From 89e8d73b042b11a04b1c8fbcc9d381bd207dc77b Mon Sep 17 00:00:00 2001 From: Loren Date: Thu, 27 Aug 2020 20:02:20 -0700 Subject: [PATCH 001/205] changes to remove converstion factor mulitplication from mda data --- rec_to_nwb/processing/nwb/components/mda/fl_mda.py | 3 ++- rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py | 5 +++-- rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda.py index 2a56e11dc..ed3d9698d 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda.py @@ -1,8 +1,9 @@ class FlMda: - def __init__(self, sampling_rate, electrode_table_region, mda_data): + def __init__(self, sampling_rate, conversion, electrode_table_region, mda_data): """internal representation of mda data""" self.sampling_rate = sampling_rate + self.conversion = conversion self.electrode_table_region = electrode_table_region self.mda_data = mda_data diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py index 374a5105c..f59d2002e 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py @@ -3,8 +3,9 @@ class FlMdaBuilder: - def __init__(self, sampling_rate): + def __init__(self, sampling_rate, conversion): self.sampling_rate = sampling_rate + self.conversion = conversion def build(self, electrode_table_region, data): - return FlMda(self.sampling_rate, electrode_table_region, data) + return FlMda(self.sampling_rate, self.conversion, electrode_table_region, data) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py index dc8c57da5..87983ab78 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py @@ -6,8 +6,8 @@ class FlMdaManager: def __init__(self, nwb_content, sampling_rate, datasets, conversion): self.__table_region_builder = TableRegionBuilder(nwb_content) - self.__fl_mda_extractor = FlMdaExtractor(datasets, conversion) - self.__fl_mda_builder = FlMdaBuilder(sampling_rate) + self.__fl_mda_extractor = FlMdaExtractor(datasets) + self.__fl_mda_builder = FlMdaBuilder(sampling_rate, conversion) def get_data(self): electrode_table_region = self.__table_region_builder.build() From ec519b00a56dc3e51af99126ceaa8fec02eae3eb Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Thu, 27 Aug 2020 21:49:29 -0700 Subject: [PATCH 002/205] fixed converstion factor for mda and reordered builder components to put position closer to beginning --- rec_to_nwb.egg-info/PKG-INFO | 10 + rec_to_nwb.egg-info/SOURCES.txt | 372 ++++++++++++++++++ rec_to_nwb.egg-info/dependency_links.txt | 1 + rec_to_nwb.egg-info/top_level.txt | 1 + .../processing/builder/nwb_file_builder.py | 8 +- .../mda/electrical_series_creator.py | 1 + .../nwb/components/mda/fl_mda_extractor.py | 5 +- .../nwb/components/mda/mda_data_manager.py | 6 +- 8 files changed, 394 insertions(+), 10 deletions(-) create mode 100644 rec_to_nwb.egg-info/PKG-INFO create mode 100644 rec_to_nwb.egg-info/SOURCES.txt create mode 100644 rec_to_nwb.egg-info/dependency_links.txt create mode 100644 rec_to_nwb.egg-info/top_level.txt diff --git a/rec_to_nwb.egg-info/PKG-INFO b/rec_to_nwb.egg-info/PKG-INFO new file mode 100644 index 000000000..58ef301f9 --- /dev/null +++ b/rec_to_nwb.egg-info/PKG-INFO @@ -0,0 +1,10 @@ +Metadata-Version: 1.2 +Name: rec-to-nwb +Version: 0.1.19 +Summary: Data transformation from rec binary files into NWB 2.0 format +Home-page: https://github.com/NovelaNeuro/rec_to_nwb +Author: Novela Neurotech +License: UNKNOWN +Description: UNKNOWN +Platform: Posix; MacOS X; Windows +Requires-Python: >=3.6 diff --git a/rec_to_nwb.egg-info/SOURCES.txt b/rec_to_nwb.egg-info/SOURCES.txt new file mode 100644 index 000000000..90a219ad2 --- /dev/null +++ b/rec_to_nwb.egg-info/SOURCES.txt @@ -0,0 +1,372 @@ +README.md +setup.py +rec_to_nwb/__init__.py +rec_to_nwb/conftest.py +rec_to_nwb/logging.conf +rec_to_nwb.egg-info/PKG-INFO +rec_to_nwb.egg-info/SOURCES.txt +rec_to_nwb.egg-info/dependency_links.txt +rec_to_nwb.egg-info/top_level.txt +rec_to_nwb/data/default_header.xml +rec_to_nwb/data/fl_lab_header.xsd +rec_to_nwb/data/reconfig_header.xsd +rec_to_nwb/processing/__init__.py +rec_to_nwb/processing/builder/__init__.py +rec_to_nwb/processing/builder/nwb_file_builder.py +rec_to_nwb/processing/builder/raw_to_nwb_builder.py +rec_to_nwb/processing/builder/originators/__init__.py +rec_to_nwb/processing/builder/originators/analog_originator.py +rec_to_nwb/processing/builder/originators/associated_files_originator.py +rec_to_nwb/processing/builder/originators/camera_device_originator.py +rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py +rec_to_nwb/processing/builder/originators/data_acq_device_originator.py +rec_to_nwb/processing/builder/originators/dio_originator.py +rec_to_nwb/processing/builder/originators/electrode_group_originator.py +rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py +rec_to_nwb/processing/builder/originators/electrodes_originator.py +rec_to_nwb/processing/builder/originators/epochs_originator.py +rec_to_nwb/processing/builder/originators/header_device_originator.py +rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py +rec_to_nwb/processing/builder/originators/mda_originator.py +rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py +rec_to_nwb/processing/builder/originators/pos_invalid_originator.py +rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py +rec_to_nwb/processing/builder/originators/position_originator.py +rec_to_nwb/processing/builder/originators/probe_originator.py +rec_to_nwb/processing/builder/originators/processing_module_originator.py +rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py +rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py +rec_to_nwb/processing/builder/originators/shanks_originator.py +rec_to_nwb/processing/builder/originators/task_originator.py +rec_to_nwb/processing/builder/originators/video_files_originator.py +rec_to_nwb/processing/exceptions/__init__.py +rec_to_nwb/processing/exceptions/corrupted_data_exception.py +rec_to_nwb/processing/exceptions/invalid_exception.py +rec_to_nwb/processing/exceptions/invalid_header_exception.py +rec_to_nwb/processing/exceptions/invalid_input_exception.py +rec_to_nwb/processing/exceptions/invalid_metadata_exception.py +rec_to_nwb/processing/exceptions/invalid_path_exception.py +rec_to_nwb/processing/exceptions/invalid_xml_exception.py +rec_to_nwb/processing/exceptions/missing_data_exception.py +rec_to_nwb/processing/exceptions/none_param_exception.py +rec_to_nwb/processing/exceptions/not_compatible_metadata.py +rec_to_nwb/processing/exceptions/not_equal_param_length_exception.py +rec_to_nwb/processing/header/__init__.py +rec_to_nwb/processing/header/reconfig_header_checker.py +rec_to_nwb/processing/header/xml_extractor.py +rec_to_nwb/processing/header/header_checker/__init__.py +rec_to_nwb/processing/header/header_checker/header_comparator.py +rec_to_nwb/processing/header/header_checker/header_extractor.py +rec_to_nwb/processing/header/header_checker/header_logger.py +rec_to_nwb/processing/header/header_checker/header_processor.py +rec_to_nwb/processing/header/header_checker/rec_file_finder.py +rec_to_nwb/processing/header/module/__init__.py +rec_to_nwb/processing/header/module/argument.py +rec_to_nwb/processing/header/module/aux_display_configuration.py +rec_to_nwb/processing/header/module/channel.py +rec_to_nwb/processing/header/module/configuration.py +rec_to_nwb/processing/header/module/device.py +rec_to_nwb/processing/header/module/disp_channel.py +rec_to_nwb/processing/header/module/global_configuration.py +rec_to_nwb/processing/header/module/hardware_configuration.py +rec_to_nwb/processing/header/module/header.py +rec_to_nwb/processing/header/module/module_configuration.py +rec_to_nwb/processing/header/module/single_module_configuration.py +rec_to_nwb/processing/header/module/spike_channel.py +rec_to_nwb/processing/header/module/spike_configuration.py +rec_to_nwb/processing/header/module/spike_n_trode.py +rec_to_nwb/processing/header/module/stream_display.py +rec_to_nwb/processing/metadata/__init__.py +rec_to_nwb/processing/metadata/corrupted_data_manager.py +rec_to_nwb/processing/metadata/metadata_extractor.py +rec_to_nwb/processing/metadata/metadata_manager.py +rec_to_nwb/processing/nwb/__init__.py +rec_to_nwb/processing/nwb/common/__init__.py +rec_to_nwb/processing/nwb/common/data_manager.py +rec_to_nwb/processing/nwb/common/session_time_extractor.py +rec_to_nwb/processing/nwb/common/timestamps_manager.py +rec_to_nwb/processing/nwb/components/__init__.py +rec_to_nwb/processing/nwb/components/analog/__init__.py +rec_to_nwb/processing/nwb/components/analog/analog_creator.py +rec_to_nwb/processing/nwb/components/analog/analog_files.py +rec_to_nwb/processing/nwb/components/analog/analog_injector.py +rec_to_nwb/processing/nwb/components/analog/fl_analog.py +rec_to_nwb/processing/nwb/components/analog/fl_analog_builder.py +rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py +rec_to_nwb/processing/nwb/components/associated_files/__init__.py +rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py +rec_to_nwb/processing/nwb/components/associated_files/associated_files_injector.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_file.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_builder.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_manager.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_reader.py +rec_to_nwb/processing/nwb/components/device/__init__.py +rec_to_nwb/processing/nwb/components/device/device_factory.py +rec_to_nwb/processing/nwb/components/device/device_injector.py +rec_to_nwb/processing/nwb/components/device/fl_device.py +rec_to_nwb/processing/nwb/components/device/acq/__init__.py +rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device.py +rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_builder.py +rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_manager.py +rec_to_nwb/processing/nwb/components/device/camera/__init__.py +rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device.py +rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_builder.py +rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_manager.py +rec_to_nwb/processing/nwb/components/device/header/__init__.py +rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py +rec_to_nwb/processing/nwb/components/device/header/fl_header_device_builder.py +rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py +rec_to_nwb/processing/nwb/components/device/probe/__init__.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe_builder.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe_extractor.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe_manager.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/__init__.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank_builder.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank_manager.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/shank_creator.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/__init__.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode_builder.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode_manager.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/shanks_electrode_creator.py +rec_to_nwb/processing/nwb/components/dio/__init__.py +rec_to_nwb/processing/nwb/components/dio/dio_builder.py +rec_to_nwb/processing/nwb/components/dio/dio_extractor.py +rec_to_nwb/processing/nwb/components/dio/dio_files.py +rec_to_nwb/processing/nwb/components/dio/dio_injector.py +rec_to_nwb/processing/nwb/components/dio/dio_manager.py +rec_to_nwb/processing/nwb/components/electrode_group/__init__.py +rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py +rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_builder.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_builder.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py +rec_to_nwb/processing/nwb/components/electrodes/__init__.py +rec_to_nwb/processing/nwb/components/electrodes/electrode_creator.py +rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_builder.py +rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py +rec_to_nwb/processing/nwb/components/electrodes/fl_electrodes.py +rec_to_nwb/processing/nwb/components/electrodes/extension/__init__.py +rec_to_nwb/processing/nwb/components/electrodes/extension/electrode_extension_injector.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_builder.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py +rec_to_nwb/processing/nwb/components/epochs/__init__.py +rec_to_nwb/processing/nwb/components/epochs/epochs_injector.py +rec_to_nwb/processing/nwb/components/epochs/epochs_tag_extractor.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs_builder.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs_manager.py +rec_to_nwb/processing/nwb/components/iterator/__init__.py +rec_to_nwb/processing/nwb/components/iterator/data_iterator.py +rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py +rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py +rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py +rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py +rec_to_nwb/processing/nwb/components/iterator/timestamp_iterator.py +rec_to_nwb/processing/nwb/components/mda/__init__.py +rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py +rec_to_nwb/processing/nwb/components/mda/fl_mda.py +rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py +rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py +rec_to_nwb/processing/nwb/components/mda/mda_content.py +rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py +rec_to_nwb/processing/nwb/components/mda/mda_injector.py +rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py +rec_to_nwb/processing/nwb/components/mda/table_region_builder.py +rec_to_nwb/processing/nwb/components/mda/time/__init__.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/__init__.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time_builder.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time_manager.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/mda_invalid_time_injector.py +rec_to_nwb/processing/nwb/components/mda/time/valid/__init__.py +rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time.py +rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time_builder.py +rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time_manager.py +rec_to_nwb/processing/nwb/components/mda/time/valid/mda_valid_time_injector.py +rec_to_nwb/processing/nwb/components/position/__init__.py +rec_to_nwb/processing/nwb/components/position/fl_position.py +rec_to_nwb/processing/nwb/components/position/fl_position_builder.py +rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py +rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +rec_to_nwb/processing/nwb/components/position/pos_data_manager.py +rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +rec_to_nwb/processing/nwb/components/position/position_creator.py +rec_to_nwb/processing/nwb/components/position/time/__init__.py +rec_to_nwb/processing/nwb/components/position/time/invalid/__init__.py +rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time.py +rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time_builder.py +rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time_manager.py +rec_to_nwb/processing/nwb/components/position/time/invalid/pos_invalid_time_injector.py +rec_to_nwb/processing/nwb/components/position/time/valid/__init__.py +rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time.py +rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_builder.py +rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_manager.py +rec_to_nwb/processing/nwb/components/position/time/valid/pos_valid_time_injector.py +rec_to_nwb/processing/nwb/components/processing_module/__init__.py +rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/__init__.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_builder.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_injector.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_manager.py +rec_to_nwb/processing/nwb/components/task/__init__.py +rec_to_nwb/processing/nwb/components/task/fl_task.py +rec_to_nwb/processing/nwb/components/task/task_builder.py +rec_to_nwb/processing/nwb/components/task/task_creator.py +rec_to_nwb/processing/nwb/components/task/task_manager.py +rec_to_nwb/processing/nwb/components/video_files/__init__.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py +rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py +rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/__init__.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py +rec_to_nwb/processing/time/__init__.py +rec_to_nwb/processing/time/continuous_time_extractor.py +rec_to_nwb/processing/time/timestamp_converter.py +rec_to_nwb/processing/tools/__init__.py +rec_to_nwb/processing/tools/abstract_file_downloader.py +rec_to_nwb/processing/tools/count_electrodes_in_ntrode.py +rec_to_nwb/processing/tools/count_electrodes_in_probe.py +rec_to_nwb/processing/tools/data_scanner.py +rec_to_nwb/processing/tools/dataset.py +rec_to_nwb/processing/tools/file_downloader.py +rec_to_nwb/processing/tools/file_sorter.py +rec_to_nwb/processing/tools/filter_probe_by_type.py +rec_to_nwb/processing/tools/get_times_period_multiplier.py +rec_to_nwb/processing/tools/validate_parameters.py +rec_to_nwb/processing/tools/beartype/__init__.py +rec_to_nwb/processing/tools/beartype/beartype.py +rec_to_nwb/processing/validation/__init__.py +rec_to_nwb/processing/validation/associated_files_validation.py +rec_to_nwb/processing/validation/associated_files_validation_summary.py +rec_to_nwb/processing/validation/metadata_section_validator.py +rec_to_nwb/processing/validation/metadata_validation_summary.py +rec_to_nwb/processing/validation/metadata_validator.py +rec_to_nwb/processing/validation/not_empty_validation_summary.py +rec_to_nwb/processing/validation/not_empty_validator.py +rec_to_nwb/processing/validation/ntrode_validation_summary.py +rec_to_nwb/processing/validation/ntrode_validator.py +rec_to_nwb/processing/validation/path_validation_summary.py +rec_to_nwb/processing/validation/path_validator.py +rec_to_nwb/processing/validation/preprocessing_validation_summary.py +rec_to_nwb/processing/validation/preprocessing_validator.py +rec_to_nwb/processing/validation/task_validation_summary.py +rec_to_nwb/processing/validation/task_validator.py +rec_to_nwb/processing/validation/validation_registrator.py +rec_to_nwb/processing/validation/validation_summary.py +rec_to_nwb/processing/validation/validator.py +rec_to_nwb/processing/validation/xml_files_validation.py +rec_to_nwb/processing/validation/xml_files_validation_summary.py +rec_to_nwb/scripts/__init__.py +rec_to_nwb/scripts/nwb_eseries_timestamps_visualization.py +rec_to_nwb/scripts/timestamps_visualization.py +rec_to_nwb/scripts/visualise_timestamp_distances.py +rec_to_nwb/scripts/test_package/__init__.py +rec_to_nwb/scripts/test_package/test_package_after_release.py +rec_to_nwb/test/__init__.py +rec_to_nwb/test/e2etests/__init__.py +rec_to_nwb/test/e2etests/test_headerComparator.py +rec_to_nwb/test/e2etests/test_headersExtractor.py +rec_to_nwb/test/e2etests/test_mda.py +rec_to_nwb/test/e2etests/test_nwbFullGeneration.py +rec_to_nwb/test/e2etests/test_positionIntegration.py +rec_to_nwb/test/e2etests/test_rawToNwbGeneration.py +rec_to_nwb/test/e2etests/test_recToBinariesGenerations.py +rec_to_nwb/test/e2etests/test_xmlExtraction.py +rec_to_nwb/test/e2etests/dio/__init__.py +rec_to_nwb/test/e2etests/dio/test_dioExtractor.py +rec_to_nwb/test/e2etests/dio/test_dioManager.py +rec_to_nwb/test/processing/__init__.py +rec_to_nwb/test/processing/mda_generator.py +rec_to_nwb/test/processing/test_cameraSampleFrameCounts.py +rec_to_nwb/test/processing/test_dataIterator1Dimension.py +rec_to_nwb/test/processing/test_dataIterator2Dimension.py +rec_to_nwb/test/processing/test_dataScanner.py +rec_to_nwb/test/processing/test_fileSorter.py +rec_to_nwb/test/processing/test_headerView.py +rec_to_nwb/test/processing/test_processingModuleCreator.py +rec_to_nwb/test/processing/test_reconfig_checker.py +rec_to_nwb/test/processing/test_sessionTimeExtractor.py +rec_to_nwb/test/processing/analog/__init__.py +rec_to_nwb/test/processing/analog/test_analogCreator.py +rec_to_nwb/test/processing/analog/test_flAnalogManager.py +rec_to_nwb/test/processing/associated_files/__init__.py +rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py +rec_to_nwb/test/processing/associated_files/test_flAssociatedFilesManager.py +rec_to_nwb/test/processing/device/__init__.py +rec_to_nwb/test/processing/device/test_deviceFactory.py +rec_to_nwb/test/processing/device/test_deviceInjector.py +rec_to_nwb/test/processing/device/test_header_device_manager.py +rec_to_nwb/test/processing/device/camera/__init__.py +rec_to_nwb/test/processing/device/camera/test_flCameraDeviceManager.py +rec_to_nwb/test/processing/device/probe/__init__.py +rec_to_nwb/test/processing/device/probe/test_flProbeExtractor.py +rec_to_nwb/test/processing/device/probe/test_flProbeManager.py +rec_to_nwb/test/processing/device/probe/shank/__init__.py +rec_to_nwb/test/processing/device/probe/shank/test_flShankManager.py +rec_to_nwb/test/processing/device/probe/shanks_electrode/__init__.py +rec_to_nwb/test/processing/device/probe/shanks_electrode/test_flShanksElectrodeManager.py +rec_to_nwb/test/processing/dio/__init__.py +rec_to_nwb/test/processing/dio/test_dioBuilder.py +rec_to_nwb/test/processing/dio/test_dioInjector.py +rec_to_nwb/test/processing/electrode_group/__init__.py +rec_to_nwb/test/processing/electrode_group/test_electrodeGroupFactory.py +rec_to_nwb/test/processing/electrode_group/test_electrodeGroupInjector.py +rec_to_nwb/test/processing/electrode_group/test_flElectrodeGroupManager.py +rec_to_nwb/test/processing/electrode_group/test_flNwbElectrodeGroupManager.py +rec_to_nwb/test/processing/electrodes/__init__.py +rec_to_nwb/test/processing/electrodes/test_electrodeIntegration.py +rec_to_nwb/test/processing/electrodes/test_flElectrodeManager.py +rec_to_nwb/test/processing/electrodes/extension/__init__.py +rec_to_nwb/test/processing/electrodes/extension/test_electrodeExtensionInjector.py +rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py +rec_to_nwb/test/processing/epoch/__init__.py +rec_to_nwb/test/processing/epoch/test_epochsInjector.py +rec_to_nwb/test/processing/epoch/test_flEpochsManager.py +rec_to_nwb/test/processing/mda/__init__.py +rec_to_nwb/test/processing/mda/time/__init__.py +rec_to_nwb/test/processing/mda/time/invalid/__init__.py +rec_to_nwb/test/processing/mda/time/invalid/test_flMdaInvalidTimeManager.py +rec_to_nwb/test/processing/mda/time/valid/__init__.py +rec_to_nwb/test/processing/mda/time/valid/test_flMdaValidTimeManager.py +rec_to_nwb/test/processing/metadata/__init__.py +rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py +rec_to_nwb/test/processing/metadata/test_metadataManager.py +rec_to_nwb/test/processing/position/__init__.py +rec_to_nwb/test/processing/position/test_positionManager.py +rec_to_nwb/test/processing/position/time/__init__.py +rec_to_nwb/test/processing/position/time/invalid/__init__.py +rec_to_nwb/test/processing/position/time/invalid/test_flPosInvalidTimeManager.py +rec_to_nwb/test/processing/position/time/valid/__init__.py +rec_to_nwb/test/processing/position/time/valid/test_flPosValidTimeManager.py +rec_to_nwb/test/processing/task/__init__.py +rec_to_nwb/test/processing/task/test_taskIntegration.py +rec_to_nwb/test/processing/task/test_taskManager.py +rec_to_nwb/test/processing/tools/__init__.py +rec_to_nwb/test/processing/tools/test_beartype.py +rec_to_nwb/test/processing/validators/__init__.py +rec_to_nwb/test/processing/validators/test_nTrodeValidator.py +rec_to_nwb/test/processing/validators/test_notEmptyValidator.py +rec_to_nwb/test/processing/validators/test_taskValidator.py +rec_to_nwb/test/processing/validators/test_validationRegistrator.py +rec_to_nwb/test/processing/video_files/__init__.py +rec_to_nwb/test/processing/video_files/test_videoFilesCopyMaker.py \ No newline at end of file diff --git a/rec_to_nwb.egg-info/dependency_links.txt b/rec_to_nwb.egg-info/dependency_links.txt new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/rec_to_nwb.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/rec_to_nwb.egg-info/top_level.txt b/rec_to_nwb.egg-info/top_level.txt new file mode 100644 index 000000000..155d55e83 --- /dev/null +++ b/rec_to_nwb.egg-info/top_level.txt @@ -0,0 +1 @@ +rec_to_nwb diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 3769d0acf..a5afc0729 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -284,6 +284,10 @@ def build(self): self.epochs_originator.make(nwb_content) self.processing_module_originator.make(nwb_content) + + self.position_originator.make(nwb_content) + + self.video_files_originator.make(nwb_content) self.sample_count_timestamp_corespondence_originator.make(nwb_content) self.task_originator.make(nwb_content) self.camera_sample_frame_counts_originator.make(nwb_content) @@ -300,9 +304,7 @@ def build(self): if self.process_analog: self.analog_originator.make(nwb_content) - self.position_originator.make(nwb_content) - - self.video_files_originator.make(nwb_content) + return nwb_content diff --git a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py index 7a7109fbd..4c1ea3eba 100644 --- a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py +++ b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py @@ -10,6 +10,7 @@ def create_mda(cls, fl_mda): data=fl_mda.mda_data.mda_data, electrodes=fl_mda.electrode_table_region, timestamps=fl_mda.mda_data.mda_timestamps, + conversion=fl_mda.conversion, comments="sample comment", description="Electrical series registered on electrode" ) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index 582f49044..ea76a2fd9 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -8,9 +8,8 @@ class FlMdaExtractor: - def __init__(self, datasets, conversion): + def __init__(self, datasets): self.datasets = datasets - self.conversion = conversion def get_data(self): mda_data, timestamps, continuous_time = self.__extract_data() @@ -18,7 +17,7 @@ def get_data(self): directories=timestamps, continuous_time_directories=continuous_time ) - mda_data_manager = MdaDataManager(mda_data, self.conversion) + mda_data_manager = MdaDataManager(mda_data) data_iterator = MultiThreadDataIterator(mda_data_manager) timestamp_iterator = MultiThreadTimestampIterator(mda_timestamp_data_manager) diff --git a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py index c5fdf74ca..64ee922f8 100644 --- a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py @@ -4,11 +4,9 @@ class MdaDataManager(DataManager): - def __init__(self, directories, conversion): - self.conversion = conversion + def __init__(self, directories): DataManager.__init__(self, directories) # override def read_data(self, dataset_id, file_id): - data = readmda(self.directories[dataset_id][file_id]) - return data * float(self.conversion) + return readmda(self.directories[dataset_id][file_id]) From 326ba7921a36a3654c200139de8a8ce0b1ace5f0 Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Fri, 28 Aug 2020 16:30:19 -0700 Subject: [PATCH 003/205] fixes to __get_camer_ids to allow more flexible naming --- .../nwb/components/position/fl_position_manager.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py index a76d359e8..78395be26 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py @@ -21,6 +21,7 @@ def __init__(self, datasets: list, metadata: dict, dataset_names: list, process_ @beartype def get_fl_positions(self) -> list: + print(self.dataset_names) cameras_ids = self.__get_cameras_ids(self.dataset_names, self.metadata) meters_per_pixels = self.__get_meters_per_pixels(cameras_ids, self.metadata) @@ -63,15 +64,15 @@ def get_fl_positions(self) -> list: def __get_cameras_ids(dataset_names, metadata): camera_ids = [] for dataset_name in dataset_names: - dataset_name = re.sub(r'_\w\d\d?', '', dataset_name) - dataset_name = re.sub(r'^[0]', '', dataset_name) - + # extract the first the first element of the dataset_name as the epoch number + dataset_elements = str(dataset_name).split('_') + epoch_num = str(int(dataset_elements[0])) try: camera_ids.append( next( task['camera_id'] for task in metadata['tasks'] - if dataset_name in task['task_epochs'] + if epoch_num in task['task_epochs'] )[0] ) except: From 2d5f87104ac82a176dcce86485ebde0a717ebda1 Mon Sep 17 00:00:00 2001 From: Loren Date: Thu, 8 Oct 2020 17:45:14 -0700 Subject: [PATCH 004/205] removed header validation --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 12fb3c529..d1ec54116 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -158,7 +158,8 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, process_dio=self.extract_dio, process_analog=self.extract_analog, video_path=self.video_path, - reconfig_header=self.__is_rec_config_valid() + reconfig_header=self.__get_header_path() + #reconfig_header=self.__is_rec_config_valid() ) content = nwb_builder.build() nwb_builder.write(content) @@ -212,7 +213,7 @@ def __preprocess_data(self): spikes_export_args=self.spikes_export_args, time_export_args=self.time_export_args, ) - self.__is_rec_config_valid() + #self.__is_rec_config_valid() @staticmethod def append_to_nwb(nwb_builder, process_mda_valid_time, process_mda_invalid_time, From ccbfa4f09b3b0d24f71ff50b29d628a02c28d81c Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Mon, 2 Nov 2020 20:52:01 -0800 Subject: [PATCH 005/205] moved video_files_originator below camera_device_originator to fix bug --- rec_to_nwb.egg-info/PKG-INFO | 10 + rec_to_nwb.egg-info/SOURCES.txt | 400 ++++++++++++++++++ rec_to_nwb.egg-info/dependency_links.txt | 1 + rec_to_nwb.egg-info/top_level.txt | 1 + .../processing/builder/nwb_file_builder.py | 5 +- 5 files changed, 415 insertions(+), 2 deletions(-) create mode 100644 rec_to_nwb.egg-info/PKG-INFO create mode 100644 rec_to_nwb.egg-info/SOURCES.txt create mode 100644 rec_to_nwb.egg-info/dependency_links.txt create mode 100644 rec_to_nwb.egg-info/top_level.txt diff --git a/rec_to_nwb.egg-info/PKG-INFO b/rec_to_nwb.egg-info/PKG-INFO new file mode 100644 index 000000000..58ef301f9 --- /dev/null +++ b/rec_to_nwb.egg-info/PKG-INFO @@ -0,0 +1,10 @@ +Metadata-Version: 1.2 +Name: rec-to-nwb +Version: 0.1.19 +Summary: Data transformation from rec binary files into NWB 2.0 format +Home-page: https://github.com/NovelaNeuro/rec_to_nwb +Author: Novela Neurotech +License: UNKNOWN +Description: UNKNOWN +Platform: Posix; MacOS X; Windows +Requires-Python: >=3.6 diff --git a/rec_to_nwb.egg-info/SOURCES.txt b/rec_to_nwb.egg-info/SOURCES.txt new file mode 100644 index 000000000..7a751e3f3 --- /dev/null +++ b/rec_to_nwb.egg-info/SOURCES.txt @@ -0,0 +1,400 @@ +README.md +setup.py +rec_to_nwb/__init__.py +rec_to_nwb/conftest.py +rec_to_nwb/logging.conf +rec_to_nwb.egg-info/PKG-INFO +rec_to_nwb.egg-info/SOURCES.txt +rec_to_nwb.egg-info/dependency_links.txt +rec_to_nwb.egg-info/top_level.txt +rec_to_nwb/data/default_header.xml +rec_to_nwb/data/fl_lab_header.xsd +rec_to_nwb/data/header_schema.xsd +rec_to_nwb/processing/__init__.py +rec_to_nwb/processing/builder/__init__.py +rec_to_nwb/processing/builder/nwb_file_builder.py +rec_to_nwb/processing/builder/old_nwb_file_builder.py +rec_to_nwb/processing/builder/old_raw_to_nwb_builder.py +rec_to_nwb/processing/builder/raw_to_nwb_builder.py +rec_to_nwb/processing/builder/old_originators/__init__.py +rec_to_nwb/processing/builder/originators/__init__.py +rec_to_nwb/processing/builder/originators/analog_originator.py +rec_to_nwb/processing/builder/originators/associated_files_originator.py +rec_to_nwb/processing/builder/originators/camera_device_originator.py +rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py +rec_to_nwb/processing/builder/originators/data_acq_device_originator.py +rec_to_nwb/processing/builder/originators/dio_originator.py +rec_to_nwb/processing/builder/originators/electrode_group_originator.py +rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py +rec_to_nwb/processing/builder/originators/electrodes_originator.py +rec_to_nwb/processing/builder/originators/epochs_originator.py +rec_to_nwb/processing/builder/originators/header_device_originator.py +rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py +rec_to_nwb/processing/builder/originators/mda_originator.py +rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py +rec_to_nwb/processing/builder/originators/old_analog_originator.py +rec_to_nwb/processing/builder/originators/old_dio_originator.py +rec_to_nwb/processing/builder/originators/old_mda_invalid_time_originator.py +rec_to_nwb/processing/builder/originators/old_mda_originator.py +rec_to_nwb/processing/builder/originators/old_mda_valid_time_originator.py +rec_to_nwb/processing/builder/originators/old_pos_invalid_originator.py +rec_to_nwb/processing/builder/originators/old_pos_valid_time_originator.py +rec_to_nwb/processing/builder/originators/old_position_originator.py +rec_to_nwb/processing/builder/originators/old_video_files_originator.py +rec_to_nwb/processing/builder/originators/pos_invalid_originator.py +rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py +rec_to_nwb/processing/builder/originators/position_originator.py +rec_to_nwb/processing/builder/originators/probe_originator.py +rec_to_nwb/processing/builder/originators/processing_module_originator.py +rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py +rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py +rec_to_nwb/processing/builder/originators/shanks_originator.py +rec_to_nwb/processing/builder/originators/task_originator.py +rec_to_nwb/processing/builder/originators/video_files_originator.py +rec_to_nwb/processing/exceptions/__init__.py +rec_to_nwb/processing/exceptions/corrupted_data_exception.py +rec_to_nwb/processing/exceptions/invalid_exception.py +rec_to_nwb/processing/exceptions/invalid_header_exception.py +rec_to_nwb/processing/exceptions/invalid_input_exception.py +rec_to_nwb/processing/exceptions/invalid_metadata_exception.py +rec_to_nwb/processing/exceptions/invalid_path_exception.py +rec_to_nwb/processing/exceptions/invalid_xml_exception.py +rec_to_nwb/processing/exceptions/missing_data_exception.py +rec_to_nwb/processing/exceptions/none_param_exception.py +rec_to_nwb/processing/exceptions/not_compatible_metadata.py +rec_to_nwb/processing/exceptions/not_equal_param_length_exception.py +rec_to_nwb/processing/header/__init__.py +rec_to_nwb/processing/header/reconfig_header_checker.py +rec_to_nwb/processing/header/xml_extractor.py +rec_to_nwb/processing/header/header_checker/__init__.py +rec_to_nwb/processing/header/header_checker/header_comparator.py +rec_to_nwb/processing/header/header_checker/header_extractor.py +rec_to_nwb/processing/header/header_checker/header_logger.py +rec_to_nwb/processing/header/header_checker/header_processor.py +rec_to_nwb/processing/header/header_checker/rec_file_finder.py +rec_to_nwb/processing/header/module/__init__.py +rec_to_nwb/processing/header/module/argument.py +rec_to_nwb/processing/header/module/aux_display_configuration.py +rec_to_nwb/processing/header/module/channel.py +rec_to_nwb/processing/header/module/configuration.py +rec_to_nwb/processing/header/module/device.py +rec_to_nwb/processing/header/module/disp_channel.py +rec_to_nwb/processing/header/module/global_configuration.py +rec_to_nwb/processing/header/module/hardware_configuration.py +rec_to_nwb/processing/header/module/header.py +rec_to_nwb/processing/header/module/module_configuration.py +rec_to_nwb/processing/header/module/single_module_configuration.py +rec_to_nwb/processing/header/module/spike_channel.py +rec_to_nwb/processing/header/module/spike_configuration.py +rec_to_nwb/processing/header/module/spike_n_trode.py +rec_to_nwb/processing/header/module/stream_display.py +rec_to_nwb/processing/metadata/__init__.py +rec_to_nwb/processing/metadata/corrupted_data_manager.py +rec_to_nwb/processing/metadata/metadata_extractor.py +rec_to_nwb/processing/metadata/metadata_manager.py +rec_to_nwb/processing/nwb/__init__.py +rec_to_nwb/processing/nwb/common/__init__.py +rec_to_nwb/processing/nwb/common/data_manager.py +rec_to_nwb/processing/nwb/common/old_timestamps_manager.py +rec_to_nwb/processing/nwb/common/session_time_extractor.py +rec_to_nwb/processing/nwb/common/timestamps_manager.py +rec_to_nwb/processing/nwb/components/__init__.py +rec_to_nwb/processing/nwb/components/analog/__init__.py +rec_to_nwb/processing/nwb/components/analog/analog_creator.py +rec_to_nwb/processing/nwb/components/analog/analog_files.py +rec_to_nwb/processing/nwb/components/analog/analog_injector.py +rec_to_nwb/processing/nwb/components/analog/fl_analog.py +rec_to_nwb/processing/nwb/components/analog/fl_analog_builder.py +rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py +rec_to_nwb/processing/nwb/components/analog/old_fl_analog_builder.py +rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py +rec_to_nwb/processing/nwb/components/analog/old_fl_analog_manager.py +rec_to_nwb/processing/nwb/components/associated_files/__init__.py +rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py +rec_to_nwb/processing/nwb/components/associated_files/associated_files_injector.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_file.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_builder.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_manager.py +rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_reader.py +rec_to_nwb/processing/nwb/components/device/__init__.py +rec_to_nwb/processing/nwb/components/device/device_factory.py +rec_to_nwb/processing/nwb/components/device/device_injector.py +rec_to_nwb/processing/nwb/components/device/fl_device.py +rec_to_nwb/processing/nwb/components/device/acq/__init__.py +rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device.py +rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_builder.py +rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_manager.py +rec_to_nwb/processing/nwb/components/device/camera/__init__.py +rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device.py +rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_builder.py +rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_manager.py +rec_to_nwb/processing/nwb/components/device/header/__init__.py +rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py +rec_to_nwb/processing/nwb/components/device/header/fl_header_device_builder.py +rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py +rec_to_nwb/processing/nwb/components/device/probe/__init__.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe_builder.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe_extractor.py +rec_to_nwb/processing/nwb/components/device/probe/fl_probe_manager.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/__init__.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank_builder.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank_manager.py +rec_to_nwb/processing/nwb/components/device/probe/shanks/shank_creator.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/__init__.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode_builder.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode_manager.py +rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/shanks_electrode_creator.py +rec_to_nwb/processing/nwb/components/dio/__init__.py +rec_to_nwb/processing/nwb/components/dio/dio_builder.py +rec_to_nwb/processing/nwb/components/dio/dio_extractor.py +rec_to_nwb/processing/nwb/components/dio/dio_files.py +rec_to_nwb/processing/nwb/components/dio/dio_injector.py +rec_to_nwb/processing/nwb/components/dio/dio_manager.py +rec_to_nwb/processing/nwb/components/dio/old_dio_extractor.py +rec_to_nwb/processing/nwb/components/dio/old_dio_manager.py +rec_to_nwb/processing/nwb/components/electrode_group/__init__.py +rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py +rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_builder.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_builder.py +rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py +rec_to_nwb/processing/nwb/components/electrodes/__init__.py +rec_to_nwb/processing/nwb/components/electrodes/electrode_creator.py +rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_builder.py +rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py +rec_to_nwb/processing/nwb/components/electrodes/fl_electrodes.py +rec_to_nwb/processing/nwb/components/electrodes/extension/__init__.py +rec_to_nwb/processing/nwb/components/electrodes/extension/electrode_extension_injector.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_builder.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py +rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py +rec_to_nwb/processing/nwb/components/epochs/__init__.py +rec_to_nwb/processing/nwb/components/epochs/epochs_injector.py +rec_to_nwb/processing/nwb/components/epochs/epochs_tag_extractor.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs_builder.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py +rec_to_nwb/processing/nwb/components/epochs/fl_epochs_manager.py +rec_to_nwb/processing/nwb/components/iterator/__init__.py +rec_to_nwb/processing/nwb/components/iterator/data_iterator.py +rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py +rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py +rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py +rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py +rec_to_nwb/processing/nwb/components/iterator/timestamp_iterator.py +rec_to_nwb/processing/nwb/components/mda/__init__.py +rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py +rec_to_nwb/processing/nwb/components/mda/fl_mda.py +rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py +rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py +rec_to_nwb/processing/nwb/components/mda/mda_content.py +rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py +rec_to_nwb/processing/nwb/components/mda/mda_injector.py +rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py +rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py +rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py +rec_to_nwb/processing/nwb/components/mda/table_region_builder.py +rec_to_nwb/processing/nwb/components/mda/time/__init__.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/__init__.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time_builder.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time_manager.py +rec_to_nwb/processing/nwb/components/mda/time/invalid/mda_invalid_time_injector.py +rec_to_nwb/processing/nwb/components/mda/time/valid/__init__.py +rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time.py +rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time_builder.py +rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time_manager.py +rec_to_nwb/processing/nwb/components/mda/time/valid/mda_valid_time_injector.py +rec_to_nwb/processing/nwb/components/position/__init__.py +rec_to_nwb/processing/nwb/components/position/fl_position.py +rec_to_nwb/processing/nwb/components/position/fl_position_builder.py +rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py +rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +rec_to_nwb/processing/nwb/components/position/old_fl_position_extractor.py +rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py +rec_to_nwb/processing/nwb/components/position/old_pos_timestamp_manager.py +rec_to_nwb/processing/nwb/components/position/pos_data_manager.py +rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +rec_to_nwb/processing/nwb/components/position/position_creator.py +rec_to_nwb/processing/nwb/components/position/time/__init__.py +rec_to_nwb/processing/nwb/components/position/time/invalid/__init__.py +rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time.py +rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time_builder.py +rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time_manager.py +rec_to_nwb/processing/nwb/components/position/time/invalid/pos_invalid_time_injector.py +rec_to_nwb/processing/nwb/components/position/time/valid/__init__.py +rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time.py +rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_builder.py +rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_manager.py +rec_to_nwb/processing/nwb/components/position/time/valid/pos_valid_time_injector.py +rec_to_nwb/processing/nwb/components/processing_module/__init__.py +rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/__init__.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_builder.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_injector.py +rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_manager.py +rec_to_nwb/processing/nwb/components/task/__init__.py +rec_to_nwb/processing/nwb/components/task/fl_task.py +rec_to_nwb/processing/nwb/components/task/task_builder.py +rec_to_nwb/processing/nwb/components/task/task_creator.py +rec_to_nwb/processing/nwb/components/task/task_manager.py +rec_to_nwb/processing/nwb/components/video_files/__init__.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py +rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_manager.py +rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py +rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py +rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/__init__.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py +rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py +rec_to_nwb/processing/time/__init__.py +rec_to_nwb/processing/time/continuous_time_extractor.py +rec_to_nwb/processing/time/timestamp_converter.py +rec_to_nwb/processing/tools/__init__.py +rec_to_nwb/processing/tools/abstract_file_downloader.py +rec_to_nwb/processing/tools/count_electrodes_in_ntrode.py +rec_to_nwb/processing/tools/count_electrodes_in_probe.py +rec_to_nwb/processing/tools/data_scanner.py +rec_to_nwb/processing/tools/dataset.py +rec_to_nwb/processing/tools/file_downloader.py +rec_to_nwb/processing/tools/file_sorter.py +rec_to_nwb/processing/tools/filter_probe_by_type.py +rec_to_nwb/processing/tools/get_times_period_multiplier.py +rec_to_nwb/processing/tools/validate_parameters.py +rec_to_nwb/processing/tools/beartype/__init__.py +rec_to_nwb/processing/tools/beartype/beartype.py +rec_to_nwb/processing/validation/__init__.py +rec_to_nwb/processing/validation/associated_files_validation.py +rec_to_nwb/processing/validation/associated_files_validation_summary.py +rec_to_nwb/processing/validation/associated_files_validator.py +rec_to_nwb/processing/validation/metadata_section_validator.py +rec_to_nwb/processing/validation/metadata_validation_summary.py +rec_to_nwb/processing/validation/metadata_validator.py +rec_to_nwb/processing/validation/not_empty_validation_summary.py +rec_to_nwb/processing/validation/not_empty_validator.py +rec_to_nwb/processing/validation/ntrode_validation_summary.py +rec_to_nwb/processing/validation/ntrode_validator.py +rec_to_nwb/processing/validation/path_validation_summary.py +rec_to_nwb/processing/validation/path_validator.py +rec_to_nwb/processing/validation/preprocessing_validation_summary.py +rec_to_nwb/processing/validation/preprocessing_validator.py +rec_to_nwb/processing/validation/task_validation_summary.py +rec_to_nwb/processing/validation/task_validator.py +rec_to_nwb/processing/validation/validation_registrator.py +rec_to_nwb/processing/validation/validation_summary.py +rec_to_nwb/processing/validation/validator.py +rec_to_nwb/processing/validation/xml_files_validation.py +rec_to_nwb/processing/validation/xml_files_validation_summary.py +rec_to_nwb/scripts/__init__.py +rec_to_nwb/scripts/nwb_eseries_timestamps_visualization.py +rec_to_nwb/scripts/timestamps_visualization.py +rec_to_nwb/scripts/visualise_timestamp_distances.py +rec_to_nwb/scripts/test_package/__init__.py +rec_to_nwb/scripts/test_package/test_package_after_release.py +rec_to_nwb/test/__init__.py +rec_to_nwb/test/e2etests/__init__.py +rec_to_nwb/test/e2etests/test_OldNwbFullGeneration.py +rec_to_nwb/test/e2etests/test_headerComparator.py +rec_to_nwb/test/e2etests/test_headersExtractor.py +rec_to_nwb/test/e2etests/test_mda.py +rec_to_nwb/test/e2etests/test_nwbFullGeneration.py +rec_to_nwb/test/e2etests/test_positionIntegration.py +rec_to_nwb/test/e2etests/test_rawToNwbGeneration.py +rec_to_nwb/test/e2etests/test_recToBinariesGenerations.py +rec_to_nwb/test/e2etests/test_xmlExtraction.py +rec_to_nwb/test/e2etests/dio/__init__.py +rec_to_nwb/test/e2etests/dio/test_dioExtractor.py +rec_to_nwb/test/e2etests/dio/test_dioManager.py +rec_to_nwb/test/processing/__init__.py +rec_to_nwb/test/processing/mda_generator.py +rec_to_nwb/test/processing/test_cameraSampleFrameCounts.py +rec_to_nwb/test/processing/test_dataIterator1Dimension.py +rec_to_nwb/test/processing/test_dataIterator2Dimension.py +rec_to_nwb/test/processing/test_dataScanner.py +rec_to_nwb/test/processing/test_fileSorter.py +rec_to_nwb/test/processing/test_headerView.py +rec_to_nwb/test/processing/test_processingModuleCreator.py +rec_to_nwb/test/processing/test_reconfig_checker.py +rec_to_nwb/test/processing/test_sessionTimeExtractor.py +rec_to_nwb/test/processing/analog/__init__.py +rec_to_nwb/test/processing/analog/test_analogCreator.py +rec_to_nwb/test/processing/analog/test_flAnalogManager.py +rec_to_nwb/test/processing/analog/test_oldFlAnalogManager.py +rec_to_nwb/test/processing/associated_files/__init__.py +rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py +rec_to_nwb/test/processing/associated_files/test_flAssociatedFilesManager.py +rec_to_nwb/test/processing/device/__init__.py +rec_to_nwb/test/processing/device/test_deviceFactory.py +rec_to_nwb/test/processing/device/test_deviceInjector.py +rec_to_nwb/test/processing/device/test_header_device_manager.py +rec_to_nwb/test/processing/device/camera/__init__.py +rec_to_nwb/test/processing/device/camera/test_flCameraDeviceManager.py +rec_to_nwb/test/processing/device/probe/__init__.py +rec_to_nwb/test/processing/device/probe/test_flProbeExtractor.py +rec_to_nwb/test/processing/device/probe/test_flProbeManager.py +rec_to_nwb/test/processing/device/probe/shank/__init__.py +rec_to_nwb/test/processing/device/probe/shank/test_flShankManager.py +rec_to_nwb/test/processing/device/probe/shanks_electrode/__init__.py +rec_to_nwb/test/processing/device/probe/shanks_electrode/test_flShanksElectrodeManager.py +rec_to_nwb/test/processing/dio/__init__.py +rec_to_nwb/test/processing/dio/test_dioBuilder.py +rec_to_nwb/test/processing/dio/test_dioInjector.py +rec_to_nwb/test/processing/electrode_group/__init__.py +rec_to_nwb/test/processing/electrode_group/test_electrodeGroupFactory.py +rec_to_nwb/test/processing/electrode_group/test_electrodeGroupInjector.py +rec_to_nwb/test/processing/electrode_group/test_flElectrodeGroupManager.py +rec_to_nwb/test/processing/electrode_group/test_flNwbElectrodeGroupManager.py +rec_to_nwb/test/processing/electrodes/__init__.py +rec_to_nwb/test/processing/electrodes/test_electrodeIntegration.py +rec_to_nwb/test/processing/electrodes/test_flElectrodeManager.py +rec_to_nwb/test/processing/electrodes/extension/__init__.py +rec_to_nwb/test/processing/electrodes/extension/test_electrodeExtensionInjector.py +rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py +rec_to_nwb/test/processing/epoch/__init__.py +rec_to_nwb/test/processing/epoch/test_epochsInjector.py +rec_to_nwb/test/processing/epoch/test_flEpochsManager.py +rec_to_nwb/test/processing/mda/__init__.py +rec_to_nwb/test/processing/mda/time/__init__.py +rec_to_nwb/test/processing/mda/time/invalid/__init__.py +rec_to_nwb/test/processing/mda/time/invalid/test_flMdaInvalidTimeManager.py +rec_to_nwb/test/processing/mda/time/valid/__init__.py +rec_to_nwb/test/processing/mda/time/valid/test_flMdaValidTimeManager.py +rec_to_nwb/test/processing/metadata/__init__.py +rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py +rec_to_nwb/test/processing/metadata/test_metadataManager.py +rec_to_nwb/test/processing/position/__init__.py +rec_to_nwb/test/processing/position/test_positionManager.py +rec_to_nwb/test/processing/position/time/__init__.py +rec_to_nwb/test/processing/position/time/invalid/__init__.py +rec_to_nwb/test/processing/position/time/invalid/test_flPosInvalidTimeManager.py +rec_to_nwb/test/processing/position/time/valid/__init__.py +rec_to_nwb/test/processing/position/time/valid/test_flPosValidTimeManager.py +rec_to_nwb/test/processing/task/__init__.py +rec_to_nwb/test/processing/task/test_taskIntegration.py +rec_to_nwb/test/processing/task/test_taskManager.py +rec_to_nwb/test/processing/tools/__init__.py +rec_to_nwb/test/processing/tools/test_beartype.py +rec_to_nwb/test/processing/validators/__init__.py +rec_to_nwb/test/processing/validators/test_nTrodeValidator.py +rec_to_nwb/test/processing/validators/test_notEmptyValidator.py +rec_to_nwb/test/processing/validators/test_taskValidator.py +rec_to_nwb/test/processing/validators/test_validationRegistrator.py +rec_to_nwb/test/processing/video_files/__init__.py +rec_to_nwb/test/processing/video_files/test_videoFilesCopyMaker.py \ No newline at end of file diff --git a/rec_to_nwb.egg-info/dependency_links.txt b/rec_to_nwb.egg-info/dependency_links.txt new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/rec_to_nwb.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/rec_to_nwb.egg-info/top_level.txt b/rec_to_nwb.egg-info/top_level.txt new file mode 100644 index 000000000..155d55e83 --- /dev/null +++ b/rec_to_nwb.egg-info/top_level.txt @@ -0,0 +1 @@ +rec_to_nwb diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 823ec68bb..5d83f549d 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -267,8 +267,7 @@ def build(self): self.processing_module_originator.make(nwb_content) - self.video_files_originator.make(nwb_content) - + if 'associated_files' in self.metadata: self.associated_files_originator.make(nwb_content) @@ -288,6 +287,8 @@ def build(self): self.camera_device_originator.make(nwb_content) + self.video_files_originator.make(nwb_content) + electrode_groups = self.electrode_group_originator.make( nwb_content, probes, valid_map_dict['electrode_groups'] ) From 63c98d2bd3fdecf120f738fc63b69864a668e9db Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Tue, 3 Nov 2020 17:22:36 -0800 Subject: [PATCH 006/205] fixed ElectricalSeriesCreator --- .../processing/nwb/components/mda/electrical_series_creator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py index 22647392a..4c1ea3eba 100644 --- a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py +++ b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py @@ -12,6 +12,5 @@ def create_mda(cls, fl_mda): timestamps=fl_mda.mda_data.mda_timestamps, conversion=fl_mda.conversion, comments="sample comment", - description="Electrical series registered on electrode", - conversion=fl_mda.conversion + description="Electrical series registered on electrode" ) From b6068ddc1ed1fb699a60134af306e0014218b2b1 Mon Sep 17 00:00:00 2001 From: Loren Date: Wed, 4 Nov 2020 09:53:39 -0800 Subject: [PATCH 007/205] Updated to fully working environment with newer pynwb and hdmf versions --- rec_to_nwb/environment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index 121f385bb..b39ae5c22 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -50,6 +50,8 @@ dependencies: - mountainlab_pytools - xmldiff - rec-to-binaries==0.6.0.dev0 + - hdmf>2.1.0 + - pynwb # Docs - recommonmark From f9556ab62e37a85c439506ee95241f6020bbe2ba Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 4 Nov 2020 12:20:32 -0800 Subject: [PATCH 008/205] remove duplicate calls to originators these lines are duplicates of preceding lines 268, 274 & 290. they were trying to create keys that already exist, raising errors. --- rec_to_nwb/processing/builder/nwb_file_builder.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 61fac51d9..21a8f2be6 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -301,11 +301,6 @@ def build(self): self.epochs_originator.make(nwb_content) - self.processing_module_originator.make(nwb_content) - - self.position_originator.make(nwb_content) - - self.video_files_originator.make(nwb_content) self.sample_count_timestamp_corespondence_originator.make(nwb_content) self.task_originator.make(nwb_content) From d0f24950be8d043cb341efcc7f0a9f487199d402 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 4 Nov 2020 12:41:46 -0800 Subject: [PATCH 009/205] put back mda_originator that was missing in the latest update --- rec_to_nwb/processing/builder/nwb_file_builder.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 21a8f2be6..409da1690 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -310,6 +310,9 @@ def build(self): if self.process_dio: self.dio_originator.make(nwb_content) + if self.process_mda: + self.mda_originator.make(nwb_content) + if self.process_analog: self.analog_originator.make(nwb_content) From ce07d85bd395be20a87614ca5bfe7e69cdd5cc14 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Thu, 5 Nov 2020 23:56:18 -0800 Subject: [PATCH 010/205] fix code to apply default header --- .../nwb/components/device/header/fl_header_device_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py index 63a17a581..7b160b82a 100644 --- a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py +++ b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py @@ -13,6 +13,6 @@ def get_fl_header_device(self): def __compare_global_configuration_with_default(self): for single_key in self.default_configuration: - if single_key not in self.global_configuration.keys(): + if single_key not in self.global_configuration.keys() or self.global_configuration[single_key] is None: self.global_configuration[single_key] = self.default_configuration[single_key] return self.global_configuration From 51f3d6df2a6c9a069add6c17b48d6c0fe63e97cc Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Fri, 6 Nov 2020 14:24:49 -0800 Subject: [PATCH 011/205] make sure output directories exist previously one would get error at write time, only after contents are built (which takes a while) --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index a02d7146e..e691a073b 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -147,6 +147,9 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, """ self.__preprocess_data() + + os.makedirs(self.output_path, exist_ok=True) + os.makedirs(self.video_path, exist_ok=True) for date in self.dates: nwb_builder = NWBFileBuilder( data_path=self.data_path, From 1cbdcee8bb542e970be0e82e0058e2d2f6dd1dd5 Mon Sep 17 00:00:00 2001 From: Loren Date: Mon, 9 Nov 2020 20:46:42 -0800 Subject: [PATCH 012/205] Added requirement for numpy >= 1.19.4 so that mountainsort will work. --- rec_to_nwb/environment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index b39ae5c22..522fce6f7 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -1,4 +1,4 @@ -name: rec_to_nwb +name: rec_to_nwb_test2 channels: - conda-forge - defaults @@ -24,7 +24,7 @@ dependencies: - liblapack - mkl - mkl-service - - numpy + - numpy>=1.19.4 - openssl - pandas - pycparser From d3550b4c1df9629a3687fa5a9208d142c9c7c7fb Mon Sep 17 00:00:00 2001 From: Loren Date: Mon, 9 Nov 2020 20:48:10 -0800 Subject: [PATCH 013/205] fixed error in environment.yml --- rec_to_nwb/environment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index 522fce6f7..b39ae5c22 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -1,4 +1,4 @@ -name: rec_to_nwb_test2 +name: rec_to_nwb channels: - conda-forge - defaults @@ -24,7 +24,7 @@ dependencies: - liblapack - mkl - mkl-service - - numpy>=1.19.4 + - numpy - openssl - pandas - pycparser From e04e681d30159a1c7002563c1d561ec6eebdfc12 Mon Sep 17 00:00:00 2001 From: Wojciech Merynda Date: Mon, 16 Nov 2020 14:17:10 +0100 Subject: [PATCH 014/205] try to process kf2 --- .../processing/builder/nwb_file_builder.py | 16 +++++---- .../device/header/fl_header_device.py | 3 ++ .../fl_electrode_extension_factory.py | 2 +- .../test/e2etests/test_nwbFullGeneration.py | 34 +++++++++---------- .../test/e2etests/test_rawToNwbGeneration.py | 30 ++++++++-------- 5 files changed, 44 insertions(+), 41 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 823ec68bb..befb80c95 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -267,12 +267,12 @@ def build(self): self.processing_module_originator.make(nwb_content) - self.video_files_originator.make(nwb_content) + if 'associated_files' in self.metadata: self.associated_files_originator.make(nwb_content) - self.position_originator.make(nwb_content) + #self.position_originator.make(nwb_content) valid_map_dict = self.__build_corrupted_data_manager() @@ -288,15 +288,17 @@ def build(self): self.camera_device_originator.make(nwb_content) + #self.video_files_originator.make(nwb_content) + electrode_groups = self.electrode_group_originator.make( nwb_content, probes, valid_map_dict['electrode_groups'] ) - self.electrodes_originator.make( - nwb_content, electrode_groups, valid_map_dict['electrodes'], valid_map_dict['electrode_groups'] - ) + #self.electrodes_originator.make( + # nwb_content, electrode_groups, valid_map_dict['electrodes'], valid_map_dict['electrode_groups'] + #) - self.electrodes_extension_originator.make(nwb_content, valid_map_dict['electrodes']) + #self.electrodes_extension_originator.make(nwb_content, valid_map_dict['electrodes']) self.epochs_originator.make(nwb_content) @@ -304,7 +306,7 @@ def build(self): self.task_originator.make(nwb_content) - self.camera_sample_frame_counts_originator.make(nwb_content) + #self.camera_sample_frame_counts_originator.make(nwb_content) if self.process_dio: self.dio_originator.make(nwb_content) diff --git a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py index e551e6af3..41742ac54 100644 --- a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py +++ b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py @@ -2,5 +2,8 @@ class FlHeaderDevice: def __init__(self, name, global_configuration_dict): self.name = name + for parameter in global_configuration_dict: + if global_configuration_dict[parameter] is None: + global_configuration_dict[parameter] = '' self.global_configuration = global_configuration_dict diff --git a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py index c95129072..86b86cc4e 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py @@ -74,7 +74,7 @@ def create_probe_electrode(cls, probes_metadata: list, electrode_groups_metadata def create_ref_elect_id(cls, spike_n_trodes: list, ntrode_metadata: dict): ref_elect_id = [] for spike_n_trode in spike_n_trodes: - if not int(spike_n_trode.ref_n_trode_id) == 0: + if spike_n_trode.ref_n_trode_id: for ntrode in ntrode_metadata: if int(ntrode["ntrode_id"]) == int(spike_n_trode.ref_n_trode_id): ref_elect_id.extend( diff --git a/rec_to_nwb/test/e2etests/test_nwbFullGeneration.py b/rec_to_nwb/test/e2etests/test_nwbFullGeneration.py index 0a31cab5d..f84abb063 100644 --- a/rec_to_nwb/test/e2etests/test_nwbFullGeneration.py +++ b/rec_to_nwb/test/e2etests/test_nwbFullGeneration.py @@ -17,15 +17,15 @@ class TestNwbFullGeneration(unittest.TestCase): @classmethod def setUpClass(cls): cls.metadata = MetadataManager( - str(path) + '/processing/res/metadata.yml', - [str(path) + '/processing/res/probe1.yml', - str(path) + '/processing/res/probe2.yml', - str(path) + '/processing/res/probe3.yml']) + 'C:/Users/wmery/PycharmProjects/rec_to_nwb/rec_to_nwb/test/test_data/KF2/raw/20170120/kibbles20170216_metadata.yml', + ['C:/Users/wmery/PycharmProjects/rec_to_nwb/rec_to_nwb/test/test_data/KF2/raw/20170120/64c-3s6mm6cm-20um-40um-sl.yml', + 'C:/Users/wmery/PycharmProjects/rec_to_nwb/rec_to_nwb/test/test_data/KF2/raw/20170120/64c-4s6mm6cm-20um-40um-dl.yml' + ]) cls.nwb_builder = NWBFileBuilder( data_path=str(path) + '/test_data/', - animal_name='beans', - date='20190718', + animal_name='KF2', + date='20170120', nwb_metadata=cls.metadata, process_dio=True, process_mda=True, @@ -34,19 +34,19 @@ def setUpClass(cls): video_path=str(path) + '/test_data' ) - @unittest.skip("NWB file creation") + #@unittest.skip("NWB file creation") def test_nwb_file_builder_generate_nwb(self): content = self.nwb_builder.build() self.nwb_builder.write(content) self.nwb_builder.build_and_append_to_nwb( - process_mda_valid_time=True, - process_mda_invalid_time=True, - process_pos_valid_time=True, - process_pos_invalid_time=True + process_mda_valid_time=False, + process_mda_invalid_time=False, + process_pos_valid_time=False, + process_pos_invalid_time=False ) self.assertIsNotNone(self.nwb_builder) - @unittest.skip("read created NWB") + #@unittest.skip("read created NWB") def test_nwb_file_builder_read_nwb(self): with NWBHDF5IO(self.nwb_builder.output_file, 'r') as nwb_file: content = nwb_file.read() @@ -76,8 +76,8 @@ def test_nwb_file_builder_failed_due_to_None_parameter(self): process_analog=True ) - @classmethod - def tearDownClass(cls): - del cls.nwb_builder - if os.path.isfile('output.nwb'): - os.remove('output.nwb') + # @classmethod + # def tearDownClass(cls): + # del cls.nwb_builder + # if os.path.isfile('output.nwb'): + # os.remove('output.nwb') diff --git a/rec_to_nwb/test/e2etests/test_rawToNwbGeneration.py b/rec_to_nwb/test/e2etests/test_rawToNwbGeneration.py index 9b6e6ee8f..bb4d1a1dc 100644 --- a/rec_to_nwb/test/e2etests/test_rawToNwbGeneration.py +++ b/rec_to_nwb/test/e2etests/test_rawToNwbGeneration.py @@ -8,25 +8,23 @@ path = os.path.dirname(os.path.abspath(__file__)) -_DEFAULT_TRODES_REC_EXPORT_ARGS = ('-reconfig', str(path) + '/../processing/res/reconfig_header.xml') +_DEFAULT_TRODES_REC_EXPORT_ARGS = ('-reconfig', 'C:/Users/wmery/PycharmProjects/rec_to_nwb/rec_to_nwb/test/test_data/KF2/raw/20170120/kf2_reconfig.xml') -@unittest.skip("Super heavy RAW to NWB Generation") +#@unittest.skip("Super heavy RAW to NWB Generation") class TestRawToNWBGeneration(unittest.TestCase): def setUp(self): self.metadata = MetadataManager( - str(path) + '/../processing/res/metadata.yml', + 'C:/Users/wmery/PycharmProjects/rec_to_nwb/rec_to_nwb/test/test_data/KF2/raw/20170120/kibbles20170216_metadata.yml', [ - str(path) + '/../processing/res/probe1.yml', - str(path) + '/../processing/res/probe2.yml', - str(path) + '/../processing/res/probe3.yml' - ] - ) + 'C:/Users/wmery/PycharmProjects/rec_to_nwb/rec_to_nwb/test/test_data/KF2/raw/20170120/64c-3s6mm6cm-20um-40um-sl.yml', + 'C:/Users/wmery/PycharmProjects/rec_to_nwb/rec_to_nwb/test/test_data/KF2/raw/20170120/64c-4s6mm6cm-20um-40um-dl.yml' + ]) self.builder = RawToNWBBuilder( - animal_name='beans', + animal_name='KF2', data_path=str(path) + '/../test_data/', - dates=['20190718'], + dates=['20170120'], nwb_metadata=self.metadata, output_path='', video_path=str(path) + '/../test_data', @@ -41,10 +39,10 @@ def setUp(self): def test_from_raw_to_nwb_generation(self): self.builder.build_nwb( - process_mda_valid_time=True, - process_mda_invalid_time=True, - process_pos_valid_time=True, - process_pos_invalid_time=True + process_mda_valid_time=False, + process_mda_invalid_time=False, + process_pos_valid_time=False, + process_pos_invalid_time=False ) self.assertTrue(os.path.exists('beans20190718.nwb'), 'NWBFile did not build') @@ -75,5 +73,5 @@ def test_raw_to_nwb_builder_failed_due_to_incorrect_type_parameters(self): trodes_rec_export_args=_DEFAULT_TRODES_REC_EXPORT_ARGS ) - def tearDown(self): - self.builder.cleanup() + # def tearDown(self): + # self.builder.cleanup() From a78d615b7495622a88261338e0bdd93607bae29f Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak <39214579+jihyunbak@users.noreply.github.com> Date: Mon, 23 Nov 2020 23:11:18 -0800 Subject: [PATCH 015/205] Add preprocessing options (#2) * add new attribute preprocessing_path in builders * copy xml headers to the preprocessing path, if specified the preprocessing path can be different from raw data path * pass preprocessing_path to extract_trodes_rec_file so that preprocessed binaries are saved to preprocessing_path. this depends on rec_to_binaries update (pending pull request at the moment) * pass dates to preprocess selectively * fix dependency: require rec-to-binaries updated version --- .../processing/builder/nwb_file_builder.py | 18 +++++++++++++++--- .../processing/builder/raw_to_nwb_builder.py | 10 +++++++++- .../header/header_checker/header_extractor.py | 13 ++++++++++--- .../header/header_checker/header_processor.py | 4 ++-- 4 files changed, 36 insertions(+), 9 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 409da1690..6ad09a998 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -88,6 +88,7 @@ def __init__( process_mda: bool = True, process_analog: bool = True, process_pos_timestamps: bool = True, + preprocessing_path: str = '', video_path: str = '', output_file: str = 'output.nwb', reconfig_header: str = '' @@ -127,6 +128,10 @@ def __init__( self.process_mda = process_mda self.process_analog = process_analog self.process_pos_timestamps = process_pos_timestamps + if not preprocessing_path: + self.preprocessing_path = data_path + else: + self.preprocessing_path = preprocessing_path self.output_file = output_file self.video_path = video_path self.link_to_notes = self.metadata.get('link to notes', None) @@ -143,14 +148,21 @@ def __init__( + self.date) ) - header_file = HeaderProcessor.process_headers(rec_files_list) + if not preprocessing_path: + header_path = None # default + else: + header_path = (self.preprocessing_path + + '/' + self.animal_name + '/headers/' + self.date) + os.makedirs(header_path, exist_ok=True) + header_file = HeaderProcessor.process_headers(rec_files_list, copy_dir=header_path) if reconfig_header: self.header = Header(reconfig_header) else: self.header = Header(header_file) - self.data_scanner = DataScanner(data_path, animal_name, nwb_metadata) + self.data_scanner = DataScanner(self.preprocessing_path, animal_name, nwb_metadata) self.dataset_names = self.data_scanner.get_all_epochs(date) - full_data_path = data_path + '/' + animal_name + '/preprocessing/' + date + full_data_path = os.path.join(self.preprocessing_path, + animal_name + '/preprocessing/' + date) validation_registrator = ValidationRegistrator() validation_registrator.register(NTrodeValidator(self.metadata, self.header, self.probes)) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index e691a073b..b4c50b865 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -70,6 +70,7 @@ def __init__( nwb_metadata: MetadataManager, output_path: str = '', video_path: str = '', + preprocessing_path: str = '', extract_analog: bool = True, extract_spikes: bool = False, extract_lfps: bool = False, @@ -110,6 +111,10 @@ def __init__( self.metadata = nwb_metadata.metadata self.output_path = output_path self.video_path = video_path + if not preprocessing_path: + self.preprocessing_path = data_path + else: + self.preprocessing_path = preprocessing_path self.probes = nwb_metadata.probes self.nwb_metadata = nwb_metadata self.parallel_instances = parallel_instances @@ -160,6 +165,7 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, process_mda=self.extract_mda, process_dio=self.extract_dio, process_analog=self.extract_analog, + preprocessing_path=self.preprocessing_path, video_path=self.video_path, reconfig_header=self.__get_header_path() #reconfig_header=self.__is_rec_config_valid() @@ -201,6 +207,8 @@ def __preprocess_data(self): extract_trodes_rec_file( self.data_path, self.animal_name, + out_dir=self.preprocessing_path, + dates=self.dates, parallel_instances=self.parallel_instances, extract_analog=self.extract_analog, extract_dio=self.extract_dio, @@ -242,7 +250,7 @@ def append_to_nwb(nwb_builder, process_mda_valid_time, process_mda_invalid_time, def cleanup(self): """Remove all temporary files structure from preprocessing folder""" - preprocessing = self.data_path + '/' + self.animal_name + '/preprocessing' + preprocessing = self.preprocessing_path + '/' + self.animal_name + '/preprocessing' if os.path.exists(preprocessing): shutil.rmtree(preprocessing) diff --git a/rec_to_nwb/processing/header/header_checker/header_extractor.py b/rec_to_nwb/processing/header/header_checker/header_extractor.py index e45c6ccad..39be1c8e9 100644 --- a/rec_to_nwb/processing/header/header_checker/header_extractor.py +++ b/rec_to_nwb/processing/header/header_checker/header_extractor.py @@ -1,3 +1,5 @@ +from pathlib import Path + from rec_to_nwb.processing.header.xml_extractor import XMLExtractor @@ -6,10 +8,15 @@ class HeaderFilesExtractor: def __init__(self): self.xml_files = [] - def extract_headers_from_rec_files(self, rec_files): + def extract_headers_from_rec_files(self, rec_files, copy_dir=None): for rec_file in rec_files: + if copy_dir is not None: + rec_copy = Path(copy_dir).joinpath(rec_file.name) + xml_file = str(rec_copy) + '_header' + '.xml' + else: + xml_file = str(rec_file) + '_header' + '.xml' temp_xml_extractor = XMLExtractor(rec_path=rec_file, - xml_path=str(rec_file) + '_header' + '.xml') + xml_path=xml_file) temp_xml_extractor.extract_xml_from_rec_file() - self.xml_files.append(str(rec_file) + '_header' + '.xml') + self.xml_files.append(xml_file) return self.xml_files diff --git a/rec_to_nwb/processing/header/header_checker/header_processor.py b/rec_to_nwb/processing/header/header_checker/header_processor.py index 68460777f..d18fc7d54 100644 --- a/rec_to_nwb/processing/header/header_checker/header_processor.py +++ b/rec_to_nwb/processing/header/header_checker/header_processor.py @@ -6,9 +6,9 @@ class HeaderProcessor: @staticmethod - def process_headers(rec_files_list): + def process_headers(rec_files_list, copy_dir=None): headers_extractor = HeaderFilesExtractor() - header_files = headers_extractor.extract_headers_from_rec_files(rec_files_list) + header_files = headers_extractor.extract_headers_from_rec_files(rec_files_list, copy_dir=copy_dir) header_comparator = HeaderComparator(header_files) headers_differences = header_comparator.compare() From 98e1b3b41e566517afad51a0ea583f51aab4031c Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 15:31:54 -0800 Subject: [PATCH 016/205] refactor RawToNWBBuilder intermediate steps no change to existing user interface --- .../processing/builder/raw_to_nwb_builder.py | 41 ++++++++++++------- 1 file changed, 26 insertions(+), 15 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index b4c50b865..c4147e137 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -153,23 +153,19 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, self.__preprocess_data() + self.__build_nwb_file(process_mda_valid_time=process_mda_valid_time, + process_mda_invalid_time=process_mda_invalid_time, + process_pos_valid_time=process_pos_valid_time, + process_pos_invalid_time=process_pos_invalid_time) + + def __build_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time=True, + process_pos_valid_time=True, process_pos_invalid_time=True): + logger.info('Building NWB files') os.makedirs(self.output_path, exist_ok=True) os.makedirs(self.video_path, exist_ok=True) for date in self.dates: - nwb_builder = NWBFileBuilder( - data_path=self.data_path, - animal_name=self.animal_name, - date=date, - nwb_metadata=self.nwb_metadata, - output_file=self.output_path + self.animal_name + date + ".nwb", - process_mda=self.extract_mda, - process_dio=self.extract_dio, - process_analog=self.extract_analog, - preprocessing_path=self.preprocessing_path, - video_path=self.video_path, - reconfig_header=self.__get_header_path() - #reconfig_header=self.__is_rec_config_valid() - ) + logger.info('Date: {}'.format(date)) + nwb_builder = self.get_nwb_builder(date) content = nwb_builder.build() nwb_builder.write(content) self.append_to_nwb( @@ -180,6 +176,22 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, process_pos_invalid_time=process_pos_invalid_time ) + def get_nwb_builder(self, date): + return NWBFileBuilder( + data_path=self.data_path, + animal_name=self.animal_name, + date=date, + nwb_metadata=self.nwb_metadata, + output_file=self.output_path + self.animal_name + date + ".nwb", + process_mda=self.extract_mda, + process_dio=self.extract_dio, + process_analog=self.extract_analog, + preprocessing_path=self.preprocessing_path, + video_path=self.video_path, + reconfig_header=self.__get_header_path() + #reconfig_header=self.__is_rec_config_valid() + ) + def __preprocess_data(self): """process data with rec_to_binaries library""" @@ -253,4 +265,3 @@ def cleanup(self): preprocessing = self.preprocessing_path + '/' + self.animal_name + '/preprocessing' if os.path.exists(preprocessing): shutil.rmtree(preprocessing) - From b6f9e92b9ea3291fbeb063b9999a37cfa97a60f5 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 15:59:20 -0800 Subject: [PATCH 017/205] propagate recent NWBFileBuilder changes to OldNWBFileBuilder - allow separate preprocessing_path - reorder video files originator in build() --- .../builder/old_nwb_file_builder.py | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/builder/old_nwb_file_builder.py b/rec_to_nwb/processing/builder/old_nwb_file_builder.py index 8a3f2ce9a..fe0807a9e 100644 --- a/rec_to_nwb/processing/builder/old_nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/old_nwb_file_builder.py @@ -89,6 +89,7 @@ def __init__( process_mda: bool = True, process_analog: bool = True, process_pos_timestamps: bool = True, + preprocessing_path: str = '', video_path: str = '', output_file: str = 'output.nwb', reconfig_header: str = '' @@ -128,6 +129,10 @@ def __init__( self.process_mda = process_mda self.process_analog = process_analog self.process_pos_timestamps = process_pos_timestamps + if not preprocessing_path: + self.preprocessing_path = data_path + else: + self.preprocessing_path = preprocessing_path self.output_file = output_file self.video_path = video_path self.link_to_notes = self.metadata.get('link to notes', None) @@ -144,14 +149,21 @@ def __init__( + self.date) ) - header_file = HeaderProcessor.process_headers(rec_files_list) + if not preprocessing_path: + header_path = None # default + else: + header_path = (self.preprocessing_path + + '/' + self.animal_name + '/headers/' + self.date) + os.makedirs(header_path, exist_ok=True) + header_file = HeaderProcessor.process_headers(rec_files_list, copy_dir=header_path) if reconfig_header: self.header = Header(reconfig_header) else: self.header = Header(header_file) - self.data_scanner = DataScanner(data_path, animal_name, nwb_metadata) + self.data_scanner = DataScanner(self.preprocessing_path, animal_name, nwb_metadata) self.dataset_names = self.data_scanner.get_all_epochs(date) - full_data_path = data_path + '/' + animal_name + '/preprocessing/' + date + full_data_path = os.path.join(self.preprocessing_path, + animal_name + '/preprocessing/' + date) validation_registrator = ValidationRegistrator() validation_registrator.register(NTrodeValidator(self.metadata, self.header, self.probes)) @@ -263,8 +275,6 @@ def build(self): self.processing_module_originator.make(nwb_content) - self.old_video_files_originator.make(nwb_content) - if 'associated_files' in self.metadata: self.associated_files_originator.make(nwb_content) @@ -284,6 +294,8 @@ def build(self): self.camera_device_originator.make(nwb_content) + self.old_video_files_originator.make(nwb_content) + electrode_groups = self.electrode_group_originator.make( nwb_content, probes, valid_map_dict['electrode_groups'] ) From 7a910fb5ef1d7433de5242f6fb84e44b87e31ee6 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:02:08 -0800 Subject: [PATCH 018/205] update RawToNWBBuilder to have access to OldNWBFileBuilder - use a dummy default value for session_start_time --- .../processing/builder/raw_to_nwb_builder.py | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index c4147e137..07dced169 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -1,6 +1,7 @@ import logging.config import os import shutil +import datetime from rec_to_binaries import extract_trodes_rec_file @@ -9,6 +10,7 @@ from rec_to_nwb.processing.builder.nwb_file_builder import NWBFileBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype from rec_to_nwb.processing.validation.not_empty_validator import NotEmptyValidator +from rec_to_nwb.processing.builder.old_nwb_file_builder import OldNWBFileBuilder from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator path = os.path.dirname(os.path.abspath(__file__)) @@ -29,6 +31,9 @@ _DEFAULT_TRODES_REC_EXPORT_ARGS = () +# for OldNWBFileBuilder +_DEFAULT_SESSION_START_TIME = datetime.datetime.fromtimestamp(0) # dummy value for now + class RawToNWBBuilder: """Unpack data from raw folder specified by arguments, and write those data into NWB file format @@ -175,6 +180,24 @@ def __build_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time process_pos_valid_time=process_pos_valid_time, process_pos_invalid_time=process_pos_invalid_time ) + + def __build_old_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time=True, + process_pos_valid_time=True, process_pos_invalid_time=True): + logger.info('Building NWB files ** for old dataset **') + os.makedirs(self.output_path, exist_ok=True) + os.makedirs(self.video_path, exist_ok=True) + for date in self.dates: + logger.info('Date: {}'.format(date)) + nwb_builder = self.get_old_nwb_builder(date) + content = nwb_builder.build() + nwb_builder.write(content) + self.append_to_nwb( + nwb_builder=nwb_builder, + process_mda_valid_time=process_mda_valid_time, + process_mda_invalid_time=process_mda_invalid_time, + process_pos_valid_time=process_pos_valid_time, + process_pos_invalid_time=process_pos_invalid_time + ) def get_nwb_builder(self, date): return NWBFileBuilder( @@ -191,6 +214,23 @@ def get_nwb_builder(self, date): reconfig_header=self.__get_header_path() #reconfig_header=self.__is_rec_config_valid() ) + + def get_old_nwb_builder(self, date): + return OldNWBFileBuilder( + data_path=self.data_path, + animal_name=self.animal_name, + date=date, + session_start_time=_DEFAULT_SESSION_START_TIME, + nwb_metadata=self.nwb_metadata, + output_file=self.output_path + self.animal_name + date + ".nwb", + process_mda=self.extract_mda, + process_dio=self.extract_dio, + process_analog=self.extract_analog, + preprocessing_path=self.preprocessing_path, + video_path=self.video_path, + reconfig_header=self.__get_header_path() + #reconfig_header=self.__is_rec_config_valid() + ) def __preprocess_data(self): """process data with rec_to_binaries library""" From ae8929188038aac57e0cfee037a5e90aad7cb181 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:03:18 -0800 Subject: [PATCH 019/205] fix name typo in OldVideoFilesOriginator --- .../builder/originators/old_video_files_originator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/old_video_files_originator.py b/rec_to_nwb/processing/builder/originators/old_video_files_originator.py index 0d9cefbd0..79052884c 100644 --- a/rec_to_nwb/processing/builder/originators/old_video_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/old_video_files_originator.py @@ -11,10 +11,9 @@ def __init__(self, raw_data_path, video_path, video_files_metadata): self.old_fl_video_files_manager = OldFlVideoFilesManager(raw_data_path, video_path, video_files_metadata) def make(self, nwb_content): - fl_video_files = self.fl_video_files_manager.get_video_files() + fl_video_files = self.old_fl_video_files_manager.get_video_files() image_series_list = [ VideoFilesCreator.create(fl_video_file, self.video_directory, nwb_content) for fl_video_file in fl_video_files ] VideoFilesInjector.inject_all(nwb_content, image_series_list) - From 1f79fa69926e09830ac65270624e4889b410e6e2 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:04:49 -0800 Subject: [PATCH 020/205] fix type for null timestamps field numpy array required --- .../nwb/components/video_files/old_fl_video_files_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py index 945efeced..751cfd8db 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py @@ -17,7 +17,7 @@ def extract_video_files(self): for video_file in video_files: new_fl_video_file = { "name": video_file["name"], - "timestamps": [], + "timestamps": np.array([]), "device": video_file["camera_id"] } extracted_video_files.append(new_fl_video_file) From 13db272c9baf05726f485a9c701b3a44a7fbf484 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:32:02 -0800 Subject: [PATCH 021/205] read from cameraHWFrameCount when cameraHWSync is not available - timestamps are not available in this case; fill with dummy values --- .../camera_sample_frame_counts_extractor.py | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py index 9234c2527..a979e14a0 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py @@ -11,7 +11,11 @@ def __init__(self, raw_data_path): def extract(self): data = [] - for file in self.__get_all_hwsync_files(): + files = self.__get_all_hwsync_files() + if len(files) == 0: + # in case of old dataset + files = self.__get_all_hwframecount_files() + for file in files: data.append(self.__extract_single(file)) merged_data = self.__merge_data_from_multiple_files(data) return merged_data @@ -24,6 +28,14 @@ def __get_all_hwsync_files(self): hwsync_files.append(file) return hwsync_files + def __get_all_hwframecount_files(self): + all_files = os.listdir(self.raw_data_path) + hwframecount_files = [] + for file in all_files: + if 'videoTimeStamps.cameraHWFrameCount' in file: + hwframecount_files.append(file) + return hwframecount_files + @staticmethod def __merge_data_from_multiple_files(data): merged_data = np.vstack(data) @@ -35,6 +47,12 @@ def __extract_single(self, hw_frame_count_filename): )["data"] camera_sample_frame_counts = np.ndarray(shape = (len(content), 2), dtype='uint32') for i, record in enumerate(content): - camera_sample_frame_counts[i, 0] = record[1] - camera_sample_frame_counts[i, 1] = record[0] + if len(record) > 1: + # from cameraHWSync + camera_sample_frame_counts[i, 0] = record[1] # framecounts + camera_sample_frame_counts[i, 1] = record[0] # timestamps + else: + # from cameraHWFrameCount (old dataset) + camera_sample_frame_counts[i, 0] = record[0] # framecounts + camera_sample_frame_counts[i, 1] = i # timestamps (dummy) return camera_sample_frame_counts From 3893f28e90c78185d468c95253c244b73cccc741 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:41:52 -0800 Subject: [PATCH 022/205] fix key error in OldFlAnalogExtractor - timestamps file should be treated differently - should add timestamp conversion in future updates --- .../nwb/components/analog/old_fl_analog_extractor.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py index 25b2d3425..9b30514f3 100644 --- a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py +++ b/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py @@ -14,7 +14,12 @@ class OldFlAnalogExtractor: def extract_analog_for_single_dataset(analog_files): single_dataset_data = {} for analog_file in analog_files: - analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) - values = analog_data['data'] - single_dataset_data[analog_data['id']] = values + if not 'timestamps' in analog_file: + analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) + values = analog_data['data'] + single_dataset_data[analog_data['id']] = values + else: + analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) + timestamps = analog_data['data'] + single_dataset_data[analog_file] = timestamps # not converted return single_dataset_data From 6dae09b1d0872b13c0cbad453a0dcca6ce2a6085 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:43:46 -0800 Subject: [PATCH 023/205] fix missing kwarg error in OldFlMdaExtractor --- rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py index c0b46f256..aa0c4fc62 100644 --- a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py @@ -15,6 +15,7 @@ def get_data(self): mda_data, timestamps, continuous_time = self.__extract_data() mda_timestamp_data_manager = MdaTimestampDataManager( directories=timestamps, + continuous_time_directories=continuous_time ) mda_data_manager = MdaDataManager(mda_data) data_iterator = MultiThreadDataIterator(mda_data_manager) From 5b9b7610b8c77700e9d5cfccbaa6781322bf0c26 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:47:00 -0800 Subject: [PATCH 024/205] provide dummy timestamps (required method retrieve_real_timestamps) --- .../processing/nwb/common/old_timestamps_manager.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/common/old_timestamps_manager.py b/rec_to_nwb/processing/nwb/common/old_timestamps_manager.py index b4d8fe01c..c5dbe60cc 100644 --- a/rec_to_nwb/processing/nwb/common/old_timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/old_timestamps_manager.py @@ -21,6 +21,14 @@ def __init__(self, directories): def _get_timestamps(self, dataset_id): pass + def retrieve_real_timestamps(self, dataset_id): + timestamps_ids = self.read_timestamps_ids(dataset_id) + converted_timestamps = np.ndarray(shape=[len(timestamps_ids), ], dtype="float64") + for i, _ in enumerate(timestamps_ids): + value = float('nan') # just a dummy value for now + converted_timestamps[i] = value + return converted_timestamps + def read_timestamps_ids(self, dataset_id): return self._get_timestamps(dataset_id) @@ -40,4 +48,4 @@ def _get_number_of_datasets(self): return np.shape(self.directories)[0] def _get_data_shape(self, dataset_num): - return np.shape(self.read_timestamps_ids(dataset_num))[0] \ No newline at end of file + return np.shape(self.read_timestamps_ids(dataset_num))[0] From 5d3752bac9909ae03b381e4d39ff0089a1bea4be Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 16:54:17 -0800 Subject: [PATCH 025/205] handle files with different numbers of rows fixes #5. --- .../processing/nwb/common/data_manager.py | 12 ++++++++-- .../nwb/components/iterator/data_iterator.py | 24 +++++++++++++++---- 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/rec_to_nwb/processing/nwb/common/data_manager.py b/rec_to_nwb/processing/nwb/common/data_manager.py index 7ac5747dc..7f8dd704e 100644 --- a/rec_to_nwb/processing/nwb/common/data_manager.py +++ b/rec_to_nwb/processing/nwb/common/data_manager.py @@ -9,7 +9,8 @@ def __init__(self, directories): self.number_of_datasets = self.get_number_of_datasets() self.number_of_files_per_dataset = self.get_number_of_files_per_dataset() - self.number_of_rows_per_file = self._get_data_shape(0)[0] + # self.number_of_rows_per_file = self._get_data_shape(0)[0] + self.number_of_rows_per_file = self._get_number_of_rows_per_file() self.file_lenghts_in_datasets = self._get_file_length(self.number_of_datasets) @abc.abstractmethod @@ -31,11 +32,18 @@ def get_number_of_datasets(self): return np.shape(self.directories)[0] def get_final_data_shape(self): - return self.number_of_rows_per_file * self.number_of_files_per_dataset, sum(self.file_lenghts_in_datasets) + # return self.number_of_rows_per_file * self.number_of_files_per_dataset, sum(self.file_lenghts_in_datasets) + return (sum(self.number_of_rows_per_file), sum(self.file_lenghts_in_datasets)) def get_directories(self): return self.directories + def _get_number_of_rows_per_file(self): + dataset_num = 0 # assume that all datasets have identical structures + # but files may have different numbers of rows + return [np.shape(self.read_data(dataset_num, file_num))[0] + for file_num in range(self.number_of_files_per_dataset)] + def get_number_of_rows_per_file(self): return self.number_of_rows_per_file diff --git a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py index 07bb21b23..0e24d1235 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py @@ -20,17 +20,33 @@ def __iter__(self): return self def _get_selection(self): + if isinstance(self.number_of_rows, int): + # single number (legacy behavior) + start_index = (self.current_file * self.number_of_rows) + stop_index = ((self.current_file + 1) * self.number_of_rows) + else: + # expecting a list (different number_of_rows for each file) + start_index = sum(self.number_of_rows[0:self.current_file]) + stop_index = sum(self.number_of_rows[0:(self.current_file + 1)]) return np.s_[sum(self.dataset_file_length[0:self.current_dataset]): sum(self.dataset_file_length[0:self.current_dataset + 1]), - (self.current_file * self.number_of_rows): - ((self.current_file + 1) * self.number_of_rows)] + start_index: + stop_index] @staticmethod def get_selection(number_of_threads, current_dataset, dataset_file_length, current_file, number_of_rows): + if isinstance(number_of_rows, int): + # single number (legacy behavior) + start_index = (current_file * number_of_rows) + stop_index = ((current_file + number_of_threads) * number_of_rows) + else: + # expecting a list (different number_of_rows for each file) + start_index = sum(number_of_rows[0:current_file]) + stop_index = sum(number_of_rows[0:(current_file + number_of_threads)]) return np.s_[sum(dataset_file_length[0:current_dataset]): sum(dataset_file_length[0:current_dataset + 1]), - (current_file * number_of_rows): - ((current_file + number_of_threads) * number_of_rows)] + start_index: + stop_index] def recommended_chunk_shape(self): return None From 03d204edb9e57034bda8ac56bfe35712d4335849 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Wed, 25 Nov 2020 17:37:36 -0800 Subject: [PATCH 026/205] auto-detect old dataset in RawToNWBBuilder --- .../processing/builder/raw_to_nwb_builder.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 07dced169..41822adda 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -141,6 +141,19 @@ def __get_header_path(self): xml_file_path = self.trodes_rec_export_args[counter + 1] return xml_file_path + def __is_old_dataset(self): + # check raw directory for the single (first) date + all_files = os.listdir(self.data_path + "/" + + self.animal_name + "/raw/" + + self.dates[0] + "/") + if any([('videoTimeStamps.cameraHWSync' in file) for file in all_files]): + # has cameraHWSync files; new dataset + return False + if any([('videoTimeStamps.cameraHWFrameCount' in file) for file in all_files]): + # has cameraHWFrameCount files instead; old dataset + return True + raise FileNotFoundError('need either cameraHWSync or cameraHWFrameCount files.') + def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, process_pos_valid_time=True, process_pos_invalid_time=True): """Builds nwb file for experiments from given dates. @@ -158,6 +171,13 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, self.__preprocess_data() + if self.__is_old_dataset(): + self.__build_old_nwb_file(process_mda_valid_time=process_mda_valid_time, + process_mda_invalid_time=process_mda_invalid_time, + process_pos_valid_time=process_pos_valid_time, + process_pos_invalid_time=process_pos_invalid_time) + return + self.__build_nwb_file(process_mda_valid_time=process_mda_valid_time, process_mda_invalid_time=process_mda_invalid_time, process_pos_valid_time=process_pos_valid_time, From 46a1c99fea76bcd9a62e939326a095da1d5970ff Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Tue, 1 Dec 2020 01:26:42 -0800 Subject: [PATCH 027/205] add timezone to default session start time --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 41822adda..8ef6ff884 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -1,7 +1,8 @@ import logging.config import os import shutil -import datetime +from datetime import datetime +import pytz from rec_to_binaries import extract_trodes_rec_file @@ -32,7 +33,7 @@ _DEFAULT_TRODES_REC_EXPORT_ARGS = () # for OldNWBFileBuilder -_DEFAULT_SESSION_START_TIME = datetime.datetime.fromtimestamp(0) # dummy value for now +_DEFAULT_SESSION_START_TIME = datetime.fromtimestamp(0, pytz.utc) # dummy value for now class RawToNWBBuilder: From b6618581c03b29d9e925962e14c1c4326a14ff19 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Tue, 1 Dec 2020 01:27:10 -0800 Subject: [PATCH 028/205] skip append_to_nwb for old datasets --- .../processing/builder/raw_to_nwb_builder.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 8ef6ff884..a17b18428 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -212,13 +212,14 @@ def __build_old_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_ nwb_builder = self.get_old_nwb_builder(date) content = nwb_builder.build() nwb_builder.write(content) - self.append_to_nwb( - nwb_builder=nwb_builder, - process_mda_valid_time=process_mda_valid_time, - process_mda_invalid_time=process_mda_invalid_time, - process_pos_valid_time=process_pos_valid_time, - process_pos_invalid_time=process_pos_invalid_time - ) + # self.append_to_nwb( + # nwb_builder=nwb_builder, + # process_mda_valid_time=process_mda_valid_time, + # process_mda_invalid_time=process_mda_invalid_time, + # process_pos_valid_time=process_pos_valid_time, + # process_pos_invalid_time=process_pos_invalid_time + # ) + logger.info('(no timestamps - skipping append_to_nwb)') def get_nwb_builder(self, date): return NWBFileBuilder( From 8709e9647b5a8d5664cd34271bf78c5bfe705141 Mon Sep 17 00:00:00 2001 From: Loren Date: Thu, 28 Jan 2021 09:26:28 -0800 Subject: [PATCH 029/205] Changes to now convert raw data to uV --- .vscode/settings.json | 3 + rec_to_nwb.log | 207560 +++++++++++++++ rec_to_nwb/environment.yml.orig | 61 + .../mda/electrical_series_creator.py | 6 +- .../nwb/components/mda/fl_mda_extractor.py | 8 +- .../nwb/components/mda/fl_mda_manager.py | 5 +- .../nwb/components/mda/mda_data_manager.py | 12 +- .../position/fl_position_manager.py | 1 - 8 files changed, 207643 insertions(+), 13 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 rec_to_nwb.log create mode 100644 rec_to_nwb/environment.yml.orig diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..9f7664377 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": "/Users/loren/opt/anaconda3/envs/rec_to_nwb/bin/python" +} \ No newline at end of file diff --git a/rec_to_nwb.log b/rec_to_nwb.log new file mode 100644 index 000000000..da02485cd --- /dev/null +++ b/rec_to_nwb.log @@ -0,0 +1,207560 @@ +2021-01-27 18:58:29,419 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:02:28,420 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:02:49,502 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:06:47,931 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:06:48,301 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 19:06:48,302 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 19:06:48,302 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 19:06:48,327 rec_to_binaries.core: INFO Extracting time... +2021-01-27 19:07:24,409 rec_to_binaries.core: INFO Making position directory... +2021-01-27 19:07:24,497 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 19:07:24,500 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 19:07:24,503 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 19:07:24,503 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 19:17:02,174 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:17:02,576 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 19:17:02,576 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 19:17:02,577 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 19:17:02,590 rec_to_binaries.core: INFO Extracting time... +2021-01-27 19:17:38,349 rec_to_binaries.core: INFO Making position directory... +2021-01-27 19:17:38,447 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 19:17:38,449 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 19:17:38,450 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 19:17:38,450 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 19:19:18,113 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:19:18,502 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 19:19:18,503 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 19:19:18,504 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 19:19:18,517 rec_to_binaries.core: INFO Extracting time... +2021-01-27 19:19:52,941 rec_to_binaries.core: INFO Making position directory... +2021-01-27 19:19:52,995 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 19:19:52,995 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 19:19:52,995 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 19:19:52,996 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 19:19:53,803 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-27 19:19:54,160 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 19:19:54,493 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 19:19:54,493 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 19:19:54,494 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 19:19:54,494 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 19:19:54,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 19:19:54,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 19:19:54,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 19:19:54,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 19:19:54,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 19:19:54,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 19:19:54,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 19:19:54,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 19:19:54,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 19:19:54,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 19:19:54,499 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 19:19:54,502 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 19:19:54,504 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 19:19:54,505 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140682214246800 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140682214246288 +Fields: + content: # +#% author: AC +#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 +#% same as branch_always_reward_no_revisit.sc +# +#%initialize constant vars +#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min +#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later +# +#%initialize updating vars +#int rewardPump = 0 %can take on values 7-12 in fxn 1 +#int rewardWell = 0 %can take on values 1-6 in fxn 4 +#int timeElapsed = 0 +#int totalPokes = 0 +#int totalRewards = 0 +#int contingency = -1 +#int count = 0 +#int loopInterval = 250 +#int trialThresh = 0 +#int timeMaxOut = 0 +# +#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being +#int leafProbs2 = 0 +#int leafProbs3 = 0 +#int leafProbs4 = 0 +#int leafProbs5 = 0 +#int leafProbs6 = 0 +# +#int countPokes1 = 0 +#int countPokes2 = 0 +#int countPokes3 = 0 +#int countPokes4 = 0 +#int countPokes5 = 0 +#int countPokes6 = 0 +# +#int countRewards1 = 0 +#int countRewards2 = 0 +#int countRewards3 = 0 +#int countRewards4 = 0 +#int countRewards5 = 0 +#int countRewards6 = 0 +# +#int sessionProbs1 = 0 +#int sessionProbs2 = 0 +#int sessionProbs3 = 0 +#int sessionProbs4 = 0 +#int sessionProbs5 = 0 +#int sessionProbs6 = 0 +# +#%give reward for certain duration after certain delay +#function 1 +# do in delayRewardPeriod +# portout[rewardPump] = 1 %start rewarding with this pump dio +# do in deliverPeriod +# portout[rewardPump] = 0 %stop rewarding with this pump dio +# end +# end +#end; +# +#%keep track of animal behavior and display for experimenter +#function 2 +# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... +# disp(contingency) +# disp(trialThresh) +# disp(timeMaxOut) +# disp(timeElapsed) %length of session thus far +# disp(totalPokes) %how many nonrepeated well visits thus far +# disp(totalRewards) %how many rewards collected thus far +# +# disp(countPokes1) %how many pokes at each well, 6x1 array turned str +# disp(countRewards1) %how many rewards collected per well +# disp(leafProbs1) %experimenter-determined probabilities of reward per well +# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke +# +# disp(countPokes2) +# disp(countRewards2) +# disp(leafProbs2) +# %disp(sessionProbs2) +# +# disp(countPokes3) +# disp(countRewards3) +# disp(leafProbs3) +# %disp(sessionProbs3) +# +# disp(countPokes4) +# disp(countRewards4) +# disp(leafProbs4) +# %disp(sessionProbs4) +# +# disp(countPokes5) +# disp(countRewards5) +# disp(leafProbs5) +# %disp(sessionProbs5) +# +# disp(countPokes6) +# disp(countRewards6) +# disp(leafProbs6) +# %disp(sessionProbs6) +#end; +# +# +#%tell the user that the contingency is complete +#function 3 +# disp('This contingency is over!') +#end; +# +#%end session +#function 4 +# while count < 50 do every loopInterval +# portout[1] = flip +# portout[2] = flip +# portout[3] = flip +# portout[4] = flip +# portout[5] = flip +# portout[6] = flip +# count = count+1 +# then do +# portout[1] = 0 +# portout[2] = 0 +# portout[3] = 0 +# portout[4] = 0 +# portout[5] = 0 +# portout[6] = 0 +# end +# disp('This session is complete!') +#end; +# +# +#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) +#callback portin[1] up +# disp('UP 1') +#end; +# +#callback portin[1] down +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# disp('UP 2') +#end; +# +#callback portin[2] down +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# disp('UP 3') +#end; +# +#callback portin[3] down +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# disp('UP 4') +#end; +# +#callback portin[4] down +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# disp('UP 5') +#end; +# +#callback portin[5] down +# disp('DOWN 5') +#end; +#callback portin[6] up +# disp('UP 6') +#end; +# +#callback portin[6] down +# disp('DOWN 6') +#end; +# +# +# +##author: AC +##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 +##contingency changes occur automatically after either a # of trials or # of minutes +#''' +#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur +#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. +# +#Basic structure: +#if nosepoke at a well +#if the nosepoke!= last nosepoke location +# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p +# trigger(fxn1) #deliver reward, and stop after reward duration +#display updated trial info +#''' +# +##import +#import numpy as np +#import re +#import time +#import math +#from tkinter import * +# +##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) +#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. +#trialThresh = 100 #per contingency +#timeMaxOut = 20 #per contingency, in mins +# +##set up wells and pumps dios +#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info +#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery +# +##variables to keep track of and update during behavior (global) +#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. +#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. +#timeElapsed = 0 #session length thus far in mins +#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. +#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) +#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward +#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 +#runningTrials = False #must say yes to saving data to turn this to true +# +##THIS FXN MUST BE NAMED 'callback'!! +#def callback(line): +# #when an event occurs out on the track, addScQtEvent will call this fxn +# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) +# pokeIn(re.findall(r'\d+',line)) +# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, +# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" +# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) +# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells +# +##when animal nosepokes and breaks beam +#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes +# global currLeaf +# global timeStart +# global leafWells +# global lastLeaf +# global countPokes +# global leafProbs +# global leafPumps +# global contingency +# global countRewards +# global runningTrials +# global timeElapsed +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# if currLeaf == -1: #if it's the first trial in the contingency +# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke +# #if timeElapsed >= timeMaxOut: +# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency +# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency +# #change. sort of defeats the purpose of the floor approach right now. +# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") +# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") +# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") +# timeStart = time.time() #start time for the contingency +# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency +# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") +# countPokes = np.array([0,0,0,0,0,0]) +# countRewards = np.array([0,0,0,0,0,0]) +# for i in range(len(countPokes)): #initialize all as zero +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# for i in range(len(countRewards)): #initialize all as zero +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 +# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump +# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well +# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf +# for i in range(len(countPokes)): +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") +# if np.random.random_sample() < leafProbs[contingency][currLeaf]: +# deliverReward(leafPumps[currLeaf]) +# +##deliver reward, called upon poking in a nonrepeated well +#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps +# global currLeaf +# global rewardPump +# global countRewards +# +# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use +# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward +# countRewards[currLeaf] += 1 #increment num of rewards at this location +# for i in range(len(countRewards)): +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") +# +##update lastLeaf and print out info about the trial if it was at a nonrepeated well +#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells +# global leafWells +# global currLeaf +# global lastLeaf +# global timeElapsed +# global timeStart +# global countPokes +# global countRewards +# global leafProbs +# global contingency +# global runningTrials +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# #if leafWells.index(int(dio[1])) != currLeaf +# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. +# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far +# timeElapsed = round((time.time()-timeStart)/60) +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log +# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn +# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. +# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): +# if contingency < len(leafProbs) - 1: +# currLeaf = -1 #to enable shifting to next contingency +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# timeElapsed = 0 +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# if contingency == len(leafProbs) - 1: +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# runningTrials = False #so no more rewards or anything happen on track +# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session +# +##gui to help remind user that should have saved data +#savingDisp = Tk() +# +#def yesSaving(): +# global runningTrials +# savingDisp.destroy() +# runningTrials=True +# +#def noSaving(): +# savingDisp.destroy() +# +#saveFrame1 = Frame(savingDisp) +#saveFrame1.pack(side = TOP) +# +#saveFrame2 = Frame(savingDisp) +#saveFrame2.pack(side = BOTTOM) +# +#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") +#LS0.pack() +# +#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) +#B1.pack(side = LEFT) +# +#B2 = Button(saveFrame2, text ="No", command = noSaving) +#B2.pack(side = LEFT) +# +#savingDisp.mainloop() +# +# +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94048 UP 1 +94048 1 0 +94058 DOWN 1 +94058 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94112 contingency = 0 +94112 trialThresh = 100 +94112 timeMaxOut = 20 +94112 timeElapsed = 0 +94112 totalPokes = 1 +94113 totalRewards = 0 +94113 countPokes1 = 1 +94114 countRewards1 = 0 +94114 leafProbs1 = 80 +94114 countPokes2 = 0 +94114 countRewards2 = 0 +94128 leafProbs2 = 20 +94129 countPokes3 = 0 +94129 countRewards3 = 0 +94130 leafProbs3 = 20 +94130 countPokes4 = 0 +94130 countRewards4 = 0 +94130 leafProbs4 = 50 +94131 countPokes5 = 0 +94131 countRewards5 = 0 +94132 leafProbs5 = 80 +94132 countPokes6 = 0 +94146 countRewards6 = 0 +94146 leafProbs6 = 50 +~~~ +95370 UP 1 +95370 1 0 +95396 DOWN 1 +95396 0 0 +95404 UP 1 +95404 1 0 +95415 DOWN 1 +95415 0 0 +95449 UP 1 +95449 1 0 +95507 DOWN 1 +95507 0 0 +95526 UP 1 +95526 1 0 +95527 DOWN 1 +95527 0 0 +95534 UP 1 +95534 1 0 +98011 DOWN 1 +98011 0 0 +109846 UP 6 +109846 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +109947 DOWN 6 +109947 0 0 +109954 UP 6 +109954 32 0 +~~~ +109967 contingency = 0 +109967 trialThresh = 100 +109968 timeMaxOut = 20 +109968 timeElapsed = 0 +109969 totalPokes = 2 +109969 totalRewards = 0 +109969 countPokes1 = 1 +109969 countRewards1 = 0 +109969 leafProbs1 = 80 +109970 countPokes2 = 0 +109970 countRewards2 = 0 +109984 leafProbs2 = 20 +109985 countPokes3 = 0 +109985 countRewards3 = 0 +109985 leafProbs3 = 20 +109985 countPokes4 = 0 +109985 countRewards4 = 0 +109986 leafProbs4 = 50 +109986 countPokes5 = 0 +109987 countRewards5 = 0 +109987 leafProbs5 = 80 +110001 countPokes6 = 1 +110001 countRewards6 = 0 +110001 leafProbs6 = 50 +~~~ +111783 DOWN 6 +111783 0 0 +111799 UP 6 +111799 32 0 +112400 DOWN 6 +112399 0 0 +115161 UP 5 +115161 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115185 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115485 16 0 +115577 DOWN 5 +115577 0 0 +~~~ +115603 contingency = 0 +115603 trialThresh = 100 +115604 timeMaxOut = 20 +115604 timeElapsed = 1 +115605 totalPokes = 3 +115605 totalRewards = 1 +115605 countPokes1 = 1 +115605 countRewards1 = 0 +115606 leafProbs1 = 80 +115606 countPokes2 = 0 +115607 countRewards2 = 0 +115620 leafProbs2 = 20 +115621 countPokes3 = 0 +115621 countRewards3 = 0 +115621 leafProbs3 = 20 +115621 countPokes4 = 0 +115622 countRewards4 = 0 +115622 leafProbs4 = 50 +115623 countPokes5 = 1 +115623 countRewards5 = 1 +115623 leafProbs5 = 80 +115637 countPokes6 = 1 +115637 countRewards6 = 0 +115637 leafProbs6 = 50 +~~~ +115638 UP 5 +115638 16 0 +118235 DOWN 5 +118235 0 0 +118252 UP 5 +118252 16 0 +118676 DOWN 5 +118676 0 0 +124414 UP 4 +124414 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124444 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124564 DOWN 4 +124564 0 512 +124571 UP 4 +124571 8 512 +~~~ +124590 contingency = 0 +124590 trialThresh = 100 +124591 timeMaxOut = 20 +124591 timeElapsed = 1 +124591 totalPokes = 4 +124591 totalRewards = 2 +124592 countPokes1 = 1 +124592 countRewards1 = 0 +124592 leafProbs1 = 80 +124593 countPokes2 = 0 +124593 countRewards2 = 0 +124607 leafProbs2 = 20 +124607 countPokes3 = 0 +124607 countRewards3 = 0 +124608 leafProbs3 = 20 +124608 countPokes4 = 1 +124609 countRewards4 = 1 +124609 leafProbs4 = 50 +124609 countPokes5 = 1 +124609 countRewards5 = 1 +124609 leafProbs5 = 80 +124623 countPokes6 = 1 +124623 countRewards6 = 0 +124624 leafProbs6 = 50 +~~~ +124744 8 0 +127285 DOWN 4 +127285 0 0 +128916 UP 3 +128916 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +131495 DOWN 3 +131495 0 0 +131506 UP 3 +131506 4 0 +~~~ +131522 contingency = 0 +131523 trialThresh = 100 +131523 timeMaxOut = 20 +131523 timeElapsed = 1 +131523 totalPokes = 5 +131524 totalRewards = 2 +131524 countPokes1 = 1 +131525 countRewards1 = 0 +131525 leafProbs1 = 80 +131525 countPokes2 = 0 +131525 countRewards2 = 0 +131539 leafProbs2 = 20 +131539 countPokes3 = 1 +131540 countRewards3 = 0 +131540 leafProbs3 = 20 +131541 countPokes4 = 1 +131541 countRewards4 = 1 +131541 leafProbs4 = 50 +131541 countPokes5 = 1 +131542 countRewards5 = 1 +131542 leafProbs5 = 80 +131556 countPokes6 = 1 +131556 countRewards6 = 0 +131557 leafProbs6 = 50 +~~~ +131829 DOWN 3 +131829 0 0 +131849 UP 3 +131849 4 0 +131922 DOWN 3 +131922 0 0 +134163 UP 4 +134163 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +134675 DOWN 4 +134675 0 0 +~~~ +134693 contingency = 0 +134693 trialThresh = 100 +134693 timeMaxOut = 20 +134694 timeElapsed = 1 +134694 totalPokes = 6 +134695 totalRewards = 2 +134695 countPokes1 = 1 +134695 countRewards1 = 0 +134695 leafProbs1 = 80 +134696 countPokes2 = 0 +134696 countRewards2 = 0 +134710 leafProbs2 = 20 +134710 countPokes3 = 1 +134711 countRewards3 = 0 +134711 leafProbs3 = 20 +134711 countPokes4 = 2 +134711 countRewards4 = 1 +134712 leafProbs4 = 50 +134712 countPokes5 = 1 +134713 countRewards5 = 1 +134713 leafProbs5 = 80 +134727 countPokes6 = 1 +134727 countRewards6 = 0 +134727 leafProbs6 = 50 +~~~ +136327 UP 3 +136327 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +137036 DOWN 3 +137036 0 0 +~~~ +137065 contingency = 0 +137065 trialThresh = 100 +137065 timeMaxOut = 20 +137066 timeElapsed = 1 +137066 totalPokes = 7 +137067 totalRewards = 2 +137067 countPokes1 = 1 +137067 countRewards1 = 0 +137067 leafProbs1 = 80 +137068 countPokes2 = 0 +137068 countRewards2 = 0 +137082 leafProbs2 = 20 +137082 countPokes3 = 2 +137083 countRewards3 = 0 +137083 leafProbs3 = 20 +137083 countPokes4 = 2 +137083 countRewards4 = 1 +137084 leafProbs4 = 50 +137084 countPokes5 = 1 +137085 countRewards5 = 1 +137085 leafProbs5 = 80 +137099 countPokes6 = 1 +137099 countRewards6 = 0 +137099 leafProbs6 = 50 +~~~ +143600 UP 5 +143600 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143854 DOWN 5 +143854 0 0 +~~~ +143877 contingency = 0 +143877 trialThresh = 100 +143877 timeMaxOut = 20 +143878 timeElapsed = 1 +143878 totalPokes = 8 +143879 totalRewards = 2 +143879 countPokes1 = 1 +143879 countRewards1 = 0 +143879 leafProbs1 = 80 +143880 countPokes2 = 0 +143880 countRewards2 = 0 +143894 leafProbs2 = 20 +143894 countPokes3 = 2 +143895 countRewards3 = 0 +143895 leafProbs3 = 20 +143895 countPokes4 = 2 +143895 countRewards4 = 1 +143896 leafProbs4 = 50 +143896 countPokes5 = 2 +143897 countRewards5 = 1 +143897 leafProbs5 = 80 +143911 countPokes6 = 1 +143911 countRewards6 = 0 +143911 leafProbs6 = 50 +~~~ +143911 UP 5 +143911 16 0 +144383 DOWN 5 +144383 0 0 +146591 UP 6 +146591 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146617 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146917 32 0 +147061 DOWN 6 +147061 0 0 +~~~ +147089 contingency = 0 +147090 trialThresh = 100 +147090 timeMaxOut = 20 +147091 timeElapsed = 1 +147091 totalPokes = 9 +147091 totalRewards = 3 +147091 countPokes1 = 1 +147092 countRewards1 = 0 +147092 leafProbs1 = 80 +147093 countPokes2 = 0 +147093 countRewards2 = 0 +147107 leafProbs2 = 20 +147107 countPokes3 = 2 +147107 countRewards3 = 0 +147107 leafProbs3 = 20 +147108 countPokes4 = 2 +147108 countRewards4 = 1 +147109 leafProbs4 = 50 +147109 countPokes5 = 2 +147109 countRewards5 = 1 +147109 leafProbs5 = 80 +147123 countPokes6 = 2 +147123 countRewards6 = 1 +147124 leafProbs6 = 50 +~~~ +147124 UP 6 +147124 32 0 +147150 DOWN 6 +147150 0 0 +147157 UP 6 +147157 32 0 +149454 DOWN 6 +149454 0 0 +160370 UP 1 +160370 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160397 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160522 DOWN 1 +160522 0 64 +160533 UP 1 +160533 1 64 +~~~ +160544 contingency = 0 +160544 trialThresh = 100 +160544 timeMaxOut = 20 +160545 timeElapsed = 2 +160545 totalPokes = 10 +160546 totalRewards = 4 +160546 countPokes1 = 2 +160546 countRewards1 = 1 +160546 leafProbs1 = 80 +160547 countPokes2 = 0 +160547 countRewards2 = 0 +160561 leafProbs2 = 20 +160561 countPokes3 = 2 +160562 countRewards3 = 0 +160562 leafProbs3 = 20 +160562 countPokes4 = 2 +160562 countRewards4 = 1 +160563 leafProbs4 = 50 +160563 countPokes5 = 2 +160564 countRewards5 = 1 +160564 leafProbs5 = 80 +160578 countPokes6 = 2 +160578 countRewards6 = 1 +160578 leafProbs6 = 50 +~~~ +160697 1 0 +163834 DOWN 1 +163834 0 0 +166987 UP 2 +166987 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +167144 DOWN 2 +167144 0 0 +167149 UP 2 +167149 2 0 +~~~ +167168 contingency = 0 +167168 trialThresh = 100 +167169 timeMaxOut = 20 +167169 timeElapsed = 2 +167170 totalPokes = 11 +167170 totalRewards = 4 +167170 countPokes1 = 2 +167170 countRewards1 = 1 +167171 leafProbs1 = 80 +167171 countPokes2 = 1 +167172 countRewards2 = 0 +167186 leafProbs2 = 20 +167186 countPokes3 = 2 +167186 countRewards3 = 0 +167186 leafProbs3 = 20 +167186 countPokes4 = 2 +167187 countRewards4 = 1 +167187 leafProbs4 = 50 +167188 countPokes5 = 2 +167188 countRewards5 = 1 +167188 leafProbs5 = 80 +167202 countPokes6 = 2 +167202 countRewards6 = 1 +167202 leafProbs6 = 50 +~~~ +169470 DOWN 2 +169470 0 0 +169499 UP 2 +169499 2 0 +169914 DOWN 2 +169914 0 0 +178210 UP 1 +178210 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178233 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178533 1 0 +181346 DOWN 1 +181346 0 0 +~~~ +181372 contingency = 0 +181372 trialThresh = 100 +181372 timeMaxOut = 20 +181373 timeElapsed = 2 +181373 totalPokes = 12 +181374 totalRewards = 5 +181374 countPokes1 = 3 +181374 countRewards1 = 2 +181374 leafProbs1 = 80 +181375 countPokes2 = 1 +181375 countRewards2 = 0 +181389 leafProbs2 = 20 +181389 countPokes3 = 2 +181390 countRewards3 = 0 +181390 leafProbs3 = 20 +181390 countPokes4 = 2 +181390 countRewards4 = 1 +181391 leafProbs4 = 50 +181391 countPokes5 = 2 +181392 countRewards5 = 1 +181392 leafProbs5 = 80 +181406 countPokes6 = 2 +181406 countRewards6 = 1 +181406 leafProbs6 = 50 +~~~ +184630 UP 2 +184630 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184804 DOWN 2 +184804 0 0 +184815 UP 2 +184815 2 0 +~~~ +184832 contingency = 0 +184832 trialThresh = 100 +184832 timeMaxOut = 20 +184832 timeElapsed = 2 +184833 totalPokes = 13 +184833 totalRewards = 5 +184834 countPokes1 = 3 +184834 countRewards1 = 2 +184834 leafProbs1 = 80 +184834 countPokes2 = 2 +184835 countRewards2 = 0 +184849 leafProbs2 = 20 +184849 countPokes3 = 2 +184850 countRewards3 = 0 +184850 leafProbs3 = 20 +184850 countPokes4 = 2 +184850 countRewards4 = 1 +184850 leafProbs4 = 50 +184851 countPokes5 = 2 +184851 countRewards5 = 1 +184852 leafProbs5 = 80 +184865 countPokes6 = 2 +184866 countRewards6 = 1 +184866 leafProbs6 = 50 +~~~ +185326 DOWN 2 +185326 0 0 +185333 UP 2 +185333 2 0 +185995 DOWN 2 +185995 0 0 +189960 UP 1 +189960 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190078 DOWN 1 +190078 0 0 +190080 UP 1 +190080 1 0 +~~~ +190098 contingency = 0 +190099 trialThresh = 100 +190099 timeMaxOut = 20 +190100 timeElapsed = 2 +190100 totalPokes = 14 +190100 totalRewards = 5 +190100 countPokes1 = 4 +190101 countRewards1 = 2 +190101 leafProbs1 = 80 +190101 countPokes2 = 2 +190102 countRewards2 = 0 +190116 leafProbs2 = 20 +190116 countPokes3 = 2 +190116 countRewards3 = 0 +190116 leafProbs3 = 20 +190117 countPokes4 = 2 +190117 countRewards4 = 1 +190118 leafProbs4 = 50 +190118 countPokes5 = 2 +190118 countRewards5 = 1 +190118 leafProbs5 = 80 +190132 countPokes6 = 2 +190132 countRewards6 = 1 +190132 leafProbs6 = 50 +~~~ +190133 DOWN 1 +190133 0 0 +190160 UP 1 +190160 1 0 +190248 DOWN 1 +190248 0 0 +190276 UP 1 +190276 1 0 +190356 DOWN 1 +190356 0 0 +190391 UP 1 +190391 1 0 +190481 DOWN 1 +190481 0 0 +190555 UP 1 +190555 1 0 +190570 DOWN 1 +190570 0 0 +190849 UP 1 +190849 1 0 +190908 DOWN 1 +190908 0 0 +193661 UP 2 +193661 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +193935 DOWN 2 +193935 0 0 +193938 UP 2 +193938 2 0 +~~~ +193959 contingency = 0 +193959 trialThresh = 100 +193960 timeMaxOut = 20 +193960 timeElapsed = 2 +193960 totalPokes = 15 +193960 totalRewards = 5 +193961 countPokes1 = 4 +193961 countRewards1 = 2 +193962 leafProbs1 = 80 +193962 countPokes2 = 3 +193962 countRewards2 = 0 +193976 leafProbs2 = 20 +193976 countPokes3 = 2 +193977 countRewards3 = 0 +193977 leafProbs3 = 20 +193977 countPokes4 = 2 +193978 countRewards4 = 1 +193978 leafProbs4 = 50 +193978 countPokes5 = 2 +193978 countRewards5 = 1 +193979 leafProbs5 = 80 +193992 countPokes6 = 2 +193993 countRewards6 = 1 +193993 leafProbs6 = 50 +~~~ +194100 DOWN 2 +194100 0 0 +196098 UP 1 +196098 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196123 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196423 1 0 +196514 DOWN 1 +196514 0 0 +196516 UP 1 +196516 1 0 +~~~ +196532 contingency = 0 +196532 trialThresh = 100 +196532 timeMaxOut = 20 +196533 timeElapsed = 3 +196533 totalPokes = 16 +196534 totalRewards = 6 +196534 countPokes1 = 5 +196534 countRewards1 = 3 +196534 leafProbs1 = 80 +196534 countPokes2 = 3 +196535 countRewards2 = 0 +196549 leafProbs2 = 20 +196549 countPokes3 = 2 +196550 countRewards3 = 0 +196550 leafProbs3 = 20 +196550 countPokes4 = 2 +196550 countRewards4 = 1 +196551 leafProbs4 = 50 +196551 countPokes5 = 2 +196551 countRewards5 = 1 +196552 leafProbs5 = 80 +196565 countPokes6 = 2 +196566 countRewards6 = 1 +196566 leafProbs6 = 50 +~~~ +198509 DOWN 1 +198509 0 0 +202035 UP 1 +202035 1 0 +202194 DOWN 1 +202194 0 0 +213522 UP 6 +213522 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +213903 DOWN 6 +213903 0 0 +213919 UP 6 +213919 32 0 +~~~ +213923 contingency = 0 +213923 trialThresh = 100 +213924 timeMaxOut = 20 +213924 timeElapsed = 3 +213925 totalPokes = 17 +213925 totalRewards = 6 +213925 countPokes1 = 5 +213925 countRewards1 = 3 +213926 leafProbs1 = 80 +213926 countPokes2 = 3 +213927 countRewards2 = 0 +213940 leafProbs2 = 20 +213941 countPokes3 = 2 +213941 countRewards3 = 0 +213941 leafProbs3 = 20 +213941 countPokes4 = 2 +213942 countRewards4 = 1 +213942 leafProbs4 = 50 +213943 countPokes5 = 2 +213943 countRewards5 = 1 +213943 leafProbs5 = 80 +213957 countPokes6 = 3 +213957 countRewards6 = 1 +213957 leafProbs6 = 50 +~~~ +213962 DOWN 6 +213962 0 0 +218705 UP 5 +218705 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +218741 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +219041 16 0 +220419 DOWN 5 +220419 0 0 +220425 UP 5 +220425 16 0 +~~~ +220436 contingency = 0 +220436 trialThresh = 100 +220437 timeMaxOut = 20 +220437 timeElapsed = 3 +220437 totalPokes = 18 +220437 totalRewards = 7 +220437 countPokes1 = 5 +220438 countRewards1 = 3 +220438 leafProbs1 = 80 +220439 countPokes2 = 3 +220439 countRewards2 = 0 +220453 leafProbs2 = 20 +220453 countPokes3 = 2 +220453 countRewards3 = 0 +220454 leafProbs3 = 20 +220454 countPokes4 = 2 +220455 countRewards4 = 1 +220455 leafProbs4 = 50 +220455 countPokes5 = 3 +220455 countRewards5 = 2 +220455 leafProbs5 = 80 +220469 countPokes6 = 3 +220469 countRewards6 = 1 +220470 leafProbs6 = 50 +~~~ +221126 DOWN 5 +221126 0 0 +221145 UP 5 +221145 16 0 +221557 DOWN 5 +221557 0 0 +225579 UP 6 +225579 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +225814 DOWN 6 +225814 0 0 +225835 UP 6 +225835 32 0 +~~~ +225843 contingency = 0 +225843 trialThresh = 100 +225843 timeMaxOut = 20 +225844 timeElapsed = 3 +225844 totalPokes = 19 +225845 totalRewards = 7 +225845 countPokes1 = 5 +225845 countRewards1 = 3 +225845 leafProbs1 = 80 +225846 countPokes2 = 3 +225846 countRewards2 = 0 +225860 leafProbs2 = 20 +225860 countPokes3 = 2 +225861 countRewards3 = 0 +225861 leafProbs3 = 20 +225861 countPokes4 = 2 +225861 countRewards4 = 1 +225862 leafProbs4 = 50 +225862 countPokes5 = 3 +225863 countRewards5 = 2 +225863 leafProbs5 = 80 +225877 countPokes6 = 4 +225877 countRewards6 = 1 +225877 leafProbs6 = 50 +~~~ +226005 DOWN 6 +226005 0 0 +226079 UP 6 +226079 32 0 +226211 DOWN 6 +226211 0 0 +226241 UP 6 +226241 32 0 +226290 DOWN 6 +226290 0 0 +226389 UP 6 +226389 32 0 +226584 DOWN 6 +226584 0 0 +226651 UP 6 +226651 32 0 +226788 DOWN 6 +226788 0 0 +230377 UP 5 +230377 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230409 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230619 DOWN 5 +230619 0 1024 +230632 UP 5 +230632 16 1024 +~~~ +230647 contingency = 0 +230647 trialThresh = 100 +230647 timeMaxOut = 20 +230647 timeElapsed = 3 +230648 totalPokes = 20 +230648 totalRewards = 8 +230649 countPokes1 = 5 +230649 countRewards1 = 3 +230649 leafProbs1 = 80 +230649 countPokes2 = 3 +230650 countRewards2 = 0 +230663 leafProbs2 = 20 +230664 countPokes3 = 2 +230664 countRewards3 = 0 +230665 leafProbs3 = 20 +230665 countPokes4 = 2 +230665 countRewards4 = 1 +230665 leafProbs4 = 50 +230666 countPokes5 = 4 +230666 countRewards5 = 3 +230667 leafProbs5 = 80 +230680 countPokes6 = 4 +230681 countRewards6 = 1 +230681 leafProbs6 = 50 +~~~ +230708 16 0 +232797 DOWN 5 +232796 0 0 +232802 UP 5 +232802 16 0 +232900 DOWN 5 +232900 0 0 +232928 UP 5 +232928 16 0 +233233 DOWN 5 +233233 0 0 +233256 UP 5 +233256 16 0 +233319 DOWN 5 +233319 0 0 +235867 UP 6 +235867 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +235898 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +236198 32 0 +238601 DOWN 6 +238601 0 0 +238614 UP 6 +238614 32 0 +~~~ +238631 contingency = 0 +238631 trialThresh = 100 +238631 timeMaxOut = 20 +238631 timeElapsed = 4 +238632 totalPokes = 21 +238632 totalRewards = 9 +238632 countPokes1 = 5 +238633 countRewards1 = 3 +238633 leafProbs1 = 80 +238633 countPokes2 = 3 +238633 countRewards2 = 0 +238647 leafProbs2 = 20 +238648 countPokes3 = 2 +238648 countRewards3 = 0 +238649 leafProbs3 = 20 +238649 countPokes4 = 2 +238649 countRewards4 = 1 +238649 leafProbs4 = 50 +238650 countPokes5 = 4 +238650 countRewards5 = 3 +238650 leafProbs5 = 80 +238664 countPokes6 = 5 +238664 countRewards6 = 2 +238665 leafProbs6 = 50 +~~~ +239049 DOWN 6 +239049 0 0 +250071 UP 1 +250071 1 0 +~~~ +~~~ +250097 DOWN 1 +250097 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250103 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250129 UP 1 +250129 1 64 +~~~ +250136 contingency = 0 +250137 trialThresh = 100 +250137 timeMaxOut = 20 +250137 timeElapsed = 4 +250137 totalPokes = 22 +250137 totalRewards = 10 +250138 countPokes1 = 6 +250138 countRewards1 = 4 +250139 leafProbs1 = 80 +250139 countPokes2 = 3 +250139 countRewards2 = 0 +250153 leafProbs2 = 20 +250153 countPokes3 = 2 +250154 countRewards3 = 0 +250154 leafProbs3 = 20 +250155 countPokes4 = 2 +250155 countRewards4 = 1 +250155 leafProbs4 = 50 +250155 countPokes5 = 4 +250156 countRewards5 = 3 +250156 leafProbs5 = 80 +250170 countPokes6 = 5 +250170 countRewards6 = 2 +250170 leafProbs6 = 50 +~~~ +250171 DOWN 1 +250171 0 64 +250204 UP 1 +250204 1 64 +250248 DOWN 1 +250248 0 64 +250280 UP 1 +250280 1 64 +250403 1 0 +250446 DOWN 1 +250446 0 0 +250455 UP 1 +250455 1 0 +253556 DOWN 1 +253556 0 0 +256084 UP 2 +256084 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256264 DOWN 2 +256264 0 0 +256267 UP 2 +256267 2 0 +~~~ +256282 contingency = 0 +256282 trialThresh = 100 +256282 timeMaxOut = 20 +256282 timeElapsed = 4 +256282 totalPokes = 23 +256283 totalRewards = 10 +256283 countPokes1 = 6 +256284 countRewards1 = 4 +256284 leafProbs1 = 80 +256284 countPokes2 = 4 +256284 countRewards2 = 0 +256298 leafProbs2 = 20 +256299 countPokes3 = 2 +256299 countRewards3 = 0 +256300 leafProbs3 = 20 +256300 countPokes4 = 2 +256300 countRewards4 = 1 +256300 leafProbs4 = 50 +256301 countPokes5 = 4 +256301 countRewards5 = 3 +256302 leafProbs5 = 80 +256315 countPokes6 = 5 +256316 countRewards6 = 2 +256316 leafProbs6 = 50 +~~~ +256546 DOWN 2 +256546 0 0 +256572 UP 2 +256572 2 0 +256748 DOWN 2 +256748 0 0 +258880 UP 1 +258880 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +258914 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +259214 1 0 +261848 DOWN 1 +261848 0 0 +~~~ +261868 contingency = 0 +261868 trialThresh = 100 +261868 timeMaxOut = 20 +261868 timeElapsed = 4 +261869 totalPokes = 24 +261869 totalRewards = 11 +261870 countPokes1 = 7 +261870 countRewards1 = 5 +261870 leafProbs1 = 80 +261870 countPokes2 = 4 +261870 countRewards2 = 0 +261884 leafProbs2 = 20 +261885 countPokes3 = 2 +261885 countRewards3 = 0 +261886 leafProbs3 = 20 +261886 countPokes4 = 2 +261886 countRewards4 = 1 +261886 leafProbs4 = 50 +261887 countPokes5 = 4 +261887 countRewards5 = 3 +261888 leafProbs5 = 80 +261901 countPokes6 = 5 +261902 countRewards6 = 2 +261902 leafProbs6 = 50 +~~~ +267560 UP 2 +267560 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +267886 DOWN 2 +267886 0 0 +267900 UP 2 +267900 2 0 +~~~ +267911 contingency = 0 +267911 trialThresh = 100 +267912 timeMaxOut = 20 +267912 timeElapsed = 4 +267912 totalPokes = 25 +267912 totalRewards = 11 +267913 countPokes1 = 7 +267913 countRewards1 = 5 +267914 leafProbs1 = 80 +267914 countPokes2 = 5 +267914 countRewards2 = 0 +267928 leafProbs2 = 20 +267928 countPokes3 = 2 +267928 countRewards3 = 0 +267929 leafProbs3 = 20 +267929 countPokes4 = 2 +267930 countRewards4 = 1 +267930 leafProbs4 = 50 +267930 countPokes5 = 4 +267930 countRewards5 = 3 +267931 leafProbs5 = 80 +267944 countPokes6 = 5 +267945 countRewards6 = 2 +267945 leafProbs6 = 50 +~~~ +267946 DOWN 2 +267946 0 0 +272470 UP 2 +272470 2 0 +272489 DOWN 2 +272489 0 0 +272498 UP 2 +272498 2 0 +272506 DOWN 2 +272506 0 0 +275002 UP 1 +275002 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275036 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275336 1 0 +277515 DOWN 1 +277515 0 0 +277520 UP 1 +277520 1 0 +~~~ +277532 contingency = 0 +277533 trialThresh = 100 +277533 timeMaxOut = 20 +277534 timeElapsed = 5 +277534 totalPokes = 26 +277534 totalRewards = 12 +277534 countPokes1 = 8 +277534 countRewards1 = 6 +277535 leafProbs1 = 80 +277535 countPokes2 = 5 +277536 countRewards2 = 0 +277550 leafProbs2 = 20 +277550 countPokes3 = 2 +277550 countRewards3 = 0 +277550 leafProbs3 = 20 +277551 countPokes4 = 2 +277551 countRewards4 = 1 +277552 leafProbs4 = 50 +277552 countPokes5 = 4 +277552 countRewards5 = 3 +277552 leafProbs5 = 80 +277566 countPokes6 = 5 +277566 countRewards6 = 2 +277566 leafProbs6 = 50 +~~~ +277832 DOWN 1 +277832 0 0 +284331 UP 1 +284331 1 0 +284497 DOWN 1 +284497 0 0 +290436 UP 2 +290436 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +291663 DOWN 2 +291663 0 0 +~~~ +291685 contingency = 0 +291686 trialThresh = 100 +291686 timeMaxOut = 20 +291686 timeElapsed = 5 +291686 totalPokes = 27 +291687 totalRewards = 12 +291687 countPokes1 = 8 +291688 countRewards1 = 6 +291688 leafProbs1 = 80 +291688 countPokes2 = 6 +291688 countRewards2 = 0 +291702 leafProbs2 = 20 +291702 countPokes3 = 2 +291703 countRewards3 = 0 +291703 leafProbs3 = 20 +291704 countPokes4 = 2 +291704 countRewards4 = 1 +291704 leafProbs4 = 50 +291704 countPokes5 = 4 +291705 countRewards5 = 3 +291705 leafProbs5 = 80 +291719 countPokes6 = 5 +291719 countRewards6 = 2 +291720 leafProbs6 = 50 +~~~ +298521 UP 1 +298521 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298560 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298859 1 0 +301302 DOWN 1 +301302 0 0 +301320 UP 1 +301320 1 0 +~~~ +301324 contingency = 0 +301324 trialThresh = 100 +301324 timeMaxOut = 20 +301324 timeElapsed = 5 +301325 totalPokes = 28 +301325 totalRewards = 13 +301326 countPokes1 = 9 +301326 countRewards1 = 7 +301326 leafProbs1 = 80 +301326 countPokes2 = 6 +301327 countRewards2 = 0 +301341 leafProbs2 = 20 +301341 countPokes3 = 2 +301342 countRewards3 = 0 +301342 leafProbs3 = 20 +301342 countPokes4 = 2 +301342 countRewards4 = 1 +301343 leafProbs4 = 50 +301343 countPokes5 = 4 +301343 countRewards5 = 3 +301344 leafProbs5 = 80 +301357 countPokes6 = 5 +301358 countRewards6 = 2 +301358 leafProbs6 = 50 +~~~ +301818 DOWN 1 +301818 0 0 +308157 UP 2 +308157 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +308409 DOWN 2 +308409 0 0 +~~~ +308433 contingency = 0 +308433 trialThresh = 100 +308433 timeMaxOut = 20 +308434 timeElapsed = 5 +308434 totalPokes = 29 +308435 totalRewards = 13 +308435 countPokes1 = 9 +308435 countRewards1 = 7 +308435 leafProbs1 = 80 +308436 countPokes2 = 7 +308436 countRewards2 = 0 +308450 leafProbs2 = 20 +308451 countPokes3 = 2 +308451 countRewards3 = 0 +308451 leafProbs3 = 20 +308451 countPokes4 = 2 +308452 countRewards4 = 1 +308452 leafProbs4 = 50 +308452 countPokes5 = 4 +308453 countRewards5 = 3 +308453 leafProbs5 = 80 +308467 countPokes6 = 5 +308467 countRewards6 = 2 +308467 leafProbs6 = 50 +~~~ +311726 UP 1 +311726 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +312211 DOWN 1 +312211 0 0 +~~~ +312317 contingency = 0 +312317 trialThresh = 100 +312318 timeMaxOut = 20 +312318 timeElapsed = 5 +312319 totalPokes = 30 +312319 totalRewards = 13 +312319 countPokes1 = 10 +312319 countRewards1 = 7 +312320 leafProbs1 = 80 +312320 countPokes2 = 7 +312321 countRewards2 = 0 +312335 leafProbs2 = 20 +312335 countPokes3 = 2 +312335 countRewards3 = 0 +312335 leafProbs3 = 20 +312335 countPokes4 = 2 +312336 countRewards4 = 1 +312336 leafProbs4 = 50 +312337 countPokes5 = 4 +312337 countRewards5 = 3 +312337 leafProbs5 = 80 +312351 countPokes6 = 5 +312351 countRewards6 = 2 +312351 leafProbs6 = 50 +~~~ +329565 UP 1 +329565 1 0 +329578 DOWN 1 +329578 0 0 +329607 UP 1 +329607 1 0 +329615 DOWN 1 +329615 0 0 +336849 UP 6 +336849 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +337375 DOWN 6 +337375 0 0 +~~~ +337402 contingency = 0 +337403 trialThresh = 100 +337403 timeMaxOut = 20 +337403 timeElapsed = 6 +337403 totalPokes = 31 +337404 totalRewards = 13 +337404 countPokes1 = 10 +337405 countRewards1 = 7 +337405 leafProbs1 = 80 +337405 countPokes2 = 7 +337405 countRewards2 = 0 +337419 leafProbs2 = 20 +337419 countPokes3 = 2 +337420 countRewards3 = 0 +337420 leafProbs3 = 20 +337421 countPokes4 = 2 +337421 countRewards4 = 1 +337421 leafProbs4 = 50 +337421 countPokes5 = 4 +337422 countRewards5 = 3 +337422 leafProbs5 = 80 +337436 countPokes6 = 6 +337436 countRewards6 = 2 +337437 leafProbs6 = 50 +~~~ +339595 UP 6 +339595 32 0 +339614 DOWN 6 +339614 0 0 +339917 UP 6 +339917 32 0 +340039 DOWN 6 +340039 0 0 +340062 UP 6 +340062 32 0 +341221 DOWN 6 +341221 0 0 +348806 UP 6 +348806 32 0 +349029 DOWN 6 +349029 0 0 +370690 UP 3 +370690 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +371347 DOWN 3 +371347 0 0 +~~~ +371366 contingency = 0 +371367 trialThresh = 100 +371367 timeMaxOut = 20 +371368 timeElapsed = 7 +371368 totalPokes = 32 +371368 totalRewards = 13 +371368 countPokes1 = 10 +371369 countRewards1 = 7 +371369 leafProbs1 = 80 +371370 countPokes2 = 7 +371370 countRewards2 = 0 +371384 leafProbs2 = 20 +371384 countPokes3 = 3 +371384 countRewards3 = 0 +371385 leafProbs3 = 20 +371385 countPokes4 = 2 +371386 countRewards4 = 1 +371386 leafProbs4 = 50 +371386 countPokes5 = 4 +371386 countRewards5 = 3 +371386 leafProbs5 = 80 +371400 countPokes6 = 6 +371400 countRewards6 = 2 +371401 leafProbs6 = 50 +~~~ +371401 UP 3 +371401 4 0 +371462 DOWN 3 +371462 0 0 +376503 UP 4 +376503 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376533 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376832 8 0 +379496 DOWN 4 +379496 0 0 +~~~ +379512 contingency = 0 +379512 trialThresh = 100 +379512 timeMaxOut = 20 +379512 timeElapsed = 7 +379512 totalPokes = 33 +379513 totalRewards = 14 +379513 countPokes1 = 10 +379514 countRewards1 = 7 +379514 leafProbs1 = 80 +379514 countPokes2 = 7 +379514 countRewards2 = 0 +379528 leafProbs2 = 20 +379529 countPokes3 = 3 +379529 countRewards3 = 0 +379530 leafProbs3 = 20 +379530 countPokes4 = 3 +379530 countRewards4 = 2 +379530 leafProbs4 = 50 +379531 countPokes5 = 4 +379531 countRewards5 = 3 +379532 leafProbs5 = 80 +379545 countPokes6 = 6 +379546 countRewards6 = 2 +379546 leafProbs6 = 50 +~~~ +379546 UP 4 +379546 8 0 +380063 DOWN 4 +380063 0 0 +380421 UP 4 +380421 8 0 +382496 DOWN 4 +382496 0 0 +387918 UP 3 +387918 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +388412 DOWN 3 +388412 0 0 +~~~ +388430 contingency = 0 +388430 trialThresh = 100 +388430 timeMaxOut = 20 +388431 timeElapsed = 7 +388431 totalPokes = 34 +388432 totalRewards = 14 +388432 countPokes1 = 10 +388432 countRewards1 = 7 +388432 leafProbs1 = 80 +388433 countPokes2 = 7 +388433 countRewards2 = 0 +388447 leafProbs2 = 20 +388448 countPokes3 = 4 +388448 countRewards3 = 0 +388448 leafProbs3 = 20 +388448 countPokes4 = 3 +388448 countRewards4 = 2 +388449 leafProbs4 = 50 +388449 countPokes5 = 4 +388450 countRewards5 = 3 +388450 leafProbs5 = 80 +388464 countPokes6 = 6 +388464 countRewards6 = 2 +388464 leafProbs6 = 50 +~~~ +390881 UP 4 +390881 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +390913 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391213 8 0 +393870 DOWN 4 +393870 0 0 +~~~ +393894 contingency = 0 +393894 trialThresh = 100 +393894 timeMaxOut = 20 +393894 timeElapsed = 7 +393895 totalPokes = 35 +393895 totalRewards = 15 +393895 countPokes1 = 10 +393896 countRewards1 = 7 +393896 leafProbs1 = 80 +393896 countPokes2 = 7 +393896 countRewards2 = 0 +393910 leafProbs2 = 20 +393911 countPokes3 = 4 +393911 countRewards3 = 0 +393912 leafProbs3 = 20 +393912 countPokes4 = 4 +393912 countRewards4 = 3 +393912 leafProbs4 = 50 +393913 countPokes5 = 4 +393913 countRewards5 = 3 +393914 leafProbs5 = 80 +393927 countPokes6 = 6 +393928 countRewards6 = 2 +393928 leafProbs6 = 50 +~~~ +396968 UP 3 +396968 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +396991 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +397291 4 0 +397330 DOWN 3 +397330 0 0 +397342 UP 3 +397342 4 0 +~~~ +397350 contingency = 0 +397350 trialThresh = 100 +397351 timeMaxOut = 20 +397351 timeElapsed = 8 +397352 totalPokes = 36 +397352 totalRewards = 16 +397352 countPokes1 = 10 +397352 countRewards1 = 7 +397353 leafProbs1 = 80 +397353 countPokes2 = 7 +397353 countRewards2 = 0 +397368 leafProbs2 = 20 +397368 countPokes3 = 5 +397368 countRewards3 = 1 +397368 leafProbs3 = 20 +397368 countPokes4 = 4 +397369 countRewards4 = 3 +397369 leafProbs4 = 50 +397370 countPokes5 = 4 +397370 countRewards5 = 3 +397370 leafProbs5 = 80 +397384 countPokes6 = 6 +397384 countRewards6 = 2 +397384 leafProbs6 = 50 +~~~ +397422 DOWN 3 +397422 0 0 +397432 UP 3 +397432 4 0 +397510 DOWN 3 +397510 0 0 +397514 UP 3 +397514 4 0 +400532 DOWN 3 +400532 0 0 +419715 UP 4 +419715 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +419745 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420045 8 0 +422470 DOWN 4 +422470 0 0 +422484 UP 4 +422484 8 0 +~~~ +422499 contingency = 0 +422499 trialThresh = 100 +422499 timeMaxOut = 20 +422499 timeElapsed = 8 +422500 totalPokes = 37 +422500 totalRewards = 17 +422501 countPokes1 = 10 +422501 countRewards1 = 7 +422501 leafProbs1 = 80 +422501 countPokes2 = 7 +422502 countRewards2 = 0 +422516 leafProbs2 = 20 +422516 countPokes3 = 5 +422517 countRewards3 = 1 +422517 leafProbs3 = 20 +422517 countPokes4 = 5 +422517 countRewards4 = 4 +422517 leafProbs4 = 50 +422518 countPokes5 = 4 +422518 countRewards5 = 3 +422519 leafProbs5 = 80 +422532 countPokes6 = 6 +422533 countRewards6 = 2 +422533 leafProbs6 = 50 +~~~ +423017 DOWN 4 +423017 0 0 +427069 UP 3 +427069 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427094 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427239 DOWN 3 +427239 0 256 +427241 UP 3 +427241 4 256 +~~~ +427264 contingency = 0 +427264 trialThresh = 100 +427264 timeMaxOut = 20 +427265 timeElapsed = 8 +427265 totalPokes = 38 +427265 totalRewards = 18 +427265 countPokes1 = 10 +427266 countRewards1 = 7 +427266 leafProbs1 = 80 +427267 countPokes2 = 7 +427267 countRewards2 = 0 +427281 leafProbs2 = 20 +427281 countPokes3 = 6 +427281 countRewards3 = 2 +427282 leafProbs3 = 20 +427282 countPokes4 = 5 +427283 countRewards4 = 4 +427283 leafProbs4 = 50 +427283 countPokes5 = 4 +427283 countRewards5 = 3 +427284 leafProbs5 = 80 +427297 countPokes6 = 6 +427298 countRewards6 = 2 +427298 leafProbs6 = 50 +~~~ +427394 4 0 +428859 DOWN 3 +428859 0 0 +428870 UP 3 +428870 4 0 +430500 DOWN 3 +430500 0 0 +430508 UP 3 +430508 4 0 +430526 DOWN 3 +430526 0 0 +430529 UP 3 +430529 4 0 +430591 DOWN 3 +430591 0 0 +430598 UP 3 +430598 4 0 +430616 DOWN 3 +430616 0 0 +430625 UP 3 +430625 4 0 +430632 DOWN 3 +430632 0 0 +430643 UP 3 +430643 4 0 +430705 DOWN 3 +430705 0 0 +430716 UP 3 +430716 4 0 +430743 DOWN 3 +430743 0 0 +430751 UP 3 +430751 4 0 +430764 DOWN 3 +430764 0 0 +430767 UP 3 +430767 4 0 +430813 DOWN 3 +430813 0 0 +430823 UP 3 +430823 4 0 +430837 DOWN 3 +430837 0 0 +430847 UP 3 +430847 4 0 +430937 DOWN 3 +430937 0 0 +438029 UP 4 +438029 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +438640 DOWN 4 +438640 0 0 +~~~ +438656 contingency = 0 +438656 trialThresh = 100 +438657 timeMaxOut = 20 +438657 timeElapsed = 9 +438657 totalPokes = 39 +438657 totalRewards = 18 +438658 countPokes1 = 10 +438658 countRewards1 = 7 +438659 leafProbs1 = 80 +438659 countPokes2 = 7 +438659 countRewards2 = 0 +438673 leafProbs2 = 20 +438673 countPokes3 = 6 +438674 countRewards3 = 2 +438674 leafProbs3 = 20 +438675 countPokes4 = 6 +438675 countRewards4 = 4 +438675 leafProbs4 = 50 +438675 countPokes5 = 4 +438675 countRewards5 = 3 +438676 leafProbs5 = 80 +438690 countPokes6 = 6 +438690 countRewards6 = 2 +438690 leafProbs6 = 50 +~~~ +440259 UP 3 +440259 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +440484 DOWN 3 +440484 0 0 +~~~ +440505 UP 3 +440505 4 0 +440506 contingency = 0 +440506 trialThresh = 100 +440507 timeMaxOut = 20 +440507 timeElapsed = 9 +440507 totalPokes = 40 +440507 totalRewards = 18 +440508 countPokes1 = 10 +440508 countRewards1 = 7 +440508 leafProbs1 = 80 +440509 countPokes2 = 7 +440523 countRewards2 = 0 +440523 leafProbs2 = 20 +440523 countPokes3 = 7 +440523 countRewards3 = 2 +440524 leafProbs3 = 20 +440524 countPokes4 = 6 +440525 countRewards4 = 4 +440525 leafProbs4 = 50 +440525 countPokes5 = 4 +440525 countRewards5 = 3 +440539 leafProbs5 = 80 +440539 countPokes6 = 6 +440540 countRewards6 = 2 +440540 leafProbs6 = 50 +~~~ +440595 DOWN 3 +440595 0 0 +440601 UP 3 +440601 4 0 +440618 DOWN 3 +440618 0 0 +440634 UP 3 +440634 4 0 +440725 DOWN 3 +440725 0 0 +440729 UP 3 +440729 4 0 +440749 DOWN 3 +440749 0 0 +440787 UP 3 +440787 4 0 +441093 DOWN 3 +441093 0 0 +441136 UP 3 +441136 4 0 +441147 DOWN 3 +441147 0 0 +441287 UP 3 +441287 4 0 +441509 DOWN 3 +441509 0 0 +444557 UP 4 +444557 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +444894 DOWN 4 +444894 0 0 +~~~ +444911 contingency = 0 +444911 trialThresh = 100 +444911 timeMaxOut = 20 +444911 timeElapsed = 9 +444912 totalPokes = 41 +444912 totalRewards = 18 +444913 countPokes1 = 10 +444913 countRewards1 = 7 +444913 leafProbs1 = 80 +444913 countPokes2 = 7 +444914 countRewards2 = 0 +444928 leafProbs2 = 20 +444928 countPokes3 = 7 +444929 countRewards3 = 2 +444929 leafProbs3 = 20 +444929 countPokes4 = 7 +444929 countRewards4 = 4 +444930 leafProbs4 = 50 +444930 countPokes5 = 4 +444931 countRewards5 = 3 +444931 leafProbs5 = 80 +444945 countPokes6 = 6 +444945 countRewards6 = 2 +444945 leafProbs6 = 50 +~~~ +451529 UP 6 +451529 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +452216 DOWN 6 +452216 0 0 +~~~ +452237 contingency = 0 +452237 trialThresh = 100 +452238 timeMaxOut = 20 +452238 timeElapsed = 9 +452239 totalPokes = 42 +452239 totalRewards = 18 +452239 countPokes1 = 10 +452239 countRewards1 = 7 +452240 leafProbs1 = 80 +452240 countPokes2 = 7 +452241 countRewards2 = 0 +452255 leafProbs2 = 20 +452255 countPokes3 = 7 +452255 countRewards3 = 2 +452255 leafProbs3 = 20 +452256 countPokes4 = 7 +452256 countRewards4 = 4 +452257 leafProbs4 = 50 +452257 countPokes5 = 4 +452257 countRewards5 = 3 +452257 leafProbs5 = 80 +452271 countPokes6 = 7 +452271 countRewards6 = 2 +452271 leafProbs6 = 50 +~~~ +452272 UP 6 +452272 32 0 +452323 DOWN 6 +452323 0 0 +456828 UP 6 +456828 32 0 +457039 DOWN 6 +457039 0 0 +458402 UP 5 +458402 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458432 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458732 16 0 +458786 DOWN 5 +458786 0 0 +458790 UP 5 +458790 16 0 +~~~ +458817 contingency = 0 +458817 trialThresh = 100 +458817 timeMaxOut = 20 +458817 timeElapsed = 9 +458818 totalPokes = 43 +458818 totalRewards = 19 +458819 countPokes1 = 10 +458819 countRewards1 = 7 +458819 leafProbs1 = 80 +458819 countPokes2 = 7 +458820 countRewards2 = 0 +458834 leafProbs2 = 20 +458834 countPokes3 = 7 +458835 countRewards3 = 2 +458835 leafProbs3 = 20 +458835 countPokes4 = 7 +458835 countRewards4 = 4 +458836 leafProbs4 = 50 +458836 countPokes5 = 5 +458837 countRewards5 = 4 +458837 leafProbs5 = 80 +458850 countPokes6 = 7 +458851 countRewards6 = 2 +458851 leafProbs6 = 50 +~~~ +460863 DOWN 5 +460863 0 0 +460877 UP 5 +460877 16 0 +461283 DOWN 5 +461283 0 0 +461306 UP 5 +461306 16 0 +461377 DOWN 5 +461377 0 0 +468674 UP 6 +468674 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469094 DOWN 6 +469094 0 0 +~~~ +469120 contingency = 0 +469120 trialThresh = 100 +469120 timeMaxOut = 20 +469121 timeElapsed = 9 +469121 totalPokes = 44 +469122 totalRewards = 19 +469122 countPokes1 = 10 +469122 countRewards1 = 7 +469122 leafProbs1 = 80 +469123 countPokes2 = 7 +469123 countRewards2 = 0 +469137 leafProbs2 = 20 +469138 countPokes3 = 7 +469138 countRewards3 = 2 +469138 leafProbs3 = 20 +469138 countPokes4 = 7 +469138 countRewards4 = 4 +469139 leafProbs4 = 50 +469139 countPokes5 = 5 +469140 countRewards5 = 4 +469140 leafProbs5 = 80 +469154 countPokes6 = 8 +469154 countRewards6 = 2 +469154 leafProbs6 = 50 +~~~ +474207 UP 6 +474207 32 0 +474302 DOWN 6 +474302 0 0 +474380 UP 6 +474380 32 0 +474621 DOWN 6 +474621 0 0 +482030 UP 1 +482030 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +482234 DOWN 1 +482234 0 0 +~~~ +482258 contingency = 0 +482258 trialThresh = 100 +482258 timeMaxOut = 20 +482258 timeElapsed = 10 +482259 totalPokes = 45 +482259 totalRewards = 19 +482260 countPokes1 = 11 +482260 countRewards1 = 7 +482260 leafProbs1 = 80 +482260 countPokes2 = 7 +482261 countRewards2 = 0 +482275 leafProbs2 = 20 +482275 countPokes3 = 7 +482276 countRewards3 = 2 +482276 leafProbs3 = 20 +482276 countPokes4 = 7 +482276 countRewards4 = 4 +482277 leafProbs4 = 50 +482277 countPokes5 = 5 +482278 countRewards5 = 4 +482278 leafProbs5 = 80 +482292 countPokes6 = 8 +482292 countRewards6 = 2 +482292 leafProbs6 = 50 +~~~ +482292 UP 1 +482292 1 0 +482558 DOWN 1 +482558 0 0 +482585 UP 1 +482585 1 0 +482683 DOWN 1 +482683 0 0 +482718 UP 1 +482718 1 0 +482744 DOWN 1 +482744 0 0 +482821 UP 1 +482821 1 0 +482842 DOWN 1 +482842 0 0 +482905 UP 1 +482905 1 0 +482939 DOWN 1 +482939 0 0 +498133 UP 1 +498133 1 0 +498150 DOWN 1 +498150 0 0 +498596 UP 1 +498596 1 0 +498878 DOWN 1 +498878 0 0 +508278 UP 1 +508278 1 0 +508469 DOWN 1 +508469 0 0 +508616 UP 1 +508616 1 0 +508860 DOWN 1 +508860 0 0 +518791 UP 2 +518791 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +519385 DOWN 2 +519385 0 0 +~~~ +519406 contingency = 0 +519406 trialThresh = 100 +519407 timeMaxOut = 20 +519407 timeElapsed = 11 +519407 totalPokes = 46 +519407 totalRewards = 19 +519408 countPokes1 = 11 +519408 countRewards1 = 7 +519409 leafProbs1 = 80 +519409 countPokes2 = 8 +519409 countRewards2 = 0 +519423 leafProbs2 = 20 +519423 countPokes3 = 7 +519424 countRewards3 = 2 +519424 leafProbs3 = 20 +519425 countPokes4 = 7 +519425 countRewards4 = 4 +519425 leafProbs4 = 50 +519425 countPokes5 = 5 +519425 countRewards5 = 4 +519426 leafProbs5 = 80 +519439 countPokes6 = 8 +519440 countRewards6 = 2 +519440 leafProbs6 = 50 +~~~ +519441 UP 2 +519441 2 0 +519447 DOWN 2 +519447 0 0 +524357 UP 1 +524357 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524378 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524678 1 0 +524797 DOWN 1 +524797 0 0 +~~~ +524815 contingency = 0 +524815 trialThresh = 100 +524816 timeMaxOut = 20 +524816 timeElapsed = 11 +524817 totalPokes = 47 +524817 totalRewards = 20 +524817 countPokes1 = 12 +524817 countRewards1 = 8 +524817 leafProbs1 = 80 +524818 countPokes2 = 8 +524818 countRewards2 = 0 +524833 leafProbs2 = 20 +524833 countPokes3 = 7 +524833 countRewards3 = 2 +524833 leafProbs3 = 20 +524833 countPokes4 = 7 +524834 countRewards4 = 4 +524834 leafProbs4 = 50 +524835 countPokes5 = 5 +524835 countRewards5 = 4 +524835 leafProbs5 = 80 +524849 countPokes6 = 8 +524849 countRewards6 = 2 +524849 leafProbs6 = 50 +~~~ +524850 UP 1 +524850 1 0 +524863 DOWN 1 +524863 0 0 +524873 UP 1 +524873 1 0 +527968 DOWN 1 +527968 0 0 +527980 UP 1 +527980 1 0 +528079 DOWN 1 +528079 0 0 +528109 UP 1 +528109 1 0 +528210 DOWN 1 +528210 0 0 +528221 UP 1 +528221 1 0 +528322 DOWN 1 +528322 0 0 +528348 UP 1 +528348 1 0 +528356 DOWN 1 +528356 0 0 +528365 UP 1 +528365 1 0 +528411 DOWN 1 +528411 0 0 +533697 UP 1 +533697 1 0 +533887 DOWN 1 +533887 0 0 +533943 UP 1 +533943 1 0 +535917 DOWN 1 +535917 0 0 +536171 UP 1 +536171 1 0 +536181 DOWN 1 +536181 0 0 +540135 UP 1 +540135 1 0 +540396 DOWN 1 +540396 0 0 +544774 UP 1 +544774 1 0 +544951 DOWN 1 +544951 0 0 +545039 UP 1 +545039 1 0 +545129 DOWN 1 +545129 0 0 +546501 UP 1 +546501 1 0 +546595 DOWN 1 +546595 0 0 +562134 UP 1 +562134 1 0 +562562 DOWN 1 +562562 0 0 +574774 UP 6 +574774 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +574832 DOWN 6 +574832 0 0 +~~~ +574860 contingency = 0 +574860 trialThresh = 100 +574861 timeMaxOut = 20 +574861 timeElapsed = 12 +574862 totalPokes = 48 +574862 totalRewards = 20 +574862 countPokes1 = 12 +574862 countRewards1 = 8 +574863 leafProbs1 = 80 +574863 countPokes2 = 8 +574864 countRewards2 = 0 +574878 leafProbs2 = 20 +574878 countPokes3 = 7 +574878 countRewards3 = 2 +574878 leafProbs3 = 20 +574879 countPokes4 = 7 +574879 countRewards4 = 4 +574879 leafProbs4 = 50 +574880 countPokes5 = 5 +574880 countRewards5 = 4 +574880 leafProbs5 = 80 +574894 countPokes6 = 9 +574894 countRewards6 = 2 +574894 leafProbs6 = 50 +~~~ +574895 UP 6 +574895 32 0 +574983 DOWN 6 +574983 0 0 +575020 UP 6 +575020 32 0 +575089 DOWN 6 +575089 0 0 +575126 UP 6 +575126 32 0 +575149 DOWN 6 +575149 0 0 +577744 UP 6 +577744 32 0 +577748 DOWN 6 +577748 0 0 +578154 UP 6 +578154 32 0 +579354 DOWN 6 +579354 0 0 +579382 UP 6 +579382 32 0 +579514 DOWN 6 +579514 0 0 +580826 UP 6 +580826 32 0 +581310 DOWN 6 +581310 0 0 +581654 UP 6 +581654 32 0 +581711 DOWN 6 +581711 0 0 +582734 UP 6 +582733 32 0 +582748 DOWN 6 +582748 0 0 +585351 UP 6 +585351 32 0 +587498 DOWN 6 +587498 0 0 +595639 UP 1 +595639 1 0 +595653 DOWN 1 +595653 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595663 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595676 contingency = 0 +595676 trialThresh = 100 +595676 timeMaxOut = 20 +595677 timeElapsed = 13 +595677 totalPokes = 49 +595678 totalRewards = 21 +595678 countPokes1 = 13 +595678 countRewards1 = 9 +595678 leafProbs1 = 80 +595679 countPokes2 = 8 +595679 countRewards2 = 0 +595693 leafProbs2 = 20 +595694 countPokes3 = 7 +595694 countRewards3 = 2 +595694 leafProbs3 = 20 +595694 countPokes4 = 7 +595694 countRewards4 = 4 +595695 leafProbs4 = 50 +595695 countPokes5 = 5 +595696 countRewards5 = 4 +595696 leafProbs5 = 80 +595710 countPokes6 = 9 +595710 countRewards6 = 2 +595710 leafProbs6 = 50 +~~~ +595710 UP 1 +595710 1 64 +595807 DOWN 1 +595807 0 64 +595820 UP 1 +595820 1 64 +595874 DOWN 1 +595874 0 64 +595886 UP 1 +595886 1 64 +595963 1 0 +599155 DOWN 1 +599155 0 0 +599164 UP 1 +599164 1 0 +599808 DOWN 1 +599808 0 0 +688756 UP 6 +688756 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688779 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688956 DOWN 6 +688956 0 2048 +~~~ +688973 contingency = 0 +688973 trialThresh = 100 +688974 timeMaxOut = 20 +688974 timeElapsed = 15 +688974 totalPokes = 50 +688974 totalRewards = 22 +688975 countPokes1 = 13 +688975 countRewards1 = 9 +688976 leafProbs1 = 80 +688976 countPokes2 = 8 +688976 countRewards2 = 0 +688990 leafProbs2 = 20 +688990 countPokes3 = 7 +688991 countRewards3 = 2 +688991 leafProbs3 = 20 +688992 countPokes4 = 7 +688992 countRewards4 = 4 +688992 leafProbs4 = 50 +688992 countPokes5 = 5 +688993 countRewards5 = 4 +688993 leafProbs5 = 80 +689007 countPokes6 = 10 +689007 countRewards6 = 3 +689007 leafProbs6 = 50 +~~~ +689008 UP 6 +689008 32 2048 +689079 32 0 +692128 DOWN 6 +692128 0 0 +692143 UP 6 +692143 32 0 +692685 DOWN 6 +692685 0 0 +698048 UP 6 +698048 32 0 +703204 DOWN 6 +703204 0 0 +704795 UP 5 +704795 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704833 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704998 DOWN 5 +704998 0 1024 +~~~ +705014 contingency = 0 +705014 trialThresh = 100 +705014 timeMaxOut = 20 +705015 timeElapsed = 15 +705015 totalPokes = 51 +705016 totalRewards = 23 +705016 countPokes1 = 13 +705016 countRewards1 = 9 +705016 leafProbs1 = 80 +705017 countPokes2 = 8 +705017 countRewards2 = 0 +705031 leafProbs2 = 20 +705032 countPokes3 = 7 +705032 countRewards3 = 2 +705032 leafProbs3 = 20 +705032 countPokes4 = 7 +705033 countRewards4 = 4 +705033 leafProbs4 = 50 +705033 countPokes5 = 6 +705034 countRewards5 = 5 +705034 leafProbs5 = 80 +705048 countPokes6 = 10 +705048 countRewards6 = 3 +705048 leafProbs6 = 50 +~~~ +705048 UP 5 +705048 16 1024 +705133 16 0 +707856 DOWN 5 +707856 0 0 +707859 UP 5 +707859 16 0 +708389 DOWN 5 +708388 0 0 +708430 UP 5 +708430 16 0 +708506 DOWN 5 +708506 0 0 +708517 UP 5 +708517 16 0 +708729 DOWN 5 +708729 0 0 +708753 UP 5 +708753 16 0 +708838 DOWN 5 +708838 0 0 +708870 UP 5 +708870 16 0 +708943 DOWN 5 +708943 0 0 +712658 UP 6 +712658 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712691 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712856 DOWN 6 +712856 0 2048 +712886 UP 6 +712886 32 2048 +~~~ +712891 contingency = 0 +712892 trialThresh = 100 +712892 timeMaxOut = 20 +712892 timeElapsed = 15 +712892 totalPokes = 52 +712893 totalRewards = 24 +712893 countPokes1 = 13 +712894 countRewards1 = 9 +712894 leafProbs1 = 80 +712894 countPokes2 = 8 +712894 countRewards2 = 0 +712908 leafProbs2 = 20 +712909 countPokes3 = 7 +712909 countRewards3 = 2 +712910 leafProbs3 = 20 +712910 countPokes4 = 7 +712910 countRewards4 = 4 +712910 leafProbs4 = 50 +712910 countPokes5 = 6 +712911 countRewards5 = 5 +712911 leafProbs5 = 80 +712925 countPokes6 = 11 +712925 countRewards6 = 4 +712926 leafProbs6 = 50 +~~~ +712990 32 0 +716085 DOWN 6 +716085 0 0 +716094 UP 6 +716094 32 0 +716526 DOWN 6 +716526 0 0 +725598 UP 1 +725598 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725628 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725712 DOWN 1 +725712 0 64 +~~~ +725726 contingency = 0 +725726 trialThresh = 100 +725727 timeMaxOut = 20 +725727 timeElapsed = 16 +725728 totalPokes = 53 +725728 totalRewards = 25 +725728 countPokes1 = 14 +725728 countRewards1 = 10 +725729 leafProbs1 = 80 +725729 countPokes2 = 8 +725729 countRewards2 = 0 +725744 leafProbs2 = 20 +725744 countPokes3 = 7 +725744 countRewards3 = 2 +725744 leafProbs3 = 20 +725745 countPokes4 = 7 +725745 countRewards4 = 4 +725746 leafProbs4 = 50 +725746 countPokes5 = 6 +725746 countRewards5 = 5 +725746 leafProbs5 = 80 +725760 countPokes6 = 11 +725760 countRewards6 = 4 +725760 leafProbs6 = 50 +~~~ +725761 UP 1 +725761 1 64 +725780 DOWN 1 +725779 0 64 +725790 UP 1 +725790 1 64 +725928 1 0 +725996 DOWN 1 +725996 0 0 +726010 UP 1 +726010 1 0 +729338 DOWN 1 +729338 0 0 +734564 UP 1 +734564 1 0 +734740 DOWN 1 +734740 0 0 +758750 UP 2 +758750 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +758998 DOWN 2 +758998 0 0 +759011 UP 2 +759011 2 0 +~~~ +759026 contingency = 0 +759026 trialThresh = 100 +759027 timeMaxOut = 20 +759027 timeElapsed = 17 +759027 totalPokes = 54 +759027 totalRewards = 25 +759028 countPokes1 = 14 +759028 countRewards1 = 10 +759029 leafProbs1 = 80 +759029 countPokes2 = 9 +759029 countRewards2 = 0 +759043 leafProbs2 = 20 +759043 countPokes3 = 7 +759044 countRewards3 = 2 +759044 leafProbs3 = 20 +759045 countPokes4 = 7 +759045 countRewards4 = 4 +759045 leafProbs4 = 50 +759045 countPokes5 = 6 +759046 countRewards5 = 5 +759046 leafProbs5 = 80 +759060 countPokes6 = 11 +759060 countRewards6 = 4 +759061 leafProbs6 = 50 +~~~ +759247 DOWN 2 +759247 0 0 +764741 UP 2 +764741 2 0 +764877 DOWN 2 +764877 0 0 +768238 UP 1 +768238 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768267 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768567 1 0 +769995 DOWN 1 +769995 0 0 +770003 UP 1 +770003 1 0 +~~~ +770020 contingency = 0 +770021 trialThresh = 100 +770021 timeMaxOut = 20 +770021 timeElapsed = 17 +770021 totalPokes = 55 +770022 totalRewards = 26 +770022 countPokes1 = 15 +770023 countRewards1 = 11 +770023 leafProbs1 = 80 +770023 countPokes2 = 9 +770023 countRewards2 = 0 +770037 leafProbs2 = 20 +770038 countPokes3 = 7 +770038 countRewards3 = 2 +770039 leafProbs3 = 20 +770039 countPokes4 = 7 +770039 countRewards4 = 4 +770039 leafProbs4 = 50 +770040 countPokes5 = 6 +770040 countRewards5 = 5 +770041 leafProbs5 = 80 +770054 countPokes6 = 11 +770055 countRewards6 = 4 +770055 leafProbs6 = 50 +~~~ +770958 DOWN 1 +770958 0 0 +770969 UP 1 +770969 1 0 +771063 DOWN 1 +771063 0 0 +792538 UP 4 +792538 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +792976 DOWN 4 +792976 0 0 +~~~ +793004 contingency = 0 +793004 trialThresh = 100 +793004 timeMaxOut = 20 +793004 timeElapsed = 17 +793005 totalPokes = 56 +793005 totalRewards = 26 +793006 countPokes1 = 15 +793006 countRewards1 = 11 +793006 leafProbs1 = 80 +793006 countPokes2 = 9 +793006 countRewards2 = 0 +793021 leafProbs2 = 20 +793021 countPokes3 = 7 +793022 countRewards3 = 2 +793022 leafProbs3 = 20 +793022 countPokes4 = 8 +793022 countRewards4 = 4 +793023 leafProbs4 = 50 +793023 countPokes5 = 6 +793023 countRewards5 = 5 +793024 leafProbs5 = 80 +793037 countPokes6 = 11 +793038 countRewards6 = 4 +793038 leafProbs6 = 50 +~~~ +796258 UP 3 +796258 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796294 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796527 DOWN 3 +796527 0 256 +796548 UP 3 +796548 4 256 +~~~ +796560 contingency = 0 +796561 trialThresh = 100 +796561 timeMaxOut = 20 +796562 timeElapsed = 18 +796562 totalPokes = 57 +796562 totalRewards = 27 +796562 countPokes1 = 15 +796563 countRewards1 = 11 +796563 leafProbs1 = 80 +796564 countPokes2 = 9 +796564 countRewards2 = 0 +796578 leafProbs2 = 20 +796578 countPokes3 = 8 +796578 countRewards3 = 3 +796579 leafProbs3 = 20 +796579 countPokes4 = 8 +796580 countRewards4 = 4 +796580 leafProbs4 = 50 +796580 countPokes5 = 6 +796580 countRewards5 = 5 +796581 leafProbs5 = 80 +796594 countPokes6 = 11 +796595 countRewards6 = 4 +796595 leafProbs6 = 50 +~~~ +796596 4 0 +796624 DOWN 3 +796624 0 0 +796629 UP 3 +796629 4 0 +801350 DOWN 3 +801350 0 0 +806015 UP 4 +806015 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806042 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806342 8 0 +809642 DOWN 4 +809642 0 0 +~~~ +809664 contingency = 0 +809664 trialThresh = 100 +809664 timeMaxOut = 20 +809665 timeElapsed = 18 +809665 totalPokes = 58 +809666 totalRewards = 28 +809666 countPokes1 = 15 +809666 countRewards1 = 11 +809666 leafProbs1 = 80 +809667 countPokes2 = 9 +809667 countRewards2 = 0 +809681 leafProbs2 = 20 +809682 countPokes3 = 8 +809682 countRewards3 = 3 +809682 leafProbs3 = 20 +809682 countPokes4 = 9 +809683 countRewards4 = 5 +809683 leafProbs4 = 50 +809683 countPokes5 = 6 +809684 countRewards5 = 5 +809684 leafProbs5 = 80 +809698 countPokes6 = 11 +809698 countRewards6 = 4 +809698 leafProbs6 = 50 +~~~ +813030 UP 3 +813030 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +813879 DOWN 3 +813879 0 0 +~~~ +813907 contingency = 0 +813908 trialThresh = 100 +813908 timeMaxOut = 20 +813908 timeElapsed = 18 +813908 totalPokes = 59 +813909 totalRewards = 28 +813909 countPokes1 = 15 +813910 countRewards1 = 11 +813910 leafProbs1 = 80 +813910 countPokes2 = 9 +813910 countRewards2 = 0 +813924 leafProbs2 = 20 +813925 countPokes3 = 9 +813925 countRewards3 = 3 +813926 leafProbs3 = 20 +813926 countPokes4 = 9 +813926 countRewards4 = 5 +813926 leafProbs4 = 50 +813927 countPokes5 = 6 +813927 countRewards5 = 5 +813928 leafProbs5 = 80 +813941 countPokes6 = 11 +813942 countRewards6 = 4 +813942 leafProbs6 = 50 +~~~ +813990 UP 3 +813990 4 0 +814046 DOWN 3 +814046 0 0 +814070 UP 3 +814070 4 0 +814092 DOWN 3 +814092 0 0 +818984 UP 4 +818984 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819019 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819319 8 0 +822032 DOWN 4 +822032 0 0 +822048 UP 4 +822048 8 0 +~~~ +822052 contingency = 0 +822052 trialThresh = 100 +822052 timeMaxOut = 20 +822052 timeElapsed = 18 +822053 totalPokes = 60 +822053 totalRewards = 29 +822054 countPokes1 = 15 +822054 countRewards1 = 11 +822054 leafProbs1 = 80 +822054 countPokes2 = 9 +822055 countRewards2 = 0 +822069 leafProbs2 = 20 +822069 countPokes3 = 9 +822070 countRewards3 = 3 +822070 leafProbs3 = 20 +822070 countPokes4 = 10 +822070 countRewards4 = 6 +822071 leafProbs4 = 50 +822071 countPokes5 = 6 +822072 countRewards5 = 5 +822072 leafProbs5 = 80 +822086 countPokes6 = 11 +822086 countRewards6 = 4 +822086 leafProbs6 = 50 +~~~ +822142 DOWN 4 +822142 0 0 +825685 UP 3 +825685 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825714 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825899 DOWN 3 +825899 0 256 +825911 UP 3 +825911 4 256 +~~~ +825924 contingency = 0 +825924 trialThresh = 100 +825924 timeMaxOut = 20 +825924 timeElapsed = 18 +825924 totalPokes = 61 +825925 totalRewards = 30 +825925 countPokes1 = 15 +825926 countRewards1 = 11 +825926 leafProbs1 = 80 +825926 countPokes2 = 9 +825926 countRewards2 = 0 +825941 leafProbs2 = 20 +825941 countPokes3 = 10 +825941 countRewards3 = 4 +825942 leafProbs3 = 20 +825942 countPokes4 = 10 +825942 countRewards4 = 6 +825942 leafProbs4 = 50 +825943 countPokes5 = 6 +825943 countRewards5 = 5 +825944 leafProbs5 = 80 +825958 countPokes6 = 11 +825958 countRewards6 = 4 +825958 leafProbs6 = 50 +~~~ +826000 DOWN 3 +826000 0 256 +826002 UP 3 +826002 4 256 +826014 4 0 +829816 DOWN 3 +829816 0 0 +838111 UP 4 +838111 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838136 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838436 8 0 +841411 DOWN 4 +841411 0 0 +~~~ +841435 contingency = 0 +841436 trialThresh = 100 +841436 timeMaxOut = 20 +841437 timeElapsed = 19 +841437 totalPokes = 62 +841437 totalRewards = 31 +841437 countPokes1 = 15 +841438 countRewards1 = 11 +841438 leafProbs1 = 80 +841439 countPokes2 = 9 +841439 countRewards2 = 0 +841453 leafProbs2 = 20 +841453 countPokes3 = 10 +841453 countRewards3 = 4 +841454 leafProbs3 = 20 +841454 countPokes4 = 11 +841455 countRewards4 = 7 +841455 leafProbs4 = 50 +841455 countPokes5 = 6 +841455 countRewards5 = 5 +841455 leafProbs5 = 80 +841469 countPokes6 = 11 +841470 countRewards6 = 4 +841470 leafProbs6 = 50 +~~~ +843614 UP 3 +843614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843639 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843789 DOWN 3 +843789 0 256 +843795 UP 3 +843795 4 256 +~~~ +843808 contingency = 0 +843809 trialThresh = 100 +843809 timeMaxOut = 20 +843809 timeElapsed = 19 +843809 totalPokes = 63 +843810 totalRewards = 32 +843810 countPokes1 = 15 +843810 countRewards1 = 11 +843811 leafProbs1 = 80 +843811 countPokes2 = 9 +843811 countRewards2 = 0 +843825 leafProbs2 = 20 +843826 countPokes3 = 11 +843826 countRewards3 = 5 +843827 leafProbs3 = 20 +843827 countPokes4 = 11 +843827 countRewards4 = 7 +843827 leafProbs4 = 50 +843827 countPokes5 = 6 +843828 countRewards5 = 5 +843828 leafProbs5 = 80 +843842 countPokes6 = 11 +843843 countRewards6 = 4 +843843 leafProbs6 = 50 +~~~ +843939 4 0 +845473 DOWN 3 +845473 0 0 +845480 UP 3 +845480 4 0 +846559 DOWN 3 +846559 0 0 +846574 UP 3 +846574 4 0 +847017 DOWN 3 +847017 0 0 +850281 UP 4 +850281 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850308 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850608 8 0 +853788 DOWN 4 +853788 0 0 +~~~ +853810 contingency = 0 +853810 trialThresh = 100 +853811 timeMaxOut = 20 +853811 timeElapsed = 19 +853811 totalPokes = 64 +853811 totalRewards = 33 +853811 countPokes1 = 15 +853812 countRewards1 = 11 +853812 leafProbs1 = 80 +853813 countPokes2 = 9 +853813 countRewards2 = 0 +853827 leafProbs2 = 20 +853827 countPokes3 = 11 +853828 countRewards3 = 5 +853828 leafProbs3 = 20 +853829 countPokes4 = 12 +853829 countRewards4 = 8 +853829 leafProbs4 = 50 +853829 countPokes5 = 6 +853829 countRewards5 = 5 +853830 leafProbs5 = 80 +853844 countPokes6 = 11 +853844 countRewards6 = 4 +853845 leafProbs6 = 50 +~~~ +859749 UP 3 +859749 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +859929 DOWN 3 +859929 0 0 +~~~ +859955 contingency = 0 +859955 trialThresh = 100 +859955 timeMaxOut = 20 +859956 timeElapsed = 19 +859956 totalPokes = 65 +859957 totalRewards = 33 +859957 countPokes1 = 15 +859957 countRewards1 = 11 +859957 leafProbs1 = 80 +859958 countPokes2 = 9 +859958 countRewards2 = 0 +859972 leafProbs2 = 20 +859973 countPokes3 = 12 +859973 countRewards3 = 5 +859973 leafProbs3 = 20 +859973 countPokes4 = 12 +859974 countRewards4 = 8 +859974 leafProbs4 = 50 +859975 countPokes5 = 6 +859975 countRewards5 = 5 +859975 leafProbs5 = 80 +859989 countPokes6 = 11 +859989 countRewards6 = 4 +859989 leafProbs6 = 50 +~~~ +859990 UP 3 +859990 4 0 +860031 DOWN 3 +860031 0 0 +860033 UP 3 +860033 4 0 +860497 DOWN 3 +860497 0 0 +863294 UP 4 +863294 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +863951 DOWN 4 +863951 0 0 +~~~ +863973 contingency = 0 +863973 trialThresh = 100 +863973 timeMaxOut = 20 +863974 timeElapsed = 19 +863974 totalPokes = 66 +863975 totalRewards = 33 +863975 countPokes1 = 15 +863975 countRewards1 = 11 +863975 leafProbs1 = 80 +863976 countPokes2 = 9 +863976 countRewards2 = 0 +863990 leafProbs2 = 20 +863991 countPokes3 = 12 +863991 countRewards3 = 5 +863991 leafProbs3 = 20 +863991 countPokes4 = 13 +863992 countRewards4 = 8 +863992 leafProbs4 = 50 +863993 countPokes5 = 6 +863993 countRewards5 = 5 +863993 leafProbs5 = 80 +864007 countPokes6 = 11 +864007 countRewards6 = 4 +864007 leafProbs6 = 50 +~~~ +868524 UP 3 +868524 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +868698 DOWN 3 +868698 0 0 +~~~ +868713 contingency = 0 +868713 trialThresh = 100 +868713 timeMaxOut = 20 +868713 timeElapsed = 19 +868713 totalPokes = 67 +868714 totalRewards = 33 +868715 countPokes1 = 15 +868715 countRewards1 = 11 +868715 leafProbs1 = 80 +868715 countPokes2 = 9 +868715 countRewards2 = 0 +868730 leafProbs2 = 20 +868730 countPokes3 = 13 +868731 countRewards3 = 5 +868731 leafProbs3 = 20 +868731 countPokes4 = 13 +868731 countRewards4 = 8 +868732 leafProbs4 = 50 +868732 countPokes5 = 6 +868733 countRewards5 = 5 +868733 leafProbs5 = 80 +868747 countPokes6 = 11 +868747 countRewards6 = 4 +868747 leafProbs6 = 50 +~~~ +868747 UP 3 +868747 4 0 +868824 DOWN 3 +868824 0 0 +872741 UP 4 +872741 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +873169 DOWN 4 +873169 0 0 +~~~ +873187 contingency = 0 +873187 trialThresh = 100 +873187 timeMaxOut = 20 +873187 timeElapsed = 19 +873188 totalPokes = 68 +873188 totalRewards = 33 +873189 countPokes1 = 15 +873189 countRewards1 = 11 +873189 leafProbs1 = 80 +873189 countPokes2 = 9 +873190 countRewards2 = 0 +873204 leafProbs2 = 20 +873204 countPokes3 = 13 +873205 countRewards3 = 5 +873205 leafProbs3 = 20 +873205 countPokes4 = 14 +873205 countRewards4 = 8 +873206 leafProbs4 = 50 +873206 countPokes5 = 6 +873207 countRewards5 = 5 +873207 leafProbs5 = 80 +873221 countPokes6 = 11 +873221 countRewards6 = 4 +873221 leafProbs6 = 50 +~~~ +873252 UP 4 +873252 8 0 +873290 DOWN 4 +873290 0 0 +876725 UP 3 +876725 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876754 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876920 DOWN 3 +876920 0 256 +876935 UP 3 +876935 4 256 +~~~ +876950 contingency = 0 +876950 trialThresh = 100 +876951 timeMaxOut = 20 +876951 timeElapsed = 20 +876951 totalPokes = 69 +876951 totalRewards = 34 +876952 countPokes1 = 15 +876952 countRewards1 = 11 +876953 leafProbs1 = 80 +876953 countPokes2 = 9 +876953 countRewards2 = 0 +876967 leafProbs2 = 20 +876968 countPokes3 = 14 +876968 countRewards3 = 6 +876969 leafProbs3 = 20 +876969 countPokes4 = 14 +876969 countRewards4 = 8 +876969 leafProbs4 = 50 +876970 countPokes5 = 6 +876970 countRewards5 = 5 +876971 leafProbs5 = 80 +876984 countPokes6 = 11 +876985 countRewards6 = 4 +876985 leafProbs6 = 50 +~~~ +876985 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +877054 4 0 +878633 DOWN 3 +878633 0 0 +878639 UP 3 +878639 4 0 +879721 DOWN 3 +879721 0 0 +886019 UP 1 +886019 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886047 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886216 DOWN 1 +886216 0 64 +886239 UP 1 +886239 1 64 +~~~ +886244 contingency = 1 +886245 trialThresh = 100 +886245 timeMaxOut = 20 +886245 timeElapsed = 0 +886245 totalPokes = 1 +886245 totalRewards = 1 +886246 countPokes1 = 1 +886246 countRewards1 = 1 +886247 leafProbs1 = 80 +886247 countPokes2 = 0 +886247 countRewards2 = 0 +886261 leafProbs2 = 20 +886261 countPokes3 = 0 +886262 countRewards3 = 0 +886262 leafProbs3 = 20 +886263 countPokes4 = 0 +886263 countRewards4 = 0 +886263 leafProbs4 = 50 +886263 countPokes5 = 0 +886263 countRewards5 = 0 +886264 leafProbs5 = 80 +886277 countPokes6 = 0 +886278 countRewards6 = 0 +886278 leafProbs6 = 50 +~~~ +886347 1 0 +887839 DOWN 1 +887839 0 0 +887847 UP 1 +887847 1 0 +888811 DOWN 1 +888811 0 0 +924349 UP 1 +924349 1 0 +924708 DOWN 1 +924708 0 0 +936150 UP 6 +936150 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +936282 DOWN 6 +936282 0 0 +~~~ +936306 UP 6 +936306 32 0 +936307 contingency = 1 +936308 trialThresh = 100 +936308 timeMaxOut = 20 +936308 timeElapsed = 1 +936308 totalPokes = 2 +936309 totalRewards = 1 +936309 countPokes1 = 1 +936310 countRewards1 = 1 +936310 leafProbs1 = 80 +936310 countPokes2 = 0 +936324 countRewards2 = 0 +936324 leafProbs2 = 20 +936325 countPokes3 = 0 +936325 countRewards3 = 0 +936326 leafProbs3 = 20 +936326 countPokes4 = 0 +936326 countRewards4 = 0 +936326 leafProbs4 = 50 +936326 countPokes5 = 0 +936327 countRewards5 = 0 +936340 leafProbs5 = 80 +936341 countPokes6 = 1 +936341 countRewards6 = 0 +936342 leafProbs6 = 50 +~~~ +936592 DOWN 6 +936592 0 0 +939891 UP 6 +939891 32 0 +940306 DOWN 6 +940306 0 0 +944398 UP 5 +944398 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944428 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944665 DOWN 5 +944665 0 1024 +944680 UP 5 +944680 16 1024 +~~~ +944694 contingency = 1 +944694 trialThresh = 100 +944695 timeMaxOut = 20 +944695 timeElapsed = 2 +944696 totalPokes = 3 +944696 totalRewards = 2 +944696 countPokes1 = 1 +944696 countRewards1 = 1 +944697 leafProbs1 = 80 +944697 countPokes2 = 0 +944698 countRewards2 = 0 +944711 leafProbs2 = 20 +944712 countPokes3 = 0 +944712 countRewards3 = 0 +944712 leafProbs3 = 20 +944712 countPokes4 = 0 +944713 countRewards4 = 0 +944713 leafProbs4 = 50 +944714 countPokes5 = 1 +944714 countRewards5 = 1 +944714 leafProbs5 = 80 +944728 countPokes6 = 1 +944728 countRewards6 = 0 +944728 leafProbs6 = 50 +~~~ +944729 16 0 +944845 DOWN 5 +944845 0 0 +944862 UP 5 +944862 16 0 +946617 DOWN 5 +946617 0 0 +946632 UP 5 +946632 16 0 +946716 DOWN 5 +946716 0 0 +946732 UP 5 +946732 16 0 +947449 DOWN 5 +947449 0 0 +948283 UP 5 +948283 16 0 +948312 DOWN 5 +948312 0 0 +952025 UP 6 +952025 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952051 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952328 DOWN 6 +952328 0 2048 +952339 UP 6 +952339 32 2048 +952351 32 0 +~~~ +952355 contingency = 1 +952355 trialThresh = 100 +952355 timeMaxOut = 20 +952356 timeElapsed = 2 +952356 totalPokes = 4 +952357 totalRewards = 3 +952357 countPokes1 = 1 +952357 countRewards1 = 1 +952357 leafProbs1 = 80 +952357 countPokes2 = 0 +952358 countRewards2 = 0 +952372 leafProbs2 = 20 +952372 countPokes3 = 0 +952373 countRewards3 = 0 +952373 leafProbs3 = 20 +952373 countPokes4 = 0 +952373 countRewards4 = 0 +952374 leafProbs4 = 50 +952374 countPokes5 = 1 +952375 countRewards5 = 1 +952375 leafProbs5 = 80 +952389 countPokes6 = 2 +952389 countRewards6 = 1 +952389 leafProbs6 = 50 +~~~ +955287 DOWN 6 +955287 0 0 +955304 UP 6 +955304 32 0 +955841 DOWN 6 +955841 0 0 +955870 UP 6 +955870 32 0 +955948 DOWN 6 +955948 0 0 +968742 UP 1 +968742 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +968986 DOWN 1 +968986 0 0 +969009 UP 1 +969009 1 0 +~~~ +969010 contingency = 1 +969011 trialThresh = 100 +969011 timeMaxOut = 20 +969011 timeElapsed = 2 +969011 totalPokes = 5 +969012 totalRewards = 3 +969012 countPokes1 = 2 +969013 countRewards1 = 1 +969013 leafProbs1 = 80 +969013 countPokes2 = 0 +969013 countRewards2 = 0 +969027 leafProbs2 = 20 +969027 countPokes3 = 0 +969028 countRewards3 = 0 +969028 leafProbs3 = 20 +969029 countPokes4 = 0 +969029 countRewards4 = 0 +969029 leafProbs4 = 50 +969029 countPokes5 = 1 +969030 countRewards5 = 1 +969030 leafProbs5 = 80 +969044 countPokes6 = 2 +969044 countRewards6 = 1 +969045 leafProbs6 = 50 +~~~ +969325 DOWN 1 +969325 0 0 +969363 UP 1 +969363 1 0 +969412 DOWN 1 +969412 0 0 +980911 UP 1 +980911 1 0 +981057 DOWN 1 +981057 0 0 +995935 UP 1 +995935 1 0 +995980 DOWN 1 +995980 0 0 +1000551 UP 1 +1000551 1 0 +1000675 DOWN 1 +1000675 0 0 +1000813 UP 1 +1000813 1 0 +1000837 DOWN 1 +1000837 0 0 +1014932 UP 1 +1014932 1 0 +1015485 DOWN 1 +1015485 0 0 +1037157 UP 1 +1037157 1 0 +1039155 DOWN 1 +1039155 0 0 +1045580 UP 2 +1045580 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045606 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045801 DOWN 2 +1045801 0 128 +1045812 UP 2 +1045812 2 128 +~~~ +1045827 contingency = 1 +1045827 trialThresh = 100 +1045828 timeMaxOut = 20 +1045828 timeElapsed = 4 +1045828 totalPokes = 6 +1045828 totalRewards = 4 +1045829 countPokes1 = 2 +1045829 countRewards1 = 1 +1045830 leafProbs1 = 80 +1045830 countPokes2 = 1 +1045830 countRewards2 = 1 +1045844 leafProbs2 = 20 +1045844 countPokes3 = 0 +1045845 countRewards3 = 0 +1045845 leafProbs3 = 20 +1045846 countPokes4 = 0 +1045846 countRewards4 = 0 +1045846 leafProbs4 = 50 +1045846 countPokes5 = 1 +1045846 countRewards5 = 1 +1045861 leafProbs5 = 80 +1045861 countPokes6 = 2 +1045862 countRewards6 = 1 +1045862 leafProbs6 = 50 +~~~ +1045906 2 0 +1046489 DOWN 2 +1046489 0 0 +1046492 UP 2 +1046492 2 0 +1046736 DOWN 2 +1046736 0 0 +1046740 UP 2 +1046740 2 0 +1048862 DOWN 2 +1048862 0 0 +1048885 UP 2 +1048885 2 0 +1049314 DOWN 2 +1049314 0 0 +1049320 UP 2 +1049320 2 0 +1049417 DOWN 2 +1049417 0 0 +1055638 UP 1 +1055638 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1056137 DOWN 1 +1056137 0 0 +~~~ +1056161 contingency = 1 +1056161 trialThresh = 100 +1056161 timeMaxOut = 20 +1056162 timeElapsed = 4 +1056162 totalPokes = 7 +1056163 totalRewards = 4 +1056163 countPokes1 = 3 +1056163 countRewards1 = 1 +1056163 leafProbs1 = 80 +1056164 countPokes2 = 1 +1056164 countRewards2 = 1 +1056178 leafProbs2 = 20 +1056179 countPokes3 = 0 +1056179 countRewards3 = 0 +1056179 leafProbs3 = 20 +1056179 countPokes4 = 0 +1056180 countRewards4 = 0 +1056180 leafProbs4 = 50 +1056181 countPokes5 = 1 +1056181 countRewards5 = 1 +1056195 leafProbs5 = 80 +1056195 countPokes6 = 2 +1056195 countRewards6 = 1 +1056196 leafProbs6 = 50 +~~~ +1075389 UP 1 +1075389 1 0 +1077673 DOWN 1 +1077673 0 0 +1080094 UP 1 +1080094 1 0 +1080643 DOWN 1 +1080643 0 0 +1081045 UP 1 +1081045 1 0 +1081200 DOWN 1 +1081200 0 0 +1083005 UP 1 +1083005 1 0 +1083449 DOWN 1 +1083449 0 0 +1102276 UP 1 +1102276 1 0 +1102327 DOWN 1 +1102327 0 0 +1102345 UP 1 +1102345 1 0 +1102777 DOWN 1 +1102777 0 0 +1102819 UP 1 +1102819 1 0 +1102934 DOWN 1 +1102934 0 0 +1103297 UP 1 +1103297 1 0 +1103387 DOWN 1 +1103387 0 0 +1103417 UP 1 +1103417 1 0 +1103475 DOWN 1 +1103475 0 0 +1103807 UP 1 +1103807 1 0 +1103947 DOWN 1 +1103947 0 0 +1103991 UP 1 +1103991 1 0 +1104026 DOWN 1 +1104026 0 0 +1118606 UP 1 +1118606 1 0 +1118640 DOWN 1 +1118640 0 0 +1131899 UP 6 +1131899 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1132172 DOWN 6 +1132172 0 0 +1132200 UP 6 +1132200 32 0 +~~~ +1132203 contingency = 1 +1132203 trialThresh = 100 +1132204 timeMaxOut = 20 +1132204 timeElapsed = 6 +1132204 totalPokes = 8 +1132204 totalRewards = 4 +1132205 countPokes1 = 3 +1132205 countRewards1 = 1 +1132205 leafProbs1 = 80 +1132206 countPokes2 = 1 +1132206 countRewards2 = 1 +1132220 leafProbs2 = 20 +1132220 countPokes3 = 0 +1132220 countRewards3 = 0 +1132221 leafProbs3 = 20 +1132221 countPokes4 = 0 +1132222 countRewards4 = 0 +1132222 leafProbs4 = 50 +1132222 countPokes5 = 1 +1132222 countRewards5 = 1 +1132237 leafProbs5 = 80 +1132237 countPokes6 = 3 +1132238 countRewards6 = 1 +1132238 leafProbs6 = 50 +~~~ +1132394 DOWN 6 +1132394 0 0 +1132422 UP 6 +1132422 32 0 +1132437 DOWN 6 +1132437 0 0 +1157002 UP 6 +1157002 32 0 +1157518 DOWN 6 +1157518 0 0 +1160471 UP 1 +1160471 1 0 +1160482 DOWN 1 +1160482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1160504 UP 1 +1160504 1 0 +~~~ +1160510 contingency = 1 +1160510 trialThresh = 100 +1160510 timeMaxOut = 20 +1160511 timeElapsed = 7 +1160511 totalPokes = 9 +1160512 totalRewards = 4 +1160512 countPokes1 = 4 +1160512 countRewards1 = 1 +1160512 leafProbs1 = 80 +1160513 countPokes2 = 1 +1160513 countRewards2 = 1 +1160527 leafProbs2 = 20 +1160528 countPokes3 = 0 +1160528 countRewards3 = 0 +1160528 leafProbs3 = 20 +1160528 countPokes4 = 0 +1160528 countRewards4 = 0 +1160529 leafProbs4 = 50 +1160529 countPokes5 = 1 +1160530 countRewards5 = 1 +1160544 leafProbs5 = 80 +1160544 countPokes6 = 3 +1160544 countRewards6 = 1 +1160545 leafProbs6 = 50 +~~~ +1160809 DOWN 1 +1160809 0 0 +1160823 UP 1 +1160823 1 0 +1160943 DOWN 1 +1160943 0 0 + + description: state script log run 2 + task_epochs: 4, +] +2021-01-27 19:19:54,506 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 19:19:55,773 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 19:19:55,778 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 19:19:55,778 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 19:19:55,780 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 19:19:55,781 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 19:19:55,802 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 19:19:55,802 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 19:19:55,816 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 19:19:55,816 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 19:19:55,818 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 19:19:55,819 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 19:19:55,819 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 19:19:55,820 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 19:19:55,820 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 19:19:55,821 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 19:19:55,821 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 19:19:55,822 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 19:19:55,822 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 19:19:55,823 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 19:19:56,436 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 19:19:56,436 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 19:19:56,438 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 19:19:56,438 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 19:19:56,442 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 19:19:56,548 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 19:19:56,558 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 19:19:56,562 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 19:19:56,562 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 19:19:59,398 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 19:19:59,404 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 19:23:47,534 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 19:23:47,537 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 19:23:47,540 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 19:23:47,542 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 19:23:47,543 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 19:23:47,976 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 19:23:47,977 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 19:23:47,977 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 19:23:47,977 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 19:23:47,981 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 19:24:41,014 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-27 19:26:58,510 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:26:58,665 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 19:26:58,667 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 19:26:58,668 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 19:26:58,668 rec_to_binaries.core: INFO Extracting time... +2021-01-27 19:27:33,857 rec_to_binaries.core: INFO Making position directory... +2021-01-27 19:27:33,910 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 19:27:33,911 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 19:27:33,911 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 19:27:33,911 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 19:27:34,345 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-27 19:27:34,694 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 19:27:35,073 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 19:27:35,073 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 19:27:35,073 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 19:27:35,076 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 19:27:35,076 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 19:27:35,078 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 19:27:35,078 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 19:27:35,079 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140681556179536 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140681556179152 +Fields: + content: # +#% author: AC +#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 +#% same as branch_always_reward_no_revisit.sc +# +#%initialize constant vars +#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min +#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later +# +#%initialize updating vars +#int rewardPump = 0 %can take on values 7-12 in fxn 1 +#int rewardWell = 0 %can take on values 1-6 in fxn 4 +#int timeElapsed = 0 +#int totalPokes = 0 +#int totalRewards = 0 +#int contingency = -1 +#int count = 0 +#int loopInterval = 250 +#int trialThresh = 0 +#int timeMaxOut = 0 +# +#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being +#int leafProbs2 = 0 +#int leafProbs3 = 0 +#int leafProbs4 = 0 +#int leafProbs5 = 0 +#int leafProbs6 = 0 +# +#int countPokes1 = 0 +#int countPokes2 = 0 +#int countPokes3 = 0 +#int countPokes4 = 0 +#int countPokes5 = 0 +#int countPokes6 = 0 +# +#int countRewards1 = 0 +#int countRewards2 = 0 +#int countRewards3 = 0 +#int countRewards4 = 0 +#int countRewards5 = 0 +#int countRewards6 = 0 +# +#int sessionProbs1 = 0 +#int sessionProbs2 = 0 +#int sessionProbs3 = 0 +#int sessionProbs4 = 0 +#int sessionProbs5 = 0 +#int sessionProbs6 = 0 +# +#%give reward for certain duration after certain delay +#function 1 +# do in delayRewardPeriod +# portout[rewardPump] = 1 %start rewarding with this pump dio +# do in deliverPeriod +# portout[rewardPump] = 0 %stop rewarding with this pump dio +# end +# end +#end; +# +#%keep track of animal behavior and display for experimenter +#function 2 +# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... +# disp(contingency) +# disp(trialThresh) +# disp(timeMaxOut) +# disp(timeElapsed) %length of session thus far +# disp(totalPokes) %how many nonrepeated well visits thus far +# disp(totalRewards) %how many rewards collected thus far +# +# disp(countPokes1) %how many pokes at each well, 6x1 array turned str +# disp(countRewards1) %how many rewards collected per well +# disp(leafProbs1) %experimenter-determined probabilities of reward per well +# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke +# +# disp(countPokes2) +# disp(countRewards2) +# disp(leafProbs2) +# %disp(sessionProbs2) +# +# disp(countPokes3) +# disp(countRewards3) +# disp(leafProbs3) +# %disp(sessionProbs3) +# +# disp(countPokes4) +# disp(countRewards4) +# disp(leafProbs4) +# %disp(sessionProbs4) +# +# disp(countPokes5) +# disp(countRewards5) +# disp(leafProbs5) +# %disp(sessionProbs5) +# +# disp(countPokes6) +# disp(countRewards6) +# disp(leafProbs6) +# %disp(sessionProbs6) +#end; +# +# +#%tell the user that the contingency is complete +#function 3 +# disp('This contingency is over!') +#end; +# +#%end session +#function 4 +# while count < 50 do every loopInterval +# portout[1] = flip +# portout[2] = flip +# portout[3] = flip +# portout[4] = flip +# portout[5] = flip +# portout[6] = flip +# count = count+1 +# then do +# portout[1] = 0 +# portout[2] = 0 +# portout[3] = 0 +# portout[4] = 0 +# portout[5] = 0 +# portout[6] = 0 +# end +# disp('This session is complete!') +#end; +# +# +#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) +#callback portin[1] up +# disp('UP 1') +#end; +# +#callback portin[1] down +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# disp('UP 2') +#end; +# +#callback portin[2] down +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# disp('UP 3') +#end; +# +#callback portin[3] down +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# disp('UP 4') +#end; +# +#callback portin[4] down +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# disp('UP 5') +#end; +# +#callback portin[5] down +# disp('DOWN 5') +#end; +#callback portin[6] up +# disp('UP 6') +#end; +# +#callback portin[6] down +# disp('DOWN 6') +#end; +# +# +# +##author: AC +##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 +##contingency changes occur automatically after either a # of trials or # of minutes +#''' +#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur +#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. +# +#Basic structure: +#if nosepoke at a well +#if the nosepoke!= last nosepoke location +# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p +# trigger(fxn1) #deliver reward, and stop after reward duration +#display updated trial info +#''' +# +##import +#import numpy as np +#import re +#import time +#import math +#from tkinter import * +# +##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) +#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. +#trialThresh = 100 #per contingency +#timeMaxOut = 20 #per contingency, in mins +# +##set up wells and pumps dios +#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info +#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery +# +##variables to keep track of and update during behavior (global) +#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. +#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. +#timeElapsed = 0 #session length thus far in mins +#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. +#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) +#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward +#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 +#runningTrials = False #must say yes to saving data to turn this to true +# +##THIS FXN MUST BE NAMED 'callback'!! +#def callback(line): +# #when an event occurs out on the track, addScQtEvent will call this fxn +# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) +# pokeIn(re.findall(r'\d+',line)) +# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, +# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" +# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) +# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells +# +##when animal nosepokes and breaks beam +#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes +# global currLeaf +# global timeStart +# global leafWells +# global lastLeaf +# global countPokes +# global leafProbs +# global leafPumps +# global contingency +# global countRewards +# global runningTrials +# global timeElapsed +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# if currLeaf == -1: #if it's the first trial in the contingency +# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke +# #if timeElapsed >= timeMaxOut: +# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency +# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency +# #change. sort of defeats the purpose of the floor approach right now. +# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") +# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") +# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") +# timeStart = time.time() #start time for the contingency +# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency +# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") +# countPokes = np.array([0,0,0,0,0,0]) +# countRewards = np.array([0,0,0,0,0,0]) +# for i in range(len(countPokes)): #initialize all as zero +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# for i in range(len(countRewards)): #initialize all as zero +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 +# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump +# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well +# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf +# for i in range(len(countPokes)): +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") +# if np.random.random_sample() < leafProbs[contingency][currLeaf]: +# deliverReward(leafPumps[currLeaf]) +# +##deliver reward, called upon poking in a nonrepeated well +#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps +# global currLeaf +# global rewardPump +# global countRewards +# +# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use +# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward +# countRewards[currLeaf] += 1 #increment num of rewards at this location +# for i in range(len(countRewards)): +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") +# +##update lastLeaf and print out info about the trial if it was at a nonrepeated well +#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells +# global leafWells +# global currLeaf +# global lastLeaf +# global timeElapsed +# global timeStart +# global countPokes +# global countRewards +# global leafProbs +# global contingency +# global runningTrials +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# #if leafWells.index(int(dio[1])) != currLeaf +# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. +# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far +# timeElapsed = round((time.time()-timeStart)/60) +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log +# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn +# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. +# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): +# if contingency < len(leafProbs) - 1: +# currLeaf = -1 #to enable shifting to next contingency +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# timeElapsed = 0 +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# if contingency == len(leafProbs) - 1: +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# runningTrials = False #so no more rewards or anything happen on track +# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session +# +##gui to help remind user that should have saved data +#savingDisp = Tk() +# +#def yesSaving(): +# global runningTrials +# savingDisp.destroy() +# runningTrials=True +# +#def noSaving(): +# savingDisp.destroy() +# +#saveFrame1 = Frame(savingDisp) +#saveFrame1.pack(side = TOP) +# +#saveFrame2 = Frame(savingDisp) +#saveFrame2.pack(side = BOTTOM) +# +#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") +#LS0.pack() +# +#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) +#B1.pack(side = LEFT) +# +#B2 = Button(saveFrame2, text ="No", command = noSaving) +#B2.pack(side = LEFT) +# +#savingDisp.mainloop() +# +# +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94048 UP 1 +94048 1 0 +94058 DOWN 1 +94058 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94112 contingency = 0 +94112 trialThresh = 100 +94112 timeMaxOut = 20 +94112 timeElapsed = 0 +94112 totalPokes = 1 +94113 totalRewards = 0 +94113 countPokes1 = 1 +94114 countRewards1 = 0 +94114 leafProbs1 = 80 +94114 countPokes2 = 0 +94114 countRewards2 = 0 +94128 leafProbs2 = 20 +94129 countPokes3 = 0 +94129 countRewards3 = 0 +94130 leafProbs3 = 20 +94130 countPokes4 = 0 +94130 countRewards4 = 0 +94130 leafProbs4 = 50 +94131 countPokes5 = 0 +94131 countRewards5 = 0 +94132 leafProbs5 = 80 +94132 countPokes6 = 0 +94146 countRewards6 = 0 +94146 leafProbs6 = 50 +~~~ +95370 UP 1 +95370 1 0 +95396 DOWN 1 +95396 0 0 +95404 UP 1 +95404 1 0 +95415 DOWN 1 +95415 0 0 +95449 UP 1 +95449 1 0 +95507 DOWN 1 +95507 0 0 +95526 UP 1 +95526 1 0 +95527 DOWN 1 +95527 0 0 +95534 UP 1 +95534 1 0 +98011 DOWN 1 +98011 0 0 +109846 UP 6 +109846 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +109947 DOWN 6 +109947 0 0 +109954 UP 6 +109954 32 0 +~~~ +109967 contingency = 0 +109967 trialThresh = 100 +109968 timeMaxOut = 20 +109968 timeElapsed = 0 +109969 totalPokes = 2 +109969 totalRewards = 0 +109969 countPokes1 = 1 +109969 countRewards1 = 0 +109969 leafProbs1 = 80 +109970 countPokes2 = 0 +109970 countRewards2 = 0 +109984 leafProbs2 = 20 +109985 countPokes3 = 0 +109985 countRewards3 = 0 +109985 leafProbs3 = 20 +109985 countPokes4 = 0 +109985 countRewards4 = 0 +109986 leafProbs4 = 50 +109986 countPokes5 = 0 +109987 countRewards5 = 0 +109987 leafProbs5 = 80 +110001 countPokes6 = 1 +110001 countRewards6 = 0 +110001 leafProbs6 = 50 +~~~ +111783 DOWN 6 +111783 0 0 +111799 UP 6 +111799 32 0 +112400 DOWN 6 +112399 0 0 +115161 UP 5 +115161 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115185 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115485 16 0 +115577 DOWN 5 +115577 0 0 +~~~ +115603 contingency = 0 +115603 trialThresh = 100 +115604 timeMaxOut = 20 +115604 timeElapsed = 1 +115605 totalPokes = 3 +115605 totalRewards = 1 +115605 countPokes1 = 1 +115605 countRewards1 = 0 +115606 leafProbs1 = 80 +115606 countPokes2 = 0 +115607 countRewards2 = 0 +115620 leafProbs2 = 20 +115621 countPokes3 = 0 +115621 countRewards3 = 0 +115621 leafProbs3 = 20 +115621 countPokes4 = 0 +115622 countRewards4 = 0 +115622 leafProbs4 = 50 +115623 countPokes5 = 1 +115623 countRewards5 = 1 +115623 leafProbs5 = 80 +115637 countPokes6 = 1 +115637 countRewards6 = 0 +115637 leafProbs6 = 50 +~~~ +115638 UP 5 +115638 16 0 +118235 DOWN 5 +118235 0 0 +118252 UP 5 +118252 16 0 +118676 DOWN 5 +118676 0 0 +124414 UP 4 +124414 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124444 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124564 DOWN 4 +124564 0 512 +124571 UP 4 +124571 8 512 +~~~ +124590 contingency = 0 +124590 trialThresh = 100 +124591 timeMaxOut = 20 +124591 timeElapsed = 1 +124591 totalPokes = 4 +124591 totalRewards = 2 +124592 countPokes1 = 1 +124592 countRewards1 = 0 +124592 leafProbs1 = 80 +124593 countPokes2 = 0 +124593 countRewards2 = 0 +124607 leafProbs2 = 20 +124607 countPokes3 = 0 +124607 countRewards3 = 0 +124608 leafProbs3 = 20 +124608 countPokes4 = 1 +124609 countRewards4 = 1 +124609 leafProbs4 = 50 +124609 countPokes5 = 1 +124609 countRewards5 = 1 +124609 leafProbs5 = 80 +124623 countPokes6 = 1 +124623 countRewards6 = 0 +124624 leafProbs6 = 50 +~~~ +124744 8 0 +127285 DOWN 4 +127285 0 0 +128916 UP 3 +128916 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +131495 DOWN 3 +131495 0 0 +131506 UP 3 +131506 4 0 +~~~ +131522 contingency = 0 +131523 trialThresh = 100 +131523 timeMaxOut = 20 +131523 timeElapsed = 1 +131523 totalPokes = 5 +131524 totalRewards = 2 +131524 countPokes1 = 1 +131525 countRewards1 = 0 +131525 leafProbs1 = 80 +131525 countPokes2 = 0 +131525 countRewards2 = 0 +131539 leafProbs2 = 20 +131539 countPokes3 = 1 +131540 countRewards3 = 0 +131540 leafProbs3 = 20 +131541 countPokes4 = 1 +131541 countRewards4 = 1 +131541 leafProbs4 = 50 +131541 countPokes5 = 1 +131542 countRewards5 = 1 +131542 leafProbs5 = 80 +131556 countPokes6 = 1 +131556 countRewards6 = 0 +131557 leafProbs6 = 50 +~~~ +131829 DOWN 3 +131829 0 0 +131849 UP 3 +131849 4 0 +131922 DOWN 3 +131922 0 0 +134163 UP 4 +134163 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +134675 DOWN 4 +134675 0 0 +~~~ +134693 contingency = 0 +134693 trialThresh = 100 +134693 timeMaxOut = 20 +134694 timeElapsed = 1 +134694 totalPokes = 6 +134695 totalRewards = 2 +134695 countPokes1 = 1 +134695 countRewards1 = 0 +134695 leafProbs1 = 80 +134696 countPokes2 = 0 +134696 countRewards2 = 0 +134710 leafProbs2 = 20 +134710 countPokes3 = 1 +134711 countRewards3 = 0 +134711 leafProbs3 = 20 +134711 countPokes4 = 2 +134711 countRewards4 = 1 +134712 leafProbs4 = 50 +134712 countPokes5 = 1 +134713 countRewards5 = 1 +134713 leafProbs5 = 80 +134727 countPokes6 = 1 +134727 countRewards6 = 0 +134727 leafProbs6 = 50 +~~~ +136327 UP 3 +136327 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +137036 DOWN 3 +137036 0 0 +~~~ +137065 contingency = 0 +137065 trialThresh = 100 +137065 timeMaxOut = 20 +137066 timeElapsed = 1 +137066 totalPokes = 7 +137067 totalRewards = 2 +137067 countPokes1 = 1 +137067 countRewards1 = 0 +137067 leafProbs1 = 80 +137068 countPokes2 = 0 +137068 countRewards2 = 0 +137082 leafProbs2 = 20 +137082 countPokes3 = 2 +137083 countRewards3 = 0 +137083 leafProbs3 = 20 +137083 countPokes4 = 2 +137083 countRewards4 = 1 +137084 leafProbs4 = 50 +137084 countPokes5 = 1 +137085 countRewards5 = 1 +137085 leafProbs5 = 80 +137099 countPokes6 = 1 +137099 countRewards6 = 0 +137099 leafProbs6 = 50 +~~~ +143600 UP 5 +143600 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143854 DOWN 5 +143854 0 0 +~~~ +143877 contingency = 0 +143877 trialThresh = 100 +143877 timeMaxOut = 20 +143878 timeElapsed = 1 +143878 totalPokes = 8 +143879 totalRewards = 2 +143879 countPokes1 = 1 +143879 countRewards1 = 0 +143879 leafProbs1 = 80 +143880 countPokes2 = 0 +143880 countRewards2 = 0 +143894 leafProbs2 = 20 +143894 countPokes3 = 2 +143895 countRewards3 = 0 +143895 leafProbs3 = 20 +143895 countPokes4 = 2 +143895 countRewards4 = 1 +143896 leafProbs4 = 50 +143896 countPokes5 = 2 +143897 countRewards5 = 1 +143897 leafProbs5 = 80 +143911 countPokes6 = 1 +143911 countRewards6 = 0 +143911 leafProbs6 = 50 +~~~ +143911 UP 5 +143911 16 0 +144383 DOWN 5 +144383 0 0 +146591 UP 6 +146591 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146617 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146917 32 0 +147061 DOWN 6 +147061 0 0 +~~~ +147089 contingency = 0 +147090 trialThresh = 100 +147090 timeMaxOut = 20 +147091 timeElapsed = 1 +147091 totalPokes = 9 +147091 totalRewards = 3 +147091 countPokes1 = 1 +147092 countRewards1 = 0 +147092 leafProbs1 = 80 +147093 countPokes2 = 0 +147093 countRewards2 = 0 +147107 leafProbs2 = 20 +147107 countPokes3 = 2 +147107 countRewards3 = 0 +147107 leafProbs3 = 20 +147108 countPokes4 = 2 +147108 countRewards4 = 1 +147109 leafProbs4 = 50 +147109 countPokes5 = 2 +147109 countRewards5 = 1 +147109 leafProbs5 = 80 +147123 countPokes6 = 2 +147123 countRewards6 = 1 +147124 leafProbs6 = 50 +~~~ +147124 UP 6 +147124 32 0 +147150 DOWN 6 +147150 0 0 +147157 UP 6 +147157 32 0 +149454 DOWN 6 +149454 0 0 +160370 UP 1 +160370 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160397 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160522 DOWN 1 +160522 0 64 +160533 UP 1 +160533 1 64 +~~~ +160544 contingency = 0 +160544 trialThresh = 100 +160544 timeMaxOut = 20 +160545 timeElapsed = 2 +160545 totalPokes = 10 +160546 totalRewards = 4 +160546 countPokes1 = 2 +160546 countRewards1 = 1 +160546 leafProbs1 = 80 +160547 countPokes2 = 0 +160547 countRewards2 = 0 +160561 leafProbs2 = 20 +160561 countPokes3 = 2 +160562 countRewards3 = 0 +160562 leafProbs3 = 20 +160562 countPokes4 = 2 +160562 countRewards4 = 1 +160563 leafProbs4 = 50 +160563 countPokes5 = 2 +160564 countRewards5 = 1 +160564 leafProbs5 = 80 +160578 countPokes6 = 2 +160578 countRewards6 = 1 +160578 leafProbs6 = 50 +~~~ +160697 1 0 +163834 DOWN 1 +163834 0 0 +166987 UP 2 +166987 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +167144 DOWN 2 +167144 0 0 +167149 UP 2 +167149 2 0 +~~~ +167168 contingency = 0 +167168 trialThresh = 100 +167169 timeMaxOut = 20 +167169 timeElapsed = 2 +167170 totalPokes = 11 +167170 totalRewards = 4 +167170 countPokes1 = 2 +167170 countRewards1 = 1 +167171 leafProbs1 = 80 +167171 countPokes2 = 1 +167172 countRewards2 = 0 +167186 leafProbs2 = 20 +167186 countPokes3 = 2 +167186 countRewards3 = 0 +167186 leafProbs3 = 20 +167186 countPokes4 = 2 +167187 countRewards4 = 1 +167187 leafProbs4 = 50 +167188 countPokes5 = 2 +167188 countRewards5 = 1 +167188 leafProbs5 = 80 +167202 countPokes6 = 2 +167202 countRewards6 = 1 +167202 leafProbs6 = 50 +~~~ +169470 DOWN 2 +169470 0 0 +169499 UP 2 +169499 2 0 +169914 DOWN 2 +169914 0 0 +178210 UP 1 +178210 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178233 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178533 1 0 +181346 DOWN 1 +181346 0 0 +~~~ +181372 contingency = 0 +181372 trialThresh = 100 +181372 timeMaxOut = 20 +181373 timeElapsed = 2 +181373 totalPokes = 12 +181374 totalRewards = 5 +181374 countPokes1 = 3 +181374 countRewards1 = 2 +181374 leafProbs1 = 80 +181375 countPokes2 = 1 +181375 countRewards2 = 0 +181389 leafProbs2 = 20 +181389 countPokes3 = 2 +181390 countRewards3 = 0 +181390 leafProbs3 = 20 +181390 countPokes4 = 2 +181390 countRewards4 = 1 +181391 leafProbs4 = 50 +181391 countPokes5 = 2 +181392 countRewards5 = 1 +181392 leafProbs5 = 80 +181406 countPokes6 = 2 +181406 countRewards6 = 1 +181406 leafProbs6 = 50 +~~~ +184630 UP 2 +184630 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184804 DOWN 2 +184804 0 0 +184815 UP 2 +184815 2 0 +~~~ +184832 contingency = 0 +184832 trialThresh = 100 +184832 timeMaxOut = 20 +184832 timeElapsed = 2 +184833 totalPokes = 13 +184833 totalRewards = 5 +184834 countPokes1 = 3 +184834 countRewards1 = 2 +184834 leafProbs1 = 80 +184834 countPokes2 = 2 +184835 countRewards2 = 0 +184849 leafProbs2 = 20 +184849 countPokes3 = 2 +184850 countRewards3 = 0 +184850 leafProbs3 = 20 +184850 countPokes4 = 2 +184850 countRewards4 = 1 +184850 leafProbs4 = 50 +184851 countPokes5 = 2 +184851 countRewards5 = 1 +184852 leafProbs5 = 80 +184865 countPokes6 = 2 +184866 countRewards6 = 1 +184866 leafProbs6 = 50 +~~~ +185326 DOWN 2 +185326 0 0 +185333 UP 2 +185333 2 0 +185995 DOWN 2 +185995 0 0 +189960 UP 1 +189960 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190078 DOWN 1 +190078 0 0 +190080 UP 1 +190080 1 0 +~~~ +190098 contingency = 0 +190099 trialThresh = 100 +190099 timeMaxOut = 20 +190100 timeElapsed = 2 +190100 totalPokes = 14 +190100 totalRewards = 5 +190100 countPokes1 = 4 +190101 countRewards1 = 2 +190101 leafProbs1 = 80 +190101 countPokes2 = 2 +190102 countRewards2 = 0 +190116 leafProbs2 = 20 +190116 countPokes3 = 2 +190116 countRewards3 = 0 +190116 leafProbs3 = 20 +190117 countPokes4 = 2 +190117 countRewards4 = 1 +190118 leafProbs4 = 50 +190118 countPokes5 = 2 +190118 countRewards5 = 1 +190118 leafProbs5 = 80 +190132 countPokes6 = 2 +190132 countRewards6 = 1 +190132 leafProbs6 = 50 +~~~ +190133 DOWN 1 +190133 0 0 +190160 UP 1 +190160 1 0 +190248 DOWN 1 +190248 0 0 +190276 UP 1 +190276 1 0 +190356 DOWN 1 +190356 0 0 +190391 UP 1 +190391 1 0 +190481 DOWN 1 +190481 0 0 +190555 UP 1 +190555 1 0 +190570 DOWN 1 +190570 0 0 +190849 UP 1 +190849 1 0 +190908 DOWN 1 +190908 0 0 +193661 UP 2 +193661 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +193935 DOWN 2 +193935 0 0 +193938 UP 2 +193938 2 0 +~~~ +193959 contingency = 0 +193959 trialThresh = 100 +193960 timeMaxOut = 20 +193960 timeElapsed = 2 +193960 totalPokes = 15 +193960 totalRewards = 5 +193961 countPokes1 = 4 +193961 countRewards1 = 2 +193962 leafProbs1 = 80 +193962 countPokes2 = 3 +193962 countRewards2 = 0 +193976 leafProbs2 = 20 +193976 countPokes3 = 2 +193977 countRewards3 = 0 +193977 leafProbs3 = 20 +193977 countPokes4 = 2 +193978 countRewards4 = 1 +193978 leafProbs4 = 50 +193978 countPokes5 = 2 +193978 countRewards5 = 1 +193979 leafProbs5 = 80 +193992 countPokes6 = 2 +193993 countRewards6 = 1 +193993 leafProbs6 = 50 +~~~ +194100 DOWN 2 +194100 0 0 +196098 UP 1 +196098 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196123 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196423 1 0 +196514 DOWN 1 +196514 0 0 +196516 UP 1 +196516 1 0 +~~~ +196532 contingency = 0 +196532 trialThresh = 100 +196532 timeMaxOut = 20 +196533 timeElapsed = 3 +196533 totalPokes = 16 +196534 totalRewards = 6 +196534 countPokes1 = 5 +196534 countRewards1 = 3 +196534 leafProbs1 = 80 +196534 countPokes2 = 3 +196535 countRewards2 = 0 +196549 leafProbs2 = 20 +196549 countPokes3 = 2 +196550 countRewards3 = 0 +196550 leafProbs3 = 20 +196550 countPokes4 = 2 +196550 countRewards4 = 1 +196551 leafProbs4 = 50 +196551 countPokes5 = 2 +196551 countRewards5 = 1 +196552 leafProbs5 = 80 +196565 countPokes6 = 2 +196566 countRewards6 = 1 +196566 leafProbs6 = 50 +~~~ +198509 DOWN 1 +198509 0 0 +202035 UP 1 +202035 1 0 +202194 DOWN 1 +202194 0 0 +213522 UP 6 +213522 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +213903 DOWN 6 +213903 0 0 +213919 UP 6 +213919 32 0 +~~~ +213923 contingency = 0 +213923 trialThresh = 100 +213924 timeMaxOut = 20 +213924 timeElapsed = 3 +213925 totalPokes = 17 +213925 totalRewards = 6 +213925 countPokes1 = 5 +213925 countRewards1 = 3 +213926 leafProbs1 = 80 +213926 countPokes2 = 3 +213927 countRewards2 = 0 +213940 leafProbs2 = 20 +213941 countPokes3 = 2 +213941 countRewards3 = 0 +213941 leafProbs3 = 20 +213941 countPokes4 = 2 +213942 countRewards4 = 1 +213942 leafProbs4 = 50 +213943 countPokes5 = 2 +213943 countRewards5 = 1 +213943 leafProbs5 = 80 +213957 countPokes6 = 3 +213957 countRewards6 = 1 +213957 leafProbs6 = 50 +~~~ +213962 DOWN 6 +213962 0 0 +218705 UP 5 +218705 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +218741 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +219041 16 0 +220419 DOWN 5 +220419 0 0 +220425 UP 5 +220425 16 0 +~~~ +220436 contingency = 0 +220436 trialThresh = 100 +220437 timeMaxOut = 20 +220437 timeElapsed = 3 +220437 totalPokes = 18 +220437 totalRewards = 7 +220437 countPokes1 = 5 +220438 countRewards1 = 3 +220438 leafProbs1 = 80 +220439 countPokes2 = 3 +220439 countRewards2 = 0 +220453 leafProbs2 = 20 +220453 countPokes3 = 2 +220453 countRewards3 = 0 +220454 leafProbs3 = 20 +220454 countPokes4 = 2 +220455 countRewards4 = 1 +220455 leafProbs4 = 50 +220455 countPokes5 = 3 +220455 countRewards5 = 2 +220455 leafProbs5 = 80 +220469 countPokes6 = 3 +220469 countRewards6 = 1 +220470 leafProbs6 = 50 +~~~ +221126 DOWN 5 +221126 0 0 +221145 UP 5 +221145 16 0 +221557 DOWN 5 +221557 0 0 +225579 UP 6 +225579 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +225814 DOWN 6 +225814 0 0 +225835 UP 6 +225835 32 0 +~~~ +225843 contingency = 0 +225843 trialThresh = 100 +225843 timeMaxOut = 20 +225844 timeElapsed = 3 +225844 totalPokes = 19 +225845 totalRewards = 7 +225845 countPokes1 = 5 +225845 countRewards1 = 3 +225845 leafProbs1 = 80 +225846 countPokes2 = 3 +225846 countRewards2 = 0 +225860 leafProbs2 = 20 +225860 countPokes3 = 2 +225861 countRewards3 = 0 +225861 leafProbs3 = 20 +225861 countPokes4 = 2 +225861 countRewards4 = 1 +225862 leafProbs4 = 50 +225862 countPokes5 = 3 +225863 countRewards5 = 2 +225863 leafProbs5 = 80 +225877 countPokes6 = 4 +225877 countRewards6 = 1 +225877 leafProbs6 = 50 +~~~ +226005 DOWN 6 +226005 0 0 +226079 UP 6 +226079 32 0 +226211 DOWN 6 +226211 0 0 +226241 UP 6 +226241 32 0 +226290 DOWN 6 +226290 0 0 +226389 UP 6 +226389 32 0 +226584 DOWN 6 +226584 0 0 +226651 UP 6 +226651 32 0 +226788 DOWN 6 +226788 0 0 +230377 UP 5 +230377 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230409 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230619 DOWN 5 +230619 0 1024 +230632 UP 5 +230632 16 1024 +~~~ +230647 contingency = 0 +230647 trialThresh = 100 +230647 timeMaxOut = 20 +230647 timeElapsed = 3 +230648 totalPokes = 20 +230648 totalRewards = 8 +230649 countPokes1 = 5 +230649 countRewards1 = 3 +230649 leafProbs1 = 80 +230649 countPokes2 = 3 +230650 countRewards2 = 0 +230663 leafProbs2 = 20 +230664 countPokes3 = 2 +230664 countRewards3 = 0 +230665 leafProbs3 = 20 +230665 countPokes4 = 2 +230665 countRewards4 = 1 +230665 leafProbs4 = 50 +230666 countPokes5 = 4 +230666 countRewards5 = 3 +230667 leafProbs5 = 80 +230680 countPokes6 = 4 +230681 countRewards6 = 1 +230681 leafProbs6 = 50 +~~~ +230708 16 0 +232797 DOWN 5 +232796 0 0 +232802 UP 5 +232802 16 0 +232900 DOWN 5 +232900 0 0 +232928 UP 5 +232928 16 0 +233233 DOWN 5 +233233 0 0 +233256 UP 5 +233256 16 0 +233319 DOWN 5 +233319 0 0 +235867 UP 6 +235867 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +235898 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +236198 32 0 +238601 DOWN 6 +238601 0 0 +238614 UP 6 +238614 32 0 +~~~ +238631 contingency = 0 +238631 trialThresh = 100 +238631 timeMaxOut = 20 +238631 timeElapsed = 4 +238632 totalPokes = 21 +238632 totalRewards = 9 +238632 countPokes1 = 5 +238633 countRewards1 = 3 +238633 leafProbs1 = 80 +238633 countPokes2 = 3 +238633 countRewards2 = 0 +238647 leafProbs2 = 20 +238648 countPokes3 = 2 +238648 countRewards3 = 0 +238649 leafProbs3 = 20 +238649 countPokes4 = 2 +238649 countRewards4 = 1 +238649 leafProbs4 = 50 +238650 countPokes5 = 4 +238650 countRewards5 = 3 +238650 leafProbs5 = 80 +238664 countPokes6 = 5 +238664 countRewards6 = 2 +238665 leafProbs6 = 50 +~~~ +239049 DOWN 6 +239049 0 0 +250071 UP 1 +250071 1 0 +~~~ +~~~ +250097 DOWN 1 +250097 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250103 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250129 UP 1 +250129 1 64 +~~~ +250136 contingency = 0 +250137 trialThresh = 100 +250137 timeMaxOut = 20 +250137 timeElapsed = 4 +250137 totalPokes = 22 +250137 totalRewards = 10 +250138 countPokes1 = 6 +250138 countRewards1 = 4 +250139 leafProbs1 = 80 +250139 countPokes2 = 3 +250139 countRewards2 = 0 +250153 leafProbs2 = 20 +250153 countPokes3 = 2 +250154 countRewards3 = 0 +250154 leafProbs3 = 20 +250155 countPokes4 = 2 +250155 countRewards4 = 1 +250155 leafProbs4 = 50 +250155 countPokes5 = 4 +250156 countRewards5 = 3 +250156 leafProbs5 = 80 +250170 countPokes6 = 5 +250170 countRewards6 = 2 +250170 leafProbs6 = 50 +~~~ +250171 DOWN 1 +250171 0 64 +250204 UP 1 +250204 1 64 +250248 DOWN 1 +250248 0 64 +250280 UP 1 +250280 1 64 +250403 1 0 +250446 DOWN 1 +250446 0 0 +250455 UP 1 +250455 1 0 +253556 DOWN 1 +253556 0 0 +256084 UP 2 +256084 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256264 DOWN 2 +256264 0 0 +256267 UP 2 +256267 2 0 +~~~ +256282 contingency = 0 +256282 trialThresh = 100 +256282 timeMaxOut = 20 +256282 timeElapsed = 4 +256282 totalPokes = 23 +256283 totalRewards = 10 +256283 countPokes1 = 6 +256284 countRewards1 = 4 +256284 leafProbs1 = 80 +256284 countPokes2 = 4 +256284 countRewards2 = 0 +256298 leafProbs2 = 20 +256299 countPokes3 = 2 +256299 countRewards3 = 0 +256300 leafProbs3 = 20 +256300 countPokes4 = 2 +256300 countRewards4 = 1 +256300 leafProbs4 = 50 +256301 countPokes5 = 4 +256301 countRewards5 = 3 +256302 leafProbs5 = 80 +256315 countPokes6 = 5 +256316 countRewards6 = 2 +256316 leafProbs6 = 50 +~~~ +256546 DOWN 2 +256546 0 0 +256572 UP 2 +256572 2 0 +256748 DOWN 2 +256748 0 0 +258880 UP 1 +258880 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +258914 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +259214 1 0 +261848 DOWN 1 +261848 0 0 +~~~ +261868 contingency = 0 +261868 trialThresh = 100 +261868 timeMaxOut = 20 +261868 timeElapsed = 4 +261869 totalPokes = 24 +261869 totalRewards = 11 +261870 countPokes1 = 7 +261870 countRewards1 = 5 +261870 leafProbs1 = 80 +261870 countPokes2 = 4 +261870 countRewards2 = 0 +261884 leafProbs2 = 20 +261885 countPokes3 = 2 +261885 countRewards3 = 0 +261886 leafProbs3 = 20 +261886 countPokes4 = 2 +261886 countRewards4 = 1 +261886 leafProbs4 = 50 +261887 countPokes5 = 4 +261887 countRewards5 = 3 +261888 leafProbs5 = 80 +261901 countPokes6 = 5 +261902 countRewards6 = 2 +261902 leafProbs6 = 50 +~~~ +267560 UP 2 +267560 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +267886 DOWN 2 +267886 0 0 +267900 UP 2 +267900 2 0 +~~~ +267911 contingency = 0 +267911 trialThresh = 100 +267912 timeMaxOut = 20 +267912 timeElapsed = 4 +267912 totalPokes = 25 +267912 totalRewards = 11 +267913 countPokes1 = 7 +267913 countRewards1 = 5 +267914 leafProbs1 = 80 +267914 countPokes2 = 5 +267914 countRewards2 = 0 +267928 leafProbs2 = 20 +267928 countPokes3 = 2 +267928 countRewards3 = 0 +267929 leafProbs3 = 20 +267929 countPokes4 = 2 +267930 countRewards4 = 1 +267930 leafProbs4 = 50 +267930 countPokes5 = 4 +267930 countRewards5 = 3 +267931 leafProbs5 = 80 +267944 countPokes6 = 5 +267945 countRewards6 = 2 +267945 leafProbs6 = 50 +~~~ +267946 DOWN 2 +267946 0 0 +272470 UP 2 +272470 2 0 +272489 DOWN 2 +272489 0 0 +272498 UP 2 +272498 2 0 +272506 DOWN 2 +272506 0 0 +275002 UP 1 +275002 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275036 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275336 1 0 +277515 DOWN 1 +277515 0 0 +277520 UP 1 +277520 1 0 +~~~ +277532 contingency = 0 +277533 trialThresh = 100 +277533 timeMaxOut = 20 +277534 timeElapsed = 5 +277534 totalPokes = 26 +277534 totalRewards = 12 +277534 countPokes1 = 8 +277534 countRewards1 = 6 +277535 leafProbs1 = 80 +277535 countPokes2 = 5 +277536 countRewards2 = 0 +277550 leafProbs2 = 20 +277550 countPokes3 = 2 +277550 countRewards3 = 0 +277550 leafProbs3 = 20 +277551 countPokes4 = 2 +277551 countRewards4 = 1 +277552 leafProbs4 = 50 +277552 countPokes5 = 4 +277552 countRewards5 = 3 +277552 leafProbs5 = 80 +277566 countPokes6 = 5 +277566 countRewards6 = 2 +277566 leafProbs6 = 50 +~~~ +277832 DOWN 1 +277832 0 0 +284331 UP 1 +284331 1 0 +284497 DOWN 1 +284497 0 0 +290436 UP 2 +290436 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +291663 DOWN 2 +291663 0 0 +~~~ +291685 contingency = 0 +291686 trialThresh = 100 +291686 timeMaxOut = 20 +291686 timeElapsed = 5 +291686 totalPokes = 27 +291687 totalRewards = 12 +291687 countPokes1 = 8 +291688 countRewards1 = 6 +291688 leafProbs1 = 80 +291688 countPokes2 = 6 +291688 countRewards2 = 0 +291702 leafProbs2 = 20 +291702 countPokes3 = 2 +291703 countRewards3 = 0 +291703 leafProbs3 = 20 +291704 countPokes4 = 2 +291704 countRewards4 = 1 +291704 leafProbs4 = 50 +291704 countPokes5 = 4 +291705 countRewards5 = 3 +291705 leafProbs5 = 80 +291719 countPokes6 = 5 +291719 countRewards6 = 2 +291720 leafProbs6 = 50 +~~~ +298521 UP 1 +298521 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298560 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298859 1 0 +301302 DOWN 1 +301302 0 0 +301320 UP 1 +301320 1 0 +~~~ +301324 contingency = 0 +301324 trialThresh = 100 +301324 timeMaxOut = 20 +301324 timeElapsed = 5 +301325 totalPokes = 28 +301325 totalRewards = 13 +301326 countPokes1 = 9 +301326 countRewards1 = 7 +301326 leafProbs1 = 80 +301326 countPokes2 = 6 +301327 countRewards2 = 0 +301341 leafProbs2 = 20 +301341 countPokes3 = 2 +301342 countRewards3 = 0 +301342 leafProbs3 = 20 +301342 countPokes4 = 2 +301342 countRewards4 = 1 +301343 leafProbs4 = 50 +301343 countPokes5 = 4 +301343 countRewards5 = 3 +301344 leafProbs5 = 80 +301357 countPokes6 = 5 +301358 countRewards6 = 2 +301358 leafProbs6 = 50 +~~~ +301818 DOWN 1 +301818 0 0 +308157 UP 2 +308157 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +308409 DOWN 2 +308409 0 0 +~~~ +308433 contingency = 0 +308433 trialThresh = 100 +308433 timeMaxOut = 20 +308434 timeElapsed = 5 +308434 totalPokes = 29 +308435 totalRewards = 13 +308435 countPokes1 = 9 +308435 countRewards1 = 7 +308435 leafProbs1 = 80 +308436 countPokes2 = 7 +308436 countRewards2 = 0 +308450 leafProbs2 = 20 +308451 countPokes3 = 2 +308451 countRewards3 = 0 +308451 leafProbs3 = 20 +308451 countPokes4 = 2 +308452 countRewards4 = 1 +308452 leafProbs4 = 50 +308452 countPokes5 = 4 +308453 countRewards5 = 3 +308453 leafProbs5 = 80 +308467 countPokes6 = 5 +308467 countRewards6 = 2 +308467 leafProbs6 = 50 +~~~ +311726 UP 1 +311726 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +312211 DOWN 1 +312211 0 0 +~~~ +312317 contingency = 0 +312317 trialThresh = 100 +312318 timeMaxOut = 20 +312318 timeElapsed = 5 +312319 totalPokes = 30 +312319 totalRewards = 13 +312319 countPokes1 = 10 +312319 countRewards1 = 7 +312320 leafProbs1 = 80 +312320 countPokes2 = 7 +312321 countRewards2 = 0 +312335 leafProbs2 = 20 +312335 countPokes3 = 2 +312335 countRewards3 = 0 +312335 leafProbs3 = 20 +312335 countPokes4 = 2 +312336 countRewards4 = 1 +312336 leafProbs4 = 50 +312337 countPokes5 = 4 +312337 countRewards5 = 3 +312337 leafProbs5 = 80 +312351 countPokes6 = 5 +312351 countRewards6 = 2 +312351 leafProbs6 = 50 +~~~ +329565 UP 1 +329565 1 0 +329578 DOWN 1 +329578 0 0 +329607 UP 1 +329607 1 0 +329615 DOWN 1 +329615 0 0 +336849 UP 6 +336849 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +337375 DOWN 6 +337375 0 0 +~~~ +337402 contingency = 0 +337403 trialThresh = 100 +337403 timeMaxOut = 20 +337403 timeElapsed = 6 +337403 totalPokes = 31 +337404 totalRewards = 13 +337404 countPokes1 = 10 +337405 countRewards1 = 7 +337405 leafProbs1 = 80 +337405 countPokes2 = 7 +337405 countRewards2 = 0 +337419 leafProbs2 = 20 +337419 countPokes3 = 2 +337420 countRewards3 = 0 +337420 leafProbs3 = 20 +337421 countPokes4 = 2 +337421 countRewards4 = 1 +337421 leafProbs4 = 50 +337421 countPokes5 = 4 +337422 countRewards5 = 3 +337422 leafProbs5 = 80 +337436 countPokes6 = 6 +337436 countRewards6 = 2 +337437 leafProbs6 = 50 +~~~ +339595 UP 6 +339595 32 0 +339614 DOWN 6 +339614 0 0 +339917 UP 6 +339917 32 0 +340039 DOWN 6 +340039 0 0 +340062 UP 6 +340062 32 0 +341221 DOWN 6 +341221 0 0 +348806 UP 6 +348806 32 0 +349029 DOWN 6 +349029 0 0 +370690 UP 3 +370690 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +371347 DOWN 3 +371347 0 0 +~~~ +371366 contingency = 0 +371367 trialThresh = 100 +371367 timeMaxOut = 20 +371368 timeElapsed = 7 +371368 totalPokes = 32 +371368 totalRewards = 13 +371368 countPokes1 = 10 +371369 countRewards1 = 7 +371369 leafProbs1 = 80 +371370 countPokes2 = 7 +371370 countRewards2 = 0 +371384 leafProbs2 = 20 +371384 countPokes3 = 3 +371384 countRewards3 = 0 +371385 leafProbs3 = 20 +371385 countPokes4 = 2 +371386 countRewards4 = 1 +371386 leafProbs4 = 50 +371386 countPokes5 = 4 +371386 countRewards5 = 3 +371386 leafProbs5 = 80 +371400 countPokes6 = 6 +371400 countRewards6 = 2 +371401 leafProbs6 = 50 +~~~ +371401 UP 3 +371401 4 0 +371462 DOWN 3 +371462 0 0 +376503 UP 4 +376503 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376533 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376832 8 0 +379496 DOWN 4 +379496 0 0 +~~~ +379512 contingency = 0 +379512 trialThresh = 100 +379512 timeMaxOut = 20 +379512 timeElapsed = 7 +379512 totalPokes = 33 +379513 totalRewards = 14 +379513 countPokes1 = 10 +379514 countRewards1 = 7 +379514 leafProbs1 = 80 +379514 countPokes2 = 7 +379514 countRewards2 = 0 +379528 leafProbs2 = 20 +379529 countPokes3 = 3 +379529 countRewards3 = 0 +379530 leafProbs3 = 20 +379530 countPokes4 = 3 +379530 countRewards4 = 2 +379530 leafProbs4 = 50 +379531 countPokes5 = 4 +379531 countRewards5 = 3 +379532 leafProbs5 = 80 +379545 countPokes6 = 6 +379546 countRewards6 = 2 +379546 leafProbs6 = 50 +~~~ +379546 UP 4 +379546 8 0 +380063 DOWN 4 +380063 0 0 +380421 UP 4 +380421 8 0 +382496 DOWN 4 +382496 0 0 +387918 UP 3 +387918 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +388412 DOWN 3 +388412 0 0 +~~~ +388430 contingency = 0 +388430 trialThresh = 100 +388430 timeMaxOut = 20 +388431 timeElapsed = 7 +388431 totalPokes = 34 +388432 totalRewards = 14 +388432 countPokes1 = 10 +388432 countRewards1 = 7 +388432 leafProbs1 = 80 +388433 countPokes2 = 7 +388433 countRewards2 = 0 +388447 leafProbs2 = 20 +388448 countPokes3 = 4 +388448 countRewards3 = 0 +388448 leafProbs3 = 20 +388448 countPokes4 = 3 +388448 countRewards4 = 2 +388449 leafProbs4 = 50 +388449 countPokes5 = 4 +388450 countRewards5 = 3 +388450 leafProbs5 = 80 +388464 countPokes6 = 6 +388464 countRewards6 = 2 +388464 leafProbs6 = 50 +~~~ +390881 UP 4 +390881 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +390913 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391213 8 0 +393870 DOWN 4 +393870 0 0 +~~~ +393894 contingency = 0 +393894 trialThresh = 100 +393894 timeMaxOut = 20 +393894 timeElapsed = 7 +393895 totalPokes = 35 +393895 totalRewards = 15 +393895 countPokes1 = 10 +393896 countRewards1 = 7 +393896 leafProbs1 = 80 +393896 countPokes2 = 7 +393896 countRewards2 = 0 +393910 leafProbs2 = 20 +393911 countPokes3 = 4 +393911 countRewards3 = 0 +393912 leafProbs3 = 20 +393912 countPokes4 = 4 +393912 countRewards4 = 3 +393912 leafProbs4 = 50 +393913 countPokes5 = 4 +393913 countRewards5 = 3 +393914 leafProbs5 = 80 +393927 countPokes6 = 6 +393928 countRewards6 = 2 +393928 leafProbs6 = 50 +~~~ +396968 UP 3 +396968 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +396991 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +397291 4 0 +397330 DOWN 3 +397330 0 0 +397342 UP 3 +397342 4 0 +~~~ +397350 contingency = 0 +397350 trialThresh = 100 +397351 timeMaxOut = 20 +397351 timeElapsed = 8 +397352 totalPokes = 36 +397352 totalRewards = 16 +397352 countPokes1 = 10 +397352 countRewards1 = 7 +397353 leafProbs1 = 80 +397353 countPokes2 = 7 +397353 countRewards2 = 0 +397368 leafProbs2 = 20 +397368 countPokes3 = 5 +397368 countRewards3 = 1 +397368 leafProbs3 = 20 +397368 countPokes4 = 4 +397369 countRewards4 = 3 +397369 leafProbs4 = 50 +397370 countPokes5 = 4 +397370 countRewards5 = 3 +397370 leafProbs5 = 80 +397384 countPokes6 = 6 +397384 countRewards6 = 2 +397384 leafProbs6 = 50 +~~~ +397422 DOWN 3 +397422 0 0 +397432 UP 3 +397432 4 0 +397510 DOWN 3 +397510 0 0 +397514 UP 3 +397514 4 0 +400532 DOWN 3 +400532 0 0 +419715 UP 4 +419715 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +419745 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420045 8 0 +422470 DOWN 4 +422470 0 0 +422484 UP 4 +422484 8 0 +~~~ +422499 contingency = 0 +422499 trialThresh = 100 +422499 timeMaxOut = 20 +422499 timeElapsed = 8 +422500 totalPokes = 37 +422500 totalRewards = 17 +422501 countPokes1 = 10 +422501 countRewards1 = 7 +422501 leafProbs1 = 80 +422501 countPokes2 = 7 +422502 countRewards2 = 0 +422516 leafProbs2 = 20 +422516 countPokes3 = 5 +422517 countRewards3 = 1 +422517 leafProbs3 = 20 +422517 countPokes4 = 5 +422517 countRewards4 = 4 +422517 leafProbs4 = 50 +422518 countPokes5 = 4 +422518 countRewards5 = 3 +422519 leafProbs5 = 80 +422532 countPokes6 = 6 +422533 countRewards6 = 2 +422533 leafProbs6 = 50 +~~~ +423017 DOWN 4 +423017 0 0 +427069 UP 3 +427069 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427094 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427239 DOWN 3 +427239 0 256 +427241 UP 3 +427241 4 256 +~~~ +427264 contingency = 0 +427264 trialThresh = 100 +427264 timeMaxOut = 20 +427265 timeElapsed = 8 +427265 totalPokes = 38 +427265 totalRewards = 18 +427265 countPokes1 = 10 +427266 countRewards1 = 7 +427266 leafProbs1 = 80 +427267 countPokes2 = 7 +427267 countRewards2 = 0 +427281 leafProbs2 = 20 +427281 countPokes3 = 6 +427281 countRewards3 = 2 +427282 leafProbs3 = 20 +427282 countPokes4 = 5 +427283 countRewards4 = 4 +427283 leafProbs4 = 50 +427283 countPokes5 = 4 +427283 countRewards5 = 3 +427284 leafProbs5 = 80 +427297 countPokes6 = 6 +427298 countRewards6 = 2 +427298 leafProbs6 = 50 +~~~ +427394 4 0 +428859 DOWN 3 +428859 0 0 +428870 UP 3 +428870 4 0 +430500 DOWN 3 +430500 0 0 +430508 UP 3 +430508 4 0 +430526 DOWN 3 +430526 0 0 +430529 UP 3 +430529 4 0 +430591 DOWN 3 +430591 0 0 +430598 UP 3 +430598 4 0 +430616 DOWN 3 +430616 0 0 +430625 UP 3 +430625 4 0 +430632 DOWN 3 +430632 0 0 +430643 UP 3 +430643 4 0 +430705 DOWN 3 +430705 0 0 +430716 UP 3 +430716 4 0 +430743 DOWN 3 +430743 0 0 +430751 UP 3 +430751 4 0 +430764 DOWN 3 +430764 0 0 +430767 UP 3 +430767 4 0 +430813 DOWN 3 +430813 0 0 +430823 UP 3 +430823 4 0 +430837 DOWN 3 +430837 0 0 +430847 UP 3 +430847 4 0 +430937 DOWN 3 +430937 0 0 +438029 UP 4 +438029 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +438640 DOWN 4 +438640 0 0 +~~~ +438656 contingency = 0 +438656 trialThresh = 100 +438657 timeMaxOut = 20 +438657 timeElapsed = 9 +438657 totalPokes = 39 +438657 totalRewards = 18 +438658 countPokes1 = 10 +438658 countRewards1 = 7 +438659 leafProbs1 = 80 +438659 countPokes2 = 7 +438659 countRewards2 = 0 +438673 leafProbs2 = 20 +438673 countPokes3 = 6 +438674 countRewards3 = 2 +438674 leafProbs3 = 20 +438675 countPokes4 = 6 +438675 countRewards4 = 4 +438675 leafProbs4 = 50 +438675 countPokes5 = 4 +438675 countRewards5 = 3 +438676 leafProbs5 = 80 +438690 countPokes6 = 6 +438690 countRewards6 = 2 +438690 leafProbs6 = 50 +~~~ +440259 UP 3 +440259 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +440484 DOWN 3 +440484 0 0 +~~~ +440505 UP 3 +440505 4 0 +440506 contingency = 0 +440506 trialThresh = 100 +440507 timeMaxOut = 20 +440507 timeElapsed = 9 +440507 totalPokes = 40 +440507 totalRewards = 18 +440508 countPokes1 = 10 +440508 countRewards1 = 7 +440508 leafProbs1 = 80 +440509 countPokes2 = 7 +440523 countRewards2 = 0 +440523 leafProbs2 = 20 +440523 countPokes3 = 7 +440523 countRewards3 = 2 +440524 leafProbs3 = 20 +440524 countPokes4 = 6 +440525 countRewards4 = 4 +440525 leafProbs4 = 50 +440525 countPokes5 = 4 +440525 countRewards5 = 3 +440539 leafProbs5 = 80 +440539 countPokes6 = 6 +440540 countRewards6 = 2 +440540 leafProbs6 = 50 +~~~ +440595 DOWN 3 +440595 0 0 +440601 UP 3 +440601 4 0 +440618 DOWN 3 +440618 0 0 +440634 UP 3 +440634 4 0 +440725 DOWN 3 +440725 0 0 +440729 UP 3 +440729 4 0 +440749 DOWN 3 +440749 0 0 +440787 UP 3 +440787 4 0 +441093 DOWN 3 +441093 0 0 +441136 UP 3 +441136 4 0 +441147 DOWN 3 +441147 0 0 +441287 UP 3 +441287 4 0 +441509 DOWN 3 +441509 0 0 +444557 UP 4 +444557 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +444894 DOWN 4 +444894 0 0 +~~~ +444911 contingency = 0 +444911 trialThresh = 100 +444911 timeMaxOut = 20 +444911 timeElapsed = 9 +444912 totalPokes = 41 +444912 totalRewards = 18 +444913 countPokes1 = 10 +444913 countRewards1 = 7 +444913 leafProbs1 = 80 +444913 countPokes2 = 7 +444914 countRewards2 = 0 +444928 leafProbs2 = 20 +444928 countPokes3 = 7 +444929 countRewards3 = 2 +444929 leafProbs3 = 20 +444929 countPokes4 = 7 +444929 countRewards4 = 4 +444930 leafProbs4 = 50 +444930 countPokes5 = 4 +444931 countRewards5 = 3 +444931 leafProbs5 = 80 +444945 countPokes6 = 6 +444945 countRewards6 = 2 +444945 leafProbs6 = 50 +~~~ +451529 UP 6 +451529 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +452216 DOWN 6 +452216 0 0 +~~~ +452237 contingency = 0 +452237 trialThresh = 100 +452238 timeMaxOut = 20 +452238 timeElapsed = 9 +452239 totalPokes = 42 +452239 totalRewards = 18 +452239 countPokes1 = 10 +452239 countRewards1 = 7 +452240 leafProbs1 = 80 +452240 countPokes2 = 7 +452241 countRewards2 = 0 +452255 leafProbs2 = 20 +452255 countPokes3 = 7 +452255 countRewards3 = 2 +452255 leafProbs3 = 20 +452256 countPokes4 = 7 +452256 countRewards4 = 4 +452257 leafProbs4 = 50 +452257 countPokes5 = 4 +452257 countRewards5 = 3 +452257 leafProbs5 = 80 +452271 countPokes6 = 7 +452271 countRewards6 = 2 +452271 leafProbs6 = 50 +~~~ +452272 UP 6 +452272 32 0 +452323 DOWN 6 +452323 0 0 +456828 UP 6 +456828 32 0 +457039 DOWN 6 +457039 0 0 +458402 UP 5 +458402 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458432 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458732 16 0 +458786 DOWN 5 +458786 0 0 +458790 UP 5 +458790 16 0 +~~~ +458817 contingency = 0 +458817 trialThresh = 100 +458817 timeMaxOut = 20 +458817 timeElapsed = 9 +458818 totalPokes = 43 +458818 totalRewards = 19 +458819 countPokes1 = 10 +458819 countRewards1 = 7 +458819 leafProbs1 = 80 +458819 countPokes2 = 7 +458820 countRewards2 = 0 +458834 leafProbs2 = 20 +458834 countPokes3 = 7 +458835 countRewards3 = 2 +458835 leafProbs3 = 20 +458835 countPokes4 = 7 +458835 countRewards4 = 4 +458836 leafProbs4 = 50 +458836 countPokes5 = 5 +458837 countRewards5 = 4 +458837 leafProbs5 = 80 +458850 countPokes6 = 7 +458851 countRewards6 = 2 +458851 leafProbs6 = 50 +~~~ +460863 DOWN 5 +460863 0 0 +460877 UP 5 +460877 16 0 +461283 DOWN 5 +461283 0 0 +461306 UP 5 +461306 16 0 +461377 DOWN 5 +461377 0 0 +468674 UP 6 +468674 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469094 DOWN 6 +469094 0 0 +~~~ +469120 contingency = 0 +469120 trialThresh = 100 +469120 timeMaxOut = 20 +469121 timeElapsed = 9 +469121 totalPokes = 44 +469122 totalRewards = 19 +469122 countPokes1 = 10 +469122 countRewards1 = 7 +469122 leafProbs1 = 80 +469123 countPokes2 = 7 +469123 countRewards2 = 0 +469137 leafProbs2 = 20 +469138 countPokes3 = 7 +469138 countRewards3 = 2 +469138 leafProbs3 = 20 +469138 countPokes4 = 7 +469138 countRewards4 = 4 +469139 leafProbs4 = 50 +469139 countPokes5 = 5 +469140 countRewards5 = 4 +469140 leafProbs5 = 80 +469154 countPokes6 = 8 +469154 countRewards6 = 2 +469154 leafProbs6 = 50 +~~~ +474207 UP 6 +474207 32 0 +474302 DOWN 6 +474302 0 0 +474380 UP 6 +474380 32 0 +474621 DOWN 6 +474621 0 0 +482030 UP 1 +482030 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +482234 DOWN 1 +482234 0 0 +~~~ +482258 contingency = 0 +482258 trialThresh = 100 +482258 timeMaxOut = 20 +482258 timeElapsed = 10 +482259 totalPokes = 45 +482259 totalRewards = 19 +482260 countPokes1 = 11 +482260 countRewards1 = 7 +482260 leafProbs1 = 80 +482260 countPokes2 = 7 +482261 countRewards2 = 0 +482275 leafProbs2 = 20 +482275 countPokes3 = 7 +482276 countRewards3 = 2 +482276 leafProbs3 = 20 +482276 countPokes4 = 7 +482276 countRewards4 = 4 +482277 leafProbs4 = 50 +482277 countPokes5 = 5 +482278 countRewards5 = 4 +482278 leafProbs5 = 80 +482292 countPokes6 = 8 +482292 countRewards6 = 2 +482292 leafProbs6 = 50 +~~~ +482292 UP 1 +482292 1 0 +482558 DOWN 1 +482558 0 0 +482585 UP 1 +482585 1 0 +482683 DOWN 1 +482683 0 0 +482718 UP 1 +482718 1 0 +482744 DOWN 1 +482744 0 0 +482821 UP 1 +482821 1 0 +482842 DOWN 1 +482842 0 0 +482905 UP 1 +482905 1 0 +482939 DOWN 1 +482939 0 0 +498133 UP 1 +498133 1 0 +498150 DOWN 1 +498150 0 0 +498596 UP 1 +498596 1 0 +498878 DOWN 1 +498878 0 0 +508278 UP 1 +508278 1 0 +508469 DOWN 1 +508469 0 0 +508616 UP 1 +508616 1 0 +508860 DOWN 1 +508860 0 0 +518791 UP 2 +518791 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +519385 DOWN 2 +519385 0 0 +~~~ +519406 contingency = 0 +519406 trialThresh = 100 +519407 timeMaxOut = 20 +519407 timeElapsed = 11 +519407 totalPokes = 46 +519407 totalRewards = 19 +519408 countPokes1 = 11 +519408 countRewards1 = 7 +519409 leafProbs1 = 80 +519409 countPokes2 = 8 +519409 countRewards2 = 0 +519423 leafProbs2 = 20 +519423 countPokes3 = 7 +519424 countRewards3 = 2 +519424 leafProbs3 = 20 +519425 countPokes4 = 7 +519425 countRewards4 = 4 +519425 leafProbs4 = 50 +519425 countPokes5 = 5 +519425 countRewards5 = 4 +519426 leafProbs5 = 80 +519439 countPokes6 = 8 +519440 countRewards6 = 2 +519440 leafProbs6 = 50 +~~~ +519441 UP 2 +519441 2 0 +519447 DOWN 2 +519447 0 0 +524357 UP 1 +524357 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524378 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524678 1 0 +524797 DOWN 1 +524797 0 0 +~~~ +524815 contingency = 0 +524815 trialThresh = 100 +524816 timeMaxOut = 20 +524816 timeElapsed = 11 +524817 totalPokes = 47 +524817 totalRewards = 20 +524817 countPokes1 = 12 +524817 countRewards1 = 8 +524817 leafProbs1 = 80 +524818 countPokes2 = 8 +524818 countRewards2 = 0 +524833 leafProbs2 = 20 +524833 countPokes3 = 7 +524833 countRewards3 = 2 +524833 leafProbs3 = 20 +524833 countPokes4 = 7 +524834 countRewards4 = 4 +524834 leafProbs4 = 50 +524835 countPokes5 = 5 +524835 countRewards5 = 4 +524835 leafProbs5 = 80 +524849 countPokes6 = 8 +524849 countRewards6 = 2 +524849 leafProbs6 = 50 +~~~ +524850 UP 1 +524850 1 0 +524863 DOWN 1 +524863 0 0 +524873 UP 1 +524873 1 0 +527968 DOWN 1 +527968 0 0 +527980 UP 1 +527980 1 0 +528079 DOWN 1 +528079 0 0 +528109 UP 1 +528109 1 0 +528210 DOWN 1 +528210 0 0 +528221 UP 1 +528221 1 0 +528322 DOWN 1 +528322 0 0 +528348 UP 1 +528348 1 0 +528356 DOWN 1 +528356 0 0 +528365 UP 1 +528365 1 0 +528411 DOWN 1 +528411 0 0 +533697 UP 1 +533697 1 0 +533887 DOWN 1 +533887 0 0 +533943 UP 1 +533943 1 0 +535917 DOWN 1 +535917 0 0 +536171 UP 1 +536171 1 0 +536181 DOWN 1 +536181 0 0 +540135 UP 1 +540135 1 0 +540396 DOWN 1 +540396 0 0 +544774 UP 1 +544774 1 0 +544951 DOWN 1 +544951 0 0 +545039 UP 1 +545039 1 0 +545129 DOWN 1 +545129 0 0 +546501 UP 1 +546501 1 0 +546595 DOWN 1 +546595 0 0 +562134 UP 1 +562134 1 0 +562562 DOWN 1 +562562 0 0 +574774 UP 6 +574774 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +574832 DOWN 6 +574832 0 0 +~~~ +574860 contingency = 0 +574860 trialThresh = 100 +574861 timeMaxOut = 20 +574861 timeElapsed = 12 +574862 totalPokes = 48 +574862 totalRewards = 20 +574862 countPokes1 = 12 +574862 countRewards1 = 8 +574863 leafProbs1 = 80 +574863 countPokes2 = 8 +574864 countRewards2 = 0 +574878 leafProbs2 = 20 +574878 countPokes3 = 7 +574878 countRewards3 = 2 +574878 leafProbs3 = 20 +574879 countPokes4 = 7 +574879 countRewards4 = 4 +574879 leafProbs4 = 50 +574880 countPokes5 = 5 +574880 countRewards5 = 4 +574880 leafProbs5 = 80 +574894 countPokes6 = 9 +574894 countRewards6 = 2 +574894 leafProbs6 = 50 +~~~ +574895 UP 6 +574895 32 0 +574983 DOWN 6 +574983 0 0 +575020 UP 6 +575020 32 0 +575089 DOWN 6 +575089 0 0 +575126 UP 6 +575126 32 0 +575149 DOWN 6 +575149 0 0 +577744 UP 6 +577744 32 0 +577748 DOWN 6 +577748 0 0 +578154 UP 6 +578154 32 0 +579354 DOWN 6 +579354 0 0 +579382 UP 6 +579382 32 0 +579514 DOWN 6 +579514 0 0 +580826 UP 6 +580826 32 0 +581310 DOWN 6 +581310 0 0 +581654 UP 6 +581654 32 0 +581711 DOWN 6 +581711 0 0 +582734 UP 6 +582733 32 0 +582748 DOWN 6 +582748 0 0 +585351 UP 6 +585351 32 0 +587498 DOWN 6 +587498 0 0 +595639 UP 1 +595639 1 0 +595653 DOWN 1 +595653 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595663 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595676 contingency = 0 +595676 trialThresh = 100 +595676 timeMaxOut = 20 +595677 timeElapsed = 13 +595677 totalPokes = 49 +595678 totalRewards = 21 +595678 countPokes1 = 13 +595678 countRewards1 = 9 +595678 leafProbs1 = 80 +595679 countPokes2 = 8 +595679 countRewards2 = 0 +595693 leafProbs2 = 20 +595694 countPokes3 = 7 +595694 countRewards3 = 2 +595694 leafProbs3 = 20 +595694 countPokes4 = 7 +595694 countRewards4 = 4 +595695 leafProbs4 = 50 +595695 countPokes5 = 5 +595696 countRewards5 = 4 +595696 leafProbs5 = 80 +595710 countPokes6 = 9 +595710 countRewards6 = 2 +595710 leafProbs6 = 50 +~~~ +595710 UP 1 +595710 1 64 +595807 DOWN 1 +595807 0 64 +595820 UP 1 +595820 1 64 +595874 DOWN 1 +595874 0 64 +595886 UP 1 +595886 1 64 +595963 1 0 +599155 DOWN 1 +599155 0 0 +599164 UP 1 +599164 1 0 +599808 DOWN 1 +599808 0 0 +688756 UP 6 +688756 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688779 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688956 DOWN 6 +688956 0 2048 +~~~ +688973 contingency = 0 +688973 trialThresh = 100 +688974 timeMaxOut = 20 +688974 timeElapsed = 15 +688974 totalPokes = 50 +688974 totalRewards = 22 +688975 countPokes1 = 13 +688975 countRewards1 = 9 +688976 leafProbs1 = 80 +688976 countPokes2 = 8 +688976 countRewards2 = 0 +688990 leafProbs2 = 20 +688990 countPokes3 = 7 +688991 countRewards3 = 2 +688991 leafProbs3 = 20 +688992 countPokes4 = 7 +688992 countRewards4 = 4 +688992 leafProbs4 = 50 +688992 countPokes5 = 5 +688993 countRewards5 = 4 +688993 leafProbs5 = 80 +689007 countPokes6 = 10 +689007 countRewards6 = 3 +689007 leafProbs6 = 50 +~~~ +689008 UP 6 +689008 32 2048 +689079 32 0 +692128 DOWN 6 +692128 0 0 +692143 UP 6 +692143 32 0 +692685 DOWN 6 +692685 0 0 +698048 UP 6 +698048 32 0 +703204 DOWN 6 +703204 0 0 +704795 UP 5 +704795 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704833 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704998 DOWN 5 +704998 0 1024 +~~~ +705014 contingency = 0 +705014 trialThresh = 100 +705014 timeMaxOut = 20 +705015 timeElapsed = 15 +705015 totalPokes = 51 +705016 totalRewards = 23 +705016 countPokes1 = 13 +705016 countRewards1 = 9 +705016 leafProbs1 = 80 +705017 countPokes2 = 8 +705017 countRewards2 = 0 +705031 leafProbs2 = 20 +705032 countPokes3 = 7 +705032 countRewards3 = 2 +705032 leafProbs3 = 20 +705032 countPokes4 = 7 +705033 countRewards4 = 4 +705033 leafProbs4 = 50 +705033 countPokes5 = 6 +705034 countRewards5 = 5 +705034 leafProbs5 = 80 +705048 countPokes6 = 10 +705048 countRewards6 = 3 +705048 leafProbs6 = 50 +~~~ +705048 UP 5 +705048 16 1024 +705133 16 0 +707856 DOWN 5 +707856 0 0 +707859 UP 5 +707859 16 0 +708389 DOWN 5 +708388 0 0 +708430 UP 5 +708430 16 0 +708506 DOWN 5 +708506 0 0 +708517 UP 5 +708517 16 0 +708729 DOWN 5 +708729 0 0 +708753 UP 5 +708753 16 0 +708838 DOWN 5 +708838 0 0 +708870 UP 5 +708870 16 0 +708943 DOWN 5 +708943 0 0 +712658 UP 6 +712658 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712691 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712856 DOWN 6 +712856 0 2048 +712886 UP 6 +712886 32 2048 +~~~ +712891 contingency = 0 +712892 trialThresh = 100 +712892 timeMaxOut = 20 +712892 timeElapsed = 15 +712892 totalPokes = 52 +712893 totalRewards = 24 +712893 countPokes1 = 13 +712894 countRewards1 = 9 +712894 leafProbs1 = 80 +712894 countPokes2 = 8 +712894 countRewards2 = 0 +712908 leafProbs2 = 20 +712909 countPokes3 = 7 +712909 countRewards3 = 2 +712910 leafProbs3 = 20 +712910 countPokes4 = 7 +712910 countRewards4 = 4 +712910 leafProbs4 = 50 +712910 countPokes5 = 6 +712911 countRewards5 = 5 +712911 leafProbs5 = 80 +712925 countPokes6 = 11 +712925 countRewards6 = 4 +712926 leafProbs6 = 50 +~~~ +712990 32 0 +716085 DOWN 6 +716085 0 0 +716094 UP 6 +716094 32 0 +716526 DOWN 6 +716526 0 0 +725598 UP 1 +725598 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725628 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725712 DOWN 1 +725712 0 64 +~~~ +725726 contingency = 0 +725726 trialThresh = 100 +725727 timeMaxOut = 20 +725727 timeElapsed = 16 +725728 totalPokes = 53 +725728 totalRewards = 25 +725728 countPokes1 = 14 +725728 countRewards1 = 10 +725729 leafProbs1 = 80 +725729 countPokes2 = 8 +725729 countRewards2 = 0 +725744 leafProbs2 = 20 +725744 countPokes3 = 7 +725744 countRewards3 = 2 +725744 leafProbs3 = 20 +725745 countPokes4 = 7 +725745 countRewards4 = 4 +725746 leafProbs4 = 50 +725746 countPokes5 = 6 +725746 countRewards5 = 5 +725746 leafProbs5 = 80 +725760 countPokes6 = 11 +725760 countRewards6 = 4 +725760 leafProbs6 = 50 +~~~ +725761 UP 1 +725761 1 64 +725780 DOWN 1 +725779 0 64 +725790 UP 1 +725790 1 64 +725928 1 0 +725996 DOWN 1 +725996 0 0 +726010 UP 1 +726010 1 0 +729338 DOWN 1 +729338 0 0 +734564 UP 1 +734564 1 0 +734740 DOWN 1 +734740 0 0 +758750 UP 2 +758750 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +758998 DOWN 2 +758998 0 0 +759011 UP 2 +759011 2 0 +~~~ +759026 contingency = 0 +759026 trialThresh = 100 +759027 timeMaxOut = 20 +759027 timeElapsed = 17 +759027 totalPokes = 54 +759027 totalRewards = 25 +759028 countPokes1 = 14 +759028 countRewards1 = 10 +759029 leafProbs1 = 80 +759029 countPokes2 = 9 +759029 countRewards2 = 0 +759043 leafProbs2 = 20 +759043 countPokes3 = 7 +759044 countRewards3 = 2 +759044 leafProbs3 = 20 +759045 countPokes4 = 7 +759045 countRewards4 = 4 +759045 leafProbs4 = 50 +759045 countPokes5 = 6 +759046 countRewards5 = 5 +759046 leafProbs5 = 80 +759060 countPokes6 = 11 +759060 countRewards6 = 4 +759061 leafProbs6 = 50 +~~~ +759247 DOWN 2 +759247 0 0 +764741 UP 2 +764741 2 0 +764877 DOWN 2 +764877 0 0 +768238 UP 1 +768238 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768267 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768567 1 0 +769995 DOWN 1 +769995 0 0 +770003 UP 1 +770003 1 0 +~~~ +770020 contingency = 0 +770021 trialThresh = 100 +770021 timeMaxOut = 20 +770021 timeElapsed = 17 +770021 totalPokes = 55 +770022 totalRewards = 26 +770022 countPokes1 = 15 +770023 countRewards1 = 11 +770023 leafProbs1 = 80 +770023 countPokes2 = 9 +770023 countRewards2 = 0 +770037 leafProbs2 = 20 +770038 countPokes3 = 7 +770038 countRewards3 = 2 +770039 leafProbs3 = 20 +770039 countPokes4 = 7 +770039 countRewards4 = 4 +770039 leafProbs4 = 50 +770040 countPokes5 = 6 +770040 countRewards5 = 5 +770041 leafProbs5 = 80 +770054 countPokes6 = 11 +770055 countRewards6 = 4 +770055 leafProbs6 = 50 +~~~ +770958 DOWN 1 +770958 0 0 +770969 UP 1 +770969 1 0 +771063 DOWN 1 +771063 0 0 +792538 UP 4 +792538 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +792976 DOWN 4 +792976 0 0 +~~~ +793004 contingency = 0 +793004 trialThresh = 100 +793004 timeMaxOut = 20 +793004 timeElapsed = 17 +793005 totalPokes = 56 +793005 totalRewards = 26 +793006 countPokes1 = 15 +793006 countRewards1 = 11 +793006 leafProbs1 = 80 +793006 countPokes2 = 9 +793006 countRewards2 = 0 +793021 leafProbs2 = 20 +793021 countPokes3 = 7 +793022 countRewards3 = 2 +793022 leafProbs3 = 20 +793022 countPokes4 = 8 +793022 countRewards4 = 4 +793023 leafProbs4 = 50 +793023 countPokes5 = 6 +793023 countRewards5 = 5 +793024 leafProbs5 = 80 +793037 countPokes6 = 11 +793038 countRewards6 = 4 +793038 leafProbs6 = 50 +~~~ +796258 UP 3 +796258 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796294 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796527 DOWN 3 +796527 0 256 +796548 UP 3 +796548 4 256 +~~~ +796560 contingency = 0 +796561 trialThresh = 100 +796561 timeMaxOut = 20 +796562 timeElapsed = 18 +796562 totalPokes = 57 +796562 totalRewards = 27 +796562 countPokes1 = 15 +796563 countRewards1 = 11 +796563 leafProbs1 = 80 +796564 countPokes2 = 9 +796564 countRewards2 = 0 +796578 leafProbs2 = 20 +796578 countPokes3 = 8 +796578 countRewards3 = 3 +796579 leafProbs3 = 20 +796579 countPokes4 = 8 +796580 countRewards4 = 4 +796580 leafProbs4 = 50 +796580 countPokes5 = 6 +796580 countRewards5 = 5 +796581 leafProbs5 = 80 +796594 countPokes6 = 11 +796595 countRewards6 = 4 +796595 leafProbs6 = 50 +~~~ +796596 4 0 +796624 DOWN 3 +796624 0 0 +796629 UP 3 +796629 4 0 +801350 DOWN 3 +801350 0 0 +806015 UP 4 +806015 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806042 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806342 8 0 +809642 DOWN 4 +809642 0 0 +~~~ +809664 contingency = 0 +809664 trialThresh = 100 +809664 timeMaxOut = 20 +809665 timeElapsed = 18 +809665 totalPokes = 58 +809666 totalRewards = 28 +809666 countPokes1 = 15 +809666 countRewards1 = 11 +809666 leafProbs1 = 80 +809667 countPokes2 = 9 +809667 countRewards2 = 0 +809681 leafProbs2 = 20 +809682 countPokes3 = 8 +809682 countRewards3 = 3 +809682 leafProbs3 = 20 +809682 countPokes4 = 9 +809683 countRewards4 = 5 +809683 leafProbs4 = 50 +809683 countPokes5 = 6 +809684 countRewards5 = 5 +809684 leafProbs5 = 80 +809698 countPokes6 = 11 +809698 countRewards6 = 4 +809698 leafProbs6 = 50 +~~~ +813030 UP 3 +813030 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +813879 DOWN 3 +813879 0 0 +~~~ +813907 contingency = 0 +813908 trialThresh = 100 +813908 timeMaxOut = 20 +813908 timeElapsed = 18 +813908 totalPokes = 59 +813909 totalRewards = 28 +813909 countPokes1 = 15 +813910 countRewards1 = 11 +813910 leafProbs1 = 80 +813910 countPokes2 = 9 +813910 countRewards2 = 0 +813924 leafProbs2 = 20 +813925 countPokes3 = 9 +813925 countRewards3 = 3 +813926 leafProbs3 = 20 +813926 countPokes4 = 9 +813926 countRewards4 = 5 +813926 leafProbs4 = 50 +813927 countPokes5 = 6 +813927 countRewards5 = 5 +813928 leafProbs5 = 80 +813941 countPokes6 = 11 +813942 countRewards6 = 4 +813942 leafProbs6 = 50 +~~~ +813990 UP 3 +813990 4 0 +814046 DOWN 3 +814046 0 0 +814070 UP 3 +814070 4 0 +814092 DOWN 3 +814092 0 0 +818984 UP 4 +818984 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819019 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819319 8 0 +822032 DOWN 4 +822032 0 0 +822048 UP 4 +822048 8 0 +~~~ +822052 contingency = 0 +822052 trialThresh = 100 +822052 timeMaxOut = 20 +822052 timeElapsed = 18 +822053 totalPokes = 60 +822053 totalRewards = 29 +822054 countPokes1 = 15 +822054 countRewards1 = 11 +822054 leafProbs1 = 80 +822054 countPokes2 = 9 +822055 countRewards2 = 0 +822069 leafProbs2 = 20 +822069 countPokes3 = 9 +822070 countRewards3 = 3 +822070 leafProbs3 = 20 +822070 countPokes4 = 10 +822070 countRewards4 = 6 +822071 leafProbs4 = 50 +822071 countPokes5 = 6 +822072 countRewards5 = 5 +822072 leafProbs5 = 80 +822086 countPokes6 = 11 +822086 countRewards6 = 4 +822086 leafProbs6 = 50 +~~~ +822142 DOWN 4 +822142 0 0 +825685 UP 3 +825685 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825714 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825899 DOWN 3 +825899 0 256 +825911 UP 3 +825911 4 256 +~~~ +825924 contingency = 0 +825924 trialThresh = 100 +825924 timeMaxOut = 20 +825924 timeElapsed = 18 +825924 totalPokes = 61 +825925 totalRewards = 30 +825925 countPokes1 = 15 +825926 countRewards1 = 11 +825926 leafProbs1 = 80 +825926 countPokes2 = 9 +825926 countRewards2 = 0 +825941 leafProbs2 = 20 +825941 countPokes3 = 10 +825941 countRewards3 = 4 +825942 leafProbs3 = 20 +825942 countPokes4 = 10 +825942 countRewards4 = 6 +825942 leafProbs4 = 50 +825943 countPokes5 = 6 +825943 countRewards5 = 5 +825944 leafProbs5 = 80 +825958 countPokes6 = 11 +825958 countRewards6 = 4 +825958 leafProbs6 = 50 +~~~ +826000 DOWN 3 +826000 0 256 +826002 UP 3 +826002 4 256 +826014 4 0 +829816 DOWN 3 +829816 0 0 +838111 UP 4 +838111 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838136 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838436 8 0 +841411 DOWN 4 +841411 0 0 +~~~ +841435 contingency = 0 +841436 trialThresh = 100 +841436 timeMaxOut = 20 +841437 timeElapsed = 19 +841437 totalPokes = 62 +841437 totalRewards = 31 +841437 countPokes1 = 15 +841438 countRewards1 = 11 +841438 leafProbs1 = 80 +841439 countPokes2 = 9 +841439 countRewards2 = 0 +841453 leafProbs2 = 20 +841453 countPokes3 = 10 +841453 countRewards3 = 4 +841454 leafProbs3 = 20 +841454 countPokes4 = 11 +841455 countRewards4 = 7 +841455 leafProbs4 = 50 +841455 countPokes5 = 6 +841455 countRewards5 = 5 +841455 leafProbs5 = 80 +841469 countPokes6 = 11 +841470 countRewards6 = 4 +841470 leafProbs6 = 50 +~~~ +843614 UP 3 +843614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843639 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843789 DOWN 3 +843789 0 256 +843795 UP 3 +843795 4 256 +~~~ +843808 contingency = 0 +843809 trialThresh = 100 +843809 timeMaxOut = 20 +843809 timeElapsed = 19 +843809 totalPokes = 63 +843810 totalRewards = 32 +843810 countPokes1 = 15 +843810 countRewards1 = 11 +843811 leafProbs1 = 80 +843811 countPokes2 = 9 +843811 countRewards2 = 0 +843825 leafProbs2 = 20 +843826 countPokes3 = 11 +843826 countRewards3 = 5 +843827 leafProbs3 = 20 +843827 countPokes4 = 11 +843827 countRewards4 = 7 +843827 leafProbs4 = 50 +843827 countPokes5 = 6 +843828 countRewards5 = 5 +843828 leafProbs5 = 80 +843842 countPokes6 = 11 +843843 countRewards6 = 4 +843843 leafProbs6 = 50 +~~~ +843939 4 0 +845473 DOWN 3 +845473 0 0 +845480 UP 3 +845480 4 0 +846559 DOWN 3 +846559 0 0 +846574 UP 3 +846574 4 0 +847017 DOWN 3 +847017 0 0 +850281 UP 4 +850281 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850308 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850608 8 0 +853788 DOWN 4 +853788 0 0 +~~~ +853810 contingency = 0 +853810 trialThresh = 100 +853811 timeMaxOut = 20 +853811 timeElapsed = 19 +853811 totalPokes = 64 +853811 totalRewards = 33 +853811 countPokes1 = 15 +853812 countRewards1 = 11 +853812 leafProbs1 = 80 +853813 countPokes2 = 9 +853813 countRewards2 = 0 +853827 leafProbs2 = 20 +853827 countPokes3 = 11 +853828 countRewards3 = 5 +853828 leafProbs3 = 20 +853829 countPokes4 = 12 +853829 countRewards4 = 8 +853829 leafProbs4 = 50 +853829 countPokes5 = 6 +853829 countRewards5 = 5 +853830 leafProbs5 = 80 +853844 countPokes6 = 11 +853844 countRewards6 = 4 +853845 leafProbs6 = 50 +~~~ +859749 UP 3 +859749 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +859929 DOWN 3 +859929 0 0 +~~~ +859955 contingency = 0 +859955 trialThresh = 100 +859955 timeMaxOut = 20 +859956 timeElapsed = 19 +859956 totalPokes = 65 +859957 totalRewards = 33 +859957 countPokes1 = 15 +859957 countRewards1 = 11 +859957 leafProbs1 = 80 +859958 countPokes2 = 9 +859958 countRewards2 = 0 +859972 leafProbs2 = 20 +859973 countPokes3 = 12 +859973 countRewards3 = 5 +859973 leafProbs3 = 20 +859973 countPokes4 = 12 +859974 countRewards4 = 8 +859974 leafProbs4 = 50 +859975 countPokes5 = 6 +859975 countRewards5 = 5 +859975 leafProbs5 = 80 +859989 countPokes6 = 11 +859989 countRewards6 = 4 +859989 leafProbs6 = 50 +~~~ +859990 UP 3 +859990 4 0 +860031 DOWN 3 +860031 0 0 +860033 UP 3 +860033 4 0 +860497 DOWN 3 +860497 0 0 +863294 UP 4 +863294 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +863951 DOWN 4 +863951 0 0 +~~~ +863973 contingency = 0 +863973 trialThresh = 100 +863973 timeMaxOut = 20 +863974 timeElapsed = 19 +863974 totalPokes = 66 +863975 totalRewards = 33 +863975 countPokes1 = 15 +863975 countRewards1 = 11 +863975 leafProbs1 = 80 +863976 countPokes2 = 9 +863976 countRewards2 = 0 +863990 leafProbs2 = 20 +863991 countPokes3 = 12 +863991 countRewards3 = 5 +863991 leafProbs3 = 20 +863991 countPokes4 = 13 +863992 countRewards4 = 8 +863992 leafProbs4 = 50 +863993 countPokes5 = 6 +863993 countRewards5 = 5 +863993 leafProbs5 = 80 +864007 countPokes6 = 11 +864007 countRewards6 = 4 +864007 leafProbs6 = 50 +~~~ +868524 UP 3 +868524 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +868698 DOWN 3 +868698 0 0 +~~~ +868713 contingency = 0 +868713 trialThresh = 100 +868713 timeMaxOut = 20 +868713 timeElapsed = 19 +868713 totalPokes = 67 +868714 totalRewards = 33 +868715 countPokes1 = 15 +868715 countRewards1 = 11 +868715 leafProbs1 = 80 +868715 countPokes2 = 9 +868715 countRewards2 = 0 +868730 leafProbs2 = 20 +868730 countPokes3 = 13 +868731 countRewards3 = 5 +868731 leafProbs3 = 20 +868731 countPokes4 = 13 +868731 countRewards4 = 8 +868732 leafProbs4 = 50 +868732 countPokes5 = 6 +868733 countRewards5 = 5 +868733 leafProbs5 = 80 +868747 countPokes6 = 11 +868747 countRewards6 = 4 +868747 leafProbs6 = 50 +~~~ +868747 UP 3 +868747 4 0 +868824 DOWN 3 +868824 0 0 +872741 UP 4 +872741 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +873169 DOWN 4 +873169 0 0 +~~~ +873187 contingency = 0 +873187 trialThresh = 100 +873187 timeMaxOut = 20 +873187 timeElapsed = 19 +873188 totalPokes = 68 +873188 totalRewards = 33 +873189 countPokes1 = 15 +873189 countRewards1 = 11 +873189 leafProbs1 = 80 +873189 countPokes2 = 9 +873190 countRewards2 = 0 +873204 leafProbs2 = 20 +873204 countPokes3 = 13 +873205 countRewards3 = 5 +873205 leafProbs3 = 20 +873205 countPokes4 = 14 +873205 countRewards4 = 8 +873206 leafProbs4 = 50 +873206 countPokes5 = 6 +873207 countRewards5 = 5 +873207 leafProbs5 = 80 +873221 countPokes6 = 11 +873221 countRewards6 = 4 +873221 leafProbs6 = 50 +~~~ +873252 UP 4 +873252 8 0 +873290 DOWN 4 +873290 0 0 +876725 UP 3 +876725 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876754 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876920 DOWN 3 +876920 0 256 +876935 UP 3 +876935 4 256 +~~~ +876950 contingency = 0 +876950 trialThresh = 100 +876951 timeMaxOut = 20 +876951 timeElapsed = 20 +876951 totalPokes = 69 +876951 totalRewards = 34 +876952 countPokes1 = 15 +876952 countRewards1 = 11 +876953 leafProbs1 = 80 +876953 countPokes2 = 9 +876953 countRewards2 = 0 +876967 leafProbs2 = 20 +876968 countPokes3 = 14 +876968 countRewards3 = 6 +876969 leafProbs3 = 20 +876969 countPokes4 = 14 +876969 countRewards4 = 8 +876969 leafProbs4 = 50 +876970 countPokes5 = 6 +876970 countRewards5 = 5 +876971 leafProbs5 = 80 +876984 countPokes6 = 11 +876985 countRewards6 = 4 +876985 leafProbs6 = 50 +~~~ +876985 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +877054 4 0 +878633 DOWN 3 +878633 0 0 +878639 UP 3 +878639 4 0 +879721 DOWN 3 +879721 0 0 +886019 UP 1 +886019 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886047 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886216 DOWN 1 +886216 0 64 +886239 UP 1 +886239 1 64 +~~~ +886244 contingency = 1 +886245 trialThresh = 100 +886245 timeMaxOut = 20 +886245 timeElapsed = 0 +886245 totalPokes = 1 +886245 totalRewards = 1 +886246 countPokes1 = 1 +886246 countRewards1 = 1 +886247 leafProbs1 = 80 +886247 countPokes2 = 0 +886247 countRewards2 = 0 +886261 leafProbs2 = 20 +886261 countPokes3 = 0 +886262 countRewards3 = 0 +886262 leafProbs3 = 20 +886263 countPokes4 = 0 +886263 countRewards4 = 0 +886263 leafProbs4 = 50 +886263 countPokes5 = 0 +886263 countRewards5 = 0 +886264 leafProbs5 = 80 +886277 countPokes6 = 0 +886278 countRewards6 = 0 +886278 leafProbs6 = 50 +~~~ +886347 1 0 +887839 DOWN 1 +887839 0 0 +887847 UP 1 +887847 1 0 +888811 DOWN 1 +888811 0 0 +924349 UP 1 +924349 1 0 +924708 DOWN 1 +924708 0 0 +936150 UP 6 +936150 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +936282 DOWN 6 +936282 0 0 +~~~ +936306 UP 6 +936306 32 0 +936307 contingency = 1 +936308 trialThresh = 100 +936308 timeMaxOut = 20 +936308 timeElapsed = 1 +936308 totalPokes = 2 +936309 totalRewards = 1 +936309 countPokes1 = 1 +936310 countRewards1 = 1 +936310 leafProbs1 = 80 +936310 countPokes2 = 0 +936324 countRewards2 = 0 +936324 leafProbs2 = 20 +936325 countPokes3 = 0 +936325 countRewards3 = 0 +936326 leafProbs3 = 20 +936326 countPokes4 = 0 +936326 countRewards4 = 0 +936326 leafProbs4 = 50 +936326 countPokes5 = 0 +936327 countRewards5 = 0 +936340 leafProbs5 = 80 +936341 countPokes6 = 1 +936341 countRewards6 = 0 +936342 leafProbs6 = 50 +~~~ +936592 DOWN 6 +936592 0 0 +939891 UP 6 +939891 32 0 +940306 DOWN 6 +940306 0 0 +944398 UP 5 +944398 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944428 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944665 DOWN 5 +944665 0 1024 +944680 UP 5 +944680 16 1024 +~~~ +944694 contingency = 1 +944694 trialThresh = 100 +944695 timeMaxOut = 20 +944695 timeElapsed = 2 +944696 totalPokes = 3 +944696 totalRewards = 2 +944696 countPokes1 = 1 +944696 countRewards1 = 1 +944697 leafProbs1 = 80 +944697 countPokes2 = 0 +944698 countRewards2 = 0 +944711 leafProbs2 = 20 +944712 countPokes3 = 0 +944712 countRewards3 = 0 +944712 leafProbs3 = 20 +944712 countPokes4 = 0 +944713 countRewards4 = 0 +944713 leafProbs4 = 50 +944714 countPokes5 = 1 +944714 countRewards5 = 1 +944714 leafProbs5 = 80 +944728 countPokes6 = 1 +944728 countRewards6 = 0 +944728 leafProbs6 = 50 +~~~ +944729 16 0 +944845 DOWN 5 +944845 0 0 +944862 UP 5 +944862 16 0 +946617 DOWN 5 +946617 0 0 +946632 UP 5 +946632 16 0 +946716 DOWN 5 +946716 0 0 +946732 UP 5 +946732 16 0 +947449 DOWN 5 +947449 0 0 +948283 UP 5 +948283 16 0 +948312 DOWN 5 +948312 0 0 +952025 UP 6 +952025 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952051 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952328 DOWN 6 +952328 0 2048 +952339 UP 6 +952339 32 2048 +952351 32 0 +~~~ +952355 contingency = 1 +952355 trialThresh = 100 +952355 timeMaxOut = 20 +952356 timeElapsed = 2 +952356 totalPokes = 4 +952357 totalRewards = 3 +952357 countPokes1 = 1 +952357 countRewards1 = 1 +952357 leafProbs1 = 80 +952357 countPokes2 = 0 +952358 countRewards2 = 0 +952372 leafProbs2 = 20 +952372 countPokes3 = 0 +952373 countRewards3 = 0 +952373 leafProbs3 = 20 +952373 countPokes4 = 0 +952373 countRewards4 = 0 +952374 leafProbs4 = 50 +952374 countPokes5 = 1 +952375 countRewards5 = 1 +952375 leafProbs5 = 80 +952389 countPokes6 = 2 +952389 countRewards6 = 1 +952389 leafProbs6 = 50 +~~~ +955287 DOWN 6 +955287 0 0 +955304 UP 6 +955304 32 0 +955841 DOWN 6 +955841 0 0 +955870 UP 6 +955870 32 0 +955948 DOWN 6 +955948 0 0 +968742 UP 1 +968742 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +968986 DOWN 1 +968986 0 0 +969009 UP 1 +969009 1 0 +~~~ +969010 contingency = 1 +969011 trialThresh = 100 +969011 timeMaxOut = 20 +969011 timeElapsed = 2 +969011 totalPokes = 5 +969012 totalRewards = 3 +969012 countPokes1 = 2 +969013 countRewards1 = 1 +969013 leafProbs1 = 80 +969013 countPokes2 = 0 +969013 countRewards2 = 0 +969027 leafProbs2 = 20 +969027 countPokes3 = 0 +969028 countRewards3 = 0 +969028 leafProbs3 = 20 +969029 countPokes4 = 0 +969029 countRewards4 = 0 +969029 leafProbs4 = 50 +969029 countPokes5 = 1 +969030 countRewards5 = 1 +969030 leafProbs5 = 80 +969044 countPokes6 = 2 +969044 countRewards6 = 1 +969045 leafProbs6 = 50 +~~~ +969325 DOWN 1 +969325 0 0 +969363 UP 1 +969363 1 0 +969412 DOWN 1 +969412 0 0 +980911 UP 1 +980911 1 0 +981057 DOWN 1 +981057 0 0 +995935 UP 1 +995935 1 0 +995980 DOWN 1 +995980 0 0 +1000551 UP 1 +1000551 1 0 +1000675 DOWN 1 +1000675 0 0 +1000813 UP 1 +1000813 1 0 +1000837 DOWN 1 +1000837 0 0 +1014932 UP 1 +1014932 1 0 +1015485 DOWN 1 +1015485 0 0 +1037157 UP 1 +1037157 1 0 +1039155 DOWN 1 +1039155 0 0 +1045580 UP 2 +1045580 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045606 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045801 DOWN 2 +1045801 0 128 +1045812 UP 2 +1045812 2 128 +~~~ +1045827 contingency = 1 +1045827 trialThresh = 100 +1045828 timeMaxOut = 20 +1045828 timeElapsed = 4 +1045828 totalPokes = 6 +1045828 totalRewards = 4 +1045829 countPokes1 = 2 +1045829 countRewards1 = 1 +1045830 leafProbs1 = 80 +1045830 countPokes2 = 1 +1045830 countRewards2 = 1 +1045844 leafProbs2 = 20 +1045844 countPokes3 = 0 +1045845 countRewards3 = 0 +1045845 leafProbs3 = 20 +1045846 countPokes4 = 0 +1045846 countRewards4 = 0 +1045846 leafProbs4 = 50 +1045846 countPokes5 = 1 +1045846 countRewards5 = 1 +1045861 leafProbs5 = 80 +1045861 countPokes6 = 2 +1045862 countRewards6 = 1 +1045862 leafProbs6 = 50 +~~~ +1045906 2 0 +1046489 DOWN 2 +1046489 0 0 +1046492 UP 2 +1046492 2 0 +1046736 DOWN 2 +1046736 0 0 +1046740 UP 2 +1046740 2 0 +1048862 DOWN 2 +1048862 0 0 +1048885 UP 2 +1048885 2 0 +1049314 DOWN 2 +1049314 0 0 +1049320 UP 2 +1049320 2 0 +1049417 DOWN 2 +1049417 0 0 +1055638 UP 1 +1055638 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1056137 DOWN 1 +1056137 0 0 +~~~ +1056161 contingency = 1 +1056161 trialThresh = 100 +1056161 timeMaxOut = 20 +1056162 timeElapsed = 4 +1056162 totalPokes = 7 +1056163 totalRewards = 4 +1056163 countPokes1 = 3 +1056163 countRewards1 = 1 +1056163 leafProbs1 = 80 +1056164 countPokes2 = 1 +1056164 countRewards2 = 1 +1056178 leafProbs2 = 20 +1056179 countPokes3 = 0 +1056179 countRewards3 = 0 +1056179 leafProbs3 = 20 +1056179 countPokes4 = 0 +1056180 countRewards4 = 0 +1056180 leafProbs4 = 50 +1056181 countPokes5 = 1 +1056181 countRewards5 = 1 +1056195 leafProbs5 = 80 +1056195 countPokes6 = 2 +1056195 countRewards6 = 1 +1056196 leafProbs6 = 50 +~~~ +1075389 UP 1 +1075389 1 0 +1077673 DOWN 1 +1077673 0 0 +1080094 UP 1 +1080094 1 0 +1080643 DOWN 1 +1080643 0 0 +1081045 UP 1 +1081045 1 0 +1081200 DOWN 1 +1081200 0 0 +1083005 UP 1 +1083005 1 0 +1083449 DOWN 1 +1083449 0 0 +1102276 UP 1 +1102276 1 0 +1102327 DOWN 1 +1102327 0 0 +1102345 UP 1 +1102345 1 0 +1102777 DOWN 1 +1102777 0 0 +1102819 UP 1 +1102819 1 0 +1102934 DOWN 1 +1102934 0 0 +1103297 UP 1 +1103297 1 0 +1103387 DOWN 1 +1103387 0 0 +1103417 UP 1 +1103417 1 0 +1103475 DOWN 1 +1103475 0 0 +1103807 UP 1 +1103807 1 0 +1103947 DOWN 1 +1103947 0 0 +1103991 UP 1 +1103991 1 0 +1104026 DOWN 1 +1104026 0 0 +1118606 UP 1 +1118606 1 0 +1118640 DOWN 1 +1118640 0 0 +1131899 UP 6 +1131899 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1132172 DOWN 6 +1132172 0 0 +1132200 UP 6 +1132200 32 0 +~~~ +1132203 contingency = 1 +1132203 trialThresh = 100 +1132204 timeMaxOut = 20 +1132204 timeElapsed = 6 +1132204 totalPokes = 8 +1132204 totalRewards = 4 +1132205 countPokes1 = 3 +1132205 countRewards1 = 1 +1132205 leafProbs1 = 80 +1132206 countPokes2 = 1 +1132206 countRewards2 = 1 +1132220 leafProbs2 = 20 +1132220 countPokes3 = 0 +1132220 countRewards3 = 0 +1132221 leafProbs3 = 20 +1132221 countPokes4 = 0 +1132222 countRewards4 = 0 +1132222 leafProbs4 = 50 +1132222 countPokes5 = 1 +1132222 countRewards5 = 1 +1132237 leafProbs5 = 80 +1132237 countPokes6 = 3 +1132238 countRewards6 = 1 +1132238 leafProbs6 = 50 +~~~ +1132394 DOWN 6 +1132394 0 0 +1132422 UP 6 +1132422 32 0 +1132437 DOWN 6 +1132437 0 0 +1157002 UP 6 +1157002 32 0 +1157518 DOWN 6 +1157518 0 0 +1160471 UP 1 +1160471 1 0 +1160482 DOWN 1 +1160482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1160504 UP 1 +1160504 1 0 +~~~ +1160510 contingency = 1 +1160510 trialThresh = 100 +1160510 timeMaxOut = 20 +1160511 timeElapsed = 7 +1160511 totalPokes = 9 +1160512 totalRewards = 4 +1160512 countPokes1 = 4 +1160512 countRewards1 = 1 +1160512 leafProbs1 = 80 +1160513 countPokes2 = 1 +1160513 countRewards2 = 1 +1160527 leafProbs2 = 20 +1160528 countPokes3 = 0 +1160528 countRewards3 = 0 +1160528 leafProbs3 = 20 +1160528 countPokes4 = 0 +1160528 countRewards4 = 0 +1160529 leafProbs4 = 50 +1160529 countPokes5 = 1 +1160530 countRewards5 = 1 +1160544 leafProbs5 = 80 +1160544 countPokes6 = 3 +1160544 countRewards6 = 1 +1160545 leafProbs6 = 50 +~~~ +1160809 DOWN 1 +1160809 0 0 +1160823 UP 1 +1160823 1 0 +1160943 DOWN 1 +1160943 0 0 + + description: state script log run 2 + task_epochs: 4, +] +2021-01-27 19:27:35,087 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 19:27:36,145 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 19:27:36,147 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 19:27:36,147 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 19:27:36,148 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 19:27:36,148 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 19:27:36,156 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 19:27:36,157 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 19:27:36,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 19:27:36,729 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 19:27:36,730 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 19:27:36,730 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 19:27:36,730 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 19:27:36,731 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 19:27:36,762 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 19:27:36,765 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 19:27:36,766 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 19:27:36,766 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 19:27:39,501 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 19:27:39,503 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 19:30:55,029 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 19:30:55,037 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 19:30:55,038 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 19:30:55,039 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 19:30:55,039 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 19:30:55,376 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 19:31:43,977 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-27 19:34:05,532 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat +2021-01-27 19:35:08,058 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat +2021-01-27 19:36:24,599 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 19:36:24,604 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 19:36:24,605 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 19:36:35,403 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-27 19:50:51,492 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 19:50:51,645 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 19:50:51,646 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 19:50:51,646 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 19:50:51,647 rec_to_binaries.core: INFO Extracting time... +2021-01-27 19:51:23,691 rec_to_binaries.core: INFO Making position directory... +2021-01-27 19:51:23,744 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 19:51:23,745 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 19:51:23,746 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 19:51:23,747 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 19:51:24,172 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-27 19:51:24,475 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 19:51:24,772 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 19:51:24,784 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 19:51:24,784 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 19:51:24,786 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140594188834960 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140594188834320 +Fields: + content: # +#% author: AC +#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 +#% same as branch_always_reward_no_revisit.sc +# +#%initialize constant vars +#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min +#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later +# +#%initialize updating vars +#int rewardPump = 0 %can take on values 7-12 in fxn 1 +#int rewardWell = 0 %can take on values 1-6 in fxn 4 +#int timeElapsed = 0 +#int totalPokes = 0 +#int totalRewards = 0 +#int contingency = -1 +#int count = 0 +#int loopInterval = 250 +#int trialThresh = 0 +#int timeMaxOut = 0 +# +#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being +#int leafProbs2 = 0 +#int leafProbs3 = 0 +#int leafProbs4 = 0 +#int leafProbs5 = 0 +#int leafProbs6 = 0 +# +#int countPokes1 = 0 +#int countPokes2 = 0 +#int countPokes3 = 0 +#int countPokes4 = 0 +#int countPokes5 = 0 +#int countPokes6 = 0 +# +#int countRewards1 = 0 +#int countRewards2 = 0 +#int countRewards3 = 0 +#int countRewards4 = 0 +#int countRewards5 = 0 +#int countRewards6 = 0 +# +#int sessionProbs1 = 0 +#int sessionProbs2 = 0 +#int sessionProbs3 = 0 +#int sessionProbs4 = 0 +#int sessionProbs5 = 0 +#int sessionProbs6 = 0 +# +#%give reward for certain duration after certain delay +#function 1 +# do in delayRewardPeriod +# portout[rewardPump] = 1 %start rewarding with this pump dio +# do in deliverPeriod +# portout[rewardPump] = 0 %stop rewarding with this pump dio +# end +# end +#end; +# +#%keep track of animal behavior and display for experimenter +#function 2 +# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... +# disp(contingency) +# disp(trialThresh) +# disp(timeMaxOut) +# disp(timeElapsed) %length of session thus far +# disp(totalPokes) %how many nonrepeated well visits thus far +# disp(totalRewards) %how many rewards collected thus far +# +# disp(countPokes1) %how many pokes at each well, 6x1 array turned str +# disp(countRewards1) %how many rewards collected per well +# disp(leafProbs1) %experimenter-determined probabilities of reward per well +# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke +# +# disp(countPokes2) +# disp(countRewards2) +# disp(leafProbs2) +# %disp(sessionProbs2) +# +# disp(countPokes3) +# disp(countRewards3) +# disp(leafProbs3) +# %disp(sessionProbs3) +# +# disp(countPokes4) +# disp(countRewards4) +# disp(leafProbs4) +# %disp(sessionProbs4) +# +# disp(countPokes5) +# disp(countRewards5) +# disp(leafProbs5) +# %disp(sessionProbs5) +# +# disp(countPokes6) +# disp(countRewards6) +# disp(leafProbs6) +# %disp(sessionProbs6) +#end; +# +# +#%tell the user that the contingency is complete +#function 3 +# disp('This contingency is over!') +#end; +# +#%end session +#function 4 +# while count < 50 do every loopInterval +# portout[1] = flip +# portout[2] = flip +# portout[3] = flip +# portout[4] = flip +# portout[5] = flip +# portout[6] = flip +# count = count+1 +# then do +# portout[1] = 0 +# portout[2] = 0 +# portout[3] = 0 +# portout[4] = 0 +# portout[5] = 0 +# portout[6] = 0 +# end +# disp('This session is complete!') +#end; +# +# +#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) +#callback portin[1] up +# disp('UP 1') +#end; +# +#callback portin[1] down +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# disp('UP 2') +#end; +# +#callback portin[2] down +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# disp('UP 3') +#end; +# +#callback portin[3] down +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# disp('UP 4') +#end; +# +#callback portin[4] down +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# disp('UP 5') +#end; +# +#callback portin[5] down +# disp('DOWN 5') +#end; +#callback portin[6] up +# disp('UP 6') +#end; +# +#callback portin[6] down +# disp('DOWN 6') +#end; +# +# +# +##author: AC +##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 +##contingency changes occur automatically after either a # of trials or # of minutes +#''' +#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur +#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. +# +#Basic structure: +#if nosepoke at a well +#if the nosepoke!= last nosepoke location +# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p +# trigger(fxn1) #deliver reward, and stop after reward duration +#display updated trial info +#''' +# +##import +#import numpy as np +#import re +#import time +#import math +#from tkinter import * +# +##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) +#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. +#trialThresh = 100 #per contingency +#timeMaxOut = 20 #per contingency, in mins +# +##set up wells and pumps dios +#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info +#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery +# +##variables to keep track of and update during behavior (global) +#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. +#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. +#timeElapsed = 0 #session length thus far in mins +#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. +#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) +#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward +#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 +#runningTrials = False #must say yes to saving data to turn this to true +# +##THIS FXN MUST BE NAMED 'callback'!! +#def callback(line): +# #when an event occurs out on the track, addScQtEvent will call this fxn +# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) +# pokeIn(re.findall(r'\d+',line)) +# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, +# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" +# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) +# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells +# +##when animal nosepokes and breaks beam +#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes +# global currLeaf +# global timeStart +# global leafWells +# global lastLeaf +# global countPokes +# global leafProbs +# global leafPumps +# global contingency +# global countRewards +# global runningTrials +# global timeElapsed +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# if currLeaf == -1: #if it's the first trial in the contingency +# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke +# #if timeElapsed >= timeMaxOut: +# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency +# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency +# #change. sort of defeats the purpose of the floor approach right now. +# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") +# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") +# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") +# timeStart = time.time() #start time for the contingency +# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency +# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") +# countPokes = np.array([0,0,0,0,0,0]) +# countRewards = np.array([0,0,0,0,0,0]) +# for i in range(len(countPokes)): #initialize all as zero +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# for i in range(len(countRewards)): #initialize all as zero +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 +# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump +# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well +# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf +# for i in range(len(countPokes)): +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") +# if np.random.random_sample() < leafProbs[contingency][currLeaf]: +# deliverReward(leafPumps[currLeaf]) +# +##deliver reward, called upon poking in a nonrepeated well +#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps +# global currLeaf +# global rewardPump +# global countRewards +# +# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use +# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward +# countRewards[currLeaf] += 1 #increment num of rewards at this location +# for i in range(len(countRewards)): +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") +# +##update lastLeaf and print out info about the trial if it was at a nonrepeated well +#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells +# global leafWells +# global currLeaf +# global lastLeaf +# global timeElapsed +# global timeStart +# global countPokes +# global countRewards +# global leafProbs +# global contingency +# global runningTrials +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# #if leafWells.index(int(dio[1])) != currLeaf +# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. +# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far +# timeElapsed = round((time.time()-timeStart)/60) +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log +# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn +# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. +# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): +# if contingency < len(leafProbs) - 1: +# currLeaf = -1 #to enable shifting to next contingency +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# timeElapsed = 0 +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# if contingency == len(leafProbs) - 1: +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# runningTrials = False #so no more rewards or anything happen on track +# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session +# +##gui to help remind user that should have saved data +#savingDisp = Tk() +# +#def yesSaving(): +# global runningTrials +# savingDisp.destroy() +# runningTrials=True +# +#def noSaving(): +# savingDisp.destroy() +# +#saveFrame1 = Frame(savingDisp) +#saveFrame1.pack(side = TOP) +# +#saveFrame2 = Frame(savingDisp) +#saveFrame2.pack(side = BOTTOM) +# +#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") +#LS0.pack() +# +#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) +#B1.pack(side = LEFT) +# +#B2 = Button(saveFrame2, text ="No", command = noSaving) +#B2.pack(side = LEFT) +# +#savingDisp.mainloop() +# +# +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94048 UP 1 +94048 1 0 +94058 DOWN 1 +94058 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94112 contingency = 0 +94112 trialThresh = 100 +94112 timeMaxOut = 20 +94112 timeElapsed = 0 +94112 totalPokes = 1 +94113 totalRewards = 0 +94113 countPokes1 = 1 +94114 countRewards1 = 0 +94114 leafProbs1 = 80 +94114 countPokes2 = 0 +94114 countRewards2 = 0 +94128 leafProbs2 = 20 +94129 countPokes3 = 0 +94129 countRewards3 = 0 +94130 leafProbs3 = 20 +94130 countPokes4 = 0 +94130 countRewards4 = 0 +94130 leafProbs4 = 50 +94131 countPokes5 = 0 +94131 countRewards5 = 0 +94132 leafProbs5 = 80 +94132 countPokes6 = 0 +94146 countRewards6 = 0 +94146 leafProbs6 = 50 +~~~ +95370 UP 1 +95370 1 0 +95396 DOWN 1 +95396 0 0 +95404 UP 1 +95404 1 0 +95415 DOWN 1 +95415 0 0 +95449 UP 1 +95449 1 0 +95507 DOWN 1 +95507 0 0 +95526 UP 1 +95526 1 0 +95527 DOWN 1 +95527 0 0 +95534 UP 1 +95534 1 0 +98011 DOWN 1 +98011 0 0 +109846 UP 6 +109846 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +109947 DOWN 6 +109947 0 0 +109954 UP 6 +109954 32 0 +~~~ +109967 contingency = 0 +109967 trialThresh = 100 +109968 timeMaxOut = 20 +109968 timeElapsed = 0 +109969 totalPokes = 2 +109969 totalRewards = 0 +109969 countPokes1 = 1 +109969 countRewards1 = 0 +109969 leafProbs1 = 80 +109970 countPokes2 = 0 +109970 countRewards2 = 0 +109984 leafProbs2 = 20 +109985 countPokes3 = 0 +109985 countRewards3 = 0 +109985 leafProbs3 = 20 +109985 countPokes4 = 0 +109985 countRewards4 = 0 +109986 leafProbs4 = 50 +109986 countPokes5 = 0 +109987 countRewards5 = 0 +109987 leafProbs5 = 80 +110001 countPokes6 = 1 +110001 countRewards6 = 0 +110001 leafProbs6 = 50 +~~~ +111783 DOWN 6 +111783 0 0 +111799 UP 6 +111799 32 0 +112400 DOWN 6 +112399 0 0 +115161 UP 5 +115161 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115185 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115485 16 0 +115577 DOWN 5 +115577 0 0 +~~~ +115603 contingency = 0 +115603 trialThresh = 100 +115604 timeMaxOut = 20 +115604 timeElapsed = 1 +115605 totalPokes = 3 +115605 totalRewards = 1 +115605 countPokes1 = 1 +115605 countRewards1 = 0 +115606 leafProbs1 = 80 +115606 countPokes2 = 0 +115607 countRewards2 = 0 +115620 leafProbs2 = 20 +115621 countPokes3 = 0 +115621 countRewards3 = 0 +115621 leafProbs3 = 20 +115621 countPokes4 = 0 +115622 countRewards4 = 0 +115622 leafProbs4 = 50 +115623 countPokes5 = 1 +115623 countRewards5 = 1 +115623 leafProbs5 = 80 +115637 countPokes6 = 1 +115637 countRewards6 = 0 +115637 leafProbs6 = 50 +~~~ +115638 UP 5 +115638 16 0 +118235 DOWN 5 +118235 0 0 +118252 UP 5 +118252 16 0 +118676 DOWN 5 +118676 0 0 +124414 UP 4 +124414 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124444 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124564 DOWN 4 +124564 0 512 +124571 UP 4 +124571 8 512 +~~~ +124590 contingency = 0 +124590 trialThresh = 100 +124591 timeMaxOut = 20 +124591 timeElapsed = 1 +124591 totalPokes = 4 +124591 totalRewards = 2 +124592 countPokes1 = 1 +124592 countRewards1 = 0 +124592 leafProbs1 = 80 +124593 countPokes2 = 0 +124593 countRewards2 = 0 +124607 leafProbs2 = 20 +124607 countPokes3 = 0 +124607 countRewards3 = 0 +124608 leafProbs3 = 20 +124608 countPokes4 = 1 +124609 countRewards4 = 1 +124609 leafProbs4 = 50 +124609 countPokes5 = 1 +124609 countRewards5 = 1 +124609 leafProbs5 = 80 +124623 countPokes6 = 1 +124623 countRewards6 = 0 +124624 leafProbs6 = 50 +~~~ +124744 8 0 +127285 DOWN 4 +127285 0 0 +128916 UP 3 +128916 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +131495 DOWN 3 +131495 0 0 +131506 UP 3 +131506 4 0 +~~~ +131522 contingency = 0 +131523 trialThresh = 100 +131523 timeMaxOut = 20 +131523 timeElapsed = 1 +131523 totalPokes = 5 +131524 totalRewards = 2 +131524 countPokes1 = 1 +131525 countRewards1 = 0 +131525 leafProbs1 = 80 +131525 countPokes2 = 0 +131525 countRewards2 = 0 +131539 leafProbs2 = 20 +131539 countPokes3 = 1 +131540 countRewards3 = 0 +131540 leafProbs3 = 20 +131541 countPokes4 = 1 +131541 countRewards4 = 1 +131541 leafProbs4 = 50 +131541 countPokes5 = 1 +131542 countRewards5 = 1 +131542 leafProbs5 = 80 +131556 countPokes6 = 1 +131556 countRewards6 = 0 +131557 leafProbs6 = 50 +~~~ +131829 DOWN 3 +131829 0 0 +131849 UP 3 +131849 4 0 +131922 DOWN 3 +131922 0 0 +134163 UP 4 +134163 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +134675 DOWN 4 +134675 0 0 +~~~ +134693 contingency = 0 +134693 trialThresh = 100 +134693 timeMaxOut = 20 +134694 timeElapsed = 1 +134694 totalPokes = 6 +134695 totalRewards = 2 +134695 countPokes1 = 1 +134695 countRewards1 = 0 +134695 leafProbs1 = 80 +134696 countPokes2 = 0 +134696 countRewards2 = 0 +134710 leafProbs2 = 20 +134710 countPokes3 = 1 +134711 countRewards3 = 0 +134711 leafProbs3 = 20 +134711 countPokes4 = 2 +134711 countRewards4 = 1 +134712 leafProbs4 = 50 +134712 countPokes5 = 1 +134713 countRewards5 = 1 +134713 leafProbs5 = 80 +134727 countPokes6 = 1 +134727 countRewards6 = 0 +134727 leafProbs6 = 50 +~~~ +136327 UP 3 +136327 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +137036 DOWN 3 +137036 0 0 +~~~ +137065 contingency = 0 +137065 trialThresh = 100 +137065 timeMaxOut = 20 +137066 timeElapsed = 1 +137066 totalPokes = 7 +137067 totalRewards = 2 +137067 countPokes1 = 1 +137067 countRewards1 = 0 +137067 leafProbs1 = 80 +137068 countPokes2 = 0 +137068 countRewards2 = 0 +137082 leafProbs2 = 20 +137082 countPokes3 = 2 +137083 countRewards3 = 0 +137083 leafProbs3 = 20 +137083 countPokes4 = 2 +137083 countRewards4 = 1 +137084 leafProbs4 = 50 +137084 countPokes5 = 1 +137085 countRewards5 = 1 +137085 leafProbs5 = 80 +137099 countPokes6 = 1 +137099 countRewards6 = 0 +137099 leafProbs6 = 50 +~~~ +143600 UP 5 +143600 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143854 DOWN 5 +143854 0 0 +~~~ +143877 contingency = 0 +143877 trialThresh = 100 +143877 timeMaxOut = 20 +143878 timeElapsed = 1 +143878 totalPokes = 8 +143879 totalRewards = 2 +143879 countPokes1 = 1 +143879 countRewards1 = 0 +143879 leafProbs1 = 80 +143880 countPokes2 = 0 +143880 countRewards2 = 0 +143894 leafProbs2 = 20 +143894 countPokes3 = 2 +143895 countRewards3 = 0 +143895 leafProbs3 = 20 +143895 countPokes4 = 2 +143895 countRewards4 = 1 +143896 leafProbs4 = 50 +143896 countPokes5 = 2 +143897 countRewards5 = 1 +143897 leafProbs5 = 80 +143911 countPokes6 = 1 +143911 countRewards6 = 0 +143911 leafProbs6 = 50 +~~~ +143911 UP 5 +143911 16 0 +144383 DOWN 5 +144383 0 0 +146591 UP 6 +146591 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146617 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146917 32 0 +147061 DOWN 6 +147061 0 0 +~~~ +147089 contingency = 0 +147090 trialThresh = 100 +147090 timeMaxOut = 20 +147091 timeElapsed = 1 +147091 totalPokes = 9 +147091 totalRewards = 3 +147091 countPokes1 = 1 +147092 countRewards1 = 0 +147092 leafProbs1 = 80 +147093 countPokes2 = 0 +147093 countRewards2 = 0 +147107 leafProbs2 = 20 +147107 countPokes3 = 2 +147107 countRewards3 = 0 +147107 leafProbs3 = 20 +147108 countPokes4 = 2 +147108 countRewards4 = 1 +147109 leafProbs4 = 50 +147109 countPokes5 = 2 +147109 countRewards5 = 1 +147109 leafProbs5 = 80 +147123 countPokes6 = 2 +147123 countRewards6 = 1 +147124 leafProbs6 = 50 +~~~ +147124 UP 6 +147124 32 0 +147150 DOWN 6 +147150 0 0 +147157 UP 6 +147157 32 0 +149454 DOWN 6 +149454 0 0 +160370 UP 1 +160370 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160397 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160522 DOWN 1 +160522 0 64 +160533 UP 1 +160533 1 64 +~~~ +160544 contingency = 0 +160544 trialThresh = 100 +160544 timeMaxOut = 20 +160545 timeElapsed = 2 +160545 totalPokes = 10 +160546 totalRewards = 4 +160546 countPokes1 = 2 +160546 countRewards1 = 1 +160546 leafProbs1 = 80 +160547 countPokes2 = 0 +160547 countRewards2 = 0 +160561 leafProbs2 = 20 +160561 countPokes3 = 2 +160562 countRewards3 = 0 +160562 leafProbs3 = 20 +160562 countPokes4 = 2 +160562 countRewards4 = 1 +160563 leafProbs4 = 50 +160563 countPokes5 = 2 +160564 countRewards5 = 1 +160564 leafProbs5 = 80 +160578 countPokes6 = 2 +160578 countRewards6 = 1 +160578 leafProbs6 = 50 +~~~ +160697 1 0 +163834 DOWN 1 +163834 0 0 +166987 UP 2 +166987 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +167144 DOWN 2 +167144 0 0 +167149 UP 2 +167149 2 0 +~~~ +167168 contingency = 0 +167168 trialThresh = 100 +167169 timeMaxOut = 20 +167169 timeElapsed = 2 +167170 totalPokes = 11 +167170 totalRewards = 4 +167170 countPokes1 = 2 +167170 countRewards1 = 1 +167171 leafProbs1 = 80 +167171 countPokes2 = 1 +167172 countRewards2 = 0 +167186 leafProbs2 = 20 +167186 countPokes3 = 2 +167186 countRewards3 = 0 +167186 leafProbs3 = 20 +167186 countPokes4 = 2 +167187 countRewards4 = 1 +167187 leafProbs4 = 50 +167188 countPokes5 = 2 +167188 countRewards5 = 1 +167188 leafProbs5 = 80 +167202 countPokes6 = 2 +167202 countRewards6 = 1 +167202 leafProbs6 = 50 +~~~ +169470 DOWN 2 +169470 0 0 +169499 UP 2 +169499 2 0 +169914 DOWN 2 +169914 0 0 +178210 UP 1 +178210 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178233 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178533 1 0 +181346 DOWN 1 +181346 0 0 +~~~ +181372 contingency = 0 +181372 trialThresh = 100 +181372 timeMaxOut = 20 +181373 timeElapsed = 2 +181373 totalPokes = 12 +181374 totalRewards = 5 +181374 countPokes1 = 3 +181374 countRewards1 = 2 +181374 leafProbs1 = 80 +181375 countPokes2 = 1 +181375 countRewards2 = 0 +181389 leafProbs2 = 20 +181389 countPokes3 = 2 +181390 countRewards3 = 0 +181390 leafProbs3 = 20 +181390 countPokes4 = 2 +181390 countRewards4 = 1 +181391 leafProbs4 = 50 +181391 countPokes5 = 2 +181392 countRewards5 = 1 +181392 leafProbs5 = 80 +181406 countPokes6 = 2 +181406 countRewards6 = 1 +181406 leafProbs6 = 50 +~~~ +184630 UP 2 +184630 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184804 DOWN 2 +184804 0 0 +184815 UP 2 +184815 2 0 +~~~ +184832 contingency = 0 +184832 trialThresh = 100 +184832 timeMaxOut = 20 +184832 timeElapsed = 2 +184833 totalPokes = 13 +184833 totalRewards = 5 +184834 countPokes1 = 3 +184834 countRewards1 = 2 +184834 leafProbs1 = 80 +184834 countPokes2 = 2 +184835 countRewards2 = 0 +184849 leafProbs2 = 20 +184849 countPokes3 = 2 +184850 countRewards3 = 0 +184850 leafProbs3 = 20 +184850 countPokes4 = 2 +184850 countRewards4 = 1 +184850 leafProbs4 = 50 +184851 countPokes5 = 2 +184851 countRewards5 = 1 +184852 leafProbs5 = 80 +184865 countPokes6 = 2 +184866 countRewards6 = 1 +184866 leafProbs6 = 50 +~~~ +185326 DOWN 2 +185326 0 0 +185333 UP 2 +185333 2 0 +185995 DOWN 2 +185995 0 0 +189960 UP 1 +189960 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190078 DOWN 1 +190078 0 0 +190080 UP 1 +190080 1 0 +~~~ +190098 contingency = 0 +190099 trialThresh = 100 +190099 timeMaxOut = 20 +190100 timeElapsed = 2 +190100 totalPokes = 14 +190100 totalRewards = 5 +190100 countPokes1 = 4 +190101 countRewards1 = 2 +190101 leafProbs1 = 80 +190101 countPokes2 = 2 +190102 countRewards2 = 0 +190116 leafProbs2 = 20 +190116 countPokes3 = 2 +190116 countRewards3 = 0 +190116 leafProbs3 = 20 +190117 countPokes4 = 2 +190117 countRewards4 = 1 +190118 leafProbs4 = 50 +190118 countPokes5 = 2 +190118 countRewards5 = 1 +190118 leafProbs5 = 80 +190132 countPokes6 = 2 +190132 countRewards6 = 1 +190132 leafProbs6 = 50 +~~~ +190133 DOWN 1 +190133 0 0 +190160 UP 1 +190160 1 0 +190248 DOWN 1 +190248 0 0 +190276 UP 1 +190276 1 0 +190356 DOWN 1 +190356 0 0 +190391 UP 1 +190391 1 0 +190481 DOWN 1 +190481 0 0 +190555 UP 1 +190555 1 0 +190570 DOWN 1 +190570 0 0 +190849 UP 1 +190849 1 0 +190908 DOWN 1 +190908 0 0 +193661 UP 2 +193661 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +193935 DOWN 2 +193935 0 0 +193938 UP 2 +193938 2 0 +~~~ +193959 contingency = 0 +193959 trialThresh = 100 +193960 timeMaxOut = 20 +193960 timeElapsed = 2 +193960 totalPokes = 15 +193960 totalRewards = 5 +193961 countPokes1 = 4 +193961 countRewards1 = 2 +193962 leafProbs1 = 80 +193962 countPokes2 = 3 +193962 countRewards2 = 0 +193976 leafProbs2 = 20 +193976 countPokes3 = 2 +193977 countRewards3 = 0 +193977 leafProbs3 = 20 +193977 countPokes4 = 2 +193978 countRewards4 = 1 +193978 leafProbs4 = 50 +193978 countPokes5 = 2 +193978 countRewards5 = 1 +193979 leafProbs5 = 80 +193992 countPokes6 = 2 +193993 countRewards6 = 1 +193993 leafProbs6 = 50 +~~~ +194100 DOWN 2 +194100 0 0 +196098 UP 1 +196098 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196123 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196423 1 0 +196514 DOWN 1 +196514 0 0 +196516 UP 1 +196516 1 0 +~~~ +196532 contingency = 0 +196532 trialThresh = 100 +196532 timeMaxOut = 20 +196533 timeElapsed = 3 +196533 totalPokes = 16 +196534 totalRewards = 6 +196534 countPokes1 = 5 +196534 countRewards1 = 3 +196534 leafProbs1 = 80 +196534 countPokes2 = 3 +196535 countRewards2 = 0 +196549 leafProbs2 = 20 +196549 countPokes3 = 2 +196550 countRewards3 = 0 +196550 leafProbs3 = 20 +196550 countPokes4 = 2 +196550 countRewards4 = 1 +196551 leafProbs4 = 50 +196551 countPokes5 = 2 +196551 countRewards5 = 1 +196552 leafProbs5 = 80 +196565 countPokes6 = 2 +196566 countRewards6 = 1 +196566 leafProbs6 = 50 +~~~ +198509 DOWN 1 +198509 0 0 +202035 UP 1 +202035 1 0 +202194 DOWN 1 +202194 0 0 +213522 UP 6 +213522 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +213903 DOWN 6 +213903 0 0 +213919 UP 6 +213919 32 0 +~~~ +213923 contingency = 0 +213923 trialThresh = 100 +213924 timeMaxOut = 20 +213924 timeElapsed = 3 +213925 totalPokes = 17 +213925 totalRewards = 6 +213925 countPokes1 = 5 +213925 countRewards1 = 3 +213926 leafProbs1 = 80 +213926 countPokes2 = 3 +213927 countRewards2 = 0 +213940 leafProbs2 = 20 +213941 countPokes3 = 2 +213941 countRewards3 = 0 +213941 leafProbs3 = 20 +213941 countPokes4 = 2 +213942 countRewards4 = 1 +213942 leafProbs4 = 50 +213943 countPokes5 = 2 +213943 countRewards5 = 1 +213943 leafProbs5 = 80 +213957 countPokes6 = 3 +213957 countRewards6 = 1 +213957 leafProbs6 = 50 +~~~ +213962 DOWN 6 +213962 0 0 +218705 UP 5 +218705 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +218741 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +219041 16 0 +220419 DOWN 5 +220419 0 0 +220425 UP 5 +220425 16 0 +~~~ +220436 contingency = 0 +220436 trialThresh = 100 +220437 timeMaxOut = 20 +220437 timeElapsed = 3 +220437 totalPokes = 18 +220437 totalRewards = 7 +220437 countPokes1 = 5 +220438 countRewards1 = 3 +220438 leafProbs1 = 80 +220439 countPokes2 = 3 +220439 countRewards2 = 0 +220453 leafProbs2 = 20 +220453 countPokes3 = 2 +220453 countRewards3 = 0 +220454 leafProbs3 = 20 +220454 countPokes4 = 2 +220455 countRewards4 = 1 +220455 leafProbs4 = 50 +220455 countPokes5 = 3 +220455 countRewards5 = 2 +220455 leafProbs5 = 80 +220469 countPokes6 = 3 +220469 countRewards6 = 1 +220470 leafProbs6 = 50 +~~~ +221126 DOWN 5 +221126 0 0 +221145 UP 5 +221145 16 0 +221557 DOWN 5 +221557 0 0 +225579 UP 6 +225579 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +225814 DOWN 6 +225814 0 0 +225835 UP 6 +225835 32 0 +~~~ +225843 contingency = 0 +225843 trialThresh = 100 +225843 timeMaxOut = 20 +225844 timeElapsed = 3 +225844 totalPokes = 19 +225845 totalRewards = 7 +225845 countPokes1 = 5 +225845 countRewards1 = 3 +225845 leafProbs1 = 80 +225846 countPokes2 = 3 +225846 countRewards2 = 0 +225860 leafProbs2 = 20 +225860 countPokes3 = 2 +225861 countRewards3 = 0 +225861 leafProbs3 = 20 +225861 countPokes4 = 2 +225861 countRewards4 = 1 +225862 leafProbs4 = 50 +225862 countPokes5 = 3 +225863 countRewards5 = 2 +225863 leafProbs5 = 80 +225877 countPokes6 = 4 +225877 countRewards6 = 1 +225877 leafProbs6 = 50 +~~~ +226005 DOWN 6 +226005 0 0 +226079 UP 6 +226079 32 0 +226211 DOWN 6 +226211 0 0 +226241 UP 6 +226241 32 0 +226290 DOWN 6 +226290 0 0 +226389 UP 6 +226389 32 0 +226584 DOWN 6 +226584 0 0 +226651 UP 6 +226651 32 0 +226788 DOWN 6 +226788 0 0 +230377 UP 5 +230377 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230409 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230619 DOWN 5 +230619 0 1024 +230632 UP 5 +230632 16 1024 +~~~ +230647 contingency = 0 +230647 trialThresh = 100 +230647 timeMaxOut = 20 +230647 timeElapsed = 3 +230648 totalPokes = 20 +230648 totalRewards = 8 +230649 countPokes1 = 5 +230649 countRewards1 = 3 +230649 leafProbs1 = 80 +230649 countPokes2 = 3 +230650 countRewards2 = 0 +230663 leafProbs2 = 20 +230664 countPokes3 = 2 +230664 countRewards3 = 0 +230665 leafProbs3 = 20 +230665 countPokes4 = 2 +230665 countRewards4 = 1 +230665 leafProbs4 = 50 +230666 countPokes5 = 4 +230666 countRewards5 = 3 +230667 leafProbs5 = 80 +230680 countPokes6 = 4 +230681 countRewards6 = 1 +230681 leafProbs6 = 50 +~~~ +230708 16 0 +232797 DOWN 5 +232796 0 0 +232802 UP 5 +232802 16 0 +232900 DOWN 5 +232900 0 0 +232928 UP 5 +232928 16 0 +233233 DOWN 5 +233233 0 0 +233256 UP 5 +233256 16 0 +233319 DOWN 5 +233319 0 0 +235867 UP 6 +235867 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +235898 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +236198 32 0 +238601 DOWN 6 +238601 0 0 +238614 UP 6 +238614 32 0 +~~~ +238631 contingency = 0 +238631 trialThresh = 100 +238631 timeMaxOut = 20 +238631 timeElapsed = 4 +238632 totalPokes = 21 +238632 totalRewards = 9 +238632 countPokes1 = 5 +238633 countRewards1 = 3 +238633 leafProbs1 = 80 +238633 countPokes2 = 3 +238633 countRewards2 = 0 +238647 leafProbs2 = 20 +238648 countPokes3 = 2 +238648 countRewards3 = 0 +238649 leafProbs3 = 20 +238649 countPokes4 = 2 +238649 countRewards4 = 1 +238649 leafProbs4 = 50 +238650 countPokes5 = 4 +238650 countRewards5 = 3 +238650 leafProbs5 = 80 +238664 countPokes6 = 5 +238664 countRewards6 = 2 +238665 leafProbs6 = 50 +~~~ +239049 DOWN 6 +239049 0 0 +250071 UP 1 +250071 1 0 +~~~ +~~~ +250097 DOWN 1 +250097 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250103 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250129 UP 1 +250129 1 64 +~~~ +250136 contingency = 0 +250137 trialThresh = 100 +250137 timeMaxOut = 20 +250137 timeElapsed = 4 +250137 totalPokes = 22 +250137 totalRewards = 10 +250138 countPokes1 = 6 +250138 countRewards1 = 4 +250139 leafProbs1 = 80 +250139 countPokes2 = 3 +250139 countRewards2 = 0 +250153 leafProbs2 = 20 +250153 countPokes3 = 2 +250154 countRewards3 = 0 +250154 leafProbs3 = 20 +250155 countPokes4 = 2 +250155 countRewards4 = 1 +250155 leafProbs4 = 50 +250155 countPokes5 = 4 +250156 countRewards5 = 3 +250156 leafProbs5 = 80 +250170 countPokes6 = 5 +250170 countRewards6 = 2 +250170 leafProbs6 = 50 +~~~ +250171 DOWN 1 +250171 0 64 +250204 UP 1 +250204 1 64 +250248 DOWN 1 +250248 0 64 +250280 UP 1 +250280 1 64 +250403 1 0 +250446 DOWN 1 +250446 0 0 +250455 UP 1 +250455 1 0 +253556 DOWN 1 +253556 0 0 +256084 UP 2 +256084 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256264 DOWN 2 +256264 0 0 +256267 UP 2 +256267 2 0 +~~~ +256282 contingency = 0 +256282 trialThresh = 100 +256282 timeMaxOut = 20 +256282 timeElapsed = 4 +256282 totalPokes = 23 +256283 totalRewards = 10 +256283 countPokes1 = 6 +256284 countRewards1 = 4 +256284 leafProbs1 = 80 +256284 countPokes2 = 4 +256284 countRewards2 = 0 +256298 leafProbs2 = 20 +256299 countPokes3 = 2 +256299 countRewards3 = 0 +256300 leafProbs3 = 20 +256300 countPokes4 = 2 +256300 countRewards4 = 1 +256300 leafProbs4 = 50 +256301 countPokes5 = 4 +256301 countRewards5 = 3 +256302 leafProbs5 = 80 +256315 countPokes6 = 5 +256316 countRewards6 = 2 +256316 leafProbs6 = 50 +~~~ +256546 DOWN 2 +256546 0 0 +256572 UP 2 +256572 2 0 +256748 DOWN 2 +256748 0 0 +258880 UP 1 +258880 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +258914 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +259214 1 0 +261848 DOWN 1 +261848 0 0 +~~~ +261868 contingency = 0 +261868 trialThresh = 100 +261868 timeMaxOut = 20 +261868 timeElapsed = 4 +261869 totalPokes = 24 +261869 totalRewards = 11 +261870 countPokes1 = 7 +261870 countRewards1 = 5 +261870 leafProbs1 = 80 +261870 countPokes2 = 4 +261870 countRewards2 = 0 +261884 leafProbs2 = 20 +261885 countPokes3 = 2 +261885 countRewards3 = 0 +261886 leafProbs3 = 20 +261886 countPokes4 = 2 +261886 countRewards4 = 1 +261886 leafProbs4 = 50 +261887 countPokes5 = 4 +261887 countRewards5 = 3 +261888 leafProbs5 = 80 +261901 countPokes6 = 5 +261902 countRewards6 = 2 +261902 leafProbs6 = 50 +~~~ +267560 UP 2 +267560 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +267886 DOWN 2 +267886 0 0 +267900 UP 2 +267900 2 0 +~~~ +267911 contingency = 0 +267911 trialThresh = 100 +267912 timeMaxOut = 20 +267912 timeElapsed = 4 +267912 totalPokes = 25 +267912 totalRewards = 11 +267913 countPokes1 = 7 +267913 countRewards1 = 5 +267914 leafProbs1 = 80 +267914 countPokes2 = 5 +267914 countRewards2 = 0 +267928 leafProbs2 = 20 +267928 countPokes3 = 2 +267928 countRewards3 = 0 +267929 leafProbs3 = 20 +267929 countPokes4 = 2 +267930 countRewards4 = 1 +267930 leafProbs4 = 50 +267930 countPokes5 = 4 +267930 countRewards5 = 3 +267931 leafProbs5 = 80 +267944 countPokes6 = 5 +267945 countRewards6 = 2 +267945 leafProbs6 = 50 +~~~ +267946 DOWN 2 +267946 0 0 +272470 UP 2 +272470 2 0 +272489 DOWN 2 +272489 0 0 +272498 UP 2 +272498 2 0 +272506 DOWN 2 +272506 0 0 +275002 UP 1 +275002 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275036 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275336 1 0 +277515 DOWN 1 +277515 0 0 +277520 UP 1 +277520 1 0 +~~~ +277532 contingency = 0 +277533 trialThresh = 100 +277533 timeMaxOut = 20 +277534 timeElapsed = 5 +277534 totalPokes = 26 +277534 totalRewards = 12 +277534 countPokes1 = 8 +277534 countRewards1 = 6 +277535 leafProbs1 = 80 +277535 countPokes2 = 5 +277536 countRewards2 = 0 +277550 leafProbs2 = 20 +277550 countPokes3 = 2 +277550 countRewards3 = 0 +277550 leafProbs3 = 20 +277551 countPokes4 = 2 +277551 countRewards4 = 1 +277552 leafProbs4 = 50 +277552 countPokes5 = 4 +277552 countRewards5 = 3 +277552 leafProbs5 = 80 +277566 countPokes6 = 5 +277566 countRewards6 = 2 +277566 leafProbs6 = 50 +~~~ +277832 DOWN 1 +277832 0 0 +284331 UP 1 +284331 1 0 +284497 DOWN 1 +284497 0 0 +290436 UP 2 +290436 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +291663 DOWN 2 +291663 0 0 +~~~ +291685 contingency = 0 +291686 trialThresh = 100 +291686 timeMaxOut = 20 +291686 timeElapsed = 5 +291686 totalPokes = 27 +291687 totalRewards = 12 +291687 countPokes1 = 8 +291688 countRewards1 = 6 +291688 leafProbs1 = 80 +291688 countPokes2 = 6 +291688 countRewards2 = 0 +291702 leafProbs2 = 20 +291702 countPokes3 = 2 +291703 countRewards3 = 0 +291703 leafProbs3 = 20 +291704 countPokes4 = 2 +291704 countRewards4 = 1 +291704 leafProbs4 = 50 +291704 countPokes5 = 4 +291705 countRewards5 = 3 +291705 leafProbs5 = 80 +291719 countPokes6 = 5 +291719 countRewards6 = 2 +291720 leafProbs6 = 50 +~~~ +298521 UP 1 +298521 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298560 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298859 1 0 +301302 DOWN 1 +301302 0 0 +301320 UP 1 +301320 1 0 +~~~ +301324 contingency = 0 +301324 trialThresh = 100 +301324 timeMaxOut = 20 +301324 timeElapsed = 5 +301325 totalPokes = 28 +301325 totalRewards = 13 +301326 countPokes1 = 9 +301326 countRewards1 = 7 +301326 leafProbs1 = 80 +301326 countPokes2 = 6 +301327 countRewards2 = 0 +301341 leafProbs2 = 20 +301341 countPokes3 = 2 +301342 countRewards3 = 0 +301342 leafProbs3 = 20 +301342 countPokes4 = 2 +301342 countRewards4 = 1 +301343 leafProbs4 = 50 +301343 countPokes5 = 4 +301343 countRewards5 = 3 +301344 leafProbs5 = 80 +301357 countPokes6 = 5 +301358 countRewards6 = 2 +301358 leafProbs6 = 50 +~~~ +301818 DOWN 1 +301818 0 0 +308157 UP 2 +308157 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +308409 DOWN 2 +308409 0 0 +~~~ +308433 contingency = 0 +308433 trialThresh = 100 +308433 timeMaxOut = 20 +308434 timeElapsed = 5 +308434 totalPokes = 29 +308435 totalRewards = 13 +308435 countPokes1 = 9 +308435 countRewards1 = 7 +308435 leafProbs1 = 80 +308436 countPokes2 = 7 +308436 countRewards2 = 0 +308450 leafProbs2 = 20 +308451 countPokes3 = 2 +308451 countRewards3 = 0 +308451 leafProbs3 = 20 +308451 countPokes4 = 2 +308452 countRewards4 = 1 +308452 leafProbs4 = 50 +308452 countPokes5 = 4 +308453 countRewards5 = 3 +308453 leafProbs5 = 80 +308467 countPokes6 = 5 +308467 countRewards6 = 2 +308467 leafProbs6 = 50 +~~~ +311726 UP 1 +311726 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +312211 DOWN 1 +312211 0 0 +~~~ +312317 contingency = 0 +312317 trialThresh = 100 +312318 timeMaxOut = 20 +312318 timeElapsed = 5 +312319 totalPokes = 30 +312319 totalRewards = 13 +312319 countPokes1 = 10 +312319 countRewards1 = 7 +312320 leafProbs1 = 80 +312320 countPokes2 = 7 +312321 countRewards2 = 0 +312335 leafProbs2 = 20 +312335 countPokes3 = 2 +312335 countRewards3 = 0 +312335 leafProbs3 = 20 +312335 countPokes4 = 2 +312336 countRewards4 = 1 +312336 leafProbs4 = 50 +312337 countPokes5 = 4 +312337 countRewards5 = 3 +312337 leafProbs5 = 80 +312351 countPokes6 = 5 +312351 countRewards6 = 2 +312351 leafProbs6 = 50 +~~~ +329565 UP 1 +329565 1 0 +329578 DOWN 1 +329578 0 0 +329607 UP 1 +329607 1 0 +329615 DOWN 1 +329615 0 0 +336849 UP 6 +336849 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +337375 DOWN 6 +337375 0 0 +~~~ +337402 contingency = 0 +337403 trialThresh = 100 +337403 timeMaxOut = 20 +337403 timeElapsed = 6 +337403 totalPokes = 31 +337404 totalRewards = 13 +337404 countPokes1 = 10 +337405 countRewards1 = 7 +337405 leafProbs1 = 80 +337405 countPokes2 = 7 +337405 countRewards2 = 0 +337419 leafProbs2 = 20 +337419 countPokes3 = 2 +337420 countRewards3 = 0 +337420 leafProbs3 = 20 +337421 countPokes4 = 2 +337421 countRewards4 = 1 +337421 leafProbs4 = 50 +337421 countPokes5 = 4 +337422 countRewards5 = 3 +337422 leafProbs5 = 80 +337436 countPokes6 = 6 +337436 countRewards6 = 2 +337437 leafProbs6 = 50 +~~~ +339595 UP 6 +339595 32 0 +339614 DOWN 6 +339614 0 0 +339917 UP 6 +339917 32 0 +340039 DOWN 6 +340039 0 0 +340062 UP 6 +340062 32 0 +341221 DOWN 6 +341221 0 0 +348806 UP 6 +348806 32 0 +349029 DOWN 6 +349029 0 0 +370690 UP 3 +370690 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +371347 DOWN 3 +371347 0 0 +~~~ +371366 contingency = 0 +371367 trialThresh = 100 +371367 timeMaxOut = 20 +371368 timeElapsed = 7 +371368 totalPokes = 32 +371368 totalRewards = 13 +371368 countPokes1 = 10 +371369 countRewards1 = 7 +371369 leafProbs1 = 80 +371370 countPokes2 = 7 +371370 countRewards2 = 0 +371384 leafProbs2 = 20 +371384 countPokes3 = 3 +371384 countRewards3 = 0 +371385 leafProbs3 = 20 +371385 countPokes4 = 2 +371386 countRewards4 = 1 +371386 leafProbs4 = 50 +371386 countPokes5 = 4 +371386 countRewards5 = 3 +371386 leafProbs5 = 80 +371400 countPokes6 = 6 +371400 countRewards6 = 2 +371401 leafProbs6 = 50 +~~~ +371401 UP 3 +371401 4 0 +371462 DOWN 3 +371462 0 0 +376503 UP 4 +376503 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376533 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376832 8 0 +379496 DOWN 4 +379496 0 0 +~~~ +379512 contingency = 0 +379512 trialThresh = 100 +379512 timeMaxOut = 20 +379512 timeElapsed = 7 +379512 totalPokes = 33 +379513 totalRewards = 14 +379513 countPokes1 = 10 +379514 countRewards1 = 7 +379514 leafProbs1 = 80 +379514 countPokes2 = 7 +379514 countRewards2 = 0 +379528 leafProbs2 = 20 +379529 countPokes3 = 3 +379529 countRewards3 = 0 +379530 leafProbs3 = 20 +379530 countPokes4 = 3 +379530 countRewards4 = 2 +379530 leafProbs4 = 50 +379531 countPokes5 = 4 +379531 countRewards5 = 3 +379532 leafProbs5 = 80 +379545 countPokes6 = 6 +379546 countRewards6 = 2 +379546 leafProbs6 = 50 +~~~ +379546 UP 4 +379546 8 0 +380063 DOWN 4 +380063 0 0 +380421 UP 4 +380421 8 0 +382496 DOWN 4 +382496 0 0 +387918 UP 3 +387918 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +388412 DOWN 3 +388412 0 0 +~~~ +388430 contingency = 0 +388430 trialThresh = 100 +388430 timeMaxOut = 20 +388431 timeElapsed = 7 +388431 totalPokes = 34 +388432 totalRewards = 14 +388432 countPokes1 = 10 +388432 countRewards1 = 7 +388432 leafProbs1 = 80 +388433 countPokes2 = 7 +388433 countRewards2 = 0 +388447 leafProbs2 = 20 +388448 countPokes3 = 4 +388448 countRewards3 = 0 +388448 leafProbs3 = 20 +388448 countPokes4 = 3 +388448 countRewards4 = 2 +388449 leafProbs4 = 50 +388449 countPokes5 = 4 +388450 countRewards5 = 3 +388450 leafProbs5 = 80 +388464 countPokes6 = 6 +388464 countRewards6 = 2 +388464 leafProbs6 = 50 +~~~ +390881 UP 4 +390881 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +390913 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391213 8 0 +393870 DOWN 4 +393870 0 0 +~~~ +393894 contingency = 0 +393894 trialThresh = 100 +393894 timeMaxOut = 20 +393894 timeElapsed = 7 +393895 totalPokes = 35 +393895 totalRewards = 15 +393895 countPokes1 = 10 +393896 countRewards1 = 7 +393896 leafProbs1 = 80 +393896 countPokes2 = 7 +393896 countRewards2 = 0 +393910 leafProbs2 = 20 +393911 countPokes3 = 4 +393911 countRewards3 = 0 +393912 leafProbs3 = 20 +393912 countPokes4 = 4 +393912 countRewards4 = 3 +393912 leafProbs4 = 50 +393913 countPokes5 = 4 +393913 countRewards5 = 3 +393914 leafProbs5 = 80 +393927 countPokes6 = 6 +393928 countRewards6 = 2 +393928 leafProbs6 = 50 +~~~ +396968 UP 3 +396968 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +396991 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +397291 4 0 +397330 DOWN 3 +397330 0 0 +397342 UP 3 +397342 4 0 +~~~ +397350 contingency = 0 +397350 trialThresh = 100 +397351 timeMaxOut = 20 +397351 timeElapsed = 8 +397352 totalPokes = 36 +397352 totalRewards = 16 +397352 countPokes1 = 10 +397352 countRewards1 = 7 +397353 leafProbs1 = 80 +397353 countPokes2 = 7 +397353 countRewards2 = 0 +397368 leafProbs2 = 20 +397368 countPokes3 = 5 +397368 countRewards3 = 1 +397368 leafProbs3 = 20 +397368 countPokes4 = 4 +397369 countRewards4 = 3 +397369 leafProbs4 = 50 +397370 countPokes5 = 4 +397370 countRewards5 = 3 +397370 leafProbs5 = 80 +397384 countPokes6 = 6 +397384 countRewards6 = 2 +397384 leafProbs6 = 50 +~~~ +397422 DOWN 3 +397422 0 0 +397432 UP 3 +397432 4 0 +397510 DOWN 3 +397510 0 0 +397514 UP 3 +397514 4 0 +400532 DOWN 3 +400532 0 0 +419715 UP 4 +419715 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +419745 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420045 8 0 +422470 DOWN 4 +422470 0 0 +422484 UP 4 +422484 8 0 +~~~ +422499 contingency = 0 +422499 trialThresh = 100 +422499 timeMaxOut = 20 +422499 timeElapsed = 8 +422500 totalPokes = 37 +422500 totalRewards = 17 +422501 countPokes1 = 10 +422501 countRewards1 = 7 +422501 leafProbs1 = 80 +422501 countPokes2 = 7 +422502 countRewards2 = 0 +422516 leafProbs2 = 20 +422516 countPokes3 = 5 +422517 countRewards3 = 1 +422517 leafProbs3 = 20 +422517 countPokes4 = 5 +422517 countRewards4 = 4 +422517 leafProbs4 = 50 +422518 countPokes5 = 4 +422518 countRewards5 = 3 +422519 leafProbs5 = 80 +422532 countPokes6 = 6 +422533 countRewards6 = 2 +422533 leafProbs6 = 50 +~~~ +423017 DOWN 4 +423017 0 0 +427069 UP 3 +427069 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427094 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427239 DOWN 3 +427239 0 256 +427241 UP 3 +427241 4 256 +~~~ +427264 contingency = 0 +427264 trialThresh = 100 +427264 timeMaxOut = 20 +427265 timeElapsed = 8 +427265 totalPokes = 38 +427265 totalRewards = 18 +427265 countPokes1 = 10 +427266 countRewards1 = 7 +427266 leafProbs1 = 80 +427267 countPokes2 = 7 +427267 countRewards2 = 0 +427281 leafProbs2 = 20 +427281 countPokes3 = 6 +427281 countRewards3 = 2 +427282 leafProbs3 = 20 +427282 countPokes4 = 5 +427283 countRewards4 = 4 +427283 leafProbs4 = 50 +427283 countPokes5 = 4 +427283 countRewards5 = 3 +427284 leafProbs5 = 80 +427297 countPokes6 = 6 +427298 countRewards6 = 2 +427298 leafProbs6 = 50 +~~~ +427394 4 0 +428859 DOWN 3 +428859 0 0 +428870 UP 3 +428870 4 0 +430500 DOWN 3 +430500 0 0 +430508 UP 3 +430508 4 0 +430526 DOWN 3 +430526 0 0 +430529 UP 3 +430529 4 0 +430591 DOWN 3 +430591 0 0 +430598 UP 3 +430598 4 0 +430616 DOWN 3 +430616 0 0 +430625 UP 3 +430625 4 0 +430632 DOWN 3 +430632 0 0 +430643 UP 3 +430643 4 0 +430705 DOWN 3 +430705 0 0 +430716 UP 3 +430716 4 0 +430743 DOWN 3 +430743 0 0 +430751 UP 3 +430751 4 0 +430764 DOWN 3 +430764 0 0 +430767 UP 3 +430767 4 0 +430813 DOWN 3 +430813 0 0 +430823 UP 3 +430823 4 0 +430837 DOWN 3 +430837 0 0 +430847 UP 3 +430847 4 0 +430937 DOWN 3 +430937 0 0 +438029 UP 4 +438029 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +438640 DOWN 4 +438640 0 0 +~~~ +438656 contingency = 0 +438656 trialThresh = 100 +438657 timeMaxOut = 20 +438657 timeElapsed = 9 +438657 totalPokes = 39 +438657 totalRewards = 18 +438658 countPokes1 = 10 +438658 countRewards1 = 7 +438659 leafProbs1 = 80 +438659 countPokes2 = 7 +438659 countRewards2 = 0 +438673 leafProbs2 = 20 +438673 countPokes3 = 6 +438674 countRewards3 = 2 +438674 leafProbs3 = 20 +438675 countPokes4 = 6 +438675 countRewards4 = 4 +438675 leafProbs4 = 50 +438675 countPokes5 = 4 +438675 countRewards5 = 3 +438676 leafProbs5 = 80 +438690 countPokes6 = 6 +438690 countRewards6 = 2 +438690 leafProbs6 = 50 +~~~ +440259 UP 3 +440259 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +440484 DOWN 3 +440484 0 0 +~~~ +440505 UP 3 +440505 4 0 +440506 contingency = 0 +440506 trialThresh = 100 +440507 timeMaxOut = 20 +440507 timeElapsed = 9 +440507 totalPokes = 40 +440507 totalRewards = 18 +440508 countPokes1 = 10 +440508 countRewards1 = 7 +440508 leafProbs1 = 80 +440509 countPokes2 = 7 +440523 countRewards2 = 0 +440523 leafProbs2 = 20 +440523 countPokes3 = 7 +440523 countRewards3 = 2 +440524 leafProbs3 = 20 +440524 countPokes4 = 6 +440525 countRewards4 = 4 +440525 leafProbs4 = 50 +440525 countPokes5 = 4 +440525 countRewards5 = 3 +440539 leafProbs5 = 80 +440539 countPokes6 = 6 +440540 countRewards6 = 2 +440540 leafProbs6 = 50 +~~~ +440595 DOWN 3 +440595 0 0 +440601 UP 3 +440601 4 0 +440618 DOWN 3 +440618 0 0 +440634 UP 3 +440634 4 0 +440725 DOWN 3 +440725 0 0 +440729 UP 3 +440729 4 0 +440749 DOWN 3 +440749 0 0 +440787 UP 3 +440787 4 0 +441093 DOWN 3 +441093 0 0 +441136 UP 3 +441136 4 0 +441147 DOWN 3 +441147 0 0 +441287 UP 3 +441287 4 0 +441509 DOWN 3 +441509 0 0 +444557 UP 4 +444557 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +444894 DOWN 4 +444894 0 0 +~~~ +444911 contingency = 0 +444911 trialThresh = 100 +444911 timeMaxOut = 20 +444911 timeElapsed = 9 +444912 totalPokes = 41 +444912 totalRewards = 18 +444913 countPokes1 = 10 +444913 countRewards1 = 7 +444913 leafProbs1 = 80 +444913 countPokes2 = 7 +444914 countRewards2 = 0 +444928 leafProbs2 = 20 +444928 countPokes3 = 7 +444929 countRewards3 = 2 +444929 leafProbs3 = 20 +444929 countPokes4 = 7 +444929 countRewards4 = 4 +444930 leafProbs4 = 50 +444930 countPokes5 = 4 +444931 countRewards5 = 3 +444931 leafProbs5 = 80 +444945 countPokes6 = 6 +444945 countRewards6 = 2 +444945 leafProbs6 = 50 +~~~ +451529 UP 6 +451529 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +452216 DOWN 6 +452216 0 0 +~~~ +452237 contingency = 0 +452237 trialThresh = 100 +452238 timeMaxOut = 20 +452238 timeElapsed = 9 +452239 totalPokes = 42 +452239 totalRewards = 18 +452239 countPokes1 = 10 +452239 countRewards1 = 7 +452240 leafProbs1 = 80 +452240 countPokes2 = 7 +452241 countRewards2 = 0 +452255 leafProbs2 = 20 +452255 countPokes3 = 7 +452255 countRewards3 = 2 +452255 leafProbs3 = 20 +452256 countPokes4 = 7 +452256 countRewards4 = 4 +452257 leafProbs4 = 50 +452257 countPokes5 = 4 +452257 countRewards5 = 3 +452257 leafProbs5 = 80 +452271 countPokes6 = 7 +452271 countRewards6 = 2 +452271 leafProbs6 = 50 +~~~ +452272 UP 6 +452272 32 0 +452323 DOWN 6 +452323 0 0 +456828 UP 6 +456828 32 0 +457039 DOWN 6 +457039 0 0 +458402 UP 5 +458402 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458432 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458732 16 0 +458786 DOWN 5 +458786 0 0 +458790 UP 5 +458790 16 0 +~~~ +458817 contingency = 0 +458817 trialThresh = 100 +458817 timeMaxOut = 20 +458817 timeElapsed = 9 +458818 totalPokes = 43 +458818 totalRewards = 19 +458819 countPokes1 = 10 +458819 countRewards1 = 7 +458819 leafProbs1 = 80 +458819 countPokes2 = 7 +458820 countRewards2 = 0 +458834 leafProbs2 = 20 +458834 countPokes3 = 7 +458835 countRewards3 = 2 +458835 leafProbs3 = 20 +458835 countPokes4 = 7 +458835 countRewards4 = 4 +458836 leafProbs4 = 50 +458836 countPokes5 = 5 +458837 countRewards5 = 4 +458837 leafProbs5 = 80 +458850 countPokes6 = 7 +458851 countRewards6 = 2 +458851 leafProbs6 = 50 +~~~ +460863 DOWN 5 +460863 0 0 +460877 UP 5 +460877 16 0 +461283 DOWN 5 +461283 0 0 +461306 UP 5 +461306 16 0 +461377 DOWN 5 +461377 0 0 +468674 UP 6 +468674 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469094 DOWN 6 +469094 0 0 +~~~ +469120 contingency = 0 +469120 trialThresh = 100 +469120 timeMaxOut = 20 +469121 timeElapsed = 9 +469121 totalPokes = 44 +469122 totalRewards = 19 +469122 countPokes1 = 10 +469122 countRewards1 = 7 +469122 leafProbs1 = 80 +469123 countPokes2 = 7 +469123 countRewards2 = 0 +469137 leafProbs2 = 20 +469138 countPokes3 = 7 +469138 countRewards3 = 2 +469138 leafProbs3 = 20 +469138 countPokes4 = 7 +469138 countRewards4 = 4 +469139 leafProbs4 = 50 +469139 countPokes5 = 5 +469140 countRewards5 = 4 +469140 leafProbs5 = 80 +469154 countPokes6 = 8 +469154 countRewards6 = 2 +469154 leafProbs6 = 50 +~~~ +474207 UP 6 +474207 32 0 +474302 DOWN 6 +474302 0 0 +474380 UP 6 +474380 32 0 +474621 DOWN 6 +474621 0 0 +482030 UP 1 +482030 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +482234 DOWN 1 +482234 0 0 +~~~ +482258 contingency = 0 +482258 trialThresh = 100 +482258 timeMaxOut = 20 +482258 timeElapsed = 10 +482259 totalPokes = 45 +482259 totalRewards = 19 +482260 countPokes1 = 11 +482260 countRewards1 = 7 +482260 leafProbs1 = 80 +482260 countPokes2 = 7 +482261 countRewards2 = 0 +482275 leafProbs2 = 20 +482275 countPokes3 = 7 +482276 countRewards3 = 2 +482276 leafProbs3 = 20 +482276 countPokes4 = 7 +482276 countRewards4 = 4 +482277 leafProbs4 = 50 +482277 countPokes5 = 5 +482278 countRewards5 = 4 +482278 leafProbs5 = 80 +482292 countPokes6 = 8 +482292 countRewards6 = 2 +482292 leafProbs6 = 50 +~~~ +482292 UP 1 +482292 1 0 +482558 DOWN 1 +482558 0 0 +482585 UP 1 +482585 1 0 +482683 DOWN 1 +482683 0 0 +482718 UP 1 +482718 1 0 +482744 DOWN 1 +482744 0 0 +482821 UP 1 +482821 1 0 +482842 DOWN 1 +482842 0 0 +482905 UP 1 +482905 1 0 +482939 DOWN 1 +482939 0 0 +498133 UP 1 +498133 1 0 +498150 DOWN 1 +498150 0 0 +498596 UP 1 +498596 1 0 +498878 DOWN 1 +498878 0 0 +508278 UP 1 +508278 1 0 +508469 DOWN 1 +508469 0 0 +508616 UP 1 +508616 1 0 +508860 DOWN 1 +508860 0 0 +518791 UP 2 +518791 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +519385 DOWN 2 +519385 0 0 +~~~ +519406 contingency = 0 +519406 trialThresh = 100 +519407 timeMaxOut = 20 +519407 timeElapsed = 11 +519407 totalPokes = 46 +519407 totalRewards = 19 +519408 countPokes1 = 11 +519408 countRewards1 = 7 +519409 leafProbs1 = 80 +519409 countPokes2 = 8 +519409 countRewards2 = 0 +519423 leafProbs2 = 20 +519423 countPokes3 = 7 +519424 countRewards3 = 2 +519424 leafProbs3 = 20 +519425 countPokes4 = 7 +519425 countRewards4 = 4 +519425 leafProbs4 = 50 +519425 countPokes5 = 5 +519425 countRewards5 = 4 +519426 leafProbs5 = 80 +519439 countPokes6 = 8 +519440 countRewards6 = 2 +519440 leafProbs6 = 50 +~~~ +519441 UP 2 +519441 2 0 +519447 DOWN 2 +519447 0 0 +524357 UP 1 +524357 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524378 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524678 1 0 +524797 DOWN 1 +524797 0 0 +~~~ +524815 contingency = 0 +524815 trialThresh = 100 +524816 timeMaxOut = 20 +524816 timeElapsed = 11 +524817 totalPokes = 47 +524817 totalRewards = 20 +524817 countPokes1 = 12 +524817 countRewards1 = 8 +524817 leafProbs1 = 80 +524818 countPokes2 = 8 +524818 countRewards2 = 0 +524833 leafProbs2 = 20 +524833 countPokes3 = 7 +524833 countRewards3 = 2 +524833 leafProbs3 = 20 +524833 countPokes4 = 7 +524834 countRewards4 = 4 +524834 leafProbs4 = 50 +524835 countPokes5 = 5 +524835 countRewards5 = 4 +524835 leafProbs5 = 80 +524849 countPokes6 = 8 +524849 countRewards6 = 2 +524849 leafProbs6 = 50 +~~~ +524850 UP 1 +524850 1 0 +524863 DOWN 1 +524863 0 0 +524873 UP 1 +524873 1 0 +527968 DOWN 1 +527968 0 0 +527980 UP 1 +527980 1 0 +528079 DOWN 1 +528079 0 0 +528109 UP 1 +528109 1 0 +528210 DOWN 1 +528210 0 0 +528221 UP 1 +528221 1 0 +528322 DOWN 1 +528322 0 0 +528348 UP 1 +528348 1 0 +528356 DOWN 1 +528356 0 0 +528365 UP 1 +528365 1 0 +528411 DOWN 1 +528411 0 0 +533697 UP 1 +533697 1 0 +533887 DOWN 1 +533887 0 0 +533943 UP 1 +533943 1 0 +535917 DOWN 1 +535917 0 0 +536171 UP 1 +536171 1 0 +536181 DOWN 1 +536181 0 0 +540135 UP 1 +540135 1 0 +540396 DOWN 1 +540396 0 0 +544774 UP 1 +544774 1 0 +544951 DOWN 1 +544951 0 0 +545039 UP 1 +545039 1 0 +545129 DOWN 1 +545129 0 0 +546501 UP 1 +546501 1 0 +546595 DOWN 1 +546595 0 0 +562134 UP 1 +562134 1 0 +562562 DOWN 1 +562562 0 0 +574774 UP 6 +574774 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +574832 DOWN 6 +574832 0 0 +~~~ +574860 contingency = 0 +574860 trialThresh = 100 +574861 timeMaxOut = 20 +574861 timeElapsed = 12 +574862 totalPokes = 48 +574862 totalRewards = 20 +574862 countPokes1 = 12 +574862 countRewards1 = 8 +574863 leafProbs1 = 80 +574863 countPokes2 = 8 +574864 countRewards2 = 0 +574878 leafProbs2 = 20 +574878 countPokes3 = 7 +574878 countRewards3 = 2 +574878 leafProbs3 = 20 +574879 countPokes4 = 7 +574879 countRewards4 = 4 +574879 leafProbs4 = 50 +574880 countPokes5 = 5 +574880 countRewards5 = 4 +574880 leafProbs5 = 80 +574894 countPokes6 = 9 +574894 countRewards6 = 2 +574894 leafProbs6 = 50 +~~~ +574895 UP 6 +574895 32 0 +574983 DOWN 6 +574983 0 0 +575020 UP 6 +575020 32 0 +575089 DOWN 6 +575089 0 0 +575126 UP 6 +575126 32 0 +575149 DOWN 6 +575149 0 0 +577744 UP 6 +577744 32 0 +577748 DOWN 6 +577748 0 0 +578154 UP 6 +578154 32 0 +579354 DOWN 6 +579354 0 0 +579382 UP 6 +579382 32 0 +579514 DOWN 6 +579514 0 0 +580826 UP 6 +580826 32 0 +581310 DOWN 6 +581310 0 0 +581654 UP 6 +581654 32 0 +581711 DOWN 6 +581711 0 0 +582734 UP 6 +582733 32 0 +582748 DOWN 6 +582748 0 0 +585351 UP 6 +585351 32 0 +587498 DOWN 6 +587498 0 0 +595639 UP 1 +595639 1 0 +595653 DOWN 1 +595653 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595663 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595676 contingency = 0 +595676 trialThresh = 100 +595676 timeMaxOut = 20 +595677 timeElapsed = 13 +595677 totalPokes = 49 +595678 totalRewards = 21 +595678 countPokes1 = 13 +595678 countRewards1 = 9 +595678 leafProbs1 = 80 +595679 countPokes2 = 8 +595679 countRewards2 = 0 +595693 leafProbs2 = 20 +595694 countPokes3 = 7 +595694 countRewards3 = 2 +595694 leafProbs3 = 20 +595694 countPokes4 = 7 +595694 countRewards4 = 4 +595695 leafProbs4 = 50 +595695 countPokes5 = 5 +595696 countRewards5 = 4 +595696 leafProbs5 = 80 +595710 countPokes6 = 9 +595710 countRewards6 = 2 +595710 leafProbs6 = 50 +~~~ +595710 UP 1 +595710 1 64 +595807 DOWN 1 +595807 0 64 +595820 UP 1 +595820 1 64 +595874 DOWN 1 +595874 0 64 +595886 UP 1 +595886 1 64 +595963 1 0 +599155 DOWN 1 +599155 0 0 +599164 UP 1 +599164 1 0 +599808 DOWN 1 +599808 0 0 +688756 UP 6 +688756 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688779 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688956 DOWN 6 +688956 0 2048 +~~~ +688973 contingency = 0 +688973 trialThresh = 100 +688974 timeMaxOut = 20 +688974 timeElapsed = 15 +688974 totalPokes = 50 +688974 totalRewards = 22 +688975 countPokes1 = 13 +688975 countRewards1 = 9 +688976 leafProbs1 = 80 +688976 countPokes2 = 8 +688976 countRewards2 = 0 +688990 leafProbs2 = 20 +688990 countPokes3 = 7 +688991 countRewards3 = 2 +688991 leafProbs3 = 20 +688992 countPokes4 = 7 +688992 countRewards4 = 4 +688992 leafProbs4 = 50 +688992 countPokes5 = 5 +688993 countRewards5 = 4 +688993 leafProbs5 = 80 +689007 countPokes6 = 10 +689007 countRewards6 = 3 +689007 leafProbs6 = 50 +~~~ +689008 UP 6 +689008 32 2048 +689079 32 0 +692128 DOWN 6 +692128 0 0 +692143 UP 6 +692143 32 0 +692685 DOWN 6 +692685 0 0 +698048 UP 6 +698048 32 0 +703204 DOWN 6 +703204 0 0 +704795 UP 5 +704795 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704833 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704998 DOWN 5 +704998 0 1024 +~~~ +705014 contingency = 0 +705014 trialThresh = 100 +705014 timeMaxOut = 20 +705015 timeElapsed = 15 +705015 totalPokes = 51 +705016 totalRewards = 23 +705016 countPokes1 = 13 +705016 countRewards1 = 9 +705016 leafProbs1 = 80 +705017 countPokes2 = 8 +705017 countRewards2 = 0 +705031 leafProbs2 = 20 +705032 countPokes3 = 7 +705032 countRewards3 = 2 +705032 leafProbs3 = 20 +705032 countPokes4 = 7 +705033 countRewards4 = 4 +705033 leafProbs4 = 50 +705033 countPokes5 = 6 +705034 countRewards5 = 5 +705034 leafProbs5 = 80 +705048 countPokes6 = 10 +705048 countRewards6 = 3 +705048 leafProbs6 = 50 +~~~ +705048 UP 5 +705048 16 1024 +705133 16 0 +707856 DOWN 5 +707856 0 0 +707859 UP 5 +707859 16 0 +708389 DOWN 5 +708388 0 0 +708430 UP 5 +708430 16 0 +708506 DOWN 5 +708506 0 0 +708517 UP 5 +708517 16 0 +708729 DOWN 5 +708729 0 0 +708753 UP 5 +708753 16 0 +708838 DOWN 5 +708838 0 0 +708870 UP 5 +708870 16 0 +708943 DOWN 5 +708943 0 0 +712658 UP 6 +712658 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712691 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712856 DOWN 6 +712856 0 2048 +712886 UP 6 +712886 32 2048 +~~~ +712891 contingency = 0 +712892 trialThresh = 100 +712892 timeMaxOut = 20 +712892 timeElapsed = 15 +712892 totalPokes = 52 +712893 totalRewards = 24 +712893 countPokes1 = 13 +712894 countRewards1 = 9 +712894 leafProbs1 = 80 +712894 countPokes2 = 8 +712894 countRewards2 = 0 +712908 leafProbs2 = 20 +712909 countPokes3 = 7 +712909 countRewards3 = 2 +712910 leafProbs3 = 20 +712910 countPokes4 = 7 +712910 countRewards4 = 4 +712910 leafProbs4 = 50 +712910 countPokes5 = 6 +712911 countRewards5 = 5 +712911 leafProbs5 = 80 +712925 countPokes6 = 11 +712925 countRewards6 = 4 +712926 leafProbs6 = 50 +~~~ +712990 32 0 +716085 DOWN 6 +716085 0 0 +716094 UP 6 +716094 32 0 +716526 DOWN 6 +716526 0 0 +725598 UP 1 +725598 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725628 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725712 DOWN 1 +725712 0 64 +~~~ +725726 contingency = 0 +725726 trialThresh = 100 +725727 timeMaxOut = 20 +725727 timeElapsed = 16 +725728 totalPokes = 53 +725728 totalRewards = 25 +725728 countPokes1 = 14 +725728 countRewards1 = 10 +725729 leafProbs1 = 80 +725729 countPokes2 = 8 +725729 countRewards2 = 0 +725744 leafProbs2 = 20 +725744 countPokes3 = 7 +725744 countRewards3 = 2 +725744 leafProbs3 = 20 +725745 countPokes4 = 7 +725745 countRewards4 = 4 +725746 leafProbs4 = 50 +725746 countPokes5 = 6 +725746 countRewards5 = 5 +725746 leafProbs5 = 80 +725760 countPokes6 = 11 +725760 countRewards6 = 4 +725760 leafProbs6 = 50 +~~~ +725761 UP 1 +725761 1 64 +725780 DOWN 1 +725779 0 64 +725790 UP 1 +725790 1 64 +725928 1 0 +725996 DOWN 1 +725996 0 0 +726010 UP 1 +726010 1 0 +729338 DOWN 1 +729338 0 0 +734564 UP 1 +734564 1 0 +734740 DOWN 1 +734740 0 0 +758750 UP 2 +758750 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +758998 DOWN 2 +758998 0 0 +759011 UP 2 +759011 2 0 +~~~ +759026 contingency = 0 +759026 trialThresh = 100 +759027 timeMaxOut = 20 +759027 timeElapsed = 17 +759027 totalPokes = 54 +759027 totalRewards = 25 +759028 countPokes1 = 14 +759028 countRewards1 = 10 +759029 leafProbs1 = 80 +759029 countPokes2 = 9 +759029 countRewards2 = 0 +759043 leafProbs2 = 20 +759043 countPokes3 = 7 +759044 countRewards3 = 2 +759044 leafProbs3 = 20 +759045 countPokes4 = 7 +759045 countRewards4 = 4 +759045 leafProbs4 = 50 +759045 countPokes5 = 6 +759046 countRewards5 = 5 +759046 leafProbs5 = 80 +759060 countPokes6 = 11 +759060 countRewards6 = 4 +759061 leafProbs6 = 50 +~~~ +759247 DOWN 2 +759247 0 0 +764741 UP 2 +764741 2 0 +764877 DOWN 2 +764877 0 0 +768238 UP 1 +768238 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768267 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768567 1 0 +769995 DOWN 1 +769995 0 0 +770003 UP 1 +770003 1 0 +~~~ +770020 contingency = 0 +770021 trialThresh = 100 +770021 timeMaxOut = 20 +770021 timeElapsed = 17 +770021 totalPokes = 55 +770022 totalRewards = 26 +770022 countPokes1 = 15 +770023 countRewards1 = 11 +770023 leafProbs1 = 80 +770023 countPokes2 = 9 +770023 countRewards2 = 0 +770037 leafProbs2 = 20 +770038 countPokes3 = 7 +770038 countRewards3 = 2 +770039 leafProbs3 = 20 +770039 countPokes4 = 7 +770039 countRewards4 = 4 +770039 leafProbs4 = 50 +770040 countPokes5 = 6 +770040 countRewards5 = 5 +770041 leafProbs5 = 80 +770054 countPokes6 = 11 +770055 countRewards6 = 4 +770055 leafProbs6 = 50 +~~~ +770958 DOWN 1 +770958 0 0 +770969 UP 1 +770969 1 0 +771063 DOWN 1 +771063 0 0 +792538 UP 4 +792538 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +792976 DOWN 4 +792976 0 0 +~~~ +793004 contingency = 0 +793004 trialThresh = 100 +793004 timeMaxOut = 20 +793004 timeElapsed = 17 +793005 totalPokes = 56 +793005 totalRewards = 26 +793006 countPokes1 = 15 +793006 countRewards1 = 11 +793006 leafProbs1 = 80 +793006 countPokes2 = 9 +793006 countRewards2 = 0 +793021 leafProbs2 = 20 +793021 countPokes3 = 7 +793022 countRewards3 = 2 +793022 leafProbs3 = 20 +793022 countPokes4 = 8 +793022 countRewards4 = 4 +793023 leafProbs4 = 50 +793023 countPokes5 = 6 +793023 countRewards5 = 5 +793024 leafProbs5 = 80 +793037 countPokes6 = 11 +793038 countRewards6 = 4 +793038 leafProbs6 = 50 +~~~ +796258 UP 3 +796258 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796294 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796527 DOWN 3 +796527 0 256 +796548 UP 3 +796548 4 256 +~~~ +796560 contingency = 0 +796561 trialThresh = 100 +796561 timeMaxOut = 20 +796562 timeElapsed = 18 +796562 totalPokes = 57 +796562 totalRewards = 27 +796562 countPokes1 = 15 +796563 countRewards1 = 11 +796563 leafProbs1 = 80 +796564 countPokes2 = 9 +796564 countRewards2 = 0 +796578 leafProbs2 = 20 +796578 countPokes3 = 8 +796578 countRewards3 = 3 +796579 leafProbs3 = 20 +796579 countPokes4 = 8 +796580 countRewards4 = 4 +796580 leafProbs4 = 50 +796580 countPokes5 = 6 +796580 countRewards5 = 5 +796581 leafProbs5 = 80 +796594 countPokes6 = 11 +796595 countRewards6 = 4 +796595 leafProbs6 = 50 +~~~ +796596 4 0 +796624 DOWN 3 +796624 0 0 +796629 UP 3 +796629 4 0 +801350 DOWN 3 +801350 0 0 +806015 UP 4 +806015 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806042 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806342 8 0 +809642 DOWN 4 +809642 0 0 +~~~ +809664 contingency = 0 +809664 trialThresh = 100 +809664 timeMaxOut = 20 +809665 timeElapsed = 18 +809665 totalPokes = 58 +809666 totalRewards = 28 +809666 countPokes1 = 15 +809666 countRewards1 = 11 +809666 leafProbs1 = 80 +809667 countPokes2 = 9 +809667 countRewards2 = 0 +809681 leafProbs2 = 20 +809682 countPokes3 = 8 +809682 countRewards3 = 3 +809682 leafProbs3 = 20 +809682 countPokes4 = 9 +809683 countRewards4 = 5 +809683 leafProbs4 = 50 +809683 countPokes5 = 6 +809684 countRewards5 = 5 +809684 leafProbs5 = 80 +809698 countPokes6 = 11 +809698 countRewards6 = 4 +809698 leafProbs6 = 50 +~~~ +813030 UP 3 +813030 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +813879 DOWN 3 +813879 0 0 +~~~ +813907 contingency = 0 +813908 trialThresh = 100 +813908 timeMaxOut = 20 +813908 timeElapsed = 18 +813908 totalPokes = 59 +813909 totalRewards = 28 +813909 countPokes1 = 15 +813910 countRewards1 = 11 +813910 leafProbs1 = 80 +813910 countPokes2 = 9 +813910 countRewards2 = 0 +813924 leafProbs2 = 20 +813925 countPokes3 = 9 +813925 countRewards3 = 3 +813926 leafProbs3 = 20 +813926 countPokes4 = 9 +813926 countRewards4 = 5 +813926 leafProbs4 = 50 +813927 countPokes5 = 6 +813927 countRewards5 = 5 +813928 leafProbs5 = 80 +813941 countPokes6 = 11 +813942 countRewards6 = 4 +813942 leafProbs6 = 50 +~~~ +813990 UP 3 +813990 4 0 +814046 DOWN 3 +814046 0 0 +814070 UP 3 +814070 4 0 +814092 DOWN 3 +814092 0 0 +818984 UP 4 +818984 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819019 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819319 8 0 +822032 DOWN 4 +822032 0 0 +822048 UP 4 +822048 8 0 +~~~ +822052 contingency = 0 +822052 trialThresh = 100 +822052 timeMaxOut = 20 +822052 timeElapsed = 18 +822053 totalPokes = 60 +822053 totalRewards = 29 +822054 countPokes1 = 15 +822054 countRewards1 = 11 +822054 leafProbs1 = 80 +822054 countPokes2 = 9 +822055 countRewards2 = 0 +822069 leafProbs2 = 20 +822069 countPokes3 = 9 +822070 countRewards3 = 3 +822070 leafProbs3 = 20 +822070 countPokes4 = 10 +822070 countRewards4 = 6 +822071 leafProbs4 = 50 +822071 countPokes5 = 6 +822072 countRewards5 = 5 +822072 leafProbs5 = 80 +822086 countPokes6 = 11 +822086 countRewards6 = 4 +822086 leafProbs6 = 50 +~~~ +822142 DOWN 4 +822142 0 0 +825685 UP 3 +825685 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825714 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825899 DOWN 3 +825899 0 256 +825911 UP 3 +825911 4 256 +~~~ +825924 contingency = 0 +825924 trialThresh = 100 +825924 timeMaxOut = 20 +825924 timeElapsed = 18 +825924 totalPokes = 61 +825925 totalRewards = 30 +825925 countPokes1 = 15 +825926 countRewards1 = 11 +825926 leafProbs1 = 80 +825926 countPokes2 = 9 +825926 countRewards2 = 0 +825941 leafProbs2 = 20 +825941 countPokes3 = 10 +825941 countRewards3 = 4 +825942 leafProbs3 = 20 +825942 countPokes4 = 10 +825942 countRewards4 = 6 +825942 leafProbs4 = 50 +825943 countPokes5 = 6 +825943 countRewards5 = 5 +825944 leafProbs5 = 80 +825958 countPokes6 = 11 +825958 countRewards6 = 4 +825958 leafProbs6 = 50 +~~~ +826000 DOWN 3 +826000 0 256 +826002 UP 3 +826002 4 256 +826014 4 0 +829816 DOWN 3 +829816 0 0 +838111 UP 4 +838111 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838136 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838436 8 0 +841411 DOWN 4 +841411 0 0 +~~~ +841435 contingency = 0 +841436 trialThresh = 100 +841436 timeMaxOut = 20 +841437 timeElapsed = 19 +841437 totalPokes = 62 +841437 totalRewards = 31 +841437 countPokes1 = 15 +841438 countRewards1 = 11 +841438 leafProbs1 = 80 +841439 countPokes2 = 9 +841439 countRewards2 = 0 +841453 leafProbs2 = 20 +841453 countPokes3 = 10 +841453 countRewards3 = 4 +841454 leafProbs3 = 20 +841454 countPokes4 = 11 +841455 countRewards4 = 7 +841455 leafProbs4 = 50 +841455 countPokes5 = 6 +841455 countRewards5 = 5 +841455 leafProbs5 = 80 +841469 countPokes6 = 11 +841470 countRewards6 = 4 +841470 leafProbs6 = 50 +~~~ +843614 UP 3 +843614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843639 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843789 DOWN 3 +843789 0 256 +843795 UP 3 +843795 4 256 +~~~ +843808 contingency = 0 +843809 trialThresh = 100 +843809 timeMaxOut = 20 +843809 timeElapsed = 19 +843809 totalPokes = 63 +843810 totalRewards = 32 +843810 countPokes1 = 15 +843810 countRewards1 = 11 +843811 leafProbs1 = 80 +843811 countPokes2 = 9 +843811 countRewards2 = 0 +843825 leafProbs2 = 20 +843826 countPokes3 = 11 +843826 countRewards3 = 5 +843827 leafProbs3 = 20 +843827 countPokes4 = 11 +843827 countRewards4 = 7 +843827 leafProbs4 = 50 +843827 countPokes5 = 6 +843828 countRewards5 = 5 +843828 leafProbs5 = 80 +843842 countPokes6 = 11 +843843 countRewards6 = 4 +843843 leafProbs6 = 50 +~~~ +843939 4 0 +845473 DOWN 3 +845473 0 0 +845480 UP 3 +845480 4 0 +846559 DOWN 3 +846559 0 0 +846574 UP 3 +846574 4 0 +847017 DOWN 3 +847017 0 0 +850281 UP 4 +850281 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850308 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850608 8 0 +853788 DOWN 4 +853788 0 0 +~~~ +853810 contingency = 0 +853810 trialThresh = 100 +853811 timeMaxOut = 20 +853811 timeElapsed = 19 +853811 totalPokes = 64 +853811 totalRewards = 33 +853811 countPokes1 = 15 +853812 countRewards1 = 11 +853812 leafProbs1 = 80 +853813 countPokes2 = 9 +853813 countRewards2 = 0 +853827 leafProbs2 = 20 +853827 countPokes3 = 11 +853828 countRewards3 = 5 +853828 leafProbs3 = 20 +853829 countPokes4 = 12 +853829 countRewards4 = 8 +853829 leafProbs4 = 50 +853829 countPokes5 = 6 +853829 countRewards5 = 5 +853830 leafProbs5 = 80 +853844 countPokes6 = 11 +853844 countRewards6 = 4 +853845 leafProbs6 = 50 +~~~ +859749 UP 3 +859749 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +859929 DOWN 3 +859929 0 0 +~~~ +859955 contingency = 0 +859955 trialThresh = 100 +859955 timeMaxOut = 20 +859956 timeElapsed = 19 +859956 totalPokes = 65 +859957 totalRewards = 33 +859957 countPokes1 = 15 +859957 countRewards1 = 11 +859957 leafProbs1 = 80 +859958 countPokes2 = 9 +859958 countRewards2 = 0 +859972 leafProbs2 = 20 +859973 countPokes3 = 12 +859973 countRewards3 = 5 +859973 leafProbs3 = 20 +859973 countPokes4 = 12 +859974 countRewards4 = 8 +859974 leafProbs4 = 50 +859975 countPokes5 = 6 +859975 countRewards5 = 5 +859975 leafProbs5 = 80 +859989 countPokes6 = 11 +859989 countRewards6 = 4 +859989 leafProbs6 = 50 +~~~ +859990 UP 3 +859990 4 0 +860031 DOWN 3 +860031 0 0 +860033 UP 3 +860033 4 0 +860497 DOWN 3 +860497 0 0 +863294 UP 4 +863294 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +863951 DOWN 4 +863951 0 0 +~~~ +863973 contingency = 0 +863973 trialThresh = 100 +863973 timeMaxOut = 20 +863974 timeElapsed = 19 +863974 totalPokes = 66 +863975 totalRewards = 33 +863975 countPokes1 = 15 +863975 countRewards1 = 11 +863975 leafProbs1 = 80 +863976 countPokes2 = 9 +863976 countRewards2 = 0 +863990 leafProbs2 = 20 +863991 countPokes3 = 12 +863991 countRewards3 = 5 +863991 leafProbs3 = 20 +863991 countPokes4 = 13 +863992 countRewards4 = 8 +863992 leafProbs4 = 50 +863993 countPokes5 = 6 +863993 countRewards5 = 5 +863993 leafProbs5 = 80 +864007 countPokes6 = 11 +864007 countRewards6 = 4 +864007 leafProbs6 = 50 +~~~ +868524 UP 3 +868524 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +868698 DOWN 3 +868698 0 0 +~~~ +868713 contingency = 0 +868713 trialThresh = 100 +868713 timeMaxOut = 20 +868713 timeElapsed = 19 +868713 totalPokes = 67 +868714 totalRewards = 33 +868715 countPokes1 = 15 +868715 countRewards1 = 11 +868715 leafProbs1 = 80 +868715 countPokes2 = 9 +868715 countRewards2 = 0 +868730 leafProbs2 = 20 +868730 countPokes3 = 13 +868731 countRewards3 = 5 +868731 leafProbs3 = 20 +868731 countPokes4 = 13 +868731 countRewards4 = 8 +868732 leafProbs4 = 50 +868732 countPokes5 = 6 +868733 countRewards5 = 5 +868733 leafProbs5 = 80 +868747 countPokes6 = 11 +868747 countRewards6 = 4 +868747 leafProbs6 = 50 +~~~ +868747 UP 3 +868747 4 0 +868824 DOWN 3 +868824 0 0 +872741 UP 4 +872741 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +873169 DOWN 4 +873169 0 0 +~~~ +873187 contingency = 0 +873187 trialThresh = 100 +873187 timeMaxOut = 20 +873187 timeElapsed = 19 +873188 totalPokes = 68 +873188 totalRewards = 33 +873189 countPokes1 = 15 +873189 countRewards1 = 11 +873189 leafProbs1 = 80 +873189 countPokes2 = 9 +873190 countRewards2 = 0 +873204 leafProbs2 = 20 +873204 countPokes3 = 13 +873205 countRewards3 = 5 +873205 leafProbs3 = 20 +873205 countPokes4 = 14 +873205 countRewards4 = 8 +873206 leafProbs4 = 50 +873206 countPokes5 = 6 +873207 countRewards5 = 5 +873207 leafProbs5 = 80 +873221 countPokes6 = 11 +873221 countRewards6 = 4 +873221 leafProbs6 = 50 +~~~ +873252 UP 4 +873252 8 0 +873290 DOWN 4 +873290 0 0 +876725 UP 3 +876725 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876754 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876920 DOWN 3 +876920 0 256 +876935 UP 3 +876935 4 256 +~~~ +876950 contingency = 0 +876950 trialThresh = 100 +876951 timeMaxOut = 20 +876951 timeElapsed = 20 +876951 totalPokes = 69 +876951 totalRewards = 34 +876952 countPokes1 = 15 +876952 countRewards1 = 11 +876953 leafProbs1 = 80 +876953 countPokes2 = 9 +876953 countRewards2 = 0 +876967 leafProbs2 = 20 +876968 countPokes3 = 14 +876968 countRewards3 = 6 +876969 leafProbs3 = 20 +876969 countPokes4 = 14 +876969 countRewards4 = 8 +876969 leafProbs4 = 50 +876970 countPokes5 = 6 +876970 countRewards5 = 5 +876971 leafProbs5 = 80 +876984 countPokes6 = 11 +876985 countRewards6 = 4 +876985 leafProbs6 = 50 +~~~ +876985 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +877054 4 0 +878633 DOWN 3 +878633 0 0 +878639 UP 3 +878639 4 0 +879721 DOWN 3 +879721 0 0 +886019 UP 1 +886019 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886047 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886216 DOWN 1 +886216 0 64 +886239 UP 1 +886239 1 64 +~~~ +886244 contingency = 1 +886245 trialThresh = 100 +886245 timeMaxOut = 20 +886245 timeElapsed = 0 +886245 totalPokes = 1 +886245 totalRewards = 1 +886246 countPokes1 = 1 +886246 countRewards1 = 1 +886247 leafProbs1 = 80 +886247 countPokes2 = 0 +886247 countRewards2 = 0 +886261 leafProbs2 = 20 +886261 countPokes3 = 0 +886262 countRewards3 = 0 +886262 leafProbs3 = 20 +886263 countPokes4 = 0 +886263 countRewards4 = 0 +886263 leafProbs4 = 50 +886263 countPokes5 = 0 +886263 countRewards5 = 0 +886264 leafProbs5 = 80 +886277 countPokes6 = 0 +886278 countRewards6 = 0 +886278 leafProbs6 = 50 +~~~ +886347 1 0 +887839 DOWN 1 +887839 0 0 +887847 UP 1 +887847 1 0 +888811 DOWN 1 +888811 0 0 +924349 UP 1 +924349 1 0 +924708 DOWN 1 +924708 0 0 +936150 UP 6 +936150 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +936282 DOWN 6 +936282 0 0 +~~~ +936306 UP 6 +936306 32 0 +936307 contingency = 1 +936308 trialThresh = 100 +936308 timeMaxOut = 20 +936308 timeElapsed = 1 +936308 totalPokes = 2 +936309 totalRewards = 1 +936309 countPokes1 = 1 +936310 countRewards1 = 1 +936310 leafProbs1 = 80 +936310 countPokes2 = 0 +936324 countRewards2 = 0 +936324 leafProbs2 = 20 +936325 countPokes3 = 0 +936325 countRewards3 = 0 +936326 leafProbs3 = 20 +936326 countPokes4 = 0 +936326 countRewards4 = 0 +936326 leafProbs4 = 50 +936326 countPokes5 = 0 +936327 countRewards5 = 0 +936340 leafProbs5 = 80 +936341 countPokes6 = 1 +936341 countRewards6 = 0 +936342 leafProbs6 = 50 +~~~ +936592 DOWN 6 +936592 0 0 +939891 UP 6 +939891 32 0 +940306 DOWN 6 +940306 0 0 +944398 UP 5 +944398 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944428 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944665 DOWN 5 +944665 0 1024 +944680 UP 5 +944680 16 1024 +~~~ +944694 contingency = 1 +944694 trialThresh = 100 +944695 timeMaxOut = 20 +944695 timeElapsed = 2 +944696 totalPokes = 3 +944696 totalRewards = 2 +944696 countPokes1 = 1 +944696 countRewards1 = 1 +944697 leafProbs1 = 80 +944697 countPokes2 = 0 +944698 countRewards2 = 0 +944711 leafProbs2 = 20 +944712 countPokes3 = 0 +944712 countRewards3 = 0 +944712 leafProbs3 = 20 +944712 countPokes4 = 0 +944713 countRewards4 = 0 +944713 leafProbs4 = 50 +944714 countPokes5 = 1 +944714 countRewards5 = 1 +944714 leafProbs5 = 80 +944728 countPokes6 = 1 +944728 countRewards6 = 0 +944728 leafProbs6 = 50 +~~~ +944729 16 0 +944845 DOWN 5 +944845 0 0 +944862 UP 5 +944862 16 0 +946617 DOWN 5 +946617 0 0 +946632 UP 5 +946632 16 0 +946716 DOWN 5 +946716 0 0 +946732 UP 5 +946732 16 0 +947449 DOWN 5 +947449 0 0 +948283 UP 5 +948283 16 0 +948312 DOWN 5 +948312 0 0 +952025 UP 6 +952025 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952051 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952328 DOWN 6 +952328 0 2048 +952339 UP 6 +952339 32 2048 +952351 32 0 +~~~ +952355 contingency = 1 +952355 trialThresh = 100 +952355 timeMaxOut = 20 +952356 timeElapsed = 2 +952356 totalPokes = 4 +952357 totalRewards = 3 +952357 countPokes1 = 1 +952357 countRewards1 = 1 +952357 leafProbs1 = 80 +952357 countPokes2 = 0 +952358 countRewards2 = 0 +952372 leafProbs2 = 20 +952372 countPokes3 = 0 +952373 countRewards3 = 0 +952373 leafProbs3 = 20 +952373 countPokes4 = 0 +952373 countRewards4 = 0 +952374 leafProbs4 = 50 +952374 countPokes5 = 1 +952375 countRewards5 = 1 +952375 leafProbs5 = 80 +952389 countPokes6 = 2 +952389 countRewards6 = 1 +952389 leafProbs6 = 50 +~~~ +955287 DOWN 6 +955287 0 0 +955304 UP 6 +955304 32 0 +955841 DOWN 6 +955841 0 0 +955870 UP 6 +955870 32 0 +955948 DOWN 6 +955948 0 0 +968742 UP 1 +968742 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +968986 DOWN 1 +968986 0 0 +969009 UP 1 +969009 1 0 +~~~ +969010 contingency = 1 +969011 trialThresh = 100 +969011 timeMaxOut = 20 +969011 timeElapsed = 2 +969011 totalPokes = 5 +969012 totalRewards = 3 +969012 countPokes1 = 2 +969013 countRewards1 = 1 +969013 leafProbs1 = 80 +969013 countPokes2 = 0 +969013 countRewards2 = 0 +969027 leafProbs2 = 20 +969027 countPokes3 = 0 +969028 countRewards3 = 0 +969028 leafProbs3 = 20 +969029 countPokes4 = 0 +969029 countRewards4 = 0 +969029 leafProbs4 = 50 +969029 countPokes5 = 1 +969030 countRewards5 = 1 +969030 leafProbs5 = 80 +969044 countPokes6 = 2 +969044 countRewards6 = 1 +969045 leafProbs6 = 50 +~~~ +969325 DOWN 1 +969325 0 0 +969363 UP 1 +969363 1 0 +969412 DOWN 1 +969412 0 0 +980911 UP 1 +980911 1 0 +981057 DOWN 1 +981057 0 0 +995935 UP 1 +995935 1 0 +995980 DOWN 1 +995980 0 0 +1000551 UP 1 +1000551 1 0 +1000675 DOWN 1 +1000675 0 0 +1000813 UP 1 +1000813 1 0 +1000837 DOWN 1 +1000837 0 0 +1014932 UP 1 +1014932 1 0 +1015485 DOWN 1 +1015485 0 0 +1037157 UP 1 +1037157 1 0 +1039155 DOWN 1 +1039155 0 0 +1045580 UP 2 +1045580 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045606 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045801 DOWN 2 +1045801 0 128 +1045812 UP 2 +1045812 2 128 +~~~ +1045827 contingency = 1 +1045827 trialThresh = 100 +1045828 timeMaxOut = 20 +1045828 timeElapsed = 4 +1045828 totalPokes = 6 +1045828 totalRewards = 4 +1045829 countPokes1 = 2 +1045829 countRewards1 = 1 +1045830 leafProbs1 = 80 +1045830 countPokes2 = 1 +1045830 countRewards2 = 1 +1045844 leafProbs2 = 20 +1045844 countPokes3 = 0 +1045845 countRewards3 = 0 +1045845 leafProbs3 = 20 +1045846 countPokes4 = 0 +1045846 countRewards4 = 0 +1045846 leafProbs4 = 50 +1045846 countPokes5 = 1 +1045846 countRewards5 = 1 +1045861 leafProbs5 = 80 +1045861 countPokes6 = 2 +1045862 countRewards6 = 1 +1045862 leafProbs6 = 50 +~~~ +1045906 2 0 +1046489 DOWN 2 +1046489 0 0 +1046492 UP 2 +1046492 2 0 +1046736 DOWN 2 +1046736 0 0 +1046740 UP 2 +1046740 2 0 +1048862 DOWN 2 +1048862 0 0 +1048885 UP 2 +1048885 2 0 +1049314 DOWN 2 +1049314 0 0 +1049320 UP 2 +1049320 2 0 +1049417 DOWN 2 +1049417 0 0 +1055638 UP 1 +1055638 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1056137 DOWN 1 +1056137 0 0 +~~~ +1056161 contingency = 1 +1056161 trialThresh = 100 +1056161 timeMaxOut = 20 +1056162 timeElapsed = 4 +1056162 totalPokes = 7 +1056163 totalRewards = 4 +1056163 countPokes1 = 3 +1056163 countRewards1 = 1 +1056163 leafProbs1 = 80 +1056164 countPokes2 = 1 +1056164 countRewards2 = 1 +1056178 leafProbs2 = 20 +1056179 countPokes3 = 0 +1056179 countRewards3 = 0 +1056179 leafProbs3 = 20 +1056179 countPokes4 = 0 +1056180 countRewards4 = 0 +1056180 leafProbs4 = 50 +1056181 countPokes5 = 1 +1056181 countRewards5 = 1 +1056195 leafProbs5 = 80 +1056195 countPokes6 = 2 +1056195 countRewards6 = 1 +1056196 leafProbs6 = 50 +~~~ +1075389 UP 1 +1075389 1 0 +1077673 DOWN 1 +1077673 0 0 +1080094 UP 1 +1080094 1 0 +1080643 DOWN 1 +1080643 0 0 +1081045 UP 1 +1081045 1 0 +1081200 DOWN 1 +1081200 0 0 +1083005 UP 1 +1083005 1 0 +1083449 DOWN 1 +1083449 0 0 +1102276 UP 1 +1102276 1 0 +1102327 DOWN 1 +1102327 0 0 +1102345 UP 1 +1102345 1 0 +1102777 DOWN 1 +1102777 0 0 +1102819 UP 1 +1102819 1 0 +1102934 DOWN 1 +1102934 0 0 +1103297 UP 1 +1103297 1 0 +1103387 DOWN 1 +1103387 0 0 +1103417 UP 1 +1103417 1 0 +1103475 DOWN 1 +1103475 0 0 +1103807 UP 1 +1103807 1 0 +1103947 DOWN 1 +1103947 0 0 +1103991 UP 1 +1103991 1 0 +1104026 DOWN 1 +1104026 0 0 +1118606 UP 1 +1118606 1 0 +1118640 DOWN 1 +1118640 0 0 +1131899 UP 6 +1131899 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1132172 DOWN 6 +1132172 0 0 +1132200 UP 6 +1132200 32 0 +~~~ +1132203 contingency = 1 +1132203 trialThresh = 100 +1132204 timeMaxOut = 20 +1132204 timeElapsed = 6 +1132204 totalPokes = 8 +1132204 totalRewards = 4 +1132205 countPokes1 = 3 +1132205 countRewards1 = 1 +1132205 leafProbs1 = 80 +1132206 countPokes2 = 1 +1132206 countRewards2 = 1 +1132220 leafProbs2 = 20 +1132220 countPokes3 = 0 +1132220 countRewards3 = 0 +1132221 leafProbs3 = 20 +1132221 countPokes4 = 0 +1132222 countRewards4 = 0 +1132222 leafProbs4 = 50 +1132222 countPokes5 = 1 +1132222 countRewards5 = 1 +1132237 leafProbs5 = 80 +1132237 countPokes6 = 3 +1132238 countRewards6 = 1 +1132238 leafProbs6 = 50 +~~~ +1132394 DOWN 6 +1132394 0 0 +1132422 UP 6 +1132422 32 0 +1132437 DOWN 6 +1132437 0 0 +1157002 UP 6 +1157002 32 0 +1157518 DOWN 6 +1157518 0 0 +1160471 UP 1 +1160471 1 0 +1160482 DOWN 1 +1160482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1160504 UP 1 +1160504 1 0 +~~~ +1160510 contingency = 1 +1160510 trialThresh = 100 +1160510 timeMaxOut = 20 +1160511 timeElapsed = 7 +1160511 totalPokes = 9 +1160512 totalRewards = 4 +1160512 countPokes1 = 4 +1160512 countRewards1 = 1 +1160512 leafProbs1 = 80 +1160513 countPokes2 = 1 +1160513 countRewards2 = 1 +1160527 leafProbs2 = 20 +1160528 countPokes3 = 0 +1160528 countRewards3 = 0 +1160528 leafProbs3 = 20 +1160528 countPokes4 = 0 +1160528 countRewards4 = 0 +1160529 leafProbs4 = 50 +1160529 countPokes5 = 1 +1160530 countRewards5 = 1 +1160544 leafProbs5 = 80 +1160544 countPokes6 = 3 +1160544 countRewards6 = 1 +1160545 leafProbs6 = 50 +~~~ +1160809 DOWN 1 +1160809 0 0 +1160823 UP 1 +1160823 1 0 +1160943 DOWN 1 +1160943 0 0 + + description: state script log run 2 + task_epochs: 4, +] +2021-01-27 19:51:24,794 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 19:51:25,739 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 19:51:25,743 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 19:51:25,743 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 19:51:25,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 19:51:25,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 19:51:25,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 19:51:25,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 19:51:25,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 19:51:25,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 19:51:25,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 19:51:25,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 19:51:25,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 19:51:25,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 19:51:26,347 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 19:51:26,375 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 19:51:26,378 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 19:51:26,379 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 19:51:26,379 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 19:51:28,732 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 19:51:28,734 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 19:54:52,175 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 19:54:52,176 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 19:54:52,181 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 19:54:52,183 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 19:54:52,184 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 19:54:52,575 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 19:55:44,940 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-27 19:58:05,942 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat +2021-01-27 19:59:08,971 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat +2021-01-27 20:00:26,336 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 20:00:26,362 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 20:00:26,364 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 20:05:15,928 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 20:05:16,072 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 20:05:16,073 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 20:05:16,074 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 20:05:16,075 rec_to_binaries.core: INFO Extracting time... +2021-01-27 20:05:47,224 rec_to_binaries.core: INFO Making position directory... +2021-01-27 20:05:47,266 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 20:05:47,266 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 20:05:47,266 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 20:05:47,267 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 20:05:47,682 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-27 20:05:47,967 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 20:05:48,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 20:05:48,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 20:05:48,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 20:05:48,349 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 20:05:48,349 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 20:05:48,350 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140432540158480 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140432540158288 +Fields: + content: # +#% author: AC +#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 +#% same as branch_always_reward_no_revisit.sc +# +#%initialize constant vars +#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min +#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later +# +#%initialize updating vars +#int rewardPump = 0 %can take on values 7-12 in fxn 1 +#int rewardWell = 0 %can take on values 1-6 in fxn 4 +#int timeElapsed = 0 +#int totalPokes = 0 +#int totalRewards = 0 +#int contingency = -1 +#int count = 0 +#int loopInterval = 250 +#int trialThresh = 0 +#int timeMaxOut = 0 +# +#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being +#int leafProbs2 = 0 +#int leafProbs3 = 0 +#int leafProbs4 = 0 +#int leafProbs5 = 0 +#int leafProbs6 = 0 +# +#int countPokes1 = 0 +#int countPokes2 = 0 +#int countPokes3 = 0 +#int countPokes4 = 0 +#int countPokes5 = 0 +#int countPokes6 = 0 +# +#int countRewards1 = 0 +#int countRewards2 = 0 +#int countRewards3 = 0 +#int countRewards4 = 0 +#int countRewards5 = 0 +#int countRewards6 = 0 +# +#int sessionProbs1 = 0 +#int sessionProbs2 = 0 +#int sessionProbs3 = 0 +#int sessionProbs4 = 0 +#int sessionProbs5 = 0 +#int sessionProbs6 = 0 +# +#%give reward for certain duration after certain delay +#function 1 +# do in delayRewardPeriod +# portout[rewardPump] = 1 %start rewarding with this pump dio +# do in deliverPeriod +# portout[rewardPump] = 0 %stop rewarding with this pump dio +# end +# end +#end; +# +#%keep track of animal behavior and display for experimenter +#function 2 +# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... +# disp(contingency) +# disp(trialThresh) +# disp(timeMaxOut) +# disp(timeElapsed) %length of session thus far +# disp(totalPokes) %how many nonrepeated well visits thus far +# disp(totalRewards) %how many rewards collected thus far +# +# disp(countPokes1) %how many pokes at each well, 6x1 array turned str +# disp(countRewards1) %how many rewards collected per well +# disp(leafProbs1) %experimenter-determined probabilities of reward per well +# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke +# +# disp(countPokes2) +# disp(countRewards2) +# disp(leafProbs2) +# %disp(sessionProbs2) +# +# disp(countPokes3) +# disp(countRewards3) +# disp(leafProbs3) +# %disp(sessionProbs3) +# +# disp(countPokes4) +# disp(countRewards4) +# disp(leafProbs4) +# %disp(sessionProbs4) +# +# disp(countPokes5) +# disp(countRewards5) +# disp(leafProbs5) +# %disp(sessionProbs5) +# +# disp(countPokes6) +# disp(countRewards6) +# disp(leafProbs6) +# %disp(sessionProbs6) +#end; +# +# +#%tell the user that the contingency is complete +#function 3 +# disp('This contingency is over!') +#end; +# +#%end session +#function 4 +# while count < 50 do every loopInterval +# portout[1] = flip +# portout[2] = flip +# portout[3] = flip +# portout[4] = flip +# portout[5] = flip +# portout[6] = flip +# count = count+1 +# then do +# portout[1] = 0 +# portout[2] = 0 +# portout[3] = 0 +# portout[4] = 0 +# portout[5] = 0 +# portout[6] = 0 +# end +# disp('This session is complete!') +#end; +# +# +#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) +#callback portin[1] up +# disp('UP 1') +#end; +# +#callback portin[1] down +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# disp('UP 2') +#end; +# +#callback portin[2] down +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# disp('UP 3') +#end; +# +#callback portin[3] down +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# disp('UP 4') +#end; +# +#callback portin[4] down +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# disp('UP 5') +#end; +# +#callback portin[5] down +# disp('DOWN 5') +#end; +#callback portin[6] up +# disp('UP 6') +#end; +# +#callback portin[6] down +# disp('DOWN 6') +#end; +# +# +# +##author: AC +##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 +##contingency changes occur automatically after either a # of trials or # of minutes +#''' +#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur +#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. +# +#Basic structure: +#if nosepoke at a well +#if the nosepoke!= last nosepoke location +# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p +# trigger(fxn1) #deliver reward, and stop after reward duration +#display updated trial info +#''' +# +##import +#import numpy as np +#import re +#import time +#import math +#from tkinter import * +# +##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) +#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. +#trialThresh = 100 #per contingency +#timeMaxOut = 20 #per contingency, in mins +# +##set up wells and pumps dios +#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info +#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery +# +##variables to keep track of and update during behavior (global) +#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. +#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. +#timeElapsed = 0 #session length thus far in mins +#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. +#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) +#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward +#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 +#runningTrials = False #must say yes to saving data to turn this to true +# +##THIS FXN MUST BE NAMED 'callback'!! +#def callback(line): +# #when an event occurs out on the track, addScQtEvent will call this fxn +# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) +# pokeIn(re.findall(r'\d+',line)) +# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, +# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" +# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) +# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells +# +##when animal nosepokes and breaks beam +#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes +# global currLeaf +# global timeStart +# global leafWells +# global lastLeaf +# global countPokes +# global leafProbs +# global leafPumps +# global contingency +# global countRewards +# global runningTrials +# global timeElapsed +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# if currLeaf == -1: #if it's the first trial in the contingency +# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke +# #if timeElapsed >= timeMaxOut: +# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency +# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency +# #change. sort of defeats the purpose of the floor approach right now. +# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") +# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") +# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") +# timeStart = time.time() #start time for the contingency +# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency +# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") +# countPokes = np.array([0,0,0,0,0,0]) +# countRewards = np.array([0,0,0,0,0,0]) +# for i in range(len(countPokes)): #initialize all as zero +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# for i in range(len(countRewards)): #initialize all as zero +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 +# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump +# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well +# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf +# for i in range(len(countPokes)): +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") +# if np.random.random_sample() < leafProbs[contingency][currLeaf]: +# deliverReward(leafPumps[currLeaf]) +# +##deliver reward, called upon poking in a nonrepeated well +#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps +# global currLeaf +# global rewardPump +# global countRewards +# +# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use +# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward +# countRewards[currLeaf] += 1 #increment num of rewards at this location +# for i in range(len(countRewards)): +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") +# +##update lastLeaf and print out info about the trial if it was at a nonrepeated well +#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells +# global leafWells +# global currLeaf +# global lastLeaf +# global timeElapsed +# global timeStart +# global countPokes +# global countRewards +# global leafProbs +# global contingency +# global runningTrials +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# #if leafWells.index(int(dio[1])) != currLeaf +# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. +# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far +# timeElapsed = round((time.time()-timeStart)/60) +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log +# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn +# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. +# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): +# if contingency < len(leafProbs) - 1: +# currLeaf = -1 #to enable shifting to next contingency +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# timeElapsed = 0 +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# if contingency == len(leafProbs) - 1: +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# runningTrials = False #so no more rewards or anything happen on track +# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session +# +##gui to help remind user that should have saved data +#savingDisp = Tk() +# +#def yesSaving(): +# global runningTrials +# savingDisp.destroy() +# runningTrials=True +# +#def noSaving(): +# savingDisp.destroy() +# +#saveFrame1 = Frame(savingDisp) +#saveFrame1.pack(side = TOP) +# +#saveFrame2 = Frame(savingDisp) +#saveFrame2.pack(side = BOTTOM) +# +#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") +#LS0.pack() +# +#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) +#B1.pack(side = LEFT) +# +#B2 = Button(saveFrame2, text ="No", command = noSaving) +#B2.pack(side = LEFT) +# +#savingDisp.mainloop() +# +# +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94048 UP 1 +94048 1 0 +94058 DOWN 1 +94058 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94112 contingency = 0 +94112 trialThresh = 100 +94112 timeMaxOut = 20 +94112 timeElapsed = 0 +94112 totalPokes = 1 +94113 totalRewards = 0 +94113 countPokes1 = 1 +94114 countRewards1 = 0 +94114 leafProbs1 = 80 +94114 countPokes2 = 0 +94114 countRewards2 = 0 +94128 leafProbs2 = 20 +94129 countPokes3 = 0 +94129 countRewards3 = 0 +94130 leafProbs3 = 20 +94130 countPokes4 = 0 +94130 countRewards4 = 0 +94130 leafProbs4 = 50 +94131 countPokes5 = 0 +94131 countRewards5 = 0 +94132 leafProbs5 = 80 +94132 countPokes6 = 0 +94146 countRewards6 = 0 +94146 leafProbs6 = 50 +~~~ +95370 UP 1 +95370 1 0 +95396 DOWN 1 +95396 0 0 +95404 UP 1 +95404 1 0 +95415 DOWN 1 +95415 0 0 +95449 UP 1 +95449 1 0 +95507 DOWN 1 +95507 0 0 +95526 UP 1 +95526 1 0 +95527 DOWN 1 +95527 0 0 +95534 UP 1 +95534 1 0 +98011 DOWN 1 +98011 0 0 +109846 UP 6 +109846 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +109947 DOWN 6 +109947 0 0 +109954 UP 6 +109954 32 0 +~~~ +109967 contingency = 0 +109967 trialThresh = 100 +109968 timeMaxOut = 20 +109968 timeElapsed = 0 +109969 totalPokes = 2 +109969 totalRewards = 0 +109969 countPokes1 = 1 +109969 countRewards1 = 0 +109969 leafProbs1 = 80 +109970 countPokes2 = 0 +109970 countRewards2 = 0 +109984 leafProbs2 = 20 +109985 countPokes3 = 0 +109985 countRewards3 = 0 +109985 leafProbs3 = 20 +109985 countPokes4 = 0 +109985 countRewards4 = 0 +109986 leafProbs4 = 50 +109986 countPokes5 = 0 +109987 countRewards5 = 0 +109987 leafProbs5 = 80 +110001 countPokes6 = 1 +110001 countRewards6 = 0 +110001 leafProbs6 = 50 +~~~ +111783 DOWN 6 +111783 0 0 +111799 UP 6 +111799 32 0 +112400 DOWN 6 +112399 0 0 +115161 UP 5 +115161 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115185 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115485 16 0 +115577 DOWN 5 +115577 0 0 +~~~ +115603 contingency = 0 +115603 trialThresh = 100 +115604 timeMaxOut = 20 +115604 timeElapsed = 1 +115605 totalPokes = 3 +115605 totalRewards = 1 +115605 countPokes1 = 1 +115605 countRewards1 = 0 +115606 leafProbs1 = 80 +115606 countPokes2 = 0 +115607 countRewards2 = 0 +115620 leafProbs2 = 20 +115621 countPokes3 = 0 +115621 countRewards3 = 0 +115621 leafProbs3 = 20 +115621 countPokes4 = 0 +115622 countRewards4 = 0 +115622 leafProbs4 = 50 +115623 countPokes5 = 1 +115623 countRewards5 = 1 +115623 leafProbs5 = 80 +115637 countPokes6 = 1 +115637 countRewards6 = 0 +115637 leafProbs6 = 50 +~~~ +115638 UP 5 +115638 16 0 +118235 DOWN 5 +118235 0 0 +118252 UP 5 +118252 16 0 +118676 DOWN 5 +118676 0 0 +124414 UP 4 +124414 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124444 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124564 DOWN 4 +124564 0 512 +124571 UP 4 +124571 8 512 +~~~ +124590 contingency = 0 +124590 trialThresh = 100 +124591 timeMaxOut = 20 +124591 timeElapsed = 1 +124591 totalPokes = 4 +124591 totalRewards = 2 +124592 countPokes1 = 1 +124592 countRewards1 = 0 +124592 leafProbs1 = 80 +124593 countPokes2 = 0 +124593 countRewards2 = 0 +124607 leafProbs2 = 20 +124607 countPokes3 = 0 +124607 countRewards3 = 0 +124608 leafProbs3 = 20 +124608 countPokes4 = 1 +124609 countRewards4 = 1 +124609 leafProbs4 = 50 +124609 countPokes5 = 1 +124609 countRewards5 = 1 +124609 leafProbs5 = 80 +124623 countPokes6 = 1 +124623 countRewards6 = 0 +124624 leafProbs6 = 50 +~~~ +124744 8 0 +127285 DOWN 4 +127285 0 0 +128916 UP 3 +128916 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +131495 DOWN 3 +131495 0 0 +131506 UP 3 +131506 4 0 +~~~ +131522 contingency = 0 +131523 trialThresh = 100 +131523 timeMaxOut = 20 +131523 timeElapsed = 1 +131523 totalPokes = 5 +131524 totalRewards = 2 +131524 countPokes1 = 1 +131525 countRewards1 = 0 +131525 leafProbs1 = 80 +131525 countPokes2 = 0 +131525 countRewards2 = 0 +131539 leafProbs2 = 20 +131539 countPokes3 = 1 +131540 countRewards3 = 0 +131540 leafProbs3 = 20 +131541 countPokes4 = 1 +131541 countRewards4 = 1 +131541 leafProbs4 = 50 +131541 countPokes5 = 1 +131542 countRewards5 = 1 +131542 leafProbs5 = 80 +131556 countPokes6 = 1 +131556 countRewards6 = 0 +131557 leafProbs6 = 50 +~~~ +131829 DOWN 3 +131829 0 0 +131849 UP 3 +131849 4 0 +131922 DOWN 3 +131922 0 0 +134163 UP 4 +134163 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +134675 DOWN 4 +134675 0 0 +~~~ +134693 contingency = 0 +134693 trialThresh = 100 +134693 timeMaxOut = 20 +134694 timeElapsed = 1 +134694 totalPokes = 6 +134695 totalRewards = 2 +134695 countPokes1 = 1 +134695 countRewards1 = 0 +134695 leafProbs1 = 80 +134696 countPokes2 = 0 +134696 countRewards2 = 0 +134710 leafProbs2 = 20 +134710 countPokes3 = 1 +134711 countRewards3 = 0 +134711 leafProbs3 = 20 +134711 countPokes4 = 2 +134711 countRewards4 = 1 +134712 leafProbs4 = 50 +134712 countPokes5 = 1 +134713 countRewards5 = 1 +134713 leafProbs5 = 80 +134727 countPokes6 = 1 +134727 countRewards6 = 0 +134727 leafProbs6 = 50 +~~~ +136327 UP 3 +136327 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +137036 DOWN 3 +137036 0 0 +~~~ +137065 contingency = 0 +137065 trialThresh = 100 +137065 timeMaxOut = 20 +137066 timeElapsed = 1 +137066 totalPokes = 7 +137067 totalRewards = 2 +137067 countPokes1 = 1 +137067 countRewards1 = 0 +137067 leafProbs1 = 80 +137068 countPokes2 = 0 +137068 countRewards2 = 0 +137082 leafProbs2 = 20 +137082 countPokes3 = 2 +137083 countRewards3 = 0 +137083 leafProbs3 = 20 +137083 countPokes4 = 2 +137083 countRewards4 = 1 +137084 leafProbs4 = 50 +137084 countPokes5 = 1 +137085 countRewards5 = 1 +137085 leafProbs5 = 80 +137099 countPokes6 = 1 +137099 countRewards6 = 0 +137099 leafProbs6 = 50 +~~~ +143600 UP 5 +143600 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143854 DOWN 5 +143854 0 0 +~~~ +143877 contingency = 0 +143877 trialThresh = 100 +143877 timeMaxOut = 20 +143878 timeElapsed = 1 +143878 totalPokes = 8 +143879 totalRewards = 2 +143879 countPokes1 = 1 +143879 countRewards1 = 0 +143879 leafProbs1 = 80 +143880 countPokes2 = 0 +143880 countRewards2 = 0 +143894 leafProbs2 = 20 +143894 countPokes3 = 2 +143895 countRewards3 = 0 +143895 leafProbs3 = 20 +143895 countPokes4 = 2 +143895 countRewards4 = 1 +143896 leafProbs4 = 50 +143896 countPokes5 = 2 +143897 countRewards5 = 1 +143897 leafProbs5 = 80 +143911 countPokes6 = 1 +143911 countRewards6 = 0 +143911 leafProbs6 = 50 +~~~ +143911 UP 5 +143911 16 0 +144383 DOWN 5 +144383 0 0 +146591 UP 6 +146591 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146617 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146917 32 0 +147061 DOWN 6 +147061 0 0 +~~~ +147089 contingency = 0 +147090 trialThresh = 100 +147090 timeMaxOut = 20 +147091 timeElapsed = 1 +147091 totalPokes = 9 +147091 totalRewards = 3 +147091 countPokes1 = 1 +147092 countRewards1 = 0 +147092 leafProbs1 = 80 +147093 countPokes2 = 0 +147093 countRewards2 = 0 +147107 leafProbs2 = 20 +147107 countPokes3 = 2 +147107 countRewards3 = 0 +147107 leafProbs3 = 20 +147108 countPokes4 = 2 +147108 countRewards4 = 1 +147109 leafProbs4 = 50 +147109 countPokes5 = 2 +147109 countRewards5 = 1 +147109 leafProbs5 = 80 +147123 countPokes6 = 2 +147123 countRewards6 = 1 +147124 leafProbs6 = 50 +~~~ +147124 UP 6 +147124 32 0 +147150 DOWN 6 +147150 0 0 +147157 UP 6 +147157 32 0 +149454 DOWN 6 +149454 0 0 +160370 UP 1 +160370 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160397 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160522 DOWN 1 +160522 0 64 +160533 UP 1 +160533 1 64 +~~~ +160544 contingency = 0 +160544 trialThresh = 100 +160544 timeMaxOut = 20 +160545 timeElapsed = 2 +160545 totalPokes = 10 +160546 totalRewards = 4 +160546 countPokes1 = 2 +160546 countRewards1 = 1 +160546 leafProbs1 = 80 +160547 countPokes2 = 0 +160547 countRewards2 = 0 +160561 leafProbs2 = 20 +160561 countPokes3 = 2 +160562 countRewards3 = 0 +160562 leafProbs3 = 20 +160562 countPokes4 = 2 +160562 countRewards4 = 1 +160563 leafProbs4 = 50 +160563 countPokes5 = 2 +160564 countRewards5 = 1 +160564 leafProbs5 = 80 +160578 countPokes6 = 2 +160578 countRewards6 = 1 +160578 leafProbs6 = 50 +~~~ +160697 1 0 +163834 DOWN 1 +163834 0 0 +166987 UP 2 +166987 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +167144 DOWN 2 +167144 0 0 +167149 UP 2 +167149 2 0 +~~~ +167168 contingency = 0 +167168 trialThresh = 100 +167169 timeMaxOut = 20 +167169 timeElapsed = 2 +167170 totalPokes = 11 +167170 totalRewards = 4 +167170 countPokes1 = 2 +167170 countRewards1 = 1 +167171 leafProbs1 = 80 +167171 countPokes2 = 1 +167172 countRewards2 = 0 +167186 leafProbs2 = 20 +167186 countPokes3 = 2 +167186 countRewards3 = 0 +167186 leafProbs3 = 20 +167186 countPokes4 = 2 +167187 countRewards4 = 1 +167187 leafProbs4 = 50 +167188 countPokes5 = 2 +167188 countRewards5 = 1 +167188 leafProbs5 = 80 +167202 countPokes6 = 2 +167202 countRewards6 = 1 +167202 leafProbs6 = 50 +~~~ +169470 DOWN 2 +169470 0 0 +169499 UP 2 +169499 2 0 +169914 DOWN 2 +169914 0 0 +178210 UP 1 +178210 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178233 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178533 1 0 +181346 DOWN 1 +181346 0 0 +~~~ +181372 contingency = 0 +181372 trialThresh = 100 +181372 timeMaxOut = 20 +181373 timeElapsed = 2 +181373 totalPokes = 12 +181374 totalRewards = 5 +181374 countPokes1 = 3 +181374 countRewards1 = 2 +181374 leafProbs1 = 80 +181375 countPokes2 = 1 +181375 countRewards2 = 0 +181389 leafProbs2 = 20 +181389 countPokes3 = 2 +181390 countRewards3 = 0 +181390 leafProbs3 = 20 +181390 countPokes4 = 2 +181390 countRewards4 = 1 +181391 leafProbs4 = 50 +181391 countPokes5 = 2 +181392 countRewards5 = 1 +181392 leafProbs5 = 80 +181406 countPokes6 = 2 +181406 countRewards6 = 1 +181406 leafProbs6 = 50 +~~~ +184630 UP 2 +184630 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184804 DOWN 2 +184804 0 0 +184815 UP 2 +184815 2 0 +~~~ +184832 contingency = 0 +184832 trialThresh = 100 +184832 timeMaxOut = 20 +184832 timeElapsed = 2 +184833 totalPokes = 13 +184833 totalRewards = 5 +184834 countPokes1 = 3 +184834 countRewards1 = 2 +184834 leafProbs1 = 80 +184834 countPokes2 = 2 +184835 countRewards2 = 0 +184849 leafProbs2 = 20 +184849 countPokes3 = 2 +184850 countRewards3 = 0 +184850 leafProbs3 = 20 +184850 countPokes4 = 2 +184850 countRewards4 = 1 +184850 leafProbs4 = 50 +184851 countPokes5 = 2 +184851 countRewards5 = 1 +184852 leafProbs5 = 80 +184865 countPokes6 = 2 +184866 countRewards6 = 1 +184866 leafProbs6 = 50 +~~~ +185326 DOWN 2 +185326 0 0 +185333 UP 2 +185333 2 0 +185995 DOWN 2 +185995 0 0 +189960 UP 1 +189960 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190078 DOWN 1 +190078 0 0 +190080 UP 1 +190080 1 0 +~~~ +190098 contingency = 0 +190099 trialThresh = 100 +190099 timeMaxOut = 20 +190100 timeElapsed = 2 +190100 totalPokes = 14 +190100 totalRewards = 5 +190100 countPokes1 = 4 +190101 countRewards1 = 2 +190101 leafProbs1 = 80 +190101 countPokes2 = 2 +190102 countRewards2 = 0 +190116 leafProbs2 = 20 +190116 countPokes3 = 2 +190116 countRewards3 = 0 +190116 leafProbs3 = 20 +190117 countPokes4 = 2 +190117 countRewards4 = 1 +190118 leafProbs4 = 50 +190118 countPokes5 = 2 +190118 countRewards5 = 1 +190118 leafProbs5 = 80 +190132 countPokes6 = 2 +190132 countRewards6 = 1 +190132 leafProbs6 = 50 +~~~ +190133 DOWN 1 +190133 0 0 +190160 UP 1 +190160 1 0 +190248 DOWN 1 +190248 0 0 +190276 UP 1 +190276 1 0 +190356 DOWN 1 +190356 0 0 +190391 UP 1 +190391 1 0 +190481 DOWN 1 +190481 0 0 +190555 UP 1 +190555 1 0 +190570 DOWN 1 +190570 0 0 +190849 UP 1 +190849 1 0 +190908 DOWN 1 +190908 0 0 +193661 UP 2 +193661 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +193935 DOWN 2 +193935 0 0 +193938 UP 2 +193938 2 0 +~~~ +193959 contingency = 0 +193959 trialThresh = 100 +193960 timeMaxOut = 20 +193960 timeElapsed = 2 +193960 totalPokes = 15 +193960 totalRewards = 5 +193961 countPokes1 = 4 +193961 countRewards1 = 2 +193962 leafProbs1 = 80 +193962 countPokes2 = 3 +193962 countRewards2 = 0 +193976 leafProbs2 = 20 +193976 countPokes3 = 2 +193977 countRewards3 = 0 +193977 leafProbs3 = 20 +193977 countPokes4 = 2 +193978 countRewards4 = 1 +193978 leafProbs4 = 50 +193978 countPokes5 = 2 +193978 countRewards5 = 1 +193979 leafProbs5 = 80 +193992 countPokes6 = 2 +193993 countRewards6 = 1 +193993 leafProbs6 = 50 +~~~ +194100 DOWN 2 +194100 0 0 +196098 UP 1 +196098 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196123 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196423 1 0 +196514 DOWN 1 +196514 0 0 +196516 UP 1 +196516 1 0 +~~~ +196532 contingency = 0 +196532 trialThresh = 100 +196532 timeMaxOut = 20 +196533 timeElapsed = 3 +196533 totalPokes = 16 +196534 totalRewards = 6 +196534 countPokes1 = 5 +196534 countRewards1 = 3 +196534 leafProbs1 = 80 +196534 countPokes2 = 3 +196535 countRewards2 = 0 +196549 leafProbs2 = 20 +196549 countPokes3 = 2 +196550 countRewards3 = 0 +196550 leafProbs3 = 20 +196550 countPokes4 = 2 +196550 countRewards4 = 1 +196551 leafProbs4 = 50 +196551 countPokes5 = 2 +196551 countRewards5 = 1 +196552 leafProbs5 = 80 +196565 countPokes6 = 2 +196566 countRewards6 = 1 +196566 leafProbs6 = 50 +~~~ +198509 DOWN 1 +198509 0 0 +202035 UP 1 +202035 1 0 +202194 DOWN 1 +202194 0 0 +213522 UP 6 +213522 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +213903 DOWN 6 +213903 0 0 +213919 UP 6 +213919 32 0 +~~~ +213923 contingency = 0 +213923 trialThresh = 100 +213924 timeMaxOut = 20 +213924 timeElapsed = 3 +213925 totalPokes = 17 +213925 totalRewards = 6 +213925 countPokes1 = 5 +213925 countRewards1 = 3 +213926 leafProbs1 = 80 +213926 countPokes2 = 3 +213927 countRewards2 = 0 +213940 leafProbs2 = 20 +213941 countPokes3 = 2 +213941 countRewards3 = 0 +213941 leafProbs3 = 20 +213941 countPokes4 = 2 +213942 countRewards4 = 1 +213942 leafProbs4 = 50 +213943 countPokes5 = 2 +213943 countRewards5 = 1 +213943 leafProbs5 = 80 +213957 countPokes6 = 3 +213957 countRewards6 = 1 +213957 leafProbs6 = 50 +~~~ +213962 DOWN 6 +213962 0 0 +218705 UP 5 +218705 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +218741 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +219041 16 0 +220419 DOWN 5 +220419 0 0 +220425 UP 5 +220425 16 0 +~~~ +220436 contingency = 0 +220436 trialThresh = 100 +220437 timeMaxOut = 20 +220437 timeElapsed = 3 +220437 totalPokes = 18 +220437 totalRewards = 7 +220437 countPokes1 = 5 +220438 countRewards1 = 3 +220438 leafProbs1 = 80 +220439 countPokes2 = 3 +220439 countRewards2 = 0 +220453 leafProbs2 = 20 +220453 countPokes3 = 2 +220453 countRewards3 = 0 +220454 leafProbs3 = 20 +220454 countPokes4 = 2 +220455 countRewards4 = 1 +220455 leafProbs4 = 50 +220455 countPokes5 = 3 +220455 countRewards5 = 2 +220455 leafProbs5 = 80 +220469 countPokes6 = 3 +220469 countRewards6 = 1 +220470 leafProbs6 = 50 +~~~ +221126 DOWN 5 +221126 0 0 +221145 UP 5 +221145 16 0 +221557 DOWN 5 +221557 0 0 +225579 UP 6 +225579 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +225814 DOWN 6 +225814 0 0 +225835 UP 6 +225835 32 0 +~~~ +225843 contingency = 0 +225843 trialThresh = 100 +225843 timeMaxOut = 20 +225844 timeElapsed = 3 +225844 totalPokes = 19 +225845 totalRewards = 7 +225845 countPokes1 = 5 +225845 countRewards1 = 3 +225845 leafProbs1 = 80 +225846 countPokes2 = 3 +225846 countRewards2 = 0 +225860 leafProbs2 = 20 +225860 countPokes3 = 2 +225861 countRewards3 = 0 +225861 leafProbs3 = 20 +225861 countPokes4 = 2 +225861 countRewards4 = 1 +225862 leafProbs4 = 50 +225862 countPokes5 = 3 +225863 countRewards5 = 2 +225863 leafProbs5 = 80 +225877 countPokes6 = 4 +225877 countRewards6 = 1 +225877 leafProbs6 = 50 +~~~ +226005 DOWN 6 +226005 0 0 +226079 UP 6 +226079 32 0 +226211 DOWN 6 +226211 0 0 +226241 UP 6 +226241 32 0 +226290 DOWN 6 +226290 0 0 +226389 UP 6 +226389 32 0 +226584 DOWN 6 +226584 0 0 +226651 UP 6 +226651 32 0 +226788 DOWN 6 +226788 0 0 +230377 UP 5 +230377 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230409 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230619 DOWN 5 +230619 0 1024 +230632 UP 5 +230632 16 1024 +~~~ +230647 contingency = 0 +230647 trialThresh = 100 +230647 timeMaxOut = 20 +230647 timeElapsed = 3 +230648 totalPokes = 20 +230648 totalRewards = 8 +230649 countPokes1 = 5 +230649 countRewards1 = 3 +230649 leafProbs1 = 80 +230649 countPokes2 = 3 +230650 countRewards2 = 0 +230663 leafProbs2 = 20 +230664 countPokes3 = 2 +230664 countRewards3 = 0 +230665 leafProbs3 = 20 +230665 countPokes4 = 2 +230665 countRewards4 = 1 +230665 leafProbs4 = 50 +230666 countPokes5 = 4 +230666 countRewards5 = 3 +230667 leafProbs5 = 80 +230680 countPokes6 = 4 +230681 countRewards6 = 1 +230681 leafProbs6 = 50 +~~~ +230708 16 0 +232797 DOWN 5 +232796 0 0 +232802 UP 5 +232802 16 0 +232900 DOWN 5 +232900 0 0 +232928 UP 5 +232928 16 0 +233233 DOWN 5 +233233 0 0 +233256 UP 5 +233256 16 0 +233319 DOWN 5 +233319 0 0 +235867 UP 6 +235867 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +235898 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +236198 32 0 +238601 DOWN 6 +238601 0 0 +238614 UP 6 +238614 32 0 +~~~ +238631 contingency = 0 +238631 trialThresh = 100 +238631 timeMaxOut = 20 +238631 timeElapsed = 4 +238632 totalPokes = 21 +238632 totalRewards = 9 +238632 countPokes1 = 5 +238633 countRewards1 = 3 +238633 leafProbs1 = 80 +238633 countPokes2 = 3 +238633 countRewards2 = 0 +238647 leafProbs2 = 20 +238648 countPokes3 = 2 +238648 countRewards3 = 0 +238649 leafProbs3 = 20 +238649 countPokes4 = 2 +238649 countRewards4 = 1 +238649 leafProbs4 = 50 +238650 countPokes5 = 4 +238650 countRewards5 = 3 +238650 leafProbs5 = 80 +238664 countPokes6 = 5 +238664 countRewards6 = 2 +238665 leafProbs6 = 50 +~~~ +239049 DOWN 6 +239049 0 0 +250071 UP 1 +250071 1 0 +~~~ +~~~ +250097 DOWN 1 +250097 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250103 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250129 UP 1 +250129 1 64 +~~~ +250136 contingency = 0 +250137 trialThresh = 100 +250137 timeMaxOut = 20 +250137 timeElapsed = 4 +250137 totalPokes = 22 +250137 totalRewards = 10 +250138 countPokes1 = 6 +250138 countRewards1 = 4 +250139 leafProbs1 = 80 +250139 countPokes2 = 3 +250139 countRewards2 = 0 +250153 leafProbs2 = 20 +250153 countPokes3 = 2 +250154 countRewards3 = 0 +250154 leafProbs3 = 20 +250155 countPokes4 = 2 +250155 countRewards4 = 1 +250155 leafProbs4 = 50 +250155 countPokes5 = 4 +250156 countRewards5 = 3 +250156 leafProbs5 = 80 +250170 countPokes6 = 5 +250170 countRewards6 = 2 +250170 leafProbs6 = 50 +~~~ +250171 DOWN 1 +250171 0 64 +250204 UP 1 +250204 1 64 +250248 DOWN 1 +250248 0 64 +250280 UP 1 +250280 1 64 +250403 1 0 +250446 DOWN 1 +250446 0 0 +250455 UP 1 +250455 1 0 +253556 DOWN 1 +253556 0 0 +256084 UP 2 +256084 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256264 DOWN 2 +256264 0 0 +256267 UP 2 +256267 2 0 +~~~ +256282 contingency = 0 +256282 trialThresh = 100 +256282 timeMaxOut = 20 +256282 timeElapsed = 4 +256282 totalPokes = 23 +256283 totalRewards = 10 +256283 countPokes1 = 6 +256284 countRewards1 = 4 +256284 leafProbs1 = 80 +256284 countPokes2 = 4 +256284 countRewards2 = 0 +256298 leafProbs2 = 20 +256299 countPokes3 = 2 +256299 countRewards3 = 0 +256300 leafProbs3 = 20 +256300 countPokes4 = 2 +256300 countRewards4 = 1 +256300 leafProbs4 = 50 +256301 countPokes5 = 4 +256301 countRewards5 = 3 +256302 leafProbs5 = 80 +256315 countPokes6 = 5 +256316 countRewards6 = 2 +256316 leafProbs6 = 50 +~~~ +256546 DOWN 2 +256546 0 0 +256572 UP 2 +256572 2 0 +256748 DOWN 2 +256748 0 0 +258880 UP 1 +258880 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +258914 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +259214 1 0 +261848 DOWN 1 +261848 0 0 +~~~ +261868 contingency = 0 +261868 trialThresh = 100 +261868 timeMaxOut = 20 +261868 timeElapsed = 4 +261869 totalPokes = 24 +261869 totalRewards = 11 +261870 countPokes1 = 7 +261870 countRewards1 = 5 +261870 leafProbs1 = 80 +261870 countPokes2 = 4 +261870 countRewards2 = 0 +261884 leafProbs2 = 20 +261885 countPokes3 = 2 +261885 countRewards3 = 0 +261886 leafProbs3 = 20 +261886 countPokes4 = 2 +261886 countRewards4 = 1 +261886 leafProbs4 = 50 +261887 countPokes5 = 4 +261887 countRewards5 = 3 +261888 leafProbs5 = 80 +261901 countPokes6 = 5 +261902 countRewards6 = 2 +261902 leafProbs6 = 50 +~~~ +267560 UP 2 +267560 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +267886 DOWN 2 +267886 0 0 +267900 UP 2 +267900 2 0 +~~~ +267911 contingency = 0 +267911 trialThresh = 100 +267912 timeMaxOut = 20 +267912 timeElapsed = 4 +267912 totalPokes = 25 +267912 totalRewards = 11 +267913 countPokes1 = 7 +267913 countRewards1 = 5 +267914 leafProbs1 = 80 +267914 countPokes2 = 5 +267914 countRewards2 = 0 +267928 leafProbs2 = 20 +267928 countPokes3 = 2 +267928 countRewards3 = 0 +267929 leafProbs3 = 20 +267929 countPokes4 = 2 +267930 countRewards4 = 1 +267930 leafProbs4 = 50 +267930 countPokes5 = 4 +267930 countRewards5 = 3 +267931 leafProbs5 = 80 +267944 countPokes6 = 5 +267945 countRewards6 = 2 +267945 leafProbs6 = 50 +~~~ +267946 DOWN 2 +267946 0 0 +272470 UP 2 +272470 2 0 +272489 DOWN 2 +272489 0 0 +272498 UP 2 +272498 2 0 +272506 DOWN 2 +272506 0 0 +275002 UP 1 +275002 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275036 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275336 1 0 +277515 DOWN 1 +277515 0 0 +277520 UP 1 +277520 1 0 +~~~ +277532 contingency = 0 +277533 trialThresh = 100 +277533 timeMaxOut = 20 +277534 timeElapsed = 5 +277534 totalPokes = 26 +277534 totalRewards = 12 +277534 countPokes1 = 8 +277534 countRewards1 = 6 +277535 leafProbs1 = 80 +277535 countPokes2 = 5 +277536 countRewards2 = 0 +277550 leafProbs2 = 20 +277550 countPokes3 = 2 +277550 countRewards3 = 0 +277550 leafProbs3 = 20 +277551 countPokes4 = 2 +277551 countRewards4 = 1 +277552 leafProbs4 = 50 +277552 countPokes5 = 4 +277552 countRewards5 = 3 +277552 leafProbs5 = 80 +277566 countPokes6 = 5 +277566 countRewards6 = 2 +277566 leafProbs6 = 50 +~~~ +277832 DOWN 1 +277832 0 0 +284331 UP 1 +284331 1 0 +284497 DOWN 1 +284497 0 0 +290436 UP 2 +290436 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +291663 DOWN 2 +291663 0 0 +~~~ +291685 contingency = 0 +291686 trialThresh = 100 +291686 timeMaxOut = 20 +291686 timeElapsed = 5 +291686 totalPokes = 27 +291687 totalRewards = 12 +291687 countPokes1 = 8 +291688 countRewards1 = 6 +291688 leafProbs1 = 80 +291688 countPokes2 = 6 +291688 countRewards2 = 0 +291702 leafProbs2 = 20 +291702 countPokes3 = 2 +291703 countRewards3 = 0 +291703 leafProbs3 = 20 +291704 countPokes4 = 2 +291704 countRewards4 = 1 +291704 leafProbs4 = 50 +291704 countPokes5 = 4 +291705 countRewards5 = 3 +291705 leafProbs5 = 80 +291719 countPokes6 = 5 +291719 countRewards6 = 2 +291720 leafProbs6 = 50 +~~~ +298521 UP 1 +298521 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298560 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298859 1 0 +301302 DOWN 1 +301302 0 0 +301320 UP 1 +301320 1 0 +~~~ +301324 contingency = 0 +301324 trialThresh = 100 +301324 timeMaxOut = 20 +301324 timeElapsed = 5 +301325 totalPokes = 28 +301325 totalRewards = 13 +301326 countPokes1 = 9 +301326 countRewards1 = 7 +301326 leafProbs1 = 80 +301326 countPokes2 = 6 +301327 countRewards2 = 0 +301341 leafProbs2 = 20 +301341 countPokes3 = 2 +301342 countRewards3 = 0 +301342 leafProbs3 = 20 +301342 countPokes4 = 2 +301342 countRewards4 = 1 +301343 leafProbs4 = 50 +301343 countPokes5 = 4 +301343 countRewards5 = 3 +301344 leafProbs5 = 80 +301357 countPokes6 = 5 +301358 countRewards6 = 2 +301358 leafProbs6 = 50 +~~~ +301818 DOWN 1 +301818 0 0 +308157 UP 2 +308157 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +308409 DOWN 2 +308409 0 0 +~~~ +308433 contingency = 0 +308433 trialThresh = 100 +308433 timeMaxOut = 20 +308434 timeElapsed = 5 +308434 totalPokes = 29 +308435 totalRewards = 13 +308435 countPokes1 = 9 +308435 countRewards1 = 7 +308435 leafProbs1 = 80 +308436 countPokes2 = 7 +308436 countRewards2 = 0 +308450 leafProbs2 = 20 +308451 countPokes3 = 2 +308451 countRewards3 = 0 +308451 leafProbs3 = 20 +308451 countPokes4 = 2 +308452 countRewards4 = 1 +308452 leafProbs4 = 50 +308452 countPokes5 = 4 +308453 countRewards5 = 3 +308453 leafProbs5 = 80 +308467 countPokes6 = 5 +308467 countRewards6 = 2 +308467 leafProbs6 = 50 +~~~ +311726 UP 1 +311726 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +312211 DOWN 1 +312211 0 0 +~~~ +312317 contingency = 0 +312317 trialThresh = 100 +312318 timeMaxOut = 20 +312318 timeElapsed = 5 +312319 totalPokes = 30 +312319 totalRewards = 13 +312319 countPokes1 = 10 +312319 countRewards1 = 7 +312320 leafProbs1 = 80 +312320 countPokes2 = 7 +312321 countRewards2 = 0 +312335 leafProbs2 = 20 +312335 countPokes3 = 2 +312335 countRewards3 = 0 +312335 leafProbs3 = 20 +312335 countPokes4 = 2 +312336 countRewards4 = 1 +312336 leafProbs4 = 50 +312337 countPokes5 = 4 +312337 countRewards5 = 3 +312337 leafProbs5 = 80 +312351 countPokes6 = 5 +312351 countRewards6 = 2 +312351 leafProbs6 = 50 +~~~ +329565 UP 1 +329565 1 0 +329578 DOWN 1 +329578 0 0 +329607 UP 1 +329607 1 0 +329615 DOWN 1 +329615 0 0 +336849 UP 6 +336849 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +337375 DOWN 6 +337375 0 0 +~~~ +337402 contingency = 0 +337403 trialThresh = 100 +337403 timeMaxOut = 20 +337403 timeElapsed = 6 +337403 totalPokes = 31 +337404 totalRewards = 13 +337404 countPokes1 = 10 +337405 countRewards1 = 7 +337405 leafProbs1 = 80 +337405 countPokes2 = 7 +337405 countRewards2 = 0 +337419 leafProbs2 = 20 +337419 countPokes3 = 2 +337420 countRewards3 = 0 +337420 leafProbs3 = 20 +337421 countPokes4 = 2 +337421 countRewards4 = 1 +337421 leafProbs4 = 50 +337421 countPokes5 = 4 +337422 countRewards5 = 3 +337422 leafProbs5 = 80 +337436 countPokes6 = 6 +337436 countRewards6 = 2 +337437 leafProbs6 = 50 +~~~ +339595 UP 6 +339595 32 0 +339614 DOWN 6 +339614 0 0 +339917 UP 6 +339917 32 0 +340039 DOWN 6 +340039 0 0 +340062 UP 6 +340062 32 0 +341221 DOWN 6 +341221 0 0 +348806 UP 6 +348806 32 0 +349029 DOWN 6 +349029 0 0 +370690 UP 3 +370690 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +371347 DOWN 3 +371347 0 0 +~~~ +371366 contingency = 0 +371367 trialThresh = 100 +371367 timeMaxOut = 20 +371368 timeElapsed = 7 +371368 totalPokes = 32 +371368 totalRewards = 13 +371368 countPokes1 = 10 +371369 countRewards1 = 7 +371369 leafProbs1 = 80 +371370 countPokes2 = 7 +371370 countRewards2 = 0 +371384 leafProbs2 = 20 +371384 countPokes3 = 3 +371384 countRewards3 = 0 +371385 leafProbs3 = 20 +371385 countPokes4 = 2 +371386 countRewards4 = 1 +371386 leafProbs4 = 50 +371386 countPokes5 = 4 +371386 countRewards5 = 3 +371386 leafProbs5 = 80 +371400 countPokes6 = 6 +371400 countRewards6 = 2 +371401 leafProbs6 = 50 +~~~ +371401 UP 3 +371401 4 0 +371462 DOWN 3 +371462 0 0 +376503 UP 4 +376503 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376533 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376832 8 0 +379496 DOWN 4 +379496 0 0 +~~~ +379512 contingency = 0 +379512 trialThresh = 100 +379512 timeMaxOut = 20 +379512 timeElapsed = 7 +379512 totalPokes = 33 +379513 totalRewards = 14 +379513 countPokes1 = 10 +379514 countRewards1 = 7 +379514 leafProbs1 = 80 +379514 countPokes2 = 7 +379514 countRewards2 = 0 +379528 leafProbs2 = 20 +379529 countPokes3 = 3 +379529 countRewards3 = 0 +379530 leafProbs3 = 20 +379530 countPokes4 = 3 +379530 countRewards4 = 2 +379530 leafProbs4 = 50 +379531 countPokes5 = 4 +379531 countRewards5 = 3 +379532 leafProbs5 = 80 +379545 countPokes6 = 6 +379546 countRewards6 = 2 +379546 leafProbs6 = 50 +~~~ +379546 UP 4 +379546 8 0 +380063 DOWN 4 +380063 0 0 +380421 UP 4 +380421 8 0 +382496 DOWN 4 +382496 0 0 +387918 UP 3 +387918 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +388412 DOWN 3 +388412 0 0 +~~~ +388430 contingency = 0 +388430 trialThresh = 100 +388430 timeMaxOut = 20 +388431 timeElapsed = 7 +388431 totalPokes = 34 +388432 totalRewards = 14 +388432 countPokes1 = 10 +388432 countRewards1 = 7 +388432 leafProbs1 = 80 +388433 countPokes2 = 7 +388433 countRewards2 = 0 +388447 leafProbs2 = 20 +388448 countPokes3 = 4 +388448 countRewards3 = 0 +388448 leafProbs3 = 20 +388448 countPokes4 = 3 +388448 countRewards4 = 2 +388449 leafProbs4 = 50 +388449 countPokes5 = 4 +388450 countRewards5 = 3 +388450 leafProbs5 = 80 +388464 countPokes6 = 6 +388464 countRewards6 = 2 +388464 leafProbs6 = 50 +~~~ +390881 UP 4 +390881 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +390913 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391213 8 0 +393870 DOWN 4 +393870 0 0 +~~~ +393894 contingency = 0 +393894 trialThresh = 100 +393894 timeMaxOut = 20 +393894 timeElapsed = 7 +393895 totalPokes = 35 +393895 totalRewards = 15 +393895 countPokes1 = 10 +393896 countRewards1 = 7 +393896 leafProbs1 = 80 +393896 countPokes2 = 7 +393896 countRewards2 = 0 +393910 leafProbs2 = 20 +393911 countPokes3 = 4 +393911 countRewards3 = 0 +393912 leafProbs3 = 20 +393912 countPokes4 = 4 +393912 countRewards4 = 3 +393912 leafProbs4 = 50 +393913 countPokes5 = 4 +393913 countRewards5 = 3 +393914 leafProbs5 = 80 +393927 countPokes6 = 6 +393928 countRewards6 = 2 +393928 leafProbs6 = 50 +~~~ +396968 UP 3 +396968 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +396991 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +397291 4 0 +397330 DOWN 3 +397330 0 0 +397342 UP 3 +397342 4 0 +~~~ +397350 contingency = 0 +397350 trialThresh = 100 +397351 timeMaxOut = 20 +397351 timeElapsed = 8 +397352 totalPokes = 36 +397352 totalRewards = 16 +397352 countPokes1 = 10 +397352 countRewards1 = 7 +397353 leafProbs1 = 80 +397353 countPokes2 = 7 +397353 countRewards2 = 0 +397368 leafProbs2 = 20 +397368 countPokes3 = 5 +397368 countRewards3 = 1 +397368 leafProbs3 = 20 +397368 countPokes4 = 4 +397369 countRewards4 = 3 +397369 leafProbs4 = 50 +397370 countPokes5 = 4 +397370 countRewards5 = 3 +397370 leafProbs5 = 80 +397384 countPokes6 = 6 +397384 countRewards6 = 2 +397384 leafProbs6 = 50 +~~~ +397422 DOWN 3 +397422 0 0 +397432 UP 3 +397432 4 0 +397510 DOWN 3 +397510 0 0 +397514 UP 3 +397514 4 0 +400532 DOWN 3 +400532 0 0 +419715 UP 4 +419715 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +419745 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420045 8 0 +422470 DOWN 4 +422470 0 0 +422484 UP 4 +422484 8 0 +~~~ +422499 contingency = 0 +422499 trialThresh = 100 +422499 timeMaxOut = 20 +422499 timeElapsed = 8 +422500 totalPokes = 37 +422500 totalRewards = 17 +422501 countPokes1 = 10 +422501 countRewards1 = 7 +422501 leafProbs1 = 80 +422501 countPokes2 = 7 +422502 countRewards2 = 0 +422516 leafProbs2 = 20 +422516 countPokes3 = 5 +422517 countRewards3 = 1 +422517 leafProbs3 = 20 +422517 countPokes4 = 5 +422517 countRewards4 = 4 +422517 leafProbs4 = 50 +422518 countPokes5 = 4 +422518 countRewards5 = 3 +422519 leafProbs5 = 80 +422532 countPokes6 = 6 +422533 countRewards6 = 2 +422533 leafProbs6 = 50 +~~~ +423017 DOWN 4 +423017 0 0 +427069 UP 3 +427069 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427094 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427239 DOWN 3 +427239 0 256 +427241 UP 3 +427241 4 256 +~~~ +427264 contingency = 0 +427264 trialThresh = 100 +427264 timeMaxOut = 20 +427265 timeElapsed = 8 +427265 totalPokes = 38 +427265 totalRewards = 18 +427265 countPokes1 = 10 +427266 countRewards1 = 7 +427266 leafProbs1 = 80 +427267 countPokes2 = 7 +427267 countRewards2 = 0 +427281 leafProbs2 = 20 +427281 countPokes3 = 6 +427281 countRewards3 = 2 +427282 leafProbs3 = 20 +427282 countPokes4 = 5 +427283 countRewards4 = 4 +427283 leafProbs4 = 50 +427283 countPokes5 = 4 +427283 countRewards5 = 3 +427284 leafProbs5 = 80 +427297 countPokes6 = 6 +427298 countRewards6 = 2 +427298 leafProbs6 = 50 +~~~ +427394 4 0 +428859 DOWN 3 +428859 0 0 +428870 UP 3 +428870 4 0 +430500 DOWN 3 +430500 0 0 +430508 UP 3 +430508 4 0 +430526 DOWN 3 +430526 0 0 +430529 UP 3 +430529 4 0 +430591 DOWN 3 +430591 0 0 +430598 UP 3 +430598 4 0 +430616 DOWN 3 +430616 0 0 +430625 UP 3 +430625 4 0 +430632 DOWN 3 +430632 0 0 +430643 UP 3 +430643 4 0 +430705 DOWN 3 +430705 0 0 +430716 UP 3 +430716 4 0 +430743 DOWN 3 +430743 0 0 +430751 UP 3 +430751 4 0 +430764 DOWN 3 +430764 0 0 +430767 UP 3 +430767 4 0 +430813 DOWN 3 +430813 0 0 +430823 UP 3 +430823 4 0 +430837 DOWN 3 +430837 0 0 +430847 UP 3 +430847 4 0 +430937 DOWN 3 +430937 0 0 +438029 UP 4 +438029 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +438640 DOWN 4 +438640 0 0 +~~~ +438656 contingency = 0 +438656 trialThresh = 100 +438657 timeMaxOut = 20 +438657 timeElapsed = 9 +438657 totalPokes = 39 +438657 totalRewards = 18 +438658 countPokes1 = 10 +438658 countRewards1 = 7 +438659 leafProbs1 = 80 +438659 countPokes2 = 7 +438659 countRewards2 = 0 +438673 leafProbs2 = 20 +438673 countPokes3 = 6 +438674 countRewards3 = 2 +438674 leafProbs3 = 20 +438675 countPokes4 = 6 +438675 countRewards4 = 4 +438675 leafProbs4 = 50 +438675 countPokes5 = 4 +438675 countRewards5 = 3 +438676 leafProbs5 = 80 +438690 countPokes6 = 6 +438690 countRewards6 = 2 +438690 leafProbs6 = 50 +~~~ +440259 UP 3 +440259 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +440484 DOWN 3 +440484 0 0 +~~~ +440505 UP 3 +440505 4 0 +440506 contingency = 0 +440506 trialThresh = 100 +440507 timeMaxOut = 20 +440507 timeElapsed = 9 +440507 totalPokes = 40 +440507 totalRewards = 18 +440508 countPokes1 = 10 +440508 countRewards1 = 7 +440508 leafProbs1 = 80 +440509 countPokes2 = 7 +440523 countRewards2 = 0 +440523 leafProbs2 = 20 +440523 countPokes3 = 7 +440523 countRewards3 = 2 +440524 leafProbs3 = 20 +440524 countPokes4 = 6 +440525 countRewards4 = 4 +440525 leafProbs4 = 50 +440525 countPokes5 = 4 +440525 countRewards5 = 3 +440539 leafProbs5 = 80 +440539 countPokes6 = 6 +440540 countRewards6 = 2 +440540 leafProbs6 = 50 +~~~ +440595 DOWN 3 +440595 0 0 +440601 UP 3 +440601 4 0 +440618 DOWN 3 +440618 0 0 +440634 UP 3 +440634 4 0 +440725 DOWN 3 +440725 0 0 +440729 UP 3 +440729 4 0 +440749 DOWN 3 +440749 0 0 +440787 UP 3 +440787 4 0 +441093 DOWN 3 +441093 0 0 +441136 UP 3 +441136 4 0 +441147 DOWN 3 +441147 0 0 +441287 UP 3 +441287 4 0 +441509 DOWN 3 +441509 0 0 +444557 UP 4 +444557 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +444894 DOWN 4 +444894 0 0 +~~~ +444911 contingency = 0 +444911 trialThresh = 100 +444911 timeMaxOut = 20 +444911 timeElapsed = 9 +444912 totalPokes = 41 +444912 totalRewards = 18 +444913 countPokes1 = 10 +444913 countRewards1 = 7 +444913 leafProbs1 = 80 +444913 countPokes2 = 7 +444914 countRewards2 = 0 +444928 leafProbs2 = 20 +444928 countPokes3 = 7 +444929 countRewards3 = 2 +444929 leafProbs3 = 20 +444929 countPokes4 = 7 +444929 countRewards4 = 4 +444930 leafProbs4 = 50 +444930 countPokes5 = 4 +444931 countRewards5 = 3 +444931 leafProbs5 = 80 +444945 countPokes6 = 6 +444945 countRewards6 = 2 +444945 leafProbs6 = 50 +~~~ +451529 UP 6 +451529 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +452216 DOWN 6 +452216 0 0 +~~~ +452237 contingency = 0 +452237 trialThresh = 100 +452238 timeMaxOut = 20 +452238 timeElapsed = 9 +452239 totalPokes = 42 +452239 totalRewards = 18 +452239 countPokes1 = 10 +452239 countRewards1 = 7 +452240 leafProbs1 = 80 +452240 countPokes2 = 7 +452241 countRewards2 = 0 +452255 leafProbs2 = 20 +452255 countPokes3 = 7 +452255 countRewards3 = 2 +452255 leafProbs3 = 20 +452256 countPokes4 = 7 +452256 countRewards4 = 4 +452257 leafProbs4 = 50 +452257 countPokes5 = 4 +452257 countRewards5 = 3 +452257 leafProbs5 = 80 +452271 countPokes6 = 7 +452271 countRewards6 = 2 +452271 leafProbs6 = 50 +~~~ +452272 UP 6 +452272 32 0 +452323 DOWN 6 +452323 0 0 +456828 UP 6 +456828 32 0 +457039 DOWN 6 +457039 0 0 +458402 UP 5 +458402 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458432 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458732 16 0 +458786 DOWN 5 +458786 0 0 +458790 UP 5 +458790 16 0 +~~~ +458817 contingency = 0 +458817 trialThresh = 100 +458817 timeMaxOut = 20 +458817 timeElapsed = 9 +458818 totalPokes = 43 +458818 totalRewards = 19 +458819 countPokes1 = 10 +458819 countRewards1 = 7 +458819 leafProbs1 = 80 +458819 countPokes2 = 7 +458820 countRewards2 = 0 +458834 leafProbs2 = 20 +458834 countPokes3 = 7 +458835 countRewards3 = 2 +458835 leafProbs3 = 20 +458835 countPokes4 = 7 +458835 countRewards4 = 4 +458836 leafProbs4 = 50 +458836 countPokes5 = 5 +458837 countRewards5 = 4 +458837 leafProbs5 = 80 +458850 countPokes6 = 7 +458851 countRewards6 = 2 +458851 leafProbs6 = 50 +~~~ +460863 DOWN 5 +460863 0 0 +460877 UP 5 +460877 16 0 +461283 DOWN 5 +461283 0 0 +461306 UP 5 +461306 16 0 +461377 DOWN 5 +461377 0 0 +468674 UP 6 +468674 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469094 DOWN 6 +469094 0 0 +~~~ +469120 contingency = 0 +469120 trialThresh = 100 +469120 timeMaxOut = 20 +469121 timeElapsed = 9 +469121 totalPokes = 44 +469122 totalRewards = 19 +469122 countPokes1 = 10 +469122 countRewards1 = 7 +469122 leafProbs1 = 80 +469123 countPokes2 = 7 +469123 countRewards2 = 0 +469137 leafProbs2 = 20 +469138 countPokes3 = 7 +469138 countRewards3 = 2 +469138 leafProbs3 = 20 +469138 countPokes4 = 7 +469138 countRewards4 = 4 +469139 leafProbs4 = 50 +469139 countPokes5 = 5 +469140 countRewards5 = 4 +469140 leafProbs5 = 80 +469154 countPokes6 = 8 +469154 countRewards6 = 2 +469154 leafProbs6 = 50 +~~~ +474207 UP 6 +474207 32 0 +474302 DOWN 6 +474302 0 0 +474380 UP 6 +474380 32 0 +474621 DOWN 6 +474621 0 0 +482030 UP 1 +482030 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +482234 DOWN 1 +482234 0 0 +~~~ +482258 contingency = 0 +482258 trialThresh = 100 +482258 timeMaxOut = 20 +482258 timeElapsed = 10 +482259 totalPokes = 45 +482259 totalRewards = 19 +482260 countPokes1 = 11 +482260 countRewards1 = 7 +482260 leafProbs1 = 80 +482260 countPokes2 = 7 +482261 countRewards2 = 0 +482275 leafProbs2 = 20 +482275 countPokes3 = 7 +482276 countRewards3 = 2 +482276 leafProbs3 = 20 +482276 countPokes4 = 7 +482276 countRewards4 = 4 +482277 leafProbs4 = 50 +482277 countPokes5 = 5 +482278 countRewards5 = 4 +482278 leafProbs5 = 80 +482292 countPokes6 = 8 +482292 countRewards6 = 2 +482292 leafProbs6 = 50 +~~~ +482292 UP 1 +482292 1 0 +482558 DOWN 1 +482558 0 0 +482585 UP 1 +482585 1 0 +482683 DOWN 1 +482683 0 0 +482718 UP 1 +482718 1 0 +482744 DOWN 1 +482744 0 0 +482821 UP 1 +482821 1 0 +482842 DOWN 1 +482842 0 0 +482905 UP 1 +482905 1 0 +482939 DOWN 1 +482939 0 0 +498133 UP 1 +498133 1 0 +498150 DOWN 1 +498150 0 0 +498596 UP 1 +498596 1 0 +498878 DOWN 1 +498878 0 0 +508278 UP 1 +508278 1 0 +508469 DOWN 1 +508469 0 0 +508616 UP 1 +508616 1 0 +508860 DOWN 1 +508860 0 0 +518791 UP 2 +518791 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +519385 DOWN 2 +519385 0 0 +~~~ +519406 contingency = 0 +519406 trialThresh = 100 +519407 timeMaxOut = 20 +519407 timeElapsed = 11 +519407 totalPokes = 46 +519407 totalRewards = 19 +519408 countPokes1 = 11 +519408 countRewards1 = 7 +519409 leafProbs1 = 80 +519409 countPokes2 = 8 +519409 countRewards2 = 0 +519423 leafProbs2 = 20 +519423 countPokes3 = 7 +519424 countRewards3 = 2 +519424 leafProbs3 = 20 +519425 countPokes4 = 7 +519425 countRewards4 = 4 +519425 leafProbs4 = 50 +519425 countPokes5 = 5 +519425 countRewards5 = 4 +519426 leafProbs5 = 80 +519439 countPokes6 = 8 +519440 countRewards6 = 2 +519440 leafProbs6 = 50 +~~~ +519441 UP 2 +519441 2 0 +519447 DOWN 2 +519447 0 0 +524357 UP 1 +524357 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524378 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524678 1 0 +524797 DOWN 1 +524797 0 0 +~~~ +524815 contingency = 0 +524815 trialThresh = 100 +524816 timeMaxOut = 20 +524816 timeElapsed = 11 +524817 totalPokes = 47 +524817 totalRewards = 20 +524817 countPokes1 = 12 +524817 countRewards1 = 8 +524817 leafProbs1 = 80 +524818 countPokes2 = 8 +524818 countRewards2 = 0 +524833 leafProbs2 = 20 +524833 countPokes3 = 7 +524833 countRewards3 = 2 +524833 leafProbs3 = 20 +524833 countPokes4 = 7 +524834 countRewards4 = 4 +524834 leafProbs4 = 50 +524835 countPokes5 = 5 +524835 countRewards5 = 4 +524835 leafProbs5 = 80 +524849 countPokes6 = 8 +524849 countRewards6 = 2 +524849 leafProbs6 = 50 +~~~ +524850 UP 1 +524850 1 0 +524863 DOWN 1 +524863 0 0 +524873 UP 1 +524873 1 0 +527968 DOWN 1 +527968 0 0 +527980 UP 1 +527980 1 0 +528079 DOWN 1 +528079 0 0 +528109 UP 1 +528109 1 0 +528210 DOWN 1 +528210 0 0 +528221 UP 1 +528221 1 0 +528322 DOWN 1 +528322 0 0 +528348 UP 1 +528348 1 0 +528356 DOWN 1 +528356 0 0 +528365 UP 1 +528365 1 0 +528411 DOWN 1 +528411 0 0 +533697 UP 1 +533697 1 0 +533887 DOWN 1 +533887 0 0 +533943 UP 1 +533943 1 0 +535917 DOWN 1 +535917 0 0 +536171 UP 1 +536171 1 0 +536181 DOWN 1 +536181 0 0 +540135 UP 1 +540135 1 0 +540396 DOWN 1 +540396 0 0 +544774 UP 1 +544774 1 0 +544951 DOWN 1 +544951 0 0 +545039 UP 1 +545039 1 0 +545129 DOWN 1 +545129 0 0 +546501 UP 1 +546501 1 0 +546595 DOWN 1 +546595 0 0 +562134 UP 1 +562134 1 0 +562562 DOWN 1 +562562 0 0 +574774 UP 6 +574774 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +574832 DOWN 6 +574832 0 0 +~~~ +574860 contingency = 0 +574860 trialThresh = 100 +574861 timeMaxOut = 20 +574861 timeElapsed = 12 +574862 totalPokes = 48 +574862 totalRewards = 20 +574862 countPokes1 = 12 +574862 countRewards1 = 8 +574863 leafProbs1 = 80 +574863 countPokes2 = 8 +574864 countRewards2 = 0 +574878 leafProbs2 = 20 +574878 countPokes3 = 7 +574878 countRewards3 = 2 +574878 leafProbs3 = 20 +574879 countPokes4 = 7 +574879 countRewards4 = 4 +574879 leafProbs4 = 50 +574880 countPokes5 = 5 +574880 countRewards5 = 4 +574880 leafProbs5 = 80 +574894 countPokes6 = 9 +574894 countRewards6 = 2 +574894 leafProbs6 = 50 +~~~ +574895 UP 6 +574895 32 0 +574983 DOWN 6 +574983 0 0 +575020 UP 6 +575020 32 0 +575089 DOWN 6 +575089 0 0 +575126 UP 6 +575126 32 0 +575149 DOWN 6 +575149 0 0 +577744 UP 6 +577744 32 0 +577748 DOWN 6 +577748 0 0 +578154 UP 6 +578154 32 0 +579354 DOWN 6 +579354 0 0 +579382 UP 6 +579382 32 0 +579514 DOWN 6 +579514 0 0 +580826 UP 6 +580826 32 0 +581310 DOWN 6 +581310 0 0 +581654 UP 6 +581654 32 0 +581711 DOWN 6 +581711 0 0 +582734 UP 6 +582733 32 0 +582748 DOWN 6 +582748 0 0 +585351 UP 6 +585351 32 0 +587498 DOWN 6 +587498 0 0 +595639 UP 1 +595639 1 0 +595653 DOWN 1 +595653 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595663 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595676 contingency = 0 +595676 trialThresh = 100 +595676 timeMaxOut = 20 +595677 timeElapsed = 13 +595677 totalPokes = 49 +595678 totalRewards = 21 +595678 countPokes1 = 13 +595678 countRewards1 = 9 +595678 leafProbs1 = 80 +595679 countPokes2 = 8 +595679 countRewards2 = 0 +595693 leafProbs2 = 20 +595694 countPokes3 = 7 +595694 countRewards3 = 2 +595694 leafProbs3 = 20 +595694 countPokes4 = 7 +595694 countRewards4 = 4 +595695 leafProbs4 = 50 +595695 countPokes5 = 5 +595696 countRewards5 = 4 +595696 leafProbs5 = 80 +595710 countPokes6 = 9 +595710 countRewards6 = 2 +595710 leafProbs6 = 50 +~~~ +595710 UP 1 +595710 1 64 +595807 DOWN 1 +595807 0 64 +595820 UP 1 +595820 1 64 +595874 DOWN 1 +595874 0 64 +595886 UP 1 +595886 1 64 +595963 1 0 +599155 DOWN 1 +599155 0 0 +599164 UP 1 +599164 1 0 +599808 DOWN 1 +599808 0 0 +688756 UP 6 +688756 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688779 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688956 DOWN 6 +688956 0 2048 +~~~ +688973 contingency = 0 +688973 trialThresh = 100 +688974 timeMaxOut = 20 +688974 timeElapsed = 15 +688974 totalPokes = 50 +688974 totalRewards = 22 +688975 countPokes1 = 13 +688975 countRewards1 = 9 +688976 leafProbs1 = 80 +688976 countPokes2 = 8 +688976 countRewards2 = 0 +688990 leafProbs2 = 20 +688990 countPokes3 = 7 +688991 countRewards3 = 2 +688991 leafProbs3 = 20 +688992 countPokes4 = 7 +688992 countRewards4 = 4 +688992 leafProbs4 = 50 +688992 countPokes5 = 5 +688993 countRewards5 = 4 +688993 leafProbs5 = 80 +689007 countPokes6 = 10 +689007 countRewards6 = 3 +689007 leafProbs6 = 50 +~~~ +689008 UP 6 +689008 32 2048 +689079 32 0 +692128 DOWN 6 +692128 0 0 +692143 UP 6 +692143 32 0 +692685 DOWN 6 +692685 0 0 +698048 UP 6 +698048 32 0 +703204 DOWN 6 +703204 0 0 +704795 UP 5 +704795 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704833 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704998 DOWN 5 +704998 0 1024 +~~~ +705014 contingency = 0 +705014 trialThresh = 100 +705014 timeMaxOut = 20 +705015 timeElapsed = 15 +705015 totalPokes = 51 +705016 totalRewards = 23 +705016 countPokes1 = 13 +705016 countRewards1 = 9 +705016 leafProbs1 = 80 +705017 countPokes2 = 8 +705017 countRewards2 = 0 +705031 leafProbs2 = 20 +705032 countPokes3 = 7 +705032 countRewards3 = 2 +705032 leafProbs3 = 20 +705032 countPokes4 = 7 +705033 countRewards4 = 4 +705033 leafProbs4 = 50 +705033 countPokes5 = 6 +705034 countRewards5 = 5 +705034 leafProbs5 = 80 +705048 countPokes6 = 10 +705048 countRewards6 = 3 +705048 leafProbs6 = 50 +~~~ +705048 UP 5 +705048 16 1024 +705133 16 0 +707856 DOWN 5 +707856 0 0 +707859 UP 5 +707859 16 0 +708389 DOWN 5 +708388 0 0 +708430 UP 5 +708430 16 0 +708506 DOWN 5 +708506 0 0 +708517 UP 5 +708517 16 0 +708729 DOWN 5 +708729 0 0 +708753 UP 5 +708753 16 0 +708838 DOWN 5 +708838 0 0 +708870 UP 5 +708870 16 0 +708943 DOWN 5 +708943 0 0 +712658 UP 6 +712658 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712691 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712856 DOWN 6 +712856 0 2048 +712886 UP 6 +712886 32 2048 +~~~ +712891 contingency = 0 +712892 trialThresh = 100 +712892 timeMaxOut = 20 +712892 timeElapsed = 15 +712892 totalPokes = 52 +712893 totalRewards = 24 +712893 countPokes1 = 13 +712894 countRewards1 = 9 +712894 leafProbs1 = 80 +712894 countPokes2 = 8 +712894 countRewards2 = 0 +712908 leafProbs2 = 20 +712909 countPokes3 = 7 +712909 countRewards3 = 2 +712910 leafProbs3 = 20 +712910 countPokes4 = 7 +712910 countRewards4 = 4 +712910 leafProbs4 = 50 +712910 countPokes5 = 6 +712911 countRewards5 = 5 +712911 leafProbs5 = 80 +712925 countPokes6 = 11 +712925 countRewards6 = 4 +712926 leafProbs6 = 50 +~~~ +712990 32 0 +716085 DOWN 6 +716085 0 0 +716094 UP 6 +716094 32 0 +716526 DOWN 6 +716526 0 0 +725598 UP 1 +725598 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725628 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725712 DOWN 1 +725712 0 64 +~~~ +725726 contingency = 0 +725726 trialThresh = 100 +725727 timeMaxOut = 20 +725727 timeElapsed = 16 +725728 totalPokes = 53 +725728 totalRewards = 25 +725728 countPokes1 = 14 +725728 countRewards1 = 10 +725729 leafProbs1 = 80 +725729 countPokes2 = 8 +725729 countRewards2 = 0 +725744 leafProbs2 = 20 +725744 countPokes3 = 7 +725744 countRewards3 = 2 +725744 leafProbs3 = 20 +725745 countPokes4 = 7 +725745 countRewards4 = 4 +725746 leafProbs4 = 50 +725746 countPokes5 = 6 +725746 countRewards5 = 5 +725746 leafProbs5 = 80 +725760 countPokes6 = 11 +725760 countRewards6 = 4 +725760 leafProbs6 = 50 +~~~ +725761 UP 1 +725761 1 64 +725780 DOWN 1 +725779 0 64 +725790 UP 1 +725790 1 64 +725928 1 0 +725996 DOWN 1 +725996 0 0 +726010 UP 1 +726010 1 0 +729338 DOWN 1 +729338 0 0 +734564 UP 1 +734564 1 0 +734740 DOWN 1 +734740 0 0 +758750 UP 2 +758750 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +758998 DOWN 2 +758998 0 0 +759011 UP 2 +759011 2 0 +~~~ +759026 contingency = 0 +759026 trialThresh = 100 +759027 timeMaxOut = 20 +759027 timeElapsed = 17 +759027 totalPokes = 54 +759027 totalRewards = 25 +759028 countPokes1 = 14 +759028 countRewards1 = 10 +759029 leafProbs1 = 80 +759029 countPokes2 = 9 +759029 countRewards2 = 0 +759043 leafProbs2 = 20 +759043 countPokes3 = 7 +759044 countRewards3 = 2 +759044 leafProbs3 = 20 +759045 countPokes4 = 7 +759045 countRewards4 = 4 +759045 leafProbs4 = 50 +759045 countPokes5 = 6 +759046 countRewards5 = 5 +759046 leafProbs5 = 80 +759060 countPokes6 = 11 +759060 countRewards6 = 4 +759061 leafProbs6 = 50 +~~~ +759247 DOWN 2 +759247 0 0 +764741 UP 2 +764741 2 0 +764877 DOWN 2 +764877 0 0 +768238 UP 1 +768238 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768267 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768567 1 0 +769995 DOWN 1 +769995 0 0 +770003 UP 1 +770003 1 0 +~~~ +770020 contingency = 0 +770021 trialThresh = 100 +770021 timeMaxOut = 20 +770021 timeElapsed = 17 +770021 totalPokes = 55 +770022 totalRewards = 26 +770022 countPokes1 = 15 +770023 countRewards1 = 11 +770023 leafProbs1 = 80 +770023 countPokes2 = 9 +770023 countRewards2 = 0 +770037 leafProbs2 = 20 +770038 countPokes3 = 7 +770038 countRewards3 = 2 +770039 leafProbs3 = 20 +770039 countPokes4 = 7 +770039 countRewards4 = 4 +770039 leafProbs4 = 50 +770040 countPokes5 = 6 +770040 countRewards5 = 5 +770041 leafProbs5 = 80 +770054 countPokes6 = 11 +770055 countRewards6 = 4 +770055 leafProbs6 = 50 +~~~ +770958 DOWN 1 +770958 0 0 +770969 UP 1 +770969 1 0 +771063 DOWN 1 +771063 0 0 +792538 UP 4 +792538 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +792976 DOWN 4 +792976 0 0 +~~~ +793004 contingency = 0 +793004 trialThresh = 100 +793004 timeMaxOut = 20 +793004 timeElapsed = 17 +793005 totalPokes = 56 +793005 totalRewards = 26 +793006 countPokes1 = 15 +793006 countRewards1 = 11 +793006 leafProbs1 = 80 +793006 countPokes2 = 9 +793006 countRewards2 = 0 +793021 leafProbs2 = 20 +793021 countPokes3 = 7 +793022 countRewards3 = 2 +793022 leafProbs3 = 20 +793022 countPokes4 = 8 +793022 countRewards4 = 4 +793023 leafProbs4 = 50 +793023 countPokes5 = 6 +793023 countRewards5 = 5 +793024 leafProbs5 = 80 +793037 countPokes6 = 11 +793038 countRewards6 = 4 +793038 leafProbs6 = 50 +~~~ +796258 UP 3 +796258 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796294 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796527 DOWN 3 +796527 0 256 +796548 UP 3 +796548 4 256 +~~~ +796560 contingency = 0 +796561 trialThresh = 100 +796561 timeMaxOut = 20 +796562 timeElapsed = 18 +796562 totalPokes = 57 +796562 totalRewards = 27 +796562 countPokes1 = 15 +796563 countRewards1 = 11 +796563 leafProbs1 = 80 +796564 countPokes2 = 9 +796564 countRewards2 = 0 +796578 leafProbs2 = 20 +796578 countPokes3 = 8 +796578 countRewards3 = 3 +796579 leafProbs3 = 20 +796579 countPokes4 = 8 +796580 countRewards4 = 4 +796580 leafProbs4 = 50 +796580 countPokes5 = 6 +796580 countRewards5 = 5 +796581 leafProbs5 = 80 +796594 countPokes6 = 11 +796595 countRewards6 = 4 +796595 leafProbs6 = 50 +~~~ +796596 4 0 +796624 DOWN 3 +796624 0 0 +796629 UP 3 +796629 4 0 +801350 DOWN 3 +801350 0 0 +806015 UP 4 +806015 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806042 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806342 8 0 +809642 DOWN 4 +809642 0 0 +~~~ +809664 contingency = 0 +809664 trialThresh = 100 +809664 timeMaxOut = 20 +809665 timeElapsed = 18 +809665 totalPokes = 58 +809666 totalRewards = 28 +809666 countPokes1 = 15 +809666 countRewards1 = 11 +809666 leafProbs1 = 80 +809667 countPokes2 = 9 +809667 countRewards2 = 0 +809681 leafProbs2 = 20 +809682 countPokes3 = 8 +809682 countRewards3 = 3 +809682 leafProbs3 = 20 +809682 countPokes4 = 9 +809683 countRewards4 = 5 +809683 leafProbs4 = 50 +809683 countPokes5 = 6 +809684 countRewards5 = 5 +809684 leafProbs5 = 80 +809698 countPokes6 = 11 +809698 countRewards6 = 4 +809698 leafProbs6 = 50 +~~~ +813030 UP 3 +813030 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +813879 DOWN 3 +813879 0 0 +~~~ +813907 contingency = 0 +813908 trialThresh = 100 +813908 timeMaxOut = 20 +813908 timeElapsed = 18 +813908 totalPokes = 59 +813909 totalRewards = 28 +813909 countPokes1 = 15 +813910 countRewards1 = 11 +813910 leafProbs1 = 80 +813910 countPokes2 = 9 +813910 countRewards2 = 0 +813924 leafProbs2 = 20 +813925 countPokes3 = 9 +813925 countRewards3 = 3 +813926 leafProbs3 = 20 +813926 countPokes4 = 9 +813926 countRewards4 = 5 +813926 leafProbs4 = 50 +813927 countPokes5 = 6 +813927 countRewards5 = 5 +813928 leafProbs5 = 80 +813941 countPokes6 = 11 +813942 countRewards6 = 4 +813942 leafProbs6 = 50 +~~~ +813990 UP 3 +813990 4 0 +814046 DOWN 3 +814046 0 0 +814070 UP 3 +814070 4 0 +814092 DOWN 3 +814092 0 0 +818984 UP 4 +818984 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819019 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819319 8 0 +822032 DOWN 4 +822032 0 0 +822048 UP 4 +822048 8 0 +~~~ +822052 contingency = 0 +822052 trialThresh = 100 +822052 timeMaxOut = 20 +822052 timeElapsed = 18 +822053 totalPokes = 60 +822053 totalRewards = 29 +822054 countPokes1 = 15 +822054 countRewards1 = 11 +822054 leafProbs1 = 80 +822054 countPokes2 = 9 +822055 countRewards2 = 0 +822069 leafProbs2 = 20 +822069 countPokes3 = 9 +822070 countRewards3 = 3 +822070 leafProbs3 = 20 +822070 countPokes4 = 10 +822070 countRewards4 = 6 +822071 leafProbs4 = 50 +822071 countPokes5 = 6 +822072 countRewards5 = 5 +822072 leafProbs5 = 80 +822086 countPokes6 = 11 +822086 countRewards6 = 4 +822086 leafProbs6 = 50 +~~~ +822142 DOWN 4 +822142 0 0 +825685 UP 3 +825685 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825714 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825899 DOWN 3 +825899 0 256 +825911 UP 3 +825911 4 256 +~~~ +825924 contingency = 0 +825924 trialThresh = 100 +825924 timeMaxOut = 20 +825924 timeElapsed = 18 +825924 totalPokes = 61 +825925 totalRewards = 30 +825925 countPokes1 = 15 +825926 countRewards1 = 11 +825926 leafProbs1 = 80 +825926 countPokes2 = 9 +825926 countRewards2 = 0 +825941 leafProbs2 = 20 +825941 countPokes3 = 10 +825941 countRewards3 = 4 +825942 leafProbs3 = 20 +825942 countPokes4 = 10 +825942 countRewards4 = 6 +825942 leafProbs4 = 50 +825943 countPokes5 = 6 +825943 countRewards5 = 5 +825944 leafProbs5 = 80 +825958 countPokes6 = 11 +825958 countRewards6 = 4 +825958 leafProbs6 = 50 +~~~ +826000 DOWN 3 +826000 0 256 +826002 UP 3 +826002 4 256 +826014 4 0 +829816 DOWN 3 +829816 0 0 +838111 UP 4 +838111 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838136 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838436 8 0 +841411 DOWN 4 +841411 0 0 +~~~ +841435 contingency = 0 +841436 trialThresh = 100 +841436 timeMaxOut = 20 +841437 timeElapsed = 19 +841437 totalPokes = 62 +841437 totalRewards = 31 +841437 countPokes1 = 15 +841438 countRewards1 = 11 +841438 leafProbs1 = 80 +841439 countPokes2 = 9 +841439 countRewards2 = 0 +841453 leafProbs2 = 20 +841453 countPokes3 = 10 +841453 countRewards3 = 4 +841454 leafProbs3 = 20 +841454 countPokes4 = 11 +841455 countRewards4 = 7 +841455 leafProbs4 = 50 +841455 countPokes5 = 6 +841455 countRewards5 = 5 +841455 leafProbs5 = 80 +841469 countPokes6 = 11 +841470 countRewards6 = 4 +841470 leafProbs6 = 50 +~~~ +843614 UP 3 +843614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843639 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843789 DOWN 3 +843789 0 256 +843795 UP 3 +843795 4 256 +~~~ +843808 contingency = 0 +843809 trialThresh = 100 +843809 timeMaxOut = 20 +843809 timeElapsed = 19 +843809 totalPokes = 63 +843810 totalRewards = 32 +843810 countPokes1 = 15 +843810 countRewards1 = 11 +843811 leafProbs1 = 80 +843811 countPokes2 = 9 +843811 countRewards2 = 0 +843825 leafProbs2 = 20 +843826 countPokes3 = 11 +843826 countRewards3 = 5 +843827 leafProbs3 = 20 +843827 countPokes4 = 11 +843827 countRewards4 = 7 +843827 leafProbs4 = 50 +843827 countPokes5 = 6 +843828 countRewards5 = 5 +843828 leafProbs5 = 80 +843842 countPokes6 = 11 +843843 countRewards6 = 4 +843843 leafProbs6 = 50 +~~~ +843939 4 0 +845473 DOWN 3 +845473 0 0 +845480 UP 3 +845480 4 0 +846559 DOWN 3 +846559 0 0 +846574 UP 3 +846574 4 0 +847017 DOWN 3 +847017 0 0 +850281 UP 4 +850281 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850308 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850608 8 0 +853788 DOWN 4 +853788 0 0 +~~~ +853810 contingency = 0 +853810 trialThresh = 100 +853811 timeMaxOut = 20 +853811 timeElapsed = 19 +853811 totalPokes = 64 +853811 totalRewards = 33 +853811 countPokes1 = 15 +853812 countRewards1 = 11 +853812 leafProbs1 = 80 +853813 countPokes2 = 9 +853813 countRewards2 = 0 +853827 leafProbs2 = 20 +853827 countPokes3 = 11 +853828 countRewards3 = 5 +853828 leafProbs3 = 20 +853829 countPokes4 = 12 +853829 countRewards4 = 8 +853829 leafProbs4 = 50 +853829 countPokes5 = 6 +853829 countRewards5 = 5 +853830 leafProbs5 = 80 +853844 countPokes6 = 11 +853844 countRewards6 = 4 +853845 leafProbs6 = 50 +~~~ +859749 UP 3 +859749 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +859929 DOWN 3 +859929 0 0 +~~~ +859955 contingency = 0 +859955 trialThresh = 100 +859955 timeMaxOut = 20 +859956 timeElapsed = 19 +859956 totalPokes = 65 +859957 totalRewards = 33 +859957 countPokes1 = 15 +859957 countRewards1 = 11 +859957 leafProbs1 = 80 +859958 countPokes2 = 9 +859958 countRewards2 = 0 +859972 leafProbs2 = 20 +859973 countPokes3 = 12 +859973 countRewards3 = 5 +859973 leafProbs3 = 20 +859973 countPokes4 = 12 +859974 countRewards4 = 8 +859974 leafProbs4 = 50 +859975 countPokes5 = 6 +859975 countRewards5 = 5 +859975 leafProbs5 = 80 +859989 countPokes6 = 11 +859989 countRewards6 = 4 +859989 leafProbs6 = 50 +~~~ +859990 UP 3 +859990 4 0 +860031 DOWN 3 +860031 0 0 +860033 UP 3 +860033 4 0 +860497 DOWN 3 +860497 0 0 +863294 UP 4 +863294 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +863951 DOWN 4 +863951 0 0 +~~~ +863973 contingency = 0 +863973 trialThresh = 100 +863973 timeMaxOut = 20 +863974 timeElapsed = 19 +863974 totalPokes = 66 +863975 totalRewards = 33 +863975 countPokes1 = 15 +863975 countRewards1 = 11 +863975 leafProbs1 = 80 +863976 countPokes2 = 9 +863976 countRewards2 = 0 +863990 leafProbs2 = 20 +863991 countPokes3 = 12 +863991 countRewards3 = 5 +863991 leafProbs3 = 20 +863991 countPokes4 = 13 +863992 countRewards4 = 8 +863992 leafProbs4 = 50 +863993 countPokes5 = 6 +863993 countRewards5 = 5 +863993 leafProbs5 = 80 +864007 countPokes6 = 11 +864007 countRewards6 = 4 +864007 leafProbs6 = 50 +~~~ +868524 UP 3 +868524 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +868698 DOWN 3 +868698 0 0 +~~~ +868713 contingency = 0 +868713 trialThresh = 100 +868713 timeMaxOut = 20 +868713 timeElapsed = 19 +868713 totalPokes = 67 +868714 totalRewards = 33 +868715 countPokes1 = 15 +868715 countRewards1 = 11 +868715 leafProbs1 = 80 +868715 countPokes2 = 9 +868715 countRewards2 = 0 +868730 leafProbs2 = 20 +868730 countPokes3 = 13 +868731 countRewards3 = 5 +868731 leafProbs3 = 20 +868731 countPokes4 = 13 +868731 countRewards4 = 8 +868732 leafProbs4 = 50 +868732 countPokes5 = 6 +868733 countRewards5 = 5 +868733 leafProbs5 = 80 +868747 countPokes6 = 11 +868747 countRewards6 = 4 +868747 leafProbs6 = 50 +~~~ +868747 UP 3 +868747 4 0 +868824 DOWN 3 +868824 0 0 +872741 UP 4 +872741 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +873169 DOWN 4 +873169 0 0 +~~~ +873187 contingency = 0 +873187 trialThresh = 100 +873187 timeMaxOut = 20 +873187 timeElapsed = 19 +873188 totalPokes = 68 +873188 totalRewards = 33 +873189 countPokes1 = 15 +873189 countRewards1 = 11 +873189 leafProbs1 = 80 +873189 countPokes2 = 9 +873190 countRewards2 = 0 +873204 leafProbs2 = 20 +873204 countPokes3 = 13 +873205 countRewards3 = 5 +873205 leafProbs3 = 20 +873205 countPokes4 = 14 +873205 countRewards4 = 8 +873206 leafProbs4 = 50 +873206 countPokes5 = 6 +873207 countRewards5 = 5 +873207 leafProbs5 = 80 +873221 countPokes6 = 11 +873221 countRewards6 = 4 +873221 leafProbs6 = 50 +~~~ +873252 UP 4 +873252 8 0 +873290 DOWN 4 +873290 0 0 +876725 UP 3 +876725 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876754 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876920 DOWN 3 +876920 0 256 +876935 UP 3 +876935 4 256 +~~~ +876950 contingency = 0 +876950 trialThresh = 100 +876951 timeMaxOut = 20 +876951 timeElapsed = 20 +876951 totalPokes = 69 +876951 totalRewards = 34 +876952 countPokes1 = 15 +876952 countRewards1 = 11 +876953 leafProbs1 = 80 +876953 countPokes2 = 9 +876953 countRewards2 = 0 +876967 leafProbs2 = 20 +876968 countPokes3 = 14 +876968 countRewards3 = 6 +876969 leafProbs3 = 20 +876969 countPokes4 = 14 +876969 countRewards4 = 8 +876969 leafProbs4 = 50 +876970 countPokes5 = 6 +876970 countRewards5 = 5 +876971 leafProbs5 = 80 +876984 countPokes6 = 11 +876985 countRewards6 = 4 +876985 leafProbs6 = 50 +~~~ +876985 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +877054 4 0 +878633 DOWN 3 +878633 0 0 +878639 UP 3 +878639 4 0 +879721 DOWN 3 +879721 0 0 +886019 UP 1 +886019 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886047 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886216 DOWN 1 +886216 0 64 +886239 UP 1 +886239 1 64 +~~~ +886244 contingency = 1 +886245 trialThresh = 100 +886245 timeMaxOut = 20 +886245 timeElapsed = 0 +886245 totalPokes = 1 +886245 totalRewards = 1 +886246 countPokes1 = 1 +886246 countRewards1 = 1 +886247 leafProbs1 = 80 +886247 countPokes2 = 0 +886247 countRewards2 = 0 +886261 leafProbs2 = 20 +886261 countPokes3 = 0 +886262 countRewards3 = 0 +886262 leafProbs3 = 20 +886263 countPokes4 = 0 +886263 countRewards4 = 0 +886263 leafProbs4 = 50 +886263 countPokes5 = 0 +886263 countRewards5 = 0 +886264 leafProbs5 = 80 +886277 countPokes6 = 0 +886278 countRewards6 = 0 +886278 leafProbs6 = 50 +~~~ +886347 1 0 +887839 DOWN 1 +887839 0 0 +887847 UP 1 +887847 1 0 +888811 DOWN 1 +888811 0 0 +924349 UP 1 +924349 1 0 +924708 DOWN 1 +924708 0 0 +936150 UP 6 +936150 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +936282 DOWN 6 +936282 0 0 +~~~ +936306 UP 6 +936306 32 0 +936307 contingency = 1 +936308 trialThresh = 100 +936308 timeMaxOut = 20 +936308 timeElapsed = 1 +936308 totalPokes = 2 +936309 totalRewards = 1 +936309 countPokes1 = 1 +936310 countRewards1 = 1 +936310 leafProbs1 = 80 +936310 countPokes2 = 0 +936324 countRewards2 = 0 +936324 leafProbs2 = 20 +936325 countPokes3 = 0 +936325 countRewards3 = 0 +936326 leafProbs3 = 20 +936326 countPokes4 = 0 +936326 countRewards4 = 0 +936326 leafProbs4 = 50 +936326 countPokes5 = 0 +936327 countRewards5 = 0 +936340 leafProbs5 = 80 +936341 countPokes6 = 1 +936341 countRewards6 = 0 +936342 leafProbs6 = 50 +~~~ +936592 DOWN 6 +936592 0 0 +939891 UP 6 +939891 32 0 +940306 DOWN 6 +940306 0 0 +944398 UP 5 +944398 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944428 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944665 DOWN 5 +944665 0 1024 +944680 UP 5 +944680 16 1024 +~~~ +944694 contingency = 1 +944694 trialThresh = 100 +944695 timeMaxOut = 20 +944695 timeElapsed = 2 +944696 totalPokes = 3 +944696 totalRewards = 2 +944696 countPokes1 = 1 +944696 countRewards1 = 1 +944697 leafProbs1 = 80 +944697 countPokes2 = 0 +944698 countRewards2 = 0 +944711 leafProbs2 = 20 +944712 countPokes3 = 0 +944712 countRewards3 = 0 +944712 leafProbs3 = 20 +944712 countPokes4 = 0 +944713 countRewards4 = 0 +944713 leafProbs4 = 50 +944714 countPokes5 = 1 +944714 countRewards5 = 1 +944714 leafProbs5 = 80 +944728 countPokes6 = 1 +944728 countRewards6 = 0 +944728 leafProbs6 = 50 +~~~ +944729 16 0 +944845 DOWN 5 +944845 0 0 +944862 UP 5 +944862 16 0 +946617 DOWN 5 +946617 0 0 +946632 UP 5 +946632 16 0 +946716 DOWN 5 +946716 0 0 +946732 UP 5 +946732 16 0 +947449 DOWN 5 +947449 0 0 +948283 UP 5 +948283 16 0 +948312 DOWN 5 +948312 0 0 +952025 UP 6 +952025 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952051 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952328 DOWN 6 +952328 0 2048 +952339 UP 6 +952339 32 2048 +952351 32 0 +~~~ +952355 contingency = 1 +952355 trialThresh = 100 +952355 timeMaxOut = 20 +952356 timeElapsed = 2 +952356 totalPokes = 4 +952357 totalRewards = 3 +952357 countPokes1 = 1 +952357 countRewards1 = 1 +952357 leafProbs1 = 80 +952357 countPokes2 = 0 +952358 countRewards2 = 0 +952372 leafProbs2 = 20 +952372 countPokes3 = 0 +952373 countRewards3 = 0 +952373 leafProbs3 = 20 +952373 countPokes4 = 0 +952373 countRewards4 = 0 +952374 leafProbs4 = 50 +952374 countPokes5 = 1 +952375 countRewards5 = 1 +952375 leafProbs5 = 80 +952389 countPokes6 = 2 +952389 countRewards6 = 1 +952389 leafProbs6 = 50 +~~~ +955287 DOWN 6 +955287 0 0 +955304 UP 6 +955304 32 0 +955841 DOWN 6 +955841 0 0 +955870 UP 6 +955870 32 0 +955948 DOWN 6 +955948 0 0 +968742 UP 1 +968742 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +968986 DOWN 1 +968986 0 0 +969009 UP 1 +969009 1 0 +~~~ +969010 contingency = 1 +969011 trialThresh = 100 +969011 timeMaxOut = 20 +969011 timeElapsed = 2 +969011 totalPokes = 5 +969012 totalRewards = 3 +969012 countPokes1 = 2 +969013 countRewards1 = 1 +969013 leafProbs1 = 80 +969013 countPokes2 = 0 +969013 countRewards2 = 0 +969027 leafProbs2 = 20 +969027 countPokes3 = 0 +969028 countRewards3 = 0 +969028 leafProbs3 = 20 +969029 countPokes4 = 0 +969029 countRewards4 = 0 +969029 leafProbs4 = 50 +969029 countPokes5 = 1 +969030 countRewards5 = 1 +969030 leafProbs5 = 80 +969044 countPokes6 = 2 +969044 countRewards6 = 1 +969045 leafProbs6 = 50 +~~~ +969325 DOWN 1 +969325 0 0 +969363 UP 1 +969363 1 0 +969412 DOWN 1 +969412 0 0 +980911 UP 1 +980911 1 0 +981057 DOWN 1 +981057 0 0 +995935 UP 1 +995935 1 0 +995980 DOWN 1 +995980 0 0 +1000551 UP 1 +1000551 1 0 +1000675 DOWN 1 +1000675 0 0 +1000813 UP 1 +1000813 1 0 +1000837 DOWN 1 +1000837 0 0 +1014932 UP 1 +1014932 1 0 +1015485 DOWN 1 +1015485 0 0 +1037157 UP 1 +1037157 1 0 +1039155 DOWN 1 +1039155 0 0 +1045580 UP 2 +1045580 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045606 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045801 DOWN 2 +1045801 0 128 +1045812 UP 2 +1045812 2 128 +~~~ +1045827 contingency = 1 +1045827 trialThresh = 100 +1045828 timeMaxOut = 20 +1045828 timeElapsed = 4 +1045828 totalPokes = 6 +1045828 totalRewards = 4 +1045829 countPokes1 = 2 +1045829 countRewards1 = 1 +1045830 leafProbs1 = 80 +1045830 countPokes2 = 1 +1045830 countRewards2 = 1 +1045844 leafProbs2 = 20 +1045844 countPokes3 = 0 +1045845 countRewards3 = 0 +1045845 leafProbs3 = 20 +1045846 countPokes4 = 0 +1045846 countRewards4 = 0 +1045846 leafProbs4 = 50 +1045846 countPokes5 = 1 +1045846 countRewards5 = 1 +1045861 leafProbs5 = 80 +1045861 countPokes6 = 2 +1045862 countRewards6 = 1 +1045862 leafProbs6 = 50 +~~~ +1045906 2 0 +1046489 DOWN 2 +1046489 0 0 +1046492 UP 2 +1046492 2 0 +1046736 DOWN 2 +1046736 0 0 +1046740 UP 2 +1046740 2 0 +1048862 DOWN 2 +1048862 0 0 +1048885 UP 2 +1048885 2 0 +1049314 DOWN 2 +1049314 0 0 +1049320 UP 2 +1049320 2 0 +1049417 DOWN 2 +1049417 0 0 +1055638 UP 1 +1055638 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1056137 DOWN 1 +1056137 0 0 +~~~ +1056161 contingency = 1 +1056161 trialThresh = 100 +1056161 timeMaxOut = 20 +1056162 timeElapsed = 4 +1056162 totalPokes = 7 +1056163 totalRewards = 4 +1056163 countPokes1 = 3 +1056163 countRewards1 = 1 +1056163 leafProbs1 = 80 +1056164 countPokes2 = 1 +1056164 countRewards2 = 1 +1056178 leafProbs2 = 20 +1056179 countPokes3 = 0 +1056179 countRewards3 = 0 +1056179 leafProbs3 = 20 +1056179 countPokes4 = 0 +1056180 countRewards4 = 0 +1056180 leafProbs4 = 50 +1056181 countPokes5 = 1 +1056181 countRewards5 = 1 +1056195 leafProbs5 = 80 +1056195 countPokes6 = 2 +1056195 countRewards6 = 1 +1056196 leafProbs6 = 50 +~~~ +1075389 UP 1 +1075389 1 0 +1077673 DOWN 1 +1077673 0 0 +1080094 UP 1 +1080094 1 0 +1080643 DOWN 1 +1080643 0 0 +1081045 UP 1 +1081045 1 0 +1081200 DOWN 1 +1081200 0 0 +1083005 UP 1 +1083005 1 0 +1083449 DOWN 1 +1083449 0 0 +1102276 UP 1 +1102276 1 0 +1102327 DOWN 1 +1102327 0 0 +1102345 UP 1 +1102345 1 0 +1102777 DOWN 1 +1102777 0 0 +1102819 UP 1 +1102819 1 0 +1102934 DOWN 1 +1102934 0 0 +1103297 UP 1 +1103297 1 0 +1103387 DOWN 1 +1103387 0 0 +1103417 UP 1 +1103417 1 0 +1103475 DOWN 1 +1103475 0 0 +1103807 UP 1 +1103807 1 0 +1103947 DOWN 1 +1103947 0 0 +1103991 UP 1 +1103991 1 0 +1104026 DOWN 1 +1104026 0 0 +1118606 UP 1 +1118606 1 0 +1118640 DOWN 1 +1118640 0 0 +1131899 UP 6 +1131899 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1132172 DOWN 6 +1132172 0 0 +1132200 UP 6 +1132200 32 0 +~~~ +1132203 contingency = 1 +1132203 trialThresh = 100 +1132204 timeMaxOut = 20 +1132204 timeElapsed = 6 +1132204 totalPokes = 8 +1132204 totalRewards = 4 +1132205 countPokes1 = 3 +1132205 countRewards1 = 1 +1132205 leafProbs1 = 80 +1132206 countPokes2 = 1 +1132206 countRewards2 = 1 +1132220 leafProbs2 = 20 +1132220 countPokes3 = 0 +1132220 countRewards3 = 0 +1132221 leafProbs3 = 20 +1132221 countPokes4 = 0 +1132222 countRewards4 = 0 +1132222 leafProbs4 = 50 +1132222 countPokes5 = 1 +1132222 countRewards5 = 1 +1132237 leafProbs5 = 80 +1132237 countPokes6 = 3 +1132238 countRewards6 = 1 +1132238 leafProbs6 = 50 +~~~ +1132394 DOWN 6 +1132394 0 0 +1132422 UP 6 +1132422 32 0 +1132437 DOWN 6 +1132437 0 0 +1157002 UP 6 +1157002 32 0 +1157518 DOWN 6 +1157518 0 0 +1160471 UP 1 +1160471 1 0 +1160482 DOWN 1 +1160482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1160504 UP 1 +1160504 1 0 +~~~ +1160510 contingency = 1 +1160510 trialThresh = 100 +1160510 timeMaxOut = 20 +1160511 timeElapsed = 7 +1160511 totalPokes = 9 +1160512 totalRewards = 4 +1160512 countPokes1 = 4 +1160512 countRewards1 = 1 +1160512 leafProbs1 = 80 +1160513 countPokes2 = 1 +1160513 countRewards2 = 1 +1160527 leafProbs2 = 20 +1160528 countPokes3 = 0 +1160528 countRewards3 = 0 +1160528 leafProbs3 = 20 +1160528 countPokes4 = 0 +1160528 countRewards4 = 0 +1160529 leafProbs4 = 50 +1160529 countPokes5 = 1 +1160530 countRewards5 = 1 +1160544 leafProbs5 = 80 +1160544 countPokes6 = 3 +1160544 countRewards6 = 1 +1160545 leafProbs6 = 50 +~~~ +1160809 DOWN 1 +1160809 0 0 +1160823 UP 1 +1160823 1 0 +1160943 DOWN 1 +1160943 0 0 + + description: state script log run 2 + task_epochs: 4, +] +2021-01-27 20:05:48,357 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 20:05:49,311 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 20:05:49,313 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 20:05:49,313 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 20:05:49,314 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 20:05:49,314 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 20:05:49,321 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 20:05:49,321 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 20:05:49,325 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 20:05:49,325 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 20:05:49,895 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 20:05:49,896 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 20:05:49,896 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 20:05:49,896 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 20:05:49,897 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 20:05:49,927 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 20:05:49,929 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 20:05:49,931 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 20:05:49,931 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 20:05:52,247 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 20:05:52,249 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 20:09:23,111 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 20:09:23,112 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 20:09:23,113 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 20:09:23,113 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 20:09:23,113 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 20:09:23,422 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 20:09:23,423 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 20:09:23,423 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 20:09:23,423 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 20:09:23,426 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 20:10:13,023 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-27 20:12:33,415 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat +2021-01-27 20:13:35,995 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat +2021-01-27 20:14:53,507 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 20:14:53,513 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 20:14:53,514 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 20:15:40,406 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-27 20:15:40,424 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 20:17:31,242 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-27 20:22:49,759 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat +2021-01-27 20:25:15,671 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat +2021-01-27 20:28:18,926 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-27 20:41:09,739 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 20:41:09,743 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat +2021-01-27 20:41:09,745 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat +2021-01-27 20:41:09,871 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-27 21:00:48,570 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:00:48,755 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:00:48,756 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:00:48,756 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:00:48,757 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:01:16,009 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:01:16,044 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:01:16,044 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:01:16,045 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:01:16,045 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:01:16,509 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-27 21:01:16,807 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:01:17,118 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:01:17,120 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:01:17,121 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:01:17,121 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140317759282000 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140317759281488 +Fields: + content: # +#% author: AC +#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 +#% same as branch_always_reward_no_revisit.sc +# +#%initialize constant vars +#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min +#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later +# +#%initialize updating vars +#int rewardPump = 0 %can take on values 7-12 in fxn 1 +#int rewardWell = 0 %can take on values 1-6 in fxn 4 +#int timeElapsed = 0 +#int totalPokes = 0 +#int totalRewards = 0 +#int contingency = -1 +#int count = 0 +#int loopInterval = 250 +#int trialThresh = 0 +#int timeMaxOut = 0 +# +#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being +#int leafProbs2 = 0 +#int leafProbs3 = 0 +#int leafProbs4 = 0 +#int leafProbs5 = 0 +#int leafProbs6 = 0 +# +#int countPokes1 = 0 +#int countPokes2 = 0 +#int countPokes3 = 0 +#int countPokes4 = 0 +#int countPokes5 = 0 +#int countPokes6 = 0 +# +#int countRewards1 = 0 +#int countRewards2 = 0 +#int countRewards3 = 0 +#int countRewards4 = 0 +#int countRewards5 = 0 +#int countRewards6 = 0 +# +#int sessionProbs1 = 0 +#int sessionProbs2 = 0 +#int sessionProbs3 = 0 +#int sessionProbs4 = 0 +#int sessionProbs5 = 0 +#int sessionProbs6 = 0 +# +#%give reward for certain duration after certain delay +#function 1 +# do in delayRewardPeriod +# portout[rewardPump] = 1 %start rewarding with this pump dio +# do in deliverPeriod +# portout[rewardPump] = 0 %stop rewarding with this pump dio +# end +# end +#end; +# +#%keep track of animal behavior and display for experimenter +#function 2 +# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... +# disp(contingency) +# disp(trialThresh) +# disp(timeMaxOut) +# disp(timeElapsed) %length of session thus far +# disp(totalPokes) %how many nonrepeated well visits thus far +# disp(totalRewards) %how many rewards collected thus far +# +# disp(countPokes1) %how many pokes at each well, 6x1 array turned str +# disp(countRewards1) %how many rewards collected per well +# disp(leafProbs1) %experimenter-determined probabilities of reward per well +# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke +# +# disp(countPokes2) +# disp(countRewards2) +# disp(leafProbs2) +# %disp(sessionProbs2) +# +# disp(countPokes3) +# disp(countRewards3) +# disp(leafProbs3) +# %disp(sessionProbs3) +# +# disp(countPokes4) +# disp(countRewards4) +# disp(leafProbs4) +# %disp(sessionProbs4) +# +# disp(countPokes5) +# disp(countRewards5) +# disp(leafProbs5) +# %disp(sessionProbs5) +# +# disp(countPokes6) +# disp(countRewards6) +# disp(leafProbs6) +# %disp(sessionProbs6) +#end; +# +# +#%tell the user that the contingency is complete +#function 3 +# disp('This contingency is over!') +#end; +# +#%end session +#function 4 +# while count < 50 do every loopInterval +# portout[1] = flip +# portout[2] = flip +# portout[3] = flip +# portout[4] = flip +# portout[5] = flip +# portout[6] = flip +# count = count+1 +# then do +# portout[1] = 0 +# portout[2] = 0 +# portout[3] = 0 +# portout[4] = 0 +# portout[5] = 0 +# portout[6] = 0 +# end +# disp('This session is complete!') +#end; +# +# +#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) +#callback portin[1] up +# disp('UP 1') +#end; +# +#callback portin[1] down +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# disp('UP 2') +#end; +# +#callback portin[2] down +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# disp('UP 3') +#end; +# +#callback portin[3] down +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# disp('UP 4') +#end; +# +#callback portin[4] down +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# disp('UP 5') +#end; +# +#callback portin[5] down +# disp('DOWN 5') +#end; +#callback portin[6] up +# disp('UP 6') +#end; +# +#callback portin[6] down +# disp('DOWN 6') +#end; +# +# +# +##author: AC +##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 +##contingency changes occur automatically after either a # of trials or # of minutes +#''' +#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur +#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. +# +#Basic structure: +#if nosepoke at a well +#if the nosepoke!= last nosepoke location +# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p +# trigger(fxn1) #deliver reward, and stop after reward duration +#display updated trial info +#''' +# +##import +#import numpy as np +#import re +#import time +#import math +#from tkinter import * +# +##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) +#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. +#trialThresh = 100 #per contingency +#timeMaxOut = 20 #per contingency, in mins +# +##set up wells and pumps dios +#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info +#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery +# +##variables to keep track of and update during behavior (global) +#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. +#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. +#timeElapsed = 0 #session length thus far in mins +#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. +#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) +#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward +#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 +#runningTrials = False #must say yes to saving data to turn this to true +# +##THIS FXN MUST BE NAMED 'callback'!! +#def callback(line): +# #when an event occurs out on the track, addScQtEvent will call this fxn +# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) +# pokeIn(re.findall(r'\d+',line)) +# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, +# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" +# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) +# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells +# +##when animal nosepokes and breaks beam +#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes +# global currLeaf +# global timeStart +# global leafWells +# global lastLeaf +# global countPokes +# global leafProbs +# global leafPumps +# global contingency +# global countRewards +# global runningTrials +# global timeElapsed +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# if currLeaf == -1: #if it's the first trial in the contingency +# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke +# #if timeElapsed >= timeMaxOut: +# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency +# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency +# #change. sort of defeats the purpose of the floor approach right now. +# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") +# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") +# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") +# timeStart = time.time() #start time for the contingency +# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency +# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") +# countPokes = np.array([0,0,0,0,0,0]) +# countRewards = np.array([0,0,0,0,0,0]) +# for i in range(len(countPokes)): #initialize all as zero +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# for i in range(len(countRewards)): #initialize all as zero +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 +# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump +# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well +# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf +# for i in range(len(countPokes)): +# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") +# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") +# if np.random.random_sample() < leafProbs[contingency][currLeaf]: +# deliverReward(leafPumps[currLeaf]) +# +##deliver reward, called upon poking in a nonrepeated well +#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps +# global currLeaf +# global rewardPump +# global countRewards +# +# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use +# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward +# countRewards[currLeaf] += 1 #increment num of rewards at this location +# for i in range(len(countRewards)): +# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") +# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") +# +##update lastLeaf and print out info about the trial if it was at a nonrepeated well +#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells +# global leafWells +# global currLeaf +# global lastLeaf +# global timeElapsed +# global timeStart +# global countPokes +# global countRewards +# global leafProbs +# global contingency +# global runningTrials +# global trialThresh +# global timeMaxOut +# +# if runningTrials: +# #if leafWells.index(int(dio[1])) != currLeaf +# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. +# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far +# timeElapsed = round((time.time()-timeStart)/60) +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log +# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn +# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. +# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): +# if contingency < len(leafProbs) - 1: +# currLeaf = -1 #to enable shifting to next contingency +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# timeElapsed = 0 +# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") +# if contingency == len(leafProbs) - 1: +# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over +# runningTrials = False #so no more rewards or anything happen on track +# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session +# +##gui to help remind user that should have saved data +#savingDisp = Tk() +# +#def yesSaving(): +# global runningTrials +# savingDisp.destroy() +# runningTrials=True +# +#def noSaving(): +# savingDisp.destroy() +# +#saveFrame1 = Frame(savingDisp) +#saveFrame1.pack(side = TOP) +# +#saveFrame2 = Frame(savingDisp) +#saveFrame2.pack(side = BOTTOM) +# +#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") +#LS0.pack() +# +#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) +#B1.pack(side = LEFT) +# +#B2 = Button(saveFrame2, text ="No", command = noSaving) +#B2.pack(side = LEFT) +# +#savingDisp.mainloop() +# +# +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94048 UP 1 +94048 1 0 +94058 DOWN 1 +94058 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +94112 contingency = 0 +94112 trialThresh = 100 +94112 timeMaxOut = 20 +94112 timeElapsed = 0 +94112 totalPokes = 1 +94113 totalRewards = 0 +94113 countPokes1 = 1 +94114 countRewards1 = 0 +94114 leafProbs1 = 80 +94114 countPokes2 = 0 +94114 countRewards2 = 0 +94128 leafProbs2 = 20 +94129 countPokes3 = 0 +94129 countRewards3 = 0 +94130 leafProbs3 = 20 +94130 countPokes4 = 0 +94130 countRewards4 = 0 +94130 leafProbs4 = 50 +94131 countPokes5 = 0 +94131 countRewards5 = 0 +94132 leafProbs5 = 80 +94132 countPokes6 = 0 +94146 countRewards6 = 0 +94146 leafProbs6 = 50 +~~~ +95370 UP 1 +95370 1 0 +95396 DOWN 1 +95396 0 0 +95404 UP 1 +95404 1 0 +95415 DOWN 1 +95415 0 0 +95449 UP 1 +95449 1 0 +95507 DOWN 1 +95507 0 0 +95526 UP 1 +95526 1 0 +95527 DOWN 1 +95527 0 0 +95534 UP 1 +95534 1 0 +98011 DOWN 1 +98011 0 0 +109846 UP 6 +109846 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +109947 DOWN 6 +109947 0 0 +109954 UP 6 +109954 32 0 +~~~ +109967 contingency = 0 +109967 trialThresh = 100 +109968 timeMaxOut = 20 +109968 timeElapsed = 0 +109969 totalPokes = 2 +109969 totalRewards = 0 +109969 countPokes1 = 1 +109969 countRewards1 = 0 +109969 leafProbs1 = 80 +109970 countPokes2 = 0 +109970 countRewards2 = 0 +109984 leafProbs2 = 20 +109985 countPokes3 = 0 +109985 countRewards3 = 0 +109985 leafProbs3 = 20 +109985 countPokes4 = 0 +109985 countRewards4 = 0 +109986 leafProbs4 = 50 +109986 countPokes5 = 0 +109987 countRewards5 = 0 +109987 leafProbs5 = 80 +110001 countPokes6 = 1 +110001 countRewards6 = 0 +110001 leafProbs6 = 50 +~~~ +111783 DOWN 6 +111783 0 0 +111799 UP 6 +111799 32 0 +112400 DOWN 6 +112399 0 0 +115161 UP 5 +115161 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115185 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +115485 16 0 +115577 DOWN 5 +115577 0 0 +~~~ +115603 contingency = 0 +115603 trialThresh = 100 +115604 timeMaxOut = 20 +115604 timeElapsed = 1 +115605 totalPokes = 3 +115605 totalRewards = 1 +115605 countPokes1 = 1 +115605 countRewards1 = 0 +115606 leafProbs1 = 80 +115606 countPokes2 = 0 +115607 countRewards2 = 0 +115620 leafProbs2 = 20 +115621 countPokes3 = 0 +115621 countRewards3 = 0 +115621 leafProbs3 = 20 +115621 countPokes4 = 0 +115622 countRewards4 = 0 +115622 leafProbs4 = 50 +115623 countPokes5 = 1 +115623 countRewards5 = 1 +115623 leafProbs5 = 80 +115637 countPokes6 = 1 +115637 countRewards6 = 0 +115637 leafProbs6 = 50 +~~~ +115638 UP 5 +115638 16 0 +118235 DOWN 5 +118235 0 0 +118252 UP 5 +118252 16 0 +118676 DOWN 5 +118676 0 0 +124414 UP 4 +124414 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124444 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +124564 DOWN 4 +124564 0 512 +124571 UP 4 +124571 8 512 +~~~ +124590 contingency = 0 +124590 trialThresh = 100 +124591 timeMaxOut = 20 +124591 timeElapsed = 1 +124591 totalPokes = 4 +124591 totalRewards = 2 +124592 countPokes1 = 1 +124592 countRewards1 = 0 +124592 leafProbs1 = 80 +124593 countPokes2 = 0 +124593 countRewards2 = 0 +124607 leafProbs2 = 20 +124607 countPokes3 = 0 +124607 countRewards3 = 0 +124608 leafProbs3 = 20 +124608 countPokes4 = 1 +124609 countRewards4 = 1 +124609 leafProbs4 = 50 +124609 countPokes5 = 1 +124609 countRewards5 = 1 +124609 leafProbs5 = 80 +124623 countPokes6 = 1 +124623 countRewards6 = 0 +124624 leafProbs6 = 50 +~~~ +124744 8 0 +127285 DOWN 4 +127285 0 0 +128916 UP 3 +128916 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +131495 DOWN 3 +131495 0 0 +131506 UP 3 +131506 4 0 +~~~ +131522 contingency = 0 +131523 trialThresh = 100 +131523 timeMaxOut = 20 +131523 timeElapsed = 1 +131523 totalPokes = 5 +131524 totalRewards = 2 +131524 countPokes1 = 1 +131525 countRewards1 = 0 +131525 leafProbs1 = 80 +131525 countPokes2 = 0 +131525 countRewards2 = 0 +131539 leafProbs2 = 20 +131539 countPokes3 = 1 +131540 countRewards3 = 0 +131540 leafProbs3 = 20 +131541 countPokes4 = 1 +131541 countRewards4 = 1 +131541 leafProbs4 = 50 +131541 countPokes5 = 1 +131542 countRewards5 = 1 +131542 leafProbs5 = 80 +131556 countPokes6 = 1 +131556 countRewards6 = 0 +131557 leafProbs6 = 50 +~~~ +131829 DOWN 3 +131829 0 0 +131849 UP 3 +131849 4 0 +131922 DOWN 3 +131922 0 0 +134163 UP 4 +134163 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +134675 DOWN 4 +134675 0 0 +~~~ +134693 contingency = 0 +134693 trialThresh = 100 +134693 timeMaxOut = 20 +134694 timeElapsed = 1 +134694 totalPokes = 6 +134695 totalRewards = 2 +134695 countPokes1 = 1 +134695 countRewards1 = 0 +134695 leafProbs1 = 80 +134696 countPokes2 = 0 +134696 countRewards2 = 0 +134710 leafProbs2 = 20 +134710 countPokes3 = 1 +134711 countRewards3 = 0 +134711 leafProbs3 = 20 +134711 countPokes4 = 2 +134711 countRewards4 = 1 +134712 leafProbs4 = 50 +134712 countPokes5 = 1 +134713 countRewards5 = 1 +134713 leafProbs5 = 80 +134727 countPokes6 = 1 +134727 countRewards6 = 0 +134727 leafProbs6 = 50 +~~~ +136327 UP 3 +136327 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +137036 DOWN 3 +137036 0 0 +~~~ +137065 contingency = 0 +137065 trialThresh = 100 +137065 timeMaxOut = 20 +137066 timeElapsed = 1 +137066 totalPokes = 7 +137067 totalRewards = 2 +137067 countPokes1 = 1 +137067 countRewards1 = 0 +137067 leafProbs1 = 80 +137068 countPokes2 = 0 +137068 countRewards2 = 0 +137082 leafProbs2 = 20 +137082 countPokes3 = 2 +137083 countRewards3 = 0 +137083 leafProbs3 = 20 +137083 countPokes4 = 2 +137083 countRewards4 = 1 +137084 leafProbs4 = 50 +137084 countPokes5 = 1 +137085 countRewards5 = 1 +137085 leafProbs5 = 80 +137099 countPokes6 = 1 +137099 countRewards6 = 0 +137099 leafProbs6 = 50 +~~~ +143600 UP 5 +143600 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143854 DOWN 5 +143854 0 0 +~~~ +143877 contingency = 0 +143877 trialThresh = 100 +143877 timeMaxOut = 20 +143878 timeElapsed = 1 +143878 totalPokes = 8 +143879 totalRewards = 2 +143879 countPokes1 = 1 +143879 countRewards1 = 0 +143879 leafProbs1 = 80 +143880 countPokes2 = 0 +143880 countRewards2 = 0 +143894 leafProbs2 = 20 +143894 countPokes3 = 2 +143895 countRewards3 = 0 +143895 leafProbs3 = 20 +143895 countPokes4 = 2 +143895 countRewards4 = 1 +143896 leafProbs4 = 50 +143896 countPokes5 = 2 +143897 countRewards5 = 1 +143897 leafProbs5 = 80 +143911 countPokes6 = 1 +143911 countRewards6 = 0 +143911 leafProbs6 = 50 +~~~ +143911 UP 5 +143911 16 0 +144383 DOWN 5 +144383 0 0 +146591 UP 6 +146591 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146617 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +146917 32 0 +147061 DOWN 6 +147061 0 0 +~~~ +147089 contingency = 0 +147090 trialThresh = 100 +147090 timeMaxOut = 20 +147091 timeElapsed = 1 +147091 totalPokes = 9 +147091 totalRewards = 3 +147091 countPokes1 = 1 +147092 countRewards1 = 0 +147092 leafProbs1 = 80 +147093 countPokes2 = 0 +147093 countRewards2 = 0 +147107 leafProbs2 = 20 +147107 countPokes3 = 2 +147107 countRewards3 = 0 +147107 leafProbs3 = 20 +147108 countPokes4 = 2 +147108 countRewards4 = 1 +147109 leafProbs4 = 50 +147109 countPokes5 = 2 +147109 countRewards5 = 1 +147109 leafProbs5 = 80 +147123 countPokes6 = 2 +147123 countRewards6 = 1 +147124 leafProbs6 = 50 +~~~ +147124 UP 6 +147124 32 0 +147150 DOWN 6 +147150 0 0 +147157 UP 6 +147157 32 0 +149454 DOWN 6 +149454 0 0 +160370 UP 1 +160370 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160397 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +160522 DOWN 1 +160522 0 64 +160533 UP 1 +160533 1 64 +~~~ +160544 contingency = 0 +160544 trialThresh = 100 +160544 timeMaxOut = 20 +160545 timeElapsed = 2 +160545 totalPokes = 10 +160546 totalRewards = 4 +160546 countPokes1 = 2 +160546 countRewards1 = 1 +160546 leafProbs1 = 80 +160547 countPokes2 = 0 +160547 countRewards2 = 0 +160561 leafProbs2 = 20 +160561 countPokes3 = 2 +160562 countRewards3 = 0 +160562 leafProbs3 = 20 +160562 countPokes4 = 2 +160562 countRewards4 = 1 +160563 leafProbs4 = 50 +160563 countPokes5 = 2 +160564 countRewards5 = 1 +160564 leafProbs5 = 80 +160578 countPokes6 = 2 +160578 countRewards6 = 1 +160578 leafProbs6 = 50 +~~~ +160697 1 0 +163834 DOWN 1 +163834 0 0 +166987 UP 2 +166987 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +167144 DOWN 2 +167144 0 0 +167149 UP 2 +167149 2 0 +~~~ +167168 contingency = 0 +167168 trialThresh = 100 +167169 timeMaxOut = 20 +167169 timeElapsed = 2 +167170 totalPokes = 11 +167170 totalRewards = 4 +167170 countPokes1 = 2 +167170 countRewards1 = 1 +167171 leafProbs1 = 80 +167171 countPokes2 = 1 +167172 countRewards2 = 0 +167186 leafProbs2 = 20 +167186 countPokes3 = 2 +167186 countRewards3 = 0 +167186 leafProbs3 = 20 +167186 countPokes4 = 2 +167187 countRewards4 = 1 +167187 leafProbs4 = 50 +167188 countPokes5 = 2 +167188 countRewards5 = 1 +167188 leafProbs5 = 80 +167202 countPokes6 = 2 +167202 countRewards6 = 1 +167202 leafProbs6 = 50 +~~~ +169470 DOWN 2 +169470 0 0 +169499 UP 2 +169499 2 0 +169914 DOWN 2 +169914 0 0 +178210 UP 1 +178210 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178233 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178533 1 0 +181346 DOWN 1 +181346 0 0 +~~~ +181372 contingency = 0 +181372 trialThresh = 100 +181372 timeMaxOut = 20 +181373 timeElapsed = 2 +181373 totalPokes = 12 +181374 totalRewards = 5 +181374 countPokes1 = 3 +181374 countRewards1 = 2 +181374 leafProbs1 = 80 +181375 countPokes2 = 1 +181375 countRewards2 = 0 +181389 leafProbs2 = 20 +181389 countPokes3 = 2 +181390 countRewards3 = 0 +181390 leafProbs3 = 20 +181390 countPokes4 = 2 +181390 countRewards4 = 1 +181391 leafProbs4 = 50 +181391 countPokes5 = 2 +181392 countRewards5 = 1 +181392 leafProbs5 = 80 +181406 countPokes6 = 2 +181406 countRewards6 = 1 +181406 leafProbs6 = 50 +~~~ +184630 UP 2 +184630 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184804 DOWN 2 +184804 0 0 +184815 UP 2 +184815 2 0 +~~~ +184832 contingency = 0 +184832 trialThresh = 100 +184832 timeMaxOut = 20 +184832 timeElapsed = 2 +184833 totalPokes = 13 +184833 totalRewards = 5 +184834 countPokes1 = 3 +184834 countRewards1 = 2 +184834 leafProbs1 = 80 +184834 countPokes2 = 2 +184835 countRewards2 = 0 +184849 leafProbs2 = 20 +184849 countPokes3 = 2 +184850 countRewards3 = 0 +184850 leafProbs3 = 20 +184850 countPokes4 = 2 +184850 countRewards4 = 1 +184850 leafProbs4 = 50 +184851 countPokes5 = 2 +184851 countRewards5 = 1 +184852 leafProbs5 = 80 +184865 countPokes6 = 2 +184866 countRewards6 = 1 +184866 leafProbs6 = 50 +~~~ +185326 DOWN 2 +185326 0 0 +185333 UP 2 +185333 2 0 +185995 DOWN 2 +185995 0 0 +189960 UP 1 +189960 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190078 DOWN 1 +190078 0 0 +190080 UP 1 +190080 1 0 +~~~ +190098 contingency = 0 +190099 trialThresh = 100 +190099 timeMaxOut = 20 +190100 timeElapsed = 2 +190100 totalPokes = 14 +190100 totalRewards = 5 +190100 countPokes1 = 4 +190101 countRewards1 = 2 +190101 leafProbs1 = 80 +190101 countPokes2 = 2 +190102 countRewards2 = 0 +190116 leafProbs2 = 20 +190116 countPokes3 = 2 +190116 countRewards3 = 0 +190116 leafProbs3 = 20 +190117 countPokes4 = 2 +190117 countRewards4 = 1 +190118 leafProbs4 = 50 +190118 countPokes5 = 2 +190118 countRewards5 = 1 +190118 leafProbs5 = 80 +190132 countPokes6 = 2 +190132 countRewards6 = 1 +190132 leafProbs6 = 50 +~~~ +190133 DOWN 1 +190133 0 0 +190160 UP 1 +190160 1 0 +190248 DOWN 1 +190248 0 0 +190276 UP 1 +190276 1 0 +190356 DOWN 1 +190356 0 0 +190391 UP 1 +190391 1 0 +190481 DOWN 1 +190481 0 0 +190555 UP 1 +190555 1 0 +190570 DOWN 1 +190570 0 0 +190849 UP 1 +190849 1 0 +190908 DOWN 1 +190908 0 0 +193661 UP 2 +193661 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +193935 DOWN 2 +193935 0 0 +193938 UP 2 +193938 2 0 +~~~ +193959 contingency = 0 +193959 trialThresh = 100 +193960 timeMaxOut = 20 +193960 timeElapsed = 2 +193960 totalPokes = 15 +193960 totalRewards = 5 +193961 countPokes1 = 4 +193961 countRewards1 = 2 +193962 leafProbs1 = 80 +193962 countPokes2 = 3 +193962 countRewards2 = 0 +193976 leafProbs2 = 20 +193976 countPokes3 = 2 +193977 countRewards3 = 0 +193977 leafProbs3 = 20 +193977 countPokes4 = 2 +193978 countRewards4 = 1 +193978 leafProbs4 = 50 +193978 countPokes5 = 2 +193978 countRewards5 = 1 +193979 leafProbs5 = 80 +193992 countPokes6 = 2 +193993 countRewards6 = 1 +193993 leafProbs6 = 50 +~~~ +194100 DOWN 2 +194100 0 0 +196098 UP 1 +196098 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196123 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +196423 1 0 +196514 DOWN 1 +196514 0 0 +196516 UP 1 +196516 1 0 +~~~ +196532 contingency = 0 +196532 trialThresh = 100 +196532 timeMaxOut = 20 +196533 timeElapsed = 3 +196533 totalPokes = 16 +196534 totalRewards = 6 +196534 countPokes1 = 5 +196534 countRewards1 = 3 +196534 leafProbs1 = 80 +196534 countPokes2 = 3 +196535 countRewards2 = 0 +196549 leafProbs2 = 20 +196549 countPokes3 = 2 +196550 countRewards3 = 0 +196550 leafProbs3 = 20 +196550 countPokes4 = 2 +196550 countRewards4 = 1 +196551 leafProbs4 = 50 +196551 countPokes5 = 2 +196551 countRewards5 = 1 +196552 leafProbs5 = 80 +196565 countPokes6 = 2 +196566 countRewards6 = 1 +196566 leafProbs6 = 50 +~~~ +198509 DOWN 1 +198509 0 0 +202035 UP 1 +202035 1 0 +202194 DOWN 1 +202194 0 0 +213522 UP 6 +213522 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +213903 DOWN 6 +213903 0 0 +213919 UP 6 +213919 32 0 +~~~ +213923 contingency = 0 +213923 trialThresh = 100 +213924 timeMaxOut = 20 +213924 timeElapsed = 3 +213925 totalPokes = 17 +213925 totalRewards = 6 +213925 countPokes1 = 5 +213925 countRewards1 = 3 +213926 leafProbs1 = 80 +213926 countPokes2 = 3 +213927 countRewards2 = 0 +213940 leafProbs2 = 20 +213941 countPokes3 = 2 +213941 countRewards3 = 0 +213941 leafProbs3 = 20 +213941 countPokes4 = 2 +213942 countRewards4 = 1 +213942 leafProbs4 = 50 +213943 countPokes5 = 2 +213943 countRewards5 = 1 +213943 leafProbs5 = 80 +213957 countPokes6 = 3 +213957 countRewards6 = 1 +213957 leafProbs6 = 50 +~~~ +213962 DOWN 6 +213962 0 0 +218705 UP 5 +218705 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +218741 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +219041 16 0 +220419 DOWN 5 +220419 0 0 +220425 UP 5 +220425 16 0 +~~~ +220436 contingency = 0 +220436 trialThresh = 100 +220437 timeMaxOut = 20 +220437 timeElapsed = 3 +220437 totalPokes = 18 +220437 totalRewards = 7 +220437 countPokes1 = 5 +220438 countRewards1 = 3 +220438 leafProbs1 = 80 +220439 countPokes2 = 3 +220439 countRewards2 = 0 +220453 leafProbs2 = 20 +220453 countPokes3 = 2 +220453 countRewards3 = 0 +220454 leafProbs3 = 20 +220454 countPokes4 = 2 +220455 countRewards4 = 1 +220455 leafProbs4 = 50 +220455 countPokes5 = 3 +220455 countRewards5 = 2 +220455 leafProbs5 = 80 +220469 countPokes6 = 3 +220469 countRewards6 = 1 +220470 leafProbs6 = 50 +~~~ +221126 DOWN 5 +221126 0 0 +221145 UP 5 +221145 16 0 +221557 DOWN 5 +221557 0 0 +225579 UP 6 +225579 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +225814 DOWN 6 +225814 0 0 +225835 UP 6 +225835 32 0 +~~~ +225843 contingency = 0 +225843 trialThresh = 100 +225843 timeMaxOut = 20 +225844 timeElapsed = 3 +225844 totalPokes = 19 +225845 totalRewards = 7 +225845 countPokes1 = 5 +225845 countRewards1 = 3 +225845 leafProbs1 = 80 +225846 countPokes2 = 3 +225846 countRewards2 = 0 +225860 leafProbs2 = 20 +225860 countPokes3 = 2 +225861 countRewards3 = 0 +225861 leafProbs3 = 20 +225861 countPokes4 = 2 +225861 countRewards4 = 1 +225862 leafProbs4 = 50 +225862 countPokes5 = 3 +225863 countRewards5 = 2 +225863 leafProbs5 = 80 +225877 countPokes6 = 4 +225877 countRewards6 = 1 +225877 leafProbs6 = 50 +~~~ +226005 DOWN 6 +226005 0 0 +226079 UP 6 +226079 32 0 +226211 DOWN 6 +226211 0 0 +226241 UP 6 +226241 32 0 +226290 DOWN 6 +226290 0 0 +226389 UP 6 +226389 32 0 +226584 DOWN 6 +226584 0 0 +226651 UP 6 +226651 32 0 +226788 DOWN 6 +226788 0 0 +230377 UP 5 +230377 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230409 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +230619 DOWN 5 +230619 0 1024 +230632 UP 5 +230632 16 1024 +~~~ +230647 contingency = 0 +230647 trialThresh = 100 +230647 timeMaxOut = 20 +230647 timeElapsed = 3 +230648 totalPokes = 20 +230648 totalRewards = 8 +230649 countPokes1 = 5 +230649 countRewards1 = 3 +230649 leafProbs1 = 80 +230649 countPokes2 = 3 +230650 countRewards2 = 0 +230663 leafProbs2 = 20 +230664 countPokes3 = 2 +230664 countRewards3 = 0 +230665 leafProbs3 = 20 +230665 countPokes4 = 2 +230665 countRewards4 = 1 +230665 leafProbs4 = 50 +230666 countPokes5 = 4 +230666 countRewards5 = 3 +230667 leafProbs5 = 80 +230680 countPokes6 = 4 +230681 countRewards6 = 1 +230681 leafProbs6 = 50 +~~~ +230708 16 0 +232797 DOWN 5 +232796 0 0 +232802 UP 5 +232802 16 0 +232900 DOWN 5 +232900 0 0 +232928 UP 5 +232928 16 0 +233233 DOWN 5 +233233 0 0 +233256 UP 5 +233256 16 0 +233319 DOWN 5 +233319 0 0 +235867 UP 6 +235867 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +235898 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +236198 32 0 +238601 DOWN 6 +238601 0 0 +238614 UP 6 +238614 32 0 +~~~ +238631 contingency = 0 +238631 trialThresh = 100 +238631 timeMaxOut = 20 +238631 timeElapsed = 4 +238632 totalPokes = 21 +238632 totalRewards = 9 +238632 countPokes1 = 5 +238633 countRewards1 = 3 +238633 leafProbs1 = 80 +238633 countPokes2 = 3 +238633 countRewards2 = 0 +238647 leafProbs2 = 20 +238648 countPokes3 = 2 +238648 countRewards3 = 0 +238649 leafProbs3 = 20 +238649 countPokes4 = 2 +238649 countRewards4 = 1 +238649 leafProbs4 = 50 +238650 countPokes5 = 4 +238650 countRewards5 = 3 +238650 leafProbs5 = 80 +238664 countPokes6 = 5 +238664 countRewards6 = 2 +238665 leafProbs6 = 50 +~~~ +239049 DOWN 6 +239049 0 0 +250071 UP 1 +250071 1 0 +~~~ +~~~ +250097 DOWN 1 +250097 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250103 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250129 UP 1 +250129 1 64 +~~~ +250136 contingency = 0 +250137 trialThresh = 100 +250137 timeMaxOut = 20 +250137 timeElapsed = 4 +250137 totalPokes = 22 +250137 totalRewards = 10 +250138 countPokes1 = 6 +250138 countRewards1 = 4 +250139 leafProbs1 = 80 +250139 countPokes2 = 3 +250139 countRewards2 = 0 +250153 leafProbs2 = 20 +250153 countPokes3 = 2 +250154 countRewards3 = 0 +250154 leafProbs3 = 20 +250155 countPokes4 = 2 +250155 countRewards4 = 1 +250155 leafProbs4 = 50 +250155 countPokes5 = 4 +250156 countRewards5 = 3 +250156 leafProbs5 = 80 +250170 countPokes6 = 5 +250170 countRewards6 = 2 +250170 leafProbs6 = 50 +~~~ +250171 DOWN 1 +250171 0 64 +250204 UP 1 +250204 1 64 +250248 DOWN 1 +250248 0 64 +250280 UP 1 +250280 1 64 +250403 1 0 +250446 DOWN 1 +250446 0 0 +250455 UP 1 +250455 1 0 +253556 DOWN 1 +253556 0 0 +256084 UP 2 +256084 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256264 DOWN 2 +256264 0 0 +256267 UP 2 +256267 2 0 +~~~ +256282 contingency = 0 +256282 trialThresh = 100 +256282 timeMaxOut = 20 +256282 timeElapsed = 4 +256282 totalPokes = 23 +256283 totalRewards = 10 +256283 countPokes1 = 6 +256284 countRewards1 = 4 +256284 leafProbs1 = 80 +256284 countPokes2 = 4 +256284 countRewards2 = 0 +256298 leafProbs2 = 20 +256299 countPokes3 = 2 +256299 countRewards3 = 0 +256300 leafProbs3 = 20 +256300 countPokes4 = 2 +256300 countRewards4 = 1 +256300 leafProbs4 = 50 +256301 countPokes5 = 4 +256301 countRewards5 = 3 +256302 leafProbs5 = 80 +256315 countPokes6 = 5 +256316 countRewards6 = 2 +256316 leafProbs6 = 50 +~~~ +256546 DOWN 2 +256546 0 0 +256572 UP 2 +256572 2 0 +256748 DOWN 2 +256748 0 0 +258880 UP 1 +258880 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +258914 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +259214 1 0 +261848 DOWN 1 +261848 0 0 +~~~ +261868 contingency = 0 +261868 trialThresh = 100 +261868 timeMaxOut = 20 +261868 timeElapsed = 4 +261869 totalPokes = 24 +261869 totalRewards = 11 +261870 countPokes1 = 7 +261870 countRewards1 = 5 +261870 leafProbs1 = 80 +261870 countPokes2 = 4 +261870 countRewards2 = 0 +261884 leafProbs2 = 20 +261885 countPokes3 = 2 +261885 countRewards3 = 0 +261886 leafProbs3 = 20 +261886 countPokes4 = 2 +261886 countRewards4 = 1 +261886 leafProbs4 = 50 +261887 countPokes5 = 4 +261887 countRewards5 = 3 +261888 leafProbs5 = 80 +261901 countPokes6 = 5 +261902 countRewards6 = 2 +261902 leafProbs6 = 50 +~~~ +267560 UP 2 +267560 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +267886 DOWN 2 +267886 0 0 +267900 UP 2 +267900 2 0 +~~~ +267911 contingency = 0 +267911 trialThresh = 100 +267912 timeMaxOut = 20 +267912 timeElapsed = 4 +267912 totalPokes = 25 +267912 totalRewards = 11 +267913 countPokes1 = 7 +267913 countRewards1 = 5 +267914 leafProbs1 = 80 +267914 countPokes2 = 5 +267914 countRewards2 = 0 +267928 leafProbs2 = 20 +267928 countPokes3 = 2 +267928 countRewards3 = 0 +267929 leafProbs3 = 20 +267929 countPokes4 = 2 +267930 countRewards4 = 1 +267930 leafProbs4 = 50 +267930 countPokes5 = 4 +267930 countRewards5 = 3 +267931 leafProbs5 = 80 +267944 countPokes6 = 5 +267945 countRewards6 = 2 +267945 leafProbs6 = 50 +~~~ +267946 DOWN 2 +267946 0 0 +272470 UP 2 +272470 2 0 +272489 DOWN 2 +272489 0 0 +272498 UP 2 +272498 2 0 +272506 DOWN 2 +272506 0 0 +275002 UP 1 +275002 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275036 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +275336 1 0 +277515 DOWN 1 +277515 0 0 +277520 UP 1 +277520 1 0 +~~~ +277532 contingency = 0 +277533 trialThresh = 100 +277533 timeMaxOut = 20 +277534 timeElapsed = 5 +277534 totalPokes = 26 +277534 totalRewards = 12 +277534 countPokes1 = 8 +277534 countRewards1 = 6 +277535 leafProbs1 = 80 +277535 countPokes2 = 5 +277536 countRewards2 = 0 +277550 leafProbs2 = 20 +277550 countPokes3 = 2 +277550 countRewards3 = 0 +277550 leafProbs3 = 20 +277551 countPokes4 = 2 +277551 countRewards4 = 1 +277552 leafProbs4 = 50 +277552 countPokes5 = 4 +277552 countRewards5 = 3 +277552 leafProbs5 = 80 +277566 countPokes6 = 5 +277566 countRewards6 = 2 +277566 leafProbs6 = 50 +~~~ +277832 DOWN 1 +277832 0 0 +284331 UP 1 +284331 1 0 +284497 DOWN 1 +284497 0 0 +290436 UP 2 +290436 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +291663 DOWN 2 +291663 0 0 +~~~ +291685 contingency = 0 +291686 trialThresh = 100 +291686 timeMaxOut = 20 +291686 timeElapsed = 5 +291686 totalPokes = 27 +291687 totalRewards = 12 +291687 countPokes1 = 8 +291688 countRewards1 = 6 +291688 leafProbs1 = 80 +291688 countPokes2 = 6 +291688 countRewards2 = 0 +291702 leafProbs2 = 20 +291702 countPokes3 = 2 +291703 countRewards3 = 0 +291703 leafProbs3 = 20 +291704 countPokes4 = 2 +291704 countRewards4 = 1 +291704 leafProbs4 = 50 +291704 countPokes5 = 4 +291705 countRewards5 = 3 +291705 leafProbs5 = 80 +291719 countPokes6 = 5 +291719 countRewards6 = 2 +291720 leafProbs6 = 50 +~~~ +298521 UP 1 +298521 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298560 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +298859 1 0 +301302 DOWN 1 +301302 0 0 +301320 UP 1 +301320 1 0 +~~~ +301324 contingency = 0 +301324 trialThresh = 100 +301324 timeMaxOut = 20 +301324 timeElapsed = 5 +301325 totalPokes = 28 +301325 totalRewards = 13 +301326 countPokes1 = 9 +301326 countRewards1 = 7 +301326 leafProbs1 = 80 +301326 countPokes2 = 6 +301327 countRewards2 = 0 +301341 leafProbs2 = 20 +301341 countPokes3 = 2 +301342 countRewards3 = 0 +301342 leafProbs3 = 20 +301342 countPokes4 = 2 +301342 countRewards4 = 1 +301343 leafProbs4 = 50 +301343 countPokes5 = 4 +301343 countRewards5 = 3 +301344 leafProbs5 = 80 +301357 countPokes6 = 5 +301358 countRewards6 = 2 +301358 leafProbs6 = 50 +~~~ +301818 DOWN 1 +301818 0 0 +308157 UP 2 +308157 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +308409 DOWN 2 +308409 0 0 +~~~ +308433 contingency = 0 +308433 trialThresh = 100 +308433 timeMaxOut = 20 +308434 timeElapsed = 5 +308434 totalPokes = 29 +308435 totalRewards = 13 +308435 countPokes1 = 9 +308435 countRewards1 = 7 +308435 leafProbs1 = 80 +308436 countPokes2 = 7 +308436 countRewards2 = 0 +308450 leafProbs2 = 20 +308451 countPokes3 = 2 +308451 countRewards3 = 0 +308451 leafProbs3 = 20 +308451 countPokes4 = 2 +308452 countRewards4 = 1 +308452 leafProbs4 = 50 +308452 countPokes5 = 4 +308453 countRewards5 = 3 +308453 leafProbs5 = 80 +308467 countPokes6 = 5 +308467 countRewards6 = 2 +308467 leafProbs6 = 50 +~~~ +311726 UP 1 +311726 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +312211 DOWN 1 +312211 0 0 +~~~ +312317 contingency = 0 +312317 trialThresh = 100 +312318 timeMaxOut = 20 +312318 timeElapsed = 5 +312319 totalPokes = 30 +312319 totalRewards = 13 +312319 countPokes1 = 10 +312319 countRewards1 = 7 +312320 leafProbs1 = 80 +312320 countPokes2 = 7 +312321 countRewards2 = 0 +312335 leafProbs2 = 20 +312335 countPokes3 = 2 +312335 countRewards3 = 0 +312335 leafProbs3 = 20 +312335 countPokes4 = 2 +312336 countRewards4 = 1 +312336 leafProbs4 = 50 +312337 countPokes5 = 4 +312337 countRewards5 = 3 +312337 leafProbs5 = 80 +312351 countPokes6 = 5 +312351 countRewards6 = 2 +312351 leafProbs6 = 50 +~~~ +329565 UP 1 +329565 1 0 +329578 DOWN 1 +329578 0 0 +329607 UP 1 +329607 1 0 +329615 DOWN 1 +329615 0 0 +336849 UP 6 +336849 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +337375 DOWN 6 +337375 0 0 +~~~ +337402 contingency = 0 +337403 trialThresh = 100 +337403 timeMaxOut = 20 +337403 timeElapsed = 6 +337403 totalPokes = 31 +337404 totalRewards = 13 +337404 countPokes1 = 10 +337405 countRewards1 = 7 +337405 leafProbs1 = 80 +337405 countPokes2 = 7 +337405 countRewards2 = 0 +337419 leafProbs2 = 20 +337419 countPokes3 = 2 +337420 countRewards3 = 0 +337420 leafProbs3 = 20 +337421 countPokes4 = 2 +337421 countRewards4 = 1 +337421 leafProbs4 = 50 +337421 countPokes5 = 4 +337422 countRewards5 = 3 +337422 leafProbs5 = 80 +337436 countPokes6 = 6 +337436 countRewards6 = 2 +337437 leafProbs6 = 50 +~~~ +339595 UP 6 +339595 32 0 +339614 DOWN 6 +339614 0 0 +339917 UP 6 +339917 32 0 +340039 DOWN 6 +340039 0 0 +340062 UP 6 +340062 32 0 +341221 DOWN 6 +341221 0 0 +348806 UP 6 +348806 32 0 +349029 DOWN 6 +349029 0 0 +370690 UP 3 +370690 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +371347 DOWN 3 +371347 0 0 +~~~ +371366 contingency = 0 +371367 trialThresh = 100 +371367 timeMaxOut = 20 +371368 timeElapsed = 7 +371368 totalPokes = 32 +371368 totalRewards = 13 +371368 countPokes1 = 10 +371369 countRewards1 = 7 +371369 leafProbs1 = 80 +371370 countPokes2 = 7 +371370 countRewards2 = 0 +371384 leafProbs2 = 20 +371384 countPokes3 = 3 +371384 countRewards3 = 0 +371385 leafProbs3 = 20 +371385 countPokes4 = 2 +371386 countRewards4 = 1 +371386 leafProbs4 = 50 +371386 countPokes5 = 4 +371386 countRewards5 = 3 +371386 leafProbs5 = 80 +371400 countPokes6 = 6 +371400 countRewards6 = 2 +371401 leafProbs6 = 50 +~~~ +371401 UP 3 +371401 4 0 +371462 DOWN 3 +371462 0 0 +376503 UP 4 +376503 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376533 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +376832 8 0 +379496 DOWN 4 +379496 0 0 +~~~ +379512 contingency = 0 +379512 trialThresh = 100 +379512 timeMaxOut = 20 +379512 timeElapsed = 7 +379512 totalPokes = 33 +379513 totalRewards = 14 +379513 countPokes1 = 10 +379514 countRewards1 = 7 +379514 leafProbs1 = 80 +379514 countPokes2 = 7 +379514 countRewards2 = 0 +379528 leafProbs2 = 20 +379529 countPokes3 = 3 +379529 countRewards3 = 0 +379530 leafProbs3 = 20 +379530 countPokes4 = 3 +379530 countRewards4 = 2 +379530 leafProbs4 = 50 +379531 countPokes5 = 4 +379531 countRewards5 = 3 +379532 leafProbs5 = 80 +379545 countPokes6 = 6 +379546 countRewards6 = 2 +379546 leafProbs6 = 50 +~~~ +379546 UP 4 +379546 8 0 +380063 DOWN 4 +380063 0 0 +380421 UP 4 +380421 8 0 +382496 DOWN 4 +382496 0 0 +387918 UP 3 +387918 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +388412 DOWN 3 +388412 0 0 +~~~ +388430 contingency = 0 +388430 trialThresh = 100 +388430 timeMaxOut = 20 +388431 timeElapsed = 7 +388431 totalPokes = 34 +388432 totalRewards = 14 +388432 countPokes1 = 10 +388432 countRewards1 = 7 +388432 leafProbs1 = 80 +388433 countPokes2 = 7 +388433 countRewards2 = 0 +388447 leafProbs2 = 20 +388448 countPokes3 = 4 +388448 countRewards3 = 0 +388448 leafProbs3 = 20 +388448 countPokes4 = 3 +388448 countRewards4 = 2 +388449 leafProbs4 = 50 +388449 countPokes5 = 4 +388450 countRewards5 = 3 +388450 leafProbs5 = 80 +388464 countPokes6 = 6 +388464 countRewards6 = 2 +388464 leafProbs6 = 50 +~~~ +390881 UP 4 +390881 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +390913 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391213 8 0 +393870 DOWN 4 +393870 0 0 +~~~ +393894 contingency = 0 +393894 trialThresh = 100 +393894 timeMaxOut = 20 +393894 timeElapsed = 7 +393895 totalPokes = 35 +393895 totalRewards = 15 +393895 countPokes1 = 10 +393896 countRewards1 = 7 +393896 leafProbs1 = 80 +393896 countPokes2 = 7 +393896 countRewards2 = 0 +393910 leafProbs2 = 20 +393911 countPokes3 = 4 +393911 countRewards3 = 0 +393912 leafProbs3 = 20 +393912 countPokes4 = 4 +393912 countRewards4 = 3 +393912 leafProbs4 = 50 +393913 countPokes5 = 4 +393913 countRewards5 = 3 +393914 leafProbs5 = 80 +393927 countPokes6 = 6 +393928 countRewards6 = 2 +393928 leafProbs6 = 50 +~~~ +396968 UP 3 +396968 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +396991 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +397291 4 0 +397330 DOWN 3 +397330 0 0 +397342 UP 3 +397342 4 0 +~~~ +397350 contingency = 0 +397350 trialThresh = 100 +397351 timeMaxOut = 20 +397351 timeElapsed = 8 +397352 totalPokes = 36 +397352 totalRewards = 16 +397352 countPokes1 = 10 +397352 countRewards1 = 7 +397353 leafProbs1 = 80 +397353 countPokes2 = 7 +397353 countRewards2 = 0 +397368 leafProbs2 = 20 +397368 countPokes3 = 5 +397368 countRewards3 = 1 +397368 leafProbs3 = 20 +397368 countPokes4 = 4 +397369 countRewards4 = 3 +397369 leafProbs4 = 50 +397370 countPokes5 = 4 +397370 countRewards5 = 3 +397370 leafProbs5 = 80 +397384 countPokes6 = 6 +397384 countRewards6 = 2 +397384 leafProbs6 = 50 +~~~ +397422 DOWN 3 +397422 0 0 +397432 UP 3 +397432 4 0 +397510 DOWN 3 +397510 0 0 +397514 UP 3 +397514 4 0 +400532 DOWN 3 +400532 0 0 +419715 UP 4 +419715 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +419745 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420045 8 0 +422470 DOWN 4 +422470 0 0 +422484 UP 4 +422484 8 0 +~~~ +422499 contingency = 0 +422499 trialThresh = 100 +422499 timeMaxOut = 20 +422499 timeElapsed = 8 +422500 totalPokes = 37 +422500 totalRewards = 17 +422501 countPokes1 = 10 +422501 countRewards1 = 7 +422501 leafProbs1 = 80 +422501 countPokes2 = 7 +422502 countRewards2 = 0 +422516 leafProbs2 = 20 +422516 countPokes3 = 5 +422517 countRewards3 = 1 +422517 leafProbs3 = 20 +422517 countPokes4 = 5 +422517 countRewards4 = 4 +422517 leafProbs4 = 50 +422518 countPokes5 = 4 +422518 countRewards5 = 3 +422519 leafProbs5 = 80 +422532 countPokes6 = 6 +422533 countRewards6 = 2 +422533 leafProbs6 = 50 +~~~ +423017 DOWN 4 +423017 0 0 +427069 UP 3 +427069 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427094 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +427239 DOWN 3 +427239 0 256 +427241 UP 3 +427241 4 256 +~~~ +427264 contingency = 0 +427264 trialThresh = 100 +427264 timeMaxOut = 20 +427265 timeElapsed = 8 +427265 totalPokes = 38 +427265 totalRewards = 18 +427265 countPokes1 = 10 +427266 countRewards1 = 7 +427266 leafProbs1 = 80 +427267 countPokes2 = 7 +427267 countRewards2 = 0 +427281 leafProbs2 = 20 +427281 countPokes3 = 6 +427281 countRewards3 = 2 +427282 leafProbs3 = 20 +427282 countPokes4 = 5 +427283 countRewards4 = 4 +427283 leafProbs4 = 50 +427283 countPokes5 = 4 +427283 countRewards5 = 3 +427284 leafProbs5 = 80 +427297 countPokes6 = 6 +427298 countRewards6 = 2 +427298 leafProbs6 = 50 +~~~ +427394 4 0 +428859 DOWN 3 +428859 0 0 +428870 UP 3 +428870 4 0 +430500 DOWN 3 +430500 0 0 +430508 UP 3 +430508 4 0 +430526 DOWN 3 +430526 0 0 +430529 UP 3 +430529 4 0 +430591 DOWN 3 +430591 0 0 +430598 UP 3 +430598 4 0 +430616 DOWN 3 +430616 0 0 +430625 UP 3 +430625 4 0 +430632 DOWN 3 +430632 0 0 +430643 UP 3 +430643 4 0 +430705 DOWN 3 +430705 0 0 +430716 UP 3 +430716 4 0 +430743 DOWN 3 +430743 0 0 +430751 UP 3 +430751 4 0 +430764 DOWN 3 +430764 0 0 +430767 UP 3 +430767 4 0 +430813 DOWN 3 +430813 0 0 +430823 UP 3 +430823 4 0 +430837 DOWN 3 +430837 0 0 +430847 UP 3 +430847 4 0 +430937 DOWN 3 +430937 0 0 +438029 UP 4 +438029 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +438640 DOWN 4 +438640 0 0 +~~~ +438656 contingency = 0 +438656 trialThresh = 100 +438657 timeMaxOut = 20 +438657 timeElapsed = 9 +438657 totalPokes = 39 +438657 totalRewards = 18 +438658 countPokes1 = 10 +438658 countRewards1 = 7 +438659 leafProbs1 = 80 +438659 countPokes2 = 7 +438659 countRewards2 = 0 +438673 leafProbs2 = 20 +438673 countPokes3 = 6 +438674 countRewards3 = 2 +438674 leafProbs3 = 20 +438675 countPokes4 = 6 +438675 countRewards4 = 4 +438675 leafProbs4 = 50 +438675 countPokes5 = 4 +438675 countRewards5 = 3 +438676 leafProbs5 = 80 +438690 countPokes6 = 6 +438690 countRewards6 = 2 +438690 leafProbs6 = 50 +~~~ +440259 UP 3 +440259 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +440484 DOWN 3 +440484 0 0 +~~~ +440505 UP 3 +440505 4 0 +440506 contingency = 0 +440506 trialThresh = 100 +440507 timeMaxOut = 20 +440507 timeElapsed = 9 +440507 totalPokes = 40 +440507 totalRewards = 18 +440508 countPokes1 = 10 +440508 countRewards1 = 7 +440508 leafProbs1 = 80 +440509 countPokes2 = 7 +440523 countRewards2 = 0 +440523 leafProbs2 = 20 +440523 countPokes3 = 7 +440523 countRewards3 = 2 +440524 leafProbs3 = 20 +440524 countPokes4 = 6 +440525 countRewards4 = 4 +440525 leafProbs4 = 50 +440525 countPokes5 = 4 +440525 countRewards5 = 3 +440539 leafProbs5 = 80 +440539 countPokes6 = 6 +440540 countRewards6 = 2 +440540 leafProbs6 = 50 +~~~ +440595 DOWN 3 +440595 0 0 +440601 UP 3 +440601 4 0 +440618 DOWN 3 +440618 0 0 +440634 UP 3 +440634 4 0 +440725 DOWN 3 +440725 0 0 +440729 UP 3 +440729 4 0 +440749 DOWN 3 +440749 0 0 +440787 UP 3 +440787 4 0 +441093 DOWN 3 +441093 0 0 +441136 UP 3 +441136 4 0 +441147 DOWN 3 +441147 0 0 +441287 UP 3 +441287 4 0 +441509 DOWN 3 +441509 0 0 +444557 UP 4 +444557 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +444894 DOWN 4 +444894 0 0 +~~~ +444911 contingency = 0 +444911 trialThresh = 100 +444911 timeMaxOut = 20 +444911 timeElapsed = 9 +444912 totalPokes = 41 +444912 totalRewards = 18 +444913 countPokes1 = 10 +444913 countRewards1 = 7 +444913 leafProbs1 = 80 +444913 countPokes2 = 7 +444914 countRewards2 = 0 +444928 leafProbs2 = 20 +444928 countPokes3 = 7 +444929 countRewards3 = 2 +444929 leafProbs3 = 20 +444929 countPokes4 = 7 +444929 countRewards4 = 4 +444930 leafProbs4 = 50 +444930 countPokes5 = 4 +444931 countRewards5 = 3 +444931 leafProbs5 = 80 +444945 countPokes6 = 6 +444945 countRewards6 = 2 +444945 leafProbs6 = 50 +~~~ +451529 UP 6 +451529 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +452216 DOWN 6 +452216 0 0 +~~~ +452237 contingency = 0 +452237 trialThresh = 100 +452238 timeMaxOut = 20 +452238 timeElapsed = 9 +452239 totalPokes = 42 +452239 totalRewards = 18 +452239 countPokes1 = 10 +452239 countRewards1 = 7 +452240 leafProbs1 = 80 +452240 countPokes2 = 7 +452241 countRewards2 = 0 +452255 leafProbs2 = 20 +452255 countPokes3 = 7 +452255 countRewards3 = 2 +452255 leafProbs3 = 20 +452256 countPokes4 = 7 +452256 countRewards4 = 4 +452257 leafProbs4 = 50 +452257 countPokes5 = 4 +452257 countRewards5 = 3 +452257 leafProbs5 = 80 +452271 countPokes6 = 7 +452271 countRewards6 = 2 +452271 leafProbs6 = 50 +~~~ +452272 UP 6 +452272 32 0 +452323 DOWN 6 +452323 0 0 +456828 UP 6 +456828 32 0 +457039 DOWN 6 +457039 0 0 +458402 UP 5 +458402 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458432 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +458732 16 0 +458786 DOWN 5 +458786 0 0 +458790 UP 5 +458790 16 0 +~~~ +458817 contingency = 0 +458817 trialThresh = 100 +458817 timeMaxOut = 20 +458817 timeElapsed = 9 +458818 totalPokes = 43 +458818 totalRewards = 19 +458819 countPokes1 = 10 +458819 countRewards1 = 7 +458819 leafProbs1 = 80 +458819 countPokes2 = 7 +458820 countRewards2 = 0 +458834 leafProbs2 = 20 +458834 countPokes3 = 7 +458835 countRewards3 = 2 +458835 leafProbs3 = 20 +458835 countPokes4 = 7 +458835 countRewards4 = 4 +458836 leafProbs4 = 50 +458836 countPokes5 = 5 +458837 countRewards5 = 4 +458837 leafProbs5 = 80 +458850 countPokes6 = 7 +458851 countRewards6 = 2 +458851 leafProbs6 = 50 +~~~ +460863 DOWN 5 +460863 0 0 +460877 UP 5 +460877 16 0 +461283 DOWN 5 +461283 0 0 +461306 UP 5 +461306 16 0 +461377 DOWN 5 +461377 0 0 +468674 UP 6 +468674 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469094 DOWN 6 +469094 0 0 +~~~ +469120 contingency = 0 +469120 trialThresh = 100 +469120 timeMaxOut = 20 +469121 timeElapsed = 9 +469121 totalPokes = 44 +469122 totalRewards = 19 +469122 countPokes1 = 10 +469122 countRewards1 = 7 +469122 leafProbs1 = 80 +469123 countPokes2 = 7 +469123 countRewards2 = 0 +469137 leafProbs2 = 20 +469138 countPokes3 = 7 +469138 countRewards3 = 2 +469138 leafProbs3 = 20 +469138 countPokes4 = 7 +469138 countRewards4 = 4 +469139 leafProbs4 = 50 +469139 countPokes5 = 5 +469140 countRewards5 = 4 +469140 leafProbs5 = 80 +469154 countPokes6 = 8 +469154 countRewards6 = 2 +469154 leafProbs6 = 50 +~~~ +474207 UP 6 +474207 32 0 +474302 DOWN 6 +474302 0 0 +474380 UP 6 +474380 32 0 +474621 DOWN 6 +474621 0 0 +482030 UP 1 +482030 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +482234 DOWN 1 +482234 0 0 +~~~ +482258 contingency = 0 +482258 trialThresh = 100 +482258 timeMaxOut = 20 +482258 timeElapsed = 10 +482259 totalPokes = 45 +482259 totalRewards = 19 +482260 countPokes1 = 11 +482260 countRewards1 = 7 +482260 leafProbs1 = 80 +482260 countPokes2 = 7 +482261 countRewards2 = 0 +482275 leafProbs2 = 20 +482275 countPokes3 = 7 +482276 countRewards3 = 2 +482276 leafProbs3 = 20 +482276 countPokes4 = 7 +482276 countRewards4 = 4 +482277 leafProbs4 = 50 +482277 countPokes5 = 5 +482278 countRewards5 = 4 +482278 leafProbs5 = 80 +482292 countPokes6 = 8 +482292 countRewards6 = 2 +482292 leafProbs6 = 50 +~~~ +482292 UP 1 +482292 1 0 +482558 DOWN 1 +482558 0 0 +482585 UP 1 +482585 1 0 +482683 DOWN 1 +482683 0 0 +482718 UP 1 +482718 1 0 +482744 DOWN 1 +482744 0 0 +482821 UP 1 +482821 1 0 +482842 DOWN 1 +482842 0 0 +482905 UP 1 +482905 1 0 +482939 DOWN 1 +482939 0 0 +498133 UP 1 +498133 1 0 +498150 DOWN 1 +498150 0 0 +498596 UP 1 +498596 1 0 +498878 DOWN 1 +498878 0 0 +508278 UP 1 +508278 1 0 +508469 DOWN 1 +508469 0 0 +508616 UP 1 +508616 1 0 +508860 DOWN 1 +508860 0 0 +518791 UP 2 +518791 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +519385 DOWN 2 +519385 0 0 +~~~ +519406 contingency = 0 +519406 trialThresh = 100 +519407 timeMaxOut = 20 +519407 timeElapsed = 11 +519407 totalPokes = 46 +519407 totalRewards = 19 +519408 countPokes1 = 11 +519408 countRewards1 = 7 +519409 leafProbs1 = 80 +519409 countPokes2 = 8 +519409 countRewards2 = 0 +519423 leafProbs2 = 20 +519423 countPokes3 = 7 +519424 countRewards3 = 2 +519424 leafProbs3 = 20 +519425 countPokes4 = 7 +519425 countRewards4 = 4 +519425 leafProbs4 = 50 +519425 countPokes5 = 5 +519425 countRewards5 = 4 +519426 leafProbs5 = 80 +519439 countPokes6 = 8 +519440 countRewards6 = 2 +519440 leafProbs6 = 50 +~~~ +519441 UP 2 +519441 2 0 +519447 DOWN 2 +519447 0 0 +524357 UP 1 +524357 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524378 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +524678 1 0 +524797 DOWN 1 +524797 0 0 +~~~ +524815 contingency = 0 +524815 trialThresh = 100 +524816 timeMaxOut = 20 +524816 timeElapsed = 11 +524817 totalPokes = 47 +524817 totalRewards = 20 +524817 countPokes1 = 12 +524817 countRewards1 = 8 +524817 leafProbs1 = 80 +524818 countPokes2 = 8 +524818 countRewards2 = 0 +524833 leafProbs2 = 20 +524833 countPokes3 = 7 +524833 countRewards3 = 2 +524833 leafProbs3 = 20 +524833 countPokes4 = 7 +524834 countRewards4 = 4 +524834 leafProbs4 = 50 +524835 countPokes5 = 5 +524835 countRewards5 = 4 +524835 leafProbs5 = 80 +524849 countPokes6 = 8 +524849 countRewards6 = 2 +524849 leafProbs6 = 50 +~~~ +524850 UP 1 +524850 1 0 +524863 DOWN 1 +524863 0 0 +524873 UP 1 +524873 1 0 +527968 DOWN 1 +527968 0 0 +527980 UP 1 +527980 1 0 +528079 DOWN 1 +528079 0 0 +528109 UP 1 +528109 1 0 +528210 DOWN 1 +528210 0 0 +528221 UP 1 +528221 1 0 +528322 DOWN 1 +528322 0 0 +528348 UP 1 +528348 1 0 +528356 DOWN 1 +528356 0 0 +528365 UP 1 +528365 1 0 +528411 DOWN 1 +528411 0 0 +533697 UP 1 +533697 1 0 +533887 DOWN 1 +533887 0 0 +533943 UP 1 +533943 1 0 +535917 DOWN 1 +535917 0 0 +536171 UP 1 +536171 1 0 +536181 DOWN 1 +536181 0 0 +540135 UP 1 +540135 1 0 +540396 DOWN 1 +540396 0 0 +544774 UP 1 +544774 1 0 +544951 DOWN 1 +544951 0 0 +545039 UP 1 +545039 1 0 +545129 DOWN 1 +545129 0 0 +546501 UP 1 +546501 1 0 +546595 DOWN 1 +546595 0 0 +562134 UP 1 +562134 1 0 +562562 DOWN 1 +562562 0 0 +574774 UP 6 +574774 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +574832 DOWN 6 +574832 0 0 +~~~ +574860 contingency = 0 +574860 trialThresh = 100 +574861 timeMaxOut = 20 +574861 timeElapsed = 12 +574862 totalPokes = 48 +574862 totalRewards = 20 +574862 countPokes1 = 12 +574862 countRewards1 = 8 +574863 leafProbs1 = 80 +574863 countPokes2 = 8 +574864 countRewards2 = 0 +574878 leafProbs2 = 20 +574878 countPokes3 = 7 +574878 countRewards3 = 2 +574878 leafProbs3 = 20 +574879 countPokes4 = 7 +574879 countRewards4 = 4 +574879 leafProbs4 = 50 +574880 countPokes5 = 5 +574880 countRewards5 = 4 +574880 leafProbs5 = 80 +574894 countPokes6 = 9 +574894 countRewards6 = 2 +574894 leafProbs6 = 50 +~~~ +574895 UP 6 +574895 32 0 +574983 DOWN 6 +574983 0 0 +575020 UP 6 +575020 32 0 +575089 DOWN 6 +575089 0 0 +575126 UP 6 +575126 32 0 +575149 DOWN 6 +575149 0 0 +577744 UP 6 +577744 32 0 +577748 DOWN 6 +577748 0 0 +578154 UP 6 +578154 32 0 +579354 DOWN 6 +579354 0 0 +579382 UP 6 +579382 32 0 +579514 DOWN 6 +579514 0 0 +580826 UP 6 +580826 32 0 +581310 DOWN 6 +581310 0 0 +581654 UP 6 +581654 32 0 +581711 DOWN 6 +581711 0 0 +582734 UP 6 +582733 32 0 +582748 DOWN 6 +582748 0 0 +585351 UP 6 +585351 32 0 +587498 DOWN 6 +587498 0 0 +595639 UP 1 +595639 1 0 +595653 DOWN 1 +595653 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595663 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +595676 contingency = 0 +595676 trialThresh = 100 +595676 timeMaxOut = 20 +595677 timeElapsed = 13 +595677 totalPokes = 49 +595678 totalRewards = 21 +595678 countPokes1 = 13 +595678 countRewards1 = 9 +595678 leafProbs1 = 80 +595679 countPokes2 = 8 +595679 countRewards2 = 0 +595693 leafProbs2 = 20 +595694 countPokes3 = 7 +595694 countRewards3 = 2 +595694 leafProbs3 = 20 +595694 countPokes4 = 7 +595694 countRewards4 = 4 +595695 leafProbs4 = 50 +595695 countPokes5 = 5 +595696 countRewards5 = 4 +595696 leafProbs5 = 80 +595710 countPokes6 = 9 +595710 countRewards6 = 2 +595710 leafProbs6 = 50 +~~~ +595710 UP 1 +595710 1 64 +595807 DOWN 1 +595807 0 64 +595820 UP 1 +595820 1 64 +595874 DOWN 1 +595874 0 64 +595886 UP 1 +595886 1 64 +595963 1 0 +599155 DOWN 1 +599155 0 0 +599164 UP 1 +599164 1 0 +599808 DOWN 1 +599808 0 0 +688756 UP 6 +688756 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688779 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +688956 DOWN 6 +688956 0 2048 +~~~ +688973 contingency = 0 +688973 trialThresh = 100 +688974 timeMaxOut = 20 +688974 timeElapsed = 15 +688974 totalPokes = 50 +688974 totalRewards = 22 +688975 countPokes1 = 13 +688975 countRewards1 = 9 +688976 leafProbs1 = 80 +688976 countPokes2 = 8 +688976 countRewards2 = 0 +688990 leafProbs2 = 20 +688990 countPokes3 = 7 +688991 countRewards3 = 2 +688991 leafProbs3 = 20 +688992 countPokes4 = 7 +688992 countRewards4 = 4 +688992 leafProbs4 = 50 +688992 countPokes5 = 5 +688993 countRewards5 = 4 +688993 leafProbs5 = 80 +689007 countPokes6 = 10 +689007 countRewards6 = 3 +689007 leafProbs6 = 50 +~~~ +689008 UP 6 +689008 32 2048 +689079 32 0 +692128 DOWN 6 +692128 0 0 +692143 UP 6 +692143 32 0 +692685 DOWN 6 +692685 0 0 +698048 UP 6 +698048 32 0 +703204 DOWN 6 +703204 0 0 +704795 UP 5 +704795 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704833 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +704998 DOWN 5 +704998 0 1024 +~~~ +705014 contingency = 0 +705014 trialThresh = 100 +705014 timeMaxOut = 20 +705015 timeElapsed = 15 +705015 totalPokes = 51 +705016 totalRewards = 23 +705016 countPokes1 = 13 +705016 countRewards1 = 9 +705016 leafProbs1 = 80 +705017 countPokes2 = 8 +705017 countRewards2 = 0 +705031 leafProbs2 = 20 +705032 countPokes3 = 7 +705032 countRewards3 = 2 +705032 leafProbs3 = 20 +705032 countPokes4 = 7 +705033 countRewards4 = 4 +705033 leafProbs4 = 50 +705033 countPokes5 = 6 +705034 countRewards5 = 5 +705034 leafProbs5 = 80 +705048 countPokes6 = 10 +705048 countRewards6 = 3 +705048 leafProbs6 = 50 +~~~ +705048 UP 5 +705048 16 1024 +705133 16 0 +707856 DOWN 5 +707856 0 0 +707859 UP 5 +707859 16 0 +708389 DOWN 5 +708388 0 0 +708430 UP 5 +708430 16 0 +708506 DOWN 5 +708506 0 0 +708517 UP 5 +708517 16 0 +708729 DOWN 5 +708729 0 0 +708753 UP 5 +708753 16 0 +708838 DOWN 5 +708838 0 0 +708870 UP 5 +708870 16 0 +708943 DOWN 5 +708943 0 0 +712658 UP 6 +712658 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712691 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +712856 DOWN 6 +712856 0 2048 +712886 UP 6 +712886 32 2048 +~~~ +712891 contingency = 0 +712892 trialThresh = 100 +712892 timeMaxOut = 20 +712892 timeElapsed = 15 +712892 totalPokes = 52 +712893 totalRewards = 24 +712893 countPokes1 = 13 +712894 countRewards1 = 9 +712894 leafProbs1 = 80 +712894 countPokes2 = 8 +712894 countRewards2 = 0 +712908 leafProbs2 = 20 +712909 countPokes3 = 7 +712909 countRewards3 = 2 +712910 leafProbs3 = 20 +712910 countPokes4 = 7 +712910 countRewards4 = 4 +712910 leafProbs4 = 50 +712910 countPokes5 = 6 +712911 countRewards5 = 5 +712911 leafProbs5 = 80 +712925 countPokes6 = 11 +712925 countRewards6 = 4 +712926 leafProbs6 = 50 +~~~ +712990 32 0 +716085 DOWN 6 +716085 0 0 +716094 UP 6 +716094 32 0 +716526 DOWN 6 +716526 0 0 +725598 UP 1 +725598 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725628 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +725712 DOWN 1 +725712 0 64 +~~~ +725726 contingency = 0 +725726 trialThresh = 100 +725727 timeMaxOut = 20 +725727 timeElapsed = 16 +725728 totalPokes = 53 +725728 totalRewards = 25 +725728 countPokes1 = 14 +725728 countRewards1 = 10 +725729 leafProbs1 = 80 +725729 countPokes2 = 8 +725729 countRewards2 = 0 +725744 leafProbs2 = 20 +725744 countPokes3 = 7 +725744 countRewards3 = 2 +725744 leafProbs3 = 20 +725745 countPokes4 = 7 +725745 countRewards4 = 4 +725746 leafProbs4 = 50 +725746 countPokes5 = 6 +725746 countRewards5 = 5 +725746 leafProbs5 = 80 +725760 countPokes6 = 11 +725760 countRewards6 = 4 +725760 leafProbs6 = 50 +~~~ +725761 UP 1 +725761 1 64 +725780 DOWN 1 +725779 0 64 +725790 UP 1 +725790 1 64 +725928 1 0 +725996 DOWN 1 +725996 0 0 +726010 UP 1 +726010 1 0 +729338 DOWN 1 +729338 0 0 +734564 UP 1 +734564 1 0 +734740 DOWN 1 +734740 0 0 +758750 UP 2 +758750 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +758998 DOWN 2 +758998 0 0 +759011 UP 2 +759011 2 0 +~~~ +759026 contingency = 0 +759026 trialThresh = 100 +759027 timeMaxOut = 20 +759027 timeElapsed = 17 +759027 totalPokes = 54 +759027 totalRewards = 25 +759028 countPokes1 = 14 +759028 countRewards1 = 10 +759029 leafProbs1 = 80 +759029 countPokes2 = 9 +759029 countRewards2 = 0 +759043 leafProbs2 = 20 +759043 countPokes3 = 7 +759044 countRewards3 = 2 +759044 leafProbs3 = 20 +759045 countPokes4 = 7 +759045 countRewards4 = 4 +759045 leafProbs4 = 50 +759045 countPokes5 = 6 +759046 countRewards5 = 5 +759046 leafProbs5 = 80 +759060 countPokes6 = 11 +759060 countRewards6 = 4 +759061 leafProbs6 = 50 +~~~ +759247 DOWN 2 +759247 0 0 +764741 UP 2 +764741 2 0 +764877 DOWN 2 +764877 0 0 +768238 UP 1 +768238 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768267 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +768567 1 0 +769995 DOWN 1 +769995 0 0 +770003 UP 1 +770003 1 0 +~~~ +770020 contingency = 0 +770021 trialThresh = 100 +770021 timeMaxOut = 20 +770021 timeElapsed = 17 +770021 totalPokes = 55 +770022 totalRewards = 26 +770022 countPokes1 = 15 +770023 countRewards1 = 11 +770023 leafProbs1 = 80 +770023 countPokes2 = 9 +770023 countRewards2 = 0 +770037 leafProbs2 = 20 +770038 countPokes3 = 7 +770038 countRewards3 = 2 +770039 leafProbs3 = 20 +770039 countPokes4 = 7 +770039 countRewards4 = 4 +770039 leafProbs4 = 50 +770040 countPokes5 = 6 +770040 countRewards5 = 5 +770041 leafProbs5 = 80 +770054 countPokes6 = 11 +770055 countRewards6 = 4 +770055 leafProbs6 = 50 +~~~ +770958 DOWN 1 +770958 0 0 +770969 UP 1 +770969 1 0 +771063 DOWN 1 +771063 0 0 +792538 UP 4 +792538 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +792976 DOWN 4 +792976 0 0 +~~~ +793004 contingency = 0 +793004 trialThresh = 100 +793004 timeMaxOut = 20 +793004 timeElapsed = 17 +793005 totalPokes = 56 +793005 totalRewards = 26 +793006 countPokes1 = 15 +793006 countRewards1 = 11 +793006 leafProbs1 = 80 +793006 countPokes2 = 9 +793006 countRewards2 = 0 +793021 leafProbs2 = 20 +793021 countPokes3 = 7 +793022 countRewards3 = 2 +793022 leafProbs3 = 20 +793022 countPokes4 = 8 +793022 countRewards4 = 4 +793023 leafProbs4 = 50 +793023 countPokes5 = 6 +793023 countRewards5 = 5 +793024 leafProbs5 = 80 +793037 countPokes6 = 11 +793038 countRewards6 = 4 +793038 leafProbs6 = 50 +~~~ +796258 UP 3 +796258 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796294 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +796527 DOWN 3 +796527 0 256 +796548 UP 3 +796548 4 256 +~~~ +796560 contingency = 0 +796561 trialThresh = 100 +796561 timeMaxOut = 20 +796562 timeElapsed = 18 +796562 totalPokes = 57 +796562 totalRewards = 27 +796562 countPokes1 = 15 +796563 countRewards1 = 11 +796563 leafProbs1 = 80 +796564 countPokes2 = 9 +796564 countRewards2 = 0 +796578 leafProbs2 = 20 +796578 countPokes3 = 8 +796578 countRewards3 = 3 +796579 leafProbs3 = 20 +796579 countPokes4 = 8 +796580 countRewards4 = 4 +796580 leafProbs4 = 50 +796580 countPokes5 = 6 +796580 countRewards5 = 5 +796581 leafProbs5 = 80 +796594 countPokes6 = 11 +796595 countRewards6 = 4 +796595 leafProbs6 = 50 +~~~ +796596 4 0 +796624 DOWN 3 +796624 0 0 +796629 UP 3 +796629 4 0 +801350 DOWN 3 +801350 0 0 +806015 UP 4 +806015 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806042 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +806342 8 0 +809642 DOWN 4 +809642 0 0 +~~~ +809664 contingency = 0 +809664 trialThresh = 100 +809664 timeMaxOut = 20 +809665 timeElapsed = 18 +809665 totalPokes = 58 +809666 totalRewards = 28 +809666 countPokes1 = 15 +809666 countRewards1 = 11 +809666 leafProbs1 = 80 +809667 countPokes2 = 9 +809667 countRewards2 = 0 +809681 leafProbs2 = 20 +809682 countPokes3 = 8 +809682 countRewards3 = 3 +809682 leafProbs3 = 20 +809682 countPokes4 = 9 +809683 countRewards4 = 5 +809683 leafProbs4 = 50 +809683 countPokes5 = 6 +809684 countRewards5 = 5 +809684 leafProbs5 = 80 +809698 countPokes6 = 11 +809698 countRewards6 = 4 +809698 leafProbs6 = 50 +~~~ +813030 UP 3 +813030 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +813879 DOWN 3 +813879 0 0 +~~~ +813907 contingency = 0 +813908 trialThresh = 100 +813908 timeMaxOut = 20 +813908 timeElapsed = 18 +813908 totalPokes = 59 +813909 totalRewards = 28 +813909 countPokes1 = 15 +813910 countRewards1 = 11 +813910 leafProbs1 = 80 +813910 countPokes2 = 9 +813910 countRewards2 = 0 +813924 leafProbs2 = 20 +813925 countPokes3 = 9 +813925 countRewards3 = 3 +813926 leafProbs3 = 20 +813926 countPokes4 = 9 +813926 countRewards4 = 5 +813926 leafProbs4 = 50 +813927 countPokes5 = 6 +813927 countRewards5 = 5 +813928 leafProbs5 = 80 +813941 countPokes6 = 11 +813942 countRewards6 = 4 +813942 leafProbs6 = 50 +~~~ +813990 UP 3 +813990 4 0 +814046 DOWN 3 +814046 0 0 +814070 UP 3 +814070 4 0 +814092 DOWN 3 +814092 0 0 +818984 UP 4 +818984 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819019 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +819319 8 0 +822032 DOWN 4 +822032 0 0 +822048 UP 4 +822048 8 0 +~~~ +822052 contingency = 0 +822052 trialThresh = 100 +822052 timeMaxOut = 20 +822052 timeElapsed = 18 +822053 totalPokes = 60 +822053 totalRewards = 29 +822054 countPokes1 = 15 +822054 countRewards1 = 11 +822054 leafProbs1 = 80 +822054 countPokes2 = 9 +822055 countRewards2 = 0 +822069 leafProbs2 = 20 +822069 countPokes3 = 9 +822070 countRewards3 = 3 +822070 leafProbs3 = 20 +822070 countPokes4 = 10 +822070 countRewards4 = 6 +822071 leafProbs4 = 50 +822071 countPokes5 = 6 +822072 countRewards5 = 5 +822072 leafProbs5 = 80 +822086 countPokes6 = 11 +822086 countRewards6 = 4 +822086 leafProbs6 = 50 +~~~ +822142 DOWN 4 +822142 0 0 +825685 UP 3 +825685 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825714 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +825899 DOWN 3 +825899 0 256 +825911 UP 3 +825911 4 256 +~~~ +825924 contingency = 0 +825924 trialThresh = 100 +825924 timeMaxOut = 20 +825924 timeElapsed = 18 +825924 totalPokes = 61 +825925 totalRewards = 30 +825925 countPokes1 = 15 +825926 countRewards1 = 11 +825926 leafProbs1 = 80 +825926 countPokes2 = 9 +825926 countRewards2 = 0 +825941 leafProbs2 = 20 +825941 countPokes3 = 10 +825941 countRewards3 = 4 +825942 leafProbs3 = 20 +825942 countPokes4 = 10 +825942 countRewards4 = 6 +825942 leafProbs4 = 50 +825943 countPokes5 = 6 +825943 countRewards5 = 5 +825944 leafProbs5 = 80 +825958 countPokes6 = 11 +825958 countRewards6 = 4 +825958 leafProbs6 = 50 +~~~ +826000 DOWN 3 +826000 0 256 +826002 UP 3 +826002 4 256 +826014 4 0 +829816 DOWN 3 +829816 0 0 +838111 UP 4 +838111 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838136 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +838436 8 0 +841411 DOWN 4 +841411 0 0 +~~~ +841435 contingency = 0 +841436 trialThresh = 100 +841436 timeMaxOut = 20 +841437 timeElapsed = 19 +841437 totalPokes = 62 +841437 totalRewards = 31 +841437 countPokes1 = 15 +841438 countRewards1 = 11 +841438 leafProbs1 = 80 +841439 countPokes2 = 9 +841439 countRewards2 = 0 +841453 leafProbs2 = 20 +841453 countPokes3 = 10 +841453 countRewards3 = 4 +841454 leafProbs3 = 20 +841454 countPokes4 = 11 +841455 countRewards4 = 7 +841455 leafProbs4 = 50 +841455 countPokes5 = 6 +841455 countRewards5 = 5 +841455 leafProbs5 = 80 +841469 countPokes6 = 11 +841470 countRewards6 = 4 +841470 leafProbs6 = 50 +~~~ +843614 UP 3 +843614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843639 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +843789 DOWN 3 +843789 0 256 +843795 UP 3 +843795 4 256 +~~~ +843808 contingency = 0 +843809 trialThresh = 100 +843809 timeMaxOut = 20 +843809 timeElapsed = 19 +843809 totalPokes = 63 +843810 totalRewards = 32 +843810 countPokes1 = 15 +843810 countRewards1 = 11 +843811 leafProbs1 = 80 +843811 countPokes2 = 9 +843811 countRewards2 = 0 +843825 leafProbs2 = 20 +843826 countPokes3 = 11 +843826 countRewards3 = 5 +843827 leafProbs3 = 20 +843827 countPokes4 = 11 +843827 countRewards4 = 7 +843827 leafProbs4 = 50 +843827 countPokes5 = 6 +843828 countRewards5 = 5 +843828 leafProbs5 = 80 +843842 countPokes6 = 11 +843843 countRewards6 = 4 +843843 leafProbs6 = 50 +~~~ +843939 4 0 +845473 DOWN 3 +845473 0 0 +845480 UP 3 +845480 4 0 +846559 DOWN 3 +846559 0 0 +846574 UP 3 +846574 4 0 +847017 DOWN 3 +847017 0 0 +850281 UP 4 +850281 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850308 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +850608 8 0 +853788 DOWN 4 +853788 0 0 +~~~ +853810 contingency = 0 +853810 trialThresh = 100 +853811 timeMaxOut = 20 +853811 timeElapsed = 19 +853811 totalPokes = 64 +853811 totalRewards = 33 +853811 countPokes1 = 15 +853812 countRewards1 = 11 +853812 leafProbs1 = 80 +853813 countPokes2 = 9 +853813 countRewards2 = 0 +853827 leafProbs2 = 20 +853827 countPokes3 = 11 +853828 countRewards3 = 5 +853828 leafProbs3 = 20 +853829 countPokes4 = 12 +853829 countRewards4 = 8 +853829 leafProbs4 = 50 +853829 countPokes5 = 6 +853829 countRewards5 = 5 +853830 leafProbs5 = 80 +853844 countPokes6 = 11 +853844 countRewards6 = 4 +853845 leafProbs6 = 50 +~~~ +859749 UP 3 +859749 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +859929 DOWN 3 +859929 0 0 +~~~ +859955 contingency = 0 +859955 trialThresh = 100 +859955 timeMaxOut = 20 +859956 timeElapsed = 19 +859956 totalPokes = 65 +859957 totalRewards = 33 +859957 countPokes1 = 15 +859957 countRewards1 = 11 +859957 leafProbs1 = 80 +859958 countPokes2 = 9 +859958 countRewards2 = 0 +859972 leafProbs2 = 20 +859973 countPokes3 = 12 +859973 countRewards3 = 5 +859973 leafProbs3 = 20 +859973 countPokes4 = 12 +859974 countRewards4 = 8 +859974 leafProbs4 = 50 +859975 countPokes5 = 6 +859975 countRewards5 = 5 +859975 leafProbs5 = 80 +859989 countPokes6 = 11 +859989 countRewards6 = 4 +859989 leafProbs6 = 50 +~~~ +859990 UP 3 +859990 4 0 +860031 DOWN 3 +860031 0 0 +860033 UP 3 +860033 4 0 +860497 DOWN 3 +860497 0 0 +863294 UP 4 +863294 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +863951 DOWN 4 +863951 0 0 +~~~ +863973 contingency = 0 +863973 trialThresh = 100 +863973 timeMaxOut = 20 +863974 timeElapsed = 19 +863974 totalPokes = 66 +863975 totalRewards = 33 +863975 countPokes1 = 15 +863975 countRewards1 = 11 +863975 leafProbs1 = 80 +863976 countPokes2 = 9 +863976 countRewards2 = 0 +863990 leafProbs2 = 20 +863991 countPokes3 = 12 +863991 countRewards3 = 5 +863991 leafProbs3 = 20 +863991 countPokes4 = 13 +863992 countRewards4 = 8 +863992 leafProbs4 = 50 +863993 countPokes5 = 6 +863993 countRewards5 = 5 +863993 leafProbs5 = 80 +864007 countPokes6 = 11 +864007 countRewards6 = 4 +864007 leafProbs6 = 50 +~~~ +868524 UP 3 +868524 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +868698 DOWN 3 +868698 0 0 +~~~ +868713 contingency = 0 +868713 trialThresh = 100 +868713 timeMaxOut = 20 +868713 timeElapsed = 19 +868713 totalPokes = 67 +868714 totalRewards = 33 +868715 countPokes1 = 15 +868715 countRewards1 = 11 +868715 leafProbs1 = 80 +868715 countPokes2 = 9 +868715 countRewards2 = 0 +868730 leafProbs2 = 20 +868730 countPokes3 = 13 +868731 countRewards3 = 5 +868731 leafProbs3 = 20 +868731 countPokes4 = 13 +868731 countRewards4 = 8 +868732 leafProbs4 = 50 +868732 countPokes5 = 6 +868733 countRewards5 = 5 +868733 leafProbs5 = 80 +868747 countPokes6 = 11 +868747 countRewards6 = 4 +868747 leafProbs6 = 50 +~~~ +868747 UP 3 +868747 4 0 +868824 DOWN 3 +868824 0 0 +872741 UP 4 +872741 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +873169 DOWN 4 +873169 0 0 +~~~ +873187 contingency = 0 +873187 trialThresh = 100 +873187 timeMaxOut = 20 +873187 timeElapsed = 19 +873188 totalPokes = 68 +873188 totalRewards = 33 +873189 countPokes1 = 15 +873189 countRewards1 = 11 +873189 leafProbs1 = 80 +873189 countPokes2 = 9 +873190 countRewards2 = 0 +873204 leafProbs2 = 20 +873204 countPokes3 = 13 +873205 countRewards3 = 5 +873205 leafProbs3 = 20 +873205 countPokes4 = 14 +873205 countRewards4 = 8 +873206 leafProbs4 = 50 +873206 countPokes5 = 6 +873207 countRewards5 = 5 +873207 leafProbs5 = 80 +873221 countPokes6 = 11 +873221 countRewards6 = 4 +873221 leafProbs6 = 50 +~~~ +873252 UP 4 +873252 8 0 +873290 DOWN 4 +873290 0 0 +876725 UP 3 +876725 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876754 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +876920 DOWN 3 +876920 0 256 +876935 UP 3 +876935 4 256 +~~~ +876950 contingency = 0 +876950 trialThresh = 100 +876951 timeMaxOut = 20 +876951 timeElapsed = 20 +876951 totalPokes = 69 +876951 totalRewards = 34 +876952 countPokes1 = 15 +876952 countRewards1 = 11 +876953 leafProbs1 = 80 +876953 countPokes2 = 9 +876953 countRewards2 = 0 +876967 leafProbs2 = 20 +876968 countPokes3 = 14 +876968 countRewards3 = 6 +876969 leafProbs3 = 20 +876969 countPokes4 = 14 +876969 countRewards4 = 8 +876969 leafProbs4 = 50 +876970 countPokes5 = 6 +876970 countRewards5 = 5 +876971 leafProbs5 = 80 +876984 countPokes6 = 11 +876985 countRewards6 = 4 +876985 leafProbs6 = 50 +~~~ +876985 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +877054 4 0 +878633 DOWN 3 +878633 0 0 +878639 UP 3 +878639 4 0 +879721 DOWN 3 +879721 0 0 +886019 UP 1 +886019 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886047 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +886216 DOWN 1 +886216 0 64 +886239 UP 1 +886239 1 64 +~~~ +886244 contingency = 1 +886245 trialThresh = 100 +886245 timeMaxOut = 20 +886245 timeElapsed = 0 +886245 totalPokes = 1 +886245 totalRewards = 1 +886246 countPokes1 = 1 +886246 countRewards1 = 1 +886247 leafProbs1 = 80 +886247 countPokes2 = 0 +886247 countRewards2 = 0 +886261 leafProbs2 = 20 +886261 countPokes3 = 0 +886262 countRewards3 = 0 +886262 leafProbs3 = 20 +886263 countPokes4 = 0 +886263 countRewards4 = 0 +886263 leafProbs4 = 50 +886263 countPokes5 = 0 +886263 countRewards5 = 0 +886264 leafProbs5 = 80 +886277 countPokes6 = 0 +886278 countRewards6 = 0 +886278 leafProbs6 = 50 +~~~ +886347 1 0 +887839 DOWN 1 +887839 0 0 +887847 UP 1 +887847 1 0 +888811 DOWN 1 +888811 0 0 +924349 UP 1 +924349 1 0 +924708 DOWN 1 +924708 0 0 +936150 UP 6 +936150 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +936282 DOWN 6 +936282 0 0 +~~~ +936306 UP 6 +936306 32 0 +936307 contingency = 1 +936308 trialThresh = 100 +936308 timeMaxOut = 20 +936308 timeElapsed = 1 +936308 totalPokes = 2 +936309 totalRewards = 1 +936309 countPokes1 = 1 +936310 countRewards1 = 1 +936310 leafProbs1 = 80 +936310 countPokes2 = 0 +936324 countRewards2 = 0 +936324 leafProbs2 = 20 +936325 countPokes3 = 0 +936325 countRewards3 = 0 +936326 leafProbs3 = 20 +936326 countPokes4 = 0 +936326 countRewards4 = 0 +936326 leafProbs4 = 50 +936326 countPokes5 = 0 +936327 countRewards5 = 0 +936340 leafProbs5 = 80 +936341 countPokes6 = 1 +936341 countRewards6 = 0 +936342 leafProbs6 = 50 +~~~ +936592 DOWN 6 +936592 0 0 +939891 UP 6 +939891 32 0 +940306 DOWN 6 +940306 0 0 +944398 UP 5 +944398 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944428 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +944665 DOWN 5 +944665 0 1024 +944680 UP 5 +944680 16 1024 +~~~ +944694 contingency = 1 +944694 trialThresh = 100 +944695 timeMaxOut = 20 +944695 timeElapsed = 2 +944696 totalPokes = 3 +944696 totalRewards = 2 +944696 countPokes1 = 1 +944696 countRewards1 = 1 +944697 leafProbs1 = 80 +944697 countPokes2 = 0 +944698 countRewards2 = 0 +944711 leafProbs2 = 20 +944712 countPokes3 = 0 +944712 countRewards3 = 0 +944712 leafProbs3 = 20 +944712 countPokes4 = 0 +944713 countRewards4 = 0 +944713 leafProbs4 = 50 +944714 countPokes5 = 1 +944714 countRewards5 = 1 +944714 leafProbs5 = 80 +944728 countPokes6 = 1 +944728 countRewards6 = 0 +944728 leafProbs6 = 50 +~~~ +944729 16 0 +944845 DOWN 5 +944845 0 0 +944862 UP 5 +944862 16 0 +946617 DOWN 5 +946617 0 0 +946632 UP 5 +946632 16 0 +946716 DOWN 5 +946716 0 0 +946732 UP 5 +946732 16 0 +947449 DOWN 5 +947449 0 0 +948283 UP 5 +948283 16 0 +948312 DOWN 5 +948312 0 0 +952025 UP 6 +952025 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952051 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +952328 DOWN 6 +952328 0 2048 +952339 UP 6 +952339 32 2048 +952351 32 0 +~~~ +952355 contingency = 1 +952355 trialThresh = 100 +952355 timeMaxOut = 20 +952356 timeElapsed = 2 +952356 totalPokes = 4 +952357 totalRewards = 3 +952357 countPokes1 = 1 +952357 countRewards1 = 1 +952357 leafProbs1 = 80 +952357 countPokes2 = 0 +952358 countRewards2 = 0 +952372 leafProbs2 = 20 +952372 countPokes3 = 0 +952373 countRewards3 = 0 +952373 leafProbs3 = 20 +952373 countPokes4 = 0 +952373 countRewards4 = 0 +952374 leafProbs4 = 50 +952374 countPokes5 = 1 +952375 countRewards5 = 1 +952375 leafProbs5 = 80 +952389 countPokes6 = 2 +952389 countRewards6 = 1 +952389 leafProbs6 = 50 +~~~ +955287 DOWN 6 +955287 0 0 +955304 UP 6 +955304 32 0 +955841 DOWN 6 +955841 0 0 +955870 UP 6 +955870 32 0 +955948 DOWN 6 +955948 0 0 +968742 UP 1 +968742 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +968986 DOWN 1 +968986 0 0 +969009 UP 1 +969009 1 0 +~~~ +969010 contingency = 1 +969011 trialThresh = 100 +969011 timeMaxOut = 20 +969011 timeElapsed = 2 +969011 totalPokes = 5 +969012 totalRewards = 3 +969012 countPokes1 = 2 +969013 countRewards1 = 1 +969013 leafProbs1 = 80 +969013 countPokes2 = 0 +969013 countRewards2 = 0 +969027 leafProbs2 = 20 +969027 countPokes3 = 0 +969028 countRewards3 = 0 +969028 leafProbs3 = 20 +969029 countPokes4 = 0 +969029 countRewards4 = 0 +969029 leafProbs4 = 50 +969029 countPokes5 = 1 +969030 countRewards5 = 1 +969030 leafProbs5 = 80 +969044 countPokes6 = 2 +969044 countRewards6 = 1 +969045 leafProbs6 = 50 +~~~ +969325 DOWN 1 +969325 0 0 +969363 UP 1 +969363 1 0 +969412 DOWN 1 +969412 0 0 +980911 UP 1 +980911 1 0 +981057 DOWN 1 +981057 0 0 +995935 UP 1 +995935 1 0 +995980 DOWN 1 +995980 0 0 +1000551 UP 1 +1000551 1 0 +1000675 DOWN 1 +1000675 0 0 +1000813 UP 1 +1000813 1 0 +1000837 DOWN 1 +1000837 0 0 +1014932 UP 1 +1014932 1 0 +1015485 DOWN 1 +1015485 0 0 +1037157 UP 1 +1037157 1 0 +1039155 DOWN 1 +1039155 0 0 +1045580 UP 2 +1045580 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045606 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1045801 DOWN 2 +1045801 0 128 +1045812 UP 2 +1045812 2 128 +~~~ +1045827 contingency = 1 +1045827 trialThresh = 100 +1045828 timeMaxOut = 20 +1045828 timeElapsed = 4 +1045828 totalPokes = 6 +1045828 totalRewards = 4 +1045829 countPokes1 = 2 +1045829 countRewards1 = 1 +1045830 leafProbs1 = 80 +1045830 countPokes2 = 1 +1045830 countRewards2 = 1 +1045844 leafProbs2 = 20 +1045844 countPokes3 = 0 +1045845 countRewards3 = 0 +1045845 leafProbs3 = 20 +1045846 countPokes4 = 0 +1045846 countRewards4 = 0 +1045846 leafProbs4 = 50 +1045846 countPokes5 = 1 +1045846 countRewards5 = 1 +1045861 leafProbs5 = 80 +1045861 countPokes6 = 2 +1045862 countRewards6 = 1 +1045862 leafProbs6 = 50 +~~~ +1045906 2 0 +1046489 DOWN 2 +1046489 0 0 +1046492 UP 2 +1046492 2 0 +1046736 DOWN 2 +1046736 0 0 +1046740 UP 2 +1046740 2 0 +1048862 DOWN 2 +1048862 0 0 +1048885 UP 2 +1048885 2 0 +1049314 DOWN 2 +1049314 0 0 +1049320 UP 2 +1049320 2 0 +1049417 DOWN 2 +1049417 0 0 +1055638 UP 1 +1055638 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1056137 DOWN 1 +1056137 0 0 +~~~ +1056161 contingency = 1 +1056161 trialThresh = 100 +1056161 timeMaxOut = 20 +1056162 timeElapsed = 4 +1056162 totalPokes = 7 +1056163 totalRewards = 4 +1056163 countPokes1 = 3 +1056163 countRewards1 = 1 +1056163 leafProbs1 = 80 +1056164 countPokes2 = 1 +1056164 countRewards2 = 1 +1056178 leafProbs2 = 20 +1056179 countPokes3 = 0 +1056179 countRewards3 = 0 +1056179 leafProbs3 = 20 +1056179 countPokes4 = 0 +1056180 countRewards4 = 0 +1056180 leafProbs4 = 50 +1056181 countPokes5 = 1 +1056181 countRewards5 = 1 +1056195 leafProbs5 = 80 +1056195 countPokes6 = 2 +1056195 countRewards6 = 1 +1056196 leafProbs6 = 50 +~~~ +1075389 UP 1 +1075389 1 0 +1077673 DOWN 1 +1077673 0 0 +1080094 UP 1 +1080094 1 0 +1080643 DOWN 1 +1080643 0 0 +1081045 UP 1 +1081045 1 0 +1081200 DOWN 1 +1081200 0 0 +1083005 UP 1 +1083005 1 0 +1083449 DOWN 1 +1083449 0 0 +1102276 UP 1 +1102276 1 0 +1102327 DOWN 1 +1102327 0 0 +1102345 UP 1 +1102345 1 0 +1102777 DOWN 1 +1102777 0 0 +1102819 UP 1 +1102819 1 0 +1102934 DOWN 1 +1102934 0 0 +1103297 UP 1 +1103297 1 0 +1103387 DOWN 1 +1103387 0 0 +1103417 UP 1 +1103417 1 0 +1103475 DOWN 1 +1103475 0 0 +1103807 UP 1 +1103807 1 0 +1103947 DOWN 1 +1103947 0 0 +1103991 UP 1 +1103991 1 0 +1104026 DOWN 1 +1104026 0 0 +1118606 UP 1 +1118606 1 0 +1118640 DOWN 1 +1118640 0 0 +1131899 UP 6 +1131899 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1132172 DOWN 6 +1132172 0 0 +1132200 UP 6 +1132200 32 0 +~~~ +1132203 contingency = 1 +1132203 trialThresh = 100 +1132204 timeMaxOut = 20 +1132204 timeElapsed = 6 +1132204 totalPokes = 8 +1132204 totalRewards = 4 +1132205 countPokes1 = 3 +1132205 countRewards1 = 1 +1132205 leafProbs1 = 80 +1132206 countPokes2 = 1 +1132206 countRewards2 = 1 +1132220 leafProbs2 = 20 +1132220 countPokes3 = 0 +1132220 countRewards3 = 0 +1132221 leafProbs3 = 20 +1132221 countPokes4 = 0 +1132222 countRewards4 = 0 +1132222 leafProbs4 = 50 +1132222 countPokes5 = 1 +1132222 countRewards5 = 1 +1132237 leafProbs5 = 80 +1132237 countPokes6 = 3 +1132238 countRewards6 = 1 +1132238 leafProbs6 = 50 +~~~ +1132394 DOWN 6 +1132394 0 0 +1132422 UP 6 +1132422 32 0 +1132437 DOWN 6 +1132437 0 0 +1157002 UP 6 +1157002 32 0 +1157518 DOWN 6 +1157518 0 0 +1160471 UP 1 +1160471 1 0 +1160482 DOWN 1 +1160482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1160504 UP 1 +1160504 1 0 +~~~ +1160510 contingency = 1 +1160510 trialThresh = 100 +1160510 timeMaxOut = 20 +1160511 timeElapsed = 7 +1160511 totalPokes = 9 +1160512 totalRewards = 4 +1160512 countPokes1 = 4 +1160512 countRewards1 = 1 +1160512 leafProbs1 = 80 +1160513 countPokes2 = 1 +1160513 countRewards2 = 1 +1160527 leafProbs2 = 20 +1160528 countPokes3 = 0 +1160528 countRewards3 = 0 +1160528 leafProbs3 = 20 +1160528 countPokes4 = 0 +1160528 countRewards4 = 0 +1160529 leafProbs4 = 50 +1160529 countPokes5 = 1 +1160530 countRewards5 = 1 +1160544 leafProbs5 = 80 +1160544 countPokes6 = 3 +1160544 countRewards6 = 1 +1160545 leafProbs6 = 50 +~~~ +1160809 DOWN 1 +1160809 0 0 +1160823 UP 1 +1160823 1 0 +1160943 DOWN 1 +1160943 0 0 + + description: state script log run 2 + task_epochs: 4, +] +2021-01-27 21:01:17,130 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:01:18,175 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:01:18,176 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:01:18,176 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:01:18,177 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:01:18,177 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:01:18,186 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:01:18,186 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:01:18,193 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:01:18,792 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:01:18,792 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:01:18,792 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:01:18,793 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:01:18,794 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:01:18,826 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:01:18,828 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:01:18,830 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:01:18,830 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:01:20,910 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:01:20,912 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:05:10,892 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:05:10,957 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:05:10,961 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:05:10,961 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:05:10,961 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:05:15,389 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:05:15,391 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:05:15,391 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:05:15,391 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:05:15,392 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:10:14,691 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:10:14,761 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:10:14,761 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:10:14,762 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:10:14,762 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:10:19,961 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:10:20,113 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:10:20,450 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:10:20,450 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:10:20,450 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:10:20,455 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:10:20,456 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:10:20,456 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140213648128400 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:10:20,457 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:10:20,649 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:10:20,650 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:10:20,650 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:10:20,651 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:10:20,651 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:10:20,658 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:10:20,658 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:10:20,662 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:10:20,662 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:10:20,748 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:10:20,749 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:10:20,749 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:10:20,749 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:10:20,750 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:10:20,782 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:10:20,784 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:10:20,785 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:10:20,785 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:10:21,119 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:10:21,120 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:10:51,832 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:10:51,832 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:10:51,833 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:10:51,833 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:10:51,834 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:10:51,887 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:11:43,752 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 21:11:43,759 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 21:11:43,759 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 21:12:25,479 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-27 21:12:25,487 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:14:19,955 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-27 21:15:33,475 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:17:13,078 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:18:02,079 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23206543 does not exist in continioustime dictionary! +NoneType: None +2021-01-27 21:18:02,086 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23207135 does not exist in continioustime dictionary! +NoneType: None +2021-01-27 21:18:04,520 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. +2021-01-27 21:18:05,034 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Building +2021-01-27 21:18:05,035 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Injecting +2021-01-27 21:18:05,036 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Building +2021-01-27 21:18:05,037 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Injecting +2021-01-27 21:18:05,038 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Building +2021-01-27 21:18:05,539 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Injecting +2021-01-27 21:18:05,541 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Building +2021-01-27 21:18:05,984 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Injecting +2021-01-27 21:28:23,151 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:28:23,222 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:28:23,224 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:28:23,224 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:28:23,224 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:28:27,227 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:28:27,235 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:28:27,236 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:28:27,236 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:28:27,236 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:28:27,368 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:28:27,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:28:27,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:28:27,682 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:28:27,683 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:28:27,683 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140281990129488 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:28:27,684 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:28:27,863 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:28:27,864 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:28:27,864 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:28:27,865 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:28:27,865 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:28:27,871 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:28:27,872 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:28:27,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:28:27,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:28:27,877 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:28:27,877 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:28:27,877 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:28:27,957 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:28:27,957 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:28:27,958 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:28:27,958 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:28:27,959 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:28:27,988 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:28:27,991 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:28:27,992 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:28:27,992 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:28:28,328 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:28:28,329 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:28:58,444 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:28:58,444 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:28:58,445 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:28:58,445 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:28:58,445 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:28:58,496 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:28:58,496 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:28:58,496 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:28:58,497 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:28:58,497 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:29:49,006 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 21:29:49,017 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 21:29:49,018 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 21:33:04,802 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:33:04,877 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:33:04,879 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:33:04,880 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:33:04,880 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:33:09,279 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:33:09,415 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:33:09,709 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:33:09,719 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:33:09,719 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:33:09,720 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140302349199952 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:33:09,720 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:33:09,906 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:33:09,907 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:33:09,907 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:33:09,907 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:33:09,908 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:33:09,914 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:33:09,914 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:33:09,918 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:33:09,918 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:33:09,920 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:33:10,000 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:33:10,001 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:33:10,001 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:33:10,001 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:33:10,002 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:33:10,030 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:33:10,032 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:33:10,034 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:33:10,034 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:33:10,369 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:33:10,370 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:33:40,396 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:33:40,396 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:33:40,397 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:33:40,397 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:33:40,397 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:33:40,448 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:34:29,024 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 21:34:29,035 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 21:34:29,035 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 21:34:37,925 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-27 21:34:37,926 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:38:07,651 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:38:07,716 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:38:07,721 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:38:07,721 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:38:07,721 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:38:12,205 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:38:12,212 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:38:12,212 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:38:12,212 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:38:12,213 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:38:12,347 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:38:12,669 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:38:12,669 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:38:12,676 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:38:12,676 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:38:12,677 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140256296835152 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:38:12,677 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:38:12,862 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:38:12,871 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:38:12,871 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:38:12,961 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:38:12,962 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:38:12,962 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:38:12,962 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:38:12,963 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:38:12,994 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:38:12,997 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:38:12,998 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:38:12,998 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:38:13,354 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:38:13,355 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:38:45,433 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:38:45,433 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:38:45,434 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:38:45,434 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:38:45,434 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:38:45,486 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:39:34,914 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 21:39:34,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 21:39:34,924 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 21:41:26,545 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:41:26,611 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:41:26,613 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:41:26,613 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:41:26,613 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:41:30,772 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:41:30,783 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:41:30,783 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:41:30,783 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:41:30,784 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:41:30,899 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:41:31,274 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:41:31,277 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:41:31,277 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:41:31,278 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140247689115792 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:41:31,278 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:41:31,472 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:41:31,472 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:41:31,473 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:41:31,473 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:41:31,473 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:41:31,480 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:41:31,480 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:41:31,622 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:41:31,655 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:41:31,657 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:41:31,659 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:41:31,659 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:41:31,987 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:41:31,989 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:42:01,938 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:42:01,938 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:42:01,938 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:42:01,939 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:42:01,939 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:42:01,991 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:42:49,625 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 21:42:49,636 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 21:42:49,636 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 21:45:51,928 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:45:52,133 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:45:52,141 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:45:52,142 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:45:52,142 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:45:56,534 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:45:56,548 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:45:56,548 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:45:56,548 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:45:56,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:45:56,733 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:45:57,067 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:45:57,067 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:45:57,068 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:45:57,068 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:45:57,069 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:45:57,069 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:45:57,069 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:45:57,070 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:45:57,070 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:45:57,071 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:45:57,071 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:45:57,071 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:45:57,072 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:45:57,072 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:45:57,072 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:45:57,080 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:45:57,081 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:45:57,083 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140542913005712 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:45:57,083 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:45:57,304 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:45:57,306 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:45:57,306 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:45:57,307 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:45:57,309 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:45:57,328 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:45:57,329 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:45:57,342 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:45:57,343 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:45:57,344 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:45:57,344 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:45:57,345 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:45:57,345 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:45:57,345 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:45:57,346 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:45:57,347 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:45:57,347 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:45:57,347 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:45:57,348 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:45:57,436 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:45:57,437 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:45:57,438 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:45:57,438 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:45:57,442 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:45:57,543 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:45:57,553 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:45:57,557 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:45:57,557 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:45:57,909 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:45:57,913 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:46:32,397 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:46:32,398 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:46:32,399 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:46:32,400 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:46:32,401 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:46:32,458 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:46:32,459 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:46:32,459 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:46:32,459 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:46:32,460 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:47:25,860 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 21:47:25,878 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 21:47:25,879 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 21:49:03,561 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:49:03,627 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:49:03,629 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:49:03,629 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:49:03,629 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:49:08,068 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:49:08,207 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:49:08,559 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:49:08,559 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:49:08,559 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:49:08,569 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:49:08,569 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:49:08,570 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140512107391312 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:49:08,570 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:49:08,758 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:49:08,759 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:49:08,759 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:49:08,760 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:49:08,760 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:49:08,768 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:49:08,769 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:49:08,773 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:49:08,773 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:49:08,775 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:49:08,775 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:49:08,861 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:49:08,862 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:49:08,862 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:49:08,862 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:49:08,863 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:49:08,893 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:49:08,895 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:49:08,897 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:49:08,897 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:49:09,242 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:49:09,243 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:49:40,101 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:49:40,101 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:49:40,102 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:49:40,102 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:49:40,102 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:49:40,154 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:50:28,932 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 21:50:28,943 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 21:50:28,944 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 21:51:54,300 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-27 21:51:54,308 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 21:53:55,926 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-27 21:54:57,146 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = True +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-27 21:54:57,189 rec_to_binaries.core: INFO Extracting analog data... +2021-01-27 21:55:12,231 rec_to_binaries.core: INFO Extracting DIO... +2021-01-27 21:55:34,296 rec_to_binaries.core: INFO Extracting mda... +2021-01-27 21:58:47,785 rec_to_binaries.core: INFO Extracting time... +2021-01-27 21:59:00,614 rec_to_binaries.core: INFO Making position directory... +2021-01-27 21:59:00,625 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-27 21:59:00,625 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-27 21:59:00,626 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-27 21:59:00,626 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-27 21:59:00,767 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-27 21:59:01,117 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-27 21:59:01,117 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-27 21:59:01,118 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140601226979600 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-27 21:59:01,118 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-27 21:59:01,305 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-27 21:59:01,306 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-27 21:59:01,306 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-27 21:59:01,306 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-27 21:59:01,307 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-27 21:59:01,313 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-27 21:59:01,314 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-27 21:59:01,318 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-27 21:59:01,318 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-27 21:59:01,318 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-27 21:59:01,320 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-27 21:59:01,403 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-27 21:59:01,403 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-27 21:59:01,404 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-27 21:59:01,404 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-27 21:59:01,405 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-27 21:59:01,434 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-27 21:59:01,436 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-27 21:59:01,438 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-27 21:59:01,438 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-27 21:59:01,807 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-27 21:59:01,808 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-27 21:59:33,381 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-27 21:59:33,382 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-27 21:59:33,382 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-27 21:59:33,383 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-27 21:59:33,383 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-27 21:59:33,437 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-27 21:59:33,438 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-27 21:59:33,438 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-27 21:59:33,438 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-27 21:59:33,438 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 22:00:24,386 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-27 22:00:24,397 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-27 22:00:24,397 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-27 22:01:16,066 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-27 22:01:16,380 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 22:03:10,062 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-27 22:10:09,545 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 22:11:53,652 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-27 22:12:41,605 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23206543 does not exist in continioustime dictionary! +NoneType: None +2021-01-27 22:12:41,611 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23207135 does not exist in continioustime dictionary! +NoneType: None +2021-01-27 22:12:47,977 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. +2021-01-27 22:12:48,529 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Building +2021-01-27 22:12:48,532 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Injecting +2021-01-27 22:12:48,533 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Building +2021-01-27 22:12:48,534 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Injecting +2021-01-27 22:12:48,535 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Building +2021-01-27 22:12:49,111 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Injecting +2021-01-27 22:12:49,113 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Building +2021-01-27 22:12:49,655 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Injecting +2021-01-28 09:03:46,465 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 09:03:46,551 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 09:03:46,552 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 09:03:46,552 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 09:03:46,552 rec_to_binaries.core: INFO Extracting time... +2021-01-28 09:03:51,941 rec_to_binaries.core: INFO Making position directory... +2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 09:03:52,103 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 09:03:52,477 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 09:03:52,477 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 09:03:52,477 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 09:03:52,480 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 09:03:52,480 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 09:03:52,480 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 09:03:52,481 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 09:03:52,481 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 09:03:52,482 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140689047308752 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 09:03:52,482 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 09:03:52,700 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 09:03:52,701 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 09:03:52,701 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 09:03:52,702 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 09:03:52,702 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 09:03:52,713 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 09:03:52,714 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 09:03:52,720 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 09:03:52,720 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 09:03:52,720 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 09:03:52,870 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 09:03:52,870 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 09:03:52,871 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 09:03:52,871 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 09:03:52,873 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 09:03:52,922 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 09:03:52,924 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 09:03:52,926 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 09:03:52,927 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 09:03:53,451 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 09:03:53,456 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 09:04:28,677 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 09:04:28,677 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 09:04:28,677 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 09:04:28,678 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 09:04:28,678 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 09:04:28,734 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 09:05:23,540 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 09:05:23,545 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 09:05:23,545 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 09:06:48,030 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 09:06:48,368 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 09:08:53,779 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 09:15:23,998 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 09:15:24,072 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 09:15:24,074 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 09:15:24,075 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 09:15:24,075 rec_to_binaries.core: INFO Extracting time... +2021-01-28 09:15:28,610 rec_to_binaries.core: INFO Making position directory... +2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 09:15:28,757 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 09:15:29,100 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 09:15:29,101 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 09:15:29,101 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140213774051984 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 09:15:29,102 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 09:15:29,299 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 09:15:29,300 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 09:15:29,300 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 09:15:29,300 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 09:15:29,301 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 09:15:29,309 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 09:15:29,309 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 09:15:29,313 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 09:15:29,313 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 09:15:29,411 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 09:15:29,411 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 09:15:29,412 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 09:15:29,412 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 09:15:29,413 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 09:15:29,446 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 09:15:29,449 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 09:15:29,450 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 09:15:29,450 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 09:15:29,775 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 09:15:29,776 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 09:16:02,548 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 09:16:02,548 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 09:16:02,549 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 09:16:02,549 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 09:16:02,550 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 09:16:02,604 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 09:16:59,799 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 09:16:59,803 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 09:16:59,803 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 09:18:09,634 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 09:18:09,975 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 09:19:22,619 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 09:19:22,726 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 09:19:22,727 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 09:19:22,728 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 09:19:22,728 rec_to_binaries.core: INFO Extracting time... +2021-01-28 09:19:27,309 rec_to_binaries.core: INFO Making position directory... +2021-01-28 09:19:27,319 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 09:19:27,319 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 09:19:27,320 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 09:19:27,320 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 09:19:27,464 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 09:19:27,792 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 09:19:27,795 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 09:19:27,796 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 09:19:27,796 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 09:19:27,797 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140347596326416 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 09:19:27,797 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 09:19:27,992 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 09:19:27,993 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 09:19:27,993 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 09:19:27,994 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 09:19:27,994 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 09:19:28,002 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 09:19:28,002 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 09:19:28,008 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 09:19:28,008 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 09:19:28,103 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 09:19:28,104 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 09:19:28,104 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 09:19:28,104 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 09:19:28,105 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 09:19:28,138 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 09:19:28,141 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 09:19:28,142 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 09:19:28,142 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 09:19:28,506 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 09:19:28,508 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 09:20:03,561 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 09:20:03,561 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 09:20:03,562 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 09:20:03,562 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 09:20:03,562 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 09:20:03,616 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 09:20:55,761 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 09:20:55,771 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 09:20:55,771 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 09:22:03,632 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 09:22:03,967 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 09:23:56,190 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb diff --git a/rec_to_nwb/environment.yml.orig b/rec_to_nwb/environment.yml.orig new file mode 100644 index 000000000..8a33382b2 --- /dev/null +++ b/rec_to_nwb/environment.yml.orig @@ -0,0 +1,61 @@ +name: rec_to_nwb +channels: + - conda-forge + - defaults + - novelakrk +dependencies: + - python>=3.6,<3.8 + - pip + - hdmf + - pynwb + - asn1crypto + - blas + - ca-certificates + - certifi + - cffi + - chardet + - cryptography + - elementpath + - h5py + - hdf5 + - idna + - jupyter + - libblas + - libcblas + - liblapack + - mkl + - mkl-service + - notebook + - numpy + - openssl + - pandas + - pycparser + - pyopenssl + - pysocks + - python-dateutil + - pytz + - requests + - scipy + - setuptools + - six + - sqlite + - urllib3 + - wheel + - xmlschema + - zlib + - vdom + - pyyaml + - pytest + - testfixtures + - ndx-franklab-novela=0.0.011 + - pip: + - mountainlab_pytools + - xmldiff + - rec-to-binaries==0.6.0.dev0 + - hdmf>2.2.0 + - pynwb + +# Docs + - recommonmark + - sphinx-autoapi + - sphinx_rtd_theme diff --git a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py index 4c1ea3eba..456fda869 100644 --- a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py +++ b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py @@ -11,6 +11,6 @@ def create_mda(cls, fl_mda): electrodes=fl_mda.electrode_table_region, timestamps=fl_mda.mda_data.mda_timestamps, conversion=fl_mda.conversion, - comments="sample comment", - description="Electrical series registered on electrode" - ) + comments="", + description="Recording of extracellular voltage" + ) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index ea76a2fd9..df7b9a6ea 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -8,16 +8,18 @@ class FlMdaExtractor: - def __init__(self, datasets): + def __init__(self, datasets, conversion): self.datasets = datasets - + # the conversion is to volts, so we multiple by 1e6 to change to uV + self.raw_to_uv = float(conversion) * 1e6 + def get_data(self): mda_data, timestamps, continuous_time = self.__extract_data() mda_timestamp_data_manager = MdaTimestampDataManager( directories=timestamps, continuous_time_directories=continuous_time ) - mda_data_manager = MdaDataManager(mda_data) + mda_data_manager = MdaDataManager(mda_data, self.raw_to_uv) data_iterator = MultiThreadDataIterator(mda_data_manager) timestamp_iterator = MultiThreadTimestampIterator(mda_timestamp_data_manager) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py index 87983ab78..c9b26149b 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py @@ -6,8 +6,9 @@ class FlMdaManager: def __init__(self, nwb_content, sampling_rate, datasets, conversion): self.__table_region_builder = TableRegionBuilder(nwb_content) - self.__fl_mda_extractor = FlMdaExtractor(datasets) - self.__fl_mda_builder = FlMdaBuilder(sampling_rate, conversion) + self.__fl_mda_extractor = FlMdaExtractor(datasets, conversion) + # we converted the data to uV in the extractor, so the conversion to V is always 1e-6 + self.__fl_mda_builder = FlMdaBuilder(sampling_rate, 0.000001) def get_data(self): electrode_table_region = self.__table_region_builder.build() diff --git a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py index 64ee922f8..b30712e31 100644 --- a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py @@ -1,12 +1,16 @@ from mountainlab_pytools.mdaio import readmda - +from numpy import isclose from rec_to_nwb.processing.nwb.common.data_manager import DataManager class MdaDataManager(DataManager): - def __init__(self, directories): + def __init__(self, directories, raw_to_uv): + self.raw_to_uv = raw_to_uv DataManager.__init__(self, directories) - # override def read_data(self, dataset_id, file_id): - return readmda(self.directories[dataset_id][file_id]) + # read the data from the MDA file, convert to uV and then return as int16 unless the data are already in uV + if not isclose(self.raw_to_uv,1.0): + return (readmda(self.directories[dataset_id][file_id]) * self.raw_to_uv).astype('int16') + else: + return readmda(self.directories[dataset_id][file_id]) diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py index 78395be26..bbfc58ae4 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py @@ -21,7 +21,6 @@ def __init__(self, datasets: list, metadata: dict, dataset_names: list, process_ @beartype def get_fl_positions(self) -> list: - print(self.dataset_names) cameras_ids = self.__get_cameras_ids(self.dataset_names, self.metadata) meters_per_pixels = self.__get_meters_per_pixels(cameras_ids, self.metadata) From 33f260baedf3c348bf1dc74c13987ac9ea7829af Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Thu, 28 Jan 2021 18:29:00 -0800 Subject: [PATCH 030/205] first efforts to make the time processing more efficient. Not tested or working --- rec_to_nwb.log | 43633 ++++++++++++++++ .../processing/builder/nwb_file_builder.py | 5 +- .../nwb/common/timestamps_manager.py | 6 +- .../components/analog/fl_analog_extractor.py | 3 +- .../nwb/components/dio/dio_extractor.py | 34 +- ...count_timestamp_corespondence_extractor.py | 9 +- .../video_files/fl_video_files_extractor.py | 18 +- .../time/continuous_time_extractor.py | 7 + .../processing/time/timestamp_converter.py | 25 +- 9 files changed, 43702 insertions(+), 38 deletions(-) diff --git a/rec_to_nwb.log b/rec_to_nwb.log index da02485cd..0bd342c2e 100644 --- a/rec_to_nwb.log +++ b/rec_to_nwb.log @@ -207558,3 +207558,43636 @@ Fields: 2021-01-28 09:22:03,632 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting 2021-01-28 09:22:03,967 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat 2021-01-28 09:23:56,190 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 10:23:01,477 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = despereaux +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-01-28 10:23:01,791 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 10:23:01,793 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 10:23:01,793 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 10:23:01,794 rec_to_binaries.core: INFO Extracting time... +2021-01-28 10:27:40,923 rec_to_binaries.core: INFO Making position directory... +2021-01-28 10:27:41,102 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 10:27:41,102 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 +2021-01-28 10:27:41,103 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 10:27:41,103 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = despereaux +date = 20191125 +nwb_metadata = Experiment Info: +Experimenter: Anna Gillespie +Description: Sungod control +Session Id: 4 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/nwb/despereaux20191125.nwb + +2021-01-28 10:27:41,560 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! + , [] +2021-01-28 16:09:16,667 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = Jaq +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-01-28 16:09:17,486 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 16:09:17,488 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 16:09:17,488 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 16:09:17,489 rec_to_binaries.core: INFO Extracting time... +2021-01-28 16:10:51,423 rec_to_binaries.core: INFO Making position directory... +2021-01-28 16:10:51,853 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 16:10:51,854 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 +2021-01-28 16:10:51,854 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 16:10:51,854 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = Jaq +date = 20190826 +nwb_metadata = Experiment Info: +Experimenter: Abhilasha Joshi +Description: Theta and gait +Session Id: jaq_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/nwb/Jaq20190826.nwb + +2021-01-28 16:10:52,611 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! + , [] +2021-01-28 16:10:56,077 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 16:10:56,670 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 16:10:56,670 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 16:10:56,675 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 16:10:56,676 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 16:10:56,677 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140480029743056 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +2001580 totRewards = 1 +2001580 64 200 +2001618 0 136 +2001730 64 136 +2001776 0 136 +2001780 0 128 +2003264 64 128 +2003377 0 128 +2003446 64 128 +2003519 0 128 +2003570 64 128 +2003646 0 128 +2003696 64 128 +2003785 0 128 +2003826 64 128 +2004082 0 128 +2004105 64 128 +2004232 0 128 +2004274 64 128 +2004393 0 128 +2004427 64 128 +2004551 0 128 +2004583 64 128 +2004720 0 128 +2004752 64 128 +2004888 0 128 +2004930 64 128 +2005077 0 128 +2005116 64 128 +2005252 0 128 +2005284 64 128 +2005395 0 128 +2005465 64 128 +2005540 0 128 +2005603 64 128 +2005710 0 128 +2005749 64 128 +2005861 0 128 +2005934 64 128 +2006019 0 128 +2006065 64 128 +2006182 0 128 +2006217 64 128 +2006329 0 128 +2006344 64 128 +2006477 0 128 +2006494 64 128 +2006626 0 128 +2006639 64 128 +2006774 0 128 +2006801 64 128 +2006925 0 128 +2006975 64 128 +2007855 0 128 +2007878 64 128 +2008024 0 128 +2008063 64 128 +2008169 0 128 +2008218 64 128 +2008346 0 128 +2008414 64 128 +2008525 0 128 +2008545 64 128 +2008694 0 128 +2008728 64 128 +2008871 0 128 +2008882 64 128 +2010662 0 128 +2010678 64 128 +2011803 0 128 +2011833 64 128 +2011970 0 128 +2012060 64 128 +2012163 0 128 +2012186 64 128 +2012343 0 128 +2012375 64 128 +2012524 0 128 +2012561 64 128 +2012567 0 128 +2012582 64 128 +2012666 0 128 +2012692 64 128 +2012709 0 128 +2012758 64 128 +2012843 0 128 +2012878 64 128 +2012913 0 128 +2012973 64 128 +2013026 0 128 +2013031 64 128 +2013034 0 128 +2013052 64 128 +2013239 0 128 +2034560 totRewards = 2 +2034560 128 144 +2034760 128 128 +2035091 0 0 +2035175 128 0 +2035224 0 0 +2035241 128 0 +2035642 0 0 +2035669 128 0 +2035934 0 0 +2035976 128 0 +2036086 0 0 +2036140 128 0 +2036249 0 0 +2036307 128 0 +2036411 0 0 +2036492 128 0 +2036582 0 0 +2036660 128 0 +2036748 0 0 +2036816 128 0 +2036899 0 0 +2036961 128 0 +2037070 0 0 +2037137 128 0 +2037244 0 0 +2037376 128 0 +2037423 0 0 +2037507 128 0 +2037610 0 0 +2037670 128 0 +2037770 0 0 +2037803 128 0 +2037924 0 0 +2037933 128 0 +2038187 0 0 +2038197 128 0 +2038342 0 0 +2038355 128 0 +2038819 0 0 +2038855 128 0 +2039188 0 0 +2039253 128 0 +2039357 0 0 +2039426 128 0 +2039462 0 0 +2039490 128 0 +2039548 0 0 +2039667 128 0 +2039739 0 0 +2039810 128 0 +2039928 0 0 +2039981 128 0 +2040117 0 0 +2040208 128 0 +2040298 0 0 +2040373 128 0 +2040478 0 0 +2040515 128 0 +2040657 0 0 +2040697 128 0 +2040788 0 0 +2040829 128 0 +2040851 0 0 +2040860 128 0 +2041365 0 0 +2041423 128 0 +2041584 0 0 +2041699 128 0 +2041769 0 0 +2041844 128 0 +2041969 0 0 +2042090 128 0 +2042173 0 0 +2042311 128 0 +2042343 0 0 +2063830 128 0 +2063874 0 0 +2066005 128 0 +2067249 0 0 +2067324 128 0 +2067441 0 0 +2074645 totRewards = 3 +2074645 64 8 +2074658 0 8 +2074845 0 0 +2074976 64 0 +2075045 0 0 +2075058 64 0 +2075512 0 0 +2075546 64 0 +2075789 0 0 +2075823 64 0 +2076095 0 0 +2076119 64 0 +2076245 0 0 +2076272 64 0 +2076412 0 0 +2076445 64 0 +2076571 0 0 +2076603 64 0 +2076738 0 0 +2076767 64 0 +2076901 0 0 +2076934 64 0 +2077052 0 0 +2077104 64 0 +2077209 0 0 +2077249 64 0 +2077518 0 0 +2077538 64 0 +2077985 0 0 +2077999 64 0 +2078158 0 0 +2078172 64 0 +2078842 0 0 +2078882 64 0 +2079003 0 0 +2079062 64 0 +2079188 0 0 +2079210 64 0 +2079323 0 0 +2079338 64 0 +2079360 0 0 +2079427 64 0 +2079489 0 0 +2079575 64 0 +2079656 0 0 +2079680 64 0 +2081117 0 0 +2081135 64 0 +2081295 0 0 +2081324 64 0 +2081462 0 0 +2081533 64 0 +2081625 0 0 +2096193 totRewards = 4 +2096193 128 16 +2096393 128 0 +2096867 0 0 +2096907 128 0 +2097582 0 0 +2097600 128 0 +2097712 0 0 +2097733 128 0 +2097848 0 0 +2097876 128 0 +2097988 0 0 +2098020 128 0 +2098129 0 0 +2098160 128 0 +2098287 0 0 +2098319 128 0 +2098435 0 0 +2098479 128 0 +2098589 0 0 +2098635 128 0 +2098748 0 0 +2098802 128 0 +2098919 0 0 +2098997 128 0 +2099135 0 0 +2099189 128 0 +2099304 0 0 +2099356 128 0 +2099465 0 0 +2099508 128 0 +2099929 0 0 +2099945 128 0 +2100094 0 0 +2100103 128 0 +2100267 0 0 +2100306 128 0 +2100435 0 0 +2100498 128 0 +2100541 0 0 +2100563 128 0 +2100631 0 0 +2100699 128 0 +2100805 0 0 +2100866 128 0 +2100997 0 0 +2101127 128 0 +2101177 0 0 +2101305 128 0 +2101366 0 0 +2101520 128 0 +2101559 0 0 +2101741 128 0 +2101765 0 0 +2102142 128 0 +2102175 0 0 +2102328 128 0 +2102369 0 0 +2102507 128 0 +2102562 0 0 +2102681 128 0 +2102720 0 0 +2105862 128 0 +2105868 0 0 +2114611 totRewards = 5 +2114611 64 8 +2114766 0 8 +2114811 0 0 +2114881 64 0 +2115110 0 0 +2115120 64 0 +2115389 0 0 +2115397 64 0 +2116252 0 0 +2116283 64 0 +2116436 0 0 +2116450 64 0 +2116584 0 0 +2116611 64 0 +2116741 0 0 +2116780 64 0 +2116895 0 0 +2116944 64 0 +2117053 0 0 +2117100 64 0 +2117213 0 0 +2117240 64 0 +2117365 0 0 +2117398 64 0 +2117526 0 0 +2117554 64 0 +2117852 0 0 +2117876 64 0 +2118025 0 0 +2118034 64 0 +2118175 0 0 +2118220 64 0 +2118353 0 0 +2118363 64 0 +2118479 0 0 +2118501 64 0 +2118516 0 0 +2118552 64 0 +2118559 0 0 +2118580 64 0 +2118637 0 0 +2118740 64 0 +2118800 0 0 +2118878 64 0 +2120024 0 0 +2120051 64 0 +2120186 0 0 +2120233 64 0 +2120352 0 0 +2140288 totRewards = 6 +2140288 128 16 +2140488 128 0 +2140841 0 0 +2140904 128 0 +2141213 0 0 +2141279 128 0 +2141616 0 0 +2141629 128 0 +2141863 0 0 +2141879 128 0 +2142145 0 0 +2142170 128 0 +2142292 0 0 +2142316 128 0 +2142435 0 0 +2142476 128 0 +2142582 0 0 +2142631 128 0 +2142739 0 0 +2142785 128 0 +2142890 0 0 +2142943 128 0 +2143053 0 0 +2143111 128 0 +2143226 0 0 +2143277 128 0 +2143386 0 0 +2143425 128 0 +2143539 0 0 +2143553 128 0 +2143986 0 0 +2144010 128 0 +2144133 0 0 +2144162 128 0 +2144308 0 0 +2144348 128 0 +2144481 0 0 +2144538 128 0 +2144654 0 0 +2144710 128 0 +2144817 0 0 +2144882 128 0 +2144986 0 0 +2145048 128 0 +2145173 0 0 +2145185 128 0 +2145200 0 0 +2145208 128 0 +2145295 0 0 +2145404 128 0 +2145461 0 0 +2145557 128 0 +2145621 0 0 +2145669 128 0 +2145675 0 0 +2145682 128 0 +2145958 0 0 +2145990 128 0 +2146113 0 0 +2146144 128 0 +2146279 0 0 +2146329 128 0 +2146438 0 0 +2146560 128 0 +2146611 0 0 +2146696 128 0 +2146710 0 0 +2159529 totRewards = 7 +2159529 64 8 +2159729 64 0 +2159738 0 0 +2159763 64 0 +2160960 0 0 +2160973 64 0 +2161110 0 0 +2161128 64 0 +2161268 0 0 +2161289 64 0 +2161432 0 0 +2161459 64 0 +2161608 0 0 +2161632 64 0 +2161949 0 0 +2161985 64 0 +2162113 0 0 +2162143 64 0 +2162275 0 0 +2162296 64 0 +2162310 0 0 +2162319 64 0 +2162403 0 0 +2162421 64 0 +2162452 0 0 +2162459 64 0 +2162559 0 0 +2162568 64 0 +2162900 0 0 +2162928 64 0 +2163757 0 0 +2163783 64 0 +2163917 0 0 +2163968 64 0 +2164082 0 0 +2166458 64 0 +2166531 0 0 +2166648 64 0 +2166917 0 0 +2166935 64 0 +2167090 0 0 +2167109 64 0 +2167732 0 0 +2167762 64 0 +2167908 0 0 +2167929 64 0 +2168084 0 0 +2168099 64 0 +2168429 0 0 +2168490 64 0 +2168588 0 0 +2176893 totRewards = 8 +2176893 128 16 +2177093 128 0 +2177326 0 0 +2177401 128 0 +2177653 0 0 +2177660 128 0 +2177663 0 0 +2177733 128 0 +2178313 0 0 +2178319 128 0 +2179180 0 0 +2179188 128 0 +2179315 0 0 +2179351 128 0 +2179476 0 0 +2179523 128 0 +2179642 0 0 +2179688 128 0 +2179810 0 0 +2179872 128 0 +2179978 0 0 +2180036 128 0 +2180144 0 0 +2180182 128 0 +2180882 0 0 +2180915 128 0 +2181044 0 0 +2181173 128 0 +2181203 0 0 +2181292 128 0 +2181428 0 0 +2181534 128 0 +2181591 0 0 +2181727 128 0 +2181782 0 0 +2182366 128 0 +2182374 0 0 +2184109 128 0 +2184245 0 0 +2184296 128 0 +2184396 0 0 +2184529 128 0 +2188631 0 0 +2190187 128 0 +2191079 0 0 +2191268 128 0 +2192641 0 0 +2192662 128 0 +2193070 0 0 +2193103 128 0 +2193223 0 0 +2193290 128 0 +2193362 0 0 +2193437 128 0 +2193510 0 0 +2193613 128 0 +2193703 0 0 +2202716 totRewards = 9 +2202716 64 8 +2202773 0 8 +2202836 64 8 +2202916 64 0 +2204488 0 0 +2204502 64 0 +2204642 0 0 +2204664 64 0 +2204811 0 0 +2204825 64 0 +2204970 0 0 +2204987 64 0 +2205126 0 0 +2205156 64 0 +2205282 0 0 +2205322 64 0 +2205445 0 0 +2205473 64 0 +2205730 0 0 +2205744 64 0 +2205890 0 0 +2205893 64 0 +2206940 0 0 +2206946 64 0 +2207096 0 0 +2207119 64 0 +2207266 0 0 +2207280 64 0 +2207972 0 0 +2207997 64 0 +2208143 0 0 +2208171 64 0 +2209358 0 0 +2209415 64 0 +2209513 0 0 +2216514 64 0 +2216790 0 0 +2216816 64 0 +2216945 0 0 +2216964 64 0 +2217093 0 0 +2217122 64 0 +2217254 0 0 +2217269 64 0 +2217569 0 0 +2217585 64 0 +2217733 0 0 +2217752 64 0 +2218051 0 0 +2222344 totRewards = 10 +2222344 128 16 +2222461 0 16 +2222544 0 0 +2222557 128 0 +2222585 0 0 +2222649 128 0 +2222663 0 0 +2222948 128 0 +2223215 0 0 +2223240 128 0 +2223844 0 0 +2223856 128 0 +2223972 0 0 +2223978 128 0 +2224099 0 0 +2224123 128 0 +2224239 0 0 +2224270 128 0 +2224377 0 0 +2224408 128 0 +2224526 0 0 +2224571 128 0 +2224679 0 0 +2224728 128 0 +2224835 0 0 +2224896 128 0 +2225005 0 0 +2225061 128 0 +2225173 0 0 +2225232 128 0 +2225342 0 0 +2225399 128 0 +2225511 0 0 +2225547 128 0 +2225798 0 0 +2225808 128 0 +2226268 0 0 +2226295 128 0 +2226441 0 0 +2226471 128 0 +2226612 0 0 +2226663 128 0 +2226797 0 0 +2226836 128 0 +2226974 0 0 +2227280 128 0 +2227394 0 0 +2227522 128 0 +2227572 0 0 +2240414 128 0 +2240991 0 0 +2241009 128 0 +2241417 0 0 +2241455 128 0 +2241562 0 0 +2241608 128 0 +2241717 0 0 +2241773 128 0 +2241885 0 0 +2241935 128 0 +2242056 0 0 +2242116 128 0 +2242216 0 0 +2242288 128 0 +2242395 0 0 +2242461 128 0 +2242582 0 0 +2242633 128 0 +2242764 0 0 +2242816 128 0 +2242923 0 0 +2243013 128 0 +2243120 0 0 +2243260 128 0 +2243270 0 0 +2245717 128 0 +2247529 0 0 +2247664 128 0 +2247755 0 0 +2254386 totRewards = 11 +2254386 64 8 +2254586 64 0 +2254782 0 0 +2254804 64 0 +2256275 0 0 +2256295 64 0 +2256427 0 0 +2256456 64 0 +2256588 0 0 +2256617 64 0 +2256923 0 0 +2256953 64 0 +2257081 0 0 +2257117 64 0 +2257241 0 0 +2257280 64 0 +2257399 0 0 +2257441 64 0 +2257567 0 0 +2257588 64 0 +2258047 0 0 +2258051 64 0 +2258899 0 0 +2258921 64 0 +2259056 0 0 +2259097 64 0 +2259215 0 0 +2259255 64 0 +2259372 0 0 +2259405 64 0 +2260634 0 0 +2260676 64 0 +2261234 0 0 +2261300 64 0 +2261404 0 0 +2261441 64 0 +2261625 0 0 +2261715 64 0 +2261815 0 0 +2261834 64 0 +2261977 0 0 +2262025 64 0 +2262133 0 0 +2277660 totRewards = 12 +2277660 128 16 +2277739 0 16 +2277860 0 0 +2277981 128 0 +2278327 0 0 +2278333 128 0 +2278895 0 0 +2278925 128 0 +2279032 0 0 +2279044 128 0 +2279302 0 0 +2279309 128 0 +2279439 0 0 +2279455 128 0 +2279735 0 0 +2279763 128 0 +2279878 0 0 +2279911 128 0 +2280032 0 0 +2280084 128 0 +2280202 0 0 +2280254 128 0 +2280364 0 0 +2280421 128 0 +2280526 0 0 +2280579 128 0 +2280686 0 0 +2280736 128 0 +2280847 0 0 +2280883 128 0 +2281609 0 0 +2281646 128 0 +2281774 0 0 +2281872 128 0 +2281935 0 0 +2282007 128 0 +2282103 0 0 +2282213 128 0 +2282280 0 0 +2282420 128 0 +2282494 0 0 +2284086 128 0 +2285130 0 0 +2285212 128 0 +2286235 0 0 +2286289 128 0 +2287135 0 0 +2287186 128 0 +2287289 0 0 +2291999 totRewards = 13 +2291999 64 8 +2292199 64 0 +2293824 0 0 +2293846 64 0 +2293982 0 0 +2294001 64 0 +2294138 0 0 +2294169 64 0 +2294293 0 0 +2294332 64 0 +2294454 0 0 +2294482 64 0 +2294791 0 0 +2294803 64 0 +2295457 0 0 +2295504 64 0 +2295973 0 0 +2296018 64 0 +2296154 0 0 +2296187 64 0 +2296796 0 0 +2296819 64 0 +2297909 0 0 +2297970 64 0 +2298237 0 0 +2298249 64 0 +2298570 0 0 +2298612 64 0 +2298728 0 0 +2298774 64 0 +2298883 0 0 +2298938 64 0 +2299041 0 0 +2307832 totRewards = 14 +2307832 128 16 +2308000 0 16 +2308028 128 16 +2308032 128 0 +2309019 0 0 +2309027 128 0 +2309306 0 0 +2309313 128 0 +2309437 0 0 +2309473 128 0 +2309593 0 0 +2309630 128 0 +2309750 0 0 +2309782 128 0 +2309900 0 0 +2309946 128 0 +2310069 0 0 +2310100 128 0 +2310224 0 0 +2310266 128 0 +2310382 0 0 +2310441 128 0 +2310558 0 0 +2310611 128 0 +2310718 0 0 +2310772 128 0 +2310877 0 0 +2310912 128 0 +2311035 0 0 +2311066 128 0 +2311185 0 0 +2311220 128 0 +2311336 0 0 +2311371 128 0 +2311666 0 0 +2311731 128 0 +2311816 0 0 +2311986 128 0 +2312015 0 0 +2313817 128 0 +2313887 0 0 +2313926 128 0 +2314125 0 0 +2314202 128 0 +2314630 0 0 +2314756 128 0 +2317830 0 0 +2317846 128 0 +2317980 0 0 +2318017 128 0 +2318121 0 0 +2318447 128 0 +2318468 0 0 +2318575 128 0 +2318643 0 0 +2321337 128 0 +2322451 0 0 +2322689 128 0 +2327632 0 0 +2327645 128 0 +2327935 0 0 +2327967 128 0 +2328085 0 0 +2328120 128 0 +2328244 0 0 +2328283 128 0 +2328404 0 0 +2328457 128 0 +2328561 0 0 +2328627 128 0 +2328720 0 0 +2328866 128 0 +2328892 0 0 +2328961 128 0 +2329075 0 0 +2329131 128 0 +2329240 0 0 +2329331 128 0 +2329412 0 0 +2329583 128 0 +2329768 0 0 +2331261 128 0 +2333920 0 0 +2337449 totRewards = 15 +2337449 64 8 +2337649 64 0 +2338511 0 0 +2338525 64 0 +2339700 0 0 +2339726 64 0 +2339869 0 0 +2339884 64 0 +2340021 0 0 +2340049 64 0 +2340177 0 0 +2340221 64 0 +2340350 0 0 +2340357 64 0 +2340814 0 0 +2340842 64 0 +2341675 0 0 +2341689 64 0 +2341838 0 0 +2341866 64 0 +2341992 0 0 +2342046 64 0 +2342161 0 0 +2342239 64 0 +2342326 0 0 +2342402 64 0 +2342683 0 0 +2342700 64 0 +2342845 0 0 +2342872 64 0 +2343006 0 0 +2343072 64 0 +2343156 0 0 +2346147 totRewards = 16 +2346147 128 16 +2346164 0 16 +2346272 128 16 +2346335 0 16 +2346347 0 0 +2346589 128 0 +2346602 0 0 +2346660 128 0 +2346684 0 0 +2346947 128 0 +2347329 0 0 +2347349 128 0 +2348105 0 0 +2348110 128 0 +2348537 0 0 +2348558 128 0 +2348682 0 0 +2348728 128 0 +2348835 0 0 +2348889 128 0 +2349004 0 0 +2349052 128 0 +2349166 0 0 +2349215 128 0 +2349330 0 0 +2349374 128 0 +2349484 0 0 +2349526 128 0 +2350244 0 0 +2350261 128 0 +2350407 0 0 +2350441 128 0 +2350568 0 0 +2350595 128 0 +2350771 0 0 +2350858 128 0 +2350914 0 0 +2351075 128 0 +2351151 0 0 +2351309 128 0 +2351326 0 0 +2351740 128 0 +2351753 0 0 +2351886 128 0 +2351896 0 0 +2352011 128 0 +2352104 0 0 +2352187 128 0 +2352214 0 0 +2352301 128 0 +2352559 0 0 +2352772 128 0 +2353146 0 0 +2353183 128 0 +2353383 0 0 +2353426 128 0 +2355263 0 0 +2359358 totRewards = 17 +2359358 64 8 +2359558 64 0 +2360088 0 0 +2360101 64 0 +2361553 0 0 +2361578 64 0 +2361883 0 0 +2361907 64 0 +2362039 0 0 +2362075 64 0 +2362327 0 0 +2362335 64 0 +2364953 0 0 +2364983 64 0 +2365102 0 0 +2365153 64 0 +2365267 0 0 +2365324 64 0 +2365414 0 0 +2368975 totRewards = 18 +2368975 128 16 +2369175 128 0 +2369303 0 0 +2369335 128 0 +2369692 0 0 +2369711 128 0 +2369813 0 0 +2369864 128 0 +2370239 0 0 +2370266 128 0 +2370543 0 0 +2370563 128 0 +2370698 0 0 +2370728 128 0 +2370846 0 0 +2370899 128 0 +2371028 0 0 +2371066 128 0 +2371186 0 0 +2371233 128 0 +2371348 0 0 +2371399 128 0 +2371524 0 0 +2371569 128 0 +2371690 0 0 +2371747 128 0 +2371862 0 0 +2371919 128 0 +2372027 0 0 +2372070 128 0 +2372173 0 0 +2372219 128 0 +2372338 0 0 +2375851 128 0 +2376084 0 0 +2376257 128 0 +2376944 0 0 +2377077 128 0 +2378183 0 0 +2381281 totRewards = 19 +2381281 64 8 +2381481 64 0 +2382052 0 0 +2382073 64 0 +2383036 0 0 +2383047 64 0 +2383182 0 0 +2383206 64 0 +2383520 0 0 +2383532 64 0 +2383681 0 0 +2383710 64 0 +2383859 0 0 +2383866 64 0 +2384010 0 0 +2384039 64 0 +2384184 0 0 +2384206 64 0 +2384339 0 0 +2384374 64 0 +2385999 0 0 +2386006 64 0 +2386173 0 0 +2386185 64 0 +2386707 0 0 +2386743 64 0 +2386868 0 0 +2386931 64 0 +2387020 0 0 +2390293 totRewards = 20 +2390293 128 16 +2390431 0 16 +2390474 128 16 +2390493 128 0 +2390625 0 0 +2390686 128 0 +2390781 0 0 +2390831 128 0 +2391031 0 0 +2391064 128 0 +2391157 0 0 +2391189 128 0 +2391831 0 0 +2391839 128 0 +2392429 0 0 +2392447 128 0 +2392582 0 0 +2392621 128 0 +2392746 0 0 +2392786 128 0 +2392920 0 0 +2392951 128 0 +2393082 0 0 +2393120 128 0 +2393249 0 0 +2393295 128 0 +2393428 0 0 +2393461 128 0 +2393626 0 0 +2393678 128 0 +2393703 0 0 +2393722 128 0 +2393784 0 0 +2393850 128 0 +2393969 0 0 +2394022 128 0 +2394154 0 0 +2394254 128 0 +2394329 0 0 +2394379 128 0 +2394421 0 0 +2394454 128 0 +2394485 0 0 +2394621 128 0 +2394669 0 0 +2395021 128 0 +2395050 0 0 +2395157 128 0 +2395192 0 0 +2395962 128 0 +2395976 0 0 +2399690 totRewards = 21 +2399690 64 8 +2399739 0 8 +2399783 64 8 +2399889 64 0 +2400032 0 0 +2400055 64 0 +2401665 0 0 +2401674 64 0 +2401820 0 0 +2401845 64 0 +2401974 0 0 +2402003 64 0 +2402129 0 0 +2402156 64 0 +2402593 0 0 +2402609 64 0 +2402754 0 0 +2402766 64 0 +2403575 0 0 +2403613 64 0 +2403763 0 0 +2403774 64 0 +2404087 0 0 +2404120 64 0 +2404268 0 0 +2404282 64 0 +2404424 0 0 +2404457 64 0 +2404593 0 0 +2404624 64 0 +2404761 0 0 +2404786 64 0 +2405621 0 0 +2405656 64 0 +2405801 0 0 +2405835 64 0 +2405983 0 0 +2406018 64 0 +2406128 0 0 +2408919 totRewards = 22 +2408918 128 16 +2409089 0 16 +2409099 128 16 +2409118 128 0 +2409259 0 0 +2409282 128 0 +2409881 0 0 +2409914 128 0 +2410332 0 0 +2410359 128 0 +2410491 0 0 +2410499 128 0 +2410625 0 0 +2410640 128 0 +2410777 0 0 +2410806 128 0 +2410954 0 0 +2410964 128 0 +2411111 0 0 +2411139 128 0 +2411271 0 0 +2411311 128 0 +2411444 0 0 +2411478 128 0 +2411620 0 0 +2411645 128 0 +2411779 0 0 +2411820 128 0 +2411949 0 0 +2411991 128 0 +2412110 0 0 +2412152 128 0 +2412297 0 0 +2412381 128 0 +2412463 0 0 +2412586 128 0 +2412637 0 0 +2417606 totRewards = 23 +2417606 64 8 +2417806 64 0 +2417988 0 0 +2418017 64 0 +2419385 0 0 +2419403 64 0 +2419710 0 0 +2419728 64 0 +2419869 0 0 +2419900 64 0 +2420197 0 0 +2420230 64 0 +2420360 0 0 +2420383 64 0 +2420813 0 0 +2420840 64 0 +2420978 0 0 +2421000 64 0 +2421625 0 0 +2421678 64 0 +2421781 0 0 +2421836 64 0 +2421936 0 0 +2424845 totRewards = 24 +2424845 128 16 +2424878 0 16 +2424957 128 16 +2425001 0 16 +2425029 128 16 +2425045 128 0 +2425100 0 0 +2425132 128 0 +2425255 0 0 +2425341 128 0 +2425404 0 0 +2425413 128 0 +2425655 0 0 +2425694 128 0 +2429976 0 0 +2430004 128 0 +2430156 0 0 +2430196 128 0 +2430336 0 0 +2430380 128 0 +2430522 0 0 +2430571 128 0 +2430718 0 0 +2430748 128 0 +2430894 0 0 +2430920 128 0 +2431078 0 0 +2431125 128 0 +2431275 0 0 +2431329 128 0 +2431675 0 0 +2431820 128 0 +2431897 0 0 +2432493 128 0 +2432637 0 0 +2432661 128 0 +2432804 0 0 +2432861 128 0 +2432994 0 0 +2433025 128 0 +2433287 0 0 +2433293 128 0 +2433298 0 0 +2433302 128 0 +2433608 0 0 +2433619 128 0 +2433651 0 0 +2433688 128 0 +2433712 0 0 +2433722 128 0 +2433771 0 0 +2433875 128 0 +2434339 0 0 +2434379 128 0 +2434521 0 0 +2434566 128 0 +2435276 0 0 +2435311 128 0 +2435450 0 0 +2435518 128 0 +2435619 0 0 +2435702 128 0 +2435821 0 0 +2435901 128 0 +2436009 0 0 +2436087 128 0 +2436177 0 0 +2436291 128 0 +2436323 0 0 +2436357 128 0 +2436377 0 0 +2443046 128 0 +2443134 0 0 +2443341 128 0 +2443453 0 0 +2443671 128 0 +2443803 0 0 +2443889 128 0 +2443921 0 0 +2443970 128 0 +2444102 0 0 +2447042 totRewards = 25 +2447042 64 8 +2447242 64 0 +2447765 0 0 +2447772 64 0 +2447880 0 0 +2447886 64 0 +2449309 0 0 +2449318 64 0 +2449464 0 0 +2449481 64 0 +2449621 0 0 +2449639 64 0 +2449783 0 0 +2449802 64 0 +2449934 0 0 +2449973 64 0 +2450097 0 0 +2450126 64 0 +2450260 0 0 +2450285 64 0 +2450402 0 0 +2455364 totRewards = 26 +2455364 128 16 +2455546 0 16 +2455564 0 0 +2455657 128 0 +2455691 0 0 +2455743 128 0 +2455937 0 0 +2456018 128 0 +2456092 0 0 +2456103 128 0 +2456163 0 0 +2456212 128 0 +2456319 0 0 +2456362 128 0 +2457252 0 0 +2457265 128 0 +2457695 0 0 +2457717 128 0 +2457847 0 0 +2457870 128 0 +2458176 0 0 +2458211 128 0 +2458339 0 0 +2458376 128 0 +2458501 0 0 +2458536 128 0 +2458658 0 0 +2458698 128 0 +2458804 0 0 +2458851 128 0 +2458970 0 0 +2458984 128 0 +2459119 0 0 +2459147 128 0 +2459250 0 0 +2463620 totRewards = 27 +2463620 64 8 +2463820 64 0 +2465463 0 0 +2465471 64 0 +2465619 0 0 +2465626 64 0 +2465935 0 0 +2465947 64 0 +2466092 0 0 +2466110 64 0 +2466253 0 0 +2466280 64 0 +2466410 0 0 +2466447 64 0 +2466568 0 0 +2466603 64 0 +2466732 0 0 +2466752 64 0 +2467027 0 0 +2469814 totRewards = 28 +2469814 128 16 +2469994 0 16 +2470014 0 0 +2470051 128 0 +2470113 0 0 +2470131 128 0 +2470369 0 0 +2470428 128 0 +2470615 0 0 +2470659 128 0 +2470750 0 0 +2470810 128 0 +2471182 0 0 +2471206 128 0 +2471609 0 0 +2471636 128 0 +2471763 0 0 +2471806 128 0 +2471934 0 0 +2471960 128 0 +2472090 0 0 +2472133 128 0 +2472245 0 0 +2472295 128 0 +2472412 0 0 +2472452 128 0 +2472597 0 0 +2472634 128 0 +2472746 0 0 +2472805 128 0 +2472913 0 0 +2472952 128 0 +2473352 0 0 +2473598 128 0 +2476006 0 0 +2476133 128 0 +2479487 0 0 +2479687 128 0 +2480044 0 0 +2482815 totRewards = 29 +2482815 64 8 +2483015 64 0 +2485179 0 0 +2485197 64 0 +2485339 0 0 +2485359 64 0 +2485487 0 0 +2485527 64 0 +2485658 0 0 +2485672 64 0 +2485968 0 0 +2485982 64 0 +2486102 0 0 +2489155 totRewards = 30 +2489155 128 16 +2489313 0 16 +2489355 0 0 +2489369 128 0 +2489697 0 0 +2489732 128 0 +2489944 0 0 +2489982 128 0 +2490071 0 0 +2490129 128 0 +2490358 0 0 +2490381 128 0 +2490490 0 0 +2490527 128 0 +2490938 0 0 +2490973 128 0 +2491097 0 0 +2491113 128 0 +2491255 0 0 +2491270 128 0 +2491405 0 0 +2491435 128 0 +2491565 0 0 +2491605 128 0 +2491743 0 0 +2491776 128 0 +2491897 0 0 +2491946 128 0 +2492059 0 0 +2492109 128 0 +2492225 0 0 +2492263 128 0 +2492382 0 0 +2492423 128 0 +2492544 0 0 +2492573 128 0 +2492723 0 0 +2492742 128 0 +2492881 0 0 +2492917 128 0 +2493039 0 0 +2493086 128 0 +2493194 0 0 +2493241 128 0 +2493365 0 0 +2493381 128 0 +2493510 0 0 +2493572 128 0 +2493589 0 0 +2493676 128 0 +2493876 0 0 +2494191 128 0 +2494750 0 0 +2494845 128 0 +2495454 0 0 +2499420 totRewards = 31 +2499419 64 8 +2499619 64 0 +2502333 0 0 +2502350 64 0 +2502492 0 0 +2502502 64 0 +2503572 0 0 +2503596 64 0 +2503742 0 0 +2503751 64 0 +2504397 0 0 +2504419 64 0 +2504560 0 0 +2504572 64 0 +2505051 0 0 +2505069 64 0 +2505379 0 0 +2505412 64 0 +2505557 0 0 +2505572 64 0 +2505715 0 0 +2505767 64 0 +2505847 0 0 +2508735 totRewards = 32 +2508735 128 16 +2508885 0 16 +2508935 0 0 +2508994 128 0 +2509065 0 0 +2509107 128 0 +2509335 0 0 +2509344 128 0 +2509483 0 0 +2509494 128 0 +2509735 0 0 +2509758 128 0 +2509877 0 0 +2509893 128 0 +2510149 0 0 +2510177 128 0 +2510297 0 0 +2510320 128 0 +2510597 0 0 +2510620 128 0 +2510757 0 0 +2510780 128 0 +2511073 0 0 +2511100 128 0 +2511234 0 0 +2511266 128 0 +2511410 0 0 +2511438 128 0 +2511567 0 0 +2511607 128 0 +2511716 0 0 +2511763 128 0 +2511868 0 0 +2511924 128 0 +2512020 0 0 +2515171 totRewards = 33 +2515171 64 8 +2515371 64 0 +2515871 0 0 +2515882 64 0 +2517692 0 0 +2517721 64 0 +2517853 0 0 +2517891 64 0 +2518013 0 0 +2518044 64 0 +2518481 0 0 +2518520 64 0 +2518612 0 0 +2521180 totRewards = 34 +2521180 128 16 +2521354 0 16 +2521379 128 16 +2521380 128 0 +2521569 0 0 +2521590 128 0 +2521692 0 0 +2521711 128 0 +2521925 0 0 +2521978 128 0 +2522070 0 0 +2522108 128 0 +2522490 0 0 +2522514 128 0 +2522937 0 0 +2522956 128 0 +2523086 0 0 +2523120 128 0 +2523252 0 0 +2523270 128 0 +2523399 0 0 +2523434 128 0 +2523557 0 0 +2523601 128 0 +2523729 0 0 +2523767 128 0 +2523896 0 0 +2523942 128 0 +2524058 0 0 +2524104 128 0 +2524211 0 0 +2524253 128 0 +2524372 0 0 +2524387 128 0 +2524514 0 0 +2527384 totRewards = 35 +2527384 64 8 +2527584 64 0 +2529745 0 0 +2529773 64 0 +2529906 0 0 +2529937 64 0 +2530226 0 0 +2530248 64 0 +2530392 0 0 +2530412 64 0 +2530548 0 0 +2530575 64 0 +2530711 0 0 +2530730 64 0 +2530869 0 0 +2530900 64 0 +2531022 0 0 +2531075 64 0 +2531188 0 0 +2531252 64 0 +2531324 0 0 +2532712 64 0 +2532741 0 0 +2532965 64 0 +2533145 0 0 +2533200 64 0 +2533263 0 0 +2533333 64 0 +2533747 0 0 +2536465 totRewards = 36 +2536465 128 16 +2536665 128 0 +2536770 0 0 +2536790 128 0 +2537391 0 0 +2537424 128 0 +2537815 0 0 +2537843 128 0 +2538112 0 0 +2538119 128 0 +2538254 0 0 +2538292 128 0 +2538420 0 0 +2538455 128 0 +2538583 0 0 +2538622 128 0 +2538747 0 0 +2538789 128 0 +2538909 0 0 +2538941 128 0 +2539071 0 0 +2539112 128 0 +2539227 0 0 +2539272 128 0 +2539389 0 0 +2539435 128 0 +2539553 0 0 +2539599 128 0 +2539710 0 0 +2539756 128 0 +2539870 0 0 +2539919 128 0 +2540024 0 0 +2540097 128 0 +2540131 0 0 +2543061 totRewards = 37 +2543061 64 8 +2543261 64 0 +2543302 0 0 +2543321 64 0 +2545004 0 0 +2545027 64 0 +2545177 0 0 +2545189 64 0 +2545641 0 0 +2545675 64 0 +2545800 0 0 +2545841 64 0 +2546764 0 0 +2546771 64 0 +2546909 0 0 +2546973 64 0 +2547017 0 0 +2549893 totRewards = 38 +2549893 128 16 +2550093 128 0 +2550333 0 0 +2550345 128 0 +2550468 0 0 +2550476 128 0 +2550694 0 0 +2550702 128 0 +2550933 0 0 +2550951 128 0 +2551060 0 0 +2551108 128 0 +2551471 0 0 +2551497 128 0 +2551924 0 0 +2551952 128 0 +2552079 0 0 +2552100 128 0 +2552395 0 0 +2552426 128 0 +2552547 0 0 +2552592 128 0 +2552735 0 0 +2552764 128 0 +2552902 0 0 +2552946 128 0 +2553065 0 0 +2553112 128 0 +2553229 0 0 +2553275 128 0 +2553379 0 0 +2553437 128 0 +2553527 0 0 +2553607 128 0 +2553670 0 0 +2556846 totRewards = 39 +2556846 64 8 +2557046 64 0 +2557066 0 0 +2557079 64 0 +2559054 0 0 +2559065 64 0 +2559552 0 0 +2559572 64 0 +2559707 0 0 +2559758 64 0 +2559875 0 0 +2559923 64 0 +2560048 0 0 +2560089 64 0 +2560388 0 0 +2560454 64 0 +2560540 0 0 +2563235 totRewards = 40 +2563235 128 16 +2563435 128 0 +2564006 0 0 +2564041 128 0 +2564140 0 0 +2564180 128 0 +2564559 0 0 +2564586 128 0 +2565004 0 0 +2565043 128 0 +2565168 0 0 +2565191 128 0 +2565328 0 0 +2565350 128 0 +2565480 0 0 +2565520 128 0 +2565631 0 0 +2565663 128 0 +2565791 0 0 +2565824 128 0 +2565949 0 0 +2565991 128 0 +2566098 0 0 +2566143 128 0 +2566260 0 0 +2566298 128 0 +2566424 0 0 +2566467 128 0 +2566573 0 0 +2566618 128 0 +2566742 0 0 +2566763 128 0 +2566912 0 0 +2566946 128 0 +2567068 0 0 +2567114 128 0 +2567223 0 0 +2567281 128 0 +2567360 0 0 +2570298 totRewards = 41 +2570298 64 8 +2570498 64 0 +2572758 0 0 +2572780 64 0 +2573101 0 0 +2573145 64 0 +2573281 0 0 +2573322 64 0 +2574008 0 0 +2574032 64 0 +2574177 0 0 +2574208 64 0 +2574715 0 0 +2574748 64 0 +2574882 0 0 +2574902 64 0 +2575057 0 0 +2575077 64 0 +2575202 0 0 +2577813 totRewards = 42 +2577813 128 16 +2578013 128 0 +2578222 0 0 +2578344 128 0 +2578817 0 0 +2578850 128 0 +2579085 0 0 +2579101 128 0 +2579222 0 0 +2579250 128 0 +2579669 0 0 +2579699 128 0 +2579835 0 0 +2579850 128 0 +2579982 0 0 +2580007 128 0 +2580144 0 0 +2580176 128 0 +2580312 0 0 +2580346 128 0 +2580479 0 0 +2580507 128 0 +2580638 0 0 +2580678 128 0 +2580786 0 0 +2580831 128 0 +2580937 0 0 +2580984 128 0 +2581062 0 0 +2584210 totRewards = 43 +2584210 64 8 +2584410 64 0 +2586367 0 0 +2586382 64 0 +2586524 0 0 +2586547 64 0 +2586680 0 0 +2586702 64 0 +2586842 0 0 +2586864 64 0 +2587008 0 0 +2587033 64 0 +2587166 0 0 +2587199 64 0 +2587321 0 0 +2587360 64 0 +2587481 0 0 +2587525 64 0 +2587617 0 0 +2591303 totRewards = 44 +2591303 128 16 +2591503 128 0 +2592645 0 0 +2592656 128 0 +2592782 0 0 +2592800 128 0 +2592917 0 0 +2592937 128 0 +2593048 0 0 +2593077 128 0 +2593187 0 0 +2593217 128 0 +2593333 0 0 +2593366 128 0 +2593490 0 0 +2593535 128 0 +2593655 0 0 +2593700 128 0 +2593815 0 0 +2593856 128 0 +2593963 0 0 +2594007 128 0 +2594115 0 0 +2594146 128 0 +2594278 0 0 +2594284 128 0 +2594410 0 0 +2594449 128 0 +2594556 0 0 +2597675 totRewards = 45 +2597675 64 8 +2597875 64 0 +2597920 0 0 +2597969 64 0 +2598419 0 0 +2598448 64 0 +2599285 0 0 +2599293 64 0 +2599432 0 0 +2599457 64 0 +2599909 0 0 +2599936 64 0 +2600074 0 0 +2600097 64 0 +2600414 0 0 +2600433 64 0 +2600563 0 0 +2600596 64 0 +2600725 0 0 +2600772 64 0 +2600890 0 0 +2600949 64 0 +2601047 0 0 +2604007 totRewards = 46 +2604007 128 16 +2604138 0 16 +2604182 128 16 +2604207 128 0 +2604334 0 0 +2604358 128 0 +2604953 0 0 +2604986 128 0 +2605376 0 0 +2605394 128 0 +2605808 0 0 +2605835 128 0 +2605967 0 0 +2605985 128 0 +2606122 0 0 +2606135 128 0 +2606272 0 0 +2606300 128 0 +2606432 0 0 +2606461 128 0 +2606601 0 0 +2606640 128 0 +2606768 0 0 +2606807 128 0 +2606919 0 0 +2606963 128 0 +2607067 0 0 +2607118 128 0 +2607213 0 0 +2607303 128 0 +2607313 0 0 +2607779 128 0 +2607848 0 0 +2607904 128 0 +2610120 0 0 +2612954 totRewards = 47 +2612954 64 8 +2613154 64 0 +2613292 0 0 +2613317 64 0 +2615429 0 0 +2615446 64 0 +2615573 0 0 +2615611 64 0 +2615733 0 0 +2615771 64 0 +2615870 0 0 +2618571 totRewards = 48 +2618571 128 16 +2618771 128 0 +2618887 0 0 +2618900 128 0 +2619108 0 0 +2619120 128 0 +2619497 0 0 +2619543 128 0 +2619918 0 0 +2619954 128 0 +2620363 0 0 +2620391 128 0 +2620510 0 0 +2620544 128 0 +2620904 0 0 +2620928 128 0 +2621061 0 0 +2621089 128 0 +2621226 0 0 +2621255 128 0 +2621369 0 0 +2621404 128 0 +2621520 0 0 +2621552 128 0 +2621699 0 0 +2621709 128 0 +2621843 0 0 +2621884 128 0 +2622000 0 0 +2622047 128 0 +2622163 0 0 +2622220 128 0 +2622346 0 0 +2623071 128 0 +2623182 0 0 +2623626 128 0 +2623700 0 0 +2627843 totRewards = 49 +2627843 64 8 +2628043 64 0 +2628136 0 0 +2628145 64 0 +2630032 0 0 +2630043 64 0 +2630502 0 0 +2630528 64 0 +2630653 0 0 +2630694 64 0 +2630813 0 0 +2630851 64 0 +2630971 0 0 +2631015 64 0 +2631098 0 0 +2633877 totRewards = 50 +2633877 128 16 +2633918 0 16 +2634001 128 16 +2634077 128 0 +2634143 0 0 +2634220 128 0 +2634328 0 0 +2634355 128 0 +2634565 0 0 +2634606 128 0 +2634696 0 0 +2634763 128 0 +2634977 0 0 +2634997 128 0 +2635124 0 0 +2635139 128 0 +2635545 0 0 +2635565 128 0 +2635685 0 0 +2635726 128 0 +2635846 0 0 +2635872 128 0 +2635998 0 0 +2636033 128 0 +2636156 0 0 +2636196 128 0 +2636321 0 0 +2636362 128 0 +2636480 0 0 +2636521 128 0 +2636627 0 0 +2636678 128 0 +2636772 0 0 +2636829 128 0 +2636924 0 0 +2637003 128 0 +2637049 0 0 +2637178 128 0 +2637463 0 0 +2637651 128 0 +2637701 0 0 +2637769 128 0 +2639197 0 0 +2639288 128 0 +2639604 0 0 +2642308 totRewards = 51 +2642308 64 8 +2642508 64 0 +2642755 0 0 +2642780 64 0 +2642990 0 0 +2643012 64 0 +2644727 0 0 +2644744 64 0 +2645038 0 0 +2645057 64 0 +2645191 0 0 +2645218 64 0 +2645347 0 0 +2645388 64 0 +2645496 0 0 +2648343 totRewards = 52 +2648343 128 16 +2648532 0 16 +2648543 0 0 +2648588 128 0 +2648779 0 0 +2648825 128 0 +2648909 0 0 +2648954 128 0 +2649155 0 0 +2649191 128 0 +2649290 0 0 +2649329 128 0 +2649720 0 0 +2649730 128 0 +2650155 0 0 +2650182 128 0 +2650297 0 0 +2650337 128 0 +2650464 0 0 +2650490 128 0 +2650621 0 0 +2650664 128 0 +2650780 0 0 +2650827 128 0 +2650935 0 0 +2650972 128 0 +2651074 0 0 +2651120 128 0 +2651217 0 0 +2651289 128 0 +2651325 0 0 +2653923 totRewards = 53 +2653923 64 8 +2654123 64 0 +2654159 0 0 +2654164 64 0 +2656886 0 0 +2656923 64 0 +2657046 0 0 +2657096 64 0 +2657201 0 0 +2659902 totRewards = 54 +2659902 128 16 +2660074 0 16 +2660102 0 0 +2660120 128 0 +2660236 0 0 +2660248 128 0 +2660836 0 0 +2660882 128 0 +2661980 0 0 +2661989 128 0 +2662272 0 0 +2662301 128 0 +2662434 0 0 +2662461 128 0 +2662597 0 0 +2662628 128 0 +2662757 0 0 +2662797 128 0 +2662914 0 0 +2662953 128 0 +2663064 0 0 +2663102 128 0 +2663664 0 0 +2663762 128 0 +2663778 0 0 +2667190 128 0 +2667285 0 0 +2667322 128 0 +2667332 0 0 +2667348 128 0 +2667390 0 0 +2667467 128 0 +2667512 0 0 +2670338 totRewards = 55 +2670338 64 8 +2670537 0 8 +2670538 0 0 +2670554 64 0 +2673064 0 0 +2673094 64 0 +2673217 0 0 +2673252 64 0 +2673377 0 0 +2673410 64 0 +2673510 0 0 +2676470 totRewards = 56 +2676470 128 16 +2676605 0 16 +2676670 0 0 +2676690 128 0 +2676845 0 0 +2676875 128 0 +2676960 0 0 +2677004 128 0 +2677208 0 0 +2677249 128 0 +2677355 0 0 +2677401 128 0 +2677772 0 0 +2677798 128 0 +2678199 0 0 +2678229 128 0 +2678354 0 0 +2678386 128 0 +2678670 0 0 +2678702 128 0 +2678823 0 0 +2678865 128 0 +2678992 0 0 +2679026 128 0 +2679155 0 0 +2679195 128 0 +2679306 0 0 +2679354 128 0 +2679454 0 0 +2679516 128 0 +2679589 0 0 +2682766 totRewards = 57 +2682766 64 8 +2682966 64 0 +2683919 0 0 +2683933 64 0 +2684207 0 0 +2684224 64 0 +2685002 0 0 +2685015 64 0 +2685143 0 0 +2685175 64 0 +2685455 0 0 +2685474 64 0 +2685599 0 0 +2685657 64 0 +2685736 0 0 +2706877 totRewards = 58 +2706877 128 16 +2707077 128 0 +2707134 0 0 +2707214 128 0 +2707252 0 0 +2707327 128 0 +2707414 0 0 +2707461 128 0 +2707533 0 0 +2707581 128 0 +2707778 0 0 +2707811 128 0 +2707913 0 0 +2707937 128 0 +2708010 0 0 +2708044 128 0 +2708408 0 0 +2708433 128 0 +2708828 0 0 +2708854 128 0 +2708979 0 0 +2709006 128 0 +2709143 0 0 +2709156 128 0 +2709287 0 0 +2709320 128 0 +2709429 0 0 +2709472 128 0 +2709587 0 0 +2709610 128 0 +2709734 0 0 +2709760 128 0 +2709883 0 0 +2709894 128 0 +2710026 0 0 +2710035 128 0 +2710770 0 0 +2710801 128 0 +2710921 0 0 +2710971 128 0 +2711087 0 0 +2711140 128 0 +2711257 0 0 +2711311 128 0 +2711402 0 0 +2711473 128 0 +2711540 0 0 +2714595 totRewards = 59 +2714595 64 8 +2714780 0 8 +2714795 0 0 +2714827 64 0 +2716113 0 0 +2716122 64 0 +2716729 0 0 +2716755 64 0 +2717031 0 0 +2717070 64 0 +2718886 0 0 +2718918 64 0 +2719050 0 0 +2719131 64 0 +2719202 0 0 +2719520 64 0 +2719777 0 0 +2719810 64 0 +2719928 0 0 +2726538 totRewards = 60 +2726538 128 16 +2726738 128 0 +2726850 0 0 +2726888 128 0 +2727361 0 0 +2727372 128 0 +2727476 0 0 +2727496 128 0 +2727604 0 0 +2727635 128 0 +2727743 0 0 +2727763 128 0 +2727882 0 0 +2727908 128 0 +2728014 0 0 +2728049 128 0 +2728154 0 0 +2728191 128 0 +2728304 0 0 +2728339 128 0 +2728457 0 0 +2728493 128 0 +2728610 0 0 +2728654 128 0 +2728777 0 0 +2728828 128 0 +2728944 0 0 +2728988 128 0 +2729096 0 0 +2729146 128 0 +2729258 0 0 +2729311 128 0 +2729409 0 0 +2729448 128 0 +2729568 0 0 +2729585 128 0 +2729718 0 0 +2729757 128 0 +2729881 0 0 +2729920 128 0 +2730029 0 0 +2730079 128 0 +2730192 0 0 +2730243 128 0 +2730360 0 0 +2730364 128 0 +2730508 0 0 +2730526 128 0 +2730654 0 0 +2730683 128 0 +2730815 0 0 +2730851 128 0 +2730979 0 0 +2731018 128 0 +2731152 0 0 +2731200 128 0 +2731309 0 0 +2731371 128 0 +2731471 0 0 +2731551 128 0 +2731656 0 0 +2731757 128 0 +2731869 0 0 +2731971 128 0 +2732012 0 0 +2732183 128 0 +2732229 0 0 +2732309 128 0 +2732386 0 0 +2732469 128 0 +2732494 0 0 +2743355 128 0 +2744545 0 0 +2744578 128 0 +2744976 0 0 +2744989 128 0 +2745109 0 0 +2745726 128 0 +2746827 0 0 +2749691 totRewards = 61 +2749691 64 8 +2749731 0 8 +2749791 64 8 +2749891 64 0 +2749948 0 0 +2749972 64 0 +2750528 0 0 +2750550 64 0 +2752440 0 0 +2752448 64 0 +2752755 0 0 +2752771 64 0 +2752917 0 0 +2752939 64 0 +2753078 0 0 +2753101 64 0 +2753229 0 0 +2753256 64 0 +2753708 0 0 +2753718 64 0 +2753861 0 0 +2753899 64 0 +2754013 0 0 +2757104 totRewards = 62 +2757104 128 16 +2757235 0 16 +2757269 128 16 +2757304 128 0 +2757425 0 0 +2757489 128 0 +2757605 0 0 +2757630 128 0 +2757845 0 0 +2757882 128 0 +2757967 0 0 +2758017 128 0 +2758254 0 0 +2758267 128 0 +2758383 0 0 +2758411 128 0 +2758658 0 0 +2758674 128 0 +2758813 0 0 +2758831 128 0 +2758957 0 0 +2758982 128 0 +2759109 0 0 +2759141 128 0 +2759271 0 0 +2759299 128 0 +2759429 0 0 +2759475 128 0 +2759586 0 0 +2759625 128 0 +2759743 0 0 +2759777 128 0 +2759889 0 0 +2759921 128 0 +2760049 0 0 +2760067 128 0 +2760196 0 0 +2760236 128 0 +2760349 0 0 +2760394 128 0 +2760512 0 0 +2760556 128 0 +2760679 0 0 +2760744 128 0 +2760875 0 0 +2760895 128 0 +2760997 0 0 +2761064 128 0 +2761159 0 0 +2761405 128 0 +2761474 0 0 +2761947 128 0 +2761993 0 0 +2762069 128 0 +2762158 0 0 +2762237 128 0 +2762270 0 0 +2762301 128 0 +2762338 0 0 +2762413 128 0 +2762515 0 0 +2762593 128 0 +2762687 0 0 +2762825 128 0 +2762875 0 0 +2762963 128 0 +2762977 0 0 +2763006 128 0 +2763029 0 0 +2763599 128 0 +2763750 0 0 +2778762 128 0 +2779299 0 0 +2779310 128 0 +2779720 0 0 +2779753 128 0 +2779862 0 0 +2779894 128 0 +2780009 0 0 +2780092 128 0 +2780158 0 0 +2780234 128 0 +2780300 0 0 +2780360 128 0 +2780460 0 0 +2780551 128 0 +2780607 0 0 +2780789 128 0 +2780817 0 0 +2780931 128 0 +2780976 0 0 +2781104 128 0 +2781138 0 0 +2781321 128 0 +2781360 0 0 +2781483 128 0 +2781518 0 0 +2781884 128 0 +2781911 0 0 +2787595 totRewards = 63 +2787595 64 8 +2787795 64 0 +2787877 0 0 +2787916 64 0 +2787951 0 0 +2787971 64 0 +2790162 0 0 +2790167 64 0 +2790645 0 0 +2790670 64 0 +2791939 0 0 +2791975 64 0 +2792085 0 0 +2792148 64 0 +2792219 0 0 +2795469 totRewards = 64 +2795469 128 16 +2795576 0 16 +2795648 128 16 +2795669 128 0 +2795788 0 0 +2795851 128 0 +2795943 0 0 +2796014 128 0 +2796366 0 0 +2796401 128 0 +2796759 0 0 +2796781 128 0 +2797183 0 0 +2797208 128 0 +2797330 0 0 +2797363 128 0 +2797490 0 0 +2797512 128 0 +2797644 0 0 +2797673 128 0 +2797809 0 0 +2797850 128 0 +2797975 0 0 +2798014 128 0 +2798126 0 0 +2798163 128 0 +2798279 0 0 +2798323 128 0 +2798435 0 0 +2798481 128 0 +2798596 0 0 +2798654 128 0 +2798757 0 0 +2798823 128 0 +2798920 0 0 +2807348 totRewards = 65 +2807348 64 8 +2807548 64 0 +2808025 0 0 +2808028 64 0 +2810196 0 0 +2810226 64 0 +2810345 0 0 +2810392 64 0 +2810497 0 0 +2810569 64 0 +2810614 0 0 +2813558 totRewards = 66 +2813558 128 16 +2813758 128 0 +2813988 0 0 +2814012 128 0 +2814112 0 0 +2814179 128 0 +2815017 0 0 +2815036 128 0 +2815165 0 0 +2815173 128 0 +2815303 0 0 +2815311 128 0 +2815449 0 0 +2815465 128 0 +2815591 0 0 +2815617 128 0 +2815755 0 0 +2815768 128 0 +2815898 0 0 +2815928 128 0 +2816053 0 0 +2816098 128 0 +2816217 0 0 +2816253 128 0 +2816375 0 0 +2816390 128 0 +2816978 0 0 +2816985 128 0 +2817129 0 0 +2817155 128 0 +2817290 0 0 +2817312 128 0 +2817449 0 0 +2817473 128 0 +2817609 0 0 +2817652 128 0 +2817764 0 0 +2817804 128 0 +2817924 0 0 +2817966 128 0 +2818098 0 0 +2818153 128 0 +2818262 0 0 +2818318 128 0 +2818429 0 0 +2818489 128 0 +2818598 0 0 +2818666 128 0 +2818768 0 0 +2818819 128 0 +2818930 0 0 +2818995 128 0 +2819118 0 0 +2819166 128 0 +2819284 0 0 +2819343 128 0 +2819453 0 0 +2819521 128 0 +2819551 0 0 +2819579 128 0 +2819597 0 0 +2830526 totRewards = 67 +2830526 64 8 +2830672 0 8 +2830726 0 0 +2830732 64 0 +2831181 0 0 +2831203 64 0 +2832711 0 0 +2832728 64 0 +2833188 0 0 +2833203 64 0 +2833355 0 0 +2833365 64 0 +2833681 0 0 +2833698 64 0 +2833843 0 0 +2834265 64 0 +2835014 0 0 +2835058 64 0 +2835167 0 0 +2835219 64 0 +2835279 0 0 +2837950 totRewards = 68 +2837950 128 16 +2838150 128 0 +2838178 0 0 +2838246 128 0 +2838261 0 0 +2838325 128 0 +2838532 0 0 +2838570 128 0 +2838778 0 0 +2838815 128 0 +2838915 0 0 +2838967 128 0 +2839344 0 0 +2839362 128 0 +2839799 0 0 +2839819 128 0 +2839944 0 0 +2839984 128 0 +2840106 0 0 +2840124 128 0 +2840264 0 0 +2840297 128 0 +2840416 0 0 +2840459 128 0 +2840584 0 0 +2840619 128 0 +2840740 0 0 +2840768 128 0 +2840903 0 0 +2840909 128 0 +2841496 0 0 +2841512 128 0 +2841651 0 0 +2841691 128 0 +2841802 0 0 +2846687 totRewards = 69 +2846687 64 8 +2846887 64 0 +2848800 0 0 +2848810 64 0 +2849435 0 0 +2849465 64 0 +2849584 0 0 +2849630 64 0 +2849756 0 0 +2849769 64 0 +2849895 0 0 +2849972 64 0 +2850025 0 0 +2853239 totRewards = 70 +2853239 128 16 +2853434 0 16 +2853439 0 0 +2853550 128 0 +2853586 0 0 +2853625 128 0 +2853850 0 0 +2853874 128 0 +2854227 0 0 +2854279 128 0 +2854655 0 0 +2854676 128 0 +2854949 0 0 +2854963 128 0 +2855101 0 0 +2855129 128 0 +2855248 0 0 +2855290 128 0 +2855421 0 0 +2855451 128 0 +2855580 0 0 +2855622 128 0 +2855736 0 0 +2855780 128 0 +2855894 0 0 +2855929 128 0 +2856064 0 0 +2856067 128 0 +2856202 0 0 +2856220 128 0 +2856358 0 0 +2856374 128 0 +2856674 0 0 +2856695 128 0 +2856817 0 0 +2856867 128 0 +2856972 0 0 +2860351 totRewards = 71 +2860351 64 8 +2860551 64 0 +2860594 0 0 +2860605 64 0 +2863128 0 0 +2863147 64 0 +2863681 0 0 +2863721 64 0 +2863856 0 0 +2863872 64 0 +2864884 0 0 +2865052 64 0 +2865726 0 0 +2865753 64 0 +2865907 0 0 +2865934 64 0 +2867130 0 0 +2867142 64 0 +2867841 0 0 +2867860 64 0 +2867996 0 0 +2873333 64 0 +2873589 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140480029758544 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +4817847 0 0 +4817864 64 0 +4818025 0 0 +4818034 64 0 +4818369 0 0 +4818377 64 0 +4818526 0 0 +4818555 64 0 +4818673 0 0 +4818736 64 0 +4818831 0 0 +4819088 64 0 +4819182 0 0 +4819213 64 0 +4819739 0 0 +4819764 64 0 +4819903 0 0 +4819950 64 0 +4820061 0 0 +4820111 64 0 +4820420 0 0 +4820429 64 0 +4820510 0 0 +4828786 totRewards = 3 +4828786 128 16 +4828986 128 0 +4829102 0 0 +4829123 128 0 +4829163 0 0 +4829191 128 0 +4829454 0 0 +4829472 128 0 +4829583 0 0 +4829600 128 0 +4829709 0 0 +4829746 128 0 +4829840 0 0 +4829888 128 0 +4829990 0 0 +4830039 128 0 +4830140 0 0 +4830186 128 0 +4830278 0 0 +4830338 128 0 +4830443 0 0 +4830498 128 0 +4830615 0 0 +4830682 128 0 +4830774 0 0 +4830907 128 0 +4830929 0 0 +4831031 128 0 +4831112 0 0 +4831194 128 0 +4831301 0 0 +4831362 128 0 +4831469 0 0 +4831536 128 0 +4831642 0 0 +4831707 128 0 +4831814 0 0 +4831907 128 0 +4831930 0 0 +4831970 128 0 +4832014 0 0 +4832102 128 0 +4832216 0 0 +4832248 128 0 +4832391 0 0 +4832422 128 0 +4833030 0 0 +4833058 128 0 +4833227 0 0 +4833249 128 0 +4833394 0 0 +4833452 128 0 +4833557 0 0 +4833703 128 0 +4833758 0 0 +4833839 128 0 +4833954 0 0 +4834046 128 0 +4834077 0 0 +4834088 128 0 +4834147 0 0 +4834291 128 0 +4834346 0 0 +4834485 128 0 +4834534 0 0 +4834622 128 0 +4834638 0 0 +4834686 128 0 +4834721 0 0 +4834793 128 0 +4834906 0 0 +4834976 128 0 +4835056 0 0 +4852460 totRewards = 4 +4852460 64 8 +4852512 0 8 +4852521 64 8 +4852660 64 0 +4852675 0 0 +4852738 64 0 +4852959 0 0 +4852998 64 0 +4853080 0 0 +4853127 64 0 +4853229 0 0 +4853243 64 0 +4853356 0 0 +4853378 64 0 +4853487 0 0 +4853492 64 0 +4853610 0 0 +4853641 64 0 +4853755 0 0 +4853781 64 0 +4853899 0 0 +4853919 64 0 +4854034 0 0 +4854057 64 0 +4854186 0 0 +4854216 64 0 +4854338 0 0 +4854359 64 0 +4854502 0 0 +4854523 64 0 +4854658 0 0 +4854696 64 0 +4854849 0 0 +4854873 64 0 +4855013 0 0 +4855063 64 0 +4855209 0 0 +4855242 64 0 +4855396 0 0 +4855426 64 0 +4855575 0 0 +4855604 64 0 +4856208 0 0 +4856240 64 0 +4856392 0 0 +4856419 64 0 +4856580 0 0 +4856610 64 0 +4856759 0 0 +4856801 64 0 +4856954 0 0 +4857005 64 0 +4857152 0 0 +4857180 64 0 +4857889 0 0 +4857932 64 0 +4858068 0 0 +4858111 64 0 +4858420 0 0 +4858438 64 0 +4858585 0 0 +4866594 totRewards = 5 +4866594 128 16 +4866662 0 16 +4866681 128 16 +4866794 128 0 +4867290 0 0 +4867314 128 0 +4867550 0 0 +4867587 128 0 +4867683 0 0 +4867725 128 0 +4867812 0 0 +4867845 128 0 +4867957 0 0 +4867982 128 0 +4868100 0 0 +4868124 128 0 +4868232 0 0 +4868271 128 0 +4868372 0 0 +4868411 128 0 +4868516 0 0 +4868554 128 0 +4868673 0 0 +4868705 128 0 +4868821 0 0 +4868874 128 0 +4868991 0 0 +4869036 128 0 +4869154 0 0 +4869203 128 0 +4869318 0 0 +4869385 128 0 +4869503 0 0 +4869568 128 0 +4869673 0 0 +4869754 128 0 +4869863 0 0 +4869946 128 0 +4870043 0 0 +4870126 128 0 +4870241 0 0 +4870282 128 0 +4871043 0 0 +4871067 128 0 +4871200 0 0 +4871242 128 0 +4871377 0 0 +4871431 128 0 +4871575 0 0 +4871609 128 0 +4871755 0 0 +4871817 128 0 +4871920 0 0 +4872003 128 0 +4872024 0 0 +4872068 128 0 +4872107 0 0 +4872194 128 0 +4872273 0 0 +4876373 totRewards = 6 +4876373 64 8 +4876573 64 0 +4876675 0 0 +4876736 64 0 +4876839 0 0 +4876874 64 0 +4876984 0 0 +4876997 64 0 +4877117 0 0 +4877126 64 0 +4877250 0 0 +4877260 64 0 +4877517 0 0 +4877545 64 0 +4877666 0 0 +4877697 64 0 +4877817 0 0 +4877847 64 0 +4877980 0 0 +4878003 64 0 +4878145 0 0 +4878177 64 0 +4878328 0 0 +4878362 64 0 +4878523 0 0 +4878577 64 0 +4878731 0 0 +4878775 64 0 +4878934 0 0 +4878967 64 0 +4879125 0 0 +4879162 64 0 +4879300 0 0 +4879318 64 0 +4880030 0 0 +4880060 64 0 +4880215 0 0 +4880260 64 0 +4880399 0 0 +4880465 64 0 +4880596 0 0 +4880664 64 0 +4880751 0 0 +4880780 64 0 +4881140 0 0 +4881161 64 0 +4881317 0 0 +4881362 64 0 +4881499 0 0 +4881559 64 0 +4881695 0 0 +4881720 64 0 +4882244 0 0 +4882270 64 0 +4882413 0 0 +4882508 64 0 +4882546 0 0 +4896386 64 0 +4896645 0 0 +4896669 64 0 +4896794 0 0 +4896812 64 0 +4896947 0 0 +4896952 64 0 +4897084 0 0 +4897108 64 0 +4897231 0 0 +4897256 64 0 +4897387 0 0 +4897407 64 0 +4897547 0 0 +4897567 64 0 +4897717 0 0 +4897729 64 0 +4897865 0 0 +4897901 64 0 +4898027 0 0 +4898077 64 0 +4898188 0 0 +4898258 64 0 +4898327 0 0 +4901581 totRewards = 7 +4901581 128 16 +4901694 0 16 +4901717 128 16 +4901772 0 16 +4901781 0 0 +4901805 128 0 +4902063 0 0 +4902089 128 0 +4902305 0 0 +4902340 128 0 +4902427 0 0 +4902479 128 0 +4902847 0 0 +4902863 128 0 +4903270 0 0 +4903289 128 0 +4903411 0 0 +4903434 128 0 +4903569 0 0 +4903584 128 0 +4903714 0 0 +4903744 128 0 +4903871 0 0 +4903917 128 0 +4904046 0 0 +4904082 128 0 +4904216 0 0 +4904258 128 0 +4904380 0 0 +4904424 128 0 +4904567 0 0 +4904609 128 0 +4904742 0 0 +4904781 128 0 +4904916 0 0 +4904961 128 0 +4905081 0 0 +4905124 128 0 +4905253 0 0 +4905287 128 0 +4905593 0 0 +4905609 128 0 +4905739 0 0 +4905792 128 0 +4905931 0 0 +4906048 128 0 +4906099 0 0 +4906215 128 0 +4906274 0 0 +4906347 128 0 +4906454 0 0 +4906533 128 0 +4906542 0 0 +4906585 128 0 +4906644 0 0 +4906773 128 0 +4906818 0 0 +4907177 128 0 +4907200 0 0 +4907941 128 0 +4907959 0 0 +4908081 128 0 +4908131 0 0 +4908213 128 0 +4908317 0 0 +4908381 128 0 +4908418 0 0 +4908446 128 0 +4908485 0 0 +4911724 totRewards = 8 +4911724 64 8 +4911924 64 0 +4911941 0 0 +4911962 64 0 +4912433 0 0 +4912458 64 0 +4912573 0 0 +4912601 64 0 +4912851 0 0 +4912869 64 0 +4912989 0 0 +4913014 64 0 +4913134 0 0 +4913160 64 0 +4913459 0 0 +4913478 64 0 +4913610 0 0 +4913641 64 0 +4913784 0 0 +4913808 64 0 +4913964 0 0 +4913989 64 0 +4914118 0 0 +4914155 64 0 +4914296 0 0 +4914326 64 0 +4914463 0 0 +4914498 64 0 +4914627 0 0 +4914667 64 0 +4914793 0 0 +4914823 64 0 +4914974 0 0 +4914985 64 0 +4915471 0 0 +4915498 64 0 +4915646 0 0 +4915671 64 0 +4916187 0 0 +4916204 64 0 +4916350 0 0 +4916378 64 0 +4916503 0 0 +4916561 64 0 +4916674 0 0 +4920485 totRewards = 9 +4920485 128 16 +4920685 128 0 +4920977 0 0 +4921018 128 0 +4921139 0 0 +4921178 128 0 +4921274 0 0 +4921292 128 0 +4921397 0 0 +4921428 128 0 +4921547 0 0 +4921562 128 0 +4921701 0 0 +4921720 128 0 +4921826 0 0 +4921858 128 0 +4921972 0 0 +4921995 128 0 +4922277 0 0 +4922310 128 0 +4922441 0 0 +4922467 128 0 +4922606 0 0 +4922629 128 0 +4922757 0 0 +4922800 128 0 +4922934 0 0 +4922979 128 0 +4923108 0 0 +4923158 128 0 +4923280 0 0 +4923331 128 0 +4923450 0 0 +4923491 128 0 +4924091 0 0 +4924123 128 0 +4924262 0 0 +4924287 128 0 +4924429 0 0 +4924468 128 0 +4924610 0 0 +4924639 128 0 +4924788 0 0 +4924827 128 0 +4924973 0 0 +4925030 128 0 +4925160 0 0 +4925221 128 0 +4925327 0 0 +4925937 128 0 +4925950 0 0 +4928799 totRewards = 10 +4928799 64 8 +4928969 0 8 +4928987 64 8 +4928999 64 0 +4929480 0 0 +4929512 64 0 +4929639 0 0 +4929655 64 0 +4929782 0 0 +4929805 64 0 +4929915 0 0 +4929932 64 0 +4930065 0 0 +4930084 64 0 +4930210 0 0 +4930220 64 0 +4930525 0 0 +4930544 64 0 +4930854 0 0 +4930878 64 0 +4931024 0 0 +4931054 64 0 +4931200 0 0 +4931231 64 0 +4931565 0 0 +4931603 64 0 +4931764 0 0 +4931795 64 0 +4931957 0 0 +4931989 64 0 +4932364 0 0 +4932410 64 0 +4932560 0 0 +4947797 64 0 +4947959 0 0 +4948025 64 0 +4948717 0 0 +4948727 64 0 +4949039 0 0 +4949046 64 0 +4949176 0 0 +4949215 64 0 +4949340 0 0 +4949386 64 0 +4949498 0 0 +4967056 totRewards = 11 +4967056 128 16 +4967231 0 16 +4967256 0 0 +4967312 128 0 +4967362 0 0 +4967376 128 0 +4967612 0 0 +4967650 128 0 +4967858 0 0 +4967882 128 0 +4967971 0 0 +4968022 128 0 +4968377 0 0 +4968394 128 0 +4968518 0 0 +4968538 128 0 +4968794 0 0 +4968807 128 0 +4968951 0 0 +4968957 128 0 +4969082 0 0 +4969104 128 0 +4969226 0 0 +4969252 128 0 +4969378 0 0 +4969407 128 0 +4969531 0 0 +4969563 128 0 +4969697 0 0 +4969720 128 0 +4969861 0 0 +4969900 128 0 +4970025 0 0 +4970067 128 0 +4970192 0 0 +4970228 128 0 +4970347 0 0 +4970388 128 0 +4970503 0 0 +4970541 128 0 +4970971 0 0 +4971005 128 0 +4971135 0 0 +4971168 128 0 +4971305 0 0 +4971337 128 0 +4971468 0 0 +4971506 128 0 +4971636 0 0 +4971677 128 0 +4971809 0 0 +4971862 128 0 +4971983 0 0 +4972038 128 0 +4972151 0 0 +4972225 128 0 +4972334 0 0 +4972421 128 0 +4972490 0 0 +4975667 totRewards = 12 +4975667 64 8 +4975815 0 8 +4975853 64 8 +4975867 64 0 +4976483 0 0 +4976489 64 0 +4976881 0 0 +4976893 64 0 +4977017 0 0 +4977029 64 0 +4977172 0 0 +4977191 64 0 +4977318 0 0 +4977342 64 0 +4977468 0 0 +4977488 64 0 +4977628 0 0 +4977644 64 0 +4977793 0 0 +4977817 64 0 +4977959 0 0 +4977990 64 0 +4978129 0 0 +4978148 64 0 +4978307 0 0 +4978314 64 0 +4978461 0 0 +4978489 64 0 +4978625 0 0 +4978665 64 0 +4978796 0 0 +4978818 64 0 +4979118 0 0 +4979125 64 0 +4979622 0 0 +4979635 64 0 +4979958 0 0 +4979985 64 0 +4980103 0 0 +4980159 64 0 +4980260 0 0 +4983502 totRewards = 13 +4983502 128 16 +4983702 128 0 +4983726 0 0 +4983779 128 0 +4983973 0 0 +4984037 128 0 +4984095 0 0 +4984118 128 0 +4984358 0 0 +4984393 128 0 +4984494 0 0 +4984560 128 0 +4984607 0 0 +4984634 128 0 +4984925 0 0 +4984932 128 0 +4985063 0 0 +4985072 128 0 +4985202 0 0 +4985216 128 0 +4985343 0 0 +4985374 128 0 +4985498 0 0 +4985536 128 0 +4985666 0 0 +4985703 128 0 +4985825 0 0 +4985871 128 0 +4985996 0 0 +4986049 128 0 +4986173 0 0 +4986216 128 0 +4986345 0 0 +4986392 128 0 +4986515 0 0 +4986564 128 0 +4986683 0 0 +4986706 128 0 +4987137 0 0 +4987165 128 0 +4987293 0 0 +4987326 128 0 +4987459 0 0 +4987529 128 0 +4987549 0 0 +4987558 128 0 +4987628 0 0 +4987690 128 0 +4987801 0 0 +4988118 128 0 +4988160 0 0 +4988272 128 0 +4988333 0 0 +4988481 128 0 +4988512 0 0 +4988658 128 0 +4988684 0 0 +4988847 128 0 +4988874 0 0 +4992017 totRewards = 14 +4992017 64 8 +4992217 64 0 +4992245 0 0 +4992258 64 0 +4993747 0 0 +4993755 64 0 +4994232 0 0 +4994243 64 0 +4994394 0 0 +4994418 64 0 +4994917 0 0 +4994937 64 0 +4995077 0 0 +4995101 64 0 +4995241 0 0 +4995266 64 0 +4995416 0 0 +4995427 64 0 +4995585 0 0 +4995600 64 0 +4995760 0 0 +4995767 64 0 +4996645 0 0 +4996677 64 0 +4996811 0 0 +4996862 64 0 +4997027 0 0 +4997159 64 0 +4997203 0 0 +4997275 64 0 +4997417 0 0 +4997432 64 0 +4997789 0 0 +4997818 64 0 +4997960 0 0 +4997999 64 0 +4998121 0 0 +4998164 64 0 +4998268 0 0 +4998346 64 0 +4998393 0 0 +5001232 totRewards = 15 +5001232 128 16 +5001398 0 16 +5001432 0 0 +5001436 128 0 +5001501 0 0 +5001510 128 0 +5001628 0 0 +5001660 128 0 +5001753 0 0 +5001791 128 0 +5002001 0 0 +5002056 128 0 +5002135 0 0 +5002203 128 0 +5002418 0 0 +5002432 128 0 +5002556 0 0 +5002576 128 0 +5002867 0 0 +5002876 128 0 +5002999 0 0 +5003032 128 0 +5003161 0 0 +5003186 128 0 +5003332 0 0 +5003353 128 0 +5003491 0 0 +5003532 128 0 +5003656 0 0 +5003703 128 0 +5003835 0 0 +5003879 128 0 +5004005 0 0 +5004053 128 0 +5004179 0 0 +5004226 128 0 +5004337 0 0 +5004383 128 0 +5004501 0 0 +5004527 128 0 +5004665 0 0 +5004722 128 0 +5004823 0 0 +5004889 128 0 +5004995 0 0 +5005073 128 0 +5005082 0 0 +5005114 128 0 +5005159 0 0 +5005242 128 0 +5005334 0 0 +5005852 128 0 +5005893 0 0 +5008890 totRewards = 16 +5008890 64 8 +5009090 64 0 +5009153 0 0 +5009177 64 0 +5009662 0 0 +5009677 64 0 +5010833 0 0 +5010840 64 0 +5011344 0 0 +5011352 64 0 +5012032 0 0 +5012067 64 0 +5012533 0 0 +5012549 64 0 +5012852 0 0 +5012878 64 0 +5013573 0 0 +5013589 64 0 +5013750 0 0 +5013779 64 0 +5013922 0 0 +5013956 64 0 +5014073 0 0 +5014143 64 0 +5014202 0 0 +5016866 totRewards = 17 +5016866 128 16 +5017035 0 16 +5017066 0 0 +5017093 128 0 +5017282 0 0 +5017317 128 0 +5017427 0 0 +5017472 128 0 +5017682 0 0 +5017714 128 0 +5017810 0 0 +5017879 128 0 +5018240 0 0 +5018268 128 0 +5018689 0 0 +5018729 128 0 +5018864 0 0 +5018897 128 0 +5019039 0 0 +5019070 128 0 +5019192 0 0 +5019238 128 0 +5019368 0 0 +5019406 128 0 +5019540 0 0 +5019606 128 0 +5019715 0 0 +5019777 128 0 +5019895 0 0 +5019949 128 0 +5020073 0 0 +5020130 128 0 +5020253 0 0 +5020329 128 0 +5020438 0 0 +5020490 128 0 +5020632 0 0 +5020694 128 0 +5020806 0 0 +5020877 128 0 +5020988 0 0 +5021053 128 0 +5021167 0 0 +5021203 128 0 +5021466 0 0 +5021522 128 0 +5021633 0 0 +5021662 128 0 +5021802 0 0 +5021856 128 0 +5021973 0 0 +5022016 128 0 +5022131 0 0 +5022266 128 0 +5022292 0 0 +5022425 128 0 +5022475 0 0 +5026113 totRewards = 18 +5026113 64 8 +5026313 64 0 +5026398 0 0 +5026415 64 0 +5027453 0 0 +5027465 64 0 +5028444 0 0 +5028457 64 0 +5028987 0 0 +5029001 64 0 +5029159 0 0 +5029175 64 0 +5029328 0 0 +5029359 64 0 +5030455 0 0 +5030519 64 0 +5030679 0 0 +5030706 64 0 +5031103 0 0 +5031124 64 0 +5031310 0 0 +5031326 64 0 +5031509 0 0 +5031532 64 0 +5031694 0 0 +5031778 64 0 +5031836 0 0 +5038203 totRewards = 19 +5038203 128 16 +5038403 128 0 +5038470 0 0 +5038492 128 0 +5038725 0 0 +5038778 128 0 +5039133 0 0 +5039171 128 0 +5039554 0 0 +5039578 128 0 +5039998 0 0 +5040014 128 0 +5040312 0 0 +5040331 128 0 +5040470 0 0 +5040494 128 0 +5040634 0 0 +5040676 128 0 +5040814 0 0 +5040839 128 0 +5040978 0 0 +5041015 128 0 +5041135 0 0 +5041154 128 0 +5041700 0 0 +5044489 totRewards = 20 +5044489 64 8 +5044677 0 8 +5044689 0 0 +5044711 64 0 +5045338 0 0 +5045366 64 0 +5047558 0 0 +5047585 64 0 +5047726 0 0 +5047750 64 0 +5047899 0 0 +5047908 64 0 +5048219 0 0 +5048237 64 0 +5049433 0 0 +5049446 64 0 +5049579 0 0 +5049625 64 0 +5049732 0 0 +5052543 totRewards = 21 +5052543 128 16 +5052718 0 16 +5052743 0 0 +5052789 128 0 +5052845 0 0 +5052848 128 0 +5052963 0 0 +5053000 128 0 +5053094 0 0 +5053143 128 0 +5053351 0 0 +5053393 128 0 +5053493 0 0 +5053552 128 0 +5053940 0 0 +5053959 128 0 +5054377 0 0 +5054396 128 0 +5054523 0 0 +5054549 128 0 +5054844 0 0 +5054879 128 0 +5055005 0 0 +5055045 128 0 +5055179 0 0 +5055212 128 0 +5055345 0 0 +5055389 128 0 +5055517 0 0 +5055559 128 0 +5055688 0 0 +5055726 128 0 +5055862 0 0 +5055891 128 0 +5056013 0 0 +5056070 128 0 +5056176 0 0 +5056230 128 0 +5056347 0 0 +5056398 128 0 +5056519 0 0 +5056566 128 0 +5056682 0 0 +5056732 128 0 +5056850 0 0 +5056891 128 0 +5057020 0 0 +5057083 128 0 +5057197 0 0 +5057235 128 0 +5057366 0 0 +5057420 128 0 +5057542 0 0 +5057592 128 0 +5057703 0 0 +5057777 128 0 +5057897 0 0 +5057960 128 0 +5058056 0 0 +5061089 totRewards = 22 +5061089 64 8 +5061289 64 0 +5061291 0 0 +5061310 64 0 +5063485 0 0 +5063497 64 0 +5063662 0 0 +5063674 64 0 +5063833 0 0 +5063863 64 0 +5064177 0 0 +5064211 64 0 +5064526 0 0 +5064541 64 0 +5064699 0 0 +5064716 64 0 +5064881 0 0 +5064886 64 0 +5065771 0 0 +5065783 64 0 +5066106 0 0 +5066257 64 0 +5066781 0 0 +5066830 64 0 +5066981 0 0 +5067021 64 0 +5067175 0 0 +5067248 64 0 +5067378 0 0 +5067422 64 0 +5067576 0 0 +5075163 64 0 +5075208 0 0 +5075224 64 0 +5075249 0 0 +5075287 64 0 +5075300 0 0 +5078142 totRewards = 23 +5078142 128 16 +5078258 0 16 +5078302 128 16 +5078342 128 0 +5078345 0 0 +5078381 128 0 +5078596 0 0 +5078633 128 0 +5078843 0 0 +5078862 128 0 +5078967 0 0 +5079003 128 0 +5079951 0 0 +5079980 128 0 +5080260 0 0 +5080281 128 0 +5080419 0 0 +5080466 128 0 +5080587 0 0 +5080629 128 0 +5080761 0 0 +5080802 128 0 +5080927 0 0 +5080975 128 0 +5081092 0 0 +5081138 128 0 +5081251 0 0 +5081293 128 0 +5081556 0 0 +5081592 128 0 +5081697 0 0 +5084357 totRewards = 24 +5084357 64 8 +5084557 64 0 +5084562 0 0 +5084582 64 0 +5087017 0 0 +5087036 64 0 +5087177 0 0 +5087210 64 0 +5087523 0 0 +5087542 64 0 +5087686 0 0 +5087733 64 0 +5087837 0 0 +5087891 64 0 +5088028 0 0 +5088033 64 0 +5088359 0 0 +5088374 64 0 +5088517 0 0 +5092862 totRewards = 25 +5092862 128 16 +5093062 128 0 +5093079 0 0 +5093150 128 0 +5093188 0 0 +5093209 128 0 +5093448 0 0 +5093563 128 0 +5093631 0 0 +5093710 128 0 +5094748 0 0 +5094768 128 0 +5095218 0 0 +5095240 128 0 +5095376 0 0 +5095406 128 0 +5095538 0 0 +5095559 128 0 +5096438 0 0 +5096445 128 0 +5096601 0 0 +5096613 128 0 +5096755 0 0 +5096784 128 0 +5096917 0 0 +5096946 128 0 +5097086 0 0 +5097105 128 0 +5097276 0 0 +5097303 128 0 +5097450 0 0 +5097470 128 0 +5097604 0 0 +5097645 128 0 +5097759 0 0 +5100630 totRewards = 26 +5100630 64 8 +5100819 0 8 +5100829 64 8 +5100830 64 0 +5101055 0 0 +5101068 64 0 +5102287 0 0 +5102294 64 0 +5102437 0 0 +5102446 64 0 +5103424 0 0 +5103442 64 0 +5103578 0 0 +5103612 64 0 +5104060 0 0 +5104071 64 0 +5104375 0 0 +5104400 64 0 +5104529 0 0 +5107046 totRewards = 27 +5107046 128 16 +5107209 0 16 +5107246 0 0 +5107267 128 0 +5107307 0 0 +5107356 128 0 +5107447 0 0 +5107485 128 0 +5107580 0 0 +5107618 128 0 +5107822 0 0 +5107879 128 0 +5107961 0 0 +5108034 128 0 +5108402 0 0 +5108428 128 0 +5108724 0 0 +5108744 128 0 +5108870 0 0 +5108924 128 0 +5109045 0 0 +5109082 128 0 +5109212 0 0 +5109254 128 0 +5109371 0 0 +5109428 128 0 +5109550 0 0 +5109597 128 0 +5109718 0 0 +5109763 128 0 +5109886 0 0 +5109902 128 0 +5110195 0 0 +5110215 128 0 +5110342 0 0 +5110385 128 0 +5110502 0 0 +5110551 128 0 +5110663 0 0 +5110720 128 0 +5110838 0 0 +5110894 128 0 +5111005 0 0 +5111053 128 0 +5111181 0 0 +5111219 128 0 +5111331 0 0 +5111461 128 0 +5111535 0 0 +5111594 128 0 +5111712 0 0 +5111834 128 0 +5111882 0 0 +5111971 128 0 +5112063 0 0 +5114930 totRewards = 28 +5114930 64 8 +5115130 64 0 +5115342 0 0 +5115353 64 0 +5115466 0 0 +5115479 64 0 +5117913 0 0 +5117950 64 0 +5118083 0 0 +5118109 64 0 +5118242 0 0 +5118279 64 0 +5118377 0 0 +5121063 totRewards = 29 +5121063 128 16 +5121263 128 0 +5121284 0 0 +5121321 128 0 +5121531 0 0 +5121579 128 0 +5121675 0 0 +5121685 128 0 +5121914 0 0 +5121958 128 0 +5122058 0 0 +5122093 128 0 +5122352 0 0 +5122359 128 0 +5122485 0 0 +5122515 128 0 +5122943 0 0 +5122971 128 0 +5123104 0 0 +5123135 128 0 +5123279 0 0 +5123289 128 0 +5123418 0 0 +5123458 128 0 +5123589 0 0 +5123625 128 0 +5123756 0 0 +5123809 128 0 +5123944 0 0 +5123994 128 0 +5124120 0 0 +5124169 128 0 +5124287 0 0 +5124333 128 0 +5124454 0 0 +5124473 128 0 +5124906 0 0 +5124936 128 0 +5125070 0 0 +5125110 128 0 +5125219 0 0 +5125272 128 0 +5125381 0 0 +5125430 128 0 +5125545 0 0 +5125607 128 0 +5125722 0 0 +5125814 128 0 +5125902 0 0 +5125984 128 0 +5126082 0 0 +5126164 128 0 +5126250 0 0 +5129004 totRewards = 30 +5129004 64 8 +5129204 64 0 +5131367 0 0 +5131377 64 0 +5132020 0 0 +5132050 64 0 +5132186 0 0 +5132216 64 0 +5132347 0 0 +5132387 64 0 +5132504 0 0 +5132561 64 0 +5132652 0 0 +5135335 totRewards = 31 +5135335 128 16 +5135508 0 16 +5135535 0 0 +5135640 128 0 +5135732 0 0 +5135766 128 0 +5136102 0 0 +5136154 128 0 +5136237 0 0 +5136284 128 0 +5136673 0 0 +5136703 128 0 +5137126 0 0 +5137148 128 0 +5137285 0 0 +5137306 128 0 +5137450 0 0 +5137477 128 0 +5137616 0 0 +5137659 128 0 +5137783 0 0 +5137826 128 0 +5137962 0 0 +5138000 128 0 +5138129 0 0 +5138174 128 0 +5138299 0 0 +5138346 128 0 +5138457 0 0 +5138505 128 0 +5138606 0 0 +5138667 128 0 +5138769 0 0 +5138833 128 0 +5138882 0 0 +5139462 128 0 +5141905 0 0 +5144726 totRewards = 32 +5144726 64 8 +5144926 64 0 +5147101 0 0 +5147127 64 0 +5147279 0 0 +5147299 64 0 +5147604 0 0 +5147640 64 0 +5147763 0 0 +5147786 64 0 +5147925 0 0 +5147955 64 0 +5148080 0 0 +5148143 64 0 +5148214 0 0 +5151111 totRewards = 33 +5151111 128 16 +5151273 0 16 +5151311 0 0 +5151344 128 0 +5151670 0 0 +5151688 128 0 +5151935 0 0 +5151952 128 0 +5152056 0 0 +5152097 128 0 +5152484 0 0 +5152511 128 0 +5152814 0 0 +5152826 128 0 +5152960 0 0 +5153007 128 0 +5153127 0 0 +5153165 128 0 +5153285 0 0 +5153323 128 0 +5153452 0 0 +5153497 128 0 +5153620 0 0 +5153669 128 0 +5153794 0 0 +5153846 128 0 +5153967 0 0 +5154020 128 0 +5154141 0 0 +5154187 128 0 +5154313 0 0 +5154360 128 0 +5154489 0 0 +5154527 128 0 +5154652 0 0 +5154702 128 0 +5154833 0 0 +5154877 128 0 +5155016 0 0 +5155056 128 0 +5155182 0 0 +5155246 128 0 +5155368 0 0 +5155426 128 0 +5155536 0 0 +5155601 128 0 +5155688 0 0 +5158474 totRewards = 34 +5158474 64 8 +5158674 64 0 +5158727 0 0 +5158761 64 0 +5159911 0 0 +5159923 64 0 +5160893 0 0 +5160903 64 0 +5161066 0 0 +5161084 64 0 +5161421 0 0 +5161439 64 0 +5161596 0 0 +5161615 64 0 +5161765 0 0 +5161788 64 0 +5162603 0 0 +5162626 64 0 +5162768 0 0 +5166994 totRewards = 35 +5166994 128 16 +5167136 0 16 +5167194 0 0 +5167204 128 0 +5167391 0 0 +5167411 128 0 +5167529 0 0 +5167569 128 0 +5167669 0 0 +5167684 128 0 +5167770 0 0 +5167808 128 0 +5167905 0 0 +5167957 128 0 +5168206 0 0 +5168217 128 0 +5168342 0 0 +5168369 128 0 +5168809 0 0 +5168840 128 0 +5168968 0 0 +5169002 128 0 +5169134 0 0 +5169159 128 0 +5169295 0 0 +5169332 128 0 +5169458 0 0 +5169504 128 0 +5169624 0 0 +5169671 128 0 +5169796 0 0 +5169842 128 0 +5169962 0 0 +5170008 128 0 +5170127 0 0 +5170167 128 0 +5170295 0 0 +5170342 128 0 +5170465 0 0 +5170518 128 0 +5170617 0 0 +5170685 128 0 +5170792 0 0 +5170855 128 0 +5170967 0 0 +5171038 128 0 +5171144 0 0 +5171212 128 0 +5171289 0 0 +5173934 totRewards = 36 +5173934 64 8 +5174105 0 8 +5174130 64 8 +5174134 64 0 +5175323 0 0 +5175328 64 0 +5176145 0 0 +5176158 64 0 +5176303 0 0 +5176327 64 0 +5176657 0 0 +5176671 64 0 +5176823 0 0 +5176849 64 0 +5176986 0 0 +5177024 64 0 +5177150 0 0 +5177186 64 0 +5177317 0 0 +5177351 64 0 +5177460 0 0 +5180085 totRewards = 37 +5180085 128 16 +5180281 0 16 +5180285 0 0 +5180336 128 0 +5180527 0 0 +5180575 128 0 +5180662 0 0 +5180700 128 0 +5180918 0 0 +5180954 128 0 +5181053 0 0 +5181106 128 0 +5181492 0 0 +5181532 128 0 +5181796 0 0 +5181808 128 0 +5181944 0 0 +5181984 128 0 +5182104 0 0 +5182141 128 0 +5182279 0 0 +5182301 128 0 +5182427 0 0 +5182469 128 0 +5182594 0 0 +5182641 128 0 +5182770 0 0 +5182816 128 0 +5182934 0 0 +5182984 128 0 +5183104 0 0 +5183144 128 0 +5183270 0 0 +5183318 128 0 +5183450 0 0 +5183501 128 0 +5183601 0 0 +5183652 128 0 +5183762 0 0 +5183813 128 0 +5183927 0 0 +5183980 128 0 +5184082 0 0 +5184162 128 0 +5184268 0 0 +5184311 128 0 +5184425 0 0 +5184559 128 0 +5184626 0 0 +5185072 128 0 +5185147 0 0 +5185231 128 0 +5185272 0 0 +5185296 128 0 +5185303 0 0 +5188151 totRewards = 38 +5188151 64 8 +5188332 0 8 +5188350 64 8 +5188351 64 0 +5190520 0 0 +5190537 64 0 +5190865 0 0 +5190895 64 0 +5191213 0 0 +5191231 64 0 +5191381 0 0 +5191404 64 0 +5191556 0 0 +5191573 64 0 +5192075 0 0 +5192099 64 0 +5192965 0 0 +5192984 64 0 +5193154 0 0 +5193167 64 0 +5193500 0 0 +5193536 64 0 +5193666 0 0 +5193714 64 0 +5193793 0 0 +5196578 totRewards = 39 +5196578 128 16 +5196719 0 16 +5196778 0 0 +5196807 128 0 +5197286 0 0 +5197323 128 0 +5197431 0 0 +5197464 128 0 +5197547 0 0 +5197563 128 0 +5197996 0 0 +5198009 128 0 +5198294 0 0 +5198319 128 0 +5198449 0 0 +5198485 128 0 +5198614 0 0 +5198641 128 0 +5198769 0 0 +5198799 128 0 +5198933 0 0 +5198975 128 0 +5199094 0 0 +5199148 128 0 +5199275 0 0 +5199329 128 0 +5199449 0 0 +5199518 128 0 +5199607 0 0 +5199690 128 0 +5199748 0 0 +5203235 totRewards = 40 +5203235 64 8 +5203415 0 8 +5203435 0 0 +5203438 64 0 +5205107 0 0 +5205131 64 0 +5205618 0 0 +5205640 64 0 +5205789 0 0 +5205810 64 0 +5205961 0 0 +5205986 64 0 +5206121 0 0 +5206161 64 0 +5206276 0 0 +5206327 64 0 +5206421 0 0 +5209042 totRewards = 41 +5209042 128 16 +5209223 0 16 +5209242 0 0 +5209294 128 0 +5209472 0 0 +5209519 128 0 +5209608 0 0 +5209656 128 0 +5209867 0 0 +5209908 128 0 +5210005 0 0 +5210057 128 0 +5210438 0 0 +5210467 128 0 +5210751 0 0 +5210780 128 0 +5210900 0 0 +5210941 128 0 +5211065 0 0 +5211087 128 0 +5211230 0 0 +5211258 128 0 +5211393 0 0 +5211444 128 0 +5211563 0 0 +5211607 128 0 +5211729 0 0 +5211770 128 0 +5211893 0 0 +5211940 128 0 +5212057 0 0 +5212095 128 0 +5212221 0 0 +5212270 128 0 +5212388 0 0 +5212429 128 0 +5212552 0 0 +5212601 128 0 +5212747 0 0 +5212781 128 0 +5212909 0 0 +5212955 128 0 +5213071 0 0 +5213126 128 0 +5213223 0 0 +5213294 128 0 +5213369 0 0 +5216038 totRewards = 42 +5216038 64 8 +5216238 64 0 +5216247 0 0 +5216259 64 0 +5218419 0 0 +5218428 64 0 +5218758 0 0 +5218770 64 0 +5218912 0 0 +5218942 64 0 +5219076 0 0 +5219101 64 0 +5219245 0 0 +5219268 64 0 +5219408 0 0 +5219438 64 0 +5220449 0 0 +5220460 64 0 +5220626 0 0 +5220655 64 0 +5221023 0 0 +5221083 64 0 +5221441 0 0 +5221475 64 0 +5221949 0 0 +5221963 64 0 +5222108 0 0 +5222154 64 0 +5222271 0 0 +5222314 64 0 +5222434 0 0 +5226833 totRewards = 43 +5226833 128 16 +5227029 0 16 +5227033 0 0 +5227068 128 0 +5227277 0 0 +5227314 128 0 +5227672 0 0 +5227701 128 0 +5227812 0 0 +5227856 128 0 +5228250 0 0 +5228269 128 0 +5228687 0 0 +5228717 128 0 +5228853 0 0 +5228883 128 0 +5229023 0 0 +5229047 128 0 +5229184 0 0 +5229217 128 0 +5229351 0 0 +5229391 128 0 +5229519 0 0 +5229560 128 0 +5229679 0 0 +5229726 128 0 +5229826 0 0 +5229892 128 0 +5229979 0 0 +5230197 128 0 +5230771 0 0 +5233366 totRewards = 44 +5233366 64 8 +5233551 0 8 +5233566 0 0 +5233570 64 0 +5236348 0 0 +5236382 64 0 +5236501 0 0 +5236547 64 0 +5236653 0 0 +5239276 totRewards = 45 +5239276 128 16 +5239441 0 16 +5239476 0 0 +5239495 128 0 +5239684 0 0 +5239726 128 0 +5239830 0 0 +5239895 128 0 +5240273 0 0 +5240306 128 0 +5240717 0 0 +5240725 128 0 +5240855 0 0 +5240863 128 0 +5241154 0 0 +5241165 128 0 +5241305 0 0 +5241323 128 0 +5241455 0 0 +5241482 128 0 +5241616 0 0 +5241658 128 0 +5241782 0 0 +5241833 128 0 +5241966 0 0 +5242016 128 0 +5242143 0 0 +5242194 128 0 +5242316 0 0 +5242370 128 0 +5242490 0 0 +5242535 128 0 +5242649 0 0 +5242709 128 0 +5242811 0 0 +5242872 128 0 +5242964 0 0 +5243013 128 0 +5243124 0 0 +5243177 128 0 +5243289 0 0 +5243345 128 0 +5243466 0 0 +5243531 128 0 +5243632 0 0 +5243708 128 0 +5243816 0 0 +5243886 128 0 +5243967 0 0 +5247055 totRewards = 46 +5247055 64 8 +5247095 0 8 +5247106 64 8 +5247255 64 0 +5247283 0 0 +5247299 64 0 +5247905 0 0 +5247914 64 0 +5249400 0 0 +5249416 64 0 +5249745 0 0 +5249755 64 0 +5249905 0 0 +5249925 64 0 +5250068 0 0 +5250096 64 0 +5250554 0 0 +5250578 64 0 +5250890 0 0 +5250911 64 0 +5251051 0 0 +5251086 64 0 +5251207 0 0 +5251264 64 0 +5251360 0 0 +5253848 totRewards = 47 +5253848 128 16 +5254029 0 16 +5254048 0 0 +5254082 128 0 +5254276 0 0 +5254321 128 0 +5254415 0 0 +5254473 128 0 +5254688 0 0 +5254718 128 0 +5254821 0 0 +5254886 128 0 +5255267 0 0 +5255294 128 0 +5255721 0 0 +5255756 128 0 +5255882 0 0 +5255919 128 0 +5256059 0 0 +5256087 128 0 +5256223 0 0 +5256256 128 0 +5256381 0 0 +5256422 128 0 +5256552 0 0 +5256592 128 0 +5256711 0 0 +5256753 128 0 +5256878 0 0 +5256917 128 0 +5257042 0 0 +5257080 128 0 +5257207 0 0 +5257262 128 0 +5257366 0 0 +5257424 128 0 +5257525 0 0 +5257585 128 0 +5257691 0 0 +5257749 128 0 +5257859 0 0 +5257942 128 0 +5258054 0 0 +5258082 128 0 +5258211 0 0 +5258290 128 0 +5258369 0 0 +5258430 128 0 +5258531 0 0 +5258621 128 0 +5258643 0 0 +5258681 128 0 +5258722 0 0 +5258805 128 0 +5258896 0 0 +5258967 128 0 +5259053 0 0 +5261742 totRewards = 48 +5261742 64 8 +5261942 64 0 +5264296 0 0 +5264315 64 0 +5264997 0 0 +5265015 64 0 +5265320 0 0 +5265342 64 0 +5265648 0 0 +5265663 64 0 +5267205 0 0 +5267225 64 0 +5267360 0 0 +5267409 64 0 +5267507 0 0 +5270186 totRewards = 49 +5270186 128 16 +5270358 0 16 +5270386 0 0 +5270420 128 0 +5270639 0 0 +5270646 128 0 +5270761 0 0 +5270798 128 0 +5271031 0 0 +5271040 128 0 +5271155 0 0 +5271208 128 0 +5271579 0 0 +5271605 128 0 +5272037 0 0 +5272061 128 0 +5272198 0 0 +5272217 128 0 +5272359 0 0 +5272388 128 0 +5272532 0 0 +5272559 128 0 +5272697 0 0 +5272729 128 0 +5272858 0 0 +5272894 128 0 +5273019 0 0 +5273052 128 0 +5273179 0 0 +5273220 128 0 +5273350 0 0 +5273392 128 0 +5273511 0 0 +5273571 128 0 +5273666 0 0 +5273739 128 0 +5273835 0 0 +5273900 128 0 +5273928 0 0 +5273957 128 0 +5273973 0 0 +5274089 128 0 +5274170 0 0 +5274801 128 0 +5274825 0 0 +5277683 totRewards = 50 +5277683 64 8 +5277883 64 0 +5277903 0 0 +5277906 64 0 +5278381 0 0 +5278392 64 0 +5279198 0 0 +5279207 64 0 +5280021 0 0 +5280054 64 0 +5280388 0 0 +5280417 64 0 +5280565 0 0 +5280604 64 0 +5280742 0 0 +5280757 64 0 +5280917 0 0 +5280927 64 0 +5281087 0 0 +5281096 64 0 +5281246 0 0 +5281271 64 0 +5281422 0 0 +5281430 64 0 +5281916 0 0 +5281955 64 0 +5282063 0 0 +5284584 totRewards = 51 +5284583 128 16 +5284755 0 16 +5284783 0 0 +5284811 128 0 +5284992 0 0 +5285039 128 0 +5285134 0 0 +5285177 128 0 +5285398 0 0 +5285437 128 0 +5285537 0 0 +5285606 128 0 +5285978 0 0 +5286006 128 0 +5286276 0 0 +5286287 128 0 +5286413 0 0 +5286444 128 0 +5286572 0 0 +5286599 128 0 +5286738 0 0 +5286755 128 0 +5286904 0 0 +5286937 128 0 +5287064 0 0 +5287106 128 0 +5287229 0 0 +5287265 128 0 +5287391 0 0 +5287433 128 0 +5287544 0 0 +5287588 128 0 +5287709 0 0 +5287726 128 0 +5287868 0 0 +5287929 128 0 +5288015 0 0 +5290701 totRewards = 52 +5290701 64 8 +5290886 0 8 +5290898 64 8 +5290901 64 0 +5291551 0 0 +5291558 64 0 +5292463 0 0 +5292481 64 0 +5292627 0 0 +5292650 64 0 +5292960 0 0 +5292981 64 0 +5293117 0 0 +5293150 64 0 +5293276 0 0 +5293318 64 0 +5293442 0 0 +5293484 64 0 +5293587 0 0 +5296114 totRewards = 53 +5296114 128 16 +5296276 0 16 +5296314 0 0 +5296336 128 0 +5296507 0 0 +5296515 128 0 +5296673 0 0 +5296710 128 0 +5296948 0 0 +5296964 128 0 +5297059 0 0 +5297113 128 0 +5297498 0 0 +5297528 128 0 +5297810 0 0 +5297822 128 0 +5297954 0 0 +5297985 128 0 +5298116 0 0 +5298140 128 0 +5298278 0 0 +5298300 128 0 +5298435 0 0 +5298474 128 0 +5298606 0 0 +5298639 128 0 +5298778 0 0 +5298824 128 0 +5298944 0 0 +5298994 128 0 +5299098 0 0 +5299160 128 0 +5299257 0 0 +5299340 128 0 +5299402 0 0 +5302379 totRewards = 54 +5302379 64 8 +5302574 0 8 +5302579 0 0 +5302599 64 0 +5303763 0 0 +5303775 64 0 +5304720 0 0 +5304732 64 0 +5304878 0 0 +5304909 64 0 +5305067 0 0 +5305086 64 0 +5305224 0 0 +5305281 64 0 +5305378 0 0 +5305447 64 0 +5305554 0 0 +5306037 64 0 +5306058 0 0 +5306098 64 0 +5306224 0 0 +5306269 64 0 +5306388 0 0 +5309592 totRewards = 55 +5309592 128 16 +5309619 0 16 +5309658 128 16 +5309792 128 0 +5309830 0 0 +5309860 128 0 +5310483 0 0 +5310511 128 0 +5310769 0 0 +5310776 128 0 +5310902 0 0 +5310928 128 0 +5311041 0 0 +5311068 128 0 +5311200 0 0 +5311215 128 0 +5311365 0 0 +5311383 128 0 +5311511 0 0 +5311559 128 0 +5311681 0 0 +5311714 128 0 +5311848 0 0 +5311888 128 0 +5312016 0 0 +5312064 128 0 +5312184 0 0 +5312228 128 0 +5312346 0 0 +5312394 128 0 +5312499 0 0 +5312555 128 0 +5312645 0 0 +5312723 128 0 +5312810 0 0 +5313047 128 0 +5313173 0 0 +5313288 128 0 +5314099 0 0 +5318179 totRewards = 56 +5318179 64 8 +5318377 0 8 +5318379 0 0 +5318406 64 0 +5319133 0 0 +5319139 64 0 +5320503 0 0 +5320519 64 0 +5320656 0 0 +5320693 64 0 +5320811 0 0 +5320850 64 0 +5320959 0 0 +5322418 64 0 +5322432 0 0 +5324991 totRewards = 57 +5324991 128 16 +5325151 0 16 +5325191 0 0 +5325200 128 0 +5325398 0 0 +5325415 128 0 +5325523 0 0 +5325584 128 0 +5325776 0 0 +5325811 128 0 +5325912 0 0 +5325966 128 0 +5326338 0 0 +5326368 128 0 +5327322 0 0 +5327332 128 0 +5327480 0 0 +5327498 128 0 +5327632 0 0 +5327656 128 0 +5327786 0 0 +5327811 128 0 +5327945 0 0 +5327975 128 0 +5328110 0 0 +5328143 128 0 +5328257 0 0 +5328293 128 0 +5328427 0 0 +5328463 128 0 +5328588 0 0 +5328634 128 0 +5328755 0 0 +5328805 128 0 +5328918 0 0 +5328976 128 0 +5329078 0 0 +5329142 128 0 +5329246 0 0 +5329289 128 0 +5329399 0 0 +5332415 totRewards = 58 +5332415 64 8 +5332615 64 0 +5332650 0 0 +5332712 64 0 +5334670 0 0 +5334690 64 0 +5334833 0 0 +5334854 64 0 +5334987 0 0 +5335009 64 0 +5335150 0 0 +5335174 64 0 +5335309 0 0 +5335347 64 0 +5335474 0 0 +5335509 64 0 +5335638 0 0 +5335665 64 0 +5335812 0 0 +5335825 64 0 +5335977 0 0 +5335989 64 0 +5336132 0 0 +5336173 64 0 +5336471 0 0 +5336482 64 0 +5336637 0 0 +5336655 64 0 +5336787 0 0 +5336837 64 0 +5336953 0 0 +5337017 64 0 +5337057 0 0 +5340738 totRewards = 59 +5340738 128 16 +5340938 128 0 +5340949 0 0 +5340986 128 0 +5341337 0 0 +5341353 128 0 +5341754 0 0 +5341807 128 0 +5342184 0 0 +5342202 128 0 +5342624 0 0 +5342638 128 0 +5342771 0 0 +5342796 128 0 +5342931 0 0 +5342953 128 0 +5343088 0 0 +5343118 128 0 +5343246 0 0 +5343281 128 0 +5343408 0 0 +5343455 128 0 +5343575 0 0 +5343622 128 0 +5343735 0 0 +5343781 128 0 +5343895 0 0 +5343926 128 0 +5344050 0 0 +5344088 128 0 +5344204 0 0 +5344259 128 0 +5344368 0 0 +5344422 128 0 +5344528 0 0 +5344586 128 0 +5344693 0 0 +5344746 128 0 +5344845 0 0 +5344903 128 0 +5345007 0 0 +5345065 128 0 +5345170 0 0 +5345260 128 0 +5345346 0 0 +5345389 128 0 +5345506 0 0 +5345566 128 0 +5345688 0 0 +5345752 128 0 +5345862 0 0 +5345936 128 0 +5346010 0 0 +5348749 totRewards = 60 +5348749 64 8 +5348932 0 8 +5348949 0 0 +5348955 64 0 +5349575 0 0 +5349586 64 0 +5351427 0 0 +5351438 64 0 +5351570 0 0 +5351611 64 0 +5351720 0 0 +5351773 64 0 +5351873 0 0 +5351958 64 0 +5351995 0 0 +5354755 totRewards = 61 +5354755 128 16 +5354947 0 16 +5354955 0 0 +5354987 128 0 +5355182 0 0 +5355204 128 0 +5355316 0 0 +5355360 128 0 +5355573 0 0 +5355592 128 0 +5355706 0 0 +5355759 128 0 +5355994 0 0 +5356004 128 0 +5356124 0 0 +5356157 128 0 +5356593 0 0 +5356616 128 0 +5356753 0 0 +5356784 128 0 +5356918 0 0 +5356941 128 0 +5357071 0 0 +5357100 128 0 +5357234 0 0 +5357272 128 0 +5357405 0 0 +5357437 128 0 +5357556 0 0 +5357598 128 0 +5357716 0 0 +5357750 128 0 +5357878 0 0 +5357912 128 0 +5358031 0 0 +5358080 128 0 +5358197 0 0 +5358243 128 0 +5358353 0 0 +5358414 128 0 +5358505 0 0 +5358573 128 0 +5358691 0 0 +5358728 128 0 +5358841 0 0 +5358912 128 0 +5359000 0 0 +5359081 128 0 +5359189 0 0 +5359263 128 0 +5359342 0 0 +5362057 totRewards = 62 +5362057 64 8 +5362240 0 8 +5362255 64 8 +5362256 64 0 +5364529 0 0 +5364535 64 0 +5364841 0 0 +5364872 64 0 +5364998 0 0 +5365030 64 0 +5365160 0 0 +5365197 64 0 +5365325 0 0 +5365363 64 0 +5365479 0 0 +5365550 64 0 +5365625 0 0 +5368308 totRewards = 63 +5368308 128 16 +5368490 0 16 +5368508 0 0 +5368570 128 0 +5368749 0 0 +5368798 128 0 +5368891 0 0 +5368932 128 0 +5369147 0 0 +5369186 128 0 +5369281 0 0 +5369350 128 0 +5369568 0 0 +5369577 128 0 +5369706 0 0 +5369736 128 0 +5370019 0 0 +5370040 128 0 +5370166 0 0 +5370207 128 0 +5370331 0 0 +5370362 128 0 +5370480 0 0 +5370515 128 0 +5370642 0 0 +5370685 128 0 +5370801 0 0 +5370854 128 0 +5370975 0 0 +5371021 128 0 +5371135 0 0 +5371176 128 0 +5371298 0 0 +5371341 128 0 +5371461 0 0 +5371506 128 0 +5371623 0 0 +5371672 128 0 +5371804 0 0 +5371845 128 0 +5371968 0 0 +5372016 128 0 +5372139 0 0 +5372193 128 0 +5372294 0 0 +5372364 128 0 +5372433 0 0 +5375091 totRewards = 64 +5375091 64 8 +5375276 0 8 +5375291 0 0 +5375298 64 0 +5376063 0 0 +5376071 64 0 +5377109 0 0 +5377131 64 0 +5377278 0 0 +5377297 64 0 +5377596 0 0 +5377616 64 0 +5377776 0 0 +5377783 64 0 +5377931 0 0 +5377956 64 0 +5378099 0 0 +5378128 64 0 +5378265 0 0 +5378286 64 0 +5378423 0 0 +5378457 64 0 +5378590 0 0 +5378620 64 0 +5378759 0 0 +5378777 64 0 +5378915 0 0 +5378949 64 0 +5379087 0 0 +5379108 64 0 +5379237 0 0 +5379291 64 0 +5379402 0 0 +5381937 totRewards = 65 +5381937 128 16 +5382101 0 16 +5382137 0 0 +5382157 128 0 +5382344 0 0 +5382383 128 0 +5382489 0 0 +5382551 128 0 +5382890 0 0 +5382957 128 0 +5383047 0 0 +5383059 128 0 +5383692 0 0 +5383711 128 0 +5383842 0 0 +5383868 128 0 +5384010 0 0 +5384025 128 0 +5384166 0 0 +5384194 128 0 +5384329 0 0 +5384367 128 0 +5384495 0 0 +5384532 128 0 +5384659 0 0 +5384698 128 0 +5384814 0 0 +5384873 128 0 +5384972 0 0 +5385039 128 0 +5385156 0 0 +5385830 128 0 +5385930 0 0 +5385971 128 0 +5386091 0 0 +5386139 128 0 +5386269 0 0 +5386303 128 0 +5386430 0 0 +5386492 128 0 +5386634 0 0 +5386673 128 0 +5386800 0 0 +5386861 128 0 +5386988 0 0 +5387051 128 0 +5387172 0 0 +5387215 128 0 +5387328 0 0 +5387378 128 0 +5387504 0 0 +5387542 128 0 +5387661 0 0 +5387707 128 0 +5387832 0 0 +5387887 128 0 +5387992 0 0 +5388068 128 0 +5388145 0 0 +5391087 totRewards = 66 +5391087 64 8 +5391276 0 8 +5391287 0 0 +5391300 64 0 +5393721 0 0 +5393739 64 0 +5393886 0 0 +5393911 64 0 +5394039 0 0 +5394086 64 0 +5394193 0 0 +5394251 64 0 +5394352 0 0 +5394421 64 0 +5394483 0 0 +5398835 totRewards = 67 +5398835 128 16 +5399035 128 0 +5399090 0 0 +5399138 128 0 +5399333 0 0 +5399362 128 0 +5399459 0 0 +5399489 128 0 +5399707 0 0 +5399748 128 0 +5399841 0 0 +5399886 128 0 +5399976 0 0 +5399988 128 0 +5400127 0 0 +5400137 128 0 +5400266 0 0 +5400294 128 0 +5400408 0 0 +5400433 128 0 +5400565 0 0 +5400584 128 0 +5400714 0 0 +5400750 128 0 +5400873 0 0 +5400918 128 0 +5401040 0 0 +5401076 128 0 +5401200 0 0 +5401239 128 0 +5401363 0 0 +5401408 128 0 +5401524 0 0 +5401560 128 0 +5401686 0 0 +5401701 128 0 +5401840 0 0 +5401880 128 0 +5402002 0 0 +5402041 128 0 +5402160 0 0 +5402210 128 0 +5402314 0 0 +5402368 128 0 +5402477 0 0 +5402529 128 0 +5402635 0 0 +5402694 128 0 +5402784 0 0 +5402882 128 0 +5402984 0 0 +5403249 128 0 +5403296 0 0 +5403570 128 0 +5403643 0 0 +5406420 totRewards = 68 +5406420 64 8 +5406620 64 0 +5406622 0 0 +5406646 64 0 +5408106 0 0 +5408123 64 0 +5408592 0 0 +5408611 64 0 +5408758 0 0 +5408784 64 0 +5408937 0 0 +5408952 64 0 +5409108 0 0 +5409132 64 0 +5409264 0 0 +5409287 64 0 +5409437 0 0 +5409465 64 0 +5409612 0 0 +5409642 64 0 +5409782 0 0 +5409811 64 0 +5409948 0 0 +5409995 64 0 +5410134 0 0 +5410195 64 0 +5410275 0 0 +5410788 64 0 +5410832 0 0 +5410875 64 0 +5411017 0 0 +5411024 64 0 +5411168 0 0 +5411200 64 0 +5411349 0 0 +5411375 64 0 +5411527 0 0 +5411550 64 0 +5411699 0 0 +5411717 64 0 +5411889 0 0 +5411901 64 0 +5412053 0 0 +5412087 64 0 +5412224 0 0 +5412300 64 0 +5412325 0 0 +5418269 totRewards = 69 +5418269 128 16 +5418399 0 16 +5418468 128 16 +5418469 128 0 +5418792 0 0 +5418841 128 0 +5419045 0 0 +5419075 128 0 +5419175 0 0 +5419231 128 0 +5419455 0 0 +5419467 128 0 +5419592 0 0 +5419617 128 0 +5419893 0 0 +5419913 128 0 +5420032 0 0 +5420071 128 0 +5420197 0 0 +5420225 128 0 +5420345 0 0 +5420384 128 0 +5420512 0 0 +5420556 128 0 +5420670 0 0 +5420731 128 0 +5420829 0 0 +5420888 128 0 +5420963 0 0 +5424289 totRewards = 70 +5424289 64 8 +5424475 0 8 +5424489 0 0 +5424500 64 0 +5426607 0 0 +5426627 64 0 +5426775 0 0 +5426787 64 0 +5426925 0 0 +5426954 64 0 +5427080 0 0 +5427125 64 0 +5427228 0 0 +5427299 64 0 +5427312 0 0 +5430011 totRewards = 71 +5430011 128 16 +5430211 128 0 +5430218 0 0 +5430279 128 0 +5430439 0 0 +5430494 128 0 +5430831 0 0 +5430874 128 0 +5430987 0 0 +5431072 128 0 +5431125 0 0 +5431138 128 0 +5431424 0 0 +5431445 128 0 +5431713 0 0 +5431718 128 0 +5431857 0 0 +5431895 128 0 +5432009 0 0 +5432044 128 0 +5432169 0 0 +5432192 128 0 +5432313 0 0 +5432348 128 0 +5432462 0 0 +5432505 128 0 +5432618 0 0 +5432665 128 0 +5432775 0 0 +5432826 128 0 +5432934 0 0 +5432983 128 0 +5433094 0 0 +5433142 128 0 +5433251 0 0 +5433307 128 0 +5433418 0 0 +5433475 128 0 +5433577 0 0 +5433640 128 0 +5433722 0 0 +5436443 totRewards = 72 +5436443 64 8 +5436641 0 8 +5436643 0 0 +5436665 64 0 +5438756 0 0 +5438773 64 0 +5439085 0 0 +5439110 64 0 +5439254 0 0 +5439276 64 0 +5439402 0 0 +5439442 64 0 +5439557 0 0 +5439602 64 0 +5439714 0 0 +5439758 64 0 +5439867 0 0 +5442610 totRewards = 73 +5442610 128 16 +5442773 0 16 +5442810 0 0 +5442845 128 0 +5443019 0 0 +5443055 128 0 +5443148 0 0 +5443213 128 0 +5443420 0 0 +5443446 128 0 +5443556 0 0 +5443614 128 0 +5443832 0 0 +5443843 128 0 +5443977 0 0 +5443985 128 0 +5444268 0 0 +5444278 128 0 +5444412 0 0 +5444438 128 0 +5444573 0 0 +5444607 128 0 +5444730 0 0 +5444752 128 0 +5444878 0 0 +5444915 128 0 +5445039 0 0 +5445081 128 0 +5445208 0 0 +5445252 128 0 +5445373 0 0 +5445411 128 0 +5445526 0 0 +5445575 128 0 +5445683 0 0 +5445738 128 0 +5445834 0 0 +5445898 128 0 +5445989 0 0 +5446046 128 0 +5446150 0 0 +5446211 128 0 +5446310 0 0 +5446397 128 0 +5446509 0 0 +5446539 128 0 +5446667 0 0 +5446742 128 0 +5446835 0 0 +5446916 128 0 +5447011 0 0 +5449983 totRewards = 74 +5449983 64 8 +5450178 0 8 +5450183 0 0 +5450197 64 0 +5451724 0 0 +5451733 64 0 +5451888 0 0 +5451900 64 0 +5452222 0 0 +5452249 64 0 +5452387 0 0 +5452422 64 0 +5452547 0 0 +5452586 64 0 +5452713 0 0 +5452736 64 0 +5452874 0 0 +5452894 64 0 +5453373 0 0 +5453386 64 0 +5453527 0 0 +5453564 64 0 +5453680 0 0 +5456274 totRewards = 75 +5456274 128 16 +5456427 0 16 +5456474 0 0 +5456483 128 0 +5456835 0 0 +5456882 128 0 +5457122 0 0 +5457146 128 0 +5457242 0 0 +5457297 128 0 +5457671 0 0 +5457705 128 0 +5457825 0 0 +5457838 128 0 +5457973 0 0 +5457984 128 0 +5458119 0 0 +5458165 128 0 +5458286 0 0 +5458319 128 0 +5458445 0 0 +5458475 128 0 +5458598 0 0 +5458642 128 0 +5458750 0 0 +5458790 128 0 +5458921 0 0 +5458952 128 0 +5459070 0 0 +5459126 128 0 +5459229 0 0 +5459277 128 0 +5459386 0 0 +5459440 128 0 +5459546 0 0 +5459621 128 0 +5459644 0 0 +5459774 128 0 +5459857 0 0 +5459935 128 0 +5460016 0 0 +5460084 128 0 +5460198 0 0 +5460274 128 0 +5460381 0 0 +5460440 128 0 +5460533 0 0 +5460623 128 0 +5460644 0 0 +5460673 128 0 +5460720 0 0 +5460804 128 0 +5460897 0 0 +5463771 totRewards = 76 +5463771 64 8 +5463967 0 8 +5463971 0 0 +5463984 64 0 +5465144 0 0 +5465156 64 0 +5466272 0 0 +5466284 64 0 +5466429 0 0 +5466450 64 0 +5466586 0 0 +5466623 64 0 +5466737 0 0 +5466779 64 0 +5466888 0 0 +5466994 64 0 +5467017 0 0 +5469571 totRewards = 77 +5469571 128 16 +5469749 0 16 +5469771 0 0 +5469802 128 0 +5470003 0 0 +5470052 128 0 +5470145 0 0 +5470209 128 0 +5470409 0 0 +5470438 128 0 +5470546 0 0 +5470607 128 0 +5470707 0 0 +5470712 128 0 +5470840 0 0 +5470857 128 0 +5470975 0 0 +5471008 128 0 +5471431 0 0 +5471463 128 0 +5471582 0 0 +5471623 128 0 +5471750 0 0 +5471786 128 0 +5471912 0 0 +5471953 128 0 +5472074 0 0 +5472124 128 0 +5472240 0 0 +5472288 128 0 +5472400 0 0 +5472447 128 0 +5472565 0 0 +5472611 128 0 +5472720 0 0 +5472769 128 0 +5472877 0 0 +5472931 128 0 +5473037 0 0 +5473101 128 0 +5473200 0 0 +5473258 128 0 +5473363 0 0 +5473448 128 0 +5473567 0 0 +5473676 128 0 +5473728 0 0 +5473804 128 0 +5473818 0 0 +5473862 128 0 +5473886 0 0 +5474162 128 0 +5474248 0 0 +5474304 128 0 +5474401 0 0 +5474460 128 0 +5474573 0 0 +5474639 128 0 +5474740 0 0 +5474828 128 0 +5474922 0 0 +5478644 totRewards = 78 +5478644 64 8 +5478844 64 0 +5480473 0 0 +5480490 64 0 +5480963 0 0 +5480984 64 0 +5481297 0 0 +5481310 64 0 +5481451 0 0 +5481480 64 0 +5481615 0 0 +5481637 64 0 +5481781 0 0 +5481803 64 0 +5481939 0 0 +5481972 64 0 +5482107 0 0 +5482131 64 0 +5483003 0 0 +5483088 64 0 +5483245 0 0 +5483305 64 0 +5483768 0 0 +5483790 64 0 +5483944 0 0 +5483979 64 0 +5484102 0 0 +5484161 64 0 +5484245 0 0 +5490480 totRewards = 79 +5490480 128 16 +5490623 0 16 +5490680 0 0 +5490704 128 0 +5490857 0 0 +5490885 128 0 +5490986 0 0 +5491076 128 0 +5491171 0 0 +5491302 128 0 +5491446 0 0 +5491471 128 0 +5492235 0 0 +5492243 128 0 +5492375 0 0 +5492383 128 0 +5492658 0 0 +5492677 128 0 +5492806 0 0 +5492828 128 0 +5492953 0 0 +5492979 128 0 +5493099 0 0 +5493135 128 0 +5493270 0 0 +5493308 128 0 +5493412 0 0 +5493453 128 0 +5493563 0 0 +5493597 128 0 +5494025 0 0 +5494048 128 0 +5494188 0 0 +5494211 128 0 +5494352 0 0 +5494387 128 0 +5494498 0 0 +5494540 128 0 +5494953 0 0 +5495992 128 0 +5496716 0 0 +5499488 totRewards = 80 +5499488 64 8 +5499679 0 8 +5499688 0 0 +5499710 64 0 +5500315 0 0 +5500332 64 0 +5500857 0 0 +5500864 64 0 +5501651 0 0 +5501666 64 0 +5501815 0 0 +5501849 64 0 +5502352 0 0 +5502374 64 0 +5502719 0 0 +5502754 64 0 +5503075 0 0 +5503101 64 0 +5503248 0 0 +5503270 64 0 +5503413 0 0 +5503429 64 0 +5504778 0 0 +5504816 64 0 +5505289 0 0 +5505322 64 0 +5505451 0 0 +5505486 64 0 +5505953 0 0 +5505978 64 0 +5506147 0 0 +5506170 64 0 +5506329 0 0 +5506353 64 0 +5506421 0 0 +5506469 64 0 +5506778 0 0 +5506805 64 0 +5506931 0 0 +5509416 totRewards = 81 +5509416 128 16 +5509589 0 16 +5509616 0 0 +5509638 128 0 +5509826 0 0 +5509880 128 0 +5509969 0 0 +5510015 128 0 +5510229 0 0 +5510266 128 0 +5510363 0 0 +5510428 128 0 +5510779 0 0 +5510797 128 0 +5511059 0 0 +5511067 128 0 +5511205 0 0 +5511216 128 0 +5511348 0 0 +5511371 128 0 +5511502 0 0 +5511526 128 0 +5511661 0 0 +5511685 128 0 +5511813 0 0 +5511857 128 0 +5511975 0 0 +5512018 128 0 +5512139 0 0 +5512185 128 0 +5512300 0 0 +5512351 128 0 +5512471 0 0 +5512526 128 0 +5512630 0 0 +5512700 128 0 +5512775 0 0 +5519879 128 0 +5520118 0 0 +5533316 totRewards = 82 +5533316 64 8 +5533516 64 0 +5533517 0 0 +5533555 64 0 +5533772 0 0 +5533792 64 0 +5534142 0 0 +5534154 64 0 +5534274 0 0 +5534284 64 0 +5535748 0 0 +5535777 64 0 +5535895 0 0 +5535924 64 0 +5537177 0 0 +5537199 64 0 +5537318 0 0 +5541079 totRewards = 83 +5541079 128 16 +5541254 0 16 +5541279 0 0 +5541288 128 0 +5541512 0 0 +5541545 128 0 +5541630 0 0 +5541678 128 0 +5541890 0 0 +5541913 128 0 +5542025 0 0 +5542054 128 0 +5542143 0 0 +5542156 128 0 +5542425 0 0 +5542445 128 0 +5542562 0 0 +5542589 128 0 +5542859 0 0 +5542881 128 0 +5543002 0 0 +5543039 128 0 +5543160 0 0 +5543199 128 0 +5543325 0 0 +5543358 128 0 +5543481 0 0 +5543518 128 0 +5543635 0 0 +5543679 128 0 +5543800 0 0 +5543813 128 0 +5544386 0 0 +5544420 128 0 +5544542 0 0 +5544566 128 0 +5544692 0 0 +5544736 128 0 +5544842 0 0 +5544889 128 0 +5545012 0 0 +5545052 128 0 +5545166 0 0 +5545223 128 0 +5545336 0 0 +5545393 128 0 +5545489 0 0 +5548223 totRewards = 84 +5548223 64 8 +5548403 0 8 +5548423 0 0 +5548443 64 0 +5550523 0 0 +5550534 64 0 +5550680 0 0 +5550695 64 0 +5550849 0 0 +5550867 64 0 +5551016 0 0 +5551037 64 0 +5551166 0 0 +5551211 64 0 +5551323 0 0 +5551368 64 0 +5551477 0 0 +5551547 64 0 +5551624 0 0 +5554292 totRewards = 85 +5554292 128 16 +5554457 0 16 +5554492 0 0 +5554546 128 0 +5555028 0 0 +5555052 128 0 +5555280 0 0 +5555313 128 0 +5555704 0 0 +5555713 128 0 +5556010 0 0 +5556022 128 0 +5556151 0 0 +5556178 128 0 +5556304 0 0 +5556332 128 0 +5556462 0 0 +5556492 128 0 +5556626 0 0 +5556666 128 0 +5556785 0 0 +5556832 128 0 +5556948 0 0 +5556990 128 0 +5557109 0 0 +5557148 128 0 +5557267 0 0 +5557313 128 0 +5557424 0 0 +5557480 128 0 +5557587 0 0 +5557650 128 0 +5557751 0 0 +5557820 128 0 +5557935 0 0 +5558046 128 0 +5558087 0 0 +5558177 128 0 +5558218 0 0 +5558252 128 0 +5558287 0 0 +5558357 128 0 +5558445 0 0 +5558528 128 0 +5558607 0 0 +5558717 128 0 +5558732 0 0 +5558768 128 0 +5558795 0 0 +5562550 totRewards = 86 +5562550 64 8 +5562750 64 0 +5564913 0 0 +5564928 64 0 +5565074 0 0 +5565091 64 0 +5565240 0 0 +5565267 64 0 +5565390 0 0 +5565429 64 0 +5565542 0 0 +5565606 64 0 +5565707 0 0 +5565809 64 0 +5565853 0 0 +5568670 totRewards = 87 +5568670 128 16 +5568855 0 16 +5568870 0 0 +5568890 128 0 +5569110 0 0 +5569134 128 0 +5569244 0 0 +5569268 128 0 +5569487 0 0 +5569531 128 0 +5569629 0 0 +5569702 128 0 +5570063 0 0 +5570080 128 0 +5570217 0 0 +5570238 128 0 +5570530 0 0 +5570564 128 0 +5570688 0 0 +5570730 128 0 +5570860 0 0 +5570889 128 0 +5571015 0 0 +5571047 128 0 +5571163 0 0 +5571202 128 0 +5571324 0 0 +5571365 128 0 +5571485 0 0 +5571529 128 0 +5571648 0 0 +5571693 128 0 +5571828 0 0 +5571868 128 0 +5571985 0 0 +5572038 128 0 +5572153 0 0 +5572211 128 0 +5572300 0 0 +5572375 128 0 +5572452 0 0 +5575269 totRewards = 88 +5575269 64 8 +5575469 64 0 +5575482 0 0 +5575497 64 0 +5577782 0 0 +5577794 64 0 +5578136 0 0 +5578142 64 0 +5578280 0 0 +5578339 64 0 +5578441 0 0 +5578477 64 0 +5578624 0 0 +5578635 64 0 +5579997 0 0 +5580009 64 0 +5580332 0 0 +5580343 64 0 +5581326 0 0 +5581370 64 0 +5581481 0 0 +5584237 totRewards = 89 +5584237 128 16 +5584409 0 16 +5584437 0 0 +5584492 128 0 +5584822 0 0 +5584857 128 0 +5584977 0 0 +5585004 128 0 +5585112 0 0 +5585128 128 0 +5585225 0 0 +5585268 128 0 +5585662 0 0 +5585688 128 0 +5585976 0 0 +5586003 128 0 +5586128 0 0 +5586170 128 0 +5586293 0 0 +5586327 128 0 +5586459 0 0 +5586502 128 0 +5586629 0 0 +5586677 128 0 +5586791 0 0 +5586838 128 0 +5586942 0 0 +5586999 128 0 +5587063 0 0 +5592356 totRewards = 90 +5592356 64 8 +5592556 64 0 +5592561 0 0 +5592581 64 0 +5594842 0 0 +5594869 64 0 +5595341 0 0 +5595378 64 0 +5595506 0 0 +5595526 64 0 +5595670 0 0 +5595692 64 0 +5595830 0 0 +5595849 64 0 +5596466 0 0 +5596497 64 0 +5596934 0 0 +5596963 64 0 +5597803 0 0 +5597843 64 0 +5597971 0 0 +5598005 64 0 +5598132 0 0 +5598150 64 0 +5598285 0 0 +5598344 64 0 +5598400 0 0 +5600914 totRewards = 91 +5600914 128 16 +5601092 0 16 +5601114 0 0 +5601176 128 0 +5601509 0 0 +5601530 128 0 +5601792 0 0 +5601816 128 0 +5601902 0 0 +5601944 128 0 +5602063 0 0 +5602070 128 0 +5602335 0 0 +5602352 128 0 +5602634 0 0 +5602643 128 0 +5602793 0 0 +5602805 128 0 +5602949 0 0 +5602969 128 0 +5603268 0 0 +5603303 128 0 +5603434 0 0 +5603471 128 0 +5603603 0 0 +5603638 128 0 +5603763 0 0 +5603799 128 0 +5603928 0 0 +5603960 128 0 +5604082 0 0 +5604121 128 0 +5604246 0 0 +5604284 128 0 +5604407 0 0 +5604452 128 0 +5604567 0 0 +5604632 128 0 +5604716 0 0 +5604760 128 0 +5604870 0 0 +5604943 128 0 +5605063 0 0 +5605096 128 0 +5605203 0 0 +5605278 128 0 +5605313 0 0 +5605453 128 0 +5605549 0 0 +5605629 128 0 +5605720 0 0 +5608617 totRewards = 92 +5608617 64 8 +5608813 0 8 +5608817 0 0 +5608829 64 0 +5610943 0 0 +5610961 64 0 +5611607 0 0 +5611635 64 0 +5611766 0 0 +5611802 64 0 +5611924 0 0 +5611971 64 0 +5612070 0 0 +5615107 totRewards = 93 +5615107 128 16 +5615307 128 0 +5615390 0 0 +5615431 128 0 +5615763 0 0 +5615776 128 0 +5616012 0 0 +5616035 128 0 +5616146 0 0 +5616201 128 0 +5616284 0 0 +5616302 128 0 +5616430 0 0 +5616458 128 0 +5616567 0 0 +5616600 128 0 +5616726 0 0 +5616731 128 0 +5617017 0 0 +5617048 128 0 +5617168 0 0 +5617211 128 0 +5617333 0 0 +5617362 128 0 +5617495 0 0 +5617528 128 0 +5617659 0 0 +5617702 128 0 +5617820 0 0 +5617867 128 0 +5617986 0 0 +5618033 128 0 +5618149 0 0 +5618186 128 0 +5618466 0 0 +5618485 128 0 +5618614 0 0 +5618652 128 0 +5618765 0 0 +5618810 128 0 +5618920 0 0 +5618965 128 0 +5619076 0 0 +5619128 128 0 +5619234 0 0 +5619306 128 0 +5619413 0 0 +5619458 128 0 +5619578 0 0 +5619627 128 0 +5619748 0 0 +5619783 128 0 +5619910 0 0 +5619959 128 0 +5620081 0 0 +5620130 128 0 +5620232 0 0 +5620305 128 0 +5620393 0 0 +5620555 128 0 +5620598 0 0 +5621238 128 0 +5621262 0 0 +5621287 128 0 +5621312 0 0 +5624444 totRewards = 94 +5624444 64 8 +5624629 0 8 +5624644 0 0 +5624653 64 0 +5625828 0 0 +5625839 64 0 +5626791 0 0 +5626807 64 0 +5627126 0 0 +5627149 64 0 +5627285 0 0 +5627314 64 0 +5627441 0 0 +5627489 64 0 +5627614 0 0 +5627637 64 0 +5627759 0 0 +5630493 totRewards = 95 +5630493 128 16 +5630678 0 16 +5630693 0 0 +5630822 128 0 +5630934 0 0 +5630939 128 0 +5631056 0 0 +5631100 128 0 +5631451 0 0 +5631499 128 0 +5631884 0 0 +5631913 128 0 +5632026 0 0 +5632054 128 0 +5632335 0 0 +5632361 128 0 +5632485 0 0 +5632518 128 0 +5632645 0 0 +5632679 128 0 +5632804 0 0 +5632843 128 0 +5632970 0 0 +5633021 128 0 +5633146 0 0 +5633191 128 0 +5633305 0 0 +5633359 128 0 +5633455 0 0 +5633516 128 0 +5633624 0 0 +5633663 128 0 +5633790 0 0 +5633840 128 0 +5633945 0 0 +5634006 128 0 +5634112 0 0 +5634153 128 0 +5634272 0 0 +5634326 128 0 +5634427 0 0 +5634517 128 0 +5634652 0 0 +5634688 128 0 +5634714 0 0 +5634737 128 0 +5634799 0 0 +5634870 128 0 +5634962 0 0 +5635118 128 0 +5635172 0 0 +5635251 128 0 +5635325 0 0 +5638851 totRewards = 96 +5638851 64 8 +5639027 0 8 +5639051 0 0 +5639057 64 0 +5641158 0 0 +5641166 64 0 +5641312 0 0 +5641327 64 0 +5641632 0 0 +5641660 64 0 +5641799 0 0 +5641827 64 0 +5641967 0 0 +5642003 64 0 +5642135 0 0 +5642174 64 0 +5642295 0 0 +5642349 64 0 +5642450 0 0 +5642688 64 0 +5643624 0 0 +5648879 totRewards = 97 +5648879 128 16 +5649079 128 0 +5649159 0 0 +5649190 128 0 +5649783 0 0 +5649834 128 0 +5649930 0 0 +5649976 128 0 +5650367 0 0 +5650379 128 0 +5650813 0 0 +5650830 128 0 +5650971 0 0 +5650983 128 0 +5651115 0 0 +5651141 128 0 +5651273 0 0 +5651307 128 0 +5651436 0 0 +5651479 128 0 +5651605 0 0 +5651646 128 0 +5651763 0 0 +5651812 128 0 +5651913 0 0 +5651970 128 0 +5652065 0 0 +5652111 128 0 +5652224 0 0 +5652262 128 0 +5652382 0 0 +5652427 128 0 +5652542 0 0 +5652585 128 0 +5652710 0 0 +5652743 128 0 +5652867 0 0 +5652915 128 0 +5653031 0 0 +5653085 128 0 +5653183 0 0 +5653249 128 0 +5653342 0 0 +5656059 totRewards = 98 +5656059 64 8 +5656235 0 8 +5656259 0 0 +5656259 64 0 +5657885 0 0 +5657895 64 0 +5659034 0 0 +5659055 64 0 +5659196 0 0 +5659226 64 0 +5659351 0 0 +5659384 64 0 +5659509 0 0 +5659577 64 0 +5659599 0 0 +5662554 totRewards = 99 +5662554 128 16 +5662735 0 16 +5662754 0 0 +5662788 128 0 +5662975 0 0 +5663017 128 0 +5663109 0 0 +5663163 128 0 +5663375 0 0 +5663405 128 0 +5663502 0 0 +5663561 128 0 +5663933 0 0 +5663957 128 0 +5664383 0 0 +5664415 128 0 +5664537 0 0 +5664572 128 0 +5664697 0 0 +5664733 128 0 +5664862 0 0 +5664906 128 0 +5665023 0 0 +5665067 128 0 +5665186 0 0 +5665233 128 0 +5665345 0 0 +5665383 128 0 +5665521 0 0 +5665557 128 0 +5665678 0 0 +5665722 128 0 +5665841 0 0 +5665894 128 0 +5666004 0 0 +5666057 128 0 +5666170 0 0 +5666214 128 0 +5666332 0 0 +5666386 128 0 +5666500 0 0 +5666552 128 0 +5666666 0 0 +5666710 128 0 +5666819 0 0 +5666871 128 0 +5666975 0 0 +5667679 128 0 +5667780 0 0 +5667820 128 0 +5667924 0 0 +5667975 128 0 +5668075 0 0 +5668129 128 0 +5668240 0 0 +5668270 128 0 +5668389 0 0 +5668428 128 0 +5668557 0 0 +5668585 128 0 +5668714 0 0 +5668776 128 0 +5668883 0 0 +5673440 totRewards = 100 +5673440 64 8 +5673640 64 0 +5675190 0 0 +5675210 64 0 +5675339 0 0 +5675358 64 0 +5675835 0 0 +5675852 64 0 +5676152 0 0 +5676181 64 0 +5676317 0 0 +5676322 64 0 +5676788 0 0 +5676803 64 0 +5677296 0 0 +5677315 64 0 +5677473 0 0 +5677487 64 0 +5677645 0 0 +5677660 64 0 +5677807 0 0 +5677844 64 0 +5678474 0 0 +5678494 64 0 +5679104 0 0 +5679146 64 0 +5679622 0 0 +5679652 64 0 +5679774 0 0 +5679817 64 0 +5679938 0 0 +5679994 64 0 +5680085 0 0 +5682771 totRewards = 101 +5682771 128 16 +5682971 128 0 +5682977 0 0 +5683060 128 0 +5683375 0 0 +5683438 128 0 +5683560 0 0 +5683593 128 0 +5683703 0 0 +5683721 128 0 +5683815 0 0 +5683845 128 0 +5683965 0 0 +5683982 128 0 +5684243 0 0 +5684256 128 0 +5684680 0 0 +5684711 128 0 +5684843 0 0 +5684866 128 0 +5684992 0 0 +5685027 128 0 +5685150 0 0 +5685197 128 0 +5685319 0 0 +5685370 128 0 +5685483 0 0 +5685531 128 0 +5685652 0 0 +5685700 128 0 +5685822 0 0 +5685873 128 0 +5685989 0 0 +5686038 128 0 +5686141 0 0 +5686197 128 0 +5686300 0 0 +5686344 128 0 +5686456 0 0 +5686512 128 0 +5686612 0 0 +5686685 128 0 +5686815 0 0 +5686827 128 0 +5686975 0 0 +5687022 128 0 +5687140 0 0 +5687204 128 0 +5687320 0 0 +5687399 128 0 +5687416 0 0 +5687432 128 0 +5687474 0 0 +5690822 totRewards = 102 +5690822 64 8 +5691022 64 0 +5691038 0 0 +5691053 64 0 +5691660 0 0 +5691672 64 0 +5693493 0 0 +5693512 64 0 +5693653 0 0 +5693682 64 0 +5693805 0 0 +5693842 64 0 +5693957 0 0 +5694019 64 0 +5694105 0 0 +5697110 totRewards = 103 +5697110 128 16 +5697310 128 0 +5697315 0 0 +5697352 128 0 +5697566 0 0 +5697585 128 0 +5697701 0 0 +5697734 128 0 +5697966 0 0 +5697986 128 0 +5698098 0 0 +5698149 128 0 +5698532 0 0 +5698553 128 0 +5698996 0 0 +5699025 128 0 +5699162 0 0 +5699191 128 0 +5699323 0 0 +5699355 128 0 +5699492 0 0 +5699532 128 0 +5699662 0 0 +5699707 128 0 +5699824 0 0 +5699871 128 0 +5699977 0 0 +5700030 128 0 +5700120 0 0 +5700191 128 0 +5700282 0 0 +5700354 128 0 +5700433 0 0 +5703554 totRewards = 104 +5703554 64 8 +5703739 0 8 +5703754 0 0 +5703766 64 0 +5704513 0 0 +5704522 64 0 +5705904 0 0 +5705924 64 0 +5706065 0 0 +5706088 64 0 +5706232 0 0 +5706255 64 0 +5706393 0 0 +5706423 64 0 +5706553 0 0 +5706587 64 0 +5706710 0 0 +5706757 64 0 +5706875 0 0 +5708022 64 0 +5708875 0 0 +5708897 64 0 +5710073 0 0 +5710134 64 0 +5710212 0 0 +5712808 totRewards = 105 +5712808 128 16 +5712986 0 16 +5713008 0 0 +5713059 128 0 +5713254 0 0 +5713265 128 0 +5713378 0 0 +5713420 128 0 +5713793 0 0 +5713832 128 0 +5714102 0 0 +5714113 128 0 +5714248 0 0 +5714274 128 0 +5714407 0 0 +5714434 128 0 +5714565 0 0 +5714600 128 0 +5714710 0 0 +5714751 128 0 +5714880 0 0 +5714918 128 0 +5715052 0 0 +5715093 128 0 +5715216 0 0 +5715268 128 0 +5715379 0 0 +5715429 128 0 +5715539 0 0 +5715600 128 0 +5715673 0 0 +5715761 128 0 +5715829 0 0 +5719199 totRewards = 106 +5719199 64 8 +5719399 64 0 + + description: state script log run 2 + task_epochs: 4, +, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140480029761104 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +7499807 totRewards = 1 +7499807 64 200 +7500007 64 192 +7500065 0 128 +7500089 64 128 +7500220 0 128 +7500233 64 128 +7500345 0 128 +7500352 64 128 +7500830 0 128 +7500836 64 128 +7500943 0 128 +7500963 64 128 +7501077 0 128 +7501087 64 128 +7501201 0 128 +7501216 64 128 +7501327 0 128 +7501354 64 128 +7501470 0 128 +7501488 64 128 +7501621 0 128 +7501641 64 128 +7501768 0 128 +7501786 64 128 +7501914 0 128 +7501942 64 128 +7502067 0 128 +7502104 64 128 +7502224 0 128 +7502270 64 128 +7502382 0 128 +7502438 64 128 +7502547 0 128 +7502591 64 128 +7502710 0 128 +7502748 64 128 +7502863 0 128 +7502898 64 128 +7503321 0 128 +7503349 64 128 +7503492 0 128 +7503512 64 128 +7503675 0 128 +7503685 64 128 +7503829 0 128 +7503869 64 128 +7504008 0 128 +7504049 64 128 +7504185 0 128 +7504229 64 128 +7504335 0 128 +7504385 64 128 +7504830 0 128 +7504850 64 128 +7505318 0 128 +7505346 64 128 +7505492 0 128 +7505523 64 128 +7505673 0 128 +7505703 64 128 +7505819 0 128 +7509448 totRewards = 2 +7509448 128 144 +7509648 128 128 +7509830 0 0 +7509841 128 0 +7509844 0 0 +7509909 128 0 +7509912 0 0 +7509920 128 0 +7509985 0 0 +7510002 128 0 +7510144 0 0 +7510154 128 0 +7510255 0 0 +7510314 128 0 +7510656 0 0 +7510682 128 0 +7510795 0 0 +7510807 128 0 +7511073 0 0 +7511090 128 0 +7511207 0 0 +7511234 128 0 +7511347 0 0 +7511392 128 0 +7511490 0 0 +7511537 128 0 +7511633 0 0 +7511693 128 0 +7511798 0 0 +7511856 128 0 +7511969 0 0 +7512023 128 0 +7512135 0 0 +7512198 128 0 +7512321 0 0 +7512384 128 0 +7512512 0 0 +7512575 128 0 +7512699 0 0 +7512769 128 0 +7512896 0 0 +7512953 128 0 +7513081 0 0 +7513127 128 0 +7514538 0 0 +7514575 128 0 +7514712 0 0 +7514754 128 0 +7514891 0 0 +7514952 128 0 +7515072 0 0 +7515133 128 0 +7515263 0 0 +7515316 128 0 +7515435 0 0 +7515498 128 0 +7515609 0 0 +7515678 128 0 +7515789 0 0 +7515866 128 0 +7515967 0 0 +7516022 128 0 +7516088 0 0 +7516194 128 0 +7516468 0 0 +7516494 128 0 +7516627 0 0 +7516666 128 0 +7516803 0 0 +7516877 128 0 +7516984 0 0 +7517035 128 0 +7517176 0 0 +7517288 128 0 +7517394 0 0 +7517922 128 0 +7517951 0 0 +7518111 128 0 +7518125 0 0 +7518392 128 0 +7518503 0 0 +7518598 128 0 +7518683 0 0 +7518837 128 0 +7518854 0 0 +7527467 128 0 +7527970 0 0 +7527980 128 0 +7528348 0 0 +7528369 128 0 +7528497 0 0 +7528533 128 0 +7528645 0 0 +7528691 128 0 +7528805 0 0 +7528852 128 0 +7528967 0 0 +7532478 totRewards = 3 +7532478 64 8 +7532678 64 0 +7533690 0 0 +7533700 64 0 +7533836 0 0 +7533851 64 0 +7533973 0 0 +7533982 64 0 +7534275 0 0 +7534294 64 0 +7534429 0 0 +7534443 64 0 +7534775 0 0 +7534796 64 0 +7534938 0 0 +7534974 64 0 +7535284 0 0 +7535321 64 0 +7536105 0 0 +7536111 64 0 +7536280 0 0 +7536300 64 0 +7536473 0 0 +7536500 64 0 +7536664 0 0 +7536677 64 0 +7536833 0 0 +7536885 64 0 +7537004 0 0 +7537062 64 0 +7537189 0 0 +7537254 64 0 +7537988 0 0 +7538049 64 0 +7538195 0 0 +7538227 64 0 +7538413 0 0 +7538435 64 0 +7538599 0 0 +7538659 64 0 +7538784 0 0 +7539025 64 0 +7539161 0 0 +7539189 64 0 +7539338 0 0 +7539407 64 0 +7539582 0 0 +7540550 64 0 +7540819 0 0 +7540833 64 0 +7540992 0 0 +7541002 64 0 +7541166 0 0 +7541175 64 0 +7541333 0 0 +7541372 64 0 +7541521 0 0 +7541562 64 0 +7541687 0 0 +7545424 totRewards = 4 +7545424 128 16 +7545556 0 16 +7545595 128 16 +7545624 128 0 +7545675 0 0 +7545700 128 0 +7545842 0 0 +7545893 128 0 +7546045 0 0 +7546114 128 0 +7546712 0 0 +7546739 128 0 +7546858 0 0 +7546874 128 0 +7546980 0 0 +7547012 128 0 +7547114 0 0 +7547153 128 0 +7547255 0 0 +7547294 128 0 +7547398 0 0 +7547439 128 0 +7547540 0 0 +7547582 128 0 +7547696 0 0 +7547741 128 0 +7547855 0 0 +7547906 128 0 +7548020 0 0 +7548069 128 0 +7548183 0 0 +7548246 128 0 +7548357 0 0 +7548418 128 0 +7548525 0 0 +7548577 128 0 +7548709 0 0 +7548735 128 0 +7549034 0 0 +7549043 128 0 +7549170 0 0 +7549221 128 0 +7549341 0 0 +7549385 128 0 +7549499 0 0 +7549566 128 0 +7549586 0 0 +7549623 128 0 +7549666 0 0 +7549732 128 0 +7549840 0 0 +7549905 128 0 +7550015 0 0 +7550072 128 0 +7550178 0 0 +7550246 128 0 +7550331 0 0 +7550428 128 0 +7550513 0 0 +7550590 128 0 +7550685 0 0 +7550772 128 0 +7550839 0 0 +7550912 128 0 +7551001 0 0 +7551092 128 0 +7551110 0 0 +7551154 128 0 +7551186 0 0 +7551269 128 0 +7551359 0 0 +7551455 128 0 +7551474 0 0 +7551508 128 0 +7551543 0 0 +7554803 totRewards = 5 +7554803 64 8 +7555003 64 0 +7555514 0 0 +7555522 64 0 +7555924 0 0 +7555942 64 0 +7556063 0 0 +7556081 64 0 +7556203 0 0 +7556225 64 0 +7556353 0 0 +7556376 64 0 +7556520 0 0 +7556534 64 0 +7556675 0 0 +7556704 64 0 +7557239 0 0 +7557274 64 0 +7557449 0 0 +7557479 64 0 +7557658 0 0 +7557687 64 0 +7557844 0 0 +7557899 64 0 +7558036 0 0 +7558079 64 0 +7558777 0 0 +7558799 64 0 +7558950 0 0 +7558985 64 0 +7559119 0 0 +7559170 64 0 +7559304 0 0 +7559320 64 0 +7559771 0 0 +7559798 64 0 +7559938 0 0 +7559966 64 0 +7560124 0 0 +7560146 64 0 +7560327 0 0 +7560337 64 0 +7561101 0 0 +7561107 64 0 +7561272 0 0 +7561309 64 0 +7561449 0 0 +7561499 64 0 +7561608 0 0 +7567350 totRewards = 6 +7567350 128 16 +7567534 0 16 +7567550 0 0 +7567605 128 0 +7567921 0 0 +7567954 128 0 +7568061 0 0 +7568094 128 0 +7568302 0 0 +7568359 128 0 +7568446 0 0 +7568464 128 0 +7568594 0 0 +7568619 128 0 +7568723 0 0 +7568763 128 0 +7568863 0 0 +7568898 128 0 +7569021 0 0 +7569058 128 0 +7569166 0 0 +7569215 128 0 +7569320 0 0 +7569370 128 0 +7569487 0 0 +7569540 128 0 +7569660 0 0 +7569715 128 0 +7569826 0 0 +7569886 128 0 +7569997 0 0 +7570055 128 0 +7570166 0 0 +7570228 128 0 +7570323 0 0 +7570390 128 0 +7570486 0 0 +7570544 128 0 +7570652 0 0 +7570705 128 0 +7570817 0 0 +7570880 128 0 +7570994 0 0 +7571053 128 0 +7571170 0 0 +7571231 128 0 +7571323 0 0 +7571403 128 0 +7571464 0 0 +7574231 totRewards = 7 +7574231 64 8 +7574415 0 8 +7574425 64 8 +7574431 64 0 +7574779 0 0 +7574797 64 0 +7575035 0 0 +7575056 64 0 +7575163 0 0 +7575183 64 0 +7575448 0 0 +7575456 64 0 +7575587 0 0 +7575611 64 0 +7575740 0 0 +7575751 64 0 +7576067 0 0 +7576080 64 0 +7576414 0 0 +7576428 64 0 +7576576 0 0 +7576613 64 0 +7576929 0 0 +7576964 64 0 +7577119 0 0 +7577149 64 0 +7577275 0 0 +7577325 64 0 +7577456 0 0 +7577480 64 0 +7577802 0 0 +7577819 64 0 +7577960 0 0 +7577994 64 0 +7578136 0 0 +7578159 64 0 +7578502 0 0 +7578520 64 0 +7579482 0 0 +7579497 64 0 +7579628 0 0 +7579682 64 0 +7579827 0 0 +7579953 64 0 +7580203 0 0 +7580264 64 0 +7580397 0 0 +7580420 64 0 +7580591 0 0 +7580646 64 0 +7580794 0 0 +7580861 64 0 +7580959 0 0 +7581217 64 0 +7581305 0 0 +7581342 64 0 +7581506 0 0 +7581525 64 0 +7581685 0 0 +7581733 64 0 +7581865 0 0 +7586030 totRewards = 8 +7586030 128 16 +7586203 0 16 +7586230 0 0 +7586276 128 0 +7586594 0 0 +7586646 128 0 +7586869 0 0 +7586882 128 0 +7586984 0 0 +7587040 128 0 +7587141 0 0 +7587153 128 0 +7587270 0 0 +7587284 128 0 +7587411 0 0 +7587449 128 0 +7587570 0 0 +7587605 128 0 +7587719 0 0 +7587756 128 0 +7587868 0 0 +7587918 128 0 +7588020 0 0 +7588073 128 0 +7588193 0 0 +7588236 128 0 +7588357 0 0 +7588414 128 0 +7588530 0 0 +7588595 128 0 +7588708 0 0 +7588763 128 0 +7588882 0 0 +7588938 128 0 +7589043 0 0 +7589094 128 0 +7589207 0 0 +7589228 128 0 +7589361 0 0 +7589395 128 0 +7589516 0 0 +7589559 128 0 +7589671 0 0 +7589729 128 0 +7589838 0 0 +7589910 128 0 +7589918 0 0 +7589962 128 0 +7590005 0 0 +7590071 128 0 +7590176 0 0 +7590329 128 0 +7590370 0 0 +7590473 128 0 +7590481 0 0 +7590519 128 0 +7590565 0 0 +7593508 totRewards = 9 +7593508 64 8 +7593703 0 8 +7593708 0 0 +7593718 64 0 +7593939 0 0 +7593957 64 0 +7594730 0 0 +7594744 64 0 +7594863 0 0 +7594890 64 0 +7595020 0 0 +7595030 64 0 +7595169 0 0 +7595174 64 0 +7595653 0 0 +7595670 64 0 +7595828 0 0 +7595841 64 0 +7595986 0 0 +7596013 64 0 +7596162 0 0 +7596199 64 0 +7596330 0 0 +7596379 64 0 +7596506 0 0 +7596524 64 0 +7596672 0 0 +7596684 64 0 +7596853 0 0 +7596873 64 0 +7597016 0 0 +7597070 64 0 +7597351 0 0 +7597375 64 0 +7597514 0 0 +7597545 64 0 +7598031 0 0 +7598062 64 0 +7598180 0 0 +7600753 totRewards = 10 +7600753 128 16 +7600928 0 16 +7600953 0 0 +7600990 128 0 +7601310 0 0 +7601350 128 0 +7601572 0 0 +7601603 128 0 +7601699 0 0 +7601749 128 0 +7602139 0 0 +7602168 128 0 +7602447 0 0 +7602470 128 0 +7602597 0 0 +7602634 128 0 +7602764 0 0 +7602799 128 0 +7602926 0 0 +7602968 128 0 +7603094 0 0 +7603151 128 0 +7603268 0 0 +7603328 128 0 +7603449 0 0 +7603504 128 0 +7603615 0 0 +7603667 128 0 +7603785 0 0 +7603834 128 0 +7603946 0 0 +7604000 128 0 +7604090 0 0 +7604243 128 0 +7604261 0 0 +7604340 128 0 +7604432 0 0 +7604506 128 0 +7604584 0 0 +7604667 128 0 +7604764 0 0 +7604873 128 0 +7604886 0 0 +7604910 128 0 +7604961 0 0 +7608088 totRewards = 11 +7608088 64 8 +7608263 0 8 +7608281 64 8 +7608288 64 0 +7609448 0 0 +7609467 64 0 +7609592 0 0 +7609607 64 0 +7609745 0 0 +7609757 64 0 +7610240 0 0 +7610256 64 0 +7610412 0 0 +7610424 64 0 +7610764 0 0 +7610772 64 0 +7610918 0 0 +7610952 64 0 +7611077 0 0 +7611115 64 0 +7611243 0 0 +7611289 64 0 +7611586 0 0 +7611606 64 0 +7611757 0 0 +7611794 64 0 +7612355 0 0 +7612386 64 0 +7612574 0 0 +7612614 64 0 +7612884 0 0 +7612901 64 0 +7613054 0 0 +7613091 64 0 +7613221 0 0 +7613257 64 0 +7613386 0 0 +7618178 totRewards = 12 +7618178 128 16 +7618307 0 16 +7618378 0 0 +7618396 128 0 +7618712 0 0 +7618752 128 0 +7618860 0 0 +7618907 128 0 +7618984 0 0 +7619030 128 0 +7619120 0 0 +7619158 128 0 +7619270 0 0 +7619285 128 0 +7619414 0 0 +7619429 128 0 +7619552 0 0 +7619584 128 0 +7619716 0 0 +7619727 128 0 +7619858 0 0 +7619880 128 0 +7620005 0 0 +7620054 128 0 +7620174 0 0 +7620222 128 0 +7620341 0 0 +7620397 128 0 +7620509 0 0 +7620586 128 0 +7620743 0 0 +7621246 128 0 +7621352 0 0 +7621407 128 0 +7621506 0 0 +7621630 128 0 +7621695 0 0 +7621754 128 0 +7621880 0 0 +7621924 128 0 +7622044 0 0 +7622121 128 0 +7622225 0 0 +7622291 128 0 +7622376 0 0 +7622477 128 0 +7622496 0 0 +7627198 totRewards = 13 +7627198 64 8 +7627398 64 0 +7627485 0 0 +7627518 64 0 +7627731 0 0 +7627748 64 0 +7628116 0 0 +7628129 64 0 +7628673 0 0 +7628690 64 0 +7629150 0 0 +7629167 64 0 +7629317 0 0 +7629333 64 0 +7629487 0 0 +7629508 64 0 +7629653 0 0 +7629679 64 0 +7629822 0 0 +7629839 64 0 +7630177 0 0 +7630189 64 0 +7630327 0 0 +7630372 64 0 +7630981 0 0 +7631001 64 0 +7631145 0 0 +7631167 64 0 +7631302 0 0 +7631325 64 0 +7631462 0 0 +7631485 64 0 +7631620 0 0 +7631654 64 0 +7631784 0 0 +7631820 64 0 +7632823 0 0 +7632847 64 0 +7632982 0 0 +7633020 64 0 +7633130 0 0 +7633190 64 0 +7633269 0 0 +7636615 totRewards = 14 +7636615 128 16 +7636786 0 16 +7636815 0 0 +7636824 128 0 +7637013 0 0 +7637060 128 0 +7637204 0 0 +7637225 128 0 +7637386 0 0 +7637443 128 0 +7637537 0 0 +7637577 128 0 +7637671 0 0 +7637683 128 0 +7637804 0 0 +7637816 128 0 +7637937 0 0 +7637954 128 0 +7638227 0 0 +7638255 128 0 +7638375 0 0 +7638411 128 0 +7638523 0 0 +7638558 128 0 +7638691 0 0 +7638728 128 0 +7638849 0 0 +7638900 128 0 +7639021 0 0 +7639074 128 0 +7639196 0 0 +7639244 128 0 +7639364 0 0 +7639418 128 0 +7639531 0 0 +7639582 128 0 +7639692 0 0 +7639746 128 0 +7639849 0 0 +7639908 128 0 +7640017 0 0 +7640064 128 0 +7640179 0 0 +7640234 128 0 +7640353 0 0 +7640407 128 0 +7640516 0 0 +7640591 128 0 +7640656 0 0 +7643472 totRewards = 15 +7643472 64 8 +7643672 64 0 +7644135 0 0 +7644143 64 0 +7644273 0 0 +7644285 64 0 +7644681 0 0 +7644691 64 0 +7644821 0 0 +7644835 64 0 +7645128 0 0 +7645141 64 0 +7645287 0 0 +7645300 64 0 +7645452 0 0 +7645462 64 0 +7645617 0 0 +7645632 64 0 +7645772 0 0 +7645801 64 0 +7645932 0 0 +7645969 64 0 +7646102 0 0 +7646129 64 0 +7646634 0 0 +7646657 64 0 +7646790 0 0 +7646833 64 0 +7646939 0 0 +7647007 64 0 +7647074 0 0 +7649822 totRewards = 16 +7649822 128 16 +7650002 0 16 +7650022 0 0 +7650070 128 0 +7650268 0 0 +7650297 128 0 +7650402 0 0 +7650451 128 0 +7650656 0 0 +7650688 128 0 +7650785 0 0 +7650847 128 0 +7651084 0 0 +7651100 128 0 +7651213 0 0 +7651247 128 0 +7651522 0 0 +7651547 128 0 +7651668 0 0 +7651708 128 0 +7651826 0 0 +7651870 128 0 +7651999 0 0 +7652037 128 0 +7652156 0 0 +7652209 128 0 +7652328 0 0 +7652377 128 0 +7652500 0 0 +7652551 128 0 +7652658 0 0 +7652704 128 0 +7652821 0 0 +7652866 128 0 +7652976 0 0 +7653038 128 0 +7653142 0 0 +7653199 128 0 +7653303 0 0 +7653358 128 0 +7653467 0 0 +7653515 128 0 +7653636 0 0 +7653691 128 0 +7653808 0 0 +7653869 128 0 +7653965 0 0 +7654051 128 0 +7654062 0 0 +7654080 128 0 +7654108 0 0 +7656919 totRewards = 17 +7656919 64 8 +7657100 0 8 +7657110 64 8 +7657119 64 0 +7657724 0 0 +7657737 64 0 +7658450 0 0 +7658463 64 0 +7659093 0 0 +7659110 64 0 +7659260 0 0 +7659287 64 0 +7659582 0 0 +7659623 64 0 +7659745 0 0 +7659761 64 0 +7659910 0 0 +7659923 64 0 +7660072 0 0 +7660091 64 0 +7660226 0 0 +7660267 64 0 +7660403 0 0 +7660430 64 0 +7661645 0 0 +7661670 64 0 +7661804 0 0 +7661850 64 0 +7661970 0 0 +7662038 64 0 +7662070 0 0 +7664957 totRewards = 18 +7664957 128 16 +7665116 0 16 +7665157 0 0 +7665163 128 0 +7665372 0 0 +7665381 128 0 +7665492 0 0 +7665545 128 0 +7665745 0 0 +7665785 128 0 +7665876 0 0 +7665942 128 0 +7666304 0 0 +7666340 128 0 +7666456 0 0 +7666472 128 0 +7666601 0 0 +7666620 128 0 +7666750 0 0 +7666789 128 0 +7666909 0 0 +7666951 128 0 +7667074 0 0 +7667107 128 0 +7667238 0 0 +7667279 128 0 +7667398 0 0 +7667454 128 0 +7667578 0 0 +7667628 128 0 +7667753 0 0 +7667813 128 0 +7667918 0 0 +7667983 128 0 +7668082 0 0 +7668137 128 0 +7668242 0 0 +7668288 128 0 +7668398 0 0 +7668454 128 0 +7668559 0 0 +7668614 128 0 +7668722 0 0 +7668772 128 0 +7668880 0 0 +7668945 128 0 +7669001 0 0 +7669091 128 0 +7669177 0 0 +7669492 128 0 +7669523 0 0 +7669608 128 0 +7669694 0 0 +7672486 totRewards = 19 +7672486 64 8 +7672686 64 0 +7672724 0 0 +7672737 64 0 +7673490 0 0 +7673495 64 0 +7673765 0 0 +7673797 64 0 +7674228 0 0 +7674245 64 0 +7674389 0 0 +7674411 64 0 +7674894 0 0 +7674914 64 0 +7675248 0 0 +7675270 64 0 +7675418 0 0 +7675447 64 0 +7675593 0 0 +7675622 64 0 +7675753 0 0 +7675795 64 0 +7675911 0 0 +7675976 64 0 +7676080 0 0 +7676166 64 0 +7676268 0 0 +7676294 64 0 +7676444 0 0 +7676456 64 0 +7676947 0 0 +7676967 64 0 +7677088 0 0 +7679867 totRewards = 20 +7679867 128 16 +7680067 128 0 +7680094 0 0 +7680125 128 0 +7680335 0 0 +7680382 128 0 +7680469 0 0 +7680492 128 0 +7680727 0 0 +7680767 128 0 +7680855 0 0 +7680935 128 0 +7681001 0 0 +7681018 128 0 +7681159 0 0 +7681172 128 0 +7681294 0 0 +7681324 128 0 +7681588 0 0 +7681609 128 0 +7681743 0 0 +7681767 128 0 +7681906 0 0 +7681934 128 0 +7682065 0 0 +7682103 128 0 +7682226 0 0 +7682266 128 0 +7682390 0 0 +7682438 128 0 +7682573 0 0 +7682621 128 0 +7682747 0 0 +7682802 128 0 +7682920 0 0 +7682969 128 0 +7683084 0 0 +7683134 128 0 +7683243 0 0 +7683297 128 0 +7683398 0 0 +7683455 128 0 +7683562 0 0 +7683617 128 0 +7683726 0 0 +7683780 128 0 +7683889 0 0 +7683948 128 0 +7684062 0 0 +7684129 128 0 +7684181 0 0 +7687149 totRewards = 21 +7687149 64 8 +7687334 0 8 +7687349 0 0 +7687368 64 0 +7688422 0 0 +7688431 64 0 +7689388 0 0 +7689395 64 0 +7689548 0 0 +7689570 64 0 +7689719 0 0 +7689739 64 0 +7690071 0 0 +7690094 64 0 +7690236 0 0 +7690275 64 0 +7690577 0 0 +7690608 64 0 +7690748 0 0 +7690779 64 0 +7690941 0 0 +7690955 64 0 +7691854 0 0 +7691868 64 0 +7692034 0 0 +7692075 64 0 +7692226 0 0 +7692246 64 0 +7692396 0 0 +7692425 64 0 +7692575 0 0 +7692615 64 0 +7692744 0 0 +7692793 64 0 +7692916 0 0 +7695979 totRewards = 22 +7695979 128 16 +7696155 0 16 +7696179 0 0 +7696202 128 0 +7696409 0 0 +7696454 128 0 +7696545 0 0 +7696610 128 0 +7696807 0 0 +7696843 128 0 +7696940 0 0 +7697002 128 0 +7697228 0 0 +7697253 128 0 +7697365 0 0 +7697397 128 0 +7697511 0 0 +7697525 128 0 +7697646 0 0 +7697669 128 0 +7697800 0 0 +7697833 128 0 +7697956 0 0 +7697992 128 0 +7698120 0 0 +7698153 128 0 +7698280 0 0 +7698325 128 0 +7698442 0 0 +7698497 128 0 +7698624 0 0 +7698670 128 0 +7698792 0 0 +7698847 128 0 +7698956 0 0 +7699030 128 0 +7699117 0 0 +7699171 128 0 +7699287 0 0 +7699334 128 0 +7699449 0 0 +7699513 128 0 +7699611 0 0 +7699673 128 0 +7699780 0 0 +7699832 128 0 +7699949 0 0 +7700006 128 0 +7700113 0 0 +7700189 128 0 +7700266 0 0 +7703088 totRewards = 23 +7703088 64 8 +7703250 0 8 +7703277 64 8 +7703288 64 0 +7704632 0 0 +7704645 64 0 +7705600 0 0 +7705615 64 0 +7705765 0 0 +7705782 64 0 +7705935 0 0 +7705961 64 0 +7706103 0 0 +7706131 64 0 +7706267 0 0 +7706301 64 0 +7706431 0 0 +7706463 64 0 +7706601 0 0 +7706627 64 0 +7706764 0 0 +7706802 64 0 +7706930 0 0 +7706960 64 0 +7707407 0 0 +7707434 64 0 +7707562 0 0 +7707602 64 0 +7707904 0 0 +7707925 64 0 +7708075 0 0 +7708098 64 0 +7708229 0 0 +7708267 64 0 +7708371 0 0 +7711071 totRewards = 24 +7711071 128 16 +7711271 128 0 +7711287 0 0 +7711335 128 0 +7711541 0 0 +7711554 128 0 +7711669 0 0 +7711743 128 0 +7711797 0 0 +7711821 128 0 +7711918 0 0 +7711963 128 0 +7712057 0 0 +7712115 128 0 +7712350 0 0 +7712367 128 0 +7712487 0 0 +7712521 128 0 +7712797 0 0 +7712815 128 0 +7712933 0 0 +7712969 128 0 +7713089 0 0 +7713123 128 0 +7713252 0 0 +7713285 128 0 +7713398 0 0 +7713450 128 0 +7713560 0 0 +7713617 128 0 +7713738 0 0 +7713793 128 0 +7713912 0 0 +7713974 128 0 +7714078 0 0 +7714139 128 0 +7714242 0 0 +7714298 128 0 +7714402 0 0 +7714450 128 0 +7714556 0 0 +7714619 128 0 +7714715 0 0 +7714786 128 0 +7714871 0 0 +7714940 128 0 +7715030 0 0 +7715110 128 0 +7715204 0 0 +7715820 128 0 +7715841 0 0 +7715880 128 0 +7715896 0 0 +7716042 128 0 +7716050 0 0 +7718859 totRewards = 25 +7718859 64 8 +7719037 0 8 +7719059 0 0 +7719070 64 0 +7720252 0 0 +7720271 64 0 +7721045 0 0 +7721052 64 0 +7721203 0 0 +7721223 64 0 +7721865 0 0 +7721906 64 0 +7722021 0 0 +7722069 64 0 +7722175 0 0 +7724820 totRewards = 26 +7724820 128 16 +7725007 0 16 +7725020 0 0 +7725058 128 0 +7725272 0 0 +7725298 128 0 +7725406 0 0 +7725460 128 0 +7725661 0 0 +7725701 128 0 +7725799 0 0 +7725877 128 0 +7726100 0 0 +7726104 128 0 +7726227 0 0 +7726259 128 0 +7726377 0 0 +7726398 128 0 +7726533 0 0 +7726549 128 0 +7726683 0 0 +7726707 128 0 +7726844 0 0 +7726875 128 0 +7727015 0 0 +7727044 128 0 +7727172 0 0 +7727210 128 0 +7727333 0 0 +7727378 128 0 +7727492 0 0 +7727541 128 0 +7727649 0 0 +7727701 128 0 +7727819 0 0 +7727862 128 0 +7727984 0 0 +7728027 128 0 +7728146 0 0 +7728201 128 0 +7728307 0 0 +7728367 128 0 +7728477 0 0 +7728526 128 0 +7728646 0 0 +7728696 128 0 +7728805 0 0 +7728869 128 0 +7728900 0 0 +7728928 128 0 +7728972 0 0 +7729027 128 0 +7729129 0 0 +7729183 128 0 +7729286 0 0 +7729366 128 0 +7729498 0 0 +7729527 128 0 +7729646 0 0 +7729719 128 0 +7729814 0 0 +7729893 128 0 +7729988 0 0 +7730070 128 0 +7730141 0 0 +7732750 totRewards = 27 +7732750 64 8 +7732939 0 8 +7732950 0 0 +7732966 64 0 +7734138 0 0 +7734147 64 0 +7735096 0 0 +7735122 64 0 +7735434 0 0 +7735464 64 0 +7735589 0 0 +7735614 64 0 +7735744 0 0 +7735773 64 0 +7735913 0 0 +7735933 64 0 +7736087 0 0 +7736097 64 0 +7737351 0 0 +7737358 64 0 +7737527 0 0 +7737563 64 0 +7737905 0 0 +7737973 64 0 +7738060 0 0 +7738711 64 0 +7739104 0 0 +7739144 64 0 +7739275 0 0 +7739310 64 0 +7740248 0 0 +7740276 64 0 +7740402 0 0 +7740424 64 0 +7740623 0 0 +7740657 64 0 +7740921 0 0 +7740929 64 0 +7741081 0 0 +7741115 64 0 +7741257 0 0 +7741299 64 0 +7741393 0 0 +7744012 totRewards = 28 +7744012 128 16 +7744190 0 16 +7744212 0 0 +7744254 128 0 +7744591 0 0 +7744627 128 0 +7744754 0 0 +7744772 128 0 +7744882 0 0 +7744909 128 0 +7745016 0 0 +7745054 128 0 +7745173 0 0 +7745180 128 0 +7745316 0 0 +7745325 128 0 +7745451 0 0 +7745473 128 0 +7745605 0 0 +7745616 128 0 +7745755 0 0 +7745777 128 0 +7745908 0 0 +7745937 128 0 +7746070 0 0 +7746103 128 0 +7746228 0 0 +7746259 128 0 +7746394 0 0 +7746433 128 0 +7746551 0 0 +7746597 128 0 +7746711 0 0 +7746764 128 0 +7746864 0 0 +7746912 128 0 +7747023 0 0 +7747070 128 0 +7747181 0 0 +7747240 128 0 +7747344 0 0 +7747394 128 0 +7747508 0 0 +7747557 128 0 +7747668 0 0 +7747717 128 0 +7747845 0 0 +7747893 128 0 +7748015 0 0 +7748073 128 0 +7748178 0 0 +7748248 128 0 +7748328 0 0 +7751119 totRewards = 29 +7751119 64 8 +7751284 0 8 +7751297 64 8 +7751319 64 0 +7751936 0 0 +7751944 64 0 +7752075 0 0 +7752081 64 0 +7752352 0 0 +7752369 64 0 +7752495 0 0 +7752509 64 0 +7753308 0 0 +7753311 64 0 +7753472 0 0 +7753484 64 0 +7753615 0 0 +7753653 64 0 +7753782 0 0 +7753808 64 0 +7753948 0 0 +7753967 64 0 +7754108 0 0 +7754132 64 0 +7754263 0 0 +7754300 64 0 +7754433 0 0 +7754457 64 0 +7754590 0 0 +7754618 64 0 +7754934 0 0 +7754951 64 0 +7755096 0 0 +7755117 64 0 +7755269 0 0 +7755280 64 0 +7755421 0 0 +7755464 64 0 +7755583 0 0 +7755614 64 0 +7756426 0 0 +7756435 64 0 +7756575 0 0 +7756621 64 0 +7756735 0 0 +7759346 totRewards = 30 +7759346 128 16 +7759546 128 0 +7759735 0 0 +7759828 128 0 +7759895 0 0 +7760019 128 0 +7760549 0 0 +7760573 128 0 +7761183 0 0 +7761278 128 0 +7761837 0 0 +7761971 128 0 +7762397 0 0 +7770968 128 0 +7771508 0 0 +7771516 128 0 +7771520 0 0 +7771594 128 0 +7771670 0 0 +7778279 128 0 +7778726 0 0 +7778810 128 0 +7781612 0 0 +7781679 128 0 +7781859 0 0 +7781952 128 0 +7782647 0 0 +7782660 128 0 +7783611 0 0 +7783695 128 0 +7783820 0 0 +7783904 128 0 +7784028 0 0 +7784715 128 0 +7784748 0 0 +7784815 128 0 +7784963 0 0 +7784972 128 0 +7785128 0 0 +7785171 128 0 +7785323 0 0 +7785332 128 0 +7785458 0 0 +7785567 128 0 +7785644 0 0 +7785652 128 0 +7785984 0 0 +7786006 128 0 +7786181 0 0 +7798709 128 0 +7799137 0 0 +7799197 128 0 +7799717 0 0 +7799733 128 0 +7799853 0 0 +7799891 128 0 +7800003 0 0 +7800048 128 0 +7800153 0 0 +7800200 128 0 +7800302 0 0 +7800347 128 0 +7800452 0 0 +7800500 128 0 +7800618 0 0 +7803661 128 0 +7803970 0 0 +7804004 128 0 +7804144 0 0 +7813162 128 0 +7813218 0 0 +7813406 128 0 +7813806 0 0 +7813875 128 0 +7814107 0 0 +7823391 totRewards = 31 +7823391 64 8 +7823591 64 0 +7823656 0 0 +7823671 64 0 +7823881 0 0 +7823897 64 0 +7826008 0 0 +7826037 64 0 +7827566 0 0 +7827573 64 0 +7828584 0 0 +7828620 64 0 +7828743 0 0 +7834990 totRewards = 32 +7834990 128 16 +7835139 0 16 +7835167 128 16 +7835190 128 0 +7835449 0 0 +7835485 128 0 +7835835 0 0 +7835868 128 0 +7836110 0 0 +7836120 128 0 +7836236 0 0 +7836256 128 0 +7836367 0 0 +7836396 128 0 +7836513 0 0 +7836531 128 0 +7836651 0 0 +7836676 128 0 +7836789 0 0 +7836818 128 0 +7836938 0 0 +7836957 128 0 +7837076 0 0 +7837105 128 0 +7837232 0 0 +7837258 128 0 +7837401 0 0 +7837432 128 0 +7837572 0 0 +7837608 128 0 +7837734 0 0 +7837774 128 0 +7837900 0 0 +7837949 128 0 +7838076 0 0 +7838119 128 0 +7838241 0 0 +7838288 128 0 +7838407 0 0 +7838416 128 0 +7839140 0 0 +7839167 128 0 +7839306 0 0 +7839334 128 0 +7839474 0 0 +7839510 128 0 +7839648 0 0 +7839695 128 0 +7839813 0 0 +7839849 128 0 +7839976 0 0 +7843754 totRewards = 33 +7843754 64 8 +7843954 64 0 +7843967 0 0 +7843973 64 0 +7845978 0 0 +7845984 64 0 +7846131 0 0 +7846155 64 0 +7846469 0 0 +7846491 64 0 +7846622 0 0 +7846657 64 0 +7846788 0 0 +7846799 64 0 +7847249 0 0 +7847271 64 0 +7847410 0 0 +7847455 64 0 +7847541 0 0 +7850856 totRewards = 34 +7850856 128 16 +7851040 0 16 +7851056 0 0 +7851101 128 0 +7851704 0 0 +7851731 128 0 +7851818 0 0 +7851873 128 0 +7851970 0 0 +7851982 128 0 +7852120 0 0 +7852136 128 0 +7852248 0 0 +7852280 128 0 +7852389 0 0 +7852411 128 0 +7852683 0 0 +7852708 128 0 +7852833 0 0 +7852864 128 0 +7852987 0 0 +7853024 128 0 +7853146 0 0 +7853179 128 0 +7853313 0 0 +7853358 128 0 +7853472 0 0 +7853527 128 0 +7853635 0 0 +7853698 128 0 +7853797 0 0 +7853859 128 0 +7853955 0 0 +7854006 128 0 +7854110 0 0 +7854161 128 0 +7854262 0 0 +7854311 128 0 +7854419 0 0 +7854471 128 0 +7854573 0 0 +7854639 128 0 +7854738 0 0 +7854791 128 0 +7854898 0 0 +7854946 128 0 +7855057 0 0 +7855109 128 0 +7855227 0 0 +7855280 128 0 +7855404 0 0 +7855464 128 0 +7855564 0 0 +7855679 128 0 +7855711 0 0 +7858818 totRewards = 35 +7858818 64 8 +7859018 64 0 +7859614 0 0 +7859624 64 0 +7860163 0 0 +7860171 64 0 +7861607 0 0 +7861621 64 0 +7861768 0 0 +7861798 64 0 +7861923 0 0 +7861961 64 0 +7862077 0 0 +7862128 64 0 +7862227 0 0 +7865126 totRewards = 36 +7865126 128 16 +7865323 0 16 +7865326 0 0 +7865400 128 0 +7865601 0 0 +7865621 128 0 +7865723 0 0 +7865770 128 0 +7865984 0 0 +7866016 128 0 +7866108 0 0 +7866176 128 0 +7866543 0 0 +7866580 128 0 +7866846 0 0 +7866872 128 0 +7866999 0 0 +7867032 128 0 +7867154 0 0 +7867201 128 0 +7867325 0 0 +7867359 128 0 +7867483 0 0 +7867533 128 0 +7867646 0 0 +7867703 128 0 +7867828 0 0 +7867875 128 0 +7867993 0 0 +7868049 128 0 +7868165 0 0 +7868226 128 0 +7868323 0 0 +7868378 128 0 +7868473 0 0 +7868524 128 0 +7868631 0 0 +7868678 128 0 +7868784 0 0 +7868845 128 0 +7868939 0 0 +7869007 128 0 +7869106 0 0 +7869153 128 0 +7869260 0 0 +7869319 128 0 +7869430 0 0 +7869482 128 0 +7869593 0 0 +7869658 128 0 +7869757 0 0 +7869825 128 0 +7869914 0 0 +7870005 128 0 +7870057 0 0 +7873030 totRewards = 37 +7873030 64 8 +7873229 0 8 +7873230 0 0 +7873246 64 0 +7873983 0 0 +7874009 64 0 +7875354 0 0 +7875365 64 0 +7875515 0 0 +7875533 64 0 +7875672 0 0 +7875697 64 0 +7875846 0 0 +7875866 64 0 +7875997 0 0 +7876036 64 0 +7876162 0 0 +7876199 64 0 +7876323 0 0 +7876361 64 0 +7876488 0 0 +7876523 64 0 +7876651 0 0 +7876694 64 0 +7876820 0 0 +7876857 64 0 +7877649 0 0 +7877665 64 0 +7877800 0 0 +7877838 64 0 +7877965 0 0 +7878018 64 0 +7878114 0 0 +7881030 totRewards = 38 +7881030 128 16 +7881192 0 16 +7881230 0 0 +7881250 128 0 +7881470 0 0 +7881478 128 0 +7881591 0 0 +7881617 128 0 +7881863 0 0 +7881878 128 0 +7881978 0 0 +7882035 128 0 +7882400 0 0 +7882433 128 0 +7882567 0 0 +7882573 128 0 +7882714 0 0 +7882749 128 0 +7882875 0 0 +7882921 128 0 +7883043 0 0 +7883089 128 0 +7883214 0 0 +7883259 128 0 +7883386 0 0 +7883443 128 0 +7883561 0 0 +7883614 128 0 +7883727 0 0 +7883786 128 0 +7883878 0 0 +7883938 128 0 +7884042 0 0 +7884087 128 0 +7884198 0 0 +7884250 128 0 +7884353 0 0 +7884421 128 0 +7884510 0 0 +7884579 128 0 +7884678 0 0 +7884729 128 0 +7884846 0 0 +7884901 128 0 +7885012 0 0 +7885074 128 0 +7885174 0 0 +7885254 128 0 +7885376 0 0 +7885445 128 0 +7885529 0 0 +7889531 totRewards = 39 +7889531 64 8 +7889731 64 0 +7889761 0 0 +7889764 64 0 +7890353 0 0 +7890374 64 0 +7890499 0 0 +7890505 64 0 +7891707 0 0 +7891730 64 0 +7891877 0 0 +7891911 64 0 +7892050 0 0 +7892082 64 0 +7892211 0 0 +7892240 64 0 +7892367 0 0 +7892404 64 0 +7892531 0 0 +7892563 64 0 +7892695 0 0 +7892722 64 0 +7892868 0 0 +7892883 64 0 +7893208 0 0 +7893218 64 0 +7893348 0 0 +7893404 64 0 +7893488 0 0 +7896150 totRewards = 40 +7896150 128 16 +7896337 0 16 +7896350 0 0 +7896384 128 0 +7896596 0 0 +7896620 128 0 +7896725 0 0 +7896772 128 0 +7896980 0 0 +7897027 128 0 +7897108 0 0 +7897185 128 0 +7897545 0 0 +7897579 128 0 +7897712 0 0 +7897731 128 0 +7897867 0 0 +7897894 128 0 +7898018 0 0 +7898067 128 0 +7898187 0 0 +7898232 128 0 +7898352 0 0 +7898399 128 0 +7898507 0 0 +7898565 128 0 +7898657 0 0 +7898710 128 0 +7898815 0 0 +7898868 128 0 +7898969 0 0 +7899036 128 0 +7899125 0 0 +7899188 128 0 +7899299 0 0 +7899344 128 0 +7899457 0 0 +7899515 128 0 +7899621 0 0 +7899682 128 0 +7899788 0 0 +7899857 128 0 +7899953 0 0 +7900013 128 0 +7900115 0 0 +7900169 128 0 +7900275 0 0 +7900326 128 0 +7900429 0 0 +7900508 128 0 +7900621 0 0 +7900688 128 0 +7900791 0 0 +7900863 128 0 +7900965 0 0 +7901007 128 0 +7901129 0 0 +7901172 128 0 +7901285 0 0 +7901351 128 0 +7901449 0 0 +7901514 128 0 +7901622 0 0 +7901668 128 0 +7901786 0 0 +7901853 128 0 +7901936 0 0 +7902059 128 0 +7902084 0 0 +7902107 128 0 +7902161 0 0 +7902279 128 0 +7902313 0 0 +7902412 128 0 +7902446 0 0 +7902466 128 0 +7902507 0 0 +7902598 128 0 +7902669 0 0 +7905547 totRewards = 41 +7905547 64 8 +7905735 0 8 +7905747 0 0 +7905759 64 0 +7907837 0 0 +7907860 64 0 +7908013 0 0 +7908024 64 0 +7908328 0 0 +7908367 64 0 +7908481 0 0 +7908518 64 0 +7908635 0 0 +7908672 64 0 +7908961 0 0 +7908986 64 0 +7909114 0 0 +7909176 64 0 +7909231 0 0 +7912019 totRewards = 42 +7912019 128 16 +7912212 0 16 +7912219 0 0 +7912264 128 0 +7912454 0 0 +7912500 128 0 +7912588 0 0 +7912638 128 0 +7912841 0 0 +7912888 128 0 +7912974 0 0 +7913041 128 0 +7913413 0 0 +7913441 128 0 +7913699 0 0 +7913724 128 0 +7913853 0 0 +7913892 128 0 +7914005 0 0 +7914050 128 0 +7914171 0 0 +7914219 128 0 +7914337 0 0 +7914389 128 0 +7914507 0 0 +7914563 128 0 +7914681 0 0 +7914727 128 0 +7914842 0 0 +7914893 128 0 +7915001 0 0 +7915035 128 0 +7915167 0 0 +7915171 128 0 +7915299 0 0 +7915335 128 0 +7915457 0 0 +7915495 128 0 +7915616 0 0 +7915664 128 0 +7915808 0 0 +7915834 128 0 +7915970 0 0 +7916001 128 0 +7916121 0 0 +7916177 128 0 +7916274 0 0 +7919172 totRewards = 43 +7919172 64 8 +7919351 0 8 +7919359 64 8 +7919372 64 0 +7920098 0 0 +7920116 64 0 +7921447 0 0 +7921461 64 0 +7921602 0 0 +7921630 64 0 +7921769 0 0 +7921793 64 0 +7921947 0 0 +7921962 64 0 +7922118 0 0 +7922136 64 0 +7922270 0 0 +7922304 64 0 +7922761 0 0 +7922779 64 0 +7922919 0 0 +7922952 64 0 +7923096 0 0 +7923111 64 0 +7923239 0 0 +7923269 64 0 +7924484 0 0 +7927363 totRewards = 44 +7927363 128 16 +7927531 0 16 +7927563 0 0 +7927599 128 0 +7927793 0 0 +7927820 128 0 +7927920 0 0 +7927987 128 0 +7928176 0 0 +7928212 128 0 +7928306 0 0 +7928369 128 0 +7928592 0 0 +7928607 128 0 +7928731 0 0 +7928766 128 0 +7929039 0 0 +7929058 128 0 +7929183 0 0 +7929227 128 0 +7929342 0 0 +7929388 128 0 +7929500 0 0 +7929543 128 0 +7929670 0 0 +7929713 128 0 +7929829 0 0 +7929884 128 0 +7929990 0 0 +7930047 128 0 +7930145 0 0 +7930196 128 0 +7930300 0 0 +7930357 128 0 +7930465 0 0 +7930507 128 0 +7930622 0 0 +7930675 128 0 +7930784 0 0 +7930844 128 0 +7930943 0 0 +7931008 128 0 +7931097 0 0 +7931161 128 0 +7931267 0 0 +7931325 128 0 +7931412 0 0 +7931479 128 0 +7931537 0 0 +7931635 128 0 +7931736 0 0 +7931802 128 0 +7931882 0 0 +7932056 128 0 +7932077 0 0 +7932323 128 0 +7932341 0 0 +7932532 128 0 +7932567 0 0 +7932648 128 0 +7932722 0 0 +7932796 128 0 +7932900 0 0 +7932956 128 0 +7933070 0 0 +7933137 128 0 +7933227 0 0 +7933318 128 0 +7933372 0 0 +7936145 totRewards = 45 +7936145 64 8 +7936331 0 8 +7936345 0 0 +7936351 64 0 +7938670 0 0 +7938678 64 0 +7938832 0 0 +7938847 64 0 +7938994 0 0 +7939027 64 0 +7939141 0 0 +7939184 64 0 +7939299 0 0 +7939351 64 0 +7939445 0 0 +7942321 totRewards = 46 +7942321 128 16 +7942500 0 16 +7942521 0 0 +7942553 128 0 +7942738 0 0 +7942769 128 0 +7942881 0 0 +7942940 128 0 +7943134 0 0 +7943169 128 0 +7943260 0 0 +7943329 128 0 +7943406 0 0 +7943421 128 0 +7943545 0 0 +7943563 128 0 +7943677 0 0 +7943703 128 0 +7944125 0 0 +7944158 128 0 +7944284 0 0 +7944305 128 0 +7944442 0 0 +7944471 128 0 +7944599 0 0 +7944643 128 0 +7944760 0 0 +7944816 128 0 +7944939 0 0 +7944984 128 0 +7945100 0 0 +7945140 128 0 +7945255 0 0 +7945301 128 0 +7945571 0 0 +7945586 128 0 +7945718 0 0 +7945760 128 0 +7945882 0 0 +7945921 128 0 +7946053 0 0 +7946086 128 0 +7946220 0 0 +7946260 128 0 +7946378 0 0 +7946433 128 0 +7946524 0 0 +7946612 128 0 +7946674 0 0 +7949564 totRewards = 47 +7949564 64 8 +7949764 64 0 +7949764 0 0 +7949783 64 0 +7950950 0 0 +7950954 64 0 +7952222 0 0 +7952250 64 0 +7952562 0 0 +7952598 64 0 +7952723 0 0 +7952758 64 0 +7952880 0 0 +7952917 64 0 +7953050 0 0 +7953078 64 0 +7953208 0 0 +7953249 64 0 +7953367 0 0 +7953409 64 0 +7953523 0 0 +7956542 totRewards = 48 +7956542 128 16 +7956715 0 16 +7956742 0 0 +7956753 128 0 +7956970 0 0 +7956992 128 0 +7957107 0 0 +7957183 128 0 +7957352 0 0 +7957394 128 0 +7957491 0 0 +7957533 128 0 +7957780 0 0 +7957798 128 0 +7957913 0 0 +7957946 128 0 +7958058 0 0 +7958090 128 0 +7958212 0 0 +7958231 128 0 +7958357 0 0 +7958393 128 0 +7958511 0 0 +7958556 128 0 +7958677 0 0 +7958711 128 0 +7958833 0 0 +7958875 128 0 +7959005 0 0 +7959060 128 0 +7959173 0 0 +7959226 128 0 +7959332 0 0 +7959383 128 0 +7959499 0 0 +7959552 128 0 +7959658 0 0 +7959717 128 0 +7959818 0 0 +7959877 128 0 +7959959 0 0 +7960024 128 0 +7960140 0 0 +7960205 128 0 +7960301 0 0 +7960365 128 0 +7960469 0 0 +7960524 128 0 +7960599 0 0 +7960686 128 0 +7960810 0 0 +7960851 128 0 +7960962 0 0 +7961027 128 0 +7961117 0 0 +7961204 128 0 +7961295 0 0 +7964706 totRewards = 49 +7964706 64 8 +7964906 64 0 +7966868 0 0 +7966880 64 0 +7967019 0 0 +7967049 64 0 +7967179 0 0 +7967224 64 0 +7967335 0 0 +7967369 64 0 +7967490 0 0 +7967521 64 0 +7967649 0 0 +7967681 64 0 +7967814 0 0 +7967829 64 0 +7968780 0 0 +7968795 64 0 +7968925 0 0 +7968947 64 0 +7969095 0 0 +7969109 64 0 +7969456 0 0 +7969478 64 0 +7969615 0 0 +7969659 64 0 +7969793 0 0 +7969820 64 0 +7969943 0 0 +7969988 64 0 +7970089 0 0 +7970199 64 0 +7970210 0 0 +7972772 totRewards = 50 +7972772 128 16 +7972924 0 16 +7972972 0 0 +7972975 128 0 +7973169 0 0 +7973199 128 0 +7973306 0 0 +7973375 128 0 +7973442 0 0 +7973458 128 0 +7973560 0 0 +7973591 128 0 +7973689 0 0 +7973740 128 0 +7973845 0 0 +7973852 128 0 +7973973 0 0 +7973988 128 0 +7974111 0 0 +7974138 128 0 +7974403 0 0 +7974429 128 0 +7974551 0 0 +7974581 128 0 +7974707 0 0 +7974748 128 0 +7974875 0 0 +7974905 128 0 +7975034 0 0 +7975077 128 0 +7975198 0 0 +7975249 128 0 +7975365 0 0 +7975419 128 0 +7975531 0 0 +7975595 128 0 +7975677 0 0 +7975763 128 0 +7975835 0 0 +7975909 128 0 +7976004 0 0 +7976053 128 0 +7976170 0 0 +7976219 128 0 +7976333 0 0 +7976381 128 0 +7976490 0 0 +7976543 128 0 +7976648 0 0 +7976714 128 0 +7976793 0 0 +7976870 128 0 +7977000 0 0 +7977036 128 0 +7977156 0 0 +7977203 128 0 +7977313 0 0 +7977377 128 0 +7977451 0 0 +7981685 totRewards = 51 +7981685 64 8 +7981885 64 0 +7982588 0 0 +7982597 64 0 +7983005 0 0 +7983015 64 0 +7983943 0 0 +7983946 64 0 +7984103 0 0 +7984115 64 0 +7984423 0 0 +7984436 64 0 +7984579 0 0 +7984609 64 0 +7984738 0 0 +7984769 64 0 +7984903 0 0 +7984939 64 0 +7985073 0 0 +7985101 64 0 +7985231 0 0 +7985272 64 0 +7985729 0 0 +7985747 64 0 +7985888 0 0 +7985924 64 0 +7986047 0 0 +7988662 totRewards = 52 +7988662 128 16 +7988827 0 16 +7988862 0 0 +7988878 128 0 +7989246 0 0 +7989346 128 0 +7991807 0 0 +7991816 128 0 +7991952 0 0 +7991975 128 0 +7992111 0 0 +7992124 128 0 +7992438 0 0 +7992463 128 0 +7992593 0 0 +7992639 128 0 +7992759 0 0 +7992802 128 0 +7992925 0 0 +7992971 128 0 +7993465 0 0 +7993499 128 0 +7993632 0 0 +7993687 128 0 +7993808 0 0 +7993866 128 0 +7993991 0 0 +7994042 128 0 +7994185 0 0 +7994196 128 0 +7994335 0 0 +7994388 128 0 +7994508 0 0 +7994574 128 0 +7995282 0 0 +7995287 128 0 +7995764 0 0 +7995792 128 0 +7995933 0 0 +7995977 128 0 +7996111 0 0 +7996148 128 0 +7996268 0 0 +7996308 128 0 +7996426 0 0 +7996479 128 0 +7996596 0 0 +7996641 128 0 +7996771 0 0 +8003049 128 0 +8003174 0 0 +8012705 128 0 +8012750 0 0 +8012815 128 0 +8013021 0 0 +8013046 128 0 +8013889 0 0 +8013917 128 0 +8014030 0 0 +8014079 128 0 +8014189 0 0 +8014207 128 0 +8014319 0 0 +8014357 128 0 +8014470 0 0 +8014499 128 0 +8014621 0 0 +8014665 128 0 +8014770 0 0 +8014835 128 0 +8014905 0 0 +8018396 totRewards = 53 +8018396 64 8 +8018426 0 8 +8018596 0 0 +8029486 64 0 +8029770 0 0 +8029782 64 0 +8031102 0 0 +8031129 64 0 +8031239 0 0 +8031275 64 0 +8031387 0 0 +8031407 64 0 +8031872 0 0 +8035335 64 0 +8035389 0 0 +8035423 64 0 +8036330 0 0 +8036340 64 0 +8036844 0 0 +8036869 64 0 +8037008 0 0 +8037055 64 0 +8037175 0 0 +8037229 64 0 +8037354 0 0 +8037464 64 0 +8037474 0 0 +8037506 64 0 +8037540 0 0 +8049713 totRewards = 54 +8049713 128 16 +8049913 128 0 +8050505 0 0 +8050526 128 0 +8051015 0 0 +8051041 128 0 +8051141 0 0 +8051158 128 0 +8051416 0 0 +8051437 128 0 +8051560 0 0 +8051581 128 0 +8051855 0 0 +8051871 128 0 +8052000 0 0 +8052022 128 0 +8052139 0 0 +8052167 128 0 +8052305 0 0 +8052329 128 0 +8052466 0 0 +8052493 128 0 +8052619 0 0 +8052656 128 0 +8052774 0 0 +8052811 128 0 +8052924 0 0 +8052965 128 0 +8053087 0 0 +8053103 128 0 +8053224 0 0 +8053249 128 0 +8053366 0 0 +8053395 128 0 +8053517 0 0 +8053547 128 0 +8053678 0 0 +8053717 128 0 +8053852 0 0 +8053873 128 0 +8054015 0 0 +8054053 128 0 +8054193 0 0 +8054221 128 0 +8054373 0 0 +8054400 128 0 +8054531 0 0 +8054567 128 0 +8054690 0 0 +8054743 128 0 +8054853 0 0 +8054910 128 0 +8055035 0 0 +8055094 128 0 +8055216 0 0 +8055413 128 0 +8055504 0 0 +8055572 128 0 +8055618 0 0 +8055718 128 0 +8055755 0 0 +8061519 totRewards = 55 +8061519 64 8 +8061719 64 0 +8061777 0 0 +8061799 64 0 +8063502 0 0 +8063517 64 0 +8064335 0 0 +8064354 64 0 +8064518 0 0 +8064529 64 0 +8065104 0 0 +8065129 64 0 +8065785 0 0 +8077601 totRewards = 56 +8077601 128 16 +8077801 128 0 +8078493 0 0 +8078510 128 0 +8078622 0 0 +8078650 128 0 +8078743 0 0 +8078774 128 0 +8078881 0 0 +8078908 128 0 +8079013 0 0 +8079045 128 0 +8079142 0 0 +8079173 128 0 +8079283 0 0 +8079310 128 0 +8079433 0 0 +8079451 128 0 +8079573 0 0 +8079611 128 0 +8079718 0 0 +8079758 128 0 +8079866 0 0 +8079905 128 0 +8080022 0 0 +8080066 128 0 +8080183 0 0 +8080227 128 0 +8080339 0 0 +8080389 128 0 +8080491 0 0 +8080553 128 0 +8080649 0 0 +8080719 128 0 +8080818 0 0 +8080946 128 0 +8080976 0 0 +8081195 128 0 +8081288 0 0 +8081325 128 0 +8081467 0 0 +8081510 128 0 +8081636 0 0 +8081676 128 0 +8081799 0 0 +8081841 128 0 +8081958 0 0 +8082018 128 0 +8082121 0 0 +8092708 totRewards = 57 +8092708 64 8 +8092908 64 0 +8095791 0 0 +8095819 64 0 +8096103 0 0 +8096113 64 0 +8096566 0 0 +8096612 64 0 +8096710 0 0 +8100081 totRewards = 58 +8100081 128 16 +8100281 128 0 +8100404 0 0 +8100420 128 0 +8100991 0 0 +8101042 128 0 +8101131 0 0 +8101144 128 0 +8101266 0 0 +8101286 128 0 +8101388 0 0 +8101425 128 0 +8101522 0 0 +8101555 128 0 +8101661 0 0 +8101688 128 0 +8101800 0 0 +8101834 128 0 +8101953 0 0 +8101980 128 0 +8102091 0 0 +8102123 128 0 +8102243 0 0 +8102279 128 0 +8102395 0 0 +8102443 128 0 +8102553 0 0 +8102605 128 0 +8102715 0 0 +8102763 128 0 +8102889 0 0 +8102933 128 0 +8103060 0 0 +8103111 128 0 +8103224 0 0 +8103278 128 0 +8103379 0 0 +8103443 128 0 +8103517 0 0 +8103594 128 0 +8103673 0 0 +8103731 128 0 +8103846 0 0 +8103892 128 0 +8103998 0 0 +8104059 128 0 +8104153 0 0 +8104204 128 0 +8104318 0 0 +8104354 128 0 +8104477 0 0 +8104525 128 0 +8104631 0 0 +8104704 128 0 +8104783 0 0 +8108593 totRewards = 59 +8108593 64 8 +8108793 64 0 +8108799 0 0 +8108811 64 0 +8111156 0 0 +8111170 64 0 +8111314 0 0 +8111343 64 0 +8111490 0 0 +8111510 64 0 +8111661 0 0 +8111690 64 0 +8111819 0 0 +8111864 64 0 +8111972 0 0 +8112035 64 0 +8112134 0 0 +8112172 64 0 +8112310 0 0 +8112334 64 0 +8112490 0 0 +8112505 64 0 +8112655 0 0 +8112709 64 0 +8112827 0 0 +8117626 totRewards = 60 +8117626 128 16 +8117820 0 16 +8117826 0 0 +8117853 128 0 +8118305 0 0 +8118321 128 0 +8118555 0 0 +8118585 128 0 +8118702 0 0 +8118719 128 0 +8118837 0 0 +8118852 128 0 +8118967 0 0 +8118993 128 0 +8119114 0 0 +8119139 128 0 +8119261 0 0 +8119287 128 0 +8119405 0 0 +8119440 128 0 +8119556 0 0 +8119597 128 0 +8119716 0 0 +8119756 128 0 +8119872 0 0 +8119918 128 0 +8120035 0 0 +8120086 128 0 +8120199 0 0 +8120246 128 0 +8120351 0 0 +8120409 128 0 +8120503 0 0 +8120552 128 0 +8120659 0 0 +8120715 128 0 +8120828 0 0 +8120875 128 0 +8120988 0 0 +8121041 128 0 +8121145 0 0 +8121214 128 0 +8121281 0 0 +8121380 128 0 +8121399 0 0 +8121411 128 0 +8121433 0 0 +8124531 totRewards = 61 +8124531 64 8 +8124716 0 8 +8124731 0 0 +8124742 64 0 +8126943 0 0 +8126968 64 0 +8127102 0 0 +8127143 64 0 +8127261 0 0 +8127308 64 0 +8127422 0 0 +8127458 64 0 +8127601 0 0 +8127621 64 0 +8127761 0 0 +8127820 64 0 +8127913 0 0 +8127977 64 0 +8128253 0 0 +8131322 totRewards = 62 +8131322 128 16 +8131479 0 16 +8131522 0 0 +8131568 128 0 +8132034 0 0 +8132047 128 0 +8132175 0 0 +8132196 128 0 +8132282 0 0 +8132322 128 0 +8132579 0 0 +8132593 128 0 +8132716 0 0 +8132740 128 0 +8133001 0 0 +8133032 128 0 +8133158 0 0 +8133175 128 0 +8133309 0 0 +8133344 128 0 +8133467 0 0 +8133512 128 0 +8133626 0 0 +8133676 128 0 +8133793 0 0 +8133841 128 0 +8133966 0 0 +8134005 128 0 +8134131 0 0 +8134185 128 0 +8134292 0 0 +8134349 128 0 +8134446 0 0 +8134504 128 0 +8134604 0 0 +8134655 128 0 +8134760 0 0 +8134813 128 0 +8134926 0 0 +8134974 128 0 +8135090 0 0 +8135148 128 0 +8135258 0 0 +8135337 128 0 +8135361 0 0 +8138305 totRewards = 63 +8138305 64 8 +8138458 0 8 +8138475 64 8 +8138505 64 0 +8139198 0 0 +8139210 64 0 +8140671 0 0 +8140689 64 0 +8140842 0 0 +8140861 64 0 +8141008 0 0 +8141038 64 0 +8141176 0 0 +8141220 64 0 +8141349 0 0 +8141402 64 0 +8141509 0 0 +8148584 totRewards = 64 +8148584 128 16 +8148780 0 16 +8148784 0 0 +8148912 128 0 +8149943 0 0 +8149947 128 0 +8150647 0 0 +8150658 128 0 +8151120 0 0 +8151142 128 0 +8151270 0 0 +8151293 128 0 +8151431 0 0 +8151442 128 0 +8151581 0 0 +8151625 128 0 +8151743 0 0 +8151794 128 0 +8151916 0 0 +8151959 128 0 +8152075 0 0 +8152120 128 0 +8152232 0 0 +8152282 128 0 +8152391 0 0 +8152447 128 0 +8152554 0 0 +8152612 128 0 +8152718 0 0 +8152774 128 0 +8152869 0 0 +8152937 128 0 +8153042 0 0 +8153086 128 0 +8153195 0 0 +8153247 128 0 +8153363 0 0 +8153412 128 0 +8153521 0 0 +8153569 128 0 +8153674 0 0 +8153725 128 0 +8153825 0 0 +8157369 128 0 +8157382 0 0 +8169714 totRewards = 65 +8169714 64 8 +8169914 64 0 +8170381 0 0 +8170395 64 0 +8170508 0 0 +8170520 64 0 +8170632 0 0 +8170651 64 0 +8170757 0 0 +8170775 64 0 +8171163 0 0 +8171179 64 0 +8172073 0 0 +8172083 64 0 +8172243 0 0 +8172268 64 0 +8172577 0 0 +8172610 64 0 +8172735 0 0 +8172785 64 0 +8172902 0 0 +8172956 64 0 +8173064 0 0 +8173112 64 0 +8173241 0 0 +8173288 64 0 +8173403 0 0 +8177958 totRewards = 66 +8177958 128 16 +8178158 128 0 +8178197 0 0 +8178221 128 0 +8178553 0 0 +8178574 128 0 +8178686 0 0 +8178731 128 0 +8178793 0 0 +8178838 128 0 +8178950 0 0 +8178969 128 0 +8179080 0 0 +8179096 128 0 +8179207 0 0 +8179235 128 0 +8179342 0 0 +8179366 128 0 +8179481 0 0 +8179504 128 0 +8179624 0 0 +8179649 128 0 +8179771 0 0 +8179811 128 0 +8179930 0 0 +8179965 128 0 +8180087 0 0 +8180128 128 0 +8180239 0 0 +8180287 128 0 +8180403 0 0 +8180451 128 0 +8180556 0 0 +8180612 128 0 +8180705 0 0 +8180761 128 0 +8180863 0 0 +8180909 128 0 +8181022 0 0 +8181084 128 0 +8181173 0 0 +8181238 128 0 +8181342 0 0 +8181391 128 0 +8181495 0 0 +8181555 128 0 +8181656 0 0 +8181729 128 0 +8181782 0 0 +8184908 totRewards = 67 +8184908 64 8 +8185108 64 0 +8185118 0 0 +8185125 64 0 +8186815 0 0 +8186824 64 0 +8187303 0 0 +8187325 64 0 +8187458 0 0 +8187486 64 0 +8187625 0 0 +8187645 64 0 +8187778 0 0 +8187817 64 0 +8188090 0 0 +8188123 64 0 +8188246 0 0 +8188316 64 0 +8188387 0 0 +8191424 totRewards = 68 +8191424 128 16 +8191610 0 16 +8191624 0 0 +8191647 128 0 +8191866 0 0 +8191900 128 0 +8191987 0 0 +8192032 128 0 +8192246 0 0 +8192281 128 0 +8192384 0 0 +8192463 128 0 +8192504 0 0 +8192538 128 0 +8192655 0 0 +8192673 128 0 +8192795 0 0 +8192819 128 0 +8192935 0 0 +8192971 128 0 +8193089 0 0 +8193114 128 0 +8193226 0 0 +8193259 128 0 +8193377 0 0 +8193418 128 0 +8193532 0 0 +8193573 128 0 +8193687 0 0 +8193738 128 0 +8193850 0 0 +8193914 128 0 +8194019 0 0 +8194078 128 0 +8194175 0 0 +8194239 128 0 +8194321 0 0 +8194378 128 0 +8194468 0 0 +8194533 128 0 +8194630 0 0 +8194685 128 0 +8194786 0 0 +8194835 128 0 +8194940 0 0 +8195005 128 0 +8195104 0 0 +8195162 128 0 +8195263 0 0 +8195324 128 0 +8195424 0 0 +8195480 128 0 +8195577 0 0 +8195643 128 0 +8195723 0 0 +8195795 128 0 +8195897 0 0 +8195945 128 0 +8196058 0 0 +8196114 128 0 +8196227 0 0 +8196350 128 0 +8196369 0 0 +8199703 totRewards = 69 +8199703 64 8 +8199885 0 8 +8199903 0 0 +8199913 64 0 +8200647 0 0 +8200655 64 0 +8201347 0 0 +8201359 64 0 +8201635 0 0 +8201662 64 0 +8202120 0 0 +8202138 64 0 +8202274 0 0 +8202306 64 0 +8202442 0 0 +8202473 64 0 +8202596 0 0 +8202642 64 0 +8202750 0 0 +8202800 64 0 +8202908 0 0 +8202947 64 0 +8203076 0 0 +8203126 64 0 +8203231 0 0 +8206243 totRewards = 70 +8206243 128 16 +8206443 128 0 +8206484 0 0 +8206528 128 0 +8206896 0 0 +8206917 128 0 +8207037 0 0 +8207066 128 0 +8207170 0 0 +8207193 128 0 +8207325 0 0 +8207343 128 0 +8207470 0 0 +8207506 128 0 +8207622 0 0 +8207660 128 0 +8207791 0 0 +8207822 128 0 +8207933 0 0 +8207984 128 0 +8208088 0 0 +8208159 128 0 +8208267 0 0 +8208314 128 0 +8208423 0 0 +8208483 128 0 +8208525 0 0 +8208546 128 0 +8208576 0 0 +8208645 128 0 +8208729 0 0 +8208789 128 0 +8208875 0 0 +8208935 128 0 +8209035 0 0 +8209090 128 0 +8209190 0 0 +8209250 128 0 +8209354 0 0 +8209413 128 0 +8209516 0 0 +8209588 128 0 +8209656 0 0 +8209756 128 0 +8209828 0 0 +8213075 totRewards = 71 +8213075 64 8 +8213257 0 8 +8213264 64 8 +8213275 64 0 +8213998 0 0 +8214014 64 0 +8214422 0 0 +8214434 64 0 +8214718 0 0 +8214728 64 0 +8215513 0 0 +8215534 64 0 +8215678 0 0 +8215705 64 0 +8216025 0 0 +8216049 64 0 +8216185 0 0 +8216226 64 0 +8216343 0 0 +8216389 64 0 +8216501 0 0 +8216551 64 0 +8216650 0 0 +8219650 totRewards = 72 +8219650 128 16 +8219802 0 16 +8219850 0 0 +8219880 128 0 +8220487 0 0 +8220503 128 0 +8220604 0 0 +8220653 128 0 +8220755 0 0 +8220765 128 0 +8220898 0 0 +8220913 128 0 +8221031 0 0 +8221071 128 0 +8221341 0 0 +8221378 128 0 +8221500 0 0 +8221542 128 0 +8221660 0 0 +8221708 128 0 +8221826 0 0 +8221879 128 0 +8221994 0 0 +8222048 128 0 +8222163 0 0 +8222213 128 0 +8222331 0 0 +8222383 128 0 +8222488 0 0 +8222558 128 0 +8222645 0 0 +8222701 128 0 +8222803 0 0 +8222867 128 0 +8222969 0 0 +8223030 128 0 +8223127 0 0 +8223184 128 0 +8223287 0 0 +8223341 128 0 +8223445 0 0 +8223499 128 0 +8223600 0 0 +8223678 128 0 +8223724 0 0 +8223807 128 0 +8223886 0 0 +8223978 128 0 +8224064 0 0 +8224122 128 0 +8224238 0 0 +8224295 128 0 +8224393 0 0 +8224469 128 0 +8224573 0 0 +8224646 128 0 +8224720 0 0 +8227852 totRewards = 73 +8227852 64 8 +8228014 0 8 +8228041 64 8 +8228052 64 0 +8229493 0 0 +8229499 64 0 +8229639 0 0 +8229644 64 0 +8230119 0 0 +8230133 64 0 +8230285 0 0 +8230301 64 0 +8230449 0 0 +8230472 64 0 +8230614 0 0 +8230640 64 0 +8230776 0 0 +8230826 64 0 +8230944 0 0 +8231006 64 0 +8231120 0 0 +8231159 64 0 +8231283 0 0 +8231342 64 0 +8231437 0 0 +8236228 totRewards = 74 +8236228 128 16 +8236363 0 16 +8236422 128 16 +8236428 128 0 +8237434 0 0 +8237455 128 0 +8237565 0 0 +8237590 128 0 +8237710 0 0 +8237720 128 0 +8237851 0 0 +8237873 128 0 +8237996 0 0 +8238028 128 0 +8238142 0 0 +8238173 128 0 +8238296 0 0 +8238317 128 0 +8238453 0 0 +8238479 128 0 +8238615 0 0 +8238640 128 0 +8238767 0 0 +8238803 128 0 +8238925 0 0 +8238966 128 0 +8239092 0 0 +8239131 128 0 +8239255 0 0 +8239300 128 0 +8239414 0 0 +8239466 128 0 +8239578 0 0 +8239630 128 0 +8239736 0 0 +8239788 128 0 +8239904 0 0 +8239964 128 0 +8240057 0 0 +8240098 128 0 +8240191 0 0 +8240262 128 0 +8240351 0 0 +8240412 128 0 +8240522 0 0 +8240586 128 0 +8240686 0 0 +8250887 totRewards = 75 +8250887 64 8 +8251087 64 0 +8251130 0 0 +8251166 64 0 +8251225 0 0 +8251239 64 0 +8253956 0 0 +8253968 64 0 +8254283 0 0 +8254307 64 0 +8254440 0 0 +8254469 64 0 +8254599 0 0 +8254639 64 0 +8254771 0 0 +8254809 64 0 +8254960 0 0 +8254970 64 0 +8255117 0 0 +8255153 64 0 +8255261 0 0 +8255323 64 0 +8255449 0 0 +8255459 64 0 +8255600 0 0 +8255655 64 0 +8255745 0 0 +8279322 totRewards = 76 +8279322 128 16 +8279522 128 0 +8279579 0 0 +8279617 128 0 +8279830 0 0 +8279841 128 0 +8279959 0 0 +8279983 128 0 +8280196 0 0 +8280230 128 0 +8280339 0 0 +8280349 128 0 +8280588 0 0 +8280618 128 0 +8280738 0 0 +8280751 128 0 +8281031 0 0 +8281076 128 0 +8281187 0 0 +8281232 128 0 +8281357 0 0 +8281390 128 0 +8281518 0 0 +8281555 128 0 +8281679 0 0 +8281739 128 0 +8281854 0 0 +8281917 128 0 +8282025 0 0 +8282088 128 0 +8282196 0 0 +8282283 128 0 +8282378 0 0 +8282440 128 0 +8282554 0 0 +8282599 128 0 +8282719 0 0 +8282763 128 0 +8282899 0 0 +8282967 128 0 +8283097 0 0 +8283149 128 0 +8283279 0 0 +8283363 128 0 +8283464 0 0 +8283516 128 0 +8283666 0 0 +8283703 128 0 +8283824 0 0 +8283886 128 0 +8283996 0 0 +8284062 128 0 +8284182 0 0 +8284252 128 0 +8284365 0 0 +8284448 128 0 +8284541 0 0 +8284598 128 0 +8284719 0 0 +8286738 128 0 +8286867 0 0 +8290340 totRewards = 77 +8290339 64 8 +8290540 64 0 +8290590 0 0 +8290601 64 0 +8291851 0 0 +8291862 64 0 +8292282 0 0 +8292292 64 0 +8292432 0 0 +8292444 64 0 +8292585 0 0 +8292603 64 0 +8292743 0 0 +8292767 64 0 +8292903 0 0 +8292929 64 0 +8293055 0 0 +8293084 64 0 +8293206 0 0 +8293239 64 0 +8293362 0 0 +8293378 64 0 +8293522 0 0 +8293538 64 0 +8293676 0 0 +8293703 64 0 +8293837 0 0 +8293860 64 0 +8293983 0 0 +8294017 64 0 +8294140 0 0 +8294168 64 0 +8294299 0 0 +8294324 64 0 +8294438 0 0 +8294463 64 0 +8294577 0 0 +8294624 64 0 +8294933 0 0 +8294971 64 0 +8295097 0 0 +8295149 64 0 +8295259 0 0 +8295316 64 0 +8295411 0 0 +8312427 totRewards = 78 +8312427 128 16 +8312443 0 16 +8312507 128 16 +8312627 128 0 +8312634 0 0 +8312721 128 0 +8312796 0 0 +8312819 128 0 +8312837 0 0 +8312909 128 0 +8313026 0 0 +8313041 128 0 +8313944 0 0 +8313963 128 0 +8314082 0 0 +8314103 128 0 +8314226 0 0 +8314245 128 0 +8314359 0 0 +8314390 128 0 +8314507 0 0 +8314538 128 0 +8314658 0 0 +8314689 128 0 +8314800 0 0 +8314839 128 0 +8314965 0 0 +8315010 128 0 +8315129 0 0 +8315179 128 0 +8315284 0 0 +8315342 128 0 +8315446 0 0 +8315500 128 0 +8315605 0 0 +8315662 128 0 +8315773 0 0 +8315790 128 0 +8316217 0 0 +8316234 128 0 +8316371 0 0 +8316406 128 0 +8316539 0 0 +8316561 128 0 +8316712 0 0 +8316732 128 0 +8316876 0 0 +8316902 128 0 +8317031 0 0 +8317071 128 0 +8317194 0 0 +8317254 128 0 +8317355 0 0 +8324400 totRewards = 79 +8324400 64 8 +8324595 0 8 +8324600 0 0 +8324630 64 0 +8325107 0 0 +8325130 64 0 +8328538 0 0 +8328562 64 0 +8328718 0 0 +8328727 64 0 +8330048 0 0 +8330059 64 0 +8330437 0 0 +8330462 64 0 +8330627 0 0 +8330639 64 0 +8330802 0 0 +8330829 64 0 +8330948 0 0 +8331033 64 0 +8331042 0 0 +8336747 totRewards = 80 +8336747 128 16 +8336947 128 0 +8337131 0 0 +8337170 128 0 +8337664 0 0 +8337671 128 0 +8337778 0 0 +8337808 128 0 +8337916 0 0 +8337946 128 0 +8338049 0 0 +8338083 128 0 +8338180 0 0 +8338220 128 0 +8338330 0 0 +8338363 128 0 +8338466 0 0 +8338506 128 0 +8338617 0 0 +8338661 128 0 +8338767 0 0 +8338812 128 0 +8338932 0 0 +8338983 128 0 +8339098 0 0 +8339157 128 0 +8339270 0 0 +8339332 128 0 +8339452 0 0 +8339515 128 0 +8339635 0 0 +8339686 128 0 +8339806 0 0 +8339853 128 0 +8339969 0 0 +8339993 128 0 +8340265 0 0 +8340281 128 0 +8340408 0 0 +8340456 128 0 +8340569 0 0 +8340613 128 0 +8340723 0 0 +8340772 128 0 +8340884 0 0 +8340936 128 0 +8341039 0 0 +8341088 128 0 +8341198 0 0 +8341257 128 0 +8341365 0 0 +8341425 128 0 +8341533 0 0 +8341600 128 0 +8341701 0 0 +8341774 128 0 +8341866 0 0 +8341940 128 0 +8342058 0 0 +8342106 128 0 +8342187 0 0 +8342856 128 0 +8342930 0 0 +8343078 128 0 +8345964 0 0 +8350233 totRewards = 81 +8350233 64 8 +8350422 0 8 +8350428 64 8 +8350433 64 0 +8352812 0 0 +8352825 64 0 +8352980 0 0 +8352999 64 0 +8353143 0 0 +8353172 64 0 +8353304 0 0 +8353343 64 0 +8353469 0 0 +8353500 64 0 +8353628 0 0 +8353650 64 0 +8353797 0 0 +8353820 64 0 +8353968 0 0 +8353982 64 0 +8354299 0 0 +8354323 64 0 +8354453 0 0 +8354512 64 0 +8354600 0 0 +8357863 totRewards = 82 +8357863 128 16 +8358029 0 16 +8358063 0 0 +8358127 128 0 +8358328 0 0 +8358343 128 0 +8358444 0 0 +8358485 128 0 +8358833 0 0 +8358894 128 0 +8359134 0 0 +8359143 128 0 +8359253 0 0 +8359289 128 0 +8359394 0 0 +8359423 128 0 +8359551 0 0 +8359560 128 0 +8359686 0 0 +8359723 128 0 +8359837 0 0 +8359875 128 0 +8360005 0 0 +8360039 128 0 +8360163 0 0 +8360213 128 0 +8360331 0 0 +8360382 128 0 +8360496 0 0 +8360561 128 0 +8360673 0 0 +8360742 128 0 +8360851 0 0 +8360922 128 0 +8361023 0 0 +8361095 128 0 +8361171 0 0 +8361409 128 0 +8361510 0 0 +8361580 128 0 +8361657 0 0 +8361731 128 0 +8361838 0 0 +8361896 128 0 +8361991 0 0 +8362067 128 0 +8362161 0 0 +8362249 128 0 +8362257 0 0 +8366125 totRewards = 83 +8366125 64 8 +8366325 64 0 +8366348 0 0 +8366371 64 0 +8368634 0 0 +8368647 64 0 +8368798 0 0 +8368820 64 0 +8368956 0 0 +8368986 64 0 +8369110 0 0 +8369141 64 0 +8369276 0 0 +8369299 64 0 +8369430 0 0 +8369476 64 0 +8369597 0 0 +8369625 64 0 +8369761 0 0 +8369781 64 0 +8369926 0 0 +8369948 64 0 +8370611 0 0 +8370623 64 0 +8370769 0 0 +8370801 64 0 +8370942 0 0 +8370980 64 0 +8371113 0 0 +8371163 64 0 +8371250 0 0 +8374448 totRewards = 84 +8374448 128 16 +8374648 128 0 +8374649 0 0 +8374696 128 0 +8374925 0 0 +8374948 128 0 +8375178 0 0 +8375212 128 0 +8375308 0 0 +8375368 128 0 +8375606 0 0 +8375614 128 0 +8375745 0 0 +8375760 128 0 +8376177 0 0 +8376209 128 0 +8376313 0 0 +8376353 128 0 +8376471 0 0 +8376490 128 0 +8376612 0 0 +8376652 128 0 +8376765 0 0 +8376826 128 0 +8376936 0 0 +8376988 128 0 +8377106 0 0 +8377153 128 0 +8377274 0 0 +8377331 128 0 +8377445 0 0 +8377502 128 0 +8377607 0 0 +8377674 128 0 +8377766 0 0 +8377824 128 0 +8377931 0 0 +8377985 128 0 +8378104 0 0 +8378153 128 0 +8378267 0 0 +8378331 128 0 +8378428 0 0 +8385289 totRewards = 85 +8385289 64 8 +8385489 64 0 +8385501 0 0 +8385514 64 0 +8387814 0 0 +8387836 64 0 +8387980 0 0 +8388009 64 0 +8388139 0 0 +8388180 64 0 +8388288 0 0 +8388345 64 0 +8388442 0 0 +8388514 64 0 +8388582 0 0 +8392063 totRewards = 86 +8392063 128 16 +8392225 0 16 +8392263 0 0 +8392332 128 0 +8392799 0 0 +8392820 128 0 +8392933 0 0 +8393022 128 0 +8393049 0 0 +8393081 128 0 +8393354 0 0 +8393367 128 0 +8393481 0 0 +8393504 128 0 +8393933 0 0 +8393964 128 0 +8394089 0 0 +8394118 128 0 +8394247 0 0 +8394274 128 0 +8394404 0 0 +8394449 128 0 +8394571 0 0 +8394614 128 0 +8394738 0 0 +8394776 128 0 +8394899 0 0 +8394948 128 0 +8395062 0 0 +8395119 128 0 +8395222 0 0 +8395272 128 0 +8395384 0 0 +8395450 128 0 +8395540 0 0 +8395598 128 0 +8395707 0 0 +8395756 128 0 +8395869 0 0 +8395923 128 0 +8396037 0 0 +8396098 128 0 +8396204 0 0 +8396274 128 0 +8396357 0 0 +8400269 totRewards = 87 +8400269 64 8 +8400469 64 0 +8400477 0 0 +8400489 64 0 + + description: state script log run 3 + task_epochs: 6, +] +2021-01-28 16:10:56,678 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 16:11:00,762 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 16:11:00,768 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 16:11:00,768 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 16:11:00,768 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 16:11:00,772 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 16:11:02,898 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 16:11:02,899 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 16:11:02,904 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 16:11:02,905 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 16:11:02,907 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 16:11:02,930 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 16:11:02,933 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 16:11:02,934 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 16:11:02,935 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 16:11:06,573 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 16:11:06,576 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 16:14:56,199 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = Jaq +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-01-28 16:14:56,476 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 16:14:56,478 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 16:14:56,478 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 16:14:56,479 rec_to_binaries.core: INFO Extracting time... +2021-01-28 16:16:07,903 rec_to_binaries.core: INFO Making position directory... +2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 +2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = Jaq +date = 20190826 +nwb_metadata = Experiment Info: +Experimenter: Abhilasha Joshi +Description: Theta and gait +Session Id: jaq_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/nwb/Jaq20190826.nwb + +2021-01-28 16:16:08,772 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! + , [] +2021-01-28 16:16:12,158 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 16:16:12,789 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 16:16:12,789 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 16:16:12,792 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 16:16:12,792 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 16:16:12,793 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 16:16:12,794 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 16:16:12,795 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x139658896990672 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +2001580 totRewards = 1 +2001580 64 200 +2001618 0 136 +2001730 64 136 +2001776 0 136 +2001780 0 128 +2003264 64 128 +2003377 0 128 +2003446 64 128 +2003519 0 128 +2003570 64 128 +2003646 0 128 +2003696 64 128 +2003785 0 128 +2003826 64 128 +2004082 0 128 +2004105 64 128 +2004232 0 128 +2004274 64 128 +2004393 0 128 +2004427 64 128 +2004551 0 128 +2004583 64 128 +2004720 0 128 +2004752 64 128 +2004888 0 128 +2004930 64 128 +2005077 0 128 +2005116 64 128 +2005252 0 128 +2005284 64 128 +2005395 0 128 +2005465 64 128 +2005540 0 128 +2005603 64 128 +2005710 0 128 +2005749 64 128 +2005861 0 128 +2005934 64 128 +2006019 0 128 +2006065 64 128 +2006182 0 128 +2006217 64 128 +2006329 0 128 +2006344 64 128 +2006477 0 128 +2006494 64 128 +2006626 0 128 +2006639 64 128 +2006774 0 128 +2006801 64 128 +2006925 0 128 +2006975 64 128 +2007855 0 128 +2007878 64 128 +2008024 0 128 +2008063 64 128 +2008169 0 128 +2008218 64 128 +2008346 0 128 +2008414 64 128 +2008525 0 128 +2008545 64 128 +2008694 0 128 +2008728 64 128 +2008871 0 128 +2008882 64 128 +2010662 0 128 +2010678 64 128 +2011803 0 128 +2011833 64 128 +2011970 0 128 +2012060 64 128 +2012163 0 128 +2012186 64 128 +2012343 0 128 +2012375 64 128 +2012524 0 128 +2012561 64 128 +2012567 0 128 +2012582 64 128 +2012666 0 128 +2012692 64 128 +2012709 0 128 +2012758 64 128 +2012843 0 128 +2012878 64 128 +2012913 0 128 +2012973 64 128 +2013026 0 128 +2013031 64 128 +2013034 0 128 +2013052 64 128 +2013239 0 128 +2034560 totRewards = 2 +2034560 128 144 +2034760 128 128 +2035091 0 0 +2035175 128 0 +2035224 0 0 +2035241 128 0 +2035642 0 0 +2035669 128 0 +2035934 0 0 +2035976 128 0 +2036086 0 0 +2036140 128 0 +2036249 0 0 +2036307 128 0 +2036411 0 0 +2036492 128 0 +2036582 0 0 +2036660 128 0 +2036748 0 0 +2036816 128 0 +2036899 0 0 +2036961 128 0 +2037070 0 0 +2037137 128 0 +2037244 0 0 +2037376 128 0 +2037423 0 0 +2037507 128 0 +2037610 0 0 +2037670 128 0 +2037770 0 0 +2037803 128 0 +2037924 0 0 +2037933 128 0 +2038187 0 0 +2038197 128 0 +2038342 0 0 +2038355 128 0 +2038819 0 0 +2038855 128 0 +2039188 0 0 +2039253 128 0 +2039357 0 0 +2039426 128 0 +2039462 0 0 +2039490 128 0 +2039548 0 0 +2039667 128 0 +2039739 0 0 +2039810 128 0 +2039928 0 0 +2039981 128 0 +2040117 0 0 +2040208 128 0 +2040298 0 0 +2040373 128 0 +2040478 0 0 +2040515 128 0 +2040657 0 0 +2040697 128 0 +2040788 0 0 +2040829 128 0 +2040851 0 0 +2040860 128 0 +2041365 0 0 +2041423 128 0 +2041584 0 0 +2041699 128 0 +2041769 0 0 +2041844 128 0 +2041969 0 0 +2042090 128 0 +2042173 0 0 +2042311 128 0 +2042343 0 0 +2063830 128 0 +2063874 0 0 +2066005 128 0 +2067249 0 0 +2067324 128 0 +2067441 0 0 +2074645 totRewards = 3 +2074645 64 8 +2074658 0 8 +2074845 0 0 +2074976 64 0 +2075045 0 0 +2075058 64 0 +2075512 0 0 +2075546 64 0 +2075789 0 0 +2075823 64 0 +2076095 0 0 +2076119 64 0 +2076245 0 0 +2076272 64 0 +2076412 0 0 +2076445 64 0 +2076571 0 0 +2076603 64 0 +2076738 0 0 +2076767 64 0 +2076901 0 0 +2076934 64 0 +2077052 0 0 +2077104 64 0 +2077209 0 0 +2077249 64 0 +2077518 0 0 +2077538 64 0 +2077985 0 0 +2077999 64 0 +2078158 0 0 +2078172 64 0 +2078842 0 0 +2078882 64 0 +2079003 0 0 +2079062 64 0 +2079188 0 0 +2079210 64 0 +2079323 0 0 +2079338 64 0 +2079360 0 0 +2079427 64 0 +2079489 0 0 +2079575 64 0 +2079656 0 0 +2079680 64 0 +2081117 0 0 +2081135 64 0 +2081295 0 0 +2081324 64 0 +2081462 0 0 +2081533 64 0 +2081625 0 0 +2096193 totRewards = 4 +2096193 128 16 +2096393 128 0 +2096867 0 0 +2096907 128 0 +2097582 0 0 +2097600 128 0 +2097712 0 0 +2097733 128 0 +2097848 0 0 +2097876 128 0 +2097988 0 0 +2098020 128 0 +2098129 0 0 +2098160 128 0 +2098287 0 0 +2098319 128 0 +2098435 0 0 +2098479 128 0 +2098589 0 0 +2098635 128 0 +2098748 0 0 +2098802 128 0 +2098919 0 0 +2098997 128 0 +2099135 0 0 +2099189 128 0 +2099304 0 0 +2099356 128 0 +2099465 0 0 +2099508 128 0 +2099929 0 0 +2099945 128 0 +2100094 0 0 +2100103 128 0 +2100267 0 0 +2100306 128 0 +2100435 0 0 +2100498 128 0 +2100541 0 0 +2100563 128 0 +2100631 0 0 +2100699 128 0 +2100805 0 0 +2100866 128 0 +2100997 0 0 +2101127 128 0 +2101177 0 0 +2101305 128 0 +2101366 0 0 +2101520 128 0 +2101559 0 0 +2101741 128 0 +2101765 0 0 +2102142 128 0 +2102175 0 0 +2102328 128 0 +2102369 0 0 +2102507 128 0 +2102562 0 0 +2102681 128 0 +2102720 0 0 +2105862 128 0 +2105868 0 0 +2114611 totRewards = 5 +2114611 64 8 +2114766 0 8 +2114811 0 0 +2114881 64 0 +2115110 0 0 +2115120 64 0 +2115389 0 0 +2115397 64 0 +2116252 0 0 +2116283 64 0 +2116436 0 0 +2116450 64 0 +2116584 0 0 +2116611 64 0 +2116741 0 0 +2116780 64 0 +2116895 0 0 +2116944 64 0 +2117053 0 0 +2117100 64 0 +2117213 0 0 +2117240 64 0 +2117365 0 0 +2117398 64 0 +2117526 0 0 +2117554 64 0 +2117852 0 0 +2117876 64 0 +2118025 0 0 +2118034 64 0 +2118175 0 0 +2118220 64 0 +2118353 0 0 +2118363 64 0 +2118479 0 0 +2118501 64 0 +2118516 0 0 +2118552 64 0 +2118559 0 0 +2118580 64 0 +2118637 0 0 +2118740 64 0 +2118800 0 0 +2118878 64 0 +2120024 0 0 +2120051 64 0 +2120186 0 0 +2120233 64 0 +2120352 0 0 +2140288 totRewards = 6 +2140288 128 16 +2140488 128 0 +2140841 0 0 +2140904 128 0 +2141213 0 0 +2141279 128 0 +2141616 0 0 +2141629 128 0 +2141863 0 0 +2141879 128 0 +2142145 0 0 +2142170 128 0 +2142292 0 0 +2142316 128 0 +2142435 0 0 +2142476 128 0 +2142582 0 0 +2142631 128 0 +2142739 0 0 +2142785 128 0 +2142890 0 0 +2142943 128 0 +2143053 0 0 +2143111 128 0 +2143226 0 0 +2143277 128 0 +2143386 0 0 +2143425 128 0 +2143539 0 0 +2143553 128 0 +2143986 0 0 +2144010 128 0 +2144133 0 0 +2144162 128 0 +2144308 0 0 +2144348 128 0 +2144481 0 0 +2144538 128 0 +2144654 0 0 +2144710 128 0 +2144817 0 0 +2144882 128 0 +2144986 0 0 +2145048 128 0 +2145173 0 0 +2145185 128 0 +2145200 0 0 +2145208 128 0 +2145295 0 0 +2145404 128 0 +2145461 0 0 +2145557 128 0 +2145621 0 0 +2145669 128 0 +2145675 0 0 +2145682 128 0 +2145958 0 0 +2145990 128 0 +2146113 0 0 +2146144 128 0 +2146279 0 0 +2146329 128 0 +2146438 0 0 +2146560 128 0 +2146611 0 0 +2146696 128 0 +2146710 0 0 +2159529 totRewards = 7 +2159529 64 8 +2159729 64 0 +2159738 0 0 +2159763 64 0 +2160960 0 0 +2160973 64 0 +2161110 0 0 +2161128 64 0 +2161268 0 0 +2161289 64 0 +2161432 0 0 +2161459 64 0 +2161608 0 0 +2161632 64 0 +2161949 0 0 +2161985 64 0 +2162113 0 0 +2162143 64 0 +2162275 0 0 +2162296 64 0 +2162310 0 0 +2162319 64 0 +2162403 0 0 +2162421 64 0 +2162452 0 0 +2162459 64 0 +2162559 0 0 +2162568 64 0 +2162900 0 0 +2162928 64 0 +2163757 0 0 +2163783 64 0 +2163917 0 0 +2163968 64 0 +2164082 0 0 +2166458 64 0 +2166531 0 0 +2166648 64 0 +2166917 0 0 +2166935 64 0 +2167090 0 0 +2167109 64 0 +2167732 0 0 +2167762 64 0 +2167908 0 0 +2167929 64 0 +2168084 0 0 +2168099 64 0 +2168429 0 0 +2168490 64 0 +2168588 0 0 +2176893 totRewards = 8 +2176893 128 16 +2177093 128 0 +2177326 0 0 +2177401 128 0 +2177653 0 0 +2177660 128 0 +2177663 0 0 +2177733 128 0 +2178313 0 0 +2178319 128 0 +2179180 0 0 +2179188 128 0 +2179315 0 0 +2179351 128 0 +2179476 0 0 +2179523 128 0 +2179642 0 0 +2179688 128 0 +2179810 0 0 +2179872 128 0 +2179978 0 0 +2180036 128 0 +2180144 0 0 +2180182 128 0 +2180882 0 0 +2180915 128 0 +2181044 0 0 +2181173 128 0 +2181203 0 0 +2181292 128 0 +2181428 0 0 +2181534 128 0 +2181591 0 0 +2181727 128 0 +2181782 0 0 +2182366 128 0 +2182374 0 0 +2184109 128 0 +2184245 0 0 +2184296 128 0 +2184396 0 0 +2184529 128 0 +2188631 0 0 +2190187 128 0 +2191079 0 0 +2191268 128 0 +2192641 0 0 +2192662 128 0 +2193070 0 0 +2193103 128 0 +2193223 0 0 +2193290 128 0 +2193362 0 0 +2193437 128 0 +2193510 0 0 +2193613 128 0 +2193703 0 0 +2202716 totRewards = 9 +2202716 64 8 +2202773 0 8 +2202836 64 8 +2202916 64 0 +2204488 0 0 +2204502 64 0 +2204642 0 0 +2204664 64 0 +2204811 0 0 +2204825 64 0 +2204970 0 0 +2204987 64 0 +2205126 0 0 +2205156 64 0 +2205282 0 0 +2205322 64 0 +2205445 0 0 +2205473 64 0 +2205730 0 0 +2205744 64 0 +2205890 0 0 +2205893 64 0 +2206940 0 0 +2206946 64 0 +2207096 0 0 +2207119 64 0 +2207266 0 0 +2207280 64 0 +2207972 0 0 +2207997 64 0 +2208143 0 0 +2208171 64 0 +2209358 0 0 +2209415 64 0 +2209513 0 0 +2216514 64 0 +2216790 0 0 +2216816 64 0 +2216945 0 0 +2216964 64 0 +2217093 0 0 +2217122 64 0 +2217254 0 0 +2217269 64 0 +2217569 0 0 +2217585 64 0 +2217733 0 0 +2217752 64 0 +2218051 0 0 +2222344 totRewards = 10 +2222344 128 16 +2222461 0 16 +2222544 0 0 +2222557 128 0 +2222585 0 0 +2222649 128 0 +2222663 0 0 +2222948 128 0 +2223215 0 0 +2223240 128 0 +2223844 0 0 +2223856 128 0 +2223972 0 0 +2223978 128 0 +2224099 0 0 +2224123 128 0 +2224239 0 0 +2224270 128 0 +2224377 0 0 +2224408 128 0 +2224526 0 0 +2224571 128 0 +2224679 0 0 +2224728 128 0 +2224835 0 0 +2224896 128 0 +2225005 0 0 +2225061 128 0 +2225173 0 0 +2225232 128 0 +2225342 0 0 +2225399 128 0 +2225511 0 0 +2225547 128 0 +2225798 0 0 +2225808 128 0 +2226268 0 0 +2226295 128 0 +2226441 0 0 +2226471 128 0 +2226612 0 0 +2226663 128 0 +2226797 0 0 +2226836 128 0 +2226974 0 0 +2227280 128 0 +2227394 0 0 +2227522 128 0 +2227572 0 0 +2240414 128 0 +2240991 0 0 +2241009 128 0 +2241417 0 0 +2241455 128 0 +2241562 0 0 +2241608 128 0 +2241717 0 0 +2241773 128 0 +2241885 0 0 +2241935 128 0 +2242056 0 0 +2242116 128 0 +2242216 0 0 +2242288 128 0 +2242395 0 0 +2242461 128 0 +2242582 0 0 +2242633 128 0 +2242764 0 0 +2242816 128 0 +2242923 0 0 +2243013 128 0 +2243120 0 0 +2243260 128 0 +2243270 0 0 +2245717 128 0 +2247529 0 0 +2247664 128 0 +2247755 0 0 +2254386 totRewards = 11 +2254386 64 8 +2254586 64 0 +2254782 0 0 +2254804 64 0 +2256275 0 0 +2256295 64 0 +2256427 0 0 +2256456 64 0 +2256588 0 0 +2256617 64 0 +2256923 0 0 +2256953 64 0 +2257081 0 0 +2257117 64 0 +2257241 0 0 +2257280 64 0 +2257399 0 0 +2257441 64 0 +2257567 0 0 +2257588 64 0 +2258047 0 0 +2258051 64 0 +2258899 0 0 +2258921 64 0 +2259056 0 0 +2259097 64 0 +2259215 0 0 +2259255 64 0 +2259372 0 0 +2259405 64 0 +2260634 0 0 +2260676 64 0 +2261234 0 0 +2261300 64 0 +2261404 0 0 +2261441 64 0 +2261625 0 0 +2261715 64 0 +2261815 0 0 +2261834 64 0 +2261977 0 0 +2262025 64 0 +2262133 0 0 +2277660 totRewards = 12 +2277660 128 16 +2277739 0 16 +2277860 0 0 +2277981 128 0 +2278327 0 0 +2278333 128 0 +2278895 0 0 +2278925 128 0 +2279032 0 0 +2279044 128 0 +2279302 0 0 +2279309 128 0 +2279439 0 0 +2279455 128 0 +2279735 0 0 +2279763 128 0 +2279878 0 0 +2279911 128 0 +2280032 0 0 +2280084 128 0 +2280202 0 0 +2280254 128 0 +2280364 0 0 +2280421 128 0 +2280526 0 0 +2280579 128 0 +2280686 0 0 +2280736 128 0 +2280847 0 0 +2280883 128 0 +2281609 0 0 +2281646 128 0 +2281774 0 0 +2281872 128 0 +2281935 0 0 +2282007 128 0 +2282103 0 0 +2282213 128 0 +2282280 0 0 +2282420 128 0 +2282494 0 0 +2284086 128 0 +2285130 0 0 +2285212 128 0 +2286235 0 0 +2286289 128 0 +2287135 0 0 +2287186 128 0 +2287289 0 0 +2291999 totRewards = 13 +2291999 64 8 +2292199 64 0 +2293824 0 0 +2293846 64 0 +2293982 0 0 +2294001 64 0 +2294138 0 0 +2294169 64 0 +2294293 0 0 +2294332 64 0 +2294454 0 0 +2294482 64 0 +2294791 0 0 +2294803 64 0 +2295457 0 0 +2295504 64 0 +2295973 0 0 +2296018 64 0 +2296154 0 0 +2296187 64 0 +2296796 0 0 +2296819 64 0 +2297909 0 0 +2297970 64 0 +2298237 0 0 +2298249 64 0 +2298570 0 0 +2298612 64 0 +2298728 0 0 +2298774 64 0 +2298883 0 0 +2298938 64 0 +2299041 0 0 +2307832 totRewards = 14 +2307832 128 16 +2308000 0 16 +2308028 128 16 +2308032 128 0 +2309019 0 0 +2309027 128 0 +2309306 0 0 +2309313 128 0 +2309437 0 0 +2309473 128 0 +2309593 0 0 +2309630 128 0 +2309750 0 0 +2309782 128 0 +2309900 0 0 +2309946 128 0 +2310069 0 0 +2310100 128 0 +2310224 0 0 +2310266 128 0 +2310382 0 0 +2310441 128 0 +2310558 0 0 +2310611 128 0 +2310718 0 0 +2310772 128 0 +2310877 0 0 +2310912 128 0 +2311035 0 0 +2311066 128 0 +2311185 0 0 +2311220 128 0 +2311336 0 0 +2311371 128 0 +2311666 0 0 +2311731 128 0 +2311816 0 0 +2311986 128 0 +2312015 0 0 +2313817 128 0 +2313887 0 0 +2313926 128 0 +2314125 0 0 +2314202 128 0 +2314630 0 0 +2314756 128 0 +2317830 0 0 +2317846 128 0 +2317980 0 0 +2318017 128 0 +2318121 0 0 +2318447 128 0 +2318468 0 0 +2318575 128 0 +2318643 0 0 +2321337 128 0 +2322451 0 0 +2322689 128 0 +2327632 0 0 +2327645 128 0 +2327935 0 0 +2327967 128 0 +2328085 0 0 +2328120 128 0 +2328244 0 0 +2328283 128 0 +2328404 0 0 +2328457 128 0 +2328561 0 0 +2328627 128 0 +2328720 0 0 +2328866 128 0 +2328892 0 0 +2328961 128 0 +2329075 0 0 +2329131 128 0 +2329240 0 0 +2329331 128 0 +2329412 0 0 +2329583 128 0 +2329768 0 0 +2331261 128 0 +2333920 0 0 +2337449 totRewards = 15 +2337449 64 8 +2337649 64 0 +2338511 0 0 +2338525 64 0 +2339700 0 0 +2339726 64 0 +2339869 0 0 +2339884 64 0 +2340021 0 0 +2340049 64 0 +2340177 0 0 +2340221 64 0 +2340350 0 0 +2340357 64 0 +2340814 0 0 +2340842 64 0 +2341675 0 0 +2341689 64 0 +2341838 0 0 +2341866 64 0 +2341992 0 0 +2342046 64 0 +2342161 0 0 +2342239 64 0 +2342326 0 0 +2342402 64 0 +2342683 0 0 +2342700 64 0 +2342845 0 0 +2342872 64 0 +2343006 0 0 +2343072 64 0 +2343156 0 0 +2346147 totRewards = 16 +2346147 128 16 +2346164 0 16 +2346272 128 16 +2346335 0 16 +2346347 0 0 +2346589 128 0 +2346602 0 0 +2346660 128 0 +2346684 0 0 +2346947 128 0 +2347329 0 0 +2347349 128 0 +2348105 0 0 +2348110 128 0 +2348537 0 0 +2348558 128 0 +2348682 0 0 +2348728 128 0 +2348835 0 0 +2348889 128 0 +2349004 0 0 +2349052 128 0 +2349166 0 0 +2349215 128 0 +2349330 0 0 +2349374 128 0 +2349484 0 0 +2349526 128 0 +2350244 0 0 +2350261 128 0 +2350407 0 0 +2350441 128 0 +2350568 0 0 +2350595 128 0 +2350771 0 0 +2350858 128 0 +2350914 0 0 +2351075 128 0 +2351151 0 0 +2351309 128 0 +2351326 0 0 +2351740 128 0 +2351753 0 0 +2351886 128 0 +2351896 0 0 +2352011 128 0 +2352104 0 0 +2352187 128 0 +2352214 0 0 +2352301 128 0 +2352559 0 0 +2352772 128 0 +2353146 0 0 +2353183 128 0 +2353383 0 0 +2353426 128 0 +2355263 0 0 +2359358 totRewards = 17 +2359358 64 8 +2359558 64 0 +2360088 0 0 +2360101 64 0 +2361553 0 0 +2361578 64 0 +2361883 0 0 +2361907 64 0 +2362039 0 0 +2362075 64 0 +2362327 0 0 +2362335 64 0 +2364953 0 0 +2364983 64 0 +2365102 0 0 +2365153 64 0 +2365267 0 0 +2365324 64 0 +2365414 0 0 +2368975 totRewards = 18 +2368975 128 16 +2369175 128 0 +2369303 0 0 +2369335 128 0 +2369692 0 0 +2369711 128 0 +2369813 0 0 +2369864 128 0 +2370239 0 0 +2370266 128 0 +2370543 0 0 +2370563 128 0 +2370698 0 0 +2370728 128 0 +2370846 0 0 +2370899 128 0 +2371028 0 0 +2371066 128 0 +2371186 0 0 +2371233 128 0 +2371348 0 0 +2371399 128 0 +2371524 0 0 +2371569 128 0 +2371690 0 0 +2371747 128 0 +2371862 0 0 +2371919 128 0 +2372027 0 0 +2372070 128 0 +2372173 0 0 +2372219 128 0 +2372338 0 0 +2375851 128 0 +2376084 0 0 +2376257 128 0 +2376944 0 0 +2377077 128 0 +2378183 0 0 +2381281 totRewards = 19 +2381281 64 8 +2381481 64 0 +2382052 0 0 +2382073 64 0 +2383036 0 0 +2383047 64 0 +2383182 0 0 +2383206 64 0 +2383520 0 0 +2383532 64 0 +2383681 0 0 +2383710 64 0 +2383859 0 0 +2383866 64 0 +2384010 0 0 +2384039 64 0 +2384184 0 0 +2384206 64 0 +2384339 0 0 +2384374 64 0 +2385999 0 0 +2386006 64 0 +2386173 0 0 +2386185 64 0 +2386707 0 0 +2386743 64 0 +2386868 0 0 +2386931 64 0 +2387020 0 0 +2390293 totRewards = 20 +2390293 128 16 +2390431 0 16 +2390474 128 16 +2390493 128 0 +2390625 0 0 +2390686 128 0 +2390781 0 0 +2390831 128 0 +2391031 0 0 +2391064 128 0 +2391157 0 0 +2391189 128 0 +2391831 0 0 +2391839 128 0 +2392429 0 0 +2392447 128 0 +2392582 0 0 +2392621 128 0 +2392746 0 0 +2392786 128 0 +2392920 0 0 +2392951 128 0 +2393082 0 0 +2393120 128 0 +2393249 0 0 +2393295 128 0 +2393428 0 0 +2393461 128 0 +2393626 0 0 +2393678 128 0 +2393703 0 0 +2393722 128 0 +2393784 0 0 +2393850 128 0 +2393969 0 0 +2394022 128 0 +2394154 0 0 +2394254 128 0 +2394329 0 0 +2394379 128 0 +2394421 0 0 +2394454 128 0 +2394485 0 0 +2394621 128 0 +2394669 0 0 +2395021 128 0 +2395050 0 0 +2395157 128 0 +2395192 0 0 +2395962 128 0 +2395976 0 0 +2399690 totRewards = 21 +2399690 64 8 +2399739 0 8 +2399783 64 8 +2399889 64 0 +2400032 0 0 +2400055 64 0 +2401665 0 0 +2401674 64 0 +2401820 0 0 +2401845 64 0 +2401974 0 0 +2402003 64 0 +2402129 0 0 +2402156 64 0 +2402593 0 0 +2402609 64 0 +2402754 0 0 +2402766 64 0 +2403575 0 0 +2403613 64 0 +2403763 0 0 +2403774 64 0 +2404087 0 0 +2404120 64 0 +2404268 0 0 +2404282 64 0 +2404424 0 0 +2404457 64 0 +2404593 0 0 +2404624 64 0 +2404761 0 0 +2404786 64 0 +2405621 0 0 +2405656 64 0 +2405801 0 0 +2405835 64 0 +2405983 0 0 +2406018 64 0 +2406128 0 0 +2408919 totRewards = 22 +2408918 128 16 +2409089 0 16 +2409099 128 16 +2409118 128 0 +2409259 0 0 +2409282 128 0 +2409881 0 0 +2409914 128 0 +2410332 0 0 +2410359 128 0 +2410491 0 0 +2410499 128 0 +2410625 0 0 +2410640 128 0 +2410777 0 0 +2410806 128 0 +2410954 0 0 +2410964 128 0 +2411111 0 0 +2411139 128 0 +2411271 0 0 +2411311 128 0 +2411444 0 0 +2411478 128 0 +2411620 0 0 +2411645 128 0 +2411779 0 0 +2411820 128 0 +2411949 0 0 +2411991 128 0 +2412110 0 0 +2412152 128 0 +2412297 0 0 +2412381 128 0 +2412463 0 0 +2412586 128 0 +2412637 0 0 +2417606 totRewards = 23 +2417606 64 8 +2417806 64 0 +2417988 0 0 +2418017 64 0 +2419385 0 0 +2419403 64 0 +2419710 0 0 +2419728 64 0 +2419869 0 0 +2419900 64 0 +2420197 0 0 +2420230 64 0 +2420360 0 0 +2420383 64 0 +2420813 0 0 +2420840 64 0 +2420978 0 0 +2421000 64 0 +2421625 0 0 +2421678 64 0 +2421781 0 0 +2421836 64 0 +2421936 0 0 +2424845 totRewards = 24 +2424845 128 16 +2424878 0 16 +2424957 128 16 +2425001 0 16 +2425029 128 16 +2425045 128 0 +2425100 0 0 +2425132 128 0 +2425255 0 0 +2425341 128 0 +2425404 0 0 +2425413 128 0 +2425655 0 0 +2425694 128 0 +2429976 0 0 +2430004 128 0 +2430156 0 0 +2430196 128 0 +2430336 0 0 +2430380 128 0 +2430522 0 0 +2430571 128 0 +2430718 0 0 +2430748 128 0 +2430894 0 0 +2430920 128 0 +2431078 0 0 +2431125 128 0 +2431275 0 0 +2431329 128 0 +2431675 0 0 +2431820 128 0 +2431897 0 0 +2432493 128 0 +2432637 0 0 +2432661 128 0 +2432804 0 0 +2432861 128 0 +2432994 0 0 +2433025 128 0 +2433287 0 0 +2433293 128 0 +2433298 0 0 +2433302 128 0 +2433608 0 0 +2433619 128 0 +2433651 0 0 +2433688 128 0 +2433712 0 0 +2433722 128 0 +2433771 0 0 +2433875 128 0 +2434339 0 0 +2434379 128 0 +2434521 0 0 +2434566 128 0 +2435276 0 0 +2435311 128 0 +2435450 0 0 +2435518 128 0 +2435619 0 0 +2435702 128 0 +2435821 0 0 +2435901 128 0 +2436009 0 0 +2436087 128 0 +2436177 0 0 +2436291 128 0 +2436323 0 0 +2436357 128 0 +2436377 0 0 +2443046 128 0 +2443134 0 0 +2443341 128 0 +2443453 0 0 +2443671 128 0 +2443803 0 0 +2443889 128 0 +2443921 0 0 +2443970 128 0 +2444102 0 0 +2447042 totRewards = 25 +2447042 64 8 +2447242 64 0 +2447765 0 0 +2447772 64 0 +2447880 0 0 +2447886 64 0 +2449309 0 0 +2449318 64 0 +2449464 0 0 +2449481 64 0 +2449621 0 0 +2449639 64 0 +2449783 0 0 +2449802 64 0 +2449934 0 0 +2449973 64 0 +2450097 0 0 +2450126 64 0 +2450260 0 0 +2450285 64 0 +2450402 0 0 +2455364 totRewards = 26 +2455364 128 16 +2455546 0 16 +2455564 0 0 +2455657 128 0 +2455691 0 0 +2455743 128 0 +2455937 0 0 +2456018 128 0 +2456092 0 0 +2456103 128 0 +2456163 0 0 +2456212 128 0 +2456319 0 0 +2456362 128 0 +2457252 0 0 +2457265 128 0 +2457695 0 0 +2457717 128 0 +2457847 0 0 +2457870 128 0 +2458176 0 0 +2458211 128 0 +2458339 0 0 +2458376 128 0 +2458501 0 0 +2458536 128 0 +2458658 0 0 +2458698 128 0 +2458804 0 0 +2458851 128 0 +2458970 0 0 +2458984 128 0 +2459119 0 0 +2459147 128 0 +2459250 0 0 +2463620 totRewards = 27 +2463620 64 8 +2463820 64 0 +2465463 0 0 +2465471 64 0 +2465619 0 0 +2465626 64 0 +2465935 0 0 +2465947 64 0 +2466092 0 0 +2466110 64 0 +2466253 0 0 +2466280 64 0 +2466410 0 0 +2466447 64 0 +2466568 0 0 +2466603 64 0 +2466732 0 0 +2466752 64 0 +2467027 0 0 +2469814 totRewards = 28 +2469814 128 16 +2469994 0 16 +2470014 0 0 +2470051 128 0 +2470113 0 0 +2470131 128 0 +2470369 0 0 +2470428 128 0 +2470615 0 0 +2470659 128 0 +2470750 0 0 +2470810 128 0 +2471182 0 0 +2471206 128 0 +2471609 0 0 +2471636 128 0 +2471763 0 0 +2471806 128 0 +2471934 0 0 +2471960 128 0 +2472090 0 0 +2472133 128 0 +2472245 0 0 +2472295 128 0 +2472412 0 0 +2472452 128 0 +2472597 0 0 +2472634 128 0 +2472746 0 0 +2472805 128 0 +2472913 0 0 +2472952 128 0 +2473352 0 0 +2473598 128 0 +2476006 0 0 +2476133 128 0 +2479487 0 0 +2479687 128 0 +2480044 0 0 +2482815 totRewards = 29 +2482815 64 8 +2483015 64 0 +2485179 0 0 +2485197 64 0 +2485339 0 0 +2485359 64 0 +2485487 0 0 +2485527 64 0 +2485658 0 0 +2485672 64 0 +2485968 0 0 +2485982 64 0 +2486102 0 0 +2489155 totRewards = 30 +2489155 128 16 +2489313 0 16 +2489355 0 0 +2489369 128 0 +2489697 0 0 +2489732 128 0 +2489944 0 0 +2489982 128 0 +2490071 0 0 +2490129 128 0 +2490358 0 0 +2490381 128 0 +2490490 0 0 +2490527 128 0 +2490938 0 0 +2490973 128 0 +2491097 0 0 +2491113 128 0 +2491255 0 0 +2491270 128 0 +2491405 0 0 +2491435 128 0 +2491565 0 0 +2491605 128 0 +2491743 0 0 +2491776 128 0 +2491897 0 0 +2491946 128 0 +2492059 0 0 +2492109 128 0 +2492225 0 0 +2492263 128 0 +2492382 0 0 +2492423 128 0 +2492544 0 0 +2492573 128 0 +2492723 0 0 +2492742 128 0 +2492881 0 0 +2492917 128 0 +2493039 0 0 +2493086 128 0 +2493194 0 0 +2493241 128 0 +2493365 0 0 +2493381 128 0 +2493510 0 0 +2493572 128 0 +2493589 0 0 +2493676 128 0 +2493876 0 0 +2494191 128 0 +2494750 0 0 +2494845 128 0 +2495454 0 0 +2499420 totRewards = 31 +2499419 64 8 +2499619 64 0 +2502333 0 0 +2502350 64 0 +2502492 0 0 +2502502 64 0 +2503572 0 0 +2503596 64 0 +2503742 0 0 +2503751 64 0 +2504397 0 0 +2504419 64 0 +2504560 0 0 +2504572 64 0 +2505051 0 0 +2505069 64 0 +2505379 0 0 +2505412 64 0 +2505557 0 0 +2505572 64 0 +2505715 0 0 +2505767 64 0 +2505847 0 0 +2508735 totRewards = 32 +2508735 128 16 +2508885 0 16 +2508935 0 0 +2508994 128 0 +2509065 0 0 +2509107 128 0 +2509335 0 0 +2509344 128 0 +2509483 0 0 +2509494 128 0 +2509735 0 0 +2509758 128 0 +2509877 0 0 +2509893 128 0 +2510149 0 0 +2510177 128 0 +2510297 0 0 +2510320 128 0 +2510597 0 0 +2510620 128 0 +2510757 0 0 +2510780 128 0 +2511073 0 0 +2511100 128 0 +2511234 0 0 +2511266 128 0 +2511410 0 0 +2511438 128 0 +2511567 0 0 +2511607 128 0 +2511716 0 0 +2511763 128 0 +2511868 0 0 +2511924 128 0 +2512020 0 0 +2515171 totRewards = 33 +2515171 64 8 +2515371 64 0 +2515871 0 0 +2515882 64 0 +2517692 0 0 +2517721 64 0 +2517853 0 0 +2517891 64 0 +2518013 0 0 +2518044 64 0 +2518481 0 0 +2518520 64 0 +2518612 0 0 +2521180 totRewards = 34 +2521180 128 16 +2521354 0 16 +2521379 128 16 +2521380 128 0 +2521569 0 0 +2521590 128 0 +2521692 0 0 +2521711 128 0 +2521925 0 0 +2521978 128 0 +2522070 0 0 +2522108 128 0 +2522490 0 0 +2522514 128 0 +2522937 0 0 +2522956 128 0 +2523086 0 0 +2523120 128 0 +2523252 0 0 +2523270 128 0 +2523399 0 0 +2523434 128 0 +2523557 0 0 +2523601 128 0 +2523729 0 0 +2523767 128 0 +2523896 0 0 +2523942 128 0 +2524058 0 0 +2524104 128 0 +2524211 0 0 +2524253 128 0 +2524372 0 0 +2524387 128 0 +2524514 0 0 +2527384 totRewards = 35 +2527384 64 8 +2527584 64 0 +2529745 0 0 +2529773 64 0 +2529906 0 0 +2529937 64 0 +2530226 0 0 +2530248 64 0 +2530392 0 0 +2530412 64 0 +2530548 0 0 +2530575 64 0 +2530711 0 0 +2530730 64 0 +2530869 0 0 +2530900 64 0 +2531022 0 0 +2531075 64 0 +2531188 0 0 +2531252 64 0 +2531324 0 0 +2532712 64 0 +2532741 0 0 +2532965 64 0 +2533145 0 0 +2533200 64 0 +2533263 0 0 +2533333 64 0 +2533747 0 0 +2536465 totRewards = 36 +2536465 128 16 +2536665 128 0 +2536770 0 0 +2536790 128 0 +2537391 0 0 +2537424 128 0 +2537815 0 0 +2537843 128 0 +2538112 0 0 +2538119 128 0 +2538254 0 0 +2538292 128 0 +2538420 0 0 +2538455 128 0 +2538583 0 0 +2538622 128 0 +2538747 0 0 +2538789 128 0 +2538909 0 0 +2538941 128 0 +2539071 0 0 +2539112 128 0 +2539227 0 0 +2539272 128 0 +2539389 0 0 +2539435 128 0 +2539553 0 0 +2539599 128 0 +2539710 0 0 +2539756 128 0 +2539870 0 0 +2539919 128 0 +2540024 0 0 +2540097 128 0 +2540131 0 0 +2543061 totRewards = 37 +2543061 64 8 +2543261 64 0 +2543302 0 0 +2543321 64 0 +2545004 0 0 +2545027 64 0 +2545177 0 0 +2545189 64 0 +2545641 0 0 +2545675 64 0 +2545800 0 0 +2545841 64 0 +2546764 0 0 +2546771 64 0 +2546909 0 0 +2546973 64 0 +2547017 0 0 +2549893 totRewards = 38 +2549893 128 16 +2550093 128 0 +2550333 0 0 +2550345 128 0 +2550468 0 0 +2550476 128 0 +2550694 0 0 +2550702 128 0 +2550933 0 0 +2550951 128 0 +2551060 0 0 +2551108 128 0 +2551471 0 0 +2551497 128 0 +2551924 0 0 +2551952 128 0 +2552079 0 0 +2552100 128 0 +2552395 0 0 +2552426 128 0 +2552547 0 0 +2552592 128 0 +2552735 0 0 +2552764 128 0 +2552902 0 0 +2552946 128 0 +2553065 0 0 +2553112 128 0 +2553229 0 0 +2553275 128 0 +2553379 0 0 +2553437 128 0 +2553527 0 0 +2553607 128 0 +2553670 0 0 +2556846 totRewards = 39 +2556846 64 8 +2557046 64 0 +2557066 0 0 +2557079 64 0 +2559054 0 0 +2559065 64 0 +2559552 0 0 +2559572 64 0 +2559707 0 0 +2559758 64 0 +2559875 0 0 +2559923 64 0 +2560048 0 0 +2560089 64 0 +2560388 0 0 +2560454 64 0 +2560540 0 0 +2563235 totRewards = 40 +2563235 128 16 +2563435 128 0 +2564006 0 0 +2564041 128 0 +2564140 0 0 +2564180 128 0 +2564559 0 0 +2564586 128 0 +2565004 0 0 +2565043 128 0 +2565168 0 0 +2565191 128 0 +2565328 0 0 +2565350 128 0 +2565480 0 0 +2565520 128 0 +2565631 0 0 +2565663 128 0 +2565791 0 0 +2565824 128 0 +2565949 0 0 +2565991 128 0 +2566098 0 0 +2566143 128 0 +2566260 0 0 +2566298 128 0 +2566424 0 0 +2566467 128 0 +2566573 0 0 +2566618 128 0 +2566742 0 0 +2566763 128 0 +2566912 0 0 +2566946 128 0 +2567068 0 0 +2567114 128 0 +2567223 0 0 +2567281 128 0 +2567360 0 0 +2570298 totRewards = 41 +2570298 64 8 +2570498 64 0 +2572758 0 0 +2572780 64 0 +2573101 0 0 +2573145 64 0 +2573281 0 0 +2573322 64 0 +2574008 0 0 +2574032 64 0 +2574177 0 0 +2574208 64 0 +2574715 0 0 +2574748 64 0 +2574882 0 0 +2574902 64 0 +2575057 0 0 +2575077 64 0 +2575202 0 0 +2577813 totRewards = 42 +2577813 128 16 +2578013 128 0 +2578222 0 0 +2578344 128 0 +2578817 0 0 +2578850 128 0 +2579085 0 0 +2579101 128 0 +2579222 0 0 +2579250 128 0 +2579669 0 0 +2579699 128 0 +2579835 0 0 +2579850 128 0 +2579982 0 0 +2580007 128 0 +2580144 0 0 +2580176 128 0 +2580312 0 0 +2580346 128 0 +2580479 0 0 +2580507 128 0 +2580638 0 0 +2580678 128 0 +2580786 0 0 +2580831 128 0 +2580937 0 0 +2580984 128 0 +2581062 0 0 +2584210 totRewards = 43 +2584210 64 8 +2584410 64 0 +2586367 0 0 +2586382 64 0 +2586524 0 0 +2586547 64 0 +2586680 0 0 +2586702 64 0 +2586842 0 0 +2586864 64 0 +2587008 0 0 +2587033 64 0 +2587166 0 0 +2587199 64 0 +2587321 0 0 +2587360 64 0 +2587481 0 0 +2587525 64 0 +2587617 0 0 +2591303 totRewards = 44 +2591303 128 16 +2591503 128 0 +2592645 0 0 +2592656 128 0 +2592782 0 0 +2592800 128 0 +2592917 0 0 +2592937 128 0 +2593048 0 0 +2593077 128 0 +2593187 0 0 +2593217 128 0 +2593333 0 0 +2593366 128 0 +2593490 0 0 +2593535 128 0 +2593655 0 0 +2593700 128 0 +2593815 0 0 +2593856 128 0 +2593963 0 0 +2594007 128 0 +2594115 0 0 +2594146 128 0 +2594278 0 0 +2594284 128 0 +2594410 0 0 +2594449 128 0 +2594556 0 0 +2597675 totRewards = 45 +2597675 64 8 +2597875 64 0 +2597920 0 0 +2597969 64 0 +2598419 0 0 +2598448 64 0 +2599285 0 0 +2599293 64 0 +2599432 0 0 +2599457 64 0 +2599909 0 0 +2599936 64 0 +2600074 0 0 +2600097 64 0 +2600414 0 0 +2600433 64 0 +2600563 0 0 +2600596 64 0 +2600725 0 0 +2600772 64 0 +2600890 0 0 +2600949 64 0 +2601047 0 0 +2604007 totRewards = 46 +2604007 128 16 +2604138 0 16 +2604182 128 16 +2604207 128 0 +2604334 0 0 +2604358 128 0 +2604953 0 0 +2604986 128 0 +2605376 0 0 +2605394 128 0 +2605808 0 0 +2605835 128 0 +2605967 0 0 +2605985 128 0 +2606122 0 0 +2606135 128 0 +2606272 0 0 +2606300 128 0 +2606432 0 0 +2606461 128 0 +2606601 0 0 +2606640 128 0 +2606768 0 0 +2606807 128 0 +2606919 0 0 +2606963 128 0 +2607067 0 0 +2607118 128 0 +2607213 0 0 +2607303 128 0 +2607313 0 0 +2607779 128 0 +2607848 0 0 +2607904 128 0 +2610120 0 0 +2612954 totRewards = 47 +2612954 64 8 +2613154 64 0 +2613292 0 0 +2613317 64 0 +2615429 0 0 +2615446 64 0 +2615573 0 0 +2615611 64 0 +2615733 0 0 +2615771 64 0 +2615870 0 0 +2618571 totRewards = 48 +2618571 128 16 +2618771 128 0 +2618887 0 0 +2618900 128 0 +2619108 0 0 +2619120 128 0 +2619497 0 0 +2619543 128 0 +2619918 0 0 +2619954 128 0 +2620363 0 0 +2620391 128 0 +2620510 0 0 +2620544 128 0 +2620904 0 0 +2620928 128 0 +2621061 0 0 +2621089 128 0 +2621226 0 0 +2621255 128 0 +2621369 0 0 +2621404 128 0 +2621520 0 0 +2621552 128 0 +2621699 0 0 +2621709 128 0 +2621843 0 0 +2621884 128 0 +2622000 0 0 +2622047 128 0 +2622163 0 0 +2622220 128 0 +2622346 0 0 +2623071 128 0 +2623182 0 0 +2623626 128 0 +2623700 0 0 +2627843 totRewards = 49 +2627843 64 8 +2628043 64 0 +2628136 0 0 +2628145 64 0 +2630032 0 0 +2630043 64 0 +2630502 0 0 +2630528 64 0 +2630653 0 0 +2630694 64 0 +2630813 0 0 +2630851 64 0 +2630971 0 0 +2631015 64 0 +2631098 0 0 +2633877 totRewards = 50 +2633877 128 16 +2633918 0 16 +2634001 128 16 +2634077 128 0 +2634143 0 0 +2634220 128 0 +2634328 0 0 +2634355 128 0 +2634565 0 0 +2634606 128 0 +2634696 0 0 +2634763 128 0 +2634977 0 0 +2634997 128 0 +2635124 0 0 +2635139 128 0 +2635545 0 0 +2635565 128 0 +2635685 0 0 +2635726 128 0 +2635846 0 0 +2635872 128 0 +2635998 0 0 +2636033 128 0 +2636156 0 0 +2636196 128 0 +2636321 0 0 +2636362 128 0 +2636480 0 0 +2636521 128 0 +2636627 0 0 +2636678 128 0 +2636772 0 0 +2636829 128 0 +2636924 0 0 +2637003 128 0 +2637049 0 0 +2637178 128 0 +2637463 0 0 +2637651 128 0 +2637701 0 0 +2637769 128 0 +2639197 0 0 +2639288 128 0 +2639604 0 0 +2642308 totRewards = 51 +2642308 64 8 +2642508 64 0 +2642755 0 0 +2642780 64 0 +2642990 0 0 +2643012 64 0 +2644727 0 0 +2644744 64 0 +2645038 0 0 +2645057 64 0 +2645191 0 0 +2645218 64 0 +2645347 0 0 +2645388 64 0 +2645496 0 0 +2648343 totRewards = 52 +2648343 128 16 +2648532 0 16 +2648543 0 0 +2648588 128 0 +2648779 0 0 +2648825 128 0 +2648909 0 0 +2648954 128 0 +2649155 0 0 +2649191 128 0 +2649290 0 0 +2649329 128 0 +2649720 0 0 +2649730 128 0 +2650155 0 0 +2650182 128 0 +2650297 0 0 +2650337 128 0 +2650464 0 0 +2650490 128 0 +2650621 0 0 +2650664 128 0 +2650780 0 0 +2650827 128 0 +2650935 0 0 +2650972 128 0 +2651074 0 0 +2651120 128 0 +2651217 0 0 +2651289 128 0 +2651325 0 0 +2653923 totRewards = 53 +2653923 64 8 +2654123 64 0 +2654159 0 0 +2654164 64 0 +2656886 0 0 +2656923 64 0 +2657046 0 0 +2657096 64 0 +2657201 0 0 +2659902 totRewards = 54 +2659902 128 16 +2660074 0 16 +2660102 0 0 +2660120 128 0 +2660236 0 0 +2660248 128 0 +2660836 0 0 +2660882 128 0 +2661980 0 0 +2661989 128 0 +2662272 0 0 +2662301 128 0 +2662434 0 0 +2662461 128 0 +2662597 0 0 +2662628 128 0 +2662757 0 0 +2662797 128 0 +2662914 0 0 +2662953 128 0 +2663064 0 0 +2663102 128 0 +2663664 0 0 +2663762 128 0 +2663778 0 0 +2667190 128 0 +2667285 0 0 +2667322 128 0 +2667332 0 0 +2667348 128 0 +2667390 0 0 +2667467 128 0 +2667512 0 0 +2670338 totRewards = 55 +2670338 64 8 +2670537 0 8 +2670538 0 0 +2670554 64 0 +2673064 0 0 +2673094 64 0 +2673217 0 0 +2673252 64 0 +2673377 0 0 +2673410 64 0 +2673510 0 0 +2676470 totRewards = 56 +2676470 128 16 +2676605 0 16 +2676670 0 0 +2676690 128 0 +2676845 0 0 +2676875 128 0 +2676960 0 0 +2677004 128 0 +2677208 0 0 +2677249 128 0 +2677355 0 0 +2677401 128 0 +2677772 0 0 +2677798 128 0 +2678199 0 0 +2678229 128 0 +2678354 0 0 +2678386 128 0 +2678670 0 0 +2678702 128 0 +2678823 0 0 +2678865 128 0 +2678992 0 0 +2679026 128 0 +2679155 0 0 +2679195 128 0 +2679306 0 0 +2679354 128 0 +2679454 0 0 +2679516 128 0 +2679589 0 0 +2682766 totRewards = 57 +2682766 64 8 +2682966 64 0 +2683919 0 0 +2683933 64 0 +2684207 0 0 +2684224 64 0 +2685002 0 0 +2685015 64 0 +2685143 0 0 +2685175 64 0 +2685455 0 0 +2685474 64 0 +2685599 0 0 +2685657 64 0 +2685736 0 0 +2706877 totRewards = 58 +2706877 128 16 +2707077 128 0 +2707134 0 0 +2707214 128 0 +2707252 0 0 +2707327 128 0 +2707414 0 0 +2707461 128 0 +2707533 0 0 +2707581 128 0 +2707778 0 0 +2707811 128 0 +2707913 0 0 +2707937 128 0 +2708010 0 0 +2708044 128 0 +2708408 0 0 +2708433 128 0 +2708828 0 0 +2708854 128 0 +2708979 0 0 +2709006 128 0 +2709143 0 0 +2709156 128 0 +2709287 0 0 +2709320 128 0 +2709429 0 0 +2709472 128 0 +2709587 0 0 +2709610 128 0 +2709734 0 0 +2709760 128 0 +2709883 0 0 +2709894 128 0 +2710026 0 0 +2710035 128 0 +2710770 0 0 +2710801 128 0 +2710921 0 0 +2710971 128 0 +2711087 0 0 +2711140 128 0 +2711257 0 0 +2711311 128 0 +2711402 0 0 +2711473 128 0 +2711540 0 0 +2714595 totRewards = 59 +2714595 64 8 +2714780 0 8 +2714795 0 0 +2714827 64 0 +2716113 0 0 +2716122 64 0 +2716729 0 0 +2716755 64 0 +2717031 0 0 +2717070 64 0 +2718886 0 0 +2718918 64 0 +2719050 0 0 +2719131 64 0 +2719202 0 0 +2719520 64 0 +2719777 0 0 +2719810 64 0 +2719928 0 0 +2726538 totRewards = 60 +2726538 128 16 +2726738 128 0 +2726850 0 0 +2726888 128 0 +2727361 0 0 +2727372 128 0 +2727476 0 0 +2727496 128 0 +2727604 0 0 +2727635 128 0 +2727743 0 0 +2727763 128 0 +2727882 0 0 +2727908 128 0 +2728014 0 0 +2728049 128 0 +2728154 0 0 +2728191 128 0 +2728304 0 0 +2728339 128 0 +2728457 0 0 +2728493 128 0 +2728610 0 0 +2728654 128 0 +2728777 0 0 +2728828 128 0 +2728944 0 0 +2728988 128 0 +2729096 0 0 +2729146 128 0 +2729258 0 0 +2729311 128 0 +2729409 0 0 +2729448 128 0 +2729568 0 0 +2729585 128 0 +2729718 0 0 +2729757 128 0 +2729881 0 0 +2729920 128 0 +2730029 0 0 +2730079 128 0 +2730192 0 0 +2730243 128 0 +2730360 0 0 +2730364 128 0 +2730508 0 0 +2730526 128 0 +2730654 0 0 +2730683 128 0 +2730815 0 0 +2730851 128 0 +2730979 0 0 +2731018 128 0 +2731152 0 0 +2731200 128 0 +2731309 0 0 +2731371 128 0 +2731471 0 0 +2731551 128 0 +2731656 0 0 +2731757 128 0 +2731869 0 0 +2731971 128 0 +2732012 0 0 +2732183 128 0 +2732229 0 0 +2732309 128 0 +2732386 0 0 +2732469 128 0 +2732494 0 0 +2743355 128 0 +2744545 0 0 +2744578 128 0 +2744976 0 0 +2744989 128 0 +2745109 0 0 +2745726 128 0 +2746827 0 0 +2749691 totRewards = 61 +2749691 64 8 +2749731 0 8 +2749791 64 8 +2749891 64 0 +2749948 0 0 +2749972 64 0 +2750528 0 0 +2750550 64 0 +2752440 0 0 +2752448 64 0 +2752755 0 0 +2752771 64 0 +2752917 0 0 +2752939 64 0 +2753078 0 0 +2753101 64 0 +2753229 0 0 +2753256 64 0 +2753708 0 0 +2753718 64 0 +2753861 0 0 +2753899 64 0 +2754013 0 0 +2757104 totRewards = 62 +2757104 128 16 +2757235 0 16 +2757269 128 16 +2757304 128 0 +2757425 0 0 +2757489 128 0 +2757605 0 0 +2757630 128 0 +2757845 0 0 +2757882 128 0 +2757967 0 0 +2758017 128 0 +2758254 0 0 +2758267 128 0 +2758383 0 0 +2758411 128 0 +2758658 0 0 +2758674 128 0 +2758813 0 0 +2758831 128 0 +2758957 0 0 +2758982 128 0 +2759109 0 0 +2759141 128 0 +2759271 0 0 +2759299 128 0 +2759429 0 0 +2759475 128 0 +2759586 0 0 +2759625 128 0 +2759743 0 0 +2759777 128 0 +2759889 0 0 +2759921 128 0 +2760049 0 0 +2760067 128 0 +2760196 0 0 +2760236 128 0 +2760349 0 0 +2760394 128 0 +2760512 0 0 +2760556 128 0 +2760679 0 0 +2760744 128 0 +2760875 0 0 +2760895 128 0 +2760997 0 0 +2761064 128 0 +2761159 0 0 +2761405 128 0 +2761474 0 0 +2761947 128 0 +2761993 0 0 +2762069 128 0 +2762158 0 0 +2762237 128 0 +2762270 0 0 +2762301 128 0 +2762338 0 0 +2762413 128 0 +2762515 0 0 +2762593 128 0 +2762687 0 0 +2762825 128 0 +2762875 0 0 +2762963 128 0 +2762977 0 0 +2763006 128 0 +2763029 0 0 +2763599 128 0 +2763750 0 0 +2778762 128 0 +2779299 0 0 +2779310 128 0 +2779720 0 0 +2779753 128 0 +2779862 0 0 +2779894 128 0 +2780009 0 0 +2780092 128 0 +2780158 0 0 +2780234 128 0 +2780300 0 0 +2780360 128 0 +2780460 0 0 +2780551 128 0 +2780607 0 0 +2780789 128 0 +2780817 0 0 +2780931 128 0 +2780976 0 0 +2781104 128 0 +2781138 0 0 +2781321 128 0 +2781360 0 0 +2781483 128 0 +2781518 0 0 +2781884 128 0 +2781911 0 0 +2787595 totRewards = 63 +2787595 64 8 +2787795 64 0 +2787877 0 0 +2787916 64 0 +2787951 0 0 +2787971 64 0 +2790162 0 0 +2790167 64 0 +2790645 0 0 +2790670 64 0 +2791939 0 0 +2791975 64 0 +2792085 0 0 +2792148 64 0 +2792219 0 0 +2795469 totRewards = 64 +2795469 128 16 +2795576 0 16 +2795648 128 16 +2795669 128 0 +2795788 0 0 +2795851 128 0 +2795943 0 0 +2796014 128 0 +2796366 0 0 +2796401 128 0 +2796759 0 0 +2796781 128 0 +2797183 0 0 +2797208 128 0 +2797330 0 0 +2797363 128 0 +2797490 0 0 +2797512 128 0 +2797644 0 0 +2797673 128 0 +2797809 0 0 +2797850 128 0 +2797975 0 0 +2798014 128 0 +2798126 0 0 +2798163 128 0 +2798279 0 0 +2798323 128 0 +2798435 0 0 +2798481 128 0 +2798596 0 0 +2798654 128 0 +2798757 0 0 +2798823 128 0 +2798920 0 0 +2807348 totRewards = 65 +2807348 64 8 +2807548 64 0 +2808025 0 0 +2808028 64 0 +2810196 0 0 +2810226 64 0 +2810345 0 0 +2810392 64 0 +2810497 0 0 +2810569 64 0 +2810614 0 0 +2813558 totRewards = 66 +2813558 128 16 +2813758 128 0 +2813988 0 0 +2814012 128 0 +2814112 0 0 +2814179 128 0 +2815017 0 0 +2815036 128 0 +2815165 0 0 +2815173 128 0 +2815303 0 0 +2815311 128 0 +2815449 0 0 +2815465 128 0 +2815591 0 0 +2815617 128 0 +2815755 0 0 +2815768 128 0 +2815898 0 0 +2815928 128 0 +2816053 0 0 +2816098 128 0 +2816217 0 0 +2816253 128 0 +2816375 0 0 +2816390 128 0 +2816978 0 0 +2816985 128 0 +2817129 0 0 +2817155 128 0 +2817290 0 0 +2817312 128 0 +2817449 0 0 +2817473 128 0 +2817609 0 0 +2817652 128 0 +2817764 0 0 +2817804 128 0 +2817924 0 0 +2817966 128 0 +2818098 0 0 +2818153 128 0 +2818262 0 0 +2818318 128 0 +2818429 0 0 +2818489 128 0 +2818598 0 0 +2818666 128 0 +2818768 0 0 +2818819 128 0 +2818930 0 0 +2818995 128 0 +2819118 0 0 +2819166 128 0 +2819284 0 0 +2819343 128 0 +2819453 0 0 +2819521 128 0 +2819551 0 0 +2819579 128 0 +2819597 0 0 +2830526 totRewards = 67 +2830526 64 8 +2830672 0 8 +2830726 0 0 +2830732 64 0 +2831181 0 0 +2831203 64 0 +2832711 0 0 +2832728 64 0 +2833188 0 0 +2833203 64 0 +2833355 0 0 +2833365 64 0 +2833681 0 0 +2833698 64 0 +2833843 0 0 +2834265 64 0 +2835014 0 0 +2835058 64 0 +2835167 0 0 +2835219 64 0 +2835279 0 0 +2837950 totRewards = 68 +2837950 128 16 +2838150 128 0 +2838178 0 0 +2838246 128 0 +2838261 0 0 +2838325 128 0 +2838532 0 0 +2838570 128 0 +2838778 0 0 +2838815 128 0 +2838915 0 0 +2838967 128 0 +2839344 0 0 +2839362 128 0 +2839799 0 0 +2839819 128 0 +2839944 0 0 +2839984 128 0 +2840106 0 0 +2840124 128 0 +2840264 0 0 +2840297 128 0 +2840416 0 0 +2840459 128 0 +2840584 0 0 +2840619 128 0 +2840740 0 0 +2840768 128 0 +2840903 0 0 +2840909 128 0 +2841496 0 0 +2841512 128 0 +2841651 0 0 +2841691 128 0 +2841802 0 0 +2846687 totRewards = 69 +2846687 64 8 +2846887 64 0 +2848800 0 0 +2848810 64 0 +2849435 0 0 +2849465 64 0 +2849584 0 0 +2849630 64 0 +2849756 0 0 +2849769 64 0 +2849895 0 0 +2849972 64 0 +2850025 0 0 +2853239 totRewards = 70 +2853239 128 16 +2853434 0 16 +2853439 0 0 +2853550 128 0 +2853586 0 0 +2853625 128 0 +2853850 0 0 +2853874 128 0 +2854227 0 0 +2854279 128 0 +2854655 0 0 +2854676 128 0 +2854949 0 0 +2854963 128 0 +2855101 0 0 +2855129 128 0 +2855248 0 0 +2855290 128 0 +2855421 0 0 +2855451 128 0 +2855580 0 0 +2855622 128 0 +2855736 0 0 +2855780 128 0 +2855894 0 0 +2855929 128 0 +2856064 0 0 +2856067 128 0 +2856202 0 0 +2856220 128 0 +2856358 0 0 +2856374 128 0 +2856674 0 0 +2856695 128 0 +2856817 0 0 +2856867 128 0 +2856972 0 0 +2860351 totRewards = 71 +2860351 64 8 +2860551 64 0 +2860594 0 0 +2860605 64 0 +2863128 0 0 +2863147 64 0 +2863681 0 0 +2863721 64 0 +2863856 0 0 +2863872 64 0 +2864884 0 0 +2865052 64 0 +2865726 0 0 +2865753 64 0 +2865907 0 0 +2865934 64 0 +2867130 0 0 +2867142 64 0 +2867841 0 0 +2867860 64 0 +2867996 0 0 +2873333 64 0 +2873589 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x139658897010768 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +4817847 0 0 +4817864 64 0 +4818025 0 0 +4818034 64 0 +4818369 0 0 +4818377 64 0 +4818526 0 0 +4818555 64 0 +4818673 0 0 +4818736 64 0 +4818831 0 0 +4819088 64 0 +4819182 0 0 +4819213 64 0 +4819739 0 0 +4819764 64 0 +4819903 0 0 +4819950 64 0 +4820061 0 0 +4820111 64 0 +4820420 0 0 +4820429 64 0 +4820510 0 0 +4828786 totRewards = 3 +4828786 128 16 +4828986 128 0 +4829102 0 0 +4829123 128 0 +4829163 0 0 +4829191 128 0 +4829454 0 0 +4829472 128 0 +4829583 0 0 +4829600 128 0 +4829709 0 0 +4829746 128 0 +4829840 0 0 +4829888 128 0 +4829990 0 0 +4830039 128 0 +4830140 0 0 +4830186 128 0 +4830278 0 0 +4830338 128 0 +4830443 0 0 +4830498 128 0 +4830615 0 0 +4830682 128 0 +4830774 0 0 +4830907 128 0 +4830929 0 0 +4831031 128 0 +4831112 0 0 +4831194 128 0 +4831301 0 0 +4831362 128 0 +4831469 0 0 +4831536 128 0 +4831642 0 0 +4831707 128 0 +4831814 0 0 +4831907 128 0 +4831930 0 0 +4831970 128 0 +4832014 0 0 +4832102 128 0 +4832216 0 0 +4832248 128 0 +4832391 0 0 +4832422 128 0 +4833030 0 0 +4833058 128 0 +4833227 0 0 +4833249 128 0 +4833394 0 0 +4833452 128 0 +4833557 0 0 +4833703 128 0 +4833758 0 0 +4833839 128 0 +4833954 0 0 +4834046 128 0 +4834077 0 0 +4834088 128 0 +4834147 0 0 +4834291 128 0 +4834346 0 0 +4834485 128 0 +4834534 0 0 +4834622 128 0 +4834638 0 0 +4834686 128 0 +4834721 0 0 +4834793 128 0 +4834906 0 0 +4834976 128 0 +4835056 0 0 +4852460 totRewards = 4 +4852460 64 8 +4852512 0 8 +4852521 64 8 +4852660 64 0 +4852675 0 0 +4852738 64 0 +4852959 0 0 +4852998 64 0 +4853080 0 0 +4853127 64 0 +4853229 0 0 +4853243 64 0 +4853356 0 0 +4853378 64 0 +4853487 0 0 +4853492 64 0 +4853610 0 0 +4853641 64 0 +4853755 0 0 +4853781 64 0 +4853899 0 0 +4853919 64 0 +4854034 0 0 +4854057 64 0 +4854186 0 0 +4854216 64 0 +4854338 0 0 +4854359 64 0 +4854502 0 0 +4854523 64 0 +4854658 0 0 +4854696 64 0 +4854849 0 0 +4854873 64 0 +4855013 0 0 +4855063 64 0 +4855209 0 0 +4855242 64 0 +4855396 0 0 +4855426 64 0 +4855575 0 0 +4855604 64 0 +4856208 0 0 +4856240 64 0 +4856392 0 0 +4856419 64 0 +4856580 0 0 +4856610 64 0 +4856759 0 0 +4856801 64 0 +4856954 0 0 +4857005 64 0 +4857152 0 0 +4857180 64 0 +4857889 0 0 +4857932 64 0 +4858068 0 0 +4858111 64 0 +4858420 0 0 +4858438 64 0 +4858585 0 0 +4866594 totRewards = 5 +4866594 128 16 +4866662 0 16 +4866681 128 16 +4866794 128 0 +4867290 0 0 +4867314 128 0 +4867550 0 0 +4867587 128 0 +4867683 0 0 +4867725 128 0 +4867812 0 0 +4867845 128 0 +4867957 0 0 +4867982 128 0 +4868100 0 0 +4868124 128 0 +4868232 0 0 +4868271 128 0 +4868372 0 0 +4868411 128 0 +4868516 0 0 +4868554 128 0 +4868673 0 0 +4868705 128 0 +4868821 0 0 +4868874 128 0 +4868991 0 0 +4869036 128 0 +4869154 0 0 +4869203 128 0 +4869318 0 0 +4869385 128 0 +4869503 0 0 +4869568 128 0 +4869673 0 0 +4869754 128 0 +4869863 0 0 +4869946 128 0 +4870043 0 0 +4870126 128 0 +4870241 0 0 +4870282 128 0 +4871043 0 0 +4871067 128 0 +4871200 0 0 +4871242 128 0 +4871377 0 0 +4871431 128 0 +4871575 0 0 +4871609 128 0 +4871755 0 0 +4871817 128 0 +4871920 0 0 +4872003 128 0 +4872024 0 0 +4872068 128 0 +4872107 0 0 +4872194 128 0 +4872273 0 0 +4876373 totRewards = 6 +4876373 64 8 +4876573 64 0 +4876675 0 0 +4876736 64 0 +4876839 0 0 +4876874 64 0 +4876984 0 0 +4876997 64 0 +4877117 0 0 +4877126 64 0 +4877250 0 0 +4877260 64 0 +4877517 0 0 +4877545 64 0 +4877666 0 0 +4877697 64 0 +4877817 0 0 +4877847 64 0 +4877980 0 0 +4878003 64 0 +4878145 0 0 +4878177 64 0 +4878328 0 0 +4878362 64 0 +4878523 0 0 +4878577 64 0 +4878731 0 0 +4878775 64 0 +4878934 0 0 +4878967 64 0 +4879125 0 0 +4879162 64 0 +4879300 0 0 +4879318 64 0 +4880030 0 0 +4880060 64 0 +4880215 0 0 +4880260 64 0 +4880399 0 0 +4880465 64 0 +4880596 0 0 +4880664 64 0 +4880751 0 0 +4880780 64 0 +4881140 0 0 +4881161 64 0 +4881317 0 0 +4881362 64 0 +4881499 0 0 +4881559 64 0 +4881695 0 0 +4881720 64 0 +4882244 0 0 +4882270 64 0 +4882413 0 0 +4882508 64 0 +4882546 0 0 +4896386 64 0 +4896645 0 0 +4896669 64 0 +4896794 0 0 +4896812 64 0 +4896947 0 0 +4896952 64 0 +4897084 0 0 +4897108 64 0 +4897231 0 0 +4897256 64 0 +4897387 0 0 +4897407 64 0 +4897547 0 0 +4897567 64 0 +4897717 0 0 +4897729 64 0 +4897865 0 0 +4897901 64 0 +4898027 0 0 +4898077 64 0 +4898188 0 0 +4898258 64 0 +4898327 0 0 +4901581 totRewards = 7 +4901581 128 16 +4901694 0 16 +4901717 128 16 +4901772 0 16 +4901781 0 0 +4901805 128 0 +4902063 0 0 +4902089 128 0 +4902305 0 0 +4902340 128 0 +4902427 0 0 +4902479 128 0 +4902847 0 0 +4902863 128 0 +4903270 0 0 +4903289 128 0 +4903411 0 0 +4903434 128 0 +4903569 0 0 +4903584 128 0 +4903714 0 0 +4903744 128 0 +4903871 0 0 +4903917 128 0 +4904046 0 0 +4904082 128 0 +4904216 0 0 +4904258 128 0 +4904380 0 0 +4904424 128 0 +4904567 0 0 +4904609 128 0 +4904742 0 0 +4904781 128 0 +4904916 0 0 +4904961 128 0 +4905081 0 0 +4905124 128 0 +4905253 0 0 +4905287 128 0 +4905593 0 0 +4905609 128 0 +4905739 0 0 +4905792 128 0 +4905931 0 0 +4906048 128 0 +4906099 0 0 +4906215 128 0 +4906274 0 0 +4906347 128 0 +4906454 0 0 +4906533 128 0 +4906542 0 0 +4906585 128 0 +4906644 0 0 +4906773 128 0 +4906818 0 0 +4907177 128 0 +4907200 0 0 +4907941 128 0 +4907959 0 0 +4908081 128 0 +4908131 0 0 +4908213 128 0 +4908317 0 0 +4908381 128 0 +4908418 0 0 +4908446 128 0 +4908485 0 0 +4911724 totRewards = 8 +4911724 64 8 +4911924 64 0 +4911941 0 0 +4911962 64 0 +4912433 0 0 +4912458 64 0 +4912573 0 0 +4912601 64 0 +4912851 0 0 +4912869 64 0 +4912989 0 0 +4913014 64 0 +4913134 0 0 +4913160 64 0 +4913459 0 0 +4913478 64 0 +4913610 0 0 +4913641 64 0 +4913784 0 0 +4913808 64 0 +4913964 0 0 +4913989 64 0 +4914118 0 0 +4914155 64 0 +4914296 0 0 +4914326 64 0 +4914463 0 0 +4914498 64 0 +4914627 0 0 +4914667 64 0 +4914793 0 0 +4914823 64 0 +4914974 0 0 +4914985 64 0 +4915471 0 0 +4915498 64 0 +4915646 0 0 +4915671 64 0 +4916187 0 0 +4916204 64 0 +4916350 0 0 +4916378 64 0 +4916503 0 0 +4916561 64 0 +4916674 0 0 +4920485 totRewards = 9 +4920485 128 16 +4920685 128 0 +4920977 0 0 +4921018 128 0 +4921139 0 0 +4921178 128 0 +4921274 0 0 +4921292 128 0 +4921397 0 0 +4921428 128 0 +4921547 0 0 +4921562 128 0 +4921701 0 0 +4921720 128 0 +4921826 0 0 +4921858 128 0 +4921972 0 0 +4921995 128 0 +4922277 0 0 +4922310 128 0 +4922441 0 0 +4922467 128 0 +4922606 0 0 +4922629 128 0 +4922757 0 0 +4922800 128 0 +4922934 0 0 +4922979 128 0 +4923108 0 0 +4923158 128 0 +4923280 0 0 +4923331 128 0 +4923450 0 0 +4923491 128 0 +4924091 0 0 +4924123 128 0 +4924262 0 0 +4924287 128 0 +4924429 0 0 +4924468 128 0 +4924610 0 0 +4924639 128 0 +4924788 0 0 +4924827 128 0 +4924973 0 0 +4925030 128 0 +4925160 0 0 +4925221 128 0 +4925327 0 0 +4925937 128 0 +4925950 0 0 +4928799 totRewards = 10 +4928799 64 8 +4928969 0 8 +4928987 64 8 +4928999 64 0 +4929480 0 0 +4929512 64 0 +4929639 0 0 +4929655 64 0 +4929782 0 0 +4929805 64 0 +4929915 0 0 +4929932 64 0 +4930065 0 0 +4930084 64 0 +4930210 0 0 +4930220 64 0 +4930525 0 0 +4930544 64 0 +4930854 0 0 +4930878 64 0 +4931024 0 0 +4931054 64 0 +4931200 0 0 +4931231 64 0 +4931565 0 0 +4931603 64 0 +4931764 0 0 +4931795 64 0 +4931957 0 0 +4931989 64 0 +4932364 0 0 +4932410 64 0 +4932560 0 0 +4947797 64 0 +4947959 0 0 +4948025 64 0 +4948717 0 0 +4948727 64 0 +4949039 0 0 +4949046 64 0 +4949176 0 0 +4949215 64 0 +4949340 0 0 +4949386 64 0 +4949498 0 0 +4967056 totRewards = 11 +4967056 128 16 +4967231 0 16 +4967256 0 0 +4967312 128 0 +4967362 0 0 +4967376 128 0 +4967612 0 0 +4967650 128 0 +4967858 0 0 +4967882 128 0 +4967971 0 0 +4968022 128 0 +4968377 0 0 +4968394 128 0 +4968518 0 0 +4968538 128 0 +4968794 0 0 +4968807 128 0 +4968951 0 0 +4968957 128 0 +4969082 0 0 +4969104 128 0 +4969226 0 0 +4969252 128 0 +4969378 0 0 +4969407 128 0 +4969531 0 0 +4969563 128 0 +4969697 0 0 +4969720 128 0 +4969861 0 0 +4969900 128 0 +4970025 0 0 +4970067 128 0 +4970192 0 0 +4970228 128 0 +4970347 0 0 +4970388 128 0 +4970503 0 0 +4970541 128 0 +4970971 0 0 +4971005 128 0 +4971135 0 0 +4971168 128 0 +4971305 0 0 +4971337 128 0 +4971468 0 0 +4971506 128 0 +4971636 0 0 +4971677 128 0 +4971809 0 0 +4971862 128 0 +4971983 0 0 +4972038 128 0 +4972151 0 0 +4972225 128 0 +4972334 0 0 +4972421 128 0 +4972490 0 0 +4975667 totRewards = 12 +4975667 64 8 +4975815 0 8 +4975853 64 8 +4975867 64 0 +4976483 0 0 +4976489 64 0 +4976881 0 0 +4976893 64 0 +4977017 0 0 +4977029 64 0 +4977172 0 0 +4977191 64 0 +4977318 0 0 +4977342 64 0 +4977468 0 0 +4977488 64 0 +4977628 0 0 +4977644 64 0 +4977793 0 0 +4977817 64 0 +4977959 0 0 +4977990 64 0 +4978129 0 0 +4978148 64 0 +4978307 0 0 +4978314 64 0 +4978461 0 0 +4978489 64 0 +4978625 0 0 +4978665 64 0 +4978796 0 0 +4978818 64 0 +4979118 0 0 +4979125 64 0 +4979622 0 0 +4979635 64 0 +4979958 0 0 +4979985 64 0 +4980103 0 0 +4980159 64 0 +4980260 0 0 +4983502 totRewards = 13 +4983502 128 16 +4983702 128 0 +4983726 0 0 +4983779 128 0 +4983973 0 0 +4984037 128 0 +4984095 0 0 +4984118 128 0 +4984358 0 0 +4984393 128 0 +4984494 0 0 +4984560 128 0 +4984607 0 0 +4984634 128 0 +4984925 0 0 +4984932 128 0 +4985063 0 0 +4985072 128 0 +4985202 0 0 +4985216 128 0 +4985343 0 0 +4985374 128 0 +4985498 0 0 +4985536 128 0 +4985666 0 0 +4985703 128 0 +4985825 0 0 +4985871 128 0 +4985996 0 0 +4986049 128 0 +4986173 0 0 +4986216 128 0 +4986345 0 0 +4986392 128 0 +4986515 0 0 +4986564 128 0 +4986683 0 0 +4986706 128 0 +4987137 0 0 +4987165 128 0 +4987293 0 0 +4987326 128 0 +4987459 0 0 +4987529 128 0 +4987549 0 0 +4987558 128 0 +4987628 0 0 +4987690 128 0 +4987801 0 0 +4988118 128 0 +4988160 0 0 +4988272 128 0 +4988333 0 0 +4988481 128 0 +4988512 0 0 +4988658 128 0 +4988684 0 0 +4988847 128 0 +4988874 0 0 +4992017 totRewards = 14 +4992017 64 8 +4992217 64 0 +4992245 0 0 +4992258 64 0 +4993747 0 0 +4993755 64 0 +4994232 0 0 +4994243 64 0 +4994394 0 0 +4994418 64 0 +4994917 0 0 +4994937 64 0 +4995077 0 0 +4995101 64 0 +4995241 0 0 +4995266 64 0 +4995416 0 0 +4995427 64 0 +4995585 0 0 +4995600 64 0 +4995760 0 0 +4995767 64 0 +4996645 0 0 +4996677 64 0 +4996811 0 0 +4996862 64 0 +4997027 0 0 +4997159 64 0 +4997203 0 0 +4997275 64 0 +4997417 0 0 +4997432 64 0 +4997789 0 0 +4997818 64 0 +4997960 0 0 +4997999 64 0 +4998121 0 0 +4998164 64 0 +4998268 0 0 +4998346 64 0 +4998393 0 0 +5001232 totRewards = 15 +5001232 128 16 +5001398 0 16 +5001432 0 0 +5001436 128 0 +5001501 0 0 +5001510 128 0 +5001628 0 0 +5001660 128 0 +5001753 0 0 +5001791 128 0 +5002001 0 0 +5002056 128 0 +5002135 0 0 +5002203 128 0 +5002418 0 0 +5002432 128 0 +5002556 0 0 +5002576 128 0 +5002867 0 0 +5002876 128 0 +5002999 0 0 +5003032 128 0 +5003161 0 0 +5003186 128 0 +5003332 0 0 +5003353 128 0 +5003491 0 0 +5003532 128 0 +5003656 0 0 +5003703 128 0 +5003835 0 0 +5003879 128 0 +5004005 0 0 +5004053 128 0 +5004179 0 0 +5004226 128 0 +5004337 0 0 +5004383 128 0 +5004501 0 0 +5004527 128 0 +5004665 0 0 +5004722 128 0 +5004823 0 0 +5004889 128 0 +5004995 0 0 +5005073 128 0 +5005082 0 0 +5005114 128 0 +5005159 0 0 +5005242 128 0 +5005334 0 0 +5005852 128 0 +5005893 0 0 +5008890 totRewards = 16 +5008890 64 8 +5009090 64 0 +5009153 0 0 +5009177 64 0 +5009662 0 0 +5009677 64 0 +5010833 0 0 +5010840 64 0 +5011344 0 0 +5011352 64 0 +5012032 0 0 +5012067 64 0 +5012533 0 0 +5012549 64 0 +5012852 0 0 +5012878 64 0 +5013573 0 0 +5013589 64 0 +5013750 0 0 +5013779 64 0 +5013922 0 0 +5013956 64 0 +5014073 0 0 +5014143 64 0 +5014202 0 0 +5016866 totRewards = 17 +5016866 128 16 +5017035 0 16 +5017066 0 0 +5017093 128 0 +5017282 0 0 +5017317 128 0 +5017427 0 0 +5017472 128 0 +5017682 0 0 +5017714 128 0 +5017810 0 0 +5017879 128 0 +5018240 0 0 +5018268 128 0 +5018689 0 0 +5018729 128 0 +5018864 0 0 +5018897 128 0 +5019039 0 0 +5019070 128 0 +5019192 0 0 +5019238 128 0 +5019368 0 0 +5019406 128 0 +5019540 0 0 +5019606 128 0 +5019715 0 0 +5019777 128 0 +5019895 0 0 +5019949 128 0 +5020073 0 0 +5020130 128 0 +5020253 0 0 +5020329 128 0 +5020438 0 0 +5020490 128 0 +5020632 0 0 +5020694 128 0 +5020806 0 0 +5020877 128 0 +5020988 0 0 +5021053 128 0 +5021167 0 0 +5021203 128 0 +5021466 0 0 +5021522 128 0 +5021633 0 0 +5021662 128 0 +5021802 0 0 +5021856 128 0 +5021973 0 0 +5022016 128 0 +5022131 0 0 +5022266 128 0 +5022292 0 0 +5022425 128 0 +5022475 0 0 +5026113 totRewards = 18 +5026113 64 8 +5026313 64 0 +5026398 0 0 +5026415 64 0 +5027453 0 0 +5027465 64 0 +5028444 0 0 +5028457 64 0 +5028987 0 0 +5029001 64 0 +5029159 0 0 +5029175 64 0 +5029328 0 0 +5029359 64 0 +5030455 0 0 +5030519 64 0 +5030679 0 0 +5030706 64 0 +5031103 0 0 +5031124 64 0 +5031310 0 0 +5031326 64 0 +5031509 0 0 +5031532 64 0 +5031694 0 0 +5031778 64 0 +5031836 0 0 +5038203 totRewards = 19 +5038203 128 16 +5038403 128 0 +5038470 0 0 +5038492 128 0 +5038725 0 0 +5038778 128 0 +5039133 0 0 +5039171 128 0 +5039554 0 0 +5039578 128 0 +5039998 0 0 +5040014 128 0 +5040312 0 0 +5040331 128 0 +5040470 0 0 +5040494 128 0 +5040634 0 0 +5040676 128 0 +5040814 0 0 +5040839 128 0 +5040978 0 0 +5041015 128 0 +5041135 0 0 +5041154 128 0 +5041700 0 0 +5044489 totRewards = 20 +5044489 64 8 +5044677 0 8 +5044689 0 0 +5044711 64 0 +5045338 0 0 +5045366 64 0 +5047558 0 0 +5047585 64 0 +5047726 0 0 +5047750 64 0 +5047899 0 0 +5047908 64 0 +5048219 0 0 +5048237 64 0 +5049433 0 0 +5049446 64 0 +5049579 0 0 +5049625 64 0 +5049732 0 0 +5052543 totRewards = 21 +5052543 128 16 +5052718 0 16 +5052743 0 0 +5052789 128 0 +5052845 0 0 +5052848 128 0 +5052963 0 0 +5053000 128 0 +5053094 0 0 +5053143 128 0 +5053351 0 0 +5053393 128 0 +5053493 0 0 +5053552 128 0 +5053940 0 0 +5053959 128 0 +5054377 0 0 +5054396 128 0 +5054523 0 0 +5054549 128 0 +5054844 0 0 +5054879 128 0 +5055005 0 0 +5055045 128 0 +5055179 0 0 +5055212 128 0 +5055345 0 0 +5055389 128 0 +5055517 0 0 +5055559 128 0 +5055688 0 0 +5055726 128 0 +5055862 0 0 +5055891 128 0 +5056013 0 0 +5056070 128 0 +5056176 0 0 +5056230 128 0 +5056347 0 0 +5056398 128 0 +5056519 0 0 +5056566 128 0 +5056682 0 0 +5056732 128 0 +5056850 0 0 +5056891 128 0 +5057020 0 0 +5057083 128 0 +5057197 0 0 +5057235 128 0 +5057366 0 0 +5057420 128 0 +5057542 0 0 +5057592 128 0 +5057703 0 0 +5057777 128 0 +5057897 0 0 +5057960 128 0 +5058056 0 0 +5061089 totRewards = 22 +5061089 64 8 +5061289 64 0 +5061291 0 0 +5061310 64 0 +5063485 0 0 +5063497 64 0 +5063662 0 0 +5063674 64 0 +5063833 0 0 +5063863 64 0 +5064177 0 0 +5064211 64 0 +5064526 0 0 +5064541 64 0 +5064699 0 0 +5064716 64 0 +5064881 0 0 +5064886 64 0 +5065771 0 0 +5065783 64 0 +5066106 0 0 +5066257 64 0 +5066781 0 0 +5066830 64 0 +5066981 0 0 +5067021 64 0 +5067175 0 0 +5067248 64 0 +5067378 0 0 +5067422 64 0 +5067576 0 0 +5075163 64 0 +5075208 0 0 +5075224 64 0 +5075249 0 0 +5075287 64 0 +5075300 0 0 +5078142 totRewards = 23 +5078142 128 16 +5078258 0 16 +5078302 128 16 +5078342 128 0 +5078345 0 0 +5078381 128 0 +5078596 0 0 +5078633 128 0 +5078843 0 0 +5078862 128 0 +5078967 0 0 +5079003 128 0 +5079951 0 0 +5079980 128 0 +5080260 0 0 +5080281 128 0 +5080419 0 0 +5080466 128 0 +5080587 0 0 +5080629 128 0 +5080761 0 0 +5080802 128 0 +5080927 0 0 +5080975 128 0 +5081092 0 0 +5081138 128 0 +5081251 0 0 +5081293 128 0 +5081556 0 0 +5081592 128 0 +5081697 0 0 +5084357 totRewards = 24 +5084357 64 8 +5084557 64 0 +5084562 0 0 +5084582 64 0 +5087017 0 0 +5087036 64 0 +5087177 0 0 +5087210 64 0 +5087523 0 0 +5087542 64 0 +5087686 0 0 +5087733 64 0 +5087837 0 0 +5087891 64 0 +5088028 0 0 +5088033 64 0 +5088359 0 0 +5088374 64 0 +5088517 0 0 +5092862 totRewards = 25 +5092862 128 16 +5093062 128 0 +5093079 0 0 +5093150 128 0 +5093188 0 0 +5093209 128 0 +5093448 0 0 +5093563 128 0 +5093631 0 0 +5093710 128 0 +5094748 0 0 +5094768 128 0 +5095218 0 0 +5095240 128 0 +5095376 0 0 +5095406 128 0 +5095538 0 0 +5095559 128 0 +5096438 0 0 +5096445 128 0 +5096601 0 0 +5096613 128 0 +5096755 0 0 +5096784 128 0 +5096917 0 0 +5096946 128 0 +5097086 0 0 +5097105 128 0 +5097276 0 0 +5097303 128 0 +5097450 0 0 +5097470 128 0 +5097604 0 0 +5097645 128 0 +5097759 0 0 +5100630 totRewards = 26 +5100630 64 8 +5100819 0 8 +5100829 64 8 +5100830 64 0 +5101055 0 0 +5101068 64 0 +5102287 0 0 +5102294 64 0 +5102437 0 0 +5102446 64 0 +5103424 0 0 +5103442 64 0 +5103578 0 0 +5103612 64 0 +5104060 0 0 +5104071 64 0 +5104375 0 0 +5104400 64 0 +5104529 0 0 +5107046 totRewards = 27 +5107046 128 16 +5107209 0 16 +5107246 0 0 +5107267 128 0 +5107307 0 0 +5107356 128 0 +5107447 0 0 +5107485 128 0 +5107580 0 0 +5107618 128 0 +5107822 0 0 +5107879 128 0 +5107961 0 0 +5108034 128 0 +5108402 0 0 +5108428 128 0 +5108724 0 0 +5108744 128 0 +5108870 0 0 +5108924 128 0 +5109045 0 0 +5109082 128 0 +5109212 0 0 +5109254 128 0 +5109371 0 0 +5109428 128 0 +5109550 0 0 +5109597 128 0 +5109718 0 0 +5109763 128 0 +5109886 0 0 +5109902 128 0 +5110195 0 0 +5110215 128 0 +5110342 0 0 +5110385 128 0 +5110502 0 0 +5110551 128 0 +5110663 0 0 +5110720 128 0 +5110838 0 0 +5110894 128 0 +5111005 0 0 +5111053 128 0 +5111181 0 0 +5111219 128 0 +5111331 0 0 +5111461 128 0 +5111535 0 0 +5111594 128 0 +5111712 0 0 +5111834 128 0 +5111882 0 0 +5111971 128 0 +5112063 0 0 +5114930 totRewards = 28 +5114930 64 8 +5115130 64 0 +5115342 0 0 +5115353 64 0 +5115466 0 0 +5115479 64 0 +5117913 0 0 +5117950 64 0 +5118083 0 0 +5118109 64 0 +5118242 0 0 +5118279 64 0 +5118377 0 0 +5121063 totRewards = 29 +5121063 128 16 +5121263 128 0 +5121284 0 0 +5121321 128 0 +5121531 0 0 +5121579 128 0 +5121675 0 0 +5121685 128 0 +5121914 0 0 +5121958 128 0 +5122058 0 0 +5122093 128 0 +5122352 0 0 +5122359 128 0 +5122485 0 0 +5122515 128 0 +5122943 0 0 +5122971 128 0 +5123104 0 0 +5123135 128 0 +5123279 0 0 +5123289 128 0 +5123418 0 0 +5123458 128 0 +5123589 0 0 +5123625 128 0 +5123756 0 0 +5123809 128 0 +5123944 0 0 +5123994 128 0 +5124120 0 0 +5124169 128 0 +5124287 0 0 +5124333 128 0 +5124454 0 0 +5124473 128 0 +5124906 0 0 +5124936 128 0 +5125070 0 0 +5125110 128 0 +5125219 0 0 +5125272 128 0 +5125381 0 0 +5125430 128 0 +5125545 0 0 +5125607 128 0 +5125722 0 0 +5125814 128 0 +5125902 0 0 +5125984 128 0 +5126082 0 0 +5126164 128 0 +5126250 0 0 +5129004 totRewards = 30 +5129004 64 8 +5129204 64 0 +5131367 0 0 +5131377 64 0 +5132020 0 0 +5132050 64 0 +5132186 0 0 +5132216 64 0 +5132347 0 0 +5132387 64 0 +5132504 0 0 +5132561 64 0 +5132652 0 0 +5135335 totRewards = 31 +5135335 128 16 +5135508 0 16 +5135535 0 0 +5135640 128 0 +5135732 0 0 +5135766 128 0 +5136102 0 0 +5136154 128 0 +5136237 0 0 +5136284 128 0 +5136673 0 0 +5136703 128 0 +5137126 0 0 +5137148 128 0 +5137285 0 0 +5137306 128 0 +5137450 0 0 +5137477 128 0 +5137616 0 0 +5137659 128 0 +5137783 0 0 +5137826 128 0 +5137962 0 0 +5138000 128 0 +5138129 0 0 +5138174 128 0 +5138299 0 0 +5138346 128 0 +5138457 0 0 +5138505 128 0 +5138606 0 0 +5138667 128 0 +5138769 0 0 +5138833 128 0 +5138882 0 0 +5139462 128 0 +5141905 0 0 +5144726 totRewards = 32 +5144726 64 8 +5144926 64 0 +5147101 0 0 +5147127 64 0 +5147279 0 0 +5147299 64 0 +5147604 0 0 +5147640 64 0 +5147763 0 0 +5147786 64 0 +5147925 0 0 +5147955 64 0 +5148080 0 0 +5148143 64 0 +5148214 0 0 +5151111 totRewards = 33 +5151111 128 16 +5151273 0 16 +5151311 0 0 +5151344 128 0 +5151670 0 0 +5151688 128 0 +5151935 0 0 +5151952 128 0 +5152056 0 0 +5152097 128 0 +5152484 0 0 +5152511 128 0 +5152814 0 0 +5152826 128 0 +5152960 0 0 +5153007 128 0 +5153127 0 0 +5153165 128 0 +5153285 0 0 +5153323 128 0 +5153452 0 0 +5153497 128 0 +5153620 0 0 +5153669 128 0 +5153794 0 0 +5153846 128 0 +5153967 0 0 +5154020 128 0 +5154141 0 0 +5154187 128 0 +5154313 0 0 +5154360 128 0 +5154489 0 0 +5154527 128 0 +5154652 0 0 +5154702 128 0 +5154833 0 0 +5154877 128 0 +5155016 0 0 +5155056 128 0 +5155182 0 0 +5155246 128 0 +5155368 0 0 +5155426 128 0 +5155536 0 0 +5155601 128 0 +5155688 0 0 +5158474 totRewards = 34 +5158474 64 8 +5158674 64 0 +5158727 0 0 +5158761 64 0 +5159911 0 0 +5159923 64 0 +5160893 0 0 +5160903 64 0 +5161066 0 0 +5161084 64 0 +5161421 0 0 +5161439 64 0 +5161596 0 0 +5161615 64 0 +5161765 0 0 +5161788 64 0 +5162603 0 0 +5162626 64 0 +5162768 0 0 +5166994 totRewards = 35 +5166994 128 16 +5167136 0 16 +5167194 0 0 +5167204 128 0 +5167391 0 0 +5167411 128 0 +5167529 0 0 +5167569 128 0 +5167669 0 0 +5167684 128 0 +5167770 0 0 +5167808 128 0 +5167905 0 0 +5167957 128 0 +5168206 0 0 +5168217 128 0 +5168342 0 0 +5168369 128 0 +5168809 0 0 +5168840 128 0 +5168968 0 0 +5169002 128 0 +5169134 0 0 +5169159 128 0 +5169295 0 0 +5169332 128 0 +5169458 0 0 +5169504 128 0 +5169624 0 0 +5169671 128 0 +5169796 0 0 +5169842 128 0 +5169962 0 0 +5170008 128 0 +5170127 0 0 +5170167 128 0 +5170295 0 0 +5170342 128 0 +5170465 0 0 +5170518 128 0 +5170617 0 0 +5170685 128 0 +5170792 0 0 +5170855 128 0 +5170967 0 0 +5171038 128 0 +5171144 0 0 +5171212 128 0 +5171289 0 0 +5173934 totRewards = 36 +5173934 64 8 +5174105 0 8 +5174130 64 8 +5174134 64 0 +5175323 0 0 +5175328 64 0 +5176145 0 0 +5176158 64 0 +5176303 0 0 +5176327 64 0 +5176657 0 0 +5176671 64 0 +5176823 0 0 +5176849 64 0 +5176986 0 0 +5177024 64 0 +5177150 0 0 +5177186 64 0 +5177317 0 0 +5177351 64 0 +5177460 0 0 +5180085 totRewards = 37 +5180085 128 16 +5180281 0 16 +5180285 0 0 +5180336 128 0 +5180527 0 0 +5180575 128 0 +5180662 0 0 +5180700 128 0 +5180918 0 0 +5180954 128 0 +5181053 0 0 +5181106 128 0 +5181492 0 0 +5181532 128 0 +5181796 0 0 +5181808 128 0 +5181944 0 0 +5181984 128 0 +5182104 0 0 +5182141 128 0 +5182279 0 0 +5182301 128 0 +5182427 0 0 +5182469 128 0 +5182594 0 0 +5182641 128 0 +5182770 0 0 +5182816 128 0 +5182934 0 0 +5182984 128 0 +5183104 0 0 +5183144 128 0 +5183270 0 0 +5183318 128 0 +5183450 0 0 +5183501 128 0 +5183601 0 0 +5183652 128 0 +5183762 0 0 +5183813 128 0 +5183927 0 0 +5183980 128 0 +5184082 0 0 +5184162 128 0 +5184268 0 0 +5184311 128 0 +5184425 0 0 +5184559 128 0 +5184626 0 0 +5185072 128 0 +5185147 0 0 +5185231 128 0 +5185272 0 0 +5185296 128 0 +5185303 0 0 +5188151 totRewards = 38 +5188151 64 8 +5188332 0 8 +5188350 64 8 +5188351 64 0 +5190520 0 0 +5190537 64 0 +5190865 0 0 +5190895 64 0 +5191213 0 0 +5191231 64 0 +5191381 0 0 +5191404 64 0 +5191556 0 0 +5191573 64 0 +5192075 0 0 +5192099 64 0 +5192965 0 0 +5192984 64 0 +5193154 0 0 +5193167 64 0 +5193500 0 0 +5193536 64 0 +5193666 0 0 +5193714 64 0 +5193793 0 0 +5196578 totRewards = 39 +5196578 128 16 +5196719 0 16 +5196778 0 0 +5196807 128 0 +5197286 0 0 +5197323 128 0 +5197431 0 0 +5197464 128 0 +5197547 0 0 +5197563 128 0 +5197996 0 0 +5198009 128 0 +5198294 0 0 +5198319 128 0 +5198449 0 0 +5198485 128 0 +5198614 0 0 +5198641 128 0 +5198769 0 0 +5198799 128 0 +5198933 0 0 +5198975 128 0 +5199094 0 0 +5199148 128 0 +5199275 0 0 +5199329 128 0 +5199449 0 0 +5199518 128 0 +5199607 0 0 +5199690 128 0 +5199748 0 0 +5203235 totRewards = 40 +5203235 64 8 +5203415 0 8 +5203435 0 0 +5203438 64 0 +5205107 0 0 +5205131 64 0 +5205618 0 0 +5205640 64 0 +5205789 0 0 +5205810 64 0 +5205961 0 0 +5205986 64 0 +5206121 0 0 +5206161 64 0 +5206276 0 0 +5206327 64 0 +5206421 0 0 +5209042 totRewards = 41 +5209042 128 16 +5209223 0 16 +5209242 0 0 +5209294 128 0 +5209472 0 0 +5209519 128 0 +5209608 0 0 +5209656 128 0 +5209867 0 0 +5209908 128 0 +5210005 0 0 +5210057 128 0 +5210438 0 0 +5210467 128 0 +5210751 0 0 +5210780 128 0 +5210900 0 0 +5210941 128 0 +5211065 0 0 +5211087 128 0 +5211230 0 0 +5211258 128 0 +5211393 0 0 +5211444 128 0 +5211563 0 0 +5211607 128 0 +5211729 0 0 +5211770 128 0 +5211893 0 0 +5211940 128 0 +5212057 0 0 +5212095 128 0 +5212221 0 0 +5212270 128 0 +5212388 0 0 +5212429 128 0 +5212552 0 0 +5212601 128 0 +5212747 0 0 +5212781 128 0 +5212909 0 0 +5212955 128 0 +5213071 0 0 +5213126 128 0 +5213223 0 0 +5213294 128 0 +5213369 0 0 +5216038 totRewards = 42 +5216038 64 8 +5216238 64 0 +5216247 0 0 +5216259 64 0 +5218419 0 0 +5218428 64 0 +5218758 0 0 +5218770 64 0 +5218912 0 0 +5218942 64 0 +5219076 0 0 +5219101 64 0 +5219245 0 0 +5219268 64 0 +5219408 0 0 +5219438 64 0 +5220449 0 0 +5220460 64 0 +5220626 0 0 +5220655 64 0 +5221023 0 0 +5221083 64 0 +5221441 0 0 +5221475 64 0 +5221949 0 0 +5221963 64 0 +5222108 0 0 +5222154 64 0 +5222271 0 0 +5222314 64 0 +5222434 0 0 +5226833 totRewards = 43 +5226833 128 16 +5227029 0 16 +5227033 0 0 +5227068 128 0 +5227277 0 0 +5227314 128 0 +5227672 0 0 +5227701 128 0 +5227812 0 0 +5227856 128 0 +5228250 0 0 +5228269 128 0 +5228687 0 0 +5228717 128 0 +5228853 0 0 +5228883 128 0 +5229023 0 0 +5229047 128 0 +5229184 0 0 +5229217 128 0 +5229351 0 0 +5229391 128 0 +5229519 0 0 +5229560 128 0 +5229679 0 0 +5229726 128 0 +5229826 0 0 +5229892 128 0 +5229979 0 0 +5230197 128 0 +5230771 0 0 +5233366 totRewards = 44 +5233366 64 8 +5233551 0 8 +5233566 0 0 +5233570 64 0 +5236348 0 0 +5236382 64 0 +5236501 0 0 +5236547 64 0 +5236653 0 0 +5239276 totRewards = 45 +5239276 128 16 +5239441 0 16 +5239476 0 0 +5239495 128 0 +5239684 0 0 +5239726 128 0 +5239830 0 0 +5239895 128 0 +5240273 0 0 +5240306 128 0 +5240717 0 0 +5240725 128 0 +5240855 0 0 +5240863 128 0 +5241154 0 0 +5241165 128 0 +5241305 0 0 +5241323 128 0 +5241455 0 0 +5241482 128 0 +5241616 0 0 +5241658 128 0 +5241782 0 0 +5241833 128 0 +5241966 0 0 +5242016 128 0 +5242143 0 0 +5242194 128 0 +5242316 0 0 +5242370 128 0 +5242490 0 0 +5242535 128 0 +5242649 0 0 +5242709 128 0 +5242811 0 0 +5242872 128 0 +5242964 0 0 +5243013 128 0 +5243124 0 0 +5243177 128 0 +5243289 0 0 +5243345 128 0 +5243466 0 0 +5243531 128 0 +5243632 0 0 +5243708 128 0 +5243816 0 0 +5243886 128 0 +5243967 0 0 +5247055 totRewards = 46 +5247055 64 8 +5247095 0 8 +5247106 64 8 +5247255 64 0 +5247283 0 0 +5247299 64 0 +5247905 0 0 +5247914 64 0 +5249400 0 0 +5249416 64 0 +5249745 0 0 +5249755 64 0 +5249905 0 0 +5249925 64 0 +5250068 0 0 +5250096 64 0 +5250554 0 0 +5250578 64 0 +5250890 0 0 +5250911 64 0 +5251051 0 0 +5251086 64 0 +5251207 0 0 +5251264 64 0 +5251360 0 0 +5253848 totRewards = 47 +5253848 128 16 +5254029 0 16 +5254048 0 0 +5254082 128 0 +5254276 0 0 +5254321 128 0 +5254415 0 0 +5254473 128 0 +5254688 0 0 +5254718 128 0 +5254821 0 0 +5254886 128 0 +5255267 0 0 +5255294 128 0 +5255721 0 0 +5255756 128 0 +5255882 0 0 +5255919 128 0 +5256059 0 0 +5256087 128 0 +5256223 0 0 +5256256 128 0 +5256381 0 0 +5256422 128 0 +5256552 0 0 +5256592 128 0 +5256711 0 0 +5256753 128 0 +5256878 0 0 +5256917 128 0 +5257042 0 0 +5257080 128 0 +5257207 0 0 +5257262 128 0 +5257366 0 0 +5257424 128 0 +5257525 0 0 +5257585 128 0 +5257691 0 0 +5257749 128 0 +5257859 0 0 +5257942 128 0 +5258054 0 0 +5258082 128 0 +5258211 0 0 +5258290 128 0 +5258369 0 0 +5258430 128 0 +5258531 0 0 +5258621 128 0 +5258643 0 0 +5258681 128 0 +5258722 0 0 +5258805 128 0 +5258896 0 0 +5258967 128 0 +5259053 0 0 +5261742 totRewards = 48 +5261742 64 8 +5261942 64 0 +5264296 0 0 +5264315 64 0 +5264997 0 0 +5265015 64 0 +5265320 0 0 +5265342 64 0 +5265648 0 0 +5265663 64 0 +5267205 0 0 +5267225 64 0 +5267360 0 0 +5267409 64 0 +5267507 0 0 +5270186 totRewards = 49 +5270186 128 16 +5270358 0 16 +5270386 0 0 +5270420 128 0 +5270639 0 0 +5270646 128 0 +5270761 0 0 +5270798 128 0 +5271031 0 0 +5271040 128 0 +5271155 0 0 +5271208 128 0 +5271579 0 0 +5271605 128 0 +5272037 0 0 +5272061 128 0 +5272198 0 0 +5272217 128 0 +5272359 0 0 +5272388 128 0 +5272532 0 0 +5272559 128 0 +5272697 0 0 +5272729 128 0 +5272858 0 0 +5272894 128 0 +5273019 0 0 +5273052 128 0 +5273179 0 0 +5273220 128 0 +5273350 0 0 +5273392 128 0 +5273511 0 0 +5273571 128 0 +5273666 0 0 +5273739 128 0 +5273835 0 0 +5273900 128 0 +5273928 0 0 +5273957 128 0 +5273973 0 0 +5274089 128 0 +5274170 0 0 +5274801 128 0 +5274825 0 0 +5277683 totRewards = 50 +5277683 64 8 +5277883 64 0 +5277903 0 0 +5277906 64 0 +5278381 0 0 +5278392 64 0 +5279198 0 0 +5279207 64 0 +5280021 0 0 +5280054 64 0 +5280388 0 0 +5280417 64 0 +5280565 0 0 +5280604 64 0 +5280742 0 0 +5280757 64 0 +5280917 0 0 +5280927 64 0 +5281087 0 0 +5281096 64 0 +5281246 0 0 +5281271 64 0 +5281422 0 0 +5281430 64 0 +5281916 0 0 +5281955 64 0 +5282063 0 0 +5284584 totRewards = 51 +5284583 128 16 +5284755 0 16 +5284783 0 0 +5284811 128 0 +5284992 0 0 +5285039 128 0 +5285134 0 0 +5285177 128 0 +5285398 0 0 +5285437 128 0 +5285537 0 0 +5285606 128 0 +5285978 0 0 +5286006 128 0 +5286276 0 0 +5286287 128 0 +5286413 0 0 +5286444 128 0 +5286572 0 0 +5286599 128 0 +5286738 0 0 +5286755 128 0 +5286904 0 0 +5286937 128 0 +5287064 0 0 +5287106 128 0 +5287229 0 0 +5287265 128 0 +5287391 0 0 +5287433 128 0 +5287544 0 0 +5287588 128 0 +5287709 0 0 +5287726 128 0 +5287868 0 0 +5287929 128 0 +5288015 0 0 +5290701 totRewards = 52 +5290701 64 8 +5290886 0 8 +5290898 64 8 +5290901 64 0 +5291551 0 0 +5291558 64 0 +5292463 0 0 +5292481 64 0 +5292627 0 0 +5292650 64 0 +5292960 0 0 +5292981 64 0 +5293117 0 0 +5293150 64 0 +5293276 0 0 +5293318 64 0 +5293442 0 0 +5293484 64 0 +5293587 0 0 +5296114 totRewards = 53 +5296114 128 16 +5296276 0 16 +5296314 0 0 +5296336 128 0 +5296507 0 0 +5296515 128 0 +5296673 0 0 +5296710 128 0 +5296948 0 0 +5296964 128 0 +5297059 0 0 +5297113 128 0 +5297498 0 0 +5297528 128 0 +5297810 0 0 +5297822 128 0 +5297954 0 0 +5297985 128 0 +5298116 0 0 +5298140 128 0 +5298278 0 0 +5298300 128 0 +5298435 0 0 +5298474 128 0 +5298606 0 0 +5298639 128 0 +5298778 0 0 +5298824 128 0 +5298944 0 0 +5298994 128 0 +5299098 0 0 +5299160 128 0 +5299257 0 0 +5299340 128 0 +5299402 0 0 +5302379 totRewards = 54 +5302379 64 8 +5302574 0 8 +5302579 0 0 +5302599 64 0 +5303763 0 0 +5303775 64 0 +5304720 0 0 +5304732 64 0 +5304878 0 0 +5304909 64 0 +5305067 0 0 +5305086 64 0 +5305224 0 0 +5305281 64 0 +5305378 0 0 +5305447 64 0 +5305554 0 0 +5306037 64 0 +5306058 0 0 +5306098 64 0 +5306224 0 0 +5306269 64 0 +5306388 0 0 +5309592 totRewards = 55 +5309592 128 16 +5309619 0 16 +5309658 128 16 +5309792 128 0 +5309830 0 0 +5309860 128 0 +5310483 0 0 +5310511 128 0 +5310769 0 0 +5310776 128 0 +5310902 0 0 +5310928 128 0 +5311041 0 0 +5311068 128 0 +5311200 0 0 +5311215 128 0 +5311365 0 0 +5311383 128 0 +5311511 0 0 +5311559 128 0 +5311681 0 0 +5311714 128 0 +5311848 0 0 +5311888 128 0 +5312016 0 0 +5312064 128 0 +5312184 0 0 +5312228 128 0 +5312346 0 0 +5312394 128 0 +5312499 0 0 +5312555 128 0 +5312645 0 0 +5312723 128 0 +5312810 0 0 +5313047 128 0 +5313173 0 0 +5313288 128 0 +5314099 0 0 +5318179 totRewards = 56 +5318179 64 8 +5318377 0 8 +5318379 0 0 +5318406 64 0 +5319133 0 0 +5319139 64 0 +5320503 0 0 +5320519 64 0 +5320656 0 0 +5320693 64 0 +5320811 0 0 +5320850 64 0 +5320959 0 0 +5322418 64 0 +5322432 0 0 +5324991 totRewards = 57 +5324991 128 16 +5325151 0 16 +5325191 0 0 +5325200 128 0 +5325398 0 0 +5325415 128 0 +5325523 0 0 +5325584 128 0 +5325776 0 0 +5325811 128 0 +5325912 0 0 +5325966 128 0 +5326338 0 0 +5326368 128 0 +5327322 0 0 +5327332 128 0 +5327480 0 0 +5327498 128 0 +5327632 0 0 +5327656 128 0 +5327786 0 0 +5327811 128 0 +5327945 0 0 +5327975 128 0 +5328110 0 0 +5328143 128 0 +5328257 0 0 +5328293 128 0 +5328427 0 0 +5328463 128 0 +5328588 0 0 +5328634 128 0 +5328755 0 0 +5328805 128 0 +5328918 0 0 +5328976 128 0 +5329078 0 0 +5329142 128 0 +5329246 0 0 +5329289 128 0 +5329399 0 0 +5332415 totRewards = 58 +5332415 64 8 +5332615 64 0 +5332650 0 0 +5332712 64 0 +5334670 0 0 +5334690 64 0 +5334833 0 0 +5334854 64 0 +5334987 0 0 +5335009 64 0 +5335150 0 0 +5335174 64 0 +5335309 0 0 +5335347 64 0 +5335474 0 0 +5335509 64 0 +5335638 0 0 +5335665 64 0 +5335812 0 0 +5335825 64 0 +5335977 0 0 +5335989 64 0 +5336132 0 0 +5336173 64 0 +5336471 0 0 +5336482 64 0 +5336637 0 0 +5336655 64 0 +5336787 0 0 +5336837 64 0 +5336953 0 0 +5337017 64 0 +5337057 0 0 +5340738 totRewards = 59 +5340738 128 16 +5340938 128 0 +5340949 0 0 +5340986 128 0 +5341337 0 0 +5341353 128 0 +5341754 0 0 +5341807 128 0 +5342184 0 0 +5342202 128 0 +5342624 0 0 +5342638 128 0 +5342771 0 0 +5342796 128 0 +5342931 0 0 +5342953 128 0 +5343088 0 0 +5343118 128 0 +5343246 0 0 +5343281 128 0 +5343408 0 0 +5343455 128 0 +5343575 0 0 +5343622 128 0 +5343735 0 0 +5343781 128 0 +5343895 0 0 +5343926 128 0 +5344050 0 0 +5344088 128 0 +5344204 0 0 +5344259 128 0 +5344368 0 0 +5344422 128 0 +5344528 0 0 +5344586 128 0 +5344693 0 0 +5344746 128 0 +5344845 0 0 +5344903 128 0 +5345007 0 0 +5345065 128 0 +5345170 0 0 +5345260 128 0 +5345346 0 0 +5345389 128 0 +5345506 0 0 +5345566 128 0 +5345688 0 0 +5345752 128 0 +5345862 0 0 +5345936 128 0 +5346010 0 0 +5348749 totRewards = 60 +5348749 64 8 +5348932 0 8 +5348949 0 0 +5348955 64 0 +5349575 0 0 +5349586 64 0 +5351427 0 0 +5351438 64 0 +5351570 0 0 +5351611 64 0 +5351720 0 0 +5351773 64 0 +5351873 0 0 +5351958 64 0 +5351995 0 0 +5354755 totRewards = 61 +5354755 128 16 +5354947 0 16 +5354955 0 0 +5354987 128 0 +5355182 0 0 +5355204 128 0 +5355316 0 0 +5355360 128 0 +5355573 0 0 +5355592 128 0 +5355706 0 0 +5355759 128 0 +5355994 0 0 +5356004 128 0 +5356124 0 0 +5356157 128 0 +5356593 0 0 +5356616 128 0 +5356753 0 0 +5356784 128 0 +5356918 0 0 +5356941 128 0 +5357071 0 0 +5357100 128 0 +5357234 0 0 +5357272 128 0 +5357405 0 0 +5357437 128 0 +5357556 0 0 +5357598 128 0 +5357716 0 0 +5357750 128 0 +5357878 0 0 +5357912 128 0 +5358031 0 0 +5358080 128 0 +5358197 0 0 +5358243 128 0 +5358353 0 0 +5358414 128 0 +5358505 0 0 +5358573 128 0 +5358691 0 0 +5358728 128 0 +5358841 0 0 +5358912 128 0 +5359000 0 0 +5359081 128 0 +5359189 0 0 +5359263 128 0 +5359342 0 0 +5362057 totRewards = 62 +5362057 64 8 +5362240 0 8 +5362255 64 8 +5362256 64 0 +5364529 0 0 +5364535 64 0 +5364841 0 0 +5364872 64 0 +5364998 0 0 +5365030 64 0 +5365160 0 0 +5365197 64 0 +5365325 0 0 +5365363 64 0 +5365479 0 0 +5365550 64 0 +5365625 0 0 +5368308 totRewards = 63 +5368308 128 16 +5368490 0 16 +5368508 0 0 +5368570 128 0 +5368749 0 0 +5368798 128 0 +5368891 0 0 +5368932 128 0 +5369147 0 0 +5369186 128 0 +5369281 0 0 +5369350 128 0 +5369568 0 0 +5369577 128 0 +5369706 0 0 +5369736 128 0 +5370019 0 0 +5370040 128 0 +5370166 0 0 +5370207 128 0 +5370331 0 0 +5370362 128 0 +5370480 0 0 +5370515 128 0 +5370642 0 0 +5370685 128 0 +5370801 0 0 +5370854 128 0 +5370975 0 0 +5371021 128 0 +5371135 0 0 +5371176 128 0 +5371298 0 0 +5371341 128 0 +5371461 0 0 +5371506 128 0 +5371623 0 0 +5371672 128 0 +5371804 0 0 +5371845 128 0 +5371968 0 0 +5372016 128 0 +5372139 0 0 +5372193 128 0 +5372294 0 0 +5372364 128 0 +5372433 0 0 +5375091 totRewards = 64 +5375091 64 8 +5375276 0 8 +5375291 0 0 +5375298 64 0 +5376063 0 0 +5376071 64 0 +5377109 0 0 +5377131 64 0 +5377278 0 0 +5377297 64 0 +5377596 0 0 +5377616 64 0 +5377776 0 0 +5377783 64 0 +5377931 0 0 +5377956 64 0 +5378099 0 0 +5378128 64 0 +5378265 0 0 +5378286 64 0 +5378423 0 0 +5378457 64 0 +5378590 0 0 +5378620 64 0 +5378759 0 0 +5378777 64 0 +5378915 0 0 +5378949 64 0 +5379087 0 0 +5379108 64 0 +5379237 0 0 +5379291 64 0 +5379402 0 0 +5381937 totRewards = 65 +5381937 128 16 +5382101 0 16 +5382137 0 0 +5382157 128 0 +5382344 0 0 +5382383 128 0 +5382489 0 0 +5382551 128 0 +5382890 0 0 +5382957 128 0 +5383047 0 0 +5383059 128 0 +5383692 0 0 +5383711 128 0 +5383842 0 0 +5383868 128 0 +5384010 0 0 +5384025 128 0 +5384166 0 0 +5384194 128 0 +5384329 0 0 +5384367 128 0 +5384495 0 0 +5384532 128 0 +5384659 0 0 +5384698 128 0 +5384814 0 0 +5384873 128 0 +5384972 0 0 +5385039 128 0 +5385156 0 0 +5385830 128 0 +5385930 0 0 +5385971 128 0 +5386091 0 0 +5386139 128 0 +5386269 0 0 +5386303 128 0 +5386430 0 0 +5386492 128 0 +5386634 0 0 +5386673 128 0 +5386800 0 0 +5386861 128 0 +5386988 0 0 +5387051 128 0 +5387172 0 0 +5387215 128 0 +5387328 0 0 +5387378 128 0 +5387504 0 0 +5387542 128 0 +5387661 0 0 +5387707 128 0 +5387832 0 0 +5387887 128 0 +5387992 0 0 +5388068 128 0 +5388145 0 0 +5391087 totRewards = 66 +5391087 64 8 +5391276 0 8 +5391287 0 0 +5391300 64 0 +5393721 0 0 +5393739 64 0 +5393886 0 0 +5393911 64 0 +5394039 0 0 +5394086 64 0 +5394193 0 0 +5394251 64 0 +5394352 0 0 +5394421 64 0 +5394483 0 0 +5398835 totRewards = 67 +5398835 128 16 +5399035 128 0 +5399090 0 0 +5399138 128 0 +5399333 0 0 +5399362 128 0 +5399459 0 0 +5399489 128 0 +5399707 0 0 +5399748 128 0 +5399841 0 0 +5399886 128 0 +5399976 0 0 +5399988 128 0 +5400127 0 0 +5400137 128 0 +5400266 0 0 +5400294 128 0 +5400408 0 0 +5400433 128 0 +5400565 0 0 +5400584 128 0 +5400714 0 0 +5400750 128 0 +5400873 0 0 +5400918 128 0 +5401040 0 0 +5401076 128 0 +5401200 0 0 +5401239 128 0 +5401363 0 0 +5401408 128 0 +5401524 0 0 +5401560 128 0 +5401686 0 0 +5401701 128 0 +5401840 0 0 +5401880 128 0 +5402002 0 0 +5402041 128 0 +5402160 0 0 +5402210 128 0 +5402314 0 0 +5402368 128 0 +5402477 0 0 +5402529 128 0 +5402635 0 0 +5402694 128 0 +5402784 0 0 +5402882 128 0 +5402984 0 0 +5403249 128 0 +5403296 0 0 +5403570 128 0 +5403643 0 0 +5406420 totRewards = 68 +5406420 64 8 +5406620 64 0 +5406622 0 0 +5406646 64 0 +5408106 0 0 +5408123 64 0 +5408592 0 0 +5408611 64 0 +5408758 0 0 +5408784 64 0 +5408937 0 0 +5408952 64 0 +5409108 0 0 +5409132 64 0 +5409264 0 0 +5409287 64 0 +5409437 0 0 +5409465 64 0 +5409612 0 0 +5409642 64 0 +5409782 0 0 +5409811 64 0 +5409948 0 0 +5409995 64 0 +5410134 0 0 +5410195 64 0 +5410275 0 0 +5410788 64 0 +5410832 0 0 +5410875 64 0 +5411017 0 0 +5411024 64 0 +5411168 0 0 +5411200 64 0 +5411349 0 0 +5411375 64 0 +5411527 0 0 +5411550 64 0 +5411699 0 0 +5411717 64 0 +5411889 0 0 +5411901 64 0 +5412053 0 0 +5412087 64 0 +5412224 0 0 +5412300 64 0 +5412325 0 0 +5418269 totRewards = 69 +5418269 128 16 +5418399 0 16 +5418468 128 16 +5418469 128 0 +5418792 0 0 +5418841 128 0 +5419045 0 0 +5419075 128 0 +5419175 0 0 +5419231 128 0 +5419455 0 0 +5419467 128 0 +5419592 0 0 +5419617 128 0 +5419893 0 0 +5419913 128 0 +5420032 0 0 +5420071 128 0 +5420197 0 0 +5420225 128 0 +5420345 0 0 +5420384 128 0 +5420512 0 0 +5420556 128 0 +5420670 0 0 +5420731 128 0 +5420829 0 0 +5420888 128 0 +5420963 0 0 +5424289 totRewards = 70 +5424289 64 8 +5424475 0 8 +5424489 0 0 +5424500 64 0 +5426607 0 0 +5426627 64 0 +5426775 0 0 +5426787 64 0 +5426925 0 0 +5426954 64 0 +5427080 0 0 +5427125 64 0 +5427228 0 0 +5427299 64 0 +5427312 0 0 +5430011 totRewards = 71 +5430011 128 16 +5430211 128 0 +5430218 0 0 +5430279 128 0 +5430439 0 0 +5430494 128 0 +5430831 0 0 +5430874 128 0 +5430987 0 0 +5431072 128 0 +5431125 0 0 +5431138 128 0 +5431424 0 0 +5431445 128 0 +5431713 0 0 +5431718 128 0 +5431857 0 0 +5431895 128 0 +5432009 0 0 +5432044 128 0 +5432169 0 0 +5432192 128 0 +5432313 0 0 +5432348 128 0 +5432462 0 0 +5432505 128 0 +5432618 0 0 +5432665 128 0 +5432775 0 0 +5432826 128 0 +5432934 0 0 +5432983 128 0 +5433094 0 0 +5433142 128 0 +5433251 0 0 +5433307 128 0 +5433418 0 0 +5433475 128 0 +5433577 0 0 +5433640 128 0 +5433722 0 0 +5436443 totRewards = 72 +5436443 64 8 +5436641 0 8 +5436643 0 0 +5436665 64 0 +5438756 0 0 +5438773 64 0 +5439085 0 0 +5439110 64 0 +5439254 0 0 +5439276 64 0 +5439402 0 0 +5439442 64 0 +5439557 0 0 +5439602 64 0 +5439714 0 0 +5439758 64 0 +5439867 0 0 +5442610 totRewards = 73 +5442610 128 16 +5442773 0 16 +5442810 0 0 +5442845 128 0 +5443019 0 0 +5443055 128 0 +5443148 0 0 +5443213 128 0 +5443420 0 0 +5443446 128 0 +5443556 0 0 +5443614 128 0 +5443832 0 0 +5443843 128 0 +5443977 0 0 +5443985 128 0 +5444268 0 0 +5444278 128 0 +5444412 0 0 +5444438 128 0 +5444573 0 0 +5444607 128 0 +5444730 0 0 +5444752 128 0 +5444878 0 0 +5444915 128 0 +5445039 0 0 +5445081 128 0 +5445208 0 0 +5445252 128 0 +5445373 0 0 +5445411 128 0 +5445526 0 0 +5445575 128 0 +5445683 0 0 +5445738 128 0 +5445834 0 0 +5445898 128 0 +5445989 0 0 +5446046 128 0 +5446150 0 0 +5446211 128 0 +5446310 0 0 +5446397 128 0 +5446509 0 0 +5446539 128 0 +5446667 0 0 +5446742 128 0 +5446835 0 0 +5446916 128 0 +5447011 0 0 +5449983 totRewards = 74 +5449983 64 8 +5450178 0 8 +5450183 0 0 +5450197 64 0 +5451724 0 0 +5451733 64 0 +5451888 0 0 +5451900 64 0 +5452222 0 0 +5452249 64 0 +5452387 0 0 +5452422 64 0 +5452547 0 0 +5452586 64 0 +5452713 0 0 +5452736 64 0 +5452874 0 0 +5452894 64 0 +5453373 0 0 +5453386 64 0 +5453527 0 0 +5453564 64 0 +5453680 0 0 +5456274 totRewards = 75 +5456274 128 16 +5456427 0 16 +5456474 0 0 +5456483 128 0 +5456835 0 0 +5456882 128 0 +5457122 0 0 +5457146 128 0 +5457242 0 0 +5457297 128 0 +5457671 0 0 +5457705 128 0 +5457825 0 0 +5457838 128 0 +5457973 0 0 +5457984 128 0 +5458119 0 0 +5458165 128 0 +5458286 0 0 +5458319 128 0 +5458445 0 0 +5458475 128 0 +5458598 0 0 +5458642 128 0 +5458750 0 0 +5458790 128 0 +5458921 0 0 +5458952 128 0 +5459070 0 0 +5459126 128 0 +5459229 0 0 +5459277 128 0 +5459386 0 0 +5459440 128 0 +5459546 0 0 +5459621 128 0 +5459644 0 0 +5459774 128 0 +5459857 0 0 +5459935 128 0 +5460016 0 0 +5460084 128 0 +5460198 0 0 +5460274 128 0 +5460381 0 0 +5460440 128 0 +5460533 0 0 +5460623 128 0 +5460644 0 0 +5460673 128 0 +5460720 0 0 +5460804 128 0 +5460897 0 0 +5463771 totRewards = 76 +5463771 64 8 +5463967 0 8 +5463971 0 0 +5463984 64 0 +5465144 0 0 +5465156 64 0 +5466272 0 0 +5466284 64 0 +5466429 0 0 +5466450 64 0 +5466586 0 0 +5466623 64 0 +5466737 0 0 +5466779 64 0 +5466888 0 0 +5466994 64 0 +5467017 0 0 +5469571 totRewards = 77 +5469571 128 16 +5469749 0 16 +5469771 0 0 +5469802 128 0 +5470003 0 0 +5470052 128 0 +5470145 0 0 +5470209 128 0 +5470409 0 0 +5470438 128 0 +5470546 0 0 +5470607 128 0 +5470707 0 0 +5470712 128 0 +5470840 0 0 +5470857 128 0 +5470975 0 0 +5471008 128 0 +5471431 0 0 +5471463 128 0 +5471582 0 0 +5471623 128 0 +5471750 0 0 +5471786 128 0 +5471912 0 0 +5471953 128 0 +5472074 0 0 +5472124 128 0 +5472240 0 0 +5472288 128 0 +5472400 0 0 +5472447 128 0 +5472565 0 0 +5472611 128 0 +5472720 0 0 +5472769 128 0 +5472877 0 0 +5472931 128 0 +5473037 0 0 +5473101 128 0 +5473200 0 0 +5473258 128 0 +5473363 0 0 +5473448 128 0 +5473567 0 0 +5473676 128 0 +5473728 0 0 +5473804 128 0 +5473818 0 0 +5473862 128 0 +5473886 0 0 +5474162 128 0 +5474248 0 0 +5474304 128 0 +5474401 0 0 +5474460 128 0 +5474573 0 0 +5474639 128 0 +5474740 0 0 +5474828 128 0 +5474922 0 0 +5478644 totRewards = 78 +5478644 64 8 +5478844 64 0 +5480473 0 0 +5480490 64 0 +5480963 0 0 +5480984 64 0 +5481297 0 0 +5481310 64 0 +5481451 0 0 +5481480 64 0 +5481615 0 0 +5481637 64 0 +5481781 0 0 +5481803 64 0 +5481939 0 0 +5481972 64 0 +5482107 0 0 +5482131 64 0 +5483003 0 0 +5483088 64 0 +5483245 0 0 +5483305 64 0 +5483768 0 0 +5483790 64 0 +5483944 0 0 +5483979 64 0 +5484102 0 0 +5484161 64 0 +5484245 0 0 +5490480 totRewards = 79 +5490480 128 16 +5490623 0 16 +5490680 0 0 +5490704 128 0 +5490857 0 0 +5490885 128 0 +5490986 0 0 +5491076 128 0 +5491171 0 0 +5491302 128 0 +5491446 0 0 +5491471 128 0 +5492235 0 0 +5492243 128 0 +5492375 0 0 +5492383 128 0 +5492658 0 0 +5492677 128 0 +5492806 0 0 +5492828 128 0 +5492953 0 0 +5492979 128 0 +5493099 0 0 +5493135 128 0 +5493270 0 0 +5493308 128 0 +5493412 0 0 +5493453 128 0 +5493563 0 0 +5493597 128 0 +5494025 0 0 +5494048 128 0 +5494188 0 0 +5494211 128 0 +5494352 0 0 +5494387 128 0 +5494498 0 0 +5494540 128 0 +5494953 0 0 +5495992 128 0 +5496716 0 0 +5499488 totRewards = 80 +5499488 64 8 +5499679 0 8 +5499688 0 0 +5499710 64 0 +5500315 0 0 +5500332 64 0 +5500857 0 0 +5500864 64 0 +5501651 0 0 +5501666 64 0 +5501815 0 0 +5501849 64 0 +5502352 0 0 +5502374 64 0 +5502719 0 0 +5502754 64 0 +5503075 0 0 +5503101 64 0 +5503248 0 0 +5503270 64 0 +5503413 0 0 +5503429 64 0 +5504778 0 0 +5504816 64 0 +5505289 0 0 +5505322 64 0 +5505451 0 0 +5505486 64 0 +5505953 0 0 +5505978 64 0 +5506147 0 0 +5506170 64 0 +5506329 0 0 +5506353 64 0 +5506421 0 0 +5506469 64 0 +5506778 0 0 +5506805 64 0 +5506931 0 0 +5509416 totRewards = 81 +5509416 128 16 +5509589 0 16 +5509616 0 0 +5509638 128 0 +5509826 0 0 +5509880 128 0 +5509969 0 0 +5510015 128 0 +5510229 0 0 +5510266 128 0 +5510363 0 0 +5510428 128 0 +5510779 0 0 +5510797 128 0 +5511059 0 0 +5511067 128 0 +5511205 0 0 +5511216 128 0 +5511348 0 0 +5511371 128 0 +5511502 0 0 +5511526 128 0 +5511661 0 0 +5511685 128 0 +5511813 0 0 +5511857 128 0 +5511975 0 0 +5512018 128 0 +5512139 0 0 +5512185 128 0 +5512300 0 0 +5512351 128 0 +5512471 0 0 +5512526 128 0 +5512630 0 0 +5512700 128 0 +5512775 0 0 +5519879 128 0 +5520118 0 0 +5533316 totRewards = 82 +5533316 64 8 +5533516 64 0 +5533517 0 0 +5533555 64 0 +5533772 0 0 +5533792 64 0 +5534142 0 0 +5534154 64 0 +5534274 0 0 +5534284 64 0 +5535748 0 0 +5535777 64 0 +5535895 0 0 +5535924 64 0 +5537177 0 0 +5537199 64 0 +5537318 0 0 +5541079 totRewards = 83 +5541079 128 16 +5541254 0 16 +5541279 0 0 +5541288 128 0 +5541512 0 0 +5541545 128 0 +5541630 0 0 +5541678 128 0 +5541890 0 0 +5541913 128 0 +5542025 0 0 +5542054 128 0 +5542143 0 0 +5542156 128 0 +5542425 0 0 +5542445 128 0 +5542562 0 0 +5542589 128 0 +5542859 0 0 +5542881 128 0 +5543002 0 0 +5543039 128 0 +5543160 0 0 +5543199 128 0 +5543325 0 0 +5543358 128 0 +5543481 0 0 +5543518 128 0 +5543635 0 0 +5543679 128 0 +5543800 0 0 +5543813 128 0 +5544386 0 0 +5544420 128 0 +5544542 0 0 +5544566 128 0 +5544692 0 0 +5544736 128 0 +5544842 0 0 +5544889 128 0 +5545012 0 0 +5545052 128 0 +5545166 0 0 +5545223 128 0 +5545336 0 0 +5545393 128 0 +5545489 0 0 +5548223 totRewards = 84 +5548223 64 8 +5548403 0 8 +5548423 0 0 +5548443 64 0 +5550523 0 0 +5550534 64 0 +5550680 0 0 +5550695 64 0 +5550849 0 0 +5550867 64 0 +5551016 0 0 +5551037 64 0 +5551166 0 0 +5551211 64 0 +5551323 0 0 +5551368 64 0 +5551477 0 0 +5551547 64 0 +5551624 0 0 +5554292 totRewards = 85 +5554292 128 16 +5554457 0 16 +5554492 0 0 +5554546 128 0 +5555028 0 0 +5555052 128 0 +5555280 0 0 +5555313 128 0 +5555704 0 0 +5555713 128 0 +5556010 0 0 +5556022 128 0 +5556151 0 0 +5556178 128 0 +5556304 0 0 +5556332 128 0 +5556462 0 0 +5556492 128 0 +5556626 0 0 +5556666 128 0 +5556785 0 0 +5556832 128 0 +5556948 0 0 +5556990 128 0 +5557109 0 0 +5557148 128 0 +5557267 0 0 +5557313 128 0 +5557424 0 0 +5557480 128 0 +5557587 0 0 +5557650 128 0 +5557751 0 0 +5557820 128 0 +5557935 0 0 +5558046 128 0 +5558087 0 0 +5558177 128 0 +5558218 0 0 +5558252 128 0 +5558287 0 0 +5558357 128 0 +5558445 0 0 +5558528 128 0 +5558607 0 0 +5558717 128 0 +5558732 0 0 +5558768 128 0 +5558795 0 0 +5562550 totRewards = 86 +5562550 64 8 +5562750 64 0 +5564913 0 0 +5564928 64 0 +5565074 0 0 +5565091 64 0 +5565240 0 0 +5565267 64 0 +5565390 0 0 +5565429 64 0 +5565542 0 0 +5565606 64 0 +5565707 0 0 +5565809 64 0 +5565853 0 0 +5568670 totRewards = 87 +5568670 128 16 +5568855 0 16 +5568870 0 0 +5568890 128 0 +5569110 0 0 +5569134 128 0 +5569244 0 0 +5569268 128 0 +5569487 0 0 +5569531 128 0 +5569629 0 0 +5569702 128 0 +5570063 0 0 +5570080 128 0 +5570217 0 0 +5570238 128 0 +5570530 0 0 +5570564 128 0 +5570688 0 0 +5570730 128 0 +5570860 0 0 +5570889 128 0 +5571015 0 0 +5571047 128 0 +5571163 0 0 +5571202 128 0 +5571324 0 0 +5571365 128 0 +5571485 0 0 +5571529 128 0 +5571648 0 0 +5571693 128 0 +5571828 0 0 +5571868 128 0 +5571985 0 0 +5572038 128 0 +5572153 0 0 +5572211 128 0 +5572300 0 0 +5572375 128 0 +5572452 0 0 +5575269 totRewards = 88 +5575269 64 8 +5575469 64 0 +5575482 0 0 +5575497 64 0 +5577782 0 0 +5577794 64 0 +5578136 0 0 +5578142 64 0 +5578280 0 0 +5578339 64 0 +5578441 0 0 +5578477 64 0 +5578624 0 0 +5578635 64 0 +5579997 0 0 +5580009 64 0 +5580332 0 0 +5580343 64 0 +5581326 0 0 +5581370 64 0 +5581481 0 0 +5584237 totRewards = 89 +5584237 128 16 +5584409 0 16 +5584437 0 0 +5584492 128 0 +5584822 0 0 +5584857 128 0 +5584977 0 0 +5585004 128 0 +5585112 0 0 +5585128 128 0 +5585225 0 0 +5585268 128 0 +5585662 0 0 +5585688 128 0 +5585976 0 0 +5586003 128 0 +5586128 0 0 +5586170 128 0 +5586293 0 0 +5586327 128 0 +5586459 0 0 +5586502 128 0 +5586629 0 0 +5586677 128 0 +5586791 0 0 +5586838 128 0 +5586942 0 0 +5586999 128 0 +5587063 0 0 +5592356 totRewards = 90 +5592356 64 8 +5592556 64 0 +5592561 0 0 +5592581 64 0 +5594842 0 0 +5594869 64 0 +5595341 0 0 +5595378 64 0 +5595506 0 0 +5595526 64 0 +5595670 0 0 +5595692 64 0 +5595830 0 0 +5595849 64 0 +5596466 0 0 +5596497 64 0 +5596934 0 0 +5596963 64 0 +5597803 0 0 +5597843 64 0 +5597971 0 0 +5598005 64 0 +5598132 0 0 +5598150 64 0 +5598285 0 0 +5598344 64 0 +5598400 0 0 +5600914 totRewards = 91 +5600914 128 16 +5601092 0 16 +5601114 0 0 +5601176 128 0 +5601509 0 0 +5601530 128 0 +5601792 0 0 +5601816 128 0 +5601902 0 0 +5601944 128 0 +5602063 0 0 +5602070 128 0 +5602335 0 0 +5602352 128 0 +5602634 0 0 +5602643 128 0 +5602793 0 0 +5602805 128 0 +5602949 0 0 +5602969 128 0 +5603268 0 0 +5603303 128 0 +5603434 0 0 +5603471 128 0 +5603603 0 0 +5603638 128 0 +5603763 0 0 +5603799 128 0 +5603928 0 0 +5603960 128 0 +5604082 0 0 +5604121 128 0 +5604246 0 0 +5604284 128 0 +5604407 0 0 +5604452 128 0 +5604567 0 0 +5604632 128 0 +5604716 0 0 +5604760 128 0 +5604870 0 0 +5604943 128 0 +5605063 0 0 +5605096 128 0 +5605203 0 0 +5605278 128 0 +5605313 0 0 +5605453 128 0 +5605549 0 0 +5605629 128 0 +5605720 0 0 +5608617 totRewards = 92 +5608617 64 8 +5608813 0 8 +5608817 0 0 +5608829 64 0 +5610943 0 0 +5610961 64 0 +5611607 0 0 +5611635 64 0 +5611766 0 0 +5611802 64 0 +5611924 0 0 +5611971 64 0 +5612070 0 0 +5615107 totRewards = 93 +5615107 128 16 +5615307 128 0 +5615390 0 0 +5615431 128 0 +5615763 0 0 +5615776 128 0 +5616012 0 0 +5616035 128 0 +5616146 0 0 +5616201 128 0 +5616284 0 0 +5616302 128 0 +5616430 0 0 +5616458 128 0 +5616567 0 0 +5616600 128 0 +5616726 0 0 +5616731 128 0 +5617017 0 0 +5617048 128 0 +5617168 0 0 +5617211 128 0 +5617333 0 0 +5617362 128 0 +5617495 0 0 +5617528 128 0 +5617659 0 0 +5617702 128 0 +5617820 0 0 +5617867 128 0 +5617986 0 0 +5618033 128 0 +5618149 0 0 +5618186 128 0 +5618466 0 0 +5618485 128 0 +5618614 0 0 +5618652 128 0 +5618765 0 0 +5618810 128 0 +5618920 0 0 +5618965 128 0 +5619076 0 0 +5619128 128 0 +5619234 0 0 +5619306 128 0 +5619413 0 0 +5619458 128 0 +5619578 0 0 +5619627 128 0 +5619748 0 0 +5619783 128 0 +5619910 0 0 +5619959 128 0 +5620081 0 0 +5620130 128 0 +5620232 0 0 +5620305 128 0 +5620393 0 0 +5620555 128 0 +5620598 0 0 +5621238 128 0 +5621262 0 0 +5621287 128 0 +5621312 0 0 +5624444 totRewards = 94 +5624444 64 8 +5624629 0 8 +5624644 0 0 +5624653 64 0 +5625828 0 0 +5625839 64 0 +5626791 0 0 +5626807 64 0 +5627126 0 0 +5627149 64 0 +5627285 0 0 +5627314 64 0 +5627441 0 0 +5627489 64 0 +5627614 0 0 +5627637 64 0 +5627759 0 0 +5630493 totRewards = 95 +5630493 128 16 +5630678 0 16 +5630693 0 0 +5630822 128 0 +5630934 0 0 +5630939 128 0 +5631056 0 0 +5631100 128 0 +5631451 0 0 +5631499 128 0 +5631884 0 0 +5631913 128 0 +5632026 0 0 +5632054 128 0 +5632335 0 0 +5632361 128 0 +5632485 0 0 +5632518 128 0 +5632645 0 0 +5632679 128 0 +5632804 0 0 +5632843 128 0 +5632970 0 0 +5633021 128 0 +5633146 0 0 +5633191 128 0 +5633305 0 0 +5633359 128 0 +5633455 0 0 +5633516 128 0 +5633624 0 0 +5633663 128 0 +5633790 0 0 +5633840 128 0 +5633945 0 0 +5634006 128 0 +5634112 0 0 +5634153 128 0 +5634272 0 0 +5634326 128 0 +5634427 0 0 +5634517 128 0 +5634652 0 0 +5634688 128 0 +5634714 0 0 +5634737 128 0 +5634799 0 0 +5634870 128 0 +5634962 0 0 +5635118 128 0 +5635172 0 0 +5635251 128 0 +5635325 0 0 +5638851 totRewards = 96 +5638851 64 8 +5639027 0 8 +5639051 0 0 +5639057 64 0 +5641158 0 0 +5641166 64 0 +5641312 0 0 +5641327 64 0 +5641632 0 0 +5641660 64 0 +5641799 0 0 +5641827 64 0 +5641967 0 0 +5642003 64 0 +5642135 0 0 +5642174 64 0 +5642295 0 0 +5642349 64 0 +5642450 0 0 +5642688 64 0 +5643624 0 0 +5648879 totRewards = 97 +5648879 128 16 +5649079 128 0 +5649159 0 0 +5649190 128 0 +5649783 0 0 +5649834 128 0 +5649930 0 0 +5649976 128 0 +5650367 0 0 +5650379 128 0 +5650813 0 0 +5650830 128 0 +5650971 0 0 +5650983 128 0 +5651115 0 0 +5651141 128 0 +5651273 0 0 +5651307 128 0 +5651436 0 0 +5651479 128 0 +5651605 0 0 +5651646 128 0 +5651763 0 0 +5651812 128 0 +5651913 0 0 +5651970 128 0 +5652065 0 0 +5652111 128 0 +5652224 0 0 +5652262 128 0 +5652382 0 0 +5652427 128 0 +5652542 0 0 +5652585 128 0 +5652710 0 0 +5652743 128 0 +5652867 0 0 +5652915 128 0 +5653031 0 0 +5653085 128 0 +5653183 0 0 +5653249 128 0 +5653342 0 0 +5656059 totRewards = 98 +5656059 64 8 +5656235 0 8 +5656259 0 0 +5656259 64 0 +5657885 0 0 +5657895 64 0 +5659034 0 0 +5659055 64 0 +5659196 0 0 +5659226 64 0 +5659351 0 0 +5659384 64 0 +5659509 0 0 +5659577 64 0 +5659599 0 0 +5662554 totRewards = 99 +5662554 128 16 +5662735 0 16 +5662754 0 0 +5662788 128 0 +5662975 0 0 +5663017 128 0 +5663109 0 0 +5663163 128 0 +5663375 0 0 +5663405 128 0 +5663502 0 0 +5663561 128 0 +5663933 0 0 +5663957 128 0 +5664383 0 0 +5664415 128 0 +5664537 0 0 +5664572 128 0 +5664697 0 0 +5664733 128 0 +5664862 0 0 +5664906 128 0 +5665023 0 0 +5665067 128 0 +5665186 0 0 +5665233 128 0 +5665345 0 0 +5665383 128 0 +5665521 0 0 +5665557 128 0 +5665678 0 0 +5665722 128 0 +5665841 0 0 +5665894 128 0 +5666004 0 0 +5666057 128 0 +5666170 0 0 +5666214 128 0 +5666332 0 0 +5666386 128 0 +5666500 0 0 +5666552 128 0 +5666666 0 0 +5666710 128 0 +5666819 0 0 +5666871 128 0 +5666975 0 0 +5667679 128 0 +5667780 0 0 +5667820 128 0 +5667924 0 0 +5667975 128 0 +5668075 0 0 +5668129 128 0 +5668240 0 0 +5668270 128 0 +5668389 0 0 +5668428 128 0 +5668557 0 0 +5668585 128 0 +5668714 0 0 +5668776 128 0 +5668883 0 0 +5673440 totRewards = 100 +5673440 64 8 +5673640 64 0 +5675190 0 0 +5675210 64 0 +5675339 0 0 +5675358 64 0 +5675835 0 0 +5675852 64 0 +5676152 0 0 +5676181 64 0 +5676317 0 0 +5676322 64 0 +5676788 0 0 +5676803 64 0 +5677296 0 0 +5677315 64 0 +5677473 0 0 +5677487 64 0 +5677645 0 0 +5677660 64 0 +5677807 0 0 +5677844 64 0 +5678474 0 0 +5678494 64 0 +5679104 0 0 +5679146 64 0 +5679622 0 0 +5679652 64 0 +5679774 0 0 +5679817 64 0 +5679938 0 0 +5679994 64 0 +5680085 0 0 +5682771 totRewards = 101 +5682771 128 16 +5682971 128 0 +5682977 0 0 +5683060 128 0 +5683375 0 0 +5683438 128 0 +5683560 0 0 +5683593 128 0 +5683703 0 0 +5683721 128 0 +5683815 0 0 +5683845 128 0 +5683965 0 0 +5683982 128 0 +5684243 0 0 +5684256 128 0 +5684680 0 0 +5684711 128 0 +5684843 0 0 +5684866 128 0 +5684992 0 0 +5685027 128 0 +5685150 0 0 +5685197 128 0 +5685319 0 0 +5685370 128 0 +5685483 0 0 +5685531 128 0 +5685652 0 0 +5685700 128 0 +5685822 0 0 +5685873 128 0 +5685989 0 0 +5686038 128 0 +5686141 0 0 +5686197 128 0 +5686300 0 0 +5686344 128 0 +5686456 0 0 +5686512 128 0 +5686612 0 0 +5686685 128 0 +5686815 0 0 +5686827 128 0 +5686975 0 0 +5687022 128 0 +5687140 0 0 +5687204 128 0 +5687320 0 0 +5687399 128 0 +5687416 0 0 +5687432 128 0 +5687474 0 0 +5690822 totRewards = 102 +5690822 64 8 +5691022 64 0 +5691038 0 0 +5691053 64 0 +5691660 0 0 +5691672 64 0 +5693493 0 0 +5693512 64 0 +5693653 0 0 +5693682 64 0 +5693805 0 0 +5693842 64 0 +5693957 0 0 +5694019 64 0 +5694105 0 0 +5697110 totRewards = 103 +5697110 128 16 +5697310 128 0 +5697315 0 0 +5697352 128 0 +5697566 0 0 +5697585 128 0 +5697701 0 0 +5697734 128 0 +5697966 0 0 +5697986 128 0 +5698098 0 0 +5698149 128 0 +5698532 0 0 +5698553 128 0 +5698996 0 0 +5699025 128 0 +5699162 0 0 +5699191 128 0 +5699323 0 0 +5699355 128 0 +5699492 0 0 +5699532 128 0 +5699662 0 0 +5699707 128 0 +5699824 0 0 +5699871 128 0 +5699977 0 0 +5700030 128 0 +5700120 0 0 +5700191 128 0 +5700282 0 0 +5700354 128 0 +5700433 0 0 +5703554 totRewards = 104 +5703554 64 8 +5703739 0 8 +5703754 0 0 +5703766 64 0 +5704513 0 0 +5704522 64 0 +5705904 0 0 +5705924 64 0 +5706065 0 0 +5706088 64 0 +5706232 0 0 +5706255 64 0 +5706393 0 0 +5706423 64 0 +5706553 0 0 +5706587 64 0 +5706710 0 0 +5706757 64 0 +5706875 0 0 +5708022 64 0 +5708875 0 0 +5708897 64 0 +5710073 0 0 +5710134 64 0 +5710212 0 0 +5712808 totRewards = 105 +5712808 128 16 +5712986 0 16 +5713008 0 0 +5713059 128 0 +5713254 0 0 +5713265 128 0 +5713378 0 0 +5713420 128 0 +5713793 0 0 +5713832 128 0 +5714102 0 0 +5714113 128 0 +5714248 0 0 +5714274 128 0 +5714407 0 0 +5714434 128 0 +5714565 0 0 +5714600 128 0 +5714710 0 0 +5714751 128 0 +5714880 0 0 +5714918 128 0 +5715052 0 0 +5715093 128 0 +5715216 0 0 +5715268 128 0 +5715379 0 0 +5715429 128 0 +5715539 0 0 +5715600 128 0 +5715673 0 0 +5715761 128 0 +5715829 0 0 +5719199 totRewards = 106 +5719199 64 8 +5719399 64 0 + + description: state script log run 2 + task_epochs: 4, +, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x139658897012240 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +7499807 totRewards = 1 +7499807 64 200 +7500007 64 192 +7500065 0 128 +7500089 64 128 +7500220 0 128 +7500233 64 128 +7500345 0 128 +7500352 64 128 +7500830 0 128 +7500836 64 128 +7500943 0 128 +7500963 64 128 +7501077 0 128 +7501087 64 128 +7501201 0 128 +7501216 64 128 +7501327 0 128 +7501354 64 128 +7501470 0 128 +7501488 64 128 +7501621 0 128 +7501641 64 128 +7501768 0 128 +7501786 64 128 +7501914 0 128 +7501942 64 128 +7502067 0 128 +7502104 64 128 +7502224 0 128 +7502270 64 128 +7502382 0 128 +7502438 64 128 +7502547 0 128 +7502591 64 128 +7502710 0 128 +7502748 64 128 +7502863 0 128 +7502898 64 128 +7503321 0 128 +7503349 64 128 +7503492 0 128 +7503512 64 128 +7503675 0 128 +7503685 64 128 +7503829 0 128 +7503869 64 128 +7504008 0 128 +7504049 64 128 +7504185 0 128 +7504229 64 128 +7504335 0 128 +7504385 64 128 +7504830 0 128 +7504850 64 128 +7505318 0 128 +7505346 64 128 +7505492 0 128 +7505523 64 128 +7505673 0 128 +7505703 64 128 +7505819 0 128 +7509448 totRewards = 2 +7509448 128 144 +7509648 128 128 +7509830 0 0 +7509841 128 0 +7509844 0 0 +7509909 128 0 +7509912 0 0 +7509920 128 0 +7509985 0 0 +7510002 128 0 +7510144 0 0 +7510154 128 0 +7510255 0 0 +7510314 128 0 +7510656 0 0 +7510682 128 0 +7510795 0 0 +7510807 128 0 +7511073 0 0 +7511090 128 0 +7511207 0 0 +7511234 128 0 +7511347 0 0 +7511392 128 0 +7511490 0 0 +7511537 128 0 +7511633 0 0 +7511693 128 0 +7511798 0 0 +7511856 128 0 +7511969 0 0 +7512023 128 0 +7512135 0 0 +7512198 128 0 +7512321 0 0 +7512384 128 0 +7512512 0 0 +7512575 128 0 +7512699 0 0 +7512769 128 0 +7512896 0 0 +7512953 128 0 +7513081 0 0 +7513127 128 0 +7514538 0 0 +7514575 128 0 +7514712 0 0 +7514754 128 0 +7514891 0 0 +7514952 128 0 +7515072 0 0 +7515133 128 0 +7515263 0 0 +7515316 128 0 +7515435 0 0 +7515498 128 0 +7515609 0 0 +7515678 128 0 +7515789 0 0 +7515866 128 0 +7515967 0 0 +7516022 128 0 +7516088 0 0 +7516194 128 0 +7516468 0 0 +7516494 128 0 +7516627 0 0 +7516666 128 0 +7516803 0 0 +7516877 128 0 +7516984 0 0 +7517035 128 0 +7517176 0 0 +7517288 128 0 +7517394 0 0 +7517922 128 0 +7517951 0 0 +7518111 128 0 +7518125 0 0 +7518392 128 0 +7518503 0 0 +7518598 128 0 +7518683 0 0 +7518837 128 0 +7518854 0 0 +7527467 128 0 +7527970 0 0 +7527980 128 0 +7528348 0 0 +7528369 128 0 +7528497 0 0 +7528533 128 0 +7528645 0 0 +7528691 128 0 +7528805 0 0 +7528852 128 0 +7528967 0 0 +7532478 totRewards = 3 +7532478 64 8 +7532678 64 0 +7533690 0 0 +7533700 64 0 +7533836 0 0 +7533851 64 0 +7533973 0 0 +7533982 64 0 +7534275 0 0 +7534294 64 0 +7534429 0 0 +7534443 64 0 +7534775 0 0 +7534796 64 0 +7534938 0 0 +7534974 64 0 +7535284 0 0 +7535321 64 0 +7536105 0 0 +7536111 64 0 +7536280 0 0 +7536300 64 0 +7536473 0 0 +7536500 64 0 +7536664 0 0 +7536677 64 0 +7536833 0 0 +7536885 64 0 +7537004 0 0 +7537062 64 0 +7537189 0 0 +7537254 64 0 +7537988 0 0 +7538049 64 0 +7538195 0 0 +7538227 64 0 +7538413 0 0 +7538435 64 0 +7538599 0 0 +7538659 64 0 +7538784 0 0 +7539025 64 0 +7539161 0 0 +7539189 64 0 +7539338 0 0 +7539407 64 0 +7539582 0 0 +7540550 64 0 +7540819 0 0 +7540833 64 0 +7540992 0 0 +7541002 64 0 +7541166 0 0 +7541175 64 0 +7541333 0 0 +7541372 64 0 +7541521 0 0 +7541562 64 0 +7541687 0 0 +7545424 totRewards = 4 +7545424 128 16 +7545556 0 16 +7545595 128 16 +7545624 128 0 +7545675 0 0 +7545700 128 0 +7545842 0 0 +7545893 128 0 +7546045 0 0 +7546114 128 0 +7546712 0 0 +7546739 128 0 +7546858 0 0 +7546874 128 0 +7546980 0 0 +7547012 128 0 +7547114 0 0 +7547153 128 0 +7547255 0 0 +7547294 128 0 +7547398 0 0 +7547439 128 0 +7547540 0 0 +7547582 128 0 +7547696 0 0 +7547741 128 0 +7547855 0 0 +7547906 128 0 +7548020 0 0 +7548069 128 0 +7548183 0 0 +7548246 128 0 +7548357 0 0 +7548418 128 0 +7548525 0 0 +7548577 128 0 +7548709 0 0 +7548735 128 0 +7549034 0 0 +7549043 128 0 +7549170 0 0 +7549221 128 0 +7549341 0 0 +7549385 128 0 +7549499 0 0 +7549566 128 0 +7549586 0 0 +7549623 128 0 +7549666 0 0 +7549732 128 0 +7549840 0 0 +7549905 128 0 +7550015 0 0 +7550072 128 0 +7550178 0 0 +7550246 128 0 +7550331 0 0 +7550428 128 0 +7550513 0 0 +7550590 128 0 +7550685 0 0 +7550772 128 0 +7550839 0 0 +7550912 128 0 +7551001 0 0 +7551092 128 0 +7551110 0 0 +7551154 128 0 +7551186 0 0 +7551269 128 0 +7551359 0 0 +7551455 128 0 +7551474 0 0 +7551508 128 0 +7551543 0 0 +7554803 totRewards = 5 +7554803 64 8 +7555003 64 0 +7555514 0 0 +7555522 64 0 +7555924 0 0 +7555942 64 0 +7556063 0 0 +7556081 64 0 +7556203 0 0 +7556225 64 0 +7556353 0 0 +7556376 64 0 +7556520 0 0 +7556534 64 0 +7556675 0 0 +7556704 64 0 +7557239 0 0 +7557274 64 0 +7557449 0 0 +7557479 64 0 +7557658 0 0 +7557687 64 0 +7557844 0 0 +7557899 64 0 +7558036 0 0 +7558079 64 0 +7558777 0 0 +7558799 64 0 +7558950 0 0 +7558985 64 0 +7559119 0 0 +7559170 64 0 +7559304 0 0 +7559320 64 0 +7559771 0 0 +7559798 64 0 +7559938 0 0 +7559966 64 0 +7560124 0 0 +7560146 64 0 +7560327 0 0 +7560337 64 0 +7561101 0 0 +7561107 64 0 +7561272 0 0 +7561309 64 0 +7561449 0 0 +7561499 64 0 +7561608 0 0 +7567350 totRewards = 6 +7567350 128 16 +7567534 0 16 +7567550 0 0 +7567605 128 0 +7567921 0 0 +7567954 128 0 +7568061 0 0 +7568094 128 0 +7568302 0 0 +7568359 128 0 +7568446 0 0 +7568464 128 0 +7568594 0 0 +7568619 128 0 +7568723 0 0 +7568763 128 0 +7568863 0 0 +7568898 128 0 +7569021 0 0 +7569058 128 0 +7569166 0 0 +7569215 128 0 +7569320 0 0 +7569370 128 0 +7569487 0 0 +7569540 128 0 +7569660 0 0 +7569715 128 0 +7569826 0 0 +7569886 128 0 +7569997 0 0 +7570055 128 0 +7570166 0 0 +7570228 128 0 +7570323 0 0 +7570390 128 0 +7570486 0 0 +7570544 128 0 +7570652 0 0 +7570705 128 0 +7570817 0 0 +7570880 128 0 +7570994 0 0 +7571053 128 0 +7571170 0 0 +7571231 128 0 +7571323 0 0 +7571403 128 0 +7571464 0 0 +7574231 totRewards = 7 +7574231 64 8 +7574415 0 8 +7574425 64 8 +7574431 64 0 +7574779 0 0 +7574797 64 0 +7575035 0 0 +7575056 64 0 +7575163 0 0 +7575183 64 0 +7575448 0 0 +7575456 64 0 +7575587 0 0 +7575611 64 0 +7575740 0 0 +7575751 64 0 +7576067 0 0 +7576080 64 0 +7576414 0 0 +7576428 64 0 +7576576 0 0 +7576613 64 0 +7576929 0 0 +7576964 64 0 +7577119 0 0 +7577149 64 0 +7577275 0 0 +7577325 64 0 +7577456 0 0 +7577480 64 0 +7577802 0 0 +7577819 64 0 +7577960 0 0 +7577994 64 0 +7578136 0 0 +7578159 64 0 +7578502 0 0 +7578520 64 0 +7579482 0 0 +7579497 64 0 +7579628 0 0 +7579682 64 0 +7579827 0 0 +7579953 64 0 +7580203 0 0 +7580264 64 0 +7580397 0 0 +7580420 64 0 +7580591 0 0 +7580646 64 0 +7580794 0 0 +7580861 64 0 +7580959 0 0 +7581217 64 0 +7581305 0 0 +7581342 64 0 +7581506 0 0 +7581525 64 0 +7581685 0 0 +7581733 64 0 +7581865 0 0 +7586030 totRewards = 8 +7586030 128 16 +7586203 0 16 +7586230 0 0 +7586276 128 0 +7586594 0 0 +7586646 128 0 +7586869 0 0 +7586882 128 0 +7586984 0 0 +7587040 128 0 +7587141 0 0 +7587153 128 0 +7587270 0 0 +7587284 128 0 +7587411 0 0 +7587449 128 0 +7587570 0 0 +7587605 128 0 +7587719 0 0 +7587756 128 0 +7587868 0 0 +7587918 128 0 +7588020 0 0 +7588073 128 0 +7588193 0 0 +7588236 128 0 +7588357 0 0 +7588414 128 0 +7588530 0 0 +7588595 128 0 +7588708 0 0 +7588763 128 0 +7588882 0 0 +7588938 128 0 +7589043 0 0 +7589094 128 0 +7589207 0 0 +7589228 128 0 +7589361 0 0 +7589395 128 0 +7589516 0 0 +7589559 128 0 +7589671 0 0 +7589729 128 0 +7589838 0 0 +7589910 128 0 +7589918 0 0 +7589962 128 0 +7590005 0 0 +7590071 128 0 +7590176 0 0 +7590329 128 0 +7590370 0 0 +7590473 128 0 +7590481 0 0 +7590519 128 0 +7590565 0 0 +7593508 totRewards = 9 +7593508 64 8 +7593703 0 8 +7593708 0 0 +7593718 64 0 +7593939 0 0 +7593957 64 0 +7594730 0 0 +7594744 64 0 +7594863 0 0 +7594890 64 0 +7595020 0 0 +7595030 64 0 +7595169 0 0 +7595174 64 0 +7595653 0 0 +7595670 64 0 +7595828 0 0 +7595841 64 0 +7595986 0 0 +7596013 64 0 +7596162 0 0 +7596199 64 0 +7596330 0 0 +7596379 64 0 +7596506 0 0 +7596524 64 0 +7596672 0 0 +7596684 64 0 +7596853 0 0 +7596873 64 0 +7597016 0 0 +7597070 64 0 +7597351 0 0 +7597375 64 0 +7597514 0 0 +7597545 64 0 +7598031 0 0 +7598062 64 0 +7598180 0 0 +7600753 totRewards = 10 +7600753 128 16 +7600928 0 16 +7600953 0 0 +7600990 128 0 +7601310 0 0 +7601350 128 0 +7601572 0 0 +7601603 128 0 +7601699 0 0 +7601749 128 0 +7602139 0 0 +7602168 128 0 +7602447 0 0 +7602470 128 0 +7602597 0 0 +7602634 128 0 +7602764 0 0 +7602799 128 0 +7602926 0 0 +7602968 128 0 +7603094 0 0 +7603151 128 0 +7603268 0 0 +7603328 128 0 +7603449 0 0 +7603504 128 0 +7603615 0 0 +7603667 128 0 +7603785 0 0 +7603834 128 0 +7603946 0 0 +7604000 128 0 +7604090 0 0 +7604243 128 0 +7604261 0 0 +7604340 128 0 +7604432 0 0 +7604506 128 0 +7604584 0 0 +7604667 128 0 +7604764 0 0 +7604873 128 0 +7604886 0 0 +7604910 128 0 +7604961 0 0 +7608088 totRewards = 11 +7608088 64 8 +7608263 0 8 +7608281 64 8 +7608288 64 0 +7609448 0 0 +7609467 64 0 +7609592 0 0 +7609607 64 0 +7609745 0 0 +7609757 64 0 +7610240 0 0 +7610256 64 0 +7610412 0 0 +7610424 64 0 +7610764 0 0 +7610772 64 0 +7610918 0 0 +7610952 64 0 +7611077 0 0 +7611115 64 0 +7611243 0 0 +7611289 64 0 +7611586 0 0 +7611606 64 0 +7611757 0 0 +7611794 64 0 +7612355 0 0 +7612386 64 0 +7612574 0 0 +7612614 64 0 +7612884 0 0 +7612901 64 0 +7613054 0 0 +7613091 64 0 +7613221 0 0 +7613257 64 0 +7613386 0 0 +7618178 totRewards = 12 +7618178 128 16 +7618307 0 16 +7618378 0 0 +7618396 128 0 +7618712 0 0 +7618752 128 0 +7618860 0 0 +7618907 128 0 +7618984 0 0 +7619030 128 0 +7619120 0 0 +7619158 128 0 +7619270 0 0 +7619285 128 0 +7619414 0 0 +7619429 128 0 +7619552 0 0 +7619584 128 0 +7619716 0 0 +7619727 128 0 +7619858 0 0 +7619880 128 0 +7620005 0 0 +7620054 128 0 +7620174 0 0 +7620222 128 0 +7620341 0 0 +7620397 128 0 +7620509 0 0 +7620586 128 0 +7620743 0 0 +7621246 128 0 +7621352 0 0 +7621407 128 0 +7621506 0 0 +7621630 128 0 +7621695 0 0 +7621754 128 0 +7621880 0 0 +7621924 128 0 +7622044 0 0 +7622121 128 0 +7622225 0 0 +7622291 128 0 +7622376 0 0 +7622477 128 0 +7622496 0 0 +7627198 totRewards = 13 +7627198 64 8 +7627398 64 0 +7627485 0 0 +7627518 64 0 +7627731 0 0 +7627748 64 0 +7628116 0 0 +7628129 64 0 +7628673 0 0 +7628690 64 0 +7629150 0 0 +7629167 64 0 +7629317 0 0 +7629333 64 0 +7629487 0 0 +7629508 64 0 +7629653 0 0 +7629679 64 0 +7629822 0 0 +7629839 64 0 +7630177 0 0 +7630189 64 0 +7630327 0 0 +7630372 64 0 +7630981 0 0 +7631001 64 0 +7631145 0 0 +7631167 64 0 +7631302 0 0 +7631325 64 0 +7631462 0 0 +7631485 64 0 +7631620 0 0 +7631654 64 0 +7631784 0 0 +7631820 64 0 +7632823 0 0 +7632847 64 0 +7632982 0 0 +7633020 64 0 +7633130 0 0 +7633190 64 0 +7633269 0 0 +7636615 totRewards = 14 +7636615 128 16 +7636786 0 16 +7636815 0 0 +7636824 128 0 +7637013 0 0 +7637060 128 0 +7637204 0 0 +7637225 128 0 +7637386 0 0 +7637443 128 0 +7637537 0 0 +7637577 128 0 +7637671 0 0 +7637683 128 0 +7637804 0 0 +7637816 128 0 +7637937 0 0 +7637954 128 0 +7638227 0 0 +7638255 128 0 +7638375 0 0 +7638411 128 0 +7638523 0 0 +7638558 128 0 +7638691 0 0 +7638728 128 0 +7638849 0 0 +7638900 128 0 +7639021 0 0 +7639074 128 0 +7639196 0 0 +7639244 128 0 +7639364 0 0 +7639418 128 0 +7639531 0 0 +7639582 128 0 +7639692 0 0 +7639746 128 0 +7639849 0 0 +7639908 128 0 +7640017 0 0 +7640064 128 0 +7640179 0 0 +7640234 128 0 +7640353 0 0 +7640407 128 0 +7640516 0 0 +7640591 128 0 +7640656 0 0 +7643472 totRewards = 15 +7643472 64 8 +7643672 64 0 +7644135 0 0 +7644143 64 0 +7644273 0 0 +7644285 64 0 +7644681 0 0 +7644691 64 0 +7644821 0 0 +7644835 64 0 +7645128 0 0 +7645141 64 0 +7645287 0 0 +7645300 64 0 +7645452 0 0 +7645462 64 0 +7645617 0 0 +7645632 64 0 +7645772 0 0 +7645801 64 0 +7645932 0 0 +7645969 64 0 +7646102 0 0 +7646129 64 0 +7646634 0 0 +7646657 64 0 +7646790 0 0 +7646833 64 0 +7646939 0 0 +7647007 64 0 +7647074 0 0 +7649822 totRewards = 16 +7649822 128 16 +7650002 0 16 +7650022 0 0 +7650070 128 0 +7650268 0 0 +7650297 128 0 +7650402 0 0 +7650451 128 0 +7650656 0 0 +7650688 128 0 +7650785 0 0 +7650847 128 0 +7651084 0 0 +7651100 128 0 +7651213 0 0 +7651247 128 0 +7651522 0 0 +7651547 128 0 +7651668 0 0 +7651708 128 0 +7651826 0 0 +7651870 128 0 +7651999 0 0 +7652037 128 0 +7652156 0 0 +7652209 128 0 +7652328 0 0 +7652377 128 0 +7652500 0 0 +7652551 128 0 +7652658 0 0 +7652704 128 0 +7652821 0 0 +7652866 128 0 +7652976 0 0 +7653038 128 0 +7653142 0 0 +7653199 128 0 +7653303 0 0 +7653358 128 0 +7653467 0 0 +7653515 128 0 +7653636 0 0 +7653691 128 0 +7653808 0 0 +7653869 128 0 +7653965 0 0 +7654051 128 0 +7654062 0 0 +7654080 128 0 +7654108 0 0 +7656919 totRewards = 17 +7656919 64 8 +7657100 0 8 +7657110 64 8 +7657119 64 0 +7657724 0 0 +7657737 64 0 +7658450 0 0 +7658463 64 0 +7659093 0 0 +7659110 64 0 +7659260 0 0 +7659287 64 0 +7659582 0 0 +7659623 64 0 +7659745 0 0 +7659761 64 0 +7659910 0 0 +7659923 64 0 +7660072 0 0 +7660091 64 0 +7660226 0 0 +7660267 64 0 +7660403 0 0 +7660430 64 0 +7661645 0 0 +7661670 64 0 +7661804 0 0 +7661850 64 0 +7661970 0 0 +7662038 64 0 +7662070 0 0 +7664957 totRewards = 18 +7664957 128 16 +7665116 0 16 +7665157 0 0 +7665163 128 0 +7665372 0 0 +7665381 128 0 +7665492 0 0 +7665545 128 0 +7665745 0 0 +7665785 128 0 +7665876 0 0 +7665942 128 0 +7666304 0 0 +7666340 128 0 +7666456 0 0 +7666472 128 0 +7666601 0 0 +7666620 128 0 +7666750 0 0 +7666789 128 0 +7666909 0 0 +7666951 128 0 +7667074 0 0 +7667107 128 0 +7667238 0 0 +7667279 128 0 +7667398 0 0 +7667454 128 0 +7667578 0 0 +7667628 128 0 +7667753 0 0 +7667813 128 0 +7667918 0 0 +7667983 128 0 +7668082 0 0 +7668137 128 0 +7668242 0 0 +7668288 128 0 +7668398 0 0 +7668454 128 0 +7668559 0 0 +7668614 128 0 +7668722 0 0 +7668772 128 0 +7668880 0 0 +7668945 128 0 +7669001 0 0 +7669091 128 0 +7669177 0 0 +7669492 128 0 +7669523 0 0 +7669608 128 0 +7669694 0 0 +7672486 totRewards = 19 +7672486 64 8 +7672686 64 0 +7672724 0 0 +7672737 64 0 +7673490 0 0 +7673495 64 0 +7673765 0 0 +7673797 64 0 +7674228 0 0 +7674245 64 0 +7674389 0 0 +7674411 64 0 +7674894 0 0 +7674914 64 0 +7675248 0 0 +7675270 64 0 +7675418 0 0 +7675447 64 0 +7675593 0 0 +7675622 64 0 +7675753 0 0 +7675795 64 0 +7675911 0 0 +7675976 64 0 +7676080 0 0 +7676166 64 0 +7676268 0 0 +7676294 64 0 +7676444 0 0 +7676456 64 0 +7676947 0 0 +7676967 64 0 +7677088 0 0 +7679867 totRewards = 20 +7679867 128 16 +7680067 128 0 +7680094 0 0 +7680125 128 0 +7680335 0 0 +7680382 128 0 +7680469 0 0 +7680492 128 0 +7680727 0 0 +7680767 128 0 +7680855 0 0 +7680935 128 0 +7681001 0 0 +7681018 128 0 +7681159 0 0 +7681172 128 0 +7681294 0 0 +7681324 128 0 +7681588 0 0 +7681609 128 0 +7681743 0 0 +7681767 128 0 +7681906 0 0 +7681934 128 0 +7682065 0 0 +7682103 128 0 +7682226 0 0 +7682266 128 0 +7682390 0 0 +7682438 128 0 +7682573 0 0 +7682621 128 0 +7682747 0 0 +7682802 128 0 +7682920 0 0 +7682969 128 0 +7683084 0 0 +7683134 128 0 +7683243 0 0 +7683297 128 0 +7683398 0 0 +7683455 128 0 +7683562 0 0 +7683617 128 0 +7683726 0 0 +7683780 128 0 +7683889 0 0 +7683948 128 0 +7684062 0 0 +7684129 128 0 +7684181 0 0 +7687149 totRewards = 21 +7687149 64 8 +7687334 0 8 +7687349 0 0 +7687368 64 0 +7688422 0 0 +7688431 64 0 +7689388 0 0 +7689395 64 0 +7689548 0 0 +7689570 64 0 +7689719 0 0 +7689739 64 0 +7690071 0 0 +7690094 64 0 +7690236 0 0 +7690275 64 0 +7690577 0 0 +7690608 64 0 +7690748 0 0 +7690779 64 0 +7690941 0 0 +7690955 64 0 +7691854 0 0 +7691868 64 0 +7692034 0 0 +7692075 64 0 +7692226 0 0 +7692246 64 0 +7692396 0 0 +7692425 64 0 +7692575 0 0 +7692615 64 0 +7692744 0 0 +7692793 64 0 +7692916 0 0 +7695979 totRewards = 22 +7695979 128 16 +7696155 0 16 +7696179 0 0 +7696202 128 0 +7696409 0 0 +7696454 128 0 +7696545 0 0 +7696610 128 0 +7696807 0 0 +7696843 128 0 +7696940 0 0 +7697002 128 0 +7697228 0 0 +7697253 128 0 +7697365 0 0 +7697397 128 0 +7697511 0 0 +7697525 128 0 +7697646 0 0 +7697669 128 0 +7697800 0 0 +7697833 128 0 +7697956 0 0 +7697992 128 0 +7698120 0 0 +7698153 128 0 +7698280 0 0 +7698325 128 0 +7698442 0 0 +7698497 128 0 +7698624 0 0 +7698670 128 0 +7698792 0 0 +7698847 128 0 +7698956 0 0 +7699030 128 0 +7699117 0 0 +7699171 128 0 +7699287 0 0 +7699334 128 0 +7699449 0 0 +7699513 128 0 +7699611 0 0 +7699673 128 0 +7699780 0 0 +7699832 128 0 +7699949 0 0 +7700006 128 0 +7700113 0 0 +7700189 128 0 +7700266 0 0 +7703088 totRewards = 23 +7703088 64 8 +7703250 0 8 +7703277 64 8 +7703288 64 0 +7704632 0 0 +7704645 64 0 +7705600 0 0 +7705615 64 0 +7705765 0 0 +7705782 64 0 +7705935 0 0 +7705961 64 0 +7706103 0 0 +7706131 64 0 +7706267 0 0 +7706301 64 0 +7706431 0 0 +7706463 64 0 +7706601 0 0 +7706627 64 0 +7706764 0 0 +7706802 64 0 +7706930 0 0 +7706960 64 0 +7707407 0 0 +7707434 64 0 +7707562 0 0 +7707602 64 0 +7707904 0 0 +7707925 64 0 +7708075 0 0 +7708098 64 0 +7708229 0 0 +7708267 64 0 +7708371 0 0 +7711071 totRewards = 24 +7711071 128 16 +7711271 128 0 +7711287 0 0 +7711335 128 0 +7711541 0 0 +7711554 128 0 +7711669 0 0 +7711743 128 0 +7711797 0 0 +7711821 128 0 +7711918 0 0 +7711963 128 0 +7712057 0 0 +7712115 128 0 +7712350 0 0 +7712367 128 0 +7712487 0 0 +7712521 128 0 +7712797 0 0 +7712815 128 0 +7712933 0 0 +7712969 128 0 +7713089 0 0 +7713123 128 0 +7713252 0 0 +7713285 128 0 +7713398 0 0 +7713450 128 0 +7713560 0 0 +7713617 128 0 +7713738 0 0 +7713793 128 0 +7713912 0 0 +7713974 128 0 +7714078 0 0 +7714139 128 0 +7714242 0 0 +7714298 128 0 +7714402 0 0 +7714450 128 0 +7714556 0 0 +7714619 128 0 +7714715 0 0 +7714786 128 0 +7714871 0 0 +7714940 128 0 +7715030 0 0 +7715110 128 0 +7715204 0 0 +7715820 128 0 +7715841 0 0 +7715880 128 0 +7715896 0 0 +7716042 128 0 +7716050 0 0 +7718859 totRewards = 25 +7718859 64 8 +7719037 0 8 +7719059 0 0 +7719070 64 0 +7720252 0 0 +7720271 64 0 +7721045 0 0 +7721052 64 0 +7721203 0 0 +7721223 64 0 +7721865 0 0 +7721906 64 0 +7722021 0 0 +7722069 64 0 +7722175 0 0 +7724820 totRewards = 26 +7724820 128 16 +7725007 0 16 +7725020 0 0 +7725058 128 0 +7725272 0 0 +7725298 128 0 +7725406 0 0 +7725460 128 0 +7725661 0 0 +7725701 128 0 +7725799 0 0 +7725877 128 0 +7726100 0 0 +7726104 128 0 +7726227 0 0 +7726259 128 0 +7726377 0 0 +7726398 128 0 +7726533 0 0 +7726549 128 0 +7726683 0 0 +7726707 128 0 +7726844 0 0 +7726875 128 0 +7727015 0 0 +7727044 128 0 +7727172 0 0 +7727210 128 0 +7727333 0 0 +7727378 128 0 +7727492 0 0 +7727541 128 0 +7727649 0 0 +7727701 128 0 +7727819 0 0 +7727862 128 0 +7727984 0 0 +7728027 128 0 +7728146 0 0 +7728201 128 0 +7728307 0 0 +7728367 128 0 +7728477 0 0 +7728526 128 0 +7728646 0 0 +7728696 128 0 +7728805 0 0 +7728869 128 0 +7728900 0 0 +7728928 128 0 +7728972 0 0 +7729027 128 0 +7729129 0 0 +7729183 128 0 +7729286 0 0 +7729366 128 0 +7729498 0 0 +7729527 128 0 +7729646 0 0 +7729719 128 0 +7729814 0 0 +7729893 128 0 +7729988 0 0 +7730070 128 0 +7730141 0 0 +7732750 totRewards = 27 +7732750 64 8 +7732939 0 8 +7732950 0 0 +7732966 64 0 +7734138 0 0 +7734147 64 0 +7735096 0 0 +7735122 64 0 +7735434 0 0 +7735464 64 0 +7735589 0 0 +7735614 64 0 +7735744 0 0 +7735773 64 0 +7735913 0 0 +7735933 64 0 +7736087 0 0 +7736097 64 0 +7737351 0 0 +7737358 64 0 +7737527 0 0 +7737563 64 0 +7737905 0 0 +7737973 64 0 +7738060 0 0 +7738711 64 0 +7739104 0 0 +7739144 64 0 +7739275 0 0 +7739310 64 0 +7740248 0 0 +7740276 64 0 +7740402 0 0 +7740424 64 0 +7740623 0 0 +7740657 64 0 +7740921 0 0 +7740929 64 0 +7741081 0 0 +7741115 64 0 +7741257 0 0 +7741299 64 0 +7741393 0 0 +7744012 totRewards = 28 +7744012 128 16 +7744190 0 16 +7744212 0 0 +7744254 128 0 +7744591 0 0 +7744627 128 0 +7744754 0 0 +7744772 128 0 +7744882 0 0 +7744909 128 0 +7745016 0 0 +7745054 128 0 +7745173 0 0 +7745180 128 0 +7745316 0 0 +7745325 128 0 +7745451 0 0 +7745473 128 0 +7745605 0 0 +7745616 128 0 +7745755 0 0 +7745777 128 0 +7745908 0 0 +7745937 128 0 +7746070 0 0 +7746103 128 0 +7746228 0 0 +7746259 128 0 +7746394 0 0 +7746433 128 0 +7746551 0 0 +7746597 128 0 +7746711 0 0 +7746764 128 0 +7746864 0 0 +7746912 128 0 +7747023 0 0 +7747070 128 0 +7747181 0 0 +7747240 128 0 +7747344 0 0 +7747394 128 0 +7747508 0 0 +7747557 128 0 +7747668 0 0 +7747717 128 0 +7747845 0 0 +7747893 128 0 +7748015 0 0 +7748073 128 0 +7748178 0 0 +7748248 128 0 +7748328 0 0 +7751119 totRewards = 29 +7751119 64 8 +7751284 0 8 +7751297 64 8 +7751319 64 0 +7751936 0 0 +7751944 64 0 +7752075 0 0 +7752081 64 0 +7752352 0 0 +7752369 64 0 +7752495 0 0 +7752509 64 0 +7753308 0 0 +7753311 64 0 +7753472 0 0 +7753484 64 0 +7753615 0 0 +7753653 64 0 +7753782 0 0 +7753808 64 0 +7753948 0 0 +7753967 64 0 +7754108 0 0 +7754132 64 0 +7754263 0 0 +7754300 64 0 +7754433 0 0 +7754457 64 0 +7754590 0 0 +7754618 64 0 +7754934 0 0 +7754951 64 0 +7755096 0 0 +7755117 64 0 +7755269 0 0 +7755280 64 0 +7755421 0 0 +7755464 64 0 +7755583 0 0 +7755614 64 0 +7756426 0 0 +7756435 64 0 +7756575 0 0 +7756621 64 0 +7756735 0 0 +7759346 totRewards = 30 +7759346 128 16 +7759546 128 0 +7759735 0 0 +7759828 128 0 +7759895 0 0 +7760019 128 0 +7760549 0 0 +7760573 128 0 +7761183 0 0 +7761278 128 0 +7761837 0 0 +7761971 128 0 +7762397 0 0 +7770968 128 0 +7771508 0 0 +7771516 128 0 +7771520 0 0 +7771594 128 0 +7771670 0 0 +7778279 128 0 +7778726 0 0 +7778810 128 0 +7781612 0 0 +7781679 128 0 +7781859 0 0 +7781952 128 0 +7782647 0 0 +7782660 128 0 +7783611 0 0 +7783695 128 0 +7783820 0 0 +7783904 128 0 +7784028 0 0 +7784715 128 0 +7784748 0 0 +7784815 128 0 +7784963 0 0 +7784972 128 0 +7785128 0 0 +7785171 128 0 +7785323 0 0 +7785332 128 0 +7785458 0 0 +7785567 128 0 +7785644 0 0 +7785652 128 0 +7785984 0 0 +7786006 128 0 +7786181 0 0 +7798709 128 0 +7799137 0 0 +7799197 128 0 +7799717 0 0 +7799733 128 0 +7799853 0 0 +7799891 128 0 +7800003 0 0 +7800048 128 0 +7800153 0 0 +7800200 128 0 +7800302 0 0 +7800347 128 0 +7800452 0 0 +7800500 128 0 +7800618 0 0 +7803661 128 0 +7803970 0 0 +7804004 128 0 +7804144 0 0 +7813162 128 0 +7813218 0 0 +7813406 128 0 +7813806 0 0 +7813875 128 0 +7814107 0 0 +7823391 totRewards = 31 +7823391 64 8 +7823591 64 0 +7823656 0 0 +7823671 64 0 +7823881 0 0 +7823897 64 0 +7826008 0 0 +7826037 64 0 +7827566 0 0 +7827573 64 0 +7828584 0 0 +7828620 64 0 +7828743 0 0 +7834990 totRewards = 32 +7834990 128 16 +7835139 0 16 +7835167 128 16 +7835190 128 0 +7835449 0 0 +7835485 128 0 +7835835 0 0 +7835868 128 0 +7836110 0 0 +7836120 128 0 +7836236 0 0 +7836256 128 0 +7836367 0 0 +7836396 128 0 +7836513 0 0 +7836531 128 0 +7836651 0 0 +7836676 128 0 +7836789 0 0 +7836818 128 0 +7836938 0 0 +7836957 128 0 +7837076 0 0 +7837105 128 0 +7837232 0 0 +7837258 128 0 +7837401 0 0 +7837432 128 0 +7837572 0 0 +7837608 128 0 +7837734 0 0 +7837774 128 0 +7837900 0 0 +7837949 128 0 +7838076 0 0 +7838119 128 0 +7838241 0 0 +7838288 128 0 +7838407 0 0 +7838416 128 0 +7839140 0 0 +7839167 128 0 +7839306 0 0 +7839334 128 0 +7839474 0 0 +7839510 128 0 +7839648 0 0 +7839695 128 0 +7839813 0 0 +7839849 128 0 +7839976 0 0 +7843754 totRewards = 33 +7843754 64 8 +7843954 64 0 +7843967 0 0 +7843973 64 0 +7845978 0 0 +7845984 64 0 +7846131 0 0 +7846155 64 0 +7846469 0 0 +7846491 64 0 +7846622 0 0 +7846657 64 0 +7846788 0 0 +7846799 64 0 +7847249 0 0 +7847271 64 0 +7847410 0 0 +7847455 64 0 +7847541 0 0 +7850856 totRewards = 34 +7850856 128 16 +7851040 0 16 +7851056 0 0 +7851101 128 0 +7851704 0 0 +7851731 128 0 +7851818 0 0 +7851873 128 0 +7851970 0 0 +7851982 128 0 +7852120 0 0 +7852136 128 0 +7852248 0 0 +7852280 128 0 +7852389 0 0 +7852411 128 0 +7852683 0 0 +7852708 128 0 +7852833 0 0 +7852864 128 0 +7852987 0 0 +7853024 128 0 +7853146 0 0 +7853179 128 0 +7853313 0 0 +7853358 128 0 +7853472 0 0 +7853527 128 0 +7853635 0 0 +7853698 128 0 +7853797 0 0 +7853859 128 0 +7853955 0 0 +7854006 128 0 +7854110 0 0 +7854161 128 0 +7854262 0 0 +7854311 128 0 +7854419 0 0 +7854471 128 0 +7854573 0 0 +7854639 128 0 +7854738 0 0 +7854791 128 0 +7854898 0 0 +7854946 128 0 +7855057 0 0 +7855109 128 0 +7855227 0 0 +7855280 128 0 +7855404 0 0 +7855464 128 0 +7855564 0 0 +7855679 128 0 +7855711 0 0 +7858818 totRewards = 35 +7858818 64 8 +7859018 64 0 +7859614 0 0 +7859624 64 0 +7860163 0 0 +7860171 64 0 +7861607 0 0 +7861621 64 0 +7861768 0 0 +7861798 64 0 +7861923 0 0 +7861961 64 0 +7862077 0 0 +7862128 64 0 +7862227 0 0 +7865126 totRewards = 36 +7865126 128 16 +7865323 0 16 +7865326 0 0 +7865400 128 0 +7865601 0 0 +7865621 128 0 +7865723 0 0 +7865770 128 0 +7865984 0 0 +7866016 128 0 +7866108 0 0 +7866176 128 0 +7866543 0 0 +7866580 128 0 +7866846 0 0 +7866872 128 0 +7866999 0 0 +7867032 128 0 +7867154 0 0 +7867201 128 0 +7867325 0 0 +7867359 128 0 +7867483 0 0 +7867533 128 0 +7867646 0 0 +7867703 128 0 +7867828 0 0 +7867875 128 0 +7867993 0 0 +7868049 128 0 +7868165 0 0 +7868226 128 0 +7868323 0 0 +7868378 128 0 +7868473 0 0 +7868524 128 0 +7868631 0 0 +7868678 128 0 +7868784 0 0 +7868845 128 0 +7868939 0 0 +7869007 128 0 +7869106 0 0 +7869153 128 0 +7869260 0 0 +7869319 128 0 +7869430 0 0 +7869482 128 0 +7869593 0 0 +7869658 128 0 +7869757 0 0 +7869825 128 0 +7869914 0 0 +7870005 128 0 +7870057 0 0 +7873030 totRewards = 37 +7873030 64 8 +7873229 0 8 +7873230 0 0 +7873246 64 0 +7873983 0 0 +7874009 64 0 +7875354 0 0 +7875365 64 0 +7875515 0 0 +7875533 64 0 +7875672 0 0 +7875697 64 0 +7875846 0 0 +7875866 64 0 +7875997 0 0 +7876036 64 0 +7876162 0 0 +7876199 64 0 +7876323 0 0 +7876361 64 0 +7876488 0 0 +7876523 64 0 +7876651 0 0 +7876694 64 0 +7876820 0 0 +7876857 64 0 +7877649 0 0 +7877665 64 0 +7877800 0 0 +7877838 64 0 +7877965 0 0 +7878018 64 0 +7878114 0 0 +7881030 totRewards = 38 +7881030 128 16 +7881192 0 16 +7881230 0 0 +7881250 128 0 +7881470 0 0 +7881478 128 0 +7881591 0 0 +7881617 128 0 +7881863 0 0 +7881878 128 0 +7881978 0 0 +7882035 128 0 +7882400 0 0 +7882433 128 0 +7882567 0 0 +7882573 128 0 +7882714 0 0 +7882749 128 0 +7882875 0 0 +7882921 128 0 +7883043 0 0 +7883089 128 0 +7883214 0 0 +7883259 128 0 +7883386 0 0 +7883443 128 0 +7883561 0 0 +7883614 128 0 +7883727 0 0 +7883786 128 0 +7883878 0 0 +7883938 128 0 +7884042 0 0 +7884087 128 0 +7884198 0 0 +7884250 128 0 +7884353 0 0 +7884421 128 0 +7884510 0 0 +7884579 128 0 +7884678 0 0 +7884729 128 0 +7884846 0 0 +7884901 128 0 +7885012 0 0 +7885074 128 0 +7885174 0 0 +7885254 128 0 +7885376 0 0 +7885445 128 0 +7885529 0 0 +7889531 totRewards = 39 +7889531 64 8 +7889731 64 0 +7889761 0 0 +7889764 64 0 +7890353 0 0 +7890374 64 0 +7890499 0 0 +7890505 64 0 +7891707 0 0 +7891730 64 0 +7891877 0 0 +7891911 64 0 +7892050 0 0 +7892082 64 0 +7892211 0 0 +7892240 64 0 +7892367 0 0 +7892404 64 0 +7892531 0 0 +7892563 64 0 +7892695 0 0 +7892722 64 0 +7892868 0 0 +7892883 64 0 +7893208 0 0 +7893218 64 0 +7893348 0 0 +7893404 64 0 +7893488 0 0 +7896150 totRewards = 40 +7896150 128 16 +7896337 0 16 +7896350 0 0 +7896384 128 0 +7896596 0 0 +7896620 128 0 +7896725 0 0 +7896772 128 0 +7896980 0 0 +7897027 128 0 +7897108 0 0 +7897185 128 0 +7897545 0 0 +7897579 128 0 +7897712 0 0 +7897731 128 0 +7897867 0 0 +7897894 128 0 +7898018 0 0 +7898067 128 0 +7898187 0 0 +7898232 128 0 +7898352 0 0 +7898399 128 0 +7898507 0 0 +7898565 128 0 +7898657 0 0 +7898710 128 0 +7898815 0 0 +7898868 128 0 +7898969 0 0 +7899036 128 0 +7899125 0 0 +7899188 128 0 +7899299 0 0 +7899344 128 0 +7899457 0 0 +7899515 128 0 +7899621 0 0 +7899682 128 0 +7899788 0 0 +7899857 128 0 +7899953 0 0 +7900013 128 0 +7900115 0 0 +7900169 128 0 +7900275 0 0 +7900326 128 0 +7900429 0 0 +7900508 128 0 +7900621 0 0 +7900688 128 0 +7900791 0 0 +7900863 128 0 +7900965 0 0 +7901007 128 0 +7901129 0 0 +7901172 128 0 +7901285 0 0 +7901351 128 0 +7901449 0 0 +7901514 128 0 +7901622 0 0 +7901668 128 0 +7901786 0 0 +7901853 128 0 +7901936 0 0 +7902059 128 0 +7902084 0 0 +7902107 128 0 +7902161 0 0 +7902279 128 0 +7902313 0 0 +7902412 128 0 +7902446 0 0 +7902466 128 0 +7902507 0 0 +7902598 128 0 +7902669 0 0 +7905547 totRewards = 41 +7905547 64 8 +7905735 0 8 +7905747 0 0 +7905759 64 0 +7907837 0 0 +7907860 64 0 +7908013 0 0 +7908024 64 0 +7908328 0 0 +7908367 64 0 +7908481 0 0 +7908518 64 0 +7908635 0 0 +7908672 64 0 +7908961 0 0 +7908986 64 0 +7909114 0 0 +7909176 64 0 +7909231 0 0 +7912019 totRewards = 42 +7912019 128 16 +7912212 0 16 +7912219 0 0 +7912264 128 0 +7912454 0 0 +7912500 128 0 +7912588 0 0 +7912638 128 0 +7912841 0 0 +7912888 128 0 +7912974 0 0 +7913041 128 0 +7913413 0 0 +7913441 128 0 +7913699 0 0 +7913724 128 0 +7913853 0 0 +7913892 128 0 +7914005 0 0 +7914050 128 0 +7914171 0 0 +7914219 128 0 +7914337 0 0 +7914389 128 0 +7914507 0 0 +7914563 128 0 +7914681 0 0 +7914727 128 0 +7914842 0 0 +7914893 128 0 +7915001 0 0 +7915035 128 0 +7915167 0 0 +7915171 128 0 +7915299 0 0 +7915335 128 0 +7915457 0 0 +7915495 128 0 +7915616 0 0 +7915664 128 0 +7915808 0 0 +7915834 128 0 +7915970 0 0 +7916001 128 0 +7916121 0 0 +7916177 128 0 +7916274 0 0 +7919172 totRewards = 43 +7919172 64 8 +7919351 0 8 +7919359 64 8 +7919372 64 0 +7920098 0 0 +7920116 64 0 +7921447 0 0 +7921461 64 0 +7921602 0 0 +7921630 64 0 +7921769 0 0 +7921793 64 0 +7921947 0 0 +7921962 64 0 +7922118 0 0 +7922136 64 0 +7922270 0 0 +7922304 64 0 +7922761 0 0 +7922779 64 0 +7922919 0 0 +7922952 64 0 +7923096 0 0 +7923111 64 0 +7923239 0 0 +7923269 64 0 +7924484 0 0 +7927363 totRewards = 44 +7927363 128 16 +7927531 0 16 +7927563 0 0 +7927599 128 0 +7927793 0 0 +7927820 128 0 +7927920 0 0 +7927987 128 0 +7928176 0 0 +7928212 128 0 +7928306 0 0 +7928369 128 0 +7928592 0 0 +7928607 128 0 +7928731 0 0 +7928766 128 0 +7929039 0 0 +7929058 128 0 +7929183 0 0 +7929227 128 0 +7929342 0 0 +7929388 128 0 +7929500 0 0 +7929543 128 0 +7929670 0 0 +7929713 128 0 +7929829 0 0 +7929884 128 0 +7929990 0 0 +7930047 128 0 +7930145 0 0 +7930196 128 0 +7930300 0 0 +7930357 128 0 +7930465 0 0 +7930507 128 0 +7930622 0 0 +7930675 128 0 +7930784 0 0 +7930844 128 0 +7930943 0 0 +7931008 128 0 +7931097 0 0 +7931161 128 0 +7931267 0 0 +7931325 128 0 +7931412 0 0 +7931479 128 0 +7931537 0 0 +7931635 128 0 +7931736 0 0 +7931802 128 0 +7931882 0 0 +7932056 128 0 +7932077 0 0 +7932323 128 0 +7932341 0 0 +7932532 128 0 +7932567 0 0 +7932648 128 0 +7932722 0 0 +7932796 128 0 +7932900 0 0 +7932956 128 0 +7933070 0 0 +7933137 128 0 +7933227 0 0 +7933318 128 0 +7933372 0 0 +7936145 totRewards = 45 +7936145 64 8 +7936331 0 8 +7936345 0 0 +7936351 64 0 +7938670 0 0 +7938678 64 0 +7938832 0 0 +7938847 64 0 +7938994 0 0 +7939027 64 0 +7939141 0 0 +7939184 64 0 +7939299 0 0 +7939351 64 0 +7939445 0 0 +7942321 totRewards = 46 +7942321 128 16 +7942500 0 16 +7942521 0 0 +7942553 128 0 +7942738 0 0 +7942769 128 0 +7942881 0 0 +7942940 128 0 +7943134 0 0 +7943169 128 0 +7943260 0 0 +7943329 128 0 +7943406 0 0 +7943421 128 0 +7943545 0 0 +7943563 128 0 +7943677 0 0 +7943703 128 0 +7944125 0 0 +7944158 128 0 +7944284 0 0 +7944305 128 0 +7944442 0 0 +7944471 128 0 +7944599 0 0 +7944643 128 0 +7944760 0 0 +7944816 128 0 +7944939 0 0 +7944984 128 0 +7945100 0 0 +7945140 128 0 +7945255 0 0 +7945301 128 0 +7945571 0 0 +7945586 128 0 +7945718 0 0 +7945760 128 0 +7945882 0 0 +7945921 128 0 +7946053 0 0 +7946086 128 0 +7946220 0 0 +7946260 128 0 +7946378 0 0 +7946433 128 0 +7946524 0 0 +7946612 128 0 +7946674 0 0 +7949564 totRewards = 47 +7949564 64 8 +7949764 64 0 +7949764 0 0 +7949783 64 0 +7950950 0 0 +7950954 64 0 +7952222 0 0 +7952250 64 0 +7952562 0 0 +7952598 64 0 +7952723 0 0 +7952758 64 0 +7952880 0 0 +7952917 64 0 +7953050 0 0 +7953078 64 0 +7953208 0 0 +7953249 64 0 +7953367 0 0 +7953409 64 0 +7953523 0 0 +7956542 totRewards = 48 +7956542 128 16 +7956715 0 16 +7956742 0 0 +7956753 128 0 +7956970 0 0 +7956992 128 0 +7957107 0 0 +7957183 128 0 +7957352 0 0 +7957394 128 0 +7957491 0 0 +7957533 128 0 +7957780 0 0 +7957798 128 0 +7957913 0 0 +7957946 128 0 +7958058 0 0 +7958090 128 0 +7958212 0 0 +7958231 128 0 +7958357 0 0 +7958393 128 0 +7958511 0 0 +7958556 128 0 +7958677 0 0 +7958711 128 0 +7958833 0 0 +7958875 128 0 +7959005 0 0 +7959060 128 0 +7959173 0 0 +7959226 128 0 +7959332 0 0 +7959383 128 0 +7959499 0 0 +7959552 128 0 +7959658 0 0 +7959717 128 0 +7959818 0 0 +7959877 128 0 +7959959 0 0 +7960024 128 0 +7960140 0 0 +7960205 128 0 +7960301 0 0 +7960365 128 0 +7960469 0 0 +7960524 128 0 +7960599 0 0 +7960686 128 0 +7960810 0 0 +7960851 128 0 +7960962 0 0 +7961027 128 0 +7961117 0 0 +7961204 128 0 +7961295 0 0 +7964706 totRewards = 49 +7964706 64 8 +7964906 64 0 +7966868 0 0 +7966880 64 0 +7967019 0 0 +7967049 64 0 +7967179 0 0 +7967224 64 0 +7967335 0 0 +7967369 64 0 +7967490 0 0 +7967521 64 0 +7967649 0 0 +7967681 64 0 +7967814 0 0 +7967829 64 0 +7968780 0 0 +7968795 64 0 +7968925 0 0 +7968947 64 0 +7969095 0 0 +7969109 64 0 +7969456 0 0 +7969478 64 0 +7969615 0 0 +7969659 64 0 +7969793 0 0 +7969820 64 0 +7969943 0 0 +7969988 64 0 +7970089 0 0 +7970199 64 0 +7970210 0 0 +7972772 totRewards = 50 +7972772 128 16 +7972924 0 16 +7972972 0 0 +7972975 128 0 +7973169 0 0 +7973199 128 0 +7973306 0 0 +7973375 128 0 +7973442 0 0 +7973458 128 0 +7973560 0 0 +7973591 128 0 +7973689 0 0 +7973740 128 0 +7973845 0 0 +7973852 128 0 +7973973 0 0 +7973988 128 0 +7974111 0 0 +7974138 128 0 +7974403 0 0 +7974429 128 0 +7974551 0 0 +7974581 128 0 +7974707 0 0 +7974748 128 0 +7974875 0 0 +7974905 128 0 +7975034 0 0 +7975077 128 0 +7975198 0 0 +7975249 128 0 +7975365 0 0 +7975419 128 0 +7975531 0 0 +7975595 128 0 +7975677 0 0 +7975763 128 0 +7975835 0 0 +7975909 128 0 +7976004 0 0 +7976053 128 0 +7976170 0 0 +7976219 128 0 +7976333 0 0 +7976381 128 0 +7976490 0 0 +7976543 128 0 +7976648 0 0 +7976714 128 0 +7976793 0 0 +7976870 128 0 +7977000 0 0 +7977036 128 0 +7977156 0 0 +7977203 128 0 +7977313 0 0 +7977377 128 0 +7977451 0 0 +7981685 totRewards = 51 +7981685 64 8 +7981885 64 0 +7982588 0 0 +7982597 64 0 +7983005 0 0 +7983015 64 0 +7983943 0 0 +7983946 64 0 +7984103 0 0 +7984115 64 0 +7984423 0 0 +7984436 64 0 +7984579 0 0 +7984609 64 0 +7984738 0 0 +7984769 64 0 +7984903 0 0 +7984939 64 0 +7985073 0 0 +7985101 64 0 +7985231 0 0 +7985272 64 0 +7985729 0 0 +7985747 64 0 +7985888 0 0 +7985924 64 0 +7986047 0 0 +7988662 totRewards = 52 +7988662 128 16 +7988827 0 16 +7988862 0 0 +7988878 128 0 +7989246 0 0 +7989346 128 0 +7991807 0 0 +7991816 128 0 +7991952 0 0 +7991975 128 0 +7992111 0 0 +7992124 128 0 +7992438 0 0 +7992463 128 0 +7992593 0 0 +7992639 128 0 +7992759 0 0 +7992802 128 0 +7992925 0 0 +7992971 128 0 +7993465 0 0 +7993499 128 0 +7993632 0 0 +7993687 128 0 +7993808 0 0 +7993866 128 0 +7993991 0 0 +7994042 128 0 +7994185 0 0 +7994196 128 0 +7994335 0 0 +7994388 128 0 +7994508 0 0 +7994574 128 0 +7995282 0 0 +7995287 128 0 +7995764 0 0 +7995792 128 0 +7995933 0 0 +7995977 128 0 +7996111 0 0 +7996148 128 0 +7996268 0 0 +7996308 128 0 +7996426 0 0 +7996479 128 0 +7996596 0 0 +7996641 128 0 +7996771 0 0 +8003049 128 0 +8003174 0 0 +8012705 128 0 +8012750 0 0 +8012815 128 0 +8013021 0 0 +8013046 128 0 +8013889 0 0 +8013917 128 0 +8014030 0 0 +8014079 128 0 +8014189 0 0 +8014207 128 0 +8014319 0 0 +8014357 128 0 +8014470 0 0 +8014499 128 0 +8014621 0 0 +8014665 128 0 +8014770 0 0 +8014835 128 0 +8014905 0 0 +8018396 totRewards = 53 +8018396 64 8 +8018426 0 8 +8018596 0 0 +8029486 64 0 +8029770 0 0 +8029782 64 0 +8031102 0 0 +8031129 64 0 +8031239 0 0 +8031275 64 0 +8031387 0 0 +8031407 64 0 +8031872 0 0 +8035335 64 0 +8035389 0 0 +8035423 64 0 +8036330 0 0 +8036340 64 0 +8036844 0 0 +8036869 64 0 +8037008 0 0 +8037055 64 0 +8037175 0 0 +8037229 64 0 +8037354 0 0 +8037464 64 0 +8037474 0 0 +8037506 64 0 +8037540 0 0 +8049713 totRewards = 54 +8049713 128 16 +8049913 128 0 +8050505 0 0 +8050526 128 0 +8051015 0 0 +8051041 128 0 +8051141 0 0 +8051158 128 0 +8051416 0 0 +8051437 128 0 +8051560 0 0 +8051581 128 0 +8051855 0 0 +8051871 128 0 +8052000 0 0 +8052022 128 0 +8052139 0 0 +8052167 128 0 +8052305 0 0 +8052329 128 0 +8052466 0 0 +8052493 128 0 +8052619 0 0 +8052656 128 0 +8052774 0 0 +8052811 128 0 +8052924 0 0 +8052965 128 0 +8053087 0 0 +8053103 128 0 +8053224 0 0 +8053249 128 0 +8053366 0 0 +8053395 128 0 +8053517 0 0 +8053547 128 0 +8053678 0 0 +8053717 128 0 +8053852 0 0 +8053873 128 0 +8054015 0 0 +8054053 128 0 +8054193 0 0 +8054221 128 0 +8054373 0 0 +8054400 128 0 +8054531 0 0 +8054567 128 0 +8054690 0 0 +8054743 128 0 +8054853 0 0 +8054910 128 0 +8055035 0 0 +8055094 128 0 +8055216 0 0 +8055413 128 0 +8055504 0 0 +8055572 128 0 +8055618 0 0 +8055718 128 0 +8055755 0 0 +8061519 totRewards = 55 +8061519 64 8 +8061719 64 0 +8061777 0 0 +8061799 64 0 +8063502 0 0 +8063517 64 0 +8064335 0 0 +8064354 64 0 +8064518 0 0 +8064529 64 0 +8065104 0 0 +8065129 64 0 +8065785 0 0 +8077601 totRewards = 56 +8077601 128 16 +8077801 128 0 +8078493 0 0 +8078510 128 0 +8078622 0 0 +8078650 128 0 +8078743 0 0 +8078774 128 0 +8078881 0 0 +8078908 128 0 +8079013 0 0 +8079045 128 0 +8079142 0 0 +8079173 128 0 +8079283 0 0 +8079310 128 0 +8079433 0 0 +8079451 128 0 +8079573 0 0 +8079611 128 0 +8079718 0 0 +8079758 128 0 +8079866 0 0 +8079905 128 0 +8080022 0 0 +8080066 128 0 +8080183 0 0 +8080227 128 0 +8080339 0 0 +8080389 128 0 +8080491 0 0 +8080553 128 0 +8080649 0 0 +8080719 128 0 +8080818 0 0 +8080946 128 0 +8080976 0 0 +8081195 128 0 +8081288 0 0 +8081325 128 0 +8081467 0 0 +8081510 128 0 +8081636 0 0 +8081676 128 0 +8081799 0 0 +8081841 128 0 +8081958 0 0 +8082018 128 0 +8082121 0 0 +8092708 totRewards = 57 +8092708 64 8 +8092908 64 0 +8095791 0 0 +8095819 64 0 +8096103 0 0 +8096113 64 0 +8096566 0 0 +8096612 64 0 +8096710 0 0 +8100081 totRewards = 58 +8100081 128 16 +8100281 128 0 +8100404 0 0 +8100420 128 0 +8100991 0 0 +8101042 128 0 +8101131 0 0 +8101144 128 0 +8101266 0 0 +8101286 128 0 +8101388 0 0 +8101425 128 0 +8101522 0 0 +8101555 128 0 +8101661 0 0 +8101688 128 0 +8101800 0 0 +8101834 128 0 +8101953 0 0 +8101980 128 0 +8102091 0 0 +8102123 128 0 +8102243 0 0 +8102279 128 0 +8102395 0 0 +8102443 128 0 +8102553 0 0 +8102605 128 0 +8102715 0 0 +8102763 128 0 +8102889 0 0 +8102933 128 0 +8103060 0 0 +8103111 128 0 +8103224 0 0 +8103278 128 0 +8103379 0 0 +8103443 128 0 +8103517 0 0 +8103594 128 0 +8103673 0 0 +8103731 128 0 +8103846 0 0 +8103892 128 0 +8103998 0 0 +8104059 128 0 +8104153 0 0 +8104204 128 0 +8104318 0 0 +8104354 128 0 +8104477 0 0 +8104525 128 0 +8104631 0 0 +8104704 128 0 +8104783 0 0 +8108593 totRewards = 59 +8108593 64 8 +8108793 64 0 +8108799 0 0 +8108811 64 0 +8111156 0 0 +8111170 64 0 +8111314 0 0 +8111343 64 0 +8111490 0 0 +8111510 64 0 +8111661 0 0 +8111690 64 0 +8111819 0 0 +8111864 64 0 +8111972 0 0 +8112035 64 0 +8112134 0 0 +8112172 64 0 +8112310 0 0 +8112334 64 0 +8112490 0 0 +8112505 64 0 +8112655 0 0 +8112709 64 0 +8112827 0 0 +8117626 totRewards = 60 +8117626 128 16 +8117820 0 16 +8117826 0 0 +8117853 128 0 +8118305 0 0 +8118321 128 0 +8118555 0 0 +8118585 128 0 +8118702 0 0 +8118719 128 0 +8118837 0 0 +8118852 128 0 +8118967 0 0 +8118993 128 0 +8119114 0 0 +8119139 128 0 +8119261 0 0 +8119287 128 0 +8119405 0 0 +8119440 128 0 +8119556 0 0 +8119597 128 0 +8119716 0 0 +8119756 128 0 +8119872 0 0 +8119918 128 0 +8120035 0 0 +8120086 128 0 +8120199 0 0 +8120246 128 0 +8120351 0 0 +8120409 128 0 +8120503 0 0 +8120552 128 0 +8120659 0 0 +8120715 128 0 +8120828 0 0 +8120875 128 0 +8120988 0 0 +8121041 128 0 +8121145 0 0 +8121214 128 0 +8121281 0 0 +8121380 128 0 +8121399 0 0 +8121411 128 0 +8121433 0 0 +8124531 totRewards = 61 +8124531 64 8 +8124716 0 8 +8124731 0 0 +8124742 64 0 +8126943 0 0 +8126968 64 0 +8127102 0 0 +8127143 64 0 +8127261 0 0 +8127308 64 0 +8127422 0 0 +8127458 64 0 +8127601 0 0 +8127621 64 0 +8127761 0 0 +8127820 64 0 +8127913 0 0 +8127977 64 0 +8128253 0 0 +8131322 totRewards = 62 +8131322 128 16 +8131479 0 16 +8131522 0 0 +8131568 128 0 +8132034 0 0 +8132047 128 0 +8132175 0 0 +8132196 128 0 +8132282 0 0 +8132322 128 0 +8132579 0 0 +8132593 128 0 +8132716 0 0 +8132740 128 0 +8133001 0 0 +8133032 128 0 +8133158 0 0 +8133175 128 0 +8133309 0 0 +8133344 128 0 +8133467 0 0 +8133512 128 0 +8133626 0 0 +8133676 128 0 +8133793 0 0 +8133841 128 0 +8133966 0 0 +8134005 128 0 +8134131 0 0 +8134185 128 0 +8134292 0 0 +8134349 128 0 +8134446 0 0 +8134504 128 0 +8134604 0 0 +8134655 128 0 +8134760 0 0 +8134813 128 0 +8134926 0 0 +8134974 128 0 +8135090 0 0 +8135148 128 0 +8135258 0 0 +8135337 128 0 +8135361 0 0 +8138305 totRewards = 63 +8138305 64 8 +8138458 0 8 +8138475 64 8 +8138505 64 0 +8139198 0 0 +8139210 64 0 +8140671 0 0 +8140689 64 0 +8140842 0 0 +8140861 64 0 +8141008 0 0 +8141038 64 0 +8141176 0 0 +8141220 64 0 +8141349 0 0 +8141402 64 0 +8141509 0 0 +8148584 totRewards = 64 +8148584 128 16 +8148780 0 16 +8148784 0 0 +8148912 128 0 +8149943 0 0 +8149947 128 0 +8150647 0 0 +8150658 128 0 +8151120 0 0 +8151142 128 0 +8151270 0 0 +8151293 128 0 +8151431 0 0 +8151442 128 0 +8151581 0 0 +8151625 128 0 +8151743 0 0 +8151794 128 0 +8151916 0 0 +8151959 128 0 +8152075 0 0 +8152120 128 0 +8152232 0 0 +8152282 128 0 +8152391 0 0 +8152447 128 0 +8152554 0 0 +8152612 128 0 +8152718 0 0 +8152774 128 0 +8152869 0 0 +8152937 128 0 +8153042 0 0 +8153086 128 0 +8153195 0 0 +8153247 128 0 +8153363 0 0 +8153412 128 0 +8153521 0 0 +8153569 128 0 +8153674 0 0 +8153725 128 0 +8153825 0 0 +8157369 128 0 +8157382 0 0 +8169714 totRewards = 65 +8169714 64 8 +8169914 64 0 +8170381 0 0 +8170395 64 0 +8170508 0 0 +8170520 64 0 +8170632 0 0 +8170651 64 0 +8170757 0 0 +8170775 64 0 +8171163 0 0 +8171179 64 0 +8172073 0 0 +8172083 64 0 +8172243 0 0 +8172268 64 0 +8172577 0 0 +8172610 64 0 +8172735 0 0 +8172785 64 0 +8172902 0 0 +8172956 64 0 +8173064 0 0 +8173112 64 0 +8173241 0 0 +8173288 64 0 +8173403 0 0 +8177958 totRewards = 66 +8177958 128 16 +8178158 128 0 +8178197 0 0 +8178221 128 0 +8178553 0 0 +8178574 128 0 +8178686 0 0 +8178731 128 0 +8178793 0 0 +8178838 128 0 +8178950 0 0 +8178969 128 0 +8179080 0 0 +8179096 128 0 +8179207 0 0 +8179235 128 0 +8179342 0 0 +8179366 128 0 +8179481 0 0 +8179504 128 0 +8179624 0 0 +8179649 128 0 +8179771 0 0 +8179811 128 0 +8179930 0 0 +8179965 128 0 +8180087 0 0 +8180128 128 0 +8180239 0 0 +8180287 128 0 +8180403 0 0 +8180451 128 0 +8180556 0 0 +8180612 128 0 +8180705 0 0 +8180761 128 0 +8180863 0 0 +8180909 128 0 +8181022 0 0 +8181084 128 0 +8181173 0 0 +8181238 128 0 +8181342 0 0 +8181391 128 0 +8181495 0 0 +8181555 128 0 +8181656 0 0 +8181729 128 0 +8181782 0 0 +8184908 totRewards = 67 +8184908 64 8 +8185108 64 0 +8185118 0 0 +8185125 64 0 +8186815 0 0 +8186824 64 0 +8187303 0 0 +8187325 64 0 +8187458 0 0 +8187486 64 0 +8187625 0 0 +8187645 64 0 +8187778 0 0 +8187817 64 0 +8188090 0 0 +8188123 64 0 +8188246 0 0 +8188316 64 0 +8188387 0 0 +8191424 totRewards = 68 +8191424 128 16 +8191610 0 16 +8191624 0 0 +8191647 128 0 +8191866 0 0 +8191900 128 0 +8191987 0 0 +8192032 128 0 +8192246 0 0 +8192281 128 0 +8192384 0 0 +8192463 128 0 +8192504 0 0 +8192538 128 0 +8192655 0 0 +8192673 128 0 +8192795 0 0 +8192819 128 0 +8192935 0 0 +8192971 128 0 +8193089 0 0 +8193114 128 0 +8193226 0 0 +8193259 128 0 +8193377 0 0 +8193418 128 0 +8193532 0 0 +8193573 128 0 +8193687 0 0 +8193738 128 0 +8193850 0 0 +8193914 128 0 +8194019 0 0 +8194078 128 0 +8194175 0 0 +8194239 128 0 +8194321 0 0 +8194378 128 0 +8194468 0 0 +8194533 128 0 +8194630 0 0 +8194685 128 0 +8194786 0 0 +8194835 128 0 +8194940 0 0 +8195005 128 0 +8195104 0 0 +8195162 128 0 +8195263 0 0 +8195324 128 0 +8195424 0 0 +8195480 128 0 +8195577 0 0 +8195643 128 0 +8195723 0 0 +8195795 128 0 +8195897 0 0 +8195945 128 0 +8196058 0 0 +8196114 128 0 +8196227 0 0 +8196350 128 0 +8196369 0 0 +8199703 totRewards = 69 +8199703 64 8 +8199885 0 8 +8199903 0 0 +8199913 64 0 +8200647 0 0 +8200655 64 0 +8201347 0 0 +8201359 64 0 +8201635 0 0 +8201662 64 0 +8202120 0 0 +8202138 64 0 +8202274 0 0 +8202306 64 0 +8202442 0 0 +8202473 64 0 +8202596 0 0 +8202642 64 0 +8202750 0 0 +8202800 64 0 +8202908 0 0 +8202947 64 0 +8203076 0 0 +8203126 64 0 +8203231 0 0 +8206243 totRewards = 70 +8206243 128 16 +8206443 128 0 +8206484 0 0 +8206528 128 0 +8206896 0 0 +8206917 128 0 +8207037 0 0 +8207066 128 0 +8207170 0 0 +8207193 128 0 +8207325 0 0 +8207343 128 0 +8207470 0 0 +8207506 128 0 +8207622 0 0 +8207660 128 0 +8207791 0 0 +8207822 128 0 +8207933 0 0 +8207984 128 0 +8208088 0 0 +8208159 128 0 +8208267 0 0 +8208314 128 0 +8208423 0 0 +8208483 128 0 +8208525 0 0 +8208546 128 0 +8208576 0 0 +8208645 128 0 +8208729 0 0 +8208789 128 0 +8208875 0 0 +8208935 128 0 +8209035 0 0 +8209090 128 0 +8209190 0 0 +8209250 128 0 +8209354 0 0 +8209413 128 0 +8209516 0 0 +8209588 128 0 +8209656 0 0 +8209756 128 0 +8209828 0 0 +8213075 totRewards = 71 +8213075 64 8 +8213257 0 8 +8213264 64 8 +8213275 64 0 +8213998 0 0 +8214014 64 0 +8214422 0 0 +8214434 64 0 +8214718 0 0 +8214728 64 0 +8215513 0 0 +8215534 64 0 +8215678 0 0 +8215705 64 0 +8216025 0 0 +8216049 64 0 +8216185 0 0 +8216226 64 0 +8216343 0 0 +8216389 64 0 +8216501 0 0 +8216551 64 0 +8216650 0 0 +8219650 totRewards = 72 +8219650 128 16 +8219802 0 16 +8219850 0 0 +8219880 128 0 +8220487 0 0 +8220503 128 0 +8220604 0 0 +8220653 128 0 +8220755 0 0 +8220765 128 0 +8220898 0 0 +8220913 128 0 +8221031 0 0 +8221071 128 0 +8221341 0 0 +8221378 128 0 +8221500 0 0 +8221542 128 0 +8221660 0 0 +8221708 128 0 +8221826 0 0 +8221879 128 0 +8221994 0 0 +8222048 128 0 +8222163 0 0 +8222213 128 0 +8222331 0 0 +8222383 128 0 +8222488 0 0 +8222558 128 0 +8222645 0 0 +8222701 128 0 +8222803 0 0 +8222867 128 0 +8222969 0 0 +8223030 128 0 +8223127 0 0 +8223184 128 0 +8223287 0 0 +8223341 128 0 +8223445 0 0 +8223499 128 0 +8223600 0 0 +8223678 128 0 +8223724 0 0 +8223807 128 0 +8223886 0 0 +8223978 128 0 +8224064 0 0 +8224122 128 0 +8224238 0 0 +8224295 128 0 +8224393 0 0 +8224469 128 0 +8224573 0 0 +8224646 128 0 +8224720 0 0 +8227852 totRewards = 73 +8227852 64 8 +8228014 0 8 +8228041 64 8 +8228052 64 0 +8229493 0 0 +8229499 64 0 +8229639 0 0 +8229644 64 0 +8230119 0 0 +8230133 64 0 +8230285 0 0 +8230301 64 0 +8230449 0 0 +8230472 64 0 +8230614 0 0 +8230640 64 0 +8230776 0 0 +8230826 64 0 +8230944 0 0 +8231006 64 0 +8231120 0 0 +8231159 64 0 +8231283 0 0 +8231342 64 0 +8231437 0 0 +8236228 totRewards = 74 +8236228 128 16 +8236363 0 16 +8236422 128 16 +8236428 128 0 +8237434 0 0 +8237455 128 0 +8237565 0 0 +8237590 128 0 +8237710 0 0 +8237720 128 0 +8237851 0 0 +8237873 128 0 +8237996 0 0 +8238028 128 0 +8238142 0 0 +8238173 128 0 +8238296 0 0 +8238317 128 0 +8238453 0 0 +8238479 128 0 +8238615 0 0 +8238640 128 0 +8238767 0 0 +8238803 128 0 +8238925 0 0 +8238966 128 0 +8239092 0 0 +8239131 128 0 +8239255 0 0 +8239300 128 0 +8239414 0 0 +8239466 128 0 +8239578 0 0 +8239630 128 0 +8239736 0 0 +8239788 128 0 +8239904 0 0 +8239964 128 0 +8240057 0 0 +8240098 128 0 +8240191 0 0 +8240262 128 0 +8240351 0 0 +8240412 128 0 +8240522 0 0 +8240586 128 0 +8240686 0 0 +8250887 totRewards = 75 +8250887 64 8 +8251087 64 0 +8251130 0 0 +8251166 64 0 +8251225 0 0 +8251239 64 0 +8253956 0 0 +8253968 64 0 +8254283 0 0 +8254307 64 0 +8254440 0 0 +8254469 64 0 +8254599 0 0 +8254639 64 0 +8254771 0 0 +8254809 64 0 +8254960 0 0 +8254970 64 0 +8255117 0 0 +8255153 64 0 +8255261 0 0 +8255323 64 0 +8255449 0 0 +8255459 64 0 +8255600 0 0 +8255655 64 0 +8255745 0 0 +8279322 totRewards = 76 +8279322 128 16 +8279522 128 0 +8279579 0 0 +8279617 128 0 +8279830 0 0 +8279841 128 0 +8279959 0 0 +8279983 128 0 +8280196 0 0 +8280230 128 0 +8280339 0 0 +8280349 128 0 +8280588 0 0 +8280618 128 0 +8280738 0 0 +8280751 128 0 +8281031 0 0 +8281076 128 0 +8281187 0 0 +8281232 128 0 +8281357 0 0 +8281390 128 0 +8281518 0 0 +8281555 128 0 +8281679 0 0 +8281739 128 0 +8281854 0 0 +8281917 128 0 +8282025 0 0 +8282088 128 0 +8282196 0 0 +8282283 128 0 +8282378 0 0 +8282440 128 0 +8282554 0 0 +8282599 128 0 +8282719 0 0 +8282763 128 0 +8282899 0 0 +8282967 128 0 +8283097 0 0 +8283149 128 0 +8283279 0 0 +8283363 128 0 +8283464 0 0 +8283516 128 0 +8283666 0 0 +8283703 128 0 +8283824 0 0 +8283886 128 0 +8283996 0 0 +8284062 128 0 +8284182 0 0 +8284252 128 0 +8284365 0 0 +8284448 128 0 +8284541 0 0 +8284598 128 0 +8284719 0 0 +8286738 128 0 +8286867 0 0 +8290340 totRewards = 77 +8290339 64 8 +8290540 64 0 +8290590 0 0 +8290601 64 0 +8291851 0 0 +8291862 64 0 +8292282 0 0 +8292292 64 0 +8292432 0 0 +8292444 64 0 +8292585 0 0 +8292603 64 0 +8292743 0 0 +8292767 64 0 +8292903 0 0 +8292929 64 0 +8293055 0 0 +8293084 64 0 +8293206 0 0 +8293239 64 0 +8293362 0 0 +8293378 64 0 +8293522 0 0 +8293538 64 0 +8293676 0 0 +8293703 64 0 +8293837 0 0 +8293860 64 0 +8293983 0 0 +8294017 64 0 +8294140 0 0 +8294168 64 0 +8294299 0 0 +8294324 64 0 +8294438 0 0 +8294463 64 0 +8294577 0 0 +8294624 64 0 +8294933 0 0 +8294971 64 0 +8295097 0 0 +8295149 64 0 +8295259 0 0 +8295316 64 0 +8295411 0 0 +8312427 totRewards = 78 +8312427 128 16 +8312443 0 16 +8312507 128 16 +8312627 128 0 +8312634 0 0 +8312721 128 0 +8312796 0 0 +8312819 128 0 +8312837 0 0 +8312909 128 0 +8313026 0 0 +8313041 128 0 +8313944 0 0 +8313963 128 0 +8314082 0 0 +8314103 128 0 +8314226 0 0 +8314245 128 0 +8314359 0 0 +8314390 128 0 +8314507 0 0 +8314538 128 0 +8314658 0 0 +8314689 128 0 +8314800 0 0 +8314839 128 0 +8314965 0 0 +8315010 128 0 +8315129 0 0 +8315179 128 0 +8315284 0 0 +8315342 128 0 +8315446 0 0 +8315500 128 0 +8315605 0 0 +8315662 128 0 +8315773 0 0 +8315790 128 0 +8316217 0 0 +8316234 128 0 +8316371 0 0 +8316406 128 0 +8316539 0 0 +8316561 128 0 +8316712 0 0 +8316732 128 0 +8316876 0 0 +8316902 128 0 +8317031 0 0 +8317071 128 0 +8317194 0 0 +8317254 128 0 +8317355 0 0 +8324400 totRewards = 79 +8324400 64 8 +8324595 0 8 +8324600 0 0 +8324630 64 0 +8325107 0 0 +8325130 64 0 +8328538 0 0 +8328562 64 0 +8328718 0 0 +8328727 64 0 +8330048 0 0 +8330059 64 0 +8330437 0 0 +8330462 64 0 +8330627 0 0 +8330639 64 0 +8330802 0 0 +8330829 64 0 +8330948 0 0 +8331033 64 0 +8331042 0 0 +8336747 totRewards = 80 +8336747 128 16 +8336947 128 0 +8337131 0 0 +8337170 128 0 +8337664 0 0 +8337671 128 0 +8337778 0 0 +8337808 128 0 +8337916 0 0 +8337946 128 0 +8338049 0 0 +8338083 128 0 +8338180 0 0 +8338220 128 0 +8338330 0 0 +8338363 128 0 +8338466 0 0 +8338506 128 0 +8338617 0 0 +8338661 128 0 +8338767 0 0 +8338812 128 0 +8338932 0 0 +8338983 128 0 +8339098 0 0 +8339157 128 0 +8339270 0 0 +8339332 128 0 +8339452 0 0 +8339515 128 0 +8339635 0 0 +8339686 128 0 +8339806 0 0 +8339853 128 0 +8339969 0 0 +8339993 128 0 +8340265 0 0 +8340281 128 0 +8340408 0 0 +8340456 128 0 +8340569 0 0 +8340613 128 0 +8340723 0 0 +8340772 128 0 +8340884 0 0 +8340936 128 0 +8341039 0 0 +8341088 128 0 +8341198 0 0 +8341257 128 0 +8341365 0 0 +8341425 128 0 +8341533 0 0 +8341600 128 0 +8341701 0 0 +8341774 128 0 +8341866 0 0 +8341940 128 0 +8342058 0 0 +8342106 128 0 +8342187 0 0 +8342856 128 0 +8342930 0 0 +8343078 128 0 +8345964 0 0 +8350233 totRewards = 81 +8350233 64 8 +8350422 0 8 +8350428 64 8 +8350433 64 0 +8352812 0 0 +8352825 64 0 +8352980 0 0 +8352999 64 0 +8353143 0 0 +8353172 64 0 +8353304 0 0 +8353343 64 0 +8353469 0 0 +8353500 64 0 +8353628 0 0 +8353650 64 0 +8353797 0 0 +8353820 64 0 +8353968 0 0 +8353982 64 0 +8354299 0 0 +8354323 64 0 +8354453 0 0 +8354512 64 0 +8354600 0 0 +8357863 totRewards = 82 +8357863 128 16 +8358029 0 16 +8358063 0 0 +8358127 128 0 +8358328 0 0 +8358343 128 0 +8358444 0 0 +8358485 128 0 +8358833 0 0 +8358894 128 0 +8359134 0 0 +8359143 128 0 +8359253 0 0 +8359289 128 0 +8359394 0 0 +8359423 128 0 +8359551 0 0 +8359560 128 0 +8359686 0 0 +8359723 128 0 +8359837 0 0 +8359875 128 0 +8360005 0 0 +8360039 128 0 +8360163 0 0 +8360213 128 0 +8360331 0 0 +8360382 128 0 +8360496 0 0 +8360561 128 0 +8360673 0 0 +8360742 128 0 +8360851 0 0 +8360922 128 0 +8361023 0 0 +8361095 128 0 +8361171 0 0 +8361409 128 0 +8361510 0 0 +8361580 128 0 +8361657 0 0 +8361731 128 0 +8361838 0 0 +8361896 128 0 +8361991 0 0 +8362067 128 0 +8362161 0 0 +8362249 128 0 +8362257 0 0 +8366125 totRewards = 83 +8366125 64 8 +8366325 64 0 +8366348 0 0 +8366371 64 0 +8368634 0 0 +8368647 64 0 +8368798 0 0 +8368820 64 0 +8368956 0 0 +8368986 64 0 +8369110 0 0 +8369141 64 0 +8369276 0 0 +8369299 64 0 +8369430 0 0 +8369476 64 0 +8369597 0 0 +8369625 64 0 +8369761 0 0 +8369781 64 0 +8369926 0 0 +8369948 64 0 +8370611 0 0 +8370623 64 0 +8370769 0 0 +8370801 64 0 +8370942 0 0 +8370980 64 0 +8371113 0 0 +8371163 64 0 +8371250 0 0 +8374448 totRewards = 84 +8374448 128 16 +8374648 128 0 +8374649 0 0 +8374696 128 0 +8374925 0 0 +8374948 128 0 +8375178 0 0 +8375212 128 0 +8375308 0 0 +8375368 128 0 +8375606 0 0 +8375614 128 0 +8375745 0 0 +8375760 128 0 +8376177 0 0 +8376209 128 0 +8376313 0 0 +8376353 128 0 +8376471 0 0 +8376490 128 0 +8376612 0 0 +8376652 128 0 +8376765 0 0 +8376826 128 0 +8376936 0 0 +8376988 128 0 +8377106 0 0 +8377153 128 0 +8377274 0 0 +8377331 128 0 +8377445 0 0 +8377502 128 0 +8377607 0 0 +8377674 128 0 +8377766 0 0 +8377824 128 0 +8377931 0 0 +8377985 128 0 +8378104 0 0 +8378153 128 0 +8378267 0 0 +8378331 128 0 +8378428 0 0 +8385289 totRewards = 85 +8385289 64 8 +8385489 64 0 +8385501 0 0 +8385514 64 0 +8387814 0 0 +8387836 64 0 +8387980 0 0 +8388009 64 0 +8388139 0 0 +8388180 64 0 +8388288 0 0 +8388345 64 0 +8388442 0 0 +8388514 64 0 +8388582 0 0 +8392063 totRewards = 86 +8392063 128 16 +8392225 0 16 +8392263 0 0 +8392332 128 0 +8392799 0 0 +8392820 128 0 +8392933 0 0 +8393022 128 0 +8393049 0 0 +8393081 128 0 +8393354 0 0 +8393367 128 0 +8393481 0 0 +8393504 128 0 +8393933 0 0 +8393964 128 0 +8394089 0 0 +8394118 128 0 +8394247 0 0 +8394274 128 0 +8394404 0 0 +8394449 128 0 +8394571 0 0 +8394614 128 0 +8394738 0 0 +8394776 128 0 +8394899 0 0 +8394948 128 0 +8395062 0 0 +8395119 128 0 +8395222 0 0 +8395272 128 0 +8395384 0 0 +8395450 128 0 +8395540 0 0 +8395598 128 0 +8395707 0 0 +8395756 128 0 +8395869 0 0 +8395923 128 0 +8396037 0 0 +8396098 128 0 +8396204 0 0 +8396274 128 0 +8396357 0 0 +8400269 totRewards = 87 +8400269 64 8 +8400469 64 0 +8400477 0 0 +8400489 64 0 + + description: state script log run 3 + task_epochs: 6, +] +2021-01-28 16:16:12,795 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 16:16:16,966 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 16:16:16,970 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 16:16:16,970 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 16:16:16,970 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 16:16:16,974 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 16:16:18,975 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 16:16:18,976 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 16:16:18,982 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 16:16:18,984 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 16:16:18,987 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 16:16:19,018 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 16:16:19,021 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 16:16:19,023 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 16:16:19,024 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 16:16:22,672 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 16:16:22,674 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 16:18:51,715 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = Jaq +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-01-28 16:18:52,015 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 16:18:52,023 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 16:18:52,023 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 16:18:52,024 rec_to_binaries.core: INFO Extracting time... +2021-01-28 16:20:02,174 rec_to_binaries.core: INFO Making position directory... +2021-01-28 16:20:02,362 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 16:20:02,371 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 +2021-01-28 16:20:02,371 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 16:20:02,371 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = Jaq +date = 20190826 +nwb_metadata = Experiment Info: +Experimenter: Abhilasha Joshi +Description: Theta and gait +Session Id: jaq_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/nwb/Jaq20190826.nwb + +2021-01-28 16:20:03,039 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! + , [] +2021-01-28 16:20:06,544 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 16:20:07,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 16:20:07,160 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 16:20:07,160 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 16:20:07,163 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 16:20:07,164 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 16:20:07,165 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140061936192528 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +2001580 totRewards = 1 +2001580 64 200 +2001618 0 136 +2001730 64 136 +2001776 0 136 +2001780 0 128 +2003264 64 128 +2003377 0 128 +2003446 64 128 +2003519 0 128 +2003570 64 128 +2003646 0 128 +2003696 64 128 +2003785 0 128 +2003826 64 128 +2004082 0 128 +2004105 64 128 +2004232 0 128 +2004274 64 128 +2004393 0 128 +2004427 64 128 +2004551 0 128 +2004583 64 128 +2004720 0 128 +2004752 64 128 +2004888 0 128 +2004930 64 128 +2005077 0 128 +2005116 64 128 +2005252 0 128 +2005284 64 128 +2005395 0 128 +2005465 64 128 +2005540 0 128 +2005603 64 128 +2005710 0 128 +2005749 64 128 +2005861 0 128 +2005934 64 128 +2006019 0 128 +2006065 64 128 +2006182 0 128 +2006217 64 128 +2006329 0 128 +2006344 64 128 +2006477 0 128 +2006494 64 128 +2006626 0 128 +2006639 64 128 +2006774 0 128 +2006801 64 128 +2006925 0 128 +2006975 64 128 +2007855 0 128 +2007878 64 128 +2008024 0 128 +2008063 64 128 +2008169 0 128 +2008218 64 128 +2008346 0 128 +2008414 64 128 +2008525 0 128 +2008545 64 128 +2008694 0 128 +2008728 64 128 +2008871 0 128 +2008882 64 128 +2010662 0 128 +2010678 64 128 +2011803 0 128 +2011833 64 128 +2011970 0 128 +2012060 64 128 +2012163 0 128 +2012186 64 128 +2012343 0 128 +2012375 64 128 +2012524 0 128 +2012561 64 128 +2012567 0 128 +2012582 64 128 +2012666 0 128 +2012692 64 128 +2012709 0 128 +2012758 64 128 +2012843 0 128 +2012878 64 128 +2012913 0 128 +2012973 64 128 +2013026 0 128 +2013031 64 128 +2013034 0 128 +2013052 64 128 +2013239 0 128 +2034560 totRewards = 2 +2034560 128 144 +2034760 128 128 +2035091 0 0 +2035175 128 0 +2035224 0 0 +2035241 128 0 +2035642 0 0 +2035669 128 0 +2035934 0 0 +2035976 128 0 +2036086 0 0 +2036140 128 0 +2036249 0 0 +2036307 128 0 +2036411 0 0 +2036492 128 0 +2036582 0 0 +2036660 128 0 +2036748 0 0 +2036816 128 0 +2036899 0 0 +2036961 128 0 +2037070 0 0 +2037137 128 0 +2037244 0 0 +2037376 128 0 +2037423 0 0 +2037507 128 0 +2037610 0 0 +2037670 128 0 +2037770 0 0 +2037803 128 0 +2037924 0 0 +2037933 128 0 +2038187 0 0 +2038197 128 0 +2038342 0 0 +2038355 128 0 +2038819 0 0 +2038855 128 0 +2039188 0 0 +2039253 128 0 +2039357 0 0 +2039426 128 0 +2039462 0 0 +2039490 128 0 +2039548 0 0 +2039667 128 0 +2039739 0 0 +2039810 128 0 +2039928 0 0 +2039981 128 0 +2040117 0 0 +2040208 128 0 +2040298 0 0 +2040373 128 0 +2040478 0 0 +2040515 128 0 +2040657 0 0 +2040697 128 0 +2040788 0 0 +2040829 128 0 +2040851 0 0 +2040860 128 0 +2041365 0 0 +2041423 128 0 +2041584 0 0 +2041699 128 0 +2041769 0 0 +2041844 128 0 +2041969 0 0 +2042090 128 0 +2042173 0 0 +2042311 128 0 +2042343 0 0 +2063830 128 0 +2063874 0 0 +2066005 128 0 +2067249 0 0 +2067324 128 0 +2067441 0 0 +2074645 totRewards = 3 +2074645 64 8 +2074658 0 8 +2074845 0 0 +2074976 64 0 +2075045 0 0 +2075058 64 0 +2075512 0 0 +2075546 64 0 +2075789 0 0 +2075823 64 0 +2076095 0 0 +2076119 64 0 +2076245 0 0 +2076272 64 0 +2076412 0 0 +2076445 64 0 +2076571 0 0 +2076603 64 0 +2076738 0 0 +2076767 64 0 +2076901 0 0 +2076934 64 0 +2077052 0 0 +2077104 64 0 +2077209 0 0 +2077249 64 0 +2077518 0 0 +2077538 64 0 +2077985 0 0 +2077999 64 0 +2078158 0 0 +2078172 64 0 +2078842 0 0 +2078882 64 0 +2079003 0 0 +2079062 64 0 +2079188 0 0 +2079210 64 0 +2079323 0 0 +2079338 64 0 +2079360 0 0 +2079427 64 0 +2079489 0 0 +2079575 64 0 +2079656 0 0 +2079680 64 0 +2081117 0 0 +2081135 64 0 +2081295 0 0 +2081324 64 0 +2081462 0 0 +2081533 64 0 +2081625 0 0 +2096193 totRewards = 4 +2096193 128 16 +2096393 128 0 +2096867 0 0 +2096907 128 0 +2097582 0 0 +2097600 128 0 +2097712 0 0 +2097733 128 0 +2097848 0 0 +2097876 128 0 +2097988 0 0 +2098020 128 0 +2098129 0 0 +2098160 128 0 +2098287 0 0 +2098319 128 0 +2098435 0 0 +2098479 128 0 +2098589 0 0 +2098635 128 0 +2098748 0 0 +2098802 128 0 +2098919 0 0 +2098997 128 0 +2099135 0 0 +2099189 128 0 +2099304 0 0 +2099356 128 0 +2099465 0 0 +2099508 128 0 +2099929 0 0 +2099945 128 0 +2100094 0 0 +2100103 128 0 +2100267 0 0 +2100306 128 0 +2100435 0 0 +2100498 128 0 +2100541 0 0 +2100563 128 0 +2100631 0 0 +2100699 128 0 +2100805 0 0 +2100866 128 0 +2100997 0 0 +2101127 128 0 +2101177 0 0 +2101305 128 0 +2101366 0 0 +2101520 128 0 +2101559 0 0 +2101741 128 0 +2101765 0 0 +2102142 128 0 +2102175 0 0 +2102328 128 0 +2102369 0 0 +2102507 128 0 +2102562 0 0 +2102681 128 0 +2102720 0 0 +2105862 128 0 +2105868 0 0 +2114611 totRewards = 5 +2114611 64 8 +2114766 0 8 +2114811 0 0 +2114881 64 0 +2115110 0 0 +2115120 64 0 +2115389 0 0 +2115397 64 0 +2116252 0 0 +2116283 64 0 +2116436 0 0 +2116450 64 0 +2116584 0 0 +2116611 64 0 +2116741 0 0 +2116780 64 0 +2116895 0 0 +2116944 64 0 +2117053 0 0 +2117100 64 0 +2117213 0 0 +2117240 64 0 +2117365 0 0 +2117398 64 0 +2117526 0 0 +2117554 64 0 +2117852 0 0 +2117876 64 0 +2118025 0 0 +2118034 64 0 +2118175 0 0 +2118220 64 0 +2118353 0 0 +2118363 64 0 +2118479 0 0 +2118501 64 0 +2118516 0 0 +2118552 64 0 +2118559 0 0 +2118580 64 0 +2118637 0 0 +2118740 64 0 +2118800 0 0 +2118878 64 0 +2120024 0 0 +2120051 64 0 +2120186 0 0 +2120233 64 0 +2120352 0 0 +2140288 totRewards = 6 +2140288 128 16 +2140488 128 0 +2140841 0 0 +2140904 128 0 +2141213 0 0 +2141279 128 0 +2141616 0 0 +2141629 128 0 +2141863 0 0 +2141879 128 0 +2142145 0 0 +2142170 128 0 +2142292 0 0 +2142316 128 0 +2142435 0 0 +2142476 128 0 +2142582 0 0 +2142631 128 0 +2142739 0 0 +2142785 128 0 +2142890 0 0 +2142943 128 0 +2143053 0 0 +2143111 128 0 +2143226 0 0 +2143277 128 0 +2143386 0 0 +2143425 128 0 +2143539 0 0 +2143553 128 0 +2143986 0 0 +2144010 128 0 +2144133 0 0 +2144162 128 0 +2144308 0 0 +2144348 128 0 +2144481 0 0 +2144538 128 0 +2144654 0 0 +2144710 128 0 +2144817 0 0 +2144882 128 0 +2144986 0 0 +2145048 128 0 +2145173 0 0 +2145185 128 0 +2145200 0 0 +2145208 128 0 +2145295 0 0 +2145404 128 0 +2145461 0 0 +2145557 128 0 +2145621 0 0 +2145669 128 0 +2145675 0 0 +2145682 128 0 +2145958 0 0 +2145990 128 0 +2146113 0 0 +2146144 128 0 +2146279 0 0 +2146329 128 0 +2146438 0 0 +2146560 128 0 +2146611 0 0 +2146696 128 0 +2146710 0 0 +2159529 totRewards = 7 +2159529 64 8 +2159729 64 0 +2159738 0 0 +2159763 64 0 +2160960 0 0 +2160973 64 0 +2161110 0 0 +2161128 64 0 +2161268 0 0 +2161289 64 0 +2161432 0 0 +2161459 64 0 +2161608 0 0 +2161632 64 0 +2161949 0 0 +2161985 64 0 +2162113 0 0 +2162143 64 0 +2162275 0 0 +2162296 64 0 +2162310 0 0 +2162319 64 0 +2162403 0 0 +2162421 64 0 +2162452 0 0 +2162459 64 0 +2162559 0 0 +2162568 64 0 +2162900 0 0 +2162928 64 0 +2163757 0 0 +2163783 64 0 +2163917 0 0 +2163968 64 0 +2164082 0 0 +2166458 64 0 +2166531 0 0 +2166648 64 0 +2166917 0 0 +2166935 64 0 +2167090 0 0 +2167109 64 0 +2167732 0 0 +2167762 64 0 +2167908 0 0 +2167929 64 0 +2168084 0 0 +2168099 64 0 +2168429 0 0 +2168490 64 0 +2168588 0 0 +2176893 totRewards = 8 +2176893 128 16 +2177093 128 0 +2177326 0 0 +2177401 128 0 +2177653 0 0 +2177660 128 0 +2177663 0 0 +2177733 128 0 +2178313 0 0 +2178319 128 0 +2179180 0 0 +2179188 128 0 +2179315 0 0 +2179351 128 0 +2179476 0 0 +2179523 128 0 +2179642 0 0 +2179688 128 0 +2179810 0 0 +2179872 128 0 +2179978 0 0 +2180036 128 0 +2180144 0 0 +2180182 128 0 +2180882 0 0 +2180915 128 0 +2181044 0 0 +2181173 128 0 +2181203 0 0 +2181292 128 0 +2181428 0 0 +2181534 128 0 +2181591 0 0 +2181727 128 0 +2181782 0 0 +2182366 128 0 +2182374 0 0 +2184109 128 0 +2184245 0 0 +2184296 128 0 +2184396 0 0 +2184529 128 0 +2188631 0 0 +2190187 128 0 +2191079 0 0 +2191268 128 0 +2192641 0 0 +2192662 128 0 +2193070 0 0 +2193103 128 0 +2193223 0 0 +2193290 128 0 +2193362 0 0 +2193437 128 0 +2193510 0 0 +2193613 128 0 +2193703 0 0 +2202716 totRewards = 9 +2202716 64 8 +2202773 0 8 +2202836 64 8 +2202916 64 0 +2204488 0 0 +2204502 64 0 +2204642 0 0 +2204664 64 0 +2204811 0 0 +2204825 64 0 +2204970 0 0 +2204987 64 0 +2205126 0 0 +2205156 64 0 +2205282 0 0 +2205322 64 0 +2205445 0 0 +2205473 64 0 +2205730 0 0 +2205744 64 0 +2205890 0 0 +2205893 64 0 +2206940 0 0 +2206946 64 0 +2207096 0 0 +2207119 64 0 +2207266 0 0 +2207280 64 0 +2207972 0 0 +2207997 64 0 +2208143 0 0 +2208171 64 0 +2209358 0 0 +2209415 64 0 +2209513 0 0 +2216514 64 0 +2216790 0 0 +2216816 64 0 +2216945 0 0 +2216964 64 0 +2217093 0 0 +2217122 64 0 +2217254 0 0 +2217269 64 0 +2217569 0 0 +2217585 64 0 +2217733 0 0 +2217752 64 0 +2218051 0 0 +2222344 totRewards = 10 +2222344 128 16 +2222461 0 16 +2222544 0 0 +2222557 128 0 +2222585 0 0 +2222649 128 0 +2222663 0 0 +2222948 128 0 +2223215 0 0 +2223240 128 0 +2223844 0 0 +2223856 128 0 +2223972 0 0 +2223978 128 0 +2224099 0 0 +2224123 128 0 +2224239 0 0 +2224270 128 0 +2224377 0 0 +2224408 128 0 +2224526 0 0 +2224571 128 0 +2224679 0 0 +2224728 128 0 +2224835 0 0 +2224896 128 0 +2225005 0 0 +2225061 128 0 +2225173 0 0 +2225232 128 0 +2225342 0 0 +2225399 128 0 +2225511 0 0 +2225547 128 0 +2225798 0 0 +2225808 128 0 +2226268 0 0 +2226295 128 0 +2226441 0 0 +2226471 128 0 +2226612 0 0 +2226663 128 0 +2226797 0 0 +2226836 128 0 +2226974 0 0 +2227280 128 0 +2227394 0 0 +2227522 128 0 +2227572 0 0 +2240414 128 0 +2240991 0 0 +2241009 128 0 +2241417 0 0 +2241455 128 0 +2241562 0 0 +2241608 128 0 +2241717 0 0 +2241773 128 0 +2241885 0 0 +2241935 128 0 +2242056 0 0 +2242116 128 0 +2242216 0 0 +2242288 128 0 +2242395 0 0 +2242461 128 0 +2242582 0 0 +2242633 128 0 +2242764 0 0 +2242816 128 0 +2242923 0 0 +2243013 128 0 +2243120 0 0 +2243260 128 0 +2243270 0 0 +2245717 128 0 +2247529 0 0 +2247664 128 0 +2247755 0 0 +2254386 totRewards = 11 +2254386 64 8 +2254586 64 0 +2254782 0 0 +2254804 64 0 +2256275 0 0 +2256295 64 0 +2256427 0 0 +2256456 64 0 +2256588 0 0 +2256617 64 0 +2256923 0 0 +2256953 64 0 +2257081 0 0 +2257117 64 0 +2257241 0 0 +2257280 64 0 +2257399 0 0 +2257441 64 0 +2257567 0 0 +2257588 64 0 +2258047 0 0 +2258051 64 0 +2258899 0 0 +2258921 64 0 +2259056 0 0 +2259097 64 0 +2259215 0 0 +2259255 64 0 +2259372 0 0 +2259405 64 0 +2260634 0 0 +2260676 64 0 +2261234 0 0 +2261300 64 0 +2261404 0 0 +2261441 64 0 +2261625 0 0 +2261715 64 0 +2261815 0 0 +2261834 64 0 +2261977 0 0 +2262025 64 0 +2262133 0 0 +2277660 totRewards = 12 +2277660 128 16 +2277739 0 16 +2277860 0 0 +2277981 128 0 +2278327 0 0 +2278333 128 0 +2278895 0 0 +2278925 128 0 +2279032 0 0 +2279044 128 0 +2279302 0 0 +2279309 128 0 +2279439 0 0 +2279455 128 0 +2279735 0 0 +2279763 128 0 +2279878 0 0 +2279911 128 0 +2280032 0 0 +2280084 128 0 +2280202 0 0 +2280254 128 0 +2280364 0 0 +2280421 128 0 +2280526 0 0 +2280579 128 0 +2280686 0 0 +2280736 128 0 +2280847 0 0 +2280883 128 0 +2281609 0 0 +2281646 128 0 +2281774 0 0 +2281872 128 0 +2281935 0 0 +2282007 128 0 +2282103 0 0 +2282213 128 0 +2282280 0 0 +2282420 128 0 +2282494 0 0 +2284086 128 0 +2285130 0 0 +2285212 128 0 +2286235 0 0 +2286289 128 0 +2287135 0 0 +2287186 128 0 +2287289 0 0 +2291999 totRewards = 13 +2291999 64 8 +2292199 64 0 +2293824 0 0 +2293846 64 0 +2293982 0 0 +2294001 64 0 +2294138 0 0 +2294169 64 0 +2294293 0 0 +2294332 64 0 +2294454 0 0 +2294482 64 0 +2294791 0 0 +2294803 64 0 +2295457 0 0 +2295504 64 0 +2295973 0 0 +2296018 64 0 +2296154 0 0 +2296187 64 0 +2296796 0 0 +2296819 64 0 +2297909 0 0 +2297970 64 0 +2298237 0 0 +2298249 64 0 +2298570 0 0 +2298612 64 0 +2298728 0 0 +2298774 64 0 +2298883 0 0 +2298938 64 0 +2299041 0 0 +2307832 totRewards = 14 +2307832 128 16 +2308000 0 16 +2308028 128 16 +2308032 128 0 +2309019 0 0 +2309027 128 0 +2309306 0 0 +2309313 128 0 +2309437 0 0 +2309473 128 0 +2309593 0 0 +2309630 128 0 +2309750 0 0 +2309782 128 0 +2309900 0 0 +2309946 128 0 +2310069 0 0 +2310100 128 0 +2310224 0 0 +2310266 128 0 +2310382 0 0 +2310441 128 0 +2310558 0 0 +2310611 128 0 +2310718 0 0 +2310772 128 0 +2310877 0 0 +2310912 128 0 +2311035 0 0 +2311066 128 0 +2311185 0 0 +2311220 128 0 +2311336 0 0 +2311371 128 0 +2311666 0 0 +2311731 128 0 +2311816 0 0 +2311986 128 0 +2312015 0 0 +2313817 128 0 +2313887 0 0 +2313926 128 0 +2314125 0 0 +2314202 128 0 +2314630 0 0 +2314756 128 0 +2317830 0 0 +2317846 128 0 +2317980 0 0 +2318017 128 0 +2318121 0 0 +2318447 128 0 +2318468 0 0 +2318575 128 0 +2318643 0 0 +2321337 128 0 +2322451 0 0 +2322689 128 0 +2327632 0 0 +2327645 128 0 +2327935 0 0 +2327967 128 0 +2328085 0 0 +2328120 128 0 +2328244 0 0 +2328283 128 0 +2328404 0 0 +2328457 128 0 +2328561 0 0 +2328627 128 0 +2328720 0 0 +2328866 128 0 +2328892 0 0 +2328961 128 0 +2329075 0 0 +2329131 128 0 +2329240 0 0 +2329331 128 0 +2329412 0 0 +2329583 128 0 +2329768 0 0 +2331261 128 0 +2333920 0 0 +2337449 totRewards = 15 +2337449 64 8 +2337649 64 0 +2338511 0 0 +2338525 64 0 +2339700 0 0 +2339726 64 0 +2339869 0 0 +2339884 64 0 +2340021 0 0 +2340049 64 0 +2340177 0 0 +2340221 64 0 +2340350 0 0 +2340357 64 0 +2340814 0 0 +2340842 64 0 +2341675 0 0 +2341689 64 0 +2341838 0 0 +2341866 64 0 +2341992 0 0 +2342046 64 0 +2342161 0 0 +2342239 64 0 +2342326 0 0 +2342402 64 0 +2342683 0 0 +2342700 64 0 +2342845 0 0 +2342872 64 0 +2343006 0 0 +2343072 64 0 +2343156 0 0 +2346147 totRewards = 16 +2346147 128 16 +2346164 0 16 +2346272 128 16 +2346335 0 16 +2346347 0 0 +2346589 128 0 +2346602 0 0 +2346660 128 0 +2346684 0 0 +2346947 128 0 +2347329 0 0 +2347349 128 0 +2348105 0 0 +2348110 128 0 +2348537 0 0 +2348558 128 0 +2348682 0 0 +2348728 128 0 +2348835 0 0 +2348889 128 0 +2349004 0 0 +2349052 128 0 +2349166 0 0 +2349215 128 0 +2349330 0 0 +2349374 128 0 +2349484 0 0 +2349526 128 0 +2350244 0 0 +2350261 128 0 +2350407 0 0 +2350441 128 0 +2350568 0 0 +2350595 128 0 +2350771 0 0 +2350858 128 0 +2350914 0 0 +2351075 128 0 +2351151 0 0 +2351309 128 0 +2351326 0 0 +2351740 128 0 +2351753 0 0 +2351886 128 0 +2351896 0 0 +2352011 128 0 +2352104 0 0 +2352187 128 0 +2352214 0 0 +2352301 128 0 +2352559 0 0 +2352772 128 0 +2353146 0 0 +2353183 128 0 +2353383 0 0 +2353426 128 0 +2355263 0 0 +2359358 totRewards = 17 +2359358 64 8 +2359558 64 0 +2360088 0 0 +2360101 64 0 +2361553 0 0 +2361578 64 0 +2361883 0 0 +2361907 64 0 +2362039 0 0 +2362075 64 0 +2362327 0 0 +2362335 64 0 +2364953 0 0 +2364983 64 0 +2365102 0 0 +2365153 64 0 +2365267 0 0 +2365324 64 0 +2365414 0 0 +2368975 totRewards = 18 +2368975 128 16 +2369175 128 0 +2369303 0 0 +2369335 128 0 +2369692 0 0 +2369711 128 0 +2369813 0 0 +2369864 128 0 +2370239 0 0 +2370266 128 0 +2370543 0 0 +2370563 128 0 +2370698 0 0 +2370728 128 0 +2370846 0 0 +2370899 128 0 +2371028 0 0 +2371066 128 0 +2371186 0 0 +2371233 128 0 +2371348 0 0 +2371399 128 0 +2371524 0 0 +2371569 128 0 +2371690 0 0 +2371747 128 0 +2371862 0 0 +2371919 128 0 +2372027 0 0 +2372070 128 0 +2372173 0 0 +2372219 128 0 +2372338 0 0 +2375851 128 0 +2376084 0 0 +2376257 128 0 +2376944 0 0 +2377077 128 0 +2378183 0 0 +2381281 totRewards = 19 +2381281 64 8 +2381481 64 0 +2382052 0 0 +2382073 64 0 +2383036 0 0 +2383047 64 0 +2383182 0 0 +2383206 64 0 +2383520 0 0 +2383532 64 0 +2383681 0 0 +2383710 64 0 +2383859 0 0 +2383866 64 0 +2384010 0 0 +2384039 64 0 +2384184 0 0 +2384206 64 0 +2384339 0 0 +2384374 64 0 +2385999 0 0 +2386006 64 0 +2386173 0 0 +2386185 64 0 +2386707 0 0 +2386743 64 0 +2386868 0 0 +2386931 64 0 +2387020 0 0 +2390293 totRewards = 20 +2390293 128 16 +2390431 0 16 +2390474 128 16 +2390493 128 0 +2390625 0 0 +2390686 128 0 +2390781 0 0 +2390831 128 0 +2391031 0 0 +2391064 128 0 +2391157 0 0 +2391189 128 0 +2391831 0 0 +2391839 128 0 +2392429 0 0 +2392447 128 0 +2392582 0 0 +2392621 128 0 +2392746 0 0 +2392786 128 0 +2392920 0 0 +2392951 128 0 +2393082 0 0 +2393120 128 0 +2393249 0 0 +2393295 128 0 +2393428 0 0 +2393461 128 0 +2393626 0 0 +2393678 128 0 +2393703 0 0 +2393722 128 0 +2393784 0 0 +2393850 128 0 +2393969 0 0 +2394022 128 0 +2394154 0 0 +2394254 128 0 +2394329 0 0 +2394379 128 0 +2394421 0 0 +2394454 128 0 +2394485 0 0 +2394621 128 0 +2394669 0 0 +2395021 128 0 +2395050 0 0 +2395157 128 0 +2395192 0 0 +2395962 128 0 +2395976 0 0 +2399690 totRewards = 21 +2399690 64 8 +2399739 0 8 +2399783 64 8 +2399889 64 0 +2400032 0 0 +2400055 64 0 +2401665 0 0 +2401674 64 0 +2401820 0 0 +2401845 64 0 +2401974 0 0 +2402003 64 0 +2402129 0 0 +2402156 64 0 +2402593 0 0 +2402609 64 0 +2402754 0 0 +2402766 64 0 +2403575 0 0 +2403613 64 0 +2403763 0 0 +2403774 64 0 +2404087 0 0 +2404120 64 0 +2404268 0 0 +2404282 64 0 +2404424 0 0 +2404457 64 0 +2404593 0 0 +2404624 64 0 +2404761 0 0 +2404786 64 0 +2405621 0 0 +2405656 64 0 +2405801 0 0 +2405835 64 0 +2405983 0 0 +2406018 64 0 +2406128 0 0 +2408919 totRewards = 22 +2408918 128 16 +2409089 0 16 +2409099 128 16 +2409118 128 0 +2409259 0 0 +2409282 128 0 +2409881 0 0 +2409914 128 0 +2410332 0 0 +2410359 128 0 +2410491 0 0 +2410499 128 0 +2410625 0 0 +2410640 128 0 +2410777 0 0 +2410806 128 0 +2410954 0 0 +2410964 128 0 +2411111 0 0 +2411139 128 0 +2411271 0 0 +2411311 128 0 +2411444 0 0 +2411478 128 0 +2411620 0 0 +2411645 128 0 +2411779 0 0 +2411820 128 0 +2411949 0 0 +2411991 128 0 +2412110 0 0 +2412152 128 0 +2412297 0 0 +2412381 128 0 +2412463 0 0 +2412586 128 0 +2412637 0 0 +2417606 totRewards = 23 +2417606 64 8 +2417806 64 0 +2417988 0 0 +2418017 64 0 +2419385 0 0 +2419403 64 0 +2419710 0 0 +2419728 64 0 +2419869 0 0 +2419900 64 0 +2420197 0 0 +2420230 64 0 +2420360 0 0 +2420383 64 0 +2420813 0 0 +2420840 64 0 +2420978 0 0 +2421000 64 0 +2421625 0 0 +2421678 64 0 +2421781 0 0 +2421836 64 0 +2421936 0 0 +2424845 totRewards = 24 +2424845 128 16 +2424878 0 16 +2424957 128 16 +2425001 0 16 +2425029 128 16 +2425045 128 0 +2425100 0 0 +2425132 128 0 +2425255 0 0 +2425341 128 0 +2425404 0 0 +2425413 128 0 +2425655 0 0 +2425694 128 0 +2429976 0 0 +2430004 128 0 +2430156 0 0 +2430196 128 0 +2430336 0 0 +2430380 128 0 +2430522 0 0 +2430571 128 0 +2430718 0 0 +2430748 128 0 +2430894 0 0 +2430920 128 0 +2431078 0 0 +2431125 128 0 +2431275 0 0 +2431329 128 0 +2431675 0 0 +2431820 128 0 +2431897 0 0 +2432493 128 0 +2432637 0 0 +2432661 128 0 +2432804 0 0 +2432861 128 0 +2432994 0 0 +2433025 128 0 +2433287 0 0 +2433293 128 0 +2433298 0 0 +2433302 128 0 +2433608 0 0 +2433619 128 0 +2433651 0 0 +2433688 128 0 +2433712 0 0 +2433722 128 0 +2433771 0 0 +2433875 128 0 +2434339 0 0 +2434379 128 0 +2434521 0 0 +2434566 128 0 +2435276 0 0 +2435311 128 0 +2435450 0 0 +2435518 128 0 +2435619 0 0 +2435702 128 0 +2435821 0 0 +2435901 128 0 +2436009 0 0 +2436087 128 0 +2436177 0 0 +2436291 128 0 +2436323 0 0 +2436357 128 0 +2436377 0 0 +2443046 128 0 +2443134 0 0 +2443341 128 0 +2443453 0 0 +2443671 128 0 +2443803 0 0 +2443889 128 0 +2443921 0 0 +2443970 128 0 +2444102 0 0 +2447042 totRewards = 25 +2447042 64 8 +2447242 64 0 +2447765 0 0 +2447772 64 0 +2447880 0 0 +2447886 64 0 +2449309 0 0 +2449318 64 0 +2449464 0 0 +2449481 64 0 +2449621 0 0 +2449639 64 0 +2449783 0 0 +2449802 64 0 +2449934 0 0 +2449973 64 0 +2450097 0 0 +2450126 64 0 +2450260 0 0 +2450285 64 0 +2450402 0 0 +2455364 totRewards = 26 +2455364 128 16 +2455546 0 16 +2455564 0 0 +2455657 128 0 +2455691 0 0 +2455743 128 0 +2455937 0 0 +2456018 128 0 +2456092 0 0 +2456103 128 0 +2456163 0 0 +2456212 128 0 +2456319 0 0 +2456362 128 0 +2457252 0 0 +2457265 128 0 +2457695 0 0 +2457717 128 0 +2457847 0 0 +2457870 128 0 +2458176 0 0 +2458211 128 0 +2458339 0 0 +2458376 128 0 +2458501 0 0 +2458536 128 0 +2458658 0 0 +2458698 128 0 +2458804 0 0 +2458851 128 0 +2458970 0 0 +2458984 128 0 +2459119 0 0 +2459147 128 0 +2459250 0 0 +2463620 totRewards = 27 +2463620 64 8 +2463820 64 0 +2465463 0 0 +2465471 64 0 +2465619 0 0 +2465626 64 0 +2465935 0 0 +2465947 64 0 +2466092 0 0 +2466110 64 0 +2466253 0 0 +2466280 64 0 +2466410 0 0 +2466447 64 0 +2466568 0 0 +2466603 64 0 +2466732 0 0 +2466752 64 0 +2467027 0 0 +2469814 totRewards = 28 +2469814 128 16 +2469994 0 16 +2470014 0 0 +2470051 128 0 +2470113 0 0 +2470131 128 0 +2470369 0 0 +2470428 128 0 +2470615 0 0 +2470659 128 0 +2470750 0 0 +2470810 128 0 +2471182 0 0 +2471206 128 0 +2471609 0 0 +2471636 128 0 +2471763 0 0 +2471806 128 0 +2471934 0 0 +2471960 128 0 +2472090 0 0 +2472133 128 0 +2472245 0 0 +2472295 128 0 +2472412 0 0 +2472452 128 0 +2472597 0 0 +2472634 128 0 +2472746 0 0 +2472805 128 0 +2472913 0 0 +2472952 128 0 +2473352 0 0 +2473598 128 0 +2476006 0 0 +2476133 128 0 +2479487 0 0 +2479687 128 0 +2480044 0 0 +2482815 totRewards = 29 +2482815 64 8 +2483015 64 0 +2485179 0 0 +2485197 64 0 +2485339 0 0 +2485359 64 0 +2485487 0 0 +2485527 64 0 +2485658 0 0 +2485672 64 0 +2485968 0 0 +2485982 64 0 +2486102 0 0 +2489155 totRewards = 30 +2489155 128 16 +2489313 0 16 +2489355 0 0 +2489369 128 0 +2489697 0 0 +2489732 128 0 +2489944 0 0 +2489982 128 0 +2490071 0 0 +2490129 128 0 +2490358 0 0 +2490381 128 0 +2490490 0 0 +2490527 128 0 +2490938 0 0 +2490973 128 0 +2491097 0 0 +2491113 128 0 +2491255 0 0 +2491270 128 0 +2491405 0 0 +2491435 128 0 +2491565 0 0 +2491605 128 0 +2491743 0 0 +2491776 128 0 +2491897 0 0 +2491946 128 0 +2492059 0 0 +2492109 128 0 +2492225 0 0 +2492263 128 0 +2492382 0 0 +2492423 128 0 +2492544 0 0 +2492573 128 0 +2492723 0 0 +2492742 128 0 +2492881 0 0 +2492917 128 0 +2493039 0 0 +2493086 128 0 +2493194 0 0 +2493241 128 0 +2493365 0 0 +2493381 128 0 +2493510 0 0 +2493572 128 0 +2493589 0 0 +2493676 128 0 +2493876 0 0 +2494191 128 0 +2494750 0 0 +2494845 128 0 +2495454 0 0 +2499420 totRewards = 31 +2499419 64 8 +2499619 64 0 +2502333 0 0 +2502350 64 0 +2502492 0 0 +2502502 64 0 +2503572 0 0 +2503596 64 0 +2503742 0 0 +2503751 64 0 +2504397 0 0 +2504419 64 0 +2504560 0 0 +2504572 64 0 +2505051 0 0 +2505069 64 0 +2505379 0 0 +2505412 64 0 +2505557 0 0 +2505572 64 0 +2505715 0 0 +2505767 64 0 +2505847 0 0 +2508735 totRewards = 32 +2508735 128 16 +2508885 0 16 +2508935 0 0 +2508994 128 0 +2509065 0 0 +2509107 128 0 +2509335 0 0 +2509344 128 0 +2509483 0 0 +2509494 128 0 +2509735 0 0 +2509758 128 0 +2509877 0 0 +2509893 128 0 +2510149 0 0 +2510177 128 0 +2510297 0 0 +2510320 128 0 +2510597 0 0 +2510620 128 0 +2510757 0 0 +2510780 128 0 +2511073 0 0 +2511100 128 0 +2511234 0 0 +2511266 128 0 +2511410 0 0 +2511438 128 0 +2511567 0 0 +2511607 128 0 +2511716 0 0 +2511763 128 0 +2511868 0 0 +2511924 128 0 +2512020 0 0 +2515171 totRewards = 33 +2515171 64 8 +2515371 64 0 +2515871 0 0 +2515882 64 0 +2517692 0 0 +2517721 64 0 +2517853 0 0 +2517891 64 0 +2518013 0 0 +2518044 64 0 +2518481 0 0 +2518520 64 0 +2518612 0 0 +2521180 totRewards = 34 +2521180 128 16 +2521354 0 16 +2521379 128 16 +2521380 128 0 +2521569 0 0 +2521590 128 0 +2521692 0 0 +2521711 128 0 +2521925 0 0 +2521978 128 0 +2522070 0 0 +2522108 128 0 +2522490 0 0 +2522514 128 0 +2522937 0 0 +2522956 128 0 +2523086 0 0 +2523120 128 0 +2523252 0 0 +2523270 128 0 +2523399 0 0 +2523434 128 0 +2523557 0 0 +2523601 128 0 +2523729 0 0 +2523767 128 0 +2523896 0 0 +2523942 128 0 +2524058 0 0 +2524104 128 0 +2524211 0 0 +2524253 128 0 +2524372 0 0 +2524387 128 0 +2524514 0 0 +2527384 totRewards = 35 +2527384 64 8 +2527584 64 0 +2529745 0 0 +2529773 64 0 +2529906 0 0 +2529937 64 0 +2530226 0 0 +2530248 64 0 +2530392 0 0 +2530412 64 0 +2530548 0 0 +2530575 64 0 +2530711 0 0 +2530730 64 0 +2530869 0 0 +2530900 64 0 +2531022 0 0 +2531075 64 0 +2531188 0 0 +2531252 64 0 +2531324 0 0 +2532712 64 0 +2532741 0 0 +2532965 64 0 +2533145 0 0 +2533200 64 0 +2533263 0 0 +2533333 64 0 +2533747 0 0 +2536465 totRewards = 36 +2536465 128 16 +2536665 128 0 +2536770 0 0 +2536790 128 0 +2537391 0 0 +2537424 128 0 +2537815 0 0 +2537843 128 0 +2538112 0 0 +2538119 128 0 +2538254 0 0 +2538292 128 0 +2538420 0 0 +2538455 128 0 +2538583 0 0 +2538622 128 0 +2538747 0 0 +2538789 128 0 +2538909 0 0 +2538941 128 0 +2539071 0 0 +2539112 128 0 +2539227 0 0 +2539272 128 0 +2539389 0 0 +2539435 128 0 +2539553 0 0 +2539599 128 0 +2539710 0 0 +2539756 128 0 +2539870 0 0 +2539919 128 0 +2540024 0 0 +2540097 128 0 +2540131 0 0 +2543061 totRewards = 37 +2543061 64 8 +2543261 64 0 +2543302 0 0 +2543321 64 0 +2545004 0 0 +2545027 64 0 +2545177 0 0 +2545189 64 0 +2545641 0 0 +2545675 64 0 +2545800 0 0 +2545841 64 0 +2546764 0 0 +2546771 64 0 +2546909 0 0 +2546973 64 0 +2547017 0 0 +2549893 totRewards = 38 +2549893 128 16 +2550093 128 0 +2550333 0 0 +2550345 128 0 +2550468 0 0 +2550476 128 0 +2550694 0 0 +2550702 128 0 +2550933 0 0 +2550951 128 0 +2551060 0 0 +2551108 128 0 +2551471 0 0 +2551497 128 0 +2551924 0 0 +2551952 128 0 +2552079 0 0 +2552100 128 0 +2552395 0 0 +2552426 128 0 +2552547 0 0 +2552592 128 0 +2552735 0 0 +2552764 128 0 +2552902 0 0 +2552946 128 0 +2553065 0 0 +2553112 128 0 +2553229 0 0 +2553275 128 0 +2553379 0 0 +2553437 128 0 +2553527 0 0 +2553607 128 0 +2553670 0 0 +2556846 totRewards = 39 +2556846 64 8 +2557046 64 0 +2557066 0 0 +2557079 64 0 +2559054 0 0 +2559065 64 0 +2559552 0 0 +2559572 64 0 +2559707 0 0 +2559758 64 0 +2559875 0 0 +2559923 64 0 +2560048 0 0 +2560089 64 0 +2560388 0 0 +2560454 64 0 +2560540 0 0 +2563235 totRewards = 40 +2563235 128 16 +2563435 128 0 +2564006 0 0 +2564041 128 0 +2564140 0 0 +2564180 128 0 +2564559 0 0 +2564586 128 0 +2565004 0 0 +2565043 128 0 +2565168 0 0 +2565191 128 0 +2565328 0 0 +2565350 128 0 +2565480 0 0 +2565520 128 0 +2565631 0 0 +2565663 128 0 +2565791 0 0 +2565824 128 0 +2565949 0 0 +2565991 128 0 +2566098 0 0 +2566143 128 0 +2566260 0 0 +2566298 128 0 +2566424 0 0 +2566467 128 0 +2566573 0 0 +2566618 128 0 +2566742 0 0 +2566763 128 0 +2566912 0 0 +2566946 128 0 +2567068 0 0 +2567114 128 0 +2567223 0 0 +2567281 128 0 +2567360 0 0 +2570298 totRewards = 41 +2570298 64 8 +2570498 64 0 +2572758 0 0 +2572780 64 0 +2573101 0 0 +2573145 64 0 +2573281 0 0 +2573322 64 0 +2574008 0 0 +2574032 64 0 +2574177 0 0 +2574208 64 0 +2574715 0 0 +2574748 64 0 +2574882 0 0 +2574902 64 0 +2575057 0 0 +2575077 64 0 +2575202 0 0 +2577813 totRewards = 42 +2577813 128 16 +2578013 128 0 +2578222 0 0 +2578344 128 0 +2578817 0 0 +2578850 128 0 +2579085 0 0 +2579101 128 0 +2579222 0 0 +2579250 128 0 +2579669 0 0 +2579699 128 0 +2579835 0 0 +2579850 128 0 +2579982 0 0 +2580007 128 0 +2580144 0 0 +2580176 128 0 +2580312 0 0 +2580346 128 0 +2580479 0 0 +2580507 128 0 +2580638 0 0 +2580678 128 0 +2580786 0 0 +2580831 128 0 +2580937 0 0 +2580984 128 0 +2581062 0 0 +2584210 totRewards = 43 +2584210 64 8 +2584410 64 0 +2586367 0 0 +2586382 64 0 +2586524 0 0 +2586547 64 0 +2586680 0 0 +2586702 64 0 +2586842 0 0 +2586864 64 0 +2587008 0 0 +2587033 64 0 +2587166 0 0 +2587199 64 0 +2587321 0 0 +2587360 64 0 +2587481 0 0 +2587525 64 0 +2587617 0 0 +2591303 totRewards = 44 +2591303 128 16 +2591503 128 0 +2592645 0 0 +2592656 128 0 +2592782 0 0 +2592800 128 0 +2592917 0 0 +2592937 128 0 +2593048 0 0 +2593077 128 0 +2593187 0 0 +2593217 128 0 +2593333 0 0 +2593366 128 0 +2593490 0 0 +2593535 128 0 +2593655 0 0 +2593700 128 0 +2593815 0 0 +2593856 128 0 +2593963 0 0 +2594007 128 0 +2594115 0 0 +2594146 128 0 +2594278 0 0 +2594284 128 0 +2594410 0 0 +2594449 128 0 +2594556 0 0 +2597675 totRewards = 45 +2597675 64 8 +2597875 64 0 +2597920 0 0 +2597969 64 0 +2598419 0 0 +2598448 64 0 +2599285 0 0 +2599293 64 0 +2599432 0 0 +2599457 64 0 +2599909 0 0 +2599936 64 0 +2600074 0 0 +2600097 64 0 +2600414 0 0 +2600433 64 0 +2600563 0 0 +2600596 64 0 +2600725 0 0 +2600772 64 0 +2600890 0 0 +2600949 64 0 +2601047 0 0 +2604007 totRewards = 46 +2604007 128 16 +2604138 0 16 +2604182 128 16 +2604207 128 0 +2604334 0 0 +2604358 128 0 +2604953 0 0 +2604986 128 0 +2605376 0 0 +2605394 128 0 +2605808 0 0 +2605835 128 0 +2605967 0 0 +2605985 128 0 +2606122 0 0 +2606135 128 0 +2606272 0 0 +2606300 128 0 +2606432 0 0 +2606461 128 0 +2606601 0 0 +2606640 128 0 +2606768 0 0 +2606807 128 0 +2606919 0 0 +2606963 128 0 +2607067 0 0 +2607118 128 0 +2607213 0 0 +2607303 128 0 +2607313 0 0 +2607779 128 0 +2607848 0 0 +2607904 128 0 +2610120 0 0 +2612954 totRewards = 47 +2612954 64 8 +2613154 64 0 +2613292 0 0 +2613317 64 0 +2615429 0 0 +2615446 64 0 +2615573 0 0 +2615611 64 0 +2615733 0 0 +2615771 64 0 +2615870 0 0 +2618571 totRewards = 48 +2618571 128 16 +2618771 128 0 +2618887 0 0 +2618900 128 0 +2619108 0 0 +2619120 128 0 +2619497 0 0 +2619543 128 0 +2619918 0 0 +2619954 128 0 +2620363 0 0 +2620391 128 0 +2620510 0 0 +2620544 128 0 +2620904 0 0 +2620928 128 0 +2621061 0 0 +2621089 128 0 +2621226 0 0 +2621255 128 0 +2621369 0 0 +2621404 128 0 +2621520 0 0 +2621552 128 0 +2621699 0 0 +2621709 128 0 +2621843 0 0 +2621884 128 0 +2622000 0 0 +2622047 128 0 +2622163 0 0 +2622220 128 0 +2622346 0 0 +2623071 128 0 +2623182 0 0 +2623626 128 0 +2623700 0 0 +2627843 totRewards = 49 +2627843 64 8 +2628043 64 0 +2628136 0 0 +2628145 64 0 +2630032 0 0 +2630043 64 0 +2630502 0 0 +2630528 64 0 +2630653 0 0 +2630694 64 0 +2630813 0 0 +2630851 64 0 +2630971 0 0 +2631015 64 0 +2631098 0 0 +2633877 totRewards = 50 +2633877 128 16 +2633918 0 16 +2634001 128 16 +2634077 128 0 +2634143 0 0 +2634220 128 0 +2634328 0 0 +2634355 128 0 +2634565 0 0 +2634606 128 0 +2634696 0 0 +2634763 128 0 +2634977 0 0 +2634997 128 0 +2635124 0 0 +2635139 128 0 +2635545 0 0 +2635565 128 0 +2635685 0 0 +2635726 128 0 +2635846 0 0 +2635872 128 0 +2635998 0 0 +2636033 128 0 +2636156 0 0 +2636196 128 0 +2636321 0 0 +2636362 128 0 +2636480 0 0 +2636521 128 0 +2636627 0 0 +2636678 128 0 +2636772 0 0 +2636829 128 0 +2636924 0 0 +2637003 128 0 +2637049 0 0 +2637178 128 0 +2637463 0 0 +2637651 128 0 +2637701 0 0 +2637769 128 0 +2639197 0 0 +2639288 128 0 +2639604 0 0 +2642308 totRewards = 51 +2642308 64 8 +2642508 64 0 +2642755 0 0 +2642780 64 0 +2642990 0 0 +2643012 64 0 +2644727 0 0 +2644744 64 0 +2645038 0 0 +2645057 64 0 +2645191 0 0 +2645218 64 0 +2645347 0 0 +2645388 64 0 +2645496 0 0 +2648343 totRewards = 52 +2648343 128 16 +2648532 0 16 +2648543 0 0 +2648588 128 0 +2648779 0 0 +2648825 128 0 +2648909 0 0 +2648954 128 0 +2649155 0 0 +2649191 128 0 +2649290 0 0 +2649329 128 0 +2649720 0 0 +2649730 128 0 +2650155 0 0 +2650182 128 0 +2650297 0 0 +2650337 128 0 +2650464 0 0 +2650490 128 0 +2650621 0 0 +2650664 128 0 +2650780 0 0 +2650827 128 0 +2650935 0 0 +2650972 128 0 +2651074 0 0 +2651120 128 0 +2651217 0 0 +2651289 128 0 +2651325 0 0 +2653923 totRewards = 53 +2653923 64 8 +2654123 64 0 +2654159 0 0 +2654164 64 0 +2656886 0 0 +2656923 64 0 +2657046 0 0 +2657096 64 0 +2657201 0 0 +2659902 totRewards = 54 +2659902 128 16 +2660074 0 16 +2660102 0 0 +2660120 128 0 +2660236 0 0 +2660248 128 0 +2660836 0 0 +2660882 128 0 +2661980 0 0 +2661989 128 0 +2662272 0 0 +2662301 128 0 +2662434 0 0 +2662461 128 0 +2662597 0 0 +2662628 128 0 +2662757 0 0 +2662797 128 0 +2662914 0 0 +2662953 128 0 +2663064 0 0 +2663102 128 0 +2663664 0 0 +2663762 128 0 +2663778 0 0 +2667190 128 0 +2667285 0 0 +2667322 128 0 +2667332 0 0 +2667348 128 0 +2667390 0 0 +2667467 128 0 +2667512 0 0 +2670338 totRewards = 55 +2670338 64 8 +2670537 0 8 +2670538 0 0 +2670554 64 0 +2673064 0 0 +2673094 64 0 +2673217 0 0 +2673252 64 0 +2673377 0 0 +2673410 64 0 +2673510 0 0 +2676470 totRewards = 56 +2676470 128 16 +2676605 0 16 +2676670 0 0 +2676690 128 0 +2676845 0 0 +2676875 128 0 +2676960 0 0 +2677004 128 0 +2677208 0 0 +2677249 128 0 +2677355 0 0 +2677401 128 0 +2677772 0 0 +2677798 128 0 +2678199 0 0 +2678229 128 0 +2678354 0 0 +2678386 128 0 +2678670 0 0 +2678702 128 0 +2678823 0 0 +2678865 128 0 +2678992 0 0 +2679026 128 0 +2679155 0 0 +2679195 128 0 +2679306 0 0 +2679354 128 0 +2679454 0 0 +2679516 128 0 +2679589 0 0 +2682766 totRewards = 57 +2682766 64 8 +2682966 64 0 +2683919 0 0 +2683933 64 0 +2684207 0 0 +2684224 64 0 +2685002 0 0 +2685015 64 0 +2685143 0 0 +2685175 64 0 +2685455 0 0 +2685474 64 0 +2685599 0 0 +2685657 64 0 +2685736 0 0 +2706877 totRewards = 58 +2706877 128 16 +2707077 128 0 +2707134 0 0 +2707214 128 0 +2707252 0 0 +2707327 128 0 +2707414 0 0 +2707461 128 0 +2707533 0 0 +2707581 128 0 +2707778 0 0 +2707811 128 0 +2707913 0 0 +2707937 128 0 +2708010 0 0 +2708044 128 0 +2708408 0 0 +2708433 128 0 +2708828 0 0 +2708854 128 0 +2708979 0 0 +2709006 128 0 +2709143 0 0 +2709156 128 0 +2709287 0 0 +2709320 128 0 +2709429 0 0 +2709472 128 0 +2709587 0 0 +2709610 128 0 +2709734 0 0 +2709760 128 0 +2709883 0 0 +2709894 128 0 +2710026 0 0 +2710035 128 0 +2710770 0 0 +2710801 128 0 +2710921 0 0 +2710971 128 0 +2711087 0 0 +2711140 128 0 +2711257 0 0 +2711311 128 0 +2711402 0 0 +2711473 128 0 +2711540 0 0 +2714595 totRewards = 59 +2714595 64 8 +2714780 0 8 +2714795 0 0 +2714827 64 0 +2716113 0 0 +2716122 64 0 +2716729 0 0 +2716755 64 0 +2717031 0 0 +2717070 64 0 +2718886 0 0 +2718918 64 0 +2719050 0 0 +2719131 64 0 +2719202 0 0 +2719520 64 0 +2719777 0 0 +2719810 64 0 +2719928 0 0 +2726538 totRewards = 60 +2726538 128 16 +2726738 128 0 +2726850 0 0 +2726888 128 0 +2727361 0 0 +2727372 128 0 +2727476 0 0 +2727496 128 0 +2727604 0 0 +2727635 128 0 +2727743 0 0 +2727763 128 0 +2727882 0 0 +2727908 128 0 +2728014 0 0 +2728049 128 0 +2728154 0 0 +2728191 128 0 +2728304 0 0 +2728339 128 0 +2728457 0 0 +2728493 128 0 +2728610 0 0 +2728654 128 0 +2728777 0 0 +2728828 128 0 +2728944 0 0 +2728988 128 0 +2729096 0 0 +2729146 128 0 +2729258 0 0 +2729311 128 0 +2729409 0 0 +2729448 128 0 +2729568 0 0 +2729585 128 0 +2729718 0 0 +2729757 128 0 +2729881 0 0 +2729920 128 0 +2730029 0 0 +2730079 128 0 +2730192 0 0 +2730243 128 0 +2730360 0 0 +2730364 128 0 +2730508 0 0 +2730526 128 0 +2730654 0 0 +2730683 128 0 +2730815 0 0 +2730851 128 0 +2730979 0 0 +2731018 128 0 +2731152 0 0 +2731200 128 0 +2731309 0 0 +2731371 128 0 +2731471 0 0 +2731551 128 0 +2731656 0 0 +2731757 128 0 +2731869 0 0 +2731971 128 0 +2732012 0 0 +2732183 128 0 +2732229 0 0 +2732309 128 0 +2732386 0 0 +2732469 128 0 +2732494 0 0 +2743355 128 0 +2744545 0 0 +2744578 128 0 +2744976 0 0 +2744989 128 0 +2745109 0 0 +2745726 128 0 +2746827 0 0 +2749691 totRewards = 61 +2749691 64 8 +2749731 0 8 +2749791 64 8 +2749891 64 0 +2749948 0 0 +2749972 64 0 +2750528 0 0 +2750550 64 0 +2752440 0 0 +2752448 64 0 +2752755 0 0 +2752771 64 0 +2752917 0 0 +2752939 64 0 +2753078 0 0 +2753101 64 0 +2753229 0 0 +2753256 64 0 +2753708 0 0 +2753718 64 0 +2753861 0 0 +2753899 64 0 +2754013 0 0 +2757104 totRewards = 62 +2757104 128 16 +2757235 0 16 +2757269 128 16 +2757304 128 0 +2757425 0 0 +2757489 128 0 +2757605 0 0 +2757630 128 0 +2757845 0 0 +2757882 128 0 +2757967 0 0 +2758017 128 0 +2758254 0 0 +2758267 128 0 +2758383 0 0 +2758411 128 0 +2758658 0 0 +2758674 128 0 +2758813 0 0 +2758831 128 0 +2758957 0 0 +2758982 128 0 +2759109 0 0 +2759141 128 0 +2759271 0 0 +2759299 128 0 +2759429 0 0 +2759475 128 0 +2759586 0 0 +2759625 128 0 +2759743 0 0 +2759777 128 0 +2759889 0 0 +2759921 128 0 +2760049 0 0 +2760067 128 0 +2760196 0 0 +2760236 128 0 +2760349 0 0 +2760394 128 0 +2760512 0 0 +2760556 128 0 +2760679 0 0 +2760744 128 0 +2760875 0 0 +2760895 128 0 +2760997 0 0 +2761064 128 0 +2761159 0 0 +2761405 128 0 +2761474 0 0 +2761947 128 0 +2761993 0 0 +2762069 128 0 +2762158 0 0 +2762237 128 0 +2762270 0 0 +2762301 128 0 +2762338 0 0 +2762413 128 0 +2762515 0 0 +2762593 128 0 +2762687 0 0 +2762825 128 0 +2762875 0 0 +2762963 128 0 +2762977 0 0 +2763006 128 0 +2763029 0 0 +2763599 128 0 +2763750 0 0 +2778762 128 0 +2779299 0 0 +2779310 128 0 +2779720 0 0 +2779753 128 0 +2779862 0 0 +2779894 128 0 +2780009 0 0 +2780092 128 0 +2780158 0 0 +2780234 128 0 +2780300 0 0 +2780360 128 0 +2780460 0 0 +2780551 128 0 +2780607 0 0 +2780789 128 0 +2780817 0 0 +2780931 128 0 +2780976 0 0 +2781104 128 0 +2781138 0 0 +2781321 128 0 +2781360 0 0 +2781483 128 0 +2781518 0 0 +2781884 128 0 +2781911 0 0 +2787595 totRewards = 63 +2787595 64 8 +2787795 64 0 +2787877 0 0 +2787916 64 0 +2787951 0 0 +2787971 64 0 +2790162 0 0 +2790167 64 0 +2790645 0 0 +2790670 64 0 +2791939 0 0 +2791975 64 0 +2792085 0 0 +2792148 64 0 +2792219 0 0 +2795469 totRewards = 64 +2795469 128 16 +2795576 0 16 +2795648 128 16 +2795669 128 0 +2795788 0 0 +2795851 128 0 +2795943 0 0 +2796014 128 0 +2796366 0 0 +2796401 128 0 +2796759 0 0 +2796781 128 0 +2797183 0 0 +2797208 128 0 +2797330 0 0 +2797363 128 0 +2797490 0 0 +2797512 128 0 +2797644 0 0 +2797673 128 0 +2797809 0 0 +2797850 128 0 +2797975 0 0 +2798014 128 0 +2798126 0 0 +2798163 128 0 +2798279 0 0 +2798323 128 0 +2798435 0 0 +2798481 128 0 +2798596 0 0 +2798654 128 0 +2798757 0 0 +2798823 128 0 +2798920 0 0 +2807348 totRewards = 65 +2807348 64 8 +2807548 64 0 +2808025 0 0 +2808028 64 0 +2810196 0 0 +2810226 64 0 +2810345 0 0 +2810392 64 0 +2810497 0 0 +2810569 64 0 +2810614 0 0 +2813558 totRewards = 66 +2813558 128 16 +2813758 128 0 +2813988 0 0 +2814012 128 0 +2814112 0 0 +2814179 128 0 +2815017 0 0 +2815036 128 0 +2815165 0 0 +2815173 128 0 +2815303 0 0 +2815311 128 0 +2815449 0 0 +2815465 128 0 +2815591 0 0 +2815617 128 0 +2815755 0 0 +2815768 128 0 +2815898 0 0 +2815928 128 0 +2816053 0 0 +2816098 128 0 +2816217 0 0 +2816253 128 0 +2816375 0 0 +2816390 128 0 +2816978 0 0 +2816985 128 0 +2817129 0 0 +2817155 128 0 +2817290 0 0 +2817312 128 0 +2817449 0 0 +2817473 128 0 +2817609 0 0 +2817652 128 0 +2817764 0 0 +2817804 128 0 +2817924 0 0 +2817966 128 0 +2818098 0 0 +2818153 128 0 +2818262 0 0 +2818318 128 0 +2818429 0 0 +2818489 128 0 +2818598 0 0 +2818666 128 0 +2818768 0 0 +2818819 128 0 +2818930 0 0 +2818995 128 0 +2819118 0 0 +2819166 128 0 +2819284 0 0 +2819343 128 0 +2819453 0 0 +2819521 128 0 +2819551 0 0 +2819579 128 0 +2819597 0 0 +2830526 totRewards = 67 +2830526 64 8 +2830672 0 8 +2830726 0 0 +2830732 64 0 +2831181 0 0 +2831203 64 0 +2832711 0 0 +2832728 64 0 +2833188 0 0 +2833203 64 0 +2833355 0 0 +2833365 64 0 +2833681 0 0 +2833698 64 0 +2833843 0 0 +2834265 64 0 +2835014 0 0 +2835058 64 0 +2835167 0 0 +2835219 64 0 +2835279 0 0 +2837950 totRewards = 68 +2837950 128 16 +2838150 128 0 +2838178 0 0 +2838246 128 0 +2838261 0 0 +2838325 128 0 +2838532 0 0 +2838570 128 0 +2838778 0 0 +2838815 128 0 +2838915 0 0 +2838967 128 0 +2839344 0 0 +2839362 128 0 +2839799 0 0 +2839819 128 0 +2839944 0 0 +2839984 128 0 +2840106 0 0 +2840124 128 0 +2840264 0 0 +2840297 128 0 +2840416 0 0 +2840459 128 0 +2840584 0 0 +2840619 128 0 +2840740 0 0 +2840768 128 0 +2840903 0 0 +2840909 128 0 +2841496 0 0 +2841512 128 0 +2841651 0 0 +2841691 128 0 +2841802 0 0 +2846687 totRewards = 69 +2846687 64 8 +2846887 64 0 +2848800 0 0 +2848810 64 0 +2849435 0 0 +2849465 64 0 +2849584 0 0 +2849630 64 0 +2849756 0 0 +2849769 64 0 +2849895 0 0 +2849972 64 0 +2850025 0 0 +2853239 totRewards = 70 +2853239 128 16 +2853434 0 16 +2853439 0 0 +2853550 128 0 +2853586 0 0 +2853625 128 0 +2853850 0 0 +2853874 128 0 +2854227 0 0 +2854279 128 0 +2854655 0 0 +2854676 128 0 +2854949 0 0 +2854963 128 0 +2855101 0 0 +2855129 128 0 +2855248 0 0 +2855290 128 0 +2855421 0 0 +2855451 128 0 +2855580 0 0 +2855622 128 0 +2855736 0 0 +2855780 128 0 +2855894 0 0 +2855929 128 0 +2856064 0 0 +2856067 128 0 +2856202 0 0 +2856220 128 0 +2856358 0 0 +2856374 128 0 +2856674 0 0 +2856695 128 0 +2856817 0 0 +2856867 128 0 +2856972 0 0 +2860351 totRewards = 71 +2860351 64 8 +2860551 64 0 +2860594 0 0 +2860605 64 0 +2863128 0 0 +2863147 64 0 +2863681 0 0 +2863721 64 0 +2863856 0 0 +2863872 64 0 +2864884 0 0 +2865052 64 0 +2865726 0 0 +2865753 64 0 +2865907 0 0 +2865934 64 0 +2867130 0 0 +2867142 64 0 +2867841 0 0 +2867860 64 0 +2867996 0 0 +2873333 64 0 +2873589 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140061936204752 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +4817847 0 0 +4817864 64 0 +4818025 0 0 +4818034 64 0 +4818369 0 0 +4818377 64 0 +4818526 0 0 +4818555 64 0 +4818673 0 0 +4818736 64 0 +4818831 0 0 +4819088 64 0 +4819182 0 0 +4819213 64 0 +4819739 0 0 +4819764 64 0 +4819903 0 0 +4819950 64 0 +4820061 0 0 +4820111 64 0 +4820420 0 0 +4820429 64 0 +4820510 0 0 +4828786 totRewards = 3 +4828786 128 16 +4828986 128 0 +4829102 0 0 +4829123 128 0 +4829163 0 0 +4829191 128 0 +4829454 0 0 +4829472 128 0 +4829583 0 0 +4829600 128 0 +4829709 0 0 +4829746 128 0 +4829840 0 0 +4829888 128 0 +4829990 0 0 +4830039 128 0 +4830140 0 0 +4830186 128 0 +4830278 0 0 +4830338 128 0 +4830443 0 0 +4830498 128 0 +4830615 0 0 +4830682 128 0 +4830774 0 0 +4830907 128 0 +4830929 0 0 +4831031 128 0 +4831112 0 0 +4831194 128 0 +4831301 0 0 +4831362 128 0 +4831469 0 0 +4831536 128 0 +4831642 0 0 +4831707 128 0 +4831814 0 0 +4831907 128 0 +4831930 0 0 +4831970 128 0 +4832014 0 0 +4832102 128 0 +4832216 0 0 +4832248 128 0 +4832391 0 0 +4832422 128 0 +4833030 0 0 +4833058 128 0 +4833227 0 0 +4833249 128 0 +4833394 0 0 +4833452 128 0 +4833557 0 0 +4833703 128 0 +4833758 0 0 +4833839 128 0 +4833954 0 0 +4834046 128 0 +4834077 0 0 +4834088 128 0 +4834147 0 0 +4834291 128 0 +4834346 0 0 +4834485 128 0 +4834534 0 0 +4834622 128 0 +4834638 0 0 +4834686 128 0 +4834721 0 0 +4834793 128 0 +4834906 0 0 +4834976 128 0 +4835056 0 0 +4852460 totRewards = 4 +4852460 64 8 +4852512 0 8 +4852521 64 8 +4852660 64 0 +4852675 0 0 +4852738 64 0 +4852959 0 0 +4852998 64 0 +4853080 0 0 +4853127 64 0 +4853229 0 0 +4853243 64 0 +4853356 0 0 +4853378 64 0 +4853487 0 0 +4853492 64 0 +4853610 0 0 +4853641 64 0 +4853755 0 0 +4853781 64 0 +4853899 0 0 +4853919 64 0 +4854034 0 0 +4854057 64 0 +4854186 0 0 +4854216 64 0 +4854338 0 0 +4854359 64 0 +4854502 0 0 +4854523 64 0 +4854658 0 0 +4854696 64 0 +4854849 0 0 +4854873 64 0 +4855013 0 0 +4855063 64 0 +4855209 0 0 +4855242 64 0 +4855396 0 0 +4855426 64 0 +4855575 0 0 +4855604 64 0 +4856208 0 0 +4856240 64 0 +4856392 0 0 +4856419 64 0 +4856580 0 0 +4856610 64 0 +4856759 0 0 +4856801 64 0 +4856954 0 0 +4857005 64 0 +4857152 0 0 +4857180 64 0 +4857889 0 0 +4857932 64 0 +4858068 0 0 +4858111 64 0 +4858420 0 0 +4858438 64 0 +4858585 0 0 +4866594 totRewards = 5 +4866594 128 16 +4866662 0 16 +4866681 128 16 +4866794 128 0 +4867290 0 0 +4867314 128 0 +4867550 0 0 +4867587 128 0 +4867683 0 0 +4867725 128 0 +4867812 0 0 +4867845 128 0 +4867957 0 0 +4867982 128 0 +4868100 0 0 +4868124 128 0 +4868232 0 0 +4868271 128 0 +4868372 0 0 +4868411 128 0 +4868516 0 0 +4868554 128 0 +4868673 0 0 +4868705 128 0 +4868821 0 0 +4868874 128 0 +4868991 0 0 +4869036 128 0 +4869154 0 0 +4869203 128 0 +4869318 0 0 +4869385 128 0 +4869503 0 0 +4869568 128 0 +4869673 0 0 +4869754 128 0 +4869863 0 0 +4869946 128 0 +4870043 0 0 +4870126 128 0 +4870241 0 0 +4870282 128 0 +4871043 0 0 +4871067 128 0 +4871200 0 0 +4871242 128 0 +4871377 0 0 +4871431 128 0 +4871575 0 0 +4871609 128 0 +4871755 0 0 +4871817 128 0 +4871920 0 0 +4872003 128 0 +4872024 0 0 +4872068 128 0 +4872107 0 0 +4872194 128 0 +4872273 0 0 +4876373 totRewards = 6 +4876373 64 8 +4876573 64 0 +4876675 0 0 +4876736 64 0 +4876839 0 0 +4876874 64 0 +4876984 0 0 +4876997 64 0 +4877117 0 0 +4877126 64 0 +4877250 0 0 +4877260 64 0 +4877517 0 0 +4877545 64 0 +4877666 0 0 +4877697 64 0 +4877817 0 0 +4877847 64 0 +4877980 0 0 +4878003 64 0 +4878145 0 0 +4878177 64 0 +4878328 0 0 +4878362 64 0 +4878523 0 0 +4878577 64 0 +4878731 0 0 +4878775 64 0 +4878934 0 0 +4878967 64 0 +4879125 0 0 +4879162 64 0 +4879300 0 0 +4879318 64 0 +4880030 0 0 +4880060 64 0 +4880215 0 0 +4880260 64 0 +4880399 0 0 +4880465 64 0 +4880596 0 0 +4880664 64 0 +4880751 0 0 +4880780 64 0 +4881140 0 0 +4881161 64 0 +4881317 0 0 +4881362 64 0 +4881499 0 0 +4881559 64 0 +4881695 0 0 +4881720 64 0 +4882244 0 0 +4882270 64 0 +4882413 0 0 +4882508 64 0 +4882546 0 0 +4896386 64 0 +4896645 0 0 +4896669 64 0 +4896794 0 0 +4896812 64 0 +4896947 0 0 +4896952 64 0 +4897084 0 0 +4897108 64 0 +4897231 0 0 +4897256 64 0 +4897387 0 0 +4897407 64 0 +4897547 0 0 +4897567 64 0 +4897717 0 0 +4897729 64 0 +4897865 0 0 +4897901 64 0 +4898027 0 0 +4898077 64 0 +4898188 0 0 +4898258 64 0 +4898327 0 0 +4901581 totRewards = 7 +4901581 128 16 +4901694 0 16 +4901717 128 16 +4901772 0 16 +4901781 0 0 +4901805 128 0 +4902063 0 0 +4902089 128 0 +4902305 0 0 +4902340 128 0 +4902427 0 0 +4902479 128 0 +4902847 0 0 +4902863 128 0 +4903270 0 0 +4903289 128 0 +4903411 0 0 +4903434 128 0 +4903569 0 0 +4903584 128 0 +4903714 0 0 +4903744 128 0 +4903871 0 0 +4903917 128 0 +4904046 0 0 +4904082 128 0 +4904216 0 0 +4904258 128 0 +4904380 0 0 +4904424 128 0 +4904567 0 0 +4904609 128 0 +4904742 0 0 +4904781 128 0 +4904916 0 0 +4904961 128 0 +4905081 0 0 +4905124 128 0 +4905253 0 0 +4905287 128 0 +4905593 0 0 +4905609 128 0 +4905739 0 0 +4905792 128 0 +4905931 0 0 +4906048 128 0 +4906099 0 0 +4906215 128 0 +4906274 0 0 +4906347 128 0 +4906454 0 0 +4906533 128 0 +4906542 0 0 +4906585 128 0 +4906644 0 0 +4906773 128 0 +4906818 0 0 +4907177 128 0 +4907200 0 0 +4907941 128 0 +4907959 0 0 +4908081 128 0 +4908131 0 0 +4908213 128 0 +4908317 0 0 +4908381 128 0 +4908418 0 0 +4908446 128 0 +4908485 0 0 +4911724 totRewards = 8 +4911724 64 8 +4911924 64 0 +4911941 0 0 +4911962 64 0 +4912433 0 0 +4912458 64 0 +4912573 0 0 +4912601 64 0 +4912851 0 0 +4912869 64 0 +4912989 0 0 +4913014 64 0 +4913134 0 0 +4913160 64 0 +4913459 0 0 +4913478 64 0 +4913610 0 0 +4913641 64 0 +4913784 0 0 +4913808 64 0 +4913964 0 0 +4913989 64 0 +4914118 0 0 +4914155 64 0 +4914296 0 0 +4914326 64 0 +4914463 0 0 +4914498 64 0 +4914627 0 0 +4914667 64 0 +4914793 0 0 +4914823 64 0 +4914974 0 0 +4914985 64 0 +4915471 0 0 +4915498 64 0 +4915646 0 0 +4915671 64 0 +4916187 0 0 +4916204 64 0 +4916350 0 0 +4916378 64 0 +4916503 0 0 +4916561 64 0 +4916674 0 0 +4920485 totRewards = 9 +4920485 128 16 +4920685 128 0 +4920977 0 0 +4921018 128 0 +4921139 0 0 +4921178 128 0 +4921274 0 0 +4921292 128 0 +4921397 0 0 +4921428 128 0 +4921547 0 0 +4921562 128 0 +4921701 0 0 +4921720 128 0 +4921826 0 0 +4921858 128 0 +4921972 0 0 +4921995 128 0 +4922277 0 0 +4922310 128 0 +4922441 0 0 +4922467 128 0 +4922606 0 0 +4922629 128 0 +4922757 0 0 +4922800 128 0 +4922934 0 0 +4922979 128 0 +4923108 0 0 +4923158 128 0 +4923280 0 0 +4923331 128 0 +4923450 0 0 +4923491 128 0 +4924091 0 0 +4924123 128 0 +4924262 0 0 +4924287 128 0 +4924429 0 0 +4924468 128 0 +4924610 0 0 +4924639 128 0 +4924788 0 0 +4924827 128 0 +4924973 0 0 +4925030 128 0 +4925160 0 0 +4925221 128 0 +4925327 0 0 +4925937 128 0 +4925950 0 0 +4928799 totRewards = 10 +4928799 64 8 +4928969 0 8 +4928987 64 8 +4928999 64 0 +4929480 0 0 +4929512 64 0 +4929639 0 0 +4929655 64 0 +4929782 0 0 +4929805 64 0 +4929915 0 0 +4929932 64 0 +4930065 0 0 +4930084 64 0 +4930210 0 0 +4930220 64 0 +4930525 0 0 +4930544 64 0 +4930854 0 0 +4930878 64 0 +4931024 0 0 +4931054 64 0 +4931200 0 0 +4931231 64 0 +4931565 0 0 +4931603 64 0 +4931764 0 0 +4931795 64 0 +4931957 0 0 +4931989 64 0 +4932364 0 0 +4932410 64 0 +4932560 0 0 +4947797 64 0 +4947959 0 0 +4948025 64 0 +4948717 0 0 +4948727 64 0 +4949039 0 0 +4949046 64 0 +4949176 0 0 +4949215 64 0 +4949340 0 0 +4949386 64 0 +4949498 0 0 +4967056 totRewards = 11 +4967056 128 16 +4967231 0 16 +4967256 0 0 +4967312 128 0 +4967362 0 0 +4967376 128 0 +4967612 0 0 +4967650 128 0 +4967858 0 0 +4967882 128 0 +4967971 0 0 +4968022 128 0 +4968377 0 0 +4968394 128 0 +4968518 0 0 +4968538 128 0 +4968794 0 0 +4968807 128 0 +4968951 0 0 +4968957 128 0 +4969082 0 0 +4969104 128 0 +4969226 0 0 +4969252 128 0 +4969378 0 0 +4969407 128 0 +4969531 0 0 +4969563 128 0 +4969697 0 0 +4969720 128 0 +4969861 0 0 +4969900 128 0 +4970025 0 0 +4970067 128 0 +4970192 0 0 +4970228 128 0 +4970347 0 0 +4970388 128 0 +4970503 0 0 +4970541 128 0 +4970971 0 0 +4971005 128 0 +4971135 0 0 +4971168 128 0 +4971305 0 0 +4971337 128 0 +4971468 0 0 +4971506 128 0 +4971636 0 0 +4971677 128 0 +4971809 0 0 +4971862 128 0 +4971983 0 0 +4972038 128 0 +4972151 0 0 +4972225 128 0 +4972334 0 0 +4972421 128 0 +4972490 0 0 +4975667 totRewards = 12 +4975667 64 8 +4975815 0 8 +4975853 64 8 +4975867 64 0 +4976483 0 0 +4976489 64 0 +4976881 0 0 +4976893 64 0 +4977017 0 0 +4977029 64 0 +4977172 0 0 +4977191 64 0 +4977318 0 0 +4977342 64 0 +4977468 0 0 +4977488 64 0 +4977628 0 0 +4977644 64 0 +4977793 0 0 +4977817 64 0 +4977959 0 0 +4977990 64 0 +4978129 0 0 +4978148 64 0 +4978307 0 0 +4978314 64 0 +4978461 0 0 +4978489 64 0 +4978625 0 0 +4978665 64 0 +4978796 0 0 +4978818 64 0 +4979118 0 0 +4979125 64 0 +4979622 0 0 +4979635 64 0 +4979958 0 0 +4979985 64 0 +4980103 0 0 +4980159 64 0 +4980260 0 0 +4983502 totRewards = 13 +4983502 128 16 +4983702 128 0 +4983726 0 0 +4983779 128 0 +4983973 0 0 +4984037 128 0 +4984095 0 0 +4984118 128 0 +4984358 0 0 +4984393 128 0 +4984494 0 0 +4984560 128 0 +4984607 0 0 +4984634 128 0 +4984925 0 0 +4984932 128 0 +4985063 0 0 +4985072 128 0 +4985202 0 0 +4985216 128 0 +4985343 0 0 +4985374 128 0 +4985498 0 0 +4985536 128 0 +4985666 0 0 +4985703 128 0 +4985825 0 0 +4985871 128 0 +4985996 0 0 +4986049 128 0 +4986173 0 0 +4986216 128 0 +4986345 0 0 +4986392 128 0 +4986515 0 0 +4986564 128 0 +4986683 0 0 +4986706 128 0 +4987137 0 0 +4987165 128 0 +4987293 0 0 +4987326 128 0 +4987459 0 0 +4987529 128 0 +4987549 0 0 +4987558 128 0 +4987628 0 0 +4987690 128 0 +4987801 0 0 +4988118 128 0 +4988160 0 0 +4988272 128 0 +4988333 0 0 +4988481 128 0 +4988512 0 0 +4988658 128 0 +4988684 0 0 +4988847 128 0 +4988874 0 0 +4992017 totRewards = 14 +4992017 64 8 +4992217 64 0 +4992245 0 0 +4992258 64 0 +4993747 0 0 +4993755 64 0 +4994232 0 0 +4994243 64 0 +4994394 0 0 +4994418 64 0 +4994917 0 0 +4994937 64 0 +4995077 0 0 +4995101 64 0 +4995241 0 0 +4995266 64 0 +4995416 0 0 +4995427 64 0 +4995585 0 0 +4995600 64 0 +4995760 0 0 +4995767 64 0 +4996645 0 0 +4996677 64 0 +4996811 0 0 +4996862 64 0 +4997027 0 0 +4997159 64 0 +4997203 0 0 +4997275 64 0 +4997417 0 0 +4997432 64 0 +4997789 0 0 +4997818 64 0 +4997960 0 0 +4997999 64 0 +4998121 0 0 +4998164 64 0 +4998268 0 0 +4998346 64 0 +4998393 0 0 +5001232 totRewards = 15 +5001232 128 16 +5001398 0 16 +5001432 0 0 +5001436 128 0 +5001501 0 0 +5001510 128 0 +5001628 0 0 +5001660 128 0 +5001753 0 0 +5001791 128 0 +5002001 0 0 +5002056 128 0 +5002135 0 0 +5002203 128 0 +5002418 0 0 +5002432 128 0 +5002556 0 0 +5002576 128 0 +5002867 0 0 +5002876 128 0 +5002999 0 0 +5003032 128 0 +5003161 0 0 +5003186 128 0 +5003332 0 0 +5003353 128 0 +5003491 0 0 +5003532 128 0 +5003656 0 0 +5003703 128 0 +5003835 0 0 +5003879 128 0 +5004005 0 0 +5004053 128 0 +5004179 0 0 +5004226 128 0 +5004337 0 0 +5004383 128 0 +5004501 0 0 +5004527 128 0 +5004665 0 0 +5004722 128 0 +5004823 0 0 +5004889 128 0 +5004995 0 0 +5005073 128 0 +5005082 0 0 +5005114 128 0 +5005159 0 0 +5005242 128 0 +5005334 0 0 +5005852 128 0 +5005893 0 0 +5008890 totRewards = 16 +5008890 64 8 +5009090 64 0 +5009153 0 0 +5009177 64 0 +5009662 0 0 +5009677 64 0 +5010833 0 0 +5010840 64 0 +5011344 0 0 +5011352 64 0 +5012032 0 0 +5012067 64 0 +5012533 0 0 +5012549 64 0 +5012852 0 0 +5012878 64 0 +5013573 0 0 +5013589 64 0 +5013750 0 0 +5013779 64 0 +5013922 0 0 +5013956 64 0 +5014073 0 0 +5014143 64 0 +5014202 0 0 +5016866 totRewards = 17 +5016866 128 16 +5017035 0 16 +5017066 0 0 +5017093 128 0 +5017282 0 0 +5017317 128 0 +5017427 0 0 +5017472 128 0 +5017682 0 0 +5017714 128 0 +5017810 0 0 +5017879 128 0 +5018240 0 0 +5018268 128 0 +5018689 0 0 +5018729 128 0 +5018864 0 0 +5018897 128 0 +5019039 0 0 +5019070 128 0 +5019192 0 0 +5019238 128 0 +5019368 0 0 +5019406 128 0 +5019540 0 0 +5019606 128 0 +5019715 0 0 +5019777 128 0 +5019895 0 0 +5019949 128 0 +5020073 0 0 +5020130 128 0 +5020253 0 0 +5020329 128 0 +5020438 0 0 +5020490 128 0 +5020632 0 0 +5020694 128 0 +5020806 0 0 +5020877 128 0 +5020988 0 0 +5021053 128 0 +5021167 0 0 +5021203 128 0 +5021466 0 0 +5021522 128 0 +5021633 0 0 +5021662 128 0 +5021802 0 0 +5021856 128 0 +5021973 0 0 +5022016 128 0 +5022131 0 0 +5022266 128 0 +5022292 0 0 +5022425 128 0 +5022475 0 0 +5026113 totRewards = 18 +5026113 64 8 +5026313 64 0 +5026398 0 0 +5026415 64 0 +5027453 0 0 +5027465 64 0 +5028444 0 0 +5028457 64 0 +5028987 0 0 +5029001 64 0 +5029159 0 0 +5029175 64 0 +5029328 0 0 +5029359 64 0 +5030455 0 0 +5030519 64 0 +5030679 0 0 +5030706 64 0 +5031103 0 0 +5031124 64 0 +5031310 0 0 +5031326 64 0 +5031509 0 0 +5031532 64 0 +5031694 0 0 +5031778 64 0 +5031836 0 0 +5038203 totRewards = 19 +5038203 128 16 +5038403 128 0 +5038470 0 0 +5038492 128 0 +5038725 0 0 +5038778 128 0 +5039133 0 0 +5039171 128 0 +5039554 0 0 +5039578 128 0 +5039998 0 0 +5040014 128 0 +5040312 0 0 +5040331 128 0 +5040470 0 0 +5040494 128 0 +5040634 0 0 +5040676 128 0 +5040814 0 0 +5040839 128 0 +5040978 0 0 +5041015 128 0 +5041135 0 0 +5041154 128 0 +5041700 0 0 +5044489 totRewards = 20 +5044489 64 8 +5044677 0 8 +5044689 0 0 +5044711 64 0 +5045338 0 0 +5045366 64 0 +5047558 0 0 +5047585 64 0 +5047726 0 0 +5047750 64 0 +5047899 0 0 +5047908 64 0 +5048219 0 0 +5048237 64 0 +5049433 0 0 +5049446 64 0 +5049579 0 0 +5049625 64 0 +5049732 0 0 +5052543 totRewards = 21 +5052543 128 16 +5052718 0 16 +5052743 0 0 +5052789 128 0 +5052845 0 0 +5052848 128 0 +5052963 0 0 +5053000 128 0 +5053094 0 0 +5053143 128 0 +5053351 0 0 +5053393 128 0 +5053493 0 0 +5053552 128 0 +5053940 0 0 +5053959 128 0 +5054377 0 0 +5054396 128 0 +5054523 0 0 +5054549 128 0 +5054844 0 0 +5054879 128 0 +5055005 0 0 +5055045 128 0 +5055179 0 0 +5055212 128 0 +5055345 0 0 +5055389 128 0 +5055517 0 0 +5055559 128 0 +5055688 0 0 +5055726 128 0 +5055862 0 0 +5055891 128 0 +5056013 0 0 +5056070 128 0 +5056176 0 0 +5056230 128 0 +5056347 0 0 +5056398 128 0 +5056519 0 0 +5056566 128 0 +5056682 0 0 +5056732 128 0 +5056850 0 0 +5056891 128 0 +5057020 0 0 +5057083 128 0 +5057197 0 0 +5057235 128 0 +5057366 0 0 +5057420 128 0 +5057542 0 0 +5057592 128 0 +5057703 0 0 +5057777 128 0 +5057897 0 0 +5057960 128 0 +5058056 0 0 +5061089 totRewards = 22 +5061089 64 8 +5061289 64 0 +5061291 0 0 +5061310 64 0 +5063485 0 0 +5063497 64 0 +5063662 0 0 +5063674 64 0 +5063833 0 0 +5063863 64 0 +5064177 0 0 +5064211 64 0 +5064526 0 0 +5064541 64 0 +5064699 0 0 +5064716 64 0 +5064881 0 0 +5064886 64 0 +5065771 0 0 +5065783 64 0 +5066106 0 0 +5066257 64 0 +5066781 0 0 +5066830 64 0 +5066981 0 0 +5067021 64 0 +5067175 0 0 +5067248 64 0 +5067378 0 0 +5067422 64 0 +5067576 0 0 +5075163 64 0 +5075208 0 0 +5075224 64 0 +5075249 0 0 +5075287 64 0 +5075300 0 0 +5078142 totRewards = 23 +5078142 128 16 +5078258 0 16 +5078302 128 16 +5078342 128 0 +5078345 0 0 +5078381 128 0 +5078596 0 0 +5078633 128 0 +5078843 0 0 +5078862 128 0 +5078967 0 0 +5079003 128 0 +5079951 0 0 +5079980 128 0 +5080260 0 0 +5080281 128 0 +5080419 0 0 +5080466 128 0 +5080587 0 0 +5080629 128 0 +5080761 0 0 +5080802 128 0 +5080927 0 0 +5080975 128 0 +5081092 0 0 +5081138 128 0 +5081251 0 0 +5081293 128 0 +5081556 0 0 +5081592 128 0 +5081697 0 0 +5084357 totRewards = 24 +5084357 64 8 +5084557 64 0 +5084562 0 0 +5084582 64 0 +5087017 0 0 +5087036 64 0 +5087177 0 0 +5087210 64 0 +5087523 0 0 +5087542 64 0 +5087686 0 0 +5087733 64 0 +5087837 0 0 +5087891 64 0 +5088028 0 0 +5088033 64 0 +5088359 0 0 +5088374 64 0 +5088517 0 0 +5092862 totRewards = 25 +5092862 128 16 +5093062 128 0 +5093079 0 0 +5093150 128 0 +5093188 0 0 +5093209 128 0 +5093448 0 0 +5093563 128 0 +5093631 0 0 +5093710 128 0 +5094748 0 0 +5094768 128 0 +5095218 0 0 +5095240 128 0 +5095376 0 0 +5095406 128 0 +5095538 0 0 +5095559 128 0 +5096438 0 0 +5096445 128 0 +5096601 0 0 +5096613 128 0 +5096755 0 0 +5096784 128 0 +5096917 0 0 +5096946 128 0 +5097086 0 0 +5097105 128 0 +5097276 0 0 +5097303 128 0 +5097450 0 0 +5097470 128 0 +5097604 0 0 +5097645 128 0 +5097759 0 0 +5100630 totRewards = 26 +5100630 64 8 +5100819 0 8 +5100829 64 8 +5100830 64 0 +5101055 0 0 +5101068 64 0 +5102287 0 0 +5102294 64 0 +5102437 0 0 +5102446 64 0 +5103424 0 0 +5103442 64 0 +5103578 0 0 +5103612 64 0 +5104060 0 0 +5104071 64 0 +5104375 0 0 +5104400 64 0 +5104529 0 0 +5107046 totRewards = 27 +5107046 128 16 +5107209 0 16 +5107246 0 0 +5107267 128 0 +5107307 0 0 +5107356 128 0 +5107447 0 0 +5107485 128 0 +5107580 0 0 +5107618 128 0 +5107822 0 0 +5107879 128 0 +5107961 0 0 +5108034 128 0 +5108402 0 0 +5108428 128 0 +5108724 0 0 +5108744 128 0 +5108870 0 0 +5108924 128 0 +5109045 0 0 +5109082 128 0 +5109212 0 0 +5109254 128 0 +5109371 0 0 +5109428 128 0 +5109550 0 0 +5109597 128 0 +5109718 0 0 +5109763 128 0 +5109886 0 0 +5109902 128 0 +5110195 0 0 +5110215 128 0 +5110342 0 0 +5110385 128 0 +5110502 0 0 +5110551 128 0 +5110663 0 0 +5110720 128 0 +5110838 0 0 +5110894 128 0 +5111005 0 0 +5111053 128 0 +5111181 0 0 +5111219 128 0 +5111331 0 0 +5111461 128 0 +5111535 0 0 +5111594 128 0 +5111712 0 0 +5111834 128 0 +5111882 0 0 +5111971 128 0 +5112063 0 0 +5114930 totRewards = 28 +5114930 64 8 +5115130 64 0 +5115342 0 0 +5115353 64 0 +5115466 0 0 +5115479 64 0 +5117913 0 0 +5117950 64 0 +5118083 0 0 +5118109 64 0 +5118242 0 0 +5118279 64 0 +5118377 0 0 +5121063 totRewards = 29 +5121063 128 16 +5121263 128 0 +5121284 0 0 +5121321 128 0 +5121531 0 0 +5121579 128 0 +5121675 0 0 +5121685 128 0 +5121914 0 0 +5121958 128 0 +5122058 0 0 +5122093 128 0 +5122352 0 0 +5122359 128 0 +5122485 0 0 +5122515 128 0 +5122943 0 0 +5122971 128 0 +5123104 0 0 +5123135 128 0 +5123279 0 0 +5123289 128 0 +5123418 0 0 +5123458 128 0 +5123589 0 0 +5123625 128 0 +5123756 0 0 +5123809 128 0 +5123944 0 0 +5123994 128 0 +5124120 0 0 +5124169 128 0 +5124287 0 0 +5124333 128 0 +5124454 0 0 +5124473 128 0 +5124906 0 0 +5124936 128 0 +5125070 0 0 +5125110 128 0 +5125219 0 0 +5125272 128 0 +5125381 0 0 +5125430 128 0 +5125545 0 0 +5125607 128 0 +5125722 0 0 +5125814 128 0 +5125902 0 0 +5125984 128 0 +5126082 0 0 +5126164 128 0 +5126250 0 0 +5129004 totRewards = 30 +5129004 64 8 +5129204 64 0 +5131367 0 0 +5131377 64 0 +5132020 0 0 +5132050 64 0 +5132186 0 0 +5132216 64 0 +5132347 0 0 +5132387 64 0 +5132504 0 0 +5132561 64 0 +5132652 0 0 +5135335 totRewards = 31 +5135335 128 16 +5135508 0 16 +5135535 0 0 +5135640 128 0 +5135732 0 0 +5135766 128 0 +5136102 0 0 +5136154 128 0 +5136237 0 0 +5136284 128 0 +5136673 0 0 +5136703 128 0 +5137126 0 0 +5137148 128 0 +5137285 0 0 +5137306 128 0 +5137450 0 0 +5137477 128 0 +5137616 0 0 +5137659 128 0 +5137783 0 0 +5137826 128 0 +5137962 0 0 +5138000 128 0 +5138129 0 0 +5138174 128 0 +5138299 0 0 +5138346 128 0 +5138457 0 0 +5138505 128 0 +5138606 0 0 +5138667 128 0 +5138769 0 0 +5138833 128 0 +5138882 0 0 +5139462 128 0 +5141905 0 0 +5144726 totRewards = 32 +5144726 64 8 +5144926 64 0 +5147101 0 0 +5147127 64 0 +5147279 0 0 +5147299 64 0 +5147604 0 0 +5147640 64 0 +5147763 0 0 +5147786 64 0 +5147925 0 0 +5147955 64 0 +5148080 0 0 +5148143 64 0 +5148214 0 0 +5151111 totRewards = 33 +5151111 128 16 +5151273 0 16 +5151311 0 0 +5151344 128 0 +5151670 0 0 +5151688 128 0 +5151935 0 0 +5151952 128 0 +5152056 0 0 +5152097 128 0 +5152484 0 0 +5152511 128 0 +5152814 0 0 +5152826 128 0 +5152960 0 0 +5153007 128 0 +5153127 0 0 +5153165 128 0 +5153285 0 0 +5153323 128 0 +5153452 0 0 +5153497 128 0 +5153620 0 0 +5153669 128 0 +5153794 0 0 +5153846 128 0 +5153967 0 0 +5154020 128 0 +5154141 0 0 +5154187 128 0 +5154313 0 0 +5154360 128 0 +5154489 0 0 +5154527 128 0 +5154652 0 0 +5154702 128 0 +5154833 0 0 +5154877 128 0 +5155016 0 0 +5155056 128 0 +5155182 0 0 +5155246 128 0 +5155368 0 0 +5155426 128 0 +5155536 0 0 +5155601 128 0 +5155688 0 0 +5158474 totRewards = 34 +5158474 64 8 +5158674 64 0 +5158727 0 0 +5158761 64 0 +5159911 0 0 +5159923 64 0 +5160893 0 0 +5160903 64 0 +5161066 0 0 +5161084 64 0 +5161421 0 0 +5161439 64 0 +5161596 0 0 +5161615 64 0 +5161765 0 0 +5161788 64 0 +5162603 0 0 +5162626 64 0 +5162768 0 0 +5166994 totRewards = 35 +5166994 128 16 +5167136 0 16 +5167194 0 0 +5167204 128 0 +5167391 0 0 +5167411 128 0 +5167529 0 0 +5167569 128 0 +5167669 0 0 +5167684 128 0 +5167770 0 0 +5167808 128 0 +5167905 0 0 +5167957 128 0 +5168206 0 0 +5168217 128 0 +5168342 0 0 +5168369 128 0 +5168809 0 0 +5168840 128 0 +5168968 0 0 +5169002 128 0 +5169134 0 0 +5169159 128 0 +5169295 0 0 +5169332 128 0 +5169458 0 0 +5169504 128 0 +5169624 0 0 +5169671 128 0 +5169796 0 0 +5169842 128 0 +5169962 0 0 +5170008 128 0 +5170127 0 0 +5170167 128 0 +5170295 0 0 +5170342 128 0 +5170465 0 0 +5170518 128 0 +5170617 0 0 +5170685 128 0 +5170792 0 0 +5170855 128 0 +5170967 0 0 +5171038 128 0 +5171144 0 0 +5171212 128 0 +5171289 0 0 +5173934 totRewards = 36 +5173934 64 8 +5174105 0 8 +5174130 64 8 +5174134 64 0 +5175323 0 0 +5175328 64 0 +5176145 0 0 +5176158 64 0 +5176303 0 0 +5176327 64 0 +5176657 0 0 +5176671 64 0 +5176823 0 0 +5176849 64 0 +5176986 0 0 +5177024 64 0 +5177150 0 0 +5177186 64 0 +5177317 0 0 +5177351 64 0 +5177460 0 0 +5180085 totRewards = 37 +5180085 128 16 +5180281 0 16 +5180285 0 0 +5180336 128 0 +5180527 0 0 +5180575 128 0 +5180662 0 0 +5180700 128 0 +5180918 0 0 +5180954 128 0 +5181053 0 0 +5181106 128 0 +5181492 0 0 +5181532 128 0 +5181796 0 0 +5181808 128 0 +5181944 0 0 +5181984 128 0 +5182104 0 0 +5182141 128 0 +5182279 0 0 +5182301 128 0 +5182427 0 0 +5182469 128 0 +5182594 0 0 +5182641 128 0 +5182770 0 0 +5182816 128 0 +5182934 0 0 +5182984 128 0 +5183104 0 0 +5183144 128 0 +5183270 0 0 +5183318 128 0 +5183450 0 0 +5183501 128 0 +5183601 0 0 +5183652 128 0 +5183762 0 0 +5183813 128 0 +5183927 0 0 +5183980 128 0 +5184082 0 0 +5184162 128 0 +5184268 0 0 +5184311 128 0 +5184425 0 0 +5184559 128 0 +5184626 0 0 +5185072 128 0 +5185147 0 0 +5185231 128 0 +5185272 0 0 +5185296 128 0 +5185303 0 0 +5188151 totRewards = 38 +5188151 64 8 +5188332 0 8 +5188350 64 8 +5188351 64 0 +5190520 0 0 +5190537 64 0 +5190865 0 0 +5190895 64 0 +5191213 0 0 +5191231 64 0 +5191381 0 0 +5191404 64 0 +5191556 0 0 +5191573 64 0 +5192075 0 0 +5192099 64 0 +5192965 0 0 +5192984 64 0 +5193154 0 0 +5193167 64 0 +5193500 0 0 +5193536 64 0 +5193666 0 0 +5193714 64 0 +5193793 0 0 +5196578 totRewards = 39 +5196578 128 16 +5196719 0 16 +5196778 0 0 +5196807 128 0 +5197286 0 0 +5197323 128 0 +5197431 0 0 +5197464 128 0 +5197547 0 0 +5197563 128 0 +5197996 0 0 +5198009 128 0 +5198294 0 0 +5198319 128 0 +5198449 0 0 +5198485 128 0 +5198614 0 0 +5198641 128 0 +5198769 0 0 +5198799 128 0 +5198933 0 0 +5198975 128 0 +5199094 0 0 +5199148 128 0 +5199275 0 0 +5199329 128 0 +5199449 0 0 +5199518 128 0 +5199607 0 0 +5199690 128 0 +5199748 0 0 +5203235 totRewards = 40 +5203235 64 8 +5203415 0 8 +5203435 0 0 +5203438 64 0 +5205107 0 0 +5205131 64 0 +5205618 0 0 +5205640 64 0 +5205789 0 0 +5205810 64 0 +5205961 0 0 +5205986 64 0 +5206121 0 0 +5206161 64 0 +5206276 0 0 +5206327 64 0 +5206421 0 0 +5209042 totRewards = 41 +5209042 128 16 +5209223 0 16 +5209242 0 0 +5209294 128 0 +5209472 0 0 +5209519 128 0 +5209608 0 0 +5209656 128 0 +5209867 0 0 +5209908 128 0 +5210005 0 0 +5210057 128 0 +5210438 0 0 +5210467 128 0 +5210751 0 0 +5210780 128 0 +5210900 0 0 +5210941 128 0 +5211065 0 0 +5211087 128 0 +5211230 0 0 +5211258 128 0 +5211393 0 0 +5211444 128 0 +5211563 0 0 +5211607 128 0 +5211729 0 0 +5211770 128 0 +5211893 0 0 +5211940 128 0 +5212057 0 0 +5212095 128 0 +5212221 0 0 +5212270 128 0 +5212388 0 0 +5212429 128 0 +5212552 0 0 +5212601 128 0 +5212747 0 0 +5212781 128 0 +5212909 0 0 +5212955 128 0 +5213071 0 0 +5213126 128 0 +5213223 0 0 +5213294 128 0 +5213369 0 0 +5216038 totRewards = 42 +5216038 64 8 +5216238 64 0 +5216247 0 0 +5216259 64 0 +5218419 0 0 +5218428 64 0 +5218758 0 0 +5218770 64 0 +5218912 0 0 +5218942 64 0 +5219076 0 0 +5219101 64 0 +5219245 0 0 +5219268 64 0 +5219408 0 0 +5219438 64 0 +5220449 0 0 +5220460 64 0 +5220626 0 0 +5220655 64 0 +5221023 0 0 +5221083 64 0 +5221441 0 0 +5221475 64 0 +5221949 0 0 +5221963 64 0 +5222108 0 0 +5222154 64 0 +5222271 0 0 +5222314 64 0 +5222434 0 0 +5226833 totRewards = 43 +5226833 128 16 +5227029 0 16 +5227033 0 0 +5227068 128 0 +5227277 0 0 +5227314 128 0 +5227672 0 0 +5227701 128 0 +5227812 0 0 +5227856 128 0 +5228250 0 0 +5228269 128 0 +5228687 0 0 +5228717 128 0 +5228853 0 0 +5228883 128 0 +5229023 0 0 +5229047 128 0 +5229184 0 0 +5229217 128 0 +5229351 0 0 +5229391 128 0 +5229519 0 0 +5229560 128 0 +5229679 0 0 +5229726 128 0 +5229826 0 0 +5229892 128 0 +5229979 0 0 +5230197 128 0 +5230771 0 0 +5233366 totRewards = 44 +5233366 64 8 +5233551 0 8 +5233566 0 0 +5233570 64 0 +5236348 0 0 +5236382 64 0 +5236501 0 0 +5236547 64 0 +5236653 0 0 +5239276 totRewards = 45 +5239276 128 16 +5239441 0 16 +5239476 0 0 +5239495 128 0 +5239684 0 0 +5239726 128 0 +5239830 0 0 +5239895 128 0 +5240273 0 0 +5240306 128 0 +5240717 0 0 +5240725 128 0 +5240855 0 0 +5240863 128 0 +5241154 0 0 +5241165 128 0 +5241305 0 0 +5241323 128 0 +5241455 0 0 +5241482 128 0 +5241616 0 0 +5241658 128 0 +5241782 0 0 +5241833 128 0 +5241966 0 0 +5242016 128 0 +5242143 0 0 +5242194 128 0 +5242316 0 0 +5242370 128 0 +5242490 0 0 +5242535 128 0 +5242649 0 0 +5242709 128 0 +5242811 0 0 +5242872 128 0 +5242964 0 0 +5243013 128 0 +5243124 0 0 +5243177 128 0 +5243289 0 0 +5243345 128 0 +5243466 0 0 +5243531 128 0 +5243632 0 0 +5243708 128 0 +5243816 0 0 +5243886 128 0 +5243967 0 0 +5247055 totRewards = 46 +5247055 64 8 +5247095 0 8 +5247106 64 8 +5247255 64 0 +5247283 0 0 +5247299 64 0 +5247905 0 0 +5247914 64 0 +5249400 0 0 +5249416 64 0 +5249745 0 0 +5249755 64 0 +5249905 0 0 +5249925 64 0 +5250068 0 0 +5250096 64 0 +5250554 0 0 +5250578 64 0 +5250890 0 0 +5250911 64 0 +5251051 0 0 +5251086 64 0 +5251207 0 0 +5251264 64 0 +5251360 0 0 +5253848 totRewards = 47 +5253848 128 16 +5254029 0 16 +5254048 0 0 +5254082 128 0 +5254276 0 0 +5254321 128 0 +5254415 0 0 +5254473 128 0 +5254688 0 0 +5254718 128 0 +5254821 0 0 +5254886 128 0 +5255267 0 0 +5255294 128 0 +5255721 0 0 +5255756 128 0 +5255882 0 0 +5255919 128 0 +5256059 0 0 +5256087 128 0 +5256223 0 0 +5256256 128 0 +5256381 0 0 +5256422 128 0 +5256552 0 0 +5256592 128 0 +5256711 0 0 +5256753 128 0 +5256878 0 0 +5256917 128 0 +5257042 0 0 +5257080 128 0 +5257207 0 0 +5257262 128 0 +5257366 0 0 +5257424 128 0 +5257525 0 0 +5257585 128 0 +5257691 0 0 +5257749 128 0 +5257859 0 0 +5257942 128 0 +5258054 0 0 +5258082 128 0 +5258211 0 0 +5258290 128 0 +5258369 0 0 +5258430 128 0 +5258531 0 0 +5258621 128 0 +5258643 0 0 +5258681 128 0 +5258722 0 0 +5258805 128 0 +5258896 0 0 +5258967 128 0 +5259053 0 0 +5261742 totRewards = 48 +5261742 64 8 +5261942 64 0 +5264296 0 0 +5264315 64 0 +5264997 0 0 +5265015 64 0 +5265320 0 0 +5265342 64 0 +5265648 0 0 +5265663 64 0 +5267205 0 0 +5267225 64 0 +5267360 0 0 +5267409 64 0 +5267507 0 0 +5270186 totRewards = 49 +5270186 128 16 +5270358 0 16 +5270386 0 0 +5270420 128 0 +5270639 0 0 +5270646 128 0 +5270761 0 0 +5270798 128 0 +5271031 0 0 +5271040 128 0 +5271155 0 0 +5271208 128 0 +5271579 0 0 +5271605 128 0 +5272037 0 0 +5272061 128 0 +5272198 0 0 +5272217 128 0 +5272359 0 0 +5272388 128 0 +5272532 0 0 +5272559 128 0 +5272697 0 0 +5272729 128 0 +5272858 0 0 +5272894 128 0 +5273019 0 0 +5273052 128 0 +5273179 0 0 +5273220 128 0 +5273350 0 0 +5273392 128 0 +5273511 0 0 +5273571 128 0 +5273666 0 0 +5273739 128 0 +5273835 0 0 +5273900 128 0 +5273928 0 0 +5273957 128 0 +5273973 0 0 +5274089 128 0 +5274170 0 0 +5274801 128 0 +5274825 0 0 +5277683 totRewards = 50 +5277683 64 8 +5277883 64 0 +5277903 0 0 +5277906 64 0 +5278381 0 0 +5278392 64 0 +5279198 0 0 +5279207 64 0 +5280021 0 0 +5280054 64 0 +5280388 0 0 +5280417 64 0 +5280565 0 0 +5280604 64 0 +5280742 0 0 +5280757 64 0 +5280917 0 0 +5280927 64 0 +5281087 0 0 +5281096 64 0 +5281246 0 0 +5281271 64 0 +5281422 0 0 +5281430 64 0 +5281916 0 0 +5281955 64 0 +5282063 0 0 +5284584 totRewards = 51 +5284583 128 16 +5284755 0 16 +5284783 0 0 +5284811 128 0 +5284992 0 0 +5285039 128 0 +5285134 0 0 +5285177 128 0 +5285398 0 0 +5285437 128 0 +5285537 0 0 +5285606 128 0 +5285978 0 0 +5286006 128 0 +5286276 0 0 +5286287 128 0 +5286413 0 0 +5286444 128 0 +5286572 0 0 +5286599 128 0 +5286738 0 0 +5286755 128 0 +5286904 0 0 +5286937 128 0 +5287064 0 0 +5287106 128 0 +5287229 0 0 +5287265 128 0 +5287391 0 0 +5287433 128 0 +5287544 0 0 +5287588 128 0 +5287709 0 0 +5287726 128 0 +5287868 0 0 +5287929 128 0 +5288015 0 0 +5290701 totRewards = 52 +5290701 64 8 +5290886 0 8 +5290898 64 8 +5290901 64 0 +5291551 0 0 +5291558 64 0 +5292463 0 0 +5292481 64 0 +5292627 0 0 +5292650 64 0 +5292960 0 0 +5292981 64 0 +5293117 0 0 +5293150 64 0 +5293276 0 0 +5293318 64 0 +5293442 0 0 +5293484 64 0 +5293587 0 0 +5296114 totRewards = 53 +5296114 128 16 +5296276 0 16 +5296314 0 0 +5296336 128 0 +5296507 0 0 +5296515 128 0 +5296673 0 0 +5296710 128 0 +5296948 0 0 +5296964 128 0 +5297059 0 0 +5297113 128 0 +5297498 0 0 +5297528 128 0 +5297810 0 0 +5297822 128 0 +5297954 0 0 +5297985 128 0 +5298116 0 0 +5298140 128 0 +5298278 0 0 +5298300 128 0 +5298435 0 0 +5298474 128 0 +5298606 0 0 +5298639 128 0 +5298778 0 0 +5298824 128 0 +5298944 0 0 +5298994 128 0 +5299098 0 0 +5299160 128 0 +5299257 0 0 +5299340 128 0 +5299402 0 0 +5302379 totRewards = 54 +5302379 64 8 +5302574 0 8 +5302579 0 0 +5302599 64 0 +5303763 0 0 +5303775 64 0 +5304720 0 0 +5304732 64 0 +5304878 0 0 +5304909 64 0 +5305067 0 0 +5305086 64 0 +5305224 0 0 +5305281 64 0 +5305378 0 0 +5305447 64 0 +5305554 0 0 +5306037 64 0 +5306058 0 0 +5306098 64 0 +5306224 0 0 +5306269 64 0 +5306388 0 0 +5309592 totRewards = 55 +5309592 128 16 +5309619 0 16 +5309658 128 16 +5309792 128 0 +5309830 0 0 +5309860 128 0 +5310483 0 0 +5310511 128 0 +5310769 0 0 +5310776 128 0 +5310902 0 0 +5310928 128 0 +5311041 0 0 +5311068 128 0 +5311200 0 0 +5311215 128 0 +5311365 0 0 +5311383 128 0 +5311511 0 0 +5311559 128 0 +5311681 0 0 +5311714 128 0 +5311848 0 0 +5311888 128 0 +5312016 0 0 +5312064 128 0 +5312184 0 0 +5312228 128 0 +5312346 0 0 +5312394 128 0 +5312499 0 0 +5312555 128 0 +5312645 0 0 +5312723 128 0 +5312810 0 0 +5313047 128 0 +5313173 0 0 +5313288 128 0 +5314099 0 0 +5318179 totRewards = 56 +5318179 64 8 +5318377 0 8 +5318379 0 0 +5318406 64 0 +5319133 0 0 +5319139 64 0 +5320503 0 0 +5320519 64 0 +5320656 0 0 +5320693 64 0 +5320811 0 0 +5320850 64 0 +5320959 0 0 +5322418 64 0 +5322432 0 0 +5324991 totRewards = 57 +5324991 128 16 +5325151 0 16 +5325191 0 0 +5325200 128 0 +5325398 0 0 +5325415 128 0 +5325523 0 0 +5325584 128 0 +5325776 0 0 +5325811 128 0 +5325912 0 0 +5325966 128 0 +5326338 0 0 +5326368 128 0 +5327322 0 0 +5327332 128 0 +5327480 0 0 +5327498 128 0 +5327632 0 0 +5327656 128 0 +5327786 0 0 +5327811 128 0 +5327945 0 0 +5327975 128 0 +5328110 0 0 +5328143 128 0 +5328257 0 0 +5328293 128 0 +5328427 0 0 +5328463 128 0 +5328588 0 0 +5328634 128 0 +5328755 0 0 +5328805 128 0 +5328918 0 0 +5328976 128 0 +5329078 0 0 +5329142 128 0 +5329246 0 0 +5329289 128 0 +5329399 0 0 +5332415 totRewards = 58 +5332415 64 8 +5332615 64 0 +5332650 0 0 +5332712 64 0 +5334670 0 0 +5334690 64 0 +5334833 0 0 +5334854 64 0 +5334987 0 0 +5335009 64 0 +5335150 0 0 +5335174 64 0 +5335309 0 0 +5335347 64 0 +5335474 0 0 +5335509 64 0 +5335638 0 0 +5335665 64 0 +5335812 0 0 +5335825 64 0 +5335977 0 0 +5335989 64 0 +5336132 0 0 +5336173 64 0 +5336471 0 0 +5336482 64 0 +5336637 0 0 +5336655 64 0 +5336787 0 0 +5336837 64 0 +5336953 0 0 +5337017 64 0 +5337057 0 0 +5340738 totRewards = 59 +5340738 128 16 +5340938 128 0 +5340949 0 0 +5340986 128 0 +5341337 0 0 +5341353 128 0 +5341754 0 0 +5341807 128 0 +5342184 0 0 +5342202 128 0 +5342624 0 0 +5342638 128 0 +5342771 0 0 +5342796 128 0 +5342931 0 0 +5342953 128 0 +5343088 0 0 +5343118 128 0 +5343246 0 0 +5343281 128 0 +5343408 0 0 +5343455 128 0 +5343575 0 0 +5343622 128 0 +5343735 0 0 +5343781 128 0 +5343895 0 0 +5343926 128 0 +5344050 0 0 +5344088 128 0 +5344204 0 0 +5344259 128 0 +5344368 0 0 +5344422 128 0 +5344528 0 0 +5344586 128 0 +5344693 0 0 +5344746 128 0 +5344845 0 0 +5344903 128 0 +5345007 0 0 +5345065 128 0 +5345170 0 0 +5345260 128 0 +5345346 0 0 +5345389 128 0 +5345506 0 0 +5345566 128 0 +5345688 0 0 +5345752 128 0 +5345862 0 0 +5345936 128 0 +5346010 0 0 +5348749 totRewards = 60 +5348749 64 8 +5348932 0 8 +5348949 0 0 +5348955 64 0 +5349575 0 0 +5349586 64 0 +5351427 0 0 +5351438 64 0 +5351570 0 0 +5351611 64 0 +5351720 0 0 +5351773 64 0 +5351873 0 0 +5351958 64 0 +5351995 0 0 +5354755 totRewards = 61 +5354755 128 16 +5354947 0 16 +5354955 0 0 +5354987 128 0 +5355182 0 0 +5355204 128 0 +5355316 0 0 +5355360 128 0 +5355573 0 0 +5355592 128 0 +5355706 0 0 +5355759 128 0 +5355994 0 0 +5356004 128 0 +5356124 0 0 +5356157 128 0 +5356593 0 0 +5356616 128 0 +5356753 0 0 +5356784 128 0 +5356918 0 0 +5356941 128 0 +5357071 0 0 +5357100 128 0 +5357234 0 0 +5357272 128 0 +5357405 0 0 +5357437 128 0 +5357556 0 0 +5357598 128 0 +5357716 0 0 +5357750 128 0 +5357878 0 0 +5357912 128 0 +5358031 0 0 +5358080 128 0 +5358197 0 0 +5358243 128 0 +5358353 0 0 +5358414 128 0 +5358505 0 0 +5358573 128 0 +5358691 0 0 +5358728 128 0 +5358841 0 0 +5358912 128 0 +5359000 0 0 +5359081 128 0 +5359189 0 0 +5359263 128 0 +5359342 0 0 +5362057 totRewards = 62 +5362057 64 8 +5362240 0 8 +5362255 64 8 +5362256 64 0 +5364529 0 0 +5364535 64 0 +5364841 0 0 +5364872 64 0 +5364998 0 0 +5365030 64 0 +5365160 0 0 +5365197 64 0 +5365325 0 0 +5365363 64 0 +5365479 0 0 +5365550 64 0 +5365625 0 0 +5368308 totRewards = 63 +5368308 128 16 +5368490 0 16 +5368508 0 0 +5368570 128 0 +5368749 0 0 +5368798 128 0 +5368891 0 0 +5368932 128 0 +5369147 0 0 +5369186 128 0 +5369281 0 0 +5369350 128 0 +5369568 0 0 +5369577 128 0 +5369706 0 0 +5369736 128 0 +5370019 0 0 +5370040 128 0 +5370166 0 0 +5370207 128 0 +5370331 0 0 +5370362 128 0 +5370480 0 0 +5370515 128 0 +5370642 0 0 +5370685 128 0 +5370801 0 0 +5370854 128 0 +5370975 0 0 +5371021 128 0 +5371135 0 0 +5371176 128 0 +5371298 0 0 +5371341 128 0 +5371461 0 0 +5371506 128 0 +5371623 0 0 +5371672 128 0 +5371804 0 0 +5371845 128 0 +5371968 0 0 +5372016 128 0 +5372139 0 0 +5372193 128 0 +5372294 0 0 +5372364 128 0 +5372433 0 0 +5375091 totRewards = 64 +5375091 64 8 +5375276 0 8 +5375291 0 0 +5375298 64 0 +5376063 0 0 +5376071 64 0 +5377109 0 0 +5377131 64 0 +5377278 0 0 +5377297 64 0 +5377596 0 0 +5377616 64 0 +5377776 0 0 +5377783 64 0 +5377931 0 0 +5377956 64 0 +5378099 0 0 +5378128 64 0 +5378265 0 0 +5378286 64 0 +5378423 0 0 +5378457 64 0 +5378590 0 0 +5378620 64 0 +5378759 0 0 +5378777 64 0 +5378915 0 0 +5378949 64 0 +5379087 0 0 +5379108 64 0 +5379237 0 0 +5379291 64 0 +5379402 0 0 +5381937 totRewards = 65 +5381937 128 16 +5382101 0 16 +5382137 0 0 +5382157 128 0 +5382344 0 0 +5382383 128 0 +5382489 0 0 +5382551 128 0 +5382890 0 0 +5382957 128 0 +5383047 0 0 +5383059 128 0 +5383692 0 0 +5383711 128 0 +5383842 0 0 +5383868 128 0 +5384010 0 0 +5384025 128 0 +5384166 0 0 +5384194 128 0 +5384329 0 0 +5384367 128 0 +5384495 0 0 +5384532 128 0 +5384659 0 0 +5384698 128 0 +5384814 0 0 +5384873 128 0 +5384972 0 0 +5385039 128 0 +5385156 0 0 +5385830 128 0 +5385930 0 0 +5385971 128 0 +5386091 0 0 +5386139 128 0 +5386269 0 0 +5386303 128 0 +5386430 0 0 +5386492 128 0 +5386634 0 0 +5386673 128 0 +5386800 0 0 +5386861 128 0 +5386988 0 0 +5387051 128 0 +5387172 0 0 +5387215 128 0 +5387328 0 0 +5387378 128 0 +5387504 0 0 +5387542 128 0 +5387661 0 0 +5387707 128 0 +5387832 0 0 +5387887 128 0 +5387992 0 0 +5388068 128 0 +5388145 0 0 +5391087 totRewards = 66 +5391087 64 8 +5391276 0 8 +5391287 0 0 +5391300 64 0 +5393721 0 0 +5393739 64 0 +5393886 0 0 +5393911 64 0 +5394039 0 0 +5394086 64 0 +5394193 0 0 +5394251 64 0 +5394352 0 0 +5394421 64 0 +5394483 0 0 +5398835 totRewards = 67 +5398835 128 16 +5399035 128 0 +5399090 0 0 +5399138 128 0 +5399333 0 0 +5399362 128 0 +5399459 0 0 +5399489 128 0 +5399707 0 0 +5399748 128 0 +5399841 0 0 +5399886 128 0 +5399976 0 0 +5399988 128 0 +5400127 0 0 +5400137 128 0 +5400266 0 0 +5400294 128 0 +5400408 0 0 +5400433 128 0 +5400565 0 0 +5400584 128 0 +5400714 0 0 +5400750 128 0 +5400873 0 0 +5400918 128 0 +5401040 0 0 +5401076 128 0 +5401200 0 0 +5401239 128 0 +5401363 0 0 +5401408 128 0 +5401524 0 0 +5401560 128 0 +5401686 0 0 +5401701 128 0 +5401840 0 0 +5401880 128 0 +5402002 0 0 +5402041 128 0 +5402160 0 0 +5402210 128 0 +5402314 0 0 +5402368 128 0 +5402477 0 0 +5402529 128 0 +5402635 0 0 +5402694 128 0 +5402784 0 0 +5402882 128 0 +5402984 0 0 +5403249 128 0 +5403296 0 0 +5403570 128 0 +5403643 0 0 +5406420 totRewards = 68 +5406420 64 8 +5406620 64 0 +5406622 0 0 +5406646 64 0 +5408106 0 0 +5408123 64 0 +5408592 0 0 +5408611 64 0 +5408758 0 0 +5408784 64 0 +5408937 0 0 +5408952 64 0 +5409108 0 0 +5409132 64 0 +5409264 0 0 +5409287 64 0 +5409437 0 0 +5409465 64 0 +5409612 0 0 +5409642 64 0 +5409782 0 0 +5409811 64 0 +5409948 0 0 +5409995 64 0 +5410134 0 0 +5410195 64 0 +5410275 0 0 +5410788 64 0 +5410832 0 0 +5410875 64 0 +5411017 0 0 +5411024 64 0 +5411168 0 0 +5411200 64 0 +5411349 0 0 +5411375 64 0 +5411527 0 0 +5411550 64 0 +5411699 0 0 +5411717 64 0 +5411889 0 0 +5411901 64 0 +5412053 0 0 +5412087 64 0 +5412224 0 0 +5412300 64 0 +5412325 0 0 +5418269 totRewards = 69 +5418269 128 16 +5418399 0 16 +5418468 128 16 +5418469 128 0 +5418792 0 0 +5418841 128 0 +5419045 0 0 +5419075 128 0 +5419175 0 0 +5419231 128 0 +5419455 0 0 +5419467 128 0 +5419592 0 0 +5419617 128 0 +5419893 0 0 +5419913 128 0 +5420032 0 0 +5420071 128 0 +5420197 0 0 +5420225 128 0 +5420345 0 0 +5420384 128 0 +5420512 0 0 +5420556 128 0 +5420670 0 0 +5420731 128 0 +5420829 0 0 +5420888 128 0 +5420963 0 0 +5424289 totRewards = 70 +5424289 64 8 +5424475 0 8 +5424489 0 0 +5424500 64 0 +5426607 0 0 +5426627 64 0 +5426775 0 0 +5426787 64 0 +5426925 0 0 +5426954 64 0 +5427080 0 0 +5427125 64 0 +5427228 0 0 +5427299 64 0 +5427312 0 0 +5430011 totRewards = 71 +5430011 128 16 +5430211 128 0 +5430218 0 0 +5430279 128 0 +5430439 0 0 +5430494 128 0 +5430831 0 0 +5430874 128 0 +5430987 0 0 +5431072 128 0 +5431125 0 0 +5431138 128 0 +5431424 0 0 +5431445 128 0 +5431713 0 0 +5431718 128 0 +5431857 0 0 +5431895 128 0 +5432009 0 0 +5432044 128 0 +5432169 0 0 +5432192 128 0 +5432313 0 0 +5432348 128 0 +5432462 0 0 +5432505 128 0 +5432618 0 0 +5432665 128 0 +5432775 0 0 +5432826 128 0 +5432934 0 0 +5432983 128 0 +5433094 0 0 +5433142 128 0 +5433251 0 0 +5433307 128 0 +5433418 0 0 +5433475 128 0 +5433577 0 0 +5433640 128 0 +5433722 0 0 +5436443 totRewards = 72 +5436443 64 8 +5436641 0 8 +5436643 0 0 +5436665 64 0 +5438756 0 0 +5438773 64 0 +5439085 0 0 +5439110 64 0 +5439254 0 0 +5439276 64 0 +5439402 0 0 +5439442 64 0 +5439557 0 0 +5439602 64 0 +5439714 0 0 +5439758 64 0 +5439867 0 0 +5442610 totRewards = 73 +5442610 128 16 +5442773 0 16 +5442810 0 0 +5442845 128 0 +5443019 0 0 +5443055 128 0 +5443148 0 0 +5443213 128 0 +5443420 0 0 +5443446 128 0 +5443556 0 0 +5443614 128 0 +5443832 0 0 +5443843 128 0 +5443977 0 0 +5443985 128 0 +5444268 0 0 +5444278 128 0 +5444412 0 0 +5444438 128 0 +5444573 0 0 +5444607 128 0 +5444730 0 0 +5444752 128 0 +5444878 0 0 +5444915 128 0 +5445039 0 0 +5445081 128 0 +5445208 0 0 +5445252 128 0 +5445373 0 0 +5445411 128 0 +5445526 0 0 +5445575 128 0 +5445683 0 0 +5445738 128 0 +5445834 0 0 +5445898 128 0 +5445989 0 0 +5446046 128 0 +5446150 0 0 +5446211 128 0 +5446310 0 0 +5446397 128 0 +5446509 0 0 +5446539 128 0 +5446667 0 0 +5446742 128 0 +5446835 0 0 +5446916 128 0 +5447011 0 0 +5449983 totRewards = 74 +5449983 64 8 +5450178 0 8 +5450183 0 0 +5450197 64 0 +5451724 0 0 +5451733 64 0 +5451888 0 0 +5451900 64 0 +5452222 0 0 +5452249 64 0 +5452387 0 0 +5452422 64 0 +5452547 0 0 +5452586 64 0 +5452713 0 0 +5452736 64 0 +5452874 0 0 +5452894 64 0 +5453373 0 0 +5453386 64 0 +5453527 0 0 +5453564 64 0 +5453680 0 0 +5456274 totRewards = 75 +5456274 128 16 +5456427 0 16 +5456474 0 0 +5456483 128 0 +5456835 0 0 +5456882 128 0 +5457122 0 0 +5457146 128 0 +5457242 0 0 +5457297 128 0 +5457671 0 0 +5457705 128 0 +5457825 0 0 +5457838 128 0 +5457973 0 0 +5457984 128 0 +5458119 0 0 +5458165 128 0 +5458286 0 0 +5458319 128 0 +5458445 0 0 +5458475 128 0 +5458598 0 0 +5458642 128 0 +5458750 0 0 +5458790 128 0 +5458921 0 0 +5458952 128 0 +5459070 0 0 +5459126 128 0 +5459229 0 0 +5459277 128 0 +5459386 0 0 +5459440 128 0 +5459546 0 0 +5459621 128 0 +5459644 0 0 +5459774 128 0 +5459857 0 0 +5459935 128 0 +5460016 0 0 +5460084 128 0 +5460198 0 0 +5460274 128 0 +5460381 0 0 +5460440 128 0 +5460533 0 0 +5460623 128 0 +5460644 0 0 +5460673 128 0 +5460720 0 0 +5460804 128 0 +5460897 0 0 +5463771 totRewards = 76 +5463771 64 8 +5463967 0 8 +5463971 0 0 +5463984 64 0 +5465144 0 0 +5465156 64 0 +5466272 0 0 +5466284 64 0 +5466429 0 0 +5466450 64 0 +5466586 0 0 +5466623 64 0 +5466737 0 0 +5466779 64 0 +5466888 0 0 +5466994 64 0 +5467017 0 0 +5469571 totRewards = 77 +5469571 128 16 +5469749 0 16 +5469771 0 0 +5469802 128 0 +5470003 0 0 +5470052 128 0 +5470145 0 0 +5470209 128 0 +5470409 0 0 +5470438 128 0 +5470546 0 0 +5470607 128 0 +5470707 0 0 +5470712 128 0 +5470840 0 0 +5470857 128 0 +5470975 0 0 +5471008 128 0 +5471431 0 0 +5471463 128 0 +5471582 0 0 +5471623 128 0 +5471750 0 0 +5471786 128 0 +5471912 0 0 +5471953 128 0 +5472074 0 0 +5472124 128 0 +5472240 0 0 +5472288 128 0 +5472400 0 0 +5472447 128 0 +5472565 0 0 +5472611 128 0 +5472720 0 0 +5472769 128 0 +5472877 0 0 +5472931 128 0 +5473037 0 0 +5473101 128 0 +5473200 0 0 +5473258 128 0 +5473363 0 0 +5473448 128 0 +5473567 0 0 +5473676 128 0 +5473728 0 0 +5473804 128 0 +5473818 0 0 +5473862 128 0 +5473886 0 0 +5474162 128 0 +5474248 0 0 +5474304 128 0 +5474401 0 0 +5474460 128 0 +5474573 0 0 +5474639 128 0 +5474740 0 0 +5474828 128 0 +5474922 0 0 +5478644 totRewards = 78 +5478644 64 8 +5478844 64 0 +5480473 0 0 +5480490 64 0 +5480963 0 0 +5480984 64 0 +5481297 0 0 +5481310 64 0 +5481451 0 0 +5481480 64 0 +5481615 0 0 +5481637 64 0 +5481781 0 0 +5481803 64 0 +5481939 0 0 +5481972 64 0 +5482107 0 0 +5482131 64 0 +5483003 0 0 +5483088 64 0 +5483245 0 0 +5483305 64 0 +5483768 0 0 +5483790 64 0 +5483944 0 0 +5483979 64 0 +5484102 0 0 +5484161 64 0 +5484245 0 0 +5490480 totRewards = 79 +5490480 128 16 +5490623 0 16 +5490680 0 0 +5490704 128 0 +5490857 0 0 +5490885 128 0 +5490986 0 0 +5491076 128 0 +5491171 0 0 +5491302 128 0 +5491446 0 0 +5491471 128 0 +5492235 0 0 +5492243 128 0 +5492375 0 0 +5492383 128 0 +5492658 0 0 +5492677 128 0 +5492806 0 0 +5492828 128 0 +5492953 0 0 +5492979 128 0 +5493099 0 0 +5493135 128 0 +5493270 0 0 +5493308 128 0 +5493412 0 0 +5493453 128 0 +5493563 0 0 +5493597 128 0 +5494025 0 0 +5494048 128 0 +5494188 0 0 +5494211 128 0 +5494352 0 0 +5494387 128 0 +5494498 0 0 +5494540 128 0 +5494953 0 0 +5495992 128 0 +5496716 0 0 +5499488 totRewards = 80 +5499488 64 8 +5499679 0 8 +5499688 0 0 +5499710 64 0 +5500315 0 0 +5500332 64 0 +5500857 0 0 +5500864 64 0 +5501651 0 0 +5501666 64 0 +5501815 0 0 +5501849 64 0 +5502352 0 0 +5502374 64 0 +5502719 0 0 +5502754 64 0 +5503075 0 0 +5503101 64 0 +5503248 0 0 +5503270 64 0 +5503413 0 0 +5503429 64 0 +5504778 0 0 +5504816 64 0 +5505289 0 0 +5505322 64 0 +5505451 0 0 +5505486 64 0 +5505953 0 0 +5505978 64 0 +5506147 0 0 +5506170 64 0 +5506329 0 0 +5506353 64 0 +5506421 0 0 +5506469 64 0 +5506778 0 0 +5506805 64 0 +5506931 0 0 +5509416 totRewards = 81 +5509416 128 16 +5509589 0 16 +5509616 0 0 +5509638 128 0 +5509826 0 0 +5509880 128 0 +5509969 0 0 +5510015 128 0 +5510229 0 0 +5510266 128 0 +5510363 0 0 +5510428 128 0 +5510779 0 0 +5510797 128 0 +5511059 0 0 +5511067 128 0 +5511205 0 0 +5511216 128 0 +5511348 0 0 +5511371 128 0 +5511502 0 0 +5511526 128 0 +5511661 0 0 +5511685 128 0 +5511813 0 0 +5511857 128 0 +5511975 0 0 +5512018 128 0 +5512139 0 0 +5512185 128 0 +5512300 0 0 +5512351 128 0 +5512471 0 0 +5512526 128 0 +5512630 0 0 +5512700 128 0 +5512775 0 0 +5519879 128 0 +5520118 0 0 +5533316 totRewards = 82 +5533316 64 8 +5533516 64 0 +5533517 0 0 +5533555 64 0 +5533772 0 0 +5533792 64 0 +5534142 0 0 +5534154 64 0 +5534274 0 0 +5534284 64 0 +5535748 0 0 +5535777 64 0 +5535895 0 0 +5535924 64 0 +5537177 0 0 +5537199 64 0 +5537318 0 0 +5541079 totRewards = 83 +5541079 128 16 +5541254 0 16 +5541279 0 0 +5541288 128 0 +5541512 0 0 +5541545 128 0 +5541630 0 0 +5541678 128 0 +5541890 0 0 +5541913 128 0 +5542025 0 0 +5542054 128 0 +5542143 0 0 +5542156 128 0 +5542425 0 0 +5542445 128 0 +5542562 0 0 +5542589 128 0 +5542859 0 0 +5542881 128 0 +5543002 0 0 +5543039 128 0 +5543160 0 0 +5543199 128 0 +5543325 0 0 +5543358 128 0 +5543481 0 0 +5543518 128 0 +5543635 0 0 +5543679 128 0 +5543800 0 0 +5543813 128 0 +5544386 0 0 +5544420 128 0 +5544542 0 0 +5544566 128 0 +5544692 0 0 +5544736 128 0 +5544842 0 0 +5544889 128 0 +5545012 0 0 +5545052 128 0 +5545166 0 0 +5545223 128 0 +5545336 0 0 +5545393 128 0 +5545489 0 0 +5548223 totRewards = 84 +5548223 64 8 +5548403 0 8 +5548423 0 0 +5548443 64 0 +5550523 0 0 +5550534 64 0 +5550680 0 0 +5550695 64 0 +5550849 0 0 +5550867 64 0 +5551016 0 0 +5551037 64 0 +5551166 0 0 +5551211 64 0 +5551323 0 0 +5551368 64 0 +5551477 0 0 +5551547 64 0 +5551624 0 0 +5554292 totRewards = 85 +5554292 128 16 +5554457 0 16 +5554492 0 0 +5554546 128 0 +5555028 0 0 +5555052 128 0 +5555280 0 0 +5555313 128 0 +5555704 0 0 +5555713 128 0 +5556010 0 0 +5556022 128 0 +5556151 0 0 +5556178 128 0 +5556304 0 0 +5556332 128 0 +5556462 0 0 +5556492 128 0 +5556626 0 0 +5556666 128 0 +5556785 0 0 +5556832 128 0 +5556948 0 0 +5556990 128 0 +5557109 0 0 +5557148 128 0 +5557267 0 0 +5557313 128 0 +5557424 0 0 +5557480 128 0 +5557587 0 0 +5557650 128 0 +5557751 0 0 +5557820 128 0 +5557935 0 0 +5558046 128 0 +5558087 0 0 +5558177 128 0 +5558218 0 0 +5558252 128 0 +5558287 0 0 +5558357 128 0 +5558445 0 0 +5558528 128 0 +5558607 0 0 +5558717 128 0 +5558732 0 0 +5558768 128 0 +5558795 0 0 +5562550 totRewards = 86 +5562550 64 8 +5562750 64 0 +5564913 0 0 +5564928 64 0 +5565074 0 0 +5565091 64 0 +5565240 0 0 +5565267 64 0 +5565390 0 0 +5565429 64 0 +5565542 0 0 +5565606 64 0 +5565707 0 0 +5565809 64 0 +5565853 0 0 +5568670 totRewards = 87 +5568670 128 16 +5568855 0 16 +5568870 0 0 +5568890 128 0 +5569110 0 0 +5569134 128 0 +5569244 0 0 +5569268 128 0 +5569487 0 0 +5569531 128 0 +5569629 0 0 +5569702 128 0 +5570063 0 0 +5570080 128 0 +5570217 0 0 +5570238 128 0 +5570530 0 0 +5570564 128 0 +5570688 0 0 +5570730 128 0 +5570860 0 0 +5570889 128 0 +5571015 0 0 +5571047 128 0 +5571163 0 0 +5571202 128 0 +5571324 0 0 +5571365 128 0 +5571485 0 0 +5571529 128 0 +5571648 0 0 +5571693 128 0 +5571828 0 0 +5571868 128 0 +5571985 0 0 +5572038 128 0 +5572153 0 0 +5572211 128 0 +5572300 0 0 +5572375 128 0 +5572452 0 0 +5575269 totRewards = 88 +5575269 64 8 +5575469 64 0 +5575482 0 0 +5575497 64 0 +5577782 0 0 +5577794 64 0 +5578136 0 0 +5578142 64 0 +5578280 0 0 +5578339 64 0 +5578441 0 0 +5578477 64 0 +5578624 0 0 +5578635 64 0 +5579997 0 0 +5580009 64 0 +5580332 0 0 +5580343 64 0 +5581326 0 0 +5581370 64 0 +5581481 0 0 +5584237 totRewards = 89 +5584237 128 16 +5584409 0 16 +5584437 0 0 +5584492 128 0 +5584822 0 0 +5584857 128 0 +5584977 0 0 +5585004 128 0 +5585112 0 0 +5585128 128 0 +5585225 0 0 +5585268 128 0 +5585662 0 0 +5585688 128 0 +5585976 0 0 +5586003 128 0 +5586128 0 0 +5586170 128 0 +5586293 0 0 +5586327 128 0 +5586459 0 0 +5586502 128 0 +5586629 0 0 +5586677 128 0 +5586791 0 0 +5586838 128 0 +5586942 0 0 +5586999 128 0 +5587063 0 0 +5592356 totRewards = 90 +5592356 64 8 +5592556 64 0 +5592561 0 0 +5592581 64 0 +5594842 0 0 +5594869 64 0 +5595341 0 0 +5595378 64 0 +5595506 0 0 +5595526 64 0 +5595670 0 0 +5595692 64 0 +5595830 0 0 +5595849 64 0 +5596466 0 0 +5596497 64 0 +5596934 0 0 +5596963 64 0 +5597803 0 0 +5597843 64 0 +5597971 0 0 +5598005 64 0 +5598132 0 0 +5598150 64 0 +5598285 0 0 +5598344 64 0 +5598400 0 0 +5600914 totRewards = 91 +5600914 128 16 +5601092 0 16 +5601114 0 0 +5601176 128 0 +5601509 0 0 +5601530 128 0 +5601792 0 0 +5601816 128 0 +5601902 0 0 +5601944 128 0 +5602063 0 0 +5602070 128 0 +5602335 0 0 +5602352 128 0 +5602634 0 0 +5602643 128 0 +5602793 0 0 +5602805 128 0 +5602949 0 0 +5602969 128 0 +5603268 0 0 +5603303 128 0 +5603434 0 0 +5603471 128 0 +5603603 0 0 +5603638 128 0 +5603763 0 0 +5603799 128 0 +5603928 0 0 +5603960 128 0 +5604082 0 0 +5604121 128 0 +5604246 0 0 +5604284 128 0 +5604407 0 0 +5604452 128 0 +5604567 0 0 +5604632 128 0 +5604716 0 0 +5604760 128 0 +5604870 0 0 +5604943 128 0 +5605063 0 0 +5605096 128 0 +5605203 0 0 +5605278 128 0 +5605313 0 0 +5605453 128 0 +5605549 0 0 +5605629 128 0 +5605720 0 0 +5608617 totRewards = 92 +5608617 64 8 +5608813 0 8 +5608817 0 0 +5608829 64 0 +5610943 0 0 +5610961 64 0 +5611607 0 0 +5611635 64 0 +5611766 0 0 +5611802 64 0 +5611924 0 0 +5611971 64 0 +5612070 0 0 +5615107 totRewards = 93 +5615107 128 16 +5615307 128 0 +5615390 0 0 +5615431 128 0 +5615763 0 0 +5615776 128 0 +5616012 0 0 +5616035 128 0 +5616146 0 0 +5616201 128 0 +5616284 0 0 +5616302 128 0 +5616430 0 0 +5616458 128 0 +5616567 0 0 +5616600 128 0 +5616726 0 0 +5616731 128 0 +5617017 0 0 +5617048 128 0 +5617168 0 0 +5617211 128 0 +5617333 0 0 +5617362 128 0 +5617495 0 0 +5617528 128 0 +5617659 0 0 +5617702 128 0 +5617820 0 0 +5617867 128 0 +5617986 0 0 +5618033 128 0 +5618149 0 0 +5618186 128 0 +5618466 0 0 +5618485 128 0 +5618614 0 0 +5618652 128 0 +5618765 0 0 +5618810 128 0 +5618920 0 0 +5618965 128 0 +5619076 0 0 +5619128 128 0 +5619234 0 0 +5619306 128 0 +5619413 0 0 +5619458 128 0 +5619578 0 0 +5619627 128 0 +5619748 0 0 +5619783 128 0 +5619910 0 0 +5619959 128 0 +5620081 0 0 +5620130 128 0 +5620232 0 0 +5620305 128 0 +5620393 0 0 +5620555 128 0 +5620598 0 0 +5621238 128 0 +5621262 0 0 +5621287 128 0 +5621312 0 0 +5624444 totRewards = 94 +5624444 64 8 +5624629 0 8 +5624644 0 0 +5624653 64 0 +5625828 0 0 +5625839 64 0 +5626791 0 0 +5626807 64 0 +5627126 0 0 +5627149 64 0 +5627285 0 0 +5627314 64 0 +5627441 0 0 +5627489 64 0 +5627614 0 0 +5627637 64 0 +5627759 0 0 +5630493 totRewards = 95 +5630493 128 16 +5630678 0 16 +5630693 0 0 +5630822 128 0 +5630934 0 0 +5630939 128 0 +5631056 0 0 +5631100 128 0 +5631451 0 0 +5631499 128 0 +5631884 0 0 +5631913 128 0 +5632026 0 0 +5632054 128 0 +5632335 0 0 +5632361 128 0 +5632485 0 0 +5632518 128 0 +5632645 0 0 +5632679 128 0 +5632804 0 0 +5632843 128 0 +5632970 0 0 +5633021 128 0 +5633146 0 0 +5633191 128 0 +5633305 0 0 +5633359 128 0 +5633455 0 0 +5633516 128 0 +5633624 0 0 +5633663 128 0 +5633790 0 0 +5633840 128 0 +5633945 0 0 +5634006 128 0 +5634112 0 0 +5634153 128 0 +5634272 0 0 +5634326 128 0 +5634427 0 0 +5634517 128 0 +5634652 0 0 +5634688 128 0 +5634714 0 0 +5634737 128 0 +5634799 0 0 +5634870 128 0 +5634962 0 0 +5635118 128 0 +5635172 0 0 +5635251 128 0 +5635325 0 0 +5638851 totRewards = 96 +5638851 64 8 +5639027 0 8 +5639051 0 0 +5639057 64 0 +5641158 0 0 +5641166 64 0 +5641312 0 0 +5641327 64 0 +5641632 0 0 +5641660 64 0 +5641799 0 0 +5641827 64 0 +5641967 0 0 +5642003 64 0 +5642135 0 0 +5642174 64 0 +5642295 0 0 +5642349 64 0 +5642450 0 0 +5642688 64 0 +5643624 0 0 +5648879 totRewards = 97 +5648879 128 16 +5649079 128 0 +5649159 0 0 +5649190 128 0 +5649783 0 0 +5649834 128 0 +5649930 0 0 +5649976 128 0 +5650367 0 0 +5650379 128 0 +5650813 0 0 +5650830 128 0 +5650971 0 0 +5650983 128 0 +5651115 0 0 +5651141 128 0 +5651273 0 0 +5651307 128 0 +5651436 0 0 +5651479 128 0 +5651605 0 0 +5651646 128 0 +5651763 0 0 +5651812 128 0 +5651913 0 0 +5651970 128 0 +5652065 0 0 +5652111 128 0 +5652224 0 0 +5652262 128 0 +5652382 0 0 +5652427 128 0 +5652542 0 0 +5652585 128 0 +5652710 0 0 +5652743 128 0 +5652867 0 0 +5652915 128 0 +5653031 0 0 +5653085 128 0 +5653183 0 0 +5653249 128 0 +5653342 0 0 +5656059 totRewards = 98 +5656059 64 8 +5656235 0 8 +5656259 0 0 +5656259 64 0 +5657885 0 0 +5657895 64 0 +5659034 0 0 +5659055 64 0 +5659196 0 0 +5659226 64 0 +5659351 0 0 +5659384 64 0 +5659509 0 0 +5659577 64 0 +5659599 0 0 +5662554 totRewards = 99 +5662554 128 16 +5662735 0 16 +5662754 0 0 +5662788 128 0 +5662975 0 0 +5663017 128 0 +5663109 0 0 +5663163 128 0 +5663375 0 0 +5663405 128 0 +5663502 0 0 +5663561 128 0 +5663933 0 0 +5663957 128 0 +5664383 0 0 +5664415 128 0 +5664537 0 0 +5664572 128 0 +5664697 0 0 +5664733 128 0 +5664862 0 0 +5664906 128 0 +5665023 0 0 +5665067 128 0 +5665186 0 0 +5665233 128 0 +5665345 0 0 +5665383 128 0 +5665521 0 0 +5665557 128 0 +5665678 0 0 +5665722 128 0 +5665841 0 0 +5665894 128 0 +5666004 0 0 +5666057 128 0 +5666170 0 0 +5666214 128 0 +5666332 0 0 +5666386 128 0 +5666500 0 0 +5666552 128 0 +5666666 0 0 +5666710 128 0 +5666819 0 0 +5666871 128 0 +5666975 0 0 +5667679 128 0 +5667780 0 0 +5667820 128 0 +5667924 0 0 +5667975 128 0 +5668075 0 0 +5668129 128 0 +5668240 0 0 +5668270 128 0 +5668389 0 0 +5668428 128 0 +5668557 0 0 +5668585 128 0 +5668714 0 0 +5668776 128 0 +5668883 0 0 +5673440 totRewards = 100 +5673440 64 8 +5673640 64 0 +5675190 0 0 +5675210 64 0 +5675339 0 0 +5675358 64 0 +5675835 0 0 +5675852 64 0 +5676152 0 0 +5676181 64 0 +5676317 0 0 +5676322 64 0 +5676788 0 0 +5676803 64 0 +5677296 0 0 +5677315 64 0 +5677473 0 0 +5677487 64 0 +5677645 0 0 +5677660 64 0 +5677807 0 0 +5677844 64 0 +5678474 0 0 +5678494 64 0 +5679104 0 0 +5679146 64 0 +5679622 0 0 +5679652 64 0 +5679774 0 0 +5679817 64 0 +5679938 0 0 +5679994 64 0 +5680085 0 0 +5682771 totRewards = 101 +5682771 128 16 +5682971 128 0 +5682977 0 0 +5683060 128 0 +5683375 0 0 +5683438 128 0 +5683560 0 0 +5683593 128 0 +5683703 0 0 +5683721 128 0 +5683815 0 0 +5683845 128 0 +5683965 0 0 +5683982 128 0 +5684243 0 0 +5684256 128 0 +5684680 0 0 +5684711 128 0 +5684843 0 0 +5684866 128 0 +5684992 0 0 +5685027 128 0 +5685150 0 0 +5685197 128 0 +5685319 0 0 +5685370 128 0 +5685483 0 0 +5685531 128 0 +5685652 0 0 +5685700 128 0 +5685822 0 0 +5685873 128 0 +5685989 0 0 +5686038 128 0 +5686141 0 0 +5686197 128 0 +5686300 0 0 +5686344 128 0 +5686456 0 0 +5686512 128 0 +5686612 0 0 +5686685 128 0 +5686815 0 0 +5686827 128 0 +5686975 0 0 +5687022 128 0 +5687140 0 0 +5687204 128 0 +5687320 0 0 +5687399 128 0 +5687416 0 0 +5687432 128 0 +5687474 0 0 +5690822 totRewards = 102 +5690822 64 8 +5691022 64 0 +5691038 0 0 +5691053 64 0 +5691660 0 0 +5691672 64 0 +5693493 0 0 +5693512 64 0 +5693653 0 0 +5693682 64 0 +5693805 0 0 +5693842 64 0 +5693957 0 0 +5694019 64 0 +5694105 0 0 +5697110 totRewards = 103 +5697110 128 16 +5697310 128 0 +5697315 0 0 +5697352 128 0 +5697566 0 0 +5697585 128 0 +5697701 0 0 +5697734 128 0 +5697966 0 0 +5697986 128 0 +5698098 0 0 +5698149 128 0 +5698532 0 0 +5698553 128 0 +5698996 0 0 +5699025 128 0 +5699162 0 0 +5699191 128 0 +5699323 0 0 +5699355 128 0 +5699492 0 0 +5699532 128 0 +5699662 0 0 +5699707 128 0 +5699824 0 0 +5699871 128 0 +5699977 0 0 +5700030 128 0 +5700120 0 0 +5700191 128 0 +5700282 0 0 +5700354 128 0 +5700433 0 0 +5703554 totRewards = 104 +5703554 64 8 +5703739 0 8 +5703754 0 0 +5703766 64 0 +5704513 0 0 +5704522 64 0 +5705904 0 0 +5705924 64 0 +5706065 0 0 +5706088 64 0 +5706232 0 0 +5706255 64 0 +5706393 0 0 +5706423 64 0 +5706553 0 0 +5706587 64 0 +5706710 0 0 +5706757 64 0 +5706875 0 0 +5708022 64 0 +5708875 0 0 +5708897 64 0 +5710073 0 0 +5710134 64 0 +5710212 0 0 +5712808 totRewards = 105 +5712808 128 16 +5712986 0 16 +5713008 0 0 +5713059 128 0 +5713254 0 0 +5713265 128 0 +5713378 0 0 +5713420 128 0 +5713793 0 0 +5713832 128 0 +5714102 0 0 +5714113 128 0 +5714248 0 0 +5714274 128 0 +5714407 0 0 +5714434 128 0 +5714565 0 0 +5714600 128 0 +5714710 0 0 +5714751 128 0 +5714880 0 0 +5714918 128 0 +5715052 0 0 +5715093 128 0 +5715216 0 0 +5715268 128 0 +5715379 0 0 +5715429 128 0 +5715539 0 0 +5715600 128 0 +5715673 0 0 +5715761 128 0 +5715829 0 0 +5719199 totRewards = 106 +5719199 64 8 +5719399 64 0 + + description: state script log run 2 + task_epochs: 4, +, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140061936205264 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +7499807 totRewards = 1 +7499807 64 200 +7500007 64 192 +7500065 0 128 +7500089 64 128 +7500220 0 128 +7500233 64 128 +7500345 0 128 +7500352 64 128 +7500830 0 128 +7500836 64 128 +7500943 0 128 +7500963 64 128 +7501077 0 128 +7501087 64 128 +7501201 0 128 +7501216 64 128 +7501327 0 128 +7501354 64 128 +7501470 0 128 +7501488 64 128 +7501621 0 128 +7501641 64 128 +7501768 0 128 +7501786 64 128 +7501914 0 128 +7501942 64 128 +7502067 0 128 +7502104 64 128 +7502224 0 128 +7502270 64 128 +7502382 0 128 +7502438 64 128 +7502547 0 128 +7502591 64 128 +7502710 0 128 +7502748 64 128 +7502863 0 128 +7502898 64 128 +7503321 0 128 +7503349 64 128 +7503492 0 128 +7503512 64 128 +7503675 0 128 +7503685 64 128 +7503829 0 128 +7503869 64 128 +7504008 0 128 +7504049 64 128 +7504185 0 128 +7504229 64 128 +7504335 0 128 +7504385 64 128 +7504830 0 128 +7504850 64 128 +7505318 0 128 +7505346 64 128 +7505492 0 128 +7505523 64 128 +7505673 0 128 +7505703 64 128 +7505819 0 128 +7509448 totRewards = 2 +7509448 128 144 +7509648 128 128 +7509830 0 0 +7509841 128 0 +7509844 0 0 +7509909 128 0 +7509912 0 0 +7509920 128 0 +7509985 0 0 +7510002 128 0 +7510144 0 0 +7510154 128 0 +7510255 0 0 +7510314 128 0 +7510656 0 0 +7510682 128 0 +7510795 0 0 +7510807 128 0 +7511073 0 0 +7511090 128 0 +7511207 0 0 +7511234 128 0 +7511347 0 0 +7511392 128 0 +7511490 0 0 +7511537 128 0 +7511633 0 0 +7511693 128 0 +7511798 0 0 +7511856 128 0 +7511969 0 0 +7512023 128 0 +7512135 0 0 +7512198 128 0 +7512321 0 0 +7512384 128 0 +7512512 0 0 +7512575 128 0 +7512699 0 0 +7512769 128 0 +7512896 0 0 +7512953 128 0 +7513081 0 0 +7513127 128 0 +7514538 0 0 +7514575 128 0 +7514712 0 0 +7514754 128 0 +7514891 0 0 +7514952 128 0 +7515072 0 0 +7515133 128 0 +7515263 0 0 +7515316 128 0 +7515435 0 0 +7515498 128 0 +7515609 0 0 +7515678 128 0 +7515789 0 0 +7515866 128 0 +7515967 0 0 +7516022 128 0 +7516088 0 0 +7516194 128 0 +7516468 0 0 +7516494 128 0 +7516627 0 0 +7516666 128 0 +7516803 0 0 +7516877 128 0 +7516984 0 0 +7517035 128 0 +7517176 0 0 +7517288 128 0 +7517394 0 0 +7517922 128 0 +7517951 0 0 +7518111 128 0 +7518125 0 0 +7518392 128 0 +7518503 0 0 +7518598 128 0 +7518683 0 0 +7518837 128 0 +7518854 0 0 +7527467 128 0 +7527970 0 0 +7527980 128 0 +7528348 0 0 +7528369 128 0 +7528497 0 0 +7528533 128 0 +7528645 0 0 +7528691 128 0 +7528805 0 0 +7528852 128 0 +7528967 0 0 +7532478 totRewards = 3 +7532478 64 8 +7532678 64 0 +7533690 0 0 +7533700 64 0 +7533836 0 0 +7533851 64 0 +7533973 0 0 +7533982 64 0 +7534275 0 0 +7534294 64 0 +7534429 0 0 +7534443 64 0 +7534775 0 0 +7534796 64 0 +7534938 0 0 +7534974 64 0 +7535284 0 0 +7535321 64 0 +7536105 0 0 +7536111 64 0 +7536280 0 0 +7536300 64 0 +7536473 0 0 +7536500 64 0 +7536664 0 0 +7536677 64 0 +7536833 0 0 +7536885 64 0 +7537004 0 0 +7537062 64 0 +7537189 0 0 +7537254 64 0 +7537988 0 0 +7538049 64 0 +7538195 0 0 +7538227 64 0 +7538413 0 0 +7538435 64 0 +7538599 0 0 +7538659 64 0 +7538784 0 0 +7539025 64 0 +7539161 0 0 +7539189 64 0 +7539338 0 0 +7539407 64 0 +7539582 0 0 +7540550 64 0 +7540819 0 0 +7540833 64 0 +7540992 0 0 +7541002 64 0 +7541166 0 0 +7541175 64 0 +7541333 0 0 +7541372 64 0 +7541521 0 0 +7541562 64 0 +7541687 0 0 +7545424 totRewards = 4 +7545424 128 16 +7545556 0 16 +7545595 128 16 +7545624 128 0 +7545675 0 0 +7545700 128 0 +7545842 0 0 +7545893 128 0 +7546045 0 0 +7546114 128 0 +7546712 0 0 +7546739 128 0 +7546858 0 0 +7546874 128 0 +7546980 0 0 +7547012 128 0 +7547114 0 0 +7547153 128 0 +7547255 0 0 +7547294 128 0 +7547398 0 0 +7547439 128 0 +7547540 0 0 +7547582 128 0 +7547696 0 0 +7547741 128 0 +7547855 0 0 +7547906 128 0 +7548020 0 0 +7548069 128 0 +7548183 0 0 +7548246 128 0 +7548357 0 0 +7548418 128 0 +7548525 0 0 +7548577 128 0 +7548709 0 0 +7548735 128 0 +7549034 0 0 +7549043 128 0 +7549170 0 0 +7549221 128 0 +7549341 0 0 +7549385 128 0 +7549499 0 0 +7549566 128 0 +7549586 0 0 +7549623 128 0 +7549666 0 0 +7549732 128 0 +7549840 0 0 +7549905 128 0 +7550015 0 0 +7550072 128 0 +7550178 0 0 +7550246 128 0 +7550331 0 0 +7550428 128 0 +7550513 0 0 +7550590 128 0 +7550685 0 0 +7550772 128 0 +7550839 0 0 +7550912 128 0 +7551001 0 0 +7551092 128 0 +7551110 0 0 +7551154 128 0 +7551186 0 0 +7551269 128 0 +7551359 0 0 +7551455 128 0 +7551474 0 0 +7551508 128 0 +7551543 0 0 +7554803 totRewards = 5 +7554803 64 8 +7555003 64 0 +7555514 0 0 +7555522 64 0 +7555924 0 0 +7555942 64 0 +7556063 0 0 +7556081 64 0 +7556203 0 0 +7556225 64 0 +7556353 0 0 +7556376 64 0 +7556520 0 0 +7556534 64 0 +7556675 0 0 +7556704 64 0 +7557239 0 0 +7557274 64 0 +7557449 0 0 +7557479 64 0 +7557658 0 0 +7557687 64 0 +7557844 0 0 +7557899 64 0 +7558036 0 0 +7558079 64 0 +7558777 0 0 +7558799 64 0 +7558950 0 0 +7558985 64 0 +7559119 0 0 +7559170 64 0 +7559304 0 0 +7559320 64 0 +7559771 0 0 +7559798 64 0 +7559938 0 0 +7559966 64 0 +7560124 0 0 +7560146 64 0 +7560327 0 0 +7560337 64 0 +7561101 0 0 +7561107 64 0 +7561272 0 0 +7561309 64 0 +7561449 0 0 +7561499 64 0 +7561608 0 0 +7567350 totRewards = 6 +7567350 128 16 +7567534 0 16 +7567550 0 0 +7567605 128 0 +7567921 0 0 +7567954 128 0 +7568061 0 0 +7568094 128 0 +7568302 0 0 +7568359 128 0 +7568446 0 0 +7568464 128 0 +7568594 0 0 +7568619 128 0 +7568723 0 0 +7568763 128 0 +7568863 0 0 +7568898 128 0 +7569021 0 0 +7569058 128 0 +7569166 0 0 +7569215 128 0 +7569320 0 0 +7569370 128 0 +7569487 0 0 +7569540 128 0 +7569660 0 0 +7569715 128 0 +7569826 0 0 +7569886 128 0 +7569997 0 0 +7570055 128 0 +7570166 0 0 +7570228 128 0 +7570323 0 0 +7570390 128 0 +7570486 0 0 +7570544 128 0 +7570652 0 0 +7570705 128 0 +7570817 0 0 +7570880 128 0 +7570994 0 0 +7571053 128 0 +7571170 0 0 +7571231 128 0 +7571323 0 0 +7571403 128 0 +7571464 0 0 +7574231 totRewards = 7 +7574231 64 8 +7574415 0 8 +7574425 64 8 +7574431 64 0 +7574779 0 0 +7574797 64 0 +7575035 0 0 +7575056 64 0 +7575163 0 0 +7575183 64 0 +7575448 0 0 +7575456 64 0 +7575587 0 0 +7575611 64 0 +7575740 0 0 +7575751 64 0 +7576067 0 0 +7576080 64 0 +7576414 0 0 +7576428 64 0 +7576576 0 0 +7576613 64 0 +7576929 0 0 +7576964 64 0 +7577119 0 0 +7577149 64 0 +7577275 0 0 +7577325 64 0 +7577456 0 0 +7577480 64 0 +7577802 0 0 +7577819 64 0 +7577960 0 0 +7577994 64 0 +7578136 0 0 +7578159 64 0 +7578502 0 0 +7578520 64 0 +7579482 0 0 +7579497 64 0 +7579628 0 0 +7579682 64 0 +7579827 0 0 +7579953 64 0 +7580203 0 0 +7580264 64 0 +7580397 0 0 +7580420 64 0 +7580591 0 0 +7580646 64 0 +7580794 0 0 +7580861 64 0 +7580959 0 0 +7581217 64 0 +7581305 0 0 +7581342 64 0 +7581506 0 0 +7581525 64 0 +7581685 0 0 +7581733 64 0 +7581865 0 0 +7586030 totRewards = 8 +7586030 128 16 +7586203 0 16 +7586230 0 0 +7586276 128 0 +7586594 0 0 +7586646 128 0 +7586869 0 0 +7586882 128 0 +7586984 0 0 +7587040 128 0 +7587141 0 0 +7587153 128 0 +7587270 0 0 +7587284 128 0 +7587411 0 0 +7587449 128 0 +7587570 0 0 +7587605 128 0 +7587719 0 0 +7587756 128 0 +7587868 0 0 +7587918 128 0 +7588020 0 0 +7588073 128 0 +7588193 0 0 +7588236 128 0 +7588357 0 0 +7588414 128 0 +7588530 0 0 +7588595 128 0 +7588708 0 0 +7588763 128 0 +7588882 0 0 +7588938 128 0 +7589043 0 0 +7589094 128 0 +7589207 0 0 +7589228 128 0 +7589361 0 0 +7589395 128 0 +7589516 0 0 +7589559 128 0 +7589671 0 0 +7589729 128 0 +7589838 0 0 +7589910 128 0 +7589918 0 0 +7589962 128 0 +7590005 0 0 +7590071 128 0 +7590176 0 0 +7590329 128 0 +7590370 0 0 +7590473 128 0 +7590481 0 0 +7590519 128 0 +7590565 0 0 +7593508 totRewards = 9 +7593508 64 8 +7593703 0 8 +7593708 0 0 +7593718 64 0 +7593939 0 0 +7593957 64 0 +7594730 0 0 +7594744 64 0 +7594863 0 0 +7594890 64 0 +7595020 0 0 +7595030 64 0 +7595169 0 0 +7595174 64 0 +7595653 0 0 +7595670 64 0 +7595828 0 0 +7595841 64 0 +7595986 0 0 +7596013 64 0 +7596162 0 0 +7596199 64 0 +7596330 0 0 +7596379 64 0 +7596506 0 0 +7596524 64 0 +7596672 0 0 +7596684 64 0 +7596853 0 0 +7596873 64 0 +7597016 0 0 +7597070 64 0 +7597351 0 0 +7597375 64 0 +7597514 0 0 +7597545 64 0 +7598031 0 0 +7598062 64 0 +7598180 0 0 +7600753 totRewards = 10 +7600753 128 16 +7600928 0 16 +7600953 0 0 +7600990 128 0 +7601310 0 0 +7601350 128 0 +7601572 0 0 +7601603 128 0 +7601699 0 0 +7601749 128 0 +7602139 0 0 +7602168 128 0 +7602447 0 0 +7602470 128 0 +7602597 0 0 +7602634 128 0 +7602764 0 0 +7602799 128 0 +7602926 0 0 +7602968 128 0 +7603094 0 0 +7603151 128 0 +7603268 0 0 +7603328 128 0 +7603449 0 0 +7603504 128 0 +7603615 0 0 +7603667 128 0 +7603785 0 0 +7603834 128 0 +7603946 0 0 +7604000 128 0 +7604090 0 0 +7604243 128 0 +7604261 0 0 +7604340 128 0 +7604432 0 0 +7604506 128 0 +7604584 0 0 +7604667 128 0 +7604764 0 0 +7604873 128 0 +7604886 0 0 +7604910 128 0 +7604961 0 0 +7608088 totRewards = 11 +7608088 64 8 +7608263 0 8 +7608281 64 8 +7608288 64 0 +7609448 0 0 +7609467 64 0 +7609592 0 0 +7609607 64 0 +7609745 0 0 +7609757 64 0 +7610240 0 0 +7610256 64 0 +7610412 0 0 +7610424 64 0 +7610764 0 0 +7610772 64 0 +7610918 0 0 +7610952 64 0 +7611077 0 0 +7611115 64 0 +7611243 0 0 +7611289 64 0 +7611586 0 0 +7611606 64 0 +7611757 0 0 +7611794 64 0 +7612355 0 0 +7612386 64 0 +7612574 0 0 +7612614 64 0 +7612884 0 0 +7612901 64 0 +7613054 0 0 +7613091 64 0 +7613221 0 0 +7613257 64 0 +7613386 0 0 +7618178 totRewards = 12 +7618178 128 16 +7618307 0 16 +7618378 0 0 +7618396 128 0 +7618712 0 0 +7618752 128 0 +7618860 0 0 +7618907 128 0 +7618984 0 0 +7619030 128 0 +7619120 0 0 +7619158 128 0 +7619270 0 0 +7619285 128 0 +7619414 0 0 +7619429 128 0 +7619552 0 0 +7619584 128 0 +7619716 0 0 +7619727 128 0 +7619858 0 0 +7619880 128 0 +7620005 0 0 +7620054 128 0 +7620174 0 0 +7620222 128 0 +7620341 0 0 +7620397 128 0 +7620509 0 0 +7620586 128 0 +7620743 0 0 +7621246 128 0 +7621352 0 0 +7621407 128 0 +7621506 0 0 +7621630 128 0 +7621695 0 0 +7621754 128 0 +7621880 0 0 +7621924 128 0 +7622044 0 0 +7622121 128 0 +7622225 0 0 +7622291 128 0 +7622376 0 0 +7622477 128 0 +7622496 0 0 +7627198 totRewards = 13 +7627198 64 8 +7627398 64 0 +7627485 0 0 +7627518 64 0 +7627731 0 0 +7627748 64 0 +7628116 0 0 +7628129 64 0 +7628673 0 0 +7628690 64 0 +7629150 0 0 +7629167 64 0 +7629317 0 0 +7629333 64 0 +7629487 0 0 +7629508 64 0 +7629653 0 0 +7629679 64 0 +7629822 0 0 +7629839 64 0 +7630177 0 0 +7630189 64 0 +7630327 0 0 +7630372 64 0 +7630981 0 0 +7631001 64 0 +7631145 0 0 +7631167 64 0 +7631302 0 0 +7631325 64 0 +7631462 0 0 +7631485 64 0 +7631620 0 0 +7631654 64 0 +7631784 0 0 +7631820 64 0 +7632823 0 0 +7632847 64 0 +7632982 0 0 +7633020 64 0 +7633130 0 0 +7633190 64 0 +7633269 0 0 +7636615 totRewards = 14 +7636615 128 16 +7636786 0 16 +7636815 0 0 +7636824 128 0 +7637013 0 0 +7637060 128 0 +7637204 0 0 +7637225 128 0 +7637386 0 0 +7637443 128 0 +7637537 0 0 +7637577 128 0 +7637671 0 0 +7637683 128 0 +7637804 0 0 +7637816 128 0 +7637937 0 0 +7637954 128 0 +7638227 0 0 +7638255 128 0 +7638375 0 0 +7638411 128 0 +7638523 0 0 +7638558 128 0 +7638691 0 0 +7638728 128 0 +7638849 0 0 +7638900 128 0 +7639021 0 0 +7639074 128 0 +7639196 0 0 +7639244 128 0 +7639364 0 0 +7639418 128 0 +7639531 0 0 +7639582 128 0 +7639692 0 0 +7639746 128 0 +7639849 0 0 +7639908 128 0 +7640017 0 0 +7640064 128 0 +7640179 0 0 +7640234 128 0 +7640353 0 0 +7640407 128 0 +7640516 0 0 +7640591 128 0 +7640656 0 0 +7643472 totRewards = 15 +7643472 64 8 +7643672 64 0 +7644135 0 0 +7644143 64 0 +7644273 0 0 +7644285 64 0 +7644681 0 0 +7644691 64 0 +7644821 0 0 +7644835 64 0 +7645128 0 0 +7645141 64 0 +7645287 0 0 +7645300 64 0 +7645452 0 0 +7645462 64 0 +7645617 0 0 +7645632 64 0 +7645772 0 0 +7645801 64 0 +7645932 0 0 +7645969 64 0 +7646102 0 0 +7646129 64 0 +7646634 0 0 +7646657 64 0 +7646790 0 0 +7646833 64 0 +7646939 0 0 +7647007 64 0 +7647074 0 0 +7649822 totRewards = 16 +7649822 128 16 +7650002 0 16 +7650022 0 0 +7650070 128 0 +7650268 0 0 +7650297 128 0 +7650402 0 0 +7650451 128 0 +7650656 0 0 +7650688 128 0 +7650785 0 0 +7650847 128 0 +7651084 0 0 +7651100 128 0 +7651213 0 0 +7651247 128 0 +7651522 0 0 +7651547 128 0 +7651668 0 0 +7651708 128 0 +7651826 0 0 +7651870 128 0 +7651999 0 0 +7652037 128 0 +7652156 0 0 +7652209 128 0 +7652328 0 0 +7652377 128 0 +7652500 0 0 +7652551 128 0 +7652658 0 0 +7652704 128 0 +7652821 0 0 +7652866 128 0 +7652976 0 0 +7653038 128 0 +7653142 0 0 +7653199 128 0 +7653303 0 0 +7653358 128 0 +7653467 0 0 +7653515 128 0 +7653636 0 0 +7653691 128 0 +7653808 0 0 +7653869 128 0 +7653965 0 0 +7654051 128 0 +7654062 0 0 +7654080 128 0 +7654108 0 0 +7656919 totRewards = 17 +7656919 64 8 +7657100 0 8 +7657110 64 8 +7657119 64 0 +7657724 0 0 +7657737 64 0 +7658450 0 0 +7658463 64 0 +7659093 0 0 +7659110 64 0 +7659260 0 0 +7659287 64 0 +7659582 0 0 +7659623 64 0 +7659745 0 0 +7659761 64 0 +7659910 0 0 +7659923 64 0 +7660072 0 0 +7660091 64 0 +7660226 0 0 +7660267 64 0 +7660403 0 0 +7660430 64 0 +7661645 0 0 +7661670 64 0 +7661804 0 0 +7661850 64 0 +7661970 0 0 +7662038 64 0 +7662070 0 0 +7664957 totRewards = 18 +7664957 128 16 +7665116 0 16 +7665157 0 0 +7665163 128 0 +7665372 0 0 +7665381 128 0 +7665492 0 0 +7665545 128 0 +7665745 0 0 +7665785 128 0 +7665876 0 0 +7665942 128 0 +7666304 0 0 +7666340 128 0 +7666456 0 0 +7666472 128 0 +7666601 0 0 +7666620 128 0 +7666750 0 0 +7666789 128 0 +7666909 0 0 +7666951 128 0 +7667074 0 0 +7667107 128 0 +7667238 0 0 +7667279 128 0 +7667398 0 0 +7667454 128 0 +7667578 0 0 +7667628 128 0 +7667753 0 0 +7667813 128 0 +7667918 0 0 +7667983 128 0 +7668082 0 0 +7668137 128 0 +7668242 0 0 +7668288 128 0 +7668398 0 0 +7668454 128 0 +7668559 0 0 +7668614 128 0 +7668722 0 0 +7668772 128 0 +7668880 0 0 +7668945 128 0 +7669001 0 0 +7669091 128 0 +7669177 0 0 +7669492 128 0 +7669523 0 0 +7669608 128 0 +7669694 0 0 +7672486 totRewards = 19 +7672486 64 8 +7672686 64 0 +7672724 0 0 +7672737 64 0 +7673490 0 0 +7673495 64 0 +7673765 0 0 +7673797 64 0 +7674228 0 0 +7674245 64 0 +7674389 0 0 +7674411 64 0 +7674894 0 0 +7674914 64 0 +7675248 0 0 +7675270 64 0 +7675418 0 0 +7675447 64 0 +7675593 0 0 +7675622 64 0 +7675753 0 0 +7675795 64 0 +7675911 0 0 +7675976 64 0 +7676080 0 0 +7676166 64 0 +7676268 0 0 +7676294 64 0 +7676444 0 0 +7676456 64 0 +7676947 0 0 +7676967 64 0 +7677088 0 0 +7679867 totRewards = 20 +7679867 128 16 +7680067 128 0 +7680094 0 0 +7680125 128 0 +7680335 0 0 +7680382 128 0 +7680469 0 0 +7680492 128 0 +7680727 0 0 +7680767 128 0 +7680855 0 0 +7680935 128 0 +7681001 0 0 +7681018 128 0 +7681159 0 0 +7681172 128 0 +7681294 0 0 +7681324 128 0 +7681588 0 0 +7681609 128 0 +7681743 0 0 +7681767 128 0 +7681906 0 0 +7681934 128 0 +7682065 0 0 +7682103 128 0 +7682226 0 0 +7682266 128 0 +7682390 0 0 +7682438 128 0 +7682573 0 0 +7682621 128 0 +7682747 0 0 +7682802 128 0 +7682920 0 0 +7682969 128 0 +7683084 0 0 +7683134 128 0 +7683243 0 0 +7683297 128 0 +7683398 0 0 +7683455 128 0 +7683562 0 0 +7683617 128 0 +7683726 0 0 +7683780 128 0 +7683889 0 0 +7683948 128 0 +7684062 0 0 +7684129 128 0 +7684181 0 0 +7687149 totRewards = 21 +7687149 64 8 +7687334 0 8 +7687349 0 0 +7687368 64 0 +7688422 0 0 +7688431 64 0 +7689388 0 0 +7689395 64 0 +7689548 0 0 +7689570 64 0 +7689719 0 0 +7689739 64 0 +7690071 0 0 +7690094 64 0 +7690236 0 0 +7690275 64 0 +7690577 0 0 +7690608 64 0 +7690748 0 0 +7690779 64 0 +7690941 0 0 +7690955 64 0 +7691854 0 0 +7691868 64 0 +7692034 0 0 +7692075 64 0 +7692226 0 0 +7692246 64 0 +7692396 0 0 +7692425 64 0 +7692575 0 0 +7692615 64 0 +7692744 0 0 +7692793 64 0 +7692916 0 0 +7695979 totRewards = 22 +7695979 128 16 +7696155 0 16 +7696179 0 0 +7696202 128 0 +7696409 0 0 +7696454 128 0 +7696545 0 0 +7696610 128 0 +7696807 0 0 +7696843 128 0 +7696940 0 0 +7697002 128 0 +7697228 0 0 +7697253 128 0 +7697365 0 0 +7697397 128 0 +7697511 0 0 +7697525 128 0 +7697646 0 0 +7697669 128 0 +7697800 0 0 +7697833 128 0 +7697956 0 0 +7697992 128 0 +7698120 0 0 +7698153 128 0 +7698280 0 0 +7698325 128 0 +7698442 0 0 +7698497 128 0 +7698624 0 0 +7698670 128 0 +7698792 0 0 +7698847 128 0 +7698956 0 0 +7699030 128 0 +7699117 0 0 +7699171 128 0 +7699287 0 0 +7699334 128 0 +7699449 0 0 +7699513 128 0 +7699611 0 0 +7699673 128 0 +7699780 0 0 +7699832 128 0 +7699949 0 0 +7700006 128 0 +7700113 0 0 +7700189 128 0 +7700266 0 0 +7703088 totRewards = 23 +7703088 64 8 +7703250 0 8 +7703277 64 8 +7703288 64 0 +7704632 0 0 +7704645 64 0 +7705600 0 0 +7705615 64 0 +7705765 0 0 +7705782 64 0 +7705935 0 0 +7705961 64 0 +7706103 0 0 +7706131 64 0 +7706267 0 0 +7706301 64 0 +7706431 0 0 +7706463 64 0 +7706601 0 0 +7706627 64 0 +7706764 0 0 +7706802 64 0 +7706930 0 0 +7706960 64 0 +7707407 0 0 +7707434 64 0 +7707562 0 0 +7707602 64 0 +7707904 0 0 +7707925 64 0 +7708075 0 0 +7708098 64 0 +7708229 0 0 +7708267 64 0 +7708371 0 0 +7711071 totRewards = 24 +7711071 128 16 +7711271 128 0 +7711287 0 0 +7711335 128 0 +7711541 0 0 +7711554 128 0 +7711669 0 0 +7711743 128 0 +7711797 0 0 +7711821 128 0 +7711918 0 0 +7711963 128 0 +7712057 0 0 +7712115 128 0 +7712350 0 0 +7712367 128 0 +7712487 0 0 +7712521 128 0 +7712797 0 0 +7712815 128 0 +7712933 0 0 +7712969 128 0 +7713089 0 0 +7713123 128 0 +7713252 0 0 +7713285 128 0 +7713398 0 0 +7713450 128 0 +7713560 0 0 +7713617 128 0 +7713738 0 0 +7713793 128 0 +7713912 0 0 +7713974 128 0 +7714078 0 0 +7714139 128 0 +7714242 0 0 +7714298 128 0 +7714402 0 0 +7714450 128 0 +7714556 0 0 +7714619 128 0 +7714715 0 0 +7714786 128 0 +7714871 0 0 +7714940 128 0 +7715030 0 0 +7715110 128 0 +7715204 0 0 +7715820 128 0 +7715841 0 0 +7715880 128 0 +7715896 0 0 +7716042 128 0 +7716050 0 0 +7718859 totRewards = 25 +7718859 64 8 +7719037 0 8 +7719059 0 0 +7719070 64 0 +7720252 0 0 +7720271 64 0 +7721045 0 0 +7721052 64 0 +7721203 0 0 +7721223 64 0 +7721865 0 0 +7721906 64 0 +7722021 0 0 +7722069 64 0 +7722175 0 0 +7724820 totRewards = 26 +7724820 128 16 +7725007 0 16 +7725020 0 0 +7725058 128 0 +7725272 0 0 +7725298 128 0 +7725406 0 0 +7725460 128 0 +7725661 0 0 +7725701 128 0 +7725799 0 0 +7725877 128 0 +7726100 0 0 +7726104 128 0 +7726227 0 0 +7726259 128 0 +7726377 0 0 +7726398 128 0 +7726533 0 0 +7726549 128 0 +7726683 0 0 +7726707 128 0 +7726844 0 0 +7726875 128 0 +7727015 0 0 +7727044 128 0 +7727172 0 0 +7727210 128 0 +7727333 0 0 +7727378 128 0 +7727492 0 0 +7727541 128 0 +7727649 0 0 +7727701 128 0 +7727819 0 0 +7727862 128 0 +7727984 0 0 +7728027 128 0 +7728146 0 0 +7728201 128 0 +7728307 0 0 +7728367 128 0 +7728477 0 0 +7728526 128 0 +7728646 0 0 +7728696 128 0 +7728805 0 0 +7728869 128 0 +7728900 0 0 +7728928 128 0 +7728972 0 0 +7729027 128 0 +7729129 0 0 +7729183 128 0 +7729286 0 0 +7729366 128 0 +7729498 0 0 +7729527 128 0 +7729646 0 0 +7729719 128 0 +7729814 0 0 +7729893 128 0 +7729988 0 0 +7730070 128 0 +7730141 0 0 +7732750 totRewards = 27 +7732750 64 8 +7732939 0 8 +7732950 0 0 +7732966 64 0 +7734138 0 0 +7734147 64 0 +7735096 0 0 +7735122 64 0 +7735434 0 0 +7735464 64 0 +7735589 0 0 +7735614 64 0 +7735744 0 0 +7735773 64 0 +7735913 0 0 +7735933 64 0 +7736087 0 0 +7736097 64 0 +7737351 0 0 +7737358 64 0 +7737527 0 0 +7737563 64 0 +7737905 0 0 +7737973 64 0 +7738060 0 0 +7738711 64 0 +7739104 0 0 +7739144 64 0 +7739275 0 0 +7739310 64 0 +7740248 0 0 +7740276 64 0 +7740402 0 0 +7740424 64 0 +7740623 0 0 +7740657 64 0 +7740921 0 0 +7740929 64 0 +7741081 0 0 +7741115 64 0 +7741257 0 0 +7741299 64 0 +7741393 0 0 +7744012 totRewards = 28 +7744012 128 16 +7744190 0 16 +7744212 0 0 +7744254 128 0 +7744591 0 0 +7744627 128 0 +7744754 0 0 +7744772 128 0 +7744882 0 0 +7744909 128 0 +7745016 0 0 +7745054 128 0 +7745173 0 0 +7745180 128 0 +7745316 0 0 +7745325 128 0 +7745451 0 0 +7745473 128 0 +7745605 0 0 +7745616 128 0 +7745755 0 0 +7745777 128 0 +7745908 0 0 +7745937 128 0 +7746070 0 0 +7746103 128 0 +7746228 0 0 +7746259 128 0 +7746394 0 0 +7746433 128 0 +7746551 0 0 +7746597 128 0 +7746711 0 0 +7746764 128 0 +7746864 0 0 +7746912 128 0 +7747023 0 0 +7747070 128 0 +7747181 0 0 +7747240 128 0 +7747344 0 0 +7747394 128 0 +7747508 0 0 +7747557 128 0 +7747668 0 0 +7747717 128 0 +7747845 0 0 +7747893 128 0 +7748015 0 0 +7748073 128 0 +7748178 0 0 +7748248 128 0 +7748328 0 0 +7751119 totRewards = 29 +7751119 64 8 +7751284 0 8 +7751297 64 8 +7751319 64 0 +7751936 0 0 +7751944 64 0 +7752075 0 0 +7752081 64 0 +7752352 0 0 +7752369 64 0 +7752495 0 0 +7752509 64 0 +7753308 0 0 +7753311 64 0 +7753472 0 0 +7753484 64 0 +7753615 0 0 +7753653 64 0 +7753782 0 0 +7753808 64 0 +7753948 0 0 +7753967 64 0 +7754108 0 0 +7754132 64 0 +7754263 0 0 +7754300 64 0 +7754433 0 0 +7754457 64 0 +7754590 0 0 +7754618 64 0 +7754934 0 0 +7754951 64 0 +7755096 0 0 +7755117 64 0 +7755269 0 0 +7755280 64 0 +7755421 0 0 +7755464 64 0 +7755583 0 0 +7755614 64 0 +7756426 0 0 +7756435 64 0 +7756575 0 0 +7756621 64 0 +7756735 0 0 +7759346 totRewards = 30 +7759346 128 16 +7759546 128 0 +7759735 0 0 +7759828 128 0 +7759895 0 0 +7760019 128 0 +7760549 0 0 +7760573 128 0 +7761183 0 0 +7761278 128 0 +7761837 0 0 +7761971 128 0 +7762397 0 0 +7770968 128 0 +7771508 0 0 +7771516 128 0 +7771520 0 0 +7771594 128 0 +7771670 0 0 +7778279 128 0 +7778726 0 0 +7778810 128 0 +7781612 0 0 +7781679 128 0 +7781859 0 0 +7781952 128 0 +7782647 0 0 +7782660 128 0 +7783611 0 0 +7783695 128 0 +7783820 0 0 +7783904 128 0 +7784028 0 0 +7784715 128 0 +7784748 0 0 +7784815 128 0 +7784963 0 0 +7784972 128 0 +7785128 0 0 +7785171 128 0 +7785323 0 0 +7785332 128 0 +7785458 0 0 +7785567 128 0 +7785644 0 0 +7785652 128 0 +7785984 0 0 +7786006 128 0 +7786181 0 0 +7798709 128 0 +7799137 0 0 +7799197 128 0 +7799717 0 0 +7799733 128 0 +7799853 0 0 +7799891 128 0 +7800003 0 0 +7800048 128 0 +7800153 0 0 +7800200 128 0 +7800302 0 0 +7800347 128 0 +7800452 0 0 +7800500 128 0 +7800618 0 0 +7803661 128 0 +7803970 0 0 +7804004 128 0 +7804144 0 0 +7813162 128 0 +7813218 0 0 +7813406 128 0 +7813806 0 0 +7813875 128 0 +7814107 0 0 +7823391 totRewards = 31 +7823391 64 8 +7823591 64 0 +7823656 0 0 +7823671 64 0 +7823881 0 0 +7823897 64 0 +7826008 0 0 +7826037 64 0 +7827566 0 0 +7827573 64 0 +7828584 0 0 +7828620 64 0 +7828743 0 0 +7834990 totRewards = 32 +7834990 128 16 +7835139 0 16 +7835167 128 16 +7835190 128 0 +7835449 0 0 +7835485 128 0 +7835835 0 0 +7835868 128 0 +7836110 0 0 +7836120 128 0 +7836236 0 0 +7836256 128 0 +7836367 0 0 +7836396 128 0 +7836513 0 0 +7836531 128 0 +7836651 0 0 +7836676 128 0 +7836789 0 0 +7836818 128 0 +7836938 0 0 +7836957 128 0 +7837076 0 0 +7837105 128 0 +7837232 0 0 +7837258 128 0 +7837401 0 0 +7837432 128 0 +7837572 0 0 +7837608 128 0 +7837734 0 0 +7837774 128 0 +7837900 0 0 +7837949 128 0 +7838076 0 0 +7838119 128 0 +7838241 0 0 +7838288 128 0 +7838407 0 0 +7838416 128 0 +7839140 0 0 +7839167 128 0 +7839306 0 0 +7839334 128 0 +7839474 0 0 +7839510 128 0 +7839648 0 0 +7839695 128 0 +7839813 0 0 +7839849 128 0 +7839976 0 0 +7843754 totRewards = 33 +7843754 64 8 +7843954 64 0 +7843967 0 0 +7843973 64 0 +7845978 0 0 +7845984 64 0 +7846131 0 0 +7846155 64 0 +7846469 0 0 +7846491 64 0 +7846622 0 0 +7846657 64 0 +7846788 0 0 +7846799 64 0 +7847249 0 0 +7847271 64 0 +7847410 0 0 +7847455 64 0 +7847541 0 0 +7850856 totRewards = 34 +7850856 128 16 +7851040 0 16 +7851056 0 0 +7851101 128 0 +7851704 0 0 +7851731 128 0 +7851818 0 0 +7851873 128 0 +7851970 0 0 +7851982 128 0 +7852120 0 0 +7852136 128 0 +7852248 0 0 +7852280 128 0 +7852389 0 0 +7852411 128 0 +7852683 0 0 +7852708 128 0 +7852833 0 0 +7852864 128 0 +7852987 0 0 +7853024 128 0 +7853146 0 0 +7853179 128 0 +7853313 0 0 +7853358 128 0 +7853472 0 0 +7853527 128 0 +7853635 0 0 +7853698 128 0 +7853797 0 0 +7853859 128 0 +7853955 0 0 +7854006 128 0 +7854110 0 0 +7854161 128 0 +7854262 0 0 +7854311 128 0 +7854419 0 0 +7854471 128 0 +7854573 0 0 +7854639 128 0 +7854738 0 0 +7854791 128 0 +7854898 0 0 +7854946 128 0 +7855057 0 0 +7855109 128 0 +7855227 0 0 +7855280 128 0 +7855404 0 0 +7855464 128 0 +7855564 0 0 +7855679 128 0 +7855711 0 0 +7858818 totRewards = 35 +7858818 64 8 +7859018 64 0 +7859614 0 0 +7859624 64 0 +7860163 0 0 +7860171 64 0 +7861607 0 0 +7861621 64 0 +7861768 0 0 +7861798 64 0 +7861923 0 0 +7861961 64 0 +7862077 0 0 +7862128 64 0 +7862227 0 0 +7865126 totRewards = 36 +7865126 128 16 +7865323 0 16 +7865326 0 0 +7865400 128 0 +7865601 0 0 +7865621 128 0 +7865723 0 0 +7865770 128 0 +7865984 0 0 +7866016 128 0 +7866108 0 0 +7866176 128 0 +7866543 0 0 +7866580 128 0 +7866846 0 0 +7866872 128 0 +7866999 0 0 +7867032 128 0 +7867154 0 0 +7867201 128 0 +7867325 0 0 +7867359 128 0 +7867483 0 0 +7867533 128 0 +7867646 0 0 +7867703 128 0 +7867828 0 0 +7867875 128 0 +7867993 0 0 +7868049 128 0 +7868165 0 0 +7868226 128 0 +7868323 0 0 +7868378 128 0 +7868473 0 0 +7868524 128 0 +7868631 0 0 +7868678 128 0 +7868784 0 0 +7868845 128 0 +7868939 0 0 +7869007 128 0 +7869106 0 0 +7869153 128 0 +7869260 0 0 +7869319 128 0 +7869430 0 0 +7869482 128 0 +7869593 0 0 +7869658 128 0 +7869757 0 0 +7869825 128 0 +7869914 0 0 +7870005 128 0 +7870057 0 0 +7873030 totRewards = 37 +7873030 64 8 +7873229 0 8 +7873230 0 0 +7873246 64 0 +7873983 0 0 +7874009 64 0 +7875354 0 0 +7875365 64 0 +7875515 0 0 +7875533 64 0 +7875672 0 0 +7875697 64 0 +7875846 0 0 +7875866 64 0 +7875997 0 0 +7876036 64 0 +7876162 0 0 +7876199 64 0 +7876323 0 0 +7876361 64 0 +7876488 0 0 +7876523 64 0 +7876651 0 0 +7876694 64 0 +7876820 0 0 +7876857 64 0 +7877649 0 0 +7877665 64 0 +7877800 0 0 +7877838 64 0 +7877965 0 0 +7878018 64 0 +7878114 0 0 +7881030 totRewards = 38 +7881030 128 16 +7881192 0 16 +7881230 0 0 +7881250 128 0 +7881470 0 0 +7881478 128 0 +7881591 0 0 +7881617 128 0 +7881863 0 0 +7881878 128 0 +7881978 0 0 +7882035 128 0 +7882400 0 0 +7882433 128 0 +7882567 0 0 +7882573 128 0 +7882714 0 0 +7882749 128 0 +7882875 0 0 +7882921 128 0 +7883043 0 0 +7883089 128 0 +7883214 0 0 +7883259 128 0 +7883386 0 0 +7883443 128 0 +7883561 0 0 +7883614 128 0 +7883727 0 0 +7883786 128 0 +7883878 0 0 +7883938 128 0 +7884042 0 0 +7884087 128 0 +7884198 0 0 +7884250 128 0 +7884353 0 0 +7884421 128 0 +7884510 0 0 +7884579 128 0 +7884678 0 0 +7884729 128 0 +7884846 0 0 +7884901 128 0 +7885012 0 0 +7885074 128 0 +7885174 0 0 +7885254 128 0 +7885376 0 0 +7885445 128 0 +7885529 0 0 +7889531 totRewards = 39 +7889531 64 8 +7889731 64 0 +7889761 0 0 +7889764 64 0 +7890353 0 0 +7890374 64 0 +7890499 0 0 +7890505 64 0 +7891707 0 0 +7891730 64 0 +7891877 0 0 +7891911 64 0 +7892050 0 0 +7892082 64 0 +7892211 0 0 +7892240 64 0 +7892367 0 0 +7892404 64 0 +7892531 0 0 +7892563 64 0 +7892695 0 0 +7892722 64 0 +7892868 0 0 +7892883 64 0 +7893208 0 0 +7893218 64 0 +7893348 0 0 +7893404 64 0 +7893488 0 0 +7896150 totRewards = 40 +7896150 128 16 +7896337 0 16 +7896350 0 0 +7896384 128 0 +7896596 0 0 +7896620 128 0 +7896725 0 0 +7896772 128 0 +7896980 0 0 +7897027 128 0 +7897108 0 0 +7897185 128 0 +7897545 0 0 +7897579 128 0 +7897712 0 0 +7897731 128 0 +7897867 0 0 +7897894 128 0 +7898018 0 0 +7898067 128 0 +7898187 0 0 +7898232 128 0 +7898352 0 0 +7898399 128 0 +7898507 0 0 +7898565 128 0 +7898657 0 0 +7898710 128 0 +7898815 0 0 +7898868 128 0 +7898969 0 0 +7899036 128 0 +7899125 0 0 +7899188 128 0 +7899299 0 0 +7899344 128 0 +7899457 0 0 +7899515 128 0 +7899621 0 0 +7899682 128 0 +7899788 0 0 +7899857 128 0 +7899953 0 0 +7900013 128 0 +7900115 0 0 +7900169 128 0 +7900275 0 0 +7900326 128 0 +7900429 0 0 +7900508 128 0 +7900621 0 0 +7900688 128 0 +7900791 0 0 +7900863 128 0 +7900965 0 0 +7901007 128 0 +7901129 0 0 +7901172 128 0 +7901285 0 0 +7901351 128 0 +7901449 0 0 +7901514 128 0 +7901622 0 0 +7901668 128 0 +7901786 0 0 +7901853 128 0 +7901936 0 0 +7902059 128 0 +7902084 0 0 +7902107 128 0 +7902161 0 0 +7902279 128 0 +7902313 0 0 +7902412 128 0 +7902446 0 0 +7902466 128 0 +7902507 0 0 +7902598 128 0 +7902669 0 0 +7905547 totRewards = 41 +7905547 64 8 +7905735 0 8 +7905747 0 0 +7905759 64 0 +7907837 0 0 +7907860 64 0 +7908013 0 0 +7908024 64 0 +7908328 0 0 +7908367 64 0 +7908481 0 0 +7908518 64 0 +7908635 0 0 +7908672 64 0 +7908961 0 0 +7908986 64 0 +7909114 0 0 +7909176 64 0 +7909231 0 0 +7912019 totRewards = 42 +7912019 128 16 +7912212 0 16 +7912219 0 0 +7912264 128 0 +7912454 0 0 +7912500 128 0 +7912588 0 0 +7912638 128 0 +7912841 0 0 +7912888 128 0 +7912974 0 0 +7913041 128 0 +7913413 0 0 +7913441 128 0 +7913699 0 0 +7913724 128 0 +7913853 0 0 +7913892 128 0 +7914005 0 0 +7914050 128 0 +7914171 0 0 +7914219 128 0 +7914337 0 0 +7914389 128 0 +7914507 0 0 +7914563 128 0 +7914681 0 0 +7914727 128 0 +7914842 0 0 +7914893 128 0 +7915001 0 0 +7915035 128 0 +7915167 0 0 +7915171 128 0 +7915299 0 0 +7915335 128 0 +7915457 0 0 +7915495 128 0 +7915616 0 0 +7915664 128 0 +7915808 0 0 +7915834 128 0 +7915970 0 0 +7916001 128 0 +7916121 0 0 +7916177 128 0 +7916274 0 0 +7919172 totRewards = 43 +7919172 64 8 +7919351 0 8 +7919359 64 8 +7919372 64 0 +7920098 0 0 +7920116 64 0 +7921447 0 0 +7921461 64 0 +7921602 0 0 +7921630 64 0 +7921769 0 0 +7921793 64 0 +7921947 0 0 +7921962 64 0 +7922118 0 0 +7922136 64 0 +7922270 0 0 +7922304 64 0 +7922761 0 0 +7922779 64 0 +7922919 0 0 +7922952 64 0 +7923096 0 0 +7923111 64 0 +7923239 0 0 +7923269 64 0 +7924484 0 0 +7927363 totRewards = 44 +7927363 128 16 +7927531 0 16 +7927563 0 0 +7927599 128 0 +7927793 0 0 +7927820 128 0 +7927920 0 0 +7927987 128 0 +7928176 0 0 +7928212 128 0 +7928306 0 0 +7928369 128 0 +7928592 0 0 +7928607 128 0 +7928731 0 0 +7928766 128 0 +7929039 0 0 +7929058 128 0 +7929183 0 0 +7929227 128 0 +7929342 0 0 +7929388 128 0 +7929500 0 0 +7929543 128 0 +7929670 0 0 +7929713 128 0 +7929829 0 0 +7929884 128 0 +7929990 0 0 +7930047 128 0 +7930145 0 0 +7930196 128 0 +7930300 0 0 +7930357 128 0 +7930465 0 0 +7930507 128 0 +7930622 0 0 +7930675 128 0 +7930784 0 0 +7930844 128 0 +7930943 0 0 +7931008 128 0 +7931097 0 0 +7931161 128 0 +7931267 0 0 +7931325 128 0 +7931412 0 0 +7931479 128 0 +7931537 0 0 +7931635 128 0 +7931736 0 0 +7931802 128 0 +7931882 0 0 +7932056 128 0 +7932077 0 0 +7932323 128 0 +7932341 0 0 +7932532 128 0 +7932567 0 0 +7932648 128 0 +7932722 0 0 +7932796 128 0 +7932900 0 0 +7932956 128 0 +7933070 0 0 +7933137 128 0 +7933227 0 0 +7933318 128 0 +7933372 0 0 +7936145 totRewards = 45 +7936145 64 8 +7936331 0 8 +7936345 0 0 +7936351 64 0 +7938670 0 0 +7938678 64 0 +7938832 0 0 +7938847 64 0 +7938994 0 0 +7939027 64 0 +7939141 0 0 +7939184 64 0 +7939299 0 0 +7939351 64 0 +7939445 0 0 +7942321 totRewards = 46 +7942321 128 16 +7942500 0 16 +7942521 0 0 +7942553 128 0 +7942738 0 0 +7942769 128 0 +7942881 0 0 +7942940 128 0 +7943134 0 0 +7943169 128 0 +7943260 0 0 +7943329 128 0 +7943406 0 0 +7943421 128 0 +7943545 0 0 +7943563 128 0 +7943677 0 0 +7943703 128 0 +7944125 0 0 +7944158 128 0 +7944284 0 0 +7944305 128 0 +7944442 0 0 +7944471 128 0 +7944599 0 0 +7944643 128 0 +7944760 0 0 +7944816 128 0 +7944939 0 0 +7944984 128 0 +7945100 0 0 +7945140 128 0 +7945255 0 0 +7945301 128 0 +7945571 0 0 +7945586 128 0 +7945718 0 0 +7945760 128 0 +7945882 0 0 +7945921 128 0 +7946053 0 0 +7946086 128 0 +7946220 0 0 +7946260 128 0 +7946378 0 0 +7946433 128 0 +7946524 0 0 +7946612 128 0 +7946674 0 0 +7949564 totRewards = 47 +7949564 64 8 +7949764 64 0 +7949764 0 0 +7949783 64 0 +7950950 0 0 +7950954 64 0 +7952222 0 0 +7952250 64 0 +7952562 0 0 +7952598 64 0 +7952723 0 0 +7952758 64 0 +7952880 0 0 +7952917 64 0 +7953050 0 0 +7953078 64 0 +7953208 0 0 +7953249 64 0 +7953367 0 0 +7953409 64 0 +7953523 0 0 +7956542 totRewards = 48 +7956542 128 16 +7956715 0 16 +7956742 0 0 +7956753 128 0 +7956970 0 0 +7956992 128 0 +7957107 0 0 +7957183 128 0 +7957352 0 0 +7957394 128 0 +7957491 0 0 +7957533 128 0 +7957780 0 0 +7957798 128 0 +7957913 0 0 +7957946 128 0 +7958058 0 0 +7958090 128 0 +7958212 0 0 +7958231 128 0 +7958357 0 0 +7958393 128 0 +7958511 0 0 +7958556 128 0 +7958677 0 0 +7958711 128 0 +7958833 0 0 +7958875 128 0 +7959005 0 0 +7959060 128 0 +7959173 0 0 +7959226 128 0 +7959332 0 0 +7959383 128 0 +7959499 0 0 +7959552 128 0 +7959658 0 0 +7959717 128 0 +7959818 0 0 +7959877 128 0 +7959959 0 0 +7960024 128 0 +7960140 0 0 +7960205 128 0 +7960301 0 0 +7960365 128 0 +7960469 0 0 +7960524 128 0 +7960599 0 0 +7960686 128 0 +7960810 0 0 +7960851 128 0 +7960962 0 0 +7961027 128 0 +7961117 0 0 +7961204 128 0 +7961295 0 0 +7964706 totRewards = 49 +7964706 64 8 +7964906 64 0 +7966868 0 0 +7966880 64 0 +7967019 0 0 +7967049 64 0 +7967179 0 0 +7967224 64 0 +7967335 0 0 +7967369 64 0 +7967490 0 0 +7967521 64 0 +7967649 0 0 +7967681 64 0 +7967814 0 0 +7967829 64 0 +7968780 0 0 +7968795 64 0 +7968925 0 0 +7968947 64 0 +7969095 0 0 +7969109 64 0 +7969456 0 0 +7969478 64 0 +7969615 0 0 +7969659 64 0 +7969793 0 0 +7969820 64 0 +7969943 0 0 +7969988 64 0 +7970089 0 0 +7970199 64 0 +7970210 0 0 +7972772 totRewards = 50 +7972772 128 16 +7972924 0 16 +7972972 0 0 +7972975 128 0 +7973169 0 0 +7973199 128 0 +7973306 0 0 +7973375 128 0 +7973442 0 0 +7973458 128 0 +7973560 0 0 +7973591 128 0 +7973689 0 0 +7973740 128 0 +7973845 0 0 +7973852 128 0 +7973973 0 0 +7973988 128 0 +7974111 0 0 +7974138 128 0 +7974403 0 0 +7974429 128 0 +7974551 0 0 +7974581 128 0 +7974707 0 0 +7974748 128 0 +7974875 0 0 +7974905 128 0 +7975034 0 0 +7975077 128 0 +7975198 0 0 +7975249 128 0 +7975365 0 0 +7975419 128 0 +7975531 0 0 +7975595 128 0 +7975677 0 0 +7975763 128 0 +7975835 0 0 +7975909 128 0 +7976004 0 0 +7976053 128 0 +7976170 0 0 +7976219 128 0 +7976333 0 0 +7976381 128 0 +7976490 0 0 +7976543 128 0 +7976648 0 0 +7976714 128 0 +7976793 0 0 +7976870 128 0 +7977000 0 0 +7977036 128 0 +7977156 0 0 +7977203 128 0 +7977313 0 0 +7977377 128 0 +7977451 0 0 +7981685 totRewards = 51 +7981685 64 8 +7981885 64 0 +7982588 0 0 +7982597 64 0 +7983005 0 0 +7983015 64 0 +7983943 0 0 +7983946 64 0 +7984103 0 0 +7984115 64 0 +7984423 0 0 +7984436 64 0 +7984579 0 0 +7984609 64 0 +7984738 0 0 +7984769 64 0 +7984903 0 0 +7984939 64 0 +7985073 0 0 +7985101 64 0 +7985231 0 0 +7985272 64 0 +7985729 0 0 +7985747 64 0 +7985888 0 0 +7985924 64 0 +7986047 0 0 +7988662 totRewards = 52 +7988662 128 16 +7988827 0 16 +7988862 0 0 +7988878 128 0 +7989246 0 0 +7989346 128 0 +7991807 0 0 +7991816 128 0 +7991952 0 0 +7991975 128 0 +7992111 0 0 +7992124 128 0 +7992438 0 0 +7992463 128 0 +7992593 0 0 +7992639 128 0 +7992759 0 0 +7992802 128 0 +7992925 0 0 +7992971 128 0 +7993465 0 0 +7993499 128 0 +7993632 0 0 +7993687 128 0 +7993808 0 0 +7993866 128 0 +7993991 0 0 +7994042 128 0 +7994185 0 0 +7994196 128 0 +7994335 0 0 +7994388 128 0 +7994508 0 0 +7994574 128 0 +7995282 0 0 +7995287 128 0 +7995764 0 0 +7995792 128 0 +7995933 0 0 +7995977 128 0 +7996111 0 0 +7996148 128 0 +7996268 0 0 +7996308 128 0 +7996426 0 0 +7996479 128 0 +7996596 0 0 +7996641 128 0 +7996771 0 0 +8003049 128 0 +8003174 0 0 +8012705 128 0 +8012750 0 0 +8012815 128 0 +8013021 0 0 +8013046 128 0 +8013889 0 0 +8013917 128 0 +8014030 0 0 +8014079 128 0 +8014189 0 0 +8014207 128 0 +8014319 0 0 +8014357 128 0 +8014470 0 0 +8014499 128 0 +8014621 0 0 +8014665 128 0 +8014770 0 0 +8014835 128 0 +8014905 0 0 +8018396 totRewards = 53 +8018396 64 8 +8018426 0 8 +8018596 0 0 +8029486 64 0 +8029770 0 0 +8029782 64 0 +8031102 0 0 +8031129 64 0 +8031239 0 0 +8031275 64 0 +8031387 0 0 +8031407 64 0 +8031872 0 0 +8035335 64 0 +8035389 0 0 +8035423 64 0 +8036330 0 0 +8036340 64 0 +8036844 0 0 +8036869 64 0 +8037008 0 0 +8037055 64 0 +8037175 0 0 +8037229 64 0 +8037354 0 0 +8037464 64 0 +8037474 0 0 +8037506 64 0 +8037540 0 0 +8049713 totRewards = 54 +8049713 128 16 +8049913 128 0 +8050505 0 0 +8050526 128 0 +8051015 0 0 +8051041 128 0 +8051141 0 0 +8051158 128 0 +8051416 0 0 +8051437 128 0 +8051560 0 0 +8051581 128 0 +8051855 0 0 +8051871 128 0 +8052000 0 0 +8052022 128 0 +8052139 0 0 +8052167 128 0 +8052305 0 0 +8052329 128 0 +8052466 0 0 +8052493 128 0 +8052619 0 0 +8052656 128 0 +8052774 0 0 +8052811 128 0 +8052924 0 0 +8052965 128 0 +8053087 0 0 +8053103 128 0 +8053224 0 0 +8053249 128 0 +8053366 0 0 +8053395 128 0 +8053517 0 0 +8053547 128 0 +8053678 0 0 +8053717 128 0 +8053852 0 0 +8053873 128 0 +8054015 0 0 +8054053 128 0 +8054193 0 0 +8054221 128 0 +8054373 0 0 +8054400 128 0 +8054531 0 0 +8054567 128 0 +8054690 0 0 +8054743 128 0 +8054853 0 0 +8054910 128 0 +8055035 0 0 +8055094 128 0 +8055216 0 0 +8055413 128 0 +8055504 0 0 +8055572 128 0 +8055618 0 0 +8055718 128 0 +8055755 0 0 +8061519 totRewards = 55 +8061519 64 8 +8061719 64 0 +8061777 0 0 +8061799 64 0 +8063502 0 0 +8063517 64 0 +8064335 0 0 +8064354 64 0 +8064518 0 0 +8064529 64 0 +8065104 0 0 +8065129 64 0 +8065785 0 0 +8077601 totRewards = 56 +8077601 128 16 +8077801 128 0 +8078493 0 0 +8078510 128 0 +8078622 0 0 +8078650 128 0 +8078743 0 0 +8078774 128 0 +8078881 0 0 +8078908 128 0 +8079013 0 0 +8079045 128 0 +8079142 0 0 +8079173 128 0 +8079283 0 0 +8079310 128 0 +8079433 0 0 +8079451 128 0 +8079573 0 0 +8079611 128 0 +8079718 0 0 +8079758 128 0 +8079866 0 0 +8079905 128 0 +8080022 0 0 +8080066 128 0 +8080183 0 0 +8080227 128 0 +8080339 0 0 +8080389 128 0 +8080491 0 0 +8080553 128 0 +8080649 0 0 +8080719 128 0 +8080818 0 0 +8080946 128 0 +8080976 0 0 +8081195 128 0 +8081288 0 0 +8081325 128 0 +8081467 0 0 +8081510 128 0 +8081636 0 0 +8081676 128 0 +8081799 0 0 +8081841 128 0 +8081958 0 0 +8082018 128 0 +8082121 0 0 +8092708 totRewards = 57 +8092708 64 8 +8092908 64 0 +8095791 0 0 +8095819 64 0 +8096103 0 0 +8096113 64 0 +8096566 0 0 +8096612 64 0 +8096710 0 0 +8100081 totRewards = 58 +8100081 128 16 +8100281 128 0 +8100404 0 0 +8100420 128 0 +8100991 0 0 +8101042 128 0 +8101131 0 0 +8101144 128 0 +8101266 0 0 +8101286 128 0 +8101388 0 0 +8101425 128 0 +8101522 0 0 +8101555 128 0 +8101661 0 0 +8101688 128 0 +8101800 0 0 +8101834 128 0 +8101953 0 0 +8101980 128 0 +8102091 0 0 +8102123 128 0 +8102243 0 0 +8102279 128 0 +8102395 0 0 +8102443 128 0 +8102553 0 0 +8102605 128 0 +8102715 0 0 +8102763 128 0 +8102889 0 0 +8102933 128 0 +8103060 0 0 +8103111 128 0 +8103224 0 0 +8103278 128 0 +8103379 0 0 +8103443 128 0 +8103517 0 0 +8103594 128 0 +8103673 0 0 +8103731 128 0 +8103846 0 0 +8103892 128 0 +8103998 0 0 +8104059 128 0 +8104153 0 0 +8104204 128 0 +8104318 0 0 +8104354 128 0 +8104477 0 0 +8104525 128 0 +8104631 0 0 +8104704 128 0 +8104783 0 0 +8108593 totRewards = 59 +8108593 64 8 +8108793 64 0 +8108799 0 0 +8108811 64 0 +8111156 0 0 +8111170 64 0 +8111314 0 0 +8111343 64 0 +8111490 0 0 +8111510 64 0 +8111661 0 0 +8111690 64 0 +8111819 0 0 +8111864 64 0 +8111972 0 0 +8112035 64 0 +8112134 0 0 +8112172 64 0 +8112310 0 0 +8112334 64 0 +8112490 0 0 +8112505 64 0 +8112655 0 0 +8112709 64 0 +8112827 0 0 +8117626 totRewards = 60 +8117626 128 16 +8117820 0 16 +8117826 0 0 +8117853 128 0 +8118305 0 0 +8118321 128 0 +8118555 0 0 +8118585 128 0 +8118702 0 0 +8118719 128 0 +8118837 0 0 +8118852 128 0 +8118967 0 0 +8118993 128 0 +8119114 0 0 +8119139 128 0 +8119261 0 0 +8119287 128 0 +8119405 0 0 +8119440 128 0 +8119556 0 0 +8119597 128 0 +8119716 0 0 +8119756 128 0 +8119872 0 0 +8119918 128 0 +8120035 0 0 +8120086 128 0 +8120199 0 0 +8120246 128 0 +8120351 0 0 +8120409 128 0 +8120503 0 0 +8120552 128 0 +8120659 0 0 +8120715 128 0 +8120828 0 0 +8120875 128 0 +8120988 0 0 +8121041 128 0 +8121145 0 0 +8121214 128 0 +8121281 0 0 +8121380 128 0 +8121399 0 0 +8121411 128 0 +8121433 0 0 +8124531 totRewards = 61 +8124531 64 8 +8124716 0 8 +8124731 0 0 +8124742 64 0 +8126943 0 0 +8126968 64 0 +8127102 0 0 +8127143 64 0 +8127261 0 0 +8127308 64 0 +8127422 0 0 +8127458 64 0 +8127601 0 0 +8127621 64 0 +8127761 0 0 +8127820 64 0 +8127913 0 0 +8127977 64 0 +8128253 0 0 +8131322 totRewards = 62 +8131322 128 16 +8131479 0 16 +8131522 0 0 +8131568 128 0 +8132034 0 0 +8132047 128 0 +8132175 0 0 +8132196 128 0 +8132282 0 0 +8132322 128 0 +8132579 0 0 +8132593 128 0 +8132716 0 0 +8132740 128 0 +8133001 0 0 +8133032 128 0 +8133158 0 0 +8133175 128 0 +8133309 0 0 +8133344 128 0 +8133467 0 0 +8133512 128 0 +8133626 0 0 +8133676 128 0 +8133793 0 0 +8133841 128 0 +8133966 0 0 +8134005 128 0 +8134131 0 0 +8134185 128 0 +8134292 0 0 +8134349 128 0 +8134446 0 0 +8134504 128 0 +8134604 0 0 +8134655 128 0 +8134760 0 0 +8134813 128 0 +8134926 0 0 +8134974 128 0 +8135090 0 0 +8135148 128 0 +8135258 0 0 +8135337 128 0 +8135361 0 0 +8138305 totRewards = 63 +8138305 64 8 +8138458 0 8 +8138475 64 8 +8138505 64 0 +8139198 0 0 +8139210 64 0 +8140671 0 0 +8140689 64 0 +8140842 0 0 +8140861 64 0 +8141008 0 0 +8141038 64 0 +8141176 0 0 +8141220 64 0 +8141349 0 0 +8141402 64 0 +8141509 0 0 +8148584 totRewards = 64 +8148584 128 16 +8148780 0 16 +8148784 0 0 +8148912 128 0 +8149943 0 0 +8149947 128 0 +8150647 0 0 +8150658 128 0 +8151120 0 0 +8151142 128 0 +8151270 0 0 +8151293 128 0 +8151431 0 0 +8151442 128 0 +8151581 0 0 +8151625 128 0 +8151743 0 0 +8151794 128 0 +8151916 0 0 +8151959 128 0 +8152075 0 0 +8152120 128 0 +8152232 0 0 +8152282 128 0 +8152391 0 0 +8152447 128 0 +8152554 0 0 +8152612 128 0 +8152718 0 0 +8152774 128 0 +8152869 0 0 +8152937 128 0 +8153042 0 0 +8153086 128 0 +8153195 0 0 +8153247 128 0 +8153363 0 0 +8153412 128 0 +8153521 0 0 +8153569 128 0 +8153674 0 0 +8153725 128 0 +8153825 0 0 +8157369 128 0 +8157382 0 0 +8169714 totRewards = 65 +8169714 64 8 +8169914 64 0 +8170381 0 0 +8170395 64 0 +8170508 0 0 +8170520 64 0 +8170632 0 0 +8170651 64 0 +8170757 0 0 +8170775 64 0 +8171163 0 0 +8171179 64 0 +8172073 0 0 +8172083 64 0 +8172243 0 0 +8172268 64 0 +8172577 0 0 +8172610 64 0 +8172735 0 0 +8172785 64 0 +8172902 0 0 +8172956 64 0 +8173064 0 0 +8173112 64 0 +8173241 0 0 +8173288 64 0 +8173403 0 0 +8177958 totRewards = 66 +8177958 128 16 +8178158 128 0 +8178197 0 0 +8178221 128 0 +8178553 0 0 +8178574 128 0 +8178686 0 0 +8178731 128 0 +8178793 0 0 +8178838 128 0 +8178950 0 0 +8178969 128 0 +8179080 0 0 +8179096 128 0 +8179207 0 0 +8179235 128 0 +8179342 0 0 +8179366 128 0 +8179481 0 0 +8179504 128 0 +8179624 0 0 +8179649 128 0 +8179771 0 0 +8179811 128 0 +8179930 0 0 +8179965 128 0 +8180087 0 0 +8180128 128 0 +8180239 0 0 +8180287 128 0 +8180403 0 0 +8180451 128 0 +8180556 0 0 +8180612 128 0 +8180705 0 0 +8180761 128 0 +8180863 0 0 +8180909 128 0 +8181022 0 0 +8181084 128 0 +8181173 0 0 +8181238 128 0 +8181342 0 0 +8181391 128 0 +8181495 0 0 +8181555 128 0 +8181656 0 0 +8181729 128 0 +8181782 0 0 +8184908 totRewards = 67 +8184908 64 8 +8185108 64 0 +8185118 0 0 +8185125 64 0 +8186815 0 0 +8186824 64 0 +8187303 0 0 +8187325 64 0 +8187458 0 0 +8187486 64 0 +8187625 0 0 +8187645 64 0 +8187778 0 0 +8187817 64 0 +8188090 0 0 +8188123 64 0 +8188246 0 0 +8188316 64 0 +8188387 0 0 +8191424 totRewards = 68 +8191424 128 16 +8191610 0 16 +8191624 0 0 +8191647 128 0 +8191866 0 0 +8191900 128 0 +8191987 0 0 +8192032 128 0 +8192246 0 0 +8192281 128 0 +8192384 0 0 +8192463 128 0 +8192504 0 0 +8192538 128 0 +8192655 0 0 +8192673 128 0 +8192795 0 0 +8192819 128 0 +8192935 0 0 +8192971 128 0 +8193089 0 0 +8193114 128 0 +8193226 0 0 +8193259 128 0 +8193377 0 0 +8193418 128 0 +8193532 0 0 +8193573 128 0 +8193687 0 0 +8193738 128 0 +8193850 0 0 +8193914 128 0 +8194019 0 0 +8194078 128 0 +8194175 0 0 +8194239 128 0 +8194321 0 0 +8194378 128 0 +8194468 0 0 +8194533 128 0 +8194630 0 0 +8194685 128 0 +8194786 0 0 +8194835 128 0 +8194940 0 0 +8195005 128 0 +8195104 0 0 +8195162 128 0 +8195263 0 0 +8195324 128 0 +8195424 0 0 +8195480 128 0 +8195577 0 0 +8195643 128 0 +8195723 0 0 +8195795 128 0 +8195897 0 0 +8195945 128 0 +8196058 0 0 +8196114 128 0 +8196227 0 0 +8196350 128 0 +8196369 0 0 +8199703 totRewards = 69 +8199703 64 8 +8199885 0 8 +8199903 0 0 +8199913 64 0 +8200647 0 0 +8200655 64 0 +8201347 0 0 +8201359 64 0 +8201635 0 0 +8201662 64 0 +8202120 0 0 +8202138 64 0 +8202274 0 0 +8202306 64 0 +8202442 0 0 +8202473 64 0 +8202596 0 0 +8202642 64 0 +8202750 0 0 +8202800 64 0 +8202908 0 0 +8202947 64 0 +8203076 0 0 +8203126 64 0 +8203231 0 0 +8206243 totRewards = 70 +8206243 128 16 +8206443 128 0 +8206484 0 0 +8206528 128 0 +8206896 0 0 +8206917 128 0 +8207037 0 0 +8207066 128 0 +8207170 0 0 +8207193 128 0 +8207325 0 0 +8207343 128 0 +8207470 0 0 +8207506 128 0 +8207622 0 0 +8207660 128 0 +8207791 0 0 +8207822 128 0 +8207933 0 0 +8207984 128 0 +8208088 0 0 +8208159 128 0 +8208267 0 0 +8208314 128 0 +8208423 0 0 +8208483 128 0 +8208525 0 0 +8208546 128 0 +8208576 0 0 +8208645 128 0 +8208729 0 0 +8208789 128 0 +8208875 0 0 +8208935 128 0 +8209035 0 0 +8209090 128 0 +8209190 0 0 +8209250 128 0 +8209354 0 0 +8209413 128 0 +8209516 0 0 +8209588 128 0 +8209656 0 0 +8209756 128 0 +8209828 0 0 +8213075 totRewards = 71 +8213075 64 8 +8213257 0 8 +8213264 64 8 +8213275 64 0 +8213998 0 0 +8214014 64 0 +8214422 0 0 +8214434 64 0 +8214718 0 0 +8214728 64 0 +8215513 0 0 +8215534 64 0 +8215678 0 0 +8215705 64 0 +8216025 0 0 +8216049 64 0 +8216185 0 0 +8216226 64 0 +8216343 0 0 +8216389 64 0 +8216501 0 0 +8216551 64 0 +8216650 0 0 +8219650 totRewards = 72 +8219650 128 16 +8219802 0 16 +8219850 0 0 +8219880 128 0 +8220487 0 0 +8220503 128 0 +8220604 0 0 +8220653 128 0 +8220755 0 0 +8220765 128 0 +8220898 0 0 +8220913 128 0 +8221031 0 0 +8221071 128 0 +8221341 0 0 +8221378 128 0 +8221500 0 0 +8221542 128 0 +8221660 0 0 +8221708 128 0 +8221826 0 0 +8221879 128 0 +8221994 0 0 +8222048 128 0 +8222163 0 0 +8222213 128 0 +8222331 0 0 +8222383 128 0 +8222488 0 0 +8222558 128 0 +8222645 0 0 +8222701 128 0 +8222803 0 0 +8222867 128 0 +8222969 0 0 +8223030 128 0 +8223127 0 0 +8223184 128 0 +8223287 0 0 +8223341 128 0 +8223445 0 0 +8223499 128 0 +8223600 0 0 +8223678 128 0 +8223724 0 0 +8223807 128 0 +8223886 0 0 +8223978 128 0 +8224064 0 0 +8224122 128 0 +8224238 0 0 +8224295 128 0 +8224393 0 0 +8224469 128 0 +8224573 0 0 +8224646 128 0 +8224720 0 0 +8227852 totRewards = 73 +8227852 64 8 +8228014 0 8 +8228041 64 8 +8228052 64 0 +8229493 0 0 +8229499 64 0 +8229639 0 0 +8229644 64 0 +8230119 0 0 +8230133 64 0 +8230285 0 0 +8230301 64 0 +8230449 0 0 +8230472 64 0 +8230614 0 0 +8230640 64 0 +8230776 0 0 +8230826 64 0 +8230944 0 0 +8231006 64 0 +8231120 0 0 +8231159 64 0 +8231283 0 0 +8231342 64 0 +8231437 0 0 +8236228 totRewards = 74 +8236228 128 16 +8236363 0 16 +8236422 128 16 +8236428 128 0 +8237434 0 0 +8237455 128 0 +8237565 0 0 +8237590 128 0 +8237710 0 0 +8237720 128 0 +8237851 0 0 +8237873 128 0 +8237996 0 0 +8238028 128 0 +8238142 0 0 +8238173 128 0 +8238296 0 0 +8238317 128 0 +8238453 0 0 +8238479 128 0 +8238615 0 0 +8238640 128 0 +8238767 0 0 +8238803 128 0 +8238925 0 0 +8238966 128 0 +8239092 0 0 +8239131 128 0 +8239255 0 0 +8239300 128 0 +8239414 0 0 +8239466 128 0 +8239578 0 0 +8239630 128 0 +8239736 0 0 +8239788 128 0 +8239904 0 0 +8239964 128 0 +8240057 0 0 +8240098 128 0 +8240191 0 0 +8240262 128 0 +8240351 0 0 +8240412 128 0 +8240522 0 0 +8240586 128 0 +8240686 0 0 +8250887 totRewards = 75 +8250887 64 8 +8251087 64 0 +8251130 0 0 +8251166 64 0 +8251225 0 0 +8251239 64 0 +8253956 0 0 +8253968 64 0 +8254283 0 0 +8254307 64 0 +8254440 0 0 +8254469 64 0 +8254599 0 0 +8254639 64 0 +8254771 0 0 +8254809 64 0 +8254960 0 0 +8254970 64 0 +8255117 0 0 +8255153 64 0 +8255261 0 0 +8255323 64 0 +8255449 0 0 +8255459 64 0 +8255600 0 0 +8255655 64 0 +8255745 0 0 +8279322 totRewards = 76 +8279322 128 16 +8279522 128 0 +8279579 0 0 +8279617 128 0 +8279830 0 0 +8279841 128 0 +8279959 0 0 +8279983 128 0 +8280196 0 0 +8280230 128 0 +8280339 0 0 +8280349 128 0 +8280588 0 0 +8280618 128 0 +8280738 0 0 +8280751 128 0 +8281031 0 0 +8281076 128 0 +8281187 0 0 +8281232 128 0 +8281357 0 0 +8281390 128 0 +8281518 0 0 +8281555 128 0 +8281679 0 0 +8281739 128 0 +8281854 0 0 +8281917 128 0 +8282025 0 0 +8282088 128 0 +8282196 0 0 +8282283 128 0 +8282378 0 0 +8282440 128 0 +8282554 0 0 +8282599 128 0 +8282719 0 0 +8282763 128 0 +8282899 0 0 +8282967 128 0 +8283097 0 0 +8283149 128 0 +8283279 0 0 +8283363 128 0 +8283464 0 0 +8283516 128 0 +8283666 0 0 +8283703 128 0 +8283824 0 0 +8283886 128 0 +8283996 0 0 +8284062 128 0 +8284182 0 0 +8284252 128 0 +8284365 0 0 +8284448 128 0 +8284541 0 0 +8284598 128 0 +8284719 0 0 +8286738 128 0 +8286867 0 0 +8290340 totRewards = 77 +8290339 64 8 +8290540 64 0 +8290590 0 0 +8290601 64 0 +8291851 0 0 +8291862 64 0 +8292282 0 0 +8292292 64 0 +8292432 0 0 +8292444 64 0 +8292585 0 0 +8292603 64 0 +8292743 0 0 +8292767 64 0 +8292903 0 0 +8292929 64 0 +8293055 0 0 +8293084 64 0 +8293206 0 0 +8293239 64 0 +8293362 0 0 +8293378 64 0 +8293522 0 0 +8293538 64 0 +8293676 0 0 +8293703 64 0 +8293837 0 0 +8293860 64 0 +8293983 0 0 +8294017 64 0 +8294140 0 0 +8294168 64 0 +8294299 0 0 +8294324 64 0 +8294438 0 0 +8294463 64 0 +8294577 0 0 +8294624 64 0 +8294933 0 0 +8294971 64 0 +8295097 0 0 +8295149 64 0 +8295259 0 0 +8295316 64 0 +8295411 0 0 +8312427 totRewards = 78 +8312427 128 16 +8312443 0 16 +8312507 128 16 +8312627 128 0 +8312634 0 0 +8312721 128 0 +8312796 0 0 +8312819 128 0 +8312837 0 0 +8312909 128 0 +8313026 0 0 +8313041 128 0 +8313944 0 0 +8313963 128 0 +8314082 0 0 +8314103 128 0 +8314226 0 0 +8314245 128 0 +8314359 0 0 +8314390 128 0 +8314507 0 0 +8314538 128 0 +8314658 0 0 +8314689 128 0 +8314800 0 0 +8314839 128 0 +8314965 0 0 +8315010 128 0 +8315129 0 0 +8315179 128 0 +8315284 0 0 +8315342 128 0 +8315446 0 0 +8315500 128 0 +8315605 0 0 +8315662 128 0 +8315773 0 0 +8315790 128 0 +8316217 0 0 +8316234 128 0 +8316371 0 0 +8316406 128 0 +8316539 0 0 +8316561 128 0 +8316712 0 0 +8316732 128 0 +8316876 0 0 +8316902 128 0 +8317031 0 0 +8317071 128 0 +8317194 0 0 +8317254 128 0 +8317355 0 0 +8324400 totRewards = 79 +8324400 64 8 +8324595 0 8 +8324600 0 0 +8324630 64 0 +8325107 0 0 +8325130 64 0 +8328538 0 0 +8328562 64 0 +8328718 0 0 +8328727 64 0 +8330048 0 0 +8330059 64 0 +8330437 0 0 +8330462 64 0 +8330627 0 0 +8330639 64 0 +8330802 0 0 +8330829 64 0 +8330948 0 0 +8331033 64 0 +8331042 0 0 +8336747 totRewards = 80 +8336747 128 16 +8336947 128 0 +8337131 0 0 +8337170 128 0 +8337664 0 0 +8337671 128 0 +8337778 0 0 +8337808 128 0 +8337916 0 0 +8337946 128 0 +8338049 0 0 +8338083 128 0 +8338180 0 0 +8338220 128 0 +8338330 0 0 +8338363 128 0 +8338466 0 0 +8338506 128 0 +8338617 0 0 +8338661 128 0 +8338767 0 0 +8338812 128 0 +8338932 0 0 +8338983 128 0 +8339098 0 0 +8339157 128 0 +8339270 0 0 +8339332 128 0 +8339452 0 0 +8339515 128 0 +8339635 0 0 +8339686 128 0 +8339806 0 0 +8339853 128 0 +8339969 0 0 +8339993 128 0 +8340265 0 0 +8340281 128 0 +8340408 0 0 +8340456 128 0 +8340569 0 0 +8340613 128 0 +8340723 0 0 +8340772 128 0 +8340884 0 0 +8340936 128 0 +8341039 0 0 +8341088 128 0 +8341198 0 0 +8341257 128 0 +8341365 0 0 +8341425 128 0 +8341533 0 0 +8341600 128 0 +8341701 0 0 +8341774 128 0 +8341866 0 0 +8341940 128 0 +8342058 0 0 +8342106 128 0 +8342187 0 0 +8342856 128 0 +8342930 0 0 +8343078 128 0 +8345964 0 0 +8350233 totRewards = 81 +8350233 64 8 +8350422 0 8 +8350428 64 8 +8350433 64 0 +8352812 0 0 +8352825 64 0 +8352980 0 0 +8352999 64 0 +8353143 0 0 +8353172 64 0 +8353304 0 0 +8353343 64 0 +8353469 0 0 +8353500 64 0 +8353628 0 0 +8353650 64 0 +8353797 0 0 +8353820 64 0 +8353968 0 0 +8353982 64 0 +8354299 0 0 +8354323 64 0 +8354453 0 0 +8354512 64 0 +8354600 0 0 +8357863 totRewards = 82 +8357863 128 16 +8358029 0 16 +8358063 0 0 +8358127 128 0 +8358328 0 0 +8358343 128 0 +8358444 0 0 +8358485 128 0 +8358833 0 0 +8358894 128 0 +8359134 0 0 +8359143 128 0 +8359253 0 0 +8359289 128 0 +8359394 0 0 +8359423 128 0 +8359551 0 0 +8359560 128 0 +8359686 0 0 +8359723 128 0 +8359837 0 0 +8359875 128 0 +8360005 0 0 +8360039 128 0 +8360163 0 0 +8360213 128 0 +8360331 0 0 +8360382 128 0 +8360496 0 0 +8360561 128 0 +8360673 0 0 +8360742 128 0 +8360851 0 0 +8360922 128 0 +8361023 0 0 +8361095 128 0 +8361171 0 0 +8361409 128 0 +8361510 0 0 +8361580 128 0 +8361657 0 0 +8361731 128 0 +8361838 0 0 +8361896 128 0 +8361991 0 0 +8362067 128 0 +8362161 0 0 +8362249 128 0 +8362257 0 0 +8366125 totRewards = 83 +8366125 64 8 +8366325 64 0 +8366348 0 0 +8366371 64 0 +8368634 0 0 +8368647 64 0 +8368798 0 0 +8368820 64 0 +8368956 0 0 +8368986 64 0 +8369110 0 0 +8369141 64 0 +8369276 0 0 +8369299 64 0 +8369430 0 0 +8369476 64 0 +8369597 0 0 +8369625 64 0 +8369761 0 0 +8369781 64 0 +8369926 0 0 +8369948 64 0 +8370611 0 0 +8370623 64 0 +8370769 0 0 +8370801 64 0 +8370942 0 0 +8370980 64 0 +8371113 0 0 +8371163 64 0 +8371250 0 0 +8374448 totRewards = 84 +8374448 128 16 +8374648 128 0 +8374649 0 0 +8374696 128 0 +8374925 0 0 +8374948 128 0 +8375178 0 0 +8375212 128 0 +8375308 0 0 +8375368 128 0 +8375606 0 0 +8375614 128 0 +8375745 0 0 +8375760 128 0 +8376177 0 0 +8376209 128 0 +8376313 0 0 +8376353 128 0 +8376471 0 0 +8376490 128 0 +8376612 0 0 +8376652 128 0 +8376765 0 0 +8376826 128 0 +8376936 0 0 +8376988 128 0 +8377106 0 0 +8377153 128 0 +8377274 0 0 +8377331 128 0 +8377445 0 0 +8377502 128 0 +8377607 0 0 +8377674 128 0 +8377766 0 0 +8377824 128 0 +8377931 0 0 +8377985 128 0 +8378104 0 0 +8378153 128 0 +8378267 0 0 +8378331 128 0 +8378428 0 0 +8385289 totRewards = 85 +8385289 64 8 +8385489 64 0 +8385501 0 0 +8385514 64 0 +8387814 0 0 +8387836 64 0 +8387980 0 0 +8388009 64 0 +8388139 0 0 +8388180 64 0 +8388288 0 0 +8388345 64 0 +8388442 0 0 +8388514 64 0 +8388582 0 0 +8392063 totRewards = 86 +8392063 128 16 +8392225 0 16 +8392263 0 0 +8392332 128 0 +8392799 0 0 +8392820 128 0 +8392933 0 0 +8393022 128 0 +8393049 0 0 +8393081 128 0 +8393354 0 0 +8393367 128 0 +8393481 0 0 +8393504 128 0 +8393933 0 0 +8393964 128 0 +8394089 0 0 +8394118 128 0 +8394247 0 0 +8394274 128 0 +8394404 0 0 +8394449 128 0 +8394571 0 0 +8394614 128 0 +8394738 0 0 +8394776 128 0 +8394899 0 0 +8394948 128 0 +8395062 0 0 +8395119 128 0 +8395222 0 0 +8395272 128 0 +8395384 0 0 +8395450 128 0 +8395540 0 0 +8395598 128 0 +8395707 0 0 +8395756 128 0 +8395869 0 0 +8395923 128 0 +8396037 0 0 +8396098 128 0 +8396204 0 0 +8396274 128 0 +8396357 0 0 +8400269 totRewards = 87 +8400269 64 8 +8400469 64 0 +8400477 0 0 +8400489 64 0 + + description: state script log run 3 + task_epochs: 6, +] +2021-01-28 16:20:07,165 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 16:20:10,873 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 16:20:10,876 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 16:20:10,876 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 16:20:10,880 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 16:20:10,880 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 16:20:13,057 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 16:20:13,057 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 16:20:13,064 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 16:20:13,065 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 16:20:13,068 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 16:20:13,096 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 16:20:13,099 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 16:20:13,100 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 16:20:13,101 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 16:20:16,742 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 16:20:16,744 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 16:21:49,050 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = Jaq +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-01-28 16:21:49,387 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 16:21:49,392 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 16:21:49,393 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 16:21:49,393 rec_to_binaries.core: INFO Extracting time... +2021-01-28 16:23:00,090 rec_to_binaries.core: INFO Making position directory... +2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 +2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = Jaq +date = 20190826 +nwb_metadata = Experiment Info: +Experimenter: Abhilasha Joshi +Description: Theta and gait +Session Id: jaq_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/nwb/Jaq20190826.nwb + +2021-01-28 16:23:01,015 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! + , [] +2021-01-28 16:23:04,395 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 16:23:04,986 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 16:23:04,986 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 16:23:04,986 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 16:23:04,989 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 16:23:04,990 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 16:23:04,991 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 16:23:04,992 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140306904227088 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +2001580 totRewards = 1 +2001580 64 200 +2001618 0 136 +2001730 64 136 +2001776 0 136 +2001780 0 128 +2003264 64 128 +2003377 0 128 +2003446 64 128 +2003519 0 128 +2003570 64 128 +2003646 0 128 +2003696 64 128 +2003785 0 128 +2003826 64 128 +2004082 0 128 +2004105 64 128 +2004232 0 128 +2004274 64 128 +2004393 0 128 +2004427 64 128 +2004551 0 128 +2004583 64 128 +2004720 0 128 +2004752 64 128 +2004888 0 128 +2004930 64 128 +2005077 0 128 +2005116 64 128 +2005252 0 128 +2005284 64 128 +2005395 0 128 +2005465 64 128 +2005540 0 128 +2005603 64 128 +2005710 0 128 +2005749 64 128 +2005861 0 128 +2005934 64 128 +2006019 0 128 +2006065 64 128 +2006182 0 128 +2006217 64 128 +2006329 0 128 +2006344 64 128 +2006477 0 128 +2006494 64 128 +2006626 0 128 +2006639 64 128 +2006774 0 128 +2006801 64 128 +2006925 0 128 +2006975 64 128 +2007855 0 128 +2007878 64 128 +2008024 0 128 +2008063 64 128 +2008169 0 128 +2008218 64 128 +2008346 0 128 +2008414 64 128 +2008525 0 128 +2008545 64 128 +2008694 0 128 +2008728 64 128 +2008871 0 128 +2008882 64 128 +2010662 0 128 +2010678 64 128 +2011803 0 128 +2011833 64 128 +2011970 0 128 +2012060 64 128 +2012163 0 128 +2012186 64 128 +2012343 0 128 +2012375 64 128 +2012524 0 128 +2012561 64 128 +2012567 0 128 +2012582 64 128 +2012666 0 128 +2012692 64 128 +2012709 0 128 +2012758 64 128 +2012843 0 128 +2012878 64 128 +2012913 0 128 +2012973 64 128 +2013026 0 128 +2013031 64 128 +2013034 0 128 +2013052 64 128 +2013239 0 128 +2034560 totRewards = 2 +2034560 128 144 +2034760 128 128 +2035091 0 0 +2035175 128 0 +2035224 0 0 +2035241 128 0 +2035642 0 0 +2035669 128 0 +2035934 0 0 +2035976 128 0 +2036086 0 0 +2036140 128 0 +2036249 0 0 +2036307 128 0 +2036411 0 0 +2036492 128 0 +2036582 0 0 +2036660 128 0 +2036748 0 0 +2036816 128 0 +2036899 0 0 +2036961 128 0 +2037070 0 0 +2037137 128 0 +2037244 0 0 +2037376 128 0 +2037423 0 0 +2037507 128 0 +2037610 0 0 +2037670 128 0 +2037770 0 0 +2037803 128 0 +2037924 0 0 +2037933 128 0 +2038187 0 0 +2038197 128 0 +2038342 0 0 +2038355 128 0 +2038819 0 0 +2038855 128 0 +2039188 0 0 +2039253 128 0 +2039357 0 0 +2039426 128 0 +2039462 0 0 +2039490 128 0 +2039548 0 0 +2039667 128 0 +2039739 0 0 +2039810 128 0 +2039928 0 0 +2039981 128 0 +2040117 0 0 +2040208 128 0 +2040298 0 0 +2040373 128 0 +2040478 0 0 +2040515 128 0 +2040657 0 0 +2040697 128 0 +2040788 0 0 +2040829 128 0 +2040851 0 0 +2040860 128 0 +2041365 0 0 +2041423 128 0 +2041584 0 0 +2041699 128 0 +2041769 0 0 +2041844 128 0 +2041969 0 0 +2042090 128 0 +2042173 0 0 +2042311 128 0 +2042343 0 0 +2063830 128 0 +2063874 0 0 +2066005 128 0 +2067249 0 0 +2067324 128 0 +2067441 0 0 +2074645 totRewards = 3 +2074645 64 8 +2074658 0 8 +2074845 0 0 +2074976 64 0 +2075045 0 0 +2075058 64 0 +2075512 0 0 +2075546 64 0 +2075789 0 0 +2075823 64 0 +2076095 0 0 +2076119 64 0 +2076245 0 0 +2076272 64 0 +2076412 0 0 +2076445 64 0 +2076571 0 0 +2076603 64 0 +2076738 0 0 +2076767 64 0 +2076901 0 0 +2076934 64 0 +2077052 0 0 +2077104 64 0 +2077209 0 0 +2077249 64 0 +2077518 0 0 +2077538 64 0 +2077985 0 0 +2077999 64 0 +2078158 0 0 +2078172 64 0 +2078842 0 0 +2078882 64 0 +2079003 0 0 +2079062 64 0 +2079188 0 0 +2079210 64 0 +2079323 0 0 +2079338 64 0 +2079360 0 0 +2079427 64 0 +2079489 0 0 +2079575 64 0 +2079656 0 0 +2079680 64 0 +2081117 0 0 +2081135 64 0 +2081295 0 0 +2081324 64 0 +2081462 0 0 +2081533 64 0 +2081625 0 0 +2096193 totRewards = 4 +2096193 128 16 +2096393 128 0 +2096867 0 0 +2096907 128 0 +2097582 0 0 +2097600 128 0 +2097712 0 0 +2097733 128 0 +2097848 0 0 +2097876 128 0 +2097988 0 0 +2098020 128 0 +2098129 0 0 +2098160 128 0 +2098287 0 0 +2098319 128 0 +2098435 0 0 +2098479 128 0 +2098589 0 0 +2098635 128 0 +2098748 0 0 +2098802 128 0 +2098919 0 0 +2098997 128 0 +2099135 0 0 +2099189 128 0 +2099304 0 0 +2099356 128 0 +2099465 0 0 +2099508 128 0 +2099929 0 0 +2099945 128 0 +2100094 0 0 +2100103 128 0 +2100267 0 0 +2100306 128 0 +2100435 0 0 +2100498 128 0 +2100541 0 0 +2100563 128 0 +2100631 0 0 +2100699 128 0 +2100805 0 0 +2100866 128 0 +2100997 0 0 +2101127 128 0 +2101177 0 0 +2101305 128 0 +2101366 0 0 +2101520 128 0 +2101559 0 0 +2101741 128 0 +2101765 0 0 +2102142 128 0 +2102175 0 0 +2102328 128 0 +2102369 0 0 +2102507 128 0 +2102562 0 0 +2102681 128 0 +2102720 0 0 +2105862 128 0 +2105868 0 0 +2114611 totRewards = 5 +2114611 64 8 +2114766 0 8 +2114811 0 0 +2114881 64 0 +2115110 0 0 +2115120 64 0 +2115389 0 0 +2115397 64 0 +2116252 0 0 +2116283 64 0 +2116436 0 0 +2116450 64 0 +2116584 0 0 +2116611 64 0 +2116741 0 0 +2116780 64 0 +2116895 0 0 +2116944 64 0 +2117053 0 0 +2117100 64 0 +2117213 0 0 +2117240 64 0 +2117365 0 0 +2117398 64 0 +2117526 0 0 +2117554 64 0 +2117852 0 0 +2117876 64 0 +2118025 0 0 +2118034 64 0 +2118175 0 0 +2118220 64 0 +2118353 0 0 +2118363 64 0 +2118479 0 0 +2118501 64 0 +2118516 0 0 +2118552 64 0 +2118559 0 0 +2118580 64 0 +2118637 0 0 +2118740 64 0 +2118800 0 0 +2118878 64 0 +2120024 0 0 +2120051 64 0 +2120186 0 0 +2120233 64 0 +2120352 0 0 +2140288 totRewards = 6 +2140288 128 16 +2140488 128 0 +2140841 0 0 +2140904 128 0 +2141213 0 0 +2141279 128 0 +2141616 0 0 +2141629 128 0 +2141863 0 0 +2141879 128 0 +2142145 0 0 +2142170 128 0 +2142292 0 0 +2142316 128 0 +2142435 0 0 +2142476 128 0 +2142582 0 0 +2142631 128 0 +2142739 0 0 +2142785 128 0 +2142890 0 0 +2142943 128 0 +2143053 0 0 +2143111 128 0 +2143226 0 0 +2143277 128 0 +2143386 0 0 +2143425 128 0 +2143539 0 0 +2143553 128 0 +2143986 0 0 +2144010 128 0 +2144133 0 0 +2144162 128 0 +2144308 0 0 +2144348 128 0 +2144481 0 0 +2144538 128 0 +2144654 0 0 +2144710 128 0 +2144817 0 0 +2144882 128 0 +2144986 0 0 +2145048 128 0 +2145173 0 0 +2145185 128 0 +2145200 0 0 +2145208 128 0 +2145295 0 0 +2145404 128 0 +2145461 0 0 +2145557 128 0 +2145621 0 0 +2145669 128 0 +2145675 0 0 +2145682 128 0 +2145958 0 0 +2145990 128 0 +2146113 0 0 +2146144 128 0 +2146279 0 0 +2146329 128 0 +2146438 0 0 +2146560 128 0 +2146611 0 0 +2146696 128 0 +2146710 0 0 +2159529 totRewards = 7 +2159529 64 8 +2159729 64 0 +2159738 0 0 +2159763 64 0 +2160960 0 0 +2160973 64 0 +2161110 0 0 +2161128 64 0 +2161268 0 0 +2161289 64 0 +2161432 0 0 +2161459 64 0 +2161608 0 0 +2161632 64 0 +2161949 0 0 +2161985 64 0 +2162113 0 0 +2162143 64 0 +2162275 0 0 +2162296 64 0 +2162310 0 0 +2162319 64 0 +2162403 0 0 +2162421 64 0 +2162452 0 0 +2162459 64 0 +2162559 0 0 +2162568 64 0 +2162900 0 0 +2162928 64 0 +2163757 0 0 +2163783 64 0 +2163917 0 0 +2163968 64 0 +2164082 0 0 +2166458 64 0 +2166531 0 0 +2166648 64 0 +2166917 0 0 +2166935 64 0 +2167090 0 0 +2167109 64 0 +2167732 0 0 +2167762 64 0 +2167908 0 0 +2167929 64 0 +2168084 0 0 +2168099 64 0 +2168429 0 0 +2168490 64 0 +2168588 0 0 +2176893 totRewards = 8 +2176893 128 16 +2177093 128 0 +2177326 0 0 +2177401 128 0 +2177653 0 0 +2177660 128 0 +2177663 0 0 +2177733 128 0 +2178313 0 0 +2178319 128 0 +2179180 0 0 +2179188 128 0 +2179315 0 0 +2179351 128 0 +2179476 0 0 +2179523 128 0 +2179642 0 0 +2179688 128 0 +2179810 0 0 +2179872 128 0 +2179978 0 0 +2180036 128 0 +2180144 0 0 +2180182 128 0 +2180882 0 0 +2180915 128 0 +2181044 0 0 +2181173 128 0 +2181203 0 0 +2181292 128 0 +2181428 0 0 +2181534 128 0 +2181591 0 0 +2181727 128 0 +2181782 0 0 +2182366 128 0 +2182374 0 0 +2184109 128 0 +2184245 0 0 +2184296 128 0 +2184396 0 0 +2184529 128 0 +2188631 0 0 +2190187 128 0 +2191079 0 0 +2191268 128 0 +2192641 0 0 +2192662 128 0 +2193070 0 0 +2193103 128 0 +2193223 0 0 +2193290 128 0 +2193362 0 0 +2193437 128 0 +2193510 0 0 +2193613 128 0 +2193703 0 0 +2202716 totRewards = 9 +2202716 64 8 +2202773 0 8 +2202836 64 8 +2202916 64 0 +2204488 0 0 +2204502 64 0 +2204642 0 0 +2204664 64 0 +2204811 0 0 +2204825 64 0 +2204970 0 0 +2204987 64 0 +2205126 0 0 +2205156 64 0 +2205282 0 0 +2205322 64 0 +2205445 0 0 +2205473 64 0 +2205730 0 0 +2205744 64 0 +2205890 0 0 +2205893 64 0 +2206940 0 0 +2206946 64 0 +2207096 0 0 +2207119 64 0 +2207266 0 0 +2207280 64 0 +2207972 0 0 +2207997 64 0 +2208143 0 0 +2208171 64 0 +2209358 0 0 +2209415 64 0 +2209513 0 0 +2216514 64 0 +2216790 0 0 +2216816 64 0 +2216945 0 0 +2216964 64 0 +2217093 0 0 +2217122 64 0 +2217254 0 0 +2217269 64 0 +2217569 0 0 +2217585 64 0 +2217733 0 0 +2217752 64 0 +2218051 0 0 +2222344 totRewards = 10 +2222344 128 16 +2222461 0 16 +2222544 0 0 +2222557 128 0 +2222585 0 0 +2222649 128 0 +2222663 0 0 +2222948 128 0 +2223215 0 0 +2223240 128 0 +2223844 0 0 +2223856 128 0 +2223972 0 0 +2223978 128 0 +2224099 0 0 +2224123 128 0 +2224239 0 0 +2224270 128 0 +2224377 0 0 +2224408 128 0 +2224526 0 0 +2224571 128 0 +2224679 0 0 +2224728 128 0 +2224835 0 0 +2224896 128 0 +2225005 0 0 +2225061 128 0 +2225173 0 0 +2225232 128 0 +2225342 0 0 +2225399 128 0 +2225511 0 0 +2225547 128 0 +2225798 0 0 +2225808 128 0 +2226268 0 0 +2226295 128 0 +2226441 0 0 +2226471 128 0 +2226612 0 0 +2226663 128 0 +2226797 0 0 +2226836 128 0 +2226974 0 0 +2227280 128 0 +2227394 0 0 +2227522 128 0 +2227572 0 0 +2240414 128 0 +2240991 0 0 +2241009 128 0 +2241417 0 0 +2241455 128 0 +2241562 0 0 +2241608 128 0 +2241717 0 0 +2241773 128 0 +2241885 0 0 +2241935 128 0 +2242056 0 0 +2242116 128 0 +2242216 0 0 +2242288 128 0 +2242395 0 0 +2242461 128 0 +2242582 0 0 +2242633 128 0 +2242764 0 0 +2242816 128 0 +2242923 0 0 +2243013 128 0 +2243120 0 0 +2243260 128 0 +2243270 0 0 +2245717 128 0 +2247529 0 0 +2247664 128 0 +2247755 0 0 +2254386 totRewards = 11 +2254386 64 8 +2254586 64 0 +2254782 0 0 +2254804 64 0 +2256275 0 0 +2256295 64 0 +2256427 0 0 +2256456 64 0 +2256588 0 0 +2256617 64 0 +2256923 0 0 +2256953 64 0 +2257081 0 0 +2257117 64 0 +2257241 0 0 +2257280 64 0 +2257399 0 0 +2257441 64 0 +2257567 0 0 +2257588 64 0 +2258047 0 0 +2258051 64 0 +2258899 0 0 +2258921 64 0 +2259056 0 0 +2259097 64 0 +2259215 0 0 +2259255 64 0 +2259372 0 0 +2259405 64 0 +2260634 0 0 +2260676 64 0 +2261234 0 0 +2261300 64 0 +2261404 0 0 +2261441 64 0 +2261625 0 0 +2261715 64 0 +2261815 0 0 +2261834 64 0 +2261977 0 0 +2262025 64 0 +2262133 0 0 +2277660 totRewards = 12 +2277660 128 16 +2277739 0 16 +2277860 0 0 +2277981 128 0 +2278327 0 0 +2278333 128 0 +2278895 0 0 +2278925 128 0 +2279032 0 0 +2279044 128 0 +2279302 0 0 +2279309 128 0 +2279439 0 0 +2279455 128 0 +2279735 0 0 +2279763 128 0 +2279878 0 0 +2279911 128 0 +2280032 0 0 +2280084 128 0 +2280202 0 0 +2280254 128 0 +2280364 0 0 +2280421 128 0 +2280526 0 0 +2280579 128 0 +2280686 0 0 +2280736 128 0 +2280847 0 0 +2280883 128 0 +2281609 0 0 +2281646 128 0 +2281774 0 0 +2281872 128 0 +2281935 0 0 +2282007 128 0 +2282103 0 0 +2282213 128 0 +2282280 0 0 +2282420 128 0 +2282494 0 0 +2284086 128 0 +2285130 0 0 +2285212 128 0 +2286235 0 0 +2286289 128 0 +2287135 0 0 +2287186 128 0 +2287289 0 0 +2291999 totRewards = 13 +2291999 64 8 +2292199 64 0 +2293824 0 0 +2293846 64 0 +2293982 0 0 +2294001 64 0 +2294138 0 0 +2294169 64 0 +2294293 0 0 +2294332 64 0 +2294454 0 0 +2294482 64 0 +2294791 0 0 +2294803 64 0 +2295457 0 0 +2295504 64 0 +2295973 0 0 +2296018 64 0 +2296154 0 0 +2296187 64 0 +2296796 0 0 +2296819 64 0 +2297909 0 0 +2297970 64 0 +2298237 0 0 +2298249 64 0 +2298570 0 0 +2298612 64 0 +2298728 0 0 +2298774 64 0 +2298883 0 0 +2298938 64 0 +2299041 0 0 +2307832 totRewards = 14 +2307832 128 16 +2308000 0 16 +2308028 128 16 +2308032 128 0 +2309019 0 0 +2309027 128 0 +2309306 0 0 +2309313 128 0 +2309437 0 0 +2309473 128 0 +2309593 0 0 +2309630 128 0 +2309750 0 0 +2309782 128 0 +2309900 0 0 +2309946 128 0 +2310069 0 0 +2310100 128 0 +2310224 0 0 +2310266 128 0 +2310382 0 0 +2310441 128 0 +2310558 0 0 +2310611 128 0 +2310718 0 0 +2310772 128 0 +2310877 0 0 +2310912 128 0 +2311035 0 0 +2311066 128 0 +2311185 0 0 +2311220 128 0 +2311336 0 0 +2311371 128 0 +2311666 0 0 +2311731 128 0 +2311816 0 0 +2311986 128 0 +2312015 0 0 +2313817 128 0 +2313887 0 0 +2313926 128 0 +2314125 0 0 +2314202 128 0 +2314630 0 0 +2314756 128 0 +2317830 0 0 +2317846 128 0 +2317980 0 0 +2318017 128 0 +2318121 0 0 +2318447 128 0 +2318468 0 0 +2318575 128 0 +2318643 0 0 +2321337 128 0 +2322451 0 0 +2322689 128 0 +2327632 0 0 +2327645 128 0 +2327935 0 0 +2327967 128 0 +2328085 0 0 +2328120 128 0 +2328244 0 0 +2328283 128 0 +2328404 0 0 +2328457 128 0 +2328561 0 0 +2328627 128 0 +2328720 0 0 +2328866 128 0 +2328892 0 0 +2328961 128 0 +2329075 0 0 +2329131 128 0 +2329240 0 0 +2329331 128 0 +2329412 0 0 +2329583 128 0 +2329768 0 0 +2331261 128 0 +2333920 0 0 +2337449 totRewards = 15 +2337449 64 8 +2337649 64 0 +2338511 0 0 +2338525 64 0 +2339700 0 0 +2339726 64 0 +2339869 0 0 +2339884 64 0 +2340021 0 0 +2340049 64 0 +2340177 0 0 +2340221 64 0 +2340350 0 0 +2340357 64 0 +2340814 0 0 +2340842 64 0 +2341675 0 0 +2341689 64 0 +2341838 0 0 +2341866 64 0 +2341992 0 0 +2342046 64 0 +2342161 0 0 +2342239 64 0 +2342326 0 0 +2342402 64 0 +2342683 0 0 +2342700 64 0 +2342845 0 0 +2342872 64 0 +2343006 0 0 +2343072 64 0 +2343156 0 0 +2346147 totRewards = 16 +2346147 128 16 +2346164 0 16 +2346272 128 16 +2346335 0 16 +2346347 0 0 +2346589 128 0 +2346602 0 0 +2346660 128 0 +2346684 0 0 +2346947 128 0 +2347329 0 0 +2347349 128 0 +2348105 0 0 +2348110 128 0 +2348537 0 0 +2348558 128 0 +2348682 0 0 +2348728 128 0 +2348835 0 0 +2348889 128 0 +2349004 0 0 +2349052 128 0 +2349166 0 0 +2349215 128 0 +2349330 0 0 +2349374 128 0 +2349484 0 0 +2349526 128 0 +2350244 0 0 +2350261 128 0 +2350407 0 0 +2350441 128 0 +2350568 0 0 +2350595 128 0 +2350771 0 0 +2350858 128 0 +2350914 0 0 +2351075 128 0 +2351151 0 0 +2351309 128 0 +2351326 0 0 +2351740 128 0 +2351753 0 0 +2351886 128 0 +2351896 0 0 +2352011 128 0 +2352104 0 0 +2352187 128 0 +2352214 0 0 +2352301 128 0 +2352559 0 0 +2352772 128 0 +2353146 0 0 +2353183 128 0 +2353383 0 0 +2353426 128 0 +2355263 0 0 +2359358 totRewards = 17 +2359358 64 8 +2359558 64 0 +2360088 0 0 +2360101 64 0 +2361553 0 0 +2361578 64 0 +2361883 0 0 +2361907 64 0 +2362039 0 0 +2362075 64 0 +2362327 0 0 +2362335 64 0 +2364953 0 0 +2364983 64 0 +2365102 0 0 +2365153 64 0 +2365267 0 0 +2365324 64 0 +2365414 0 0 +2368975 totRewards = 18 +2368975 128 16 +2369175 128 0 +2369303 0 0 +2369335 128 0 +2369692 0 0 +2369711 128 0 +2369813 0 0 +2369864 128 0 +2370239 0 0 +2370266 128 0 +2370543 0 0 +2370563 128 0 +2370698 0 0 +2370728 128 0 +2370846 0 0 +2370899 128 0 +2371028 0 0 +2371066 128 0 +2371186 0 0 +2371233 128 0 +2371348 0 0 +2371399 128 0 +2371524 0 0 +2371569 128 0 +2371690 0 0 +2371747 128 0 +2371862 0 0 +2371919 128 0 +2372027 0 0 +2372070 128 0 +2372173 0 0 +2372219 128 0 +2372338 0 0 +2375851 128 0 +2376084 0 0 +2376257 128 0 +2376944 0 0 +2377077 128 0 +2378183 0 0 +2381281 totRewards = 19 +2381281 64 8 +2381481 64 0 +2382052 0 0 +2382073 64 0 +2383036 0 0 +2383047 64 0 +2383182 0 0 +2383206 64 0 +2383520 0 0 +2383532 64 0 +2383681 0 0 +2383710 64 0 +2383859 0 0 +2383866 64 0 +2384010 0 0 +2384039 64 0 +2384184 0 0 +2384206 64 0 +2384339 0 0 +2384374 64 0 +2385999 0 0 +2386006 64 0 +2386173 0 0 +2386185 64 0 +2386707 0 0 +2386743 64 0 +2386868 0 0 +2386931 64 0 +2387020 0 0 +2390293 totRewards = 20 +2390293 128 16 +2390431 0 16 +2390474 128 16 +2390493 128 0 +2390625 0 0 +2390686 128 0 +2390781 0 0 +2390831 128 0 +2391031 0 0 +2391064 128 0 +2391157 0 0 +2391189 128 0 +2391831 0 0 +2391839 128 0 +2392429 0 0 +2392447 128 0 +2392582 0 0 +2392621 128 0 +2392746 0 0 +2392786 128 0 +2392920 0 0 +2392951 128 0 +2393082 0 0 +2393120 128 0 +2393249 0 0 +2393295 128 0 +2393428 0 0 +2393461 128 0 +2393626 0 0 +2393678 128 0 +2393703 0 0 +2393722 128 0 +2393784 0 0 +2393850 128 0 +2393969 0 0 +2394022 128 0 +2394154 0 0 +2394254 128 0 +2394329 0 0 +2394379 128 0 +2394421 0 0 +2394454 128 0 +2394485 0 0 +2394621 128 0 +2394669 0 0 +2395021 128 0 +2395050 0 0 +2395157 128 0 +2395192 0 0 +2395962 128 0 +2395976 0 0 +2399690 totRewards = 21 +2399690 64 8 +2399739 0 8 +2399783 64 8 +2399889 64 0 +2400032 0 0 +2400055 64 0 +2401665 0 0 +2401674 64 0 +2401820 0 0 +2401845 64 0 +2401974 0 0 +2402003 64 0 +2402129 0 0 +2402156 64 0 +2402593 0 0 +2402609 64 0 +2402754 0 0 +2402766 64 0 +2403575 0 0 +2403613 64 0 +2403763 0 0 +2403774 64 0 +2404087 0 0 +2404120 64 0 +2404268 0 0 +2404282 64 0 +2404424 0 0 +2404457 64 0 +2404593 0 0 +2404624 64 0 +2404761 0 0 +2404786 64 0 +2405621 0 0 +2405656 64 0 +2405801 0 0 +2405835 64 0 +2405983 0 0 +2406018 64 0 +2406128 0 0 +2408919 totRewards = 22 +2408918 128 16 +2409089 0 16 +2409099 128 16 +2409118 128 0 +2409259 0 0 +2409282 128 0 +2409881 0 0 +2409914 128 0 +2410332 0 0 +2410359 128 0 +2410491 0 0 +2410499 128 0 +2410625 0 0 +2410640 128 0 +2410777 0 0 +2410806 128 0 +2410954 0 0 +2410964 128 0 +2411111 0 0 +2411139 128 0 +2411271 0 0 +2411311 128 0 +2411444 0 0 +2411478 128 0 +2411620 0 0 +2411645 128 0 +2411779 0 0 +2411820 128 0 +2411949 0 0 +2411991 128 0 +2412110 0 0 +2412152 128 0 +2412297 0 0 +2412381 128 0 +2412463 0 0 +2412586 128 0 +2412637 0 0 +2417606 totRewards = 23 +2417606 64 8 +2417806 64 0 +2417988 0 0 +2418017 64 0 +2419385 0 0 +2419403 64 0 +2419710 0 0 +2419728 64 0 +2419869 0 0 +2419900 64 0 +2420197 0 0 +2420230 64 0 +2420360 0 0 +2420383 64 0 +2420813 0 0 +2420840 64 0 +2420978 0 0 +2421000 64 0 +2421625 0 0 +2421678 64 0 +2421781 0 0 +2421836 64 0 +2421936 0 0 +2424845 totRewards = 24 +2424845 128 16 +2424878 0 16 +2424957 128 16 +2425001 0 16 +2425029 128 16 +2425045 128 0 +2425100 0 0 +2425132 128 0 +2425255 0 0 +2425341 128 0 +2425404 0 0 +2425413 128 0 +2425655 0 0 +2425694 128 0 +2429976 0 0 +2430004 128 0 +2430156 0 0 +2430196 128 0 +2430336 0 0 +2430380 128 0 +2430522 0 0 +2430571 128 0 +2430718 0 0 +2430748 128 0 +2430894 0 0 +2430920 128 0 +2431078 0 0 +2431125 128 0 +2431275 0 0 +2431329 128 0 +2431675 0 0 +2431820 128 0 +2431897 0 0 +2432493 128 0 +2432637 0 0 +2432661 128 0 +2432804 0 0 +2432861 128 0 +2432994 0 0 +2433025 128 0 +2433287 0 0 +2433293 128 0 +2433298 0 0 +2433302 128 0 +2433608 0 0 +2433619 128 0 +2433651 0 0 +2433688 128 0 +2433712 0 0 +2433722 128 0 +2433771 0 0 +2433875 128 0 +2434339 0 0 +2434379 128 0 +2434521 0 0 +2434566 128 0 +2435276 0 0 +2435311 128 0 +2435450 0 0 +2435518 128 0 +2435619 0 0 +2435702 128 0 +2435821 0 0 +2435901 128 0 +2436009 0 0 +2436087 128 0 +2436177 0 0 +2436291 128 0 +2436323 0 0 +2436357 128 0 +2436377 0 0 +2443046 128 0 +2443134 0 0 +2443341 128 0 +2443453 0 0 +2443671 128 0 +2443803 0 0 +2443889 128 0 +2443921 0 0 +2443970 128 0 +2444102 0 0 +2447042 totRewards = 25 +2447042 64 8 +2447242 64 0 +2447765 0 0 +2447772 64 0 +2447880 0 0 +2447886 64 0 +2449309 0 0 +2449318 64 0 +2449464 0 0 +2449481 64 0 +2449621 0 0 +2449639 64 0 +2449783 0 0 +2449802 64 0 +2449934 0 0 +2449973 64 0 +2450097 0 0 +2450126 64 0 +2450260 0 0 +2450285 64 0 +2450402 0 0 +2455364 totRewards = 26 +2455364 128 16 +2455546 0 16 +2455564 0 0 +2455657 128 0 +2455691 0 0 +2455743 128 0 +2455937 0 0 +2456018 128 0 +2456092 0 0 +2456103 128 0 +2456163 0 0 +2456212 128 0 +2456319 0 0 +2456362 128 0 +2457252 0 0 +2457265 128 0 +2457695 0 0 +2457717 128 0 +2457847 0 0 +2457870 128 0 +2458176 0 0 +2458211 128 0 +2458339 0 0 +2458376 128 0 +2458501 0 0 +2458536 128 0 +2458658 0 0 +2458698 128 0 +2458804 0 0 +2458851 128 0 +2458970 0 0 +2458984 128 0 +2459119 0 0 +2459147 128 0 +2459250 0 0 +2463620 totRewards = 27 +2463620 64 8 +2463820 64 0 +2465463 0 0 +2465471 64 0 +2465619 0 0 +2465626 64 0 +2465935 0 0 +2465947 64 0 +2466092 0 0 +2466110 64 0 +2466253 0 0 +2466280 64 0 +2466410 0 0 +2466447 64 0 +2466568 0 0 +2466603 64 0 +2466732 0 0 +2466752 64 0 +2467027 0 0 +2469814 totRewards = 28 +2469814 128 16 +2469994 0 16 +2470014 0 0 +2470051 128 0 +2470113 0 0 +2470131 128 0 +2470369 0 0 +2470428 128 0 +2470615 0 0 +2470659 128 0 +2470750 0 0 +2470810 128 0 +2471182 0 0 +2471206 128 0 +2471609 0 0 +2471636 128 0 +2471763 0 0 +2471806 128 0 +2471934 0 0 +2471960 128 0 +2472090 0 0 +2472133 128 0 +2472245 0 0 +2472295 128 0 +2472412 0 0 +2472452 128 0 +2472597 0 0 +2472634 128 0 +2472746 0 0 +2472805 128 0 +2472913 0 0 +2472952 128 0 +2473352 0 0 +2473598 128 0 +2476006 0 0 +2476133 128 0 +2479487 0 0 +2479687 128 0 +2480044 0 0 +2482815 totRewards = 29 +2482815 64 8 +2483015 64 0 +2485179 0 0 +2485197 64 0 +2485339 0 0 +2485359 64 0 +2485487 0 0 +2485527 64 0 +2485658 0 0 +2485672 64 0 +2485968 0 0 +2485982 64 0 +2486102 0 0 +2489155 totRewards = 30 +2489155 128 16 +2489313 0 16 +2489355 0 0 +2489369 128 0 +2489697 0 0 +2489732 128 0 +2489944 0 0 +2489982 128 0 +2490071 0 0 +2490129 128 0 +2490358 0 0 +2490381 128 0 +2490490 0 0 +2490527 128 0 +2490938 0 0 +2490973 128 0 +2491097 0 0 +2491113 128 0 +2491255 0 0 +2491270 128 0 +2491405 0 0 +2491435 128 0 +2491565 0 0 +2491605 128 0 +2491743 0 0 +2491776 128 0 +2491897 0 0 +2491946 128 0 +2492059 0 0 +2492109 128 0 +2492225 0 0 +2492263 128 0 +2492382 0 0 +2492423 128 0 +2492544 0 0 +2492573 128 0 +2492723 0 0 +2492742 128 0 +2492881 0 0 +2492917 128 0 +2493039 0 0 +2493086 128 0 +2493194 0 0 +2493241 128 0 +2493365 0 0 +2493381 128 0 +2493510 0 0 +2493572 128 0 +2493589 0 0 +2493676 128 0 +2493876 0 0 +2494191 128 0 +2494750 0 0 +2494845 128 0 +2495454 0 0 +2499420 totRewards = 31 +2499419 64 8 +2499619 64 0 +2502333 0 0 +2502350 64 0 +2502492 0 0 +2502502 64 0 +2503572 0 0 +2503596 64 0 +2503742 0 0 +2503751 64 0 +2504397 0 0 +2504419 64 0 +2504560 0 0 +2504572 64 0 +2505051 0 0 +2505069 64 0 +2505379 0 0 +2505412 64 0 +2505557 0 0 +2505572 64 0 +2505715 0 0 +2505767 64 0 +2505847 0 0 +2508735 totRewards = 32 +2508735 128 16 +2508885 0 16 +2508935 0 0 +2508994 128 0 +2509065 0 0 +2509107 128 0 +2509335 0 0 +2509344 128 0 +2509483 0 0 +2509494 128 0 +2509735 0 0 +2509758 128 0 +2509877 0 0 +2509893 128 0 +2510149 0 0 +2510177 128 0 +2510297 0 0 +2510320 128 0 +2510597 0 0 +2510620 128 0 +2510757 0 0 +2510780 128 0 +2511073 0 0 +2511100 128 0 +2511234 0 0 +2511266 128 0 +2511410 0 0 +2511438 128 0 +2511567 0 0 +2511607 128 0 +2511716 0 0 +2511763 128 0 +2511868 0 0 +2511924 128 0 +2512020 0 0 +2515171 totRewards = 33 +2515171 64 8 +2515371 64 0 +2515871 0 0 +2515882 64 0 +2517692 0 0 +2517721 64 0 +2517853 0 0 +2517891 64 0 +2518013 0 0 +2518044 64 0 +2518481 0 0 +2518520 64 0 +2518612 0 0 +2521180 totRewards = 34 +2521180 128 16 +2521354 0 16 +2521379 128 16 +2521380 128 0 +2521569 0 0 +2521590 128 0 +2521692 0 0 +2521711 128 0 +2521925 0 0 +2521978 128 0 +2522070 0 0 +2522108 128 0 +2522490 0 0 +2522514 128 0 +2522937 0 0 +2522956 128 0 +2523086 0 0 +2523120 128 0 +2523252 0 0 +2523270 128 0 +2523399 0 0 +2523434 128 0 +2523557 0 0 +2523601 128 0 +2523729 0 0 +2523767 128 0 +2523896 0 0 +2523942 128 0 +2524058 0 0 +2524104 128 0 +2524211 0 0 +2524253 128 0 +2524372 0 0 +2524387 128 0 +2524514 0 0 +2527384 totRewards = 35 +2527384 64 8 +2527584 64 0 +2529745 0 0 +2529773 64 0 +2529906 0 0 +2529937 64 0 +2530226 0 0 +2530248 64 0 +2530392 0 0 +2530412 64 0 +2530548 0 0 +2530575 64 0 +2530711 0 0 +2530730 64 0 +2530869 0 0 +2530900 64 0 +2531022 0 0 +2531075 64 0 +2531188 0 0 +2531252 64 0 +2531324 0 0 +2532712 64 0 +2532741 0 0 +2532965 64 0 +2533145 0 0 +2533200 64 0 +2533263 0 0 +2533333 64 0 +2533747 0 0 +2536465 totRewards = 36 +2536465 128 16 +2536665 128 0 +2536770 0 0 +2536790 128 0 +2537391 0 0 +2537424 128 0 +2537815 0 0 +2537843 128 0 +2538112 0 0 +2538119 128 0 +2538254 0 0 +2538292 128 0 +2538420 0 0 +2538455 128 0 +2538583 0 0 +2538622 128 0 +2538747 0 0 +2538789 128 0 +2538909 0 0 +2538941 128 0 +2539071 0 0 +2539112 128 0 +2539227 0 0 +2539272 128 0 +2539389 0 0 +2539435 128 0 +2539553 0 0 +2539599 128 0 +2539710 0 0 +2539756 128 0 +2539870 0 0 +2539919 128 0 +2540024 0 0 +2540097 128 0 +2540131 0 0 +2543061 totRewards = 37 +2543061 64 8 +2543261 64 0 +2543302 0 0 +2543321 64 0 +2545004 0 0 +2545027 64 0 +2545177 0 0 +2545189 64 0 +2545641 0 0 +2545675 64 0 +2545800 0 0 +2545841 64 0 +2546764 0 0 +2546771 64 0 +2546909 0 0 +2546973 64 0 +2547017 0 0 +2549893 totRewards = 38 +2549893 128 16 +2550093 128 0 +2550333 0 0 +2550345 128 0 +2550468 0 0 +2550476 128 0 +2550694 0 0 +2550702 128 0 +2550933 0 0 +2550951 128 0 +2551060 0 0 +2551108 128 0 +2551471 0 0 +2551497 128 0 +2551924 0 0 +2551952 128 0 +2552079 0 0 +2552100 128 0 +2552395 0 0 +2552426 128 0 +2552547 0 0 +2552592 128 0 +2552735 0 0 +2552764 128 0 +2552902 0 0 +2552946 128 0 +2553065 0 0 +2553112 128 0 +2553229 0 0 +2553275 128 0 +2553379 0 0 +2553437 128 0 +2553527 0 0 +2553607 128 0 +2553670 0 0 +2556846 totRewards = 39 +2556846 64 8 +2557046 64 0 +2557066 0 0 +2557079 64 0 +2559054 0 0 +2559065 64 0 +2559552 0 0 +2559572 64 0 +2559707 0 0 +2559758 64 0 +2559875 0 0 +2559923 64 0 +2560048 0 0 +2560089 64 0 +2560388 0 0 +2560454 64 0 +2560540 0 0 +2563235 totRewards = 40 +2563235 128 16 +2563435 128 0 +2564006 0 0 +2564041 128 0 +2564140 0 0 +2564180 128 0 +2564559 0 0 +2564586 128 0 +2565004 0 0 +2565043 128 0 +2565168 0 0 +2565191 128 0 +2565328 0 0 +2565350 128 0 +2565480 0 0 +2565520 128 0 +2565631 0 0 +2565663 128 0 +2565791 0 0 +2565824 128 0 +2565949 0 0 +2565991 128 0 +2566098 0 0 +2566143 128 0 +2566260 0 0 +2566298 128 0 +2566424 0 0 +2566467 128 0 +2566573 0 0 +2566618 128 0 +2566742 0 0 +2566763 128 0 +2566912 0 0 +2566946 128 0 +2567068 0 0 +2567114 128 0 +2567223 0 0 +2567281 128 0 +2567360 0 0 +2570298 totRewards = 41 +2570298 64 8 +2570498 64 0 +2572758 0 0 +2572780 64 0 +2573101 0 0 +2573145 64 0 +2573281 0 0 +2573322 64 0 +2574008 0 0 +2574032 64 0 +2574177 0 0 +2574208 64 0 +2574715 0 0 +2574748 64 0 +2574882 0 0 +2574902 64 0 +2575057 0 0 +2575077 64 0 +2575202 0 0 +2577813 totRewards = 42 +2577813 128 16 +2578013 128 0 +2578222 0 0 +2578344 128 0 +2578817 0 0 +2578850 128 0 +2579085 0 0 +2579101 128 0 +2579222 0 0 +2579250 128 0 +2579669 0 0 +2579699 128 0 +2579835 0 0 +2579850 128 0 +2579982 0 0 +2580007 128 0 +2580144 0 0 +2580176 128 0 +2580312 0 0 +2580346 128 0 +2580479 0 0 +2580507 128 0 +2580638 0 0 +2580678 128 0 +2580786 0 0 +2580831 128 0 +2580937 0 0 +2580984 128 0 +2581062 0 0 +2584210 totRewards = 43 +2584210 64 8 +2584410 64 0 +2586367 0 0 +2586382 64 0 +2586524 0 0 +2586547 64 0 +2586680 0 0 +2586702 64 0 +2586842 0 0 +2586864 64 0 +2587008 0 0 +2587033 64 0 +2587166 0 0 +2587199 64 0 +2587321 0 0 +2587360 64 0 +2587481 0 0 +2587525 64 0 +2587617 0 0 +2591303 totRewards = 44 +2591303 128 16 +2591503 128 0 +2592645 0 0 +2592656 128 0 +2592782 0 0 +2592800 128 0 +2592917 0 0 +2592937 128 0 +2593048 0 0 +2593077 128 0 +2593187 0 0 +2593217 128 0 +2593333 0 0 +2593366 128 0 +2593490 0 0 +2593535 128 0 +2593655 0 0 +2593700 128 0 +2593815 0 0 +2593856 128 0 +2593963 0 0 +2594007 128 0 +2594115 0 0 +2594146 128 0 +2594278 0 0 +2594284 128 0 +2594410 0 0 +2594449 128 0 +2594556 0 0 +2597675 totRewards = 45 +2597675 64 8 +2597875 64 0 +2597920 0 0 +2597969 64 0 +2598419 0 0 +2598448 64 0 +2599285 0 0 +2599293 64 0 +2599432 0 0 +2599457 64 0 +2599909 0 0 +2599936 64 0 +2600074 0 0 +2600097 64 0 +2600414 0 0 +2600433 64 0 +2600563 0 0 +2600596 64 0 +2600725 0 0 +2600772 64 0 +2600890 0 0 +2600949 64 0 +2601047 0 0 +2604007 totRewards = 46 +2604007 128 16 +2604138 0 16 +2604182 128 16 +2604207 128 0 +2604334 0 0 +2604358 128 0 +2604953 0 0 +2604986 128 0 +2605376 0 0 +2605394 128 0 +2605808 0 0 +2605835 128 0 +2605967 0 0 +2605985 128 0 +2606122 0 0 +2606135 128 0 +2606272 0 0 +2606300 128 0 +2606432 0 0 +2606461 128 0 +2606601 0 0 +2606640 128 0 +2606768 0 0 +2606807 128 0 +2606919 0 0 +2606963 128 0 +2607067 0 0 +2607118 128 0 +2607213 0 0 +2607303 128 0 +2607313 0 0 +2607779 128 0 +2607848 0 0 +2607904 128 0 +2610120 0 0 +2612954 totRewards = 47 +2612954 64 8 +2613154 64 0 +2613292 0 0 +2613317 64 0 +2615429 0 0 +2615446 64 0 +2615573 0 0 +2615611 64 0 +2615733 0 0 +2615771 64 0 +2615870 0 0 +2618571 totRewards = 48 +2618571 128 16 +2618771 128 0 +2618887 0 0 +2618900 128 0 +2619108 0 0 +2619120 128 0 +2619497 0 0 +2619543 128 0 +2619918 0 0 +2619954 128 0 +2620363 0 0 +2620391 128 0 +2620510 0 0 +2620544 128 0 +2620904 0 0 +2620928 128 0 +2621061 0 0 +2621089 128 0 +2621226 0 0 +2621255 128 0 +2621369 0 0 +2621404 128 0 +2621520 0 0 +2621552 128 0 +2621699 0 0 +2621709 128 0 +2621843 0 0 +2621884 128 0 +2622000 0 0 +2622047 128 0 +2622163 0 0 +2622220 128 0 +2622346 0 0 +2623071 128 0 +2623182 0 0 +2623626 128 0 +2623700 0 0 +2627843 totRewards = 49 +2627843 64 8 +2628043 64 0 +2628136 0 0 +2628145 64 0 +2630032 0 0 +2630043 64 0 +2630502 0 0 +2630528 64 0 +2630653 0 0 +2630694 64 0 +2630813 0 0 +2630851 64 0 +2630971 0 0 +2631015 64 0 +2631098 0 0 +2633877 totRewards = 50 +2633877 128 16 +2633918 0 16 +2634001 128 16 +2634077 128 0 +2634143 0 0 +2634220 128 0 +2634328 0 0 +2634355 128 0 +2634565 0 0 +2634606 128 0 +2634696 0 0 +2634763 128 0 +2634977 0 0 +2634997 128 0 +2635124 0 0 +2635139 128 0 +2635545 0 0 +2635565 128 0 +2635685 0 0 +2635726 128 0 +2635846 0 0 +2635872 128 0 +2635998 0 0 +2636033 128 0 +2636156 0 0 +2636196 128 0 +2636321 0 0 +2636362 128 0 +2636480 0 0 +2636521 128 0 +2636627 0 0 +2636678 128 0 +2636772 0 0 +2636829 128 0 +2636924 0 0 +2637003 128 0 +2637049 0 0 +2637178 128 0 +2637463 0 0 +2637651 128 0 +2637701 0 0 +2637769 128 0 +2639197 0 0 +2639288 128 0 +2639604 0 0 +2642308 totRewards = 51 +2642308 64 8 +2642508 64 0 +2642755 0 0 +2642780 64 0 +2642990 0 0 +2643012 64 0 +2644727 0 0 +2644744 64 0 +2645038 0 0 +2645057 64 0 +2645191 0 0 +2645218 64 0 +2645347 0 0 +2645388 64 0 +2645496 0 0 +2648343 totRewards = 52 +2648343 128 16 +2648532 0 16 +2648543 0 0 +2648588 128 0 +2648779 0 0 +2648825 128 0 +2648909 0 0 +2648954 128 0 +2649155 0 0 +2649191 128 0 +2649290 0 0 +2649329 128 0 +2649720 0 0 +2649730 128 0 +2650155 0 0 +2650182 128 0 +2650297 0 0 +2650337 128 0 +2650464 0 0 +2650490 128 0 +2650621 0 0 +2650664 128 0 +2650780 0 0 +2650827 128 0 +2650935 0 0 +2650972 128 0 +2651074 0 0 +2651120 128 0 +2651217 0 0 +2651289 128 0 +2651325 0 0 +2653923 totRewards = 53 +2653923 64 8 +2654123 64 0 +2654159 0 0 +2654164 64 0 +2656886 0 0 +2656923 64 0 +2657046 0 0 +2657096 64 0 +2657201 0 0 +2659902 totRewards = 54 +2659902 128 16 +2660074 0 16 +2660102 0 0 +2660120 128 0 +2660236 0 0 +2660248 128 0 +2660836 0 0 +2660882 128 0 +2661980 0 0 +2661989 128 0 +2662272 0 0 +2662301 128 0 +2662434 0 0 +2662461 128 0 +2662597 0 0 +2662628 128 0 +2662757 0 0 +2662797 128 0 +2662914 0 0 +2662953 128 0 +2663064 0 0 +2663102 128 0 +2663664 0 0 +2663762 128 0 +2663778 0 0 +2667190 128 0 +2667285 0 0 +2667322 128 0 +2667332 0 0 +2667348 128 0 +2667390 0 0 +2667467 128 0 +2667512 0 0 +2670338 totRewards = 55 +2670338 64 8 +2670537 0 8 +2670538 0 0 +2670554 64 0 +2673064 0 0 +2673094 64 0 +2673217 0 0 +2673252 64 0 +2673377 0 0 +2673410 64 0 +2673510 0 0 +2676470 totRewards = 56 +2676470 128 16 +2676605 0 16 +2676670 0 0 +2676690 128 0 +2676845 0 0 +2676875 128 0 +2676960 0 0 +2677004 128 0 +2677208 0 0 +2677249 128 0 +2677355 0 0 +2677401 128 0 +2677772 0 0 +2677798 128 0 +2678199 0 0 +2678229 128 0 +2678354 0 0 +2678386 128 0 +2678670 0 0 +2678702 128 0 +2678823 0 0 +2678865 128 0 +2678992 0 0 +2679026 128 0 +2679155 0 0 +2679195 128 0 +2679306 0 0 +2679354 128 0 +2679454 0 0 +2679516 128 0 +2679589 0 0 +2682766 totRewards = 57 +2682766 64 8 +2682966 64 0 +2683919 0 0 +2683933 64 0 +2684207 0 0 +2684224 64 0 +2685002 0 0 +2685015 64 0 +2685143 0 0 +2685175 64 0 +2685455 0 0 +2685474 64 0 +2685599 0 0 +2685657 64 0 +2685736 0 0 +2706877 totRewards = 58 +2706877 128 16 +2707077 128 0 +2707134 0 0 +2707214 128 0 +2707252 0 0 +2707327 128 0 +2707414 0 0 +2707461 128 0 +2707533 0 0 +2707581 128 0 +2707778 0 0 +2707811 128 0 +2707913 0 0 +2707937 128 0 +2708010 0 0 +2708044 128 0 +2708408 0 0 +2708433 128 0 +2708828 0 0 +2708854 128 0 +2708979 0 0 +2709006 128 0 +2709143 0 0 +2709156 128 0 +2709287 0 0 +2709320 128 0 +2709429 0 0 +2709472 128 0 +2709587 0 0 +2709610 128 0 +2709734 0 0 +2709760 128 0 +2709883 0 0 +2709894 128 0 +2710026 0 0 +2710035 128 0 +2710770 0 0 +2710801 128 0 +2710921 0 0 +2710971 128 0 +2711087 0 0 +2711140 128 0 +2711257 0 0 +2711311 128 0 +2711402 0 0 +2711473 128 0 +2711540 0 0 +2714595 totRewards = 59 +2714595 64 8 +2714780 0 8 +2714795 0 0 +2714827 64 0 +2716113 0 0 +2716122 64 0 +2716729 0 0 +2716755 64 0 +2717031 0 0 +2717070 64 0 +2718886 0 0 +2718918 64 0 +2719050 0 0 +2719131 64 0 +2719202 0 0 +2719520 64 0 +2719777 0 0 +2719810 64 0 +2719928 0 0 +2726538 totRewards = 60 +2726538 128 16 +2726738 128 0 +2726850 0 0 +2726888 128 0 +2727361 0 0 +2727372 128 0 +2727476 0 0 +2727496 128 0 +2727604 0 0 +2727635 128 0 +2727743 0 0 +2727763 128 0 +2727882 0 0 +2727908 128 0 +2728014 0 0 +2728049 128 0 +2728154 0 0 +2728191 128 0 +2728304 0 0 +2728339 128 0 +2728457 0 0 +2728493 128 0 +2728610 0 0 +2728654 128 0 +2728777 0 0 +2728828 128 0 +2728944 0 0 +2728988 128 0 +2729096 0 0 +2729146 128 0 +2729258 0 0 +2729311 128 0 +2729409 0 0 +2729448 128 0 +2729568 0 0 +2729585 128 0 +2729718 0 0 +2729757 128 0 +2729881 0 0 +2729920 128 0 +2730029 0 0 +2730079 128 0 +2730192 0 0 +2730243 128 0 +2730360 0 0 +2730364 128 0 +2730508 0 0 +2730526 128 0 +2730654 0 0 +2730683 128 0 +2730815 0 0 +2730851 128 0 +2730979 0 0 +2731018 128 0 +2731152 0 0 +2731200 128 0 +2731309 0 0 +2731371 128 0 +2731471 0 0 +2731551 128 0 +2731656 0 0 +2731757 128 0 +2731869 0 0 +2731971 128 0 +2732012 0 0 +2732183 128 0 +2732229 0 0 +2732309 128 0 +2732386 0 0 +2732469 128 0 +2732494 0 0 +2743355 128 0 +2744545 0 0 +2744578 128 0 +2744976 0 0 +2744989 128 0 +2745109 0 0 +2745726 128 0 +2746827 0 0 +2749691 totRewards = 61 +2749691 64 8 +2749731 0 8 +2749791 64 8 +2749891 64 0 +2749948 0 0 +2749972 64 0 +2750528 0 0 +2750550 64 0 +2752440 0 0 +2752448 64 0 +2752755 0 0 +2752771 64 0 +2752917 0 0 +2752939 64 0 +2753078 0 0 +2753101 64 0 +2753229 0 0 +2753256 64 0 +2753708 0 0 +2753718 64 0 +2753861 0 0 +2753899 64 0 +2754013 0 0 +2757104 totRewards = 62 +2757104 128 16 +2757235 0 16 +2757269 128 16 +2757304 128 0 +2757425 0 0 +2757489 128 0 +2757605 0 0 +2757630 128 0 +2757845 0 0 +2757882 128 0 +2757967 0 0 +2758017 128 0 +2758254 0 0 +2758267 128 0 +2758383 0 0 +2758411 128 0 +2758658 0 0 +2758674 128 0 +2758813 0 0 +2758831 128 0 +2758957 0 0 +2758982 128 0 +2759109 0 0 +2759141 128 0 +2759271 0 0 +2759299 128 0 +2759429 0 0 +2759475 128 0 +2759586 0 0 +2759625 128 0 +2759743 0 0 +2759777 128 0 +2759889 0 0 +2759921 128 0 +2760049 0 0 +2760067 128 0 +2760196 0 0 +2760236 128 0 +2760349 0 0 +2760394 128 0 +2760512 0 0 +2760556 128 0 +2760679 0 0 +2760744 128 0 +2760875 0 0 +2760895 128 0 +2760997 0 0 +2761064 128 0 +2761159 0 0 +2761405 128 0 +2761474 0 0 +2761947 128 0 +2761993 0 0 +2762069 128 0 +2762158 0 0 +2762237 128 0 +2762270 0 0 +2762301 128 0 +2762338 0 0 +2762413 128 0 +2762515 0 0 +2762593 128 0 +2762687 0 0 +2762825 128 0 +2762875 0 0 +2762963 128 0 +2762977 0 0 +2763006 128 0 +2763029 0 0 +2763599 128 0 +2763750 0 0 +2778762 128 0 +2779299 0 0 +2779310 128 0 +2779720 0 0 +2779753 128 0 +2779862 0 0 +2779894 128 0 +2780009 0 0 +2780092 128 0 +2780158 0 0 +2780234 128 0 +2780300 0 0 +2780360 128 0 +2780460 0 0 +2780551 128 0 +2780607 0 0 +2780789 128 0 +2780817 0 0 +2780931 128 0 +2780976 0 0 +2781104 128 0 +2781138 0 0 +2781321 128 0 +2781360 0 0 +2781483 128 0 +2781518 0 0 +2781884 128 0 +2781911 0 0 +2787595 totRewards = 63 +2787595 64 8 +2787795 64 0 +2787877 0 0 +2787916 64 0 +2787951 0 0 +2787971 64 0 +2790162 0 0 +2790167 64 0 +2790645 0 0 +2790670 64 0 +2791939 0 0 +2791975 64 0 +2792085 0 0 +2792148 64 0 +2792219 0 0 +2795469 totRewards = 64 +2795469 128 16 +2795576 0 16 +2795648 128 16 +2795669 128 0 +2795788 0 0 +2795851 128 0 +2795943 0 0 +2796014 128 0 +2796366 0 0 +2796401 128 0 +2796759 0 0 +2796781 128 0 +2797183 0 0 +2797208 128 0 +2797330 0 0 +2797363 128 0 +2797490 0 0 +2797512 128 0 +2797644 0 0 +2797673 128 0 +2797809 0 0 +2797850 128 0 +2797975 0 0 +2798014 128 0 +2798126 0 0 +2798163 128 0 +2798279 0 0 +2798323 128 0 +2798435 0 0 +2798481 128 0 +2798596 0 0 +2798654 128 0 +2798757 0 0 +2798823 128 0 +2798920 0 0 +2807348 totRewards = 65 +2807348 64 8 +2807548 64 0 +2808025 0 0 +2808028 64 0 +2810196 0 0 +2810226 64 0 +2810345 0 0 +2810392 64 0 +2810497 0 0 +2810569 64 0 +2810614 0 0 +2813558 totRewards = 66 +2813558 128 16 +2813758 128 0 +2813988 0 0 +2814012 128 0 +2814112 0 0 +2814179 128 0 +2815017 0 0 +2815036 128 0 +2815165 0 0 +2815173 128 0 +2815303 0 0 +2815311 128 0 +2815449 0 0 +2815465 128 0 +2815591 0 0 +2815617 128 0 +2815755 0 0 +2815768 128 0 +2815898 0 0 +2815928 128 0 +2816053 0 0 +2816098 128 0 +2816217 0 0 +2816253 128 0 +2816375 0 0 +2816390 128 0 +2816978 0 0 +2816985 128 0 +2817129 0 0 +2817155 128 0 +2817290 0 0 +2817312 128 0 +2817449 0 0 +2817473 128 0 +2817609 0 0 +2817652 128 0 +2817764 0 0 +2817804 128 0 +2817924 0 0 +2817966 128 0 +2818098 0 0 +2818153 128 0 +2818262 0 0 +2818318 128 0 +2818429 0 0 +2818489 128 0 +2818598 0 0 +2818666 128 0 +2818768 0 0 +2818819 128 0 +2818930 0 0 +2818995 128 0 +2819118 0 0 +2819166 128 0 +2819284 0 0 +2819343 128 0 +2819453 0 0 +2819521 128 0 +2819551 0 0 +2819579 128 0 +2819597 0 0 +2830526 totRewards = 67 +2830526 64 8 +2830672 0 8 +2830726 0 0 +2830732 64 0 +2831181 0 0 +2831203 64 0 +2832711 0 0 +2832728 64 0 +2833188 0 0 +2833203 64 0 +2833355 0 0 +2833365 64 0 +2833681 0 0 +2833698 64 0 +2833843 0 0 +2834265 64 0 +2835014 0 0 +2835058 64 0 +2835167 0 0 +2835219 64 0 +2835279 0 0 +2837950 totRewards = 68 +2837950 128 16 +2838150 128 0 +2838178 0 0 +2838246 128 0 +2838261 0 0 +2838325 128 0 +2838532 0 0 +2838570 128 0 +2838778 0 0 +2838815 128 0 +2838915 0 0 +2838967 128 0 +2839344 0 0 +2839362 128 0 +2839799 0 0 +2839819 128 0 +2839944 0 0 +2839984 128 0 +2840106 0 0 +2840124 128 0 +2840264 0 0 +2840297 128 0 +2840416 0 0 +2840459 128 0 +2840584 0 0 +2840619 128 0 +2840740 0 0 +2840768 128 0 +2840903 0 0 +2840909 128 0 +2841496 0 0 +2841512 128 0 +2841651 0 0 +2841691 128 0 +2841802 0 0 +2846687 totRewards = 69 +2846687 64 8 +2846887 64 0 +2848800 0 0 +2848810 64 0 +2849435 0 0 +2849465 64 0 +2849584 0 0 +2849630 64 0 +2849756 0 0 +2849769 64 0 +2849895 0 0 +2849972 64 0 +2850025 0 0 +2853239 totRewards = 70 +2853239 128 16 +2853434 0 16 +2853439 0 0 +2853550 128 0 +2853586 0 0 +2853625 128 0 +2853850 0 0 +2853874 128 0 +2854227 0 0 +2854279 128 0 +2854655 0 0 +2854676 128 0 +2854949 0 0 +2854963 128 0 +2855101 0 0 +2855129 128 0 +2855248 0 0 +2855290 128 0 +2855421 0 0 +2855451 128 0 +2855580 0 0 +2855622 128 0 +2855736 0 0 +2855780 128 0 +2855894 0 0 +2855929 128 0 +2856064 0 0 +2856067 128 0 +2856202 0 0 +2856220 128 0 +2856358 0 0 +2856374 128 0 +2856674 0 0 +2856695 128 0 +2856817 0 0 +2856867 128 0 +2856972 0 0 +2860351 totRewards = 71 +2860351 64 8 +2860551 64 0 +2860594 0 0 +2860605 64 0 +2863128 0 0 +2863147 64 0 +2863681 0 0 +2863721 64 0 +2863856 0 0 +2863872 64 0 +2864884 0 0 +2865052 64 0 +2865726 0 0 +2865753 64 0 +2865907 0 0 +2865934 64 0 +2867130 0 0 +2867142 64 0 +2867841 0 0 +2867860 64 0 +2867996 0 0 +2873333 64 0 +2873589 0 0 + + description: state script log run 1 + task_epochs: 2, +, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140306904244688 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +4817847 0 0 +4817864 64 0 +4818025 0 0 +4818034 64 0 +4818369 0 0 +4818377 64 0 +4818526 0 0 +4818555 64 0 +4818673 0 0 +4818736 64 0 +4818831 0 0 +4819088 64 0 +4819182 0 0 +4819213 64 0 +4819739 0 0 +4819764 64 0 +4819903 0 0 +4819950 64 0 +4820061 0 0 +4820111 64 0 +4820420 0 0 +4820429 64 0 +4820510 0 0 +4828786 totRewards = 3 +4828786 128 16 +4828986 128 0 +4829102 0 0 +4829123 128 0 +4829163 0 0 +4829191 128 0 +4829454 0 0 +4829472 128 0 +4829583 0 0 +4829600 128 0 +4829709 0 0 +4829746 128 0 +4829840 0 0 +4829888 128 0 +4829990 0 0 +4830039 128 0 +4830140 0 0 +4830186 128 0 +4830278 0 0 +4830338 128 0 +4830443 0 0 +4830498 128 0 +4830615 0 0 +4830682 128 0 +4830774 0 0 +4830907 128 0 +4830929 0 0 +4831031 128 0 +4831112 0 0 +4831194 128 0 +4831301 0 0 +4831362 128 0 +4831469 0 0 +4831536 128 0 +4831642 0 0 +4831707 128 0 +4831814 0 0 +4831907 128 0 +4831930 0 0 +4831970 128 0 +4832014 0 0 +4832102 128 0 +4832216 0 0 +4832248 128 0 +4832391 0 0 +4832422 128 0 +4833030 0 0 +4833058 128 0 +4833227 0 0 +4833249 128 0 +4833394 0 0 +4833452 128 0 +4833557 0 0 +4833703 128 0 +4833758 0 0 +4833839 128 0 +4833954 0 0 +4834046 128 0 +4834077 0 0 +4834088 128 0 +4834147 0 0 +4834291 128 0 +4834346 0 0 +4834485 128 0 +4834534 0 0 +4834622 128 0 +4834638 0 0 +4834686 128 0 +4834721 0 0 +4834793 128 0 +4834906 0 0 +4834976 128 0 +4835056 0 0 +4852460 totRewards = 4 +4852460 64 8 +4852512 0 8 +4852521 64 8 +4852660 64 0 +4852675 0 0 +4852738 64 0 +4852959 0 0 +4852998 64 0 +4853080 0 0 +4853127 64 0 +4853229 0 0 +4853243 64 0 +4853356 0 0 +4853378 64 0 +4853487 0 0 +4853492 64 0 +4853610 0 0 +4853641 64 0 +4853755 0 0 +4853781 64 0 +4853899 0 0 +4853919 64 0 +4854034 0 0 +4854057 64 0 +4854186 0 0 +4854216 64 0 +4854338 0 0 +4854359 64 0 +4854502 0 0 +4854523 64 0 +4854658 0 0 +4854696 64 0 +4854849 0 0 +4854873 64 0 +4855013 0 0 +4855063 64 0 +4855209 0 0 +4855242 64 0 +4855396 0 0 +4855426 64 0 +4855575 0 0 +4855604 64 0 +4856208 0 0 +4856240 64 0 +4856392 0 0 +4856419 64 0 +4856580 0 0 +4856610 64 0 +4856759 0 0 +4856801 64 0 +4856954 0 0 +4857005 64 0 +4857152 0 0 +4857180 64 0 +4857889 0 0 +4857932 64 0 +4858068 0 0 +4858111 64 0 +4858420 0 0 +4858438 64 0 +4858585 0 0 +4866594 totRewards = 5 +4866594 128 16 +4866662 0 16 +4866681 128 16 +4866794 128 0 +4867290 0 0 +4867314 128 0 +4867550 0 0 +4867587 128 0 +4867683 0 0 +4867725 128 0 +4867812 0 0 +4867845 128 0 +4867957 0 0 +4867982 128 0 +4868100 0 0 +4868124 128 0 +4868232 0 0 +4868271 128 0 +4868372 0 0 +4868411 128 0 +4868516 0 0 +4868554 128 0 +4868673 0 0 +4868705 128 0 +4868821 0 0 +4868874 128 0 +4868991 0 0 +4869036 128 0 +4869154 0 0 +4869203 128 0 +4869318 0 0 +4869385 128 0 +4869503 0 0 +4869568 128 0 +4869673 0 0 +4869754 128 0 +4869863 0 0 +4869946 128 0 +4870043 0 0 +4870126 128 0 +4870241 0 0 +4870282 128 0 +4871043 0 0 +4871067 128 0 +4871200 0 0 +4871242 128 0 +4871377 0 0 +4871431 128 0 +4871575 0 0 +4871609 128 0 +4871755 0 0 +4871817 128 0 +4871920 0 0 +4872003 128 0 +4872024 0 0 +4872068 128 0 +4872107 0 0 +4872194 128 0 +4872273 0 0 +4876373 totRewards = 6 +4876373 64 8 +4876573 64 0 +4876675 0 0 +4876736 64 0 +4876839 0 0 +4876874 64 0 +4876984 0 0 +4876997 64 0 +4877117 0 0 +4877126 64 0 +4877250 0 0 +4877260 64 0 +4877517 0 0 +4877545 64 0 +4877666 0 0 +4877697 64 0 +4877817 0 0 +4877847 64 0 +4877980 0 0 +4878003 64 0 +4878145 0 0 +4878177 64 0 +4878328 0 0 +4878362 64 0 +4878523 0 0 +4878577 64 0 +4878731 0 0 +4878775 64 0 +4878934 0 0 +4878967 64 0 +4879125 0 0 +4879162 64 0 +4879300 0 0 +4879318 64 0 +4880030 0 0 +4880060 64 0 +4880215 0 0 +4880260 64 0 +4880399 0 0 +4880465 64 0 +4880596 0 0 +4880664 64 0 +4880751 0 0 +4880780 64 0 +4881140 0 0 +4881161 64 0 +4881317 0 0 +4881362 64 0 +4881499 0 0 +4881559 64 0 +4881695 0 0 +4881720 64 0 +4882244 0 0 +4882270 64 0 +4882413 0 0 +4882508 64 0 +4882546 0 0 +4896386 64 0 +4896645 0 0 +4896669 64 0 +4896794 0 0 +4896812 64 0 +4896947 0 0 +4896952 64 0 +4897084 0 0 +4897108 64 0 +4897231 0 0 +4897256 64 0 +4897387 0 0 +4897407 64 0 +4897547 0 0 +4897567 64 0 +4897717 0 0 +4897729 64 0 +4897865 0 0 +4897901 64 0 +4898027 0 0 +4898077 64 0 +4898188 0 0 +4898258 64 0 +4898327 0 0 +4901581 totRewards = 7 +4901581 128 16 +4901694 0 16 +4901717 128 16 +4901772 0 16 +4901781 0 0 +4901805 128 0 +4902063 0 0 +4902089 128 0 +4902305 0 0 +4902340 128 0 +4902427 0 0 +4902479 128 0 +4902847 0 0 +4902863 128 0 +4903270 0 0 +4903289 128 0 +4903411 0 0 +4903434 128 0 +4903569 0 0 +4903584 128 0 +4903714 0 0 +4903744 128 0 +4903871 0 0 +4903917 128 0 +4904046 0 0 +4904082 128 0 +4904216 0 0 +4904258 128 0 +4904380 0 0 +4904424 128 0 +4904567 0 0 +4904609 128 0 +4904742 0 0 +4904781 128 0 +4904916 0 0 +4904961 128 0 +4905081 0 0 +4905124 128 0 +4905253 0 0 +4905287 128 0 +4905593 0 0 +4905609 128 0 +4905739 0 0 +4905792 128 0 +4905931 0 0 +4906048 128 0 +4906099 0 0 +4906215 128 0 +4906274 0 0 +4906347 128 0 +4906454 0 0 +4906533 128 0 +4906542 0 0 +4906585 128 0 +4906644 0 0 +4906773 128 0 +4906818 0 0 +4907177 128 0 +4907200 0 0 +4907941 128 0 +4907959 0 0 +4908081 128 0 +4908131 0 0 +4908213 128 0 +4908317 0 0 +4908381 128 0 +4908418 0 0 +4908446 128 0 +4908485 0 0 +4911724 totRewards = 8 +4911724 64 8 +4911924 64 0 +4911941 0 0 +4911962 64 0 +4912433 0 0 +4912458 64 0 +4912573 0 0 +4912601 64 0 +4912851 0 0 +4912869 64 0 +4912989 0 0 +4913014 64 0 +4913134 0 0 +4913160 64 0 +4913459 0 0 +4913478 64 0 +4913610 0 0 +4913641 64 0 +4913784 0 0 +4913808 64 0 +4913964 0 0 +4913989 64 0 +4914118 0 0 +4914155 64 0 +4914296 0 0 +4914326 64 0 +4914463 0 0 +4914498 64 0 +4914627 0 0 +4914667 64 0 +4914793 0 0 +4914823 64 0 +4914974 0 0 +4914985 64 0 +4915471 0 0 +4915498 64 0 +4915646 0 0 +4915671 64 0 +4916187 0 0 +4916204 64 0 +4916350 0 0 +4916378 64 0 +4916503 0 0 +4916561 64 0 +4916674 0 0 +4920485 totRewards = 9 +4920485 128 16 +4920685 128 0 +4920977 0 0 +4921018 128 0 +4921139 0 0 +4921178 128 0 +4921274 0 0 +4921292 128 0 +4921397 0 0 +4921428 128 0 +4921547 0 0 +4921562 128 0 +4921701 0 0 +4921720 128 0 +4921826 0 0 +4921858 128 0 +4921972 0 0 +4921995 128 0 +4922277 0 0 +4922310 128 0 +4922441 0 0 +4922467 128 0 +4922606 0 0 +4922629 128 0 +4922757 0 0 +4922800 128 0 +4922934 0 0 +4922979 128 0 +4923108 0 0 +4923158 128 0 +4923280 0 0 +4923331 128 0 +4923450 0 0 +4923491 128 0 +4924091 0 0 +4924123 128 0 +4924262 0 0 +4924287 128 0 +4924429 0 0 +4924468 128 0 +4924610 0 0 +4924639 128 0 +4924788 0 0 +4924827 128 0 +4924973 0 0 +4925030 128 0 +4925160 0 0 +4925221 128 0 +4925327 0 0 +4925937 128 0 +4925950 0 0 +4928799 totRewards = 10 +4928799 64 8 +4928969 0 8 +4928987 64 8 +4928999 64 0 +4929480 0 0 +4929512 64 0 +4929639 0 0 +4929655 64 0 +4929782 0 0 +4929805 64 0 +4929915 0 0 +4929932 64 0 +4930065 0 0 +4930084 64 0 +4930210 0 0 +4930220 64 0 +4930525 0 0 +4930544 64 0 +4930854 0 0 +4930878 64 0 +4931024 0 0 +4931054 64 0 +4931200 0 0 +4931231 64 0 +4931565 0 0 +4931603 64 0 +4931764 0 0 +4931795 64 0 +4931957 0 0 +4931989 64 0 +4932364 0 0 +4932410 64 0 +4932560 0 0 +4947797 64 0 +4947959 0 0 +4948025 64 0 +4948717 0 0 +4948727 64 0 +4949039 0 0 +4949046 64 0 +4949176 0 0 +4949215 64 0 +4949340 0 0 +4949386 64 0 +4949498 0 0 +4967056 totRewards = 11 +4967056 128 16 +4967231 0 16 +4967256 0 0 +4967312 128 0 +4967362 0 0 +4967376 128 0 +4967612 0 0 +4967650 128 0 +4967858 0 0 +4967882 128 0 +4967971 0 0 +4968022 128 0 +4968377 0 0 +4968394 128 0 +4968518 0 0 +4968538 128 0 +4968794 0 0 +4968807 128 0 +4968951 0 0 +4968957 128 0 +4969082 0 0 +4969104 128 0 +4969226 0 0 +4969252 128 0 +4969378 0 0 +4969407 128 0 +4969531 0 0 +4969563 128 0 +4969697 0 0 +4969720 128 0 +4969861 0 0 +4969900 128 0 +4970025 0 0 +4970067 128 0 +4970192 0 0 +4970228 128 0 +4970347 0 0 +4970388 128 0 +4970503 0 0 +4970541 128 0 +4970971 0 0 +4971005 128 0 +4971135 0 0 +4971168 128 0 +4971305 0 0 +4971337 128 0 +4971468 0 0 +4971506 128 0 +4971636 0 0 +4971677 128 0 +4971809 0 0 +4971862 128 0 +4971983 0 0 +4972038 128 0 +4972151 0 0 +4972225 128 0 +4972334 0 0 +4972421 128 0 +4972490 0 0 +4975667 totRewards = 12 +4975667 64 8 +4975815 0 8 +4975853 64 8 +4975867 64 0 +4976483 0 0 +4976489 64 0 +4976881 0 0 +4976893 64 0 +4977017 0 0 +4977029 64 0 +4977172 0 0 +4977191 64 0 +4977318 0 0 +4977342 64 0 +4977468 0 0 +4977488 64 0 +4977628 0 0 +4977644 64 0 +4977793 0 0 +4977817 64 0 +4977959 0 0 +4977990 64 0 +4978129 0 0 +4978148 64 0 +4978307 0 0 +4978314 64 0 +4978461 0 0 +4978489 64 0 +4978625 0 0 +4978665 64 0 +4978796 0 0 +4978818 64 0 +4979118 0 0 +4979125 64 0 +4979622 0 0 +4979635 64 0 +4979958 0 0 +4979985 64 0 +4980103 0 0 +4980159 64 0 +4980260 0 0 +4983502 totRewards = 13 +4983502 128 16 +4983702 128 0 +4983726 0 0 +4983779 128 0 +4983973 0 0 +4984037 128 0 +4984095 0 0 +4984118 128 0 +4984358 0 0 +4984393 128 0 +4984494 0 0 +4984560 128 0 +4984607 0 0 +4984634 128 0 +4984925 0 0 +4984932 128 0 +4985063 0 0 +4985072 128 0 +4985202 0 0 +4985216 128 0 +4985343 0 0 +4985374 128 0 +4985498 0 0 +4985536 128 0 +4985666 0 0 +4985703 128 0 +4985825 0 0 +4985871 128 0 +4985996 0 0 +4986049 128 0 +4986173 0 0 +4986216 128 0 +4986345 0 0 +4986392 128 0 +4986515 0 0 +4986564 128 0 +4986683 0 0 +4986706 128 0 +4987137 0 0 +4987165 128 0 +4987293 0 0 +4987326 128 0 +4987459 0 0 +4987529 128 0 +4987549 0 0 +4987558 128 0 +4987628 0 0 +4987690 128 0 +4987801 0 0 +4988118 128 0 +4988160 0 0 +4988272 128 0 +4988333 0 0 +4988481 128 0 +4988512 0 0 +4988658 128 0 +4988684 0 0 +4988847 128 0 +4988874 0 0 +4992017 totRewards = 14 +4992017 64 8 +4992217 64 0 +4992245 0 0 +4992258 64 0 +4993747 0 0 +4993755 64 0 +4994232 0 0 +4994243 64 0 +4994394 0 0 +4994418 64 0 +4994917 0 0 +4994937 64 0 +4995077 0 0 +4995101 64 0 +4995241 0 0 +4995266 64 0 +4995416 0 0 +4995427 64 0 +4995585 0 0 +4995600 64 0 +4995760 0 0 +4995767 64 0 +4996645 0 0 +4996677 64 0 +4996811 0 0 +4996862 64 0 +4997027 0 0 +4997159 64 0 +4997203 0 0 +4997275 64 0 +4997417 0 0 +4997432 64 0 +4997789 0 0 +4997818 64 0 +4997960 0 0 +4997999 64 0 +4998121 0 0 +4998164 64 0 +4998268 0 0 +4998346 64 0 +4998393 0 0 +5001232 totRewards = 15 +5001232 128 16 +5001398 0 16 +5001432 0 0 +5001436 128 0 +5001501 0 0 +5001510 128 0 +5001628 0 0 +5001660 128 0 +5001753 0 0 +5001791 128 0 +5002001 0 0 +5002056 128 0 +5002135 0 0 +5002203 128 0 +5002418 0 0 +5002432 128 0 +5002556 0 0 +5002576 128 0 +5002867 0 0 +5002876 128 0 +5002999 0 0 +5003032 128 0 +5003161 0 0 +5003186 128 0 +5003332 0 0 +5003353 128 0 +5003491 0 0 +5003532 128 0 +5003656 0 0 +5003703 128 0 +5003835 0 0 +5003879 128 0 +5004005 0 0 +5004053 128 0 +5004179 0 0 +5004226 128 0 +5004337 0 0 +5004383 128 0 +5004501 0 0 +5004527 128 0 +5004665 0 0 +5004722 128 0 +5004823 0 0 +5004889 128 0 +5004995 0 0 +5005073 128 0 +5005082 0 0 +5005114 128 0 +5005159 0 0 +5005242 128 0 +5005334 0 0 +5005852 128 0 +5005893 0 0 +5008890 totRewards = 16 +5008890 64 8 +5009090 64 0 +5009153 0 0 +5009177 64 0 +5009662 0 0 +5009677 64 0 +5010833 0 0 +5010840 64 0 +5011344 0 0 +5011352 64 0 +5012032 0 0 +5012067 64 0 +5012533 0 0 +5012549 64 0 +5012852 0 0 +5012878 64 0 +5013573 0 0 +5013589 64 0 +5013750 0 0 +5013779 64 0 +5013922 0 0 +5013956 64 0 +5014073 0 0 +5014143 64 0 +5014202 0 0 +5016866 totRewards = 17 +5016866 128 16 +5017035 0 16 +5017066 0 0 +5017093 128 0 +5017282 0 0 +5017317 128 0 +5017427 0 0 +5017472 128 0 +5017682 0 0 +5017714 128 0 +5017810 0 0 +5017879 128 0 +5018240 0 0 +5018268 128 0 +5018689 0 0 +5018729 128 0 +5018864 0 0 +5018897 128 0 +5019039 0 0 +5019070 128 0 +5019192 0 0 +5019238 128 0 +5019368 0 0 +5019406 128 0 +5019540 0 0 +5019606 128 0 +5019715 0 0 +5019777 128 0 +5019895 0 0 +5019949 128 0 +5020073 0 0 +5020130 128 0 +5020253 0 0 +5020329 128 0 +5020438 0 0 +5020490 128 0 +5020632 0 0 +5020694 128 0 +5020806 0 0 +5020877 128 0 +5020988 0 0 +5021053 128 0 +5021167 0 0 +5021203 128 0 +5021466 0 0 +5021522 128 0 +5021633 0 0 +5021662 128 0 +5021802 0 0 +5021856 128 0 +5021973 0 0 +5022016 128 0 +5022131 0 0 +5022266 128 0 +5022292 0 0 +5022425 128 0 +5022475 0 0 +5026113 totRewards = 18 +5026113 64 8 +5026313 64 0 +5026398 0 0 +5026415 64 0 +5027453 0 0 +5027465 64 0 +5028444 0 0 +5028457 64 0 +5028987 0 0 +5029001 64 0 +5029159 0 0 +5029175 64 0 +5029328 0 0 +5029359 64 0 +5030455 0 0 +5030519 64 0 +5030679 0 0 +5030706 64 0 +5031103 0 0 +5031124 64 0 +5031310 0 0 +5031326 64 0 +5031509 0 0 +5031532 64 0 +5031694 0 0 +5031778 64 0 +5031836 0 0 +5038203 totRewards = 19 +5038203 128 16 +5038403 128 0 +5038470 0 0 +5038492 128 0 +5038725 0 0 +5038778 128 0 +5039133 0 0 +5039171 128 0 +5039554 0 0 +5039578 128 0 +5039998 0 0 +5040014 128 0 +5040312 0 0 +5040331 128 0 +5040470 0 0 +5040494 128 0 +5040634 0 0 +5040676 128 0 +5040814 0 0 +5040839 128 0 +5040978 0 0 +5041015 128 0 +5041135 0 0 +5041154 128 0 +5041700 0 0 +5044489 totRewards = 20 +5044489 64 8 +5044677 0 8 +5044689 0 0 +5044711 64 0 +5045338 0 0 +5045366 64 0 +5047558 0 0 +5047585 64 0 +5047726 0 0 +5047750 64 0 +5047899 0 0 +5047908 64 0 +5048219 0 0 +5048237 64 0 +5049433 0 0 +5049446 64 0 +5049579 0 0 +5049625 64 0 +5049732 0 0 +5052543 totRewards = 21 +5052543 128 16 +5052718 0 16 +5052743 0 0 +5052789 128 0 +5052845 0 0 +5052848 128 0 +5052963 0 0 +5053000 128 0 +5053094 0 0 +5053143 128 0 +5053351 0 0 +5053393 128 0 +5053493 0 0 +5053552 128 0 +5053940 0 0 +5053959 128 0 +5054377 0 0 +5054396 128 0 +5054523 0 0 +5054549 128 0 +5054844 0 0 +5054879 128 0 +5055005 0 0 +5055045 128 0 +5055179 0 0 +5055212 128 0 +5055345 0 0 +5055389 128 0 +5055517 0 0 +5055559 128 0 +5055688 0 0 +5055726 128 0 +5055862 0 0 +5055891 128 0 +5056013 0 0 +5056070 128 0 +5056176 0 0 +5056230 128 0 +5056347 0 0 +5056398 128 0 +5056519 0 0 +5056566 128 0 +5056682 0 0 +5056732 128 0 +5056850 0 0 +5056891 128 0 +5057020 0 0 +5057083 128 0 +5057197 0 0 +5057235 128 0 +5057366 0 0 +5057420 128 0 +5057542 0 0 +5057592 128 0 +5057703 0 0 +5057777 128 0 +5057897 0 0 +5057960 128 0 +5058056 0 0 +5061089 totRewards = 22 +5061089 64 8 +5061289 64 0 +5061291 0 0 +5061310 64 0 +5063485 0 0 +5063497 64 0 +5063662 0 0 +5063674 64 0 +5063833 0 0 +5063863 64 0 +5064177 0 0 +5064211 64 0 +5064526 0 0 +5064541 64 0 +5064699 0 0 +5064716 64 0 +5064881 0 0 +5064886 64 0 +5065771 0 0 +5065783 64 0 +5066106 0 0 +5066257 64 0 +5066781 0 0 +5066830 64 0 +5066981 0 0 +5067021 64 0 +5067175 0 0 +5067248 64 0 +5067378 0 0 +5067422 64 0 +5067576 0 0 +5075163 64 0 +5075208 0 0 +5075224 64 0 +5075249 0 0 +5075287 64 0 +5075300 0 0 +5078142 totRewards = 23 +5078142 128 16 +5078258 0 16 +5078302 128 16 +5078342 128 0 +5078345 0 0 +5078381 128 0 +5078596 0 0 +5078633 128 0 +5078843 0 0 +5078862 128 0 +5078967 0 0 +5079003 128 0 +5079951 0 0 +5079980 128 0 +5080260 0 0 +5080281 128 0 +5080419 0 0 +5080466 128 0 +5080587 0 0 +5080629 128 0 +5080761 0 0 +5080802 128 0 +5080927 0 0 +5080975 128 0 +5081092 0 0 +5081138 128 0 +5081251 0 0 +5081293 128 0 +5081556 0 0 +5081592 128 0 +5081697 0 0 +5084357 totRewards = 24 +5084357 64 8 +5084557 64 0 +5084562 0 0 +5084582 64 0 +5087017 0 0 +5087036 64 0 +5087177 0 0 +5087210 64 0 +5087523 0 0 +5087542 64 0 +5087686 0 0 +5087733 64 0 +5087837 0 0 +5087891 64 0 +5088028 0 0 +5088033 64 0 +5088359 0 0 +5088374 64 0 +5088517 0 0 +5092862 totRewards = 25 +5092862 128 16 +5093062 128 0 +5093079 0 0 +5093150 128 0 +5093188 0 0 +5093209 128 0 +5093448 0 0 +5093563 128 0 +5093631 0 0 +5093710 128 0 +5094748 0 0 +5094768 128 0 +5095218 0 0 +5095240 128 0 +5095376 0 0 +5095406 128 0 +5095538 0 0 +5095559 128 0 +5096438 0 0 +5096445 128 0 +5096601 0 0 +5096613 128 0 +5096755 0 0 +5096784 128 0 +5096917 0 0 +5096946 128 0 +5097086 0 0 +5097105 128 0 +5097276 0 0 +5097303 128 0 +5097450 0 0 +5097470 128 0 +5097604 0 0 +5097645 128 0 +5097759 0 0 +5100630 totRewards = 26 +5100630 64 8 +5100819 0 8 +5100829 64 8 +5100830 64 0 +5101055 0 0 +5101068 64 0 +5102287 0 0 +5102294 64 0 +5102437 0 0 +5102446 64 0 +5103424 0 0 +5103442 64 0 +5103578 0 0 +5103612 64 0 +5104060 0 0 +5104071 64 0 +5104375 0 0 +5104400 64 0 +5104529 0 0 +5107046 totRewards = 27 +5107046 128 16 +5107209 0 16 +5107246 0 0 +5107267 128 0 +5107307 0 0 +5107356 128 0 +5107447 0 0 +5107485 128 0 +5107580 0 0 +5107618 128 0 +5107822 0 0 +5107879 128 0 +5107961 0 0 +5108034 128 0 +5108402 0 0 +5108428 128 0 +5108724 0 0 +5108744 128 0 +5108870 0 0 +5108924 128 0 +5109045 0 0 +5109082 128 0 +5109212 0 0 +5109254 128 0 +5109371 0 0 +5109428 128 0 +5109550 0 0 +5109597 128 0 +5109718 0 0 +5109763 128 0 +5109886 0 0 +5109902 128 0 +5110195 0 0 +5110215 128 0 +5110342 0 0 +5110385 128 0 +5110502 0 0 +5110551 128 0 +5110663 0 0 +5110720 128 0 +5110838 0 0 +5110894 128 0 +5111005 0 0 +5111053 128 0 +5111181 0 0 +5111219 128 0 +5111331 0 0 +5111461 128 0 +5111535 0 0 +5111594 128 0 +5111712 0 0 +5111834 128 0 +5111882 0 0 +5111971 128 0 +5112063 0 0 +5114930 totRewards = 28 +5114930 64 8 +5115130 64 0 +5115342 0 0 +5115353 64 0 +5115466 0 0 +5115479 64 0 +5117913 0 0 +5117950 64 0 +5118083 0 0 +5118109 64 0 +5118242 0 0 +5118279 64 0 +5118377 0 0 +5121063 totRewards = 29 +5121063 128 16 +5121263 128 0 +5121284 0 0 +5121321 128 0 +5121531 0 0 +5121579 128 0 +5121675 0 0 +5121685 128 0 +5121914 0 0 +5121958 128 0 +5122058 0 0 +5122093 128 0 +5122352 0 0 +5122359 128 0 +5122485 0 0 +5122515 128 0 +5122943 0 0 +5122971 128 0 +5123104 0 0 +5123135 128 0 +5123279 0 0 +5123289 128 0 +5123418 0 0 +5123458 128 0 +5123589 0 0 +5123625 128 0 +5123756 0 0 +5123809 128 0 +5123944 0 0 +5123994 128 0 +5124120 0 0 +5124169 128 0 +5124287 0 0 +5124333 128 0 +5124454 0 0 +5124473 128 0 +5124906 0 0 +5124936 128 0 +5125070 0 0 +5125110 128 0 +5125219 0 0 +5125272 128 0 +5125381 0 0 +5125430 128 0 +5125545 0 0 +5125607 128 0 +5125722 0 0 +5125814 128 0 +5125902 0 0 +5125984 128 0 +5126082 0 0 +5126164 128 0 +5126250 0 0 +5129004 totRewards = 30 +5129004 64 8 +5129204 64 0 +5131367 0 0 +5131377 64 0 +5132020 0 0 +5132050 64 0 +5132186 0 0 +5132216 64 0 +5132347 0 0 +5132387 64 0 +5132504 0 0 +5132561 64 0 +5132652 0 0 +5135335 totRewards = 31 +5135335 128 16 +5135508 0 16 +5135535 0 0 +5135640 128 0 +5135732 0 0 +5135766 128 0 +5136102 0 0 +5136154 128 0 +5136237 0 0 +5136284 128 0 +5136673 0 0 +5136703 128 0 +5137126 0 0 +5137148 128 0 +5137285 0 0 +5137306 128 0 +5137450 0 0 +5137477 128 0 +5137616 0 0 +5137659 128 0 +5137783 0 0 +5137826 128 0 +5137962 0 0 +5138000 128 0 +5138129 0 0 +5138174 128 0 +5138299 0 0 +5138346 128 0 +5138457 0 0 +5138505 128 0 +5138606 0 0 +5138667 128 0 +5138769 0 0 +5138833 128 0 +5138882 0 0 +5139462 128 0 +5141905 0 0 +5144726 totRewards = 32 +5144726 64 8 +5144926 64 0 +5147101 0 0 +5147127 64 0 +5147279 0 0 +5147299 64 0 +5147604 0 0 +5147640 64 0 +5147763 0 0 +5147786 64 0 +5147925 0 0 +5147955 64 0 +5148080 0 0 +5148143 64 0 +5148214 0 0 +5151111 totRewards = 33 +5151111 128 16 +5151273 0 16 +5151311 0 0 +5151344 128 0 +5151670 0 0 +5151688 128 0 +5151935 0 0 +5151952 128 0 +5152056 0 0 +5152097 128 0 +5152484 0 0 +5152511 128 0 +5152814 0 0 +5152826 128 0 +5152960 0 0 +5153007 128 0 +5153127 0 0 +5153165 128 0 +5153285 0 0 +5153323 128 0 +5153452 0 0 +5153497 128 0 +5153620 0 0 +5153669 128 0 +5153794 0 0 +5153846 128 0 +5153967 0 0 +5154020 128 0 +5154141 0 0 +5154187 128 0 +5154313 0 0 +5154360 128 0 +5154489 0 0 +5154527 128 0 +5154652 0 0 +5154702 128 0 +5154833 0 0 +5154877 128 0 +5155016 0 0 +5155056 128 0 +5155182 0 0 +5155246 128 0 +5155368 0 0 +5155426 128 0 +5155536 0 0 +5155601 128 0 +5155688 0 0 +5158474 totRewards = 34 +5158474 64 8 +5158674 64 0 +5158727 0 0 +5158761 64 0 +5159911 0 0 +5159923 64 0 +5160893 0 0 +5160903 64 0 +5161066 0 0 +5161084 64 0 +5161421 0 0 +5161439 64 0 +5161596 0 0 +5161615 64 0 +5161765 0 0 +5161788 64 0 +5162603 0 0 +5162626 64 0 +5162768 0 0 +5166994 totRewards = 35 +5166994 128 16 +5167136 0 16 +5167194 0 0 +5167204 128 0 +5167391 0 0 +5167411 128 0 +5167529 0 0 +5167569 128 0 +5167669 0 0 +5167684 128 0 +5167770 0 0 +5167808 128 0 +5167905 0 0 +5167957 128 0 +5168206 0 0 +5168217 128 0 +5168342 0 0 +5168369 128 0 +5168809 0 0 +5168840 128 0 +5168968 0 0 +5169002 128 0 +5169134 0 0 +5169159 128 0 +5169295 0 0 +5169332 128 0 +5169458 0 0 +5169504 128 0 +5169624 0 0 +5169671 128 0 +5169796 0 0 +5169842 128 0 +5169962 0 0 +5170008 128 0 +5170127 0 0 +5170167 128 0 +5170295 0 0 +5170342 128 0 +5170465 0 0 +5170518 128 0 +5170617 0 0 +5170685 128 0 +5170792 0 0 +5170855 128 0 +5170967 0 0 +5171038 128 0 +5171144 0 0 +5171212 128 0 +5171289 0 0 +5173934 totRewards = 36 +5173934 64 8 +5174105 0 8 +5174130 64 8 +5174134 64 0 +5175323 0 0 +5175328 64 0 +5176145 0 0 +5176158 64 0 +5176303 0 0 +5176327 64 0 +5176657 0 0 +5176671 64 0 +5176823 0 0 +5176849 64 0 +5176986 0 0 +5177024 64 0 +5177150 0 0 +5177186 64 0 +5177317 0 0 +5177351 64 0 +5177460 0 0 +5180085 totRewards = 37 +5180085 128 16 +5180281 0 16 +5180285 0 0 +5180336 128 0 +5180527 0 0 +5180575 128 0 +5180662 0 0 +5180700 128 0 +5180918 0 0 +5180954 128 0 +5181053 0 0 +5181106 128 0 +5181492 0 0 +5181532 128 0 +5181796 0 0 +5181808 128 0 +5181944 0 0 +5181984 128 0 +5182104 0 0 +5182141 128 0 +5182279 0 0 +5182301 128 0 +5182427 0 0 +5182469 128 0 +5182594 0 0 +5182641 128 0 +5182770 0 0 +5182816 128 0 +5182934 0 0 +5182984 128 0 +5183104 0 0 +5183144 128 0 +5183270 0 0 +5183318 128 0 +5183450 0 0 +5183501 128 0 +5183601 0 0 +5183652 128 0 +5183762 0 0 +5183813 128 0 +5183927 0 0 +5183980 128 0 +5184082 0 0 +5184162 128 0 +5184268 0 0 +5184311 128 0 +5184425 0 0 +5184559 128 0 +5184626 0 0 +5185072 128 0 +5185147 0 0 +5185231 128 0 +5185272 0 0 +5185296 128 0 +5185303 0 0 +5188151 totRewards = 38 +5188151 64 8 +5188332 0 8 +5188350 64 8 +5188351 64 0 +5190520 0 0 +5190537 64 0 +5190865 0 0 +5190895 64 0 +5191213 0 0 +5191231 64 0 +5191381 0 0 +5191404 64 0 +5191556 0 0 +5191573 64 0 +5192075 0 0 +5192099 64 0 +5192965 0 0 +5192984 64 0 +5193154 0 0 +5193167 64 0 +5193500 0 0 +5193536 64 0 +5193666 0 0 +5193714 64 0 +5193793 0 0 +5196578 totRewards = 39 +5196578 128 16 +5196719 0 16 +5196778 0 0 +5196807 128 0 +5197286 0 0 +5197323 128 0 +5197431 0 0 +5197464 128 0 +5197547 0 0 +5197563 128 0 +5197996 0 0 +5198009 128 0 +5198294 0 0 +5198319 128 0 +5198449 0 0 +5198485 128 0 +5198614 0 0 +5198641 128 0 +5198769 0 0 +5198799 128 0 +5198933 0 0 +5198975 128 0 +5199094 0 0 +5199148 128 0 +5199275 0 0 +5199329 128 0 +5199449 0 0 +5199518 128 0 +5199607 0 0 +5199690 128 0 +5199748 0 0 +5203235 totRewards = 40 +5203235 64 8 +5203415 0 8 +5203435 0 0 +5203438 64 0 +5205107 0 0 +5205131 64 0 +5205618 0 0 +5205640 64 0 +5205789 0 0 +5205810 64 0 +5205961 0 0 +5205986 64 0 +5206121 0 0 +5206161 64 0 +5206276 0 0 +5206327 64 0 +5206421 0 0 +5209042 totRewards = 41 +5209042 128 16 +5209223 0 16 +5209242 0 0 +5209294 128 0 +5209472 0 0 +5209519 128 0 +5209608 0 0 +5209656 128 0 +5209867 0 0 +5209908 128 0 +5210005 0 0 +5210057 128 0 +5210438 0 0 +5210467 128 0 +5210751 0 0 +5210780 128 0 +5210900 0 0 +5210941 128 0 +5211065 0 0 +5211087 128 0 +5211230 0 0 +5211258 128 0 +5211393 0 0 +5211444 128 0 +5211563 0 0 +5211607 128 0 +5211729 0 0 +5211770 128 0 +5211893 0 0 +5211940 128 0 +5212057 0 0 +5212095 128 0 +5212221 0 0 +5212270 128 0 +5212388 0 0 +5212429 128 0 +5212552 0 0 +5212601 128 0 +5212747 0 0 +5212781 128 0 +5212909 0 0 +5212955 128 0 +5213071 0 0 +5213126 128 0 +5213223 0 0 +5213294 128 0 +5213369 0 0 +5216038 totRewards = 42 +5216038 64 8 +5216238 64 0 +5216247 0 0 +5216259 64 0 +5218419 0 0 +5218428 64 0 +5218758 0 0 +5218770 64 0 +5218912 0 0 +5218942 64 0 +5219076 0 0 +5219101 64 0 +5219245 0 0 +5219268 64 0 +5219408 0 0 +5219438 64 0 +5220449 0 0 +5220460 64 0 +5220626 0 0 +5220655 64 0 +5221023 0 0 +5221083 64 0 +5221441 0 0 +5221475 64 0 +5221949 0 0 +5221963 64 0 +5222108 0 0 +5222154 64 0 +5222271 0 0 +5222314 64 0 +5222434 0 0 +5226833 totRewards = 43 +5226833 128 16 +5227029 0 16 +5227033 0 0 +5227068 128 0 +5227277 0 0 +5227314 128 0 +5227672 0 0 +5227701 128 0 +5227812 0 0 +5227856 128 0 +5228250 0 0 +5228269 128 0 +5228687 0 0 +5228717 128 0 +5228853 0 0 +5228883 128 0 +5229023 0 0 +5229047 128 0 +5229184 0 0 +5229217 128 0 +5229351 0 0 +5229391 128 0 +5229519 0 0 +5229560 128 0 +5229679 0 0 +5229726 128 0 +5229826 0 0 +5229892 128 0 +5229979 0 0 +5230197 128 0 +5230771 0 0 +5233366 totRewards = 44 +5233366 64 8 +5233551 0 8 +5233566 0 0 +5233570 64 0 +5236348 0 0 +5236382 64 0 +5236501 0 0 +5236547 64 0 +5236653 0 0 +5239276 totRewards = 45 +5239276 128 16 +5239441 0 16 +5239476 0 0 +5239495 128 0 +5239684 0 0 +5239726 128 0 +5239830 0 0 +5239895 128 0 +5240273 0 0 +5240306 128 0 +5240717 0 0 +5240725 128 0 +5240855 0 0 +5240863 128 0 +5241154 0 0 +5241165 128 0 +5241305 0 0 +5241323 128 0 +5241455 0 0 +5241482 128 0 +5241616 0 0 +5241658 128 0 +5241782 0 0 +5241833 128 0 +5241966 0 0 +5242016 128 0 +5242143 0 0 +5242194 128 0 +5242316 0 0 +5242370 128 0 +5242490 0 0 +5242535 128 0 +5242649 0 0 +5242709 128 0 +5242811 0 0 +5242872 128 0 +5242964 0 0 +5243013 128 0 +5243124 0 0 +5243177 128 0 +5243289 0 0 +5243345 128 0 +5243466 0 0 +5243531 128 0 +5243632 0 0 +5243708 128 0 +5243816 0 0 +5243886 128 0 +5243967 0 0 +5247055 totRewards = 46 +5247055 64 8 +5247095 0 8 +5247106 64 8 +5247255 64 0 +5247283 0 0 +5247299 64 0 +5247905 0 0 +5247914 64 0 +5249400 0 0 +5249416 64 0 +5249745 0 0 +5249755 64 0 +5249905 0 0 +5249925 64 0 +5250068 0 0 +5250096 64 0 +5250554 0 0 +5250578 64 0 +5250890 0 0 +5250911 64 0 +5251051 0 0 +5251086 64 0 +5251207 0 0 +5251264 64 0 +5251360 0 0 +5253848 totRewards = 47 +5253848 128 16 +5254029 0 16 +5254048 0 0 +5254082 128 0 +5254276 0 0 +5254321 128 0 +5254415 0 0 +5254473 128 0 +5254688 0 0 +5254718 128 0 +5254821 0 0 +5254886 128 0 +5255267 0 0 +5255294 128 0 +5255721 0 0 +5255756 128 0 +5255882 0 0 +5255919 128 0 +5256059 0 0 +5256087 128 0 +5256223 0 0 +5256256 128 0 +5256381 0 0 +5256422 128 0 +5256552 0 0 +5256592 128 0 +5256711 0 0 +5256753 128 0 +5256878 0 0 +5256917 128 0 +5257042 0 0 +5257080 128 0 +5257207 0 0 +5257262 128 0 +5257366 0 0 +5257424 128 0 +5257525 0 0 +5257585 128 0 +5257691 0 0 +5257749 128 0 +5257859 0 0 +5257942 128 0 +5258054 0 0 +5258082 128 0 +5258211 0 0 +5258290 128 0 +5258369 0 0 +5258430 128 0 +5258531 0 0 +5258621 128 0 +5258643 0 0 +5258681 128 0 +5258722 0 0 +5258805 128 0 +5258896 0 0 +5258967 128 0 +5259053 0 0 +5261742 totRewards = 48 +5261742 64 8 +5261942 64 0 +5264296 0 0 +5264315 64 0 +5264997 0 0 +5265015 64 0 +5265320 0 0 +5265342 64 0 +5265648 0 0 +5265663 64 0 +5267205 0 0 +5267225 64 0 +5267360 0 0 +5267409 64 0 +5267507 0 0 +5270186 totRewards = 49 +5270186 128 16 +5270358 0 16 +5270386 0 0 +5270420 128 0 +5270639 0 0 +5270646 128 0 +5270761 0 0 +5270798 128 0 +5271031 0 0 +5271040 128 0 +5271155 0 0 +5271208 128 0 +5271579 0 0 +5271605 128 0 +5272037 0 0 +5272061 128 0 +5272198 0 0 +5272217 128 0 +5272359 0 0 +5272388 128 0 +5272532 0 0 +5272559 128 0 +5272697 0 0 +5272729 128 0 +5272858 0 0 +5272894 128 0 +5273019 0 0 +5273052 128 0 +5273179 0 0 +5273220 128 0 +5273350 0 0 +5273392 128 0 +5273511 0 0 +5273571 128 0 +5273666 0 0 +5273739 128 0 +5273835 0 0 +5273900 128 0 +5273928 0 0 +5273957 128 0 +5273973 0 0 +5274089 128 0 +5274170 0 0 +5274801 128 0 +5274825 0 0 +5277683 totRewards = 50 +5277683 64 8 +5277883 64 0 +5277903 0 0 +5277906 64 0 +5278381 0 0 +5278392 64 0 +5279198 0 0 +5279207 64 0 +5280021 0 0 +5280054 64 0 +5280388 0 0 +5280417 64 0 +5280565 0 0 +5280604 64 0 +5280742 0 0 +5280757 64 0 +5280917 0 0 +5280927 64 0 +5281087 0 0 +5281096 64 0 +5281246 0 0 +5281271 64 0 +5281422 0 0 +5281430 64 0 +5281916 0 0 +5281955 64 0 +5282063 0 0 +5284584 totRewards = 51 +5284583 128 16 +5284755 0 16 +5284783 0 0 +5284811 128 0 +5284992 0 0 +5285039 128 0 +5285134 0 0 +5285177 128 0 +5285398 0 0 +5285437 128 0 +5285537 0 0 +5285606 128 0 +5285978 0 0 +5286006 128 0 +5286276 0 0 +5286287 128 0 +5286413 0 0 +5286444 128 0 +5286572 0 0 +5286599 128 0 +5286738 0 0 +5286755 128 0 +5286904 0 0 +5286937 128 0 +5287064 0 0 +5287106 128 0 +5287229 0 0 +5287265 128 0 +5287391 0 0 +5287433 128 0 +5287544 0 0 +5287588 128 0 +5287709 0 0 +5287726 128 0 +5287868 0 0 +5287929 128 0 +5288015 0 0 +5290701 totRewards = 52 +5290701 64 8 +5290886 0 8 +5290898 64 8 +5290901 64 0 +5291551 0 0 +5291558 64 0 +5292463 0 0 +5292481 64 0 +5292627 0 0 +5292650 64 0 +5292960 0 0 +5292981 64 0 +5293117 0 0 +5293150 64 0 +5293276 0 0 +5293318 64 0 +5293442 0 0 +5293484 64 0 +5293587 0 0 +5296114 totRewards = 53 +5296114 128 16 +5296276 0 16 +5296314 0 0 +5296336 128 0 +5296507 0 0 +5296515 128 0 +5296673 0 0 +5296710 128 0 +5296948 0 0 +5296964 128 0 +5297059 0 0 +5297113 128 0 +5297498 0 0 +5297528 128 0 +5297810 0 0 +5297822 128 0 +5297954 0 0 +5297985 128 0 +5298116 0 0 +5298140 128 0 +5298278 0 0 +5298300 128 0 +5298435 0 0 +5298474 128 0 +5298606 0 0 +5298639 128 0 +5298778 0 0 +5298824 128 0 +5298944 0 0 +5298994 128 0 +5299098 0 0 +5299160 128 0 +5299257 0 0 +5299340 128 0 +5299402 0 0 +5302379 totRewards = 54 +5302379 64 8 +5302574 0 8 +5302579 0 0 +5302599 64 0 +5303763 0 0 +5303775 64 0 +5304720 0 0 +5304732 64 0 +5304878 0 0 +5304909 64 0 +5305067 0 0 +5305086 64 0 +5305224 0 0 +5305281 64 0 +5305378 0 0 +5305447 64 0 +5305554 0 0 +5306037 64 0 +5306058 0 0 +5306098 64 0 +5306224 0 0 +5306269 64 0 +5306388 0 0 +5309592 totRewards = 55 +5309592 128 16 +5309619 0 16 +5309658 128 16 +5309792 128 0 +5309830 0 0 +5309860 128 0 +5310483 0 0 +5310511 128 0 +5310769 0 0 +5310776 128 0 +5310902 0 0 +5310928 128 0 +5311041 0 0 +5311068 128 0 +5311200 0 0 +5311215 128 0 +5311365 0 0 +5311383 128 0 +5311511 0 0 +5311559 128 0 +5311681 0 0 +5311714 128 0 +5311848 0 0 +5311888 128 0 +5312016 0 0 +5312064 128 0 +5312184 0 0 +5312228 128 0 +5312346 0 0 +5312394 128 0 +5312499 0 0 +5312555 128 0 +5312645 0 0 +5312723 128 0 +5312810 0 0 +5313047 128 0 +5313173 0 0 +5313288 128 0 +5314099 0 0 +5318179 totRewards = 56 +5318179 64 8 +5318377 0 8 +5318379 0 0 +5318406 64 0 +5319133 0 0 +5319139 64 0 +5320503 0 0 +5320519 64 0 +5320656 0 0 +5320693 64 0 +5320811 0 0 +5320850 64 0 +5320959 0 0 +5322418 64 0 +5322432 0 0 +5324991 totRewards = 57 +5324991 128 16 +5325151 0 16 +5325191 0 0 +5325200 128 0 +5325398 0 0 +5325415 128 0 +5325523 0 0 +5325584 128 0 +5325776 0 0 +5325811 128 0 +5325912 0 0 +5325966 128 0 +5326338 0 0 +5326368 128 0 +5327322 0 0 +5327332 128 0 +5327480 0 0 +5327498 128 0 +5327632 0 0 +5327656 128 0 +5327786 0 0 +5327811 128 0 +5327945 0 0 +5327975 128 0 +5328110 0 0 +5328143 128 0 +5328257 0 0 +5328293 128 0 +5328427 0 0 +5328463 128 0 +5328588 0 0 +5328634 128 0 +5328755 0 0 +5328805 128 0 +5328918 0 0 +5328976 128 0 +5329078 0 0 +5329142 128 0 +5329246 0 0 +5329289 128 0 +5329399 0 0 +5332415 totRewards = 58 +5332415 64 8 +5332615 64 0 +5332650 0 0 +5332712 64 0 +5334670 0 0 +5334690 64 0 +5334833 0 0 +5334854 64 0 +5334987 0 0 +5335009 64 0 +5335150 0 0 +5335174 64 0 +5335309 0 0 +5335347 64 0 +5335474 0 0 +5335509 64 0 +5335638 0 0 +5335665 64 0 +5335812 0 0 +5335825 64 0 +5335977 0 0 +5335989 64 0 +5336132 0 0 +5336173 64 0 +5336471 0 0 +5336482 64 0 +5336637 0 0 +5336655 64 0 +5336787 0 0 +5336837 64 0 +5336953 0 0 +5337017 64 0 +5337057 0 0 +5340738 totRewards = 59 +5340738 128 16 +5340938 128 0 +5340949 0 0 +5340986 128 0 +5341337 0 0 +5341353 128 0 +5341754 0 0 +5341807 128 0 +5342184 0 0 +5342202 128 0 +5342624 0 0 +5342638 128 0 +5342771 0 0 +5342796 128 0 +5342931 0 0 +5342953 128 0 +5343088 0 0 +5343118 128 0 +5343246 0 0 +5343281 128 0 +5343408 0 0 +5343455 128 0 +5343575 0 0 +5343622 128 0 +5343735 0 0 +5343781 128 0 +5343895 0 0 +5343926 128 0 +5344050 0 0 +5344088 128 0 +5344204 0 0 +5344259 128 0 +5344368 0 0 +5344422 128 0 +5344528 0 0 +5344586 128 0 +5344693 0 0 +5344746 128 0 +5344845 0 0 +5344903 128 0 +5345007 0 0 +5345065 128 0 +5345170 0 0 +5345260 128 0 +5345346 0 0 +5345389 128 0 +5345506 0 0 +5345566 128 0 +5345688 0 0 +5345752 128 0 +5345862 0 0 +5345936 128 0 +5346010 0 0 +5348749 totRewards = 60 +5348749 64 8 +5348932 0 8 +5348949 0 0 +5348955 64 0 +5349575 0 0 +5349586 64 0 +5351427 0 0 +5351438 64 0 +5351570 0 0 +5351611 64 0 +5351720 0 0 +5351773 64 0 +5351873 0 0 +5351958 64 0 +5351995 0 0 +5354755 totRewards = 61 +5354755 128 16 +5354947 0 16 +5354955 0 0 +5354987 128 0 +5355182 0 0 +5355204 128 0 +5355316 0 0 +5355360 128 0 +5355573 0 0 +5355592 128 0 +5355706 0 0 +5355759 128 0 +5355994 0 0 +5356004 128 0 +5356124 0 0 +5356157 128 0 +5356593 0 0 +5356616 128 0 +5356753 0 0 +5356784 128 0 +5356918 0 0 +5356941 128 0 +5357071 0 0 +5357100 128 0 +5357234 0 0 +5357272 128 0 +5357405 0 0 +5357437 128 0 +5357556 0 0 +5357598 128 0 +5357716 0 0 +5357750 128 0 +5357878 0 0 +5357912 128 0 +5358031 0 0 +5358080 128 0 +5358197 0 0 +5358243 128 0 +5358353 0 0 +5358414 128 0 +5358505 0 0 +5358573 128 0 +5358691 0 0 +5358728 128 0 +5358841 0 0 +5358912 128 0 +5359000 0 0 +5359081 128 0 +5359189 0 0 +5359263 128 0 +5359342 0 0 +5362057 totRewards = 62 +5362057 64 8 +5362240 0 8 +5362255 64 8 +5362256 64 0 +5364529 0 0 +5364535 64 0 +5364841 0 0 +5364872 64 0 +5364998 0 0 +5365030 64 0 +5365160 0 0 +5365197 64 0 +5365325 0 0 +5365363 64 0 +5365479 0 0 +5365550 64 0 +5365625 0 0 +5368308 totRewards = 63 +5368308 128 16 +5368490 0 16 +5368508 0 0 +5368570 128 0 +5368749 0 0 +5368798 128 0 +5368891 0 0 +5368932 128 0 +5369147 0 0 +5369186 128 0 +5369281 0 0 +5369350 128 0 +5369568 0 0 +5369577 128 0 +5369706 0 0 +5369736 128 0 +5370019 0 0 +5370040 128 0 +5370166 0 0 +5370207 128 0 +5370331 0 0 +5370362 128 0 +5370480 0 0 +5370515 128 0 +5370642 0 0 +5370685 128 0 +5370801 0 0 +5370854 128 0 +5370975 0 0 +5371021 128 0 +5371135 0 0 +5371176 128 0 +5371298 0 0 +5371341 128 0 +5371461 0 0 +5371506 128 0 +5371623 0 0 +5371672 128 0 +5371804 0 0 +5371845 128 0 +5371968 0 0 +5372016 128 0 +5372139 0 0 +5372193 128 0 +5372294 0 0 +5372364 128 0 +5372433 0 0 +5375091 totRewards = 64 +5375091 64 8 +5375276 0 8 +5375291 0 0 +5375298 64 0 +5376063 0 0 +5376071 64 0 +5377109 0 0 +5377131 64 0 +5377278 0 0 +5377297 64 0 +5377596 0 0 +5377616 64 0 +5377776 0 0 +5377783 64 0 +5377931 0 0 +5377956 64 0 +5378099 0 0 +5378128 64 0 +5378265 0 0 +5378286 64 0 +5378423 0 0 +5378457 64 0 +5378590 0 0 +5378620 64 0 +5378759 0 0 +5378777 64 0 +5378915 0 0 +5378949 64 0 +5379087 0 0 +5379108 64 0 +5379237 0 0 +5379291 64 0 +5379402 0 0 +5381937 totRewards = 65 +5381937 128 16 +5382101 0 16 +5382137 0 0 +5382157 128 0 +5382344 0 0 +5382383 128 0 +5382489 0 0 +5382551 128 0 +5382890 0 0 +5382957 128 0 +5383047 0 0 +5383059 128 0 +5383692 0 0 +5383711 128 0 +5383842 0 0 +5383868 128 0 +5384010 0 0 +5384025 128 0 +5384166 0 0 +5384194 128 0 +5384329 0 0 +5384367 128 0 +5384495 0 0 +5384532 128 0 +5384659 0 0 +5384698 128 0 +5384814 0 0 +5384873 128 0 +5384972 0 0 +5385039 128 0 +5385156 0 0 +5385830 128 0 +5385930 0 0 +5385971 128 0 +5386091 0 0 +5386139 128 0 +5386269 0 0 +5386303 128 0 +5386430 0 0 +5386492 128 0 +5386634 0 0 +5386673 128 0 +5386800 0 0 +5386861 128 0 +5386988 0 0 +5387051 128 0 +5387172 0 0 +5387215 128 0 +5387328 0 0 +5387378 128 0 +5387504 0 0 +5387542 128 0 +5387661 0 0 +5387707 128 0 +5387832 0 0 +5387887 128 0 +5387992 0 0 +5388068 128 0 +5388145 0 0 +5391087 totRewards = 66 +5391087 64 8 +5391276 0 8 +5391287 0 0 +5391300 64 0 +5393721 0 0 +5393739 64 0 +5393886 0 0 +5393911 64 0 +5394039 0 0 +5394086 64 0 +5394193 0 0 +5394251 64 0 +5394352 0 0 +5394421 64 0 +5394483 0 0 +5398835 totRewards = 67 +5398835 128 16 +5399035 128 0 +5399090 0 0 +5399138 128 0 +5399333 0 0 +5399362 128 0 +5399459 0 0 +5399489 128 0 +5399707 0 0 +5399748 128 0 +5399841 0 0 +5399886 128 0 +5399976 0 0 +5399988 128 0 +5400127 0 0 +5400137 128 0 +5400266 0 0 +5400294 128 0 +5400408 0 0 +5400433 128 0 +5400565 0 0 +5400584 128 0 +5400714 0 0 +5400750 128 0 +5400873 0 0 +5400918 128 0 +5401040 0 0 +5401076 128 0 +5401200 0 0 +5401239 128 0 +5401363 0 0 +5401408 128 0 +5401524 0 0 +5401560 128 0 +5401686 0 0 +5401701 128 0 +5401840 0 0 +5401880 128 0 +5402002 0 0 +5402041 128 0 +5402160 0 0 +5402210 128 0 +5402314 0 0 +5402368 128 0 +5402477 0 0 +5402529 128 0 +5402635 0 0 +5402694 128 0 +5402784 0 0 +5402882 128 0 +5402984 0 0 +5403249 128 0 +5403296 0 0 +5403570 128 0 +5403643 0 0 +5406420 totRewards = 68 +5406420 64 8 +5406620 64 0 +5406622 0 0 +5406646 64 0 +5408106 0 0 +5408123 64 0 +5408592 0 0 +5408611 64 0 +5408758 0 0 +5408784 64 0 +5408937 0 0 +5408952 64 0 +5409108 0 0 +5409132 64 0 +5409264 0 0 +5409287 64 0 +5409437 0 0 +5409465 64 0 +5409612 0 0 +5409642 64 0 +5409782 0 0 +5409811 64 0 +5409948 0 0 +5409995 64 0 +5410134 0 0 +5410195 64 0 +5410275 0 0 +5410788 64 0 +5410832 0 0 +5410875 64 0 +5411017 0 0 +5411024 64 0 +5411168 0 0 +5411200 64 0 +5411349 0 0 +5411375 64 0 +5411527 0 0 +5411550 64 0 +5411699 0 0 +5411717 64 0 +5411889 0 0 +5411901 64 0 +5412053 0 0 +5412087 64 0 +5412224 0 0 +5412300 64 0 +5412325 0 0 +5418269 totRewards = 69 +5418269 128 16 +5418399 0 16 +5418468 128 16 +5418469 128 0 +5418792 0 0 +5418841 128 0 +5419045 0 0 +5419075 128 0 +5419175 0 0 +5419231 128 0 +5419455 0 0 +5419467 128 0 +5419592 0 0 +5419617 128 0 +5419893 0 0 +5419913 128 0 +5420032 0 0 +5420071 128 0 +5420197 0 0 +5420225 128 0 +5420345 0 0 +5420384 128 0 +5420512 0 0 +5420556 128 0 +5420670 0 0 +5420731 128 0 +5420829 0 0 +5420888 128 0 +5420963 0 0 +5424289 totRewards = 70 +5424289 64 8 +5424475 0 8 +5424489 0 0 +5424500 64 0 +5426607 0 0 +5426627 64 0 +5426775 0 0 +5426787 64 0 +5426925 0 0 +5426954 64 0 +5427080 0 0 +5427125 64 0 +5427228 0 0 +5427299 64 0 +5427312 0 0 +5430011 totRewards = 71 +5430011 128 16 +5430211 128 0 +5430218 0 0 +5430279 128 0 +5430439 0 0 +5430494 128 0 +5430831 0 0 +5430874 128 0 +5430987 0 0 +5431072 128 0 +5431125 0 0 +5431138 128 0 +5431424 0 0 +5431445 128 0 +5431713 0 0 +5431718 128 0 +5431857 0 0 +5431895 128 0 +5432009 0 0 +5432044 128 0 +5432169 0 0 +5432192 128 0 +5432313 0 0 +5432348 128 0 +5432462 0 0 +5432505 128 0 +5432618 0 0 +5432665 128 0 +5432775 0 0 +5432826 128 0 +5432934 0 0 +5432983 128 0 +5433094 0 0 +5433142 128 0 +5433251 0 0 +5433307 128 0 +5433418 0 0 +5433475 128 0 +5433577 0 0 +5433640 128 0 +5433722 0 0 +5436443 totRewards = 72 +5436443 64 8 +5436641 0 8 +5436643 0 0 +5436665 64 0 +5438756 0 0 +5438773 64 0 +5439085 0 0 +5439110 64 0 +5439254 0 0 +5439276 64 0 +5439402 0 0 +5439442 64 0 +5439557 0 0 +5439602 64 0 +5439714 0 0 +5439758 64 0 +5439867 0 0 +5442610 totRewards = 73 +5442610 128 16 +5442773 0 16 +5442810 0 0 +5442845 128 0 +5443019 0 0 +5443055 128 0 +5443148 0 0 +5443213 128 0 +5443420 0 0 +5443446 128 0 +5443556 0 0 +5443614 128 0 +5443832 0 0 +5443843 128 0 +5443977 0 0 +5443985 128 0 +5444268 0 0 +5444278 128 0 +5444412 0 0 +5444438 128 0 +5444573 0 0 +5444607 128 0 +5444730 0 0 +5444752 128 0 +5444878 0 0 +5444915 128 0 +5445039 0 0 +5445081 128 0 +5445208 0 0 +5445252 128 0 +5445373 0 0 +5445411 128 0 +5445526 0 0 +5445575 128 0 +5445683 0 0 +5445738 128 0 +5445834 0 0 +5445898 128 0 +5445989 0 0 +5446046 128 0 +5446150 0 0 +5446211 128 0 +5446310 0 0 +5446397 128 0 +5446509 0 0 +5446539 128 0 +5446667 0 0 +5446742 128 0 +5446835 0 0 +5446916 128 0 +5447011 0 0 +5449983 totRewards = 74 +5449983 64 8 +5450178 0 8 +5450183 0 0 +5450197 64 0 +5451724 0 0 +5451733 64 0 +5451888 0 0 +5451900 64 0 +5452222 0 0 +5452249 64 0 +5452387 0 0 +5452422 64 0 +5452547 0 0 +5452586 64 0 +5452713 0 0 +5452736 64 0 +5452874 0 0 +5452894 64 0 +5453373 0 0 +5453386 64 0 +5453527 0 0 +5453564 64 0 +5453680 0 0 +5456274 totRewards = 75 +5456274 128 16 +5456427 0 16 +5456474 0 0 +5456483 128 0 +5456835 0 0 +5456882 128 0 +5457122 0 0 +5457146 128 0 +5457242 0 0 +5457297 128 0 +5457671 0 0 +5457705 128 0 +5457825 0 0 +5457838 128 0 +5457973 0 0 +5457984 128 0 +5458119 0 0 +5458165 128 0 +5458286 0 0 +5458319 128 0 +5458445 0 0 +5458475 128 0 +5458598 0 0 +5458642 128 0 +5458750 0 0 +5458790 128 0 +5458921 0 0 +5458952 128 0 +5459070 0 0 +5459126 128 0 +5459229 0 0 +5459277 128 0 +5459386 0 0 +5459440 128 0 +5459546 0 0 +5459621 128 0 +5459644 0 0 +5459774 128 0 +5459857 0 0 +5459935 128 0 +5460016 0 0 +5460084 128 0 +5460198 0 0 +5460274 128 0 +5460381 0 0 +5460440 128 0 +5460533 0 0 +5460623 128 0 +5460644 0 0 +5460673 128 0 +5460720 0 0 +5460804 128 0 +5460897 0 0 +5463771 totRewards = 76 +5463771 64 8 +5463967 0 8 +5463971 0 0 +5463984 64 0 +5465144 0 0 +5465156 64 0 +5466272 0 0 +5466284 64 0 +5466429 0 0 +5466450 64 0 +5466586 0 0 +5466623 64 0 +5466737 0 0 +5466779 64 0 +5466888 0 0 +5466994 64 0 +5467017 0 0 +5469571 totRewards = 77 +5469571 128 16 +5469749 0 16 +5469771 0 0 +5469802 128 0 +5470003 0 0 +5470052 128 0 +5470145 0 0 +5470209 128 0 +5470409 0 0 +5470438 128 0 +5470546 0 0 +5470607 128 0 +5470707 0 0 +5470712 128 0 +5470840 0 0 +5470857 128 0 +5470975 0 0 +5471008 128 0 +5471431 0 0 +5471463 128 0 +5471582 0 0 +5471623 128 0 +5471750 0 0 +5471786 128 0 +5471912 0 0 +5471953 128 0 +5472074 0 0 +5472124 128 0 +5472240 0 0 +5472288 128 0 +5472400 0 0 +5472447 128 0 +5472565 0 0 +5472611 128 0 +5472720 0 0 +5472769 128 0 +5472877 0 0 +5472931 128 0 +5473037 0 0 +5473101 128 0 +5473200 0 0 +5473258 128 0 +5473363 0 0 +5473448 128 0 +5473567 0 0 +5473676 128 0 +5473728 0 0 +5473804 128 0 +5473818 0 0 +5473862 128 0 +5473886 0 0 +5474162 128 0 +5474248 0 0 +5474304 128 0 +5474401 0 0 +5474460 128 0 +5474573 0 0 +5474639 128 0 +5474740 0 0 +5474828 128 0 +5474922 0 0 +5478644 totRewards = 78 +5478644 64 8 +5478844 64 0 +5480473 0 0 +5480490 64 0 +5480963 0 0 +5480984 64 0 +5481297 0 0 +5481310 64 0 +5481451 0 0 +5481480 64 0 +5481615 0 0 +5481637 64 0 +5481781 0 0 +5481803 64 0 +5481939 0 0 +5481972 64 0 +5482107 0 0 +5482131 64 0 +5483003 0 0 +5483088 64 0 +5483245 0 0 +5483305 64 0 +5483768 0 0 +5483790 64 0 +5483944 0 0 +5483979 64 0 +5484102 0 0 +5484161 64 0 +5484245 0 0 +5490480 totRewards = 79 +5490480 128 16 +5490623 0 16 +5490680 0 0 +5490704 128 0 +5490857 0 0 +5490885 128 0 +5490986 0 0 +5491076 128 0 +5491171 0 0 +5491302 128 0 +5491446 0 0 +5491471 128 0 +5492235 0 0 +5492243 128 0 +5492375 0 0 +5492383 128 0 +5492658 0 0 +5492677 128 0 +5492806 0 0 +5492828 128 0 +5492953 0 0 +5492979 128 0 +5493099 0 0 +5493135 128 0 +5493270 0 0 +5493308 128 0 +5493412 0 0 +5493453 128 0 +5493563 0 0 +5493597 128 0 +5494025 0 0 +5494048 128 0 +5494188 0 0 +5494211 128 0 +5494352 0 0 +5494387 128 0 +5494498 0 0 +5494540 128 0 +5494953 0 0 +5495992 128 0 +5496716 0 0 +5499488 totRewards = 80 +5499488 64 8 +5499679 0 8 +5499688 0 0 +5499710 64 0 +5500315 0 0 +5500332 64 0 +5500857 0 0 +5500864 64 0 +5501651 0 0 +5501666 64 0 +5501815 0 0 +5501849 64 0 +5502352 0 0 +5502374 64 0 +5502719 0 0 +5502754 64 0 +5503075 0 0 +5503101 64 0 +5503248 0 0 +5503270 64 0 +5503413 0 0 +5503429 64 0 +5504778 0 0 +5504816 64 0 +5505289 0 0 +5505322 64 0 +5505451 0 0 +5505486 64 0 +5505953 0 0 +5505978 64 0 +5506147 0 0 +5506170 64 0 +5506329 0 0 +5506353 64 0 +5506421 0 0 +5506469 64 0 +5506778 0 0 +5506805 64 0 +5506931 0 0 +5509416 totRewards = 81 +5509416 128 16 +5509589 0 16 +5509616 0 0 +5509638 128 0 +5509826 0 0 +5509880 128 0 +5509969 0 0 +5510015 128 0 +5510229 0 0 +5510266 128 0 +5510363 0 0 +5510428 128 0 +5510779 0 0 +5510797 128 0 +5511059 0 0 +5511067 128 0 +5511205 0 0 +5511216 128 0 +5511348 0 0 +5511371 128 0 +5511502 0 0 +5511526 128 0 +5511661 0 0 +5511685 128 0 +5511813 0 0 +5511857 128 0 +5511975 0 0 +5512018 128 0 +5512139 0 0 +5512185 128 0 +5512300 0 0 +5512351 128 0 +5512471 0 0 +5512526 128 0 +5512630 0 0 +5512700 128 0 +5512775 0 0 +5519879 128 0 +5520118 0 0 +5533316 totRewards = 82 +5533316 64 8 +5533516 64 0 +5533517 0 0 +5533555 64 0 +5533772 0 0 +5533792 64 0 +5534142 0 0 +5534154 64 0 +5534274 0 0 +5534284 64 0 +5535748 0 0 +5535777 64 0 +5535895 0 0 +5535924 64 0 +5537177 0 0 +5537199 64 0 +5537318 0 0 +5541079 totRewards = 83 +5541079 128 16 +5541254 0 16 +5541279 0 0 +5541288 128 0 +5541512 0 0 +5541545 128 0 +5541630 0 0 +5541678 128 0 +5541890 0 0 +5541913 128 0 +5542025 0 0 +5542054 128 0 +5542143 0 0 +5542156 128 0 +5542425 0 0 +5542445 128 0 +5542562 0 0 +5542589 128 0 +5542859 0 0 +5542881 128 0 +5543002 0 0 +5543039 128 0 +5543160 0 0 +5543199 128 0 +5543325 0 0 +5543358 128 0 +5543481 0 0 +5543518 128 0 +5543635 0 0 +5543679 128 0 +5543800 0 0 +5543813 128 0 +5544386 0 0 +5544420 128 0 +5544542 0 0 +5544566 128 0 +5544692 0 0 +5544736 128 0 +5544842 0 0 +5544889 128 0 +5545012 0 0 +5545052 128 0 +5545166 0 0 +5545223 128 0 +5545336 0 0 +5545393 128 0 +5545489 0 0 +5548223 totRewards = 84 +5548223 64 8 +5548403 0 8 +5548423 0 0 +5548443 64 0 +5550523 0 0 +5550534 64 0 +5550680 0 0 +5550695 64 0 +5550849 0 0 +5550867 64 0 +5551016 0 0 +5551037 64 0 +5551166 0 0 +5551211 64 0 +5551323 0 0 +5551368 64 0 +5551477 0 0 +5551547 64 0 +5551624 0 0 +5554292 totRewards = 85 +5554292 128 16 +5554457 0 16 +5554492 0 0 +5554546 128 0 +5555028 0 0 +5555052 128 0 +5555280 0 0 +5555313 128 0 +5555704 0 0 +5555713 128 0 +5556010 0 0 +5556022 128 0 +5556151 0 0 +5556178 128 0 +5556304 0 0 +5556332 128 0 +5556462 0 0 +5556492 128 0 +5556626 0 0 +5556666 128 0 +5556785 0 0 +5556832 128 0 +5556948 0 0 +5556990 128 0 +5557109 0 0 +5557148 128 0 +5557267 0 0 +5557313 128 0 +5557424 0 0 +5557480 128 0 +5557587 0 0 +5557650 128 0 +5557751 0 0 +5557820 128 0 +5557935 0 0 +5558046 128 0 +5558087 0 0 +5558177 128 0 +5558218 0 0 +5558252 128 0 +5558287 0 0 +5558357 128 0 +5558445 0 0 +5558528 128 0 +5558607 0 0 +5558717 128 0 +5558732 0 0 +5558768 128 0 +5558795 0 0 +5562550 totRewards = 86 +5562550 64 8 +5562750 64 0 +5564913 0 0 +5564928 64 0 +5565074 0 0 +5565091 64 0 +5565240 0 0 +5565267 64 0 +5565390 0 0 +5565429 64 0 +5565542 0 0 +5565606 64 0 +5565707 0 0 +5565809 64 0 +5565853 0 0 +5568670 totRewards = 87 +5568670 128 16 +5568855 0 16 +5568870 0 0 +5568890 128 0 +5569110 0 0 +5569134 128 0 +5569244 0 0 +5569268 128 0 +5569487 0 0 +5569531 128 0 +5569629 0 0 +5569702 128 0 +5570063 0 0 +5570080 128 0 +5570217 0 0 +5570238 128 0 +5570530 0 0 +5570564 128 0 +5570688 0 0 +5570730 128 0 +5570860 0 0 +5570889 128 0 +5571015 0 0 +5571047 128 0 +5571163 0 0 +5571202 128 0 +5571324 0 0 +5571365 128 0 +5571485 0 0 +5571529 128 0 +5571648 0 0 +5571693 128 0 +5571828 0 0 +5571868 128 0 +5571985 0 0 +5572038 128 0 +5572153 0 0 +5572211 128 0 +5572300 0 0 +5572375 128 0 +5572452 0 0 +5575269 totRewards = 88 +5575269 64 8 +5575469 64 0 +5575482 0 0 +5575497 64 0 +5577782 0 0 +5577794 64 0 +5578136 0 0 +5578142 64 0 +5578280 0 0 +5578339 64 0 +5578441 0 0 +5578477 64 0 +5578624 0 0 +5578635 64 0 +5579997 0 0 +5580009 64 0 +5580332 0 0 +5580343 64 0 +5581326 0 0 +5581370 64 0 +5581481 0 0 +5584237 totRewards = 89 +5584237 128 16 +5584409 0 16 +5584437 0 0 +5584492 128 0 +5584822 0 0 +5584857 128 0 +5584977 0 0 +5585004 128 0 +5585112 0 0 +5585128 128 0 +5585225 0 0 +5585268 128 0 +5585662 0 0 +5585688 128 0 +5585976 0 0 +5586003 128 0 +5586128 0 0 +5586170 128 0 +5586293 0 0 +5586327 128 0 +5586459 0 0 +5586502 128 0 +5586629 0 0 +5586677 128 0 +5586791 0 0 +5586838 128 0 +5586942 0 0 +5586999 128 0 +5587063 0 0 +5592356 totRewards = 90 +5592356 64 8 +5592556 64 0 +5592561 0 0 +5592581 64 0 +5594842 0 0 +5594869 64 0 +5595341 0 0 +5595378 64 0 +5595506 0 0 +5595526 64 0 +5595670 0 0 +5595692 64 0 +5595830 0 0 +5595849 64 0 +5596466 0 0 +5596497 64 0 +5596934 0 0 +5596963 64 0 +5597803 0 0 +5597843 64 0 +5597971 0 0 +5598005 64 0 +5598132 0 0 +5598150 64 0 +5598285 0 0 +5598344 64 0 +5598400 0 0 +5600914 totRewards = 91 +5600914 128 16 +5601092 0 16 +5601114 0 0 +5601176 128 0 +5601509 0 0 +5601530 128 0 +5601792 0 0 +5601816 128 0 +5601902 0 0 +5601944 128 0 +5602063 0 0 +5602070 128 0 +5602335 0 0 +5602352 128 0 +5602634 0 0 +5602643 128 0 +5602793 0 0 +5602805 128 0 +5602949 0 0 +5602969 128 0 +5603268 0 0 +5603303 128 0 +5603434 0 0 +5603471 128 0 +5603603 0 0 +5603638 128 0 +5603763 0 0 +5603799 128 0 +5603928 0 0 +5603960 128 0 +5604082 0 0 +5604121 128 0 +5604246 0 0 +5604284 128 0 +5604407 0 0 +5604452 128 0 +5604567 0 0 +5604632 128 0 +5604716 0 0 +5604760 128 0 +5604870 0 0 +5604943 128 0 +5605063 0 0 +5605096 128 0 +5605203 0 0 +5605278 128 0 +5605313 0 0 +5605453 128 0 +5605549 0 0 +5605629 128 0 +5605720 0 0 +5608617 totRewards = 92 +5608617 64 8 +5608813 0 8 +5608817 0 0 +5608829 64 0 +5610943 0 0 +5610961 64 0 +5611607 0 0 +5611635 64 0 +5611766 0 0 +5611802 64 0 +5611924 0 0 +5611971 64 0 +5612070 0 0 +5615107 totRewards = 93 +5615107 128 16 +5615307 128 0 +5615390 0 0 +5615431 128 0 +5615763 0 0 +5615776 128 0 +5616012 0 0 +5616035 128 0 +5616146 0 0 +5616201 128 0 +5616284 0 0 +5616302 128 0 +5616430 0 0 +5616458 128 0 +5616567 0 0 +5616600 128 0 +5616726 0 0 +5616731 128 0 +5617017 0 0 +5617048 128 0 +5617168 0 0 +5617211 128 0 +5617333 0 0 +5617362 128 0 +5617495 0 0 +5617528 128 0 +5617659 0 0 +5617702 128 0 +5617820 0 0 +5617867 128 0 +5617986 0 0 +5618033 128 0 +5618149 0 0 +5618186 128 0 +5618466 0 0 +5618485 128 0 +5618614 0 0 +5618652 128 0 +5618765 0 0 +5618810 128 0 +5618920 0 0 +5618965 128 0 +5619076 0 0 +5619128 128 0 +5619234 0 0 +5619306 128 0 +5619413 0 0 +5619458 128 0 +5619578 0 0 +5619627 128 0 +5619748 0 0 +5619783 128 0 +5619910 0 0 +5619959 128 0 +5620081 0 0 +5620130 128 0 +5620232 0 0 +5620305 128 0 +5620393 0 0 +5620555 128 0 +5620598 0 0 +5621238 128 0 +5621262 0 0 +5621287 128 0 +5621312 0 0 +5624444 totRewards = 94 +5624444 64 8 +5624629 0 8 +5624644 0 0 +5624653 64 0 +5625828 0 0 +5625839 64 0 +5626791 0 0 +5626807 64 0 +5627126 0 0 +5627149 64 0 +5627285 0 0 +5627314 64 0 +5627441 0 0 +5627489 64 0 +5627614 0 0 +5627637 64 0 +5627759 0 0 +5630493 totRewards = 95 +5630493 128 16 +5630678 0 16 +5630693 0 0 +5630822 128 0 +5630934 0 0 +5630939 128 0 +5631056 0 0 +5631100 128 0 +5631451 0 0 +5631499 128 0 +5631884 0 0 +5631913 128 0 +5632026 0 0 +5632054 128 0 +5632335 0 0 +5632361 128 0 +5632485 0 0 +5632518 128 0 +5632645 0 0 +5632679 128 0 +5632804 0 0 +5632843 128 0 +5632970 0 0 +5633021 128 0 +5633146 0 0 +5633191 128 0 +5633305 0 0 +5633359 128 0 +5633455 0 0 +5633516 128 0 +5633624 0 0 +5633663 128 0 +5633790 0 0 +5633840 128 0 +5633945 0 0 +5634006 128 0 +5634112 0 0 +5634153 128 0 +5634272 0 0 +5634326 128 0 +5634427 0 0 +5634517 128 0 +5634652 0 0 +5634688 128 0 +5634714 0 0 +5634737 128 0 +5634799 0 0 +5634870 128 0 +5634962 0 0 +5635118 128 0 +5635172 0 0 +5635251 128 0 +5635325 0 0 +5638851 totRewards = 96 +5638851 64 8 +5639027 0 8 +5639051 0 0 +5639057 64 0 +5641158 0 0 +5641166 64 0 +5641312 0 0 +5641327 64 0 +5641632 0 0 +5641660 64 0 +5641799 0 0 +5641827 64 0 +5641967 0 0 +5642003 64 0 +5642135 0 0 +5642174 64 0 +5642295 0 0 +5642349 64 0 +5642450 0 0 +5642688 64 0 +5643624 0 0 +5648879 totRewards = 97 +5648879 128 16 +5649079 128 0 +5649159 0 0 +5649190 128 0 +5649783 0 0 +5649834 128 0 +5649930 0 0 +5649976 128 0 +5650367 0 0 +5650379 128 0 +5650813 0 0 +5650830 128 0 +5650971 0 0 +5650983 128 0 +5651115 0 0 +5651141 128 0 +5651273 0 0 +5651307 128 0 +5651436 0 0 +5651479 128 0 +5651605 0 0 +5651646 128 0 +5651763 0 0 +5651812 128 0 +5651913 0 0 +5651970 128 0 +5652065 0 0 +5652111 128 0 +5652224 0 0 +5652262 128 0 +5652382 0 0 +5652427 128 0 +5652542 0 0 +5652585 128 0 +5652710 0 0 +5652743 128 0 +5652867 0 0 +5652915 128 0 +5653031 0 0 +5653085 128 0 +5653183 0 0 +5653249 128 0 +5653342 0 0 +5656059 totRewards = 98 +5656059 64 8 +5656235 0 8 +5656259 0 0 +5656259 64 0 +5657885 0 0 +5657895 64 0 +5659034 0 0 +5659055 64 0 +5659196 0 0 +5659226 64 0 +5659351 0 0 +5659384 64 0 +5659509 0 0 +5659577 64 0 +5659599 0 0 +5662554 totRewards = 99 +5662554 128 16 +5662735 0 16 +5662754 0 0 +5662788 128 0 +5662975 0 0 +5663017 128 0 +5663109 0 0 +5663163 128 0 +5663375 0 0 +5663405 128 0 +5663502 0 0 +5663561 128 0 +5663933 0 0 +5663957 128 0 +5664383 0 0 +5664415 128 0 +5664537 0 0 +5664572 128 0 +5664697 0 0 +5664733 128 0 +5664862 0 0 +5664906 128 0 +5665023 0 0 +5665067 128 0 +5665186 0 0 +5665233 128 0 +5665345 0 0 +5665383 128 0 +5665521 0 0 +5665557 128 0 +5665678 0 0 +5665722 128 0 +5665841 0 0 +5665894 128 0 +5666004 0 0 +5666057 128 0 +5666170 0 0 +5666214 128 0 +5666332 0 0 +5666386 128 0 +5666500 0 0 +5666552 128 0 +5666666 0 0 +5666710 128 0 +5666819 0 0 +5666871 128 0 +5666975 0 0 +5667679 128 0 +5667780 0 0 +5667820 128 0 +5667924 0 0 +5667975 128 0 +5668075 0 0 +5668129 128 0 +5668240 0 0 +5668270 128 0 +5668389 0 0 +5668428 128 0 +5668557 0 0 +5668585 128 0 +5668714 0 0 +5668776 128 0 +5668883 0 0 +5673440 totRewards = 100 +5673440 64 8 +5673640 64 0 +5675190 0 0 +5675210 64 0 +5675339 0 0 +5675358 64 0 +5675835 0 0 +5675852 64 0 +5676152 0 0 +5676181 64 0 +5676317 0 0 +5676322 64 0 +5676788 0 0 +5676803 64 0 +5677296 0 0 +5677315 64 0 +5677473 0 0 +5677487 64 0 +5677645 0 0 +5677660 64 0 +5677807 0 0 +5677844 64 0 +5678474 0 0 +5678494 64 0 +5679104 0 0 +5679146 64 0 +5679622 0 0 +5679652 64 0 +5679774 0 0 +5679817 64 0 +5679938 0 0 +5679994 64 0 +5680085 0 0 +5682771 totRewards = 101 +5682771 128 16 +5682971 128 0 +5682977 0 0 +5683060 128 0 +5683375 0 0 +5683438 128 0 +5683560 0 0 +5683593 128 0 +5683703 0 0 +5683721 128 0 +5683815 0 0 +5683845 128 0 +5683965 0 0 +5683982 128 0 +5684243 0 0 +5684256 128 0 +5684680 0 0 +5684711 128 0 +5684843 0 0 +5684866 128 0 +5684992 0 0 +5685027 128 0 +5685150 0 0 +5685197 128 0 +5685319 0 0 +5685370 128 0 +5685483 0 0 +5685531 128 0 +5685652 0 0 +5685700 128 0 +5685822 0 0 +5685873 128 0 +5685989 0 0 +5686038 128 0 +5686141 0 0 +5686197 128 0 +5686300 0 0 +5686344 128 0 +5686456 0 0 +5686512 128 0 +5686612 0 0 +5686685 128 0 +5686815 0 0 +5686827 128 0 +5686975 0 0 +5687022 128 0 +5687140 0 0 +5687204 128 0 +5687320 0 0 +5687399 128 0 +5687416 0 0 +5687432 128 0 +5687474 0 0 +5690822 totRewards = 102 +5690822 64 8 +5691022 64 0 +5691038 0 0 +5691053 64 0 +5691660 0 0 +5691672 64 0 +5693493 0 0 +5693512 64 0 +5693653 0 0 +5693682 64 0 +5693805 0 0 +5693842 64 0 +5693957 0 0 +5694019 64 0 +5694105 0 0 +5697110 totRewards = 103 +5697110 128 16 +5697310 128 0 +5697315 0 0 +5697352 128 0 +5697566 0 0 +5697585 128 0 +5697701 0 0 +5697734 128 0 +5697966 0 0 +5697986 128 0 +5698098 0 0 +5698149 128 0 +5698532 0 0 +5698553 128 0 +5698996 0 0 +5699025 128 0 +5699162 0 0 +5699191 128 0 +5699323 0 0 +5699355 128 0 +5699492 0 0 +5699532 128 0 +5699662 0 0 +5699707 128 0 +5699824 0 0 +5699871 128 0 +5699977 0 0 +5700030 128 0 +5700120 0 0 +5700191 128 0 +5700282 0 0 +5700354 128 0 +5700433 0 0 +5703554 totRewards = 104 +5703554 64 8 +5703739 0 8 +5703754 0 0 +5703766 64 0 +5704513 0 0 +5704522 64 0 +5705904 0 0 +5705924 64 0 +5706065 0 0 +5706088 64 0 +5706232 0 0 +5706255 64 0 +5706393 0 0 +5706423 64 0 +5706553 0 0 +5706587 64 0 +5706710 0 0 +5706757 64 0 +5706875 0 0 +5708022 64 0 +5708875 0 0 +5708897 64 0 +5710073 0 0 +5710134 64 0 +5710212 0 0 +5712808 totRewards = 105 +5712808 128 16 +5712986 0 16 +5713008 0 0 +5713059 128 0 +5713254 0 0 +5713265 128 0 +5713378 0 0 +5713420 128 0 +5713793 0 0 +5713832 128 0 +5714102 0 0 +5714113 128 0 +5714248 0 0 +5714274 128 0 +5714407 0 0 +5714434 128 0 +5714565 0 0 +5714600 128 0 +5714710 0 0 +5714751 128 0 +5714880 0 0 +5714918 128 0 +5715052 0 0 +5715093 128 0 +5715216 0 0 +5715268 128 0 +5715379 0 0 +5715429 128 0 +5715539 0 0 +5715600 128 0 +5715673 0 0 +5715761 128 0 +5715829 0 0 +5719199 totRewards = 106 +5719199 64 8 +5719399 64 0 + + description: state script log run 2 + task_epochs: 4, +, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140306904244944 +Fields: + content: # +#% PROGRAM NAME: linear track +#% DESCRIPTION: lights and rewards alternate between 2 wells +#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). +# +#int deliverPeriod= 200 % how long to deliver the reward +#int rewardWell=0 +#int dio=0 +#int lastWell=0 +#int totRewards=0 +#int pump1=4 +#int pump2=5 +#; +# +#%AC changed so lights start on +#portout[7]=1; +#portout[8]=1; +# +#% function to deliver reward +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriod +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to turn on output, AC changed so lights stay off +#function 2 +# portout[dio]=0 +#end; +# +#% function to turn off output +#function 3 +# portout[dio]=0 +#end; +# +#%display status +#function 4 +# disp(totRewards) +#end; +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[8] up +# if lastWell != 8 do +# rewardWell=pump2 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[8] down +# if lastWell != 8 do +# dio=8 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=8 +# end +#end; +# +#callback portin[7] up +# if lastWell != 7 do +# rewardWell=pump1 +# trigger(1) +# totRewards=totRewards+1 +# trigger(4) +# end +#end; +# +#callback portin[7] down +# if lastWell != 7 do +# dio=7 +# trigger(3) +# dio=1 +# trigger(2) +# lastWell=7 +# end +#end; +# +# +#""" +#filename: PythonObserver.py +#Mattias Karlsson, edited by Kevin Fan +#Written: 01/06/2016 +#Updated last: 01/14/2016 +# +#Directions: +#In statescript -> Edit -> Local callback language, select Python and specify Python directory. +#PythonObserver.py and your callback python script must be in the same directory. +#Select that directory in statescript -> File -> Script folders -> Local callback scripts. +#After loading your statescript code into the ECU, select your desired callback script and click the Python button. +#Click the Python Tab to view your running callback script. +# +#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. +# +#""" +# +## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def startScQt(callBackFcn, initFcn=""): +# # This function starts the scQt agent in python +# # callBackFcn -- a string containing the name of the callback function to +# # be called for every new event. +# # initFcn -- a string containing the name of a function to call +# # now. Useful for setting up extra global variables or plots. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# global scQtInitiated # the callback function should set this to 1 once all user variables are set +# scQtCallBackHandle = __import__(callBackFcn).callback +# scQtControllerOutput = [] +# scQtHistory = [] +# scQtInitiated = 0 +# +# # Run init function if given +# if initFcn: +# eval(initFcn) +# +# print("Initiation complete. Running " + callBackFcn + "...") +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- +#def addScQtEvent(eventString): +# # This function is called by the qt-based gui every time a new even occurs. +# # The event string is passed in the input, and the designated callBack +# # function is called. +# +# global scQtHistory # multipurpose place to store processed event history +# global scQtControllerOutput # the text output from the microcontroller +# global scQtCallBackHandle # the handle to the function called for every new event +# +# # add the event output string to the memory log +# scQtControllerOutput.append(eventString) +# +# # call the callback +# scQtCallBackHandle(eventString) +# +# +## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- +#def init(): +# print("init function has been run") +# +# +7499807 totRewards = 1 +7499807 64 200 +7500007 64 192 +7500065 0 128 +7500089 64 128 +7500220 0 128 +7500233 64 128 +7500345 0 128 +7500352 64 128 +7500830 0 128 +7500836 64 128 +7500943 0 128 +7500963 64 128 +7501077 0 128 +7501087 64 128 +7501201 0 128 +7501216 64 128 +7501327 0 128 +7501354 64 128 +7501470 0 128 +7501488 64 128 +7501621 0 128 +7501641 64 128 +7501768 0 128 +7501786 64 128 +7501914 0 128 +7501942 64 128 +7502067 0 128 +7502104 64 128 +7502224 0 128 +7502270 64 128 +7502382 0 128 +7502438 64 128 +7502547 0 128 +7502591 64 128 +7502710 0 128 +7502748 64 128 +7502863 0 128 +7502898 64 128 +7503321 0 128 +7503349 64 128 +7503492 0 128 +7503512 64 128 +7503675 0 128 +7503685 64 128 +7503829 0 128 +7503869 64 128 +7504008 0 128 +7504049 64 128 +7504185 0 128 +7504229 64 128 +7504335 0 128 +7504385 64 128 +7504830 0 128 +7504850 64 128 +7505318 0 128 +7505346 64 128 +7505492 0 128 +7505523 64 128 +7505673 0 128 +7505703 64 128 +7505819 0 128 +7509448 totRewards = 2 +7509448 128 144 +7509648 128 128 +7509830 0 0 +7509841 128 0 +7509844 0 0 +7509909 128 0 +7509912 0 0 +7509920 128 0 +7509985 0 0 +7510002 128 0 +7510144 0 0 +7510154 128 0 +7510255 0 0 +7510314 128 0 +7510656 0 0 +7510682 128 0 +7510795 0 0 +7510807 128 0 +7511073 0 0 +7511090 128 0 +7511207 0 0 +7511234 128 0 +7511347 0 0 +7511392 128 0 +7511490 0 0 +7511537 128 0 +7511633 0 0 +7511693 128 0 +7511798 0 0 +7511856 128 0 +7511969 0 0 +7512023 128 0 +7512135 0 0 +7512198 128 0 +7512321 0 0 +7512384 128 0 +7512512 0 0 +7512575 128 0 +7512699 0 0 +7512769 128 0 +7512896 0 0 +7512953 128 0 +7513081 0 0 +7513127 128 0 +7514538 0 0 +7514575 128 0 +7514712 0 0 +7514754 128 0 +7514891 0 0 +7514952 128 0 +7515072 0 0 +7515133 128 0 +7515263 0 0 +7515316 128 0 +7515435 0 0 +7515498 128 0 +7515609 0 0 +7515678 128 0 +7515789 0 0 +7515866 128 0 +7515967 0 0 +7516022 128 0 +7516088 0 0 +7516194 128 0 +7516468 0 0 +7516494 128 0 +7516627 0 0 +7516666 128 0 +7516803 0 0 +7516877 128 0 +7516984 0 0 +7517035 128 0 +7517176 0 0 +7517288 128 0 +7517394 0 0 +7517922 128 0 +7517951 0 0 +7518111 128 0 +7518125 0 0 +7518392 128 0 +7518503 0 0 +7518598 128 0 +7518683 0 0 +7518837 128 0 +7518854 0 0 +7527467 128 0 +7527970 0 0 +7527980 128 0 +7528348 0 0 +7528369 128 0 +7528497 0 0 +7528533 128 0 +7528645 0 0 +7528691 128 0 +7528805 0 0 +7528852 128 0 +7528967 0 0 +7532478 totRewards = 3 +7532478 64 8 +7532678 64 0 +7533690 0 0 +7533700 64 0 +7533836 0 0 +7533851 64 0 +7533973 0 0 +7533982 64 0 +7534275 0 0 +7534294 64 0 +7534429 0 0 +7534443 64 0 +7534775 0 0 +7534796 64 0 +7534938 0 0 +7534974 64 0 +7535284 0 0 +7535321 64 0 +7536105 0 0 +7536111 64 0 +7536280 0 0 +7536300 64 0 +7536473 0 0 +7536500 64 0 +7536664 0 0 +7536677 64 0 +7536833 0 0 +7536885 64 0 +7537004 0 0 +7537062 64 0 +7537189 0 0 +7537254 64 0 +7537988 0 0 +7538049 64 0 +7538195 0 0 +7538227 64 0 +7538413 0 0 +7538435 64 0 +7538599 0 0 +7538659 64 0 +7538784 0 0 +7539025 64 0 +7539161 0 0 +7539189 64 0 +7539338 0 0 +7539407 64 0 +7539582 0 0 +7540550 64 0 +7540819 0 0 +7540833 64 0 +7540992 0 0 +7541002 64 0 +7541166 0 0 +7541175 64 0 +7541333 0 0 +7541372 64 0 +7541521 0 0 +7541562 64 0 +7541687 0 0 +7545424 totRewards = 4 +7545424 128 16 +7545556 0 16 +7545595 128 16 +7545624 128 0 +7545675 0 0 +7545700 128 0 +7545842 0 0 +7545893 128 0 +7546045 0 0 +7546114 128 0 +7546712 0 0 +7546739 128 0 +7546858 0 0 +7546874 128 0 +7546980 0 0 +7547012 128 0 +7547114 0 0 +7547153 128 0 +7547255 0 0 +7547294 128 0 +7547398 0 0 +7547439 128 0 +7547540 0 0 +7547582 128 0 +7547696 0 0 +7547741 128 0 +7547855 0 0 +7547906 128 0 +7548020 0 0 +7548069 128 0 +7548183 0 0 +7548246 128 0 +7548357 0 0 +7548418 128 0 +7548525 0 0 +7548577 128 0 +7548709 0 0 +7548735 128 0 +7549034 0 0 +7549043 128 0 +7549170 0 0 +7549221 128 0 +7549341 0 0 +7549385 128 0 +7549499 0 0 +7549566 128 0 +7549586 0 0 +7549623 128 0 +7549666 0 0 +7549732 128 0 +7549840 0 0 +7549905 128 0 +7550015 0 0 +7550072 128 0 +7550178 0 0 +7550246 128 0 +7550331 0 0 +7550428 128 0 +7550513 0 0 +7550590 128 0 +7550685 0 0 +7550772 128 0 +7550839 0 0 +7550912 128 0 +7551001 0 0 +7551092 128 0 +7551110 0 0 +7551154 128 0 +7551186 0 0 +7551269 128 0 +7551359 0 0 +7551455 128 0 +7551474 0 0 +7551508 128 0 +7551543 0 0 +7554803 totRewards = 5 +7554803 64 8 +7555003 64 0 +7555514 0 0 +7555522 64 0 +7555924 0 0 +7555942 64 0 +7556063 0 0 +7556081 64 0 +7556203 0 0 +7556225 64 0 +7556353 0 0 +7556376 64 0 +7556520 0 0 +7556534 64 0 +7556675 0 0 +7556704 64 0 +7557239 0 0 +7557274 64 0 +7557449 0 0 +7557479 64 0 +7557658 0 0 +7557687 64 0 +7557844 0 0 +7557899 64 0 +7558036 0 0 +7558079 64 0 +7558777 0 0 +7558799 64 0 +7558950 0 0 +7558985 64 0 +7559119 0 0 +7559170 64 0 +7559304 0 0 +7559320 64 0 +7559771 0 0 +7559798 64 0 +7559938 0 0 +7559966 64 0 +7560124 0 0 +7560146 64 0 +7560327 0 0 +7560337 64 0 +7561101 0 0 +7561107 64 0 +7561272 0 0 +7561309 64 0 +7561449 0 0 +7561499 64 0 +7561608 0 0 +7567350 totRewards = 6 +7567350 128 16 +7567534 0 16 +7567550 0 0 +7567605 128 0 +7567921 0 0 +7567954 128 0 +7568061 0 0 +7568094 128 0 +7568302 0 0 +7568359 128 0 +7568446 0 0 +7568464 128 0 +7568594 0 0 +7568619 128 0 +7568723 0 0 +7568763 128 0 +7568863 0 0 +7568898 128 0 +7569021 0 0 +7569058 128 0 +7569166 0 0 +7569215 128 0 +7569320 0 0 +7569370 128 0 +7569487 0 0 +7569540 128 0 +7569660 0 0 +7569715 128 0 +7569826 0 0 +7569886 128 0 +7569997 0 0 +7570055 128 0 +7570166 0 0 +7570228 128 0 +7570323 0 0 +7570390 128 0 +7570486 0 0 +7570544 128 0 +7570652 0 0 +7570705 128 0 +7570817 0 0 +7570880 128 0 +7570994 0 0 +7571053 128 0 +7571170 0 0 +7571231 128 0 +7571323 0 0 +7571403 128 0 +7571464 0 0 +7574231 totRewards = 7 +7574231 64 8 +7574415 0 8 +7574425 64 8 +7574431 64 0 +7574779 0 0 +7574797 64 0 +7575035 0 0 +7575056 64 0 +7575163 0 0 +7575183 64 0 +7575448 0 0 +7575456 64 0 +7575587 0 0 +7575611 64 0 +7575740 0 0 +7575751 64 0 +7576067 0 0 +7576080 64 0 +7576414 0 0 +7576428 64 0 +7576576 0 0 +7576613 64 0 +7576929 0 0 +7576964 64 0 +7577119 0 0 +7577149 64 0 +7577275 0 0 +7577325 64 0 +7577456 0 0 +7577480 64 0 +7577802 0 0 +7577819 64 0 +7577960 0 0 +7577994 64 0 +7578136 0 0 +7578159 64 0 +7578502 0 0 +7578520 64 0 +7579482 0 0 +7579497 64 0 +7579628 0 0 +7579682 64 0 +7579827 0 0 +7579953 64 0 +7580203 0 0 +7580264 64 0 +7580397 0 0 +7580420 64 0 +7580591 0 0 +7580646 64 0 +7580794 0 0 +7580861 64 0 +7580959 0 0 +7581217 64 0 +7581305 0 0 +7581342 64 0 +7581506 0 0 +7581525 64 0 +7581685 0 0 +7581733 64 0 +7581865 0 0 +7586030 totRewards = 8 +7586030 128 16 +7586203 0 16 +7586230 0 0 +7586276 128 0 +7586594 0 0 +7586646 128 0 +7586869 0 0 +7586882 128 0 +7586984 0 0 +7587040 128 0 +7587141 0 0 +7587153 128 0 +7587270 0 0 +7587284 128 0 +7587411 0 0 +7587449 128 0 +7587570 0 0 +7587605 128 0 +7587719 0 0 +7587756 128 0 +7587868 0 0 +7587918 128 0 +7588020 0 0 +7588073 128 0 +7588193 0 0 +7588236 128 0 +7588357 0 0 +7588414 128 0 +7588530 0 0 +7588595 128 0 +7588708 0 0 +7588763 128 0 +7588882 0 0 +7588938 128 0 +7589043 0 0 +7589094 128 0 +7589207 0 0 +7589228 128 0 +7589361 0 0 +7589395 128 0 +7589516 0 0 +7589559 128 0 +7589671 0 0 +7589729 128 0 +7589838 0 0 +7589910 128 0 +7589918 0 0 +7589962 128 0 +7590005 0 0 +7590071 128 0 +7590176 0 0 +7590329 128 0 +7590370 0 0 +7590473 128 0 +7590481 0 0 +7590519 128 0 +7590565 0 0 +7593508 totRewards = 9 +7593508 64 8 +7593703 0 8 +7593708 0 0 +7593718 64 0 +7593939 0 0 +7593957 64 0 +7594730 0 0 +7594744 64 0 +7594863 0 0 +7594890 64 0 +7595020 0 0 +7595030 64 0 +7595169 0 0 +7595174 64 0 +7595653 0 0 +7595670 64 0 +7595828 0 0 +7595841 64 0 +7595986 0 0 +7596013 64 0 +7596162 0 0 +7596199 64 0 +7596330 0 0 +7596379 64 0 +7596506 0 0 +7596524 64 0 +7596672 0 0 +7596684 64 0 +7596853 0 0 +7596873 64 0 +7597016 0 0 +7597070 64 0 +7597351 0 0 +7597375 64 0 +7597514 0 0 +7597545 64 0 +7598031 0 0 +7598062 64 0 +7598180 0 0 +7600753 totRewards = 10 +7600753 128 16 +7600928 0 16 +7600953 0 0 +7600990 128 0 +7601310 0 0 +7601350 128 0 +7601572 0 0 +7601603 128 0 +7601699 0 0 +7601749 128 0 +7602139 0 0 +7602168 128 0 +7602447 0 0 +7602470 128 0 +7602597 0 0 +7602634 128 0 +7602764 0 0 +7602799 128 0 +7602926 0 0 +7602968 128 0 +7603094 0 0 +7603151 128 0 +7603268 0 0 +7603328 128 0 +7603449 0 0 +7603504 128 0 +7603615 0 0 +7603667 128 0 +7603785 0 0 +7603834 128 0 +7603946 0 0 +7604000 128 0 +7604090 0 0 +7604243 128 0 +7604261 0 0 +7604340 128 0 +7604432 0 0 +7604506 128 0 +7604584 0 0 +7604667 128 0 +7604764 0 0 +7604873 128 0 +7604886 0 0 +7604910 128 0 +7604961 0 0 +7608088 totRewards = 11 +7608088 64 8 +7608263 0 8 +7608281 64 8 +7608288 64 0 +7609448 0 0 +7609467 64 0 +7609592 0 0 +7609607 64 0 +7609745 0 0 +7609757 64 0 +7610240 0 0 +7610256 64 0 +7610412 0 0 +7610424 64 0 +7610764 0 0 +7610772 64 0 +7610918 0 0 +7610952 64 0 +7611077 0 0 +7611115 64 0 +7611243 0 0 +7611289 64 0 +7611586 0 0 +7611606 64 0 +7611757 0 0 +7611794 64 0 +7612355 0 0 +7612386 64 0 +7612574 0 0 +7612614 64 0 +7612884 0 0 +7612901 64 0 +7613054 0 0 +7613091 64 0 +7613221 0 0 +7613257 64 0 +7613386 0 0 +7618178 totRewards = 12 +7618178 128 16 +7618307 0 16 +7618378 0 0 +7618396 128 0 +7618712 0 0 +7618752 128 0 +7618860 0 0 +7618907 128 0 +7618984 0 0 +7619030 128 0 +7619120 0 0 +7619158 128 0 +7619270 0 0 +7619285 128 0 +7619414 0 0 +7619429 128 0 +7619552 0 0 +7619584 128 0 +7619716 0 0 +7619727 128 0 +7619858 0 0 +7619880 128 0 +7620005 0 0 +7620054 128 0 +7620174 0 0 +7620222 128 0 +7620341 0 0 +7620397 128 0 +7620509 0 0 +7620586 128 0 +7620743 0 0 +7621246 128 0 +7621352 0 0 +7621407 128 0 +7621506 0 0 +7621630 128 0 +7621695 0 0 +7621754 128 0 +7621880 0 0 +7621924 128 0 +7622044 0 0 +7622121 128 0 +7622225 0 0 +7622291 128 0 +7622376 0 0 +7622477 128 0 +7622496 0 0 +7627198 totRewards = 13 +7627198 64 8 +7627398 64 0 +7627485 0 0 +7627518 64 0 +7627731 0 0 +7627748 64 0 +7628116 0 0 +7628129 64 0 +7628673 0 0 +7628690 64 0 +7629150 0 0 +7629167 64 0 +7629317 0 0 +7629333 64 0 +7629487 0 0 +7629508 64 0 +7629653 0 0 +7629679 64 0 +7629822 0 0 +7629839 64 0 +7630177 0 0 +7630189 64 0 +7630327 0 0 +7630372 64 0 +7630981 0 0 +7631001 64 0 +7631145 0 0 +7631167 64 0 +7631302 0 0 +7631325 64 0 +7631462 0 0 +7631485 64 0 +7631620 0 0 +7631654 64 0 +7631784 0 0 +7631820 64 0 +7632823 0 0 +7632847 64 0 +7632982 0 0 +7633020 64 0 +7633130 0 0 +7633190 64 0 +7633269 0 0 +7636615 totRewards = 14 +7636615 128 16 +7636786 0 16 +7636815 0 0 +7636824 128 0 +7637013 0 0 +7637060 128 0 +7637204 0 0 +7637225 128 0 +7637386 0 0 +7637443 128 0 +7637537 0 0 +7637577 128 0 +7637671 0 0 +7637683 128 0 +7637804 0 0 +7637816 128 0 +7637937 0 0 +7637954 128 0 +7638227 0 0 +7638255 128 0 +7638375 0 0 +7638411 128 0 +7638523 0 0 +7638558 128 0 +7638691 0 0 +7638728 128 0 +7638849 0 0 +7638900 128 0 +7639021 0 0 +7639074 128 0 +7639196 0 0 +7639244 128 0 +7639364 0 0 +7639418 128 0 +7639531 0 0 +7639582 128 0 +7639692 0 0 +7639746 128 0 +7639849 0 0 +7639908 128 0 +7640017 0 0 +7640064 128 0 +7640179 0 0 +7640234 128 0 +7640353 0 0 +7640407 128 0 +7640516 0 0 +7640591 128 0 +7640656 0 0 +7643472 totRewards = 15 +7643472 64 8 +7643672 64 0 +7644135 0 0 +7644143 64 0 +7644273 0 0 +7644285 64 0 +7644681 0 0 +7644691 64 0 +7644821 0 0 +7644835 64 0 +7645128 0 0 +7645141 64 0 +7645287 0 0 +7645300 64 0 +7645452 0 0 +7645462 64 0 +7645617 0 0 +7645632 64 0 +7645772 0 0 +7645801 64 0 +7645932 0 0 +7645969 64 0 +7646102 0 0 +7646129 64 0 +7646634 0 0 +7646657 64 0 +7646790 0 0 +7646833 64 0 +7646939 0 0 +7647007 64 0 +7647074 0 0 +7649822 totRewards = 16 +7649822 128 16 +7650002 0 16 +7650022 0 0 +7650070 128 0 +7650268 0 0 +7650297 128 0 +7650402 0 0 +7650451 128 0 +7650656 0 0 +7650688 128 0 +7650785 0 0 +7650847 128 0 +7651084 0 0 +7651100 128 0 +7651213 0 0 +7651247 128 0 +7651522 0 0 +7651547 128 0 +7651668 0 0 +7651708 128 0 +7651826 0 0 +7651870 128 0 +7651999 0 0 +7652037 128 0 +7652156 0 0 +7652209 128 0 +7652328 0 0 +7652377 128 0 +7652500 0 0 +7652551 128 0 +7652658 0 0 +7652704 128 0 +7652821 0 0 +7652866 128 0 +7652976 0 0 +7653038 128 0 +7653142 0 0 +7653199 128 0 +7653303 0 0 +7653358 128 0 +7653467 0 0 +7653515 128 0 +7653636 0 0 +7653691 128 0 +7653808 0 0 +7653869 128 0 +7653965 0 0 +7654051 128 0 +7654062 0 0 +7654080 128 0 +7654108 0 0 +7656919 totRewards = 17 +7656919 64 8 +7657100 0 8 +7657110 64 8 +7657119 64 0 +7657724 0 0 +7657737 64 0 +7658450 0 0 +7658463 64 0 +7659093 0 0 +7659110 64 0 +7659260 0 0 +7659287 64 0 +7659582 0 0 +7659623 64 0 +7659745 0 0 +7659761 64 0 +7659910 0 0 +7659923 64 0 +7660072 0 0 +7660091 64 0 +7660226 0 0 +7660267 64 0 +7660403 0 0 +7660430 64 0 +7661645 0 0 +7661670 64 0 +7661804 0 0 +7661850 64 0 +7661970 0 0 +7662038 64 0 +7662070 0 0 +7664957 totRewards = 18 +7664957 128 16 +7665116 0 16 +7665157 0 0 +7665163 128 0 +7665372 0 0 +7665381 128 0 +7665492 0 0 +7665545 128 0 +7665745 0 0 +7665785 128 0 +7665876 0 0 +7665942 128 0 +7666304 0 0 +7666340 128 0 +7666456 0 0 +7666472 128 0 +7666601 0 0 +7666620 128 0 +7666750 0 0 +7666789 128 0 +7666909 0 0 +7666951 128 0 +7667074 0 0 +7667107 128 0 +7667238 0 0 +7667279 128 0 +7667398 0 0 +7667454 128 0 +7667578 0 0 +7667628 128 0 +7667753 0 0 +7667813 128 0 +7667918 0 0 +7667983 128 0 +7668082 0 0 +7668137 128 0 +7668242 0 0 +7668288 128 0 +7668398 0 0 +7668454 128 0 +7668559 0 0 +7668614 128 0 +7668722 0 0 +7668772 128 0 +7668880 0 0 +7668945 128 0 +7669001 0 0 +7669091 128 0 +7669177 0 0 +7669492 128 0 +7669523 0 0 +7669608 128 0 +7669694 0 0 +7672486 totRewards = 19 +7672486 64 8 +7672686 64 0 +7672724 0 0 +7672737 64 0 +7673490 0 0 +7673495 64 0 +7673765 0 0 +7673797 64 0 +7674228 0 0 +7674245 64 0 +7674389 0 0 +7674411 64 0 +7674894 0 0 +7674914 64 0 +7675248 0 0 +7675270 64 0 +7675418 0 0 +7675447 64 0 +7675593 0 0 +7675622 64 0 +7675753 0 0 +7675795 64 0 +7675911 0 0 +7675976 64 0 +7676080 0 0 +7676166 64 0 +7676268 0 0 +7676294 64 0 +7676444 0 0 +7676456 64 0 +7676947 0 0 +7676967 64 0 +7677088 0 0 +7679867 totRewards = 20 +7679867 128 16 +7680067 128 0 +7680094 0 0 +7680125 128 0 +7680335 0 0 +7680382 128 0 +7680469 0 0 +7680492 128 0 +7680727 0 0 +7680767 128 0 +7680855 0 0 +7680935 128 0 +7681001 0 0 +7681018 128 0 +7681159 0 0 +7681172 128 0 +7681294 0 0 +7681324 128 0 +7681588 0 0 +7681609 128 0 +7681743 0 0 +7681767 128 0 +7681906 0 0 +7681934 128 0 +7682065 0 0 +7682103 128 0 +7682226 0 0 +7682266 128 0 +7682390 0 0 +7682438 128 0 +7682573 0 0 +7682621 128 0 +7682747 0 0 +7682802 128 0 +7682920 0 0 +7682969 128 0 +7683084 0 0 +7683134 128 0 +7683243 0 0 +7683297 128 0 +7683398 0 0 +7683455 128 0 +7683562 0 0 +7683617 128 0 +7683726 0 0 +7683780 128 0 +7683889 0 0 +7683948 128 0 +7684062 0 0 +7684129 128 0 +7684181 0 0 +7687149 totRewards = 21 +7687149 64 8 +7687334 0 8 +7687349 0 0 +7687368 64 0 +7688422 0 0 +7688431 64 0 +7689388 0 0 +7689395 64 0 +7689548 0 0 +7689570 64 0 +7689719 0 0 +7689739 64 0 +7690071 0 0 +7690094 64 0 +7690236 0 0 +7690275 64 0 +7690577 0 0 +7690608 64 0 +7690748 0 0 +7690779 64 0 +7690941 0 0 +7690955 64 0 +7691854 0 0 +7691868 64 0 +7692034 0 0 +7692075 64 0 +7692226 0 0 +7692246 64 0 +7692396 0 0 +7692425 64 0 +7692575 0 0 +7692615 64 0 +7692744 0 0 +7692793 64 0 +7692916 0 0 +7695979 totRewards = 22 +7695979 128 16 +7696155 0 16 +7696179 0 0 +7696202 128 0 +7696409 0 0 +7696454 128 0 +7696545 0 0 +7696610 128 0 +7696807 0 0 +7696843 128 0 +7696940 0 0 +7697002 128 0 +7697228 0 0 +7697253 128 0 +7697365 0 0 +7697397 128 0 +7697511 0 0 +7697525 128 0 +7697646 0 0 +7697669 128 0 +7697800 0 0 +7697833 128 0 +7697956 0 0 +7697992 128 0 +7698120 0 0 +7698153 128 0 +7698280 0 0 +7698325 128 0 +7698442 0 0 +7698497 128 0 +7698624 0 0 +7698670 128 0 +7698792 0 0 +7698847 128 0 +7698956 0 0 +7699030 128 0 +7699117 0 0 +7699171 128 0 +7699287 0 0 +7699334 128 0 +7699449 0 0 +7699513 128 0 +7699611 0 0 +7699673 128 0 +7699780 0 0 +7699832 128 0 +7699949 0 0 +7700006 128 0 +7700113 0 0 +7700189 128 0 +7700266 0 0 +7703088 totRewards = 23 +7703088 64 8 +7703250 0 8 +7703277 64 8 +7703288 64 0 +7704632 0 0 +7704645 64 0 +7705600 0 0 +7705615 64 0 +7705765 0 0 +7705782 64 0 +7705935 0 0 +7705961 64 0 +7706103 0 0 +7706131 64 0 +7706267 0 0 +7706301 64 0 +7706431 0 0 +7706463 64 0 +7706601 0 0 +7706627 64 0 +7706764 0 0 +7706802 64 0 +7706930 0 0 +7706960 64 0 +7707407 0 0 +7707434 64 0 +7707562 0 0 +7707602 64 0 +7707904 0 0 +7707925 64 0 +7708075 0 0 +7708098 64 0 +7708229 0 0 +7708267 64 0 +7708371 0 0 +7711071 totRewards = 24 +7711071 128 16 +7711271 128 0 +7711287 0 0 +7711335 128 0 +7711541 0 0 +7711554 128 0 +7711669 0 0 +7711743 128 0 +7711797 0 0 +7711821 128 0 +7711918 0 0 +7711963 128 0 +7712057 0 0 +7712115 128 0 +7712350 0 0 +7712367 128 0 +7712487 0 0 +7712521 128 0 +7712797 0 0 +7712815 128 0 +7712933 0 0 +7712969 128 0 +7713089 0 0 +7713123 128 0 +7713252 0 0 +7713285 128 0 +7713398 0 0 +7713450 128 0 +7713560 0 0 +7713617 128 0 +7713738 0 0 +7713793 128 0 +7713912 0 0 +7713974 128 0 +7714078 0 0 +7714139 128 0 +7714242 0 0 +7714298 128 0 +7714402 0 0 +7714450 128 0 +7714556 0 0 +7714619 128 0 +7714715 0 0 +7714786 128 0 +7714871 0 0 +7714940 128 0 +7715030 0 0 +7715110 128 0 +7715204 0 0 +7715820 128 0 +7715841 0 0 +7715880 128 0 +7715896 0 0 +7716042 128 0 +7716050 0 0 +7718859 totRewards = 25 +7718859 64 8 +7719037 0 8 +7719059 0 0 +7719070 64 0 +7720252 0 0 +7720271 64 0 +7721045 0 0 +7721052 64 0 +7721203 0 0 +7721223 64 0 +7721865 0 0 +7721906 64 0 +7722021 0 0 +7722069 64 0 +7722175 0 0 +7724820 totRewards = 26 +7724820 128 16 +7725007 0 16 +7725020 0 0 +7725058 128 0 +7725272 0 0 +7725298 128 0 +7725406 0 0 +7725460 128 0 +7725661 0 0 +7725701 128 0 +7725799 0 0 +7725877 128 0 +7726100 0 0 +7726104 128 0 +7726227 0 0 +7726259 128 0 +7726377 0 0 +7726398 128 0 +7726533 0 0 +7726549 128 0 +7726683 0 0 +7726707 128 0 +7726844 0 0 +7726875 128 0 +7727015 0 0 +7727044 128 0 +7727172 0 0 +7727210 128 0 +7727333 0 0 +7727378 128 0 +7727492 0 0 +7727541 128 0 +7727649 0 0 +7727701 128 0 +7727819 0 0 +7727862 128 0 +7727984 0 0 +7728027 128 0 +7728146 0 0 +7728201 128 0 +7728307 0 0 +7728367 128 0 +7728477 0 0 +7728526 128 0 +7728646 0 0 +7728696 128 0 +7728805 0 0 +7728869 128 0 +7728900 0 0 +7728928 128 0 +7728972 0 0 +7729027 128 0 +7729129 0 0 +7729183 128 0 +7729286 0 0 +7729366 128 0 +7729498 0 0 +7729527 128 0 +7729646 0 0 +7729719 128 0 +7729814 0 0 +7729893 128 0 +7729988 0 0 +7730070 128 0 +7730141 0 0 +7732750 totRewards = 27 +7732750 64 8 +7732939 0 8 +7732950 0 0 +7732966 64 0 +7734138 0 0 +7734147 64 0 +7735096 0 0 +7735122 64 0 +7735434 0 0 +7735464 64 0 +7735589 0 0 +7735614 64 0 +7735744 0 0 +7735773 64 0 +7735913 0 0 +7735933 64 0 +7736087 0 0 +7736097 64 0 +7737351 0 0 +7737358 64 0 +7737527 0 0 +7737563 64 0 +7737905 0 0 +7737973 64 0 +7738060 0 0 +7738711 64 0 +7739104 0 0 +7739144 64 0 +7739275 0 0 +7739310 64 0 +7740248 0 0 +7740276 64 0 +7740402 0 0 +7740424 64 0 +7740623 0 0 +7740657 64 0 +7740921 0 0 +7740929 64 0 +7741081 0 0 +7741115 64 0 +7741257 0 0 +7741299 64 0 +7741393 0 0 +7744012 totRewards = 28 +7744012 128 16 +7744190 0 16 +7744212 0 0 +7744254 128 0 +7744591 0 0 +7744627 128 0 +7744754 0 0 +7744772 128 0 +7744882 0 0 +7744909 128 0 +7745016 0 0 +7745054 128 0 +7745173 0 0 +7745180 128 0 +7745316 0 0 +7745325 128 0 +7745451 0 0 +7745473 128 0 +7745605 0 0 +7745616 128 0 +7745755 0 0 +7745777 128 0 +7745908 0 0 +7745937 128 0 +7746070 0 0 +7746103 128 0 +7746228 0 0 +7746259 128 0 +7746394 0 0 +7746433 128 0 +7746551 0 0 +7746597 128 0 +7746711 0 0 +7746764 128 0 +7746864 0 0 +7746912 128 0 +7747023 0 0 +7747070 128 0 +7747181 0 0 +7747240 128 0 +7747344 0 0 +7747394 128 0 +7747508 0 0 +7747557 128 0 +7747668 0 0 +7747717 128 0 +7747845 0 0 +7747893 128 0 +7748015 0 0 +7748073 128 0 +7748178 0 0 +7748248 128 0 +7748328 0 0 +7751119 totRewards = 29 +7751119 64 8 +7751284 0 8 +7751297 64 8 +7751319 64 0 +7751936 0 0 +7751944 64 0 +7752075 0 0 +7752081 64 0 +7752352 0 0 +7752369 64 0 +7752495 0 0 +7752509 64 0 +7753308 0 0 +7753311 64 0 +7753472 0 0 +7753484 64 0 +7753615 0 0 +7753653 64 0 +7753782 0 0 +7753808 64 0 +7753948 0 0 +7753967 64 0 +7754108 0 0 +7754132 64 0 +7754263 0 0 +7754300 64 0 +7754433 0 0 +7754457 64 0 +7754590 0 0 +7754618 64 0 +7754934 0 0 +7754951 64 0 +7755096 0 0 +7755117 64 0 +7755269 0 0 +7755280 64 0 +7755421 0 0 +7755464 64 0 +7755583 0 0 +7755614 64 0 +7756426 0 0 +7756435 64 0 +7756575 0 0 +7756621 64 0 +7756735 0 0 +7759346 totRewards = 30 +7759346 128 16 +7759546 128 0 +7759735 0 0 +7759828 128 0 +7759895 0 0 +7760019 128 0 +7760549 0 0 +7760573 128 0 +7761183 0 0 +7761278 128 0 +7761837 0 0 +7761971 128 0 +7762397 0 0 +7770968 128 0 +7771508 0 0 +7771516 128 0 +7771520 0 0 +7771594 128 0 +7771670 0 0 +7778279 128 0 +7778726 0 0 +7778810 128 0 +7781612 0 0 +7781679 128 0 +7781859 0 0 +7781952 128 0 +7782647 0 0 +7782660 128 0 +7783611 0 0 +7783695 128 0 +7783820 0 0 +7783904 128 0 +7784028 0 0 +7784715 128 0 +7784748 0 0 +7784815 128 0 +7784963 0 0 +7784972 128 0 +7785128 0 0 +7785171 128 0 +7785323 0 0 +7785332 128 0 +7785458 0 0 +7785567 128 0 +7785644 0 0 +7785652 128 0 +7785984 0 0 +7786006 128 0 +7786181 0 0 +7798709 128 0 +7799137 0 0 +7799197 128 0 +7799717 0 0 +7799733 128 0 +7799853 0 0 +7799891 128 0 +7800003 0 0 +7800048 128 0 +7800153 0 0 +7800200 128 0 +7800302 0 0 +7800347 128 0 +7800452 0 0 +7800500 128 0 +7800618 0 0 +7803661 128 0 +7803970 0 0 +7804004 128 0 +7804144 0 0 +7813162 128 0 +7813218 0 0 +7813406 128 0 +7813806 0 0 +7813875 128 0 +7814107 0 0 +7823391 totRewards = 31 +7823391 64 8 +7823591 64 0 +7823656 0 0 +7823671 64 0 +7823881 0 0 +7823897 64 0 +7826008 0 0 +7826037 64 0 +7827566 0 0 +7827573 64 0 +7828584 0 0 +7828620 64 0 +7828743 0 0 +7834990 totRewards = 32 +7834990 128 16 +7835139 0 16 +7835167 128 16 +7835190 128 0 +7835449 0 0 +7835485 128 0 +7835835 0 0 +7835868 128 0 +7836110 0 0 +7836120 128 0 +7836236 0 0 +7836256 128 0 +7836367 0 0 +7836396 128 0 +7836513 0 0 +7836531 128 0 +7836651 0 0 +7836676 128 0 +7836789 0 0 +7836818 128 0 +7836938 0 0 +7836957 128 0 +7837076 0 0 +7837105 128 0 +7837232 0 0 +7837258 128 0 +7837401 0 0 +7837432 128 0 +7837572 0 0 +7837608 128 0 +7837734 0 0 +7837774 128 0 +7837900 0 0 +7837949 128 0 +7838076 0 0 +7838119 128 0 +7838241 0 0 +7838288 128 0 +7838407 0 0 +7838416 128 0 +7839140 0 0 +7839167 128 0 +7839306 0 0 +7839334 128 0 +7839474 0 0 +7839510 128 0 +7839648 0 0 +7839695 128 0 +7839813 0 0 +7839849 128 0 +7839976 0 0 +7843754 totRewards = 33 +7843754 64 8 +7843954 64 0 +7843967 0 0 +7843973 64 0 +7845978 0 0 +7845984 64 0 +7846131 0 0 +7846155 64 0 +7846469 0 0 +7846491 64 0 +7846622 0 0 +7846657 64 0 +7846788 0 0 +7846799 64 0 +7847249 0 0 +7847271 64 0 +7847410 0 0 +7847455 64 0 +7847541 0 0 +7850856 totRewards = 34 +7850856 128 16 +7851040 0 16 +7851056 0 0 +7851101 128 0 +7851704 0 0 +7851731 128 0 +7851818 0 0 +7851873 128 0 +7851970 0 0 +7851982 128 0 +7852120 0 0 +7852136 128 0 +7852248 0 0 +7852280 128 0 +7852389 0 0 +7852411 128 0 +7852683 0 0 +7852708 128 0 +7852833 0 0 +7852864 128 0 +7852987 0 0 +7853024 128 0 +7853146 0 0 +7853179 128 0 +7853313 0 0 +7853358 128 0 +7853472 0 0 +7853527 128 0 +7853635 0 0 +7853698 128 0 +7853797 0 0 +7853859 128 0 +7853955 0 0 +7854006 128 0 +7854110 0 0 +7854161 128 0 +7854262 0 0 +7854311 128 0 +7854419 0 0 +7854471 128 0 +7854573 0 0 +7854639 128 0 +7854738 0 0 +7854791 128 0 +7854898 0 0 +7854946 128 0 +7855057 0 0 +7855109 128 0 +7855227 0 0 +7855280 128 0 +7855404 0 0 +7855464 128 0 +7855564 0 0 +7855679 128 0 +7855711 0 0 +7858818 totRewards = 35 +7858818 64 8 +7859018 64 0 +7859614 0 0 +7859624 64 0 +7860163 0 0 +7860171 64 0 +7861607 0 0 +7861621 64 0 +7861768 0 0 +7861798 64 0 +7861923 0 0 +7861961 64 0 +7862077 0 0 +7862128 64 0 +7862227 0 0 +7865126 totRewards = 36 +7865126 128 16 +7865323 0 16 +7865326 0 0 +7865400 128 0 +7865601 0 0 +7865621 128 0 +7865723 0 0 +7865770 128 0 +7865984 0 0 +7866016 128 0 +7866108 0 0 +7866176 128 0 +7866543 0 0 +7866580 128 0 +7866846 0 0 +7866872 128 0 +7866999 0 0 +7867032 128 0 +7867154 0 0 +7867201 128 0 +7867325 0 0 +7867359 128 0 +7867483 0 0 +7867533 128 0 +7867646 0 0 +7867703 128 0 +7867828 0 0 +7867875 128 0 +7867993 0 0 +7868049 128 0 +7868165 0 0 +7868226 128 0 +7868323 0 0 +7868378 128 0 +7868473 0 0 +7868524 128 0 +7868631 0 0 +7868678 128 0 +7868784 0 0 +7868845 128 0 +7868939 0 0 +7869007 128 0 +7869106 0 0 +7869153 128 0 +7869260 0 0 +7869319 128 0 +7869430 0 0 +7869482 128 0 +7869593 0 0 +7869658 128 0 +7869757 0 0 +7869825 128 0 +7869914 0 0 +7870005 128 0 +7870057 0 0 +7873030 totRewards = 37 +7873030 64 8 +7873229 0 8 +7873230 0 0 +7873246 64 0 +7873983 0 0 +7874009 64 0 +7875354 0 0 +7875365 64 0 +7875515 0 0 +7875533 64 0 +7875672 0 0 +7875697 64 0 +7875846 0 0 +7875866 64 0 +7875997 0 0 +7876036 64 0 +7876162 0 0 +7876199 64 0 +7876323 0 0 +7876361 64 0 +7876488 0 0 +7876523 64 0 +7876651 0 0 +7876694 64 0 +7876820 0 0 +7876857 64 0 +7877649 0 0 +7877665 64 0 +7877800 0 0 +7877838 64 0 +7877965 0 0 +7878018 64 0 +7878114 0 0 +7881030 totRewards = 38 +7881030 128 16 +7881192 0 16 +7881230 0 0 +7881250 128 0 +7881470 0 0 +7881478 128 0 +7881591 0 0 +7881617 128 0 +7881863 0 0 +7881878 128 0 +7881978 0 0 +7882035 128 0 +7882400 0 0 +7882433 128 0 +7882567 0 0 +7882573 128 0 +7882714 0 0 +7882749 128 0 +7882875 0 0 +7882921 128 0 +7883043 0 0 +7883089 128 0 +7883214 0 0 +7883259 128 0 +7883386 0 0 +7883443 128 0 +7883561 0 0 +7883614 128 0 +7883727 0 0 +7883786 128 0 +7883878 0 0 +7883938 128 0 +7884042 0 0 +7884087 128 0 +7884198 0 0 +7884250 128 0 +7884353 0 0 +7884421 128 0 +7884510 0 0 +7884579 128 0 +7884678 0 0 +7884729 128 0 +7884846 0 0 +7884901 128 0 +7885012 0 0 +7885074 128 0 +7885174 0 0 +7885254 128 0 +7885376 0 0 +7885445 128 0 +7885529 0 0 +7889531 totRewards = 39 +7889531 64 8 +7889731 64 0 +7889761 0 0 +7889764 64 0 +7890353 0 0 +7890374 64 0 +7890499 0 0 +7890505 64 0 +7891707 0 0 +7891730 64 0 +7891877 0 0 +7891911 64 0 +7892050 0 0 +7892082 64 0 +7892211 0 0 +7892240 64 0 +7892367 0 0 +7892404 64 0 +7892531 0 0 +7892563 64 0 +7892695 0 0 +7892722 64 0 +7892868 0 0 +7892883 64 0 +7893208 0 0 +7893218 64 0 +7893348 0 0 +7893404 64 0 +7893488 0 0 +7896150 totRewards = 40 +7896150 128 16 +7896337 0 16 +7896350 0 0 +7896384 128 0 +7896596 0 0 +7896620 128 0 +7896725 0 0 +7896772 128 0 +7896980 0 0 +7897027 128 0 +7897108 0 0 +7897185 128 0 +7897545 0 0 +7897579 128 0 +7897712 0 0 +7897731 128 0 +7897867 0 0 +7897894 128 0 +7898018 0 0 +7898067 128 0 +7898187 0 0 +7898232 128 0 +7898352 0 0 +7898399 128 0 +7898507 0 0 +7898565 128 0 +7898657 0 0 +7898710 128 0 +7898815 0 0 +7898868 128 0 +7898969 0 0 +7899036 128 0 +7899125 0 0 +7899188 128 0 +7899299 0 0 +7899344 128 0 +7899457 0 0 +7899515 128 0 +7899621 0 0 +7899682 128 0 +7899788 0 0 +7899857 128 0 +7899953 0 0 +7900013 128 0 +7900115 0 0 +7900169 128 0 +7900275 0 0 +7900326 128 0 +7900429 0 0 +7900508 128 0 +7900621 0 0 +7900688 128 0 +7900791 0 0 +7900863 128 0 +7900965 0 0 +7901007 128 0 +7901129 0 0 +7901172 128 0 +7901285 0 0 +7901351 128 0 +7901449 0 0 +7901514 128 0 +7901622 0 0 +7901668 128 0 +7901786 0 0 +7901853 128 0 +7901936 0 0 +7902059 128 0 +7902084 0 0 +7902107 128 0 +7902161 0 0 +7902279 128 0 +7902313 0 0 +7902412 128 0 +7902446 0 0 +7902466 128 0 +7902507 0 0 +7902598 128 0 +7902669 0 0 +7905547 totRewards = 41 +7905547 64 8 +7905735 0 8 +7905747 0 0 +7905759 64 0 +7907837 0 0 +7907860 64 0 +7908013 0 0 +7908024 64 0 +7908328 0 0 +7908367 64 0 +7908481 0 0 +7908518 64 0 +7908635 0 0 +7908672 64 0 +7908961 0 0 +7908986 64 0 +7909114 0 0 +7909176 64 0 +7909231 0 0 +7912019 totRewards = 42 +7912019 128 16 +7912212 0 16 +7912219 0 0 +7912264 128 0 +7912454 0 0 +7912500 128 0 +7912588 0 0 +7912638 128 0 +7912841 0 0 +7912888 128 0 +7912974 0 0 +7913041 128 0 +7913413 0 0 +7913441 128 0 +7913699 0 0 +7913724 128 0 +7913853 0 0 +7913892 128 0 +7914005 0 0 +7914050 128 0 +7914171 0 0 +7914219 128 0 +7914337 0 0 +7914389 128 0 +7914507 0 0 +7914563 128 0 +7914681 0 0 +7914727 128 0 +7914842 0 0 +7914893 128 0 +7915001 0 0 +7915035 128 0 +7915167 0 0 +7915171 128 0 +7915299 0 0 +7915335 128 0 +7915457 0 0 +7915495 128 0 +7915616 0 0 +7915664 128 0 +7915808 0 0 +7915834 128 0 +7915970 0 0 +7916001 128 0 +7916121 0 0 +7916177 128 0 +7916274 0 0 +7919172 totRewards = 43 +7919172 64 8 +7919351 0 8 +7919359 64 8 +7919372 64 0 +7920098 0 0 +7920116 64 0 +7921447 0 0 +7921461 64 0 +7921602 0 0 +7921630 64 0 +7921769 0 0 +7921793 64 0 +7921947 0 0 +7921962 64 0 +7922118 0 0 +7922136 64 0 +7922270 0 0 +7922304 64 0 +7922761 0 0 +7922779 64 0 +7922919 0 0 +7922952 64 0 +7923096 0 0 +7923111 64 0 +7923239 0 0 +7923269 64 0 +7924484 0 0 +7927363 totRewards = 44 +7927363 128 16 +7927531 0 16 +7927563 0 0 +7927599 128 0 +7927793 0 0 +7927820 128 0 +7927920 0 0 +7927987 128 0 +7928176 0 0 +7928212 128 0 +7928306 0 0 +7928369 128 0 +7928592 0 0 +7928607 128 0 +7928731 0 0 +7928766 128 0 +7929039 0 0 +7929058 128 0 +7929183 0 0 +7929227 128 0 +7929342 0 0 +7929388 128 0 +7929500 0 0 +7929543 128 0 +7929670 0 0 +7929713 128 0 +7929829 0 0 +7929884 128 0 +7929990 0 0 +7930047 128 0 +7930145 0 0 +7930196 128 0 +7930300 0 0 +7930357 128 0 +7930465 0 0 +7930507 128 0 +7930622 0 0 +7930675 128 0 +7930784 0 0 +7930844 128 0 +7930943 0 0 +7931008 128 0 +7931097 0 0 +7931161 128 0 +7931267 0 0 +7931325 128 0 +7931412 0 0 +7931479 128 0 +7931537 0 0 +7931635 128 0 +7931736 0 0 +7931802 128 0 +7931882 0 0 +7932056 128 0 +7932077 0 0 +7932323 128 0 +7932341 0 0 +7932532 128 0 +7932567 0 0 +7932648 128 0 +7932722 0 0 +7932796 128 0 +7932900 0 0 +7932956 128 0 +7933070 0 0 +7933137 128 0 +7933227 0 0 +7933318 128 0 +7933372 0 0 +7936145 totRewards = 45 +7936145 64 8 +7936331 0 8 +7936345 0 0 +7936351 64 0 +7938670 0 0 +7938678 64 0 +7938832 0 0 +7938847 64 0 +7938994 0 0 +7939027 64 0 +7939141 0 0 +7939184 64 0 +7939299 0 0 +7939351 64 0 +7939445 0 0 +7942321 totRewards = 46 +7942321 128 16 +7942500 0 16 +7942521 0 0 +7942553 128 0 +7942738 0 0 +7942769 128 0 +7942881 0 0 +7942940 128 0 +7943134 0 0 +7943169 128 0 +7943260 0 0 +7943329 128 0 +7943406 0 0 +7943421 128 0 +7943545 0 0 +7943563 128 0 +7943677 0 0 +7943703 128 0 +7944125 0 0 +7944158 128 0 +7944284 0 0 +7944305 128 0 +7944442 0 0 +7944471 128 0 +7944599 0 0 +7944643 128 0 +7944760 0 0 +7944816 128 0 +7944939 0 0 +7944984 128 0 +7945100 0 0 +7945140 128 0 +7945255 0 0 +7945301 128 0 +7945571 0 0 +7945586 128 0 +7945718 0 0 +7945760 128 0 +7945882 0 0 +7945921 128 0 +7946053 0 0 +7946086 128 0 +7946220 0 0 +7946260 128 0 +7946378 0 0 +7946433 128 0 +7946524 0 0 +7946612 128 0 +7946674 0 0 +7949564 totRewards = 47 +7949564 64 8 +7949764 64 0 +7949764 0 0 +7949783 64 0 +7950950 0 0 +7950954 64 0 +7952222 0 0 +7952250 64 0 +7952562 0 0 +7952598 64 0 +7952723 0 0 +7952758 64 0 +7952880 0 0 +7952917 64 0 +7953050 0 0 +7953078 64 0 +7953208 0 0 +7953249 64 0 +7953367 0 0 +7953409 64 0 +7953523 0 0 +7956542 totRewards = 48 +7956542 128 16 +7956715 0 16 +7956742 0 0 +7956753 128 0 +7956970 0 0 +7956992 128 0 +7957107 0 0 +7957183 128 0 +7957352 0 0 +7957394 128 0 +7957491 0 0 +7957533 128 0 +7957780 0 0 +7957798 128 0 +7957913 0 0 +7957946 128 0 +7958058 0 0 +7958090 128 0 +7958212 0 0 +7958231 128 0 +7958357 0 0 +7958393 128 0 +7958511 0 0 +7958556 128 0 +7958677 0 0 +7958711 128 0 +7958833 0 0 +7958875 128 0 +7959005 0 0 +7959060 128 0 +7959173 0 0 +7959226 128 0 +7959332 0 0 +7959383 128 0 +7959499 0 0 +7959552 128 0 +7959658 0 0 +7959717 128 0 +7959818 0 0 +7959877 128 0 +7959959 0 0 +7960024 128 0 +7960140 0 0 +7960205 128 0 +7960301 0 0 +7960365 128 0 +7960469 0 0 +7960524 128 0 +7960599 0 0 +7960686 128 0 +7960810 0 0 +7960851 128 0 +7960962 0 0 +7961027 128 0 +7961117 0 0 +7961204 128 0 +7961295 0 0 +7964706 totRewards = 49 +7964706 64 8 +7964906 64 0 +7966868 0 0 +7966880 64 0 +7967019 0 0 +7967049 64 0 +7967179 0 0 +7967224 64 0 +7967335 0 0 +7967369 64 0 +7967490 0 0 +7967521 64 0 +7967649 0 0 +7967681 64 0 +7967814 0 0 +7967829 64 0 +7968780 0 0 +7968795 64 0 +7968925 0 0 +7968947 64 0 +7969095 0 0 +7969109 64 0 +7969456 0 0 +7969478 64 0 +7969615 0 0 +7969659 64 0 +7969793 0 0 +7969820 64 0 +7969943 0 0 +7969988 64 0 +7970089 0 0 +7970199 64 0 +7970210 0 0 +7972772 totRewards = 50 +7972772 128 16 +7972924 0 16 +7972972 0 0 +7972975 128 0 +7973169 0 0 +7973199 128 0 +7973306 0 0 +7973375 128 0 +7973442 0 0 +7973458 128 0 +7973560 0 0 +7973591 128 0 +7973689 0 0 +7973740 128 0 +7973845 0 0 +7973852 128 0 +7973973 0 0 +7973988 128 0 +7974111 0 0 +7974138 128 0 +7974403 0 0 +7974429 128 0 +7974551 0 0 +7974581 128 0 +7974707 0 0 +7974748 128 0 +7974875 0 0 +7974905 128 0 +7975034 0 0 +7975077 128 0 +7975198 0 0 +7975249 128 0 +7975365 0 0 +7975419 128 0 +7975531 0 0 +7975595 128 0 +7975677 0 0 +7975763 128 0 +7975835 0 0 +7975909 128 0 +7976004 0 0 +7976053 128 0 +7976170 0 0 +7976219 128 0 +7976333 0 0 +7976381 128 0 +7976490 0 0 +7976543 128 0 +7976648 0 0 +7976714 128 0 +7976793 0 0 +7976870 128 0 +7977000 0 0 +7977036 128 0 +7977156 0 0 +7977203 128 0 +7977313 0 0 +7977377 128 0 +7977451 0 0 +7981685 totRewards = 51 +7981685 64 8 +7981885 64 0 +7982588 0 0 +7982597 64 0 +7983005 0 0 +7983015 64 0 +7983943 0 0 +7983946 64 0 +7984103 0 0 +7984115 64 0 +7984423 0 0 +7984436 64 0 +7984579 0 0 +7984609 64 0 +7984738 0 0 +7984769 64 0 +7984903 0 0 +7984939 64 0 +7985073 0 0 +7985101 64 0 +7985231 0 0 +7985272 64 0 +7985729 0 0 +7985747 64 0 +7985888 0 0 +7985924 64 0 +7986047 0 0 +7988662 totRewards = 52 +7988662 128 16 +7988827 0 16 +7988862 0 0 +7988878 128 0 +7989246 0 0 +7989346 128 0 +7991807 0 0 +7991816 128 0 +7991952 0 0 +7991975 128 0 +7992111 0 0 +7992124 128 0 +7992438 0 0 +7992463 128 0 +7992593 0 0 +7992639 128 0 +7992759 0 0 +7992802 128 0 +7992925 0 0 +7992971 128 0 +7993465 0 0 +7993499 128 0 +7993632 0 0 +7993687 128 0 +7993808 0 0 +7993866 128 0 +7993991 0 0 +7994042 128 0 +7994185 0 0 +7994196 128 0 +7994335 0 0 +7994388 128 0 +7994508 0 0 +7994574 128 0 +7995282 0 0 +7995287 128 0 +7995764 0 0 +7995792 128 0 +7995933 0 0 +7995977 128 0 +7996111 0 0 +7996148 128 0 +7996268 0 0 +7996308 128 0 +7996426 0 0 +7996479 128 0 +7996596 0 0 +7996641 128 0 +7996771 0 0 +8003049 128 0 +8003174 0 0 +8012705 128 0 +8012750 0 0 +8012815 128 0 +8013021 0 0 +8013046 128 0 +8013889 0 0 +8013917 128 0 +8014030 0 0 +8014079 128 0 +8014189 0 0 +8014207 128 0 +8014319 0 0 +8014357 128 0 +8014470 0 0 +8014499 128 0 +8014621 0 0 +8014665 128 0 +8014770 0 0 +8014835 128 0 +8014905 0 0 +8018396 totRewards = 53 +8018396 64 8 +8018426 0 8 +8018596 0 0 +8029486 64 0 +8029770 0 0 +8029782 64 0 +8031102 0 0 +8031129 64 0 +8031239 0 0 +8031275 64 0 +8031387 0 0 +8031407 64 0 +8031872 0 0 +8035335 64 0 +8035389 0 0 +8035423 64 0 +8036330 0 0 +8036340 64 0 +8036844 0 0 +8036869 64 0 +8037008 0 0 +8037055 64 0 +8037175 0 0 +8037229 64 0 +8037354 0 0 +8037464 64 0 +8037474 0 0 +8037506 64 0 +8037540 0 0 +8049713 totRewards = 54 +8049713 128 16 +8049913 128 0 +8050505 0 0 +8050526 128 0 +8051015 0 0 +8051041 128 0 +8051141 0 0 +8051158 128 0 +8051416 0 0 +8051437 128 0 +8051560 0 0 +8051581 128 0 +8051855 0 0 +8051871 128 0 +8052000 0 0 +8052022 128 0 +8052139 0 0 +8052167 128 0 +8052305 0 0 +8052329 128 0 +8052466 0 0 +8052493 128 0 +8052619 0 0 +8052656 128 0 +8052774 0 0 +8052811 128 0 +8052924 0 0 +8052965 128 0 +8053087 0 0 +8053103 128 0 +8053224 0 0 +8053249 128 0 +8053366 0 0 +8053395 128 0 +8053517 0 0 +8053547 128 0 +8053678 0 0 +8053717 128 0 +8053852 0 0 +8053873 128 0 +8054015 0 0 +8054053 128 0 +8054193 0 0 +8054221 128 0 +8054373 0 0 +8054400 128 0 +8054531 0 0 +8054567 128 0 +8054690 0 0 +8054743 128 0 +8054853 0 0 +8054910 128 0 +8055035 0 0 +8055094 128 0 +8055216 0 0 +8055413 128 0 +8055504 0 0 +8055572 128 0 +8055618 0 0 +8055718 128 0 +8055755 0 0 +8061519 totRewards = 55 +8061519 64 8 +8061719 64 0 +8061777 0 0 +8061799 64 0 +8063502 0 0 +8063517 64 0 +8064335 0 0 +8064354 64 0 +8064518 0 0 +8064529 64 0 +8065104 0 0 +8065129 64 0 +8065785 0 0 +8077601 totRewards = 56 +8077601 128 16 +8077801 128 0 +8078493 0 0 +8078510 128 0 +8078622 0 0 +8078650 128 0 +8078743 0 0 +8078774 128 0 +8078881 0 0 +8078908 128 0 +8079013 0 0 +8079045 128 0 +8079142 0 0 +8079173 128 0 +8079283 0 0 +8079310 128 0 +8079433 0 0 +8079451 128 0 +8079573 0 0 +8079611 128 0 +8079718 0 0 +8079758 128 0 +8079866 0 0 +8079905 128 0 +8080022 0 0 +8080066 128 0 +8080183 0 0 +8080227 128 0 +8080339 0 0 +8080389 128 0 +8080491 0 0 +8080553 128 0 +8080649 0 0 +8080719 128 0 +8080818 0 0 +8080946 128 0 +8080976 0 0 +8081195 128 0 +8081288 0 0 +8081325 128 0 +8081467 0 0 +8081510 128 0 +8081636 0 0 +8081676 128 0 +8081799 0 0 +8081841 128 0 +8081958 0 0 +8082018 128 0 +8082121 0 0 +8092708 totRewards = 57 +8092708 64 8 +8092908 64 0 +8095791 0 0 +8095819 64 0 +8096103 0 0 +8096113 64 0 +8096566 0 0 +8096612 64 0 +8096710 0 0 +8100081 totRewards = 58 +8100081 128 16 +8100281 128 0 +8100404 0 0 +8100420 128 0 +8100991 0 0 +8101042 128 0 +8101131 0 0 +8101144 128 0 +8101266 0 0 +8101286 128 0 +8101388 0 0 +8101425 128 0 +8101522 0 0 +8101555 128 0 +8101661 0 0 +8101688 128 0 +8101800 0 0 +8101834 128 0 +8101953 0 0 +8101980 128 0 +8102091 0 0 +8102123 128 0 +8102243 0 0 +8102279 128 0 +8102395 0 0 +8102443 128 0 +8102553 0 0 +8102605 128 0 +8102715 0 0 +8102763 128 0 +8102889 0 0 +8102933 128 0 +8103060 0 0 +8103111 128 0 +8103224 0 0 +8103278 128 0 +8103379 0 0 +8103443 128 0 +8103517 0 0 +8103594 128 0 +8103673 0 0 +8103731 128 0 +8103846 0 0 +8103892 128 0 +8103998 0 0 +8104059 128 0 +8104153 0 0 +8104204 128 0 +8104318 0 0 +8104354 128 0 +8104477 0 0 +8104525 128 0 +8104631 0 0 +8104704 128 0 +8104783 0 0 +8108593 totRewards = 59 +8108593 64 8 +8108793 64 0 +8108799 0 0 +8108811 64 0 +8111156 0 0 +8111170 64 0 +8111314 0 0 +8111343 64 0 +8111490 0 0 +8111510 64 0 +8111661 0 0 +8111690 64 0 +8111819 0 0 +8111864 64 0 +8111972 0 0 +8112035 64 0 +8112134 0 0 +8112172 64 0 +8112310 0 0 +8112334 64 0 +8112490 0 0 +8112505 64 0 +8112655 0 0 +8112709 64 0 +8112827 0 0 +8117626 totRewards = 60 +8117626 128 16 +8117820 0 16 +8117826 0 0 +8117853 128 0 +8118305 0 0 +8118321 128 0 +8118555 0 0 +8118585 128 0 +8118702 0 0 +8118719 128 0 +8118837 0 0 +8118852 128 0 +8118967 0 0 +8118993 128 0 +8119114 0 0 +8119139 128 0 +8119261 0 0 +8119287 128 0 +8119405 0 0 +8119440 128 0 +8119556 0 0 +8119597 128 0 +8119716 0 0 +8119756 128 0 +8119872 0 0 +8119918 128 0 +8120035 0 0 +8120086 128 0 +8120199 0 0 +8120246 128 0 +8120351 0 0 +8120409 128 0 +8120503 0 0 +8120552 128 0 +8120659 0 0 +8120715 128 0 +8120828 0 0 +8120875 128 0 +8120988 0 0 +8121041 128 0 +8121145 0 0 +8121214 128 0 +8121281 0 0 +8121380 128 0 +8121399 0 0 +8121411 128 0 +8121433 0 0 +8124531 totRewards = 61 +8124531 64 8 +8124716 0 8 +8124731 0 0 +8124742 64 0 +8126943 0 0 +8126968 64 0 +8127102 0 0 +8127143 64 0 +8127261 0 0 +8127308 64 0 +8127422 0 0 +8127458 64 0 +8127601 0 0 +8127621 64 0 +8127761 0 0 +8127820 64 0 +8127913 0 0 +8127977 64 0 +8128253 0 0 +8131322 totRewards = 62 +8131322 128 16 +8131479 0 16 +8131522 0 0 +8131568 128 0 +8132034 0 0 +8132047 128 0 +8132175 0 0 +8132196 128 0 +8132282 0 0 +8132322 128 0 +8132579 0 0 +8132593 128 0 +8132716 0 0 +8132740 128 0 +8133001 0 0 +8133032 128 0 +8133158 0 0 +8133175 128 0 +8133309 0 0 +8133344 128 0 +8133467 0 0 +8133512 128 0 +8133626 0 0 +8133676 128 0 +8133793 0 0 +8133841 128 0 +8133966 0 0 +8134005 128 0 +8134131 0 0 +8134185 128 0 +8134292 0 0 +8134349 128 0 +8134446 0 0 +8134504 128 0 +8134604 0 0 +8134655 128 0 +8134760 0 0 +8134813 128 0 +8134926 0 0 +8134974 128 0 +8135090 0 0 +8135148 128 0 +8135258 0 0 +8135337 128 0 +8135361 0 0 +8138305 totRewards = 63 +8138305 64 8 +8138458 0 8 +8138475 64 8 +8138505 64 0 +8139198 0 0 +8139210 64 0 +8140671 0 0 +8140689 64 0 +8140842 0 0 +8140861 64 0 +8141008 0 0 +8141038 64 0 +8141176 0 0 +8141220 64 0 +8141349 0 0 +8141402 64 0 +8141509 0 0 +8148584 totRewards = 64 +8148584 128 16 +8148780 0 16 +8148784 0 0 +8148912 128 0 +8149943 0 0 +8149947 128 0 +8150647 0 0 +8150658 128 0 +8151120 0 0 +8151142 128 0 +8151270 0 0 +8151293 128 0 +8151431 0 0 +8151442 128 0 +8151581 0 0 +8151625 128 0 +8151743 0 0 +8151794 128 0 +8151916 0 0 +8151959 128 0 +8152075 0 0 +8152120 128 0 +8152232 0 0 +8152282 128 0 +8152391 0 0 +8152447 128 0 +8152554 0 0 +8152612 128 0 +8152718 0 0 +8152774 128 0 +8152869 0 0 +8152937 128 0 +8153042 0 0 +8153086 128 0 +8153195 0 0 +8153247 128 0 +8153363 0 0 +8153412 128 0 +8153521 0 0 +8153569 128 0 +8153674 0 0 +8153725 128 0 +8153825 0 0 +8157369 128 0 +8157382 0 0 +8169714 totRewards = 65 +8169714 64 8 +8169914 64 0 +8170381 0 0 +8170395 64 0 +8170508 0 0 +8170520 64 0 +8170632 0 0 +8170651 64 0 +8170757 0 0 +8170775 64 0 +8171163 0 0 +8171179 64 0 +8172073 0 0 +8172083 64 0 +8172243 0 0 +8172268 64 0 +8172577 0 0 +8172610 64 0 +8172735 0 0 +8172785 64 0 +8172902 0 0 +8172956 64 0 +8173064 0 0 +8173112 64 0 +8173241 0 0 +8173288 64 0 +8173403 0 0 +8177958 totRewards = 66 +8177958 128 16 +8178158 128 0 +8178197 0 0 +8178221 128 0 +8178553 0 0 +8178574 128 0 +8178686 0 0 +8178731 128 0 +8178793 0 0 +8178838 128 0 +8178950 0 0 +8178969 128 0 +8179080 0 0 +8179096 128 0 +8179207 0 0 +8179235 128 0 +8179342 0 0 +8179366 128 0 +8179481 0 0 +8179504 128 0 +8179624 0 0 +8179649 128 0 +8179771 0 0 +8179811 128 0 +8179930 0 0 +8179965 128 0 +8180087 0 0 +8180128 128 0 +8180239 0 0 +8180287 128 0 +8180403 0 0 +8180451 128 0 +8180556 0 0 +8180612 128 0 +8180705 0 0 +8180761 128 0 +8180863 0 0 +8180909 128 0 +8181022 0 0 +8181084 128 0 +8181173 0 0 +8181238 128 0 +8181342 0 0 +8181391 128 0 +8181495 0 0 +8181555 128 0 +8181656 0 0 +8181729 128 0 +8181782 0 0 +8184908 totRewards = 67 +8184908 64 8 +8185108 64 0 +8185118 0 0 +8185125 64 0 +8186815 0 0 +8186824 64 0 +8187303 0 0 +8187325 64 0 +8187458 0 0 +8187486 64 0 +8187625 0 0 +8187645 64 0 +8187778 0 0 +8187817 64 0 +8188090 0 0 +8188123 64 0 +8188246 0 0 +8188316 64 0 +8188387 0 0 +8191424 totRewards = 68 +8191424 128 16 +8191610 0 16 +8191624 0 0 +8191647 128 0 +8191866 0 0 +8191900 128 0 +8191987 0 0 +8192032 128 0 +8192246 0 0 +8192281 128 0 +8192384 0 0 +8192463 128 0 +8192504 0 0 +8192538 128 0 +8192655 0 0 +8192673 128 0 +8192795 0 0 +8192819 128 0 +8192935 0 0 +8192971 128 0 +8193089 0 0 +8193114 128 0 +8193226 0 0 +8193259 128 0 +8193377 0 0 +8193418 128 0 +8193532 0 0 +8193573 128 0 +8193687 0 0 +8193738 128 0 +8193850 0 0 +8193914 128 0 +8194019 0 0 +8194078 128 0 +8194175 0 0 +8194239 128 0 +8194321 0 0 +8194378 128 0 +8194468 0 0 +8194533 128 0 +8194630 0 0 +8194685 128 0 +8194786 0 0 +8194835 128 0 +8194940 0 0 +8195005 128 0 +8195104 0 0 +8195162 128 0 +8195263 0 0 +8195324 128 0 +8195424 0 0 +8195480 128 0 +8195577 0 0 +8195643 128 0 +8195723 0 0 +8195795 128 0 +8195897 0 0 +8195945 128 0 +8196058 0 0 +8196114 128 0 +8196227 0 0 +8196350 128 0 +8196369 0 0 +8199703 totRewards = 69 +8199703 64 8 +8199885 0 8 +8199903 0 0 +8199913 64 0 +8200647 0 0 +8200655 64 0 +8201347 0 0 +8201359 64 0 +8201635 0 0 +8201662 64 0 +8202120 0 0 +8202138 64 0 +8202274 0 0 +8202306 64 0 +8202442 0 0 +8202473 64 0 +8202596 0 0 +8202642 64 0 +8202750 0 0 +8202800 64 0 +8202908 0 0 +8202947 64 0 +8203076 0 0 +8203126 64 0 +8203231 0 0 +8206243 totRewards = 70 +8206243 128 16 +8206443 128 0 +8206484 0 0 +8206528 128 0 +8206896 0 0 +8206917 128 0 +8207037 0 0 +8207066 128 0 +8207170 0 0 +8207193 128 0 +8207325 0 0 +8207343 128 0 +8207470 0 0 +8207506 128 0 +8207622 0 0 +8207660 128 0 +8207791 0 0 +8207822 128 0 +8207933 0 0 +8207984 128 0 +8208088 0 0 +8208159 128 0 +8208267 0 0 +8208314 128 0 +8208423 0 0 +8208483 128 0 +8208525 0 0 +8208546 128 0 +8208576 0 0 +8208645 128 0 +8208729 0 0 +8208789 128 0 +8208875 0 0 +8208935 128 0 +8209035 0 0 +8209090 128 0 +8209190 0 0 +8209250 128 0 +8209354 0 0 +8209413 128 0 +8209516 0 0 +8209588 128 0 +8209656 0 0 +8209756 128 0 +8209828 0 0 +8213075 totRewards = 71 +8213075 64 8 +8213257 0 8 +8213264 64 8 +8213275 64 0 +8213998 0 0 +8214014 64 0 +8214422 0 0 +8214434 64 0 +8214718 0 0 +8214728 64 0 +8215513 0 0 +8215534 64 0 +8215678 0 0 +8215705 64 0 +8216025 0 0 +8216049 64 0 +8216185 0 0 +8216226 64 0 +8216343 0 0 +8216389 64 0 +8216501 0 0 +8216551 64 0 +8216650 0 0 +8219650 totRewards = 72 +8219650 128 16 +8219802 0 16 +8219850 0 0 +8219880 128 0 +8220487 0 0 +8220503 128 0 +8220604 0 0 +8220653 128 0 +8220755 0 0 +8220765 128 0 +8220898 0 0 +8220913 128 0 +8221031 0 0 +8221071 128 0 +8221341 0 0 +8221378 128 0 +8221500 0 0 +8221542 128 0 +8221660 0 0 +8221708 128 0 +8221826 0 0 +8221879 128 0 +8221994 0 0 +8222048 128 0 +8222163 0 0 +8222213 128 0 +8222331 0 0 +8222383 128 0 +8222488 0 0 +8222558 128 0 +8222645 0 0 +8222701 128 0 +8222803 0 0 +8222867 128 0 +8222969 0 0 +8223030 128 0 +8223127 0 0 +8223184 128 0 +8223287 0 0 +8223341 128 0 +8223445 0 0 +8223499 128 0 +8223600 0 0 +8223678 128 0 +8223724 0 0 +8223807 128 0 +8223886 0 0 +8223978 128 0 +8224064 0 0 +8224122 128 0 +8224238 0 0 +8224295 128 0 +8224393 0 0 +8224469 128 0 +8224573 0 0 +8224646 128 0 +8224720 0 0 +8227852 totRewards = 73 +8227852 64 8 +8228014 0 8 +8228041 64 8 +8228052 64 0 +8229493 0 0 +8229499 64 0 +8229639 0 0 +8229644 64 0 +8230119 0 0 +8230133 64 0 +8230285 0 0 +8230301 64 0 +8230449 0 0 +8230472 64 0 +8230614 0 0 +8230640 64 0 +8230776 0 0 +8230826 64 0 +8230944 0 0 +8231006 64 0 +8231120 0 0 +8231159 64 0 +8231283 0 0 +8231342 64 0 +8231437 0 0 +8236228 totRewards = 74 +8236228 128 16 +8236363 0 16 +8236422 128 16 +8236428 128 0 +8237434 0 0 +8237455 128 0 +8237565 0 0 +8237590 128 0 +8237710 0 0 +8237720 128 0 +8237851 0 0 +8237873 128 0 +8237996 0 0 +8238028 128 0 +8238142 0 0 +8238173 128 0 +8238296 0 0 +8238317 128 0 +8238453 0 0 +8238479 128 0 +8238615 0 0 +8238640 128 0 +8238767 0 0 +8238803 128 0 +8238925 0 0 +8238966 128 0 +8239092 0 0 +8239131 128 0 +8239255 0 0 +8239300 128 0 +8239414 0 0 +8239466 128 0 +8239578 0 0 +8239630 128 0 +8239736 0 0 +8239788 128 0 +8239904 0 0 +8239964 128 0 +8240057 0 0 +8240098 128 0 +8240191 0 0 +8240262 128 0 +8240351 0 0 +8240412 128 0 +8240522 0 0 +8240586 128 0 +8240686 0 0 +8250887 totRewards = 75 +8250887 64 8 +8251087 64 0 +8251130 0 0 +8251166 64 0 +8251225 0 0 +8251239 64 0 +8253956 0 0 +8253968 64 0 +8254283 0 0 +8254307 64 0 +8254440 0 0 +8254469 64 0 +8254599 0 0 +8254639 64 0 +8254771 0 0 +8254809 64 0 +8254960 0 0 +8254970 64 0 +8255117 0 0 +8255153 64 0 +8255261 0 0 +8255323 64 0 +8255449 0 0 +8255459 64 0 +8255600 0 0 +8255655 64 0 +8255745 0 0 +8279322 totRewards = 76 +8279322 128 16 +8279522 128 0 +8279579 0 0 +8279617 128 0 +8279830 0 0 +8279841 128 0 +8279959 0 0 +8279983 128 0 +8280196 0 0 +8280230 128 0 +8280339 0 0 +8280349 128 0 +8280588 0 0 +8280618 128 0 +8280738 0 0 +8280751 128 0 +8281031 0 0 +8281076 128 0 +8281187 0 0 +8281232 128 0 +8281357 0 0 +8281390 128 0 +8281518 0 0 +8281555 128 0 +8281679 0 0 +8281739 128 0 +8281854 0 0 +8281917 128 0 +8282025 0 0 +8282088 128 0 +8282196 0 0 +8282283 128 0 +8282378 0 0 +8282440 128 0 +8282554 0 0 +8282599 128 0 +8282719 0 0 +8282763 128 0 +8282899 0 0 +8282967 128 0 +8283097 0 0 +8283149 128 0 +8283279 0 0 +8283363 128 0 +8283464 0 0 +8283516 128 0 +8283666 0 0 +8283703 128 0 +8283824 0 0 +8283886 128 0 +8283996 0 0 +8284062 128 0 +8284182 0 0 +8284252 128 0 +8284365 0 0 +8284448 128 0 +8284541 0 0 +8284598 128 0 +8284719 0 0 +8286738 128 0 +8286867 0 0 +8290340 totRewards = 77 +8290339 64 8 +8290540 64 0 +8290590 0 0 +8290601 64 0 +8291851 0 0 +8291862 64 0 +8292282 0 0 +8292292 64 0 +8292432 0 0 +8292444 64 0 +8292585 0 0 +8292603 64 0 +8292743 0 0 +8292767 64 0 +8292903 0 0 +8292929 64 0 +8293055 0 0 +8293084 64 0 +8293206 0 0 +8293239 64 0 +8293362 0 0 +8293378 64 0 +8293522 0 0 +8293538 64 0 +8293676 0 0 +8293703 64 0 +8293837 0 0 +8293860 64 0 +8293983 0 0 +8294017 64 0 +8294140 0 0 +8294168 64 0 +8294299 0 0 +8294324 64 0 +8294438 0 0 +8294463 64 0 +8294577 0 0 +8294624 64 0 +8294933 0 0 +8294971 64 0 +8295097 0 0 +8295149 64 0 +8295259 0 0 +8295316 64 0 +8295411 0 0 +8312427 totRewards = 78 +8312427 128 16 +8312443 0 16 +8312507 128 16 +8312627 128 0 +8312634 0 0 +8312721 128 0 +8312796 0 0 +8312819 128 0 +8312837 0 0 +8312909 128 0 +8313026 0 0 +8313041 128 0 +8313944 0 0 +8313963 128 0 +8314082 0 0 +8314103 128 0 +8314226 0 0 +8314245 128 0 +8314359 0 0 +8314390 128 0 +8314507 0 0 +8314538 128 0 +8314658 0 0 +8314689 128 0 +8314800 0 0 +8314839 128 0 +8314965 0 0 +8315010 128 0 +8315129 0 0 +8315179 128 0 +8315284 0 0 +8315342 128 0 +8315446 0 0 +8315500 128 0 +8315605 0 0 +8315662 128 0 +8315773 0 0 +8315790 128 0 +8316217 0 0 +8316234 128 0 +8316371 0 0 +8316406 128 0 +8316539 0 0 +8316561 128 0 +8316712 0 0 +8316732 128 0 +8316876 0 0 +8316902 128 0 +8317031 0 0 +8317071 128 0 +8317194 0 0 +8317254 128 0 +8317355 0 0 +8324400 totRewards = 79 +8324400 64 8 +8324595 0 8 +8324600 0 0 +8324630 64 0 +8325107 0 0 +8325130 64 0 +8328538 0 0 +8328562 64 0 +8328718 0 0 +8328727 64 0 +8330048 0 0 +8330059 64 0 +8330437 0 0 +8330462 64 0 +8330627 0 0 +8330639 64 0 +8330802 0 0 +8330829 64 0 +8330948 0 0 +8331033 64 0 +8331042 0 0 +8336747 totRewards = 80 +8336747 128 16 +8336947 128 0 +8337131 0 0 +8337170 128 0 +8337664 0 0 +8337671 128 0 +8337778 0 0 +8337808 128 0 +8337916 0 0 +8337946 128 0 +8338049 0 0 +8338083 128 0 +8338180 0 0 +8338220 128 0 +8338330 0 0 +8338363 128 0 +8338466 0 0 +8338506 128 0 +8338617 0 0 +8338661 128 0 +8338767 0 0 +8338812 128 0 +8338932 0 0 +8338983 128 0 +8339098 0 0 +8339157 128 0 +8339270 0 0 +8339332 128 0 +8339452 0 0 +8339515 128 0 +8339635 0 0 +8339686 128 0 +8339806 0 0 +8339853 128 0 +8339969 0 0 +8339993 128 0 +8340265 0 0 +8340281 128 0 +8340408 0 0 +8340456 128 0 +8340569 0 0 +8340613 128 0 +8340723 0 0 +8340772 128 0 +8340884 0 0 +8340936 128 0 +8341039 0 0 +8341088 128 0 +8341198 0 0 +8341257 128 0 +8341365 0 0 +8341425 128 0 +8341533 0 0 +8341600 128 0 +8341701 0 0 +8341774 128 0 +8341866 0 0 +8341940 128 0 +8342058 0 0 +8342106 128 0 +8342187 0 0 +8342856 128 0 +8342930 0 0 +8343078 128 0 +8345964 0 0 +8350233 totRewards = 81 +8350233 64 8 +8350422 0 8 +8350428 64 8 +8350433 64 0 +8352812 0 0 +8352825 64 0 +8352980 0 0 +8352999 64 0 +8353143 0 0 +8353172 64 0 +8353304 0 0 +8353343 64 0 +8353469 0 0 +8353500 64 0 +8353628 0 0 +8353650 64 0 +8353797 0 0 +8353820 64 0 +8353968 0 0 +8353982 64 0 +8354299 0 0 +8354323 64 0 +8354453 0 0 +8354512 64 0 +8354600 0 0 +8357863 totRewards = 82 +8357863 128 16 +8358029 0 16 +8358063 0 0 +8358127 128 0 +8358328 0 0 +8358343 128 0 +8358444 0 0 +8358485 128 0 +8358833 0 0 +8358894 128 0 +8359134 0 0 +8359143 128 0 +8359253 0 0 +8359289 128 0 +8359394 0 0 +8359423 128 0 +8359551 0 0 +8359560 128 0 +8359686 0 0 +8359723 128 0 +8359837 0 0 +8359875 128 0 +8360005 0 0 +8360039 128 0 +8360163 0 0 +8360213 128 0 +8360331 0 0 +8360382 128 0 +8360496 0 0 +8360561 128 0 +8360673 0 0 +8360742 128 0 +8360851 0 0 +8360922 128 0 +8361023 0 0 +8361095 128 0 +8361171 0 0 +8361409 128 0 +8361510 0 0 +8361580 128 0 +8361657 0 0 +8361731 128 0 +8361838 0 0 +8361896 128 0 +8361991 0 0 +8362067 128 0 +8362161 0 0 +8362249 128 0 +8362257 0 0 +8366125 totRewards = 83 +8366125 64 8 +8366325 64 0 +8366348 0 0 +8366371 64 0 +8368634 0 0 +8368647 64 0 +8368798 0 0 +8368820 64 0 +8368956 0 0 +8368986 64 0 +8369110 0 0 +8369141 64 0 +8369276 0 0 +8369299 64 0 +8369430 0 0 +8369476 64 0 +8369597 0 0 +8369625 64 0 +8369761 0 0 +8369781 64 0 +8369926 0 0 +8369948 64 0 +8370611 0 0 +8370623 64 0 +8370769 0 0 +8370801 64 0 +8370942 0 0 +8370980 64 0 +8371113 0 0 +8371163 64 0 +8371250 0 0 +8374448 totRewards = 84 +8374448 128 16 +8374648 128 0 +8374649 0 0 +8374696 128 0 +8374925 0 0 +8374948 128 0 +8375178 0 0 +8375212 128 0 +8375308 0 0 +8375368 128 0 +8375606 0 0 +8375614 128 0 +8375745 0 0 +8375760 128 0 +8376177 0 0 +8376209 128 0 +8376313 0 0 +8376353 128 0 +8376471 0 0 +8376490 128 0 +8376612 0 0 +8376652 128 0 +8376765 0 0 +8376826 128 0 +8376936 0 0 +8376988 128 0 +8377106 0 0 +8377153 128 0 +8377274 0 0 +8377331 128 0 +8377445 0 0 +8377502 128 0 +8377607 0 0 +8377674 128 0 +8377766 0 0 +8377824 128 0 +8377931 0 0 +8377985 128 0 +8378104 0 0 +8378153 128 0 +8378267 0 0 +8378331 128 0 +8378428 0 0 +8385289 totRewards = 85 +8385289 64 8 +8385489 64 0 +8385501 0 0 +8385514 64 0 +8387814 0 0 +8387836 64 0 +8387980 0 0 +8388009 64 0 +8388139 0 0 +8388180 64 0 +8388288 0 0 +8388345 64 0 +8388442 0 0 +8388514 64 0 +8388582 0 0 +8392063 totRewards = 86 +8392063 128 16 +8392225 0 16 +8392263 0 0 +8392332 128 0 +8392799 0 0 +8392820 128 0 +8392933 0 0 +8393022 128 0 +8393049 0 0 +8393081 128 0 +8393354 0 0 +8393367 128 0 +8393481 0 0 +8393504 128 0 +8393933 0 0 +8393964 128 0 +8394089 0 0 +8394118 128 0 +8394247 0 0 +8394274 128 0 +8394404 0 0 +8394449 128 0 +8394571 0 0 +8394614 128 0 +8394738 0 0 +8394776 128 0 +8394899 0 0 +8394948 128 0 +8395062 0 0 +8395119 128 0 +8395222 0 0 +8395272 128 0 +8395384 0 0 +8395450 128 0 +8395540 0 0 +8395598 128 0 +8395707 0 0 +8395756 128 0 +8395869 0 0 +8395923 128 0 +8396037 0 0 +8396098 128 0 +8396204 0 0 +8396274 128 0 +8396357 0 0 +8400269 totRewards = 87 +8400269 64 8 +8400469 64 0 +8400477 0 0 +8400489 64 0 + + description: state script log run 3 + task_epochs: 6, +] +2021-01-28 16:23:04,992 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 16:23:08,829 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 16:23:08,833 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 16:23:08,833 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 16:23:08,835 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 16:23:08,835 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 16:23:11,029 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 16:23:11,030 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 16:23:11,036 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 16:23:11,038 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 16:23:11,041 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 16:23:11,071 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 16:23:11,075 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 16:23:11,080 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 16:23:11,081 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 16:23:14,726 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 16:23:14,729 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 6ad09a998..d2fcc68c7 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -322,12 +322,11 @@ def build(self): if self.process_dio: self.dio_originator.make(nwb_content) - if self.process_mda: - self.mda_originator.make(nwb_content) - if self.process_analog: self.analog_originator.make(nwb_content) + if self.process_mda: + self.mda_originator.make(nwb_content) return nwb_content diff --git a/rec_to_nwb/processing/nwb/common/timestamps_manager.py b/rec_to_nwb/processing/nwb/common/timestamps_manager.py index 9946d7427..ca8be45db 100644 --- a/rec_to_nwb/processing/nwb/common/timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/timestamps_manager.py @@ -29,9 +29,11 @@ def _get_timestamps(self, dataset_id): def retrieve_real_timestamps(self, dataset_id): timestamps_ids = self.read_timestamps_ids(dataset_id) - continuous_time_dict = self.continuous_time_extractor.get_continuous_time_dict_file( + # continuous_time_dict = self.continuous_time_extractor.get_continuous_time_dict_file( + # self.continuous_time_directories[dataset_id]) + continuous_time = self.continuous_time_extractor.get_continuous_time_array_file( self.continuous_time_directories[dataset_id]) - return self.timestamp_converter.convert_timestamps(continuous_time_dict, timestamps_ids) + return self.timestamp_converter.convert_timestamps(continuous_time, timestamps_ids) def read_timestamps_ids(self, dataset_id): return self._get_timestamps(dataset_id) diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py index 175441965..5b943c7e8 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py @@ -17,12 +17,13 @@ class FlAnalogExtractor: def extract_analog_for_single_dataset(analog_files, continuous_time_file): single_dataset_data = {} for analog_file in analog_files: + print(f'processing analog file {analog_file}') if not 'timestamps' in analog_file: analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) values = analog_data['data'] single_dataset_data[analog_data['id']] = values else: - continuous_time_dict = ContinuousTimeExtractor.get_continuous_time_dict_file(continuous_time_file) + continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) timestamp = readTrodesExtractedDataFile(analog_files[analog_file]) keys = [key[0] for key in timestamp['data']] single_dataset_data[analog_file] = TimestampConverter.convert_timestamps(continuous_time_dict, keys) diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py index 40cb42d4b..f85917f27 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py @@ -1,5 +1,6 @@ import logging.config import os +import numpy as np from rec_to_binaries.read_binaries import readTrodesExtractedDataFile @@ -16,12 +17,16 @@ class DioExtractor: @staticmethod def extract_dio_for_single_dataset(filtered_files, continuous_time_file): single_dataset_data = {} - continuous_time_dict = ContinuousTimeExtractor.get_continuous_time_dict_file(continuous_time_file) + continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) + + print(f'in DioExtractor: continuous_time shape: {continuous_time.shape}') for dio_file in filtered_files: try: - dio_data = readTrodesExtractedDataFile(filtered_files[dio_file]) - keys, values = DioExtractor.__get_dio_time_series(dio_data, continuous_time_dict) - single_dataset_data[dio_file] = ([keys, values]) + dio_data = readTrodesExtractedDataFile(filtered_files[dio_file])['data'] + # dio_data is a labeled array with 'time' and 'state' columns. 'time' corresponds to sample count + single_dataset_data[dio_file] = DioExtractor.__get_dio_time_series(dio_data, continuous_time) + # keys, values = DioExtractor.__get_dio_time_series(dio_data, continuous_time_dict + # single_dataset_data[dio_file] = ([keys, values]) except KeyError as error: message = "there is no " + str(dio_file) + ", error: " @@ -32,14 +37,17 @@ def extract_dio_for_single_dataset(filtered_files, continuous_time_file): return single_dataset_data @staticmethod - def __get_dio_time_series(dio_data, continuoues_time_dict): - - values = [bool(recorded_event[1]) for recorded_event in dio_data['data']] - keys = [recorded_event[0] for recorded_event in dio_data['data']] - keys = DioExtractor.__convert_keys(continuoues_time_dict, keys) - return keys, values - + def __get_dio_time_series(dio_data, continuous_time): + converted_timestamps = TimestampConverter.convert_timestamps(continuous_time, dio_data['time']) + print(f'in __get_dio... : times = {converted_timestamps[0:10]}') + values = bool(dio_data['state']) + # values = [bool(recorded_event[1]) for recorded_event in dio_data['data']] + # keys = [recorded_event[0] for recorded_event in dio_data['data']] + # keys = DioExtractor.__convert_keys(continuoues_time_dict, keys) + return converted_timestamps, values + + @staticmethod - def __convert_keys(continuous_time_dict, keys): - converted_timestamps = TimestampConverter.convert_timestamps(continuous_time_dict, keys) + def __convert_keys(continuous_time_array, keys): + converted_timestamps = TimestampConverter.convert_timestamps(continuous_time_array, keys) return converted_timestamps diff --git a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py index 3db86ff41..78ac2ce3a 100644 --- a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py +++ b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py @@ -21,7 +21,10 @@ def __merge_data_from_multiple_files(self, data): def __get_continuous_time_data_from_single_file(self, continuous_time_file): continuous_time = readTrodesExtractedDataFile(continuous_time_file) new_array = np.ndarray(shape=(len(continuous_time['data']), 2), dtype='int64') - for i, single_timestamp in enumerate(continuous_time['data']): - new_array[i, 0] = single_timestamp[0] - new_array[i, 1] = single_timestamp[3] + new_array[:,0] = continuous_time['data']['trodestime'] + new_array[:,1] = continuous_time['data']['adjusted_systime'] + + # for i, single_timestamp in enumerate(continuous_time['data']): + # new_array[i, 0] = single_timestamp[0] + # new_array[i, 1] = single_timestamp[3] return new_array diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index c31aedd03..c92eb2677 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -15,20 +15,22 @@ def extract_video_files(self): video_files = self.video_files_metadata extracted_video_files = [] for video_file in video_files: - new_fl_video_file = { - "name": video_file["name"], - "timestamps": self.convert_timestamps(readTrodesExtractedDataFile( + timestamps = readTrodesExtractedDataFile( self.raw_data_path + "/" + video_file["name"][:-4] - + "videoTimeStamps.cameraHWSync" - )["data"]), + + "videoTimeStamps.cameraHWSync")['data']['HWTimestamp'] + # the timestamps array from the cam + new_fl_video_file = { + "name": video_file["name"], + "timestamps": self.convert_timestamps(timestamps), "device": video_file["camera_id"] } extracted_video_files.append(new_fl_video_file) return extracted_video_files def convert_timestamps(self, timestamps): - converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') - for i, record in enumerate(timestamps): - converted_timestamps[i] = record[2]/1E9 + #converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') + converted_timestamps = timestamps / 1E9 + # for i, record in enumerate(timestamps): + # converted_timestamps[i] = record[2]/1E9 return converted_timestamps diff --git a/rec_to_nwb/processing/time/continuous_time_extractor.py b/rec_to_nwb/processing/time/continuous_time_extractor.py index 2a820965b..1ec3f9f9d 100644 --- a/rec_to_nwb/processing/time/continuous_time_extractor.py +++ b/rec_to_nwb/processing/time/continuous_time_extractor.py @@ -1,5 +1,6 @@ import logging.config import os +import numpy as np from rec_to_binaries.read_binaries import readTrodesExtractedDataFile @@ -20,3 +21,9 @@ def get_continuous_time_dict_file(file): continuous_time = readTrodesExtractedDataFile(file) return {str(data[0]): float(data[3]) for data in continuous_time['data']} + @staticmethod + def get_continuous_time_array_file(file): + logger.info('Reading continuous time array from: ' + str(file)) + continuous_time = readTrodesExtractedDataFile(file) + return np.vstack((continuous_time['data']['trodestime'], + continuous_time['data']['adjusted_systime'])) \ No newline at end of file diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index 96213520e..042d18375 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -12,13 +12,22 @@ class TimestampConverter: @staticmethod - def convert_timestamps(continuous_time_dict, timestamps): + def convert_timestamps(continuous_times, timestamps): converted_timestamps = np.ndarray(shape=[len(timestamps), ], dtype="float64") - for i, timestamp in enumerate(timestamps): - key = str(timestamp) - value = continuous_time_dict.get(key, float('nan')) / 1E9 - if np.isnan(value): - message = 'Following key: ' + str(key) + ' does not exist in continioustime dictionary!' - logger.exception(message) - converted_timestamps[i] = value + # look up the timestamps in the first colum of continuous_times + timestamp_ind = np.searchsorted(continuous_times[:,0], timestamps) + converted_timestamps = continuous_times[timestamp_ind,1] / 1E9 + # get rid of any that are not exact + not_found = timestamps != continuous_times[timestamp_ind,0] + print(f'in Timestamp Converter: {len(not_found)} timestamps not found in continuous time file') + converted_timestamps[not_found] = np.nan return converted_timestamps + #old code + # for i, timestamp in enumerate(timestamps): + # key = str(timestamp) + # value = continuous_time_dict.get(key, float('nan')) / 1E9 + # if np.isnan(value): + # message = 'Following key: ' + str(key) + ' does not exist in continioustime dictionary!' + # logger.exception(message) + # converted_timestamps[i] = value + # return converted_timestamps From b20fa24f7ded860e6510c92865c7ee7cf4561ebb Mon Sep 17 00:00:00 2001 From: Loren Date: Fri, 29 Jan 2021 10:31:02 -0800 Subject: [PATCH 031/205] updates to use numpy for continuous time processing --- rec_to_nwb.log | 334494 +++++++++++++++ .../processing/builder/raw_to_nwb_builder.py | 18 +- .../components/analog/fl_analog_extractor.py | 6 +- .../nwb/components/dio/dio_extractor.py | 6 +- .../nwb/components/dio/dio_manager.py | 2 +- .../mda/electrical_series_creator.py | 2 +- .../nwb/components/mda/mda_data_manager.py | 3 +- .../processing/time/timestamp_converter.py | 12 +- 8 files changed, 334519 insertions(+), 24 deletions(-) diff --git a/rec_to_nwb.log b/rec_to_nwb.log index 0bd342c2e..f6d8dc6c4 100644 --- a/rec_to_nwb.log +++ b/rec_to_nwb.log @@ -251191,3 +251191,334497 @@ Fields: 2021-01-28 16:23:11,081 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating 2021-01-28 16:23:14,726 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting 2021-01-28 16:23:14,729 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:29:44,868 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 18:29:44,942 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 18:29:44,943 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 18:29:44,943 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 18:29:44,943 rec_to_binaries.core: INFO Extracting time... +2021-01-28 18:29:50,465 rec_to_binaries.core: INFO Making position directory... +2021-01-28 18:29:50,481 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 18:29:50,482 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 18:29:50,482 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 18:29:50,482 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 18:29:50,652 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 18:29:51,039 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 18:29:51,050 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 18:29:51,050 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 18:29:51,051 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140293977384912 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 18:29:51,052 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 18:29:51,247 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 18:29:51,248 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 18:29:51,248 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 18:29:51,248 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 18:29:51,249 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 18:29:51,256 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 18:29:51,256 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 18:29:51,259 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 18:29:51,262 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 18:29:51,263 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 18:29:51,263 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 18:29:51,263 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 18:29:51,264 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 18:29:51,294 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 18:29:51,296 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 18:29:51,297 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 18:29:51,297 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 18:29:51,663 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 18:29:51,665 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:29:52,506 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 18:29:52,507 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 18:29:52,507 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 18:29:52,508 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 18:29:52,508 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 18:29:52,563 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 18:32:26,009 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 18:32:26,090 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 18:32:26,091 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 18:32:26,091 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 18:32:26,091 rec_to_binaries.core: INFO Extracting time... +2021-01-28 18:32:31,182 rec_to_binaries.core: INFO Making position directory... +2021-01-28 18:32:31,199 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 18:32:31,199 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 18:32:31,200 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 18:32:31,200 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 18:32:31,340 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 18:32:31,678 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 18:32:31,678 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 18:32:31,678 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 18:32:31,679 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 18:32:31,679 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 18:32:31,679 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140679954167760 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 18:32:31,680 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 18:32:31,876 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 18:32:31,877 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 18:32:31,877 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 18:32:31,877 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 18:32:31,878 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 18:32:31,887 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 18:32:31,888 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 18:32:31,891 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 18:32:31,894 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 18:32:31,895 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 18:32:31,895 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 18:32:31,895 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 18:32:31,896 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 18:32:31,925 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 18:32:31,928 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 18:32:31,929 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 18:32:31,929 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 18:32:32,330 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 18:32:32,331 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:32:33,212 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 18:32:33,212 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 18:32:33,212 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 18:32:33,213 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 18:32:33,213 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 18:32:33,265 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 18:32:33,266 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 18:32:33,266 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 18:32:33,266 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 18:32:33,266 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 18:32:33,965 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 18:32:33,969 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 18:32:34,283 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 18:33:53,399 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 18:33:53,580 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 18:33:53,581 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 18:33:53,581 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 18:33:53,582 rec_to_binaries.core: INFO Extracting time... +2021-01-28 18:33:58,048 rec_to_binaries.core: INFO Making position directory... +2021-01-28 18:33:58,067 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 18:33:58,067 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 18:33:58,067 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 18:33:58,068 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 18:33:58,256 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 18:33:58,591 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 18:33:58,592 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 18:33:58,592 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 18:33:58,592 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 18:33:58,593 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 18:33:58,593 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 18:33:58,593 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 18:33:58,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 18:33:58,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 18:33:58,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 18:33:58,596 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 18:33:58,603 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 18:33:58,604 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 18:33:58,605 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140440049918480 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 18:33:58,605 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 18:33:58,821 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 18:33:58,823 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 18:33:58,823 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 18:33:58,825 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 18:33:58,827 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 18:33:58,846 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 18:33:58,847 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 18:33:58,860 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 18:33:58,860 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 18:33:58,861 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 18:33:58,862 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 18:33:58,862 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 18:33:58,863 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 18:33:58,863 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 18:33:58,863 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 18:33:58,864 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 18:33:58,864 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 18:33:58,864 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 18:33:58,865 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 18:33:58,868 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 18:33:58,869 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 18:33:58,870 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 18:33:58,870 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 18:33:58,874 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 18:33:58,976 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 18:33:58,985 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 18:33:58,989 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 18:33:58,989 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 18:33:59,364 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 18:33:59,368 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:34:00,257 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 18:34:00,258 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 18:34:00,259 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 18:34:00,260 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 18:34:00,261 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 18:34:00,319 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 18:34:00,320 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 18:34:00,320 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 18:34:00,320 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 18:34:00,321 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 18:37:35,374 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 18:37:35,554 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 18:37:35,556 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 18:37:35,556 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 18:37:35,557 rec_to_binaries.core: INFO Extracting time... +2021-01-28 18:37:40,539 rec_to_binaries.core: INFO Making position directory... +2021-01-28 18:37:40,558 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 18:37:40,558 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 18:37:40,559 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 18:37:40,559 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 18:37:40,765 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 18:37:41,090 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 18:37:41,090 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 18:37:41,090 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 18:37:41,091 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 18:37:41,091 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 18:37:41,091 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 18:37:41,092 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 18:37:41,092 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 18:37:41,092 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 18:37:41,093 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 18:37:41,093 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 18:37:41,093 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 18:37:41,094 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 18:37:41,094 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 18:37:41,094 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 18:37:41,102 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 18:37:41,103 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 18:37:41,105 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140696836671824 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 18:37:41,105 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 18:37:41,323 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 18:37:41,325 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 18:37:41,325 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 18:37:41,327 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 18:37:41,328 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 18:37:41,347 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 18:37:41,347 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 18:37:41,361 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 18:37:41,361 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 18:37:41,362 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 18:37:41,362 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 18:37:41,363 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 18:37:41,363 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 18:37:41,364 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 18:37:41,364 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 18:37:41,365 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 18:37:41,365 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 18:37:41,365 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 18:37:41,366 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 18:37:41,371 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 18:37:41,371 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 18:37:41,372 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 18:37:41,373 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 18:37:41,376 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 18:37:41,473 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 18:37:41,483 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 18:37:41,486 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 18:37:41,487 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 18:37:41,868 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 18:37:41,872 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:37:42,793 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 18:37:42,793 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 18:37:42,795 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 18:37:42,796 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 18:37:42,797 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 18:37:42,857 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 18:37:42,857 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 18:37:42,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 18:37:42,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 18:51:16,146 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 18:55:20,222 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 18:55:20,417 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 18:55:20,419 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 18:55:20,419 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 18:55:20,420 rec_to_binaries.core: INFO Extracting time... +2021-01-28 18:55:25,487 rec_to_binaries.core: INFO Making position directory... +2021-01-28 18:55:25,506 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 18:55:25,507 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 18:55:25,507 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 18:55:25,507 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 18:55:25,722 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 18:55:26,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 18:55:26,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 18:55:26,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 18:55:26,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 18:55:26,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 18:55:26,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 18:55:26,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 18:55:26,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 18:55:26,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 18:55:26,043 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 18:55:26,043 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 18:55:26,043 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 18:55:26,044 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 18:55:26,044 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 18:55:26,044 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 18:55:26,052 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 18:55:26,053 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 18:55:26,054 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140449153599376 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 18:55:26,055 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 18:55:26,273 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 18:55:26,275 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 18:55:26,275 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 18:55:26,277 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 18:55:26,278 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 18:55:26,298 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 18:55:26,298 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 18:55:26,312 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 18:55:26,313 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 18:55:26,314 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 18:55:26,315 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 18:55:26,315 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 18:55:26,315 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 18:55:26,316 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 18:55:26,316 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 18:55:26,317 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 18:55:26,317 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 18:55:26,317 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 18:55:26,318 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 18:55:26,321 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 18:55:26,322 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 18:55:26,323 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 18:55:26,323 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 18:55:26,327 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 18:55:26,427 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 18:55:26,437 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 18:55:26,441 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 18:55:26,442 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 18:55:26,816 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 18:55:26,819 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:55:27,677 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 18:55:27,678 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 18:55:27,679 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 18:55:27,680 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 18:55:27,681 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 18:55:40,545 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 18:57:29,697 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 18:57:29,870 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 18:57:29,871 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 18:57:29,872 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 18:57:29,872 rec_to_binaries.core: INFO Extracting time... +2021-01-28 18:57:34,535 rec_to_binaries.core: INFO Making position directory... +2021-01-28 18:57:34,548 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 18:57:34,549 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 18:57:34,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 18:57:34,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 18:57:34,770 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 18:57:35,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 18:57:35,099 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 18:57:35,099 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 18:57:35,099 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 18:57:35,100 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 18:57:35,100 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 18:57:35,100 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 18:57:35,101 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 18:57:35,101 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 18:57:35,101 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 18:57:35,102 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 18:57:35,109 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 18:57:35,110 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 18:57:35,111 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140553625320336 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 18:57:35,111 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 18:57:35,331 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 18:57:35,333 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 18:57:35,333 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 18:57:35,335 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 18:57:35,336 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 18:57:35,355 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 18:57:35,356 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 18:57:35,369 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 18:57:35,369 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 18:57:35,371 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 18:57:35,371 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 18:57:35,371 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 18:57:35,372 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 18:57:35,372 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 18:57:35,373 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 18:57:35,373 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 18:57:35,374 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 18:57:35,374 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 18:57:35,375 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 18:57:35,378 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 18:57:35,378 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 18:57:35,379 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 18:57:35,380 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 18:57:35,383 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 18:57:35,485 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 18:57:35,495 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 18:57:35,500 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 18:57:35,500 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 18:57:35,892 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 18:57:35,896 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:57:36,818 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 18:57:36,818 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 18:57:36,820 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 18:57:36,822 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 18:57:36,823 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 18:57:55,119 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 18:59:34,464 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 18:59:34,676 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 18:59:34,678 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 18:59:34,678 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 18:59:34,678 rec_to_binaries.core: INFO Extracting time... +2021-01-28 18:59:39,667 rec_to_binaries.core: INFO Making position directory... +2021-01-28 18:59:39,673 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 18:59:39,674 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 18:59:39,674 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 18:59:39,674 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 18:59:39,889 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 18:59:40,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 18:59:40,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 18:59:40,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 18:59:40,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 18:59:40,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 18:59:40,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 18:59:40,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 18:59:40,344 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 18:59:40,344 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 18:59:40,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 18:59:40,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 18:59:40,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 18:59:40,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 18:59:40,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 18:59:40,347 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 18:59:40,348 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 18:59:40,349 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 18:59:40,351 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140650169772560 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 18:59:40,351 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 18:59:40,586 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 18:59:40,588 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 18:59:40,588 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 18:59:40,589 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 18:59:40,591 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 18:59:40,613 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 18:59:40,613 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 18:59:40,627 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 18:59:40,627 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 18:59:40,629 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 18:59:40,629 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 18:59:40,629 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 18:59:40,630 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 18:59:40,630 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 18:59:40,630 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 18:59:40,631 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 18:59:40,632 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 18:59:40,632 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 18:59:40,633 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 18:59:40,637 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 18:59:40,637 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 18:59:40,638 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 18:59:40,639 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 18:59:40,643 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 18:59:40,785 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 18:59:40,796 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 18:59:40,803 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 18:59:40,803 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 18:59:41,227 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 18:59:41,231 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 18:59:42,195 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 18:59:42,196 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 18:59:42,197 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 18:59:42,198 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 18:59:42,199 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 18:59:42,259 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 18:59:42,260 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 18:59:42,260 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 18:59:42,260 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 19:03:04,206 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:03:04,975 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 19:03:04,987 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 19:03:05,317 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:06:36,521 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 19:06:36,716 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 19:06:36,718 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 19:06:36,718 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 19:06:36,718 rec_to_binaries.core: INFO Extracting time... +2021-01-28 19:06:41,484 rec_to_binaries.core: INFO Making position directory... +2021-01-28 19:06:41,503 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 19:06:41,503 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 19:06:41,504 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 19:06:41,504 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 19:06:41,716 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 19:06:42,046 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 19:06:42,047 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 19:06:42,047 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 19:06:42,048 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 19:06:42,048 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 19:06:42,050 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 19:06:42,050 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 19:06:42,051 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 19:06:42,051 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 19:06:42,052 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 19:06:42,052 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 19:06:42,059 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 19:06:42,060 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 19:06:42,061 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140640774559376 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 19:06:42,062 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 19:06:42,287 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 19:06:42,289 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 19:06:42,289 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 19:06:42,290 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 19:06:42,292 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 19:06:42,313 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 19:06:42,313 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 19:06:42,326 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 19:06:42,327 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 19:06:42,328 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 19:06:42,329 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 19:06:42,329 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 19:06:42,329 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 19:06:42,330 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 19:06:42,330 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 19:06:42,331 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 19:06:42,331 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 19:06:42,331 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 19:06:42,332 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 19:06:42,335 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 19:06:42,335 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 19:06:42,337 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 19:06:42,337 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 19:06:42,341 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 19:06:42,440 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 19:06:42,450 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 19:06:42,454 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 19:06:42,454 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 19:06:42,820 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 19:06:42,824 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 19:06:43,788 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 19:06:43,789 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 19:06:43,790 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 19:06:43,791 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 19:06:43,792 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 19:06:43,857 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 19:06:43,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 19:06:43,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 19:06:43,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 19:06:48,963 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:06:49,713 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 19:06:49,723 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 19:06:50,041 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:08:04,552 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 19:08:04,734 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 19:08:04,735 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 19:08:04,736 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 19:08:04,736 rec_to_binaries.core: INFO Extracting time... +2021-01-28 19:08:09,368 rec_to_binaries.core: INFO Making position directory... +2021-01-28 19:08:09,387 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 19:08:09,387 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 19:08:09,388 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 19:08:09,388 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 19:08:09,612 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 19:08:09,934 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 19:08:09,934 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 19:08:09,934 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 19:08:09,935 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 19:08:09,935 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 19:08:09,935 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 19:08:09,936 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 19:08:09,936 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 19:08:09,936 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 19:08:09,937 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 19:08:09,937 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 19:08:09,946 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 19:08:09,947 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 19:08:09,948 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140611063170832 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 19:08:09,949 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 19:08:10,165 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 19:08:10,167 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 19:08:10,168 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 19:08:10,169 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 19:08:10,170 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 19:08:10,190 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 19:08:10,190 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 19:08:10,204 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 19:08:10,205 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 19:08:10,206 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 19:08:10,207 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 19:08:10,207 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 19:08:10,207 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 19:08:10,208 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 19:08:10,208 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 19:08:10,209 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 19:08:10,209 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 19:08:10,209 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 19:08:10,210 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 19:08:10,213 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 19:08:10,213 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 19:08:10,215 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 19:08:10,215 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 19:08:10,219 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 19:08:10,317 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 19:08:10,327 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 19:08:10,330 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 19:08:10,331 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 19:08:10,696 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 19:08:10,700 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 19:08:11,494 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 19:08:11,495 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 19:08:11,496 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 19:08:11,497 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 19:08:11,498 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 19:08:11,557 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:08:12,274 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 19:08:12,286 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 19:08:12,598 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:08:58,676 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 19:10:31,636 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 19:10:31,649 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 19:14:37,235 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 19:14:37,310 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 19:14:37,311 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 19:14:37,312 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 19:14:37,312 rec_to_binaries.core: INFO Extracting time... +2021-01-28 19:14:41,509 rec_to_binaries.core: INFO Making position directory... +2021-01-28 19:14:41,520 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 19:14:41,521 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 19:14:41,521 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 19:14:41,521 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 19:14:41,653 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 19:14:41,958 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 19:14:41,958 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 19:14:41,959 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140463737694224 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 19:14:41,959 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 19:14:42,145 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 19:14:42,155 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 19:14:42,155 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 19:14:42,160 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 19:14:42,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 19:14:42,164 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 19:14:42,165 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 19:14:42,165 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 19:14:42,165 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 19:14:42,166 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 19:14:42,201 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 19:14:42,204 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 19:14:42,206 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 19:14:42,206 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 19:14:42,519 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 19:14:42,520 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 19:14:43,263 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 19:14:43,263 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 19:14:43,264 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 19:14:43,264 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 19:14:43,264 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 19:14:43,314 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:14:43,864 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 19:14:43,868 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 19:14:44,171 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:14:46,336 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 19:15:45,333 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 19:15:45,339 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 19:23:56,738 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:23:59,048 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:38:59,866 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 19:38:59,944 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 19:38:59,945 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 19:38:59,945 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 19:38:59,945 rec_to_binaries.core: INFO Extracting time... +2021-01-28 19:39:04,985 rec_to_binaries.core: INFO Making position directory... +2021-01-28 19:39:04,992 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 19:39:04,992 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 19:39:04,993 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 19:39:04,993 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 19:39:05,147 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 19:39:05,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 19:39:05,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 19:39:05,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 19:39:05,501 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 19:39:05,502 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 19:39:05,502 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 19:39:05,503 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140497116973392 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 19:39:05,503 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 19:39:05,706 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 19:39:05,715 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 19:39:05,715 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 19:39:05,721 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 19:39:05,721 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 19:39:05,721 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 19:39:05,725 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 19:39:05,725 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 19:39:05,725 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 19:39:05,726 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 19:39:05,727 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 19:39:05,767 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 19:39:05,769 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 19:39:05,771 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 19:39:05,771 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 19:39:06,107 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 19:39:06,109 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 19:39:07,008 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 19:39:07,008 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 19:39:07,009 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 19:39:07,009 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 19:39:07,009 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 19:39:07,063 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 19:39:07,063 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 19:39:07,064 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 19:39:07,064 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 19:39:07,064 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:39:11,676 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 19:39:11,680 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 19:39:11,969 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:39:14,479 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 19:40:18,971 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 19:40:19,011 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 19:49:08,310 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:49:10,972 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:49:18,643 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. +2021-01-28 19:52:48,970 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 19:52:49,052 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 19:52:49,053 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 19:52:49,053 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 19:52:49,053 rec_to_binaries.core: INFO Extracting time... +2021-01-28 19:52:53,884 rec_to_binaries.core: INFO Making position directory... +2021-01-28 19:52:53,901 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 19:52:53,901 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 19:52:53,902 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 19:52:53,902 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 19:52:54,047 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 19:52:54,399 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 19:52:54,402 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 19:52:54,402 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 19:52:54,409 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 19:52:54,410 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 19:52:54,410 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140437473065680 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 19:52:54,411 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 19:52:54,611 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 19:52:54,612 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 19:52:54,612 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 19:52:54,612 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 19:52:54,613 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 19:52:54,621 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 19:52:54,621 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 19:52:54,625 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 19:52:54,625 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 19:52:54,626 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 19:52:54,626 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 19:52:54,626 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 19:52:54,628 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 19:52:54,628 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 19:52:54,628 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 19:52:54,629 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 19:52:54,629 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 19:52:54,630 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 19:52:54,630 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 19:52:54,631 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 19:52:54,664 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 19:52:54,667 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 19:52:54,668 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 19:52:54,668 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 19:52:55,040 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 19:52:55,042 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 19:52:55,924 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 19:52:55,924 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 19:52:55,925 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 19:52:55,925 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 19:52:55,926 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 19:52:55,978 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 19:52:55,979 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 19:52:55,979 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 19:52:55,979 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 19:52:55,979 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:53:00,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 19:53:00,613 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 19:53:00,922 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 19:53:03,584 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 19:54:15,681 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 19:54:15,728 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 20:01:53,670 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 20:01:56,053 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 20:02:03,151 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. +2021-01-28 20:02:03,758 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Building +2021-01-28 20:02:03,762 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Injecting +2021-01-28 20:02:03,763 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Building +2021-01-28 20:02:03,764 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Injecting +2021-01-28 20:02:03,765 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Building +2021-01-28 20:02:04,278 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Injecting +2021-01-28 20:02:04,279 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Building +2021-01-28 20:02:04,843 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Injecting +2021-01-28 20:28:45,045 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:28:45,243 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:28:45,244 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:28:45,245 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:28:45,245 rec_to_binaries.core: INFO Extracting time... +2021-01-28 20:28:49,774 rec_to_binaries.core: INFO Making position directory... +2021-01-28 20:28:49,791 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 20:28:49,792 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 20:28:49,792 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 20:28:49,792 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 20:28:50,015 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 20:28:50,325 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 20:28:50,326 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 20:28:50,326 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 20:28:50,326 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 20:28:50,327 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 20:28:50,327 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 20:28:50,327 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 20:28:50,328 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 20:28:50,328 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 20:28:50,329 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 20:28:50,329 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 20:28:50,339 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 20:28:50,340 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 20:28:50,341 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140276398598352 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 20:28:50,342 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 20:42:57,887 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:42:57,932 rec_to_binaries.core: WARNING No epochs found! +2021-01-28 20:42:57,932 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:42:57,933 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:42:57,933 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:42:57,933 rec_to_binaries.core: INFO Extracting time... +2021-01-28 20:42:57,934 rec_to_binaries.core: INFO Making position directory... +2021-01-28 20:43:53,157 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:43:53,203 rec_to_binaries.core: WARNING No epochs found! +2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting time... +2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Making position directory... +2021-01-28 20:44:02,705 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/raw/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:44:02,747 rec_to_binaries.core: WARNING No epochs found! +2021-01-28 20:44:02,747 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Extracting time... +2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Making position directory... +2021-01-28 20:44:36,634 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:44:36,702 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:45:12,775 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:46:07,913 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:54:35,362 rec_to_binaries.core: INFO Extracting time... +2021-01-28 20:55:14,517 rec_to_binaries.core: INFO Making position directory... +2021-01-28 20:55:14,547 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 20:55:14,547 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 20:55:14,548 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 20:55:14,548 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 20:56:14,594 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:56:14,681 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:56:14,684 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:56:14,685 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:56:14,685 rec_to_binaries.core: INFO Extracting time... +2021-01-28 20:56:32,649 rec_to_binaries.core: INFO Making position directory... +2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 20:56:32,849 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 20:56:32,917 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 20:56:33,255 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 20:56:33,255 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 20:56:33,258 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 20:56:33,258 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 20:56:33,259 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 20:56:33,260 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 20:56:33,260 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140475649484880 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 1, +] +2021-01-28 20:56:33,261 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 20:58:17,211 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:58:17,305 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:58:17,305 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:58:17,306 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:58:17,306 rec_to_binaries.core: INFO Extracting time... +2021-01-28 20:58:33,203 rec_to_binaries.core: INFO Making position directory... +2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 20:58:33,395 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 20:58:33,571 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 20:58:33,918 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 20:58:33,918 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 20:58:33,919 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140694316517968 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 20:58:33,920 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 20:58:34,452 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 20:58:34,453 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 20:58:34,453 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 20:58:34,454 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 20:58:34,454 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 20:58:34,461 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 20:58:34,461 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 20:58:34,465 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 20:58:34,470 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 20:58:34,470 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 20:58:34,471 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 20:58:34,471 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 20:58:34,472 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 20:58:34,502 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 20:58:34,505 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 20:58:34,506 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 20:58:34,506 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 20:58:35,723 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 20:58:35,724 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 20:58:38,540 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 20:58:38,541 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 20:58:38,541 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 20:58:38,542 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 20:58:38,542 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 20:58:38,713 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 20:58:38,714 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 20:58:38,714 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 20:58:38,714 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 20:58:38,714 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 20:58:42,969 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 20:59:44,809 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 20:59:45,083 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 20:59:45,086 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 20:59:45,087 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 20:59:45,091 rec_to_binaries.core: INFO Extracting time... +2021-01-28 21:00:00,552 rec_to_binaries.core: INFO Making position directory... +2021-01-28 21:00:00,581 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 21:00:00,582 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 21:00:00,582 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 21:00:00,582 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 21:00:00,920 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 21:00:01,124 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 21:00:01,421 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 21:00:01,421 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 21:00:01,421 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 21:00:01,422 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 21:00:01,422 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 21:00:01,424 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 21:00:01,424 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 21:00:01,424 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 21:00:01,425 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 21:00:01,425 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 21:00:01,425 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 21:00:01,428 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 21:00:01,429 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 21:00:01,430 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140622931948304 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 21:00:01,430 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 21:00:02,050 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 21:00:02,053 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 21:00:02,054 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 21:00:02,055 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 21:00:02,057 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 21:00:02,076 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 21:00:02,076 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 21:00:02,090 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 21:00:02,090 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 21:00:02,091 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 21:00:02,092 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 21:00:02,092 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 21:00:02,093 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 21:00:02,093 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 21:00:02,093 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 21:00:02,094 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 21:00:02,094 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 21:00:02,094 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 21:00:02,095 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 21:00:02,101 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 21:00:02,102 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 21:00:02,103 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 21:00:02,104 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 21:00:02,108 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 21:00:02,208 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 21:00:02,218 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 21:00:02,222 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 21:00:02,222 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 21:00:03,503 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 21:00:03,507 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 21:00:06,413 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 21:00:06,413 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 21:00:06,415 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 21:00:06,418 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 21:00:06,418 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 21:00:06,608 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 21:00:06,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 21:00:06,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 21:00:06,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 21:00:06,610 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:00:10,873 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:08:10,106 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 21:08:10,355 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 21:08:10,356 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 21:08:10,356 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 21:08:10,357 rec_to_binaries.core: INFO Extracting time... +2021-01-28 21:08:26,694 rec_to_binaries.core: INFO Making position directory... +2021-01-28 21:08:26,719 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 21:08:26,720 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 21:08:26,720 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 21:08:26,720 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 21:08:27,057 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 21:08:27,247 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 21:08:27,573 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 21:08:27,574 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 21:08:27,574 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 21:08:27,575 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 21:08:27,575 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 21:08:27,575 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 21:08:27,576 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 21:08:27,576 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 21:08:27,577 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 21:08:27,577 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 21:08:27,577 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 21:08:27,578 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 21:08:27,578 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 21:08:27,579 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 21:08:27,579 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 21:08:27,582 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 21:08:27,583 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 21:08:27,584 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140216748534288 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 21:08:27,584 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 21:08:28,316 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 21:08:28,319 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 21:08:28,319 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 21:08:28,321 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 21:08:28,322 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 21:08:28,341 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 21:08:28,342 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 21:08:28,355 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 21:08:28,356 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 21:08:28,357 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 21:08:28,357 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 21:08:28,358 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 21:08:28,358 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 21:08:28,359 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 21:08:28,359 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 21:08:28,360 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 21:08:28,360 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 21:08:28,360 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 21:08:28,361 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 21:08:28,367 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 21:08:28,367 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 21:08:28,368 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 21:08:28,369 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 21:08:28,372 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 21:08:28,499 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 21:08:28,522 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 21:08:28,529 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 21:08:28,530 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 21:08:29,760 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 21:08:29,764 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 21:08:32,649 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 21:08:32,650 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 21:08:32,652 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 21:08:32,654 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 21:08:32,655 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 21:08:32,836 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 21:08:32,837 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 21:08:32,837 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 21:08:32,837 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 21:08:32,839 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:08:37,375 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:18:01,882 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 21:18:02,139 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 21:18:02,140 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 21:18:02,141 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 21:18:02,141 rec_to_binaries.core: INFO Extracting time... +2021-01-28 21:18:19,694 rec_to_binaries.core: INFO Making position directory... +2021-01-28 21:18:19,723 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 21:18:19,723 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 21:18:19,724 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 21:18:19,724 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 21:18:20,062 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 21:18:20,301 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 21:18:20,608 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 21:18:20,609 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 21:18:20,609 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 21:18:20,609 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 21:18:20,610 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 21:18:20,610 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 21:18:20,610 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 21:18:20,611 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 21:18:20,611 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 21:18:20,611 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 21:18:20,612 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 21:18:20,612 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 21:18:20,612 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 21:18:20,613 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 21:18:20,613 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 21:18:20,619 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 21:18:20,620 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 21:18:20,622 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140347391339216 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 21:18:20,622 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 21:18:21,239 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 21:18:21,242 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 21:18:21,243 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 21:18:21,244 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 21:18:21,246 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 21:18:21,267 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 21:18:21,267 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 21:18:21,281 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 21:18:21,282 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 21:18:21,283 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 21:18:21,283 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 21:18:21,284 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 21:18:21,284 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 21:18:21,285 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 21:18:21,285 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 21:18:21,286 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 21:18:21,286 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 21:18:21,286 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 21:18:21,287 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 21:18:21,293 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 21:18:21,293 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 21:18:21,294 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 21:18:21,295 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 21:18:21,299 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 21:18:21,398 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 21:18:21,407 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 21:18:21,411 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 21:18:21,411 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 21:18:22,652 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 21:18:22,656 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 21:18:25,547 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 21:18:25,548 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 21:18:25,550 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 21:18:25,553 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 21:18:25,553 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 21:18:25,738 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 21:18:25,738 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 21:18:25,738 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 21:18:25,739 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 21:18:25,740 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:18:29,896 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:27:01,850 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 21:27:02,091 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 21:27:02,093 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 21:27:02,093 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 21:27:02,094 rec_to_binaries.core: INFO Extracting time... +2021-01-28 21:27:19,845 rec_to_binaries.core: INFO Making position directory... +2021-01-28 21:27:19,877 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 21:27:19,878 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 21:27:19,878 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 21:27:19,879 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 21:27:20,221 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 21:27:20,398 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 21:27:20,723 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 21:27:20,724 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 21:27:20,725 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 21:27:20,725 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 21:27:20,726 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 21:27:20,726 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 21:27:20,726 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 21:27:20,727 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 21:27:20,727 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 21:27:20,728 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 21:27:20,728 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 21:27:20,728 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 21:27:20,729 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 21:27:20,729 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 21:27:20,730 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 21:27:20,734 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 21:27:20,735 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 21:27:20,736 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140202167769744 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 21:27:20,736 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 21:27:21,349 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 21:27:21,352 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 21:27:21,353 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 21:27:21,354 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 21:27:21,356 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 21:27:21,375 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 21:27:21,376 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 21:27:21,389 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 21:27:21,389 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 21:27:21,391 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 21:27:21,391 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 21:27:21,391 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 21:27:21,392 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 21:27:21,392 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 21:27:21,392 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 21:27:21,393 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 21:27:21,393 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 21:27:21,394 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 21:27:21,395 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 21:27:21,401 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 21:27:21,401 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 21:27:21,402 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 21:27:21,403 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 21:27:21,406 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 21:27:21,502 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 21:27:21,513 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 21:27:21,517 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 21:27:21,517 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 21:27:22,766 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 21:27:22,770 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 21:27:25,279 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 21:27:25,279 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 21:27:25,281 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 21:27:25,283 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 21:27:25,283 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 21:27:25,463 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 21:27:25,464 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 21:27:25,464 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 21:27:25,464 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 21:27:25,472 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:27:29,591 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:30:35,136 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 21:30:35,374 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 21:30:35,376 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 21:30:35,377 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 21:30:35,377 rec_to_binaries.core: INFO Extracting time... +2021-01-28 21:30:52,090 rec_to_binaries.core: INFO Making position directory... +2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 21:30:52,451 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 21:30:52,622 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 21:30:52,919 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 21:30:52,919 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 21:30:52,919 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 21:30:52,920 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 21:30:52,920 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 21:30:52,922 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 21:30:52,922 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 21:30:52,923 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 21:30:52,923 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 21:30:52,924 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 21:30:52,924 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 21:30:52,925 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 21:30:52,926 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 21:30:52,927 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140507421124880 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 21:30:52,927 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 21:30:53,546 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 21:30:53,549 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 21:30:53,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 21:30:53,551 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 21:30:53,552 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 21:30:53,571 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 21:30:53,572 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 21:30:53,585 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 21:30:53,585 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 21:30:53,586 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 21:30:53,587 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 21:30:53,587 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 21:30:53,587 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 21:30:53,588 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 21:30:53,588 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 21:30:53,589 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 21:30:53,589 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 21:30:53,590 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 21:30:53,590 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 21:30:53,596 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 21:30:53,596 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 21:30:53,597 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 21:30:53,598 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 21:30:53,602 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 21:30:53,701 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 21:30:53,710 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 21:30:53,714 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 21:30:53,714 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 21:30:54,927 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 21:30:54,931 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 21:30:57,725 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 21:30:57,725 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 21:30:57,727 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 21:30:57,729 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 21:30:57,730 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 21:30:57,923 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 21:30:57,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 21:30:57,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 21:30:57,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 21:30:57,925 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:31:01,809 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:34:58,258 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 21:34:58,556 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 21:34:58,558 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 21:34:58,558 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 21:34:58,559 rec_to_binaries.core: INFO Extracting time... +2021-01-28 21:35:16,098 rec_to_binaries.core: INFO Making position directory... +2021-01-28 21:35:16,119 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 21:35:16,119 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 21:35:16,119 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 21:35:16,120 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 21:35:16,523 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 21:35:16,698 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 21:35:17,060 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 21:35:17,060 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 21:35:17,061 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 21:35:17,062 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 21:35:17,062 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 21:35:17,063 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 21:35:17,063 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 21:35:17,064 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 21:35:17,064 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 21:35:17,065 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 21:35:17,065 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 21:35:17,066 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 21:35:17,066 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 21:35:17,067 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 21:35:17,067 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 21:35:17,069 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 21:35:17,069 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 21:35:17,070 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140472835693456 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 21:35:17,070 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 21:35:17,941 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 21:35:17,944 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 21:35:17,945 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 21:35:17,951 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 21:35:17,954 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 21:35:17,992 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 21:35:17,993 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 21:35:18,019 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 21:35:18,020 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 21:35:18,022 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 21:35:18,023 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 21:35:18,023 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 21:35:18,024 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 21:35:18,024 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 21:35:18,024 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 21:35:18,025 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 21:35:18,025 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 21:35:18,026 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 21:35:18,027 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 21:35:18,033 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 21:35:18,033 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 21:35:18,034 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 21:35:18,035 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 21:35:18,039 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 21:35:18,196 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 21:35:18,229 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 21:35:18,238 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 21:35:18,238 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 21:35:19,680 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 21:35:19,683 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 21:35:23,078 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 21:35:23,079 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 21:35:23,084 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 21:35:23,089 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 21:35:23,090 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 21:35:23,610 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 21:35:23,611 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 21:35:23,611 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 21:35:23,611 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 21:35:23,615 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:35:28,251 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:36:12,664 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 21:36:12,751 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 21:36:12,753 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 21:36:12,753 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 21:36:12,753 rec_to_binaries.core: INFO Extracting time... +2021-01-28 21:36:29,294 rec_to_binaries.core: INFO Making position directory... +2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 21:36:29,828 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 21:36:29,980 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 21:36:30,316 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 21:36:30,316 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 21:36:30,318 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 21:36:30,319 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 21:36:30,319 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140679834711248 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 21:36:30,319 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 21:36:30,898 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 21:36:30,899 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 21:36:30,899 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 21:36:30,900 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 21:36:30,900 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 21:36:30,909 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 21:36:30,909 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 21:36:30,913 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 21:36:30,913 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 21:36:30,918 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 21:36:30,918 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 21:36:30,918 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 21:36:30,919 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 21:36:30,920 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 21:36:30,952 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 21:36:30,955 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 21:36:30,956 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 21:36:30,956 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 21:36:32,166 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 21:36:32,167 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 21:36:35,084 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 21:36:35,084 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 21:36:35,085 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 21:36:35,085 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 21:36:35,086 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 21:36:35,268 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:36:39,567 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:36:50,683 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 21:36:50,687 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 21:36:50,974 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 21:36:53,854 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 21:37:04,609 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 21:41:40,605 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 21:41:40,675 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 22:09:00,376 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 22:09:00,628 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 22:09:00,629 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 22:09:00,630 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 22:09:00,631 rec_to_binaries.core: INFO Extracting time... +2021-01-28 22:09:16,354 rec_to_binaries.core: INFO Making position directory... +2021-01-28 22:09:16,378 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 22:09:16,378 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 22:09:16,378 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 22:09:16,379 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 22:09:16,740 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 22:09:16,945 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 22:09:17,265 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 22:09:17,266 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 22:09:17,266 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 22:09:17,266 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 22:09:17,267 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 22:09:17,267 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 22:09:17,267 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 22:09:17,268 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 22:09:17,268 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 22:09:17,268 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 22:09:17,269 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 22:09:17,269 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 22:09:17,269 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 22:09:17,270 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 22:09:17,270 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 22:09:17,273 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 22:09:17,274 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 22:09:17,275 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140260243200720 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 22:09:17,276 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 22:09:17,896 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 22:09:17,898 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 22:09:17,898 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 22:09:17,900 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 22:09:17,901 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 22:09:17,920 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 22:09:17,921 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 22:09:17,934 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 22:09:17,935 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 22:09:17,936 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 22:09:17,936 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 22:09:17,937 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 22:09:17,937 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 22:09:17,938 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 22:09:17,938 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 22:09:17,938 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 22:09:17,939 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 22:09:17,939 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 22:09:17,940 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 22:09:17,949 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 22:09:17,949 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 22:09:17,951 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 22:09:17,951 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 22:09:17,955 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 22:09:18,056 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 22:09:18,066 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 22:09:18,070 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 22:09:18,070 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 22:09:19,195 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 22:09:19,199 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 22:09:21,890 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 22:09:21,891 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 22:09:21,893 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 22:09:21,895 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 22:09:21,896 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 22:09:22,080 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 22:09:22,080 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 22:09:22,080 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 22:09:22,081 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 22:09:22,082 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 22:09:26,161 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 22:09:36,857 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 22:09:36,868 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 22:09:37,168 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 22:09:39,766 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 22:09:48,160 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 22:13:50,133 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 22:13:50,238 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 22:13:50,239 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 22:13:50,245 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 22:13:50,250 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 22:13:50,272 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 22:13:50,274 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 22:13:50,290 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 22:13:50,293 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 22:13:50,295 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 22:13:50,301 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 22:13:50,302 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 22:13:50,307 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 22:13:50,307 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 22:13:50,308 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 22:13:50,310 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 22:13:50,310 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 22:13:50,311 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 22:13:50,313 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 22:14:10,378 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 22:14:10,443 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-28 22:15:00,281 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-28 22:15:00,540 rec_to_binaries.core: INFO Extracting analog data... +2021-01-28 22:15:00,543 rec_to_binaries.core: INFO Extracting DIO... +2021-01-28 22:15:00,543 rec_to_binaries.core: INFO Extracting mda... +2021-01-28 22:15:00,544 rec_to_binaries.core: INFO Extracting time... +2021-01-28 22:18:50,049 rec_to_binaries.core: INFO Making position directory... +2021-01-28 22:18:50,183 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-28 22:18:50,187 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-28 22:18:50,192 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-28 22:18:50,196 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-28 22:18:50,721 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-28 22:18:50,965 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-28 22:18:51,337 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-28 22:18:51,338 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-28 22:18:51,339 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-28 22:18:51,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-28 22:18:51,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-28 22:18:51,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-28 22:18:51,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-28 22:18:51,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-28 22:18:51,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-28 22:18:51,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-28 22:18:51,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-28 22:18:51,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-28 22:18:51,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-28 22:18:51,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-28 22:18:51,344 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-28 22:18:51,351 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-28 22:18:51,351 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-28 22:18:51,355 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140214036581136 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-28 22:18:51,355 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-28 22:18:52,005 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-28 22:18:52,012 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-28 22:18:52,012 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-28 22:18:52,014 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-28 22:18:52,018 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-28 22:18:52,039 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-28 22:18:52,039 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-28 22:18:52,054 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-28 22:18:52,054 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-28 22:18:52,056 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-28 22:18:52,057 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-28 22:18:52,058 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-28 22:18:52,059 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-28 22:18:52,059 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-28 22:18:52,059 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-28 22:18:52,061 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-28 22:18:52,061 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-28 22:18:52,062 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-28 22:18:52,063 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-28 22:18:52,070 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-28 22:18:52,070 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-28 22:18:52,072 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-28 22:18:52,072 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-28 22:18:52,077 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-28 22:18:52,182 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-28 22:18:52,192 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-28 22:18:52,197 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-28 22:18:52,198 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-28 22:18:54,670 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-28 22:18:54,678 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-28 22:19:06,454 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-28 22:19:06,457 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-28 22:19:06,464 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-28 22:19:06,467 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-28 22:19:06,468 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-28 22:19:06,672 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-28 22:19:06,672 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-28 22:19:06,673 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-28 22:19:06,674 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-28 22:19:06,681 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 22:19:12,182 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 22:19:31,909 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-28 22:19:31,936 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-28 22:19:32,325 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-28 22:19:39,302 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-28 22:20:04,977 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-28 22:28:11,127 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-28 22:28:11,234 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-29 09:08:34,464 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-29 09:08:34,724 rec_to_binaries.core: INFO Extracting analog data... +2021-01-29 09:08:34,727 rec_to_binaries.core: INFO Extracting DIO... +2021-01-29 09:08:34,728 rec_to_binaries.core: INFO Extracting mda... +2021-01-29 09:08:34,728 rec_to_binaries.core: INFO Extracting time... +2021-01-29 09:08:55,417 rec_to_binaries.core: INFO Making position directory... +2021-01-29 09:08:55,483 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-29 09:08:55,484 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-29 09:08:55,485 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-29 09:08:55,486 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-29 09:08:55,963 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-29 09:08:56,150 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-29 09:08:56,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-29 09:08:56,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-29 09:08:56,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-29 09:08:56,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-29 09:08:56,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-29 09:08:56,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-29 09:08:56,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-29 09:08:56,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-29 09:08:56,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-29 09:08:56,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-29 09:08:56,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-29 09:08:56,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-29 09:08:56,501 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-29 09:08:56,501 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-29 09:08:56,501 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-29 09:08:56,505 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-29 09:08:56,506 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-29 09:08:56,507 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140251786373968 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-29 09:08:56,508 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-29 09:08:57,310 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-29 09:08:57,316 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-29 09:08:57,317 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-29 09:08:57,319 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-29 09:08:57,321 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-29 09:08:57,342 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-29 09:08:57,342 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-29 09:08:57,357 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-29 09:08:57,358 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-29 09:08:57,359 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-29 09:08:57,360 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-29 09:08:57,363 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-29 09:08:57,364 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-29 09:08:57,364 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-29 09:08:57,365 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-29 09:08:57,366 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-29 09:08:57,366 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-29 09:08:57,366 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-29 09:08:57,367 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-29 09:08:57,374 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-29 09:08:57,374 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-29 09:08:57,375 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-29 09:08:57,376 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-29 09:08:57,380 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-29 09:08:57,483 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-29 09:08:57,495 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-29 09:08:57,499 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-29 09:08:57,499 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-29 09:08:58,843 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-29 09:08:58,849 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-29 09:09:01,590 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-29 09:09:01,590 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-29 09:09:01,593 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-29 09:09:01,596 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-29 09:09:01,597 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-29 09:09:01,801 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-29 09:09:01,801 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-29 09:09:01,802 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-29 09:09:01,802 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-29 09:09:01,803 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 09:09:05,773 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 09:09:17,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-29 09:11:56,368 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-29 09:11:56,676 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 09:11:59,387 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 09:12:11,116 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-29 09:16:25,860 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-29 09:16:25,945 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-29 09:22:02,426 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 2 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-29 09:22:02,515 rec_to_binaries.core: INFO Extracting analog data... +2021-01-29 09:22:02,516 rec_to_binaries.core: INFO Extracting DIO... +2021-01-29 09:22:02,516 rec_to_binaries.core: INFO Extracting mda... +2021-01-29 09:22:02,516 rec_to_binaries.core: INFO Extracting time... +2021-01-29 09:22:18,887 rec_to_binaries.core: INFO Making position directory... +2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-29 09:22:19,090 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-29 09:22:19,258 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-29 09:22:19,570 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-29 09:22:19,570 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-29 09:22:19,573 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-29 09:22:19,574 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-29 09:22:19,574 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140702351632784 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-29 09:22:19,574 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-29 09:22:20,113 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-29 09:22:20,114 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-29 09:22:20,114 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-29 09:22:20,114 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-29 09:22:20,115 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-29 09:22:20,121 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-29 09:22:20,121 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-29 09:22:20,125 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-29 09:22:20,132 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-29 09:22:20,132 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-29 09:22:20,133 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-29 09:22:20,133 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-29 09:22:20,134 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-29 09:22:20,163 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-29 09:22:20,166 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-29 09:22:20,167 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-29 09:22:20,167 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-29 09:22:21,364 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-29 09:22:21,366 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-29 09:22:24,157 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-29 09:22:24,158 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-29 09:22:24,159 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-29 09:22:24,160 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-29 09:22:24,160 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-29 09:22:24,334 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 09:22:28,498 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 09:22:39,113 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-29 09:22:39,117 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-29 09:22:39,390 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 09:22:42,059 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 09:22:51,120 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-29 09:27:06,070 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-29 09:27:06,154 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-29 10:03:28,514 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 2 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-29 10:03:28,618 rec_to_binaries.core: INFO Extracting analog data... +2021-01-29 10:03:28,619 rec_to_binaries.core: INFO Extracting DIO... +2021-01-29 10:03:28,619 rec_to_binaries.core: INFO Extracting mda... +2021-01-29 10:03:28,619 rec_to_binaries.core: INFO Extracting time... +2021-01-29 10:03:48,411 rec_to_binaries.core: INFO Making position directory... +2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-29 10:03:48,667 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-29 10:03:48,835 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-29 10:03:49,155 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-29 10:03:49,155 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-29 10:03:49,155 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-29 10:03:49,156 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-29 10:03:49,156 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-29 10:03:49,161 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-29 10:03:49,162 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-29 10:03:49,162 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140587285060240 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-29 10:03:49,163 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-29 10:03:49,796 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-29 10:03:49,797 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-29 10:03:49,798 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-29 10:03:49,798 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-29 10:03:49,798 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-29 10:03:49,807 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-29 10:03:49,807 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-29 10:03:49,812 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-29 10:03:49,812 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-29 10:03:49,812 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-29 10:03:49,817 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-29 10:03:49,817 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-29 10:03:49,818 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-29 10:03:49,818 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-29 10:03:49,819 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-29 10:03:49,854 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-29 10:03:49,857 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-29 10:03:49,858 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-29 10:03:49,859 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-29 10:03:51,159 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-29 10:03:51,160 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-29 10:03:54,398 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-29 10:03:54,398 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-29 10:03:54,399 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-29 10:03:54,400 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-29 10:03:54,400 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-29 10:03:54,585 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-29 10:03:54,585 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-29 10:03:54,586 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-29 10:03:54,586 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-29 10:03:54,586 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:03:59,608 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:04:12,346 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-29 10:04:12,351 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-29 10:04:12,648 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:04:15,429 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:04:26,213 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-29 10:04:42,509 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:04:43,573 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:04:59,437 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. +2021-01-29 10:09:40,572 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 2 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-29 10:09:40,695 rec_to_binaries.core: INFO Extracting analog data... +2021-01-29 10:09:40,696 rec_to_binaries.core: INFO Extracting DIO... +2021-01-29 10:09:40,696 rec_to_binaries.core: INFO Extracting mda... +2021-01-29 10:09:40,696 rec_to_binaries.core: INFO Extracting time... +2021-01-29 10:10:00,871 rec_to_binaries.core: INFO Making position directory... +2021-01-29 10:10:00,888 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-29 10:10:00,888 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-29 10:10:00,888 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-29 10:10:00,889 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-29 10:10:01,094 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-29 10:10:01,251 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-29 10:10:01,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-29 10:10:01,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-29 10:10:01,597 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-29 10:10:01,598 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-29 10:10:01,598 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140719454884176 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-29 10:10:01,598 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-29 10:10:02,217 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-29 10:10:02,218 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-29 10:10:02,218 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-29 10:10:02,218 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-29 10:10:02,219 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-29 10:10:02,227 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-29 10:10:02,227 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-29 10:10:02,232 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-29 10:10:02,232 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-29 10:10:02,237 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-29 10:10:02,237 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-29 10:10:02,237 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-29 10:10:02,238 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-29 10:10:02,239 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-29 10:10:02,272 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-29 10:10:02,275 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-29 10:10:02,278 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-29 10:10:02,278 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-29 10:10:03,734 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-29 10:10:03,736 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-29 10:10:07,256 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-29 10:10:07,256 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-29 10:10:07,257 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-29 10:10:07,258 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-29 10:10:07,258 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-29 10:10:07,443 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-29 10:10:07,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-29 10:10:07,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-29 10:10:07,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-29 10:10:07,444 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:10:12,602 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:10:25,546 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-29 10:10:25,550 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-29 10:10:25,848 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:10:29,016 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:10:43,292 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-01-29 10:11:08,370 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:11:09,984 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:11:27,286 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. +2021-01-29 10:13:16,941 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +parallel_instances = 2 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-01-29 10:13:17,038 rec_to_binaries.core: INFO Extracting analog data... +2021-01-29 10:13:17,039 rec_to_binaries.core: INFO Extracting DIO... +2021-01-29 10:13:17,039 rec_to_binaries.core: INFO Extracting mda... +2021-01-29 10:13:17,039 rec_to_binaries.core: INFO Extracting time... +2021-01-29 10:13:38,315 rec_to_binaries.core: INFO Making position directory... +2021-01-29 10:13:38,348 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-01-29 10:13:38,349 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-01-29 10:13:38,349 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-01-29 10:13:38,349 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb_builder_test_data/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb + +2021-01-29 10:13:38,628 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-01-29 10:13:38,819 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-01-29 10:13:39,185 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-01-29 10:13:39,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-01-29 10:13:39,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-01-29 10:13:39,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-01-29 10:13:39,188 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-01-29 10:13:39,188 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-01-29 10:13:39,188 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-01-29 10:13:39,191 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-01-29 10:13:39,191 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-01-29 10:13:39,192 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140553975122896 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-01-29 10:13:39,193 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-01-29 10:13:39,902 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-01-29 10:13:39,904 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-01-29 10:13:39,904 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-01-29 10:13:39,904 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-01-29 10:13:39,905 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-01-29 10:13:39,916 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-01-29 10:13:39,916 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-01-29 10:13:39,921 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-01-29 10:13:39,921 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-01-29 10:13:39,927 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-01-29 10:13:39,927 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-01-29 10:13:39,928 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-01-29 10:13:39,928 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-01-29 10:13:39,930 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-01-29 10:13:39,974 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-01-29 10:13:39,976 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-01-29 10:13:39,978 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-01-29 10:13:39,979 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-01-29 10:13:41,500 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-01-29 10:13:41,502 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-01-29 10:13:44,733 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-01-29 10:13:44,734 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-01-29 10:13:44,735 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-01-29 10:13:44,735 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-01-29 10:13:44,736 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-01-29 10:13:44,938 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-01-29 10:13:44,939 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-01-29 10:13:44,939 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-01-29 10:13:44,939 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-01-29 10:13:44,940 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:13:49,614 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:14:01,610 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-01-29 10:14:01,614 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-01-29 10:14:01,913 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-01-29 10:14:04,761 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-01-29 10:14:16,167 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-01-29 10:18:46,146 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-01-29 10:18:46,230 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index a17b18428..69acdd227 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -184,8 +184,8 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, process_pos_valid_time=process_pos_valid_time, process_pos_invalid_time=process_pos_invalid_time) - def __build_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time=True, - process_pos_valid_time=True, process_pos_invalid_time=True): + def __build_nwb_file(self, process_mda_valid_time=False, process_mda_invalid_time=False, + process_pos_valid_time=False, process_pos_invalid_time=False): logger.info('Building NWB files') os.makedirs(self.output_path, exist_ok=True) os.makedirs(self.video_path, exist_ok=True) @@ -194,13 +194,13 @@ def __build_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time nwb_builder = self.get_nwb_builder(date) content = nwb_builder.build() nwb_builder.write(content) - self.append_to_nwb( - nwb_builder=nwb_builder, - process_mda_valid_time=process_mda_valid_time, - process_mda_invalid_time=process_mda_invalid_time, - process_pos_valid_time=process_pos_valid_time, - process_pos_invalid_time=process_pos_invalid_time - ) + # self.append_to_nwb( + # nwb_builder=nwb_builder, + # process_mda_valid_time=process_mda_valid_time, + # process_mda_invalid_time=process_mda_invalid_time, + # process_pos_valid_time=process_pos_valid_time, + # process_pos_invalid_time=process_pos_invalid_time + # ) def __build_old_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time=True, process_pos_valid_time=True, process_pos_invalid_time=True): diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py index 5b943c7e8..56c3b5a06 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py @@ -17,16 +17,14 @@ class FlAnalogExtractor: def extract_analog_for_single_dataset(analog_files, continuous_time_file): single_dataset_data = {} for analog_file in analog_files: - print(f'processing analog file {analog_file}') if not 'timestamps' in analog_file: analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) values = analog_data['data'] single_dataset_data[analog_data['id']] = values else: continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) - timestamp = readTrodesExtractedDataFile(analog_files[analog_file]) - keys = [key[0] for key in timestamp['data']] - single_dataset_data[analog_file] = TimestampConverter.convert_timestamps(continuous_time_dict, keys) + timestamps = readTrodesExtractedDataFile(analog_files[analog_file])['data']['time'] + single_dataset_data[analog_file] = TimestampConverter.convert_timestamps(continuous_time, timestamps) return single_dataset_data diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py index f85917f27..5d42c6280 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py @@ -19,7 +19,6 @@ def extract_dio_for_single_dataset(filtered_files, continuous_time_file): single_dataset_data = {} continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) - print(f'in DioExtractor: continuous_time shape: {continuous_time.shape}') for dio_file in filtered_files: try: dio_data = readTrodesExtractedDataFile(filtered_files[dio_file])['data'] @@ -39,12 +38,11 @@ def extract_dio_for_single_dataset(filtered_files, continuous_time_file): @staticmethod def __get_dio_time_series(dio_data, continuous_time): converted_timestamps = TimestampConverter.convert_timestamps(continuous_time, dio_data['time']) - print(f'in __get_dio... : times = {converted_timestamps[0:10]}') - values = bool(dio_data['state']) + #values = np.asarray(dio_data['state'], dtype='bool') # values = [bool(recorded_event[1]) for recorded_event in dio_data['data']] # keys = [recorded_event[0] for recorded_event in dio_data['data']] # keys = DioExtractor.__convert_keys(continuoues_time_dict, keys) - return converted_timestamps, values + return [converted_timestamps, dio_data['state']] @staticmethod diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_manager.py b/rec_to_nwb/processing/nwb/components/dio/dio_manager.py index 38321b8e0..443f25e90 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_manager.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_manager.py @@ -30,6 +30,6 @@ def __merge_dio_data(cls, data_from_multiple_datasets): for single_dataset_data in data_from_multiple_datasets[1:]: for event, timeseries in single_dataset_data.items(): merged_data[event][0] = np.hstack((merged_data[event][0], timeseries[0])) - merged_data[event][1].extend(timeseries[1]) + merged_data[event][1] = np.hstack((merged_data[event][1], timeseries[1])) return merged_data diff --git a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py index 456fda869..2c55d7547 100644 --- a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py +++ b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py @@ -11,6 +11,6 @@ def create_mda(cls, fl_mda): electrodes=fl_mda.electrode_table_region, timestamps=fl_mda.mda_data.mda_timestamps, conversion=fl_mda.conversion, - comments="", + comments="No comment", description="Recording of extracellular voltage" ) diff --git a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py index b30712e31..3758ed852 100644 --- a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py @@ -1,4 +1,5 @@ from mountainlab_pytools.mdaio import readmda + from numpy import isclose from rec_to_nwb.processing.nwb.common.data_manager import DataManager @@ -13,4 +14,4 @@ def read_data(self, dataset_id, file_id): if not isclose(self.raw_to_uv,1.0): return (readmda(self.directories[dataset_id][file_id]) * self.raw_to_uv).astype('int16') else: - return readmda(self.directories[dataset_id][file_id]) + return readmda(self.directories[dataset_id][file_id]).astype('int16') diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index 042d18375..3ed336f13 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -14,12 +14,16 @@ class TimestampConverter: @staticmethod def convert_timestamps(continuous_times, timestamps): converted_timestamps = np.ndarray(shape=[len(timestamps), ], dtype="float64") + converted_timestamps = np.nan + # add values at the end of continuous_times to make sure all values are within the range + max_vals = np.asarray([[np.iinfo(np.int64).max],[np.iinfo(np.int64).max]], dtype=np.int64) + continuous_times = np.hstack((continuous_times, max_vals)) # look up the timestamps in the first colum of continuous_times - timestamp_ind = np.searchsorted(continuous_times[:,0], timestamps) - converted_timestamps = continuous_times[timestamp_ind,1] / 1E9 + timestamp_ind = np.searchsorted(continuous_times[0,:], timestamps) + converted_timestamps = continuous_times[1,timestamp_ind] / 1E9 # get rid of any that are not exact - not_found = timestamps != continuous_times[timestamp_ind,0] - print(f'in Timestamp Converter: {len(not_found)} timestamps not found in continuous time file') + not_found = timestamps != continuous_times[0,timestamp_ind] + #print(f'in Timestamp Converter: {sum(not_found)} timestamps not found in continuous time file') converted_timestamps[not_found] = np.nan return converted_timestamps #old code From abc469c5d72288a3b9e9061602ee0242ad13fb8e Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Fri, 12 Feb 2021 14:08:07 -0800 Subject: [PATCH 032/205] Update README.md Fixed reference to be to this repo, NOT Novela --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6d9e5ab3c..f2d3d5d79 100644 --- a/README.md +++ b/README.md @@ -13,11 +13,12 @@ It converts experiment data from `/raw` or `/preprocessing` folder to `.nwb` fil ```bash export PATH="$HOME/SpikeGadgets/:$PATH" ``` -3. Download miniconda from
+3. Use anaconda or Download miniconda from

4. Install rec_to_nwb package: ```bash - conda install -c conda-forge -c novelakrk rec_to_nwb + conda install -c conda-forge -c novelakrk + git clone https://github.com/LorenFrankLab/rec_to_nwb.git ``` 5. Install Jupyter notebook ```bash @@ -36,7 +37,7 @@ It converts experiment data from `/raw` or `/preprocessing` folder to `.nwb` fil
4. clone repository ```bash - git clone https://github.com/NovelaNeuro/rec_to_nwb.git + git clone https://github.com/LorenFrankLab/rec_to_nwb.git cd rec_to_nwb/rec_to_nwb ``` From eee53fd7fdbd55d8a496b9c701fc806f3182161c Mon Sep 17 00:00:00 2001 From: Loren Date: Fri, 12 Feb 2021 14:12:35 -0800 Subject: [PATCH 033/205] Updated filesorter to correct incorrect mda sorting --- rec_to_nwb/processing/tools/file_sorter.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/tools/file_sorter.py b/rec_to_nwb/processing/tools/file_sorter.py index fd9f1b8f0..bd462279a 100644 --- a/rec_to_nwb/processing/tools/file_sorter.py +++ b/rec_to_nwb/processing/tools/file_sorter.py @@ -1,6 +1,15 @@ -class FileSorter: + class FileSorter: @staticmethod def sort_filenames(filenames): - filenames.sort(key=lambda item: (item, len(item))) + # Check if these are mda files + # There can be a log file along with mda files, so check whether any file is an mda file + filenames_mda = [i for i in filenames if '.mda' in i] + if len(filenames_mda) > 0: # if at least one mda file + # sort by length first because the ntrode numbers are 1,2,.., 10, ... + filenames.sort(key=lambda item: (len(item), item)) + else: + filenames.sort(key=lambda item: (item, len(item))) + #print('IN FILESORTER') ########## + #print('filenames:', filenames) ############## return filenames From ee763438758a91b00bcaff53af27f8d17ac26e7b Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Fri, 12 Feb 2021 14:25:14 -0800 Subject: [PATCH 034/205] Fixes to installation instructions. --- README.md | 35 +++++++++++------------------------ 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index f2d3d5d79..918ab2003 100644 --- a/README.md +++ b/README.md @@ -4,26 +4,8 @@ rec_to_nwb is a python conda package for converting SpikeGadgets rec files to NW It converts experiment data from `/raw` or `/preprocessing` folder to `.nwb` file. It utilizes rec_to_binaries package for preprocessing phase.

-# Prerequisites -## For users -1. Install Spike Gadgets
- -2. Add SpikeGadgets to path.
- If Spike Gadgets is in default location:
- ```bash - export PATH="$HOME/SpikeGadgets/:$PATH" - ``` -3. Use anaconda or Download miniconda from
-
-4. Install rec_to_nwb package: - ```bash - conda install -c conda-forge -c novelakrk - git clone https://github.com/LorenFrankLab/rec_to_nwb.git - ``` -5. Install Jupyter notebook - ```bash - pip install jupyter notebook - ``` +# Instructions: +Currently we suggest following the instructions to install https://github.com/LorenFrankLab/franklabnwb, as that includes additional files that are helpful, but you can install this using the instructions below. ## For developers 1. Install Spike Gadgets
@@ -33,8 +15,8 @@ It converts experiment data from `/raw` or `/preprocessing` folder to `.nwb` fil ```bash export PATH="$HOME/SpikeGadgets/:$PATH" ``` -3. Download miniconda from
-
+3. Install anaconda or miniconda if you haven't already. + 4. clone repository ```bash git clone https://github.com/LorenFrankLab/rec_to_nwb.git @@ -45,11 +27,16 @@ It converts experiment data from `/raw` or `/preprocessing` folder to `.nwb` fil ```bash conda env create -f environment.yml ``` -6. jupyter notebook installation +6. Install rec_to_nwb + ```bash + cd .. + python setup.py install + ``` +7. jupyter notebook installation ```bash pip install jupyter notebook ``` -7. Documentation can be viewed at
+8. Documentation can be viewed at
# How to use it From 0c822cdd37ad7ed968d9612cb965141d9228754f Mon Sep 17 00:00:00 2001 From: Loren Date: Fri, 12 Feb 2021 15:10:06 -0800 Subject: [PATCH 035/205] fixed bug in FileSorter --- rec_to_nwb/processing/tools/file_sorter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/tools/file_sorter.py b/rec_to_nwb/processing/tools/file_sorter.py index bd462279a..d002f92fa 100644 --- a/rec_to_nwb/processing/tools/file_sorter.py +++ b/rec_to_nwb/processing/tools/file_sorter.py @@ -1,5 +1,5 @@ - class FileSorter: +class FileSorter: @staticmethod def sort_filenames(filenames): # Check if these are mda files From 3295b57a49b4e9659706960f629c9b9299b24a00 Mon Sep 17 00:00:00 2001 From: Loren Date: Fri, 12 Feb 2021 15:30:00 -0800 Subject: [PATCH 036/205] Updated environment.yml to use latest version of rec_to_binaries --- .gitignore | 3 +++ rec_to_nwb/environment.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..4cb707078 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +build/* +dist/rec_to_nwb-0.1.19-py3.7.egg +rec_to_nwb.egg-info/SOURCES.txt diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index 8bb353f40..c735121e4 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -49,7 +49,7 @@ dependencies: - pip: - mountainlab_pytools - xmldiff - - rec-to-binaries==0.6.1.dev0 + - rec-to-binaries - hdmf>2.1.0 - pynwb From 11bdc58f5bad4f9ffbcb69c2f19fbfd9128666fb Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Thu, 11 Feb 2021 15:29:24 -0800 Subject: [PATCH 037/205] add run_preprocessing option --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 69acdd227..6aa78225f 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -155,7 +155,8 @@ def __is_old_dataset(self): return True raise FileNotFoundError('need either cameraHWSync or cameraHWFrameCount files.') - def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, + def build_nwb(self, run_preprocessing=True, + process_mda_valid_time=True, process_mda_invalid_time=True, process_pos_valid_time=True, process_pos_invalid_time=True): """Builds nwb file for experiments from given dates. @@ -170,7 +171,8 @@ def build_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, Need the pos data inside the nwb. (default True) """ - self.__preprocess_data() + if run_preprocessing: + self.__preprocess_data() if self.__is_old_dataset(): self.__build_old_nwb_file(process_mda_valid_time=process_mda_valid_time, From 498d8378995c9112daa12572b2cdb6618fcb013a Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Thu, 11 Feb 2021 15:29:44 -0800 Subject: [PATCH 038/205] propagate uV unit change to old mda processing --- .../processing/nwb/components/mda/old_fl_mda_extractor.py | 6 ++++-- .../processing/nwb/components/mda/old_fl_mda_manager.py | 5 +++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py index aa0c4fc62..c158c2613 100644 --- a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py @@ -8,8 +8,10 @@ class OldFlMdaExtractor: - def __init__(self, datasets): + def __init__(self, datasets, conversion): self.datasets = datasets + # the conversion is to volts, so we multiple by 1e6 to change to uV + self.raw_to_uv = float(conversion) * 1e6 def get_data(self): mda_data, timestamps, continuous_time = self.__extract_data() @@ -17,7 +19,7 @@ def get_data(self): directories=timestamps, continuous_time_directories=continuous_time ) - mda_data_manager = MdaDataManager(mda_data) + mda_data_manager = MdaDataManager(mda_data, self.raw_to_uv) data_iterator = MultiThreadDataIterator(mda_data_manager) timestamp_iterator = MultiThreadTimestampIterator(mda_timestamp_data_manager) diff --git a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py index 5d8e8aa97..136c3bd81 100644 --- a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py @@ -6,8 +6,9 @@ class OldFlMdaManager: def __init__(self, nwb_content, sampling_rate, datasets, conversion): self.__table_region_builder = TableRegionBuilder(nwb_content) - self.__fl_mda_extractor = OldFlMdaExtractor(datasets) - self.__fl_mda_builder = FlMdaBuilder(sampling_rate, conversion) + self.__fl_mda_extractor = OldFlMdaExtractor(datasets, conversion) + # we converted the data to uV in the extractor, so the conversion to V is always 1e-6 + self.__fl_mda_builder = FlMdaBuilder(sampling_rate, 0.000001) def get_data(self): electrode_table_region = self.__table_region_builder.build() From 3949b6fb386641fc57550fcfb17b9c25e71286b8 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak Date: Sun, 14 Feb 2021 17:37:16 -0800 Subject: [PATCH 039/205] propagate changes to fl_position_manager to old --- .../components/position/old_fl_position_manager.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py index dd84059c4..cd5151c4d 100644 --- a/rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py @@ -55,19 +55,23 @@ def get_fl_positions(self) -> list: zip(position_datas, columns_labels, meters_per_pixels) ] + + + + @staticmethod def __get_cameras_ids(dataset_names, metadata): camera_ids = [] for dataset_name in dataset_names: - dataset_name = re.sub(r'_\w\d\d?', '', dataset_name) - dataset_name = re.sub(r'^[0]', '', dataset_name) - + # extract the first the first element of the dataset_name as the epoch number + dataset_elements = str(dataset_name).split('_') + epoch_num = str(int(dataset_elements[0])) try: camera_ids.append( next( task['camera_id'] for task in metadata['tasks'] - if dataset_name in task['task_epochs'] + if epoch_num in task['task_epochs'] )[0] ) except: From cb35385fbeefca671d7dfa8e39e3c57f72918ca8 Mon Sep 17 00:00:00 2001 From: Ji Hyun Bak <39214579+jihyunbak@users.noreply.github.com> Date: Wed, 17 Feb 2021 09:27:03 -0800 Subject: [PATCH 040/205] Refactor old dataset processing (#9) * drop old_mda_originator (same mda processing for new and old datasets) * update front-end so the main builders detect and handle old datasets - control with a new internal switch is_old_dataset * drop old_fl_analog_extractor - FlAnalogExtractor now handles old datasets as well * drop old_fl_analog_builder (same as fl_analog_builder) * keep parallel structure [old_]fl_analog_manager * keep parallel structure in [old_]analog_originator * drop old_timestamps_manager * minor edit to timestamp_converter * fix missing argument in old_analog_originator * add timestamp processing switches for analog * drop old_fl_analog_manager and control using switches convert_timestamps and return_timestamps * drop old_analog_originator; control with switch args * add convert_timestamps switch to TimestampManager.retrieve_real_timestamps() * update old_pos_timestamp_manager to return timestampp_ids instead of nan's * drop old_pos_timestamps_manager * drop old_position_extractor * drop old_fl_position_manager * drop old_position_originator; use switch arg instead * drop old_dio_extractor, introduce switch convert_timestamps * drop old_dio_manager * drop old_dio_originator * drop old_fl_video_files_extractor * drop old_fl_video_files_manager * drop old_video_files_originator; use switch args instead * add switch convert_timestamps to video_files processing * set global switches for old dataset timestamps processing * remove unused old valid/invalid time originators - exact duplicates of the non-old originators * fix syntax error * video_files timestamps conversion forced to False for old dataset, for now * turn on return_timestamps for old dataset * turn on convert_timestamps for old dataset (unadjusted) --- .../processing/builder/nwb_file_builder.py | 72 +++- .../builder/old_nwb_file_builder.py | 379 ------------------ .../builder/old_originators/__init__.py | 0 .../builder/old_raw_to_nwb_builder.py | 0 .../builder/originators/analog_originator.py | 13 +- .../builder/originators/dio_originator.py | 8 +- .../originators/old_analog_originator.py | 25 -- .../builder/originators/old_dio_originator.py | 44 -- .../old_mda_invalid_time_originator.py | 25 -- .../builder/originators/old_mda_originator.py | 33 -- .../old_mda_valid_time_originator.py | 25 -- .../originators/old_pos_invalid_originator.py | 23 -- .../old_pos_valid_time_originator.py | 22 - .../originators/old_position_originator.py | 31 -- .../originators/old_video_files_originator.py | 19 - .../originators/position_originator.py | 7 +- .../originators/video_files_originator.py | 9 +- .../processing/builder/raw_to_nwb_builder.py | 61 +-- .../nwb/common/old_timestamps_manager.py | 51 --- .../nwb/common/timestamps_manager.py | 7 +- .../components/analog/fl_analog_extractor.py | 28 +- .../components/analog/fl_analog_manager.py | 21 +- .../analog/old_fl_analog_builder.py | 8 - .../analog/old_fl_analog_extractor.py | 25 -- .../analog/old_fl_analog_manager.py | 59 --- .../nwb/components/dio/dio_extractor.py | 40 +- .../nwb/components/dio/dio_manager.py | 6 +- .../nwb/components/dio/old_dio_extractor.py | 39 -- .../nwb/components/dio/old_dio_manager.py | 33 -- .../components/mda/old_fl_mda_extractor.py | 61 --- .../nwb/components/mda/old_fl_mda_manager.py | 16 - .../position/fl_position_extractor.py | 6 +- .../position/fl_position_manager.py | 7 +- .../position/old_fl_position_extractor.py | 55 --- .../position/old_fl_position_manager.py | 95 ----- .../position/old_pos_timestamp_manager.py | 23 -- .../position/pos_timestamp_manager.py | 8 +- .../video_files/fl_video_files_extractor.py | 53 ++- .../video_files/fl_video_files_manager.py | 8 +- .../old_fl_video_files_extractor.py | 24 -- .../video_files/old_fl_video_files_manager.py | 26 -- .../processing/time/timestamp_converter.py | 13 +- 42 files changed, 240 insertions(+), 1268 deletions(-) delete mode 100644 rec_to_nwb/processing/builder/old_nwb_file_builder.py delete mode 100644 rec_to_nwb/processing/builder/old_originators/__init__.py delete mode 100644 rec_to_nwb/processing/builder/old_raw_to_nwb_builder.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_analog_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_dio_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_mda_invalid_time_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_mda_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_mda_valid_time_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_pos_invalid_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_pos_valid_time_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_position_originator.py delete mode 100644 rec_to_nwb/processing/builder/originators/old_video_files_originator.py delete mode 100644 rec_to_nwb/processing/nwb/common/old_timestamps_manager.py delete mode 100644 rec_to_nwb/processing/nwb/components/analog/old_fl_analog_builder.py delete mode 100644 rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py delete mode 100644 rec_to_nwb/processing/nwb/components/analog/old_fl_analog_manager.py delete mode 100644 rec_to_nwb/processing/nwb/components/dio/old_dio_extractor.py delete mode 100644 rec_to_nwb/processing/nwb/components/dio/old_dio_manager.py delete mode 100644 rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py delete mode 100644 rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py delete mode 100644 rec_to_nwb/processing/nwb/components/position/old_fl_position_extractor.py delete mode 100644 rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py delete mode 100644 rec_to_nwb/processing/nwb/components/position/old_pos_timestamp_manager.py delete mode 100644 rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py delete mode 100644 rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_manager.py diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index d2fcc68c7..22bf3d85d 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -52,10 +52,15 @@ from rec_to_nwb.processing.validation.task_validator import TaskValidator from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator + path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) +# switches for old dataset timestamp processing (hard-coded for now) +_CONVERT_OLD_TIMESTAMPS = True #False +_RETURN_OLD_TIMESTAMPS = True #False + class NWBFileBuilder: """Unpack data from preprocessing folder specified by arguments, and write those data into NWB file format @@ -91,7 +96,9 @@ def __init__( preprocessing_path: str = '', video_path: str = '', output_file: str = 'output.nwb', - reconfig_header: str = '' + reconfig_header: str = '', + is_old_dataset: bool = False, + session_start_time = None, ): logger.info('NWBFileBuilder initialization') @@ -134,6 +141,7 @@ def __init__( self.preprocessing_path = preprocessing_path self.output_file = output_file self.video_path = video_path + self.is_old_dataset = is_old_dataset self.link_to_notes = self.metadata.get('link to notes', None) data_types_for_scanning = {'pos': True, 'time': True, @@ -188,12 +196,18 @@ def __init__( self.electrode_group_originator = ElectrodeGroupOriginator(self.metadata) self.electrodes_originator = ElectrodesOriginator(self.probes, self.metadata) - self.session_time_extractor = SessionTimeExtractor( - self.datasets, - self.animal_name, - self.date, - self.dataset_names - ) + if self.is_old_dataset: + if not session_start_time: + raise ValueError('session_start_time is required for old dataset.') + self.session_start_time = session_start_time + else: + session_time_extractor = SessionTimeExtractor( + self.datasets, + self.animal_name, + self.date, + self.dataset_names + ) + self.session_start_time = session_time_extractor.get_session_start_time() self.mda_valid_time_originator = MdaValidTimeOriginator(self.header, self.metadata) self.mda_invalid_time_originator = MdaInvalidTimeOriginator(self.header, self.metadata) @@ -220,11 +234,20 @@ def __init__( self.probes_originator = ProbeOriginator(self.device_factory, self.device_injector, self.probes) self.camera_sample_frame_counts_originator = CameraSampleFrameCountsOriginator( self.data_path + "/" + animal_name + "/raw/" + self.date + "/") - self.video_files_originator = VideoFilesOriginator( - self.data_path + "/" + animal_name + "/raw/" + self.date + "/", - self.video_path, - self.metadata["associated_video_files"], - ) + if self.is_old_dataset: + self.video_files_originator = VideoFilesOriginator( + self.data_path + "/" + animal_name + "/raw/" + self.date + "/", + self.video_path, + self.metadata["associated_video_files"], + convert_timestamps=_CONVERT_OLD_TIMESTAMPS, + return_timestamps=_RETURN_OLD_TIMESTAMPS, + ) + else: + self.video_files_originator = VideoFilesOriginator( + self.data_path + "/" + animal_name + "/raw/" + self.date + "/", + self.video_path, + self.metadata["associated_video_files"], + ) self.data_acq_device_originator = DataAcqDeviceOriginator( device_factory=self.device_factory, @@ -236,13 +259,27 @@ def __init__( self.mda_originator = MdaOriginator(self.datasets, self.header, self.metadata) if self.process_dio: - self.dio_originator = DioOriginator(self.metadata, self.datasets) + if self.is_old_dataset: + self.dio_originator = DioOriginator(self.metadata, self.datasets, + convert_timestamps=_CONVERT_OLD_TIMESTAMPS) + else: + self.dio_originator = DioOriginator(self.metadata, self.datasets) if self.process_analog: - self.analog_originator = AnalogOriginator(self.datasets, self.metadata) + if self.is_old_dataset: + self.analog_originator = AnalogOriginator(self.datasets, self.metadata, + convert_timestamps=_CONVERT_OLD_TIMESTAMPS, + return_timestamps=_RETURN_OLD_TIMESTAMPS) + else: + self.analog_originator = AnalogOriginator(self.datasets, self.metadata) - self.position_originator = PositionOriginator(self.datasets, self.metadata, - self.dataset_names, self.process_pos_timestamps) + if self.is_old_dataset: + self.position_originator = PositionOriginator(self.datasets, self.metadata, + self.dataset_names, self.process_pos_timestamps, + convert_timestamps=_CONVERT_OLD_TIMESTAMPS) + else: + self.position_originator = PositionOriginator(self.datasets, self.metadata, + self.dataset_names, self.process_pos_timestamps) def __extract_datasets(self, animal_name, date): self.data_scanner.extract_data_from_date_folder(date) @@ -261,7 +298,7 @@ def build(self): experimenter=self.metadata['experimenter name'], lab=self.metadata['lab'], institution=self.metadata['institution'], - session_start_time=self.session_time_extractor.get_session_start_time(), + session_start_time=self.session_start_time, timestamps_reference_time=datetime.fromtimestamp(0, pytz.utc), identifier=str(uuid.uuid1()), session_id=self.metadata['session_id'], @@ -279,7 +316,6 @@ def build(self): self.processing_module_originator.make(nwb_content) - if 'associated_files' in self.metadata: self.associated_files_originator.make(nwb_content) diff --git a/rec_to_nwb/processing/builder/old_nwb_file_builder.py b/rec_to_nwb/processing/builder/old_nwb_file_builder.py deleted file mode 100644 index fe0807a9e..000000000 --- a/rec_to_nwb/processing/builder/old_nwb_file_builder.py +++ /dev/null @@ -1,379 +0,0 @@ -import logging.config -import os -import uuid -from datetime import datetime - -import pytz -from pynwb import NWBHDF5IO, NWBFile -from pynwb.file import Subject - -from rec_to_nwb.processing.builder.originators.associated_files_originator import AssociatedFilesOriginator -from rec_to_nwb.processing.builder.originators.camera_device_originator import CameraDeviceOriginator -from rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator import \ - CameraSampleFrameCountsOriginator -from rec_to_nwb.processing.builder.originators.data_acq_device_originator import DataAcqDeviceOriginator -from rec_to_nwb.processing.builder.originators.electrode_group_originator import ElectrodeGroupOriginator -from rec_to_nwb.processing.builder.originators.electrodes_extension_originator import ElectrodesExtensionOriginator -from rec_to_nwb.processing.builder.originators.electrodes_originator import ElectrodesOriginator -from rec_to_nwb.processing.builder.originators.epochs_originator import EpochsOriginator -from rec_to_nwb.processing.builder.originators.header_device_originator import HeaderDeviceOriginator -from rec_to_nwb.processing.builder.originators.mda_invalid_time_originator import MdaInvalidTimeOriginator -from rec_to_nwb.processing.builder.originators.mda_valid_time_originator import MdaValidTimeOriginator -from rec_to_nwb.processing.builder.originators.old_analog_originator import OldAnalogOriginator -from rec_to_nwb.processing.builder.originators.old_dio_originator import OldDioOriginator -from rec_to_nwb.processing.builder.originators.old_mda_originator import OldMdaOriginator -from rec_to_nwb.processing.builder.originators.old_position_originator import OldPositionOriginator -from rec_to_nwb.processing.builder.originators.old_video_files_originator import OldVideoFilesOriginator -from rec_to_nwb.processing.builder.originators.pos_invalid_originator import PosInvalidTimeOriginator -from rec_to_nwb.processing.builder.originators.pos_valid_time_originator import PosValidTimeOriginator -from rec_to_nwb.processing.builder.originators.probe_originator import ProbeOriginator -from rec_to_nwb.processing.builder.originators.processing_module_originator import ProcessingModuleOriginator -from rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator import \ - SampleCountTimestampCorespondenceOriginator -from rec_to_nwb.processing.builder.originators.shanks_electrodes_originator import ShanksElectrodeOriginator -from rec_to_nwb.processing.builder.originators.shanks_originator import ShanksOriginator -from rec_to_nwb.processing.builder.originators.task_originator import TaskOriginator -from rec_to_nwb.processing.header.header_checker.header_processor import HeaderProcessor -from rec_to_nwb.processing.header.header_checker.rec_file_finder import RecFileFinder -from rec_to_nwb.processing.header.module.header import Header -from rec_to_nwb.processing.metadata.corrupted_data_manager import CorruptedDataManager -from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager -from rec_to_nwb.processing.nwb.components.device.device_factory import DeviceFactory -from rec_to_nwb.processing.nwb.components.device.device_injector import DeviceInjector -from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import FlProbeManager -from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.data_scanner import DataScanner -from rec_to_nwb.processing.validation.associated_files_validator import AssociatedFilesExistanceValidator -from rec_to_nwb.processing.validation.metadata_section_validator import MetadataSectionValidator -from rec_to_nwb.processing.validation.ntrode_validator import NTrodeValidator -from rec_to_nwb.processing.validation.path_validator import PathValidator -from rec_to_nwb.processing.validation.preprocessing_validator import PreprocessingValidator -from rec_to_nwb.processing.validation.task_validator import TaskValidator -from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - - -class OldNWBFileBuilder: - """Unpack data from preprocessing folder specified by arguments, and write those data into NWB file format - - Args: - data_path (string): path to directory containing all experiments data - animal_name (string): directory name which represents animal subject of experiment - date (string): date of experiment - nwb_metadata (MetadataManager): object contains metadata about experiment - process_dio (boolean): flag if dio data should be processed - process_mda (boolean): flag if mda data should be processed - process_analog (boolean): flag if analog data should be processed - video_path (string): path to directory with video files associated to nwb file - output_file (string): path and name specifying where .nwb file gonna be written - - Methods: - build() - write() - build_and_append_to_nwb() - """ - - @beartype - def __init__( - self, - data_path: str, - animal_name: str, - date: str, - session_start_time, - nwb_metadata: MetadataManager, - process_dio: bool = True, - process_mda: bool = True, - process_analog: bool = True, - process_pos_timestamps: bool = True, - preprocessing_path: str = '', - video_path: str = '', - output_file: str = 'output.nwb', - reconfig_header: str = '' - ): - - logger.info('NWBFileBuilder initialization') - logger.info( - 'NWB builder initialization parameters: \n' - + 'data_path = ' + str(data_path) + '\n' - + 'animal_name = ' + str(animal_name) + '\n' - + 'date = ' + str(date) + '\n' - + 'nwb_metadata = ' + str(nwb_metadata) + '\n' - + 'process_dio = ' + str(process_dio) + '\n' - + 'process_mda = ' + str(process_mda) + '\n' - + 'process_analog = ' + str(process_analog) + '\n' - + 'output_file = ' + str(output_file) + '\n' - ) - - validation_registrator = ValidationRegistrator() - validation_registrator.register(PathValidator(data_path)) - validation_registrator.validate() - - self.animal_name = animal_name - self.date = date - self.data_path = data_path - self.metadata = nwb_metadata.metadata - metadata_section_validator = MetadataSectionValidator(self.metadata) - metadata_section_validator.validate_sections() - if self.metadata.get('associated_files', []): - associated_files_existance_validator = AssociatedFilesExistanceValidator(self.metadata['associated_files']) - if associated_files_existance_validator.files_exist(): - pass - else: - raise Exception("one or more associated file listed in metadata.yaml file does not exist") - self.probes = nwb_metadata.probes - self.process_dio = process_dio - self.process_mda = process_mda - self.process_analog = process_analog - self.process_pos_timestamps = process_pos_timestamps - if not preprocessing_path: - self.preprocessing_path = data_path - else: - self.preprocessing_path = preprocessing_path - self.output_file = output_file - self.video_path = video_path - self.link_to_notes = self.metadata.get('link to notes', None) - data_types_for_scanning = {'pos': True, - 'time': True, - 'mda': process_mda, - 'DIO': process_dio, - 'analog': process_analog} - - rec_files_list = RecFileFinder().find_rec_files( - path=(self.data_path - + '/' + self.animal_name - + '/raw/' - + self.date) - ) - - if not preprocessing_path: - header_path = None # default - else: - header_path = (self.preprocessing_path - + '/' + self.animal_name + '/headers/' + self.date) - os.makedirs(header_path, exist_ok=True) - header_file = HeaderProcessor.process_headers(rec_files_list, copy_dir=header_path) - if reconfig_header: - self.header = Header(reconfig_header) - else: - self.header = Header(header_file) - self.data_scanner = DataScanner(self.preprocessing_path, animal_name, nwb_metadata) - self.dataset_names = self.data_scanner.get_all_epochs(date) - full_data_path = os.path.join(self.preprocessing_path, - animal_name + '/preprocessing/' + date) - - validation_registrator = ValidationRegistrator() - validation_registrator.register(NTrodeValidator(self.metadata, self.header, self.probes)) - validation_registrator.register(PreprocessingValidator( - full_data_path, - self.dataset_names, - data_types_for_scanning - )) - validation_registrator.register(TaskValidator(self.metadata['tasks'])) - validation_registrator.validate() - - self.__extract_datasets(animal_name, date) - - self.corrupted_data_manager = CorruptedDataManager(self.metadata) - - self.shanks_electrode_originator = ShanksElectrodeOriginator(self.probes, self.metadata) - self.shanks_originator = ShanksOriginator(self.probes, self.metadata) - - self.fl_probe_manager = FlProbeManager(self.probes) - self.device_injector = DeviceInjector() - self.device_factory = DeviceFactory() - - self.electrode_group_originator = ElectrodeGroupOriginator(self.metadata) - self.electrodes_originator = ElectrodesOriginator(self.probes, self.metadata) - - self.session_start_time = session_start_time - - self.mda_valid_time_originator = MdaValidTimeOriginator(self.header, self.metadata) - self.mda_invalid_time_originator = MdaInvalidTimeOriginator(self.header, self.metadata) - self.pos_valid_time_originator = PosValidTimeOriginator(self.metadata) - self.pos_invalid_time_originator = PosInvalidTimeOriginator(self.metadata) - - self.epochs_originator = EpochsOriginator(self.datasets) - - if 'associated_files' in self.metadata: - self.associated_files_originator = AssociatedFilesOriginator(self.metadata) - - self.electrodes_extension_originator = ElectrodesExtensionOriginator( - self.probes, - self.metadata, - self.header - ) - - self.sample_count_timestamp_corespondence_originator =\ - SampleCountTimestampCorespondenceOriginator(self.datasets) - self.processing_module_originator = ProcessingModuleOriginator() - self.task_originator = TaskOriginator(self.metadata) - self.camera_device_originator = CameraDeviceOriginator(self.metadata) - self.header_device_originator = HeaderDeviceOriginator(self.header, self.metadata) - self.probes_originator = ProbeOriginator(self.device_factory, self.device_injector, self.probes) - self.camera_sample_frame_counts_originator = CameraSampleFrameCountsOriginator( - self.data_path + "/" + animal_name + "/raw/" + self.date + "/") - self.old_video_files_originator = OldVideoFilesOriginator( - self.data_path + "/" + animal_name + "/raw/" + self.date + "/", - self.video_path, - self.metadata["associated_video_files"], - ) - - self.data_acq_device_originator = DataAcqDeviceOriginator( - device_factory=self.device_factory, - device_injector=self.device_injector, - metadata=self.metadata['data acq device'] - ) - - if self.process_mda: - self.old_mda_originator = OldMdaOriginator(self.datasets, self.header, self.metadata) - - if self.process_dio: - self.old_dio_originator = OldDioOriginator(self.metadata, self.datasets) - - if self.process_analog: - self.old_analog_originator = OldAnalogOriginator(self.datasets, self.metadata) - - self.old_position_originator = OldPositionOriginator(self.datasets, self.metadata, - self.dataset_names, self.process_pos_timestamps) - - def __extract_datasets(self, animal_name, date): - self.data_scanner.extract_data_from_date_folder(date) - self.datasets = [self.data_scanner.data[animal_name][date][dataset] for dataset in self.dataset_names] - - def build(self): - """Build NWBFile - - Returns: - NWBFile: Return NWBFile content - """ - - logger.info('Building components for NWB') - nwb_content = NWBFile( - session_description=self.metadata['session description'], - experimenter=self.metadata['experimenter name'], - lab=self.metadata['lab'], - institution=self.metadata['institution'], - session_start_time=self.session_start_time, - timestamps_reference_time=datetime.fromtimestamp(0, pytz.utc), - identifier=str(uuid.uuid1()), - session_id=self.metadata['session_id'], - notes=self.link_to_notes, - experiment_description=self.metadata['experiment description'], - subject=Subject( - description=self.metadata['subject']['description'], - genotype=self.metadata['subject']['genotype'], - sex=self.metadata['subject']['sex'], - species=self.metadata['subject']['species'], - subject_id=self.metadata['subject']['subject id'], - weight=str(self.metadata['subject']['weight']), - ), - ) - - self.processing_module_originator.make(nwb_content) - - if 'associated_files' in self.metadata: - self.associated_files_originator.make(nwb_content) - - self.old_position_originator.make(nwb_content) - - valid_map_dict = self.__build_corrupted_data_manager() - - shanks_electrodes_dict = self.shanks_electrode_originator.make() - - shanks_dict = self.shanks_originator.make(shanks_electrodes_dict) - - probes = self.probes_originator.make(nwb_content, shanks_dict, valid_map_dict['probes']) - - self.data_acq_device_originator.make(nwb_content) - - self.header_device_originator.make(nwb_content) - - self.camera_device_originator.make(nwb_content) - - self.old_video_files_originator.make(nwb_content) - - electrode_groups = self.electrode_group_originator.make( - nwb_content, probes, valid_map_dict['electrode_groups'] - ) - - self.electrodes_originator.make( - nwb_content, electrode_groups, valid_map_dict['electrodes'], valid_map_dict['electrode_groups'] - ) - - self.electrodes_extension_originator.make(nwb_content, valid_map_dict['electrodes']) - - self.epochs_originator.make(nwb_content) - - self.sample_count_timestamp_corespondence_originator.make(nwb_content) - - self.task_originator.make(nwb_content) - - self.camera_sample_frame_counts_originator.make(nwb_content) - - if self.process_dio: - self.old_dio_originator.make(nwb_content) - - if self.process_analog: - self.old_analog_originator.make(nwb_content) - - if self.process_mda: - self.old_mda_originator.make(nwb_content) - - return nwb_content - - def write(self, content): - """Write nwb file handler with colected data into actual file""" - - logger.info('Writing down content to ' + self.output_file) - with NWBHDF5IO(path=self.output_file, mode='w') as nwb_fileIO: - nwb_fileIO.write(content) - nwb_fileIO.close() - - logger.info(self.output_file + ' file has been created.') - return self.output_file - - def __build_corrupted_data_manager(self): - logger.info('CorruptedData: Checking') - return self.corrupted_data_manager.get_valid_map_dict() - - def build_and_append_to_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, - process_pos_valid_time=True, process_pos_invalid_time=True): - """Create and append to existing nwb. Set flag to add it to nwb - - Args: - process_mda_valid_time (boolean): True if the mda valid times should be build and append to nwb. - Need the mda data inside the nwb. (default True) - process_mda_invalid_time (boolean): True if the mda invalid times should be build and append to nwb. - Need the mda data inside the nwb. (default True) - process_pos_valid_time (boolean): True if the pos valid times should be build and append to nwb. - Need the pos data inside the nwb. (default True) - process_pos_invalid_time (boolean): True if the pos invalid times should be build and append to nwb. - Need the pos data inside the nwb. (default True) - - Raises: - ElementExistException: If element already exist in NWB - - Returns: - NWBFile: Return NWBFile content - """ - - with NWBHDF5IO(path=self.output_file, mode='a') as nwb_file_io: - nwb_content = nwb_file_io.read() - - if self.process_pos_timestamps: - if process_pos_valid_time: - self.pos_valid_time_originator.make(nwb_content) - if process_pos_invalid_time: - self.pos_invalid_time_originator.make(nwb_content) - - if process_mda_valid_time: - self.mda_valid_time_originator.make(nwb_content) - if process_mda_invalid_time: - self.mda_invalid_time_originator.make(nwb_content) - - - nwb_file_io.write(nwb_content) diff --git a/rec_to_nwb/processing/builder/old_originators/__init__.py b/rec_to_nwb/processing/builder/old_originators/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/rec_to_nwb/processing/builder/old_raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/old_raw_to_nwb_builder.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/rec_to_nwb/processing/builder/originators/analog_originator.py b/rec_to_nwb/processing/builder/originators/analog_originator.py index 6b1d7002a..af62183f8 100644 --- a/rec_to_nwb/processing/builder/originators/analog_originator.py +++ b/rec_to_nwb/processing/builder/originators/analog_originator.py @@ -6,17 +6,26 @@ class AnalogOriginator: - def __init__(self, datasets, metadata): + def __init__(self, datasets, metadata, + convert_timestamps: bool = True, + return_timestamps: bool = True, + ): self.datasets = datasets self.metadata = metadata self.continuous_time_files = self.__get_continuous_time_files() + + # timestamp processing switches (optionally turn off for old dataset) + self.convert_timestamps = convert_timestamps + self.return_timestamps = return_timestamps def make(self, nwb_content): analog_directories = [single_dataset.get_data_path_from_dataset('analog') for single_dataset in self.datasets] analog_files = AnalogFiles(analog_directories) analog_manager = FlAnalogManager( analog_files=analog_files.get_files(), - continuous_time_files=self.continuous_time_files + continuous_time_files=self.continuous_time_files, + convert_timestamps = self.convert_timestamps, + return_timestamps = self.return_timestamps, ) fl_analog = analog_manager.get_analog() analog_injector = AnalogInjector(nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/dio_originator.py b/rec_to_nwb/processing/builder/originators/dio_originator.py index 2e4d79faf..7f1db71ad 100644 --- a/rec_to_nwb/processing/builder/originators/dio_originator.py +++ b/rec_to_nwb/processing/builder/originators/dio_originator.py @@ -13,9 +13,10 @@ class DioOriginator: - def __init__(self, metadata, datasets): + def __init__(self, metadata, datasets, convert_timestamps=True): self.metadata = metadata self.datasets = datasets + self.convert_timestamps = convert_timestamps def make(self, nwb_content): logger.info('DIO: Prepare directories') @@ -26,7 +27,8 @@ def make(self, nwb_content): dio_manager = DioManager( dio_files=dio_files.get_files(), dio_metadata=self.metadata['behavioral_events'], - continuous_time_files=self.__get_continuous_time_files() + continuous_time_files=self.__get_continuous_time_files(), + convert_timestamps=self.convert_timestamps ) dio_data = dio_manager.get_dio() logger.info('DIO: Building') @@ -41,4 +43,4 @@ def make(self, nwb_content): dio_injector.inject(behavioral_events, 'behavior') def __get_continuous_time_files(self): - return [single_dataset.get_continuous_time() for single_dataset in self.datasets] \ No newline at end of file + return [single_dataset.get_continuous_time() for single_dataset in self.datasets] diff --git a/rec_to_nwb/processing/builder/originators/old_analog_originator.py b/rec_to_nwb/processing/builder/originators/old_analog_originator.py deleted file mode 100644 index 2b72f2260..000000000 --- a/rec_to_nwb/processing/builder/originators/old_analog_originator.py +++ /dev/null @@ -1,25 +0,0 @@ -from rec_to_nwb.processing.nwb.components.analog.analog_creator import AnalogCreator -from rec_to_nwb.processing.nwb.components.analog.analog_files import AnalogFiles -from rec_to_nwb.processing.nwb.components.analog.analog_injector import AnalogInjector -from rec_to_nwb.processing.nwb.components.analog.fl_analog_manager import FlAnalogManager -from rec_to_nwb.processing.nwb.components.analog.old_fl_analog_manager import OldFlAnalogManager - - -class OldAnalogOriginator: - - def __init__(self, datasets, metadata): - self.datasets = datasets - self.metadata = metadata - - def make(self, nwb_content): - analog_directories = [single_dataset.get_data_path_from_dataset('analog') for single_dataset in self.datasets] - analog_files = AnalogFiles(analog_directories) - old_analog_manager = OldFlAnalogManager( - analog_files=analog_files.get_files(), - ) - fl_analog = old_analog_manager.get_analog() - old_analog_injector = AnalogInjector(nwb_content) - old_analog_injector.inject(AnalogCreator.create(fl_analog, self.metadata['units']['analog']), 'analog') - - def __get_continuous_time_files(self): - return [single_dataset.get_continuous_time() for single_dataset in self.datasets] diff --git a/rec_to_nwb/processing/builder/originators/old_dio_originator.py b/rec_to_nwb/processing/builder/originators/old_dio_originator.py deleted file mode 100644 index 0db370747..000000000 --- a/rec_to_nwb/processing/builder/originators/old_dio_originator.py +++ /dev/null @@ -1,44 +0,0 @@ -import logging.config -import os - -from rec_to_nwb.processing.nwb.components.dio.dio_builder import DioBuilder -from rec_to_nwb.processing.nwb.components.dio.dio_files import DioFiles -from rec_to_nwb.processing.nwb.components.dio.dio_injector import DioInjector -from rec_to_nwb.processing.nwb.components.dio.dio_manager import DioManager -from rec_to_nwb.processing.nwb.components.dio.old_dio_manager import OldDioManager - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class OldDioOriginator: - - def __init__(self, metadata, datasets): - self.metadata = metadata - self.datasets = datasets - - def make(self, nwb_content): - logger.info('DIO: Prepare directories') - dio_directories = [single_dataset.get_data_path_from_dataset('DIO') for single_dataset in self.datasets] - logger.info('DIO: Prepare files') - dio_files = DioFiles(dio_directories, self.metadata['behavioral_events']) - logger.info('DIO: Retrieve data') - old_dio_manager = OldDioManager( - dio_files=dio_files.get_files(), - dio_metadata=self.metadata['behavioral_events'], - ) - dio_data = old_dio_manager.get_dio() - logger.info('DIO: Building') - dio_builder = DioBuilder( - dio_data, - self.metadata['behavioral_events'], - self.metadata['units']['behavioral_events'] - ) - behavioral_events = dio_builder.build() - logger.info('DIO: Injecting into NWB') - dio_injector = DioInjector(nwb_content) - dio_injector.inject(behavioral_events, 'behavior') - - def __get_continuous_time_files(self): - return [single_dataset.get_continuous_time() for single_dataset in self.datasets] \ No newline at end of file diff --git a/rec_to_nwb/processing/builder/originators/old_mda_invalid_time_originator.py b/rec_to_nwb/processing/builder/originators/old_mda_invalid_time_originator.py deleted file mode 100644 index 1b0ab33ab..000000000 --- a/rec_to_nwb/processing/builder/originators/old_mda_invalid_time_originator.py +++ /dev/null @@ -1,25 +0,0 @@ -import os -import logging.config - -from rec_to_nwb.processing.nwb.components.mda.time.invalid.fl_mda_invalid_time_manager import FlMdaInvalidTimeManager -from rec_to_nwb.processing.nwb.components.mda.time.invalid.mda_invalid_time_injector import MdaInvalidTimeInjector - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class MdaInvalidTimeOriginator: - - def __init__(self, header, metadata): - self.fl_mda_invalid_time_manager = FlMdaInvalidTimeManager( - sampling_rate=float(header.configuration.hardware_configuration.sampling_rate), - metadata=metadata - ) - self.mda_invalid_time_injector = MdaInvalidTimeInjector() - - def make(self, nwb_content): - logger.info('MDA invalid times: Building') - mda_invalid_times = self.fl_mda_invalid_time_manager.get_fl_mda_invalid_times(nwb_content) - logger.info('MDA invalid times: Injecting') - self.mda_invalid_time_injector.inject_all(mda_invalid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/old_mda_originator.py b/rec_to_nwb/processing/builder/originators/old_mda_originator.py deleted file mode 100644 index e731a4d4b..000000000 --- a/rec_to_nwb/processing/builder/originators/old_mda_originator.py +++ /dev/null @@ -1,33 +0,0 @@ -import os -import logging.config - -from rec_to_nwb.processing.nwb.components.mda.electrical_series_creator import ElectricalSeriesCreator -from rec_to_nwb.processing.nwb.components.mda.fl_mda_manager import FlMdaManager -from rec_to_nwb.processing.nwb.components.mda.mda_injector import MdaInjector -from rec_to_nwb.processing.nwb.components.mda.old_fl_mda_manager import OldFlMdaManager - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class OldMdaOriginator: - def __init__(self, datasets, header, metadata): - self.datasets = datasets - self.header = header - self.metadata = metadata - - def make(self, nwb_content): - logger.info('MDA: Building') - old_fl_mda_manager = OldFlMdaManager( - nwb_content=nwb_content, - sampling_rate=float(self.header.configuration.hardware_configuration.sampling_rate), - datasets=self.datasets, - conversion=self.metadata['raw_data_to_volts'] - ) - fl_mda = old_fl_mda_manager.get_data() - logger.info('MDA: Injecting') - MdaInjector.inject_mda( - nwb_content=nwb_content, - electrical_series=ElectricalSeriesCreator.create_mda(fl_mda) - ) \ No newline at end of file diff --git a/rec_to_nwb/processing/builder/originators/old_mda_valid_time_originator.py b/rec_to_nwb/processing/builder/originators/old_mda_valid_time_originator.py deleted file mode 100644 index 53a17c89a..000000000 --- a/rec_to_nwb/processing/builder/originators/old_mda_valid_time_originator.py +++ /dev/null @@ -1,25 +0,0 @@ -import os -import logging.config - -from rec_to_nwb.processing.nwb.components.mda.time.valid.fl_mda_valid_time_manager import FlMdaValidTimeManager -from rec_to_nwb.processing.nwb.components.mda.time.valid.mda_valid_time_injector import MdaValidTimeInjector - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class MdaValidTimeOriginator: - - def __init__(self, header, metadata): - self.fl_mda_valid_time_manager = FlMdaValidTimeManager( - sampling_rate=float(header.configuration.hardware_configuration.sampling_rate), - metadata=metadata - ) - self.mda_valid_time_injector = MdaValidTimeInjector() - - def make(self, nwb_content): - logger.info('MDA valid times: Building') - mda_valid_times = self.fl_mda_valid_time_manager.get_fl_mda_valid_times(nwb_content) - logger.info('MDA valid times: Injecting') - self.mda_valid_time_injector.inject_all(mda_valid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/old_pos_invalid_originator.py b/rec_to_nwb/processing/builder/originators/old_pos_invalid_originator.py deleted file mode 100644 index 720c93162..000000000 --- a/rec_to_nwb/processing/builder/originators/old_pos_invalid_originator.py +++ /dev/null @@ -1,23 +0,0 @@ -import os -import logging.config - -from rec_to_nwb.processing.nwb.components.position.time.invalid.fl_pos_invalid_time_manager import \ - FlPosInvalidTimeManager -from rec_to_nwb.processing.nwb.components.position.time.invalid.pos_invalid_time_injector import PosInvalidTimeInjector - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class PosInvalidTimeOriginator: - - def __init__(self, metadata): - self.fl_pos_invalid_time_manager = FlPosInvalidTimeManager(metadata) - self.pos_invalid_time_injector = PosInvalidTimeInjector() - - def make(self, nwb_content): - logger.info('POS invalid times: Building') - pos_invalid_times = self.fl_pos_invalid_time_manager.get_fl_pos_invalid_times(nwb_content) - logger.info('POS invalid times: Injecting') - self.pos_invalid_time_injector.inject_all(pos_invalid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/old_pos_valid_time_originator.py b/rec_to_nwb/processing/builder/originators/old_pos_valid_time_originator.py deleted file mode 100644 index c603a8014..000000000 --- a/rec_to_nwb/processing/builder/originators/old_pos_valid_time_originator.py +++ /dev/null @@ -1,22 +0,0 @@ -import os -import logging.config - -from rec_to_nwb.processing.nwb.components.position.time.valid.fl_pos_valid_time_manager import FlPosValidTimeManager -from rec_to_nwb.processing.nwb.components.position.time.valid.pos_valid_time_injector import PosValidTimeInjector - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class PosValidTimeOriginator: - - def __init__(self, metadata): - self.fl_pos_valid_time_manager = FlPosValidTimeManager(metadata) - self.pos_valid_time_injector = PosValidTimeInjector() - - def make(self, nwb_content): - logger.info('POS valid times: Building') - pos_valid_times = self.fl_pos_valid_time_manager.get_fl_pos_valid_times(nwb_content) - logger.info('POS valid times: Injecting') - self.pos_valid_time_injector.inject_all(pos_valid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/old_position_originator.py b/rec_to_nwb/processing/builder/originators/old_position_originator.py deleted file mode 100644 index f9eed15a6..000000000 --- a/rec_to_nwb/processing/builder/originators/old_position_originator.py +++ /dev/null @@ -1,31 +0,0 @@ -import logging.config -import os - -from pynwb import NWBFile - -from rec_to_nwb.processing.nwb.components.position.old_fl_position_manager import OldFlPositionManager -from rec_to_nwb.processing.nwb.components.position.position_creator import PositionCreator -from rec_to_nwb.processing.nwb.components.processing_module.processing_module_creator import ProcessingModuleCreator -from rec_to_nwb.processing.tools.beartype.beartype import beartype - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class OldPositionOriginator: - - @beartype - def __init__(self, datasets: list, metadata: dict, dataset_names: list, process_timestamps: bool): - self.pm_creator = ProcessingModuleCreator('behavior', 'Contains all behavior-related data') - self.old_fl_position_manager = OldFlPositionManager(datasets, metadata, dataset_names, process_timestamps) - self.position_creator = PositionCreator() - - @beartype - def make(self, nwb_content: NWBFile): - logger.info('Position: Building') - fl_positions = self.old_fl_position_manager.get_fl_positions() - logger.info('Position: Creating') - position = self.position_creator.create_all(fl_positions) - logger.info('Position: Injecting into ProcessingModule') - nwb_content.processing['behavior'].add(position) diff --git a/rec_to_nwb/processing/builder/originators/old_video_files_originator.py b/rec_to_nwb/processing/builder/originators/old_video_files_originator.py deleted file mode 100644 index 79052884c..000000000 --- a/rec_to_nwb/processing/builder/originators/old_video_files_originator.py +++ /dev/null @@ -1,19 +0,0 @@ -from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_manager import FlVideoFilesManager -from rec_to_nwb.processing.nwb.components.video_files.old_fl_video_files_manager import OldFlVideoFilesManager -from rec_to_nwb.processing.nwb.components.video_files.video_files_creator import VideoFilesCreator -from rec_to_nwb.processing.nwb.components.video_files.video_files_injector import VideoFilesInjector - - -class OldVideoFilesOriginator: - - def __init__(self, raw_data_path, video_path, video_files_metadata): - self.video_directory = video_path - self.old_fl_video_files_manager = OldFlVideoFilesManager(raw_data_path, video_path, video_files_metadata) - - def make(self, nwb_content): - fl_video_files = self.old_fl_video_files_manager.get_video_files() - image_series_list = [ - VideoFilesCreator.create(fl_video_file, self.video_directory, nwb_content) - for fl_video_file in fl_video_files - ] - VideoFilesInjector.inject_all(nwb_content, image_series_list) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index c91807842..af6af0b4e 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -16,9 +16,12 @@ class PositionOriginator: @beartype - def __init__(self, datasets: list, metadata: dict, dataset_names: list, process_timestamps: bool): + def __init__(self, datasets: list, metadata: dict, dataset_names: list, + process_timestamps: bool, + convert_timestamps: bool = True): self.pm_creator = ProcessingModuleCreator('behavior', 'Contains all behavior-related data') - self.fl_position_manager = FlPositionManager(datasets, metadata, dataset_names, process_timestamps) + self.fl_position_manager = FlPositionManager(datasets, metadata, dataset_names, process_timestamps, + convert_timestamps=convert_timestamps) self.position_creator = PositionCreator() @beartype diff --git a/rec_to_nwb/processing/builder/originators/video_files_originator.py b/rec_to_nwb/processing/builder/originators/video_files_originator.py index 332cfe489..ce8f341a2 100644 --- a/rec_to_nwb/processing/builder/originators/video_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/video_files_originator.py @@ -5,9 +5,13 @@ class VideoFilesOriginator: - def __init__(self, raw_data_path, video_path, video_files_metadata): + def __init__(self, raw_data_path, video_path, video_files_metadata, + convert_timestamps=True, + return_timestamps=True): self.video_directory = video_path - self.fl_video_files_manager = FlVideoFilesManager(raw_data_path, video_path, video_files_metadata) + self.fl_video_files_manager = FlVideoFilesManager(raw_data_path, video_path, video_files_metadata, + convert_timestamps=convert_timestamps, + return_timestamps=return_timestamps) def make(self, nwb_content): fl_video_files = self.fl_video_files_manager.get_video_files() @@ -16,4 +20,3 @@ def make(self, nwb_content): for fl_video_file in fl_video_files ] VideoFilesInjector.inject_all(nwb_content, image_series_list) - diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 6aa78225f..60f955978 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -11,7 +11,6 @@ from rec_to_nwb.processing.builder.nwb_file_builder import NWBFileBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype from rec_to_nwb.processing.validation.not_empty_validator import NotEmptyValidator -from rec_to_nwb.processing.builder.old_nwb_file_builder import OldNWBFileBuilder from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator path = os.path.dirname(os.path.abspath(__file__)) @@ -32,7 +31,7 @@ _DEFAULT_TRODES_REC_EXPORT_ARGS = () -# for OldNWBFileBuilder +# temporary default value, for old dataset only _DEFAULT_SESSION_START_TIME = datetime.fromtimestamp(0, pytz.utc) # dummy value for now @@ -126,6 +125,8 @@ def __init__( self.parallel_instances = parallel_instances self.trodes_rec_export_args = trodes_rec_export_args + self.is_old_dataset = self.__is_old_dataset() + def __is_rec_config_valid(self): """ Check if XML is valid with XSD file """ @@ -152,6 +153,7 @@ def __is_old_dataset(self): return False if any([('videoTimeStamps.cameraHWFrameCount' in file) for file in all_files]): # has cameraHWFrameCount files instead; old dataset + logger.info('Seems to be an old dataset (no PTP)') return True raise FileNotFoundError('need either cameraHWSync or cameraHWFrameCount files.') @@ -174,13 +176,6 @@ def build_nwb(self, run_preprocessing=True, if run_preprocessing: self.__preprocess_data() - if self.__is_old_dataset(): - self.__build_old_nwb_file(process_mda_valid_time=process_mda_valid_time, - process_mda_invalid_time=process_mda_invalid_time, - process_pos_valid_time=process_pos_valid_time, - process_pos_invalid_time=process_pos_invalid_time) - return - self.__build_nwb_file(process_mda_valid_time=process_mda_valid_time, process_mda_invalid_time=process_mda_invalid_time, process_pos_valid_time=process_pos_valid_time, @@ -196,6 +191,9 @@ def __build_nwb_file(self, process_mda_valid_time=False, process_mda_invalid_tim nwb_builder = self.get_nwb_builder(date) content = nwb_builder.build() nwb_builder.write(content) + if self.is_old_dataset: + logger.info('(old dataset: skipping append_to_nwb)') + continue # self.append_to_nwb( # nwb_builder=nwb_builder, # process_mda_valid_time=process_mda_valid_time, @@ -203,27 +201,14 @@ def __build_nwb_file(self, process_mda_valid_time=False, process_mda_invalid_tim # process_pos_valid_time=process_pos_valid_time, # process_pos_invalid_time=process_pos_invalid_time # ) - - def __build_old_nwb_file(self, process_mda_valid_time=True, process_mda_invalid_time=True, - process_pos_valid_time=True, process_pos_invalid_time=True): - logger.info('Building NWB files ** for old dataset **') - os.makedirs(self.output_path, exist_ok=True) - os.makedirs(self.video_path, exist_ok=True) - for date in self.dates: - logger.info('Date: {}'.format(date)) - nwb_builder = self.get_old_nwb_builder(date) - content = nwb_builder.build() - nwb_builder.write(content) - # self.append_to_nwb( - # nwb_builder=nwb_builder, - # process_mda_valid_time=process_mda_valid_time, - # process_mda_invalid_time=process_mda_invalid_time, - # process_pos_valid_time=process_pos_valid_time, - # process_pos_invalid_time=process_pos_invalid_time - # ) - logger.info('(no timestamps - skipping append_to_nwb)') def get_nwb_builder(self, date): + if self.is_old_dataset: + old_dataset_kwargs = dict(is_old_dataset=True, + session_start_time=_DEFAULT_SESSION_START_TIME) + else: + old_dataset_kwargs = dict() + return NWBFileBuilder( data_path=self.data_path, animal_name=self.animal_name, @@ -235,25 +220,9 @@ def get_nwb_builder(self, date): process_analog=self.extract_analog, preprocessing_path=self.preprocessing_path, video_path=self.video_path, - reconfig_header=self.__get_header_path() - #reconfig_header=self.__is_rec_config_valid() - ) - - def get_old_nwb_builder(self, date): - return OldNWBFileBuilder( - data_path=self.data_path, - animal_name=self.animal_name, - date=date, - session_start_time=_DEFAULT_SESSION_START_TIME, - nwb_metadata=self.nwb_metadata, - output_file=self.output_path + self.animal_name + date + ".nwb", - process_mda=self.extract_mda, - process_dio=self.extract_dio, - process_analog=self.extract_analog, - preprocessing_path=self.preprocessing_path, - video_path=self.video_path, - reconfig_header=self.__get_header_path() + reconfig_header=self.__get_header_path(), #reconfig_header=self.__is_rec_config_valid() + **old_dataset_kwargs ) def __preprocess_data(self): diff --git a/rec_to_nwb/processing/nwb/common/old_timestamps_manager.py b/rec_to_nwb/processing/nwb/common/old_timestamps_manager.py deleted file mode 100644 index c5dbe60cc..000000000 --- a/rec_to_nwb/processing/nwb/common/old_timestamps_manager.py +++ /dev/null @@ -1,51 +0,0 @@ -import abc -import logging.config -import os - -import numpy as np - - -path = os.path.dirname(os.path.abspath(__file__)) - -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class OldTimestampManager(abc.ABC): - def __init__(self, directories): - self.directories = directories - self.number_of_datasets = self._get_number_of_datasets() - self.file_lenghts_in_datasets = self.__calculate_file_lenghts_in_datasets() - - @abc.abstractmethod - def _get_timestamps(self, dataset_id): - pass - - def retrieve_real_timestamps(self, dataset_id): - timestamps_ids = self.read_timestamps_ids(dataset_id) - converted_timestamps = np.ndarray(shape=[len(timestamps_ids), ], dtype="float64") - for i, _ in enumerate(timestamps_ids): - value = float('nan') # just a dummy value for now - converted_timestamps[i] = value - return converted_timestamps - - def read_timestamps_ids(self, dataset_id): - return self._get_timestamps(dataset_id) - - def get_final_data_shape(self): - return sum(self.file_lenghts_in_datasets), - - def get_number_of_datasets(self): - return self.number_of_datasets - - def get_file_lenghts_in_datasets(self): - return self.file_lenghts_in_datasets - - def __calculate_file_lenghts_in_datasets(self): - return [self._get_data_shape(i) for i in range(self.number_of_datasets)] - - def _get_number_of_datasets(self): - return np.shape(self.directories)[0] - - def _get_data_shape(self, dataset_num): - return np.shape(self.read_timestamps_ids(dataset_num))[0] diff --git a/rec_to_nwb/processing/nwb/common/timestamps_manager.py b/rec_to_nwb/processing/nwb/common/timestamps_manager.py index ca8be45db..71b239452 100644 --- a/rec_to_nwb/processing/nwb/common/timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/timestamps_manager.py @@ -27,8 +27,11 @@ def __init__(self, directories, continuous_time_directories): def _get_timestamps(self, dataset_id): pass - def retrieve_real_timestamps(self, dataset_id): + def retrieve_real_timestamps(self, dataset_id, convert_timestamps=True): timestamps_ids = self.read_timestamps_ids(dataset_id) + if not convert_timestamps: + return timestamps_ids + # continuous_time_dict = self.continuous_time_extractor.get_continuous_time_dict_file( # self.continuous_time_directories[dataset_id]) continuous_time = self.continuous_time_extractor.get_continuous_time_array_file( @@ -54,4 +57,4 @@ def _get_number_of_datasets(self): return np.shape(self.directories)[0] def _get_data_shape(self, dataset_num): - return np.shape(self.read_timestamps_ids(dataset_num))[0] \ No newline at end of file + return np.shape(self.read_timestamps_ids(dataset_num))[0] diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py index 56c3b5a06..cd47b57de 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py @@ -14,19 +14,27 @@ class FlAnalogExtractor: @staticmethod - def extract_analog_for_single_dataset(analog_files, continuous_time_file): + def extract_analog_for_single_dataset(analog_files, continuous_time_file, + convert_timestamps=True): single_dataset_data = {} - for analog_file in analog_files: - if not 'timestamps' in analog_file: - analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) + for analog_sensor in analog_files: + analog_data = readTrodesExtractedDataFile(analog_files[analog_sensor]) + if not 'timestamps' in analog_sensor: values = analog_data['data'] single_dataset_data[analog_data['id']] = values else: - continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) - timestamps = readTrodesExtractedDataFile(analog_files[analog_file])['data']['time'] - single_dataset_data[analog_file] = TimestampConverter.convert_timestamps(continuous_time, timestamps) + timestamps = FlAnalogExtractor._extract_analog_timestamps( + analog_data, continuous_time_file, convert_timestamps) + single_dataset_data[analog_sensor] = timestamps return single_dataset_data - - - + @staticmethod + def _extract_analog_timestamps(analog_data, continuous_time_file, convert_timestamps): + timestamps = analog_data['data']['time'] + if convert_timestamps: + continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) + return TimestampConverter.convert_timestamps(continuous_time, timestamps) + else: + # for old dataset, skip real-time conversion and just report Trodes time counts, + # because the adjusted_systime is not ready + return timestamps diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py index fc51c315b..ca6db4914 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py @@ -10,11 +10,17 @@ class FlAnalogManager: @beartype - def __init__(self, analog_files: list, continuous_time_files: list): + def __init__(self, analog_files: list, + continuous_time_files: list, + convert_timestamps: bool = True, + return_timestamps: bool = True, + ): validate_parameters_equal_length(__name__, analog_files, continuous_time_files) self.analog_files = analog_files self.continuous_time_files = continuous_time_files + self.convert_timestamps = convert_timestamps + self.return_timestamps = return_timestamps @beartype def get_analog(self) -> FlAnalog: @@ -26,13 +32,19 @@ def get_analog(self) -> FlAnalog: all_analog_data.append( FlAnalogExtractor.extract_analog_for_single_dataset( self.analog_files[i], - self.continuous_time_files[i] + self.continuous_time_files[i], + convert_timestamps=self.convert_timestamps ) ) merged_epochs = self.__merge_epochs(all_analog_data) description = self.__merge_row_description(all_analog_data) analog_data = self.__merge_analog_sensors(merged_epochs) - return FlAnalogBuilder.build(analog_data, self.__get_timestamps(merged_epochs), description) + + if self.return_timestamps: + timestamps = self.__get_timestamps(merged_epochs) + else: + timestamps = [] + return FlAnalogBuilder.build(analog_data, timestamps, description) @staticmethod def __merge_epochs(data_from_multiple_datasets): @@ -52,7 +64,8 @@ def __merge_row_description(data_from_multiple_datasets): @classmethod def __merge_analog_sensors(cls, merged_epochs): - analog_sensors = [merged_epochs[analog_sensor] for analog_sensor in merged_epochs.keys() if 'timestamp' not in analog_sensor] + analog_sensors = [merged_epochs[analog_sensor] for analog_sensor in merged_epochs.keys() if + 'timestamp' not in analog_sensor] merged_analog_sensors = np.array(analog_sensors, np.int32) transposed_analog_data = np.ndarray.transpose(merged_analog_sensors) return transposed_analog_data diff --git a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_builder.py b/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_builder.py deleted file mode 100644 index 44d97cec1..000000000 --- a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_builder.py +++ /dev/null @@ -1,8 +0,0 @@ -from rec_to_nwb.processing.nwb.components.analog.fl_analog import FlAnalog - - -class OldFlAnalogBuilder: - - @staticmethod - def build(data, timestamps, description): - return FlAnalog(data, timestamps, description) diff --git a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py deleted file mode 100644 index 9b30514f3..000000000 --- a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py +++ /dev/null @@ -1,25 +0,0 @@ -import logging.config -import os - -from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class OldFlAnalogExtractor: - - @staticmethod - def extract_analog_for_single_dataset(analog_files): - single_dataset_data = {} - for analog_file in analog_files: - if not 'timestamps' in analog_file: - analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) - values = analog_data['data'] - single_dataset_data[analog_data['id']] = values - else: - analog_data = readTrodesExtractedDataFile(analog_files[analog_file]) - timestamps = analog_data['data'] - single_dataset_data[analog_file] = timestamps # not converted - return single_dataset_data diff --git a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_manager.py b/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_manager.py deleted file mode 100644 index cfe9b608d..000000000 --- a/rec_to_nwb/processing/nwb/components/analog/old_fl_analog_manager.py +++ /dev/null @@ -1,59 +0,0 @@ -import numpy as np - -from rec_to_nwb.processing.nwb.components.analog.fl_analog import FlAnalog -from rec_to_nwb.processing.nwb.components.analog.old_fl_analog_builder import OldFlAnalogBuilder -from rec_to_nwb.processing.nwb.components.analog.old_fl_analog_extractor import OldFlAnalogExtractor -from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_equal_length - - -class OldFlAnalogManager: - - @beartype - def __init__(self, analog_files: list): - validate_parameters_equal_length(__name__, analog_files) - - self.analog_files = analog_files - - @beartype - def get_analog(self) -> FlAnalog: - """"extract data from analog files""" - - all_analog_data = [] - number_of_datasets = len(self.analog_files) - for i in range(number_of_datasets): - all_analog_data.append( - OldFlAnalogExtractor.extract_analog_for_single_dataset( - self.analog_files[i] - ) - ) - merged_epochs = self.__merge_epochs(all_analog_data) - description = self.__merge_row_description(all_analog_data) - analog_data = self.__merge_analog_sensors(merged_epochs) - - timestamps = [] - return OldFlAnalogBuilder.build(analog_data, timestamps, description) - - @staticmethod - def __merge_epochs(data_from_multiple_datasets): - merged_epochs = data_from_multiple_datasets[0] - for single_dataset_data in data_from_multiple_datasets[1:]: - for row in single_dataset_data.keys(): - merged_epochs[row] = np.hstack((merged_epochs[row], single_dataset_data[row])) - return merged_epochs - - @staticmethod - def __merge_row_description(data_from_multiple_datasets): - row_ids = data_from_multiple_datasets[0].keys() - description = '' - for id in row_ids: - description += id + ' ' - return description - - @classmethod - def __merge_analog_sensors(cls, merged_epochs): - analog_sensors = [merged_epochs[analog_sensor] for analog_sensor in merged_epochs.keys() if - 'timestamp' not in analog_sensor] - merged_analog_sensors = np.array(analog_sensors, np.int32) - transposed_analog_data = np.ndarray.transpose(merged_analog_sensors) - return transposed_analog_data diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py index 5d42c6280..76f3bb7fb 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py @@ -1,6 +1,6 @@ import logging.config import os -import numpy as np +# import numpy as np from rec_to_binaries.read_binaries import readTrodesExtractedDataFile @@ -15,37 +15,43 @@ class DioExtractor: @staticmethod - def extract_dio_for_single_dataset(filtered_files, continuous_time_file): + def extract_dio_for_single_dataset(filtered_files, continuous_time_file, + convert_timestamps=True): single_dataset_data = {} continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) - for dio_file in filtered_files: + for dio_sensor in filtered_files: try: - dio_data = readTrodesExtractedDataFile(filtered_files[dio_file])['data'] - # dio_data is a labeled array with 'time' and 'state' columns. 'time' corresponds to sample count - single_dataset_data[dio_file] = DioExtractor.__get_dio_time_series(dio_data, continuous_time) + dio_data = readTrodesExtractedDataFile(filtered_files[dio_sensor]) + # dio_data['data'] is a labeled array with 'time' and 'state' columns. 'time' corresponds to sample count + single_dataset_data[dio_sensor] = DioExtractor.__get_dio_time_series( + dio_data, continuous_time, convert_timestamps) # keys, values = DioExtractor.__get_dio_time_series(dio_data, continuous_time_dict - # single_dataset_data[dio_file] = ([keys, values]) + # single_dataset_data[dio_sensor] = ([keys, values]) except KeyError as error: - message = "there is no " + str(dio_file) + ", error: " + message = "there is no " + str(dio_sensor) + ", error: " logger.exception(message + str(error)) except TypeError as error: - message = "there is no data for event " + str(dio_file) + ", error: " + message = "there is no data for event " + str(dio_sensor) + ", error: " logger.exception(message + str(error)) return single_dataset_data @staticmethod - def __get_dio_time_series(dio_data, continuous_time): - converted_timestamps = TimestampConverter.convert_timestamps(continuous_time, dio_data['time']) + def __get_dio_time_series(dio_data, continuous_time, convert_timestamps=True): + dio_state = dio_data['data']['state'] + time_counts = dio_data['data']['time'] # time sample counts + if not convert_timestamps: + return [time_counts, dio_state] + converted_timestamps = TimestampConverter.convert_timestamps(continuous_time, time_counts) #values = np.asarray(dio_data['state'], dtype='bool') # values = [bool(recorded_event[1]) for recorded_event in dio_data['data']] # keys = [recorded_event[0] for recorded_event in dio_data['data']] # keys = DioExtractor.__convert_keys(continuoues_time_dict, keys) - return [converted_timestamps, dio_data['state']] + # return keys, values + return [converted_timestamps, dio_state] - - @staticmethod - def __convert_keys(continuous_time_array, keys): - converted_timestamps = TimestampConverter.convert_timestamps(continuous_time_array, keys) - return converted_timestamps + # @staticmethod + # def __convert_keys(continuous_time_array, keys): + # converted_timestamps = TimestampConverter.convert_timestamps(continuous_time_array, keys) + # return converted_timestamps diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_manager.py b/rec_to_nwb/processing/nwb/components/dio/dio_manager.py index 443f25e90..43a16bcf6 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_manager.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_manager.py @@ -5,10 +5,11 @@ class DioManager: - def __init__(self, dio_files, dio_metadata, continuous_time_files): + def __init__(self, dio_files, dio_metadata, continuous_time_files, convert_timestamps=True): self.dio_files = dio_files self.dio_metadata = dio_metadata self.continuous_time_files = continuous_time_files + self.convert_timestamps = convert_timestamps def get_dio(self): """"extract data from DIO files and match them with metadata""" @@ -19,7 +20,8 @@ def get_dio(self): all_dio_data.append( DioExtractor.extract_dio_for_single_dataset( filtered_files=self.dio_files[i], - continuous_time_file=self.continuous_time_files[i] + continuous_time_file=self.continuous_time_files[i], + convert_timestamps=self.convert_timestamps ) ) return self.__merge_dio_data(all_dio_data) diff --git a/rec_to_nwb/processing/nwb/components/dio/old_dio_extractor.py b/rec_to_nwb/processing/nwb/components/dio/old_dio_extractor.py deleted file mode 100644 index 3a4f1f71e..000000000 --- a/rec_to_nwb/processing/nwb/components/dio/old_dio_extractor.py +++ /dev/null @@ -1,39 +0,0 @@ -import logging.config -import os - -from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - -from rec_to_nwb.processing.time.continuous_time_extractor import ContinuousTimeExtractor -from rec_to_nwb.processing.time.timestamp_converter import TimestampConverter - -path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class OldDioExtractor: - - @staticmethod - def extract_dio_for_single_dataset(filtered_files): - single_dataset_data = {} - for dio_file in filtered_files: - try: - dio_data = readTrodesExtractedDataFile(filtered_files[dio_file]) - keys, values = OldDioExtractor.__get_dio_time_series(dio_data) - single_dataset_data[dio_file] = ([keys, values]) - - except KeyError as error: - message = "there is no " + str(dio_file) + ", error: " - logger.exception(message + str(error)) - except TypeError as error: - message = "there is no data for event " + str(dio_file) + ", error: " - logger.exception(message + str(error)) - return single_dataset_data - - @staticmethod - def __get_dio_time_series(dio_data): - - values = [bool(recorded_event[1]) for recorded_event in dio_data['data']] - keys = [recorded_event[0] for recorded_event in dio_data['data']] - return keys, values - diff --git a/rec_to_nwb/processing/nwb/components/dio/old_dio_manager.py b/rec_to_nwb/processing/nwb/components/dio/old_dio_manager.py deleted file mode 100644 index 5ae4cc123..000000000 --- a/rec_to_nwb/processing/nwb/components/dio/old_dio_manager.py +++ /dev/null @@ -1,33 +0,0 @@ -import numpy as np - -from rec_to_nwb.processing.nwb.components.dio.old_dio_extractor import OldDioExtractor - - -class OldDioManager: - - def __init__(self, dio_files, dio_metadata): - self.dio_files = dio_files - self.dio_metadata = dio_metadata - - def get_dio(self): - """"extract data from DIO files and match them with metadata""" - - all_dio_data = [] - number_of_datasets = len(self.dio_files) - for i in range(number_of_datasets): - all_dio_data.append( - OldDioExtractor.extract_dio_for_single_dataset( - filtered_files=self.dio_files[i] - ) - ) - return self.__merge_dio_data(all_dio_data) - - @classmethod - def __merge_dio_data(cls, data_from_multiple_datasets): - merged_data = data_from_multiple_datasets[0] - for single_dataset_data in data_from_multiple_datasets[1:]: - for event, timeseries in single_dataset_data.items(): - merged_data[event][0] = np.hstack((merged_data[event][0], timeseries[0])) - merged_data[event][1].extend(timeseries[1]) - - return merged_data diff --git a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py deleted file mode 100644 index c158c2613..000000000 --- a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py +++ /dev/null @@ -1,61 +0,0 @@ -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import MultiThreadDataIterator -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_timestamp_iterator import MultiThreadTimestampIterator -from rec_to_nwb.processing.nwb.components.mda.mda_content import MdaContent -from rec_to_nwb.processing.nwb.components.mda.mda_data_manager import MdaDataManager -from rec_to_nwb.processing.nwb.components.mda.mda_timestamp_manager import MdaTimestampDataManager - - -class OldFlMdaExtractor: - - def __init__(self, datasets, conversion): - self.datasets = datasets - # the conversion is to volts, so we multiple by 1e6 to change to uV - self.raw_to_uv = float(conversion) * 1e6 - - def get_data(self): - mda_data, timestamps, continuous_time = self.__extract_data() - mda_timestamp_data_manager = MdaTimestampDataManager( - directories=timestamps, - continuous_time_directories=continuous_time - ) - mda_data_manager = MdaDataManager(mda_data, self.raw_to_uv) - data_iterator = MultiThreadDataIterator(mda_data_manager) - timestamp_iterator = MultiThreadTimestampIterator(mda_timestamp_data_manager) - - return MdaContent(data_iterator, timestamp_iterator) - - def __extract_data(self): - mda_data = [] - timestamps = [] - continuous_time = [] - - for dataset in self.datasets: - data_from_single_dataset = self.__extract_data_for_single_dataset(dataset) - mda_data.append(data_from_single_dataset[0]) - timestamps.append(data_from_single_dataset[1]) - continuous_time.append(data_from_single_dataset[2]) - - return mda_data, timestamps, continuous_time - - def __extract_data_for_single_dataset(self, dataset): - data_from_current_dataset = self.__get_data_from_current_dataset(dataset) - - if not self.__data_exist(data_from_current_dataset, dataset): - raise MissingDataException("Incomplete data in dataset " + str(dataset.name) + ", missing mda files") - - return data_from_current_dataset, [dataset.get_mda_timestamps()], dataset.get_continuous_time() - - @staticmethod - def __get_data_from_current_dataset(dataset): - return [dataset.get_data_path_from_dataset('mda') + mda_file for mda_file in - dataset.get_all_data_from_dataset('mda') if - (mda_file.endswith('.mda') and not mda_file.endswith('timestamps.mda'))] - - @staticmethod - def __data_exist(data_from_current_dataset, dataset): - if (data_from_current_dataset is None - or dataset.get_mda_timestamps() is None - or dataset.get_continuous_time() is None): - return False - return True diff --git a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py b/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py deleted file mode 100644 index 136c3bd81..000000000 --- a/rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py +++ /dev/null @@ -1,16 +0,0 @@ -from rec_to_nwb.processing.nwb.components.mda.fl_mda_builder import FlMdaBuilder -from rec_to_nwb.processing.nwb.components.mda.old_fl_mda_extractor import OldFlMdaExtractor -from rec_to_nwb.processing.nwb.components.mda.table_region_builder import TableRegionBuilder - - -class OldFlMdaManager: - def __init__(self, nwb_content, sampling_rate, datasets, conversion): - self.__table_region_builder = TableRegionBuilder(nwb_content) - self.__fl_mda_extractor = OldFlMdaExtractor(datasets, conversion) - # we converted the data to uV in the extractor, so the conversion to V is always 1e-6 - self.__fl_mda_builder = FlMdaBuilder(sampling_rate, 0.000001) - - def get_data(self): - electrode_table_region = self.__table_region_builder.build() - data = self.__fl_mda_extractor.get_data() - return self.__fl_mda_builder.build(electrode_table_region, data) diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py index 048996714..021a76278 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py @@ -9,9 +9,10 @@ class FlPositionExtractor: @beartype - def __init__(self, datasets: list): + def __init__(self, datasets: list, convert_timestamps: bool = True): self.datasets = datasets self.all_pos, self.continuous_time = self.__extract_data() + self.convert_timestamps = convert_timestamps def __extract_data(self): all_pos = [] @@ -54,7 +55,8 @@ def get_timestamps(self): pos_timestamp_managers = [ PosTimestampManager( directories=[single_pos], - continuous_time_directories=[continuous_time] + continuous_time_directories=[continuous_time], + convert_timestamps = self.convert_timestamps ) for single_pos, continuous_time in zip(self.all_pos, self.continuous_time) ] diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py index bbfc58ae4..414406603 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py @@ -10,13 +10,16 @@ class FlPositionManager: @beartype - def __init__(self, datasets: list, metadata: dict, dataset_names: list, process_timestamps: bool): + def __init__(self, datasets: list, metadata: dict, dataset_names: list, + process_timestamps: bool, + convert_timestamps: bool = True): self.datasets = datasets self.metadata = metadata self.dataset_names = dataset_names self.process_timestamps = process_timestamps - self.fl_position_extractor = FlPositionExtractor(datasets) + self.fl_position_extractor = FlPositionExtractor(datasets, + convert_timestamps=convert_timestamps) self.fl_position_builder = FlPositionBuilder() @beartype diff --git a/rec_to_nwb/processing/nwb/components/position/old_fl_position_extractor.py b/rec_to_nwb/processing/nwb/components/position/old_fl_position_extractor.py deleted file mode 100644 index 6ebe82c79..000000000 --- a/rec_to_nwb/processing/nwb/components/position/old_fl_position_extractor.py +++ /dev/null @@ -1,55 +0,0 @@ -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import MultiThreadDataIterator -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_timestamp_iterator import MultiThreadTimestampIterator -from rec_to_nwb.processing.nwb.components.position.old_pos_timestamp_manager import OldPosTimestampManager -from rec_to_nwb.processing.nwb.components.position.pos_data_manager import PosDataManager -from rec_to_nwb.processing.tools.beartype.beartype import beartype - - -class OldFlPositionExtractor: - - @beartype - def __init__(self, datasets: list): - self.datasets = datasets - self.all_pos = self.__extract_data() - - def __extract_data(self): - all_pos = [] - for dataset in self.datasets: - data_from_current_dataset = [ - dataset.get_data_path_from_dataset('pos') + pos_file for pos_file in - dataset.get_all_data_from_dataset('pos') if - (pos_file.endswith('.pos_online.dat'))] - all_pos.append(data_from_current_dataset) - return all_pos - - def get_positions(self): - pos_datas = [ - PosDataManager(directories=[single_pos]) - for single_pos in self.all_pos - ] - return [ - MultiThreadDataIterator(pos_data) - for pos_data in pos_datas - ] - - def get_columns_labels(self): - pos_datas = [ - PosDataManager(directories=[single_pos]) - for single_pos in self.all_pos - ] - return [ - pos_data.get_column_labels_as_string() - for pos_data in pos_datas - ] - - def get_timestamps(self): - old_pos_timestamp_managers = [ - OldPosTimestampManager( - directories=[single_pos], - ) - for single_pos in self.all_pos - ] - return [ - MultiThreadTimestampIterator(old_pos_timestamp_manager) - for old_pos_timestamp_manager in old_pos_timestamp_managers - ] diff --git a/rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py deleted file mode 100644 index cd5151c4d..000000000 --- a/rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py +++ /dev/null @@ -1,95 +0,0 @@ -import re - -from rec_to_nwb.processing.exceptions.invalid_metadata_exception import InvalidMetadataException -from rec_to_nwb.processing.nwb.components.position.fl_position_builder import FlPositionBuilder -from rec_to_nwb.processing.nwb.components.position.old_fl_position_extractor import OldFlPositionExtractor -from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_equal_length - - -class OldFlPositionManager: - - @beartype - def __init__(self, datasets: list, metadata: dict, dataset_names: list, process_timestamps: bool): - self.datasets = datasets - self.metadata = metadata - self.dataset_names = dataset_names - self.process_timestamps = process_timestamps - - self.old_fl_position_extractor = OldFlPositionExtractor(datasets) - self.fl_position_builder = FlPositionBuilder() - - @beartype - def get_fl_positions(self) -> list: - cameras_ids = self.__get_cameras_ids(self.dataset_names, self.metadata) - meters_per_pixels = self.__get_meters_per_pixels(cameras_ids, self.metadata) - - position_datas = self.old_fl_position_extractor.get_positions() - columns_labels = self.old_fl_position_extractor.get_columns_labels() - if self.process_timestamps: - timestamps = self.old_fl_position_extractor.get_timestamps() - - validate_parameters_equal_length(__name__, position_datas, columns_labels, timestamps) - - return [ - self.fl_position_builder.build( - position_data=position_data, - column_labels=column_labels, - timestamps=timestamp, - conversion=float(meters_per_pixel) - ) - for position_data, column_labels, timestamp, meters_per_pixel in - zip(position_datas, columns_labels, timestamps, meters_per_pixels) - ] - else: - validate_parameters_equal_length(__name__, position_datas, columns_labels) - - return [ - self.fl_position_builder.build( - position_data=position_data, - column_labels=column_labels, - timestamps=[], - conversion=float(meters_per_pixel) - ) - for position_data, column_labels, meters_per_pixel in - zip(position_datas, columns_labels, meters_per_pixels) - ] - - - - - - @staticmethod - def __get_cameras_ids(dataset_names, metadata): - camera_ids = [] - for dataset_name in dataset_names: - # extract the first the first element of the dataset_name as the epoch number - dataset_elements = str(dataset_name).split('_') - epoch_num = str(int(dataset_elements[0])) - try: - camera_ids.append( - next( - task['camera_id'] - for task in metadata['tasks'] - if epoch_num in task['task_epochs'] - )[0] - ) - except: - raise InvalidMetadataException('Invalid camera metadata for datasets') - return camera_ids - - @staticmethod - def __get_meters_per_pixels(cameras_ids, metadata): - meters_per_pixels = [] - for camera_id in cameras_ids: - try: - meters_per_pixels.append( - next( - float(camera['meters_per_pixel']) - for camera in metadata['cameras'] - if camera_id == camera['id'] - ) - ) - except: - raise InvalidMetadataException('Invalid camera metadata') - return meters_per_pixels diff --git a/rec_to_nwb/processing/nwb/components/position/old_pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/old_pos_timestamp_manager.py deleted file mode 100644 index 8ece48536..000000000 --- a/rec_to_nwb/processing/nwb/components/position/old_pos_timestamp_manager.py +++ /dev/null @@ -1,23 +0,0 @@ -import logging.config -import os - -import pandas as pd -from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - -from rec_to_nwb.processing.nwb.common.old_timestamps_manager import OldTimestampManager - -path = os.path.dirname(os.path.abspath(__file__)) - -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) -logger = logging.getLogger(__name__) - - -class OldPosTimestampManager(OldTimestampManager): - def __init__(self, directories): - OldTimestampManager.__init__(self, directories) - - # override - def _get_timestamps(self, dataset_id): - pos_online = readTrodesExtractedDataFile(self.directories[dataset_id][0]) - position = pd.DataFrame(pos_online['data']) - return position.time.to_numpy(dtype='int64') diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 03bbe5234..17b979588 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -13,11 +13,17 @@ class PosTimestampManager(TimestampManager): - def __init__(self, directories, continuous_time_directories): + def __init__(self, directories, continuous_time_directories, + convert_timestamps=True): TimestampManager.__init__(self, directories, continuous_time_directories) + self.convert_timestamps = convert_timestamps # override def _get_timestamps(self, dataset_id): pos_online = readTrodesExtractedDataFile(self.directories[dataset_id][0]) position = pd.DataFrame(pos_online['data']) return position.time.to_numpy(dtype='int64') + + def retrieve_real_timestamps(self, dataset_id): + return TimestampManager.retrieve_real_timestamps(self, dataset_id, + convert_timestamps=self.convert_timestamps) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index c92eb2677..5c2af4559 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -1,34 +1,71 @@ +import logging.config +import os import numpy as np from rec_to_binaries.read_binaries import readTrodesExtractedDataFile from rec_to_nwb.processing.tools.beartype.beartype import beartype +path = os.path.dirname(os.path.abspath(__file__)) +logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) +logger = logging.getLogger(__name__) + class FlVideoFilesExtractor: @beartype - def __init__(self, raw_data_path: str, video_files_metadata: list): + def __init__(self, raw_data_path: str, video_files_metadata: list, + convert_timestamps: bool = True, + return_timestamps: bool = True): self.raw_data_path = raw_data_path self.video_files_metadata = video_files_metadata + self.convert_timestamps = convert_timestamps + self.return_timestamps = return_timestamps def extract_video_files(self): video_files = self.video_files_metadata extracted_video_files = [] for video_file in video_files: - timestamps = readTrodesExtractedDataFile( - self.raw_data_path + "/" - + video_file["name"][:-4] - + "videoTimeStamps.cameraHWSync")['data']['HWTimestamp'] - # the timestamps array from the cam + if self.return_timestamps: + timestamps = self._get_timestamps(video_file) + else: + timestamps = np.array([]) new_fl_video_file = { "name": video_file["name"], - "timestamps": self.convert_timestamps(timestamps), + "timestamps": timestamps, "device": video_file["camera_id"] } extracted_video_files.append(new_fl_video_file) return extracted_video_files - def convert_timestamps(self, timestamps): + def _get_timestamps(self, video_file): + try: + video_timestamps = self._read_video_timestamps_hw_sync(video_file) + logger.info('Loaded cameraHWSync timestamps for {}'.format(video_file['name'][:-4])) + is_old_dataset = False + except FileNotFoundError: + # old dataset + video_timestamps = self._read_video_timestamps_hw_framecount(video_file) + logger.info('Loaded cameraHWFrameCount for {} (old dataset)'.format(video_file['name'][:-4])) + is_old_dataset = True + # the timestamps array from the cam + if is_old_dataset or (not self.convert_timestamps): + # for now, FORCE turn off convert_timestamps for old dataset + return video_timestamps + return self._convert_timestamps(video_timestamps) + + def _read_video_timestamps_hw_sync(self, video_file): + return readTrodesExtractedDataFile( + self.raw_data_path + "/" + + video_file["name"][:-4] + + "videoTimeStamps.cameraHWSync")['data']['HWTimestamp'] + + def _read_video_timestamps_hw_framecount(self, video_file): + return readTrodesExtractedDataFile( + self.raw_data_path + "/" + + video_file["name"][:-4] + + "videoTimeStamps.cameraHWFrameCount")['data']['frameCount'] + + def _convert_timestamps(self, timestamps): #converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') converted_timestamps = timestamps / 1E9 # for i, record in enumerate(timestamps): diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index e25b195c9..7b455656d 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -7,10 +7,14 @@ class FlVideoFilesManager: @beartype - def __init__(self, raw_data_path: str, video_path: str, video_files_metadata: list): + def __init__(self, raw_data_path: str, video_path: str, video_files_metadata: list, + convert_timestamps: bool = True, + return_timestamps: bool = True): self.video_files_copy_maker = VideoFilesCopyMaker([video_files['name'] for video_files in video_files_metadata]) self.video_files_copy_maker.copy(raw_data_path, video_path) - self.fl_video_files_extractor = FlVideoFilesExtractor(raw_data_path, video_files_metadata) + self.fl_video_files_extractor = FlVideoFilesExtractor(raw_data_path, video_files_metadata, + convert_timestamps=convert_timestamps, + return_timestamps=return_timestamps) self.fl_video_files_builder = FlVideoFilesBuilder() def get_video_files(self): diff --git a/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py deleted file mode 100644 index 751cfd8db..000000000 --- a/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py +++ /dev/null @@ -1,24 +0,0 @@ -import numpy as np -from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - -from rec_to_nwb.processing.tools.beartype.beartype import beartype - - -class OldFlVideoFilesExtractor: - - @beartype - def __init__(self, raw_data_path: str, video_files_metadata: list): - self.raw_data_path = raw_data_path - self.video_files_metadata = video_files_metadata - - def extract_video_files(self): - video_files = self.video_files_metadata - extracted_video_files = [] - for video_file in video_files: - new_fl_video_file = { - "name": video_file["name"], - "timestamps": np.array([]), - "device": video_file["camera_id"] - } - extracted_video_files.append(new_fl_video_file) - return extracted_video_files diff --git a/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_manager.py deleted file mode 100644 index 08b490968..000000000 --- a/rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_manager.py +++ /dev/null @@ -1,26 +0,0 @@ -from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_builder import FlVideoFilesBuilder -from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor import FlVideoFilesExtractor -from rec_to_nwb.processing.nwb.components.video_files.old_fl_video_files_extractor import OldFlVideoFilesExtractor -from rec_to_nwb.processing.nwb.components.video_files.video_files_copy_maker import VideoFilesCopyMaker -from rec_to_nwb.processing.tools.beartype.beartype import beartype - - -class OldFlVideoFilesManager: - - @beartype - def __init__(self, raw_data_path: str, video_path: str, video_files_metadata: list): - self.video_files_copy_maker = VideoFilesCopyMaker([video_files['name'] for video_files in video_files_metadata]) - self.video_files_copy_maker.copy(raw_data_path, video_path) - self.old_fl_video_files_extractor = OldFlVideoFilesExtractor(raw_data_path, video_files_metadata) - self.fl_video_files_builder = FlVideoFilesBuilder() - - def get_video_files(self): - extracted_video_files = self.old_fl_video_files_extractor.extract_video_files() - return [ - self.fl_video_files_builder.build( - video_file["name"], - video_file["timestamps"], - video_file["device"] - ) - for video_file in extracted_video_files - ] diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index 3ed336f13..db6359ff8 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -13,20 +13,27 @@ class TimestampConverter: @staticmethod def convert_timestamps(continuous_times, timestamps): - converted_timestamps = np.ndarray(shape=[len(timestamps), ], dtype="float64") - converted_timestamps = np.nan + ''' + continuous_times: (2, T) numpy array, where T is the number of timepoints + row 0: trodestime, row 1: adjusted_systime + timestamps: trodes timestamps relative to camera’s timing (from pos) + ''' # add values at the end of continuous_times to make sure all values are within the range max_vals = np.asarray([[np.iinfo(np.int64).max],[np.iinfo(np.int64).max]], dtype=np.int64) continuous_times = np.hstack((continuous_times, max_vals)) - # look up the timestamps in the first colum of continuous_times + + # look up the timestamps in the first row of continuous_times timestamp_ind = np.searchsorted(continuous_times[0,:], timestamps) converted_timestamps = continuous_times[1,timestamp_ind] / 1E9 + # get rid of any that are not exact not_found = timestamps != continuous_times[0,timestamp_ind] #print(f'in Timestamp Converter: {sum(not_found)} timestamps not found in continuous time file') converted_timestamps[not_found] = np.nan return converted_timestamps + #old code + # converted_timestamps = np.ndarray(shape=[len(timestamps), ], dtype="float64") # for i, timestamp in enumerate(timestamps): # key = str(timestamp) # value = continuous_time_dict.get(key, float('nan')) / 1E9 From c91ff5ff272c804e0172ed9e4d51c97305f6b806 Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Wed, 10 Mar 2021 20:37:33 -0800 Subject: [PATCH 041/205] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 918ab2003..c67cfad0a 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,10 @@ Currently we suggest following the instructions to install https://github.com/Lo jupyter notebook nwb_generation.ipynb ``` 4. Metadata.yml description: + +Important note: right now the code assumes that the electrode groups listed below (each of which corresponds to an NTrode in the file) are in ascending order by NTrode number. If this is not the case the data could be scrambled. Thus, the first listed electrode group should correspond to, for example, NTrode 1 while the second would correspond to NTrode 2, etc. + + ``` # general information about the experiment experimenter name: Alison Comrie From 6e65f8bf0a4faa4d986483ec2442ba19d70c92a9 Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Wed, 10 Mar 2021 20:40:28 -0800 Subject: [PATCH 042/205] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c67cfad0a..ac5d17663 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Currently we suggest following the instructions to install https://github.com/Lo ``` 4. Metadata.yml description: -Important note: right now the code assumes that the electrode groups listed below (each of which corresponds to an NTrode in the file) are in ascending order by NTrode number. If this is not the case the data could be scrambled. Thus, the first listed electrode group should correspond to, for example, NTrode 1 while the second would correspond to NTrode 2, etc. +Important note: right now the code assumes that the electrode groups listed below (each of which corresponds to one or more NTrode in the file) are in ascending order by NTrode number. If this is not the case the data could be scrambled. Thus, the first listed electrode group should correspond to, for example, NTrode 1 (or perhaps NTrodes 1-4) while the second would correspond to NTrode 2 (or 5-8), etc. ``` From 8f5db13919296d887d4b546e08704e6f59c76e7a Mon Sep 17 00:00:00 2001 From: Loren Date: Sun, 23 May 2021 18:07:22 -0700 Subject: [PATCH 043/205] updates to manage RAM usage for large MDA files --- .vscode/settings.json | 3 +- rec_to_nwb.egg-info/SOURCES.txt | 29 + rec_to_nwb.log | 69350 ++++++++++++++++ .../processing/builder/raw_to_nwb_builder.py | 2 +- .../processing/nwb/common/data_manager.py | 10 +- .../nwb/components/iterator/data_iterator.py | 3 +- .../iterator/multi_thread_data_iterator.py | 50 + .../nwb/components/mda/fl_mda_extractor.py | 46 +- .../nwb/components/mda/mda_data_manager.py | 15 +- rec_to_nwb/test.yml | 59 + 10 files changed, 69541 insertions(+), 26 deletions(-) create mode 100644 rec_to_nwb/test.yml diff --git a/.vscode/settings.json b/.vscode/settings.json index 9f7664377..b3a87aa0b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,4 @@ { - "python.pythonPath": "/Users/loren/opt/anaconda3/envs/rec_to_nwb/bin/python" + "python.pythonPath": "/Users/loren/opt/anaconda3/envs/rec_to_nwb/bin/python", + "python.linting.pylintEnabled": true } \ No newline at end of file diff --git a/rec_to_nwb.egg-info/SOURCES.txt b/rec_to_nwb.egg-info/SOURCES.txt index 90a219ad2..3a9684859 100644 --- a/rec_to_nwb.egg-info/SOURCES.txt +++ b/rec_to_nwb.egg-info/SOURCES.txt @@ -9,11 +9,15 @@ rec_to_nwb.egg-info/dependency_links.txt rec_to_nwb.egg-info/top_level.txt rec_to_nwb/data/default_header.xml rec_to_nwb/data/fl_lab_header.xsd +rec_to_nwb/data/header_schema.xsd rec_to_nwb/data/reconfig_header.xsd rec_to_nwb/processing/__init__.py rec_to_nwb/processing/builder/__init__.py rec_to_nwb/processing/builder/nwb_file_builder.py +rec_to_nwb/processing/builder/old_nwb_file_builder.py +rec_to_nwb/processing/builder/old_raw_to_nwb_builder.py rec_to_nwb/processing/builder/raw_to_nwb_builder.py +rec_to_nwb/processing/builder/old_originators/__init__.py rec_to_nwb/processing/builder/originators/__init__.py rec_to_nwb/processing/builder/originators/analog_originator.py rec_to_nwb/processing/builder/originators/associated_files_originator.py @@ -29,6 +33,15 @@ rec_to_nwb/processing/builder/originators/header_device_originator.py rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py rec_to_nwb/processing/builder/originators/mda_originator.py rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py +rec_to_nwb/processing/builder/originators/old_analog_originator.py +rec_to_nwb/processing/builder/originators/old_dio_originator.py +rec_to_nwb/processing/builder/originators/old_mda_invalid_time_originator.py +rec_to_nwb/processing/builder/originators/old_mda_originator.py +rec_to_nwb/processing/builder/originators/old_mda_valid_time_originator.py +rec_to_nwb/processing/builder/originators/old_pos_invalid_originator.py +rec_to_nwb/processing/builder/originators/old_pos_valid_time_originator.py +rec_to_nwb/processing/builder/originators/old_position_originator.py +rec_to_nwb/processing/builder/originators/old_video_files_originator.py rec_to_nwb/processing/builder/originators/pos_invalid_originator.py rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py rec_to_nwb/processing/builder/originators/position_originator.py @@ -83,6 +96,7 @@ rec_to_nwb/processing/metadata/metadata_manager.py rec_to_nwb/processing/nwb/__init__.py rec_to_nwb/processing/nwb/common/__init__.py rec_to_nwb/processing/nwb/common/data_manager.py +rec_to_nwb/processing/nwb/common/old_timestamps_manager.py rec_to_nwb/processing/nwb/common/session_time_extractor.py rec_to_nwb/processing/nwb/common/timestamps_manager.py rec_to_nwb/processing/nwb/components/__init__.py @@ -94,6 +108,9 @@ rec_to_nwb/processing/nwb/components/analog/fl_analog.py rec_to_nwb/processing/nwb/components/analog/fl_analog_builder.py rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py +rec_to_nwb/processing/nwb/components/analog/old_fl_analog_builder.py +rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py +rec_to_nwb/processing/nwb/components/analog/old_fl_analog_manager.py rec_to_nwb/processing/nwb/components/associated_files/__init__.py rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py rec_to_nwb/processing/nwb/components/associated_files/associated_files_injector.py @@ -138,6 +155,8 @@ rec_to_nwb/processing/nwb/components/dio/dio_extractor.py rec_to_nwb/processing/nwb/components/dio/dio_files.py rec_to_nwb/processing/nwb/components/dio/dio_injector.py rec_to_nwb/processing/nwb/components/dio/dio_manager.py +rec_to_nwb/processing/nwb/components/dio/old_dio_extractor.py +rec_to_nwb/processing/nwb/components/dio/old_dio_manager.py rec_to_nwb/processing/nwb/components/electrode_group/__init__.py rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py @@ -182,6 +201,8 @@ rec_to_nwb/processing/nwb/components/mda/mda_content.py rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py rec_to_nwb/processing/nwb/components/mda/mda_injector.py rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py +rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py +rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py rec_to_nwb/processing/nwb/components/mda/table_region_builder.py rec_to_nwb/processing/nwb/components/mda/time/__init__.py rec_to_nwb/processing/nwb/components/mda/time/invalid/__init__.py @@ -199,6 +220,9 @@ rec_to_nwb/processing/nwb/components/position/fl_position.py rec_to_nwb/processing/nwb/components/position/fl_position_builder.py rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +rec_to_nwb/processing/nwb/components/position/old_fl_position_extractor.py +rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py +rec_to_nwb/processing/nwb/components/position/old_pos_timestamp_manager.py rec_to_nwb/processing/nwb/components/position/pos_data_manager.py rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py rec_to_nwb/processing/nwb/components/position/position_creator.py @@ -230,6 +254,8 @@ rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py +rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_manager.py rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py @@ -258,6 +284,7 @@ rec_to_nwb/processing/tools/beartype/beartype.py rec_to_nwb/processing/validation/__init__.py rec_to_nwb/processing/validation/associated_files_validation.py rec_to_nwb/processing/validation/associated_files_validation_summary.py +rec_to_nwb/processing/validation/associated_files_validator.py rec_to_nwb/processing/validation/metadata_section_validator.py rec_to_nwb/processing/validation/metadata_validation_summary.py rec_to_nwb/processing/validation/metadata_validator.py @@ -284,6 +311,7 @@ rec_to_nwb/scripts/test_package/__init__.py rec_to_nwb/scripts/test_package/test_package_after_release.py rec_to_nwb/test/__init__.py rec_to_nwb/test/e2etests/__init__.py +rec_to_nwb/test/e2etests/test_OldNwbFullGeneration.py rec_to_nwb/test/e2etests/test_headerComparator.py rec_to_nwb/test/e2etests/test_headersExtractor.py rec_to_nwb/test/e2etests/test_mda.py @@ -309,6 +337,7 @@ rec_to_nwb/test/processing/test_sessionTimeExtractor.py rec_to_nwb/test/processing/analog/__init__.py rec_to_nwb/test/processing/analog/test_analogCreator.py rec_to_nwb/test/processing/analog/test_flAnalogManager.py +rec_to_nwb/test/processing/analog/test_oldFlAnalogManager.py rec_to_nwb/test/processing/associated_files/__init__.py rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py rec_to_nwb/test/processing/associated_files/test_flAssociatedFilesManager.py diff --git a/rec_to_nwb.log b/rec_to_nwb.log index f6d8dc6c4..d109a0afc 100644 --- a/rec_to_nwb.log +++ b/rec_to_nwb.log @@ -585685,3 +585685,69353 @@ Fields: 2021-01-29 10:14:16,167 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building 2021-01-29 10:18:46,146 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting 2021-01-29 10:18:46,230 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb +2021-02-14 13:18:09,625 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-02-14 13:18:09,877 rec_to_binaries.core: INFO Extracting analog data... +2021-02-14 13:18:09,882 rec_to_binaries.core: INFO Extracting DIO... +2021-02-14 13:18:09,883 rec_to_binaries.core: INFO Extracting mda... +2021-02-14 13:18:09,883 rec_to_binaries.core: INFO Extracting time... +2021-02-14 13:18:31,354 rec_to_binaries.core: INFO Making position directory... +2021-02-14 13:18:31,381 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-02-14 13:18:31,382 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-02-14 13:18:31,382 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-02-14 13:18:31,382 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 14:14:55,593 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 14:14:55,683 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 14:14:55,685 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 14:14:55,685 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 14:14:55,686 rec_to_binaries.core: INFO Extracting time... +2021-05-23 14:15:09,520 rec_to_binaries.core: INFO Making position directory... +2021-05-23 14:15:09,540 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 14:15:09,541 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 14:15:09,541 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 14:15:09,541 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 14:16:56,587 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 14:16:56,667 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 14:16:56,668 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 14:16:56,668 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 14:16:56,669 rec_to_binaries.core: INFO Extracting time... +2021-05-23 14:17:09,042 rec_to_binaries.core: INFO Making position directory... +2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 14:18:00,761 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 14:18:00,833 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 14:18:00,835 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 14:18:00,835 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 14:18:00,837 rec_to_binaries.core: INFO Extracting time... +2021-05-23 14:18:11,525 rec_to_binaries.core: INFO Making position directory... +2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 14:19:45,584 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 14:19:45,663 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 14:19:45,665 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 14:19:45,665 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 14:19:45,665 rec_to_binaries.core: INFO Extracting time... +2021-05-23 14:19:57,859 rec_to_binaries.core: INFO Making position directory... +2021-05-23 14:19:57,879 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 14:19:57,880 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 14:19:57,880 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 14:19:57,880 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 14:19:58,039 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-05-23 14:32:01,963 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 14:32:02,045 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 14:32:02,047 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 14:32:02,047 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 14:32:02,047 rec_to_binaries.core: INFO Extracting time... +2021-05-23 14:32:14,124 rec_to_binaries.core: INFO Making position directory... +2021-05-23 14:32:14,158 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 14:32:14,158 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 14:32:14,159 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 14:32:14,159 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 14:32:14,325 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-05-23 14:32:14,758 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-23 14:32:14,761 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-23 14:32:14,761 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-23 14:32:14,761 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-23 14:32:14,763 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-23 14:32:14,764 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-23 14:32:14,764 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140679691564624 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-05-23 14:32:14,765 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-23 16:43:16,429 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 16:43:16,519 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 16:43:16,521 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 16:43:16,521 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 16:43:16,521 rec_to_binaries.core: INFO Extracting time... +2021-05-23 16:43:28,972 rec_to_binaries.core: INFO Making position directory... +2021-05-23 16:43:28,996 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 16:43:28,996 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 16:43:28,996 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 16:43:28,997 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 16:43:29,156 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-05-23 16:43:29,579 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-23 16:43:29,583 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-23 16:43:29,583 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-23 16:43:29,584 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140383203449040 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-05-23 16:43:29,584 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-23 17:04:48,902 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 17:04:48,987 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 17:04:48,988 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 17:04:48,989 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 17:04:48,989 rec_to_binaries.core: INFO Extracting time... +2021-05-23 17:05:00,647 rec_to_binaries.core: INFO Making position directory... +2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 17:05:00,825 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-05-23 17:05:01,236 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-23 17:05:01,237 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-23 17:05:01,242 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-23 17:05:01,242 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-23 17:05:01,243 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140297033812624 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-05-23 17:05:01,243 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-23 17:05:01,742 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-05-23 17:05:01,743 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-05-23 17:05:01,744 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-05-23 17:05:01,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-05-23 17:05:01,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-05-23 17:05:01,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-05-23 17:05:01,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-05-23 17:05:01,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-05-23 17:05:01,759 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. +2021-05-23 17:05:01,760 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. +2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-05-23 17:05:01,763 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-05-23 17:05:01,795 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-05-23 17:05:01,798 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-05-23 17:05:01,799 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-05-23 17:05:01,799 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-05-23 17:05:02,938 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-05-23 17:05:02,940 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-05-23 17:05:05,439 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-05-23 17:05:05,439 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-05-23 17:05:05,440 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-05-23 17:05:05,446 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-05-23 17:05:05,446 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-05-23 17:05:05,604 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:05:07,685 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:05:17,883 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-05-23 17:05:17,889 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-05-23 17:05:18,106 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:05:19,729 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:05:27,363 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-05-23 17:08:44,455 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 17:08:44,660 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 17:08:44,664 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 17:08:44,665 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 17:08:44,666 rec_to_binaries.core: INFO Extracting time... +2021-05-23 17:08:56,202 rec_to_binaries.core: INFO Making position directory... +2021-05-23 17:08:56,226 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 17:08:56,227 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 17:08:56,227 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 17:08:56,227 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 17:08:56,533 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-05-23 17:08:56,973 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-23 17:08:56,976 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-23 17:08:56,977 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-23 17:08:56,977 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-23 17:08:56,978 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-23 17:08:56,978 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-23 17:08:56,978 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-23 17:08:56,979 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-23 17:08:56,979 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-23 17:08:56,979 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-23 17:08:56,980 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-23 17:08:56,980 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-23 17:08:56,980 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-23 17:08:56,981 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-23 17:08:56,981 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-23 17:08:56,981 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-23 17:08:56,983 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-23 17:08:56,984 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-23 17:08:56,985 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140222907934160 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-05-23 17:08:56,985 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-23 17:08:57,493 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-05-23 17:08:57,495 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-05-23 17:08:57,496 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-05-23 17:08:57,497 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-05-23 17:08:57,498 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-05-23 17:08:57,516 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-05-23 17:08:57,516 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-05-23 17:08:57,528 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-05-23 17:08:57,528 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-05-23 17:08:57,529 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-05-23 17:08:57,531 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-05-23 17:08:57,531 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-05-23 17:08:57,532 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-05-23 17:08:57,532 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-05-23 17:08:57,533 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-05-23 17:08:57,533 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. +2021-05-23 17:08:57,534 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. +2021-05-23 17:08:57,537 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-05-23 17:08:57,538 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-05-23 17:08:57,539 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-05-23 17:08:57,539 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-05-23 17:08:57,542 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-05-23 17:08:57,627 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-05-23 17:08:57,637 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-05-23 17:08:57,640 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-05-23 17:08:57,640 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-05-23 17:08:58,751 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-05-23 17:08:58,754 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-05-23 17:09:01,185 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-05-23 17:09:01,185 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-05-23 17:09:01,188 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-05-23 17:09:01,190 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-05-23 17:09:01,191 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-05-23 17:09:01,359 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:09:03,408 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:09:13,653 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-05-23 17:09:13,665 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-05-23 17:09:13,897 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:09:15,454 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:09:22,719 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-05-23 17:33:30,542 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 17:33:30,760 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 17:33:30,763 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 17:33:30,764 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 17:33:30,765 rec_to_binaries.core: INFO Extracting time... +2021-05-23 17:33:42,413 rec_to_binaries.core: INFO Making position directory... +2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 17:33:42,754 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-05-23 17:33:43,178 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-23 17:33:43,181 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-23 17:33:43,181 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-23 17:33:43,182 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-23 17:33:43,182 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-23 17:33:43,182 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-23 17:33:43,183 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-23 17:33:43,183 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-23 17:33:43,183 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-23 17:33:43,184 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-23 17:33:43,184 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-23 17:33:43,184 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-23 17:33:43,185 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-23 17:33:43,185 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-23 17:33:43,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-23 17:33:43,186 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-23 17:33:43,187 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-23 17:33:43,188 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-23 17:33:43,188 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140674011547728 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-05-23 17:33:43,189 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-23 17:33:43,750 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-05-23 17:33:43,753 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-05-23 17:33:43,753 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-05-23 17:33:43,754 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-05-23 17:33:43,756 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-05-23 17:33:43,776 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-05-23 17:33:43,777 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-05-23 17:33:43,790 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-05-23 17:33:43,790 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-05-23 17:33:43,792 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-05-23 17:33:43,792 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-05-23 17:33:43,792 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-05-23 17:33:43,793 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-05-23 17:33:43,793 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-05-23 17:33:43,793 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-05-23 17:33:43,795 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-05-23 17:33:43,795 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-05-23 17:33:43,795 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-05-23 17:33:43,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-05-23 17:33:43,796 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. +2021-05-23 17:33:43,797 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. +2021-05-23 17:33:43,801 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-05-23 17:33:43,801 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-05-23 17:33:43,803 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-05-23 17:33:43,803 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-05-23 17:33:43,807 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-05-23 17:33:43,899 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-05-23 17:33:43,909 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-05-23 17:33:43,913 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-05-23 17:33:43,913 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-05-23 17:33:45,108 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-05-23 17:33:45,112 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-05-23 17:33:47,661 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-05-23 17:33:47,662 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-05-23 17:33:47,664 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-05-23 17:33:47,666 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-05-23 17:33:47,667 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-05-23 17:33:47,835 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:33:49,914 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:34:00,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-05-23 17:34:00,456 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-05-23 17:34:00,695 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:34:02,475 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:34:10,595 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-05-23 17:38:00,331 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /Users/loren/data/nwb/ +animal_name = beans +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') +trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') + +2021-05-23 17:38:00,531 rec_to_binaries.core: INFO Extracting analog data... +2021-05-23 17:38:00,534 rec_to_binaries.core: INFO Extracting DIO... +2021-05-23 17:38:00,535 rec_to_binaries.core: INFO Extracting mda... +2021-05-23 17:38:00,536 rec_to_binaries.core: INFO Extracting time... +2021-05-23 17:38:12,235 rec_to_binaries.core: INFO Making position directory... +2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 +2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /Users/loren/data/nwb/ +animal_name = beans +date = 20190718 +nwb_metadata = Experiment Info: +Experimenter: Alison Comrie +Description: Reinforcement learning +Session Id: beans_01 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /Users/loren/data/nwb/rawbeans20190718.nwb + +2021-05-23 17:38:12,593 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! + , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] +2021-05-23 17:38:13,030 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-23 17:38:13,033 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-23 17:38:13,033 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-23 17:38:13,033 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-23 17:38:13,034 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-23 17:38:13,034 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-23 17:38:13,035 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-23 17:38:13,035 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-23 17:38:13,035 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-23 17:38:13,036 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-23 17:38:13,036 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-23 17:38:13,036 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-23 17:38:13,037 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-23 17:38:13,037 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-23 17:38:13,037 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-23 17:38:13,038 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-23 17:38:13,039 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-23 17:38:13,040 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-23 17:38:13,040 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140616841906384 +Fields: + content: ~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71285 UP 1 +71285 1 0 +~~~ +~~~ +71314 DOWN 1 +71314 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +71353 contingency = 0 +71353 trialThresh = 100 +71353 timeMaxOut = 30 +71353 timeElapsed = 0 +71354 totalPokes = 1 +71354 totalRewards = 0 +71354 countPokes1 = 1 +71355 countRewards1 = 0 +71355 leafProbs1 = 20 +71355 countPokes2 = 0 +71355 countRewards2 = 0 +71369 leafProbs2 = 50 +71370 countPokes3 = 0 +71370 countRewards3 = 0 +71371 leafProbs3 = 80 +71371 countPokes4 = 0 +71371 countRewards4 = 0 +71371 leafProbs4 = 50 +71372 countPokes5 = 0 +71372 countRewards5 = 0 +71373 leafProbs5 = 20 +71373 countPokes6 = 0 +71387 countRewards6 = 0 +71387 leafProbs6 = 80 +~~~ +71477 UP 1 +71477 1 0 +71526 DOWN 1 +71526 0 0 +71547 UP 1 +71547 1 0 +71617 DOWN 1 +71617 0 0 +71625 UP 1 +71625 1 0 +73827 DOWN 1 +73827 0 0 +83303 UP 6 +83303 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83332 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +83439 DOWN 6 +83439 0 2048 +~~~ +83459 contingency = 0 +83459 trialThresh = 100 +83459 timeMaxOut = 30 +83459 timeElapsed = 0 +83460 totalPokes = 2 +83460 totalRewards = 1 +83461 countPokes1 = 1 +83461 countRewards1 = 0 +83461 leafProbs1 = 20 +83461 countPokes2 = 0 +83462 countRewards2 = 0 +83476 leafProbs2 = 50 +83476 countPokes3 = 0 +83477 countRewards3 = 0 +83477 leafProbs3 = 80 +83477 countPokes4 = 0 +83477 countRewards4 = 0 +83478 leafProbs4 = 50 +83478 countPokes5 = 0 +83479 countRewards5 = 0 +83479 leafProbs5 = 20 +83479 countPokes6 = 1 +83493 countRewards6 = 1 +83493 leafProbs6 = 80 +~~~ +83494 UP 6 +83494 32 2048 +83607 DOWN 6 +83607 0 2048 +83619 UP 6 +83619 32 2048 +83632 32 0 +83690 DOWN 6 +83690 0 0 +83702 UP 6 +83702 32 0 +83775 DOWN 6 +83775 0 0 +83783 UP 6 +83783 32 0 +86043 DOWN 6 +86043 0 0 +89924 UP 6 +89924 32 0 +90234 DOWN 6 +90234 0 0 +90255 UP 6 +90255 32 0 +90276 DOWN 6 +90276 0 0 +90337 UP 6 +90337 32 0 +90348 DOWN 6 +90348 0 0 +90353 UP 6 +90353 32 0 +90386 DOWN 6 +90386 0 0 +90444 UP 6 +90444 32 0 +90493 DOWN 6 +90493 0 0 +93393 UP 5 +93393 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +93710 DOWN 5 +93710 0 0 +93720 UP 5 +93720 16 0 +~~~ +93729 contingency = 0 +93730 trialThresh = 100 +93730 timeMaxOut = 30 +93731 timeElapsed = 1 +93731 totalPokes = 3 +93731 totalRewards = 1 +93731 countPokes1 = 1 +93732 countRewards1 = 0 +93732 leafProbs1 = 20 +93733 countPokes2 = 0 +93733 countRewards2 = 0 +93747 leafProbs2 = 50 +93747 countPokes3 = 0 +93747 countRewards3 = 0 +93748 leafProbs3 = 80 +93748 countPokes4 = 0 +93749 countRewards4 = 0 +93749 leafProbs4 = 50 +93749 countPokes5 = 1 +93749 countRewards5 = 0 +93749 leafProbs5 = 20 +93750 countPokes6 = 1 +93764 countRewards6 = 1 +93765 leafProbs6 = 80 +~~~ +93795 DOWN 5 +93795 0 0 +93798 UP 5 +93798 16 0 +95741 DOWN 5 +95741 0 0 +95789 UP 5 +95789 16 0 +95836 DOWN 5 +95836 0 0 +95911 UP 5 +95911 16 0 +95943 DOWN 5 +95943 0 0 +99125 UP 4 +99125 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99163 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +99457 DOWN 4 +99457 0 512 +99463 0 0 +99472 UP 4 +99472 8 0 +~~~ +99478 contingency = 0 +99479 trialThresh = 100 +99479 timeMaxOut = 30 +99479 timeElapsed = 1 +99479 totalPokes = 4 +99480 totalRewards = 2 +99480 countPokes1 = 1 +99481 countRewards1 = 0 +99481 leafProbs1 = 20 +99481 countPokes2 = 0 +99481 countRewards2 = 0 +99495 leafProbs2 = 50 +99496 countPokes3 = 0 +99496 countRewards3 = 0 +99497 leafProbs3 = 80 +99497 countPokes4 = 1 +99497 countRewards4 = 1 +99497 leafProbs4 = 50 +99498 countPokes5 = 1 +99498 countRewards5 = 0 +99499 leafProbs5 = 20 +99499 countPokes6 = 1 +99513 countRewards6 = 1 +99513 leafProbs6 = 80 +~~~ +99513 DOWN 4 +99513 0 0 +99514 UP 4 +99514 8 0 +99547 DOWN 4 +99547 0 0 +99559 UP 4 +99559 8 0 +99634 DOWN 4 +99634 0 0 +99644 UP 4 +99644 8 0 +99731 DOWN 4 +99731 0 0 +99735 UP 4 +99734 8 0 +102100 DOWN 4 +102100 0 0 +102117 UP 4 +102117 8 0 +102289 DOWN 4 +102289 0 0 +102294 UP 4 +102294 8 0 +102324 DOWN 4 +102324 0 0 +102328 UP 4 +102328 8 0 +102405 DOWN 4 +102405 0 0 +102433 UP 4 +102433 8 0 +102495 DOWN 4 +102495 0 0 +102499 UP 4 +102499 8 0 +102713 DOWN 4 +102713 0 0 +104714 UP 3 +104714 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104738 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +104837 DOWN 3 +104837 0 256 +104848 UP 3 +104848 4 256 +~~~ +104868 contingency = 0 +104869 trialThresh = 100 +104869 timeMaxOut = 30 +104870 timeElapsed = 1 +104870 totalPokes = 5 +104870 totalRewards = 3 +104870 countPokes1 = 1 +104870 countRewards1 = 0 +104871 leafProbs1 = 20 +104871 countPokes2 = 0 +104872 countRewards2 = 0 +104886 leafProbs2 = 50 +104886 countPokes3 = 1 +104886 countRewards3 = 1 +104886 leafProbs3 = 80 +104886 countPokes4 = 1 +104887 countRewards4 = 1 +104887 leafProbs4 = 50 +104888 countPokes5 = 1 +104888 countRewards5 = 0 +104888 leafProbs5 = 20 +104902 countPokes6 = 1 +104902 countRewards6 = 1 +104902 leafProbs6 = 80 +~~~ +104922 DOWN 3 +104922 0 256 +104926 UP 3 +104926 4 256 +105038 4 0 +109076 DOWN 3 +109076 0 0 +109084 UP 3 +109084 4 0 +109166 DOWN 3 +109166 0 0 +111301 UP 4 +111301 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111332 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +111632 8 0 +111725 DOWN 4 +111725 0 0 +~~~ +111739 contingency = 0 +111740 trialThresh = 100 +111740 timeMaxOut = 30 +111740 timeElapsed = 1 +111740 totalPokes = 6 +111741 totalRewards = 4 +111741 countPokes1 = 1 +111741 countRewards1 = 0 +111742 leafProbs1 = 20 +111742 countPokes2 = 0 +111742 countRewards2 = 0 +111756 leafProbs2 = 50 +111756 countPokes3 = 1 +111757 countRewards3 = 1 +111757 leafProbs3 = 80 +111758 countPokes4 = 2 +111758 countRewards4 = 2 +111758 leafProbs4 = 50 +111758 countPokes5 = 1 +111759 countRewards5 = 0 +111759 leafProbs5 = 20 +111773 countPokes6 = 1 +111773 countRewards6 = 1 +111773 leafProbs6 = 80 +~~~ +111774 UP 4 +111774 8 0 +111822 DOWN 4 +111822 0 0 +111845 UP 4 +111845 8 0 +111859 DOWN 4 +111859 0 0 +111863 UP 4 +111863 8 0 +111916 DOWN 4 +111916 0 0 +111924 UP 4 +111924 8 0 +112011 DOWN 4 +112011 0 0 +112024 UP 4 +112024 8 0 +115862 DOWN 4 +115862 0 0 +120572 UP 3 +120572 4 0 +120578 DOWN 3 +120578 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120596 UP 3 +120596 4 0 +~~~ +~~~ +~~~ +120598 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +120618 contingency = 0 +120618 trialThresh = 100 +120618 timeMaxOut = 30 +120619 timeElapsed = 1 +120619 totalPokes = 7 +120620 totalRewards = 5 +120620 countPokes1 = 1 +120620 countRewards1 = 0 +120620 leafProbs1 = 20 +120621 countPokes2 = 0 +120621 countRewards2 = 0 +120635 leafProbs2 = 50 +120635 countPokes3 = 2 +120636 countRewards3 = 2 +120636 leafProbs3 = 80 +120636 countPokes4 = 2 +120636 countRewards4 = 2 +120637 leafProbs4 = 50 +120637 countPokes5 = 1 +120638 countRewards5 = 0 +120638 leafProbs5 = 20 +120652 countPokes6 = 1 +120652 countRewards6 = 1 +120652 leafProbs6 = 80 +~~~ +120725 DOWN 3 +120725 0 256 +120737 UP 3 +120737 4 256 +120888 DOWN 3 +120888 0 256 +120892 UP 3 +120892 4 256 +120898 4 0 +120972 DOWN 3 +120972 0 0 +120978 UP 3 +120978 4 0 +122784 DOWN 3 +122784 0 0 +122796 UP 3 +122796 4 0 +124186 DOWN 3 +124186 0 0 +124197 UP 3 +124197 4 0 +124412 DOWN 3 +124412 0 0 +124416 UP 3 +124416 4 0 +124523 DOWN 3 +124523 0 0 +124528 UP 3 +124528 4 0 +124634 DOWN 3 +124634 0 0 +124652 UP 3 +124652 4 0 +124737 DOWN 3 +124737 0 0 +127874 UP 3 +127874 4 0 +127960 DOWN 3 +127960 0 0 +129499 UP 4 +129498 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +129734 DOWN 4 +129734 0 0 +~~~ +129756 contingency = 0 +129756 trialThresh = 100 +129756 timeMaxOut = 30 +129757 timeElapsed = 1 +129757 totalPokes = 8 +129758 totalRewards = 5 +129758 countPokes1 = 1 +129758 countRewards1 = 0 +129758 leafProbs1 = 20 +129759 countPokes2 = 0 +129759 countRewards2 = 0 +129773 leafProbs2 = 50 +129774 countPokes3 = 2 +129774 countRewards3 = 2 +129774 leafProbs3 = 80 +129774 countPokes4 = 3 +129774 countRewards4 = 2 +129775 leafProbs4 = 50 +129775 countPokes5 = 1 +129776 countRewards5 = 0 +129776 leafProbs5 = 20 +129790 countPokes6 = 1 +129790 countRewards6 = 1 +129790 leafProbs6 = 80 +~~~ +129790 UP 4 +129790 8 0 +129817 DOWN 4 +129817 0 0 +129837 UP 4 +129837 8 0 +129908 DOWN 4 +129908 0 0 +129938 UP 4 +129938 8 0 +130003 DOWN 4 +130003 0 0 +130018 UP 4 +130018 8 0 +130100 DOWN 4 +130100 0 0 +130107 UP 4 +130107 8 0 +130294 DOWN 4 +130294 0 0 +133136 UP 2 +133136 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +133392 DOWN 2 +133392 0 0 +133402 UP 2 +133402 2 0 +~~~ +133414 contingency = 0 +133414 trialThresh = 100 +133414 timeMaxOut = 30 +133414 timeElapsed = 2 +133414 totalPokes = 9 +133415 totalRewards = 5 +133415 countPokes1 = 1 +133416 countRewards1 = 0 +133416 leafProbs1 = 20 +133416 countPokes2 = 1 +133416 countRewards2 = 0 +133430 leafProbs2 = 50 +133431 countPokes3 = 2 +133431 countRewards3 = 2 +133431 leafProbs3 = 80 +133432 countPokes4 = 3 +133432 countRewards4 = 2 +133432 leafProbs4 = 50 +133432 countPokes5 = 1 +133433 countRewards5 = 0 +133433 leafProbs5 = 20 +133447 countPokes6 = 1 +133447 countRewards6 = 1 +133448 leafProbs6 = 80 +~~~ +133475 DOWN 2 +133475 0 0 +133478 UP 2 +133478 2 0 +135403 DOWN 2 +135403 0 0 +137476 UP 1 +137476 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +138283 DOWN 1 +138283 0 0 +138297 UP 1 +138297 1 0 +~~~ +138299 contingency = 0 +138300 trialThresh = 100 +138300 timeMaxOut = 30 +138300 timeElapsed = 2 +138300 totalPokes = 10 +138301 totalRewards = 5 +138301 countPokes1 = 2 +138302 countRewards1 = 0 +138302 leafProbs1 = 20 +138302 countPokes2 = 1 +138302 countRewards2 = 0 +138316 leafProbs2 = 50 +138317 countPokes3 = 2 +138317 countRewards3 = 2 +138317 leafProbs3 = 80 +138318 countPokes4 = 3 +138318 countRewards4 = 2 +138318 leafProbs4 = 50 +138318 countPokes5 = 1 +138319 countRewards5 = 0 +138319 leafProbs5 = 20 +138333 countPokes6 = 1 +138333 countRewards6 = 1 +138334 leafProbs6 = 80 +~~~ +138383 DOWN 1 +138383 0 0 +143484 UP 2 +143484 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143517 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +143817 2 0 +143874 DOWN 2 +143874 0 0 +143880 UP 2 +143880 2 0 +~~~ +143896 contingency = 0 +143896 trialThresh = 100 +143896 timeMaxOut = 30 +143896 timeElapsed = 2 +143897 totalPokes = 11 +143897 totalRewards = 6 +143898 countPokes1 = 2 +143898 countRewards1 = 0 +143898 leafProbs1 = 20 +143898 countPokes2 = 2 +143898 countRewards2 = 1 +143912 leafProbs2 = 50 +143913 countPokes3 = 2 +143913 countRewards3 = 2 +143914 leafProbs3 = 80 +143914 countPokes4 = 3 +143914 countRewards4 = 2 +143914 leafProbs4 = 50 +143915 countPokes5 = 1 +143915 countRewards5 = 0 +143916 leafProbs5 = 20 +143929 countPokes6 = 1 +143930 countRewards6 = 1 +143930 leafProbs6 = 80 +~~~ +143959 DOWN 2 +143959 0 0 +143964 UP 2 +143964 2 0 +143970 DOWN 2 +143970 0 0 +143984 UP 2 +143984 2 0 +144040 DOWN 2 +144040 0 0 +144048 UP 2 +144048 2 0 +145891 DOWN 2 +145891 0 0 +145894 UP 2 +145894 2 0 +145996 DOWN 2 +145996 0 0 +146009 UP 2 +146009 2 0 +146306 DOWN 2 +146306 0 0 +148972 UP 1 +148972 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +149304 DOWN 1 +149304 0 0 +149316 UP 1 +149316 1 0 +~~~ +149321 contingency = 0 +149321 trialThresh = 100 +149322 timeMaxOut = 30 +149322 timeElapsed = 2 +149322 totalPokes = 12 +149322 totalRewards = 6 +149322 countPokes1 = 3 +149323 countRewards1 = 0 +149323 leafProbs1 = 20 +149324 countPokes2 = 2 +149324 countRewards2 = 1 +149338 leafProbs2 = 50 +149338 countPokes3 = 2 +149338 countRewards3 = 2 +149339 leafProbs3 = 80 +149339 countPokes4 = 3 +149340 countRewards4 = 2 +149340 leafProbs4 = 50 +149340 countPokes5 = 1 +149340 countRewards5 = 0 +149340 leafProbs5 = 20 +149354 countPokes6 = 1 +149354 countRewards6 = 1 +149355 leafProbs6 = 80 +~~~ +149406 DOWN 1 +149406 0 0 +149424 UP 1 +149424 1 0 +149690 DOWN 1 +149690 0 0 +152490 UP 2 +152490 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +152629 DOWN 2 +152629 0 0 +~~~ +152654 contingency = 0 +152655 trialThresh = 100 +152655 timeMaxOut = 30 +152656 timeElapsed = 2 +152656 totalPokes = 13 +152656 totalRewards = 6 +152656 countPokes1 = 3 +152657 countRewards1 = 0 +152657 leafProbs1 = 20 +152658 countPokes2 = 3 +152658 countRewards2 = 1 +152672 leafProbs2 = 50 +152672 countPokes3 = 2 +152672 countRewards3 = 2 +152673 leafProbs3 = 80 +152673 countPokes4 = 3 +152673 countRewards4 = 2 +152674 leafProbs4 = 50 +152674 countPokes5 = 1 +152674 countRewards5 = 0 +152674 leafProbs5 = 20 +152688 countPokes6 = 1 +152688 countRewards6 = 1 +152689 leafProbs6 = 80 +~~~ +152689 UP 2 +152689 2 0 +152726 DOWN 2 +152726 0 0 +152753 UP 2 +152753 2 0 +152996 DOWN 2 +152996 0 0 +156487 UP 6 +156487 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156519 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +156807 DOWN 6 +156807 0 2048 +156819 0 0 +156825 UP 6 +156825 32 0 +~~~ +156838 contingency = 0 +156839 trialThresh = 100 +156839 timeMaxOut = 30 +156839 timeElapsed = 2 +156839 totalPokes = 14 +156840 totalRewards = 7 +156840 countPokes1 = 3 +156841 countRewards1 = 0 +156841 leafProbs1 = 20 +156841 countPokes2 = 3 +156841 countRewards2 = 1 +156855 leafProbs2 = 50 +156855 countPokes3 = 2 +156856 countRewards3 = 2 +156856 leafProbs3 = 80 +156857 countPokes4 = 3 +156857 countRewards4 = 2 +156857 leafProbs4 = 50 +156857 countPokes5 = 1 +156858 countRewards5 = 0 +156858 leafProbs5 = 20 +156872 countPokes6 = 2 +156872 countRewards6 = 2 +156873 leafProbs6 = 80 +~~~ +156896 DOWN 6 +156896 0 0 +156906 UP 6 +156906 32 0 +156983 DOWN 6 +156983 0 0 +156994 UP 6 +156994 32 0 +157073 DOWN 6 +157073 0 0 +157078 UP 6 +157078 32 0 +157166 DOWN 6 +157166 0 0 +157171 UP 6 +157171 32 0 +157255 DOWN 6 +157255 0 0 +157259 UP 6 +157259 32 0 +158705 DOWN 6 +158705 0 0 +158730 UP 6 +158730 32 0 +159239 DOWN 6 +159239 0 0 +166577 UP 5 +166577 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166602 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +166735 DOWN 5 +166735 0 1024 +166740 UP 5 +166740 16 1024 +~~~ +166759 contingency = 0 +166759 trialThresh = 100 +166760 timeMaxOut = 30 +166760 timeElapsed = 2 +166761 totalPokes = 15 +166761 totalRewards = 8 +166761 countPokes1 = 3 +166761 countRewards1 = 0 +166761 leafProbs1 = 20 +166762 countPokes2 = 3 +166762 countRewards2 = 1 +166776 leafProbs2 = 50 +166777 countPokes3 = 2 +166777 countRewards3 = 2 +166777 leafProbs3 = 80 +166777 countPokes4 = 3 +166778 countRewards4 = 2 +166778 leafProbs4 = 50 +166779 countPokes5 = 2 +166779 countRewards5 = 1 +166779 leafProbs5 = 20 +166793 countPokes6 = 2 +166793 countRewards6 = 2 +166793 leafProbs6 = 80 +~~~ +166830 DOWN 5 +166830 0 1024 +166853 UP 5 +166852 16 1024 +166902 16 0 +167066 DOWN 5 +167066 0 0 +167078 UP 5 +167078 16 0 +167329 DOWN 5 +167329 0 0 +167333 UP 5 +167333 16 0 +169197 DOWN 5 +169197 0 0 +169220 UP 5 +169220 16 0 +169283 DOWN 5 +169283 0 0 +173135 UP 6 +173135 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173164 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +173281 DOWN 6 +173281 0 2048 +173299 UP 6 +173299 32 2048 +~~~ +173313 contingency = 0 +173313 trialThresh = 100 +173313 timeMaxOut = 30 +173314 timeElapsed = 3 +173314 totalPokes = 16 +173315 totalRewards = 9 +173315 countPokes1 = 3 +173315 countRewards1 = 0 +173315 leafProbs1 = 20 +173316 countPokes2 = 3 +173316 countRewards2 = 1 +173330 leafProbs2 = 50 +173331 countPokes3 = 2 +173331 countRewards3 = 2 +173331 leafProbs3 = 80 +173331 countPokes4 = 3 +173331 countRewards4 = 2 +173332 leafProbs4 = 50 +173332 countPokes5 = 2 +173333 countRewards5 = 1 +173333 leafProbs5 = 20 +173347 countPokes6 = 3 +173347 countRewards6 = 3 +173347 leafProbs6 = 80 +~~~ +173373 DOWN 6 +173373 0 2048 +173379 UP 6 +173379 32 2048 +173464 32 0 +173559 DOWN 6 +173559 0 0 +173575 UP 6 +173575 32 0 +175758 DOWN 6 +175758 0 0 +177976 UP 5 +177976 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +178223 DOWN 5 +178223 0 0 +178238 UP 5 +178238 16 0 +~~~ +178245 contingency = 0 +178246 trialThresh = 100 +178246 timeMaxOut = 30 +178247 timeElapsed = 3 +178247 totalPokes = 17 +178247 totalRewards = 9 +178247 countPokes1 = 3 +178248 countRewards1 = 0 +178248 leafProbs1 = 20 +178249 countPokes2 = 3 +178249 countRewards2 = 1 +178263 leafProbs2 = 50 +178263 countPokes3 = 2 +178263 countRewards3 = 2 +178263 leafProbs3 = 80 +178264 countPokes4 = 3 +178264 countRewards4 = 2 +178265 leafProbs4 = 50 +178265 countPokes5 = 3 +178265 countRewards5 = 1 +178265 leafProbs5 = 20 +178279 countPokes6 = 3 +178279 countRewards6 = 3 +178280 leafProbs6 = 80 +~~~ +178316 DOWN 5 +178316 0 0 +178318 UP 5 +178318 16 0 +178539 DOWN 5 +178539 0 0 +181379 UP 4 +181379 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +181625 DOWN 4 +181625 0 0 +181645 UP 4 +181645 8 0 +~~~ +181646 contingency = 0 +181646 trialThresh = 100 +181647 timeMaxOut = 30 +181647 timeElapsed = 3 +181647 totalPokes = 18 +181647 totalRewards = 9 +181648 countPokes1 = 3 +181648 countRewards1 = 0 +181649 leafProbs1 = 20 +181649 countPokes2 = 3 +181663 countRewards2 = 1 +181663 leafProbs2 = 50 +181663 countPokes3 = 2 +181664 countRewards3 = 2 +181664 leafProbs3 = 80 +181665 countPokes4 = 4 +181665 countRewards4 = 2 +181665 leafProbs4 = 50 +181665 countPokes5 = 3 +181665 countRewards5 = 1 +181679 leafProbs5 = 20 +181679 countPokes6 = 3 +181680 countRewards6 = 3 +181680 leafProbs6 = 80 +~~~ +182651 DOWN 4 +182651 0 0 +184614 UP 3 +184614 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184641 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +184836 DOWN 3 +184836 0 256 +184849 UP 3 +184849 4 256 +~~~ +184864 contingency = 0 +184864 trialThresh = 100 +184865 timeMaxOut = 30 +184865 timeElapsed = 3 +184865 totalPokes = 19 +184865 totalRewards = 10 +184866 countPokes1 = 3 +184866 countRewards1 = 0 +184867 leafProbs1 = 20 +184867 countPokes2 = 3 +184867 countRewards2 = 1 +184881 leafProbs2 = 50 +184881 countPokes3 = 3 +184882 countRewards3 = 3 +184882 leafProbs3 = 80 +184882 countPokes4 = 4 +184883 countRewards4 = 2 +184883 leafProbs4 = 50 +184883 countPokes5 = 3 +184883 countRewards5 = 1 +184884 leafProbs5 = 20 +184897 countPokes6 = 3 +184898 countRewards6 = 3 +184898 leafProbs6 = 80 +~~~ +184941 4 0 +185009 DOWN 3 +185009 0 0 +185013 UP 3 +185013 4 0 +185092 DOWN 3 +185092 0 0 +185099 UP 3 +185099 4 0 +187981 DOWN 3 +187981 0 0 +188017 UP 3 +188017 4 0 +188096 DOWN 3 +188096 0 0 +188114 UP 3 +188114 4 0 +188411 DOWN 3 +188411 0 0 +190404 UP 4 +190404 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190430 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +190730 8 0 +191085 DOWN 4 +191085 0 0 +191092 UP 4 +191092 8 0 +~~~ +191104 contingency = 0 +191104 trialThresh = 100 +191105 timeMaxOut = 30 +191105 timeElapsed = 3 +191105 totalPokes = 20 +191105 totalRewards = 11 +191106 countPokes1 = 3 +191106 countRewards1 = 0 +191107 leafProbs1 = 20 +191107 countPokes2 = 3 +191107 countRewards2 = 1 +191121 leafProbs2 = 50 +191121 countPokes3 = 3 +191121 countRewards3 = 3 +191122 leafProbs3 = 80 +191122 countPokes4 = 5 +191123 countRewards4 = 3 +191123 leafProbs4 = 50 +191123 countPokes5 = 3 +191123 countRewards5 = 1 +191124 leafProbs5 = 20 +191137 countPokes6 = 3 +191138 countRewards6 = 3 +191138 leafProbs6 = 80 +~~~ +191177 DOWN 4 +191177 0 0 +191181 UP 4 +191181 8 0 +193801 DOWN 4 +193801 0 0 +193999 UP 4 +193999 8 0 +194078 DOWN 4 +194078 0 0 +194135 UP 4 +194135 8 0 +194201 DOWN 4 +194201 0 0 +194265 UP 4 +194265 8 0 +194499 DOWN 4 +194499 0 0 +197620 UP 4 +197620 8 0 +198119 DOWN 4 +198119 0 0 +198133 UP 4 +198133 8 0 +198843 DOWN 4 +198843 0 0 +200377 UP 3 +200377 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200407 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +200602 DOWN 3 +200602 0 256 +200610 UP 3 +200610 4 256 +~~~ +200631 contingency = 0 +200631 trialThresh = 100 +200632 timeMaxOut = 30 +200632 timeElapsed = 3 +200633 totalPokes = 21 +200633 totalRewards = 12 +200633 countPokes1 = 3 +200633 countRewards1 = 0 +200634 leafProbs1 = 20 +200634 countPokes2 = 3 +200635 countRewards2 = 1 +200649 leafProbs2 = 50 +200649 countPokes3 = 4 +200649 countRewards3 = 4 +200649 leafProbs3 = 80 +200649 countPokes4 = 5 +200650 countRewards4 = 3 +200650 leafProbs4 = 50 +200651 countPokes5 = 3 +200651 countRewards5 = 1 +200651 leafProbs5 = 20 +200665 countPokes6 = 3 +200665 countRewards6 = 3 +200665 leafProbs6 = 80 +~~~ +200687 DOWN 3 +200687 0 256 +200691 UP 3 +200691 4 256 +200707 4 0 +200767 DOWN 3 +200767 0 0 +200781 UP 3 +200780 4 0 +200787 DOWN 3 +200787 0 0 +200790 UP 3 +200790 4 0 +200853 DOWN 3 +200853 0 0 +200859 UP 3 +200859 4 0 +203804 DOWN 3 +203804 0 0 +203837 UP 3 +203837 4 0 +203877 DOWN 3 +203877 0 0 +203949 UP 3 +203949 4 0 +203965 DOWN 3 +203965 0 0 +206011 UP 4 +206011 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +206783 DOWN 4 +206783 0 0 +~~~ +206805 contingency = 0 +206805 trialThresh = 100 +206806 timeMaxOut = 30 +206806 timeElapsed = 3 +206807 totalPokes = 22 +206807 totalRewards = 12 +206807 countPokes1 = 3 +206807 countRewards1 = 0 +206807 leafProbs1 = 20 +206808 countPokes2 = 3 +206808 countRewards2 = 1 +206822 leafProbs2 = 50 +206823 countPokes3 = 4 +206823 countRewards3 = 4 +206823 leafProbs3 = 80 +206823 countPokes4 = 6 +206824 countRewards4 = 3 +206824 leafProbs4 = 50 +206825 countPokes5 = 3 +206825 countRewards5 = 1 +206825 leafProbs5 = 20 +206839 countPokes6 = 3 +206839 countRewards6 = 3 +206839 leafProbs6 = 80 +~~~ +208164 UP 3 +208164 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208193 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +208347 DOWN 3 +208347 0 256 +208359 UP 3 +208359 4 256 +~~~ +208376 contingency = 0 +208376 trialThresh = 100 +208377 timeMaxOut = 30 +208377 timeElapsed = 3 +208377 totalPokes = 23 +208377 totalRewards = 13 +208378 countPokes1 = 3 +208378 countRewards1 = 0 +208379 leafProbs1 = 20 +208379 countPokes2 = 3 +208379 countRewards2 = 1 +208393 leafProbs2 = 50 +208393 countPokes3 = 5 +208393 countRewards3 = 5 +208394 leafProbs3 = 80 +208394 countPokes4 = 6 +208395 countRewards4 = 3 +208395 leafProbs4 = 50 +208395 countPokes5 = 3 +208395 countRewards5 = 1 +208396 leafProbs5 = 20 +208409 countPokes6 = 3 +208410 countRewards6 = 3 +208410 leafProbs6 = 80 +~~~ +208434 DOWN 3 +208434 0 256 +208444 UP 3 +208444 4 256 +208493 4 0 +208603 DOWN 3 +208603 0 0 +208620 UP 3 +208620 4 0 +210873 DOWN 3 +210873 0 0 +210881 UP 3 +210881 4 0 +211390 DOWN 3 +211390 0 0 +213232 UP 4 +213232 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +214254 DOWN 4 +214254 0 0 +214266 UP 4 +214266 8 0 +~~~ +214269 contingency = 0 +214269 trialThresh = 100 +214269 timeMaxOut = 30 +214270 timeElapsed = 4 +214270 totalPokes = 24 +214271 totalRewards = 13 +214271 countPokes1 = 3 +214271 countRewards1 = 0 +214271 leafProbs1 = 20 +214272 countPokes2 = 3 +214272 countRewards2 = 1 +214286 leafProbs2 = 50 +214286 countPokes3 = 5 +214287 countRewards3 = 5 +214287 leafProbs3 = 80 +214287 countPokes4 = 7 +214287 countRewards4 = 3 +214288 leafProbs4 = 50 +214288 countPokes5 = 3 +214289 countRewards5 = 1 +214289 leafProbs5 = 20 +214303 countPokes6 = 3 +214303 countRewards6 = 3 +214303 leafProbs6 = 80 +~~~ +214303 DOWN 4 +214303 0 0 +215828 UP 3 +215828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +215859 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +216017 DOWN 3 +216017 0 256 +216023 UP 3 +216023 4 256 +~~~ +216045 contingency = 0 +216045 trialThresh = 100 +216045 timeMaxOut = 30 +216045 timeElapsed = 4 +216046 totalPokes = 25 +216046 totalRewards = 14 +216047 countPokes1 = 3 +216047 countRewards1 = 0 +216047 leafProbs1 = 20 +216047 countPokes2 = 3 +216047 countRewards2 = 1 +216061 leafProbs2 = 50 +216062 countPokes3 = 6 +216062 countRewards3 = 6 +216063 leafProbs3 = 80 +216063 countPokes4 = 7 +216063 countRewards4 = 3 +216063 leafProbs4 = 50 +216064 countPokes5 = 3 +216064 countRewards5 = 1 +216065 leafProbs5 = 20 +216078 countPokes6 = 3 +216079 countRewards6 = 3 +216079 leafProbs6 = 80 +~~~ +216159 4 0 +216180 DOWN 3 +216180 0 0 +216185 UP 3 +216185 4 0 +216269 DOWN 3 +216269 0 0 +216281 UP 3 +216281 4 0 +218089 DOWN 3 +218089 0 0 +218097 UP 3 +218097 4 0 +219287 DOWN 3 +219287 0 0 +219542 UP 3 +219542 4 0 +219594 DOWN 3 +219594 0 0 +219629 UP 3 +219629 4 0 +219734 DOWN 3 +219734 0 0 +219739 UP 3 +219739 4 0 +219965 DOWN 3 +219965 0 0 +219969 UP 3 +219969 4 0 +220048 DOWN 3 +220048 0 0 +222521 UP 4 +222520 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222555 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +222597 DOWN 4 +222597 0 512 +~~~ +222622 contingency = 0 +222622 trialThresh = 100 +222623 timeMaxOut = 30 +222623 timeElapsed = 4 +222623 totalPokes = 26 +222623 totalRewards = 15 +222624 countPokes1 = 3 +222624 countRewards1 = 0 +222625 leafProbs1 = 20 +222625 countPokes2 = 3 +222625 countRewards2 = 1 +222639 leafProbs2 = 50 +222639 countPokes3 = 6 +222639 countRewards3 = 6 +222640 leafProbs3 = 80 +222640 countPokes4 = 8 +222641 countRewards4 = 4 +222641 leafProbs4 = 50 +222641 countPokes5 = 3 +222641 countRewards5 = 1 +222642 leafProbs5 = 20 +222655 countPokes6 = 3 +222656 countRewards6 = 3 +222656 leafProbs6 = 80 +~~~ +222661 UP 4 +222661 8 512 +222855 8 0 +223129 DOWN 4 +223129 0 0 +223137 UP 4 +223137 8 0 +223217 DOWN 4 +223216 0 0 +223221 UP 4 +223221 8 0 +225330 DOWN 4 +225330 0 0 +225335 UP 4 +225335 8 0 +225396 DOWN 4 +225396 0 0 +225433 UP 4 +225433 8 0 +225506 DOWN 4 +225506 0 0 +225522 UP 4 +225522 8 0 +225619 DOWN 4 +225619 0 0 +225622 UP 4 +225622 8 0 +225810 DOWN 4 +225810 0 0 +225847 UP 4 +225847 8 0 +226257 DOWN 4 +226257 0 0 +227900 UP 3 +227900 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +227930 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +228159 DOWN 3 +228159 0 256 +~~~ +228180 contingency = 0 +228180 trialThresh = 100 +228181 timeMaxOut = 30 +228181 timeElapsed = 4 +228181 totalPokes = 27 +228181 totalRewards = 16 +228182 countPokes1 = 3 +228182 countRewards1 = 0 +228183 leafProbs1 = 20 +228183 countPokes2 = 3 +228183 countRewards2 = 1 +228197 leafProbs2 = 50 +228197 countPokes3 = 7 +228197 countRewards3 = 7 +228198 leafProbs3 = 80 +228198 countPokes4 = 8 +228199 countRewards4 = 4 +228199 leafProbs4 = 50 +228199 countPokes5 = 3 +228199 countRewards5 = 1 +228200 leafProbs5 = 20 +228213 countPokes6 = 3 +228214 countRewards6 = 3 +228214 leafProbs6 = 80 +~~~ +228215 UP 3 +228215 4 256 +228230 4 0 +228250 DOWN 3 +228250 0 0 +228252 UP 3 +228252 4 0 +228335 DOWN 3 +228335 0 0 +228340 UP 3 +228340 4 0 +230880 DOWN 3 +230880 0 0 +230888 UP 3 +230888 4 0 +230982 DOWN 3 +230982 0 0 +230989 UP 3 +230989 4 0 +231293 DOWN 3 +231293 0 0 +231314 UP 3 +231314 4 0 +231388 DOWN 3 +231388 0 0 +231444 UP 3 +231444 4 0 +231480 DOWN 3 +231480 0 0 +233140 UP 4 +233140 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233170 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +233350 DOWN 4 +233350 0 512 +233367 UP 4 +233367 8 512 +~~~ +233368 contingency = 0 +233368 trialThresh = 100 +233368 timeMaxOut = 30 +233369 timeElapsed = 4 +233369 totalPokes = 28 +233370 totalRewards = 17 +233370 countPokes1 = 3 +233370 countRewards1 = 0 +233370 leafProbs1 = 20 +233371 countPokes2 = 3 +233385 countRewards2 = 1 +233385 leafProbs2 = 50 +233386 countPokes3 = 7 +233386 countRewards3 = 7 +233386 leafProbs3 = 80 +233386 countPokes4 = 9 +233387 countRewards4 = 5 +233387 leafProbs4 = 50 +233388 countPokes5 = 3 +233388 countRewards5 = 1 +233402 leafProbs5 = 20 +233402 countPokes6 = 3 +233402 countRewards6 = 3 +233402 leafProbs6 = 80 +~~~ +233441 DOWN 4 +233441 0 512 +233449 UP 4 +233449 8 512 +233470 8 0 +235988 DOWN 4 +235988 0 0 +236046 UP 4 +236046 8 0 +236062 DOWN 4 +236062 0 0 +237555 UP 3 +237555 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237582 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +237844 DOWN 3 +237844 0 256 +~~~ +237868 contingency = 0 +237868 trialThresh = 100 +237868 timeMaxOut = 30 +237869 timeElapsed = 4 +237869 totalPokes = 29 +237870 totalRewards = 18 +237870 countPokes1 = 3 +237870 countRewards1 = 0 +237870 leafProbs1 = 20 +237871 countPokes2 = 3 +237871 countRewards2 = 1 +237885 leafProbs2 = 50 +237886 countPokes3 = 8 +237886 countRewards3 = 8 +237886 leafProbs3 = 80 +237886 countPokes4 = 9 +237886 countRewards4 = 5 +237887 leafProbs4 = 50 +237887 countPokes5 = 3 +237888 countRewards5 = 1 +237888 leafProbs5 = 20 +237902 countPokes6 = 3 +237902 countRewards6 = 3 +237902 leafProbs6 = 80 +~~~ +237902 UP 3 +237902 4 256 +237903 4 0 +237927 DOWN 3 +237927 0 0 +237940 UP 3 +237940 4 0 +238016 DOWN 3 +238016 0 0 +238018 UP 3 +238018 4 0 +240469 DOWN 3 +240469 0 0 +240482 UP 3 +240482 4 0 +241000 DOWN 3 +241000 0 0 +241016 UP 3 +241016 4 0 +241093 DOWN 3 +241093 0 0 +242699 UP 4 +242699 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +242738 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +243038 8 0 +245340 DOWN 4 +245340 0 0 +245344 UP 4 +245344 8 0 +~~~ +245365 contingency = 0 +245365 trialThresh = 100 +245366 timeMaxOut = 30 +245366 timeElapsed = 4 +245366 totalPokes = 30 +245366 totalRewards = 19 +245367 countPokes1 = 3 +245367 countRewards1 = 0 +245368 leafProbs1 = 20 +245368 countPokes2 = 3 +245368 countRewards2 = 1 +245382 leafProbs2 = 50 +245382 countPokes3 = 8 +245383 countRewards3 = 8 +245383 leafProbs3 = 80 +245384 countPokes4 = 10 +245384 countRewards4 = 6 +245384 leafProbs4 = 50 +245384 countPokes5 = 3 +245384 countRewards5 = 1 +245385 leafProbs5 = 20 +245399 countPokes6 = 3 +245399 countRewards6 = 3 +245399 leafProbs6 = 80 +~~~ +245548 DOWN 4 +245548 0 0 +245570 UP 4 +245570 8 0 +245612 DOWN 4 +245612 0 0 +247020 UP 3 +247020 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +247193 DOWN 3 +247193 0 0 +247204 UP 3 +247204 4 0 +~~~ +247221 contingency = 0 +247222 trialThresh = 100 +247222 timeMaxOut = 30 +247222 timeElapsed = 4 +247222 totalPokes = 31 +247223 totalRewards = 19 +247223 countPokes1 = 3 +247224 countRewards1 = 0 +247224 leafProbs1 = 20 +247224 countPokes2 = 3 +247224 countRewards2 = 1 +247238 leafProbs2 = 50 +247239 countPokes3 = 9 +247239 countRewards3 = 8 +247239 leafProbs3 = 80 +247240 countPokes4 = 10 +247240 countRewards4 = 6 +247240 leafProbs4 = 50 +247240 countPokes5 = 3 +247241 countRewards5 = 1 +247241 leafProbs5 = 20 +247255 countPokes6 = 3 +247255 countRewards6 = 3 +247256 leafProbs6 = 80 +~~~ +247284 DOWN 3 +247284 0 0 +247288 UP 3 +247288 4 0 +247585 DOWN 3 +247585 0 0 +247604 UP 3 +247604 4 0 +248118 DOWN 3 +248118 0 0 +248154 UP 3 +248154 4 0 +248594 DOWN 3 +248594 0 0 +250886 UP 4 +250886 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +250920 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +251220 8 0 +251431 DOWN 4 +251431 0 0 +251442 UP 4 +251442 8 0 +~~~ +251449 contingency = 0 +251449 trialThresh = 100 +251450 timeMaxOut = 30 +251450 timeElapsed = 5 +251450 totalPokes = 32 +251450 totalRewards = 20 +251450 countPokes1 = 3 +251451 countRewards1 = 0 +251451 leafProbs1 = 20 +251452 countPokes2 = 3 +251452 countRewards2 = 1 +251466 leafProbs2 = 50 +251466 countPokes3 = 9 +251466 countRewards3 = 8 +251467 leafProbs3 = 80 +251467 countPokes4 = 11 +251468 countRewards4 = 7 +251468 leafProbs4 = 50 +251468 countPokes5 = 3 +251468 countRewards5 = 1 +251469 leafProbs5 = 20 +251482 countPokes6 = 3 +251483 countRewards6 = 3 +251483 leafProbs6 = 80 +~~~ +251513 DOWN 4 +251513 0 0 +251526 UP 4 +251526 8 0 +251547 DOWN 4 +251547 0 0 +251552 UP 4 +251552 8 0 +251598 DOWN 4 +251598 0 0 +251607 UP 4 +251607 8 0 +251688 DOWN 4 +251688 0 0 +251694 UP 4 +251694 8 0 +253740 DOWN 4 +253740 0 0 +253764 UP 4 +253764 8 0 +253830 DOWN 4 +253830 0 0 +253876 UP 4 +253876 8 0 +253887 DOWN 4 +253887 0 0 +254166 UP 4 +254166 8 0 +254676 DOWN 4 +254676 0 0 +254698 UP 4 +254698 8 0 +254720 DOWN 4 +254720 0 0 +256371 UP 3 +256371 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256398 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +256406 DOWN 3 +256406 0 256 +~~~ +256434 contingency = 0 +256434 trialThresh = 100 +256434 timeMaxOut = 30 +256434 timeElapsed = 5 +256435 totalPokes = 33 +256435 totalRewards = 21 +256436 countPokes1 = 3 +256436 countRewards1 = 0 +256436 leafProbs1 = 20 +256436 countPokes2 = 3 +256437 countRewards2 = 1 +256451 leafProbs2 = 50 +256451 countPokes3 = 10 +256452 countRewards3 = 9 +256452 leafProbs3 = 80 +256452 countPokes4 = 11 +256452 countRewards4 = 7 +256453 leafProbs4 = 50 +256453 countPokes5 = 3 +256453 countRewards5 = 1 +256454 leafProbs5 = 20 +256468 countPokes6 = 3 +256468 countRewards6 = 3 +256468 leafProbs6 = 80 +~~~ +256468 UP 3 +256468 4 256 +256691 DOWN 3 +256691 0 256 +256698 0 0 +256720 UP 3 +256720 4 0 +256785 DOWN 3 +256785 0 0 +256824 UP 3 +256824 4 0 +256876 DOWN 3 +256876 0 0 +256884 UP 3 +256884 4 0 +258219 DOWN 3 +258219 0 0 +258226 UP 3 +258226 4 0 +258320 DOWN 3 +258320 0 0 +258326 UP 3 +258326 4 0 +259301 DOWN 3 +259301 0 0 +259319 UP 3 +259319 4 0 +259726 DOWN 3 +259726 0 0 +259741 UP 3 +259741 4 0 +259816 DOWN 3 +259816 0 0 +261413 UP 4 +261413 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +262023 DOWN 4 +262023 0 0 +~~~ +262043 contingency = 0 +262044 trialThresh = 100 +262044 timeMaxOut = 30 +262044 timeElapsed = 5 +262044 totalPokes = 34 +262045 totalRewards = 21 +262045 countPokes1 = 3 +262046 countRewards1 = 0 +262046 leafProbs1 = 20 +262046 countPokes2 = 3 +262046 countRewards2 = 1 +262060 leafProbs2 = 50 +262061 countPokes3 = 10 +262061 countRewards3 = 9 +262062 leafProbs3 = 80 +262062 countPokes4 = 12 +262062 countRewards4 = 7 +262062 leafProbs4 = 50 +262063 countPokes5 = 3 +262063 countRewards5 = 1 +262063 leafProbs5 = 20 +262077 countPokes6 = 3 +262078 countRewards6 = 3 +262078 leafProbs6 = 80 +~~~ +263466 UP 3 +263466 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263498 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +263798 4 0 +264206 DOWN 3 +264206 0 0 +264220 UP 3 +264220 4 0 +~~~ +264230 contingency = 0 +264231 trialThresh = 100 +264231 timeMaxOut = 30 +264232 timeElapsed = 5 +264232 totalPokes = 35 +264232 totalRewards = 22 +264232 countPokes1 = 3 +264233 countRewards1 = 0 +264233 leafProbs1 = 20 +264234 countPokes2 = 3 +264234 countRewards2 = 1 +264248 leafProbs2 = 50 +264248 countPokes3 = 11 +264248 countRewards3 = 10 +264248 leafProbs3 = 80 +264249 countPokes4 = 12 +264249 countRewards4 = 7 +264250 leafProbs4 = 50 +264250 countPokes5 = 3 +264250 countRewards5 = 1 +264250 leafProbs5 = 20 +264264 countPokes6 = 3 +264265 countRewards6 = 3 +264265 leafProbs6 = 80 +~~~ +264266 DOWN 3 +264266 0 0 +264266 UP 3 +264266 4 0 +264297 DOWN 3 +264297 0 0 +264306 UP 3 +264306 4 0 +266104 DOWN 3 +266104 0 0 +266122 UP 3 +266122 4 0 +266215 DOWN 3 +266215 0 0 +266227 UP 3 +266227 4 0 +266786 DOWN 3 +266786 0 0 +266806 UP 3 +266806 4 0 +266896 DOWN 3 +266896 0 0 +266908 UP 3 +266908 4 0 +267006 DOWN 3 +267006 0 0 +267012 UP 3 +267012 4 0 +267110 DOWN 3 +267110 0 0 +267129 UP 3 +267129 4 0 +267203 DOWN 3 +267203 0 0 +269184 UP 4 +269184 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269205 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +269505 8 0 +269578 DOWN 4 +269578 0 0 +~~~ +269602 contingency = 0 +269603 trialThresh = 100 +269603 timeMaxOut = 30 +269604 timeElapsed = 5 +269604 totalPokes = 36 +269604 totalRewards = 23 +269604 countPokes1 = 3 +269604 countRewards1 = 0 +269605 leafProbs1 = 20 +269605 countPokes2 = 3 +269606 countRewards2 = 1 +269620 leafProbs2 = 50 +269620 countPokes3 = 11 +269620 countRewards3 = 10 +269620 leafProbs3 = 80 +269621 countPokes4 = 13 +269621 countRewards4 = 8 +269622 leafProbs4 = 50 +269622 countPokes5 = 3 +269622 countRewards5 = 1 +269622 leafProbs5 = 20 +269636 countPokes6 = 3 +269636 countRewards6 = 3 +269637 leafProbs6 = 80 +~~~ +269637 UP 4 +269637 8 0 +269667 DOWN 4 +269667 0 0 +269674 UP 4 +269674 8 0 +269759 DOWN 4 +269759 0 0 +269767 UP 4 +269767 8 0 +272248 DOWN 4 +272248 0 0 +272274 UP 4 +272274 8 0 +272330 DOWN 4 +272330 0 0 +273864 UP 3 +273864 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +274038 DOWN 3 +274038 0 0 +274047 UP 3 +274047 4 0 +~~~ +274065 contingency = 0 +274066 trialThresh = 100 +274066 timeMaxOut = 30 +274066 timeElapsed = 5 +274066 totalPokes = 37 +274067 totalRewards = 23 +274067 countPokes1 = 3 +274068 countRewards1 = 0 +274068 leafProbs1 = 20 +274068 countPokes2 = 3 +274068 countRewards2 = 1 +274082 leafProbs2 = 50 +274083 countPokes3 = 12 +274083 countRewards3 = 10 +274084 leafProbs3 = 80 +274084 countPokes4 = 13 +274084 countRewards4 = 8 +274084 leafProbs4 = 50 +274085 countPokes5 = 3 +274085 countRewards5 = 1 +274085 leafProbs5 = 20 +274099 countPokes6 = 3 +274100 countRewards6 = 3 +274100 leafProbs6 = 80 +~~~ +274127 DOWN 3 +274127 0 0 +274134 UP 3 +274134 4 0 +274216 DOWN 3 +274216 0 0 +274218 UP 3 +274218 4 0 +274324 DOWN 3 +274324 0 0 +274377 UP 3 +274377 4 0 +274908 DOWN 3 +274908 0 0 +277710 UP 2 +277710 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +277741 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +278020 DOWN 2 +278020 0 128 +278035 UP 2 +278035 2 128 +278041 2 0 +~~~ +278044 contingency = 0 +278045 trialThresh = 100 +278045 timeMaxOut = 30 +278046 timeElapsed = 5 +278046 totalPokes = 38 +278046 totalRewards = 24 +278046 countPokes1 = 3 +278047 countRewards1 = 0 +278047 leafProbs1 = 20 +278048 countPokes2 = 4 +278048 countRewards2 = 2 +278062 leafProbs2 = 50 +278062 countPokes3 = 12 +278062 countRewards3 = 10 +278062 leafProbs3 = 80 +278063 countPokes4 = 13 +278063 countRewards4 = 8 +278064 leafProbs4 = 50 +278064 countPokes5 = 3 +278064 countRewards5 = 1 +278064 leafProbs5 = 20 +278078 countPokes6 = 3 +278078 countRewards6 = 3 +278079 leafProbs6 = 80 +~~~ +278109 DOWN 2 +278109 0 0 +278128 UP 2 +278128 2 0 +278139 DOWN 2 +278139 0 0 +278146 UP 2 +278146 2 0 +278194 DOWN 2 +278194 0 0 +278206 UP 2 +278206 2 0 +280282 DOWN 2 +280282 0 0 +280311 UP 2 +280311 2 0 +280376 DOWN 2 +280376 0 0 +283232 UP 2 +283232 2 0 +283566 DOWN 2 +283566 0 0 +285442 UP 1 +285442 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +285976 DOWN 1 +285976 0 0 +285985 UP 1 +285985 1 0 +~~~ +285999 contingency = 0 +285999 trialThresh = 100 +285999 timeMaxOut = 30 +285999 timeElapsed = 5 +286000 totalPokes = 39 +286000 totalRewards = 24 +286001 countPokes1 = 4 +286001 countRewards1 = 0 +286001 leafProbs1 = 20 +286001 countPokes2 = 4 +286002 countRewards2 = 2 +286016 leafProbs2 = 50 +286016 countPokes3 = 12 +286017 countRewards3 = 10 +286017 leafProbs3 = 80 +286017 countPokes4 = 13 +286017 countRewards4 = 8 +286017 leafProbs4 = 50 +286018 countPokes5 = 3 +286018 countRewards5 = 1 +286019 leafProbs5 = 20 +286033 countPokes6 = 3 +286033 countRewards6 = 3 +286033 leafProbs6 = 80 +~~~ +286264 DOWN 1 +286264 0 0 +286281 UP 1 +286281 1 0 +286757 DOWN 1 +286757 0 0 +292251 UP 2 +292251 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292286 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +292481 DOWN 2 +292481 0 128 +292489 UP 2 +292489 2 128 +~~~ +292508 contingency = 0 +292508 trialThresh = 100 +292509 timeMaxOut = 30 +292509 timeElapsed = 6 +292509 totalPokes = 40 +292509 totalRewards = 25 +292510 countPokes1 = 4 +292510 countRewards1 = 0 +292511 leafProbs1 = 20 +292511 countPokes2 = 5 +292511 countRewards2 = 3 +292525 leafProbs2 = 50 +292525 countPokes3 = 12 +292526 countRewards3 = 10 +292526 leafProbs3 = 80 +292527 countPokes4 = 13 +292527 countRewards4 = 8 +292527 leafProbs4 = 50 +292527 countPokes5 = 3 +292527 countRewards5 = 1 +292528 leafProbs5 = 20 +292542 countPokes6 = 3 +292542 countRewards6 = 3 +292543 leafProbs6 = 80 +~~~ +292569 DOWN 2 +292569 0 128 +292571 UP 2 +292571 2 128 +292586 2 0 +292739 DOWN 2 +292739 0 0 +292743 UP 2 +292743 2 0 +294977 DOWN 2 +294977 0 0 +298733 UP 4 +298733 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +299266 DOWN 4 +299266 0 0 +~~~ +299286 UP 4 +299286 8 0 +299287 contingency = 0 +299287 trialThresh = 100 +299287 timeMaxOut = 30 +299288 timeElapsed = 6 +299288 totalPokes = 41 +299289 totalRewards = 25 +299289 countPokes1 = 4 +299289 countRewards1 = 0 +299289 leafProbs1 = 20 +299290 countPokes2 = 5 +299303 countRewards2 = 3 +299304 leafProbs2 = 50 +299304 countPokes3 = 12 +299305 countRewards3 = 10 +299305 leafProbs3 = 80 +299305 countPokes4 = 14 +299305 countRewards4 = 8 +299306 leafProbs4 = 50 +299306 countPokes5 = 3 +299307 countRewards5 = 1 +299321 leafProbs5 = 20 +299321 countPokes6 = 3 +299321 countRewards6 = 3 +299321 leafProbs6 = 80 +~~~ +299331 DOWN 4 +299331 0 0 +299459 UP 4 +299459 8 0 +299474 DOWN 4 +299474 0 0 +299513 UP 4 +299513 8 0 +299553 DOWN 4 +299553 0 0 +301326 UP 3 +301326 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +301583 DOWN 3 +301583 0 0 +~~~ +301601 contingency = 0 +301601 trialThresh = 100 +301601 timeMaxOut = 30 +301602 timeElapsed = 6 +301602 totalPokes = 42 +301602 totalRewards = 25 +301603 countPokes1 = 4 +301603 countRewards1 = 0 +301603 leafProbs1 = 20 +301603 countPokes2 = 5 +301604 countRewards2 = 3 +301618 leafProbs2 = 50 +301618 countPokes3 = 13 +301619 countRewards3 = 10 +301619 leafProbs3 = 80 +301619 countPokes4 = 14 +301619 countRewards4 = 8 +301620 leafProbs4 = 50 +301620 countPokes5 = 3 +301621 countRewards5 = 1 +301621 leafProbs5 = 20 +301635 countPokes6 = 3 +301635 countRewards6 = 3 +301635 leafProbs6 = 80 +~~~ +301635 UP 3 +301635 4 0 +301682 DOWN 3 +301682 0 0 +301719 UP 3 +301719 4 0 +301796 DOWN 3 +301796 0 0 +301839 UP 3 +301839 4 0 +302092 DOWN 3 +302092 0 0 +302121 UP 3 +302121 4 0 +302675 DOWN 3 +302675 0 0 +302688 UP 3 +302688 4 0 +303404 DOWN 3 +303404 0 0 +305043 UP 4 +305043 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305071 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +305371 8 0 +307632 DOWN 4 +307632 0 0 +~~~ +307648 contingency = 0 +307648 trialThresh = 100 +307649 timeMaxOut = 30 +307649 timeElapsed = 6 +307649 totalPokes = 43 +307649 totalRewards = 26 +307649 countPokes1 = 4 +307650 countRewards1 = 0 +307650 leafProbs1 = 20 +307651 countPokes2 = 5 +307651 countRewards2 = 3 +307665 leafProbs2 = 50 +307665 countPokes3 = 13 +307665 countRewards3 = 10 +307666 leafProbs3 = 80 +307666 countPokes4 = 15 +307667 countRewards4 = 9 +307667 leafProbs4 = 50 +307667 countPokes5 = 3 +307667 countRewards5 = 1 +307668 leafProbs5 = 20 +307681 countPokes6 = 3 +307682 countRewards6 = 3 +307682 leafProbs6 = 80 +~~~ +309349 UP 3 +309349 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309382 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +309549 DOWN 3 +309549 0 256 +309557 UP 3 +309557 4 256 +~~~ +309563 contingency = 0 +309563 trialThresh = 100 +309564 timeMaxOut = 30 +309564 timeElapsed = 6 +309565 totalPokes = 44 +309565 totalRewards = 27 +309565 countPokes1 = 4 +309565 countRewards1 = 0 +309566 leafProbs1 = 20 +309566 countPokes2 = 5 +309567 countRewards2 = 3 +309580 leafProbs2 = 50 +309581 countPokes3 = 14 +309581 countRewards3 = 11 +309581 leafProbs3 = 80 +309581 countPokes4 = 15 +309582 countRewards4 = 9 +309582 leafProbs4 = 50 +309583 countPokes5 = 3 +309583 countRewards5 = 1 +309583 leafProbs5 = 20 +309597 countPokes6 = 3 +309597 countRewards6 = 3 +309598 leafProbs6 = 80 +~~~ +309635 DOWN 3 +309635 0 256 +309639 UP 3 +309639 4 256 +309682 4 0 +309725 DOWN 3 +309725 0 0 +309726 UP 3 +309726 4 0 +312213 DOWN 3 +312213 0 0 +312232 UP 3 +312232 4 0 +312326 DOWN 3 +312326 0 0 +312335 UP 3 +312335 4 0 +312541 DOWN 3 +312541 0 0 +312562 UP 3 +312562 4 0 +312653 DOWN 3 +312653 0 0 +312691 UP 3 +312691 4 0 +312766 DOWN 3 +312766 0 0 +312797 UP 3 +312797 4 0 +312893 DOWN 3 +312893 0 0 +312897 UP 3 +312897 4 0 +314219 DOWN 3 +314219 0 0 +314224 UP 3 +314224 4 0 +314326 DOWN 3 +314326 0 0 +314331 UP 3 +314331 4 0 +314611 DOWN 3 +314611 0 0 +314621 UP 3 +314621 4 0 +314714 DOWN 3 +314714 0 0 +314726 UP 3 +314726 4 0 +314739 DOWN 3 +314739 0 0 +314773 UP 3 +314773 4 0 +315565 DOWN 3 +315565 0 0 +315591 UP 3 +315591 4 0 +315600 DOWN 3 +315600 0 0 +315603 UP 3 +315603 4 0 +315657 DOWN 3 +315657 0 0 +315670 UP 3 +315670 4 0 +315681 DOWN 3 +315681 0 0 +315711 UP 3 +315711 4 0 +315764 DOWN 3 +315764 0 0 +315779 UP 3 +315779 4 0 +315809 DOWN 3 +315809 0 0 +315823 UP 3 +315823 4 0 +315875 DOWN 3 +315875 0 0 +315879 UP 3 +315879 4 0 +315966 DOWN 3 +315966 0 0 +315979 UP 3 +315979 4 0 +315995 DOWN 3 +315995 0 0 +316025 UP 3 +316025 4 0 +316401 DOWN 3 +316401 0 0 +316403 UP 3 +316403 4 0 +316434 DOWN 3 +316434 0 0 +316445 UP 3 +316445 4 0 +316452 DOWN 3 +316452 0 0 +316464 UP 3 +316464 4 0 +316507 DOWN 3 +316507 0 0 +316514 UP 3 +316514 4 0 +316543 DOWN 3 +316543 0 0 +316551 UP 3 +316551 4 0 +316560 DOWN 3 +316560 0 0 +316565 UP 3 +316565 4 0 +316617 DOWN 3 +316617 0 0 +316621 UP 3 +316621 4 0 +316741 DOWN 3 +316741 0 0 +319008 UP 4 +319008 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +319429 DOWN 4 +319429 0 0 +~~~ +319453 contingency = 0 +319454 trialThresh = 100 +319454 timeMaxOut = 30 +319454 timeElapsed = 6 +319455 totalPokes = 45 +319455 totalRewards = 27 +319455 countPokes1 = 4 +319455 countRewards1 = 0 +319456 leafProbs1 = 20 +319456 countPokes2 = 5 +319457 countRewards2 = 3 +319471 leafProbs2 = 50 +319471 countPokes3 = 14 +319471 countRewards3 = 11 +319471 leafProbs3 = 80 +319472 countPokes4 = 16 +319472 countRewards4 = 9 +319473 leafProbs4 = 50 +319473 countPokes5 = 3 +319473 countRewards5 = 1 +319473 leafProbs5 = 20 +319487 countPokes6 = 3 +319487 countRewards6 = 3 +319488 leafProbs6 = 80 +~~~ +320895 UP 3 +320895 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +320921 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +321201 DOWN 3 +321201 0 256 +321220 0 0 +~~~ +321222 contingency = 0 +321222 trialThresh = 100 +321223 timeMaxOut = 30 +321223 timeElapsed = 6 +321223 totalPokes = 46 +321223 totalRewards = 28 +321224 countPokes1 = 4 +321224 countRewards1 = 0 +321225 leafProbs1 = 20 +321225 countPokes2 = 5 +321225 countRewards2 = 3 +321239 leafProbs2 = 50 +321239 countPokes3 = 15 +321240 countRewards3 = 12 +321240 leafProbs3 = 80 +321241 countPokes4 = 16 +321241 countRewards4 = 9 +321241 leafProbs4 = 50 +321241 countPokes5 = 3 +321242 countRewards5 = 1 +321242 leafProbs5 = 20 +321256 countPokes6 = 3 +321256 countRewards6 = 3 +321257 leafProbs6 = 80 +~~~ +321257 UP 3 +321257 4 0 +321297 DOWN 3 +321297 0 0 +321312 UP 3 +321312 4 0 +321389 DOWN 3 +321389 0 0 +321393 UP 3 +321393 4 0 +322799 DOWN 3 +322799 0 0 +322817 UP 3 +322817 4 0 +322907 DOWN 3 +322907 0 0 +322914 UP 3 +322914 4 0 +324989 DOWN 3 +324989 0 0 +324993 UP 3 +324993 4 0 +325025 DOWN 3 +325025 0 0 +325032 UP 3 +325032 4 0 +325088 DOWN 3 +325088 0 0 +325090 UP 3 +325090 4 0 +325128 DOWN 3 +325128 0 0 +325136 UP 3 +325136 4 0 +325234 DOWN 3 +325234 0 0 +325240 UP 3 +325240 4 0 +325553 DOWN 3 +325553 0 0 +325559 UP 3 +325559 4 0 +325563 DOWN 3 +325563 0 0 +325586 UP 3 +325586 4 0 +325621 DOWN 3 +325621 0 0 +325629 UP 3 +325629 4 0 +325732 DOWN 3 +325732 0 0 +325747 UP 3 +325747 4 0 +325776 DOWN 3 +325776 0 0 +325782 UP 3 +325782 4 0 +325786 DOWN 3 +325786 0 0 +325797 UP 3 +325797 4 0 +325849 DOWN 3 +325849 0 0 +325855 UP 3 +325855 4 0 +325991 DOWN 3 +325991 0 0 +325994 UP 3 +325994 4 0 +326055 DOWN 3 +326055 0 0 +327705 UP 4 +327705 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +327740 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +328040 8 0 +330977 DOWN 4 +330977 0 0 +~~~ +330998 contingency = 0 +330998 trialThresh = 100 +330999 timeMaxOut = 30 +330999 timeElapsed = 6 +330999 totalPokes = 47 +330999 totalRewards = 29 +331000 countPokes1 = 4 +331000 countRewards1 = 0 +331001 leafProbs1 = 20 +331001 countPokes2 = 5 +331001 countRewards2 = 3 +331015 leafProbs2 = 50 +331015 countPokes3 = 15 +331016 countRewards3 = 12 +331016 leafProbs3 = 80 +331017 countPokes4 = 17 +331017 countRewards4 = 10 +331017 leafProbs4 = 50 +331017 countPokes5 = 3 +331017 countRewards5 = 1 +331018 leafProbs5 = 20 +331032 countPokes6 = 3 +331032 countRewards6 = 3 +331033 leafProbs6 = 80 +~~~ +334094 UP 3 +334094 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334126 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +334275 DOWN 3 +334275 0 256 +334289 UP 3 +334289 4 256 +~~~ +334292 contingency = 0 +334292 trialThresh = 100 +334292 timeMaxOut = 30 +334293 timeElapsed = 7 +334293 totalPokes = 48 +334293 totalRewards = 30 +334293 countPokes1 = 4 +334294 countRewards1 = 0 +334294 leafProbs1 = 20 +334295 countPokes2 = 5 +334295 countRewards2 = 3 +334309 leafProbs2 = 50 +334309 countPokes3 = 16 +334309 countRewards3 = 13 +334310 leafProbs3 = 80 +334310 countPokes4 = 17 +334311 countRewards4 = 10 +334311 leafProbs4 = 50 +334311 countPokes5 = 3 +334311 countRewards5 = 1 +334312 leafProbs5 = 20 +334325 countPokes6 = 3 +334326 countRewards6 = 3 +334326 leafProbs6 = 80 +~~~ +334426 4 0 +337209 DOWN 3 +337209 0 0 +337222 UP 3 +337222 4 0 +337313 DOWN 3 +337313 0 0 +337337 UP 3 +337337 4 0 +338467 DOWN 3 +338467 0 0 +338482 UP 3 +338482 4 0 +339618 DOWN 3 +339618 0 0 +339661 UP 3 +339661 4 0 +339700 DOWN 3 +339700 0 0 +341240 UP 4 +341240 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +341758 DOWN 4 +341758 0 0 +~~~ +341788 contingency = 0 +341788 trialThresh = 100 +341789 timeMaxOut = 30 +341789 timeElapsed = 7 +341789 totalPokes = 49 +341790 totalRewards = 30 +341790 countPokes1 = 4 +341790 countRewards1 = 0 +341790 leafProbs1 = 20 +341791 countPokes2 = 5 +341791 countRewards2 = 3 +341805 leafProbs2 = 50 +341806 countPokes3 = 16 +341806 countRewards3 = 13 +341806 leafProbs3 = 80 +341806 countPokes4 = 18 +341807 countRewards4 = 10 +341807 leafProbs4 = 50 +341808 countPokes5 = 3 +341808 countRewards5 = 1 +341808 leafProbs5 = 20 +341822 countPokes6 = 3 +341822 countRewards6 = 3 +341822 leafProbs6 = 80 +~~~ +343152 UP 3 +343152 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343176 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +343347 DOWN 3 +343347 0 256 +343365 UP 3 +343365 4 256 +~~~ +343369 contingency = 0 +343369 trialThresh = 100 +343370 timeMaxOut = 30 +343370 timeElapsed = 7 +343370 totalPokes = 50 +343370 totalRewards = 31 +343370 countPokes1 = 4 +343371 countRewards1 = 0 +343371 leafProbs1 = 20 +343372 countPokes2 = 5 +343372 countRewards2 = 3 +343386 leafProbs2 = 50 +343386 countPokes3 = 17 +343386 countRewards3 = 14 +343387 leafProbs3 = 80 +343387 countPokes4 = 18 +343388 countRewards4 = 10 +343388 leafProbs4 = 50 +343388 countPokes5 = 3 +343388 countRewards5 = 1 +343389 leafProbs5 = 20 +343402 countPokes6 = 3 +343403 countRewards6 = 3 +343403 leafProbs6 = 80 +~~~ +343437 DOWN 3 +343437 0 256 +343444 UP 3 +343444 4 256 +343476 4 0 +343528 DOWN 3 +343528 0 0 +343534 UP 3 +343534 4 0 +343613 DOWN 3 +343613 0 0 +343619 UP 3 +343619 4 0 +344948 DOWN 3 +344948 0 0 +344966 UP 3 +344966 4 0 +345053 DOWN 3 +345053 0 0 +345060 UP 3 +345060 4 0 +345678 DOWN 3 +345678 0 0 +345694 UP 3 +345694 4 0 +345781 DOWN 3 +345781 0 0 +345788 UP 3 +345788 4 0 +346487 DOWN 3 +346487 0 0 +346494 UP 3 +346494 4 0 +346563 DOWN 3 +346563 0 0 +346639 UP 3 +346639 4 0 +346673 DOWN 3 +346672 0 0 +346706 UP 3 +346706 4 0 +346712 DOWN 3 +346712 0 0 +346724 UP 3 +346724 4 0 +346822 DOWN 3 +346822 0 0 +346830 UP 3 +346830 4 0 +346839 DOWN 3 +346838 0 0 +346842 UP 3 +346842 4 0 +347558 DOWN 3 +347558 0 0 +347593 UP 3 +347593 4 0 +347625 DOWN 3 +347624 0 0 +347677 UP 3 +347677 4 0 +347701 DOWN 3 +347701 0 0 +349490 UP 4 +349490 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349515 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +349815 8 0 +352301 DOWN 4 +352301 0 0 +~~~ +352330 contingency = 0 +352330 trialThresh = 100 +352330 timeMaxOut = 30 +352330 timeElapsed = 7 +352331 totalPokes = 51 +352331 totalRewards = 32 +352332 countPokes1 = 4 +352332 countRewards1 = 0 +352332 leafProbs1 = 20 +352332 countPokes2 = 5 +352333 countRewards2 = 3 +352347 leafProbs2 = 50 +352347 countPokes3 = 17 +352347 countRewards3 = 14 +352348 leafProbs3 = 80 +352348 countPokes4 = 19 +352348 countRewards4 = 11 +352348 leafProbs4 = 50 +352349 countPokes5 = 3 +352349 countRewards5 = 1 +352350 leafProbs5 = 20 +352364 countPokes6 = 3 +352364 countRewards6 = 3 +352364 leafProbs6 = 80 +~~~ +352364 UP 4 +352364 8 0 +352375 DOWN 4 +352375 0 0 +352418 UP 4 +352418 8 0 +352712 DOWN 4 +352712 0 0 +354803 UP 3 +354803 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354828 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +354970 DOWN 3 +354970 0 256 +354983 UP 3 +354983 4 256 +~~~ +354997 contingency = 0 +354997 trialThresh = 100 +354998 timeMaxOut = 30 +354998 timeElapsed = 7 +354998 totalPokes = 52 +354998 totalRewards = 33 +354998 countPokes1 = 4 +354999 countRewards1 = 0 +354999 leafProbs1 = 20 +355000 countPokes2 = 5 +355000 countRewards2 = 3 +355014 leafProbs2 = 50 +355014 countPokes3 = 18 +355014 countRewards3 = 15 +355015 leafProbs3 = 80 +355015 countPokes4 = 19 +355016 countRewards4 = 11 +355016 leafProbs4 = 50 +355016 countPokes5 = 3 +355016 countRewards5 = 1 +355017 leafProbs5 = 20 +355031 countPokes6 = 3 +355031 countRewards6 = 3 +355031 leafProbs6 = 80 +~~~ +355056 DOWN 3 +355056 0 256 +355068 UP 3 +355068 4 256 +355128 4 0 +355140 DOWN 3 +355140 0 0 +355148 UP 3 +355148 4 0 +356468 DOWN 3 +356468 0 0 +356488 UP 3 +356488 4 0 +358317 DOWN 3 +358317 0 0 +358320 UP 3 +358320 4 0 +358358 DOWN 3 +358358 0 0 +358364 UP 3 +358364 4 0 +358425 DOWN 3 +358425 0 0 +358428 UP 3 +358428 4 0 +359181 DOWN 3 +359181 0 0 +359208 UP 3 +359208 4 0 +359312 DOWN 3 +359312 0 0 +359320 UP 3 +359320 4 0 +359378 DOWN 3 +359378 0 0 +359390 UP 3 +359390 4 0 +359406 DOWN 3 +359406 0 0 +359441 UP 3 +359441 4 0 +359472 DOWN 3 +359472 0 0 +359547 UP 3 +359547 4 0 +359588 DOWN 3 +359588 0 0 +359595 UP 3 +359595 4 0 +359626 DOWN 3 +359626 0 0 +359628 UP 3 +359628 4 0 +359690 DOWN 3 +359690 0 0 +359693 UP 3 +359693 4 0 +360138 DOWN 3 +360138 0 0 +360159 UP 3 +360159 4 0 +360230 DOWN 3 +360230 0 0 +361882 UP 4 +361882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +361918 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +362218 8 0 +362283 DOWN 4 +362283 0 0 +362288 UP 4 +362288 8 0 +~~~ +362300 contingency = 0 +362300 trialThresh = 100 +362301 timeMaxOut = 30 +362301 timeElapsed = 7 +362302 totalPokes = 53 +362302 totalRewards = 34 +362302 countPokes1 = 4 +362302 countRewards1 = 0 +362303 leafProbs1 = 20 +362303 countPokes2 = 5 +362304 countRewards2 = 3 +362317 leafProbs2 = 50 +362318 countPokes3 = 18 +362318 countRewards3 = 15 +362318 leafProbs3 = 80 +362318 countPokes4 = 20 +362319 countRewards4 = 12 +362319 leafProbs4 = 50 +362320 countPokes5 = 3 +362320 countRewards5 = 1 +362320 leafProbs5 = 20 +362334 countPokes6 = 3 +362334 countRewards6 = 3 +362335 leafProbs6 = 80 +~~~ +364826 DOWN 4 +364826 0 0 +366280 UP 3 +366280 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366309 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +366444 DOWN 3 +366444 0 256 +366456 UP 3 +366456 4 256 +~~~ +366468 contingency = 0 +366468 trialThresh = 100 +366468 timeMaxOut = 30 +366469 timeElapsed = 7 +366469 totalPokes = 54 +366470 totalRewards = 35 +366470 countPokes1 = 4 +366470 countRewards1 = 0 +366470 leafProbs1 = 20 +366471 countPokes2 = 5 +366471 countRewards2 = 3 +366485 leafProbs2 = 50 +366486 countPokes3 = 19 +366486 countRewards3 = 16 +366486 leafProbs3 = 80 +366486 countPokes4 = 20 +366487 countRewards4 = 12 +366487 leafProbs4 = 50 +366488 countPokes5 = 3 +366488 countRewards5 = 1 +366488 leafProbs5 = 20 +366502 countPokes6 = 3 +366502 countRewards6 = 3 +366502 leafProbs6 = 80 +~~~ +366535 DOWN 3 +366535 0 256 +366541 UP 3 +366541 4 256 +366609 4 0 +366620 DOWN 3 +366620 0 0 +366624 UP 3 +366624 4 0 +368058 DOWN 3 +368058 0 0 +368076 UP 3 +368076 4 0 +368908 DOWN 3 +368908 0 0 +368925 UP 3 +368925 4 0 +369537 DOWN 3 +369537 0 0 +369574 UP 3 +369574 4 0 +369646 DOWN 3 +369646 0 0 +369666 UP 3 +369666 4 0 +370575 DOWN 3 +370575 0 0 +370586 UP 3 +370586 4 0 +370678 DOWN 3 +370678 0 0 +370696 UP 3 +370696 4 0 +370806 DOWN 3 +370806 0 0 +370811 UP 3 +370811 4 0 +370908 DOWN 3 +370908 0 0 +370914 UP 3 +370914 4 0 +371213 DOWN 3 +371213 0 0 +371224 UP 3 +371224 4 0 +371281 DOWN 3 +371281 0 0 +372824 UP 4 +372824 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +372859 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +373159 8 0 +375606 DOWN 4 +375606 0 0 +~~~ +375625 contingency = 0 +375626 trialThresh = 100 +375626 timeMaxOut = 30 +375626 timeElapsed = 8 +375626 totalPokes = 55 +375626 totalRewards = 36 +375627 countPokes1 = 4 +375627 countRewards1 = 0 +375628 leafProbs1 = 20 +375628 countPokes2 = 5 +375628 countRewards2 = 3 +375642 leafProbs2 = 50 +375642 countPokes3 = 19 +375643 countRewards3 = 16 +375643 leafProbs3 = 80 +375644 countPokes4 = 21 +375644 countRewards4 = 13 +375644 leafProbs4 = 50 +375644 countPokes5 = 3 +375645 countRewards5 = 1 +375645 leafProbs5 = 20 +375659 countPokes6 = 3 +375659 countRewards6 = 3 +375660 leafProbs6 = 80 +~~~ +377337 UP 3 +377337 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377362 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +377530 DOWN 3 +377530 0 256 +~~~ +377543 contingency = 0 +377543 trialThresh = 100 +377544 timeMaxOut = 30 +377544 timeElapsed = 8 +377544 totalPokes = 56 +377544 totalRewards = 37 +377545 countPokes1 = 4 +377545 countRewards1 = 0 +377546 leafProbs1 = 20 +377546 countPokes2 = 5 +377546 countRewards2 = 3 +377560 leafProbs2 = 50 +377560 countPokes3 = 20 +377560 countRewards3 = 17 +377561 leafProbs3 = 80 +377561 countPokes4 = 21 +377562 countRewards4 = 13 +377562 leafProbs4 = 50 +377562 countPokes5 = 3 +377562 countRewards5 = 1 +377563 leafProbs5 = 20 +377577 countPokes6 = 3 +377577 countRewards6 = 3 +377578 leafProbs6 = 80 +~~~ +377582 UP 3 +377582 4 256 +377633 DOWN 3 +377633 0 256 +377642 UP 3 +377642 4 256 +377662 4 0 +377719 DOWN 3 +377719 0 0 +377731 UP 3 +377731 4 0 +377778 DOWN 3 +377778 0 0 +377784 UP 3 +377784 4 0 +377806 DOWN 3 +377806 0 0 +377812 UP 3 +377812 4 0 +379314 DOWN 3 +379314 0 0 +379328 UP 3 +379328 4 0 +382348 DOWN 3 +382348 0 0 +382351 UP 3 +382351 4 0 +382965 DOWN 3 +382965 0 0 +383046 UP 3 +383046 4 0 +383635 DOWN 3 +383635 0 0 +391712 UP 4 +391712 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +391901 DOWN 4 +391901 0 0 +~~~ +391927 contingency = 0 +391928 trialThresh = 100 +391928 timeMaxOut = 30 +391928 timeElapsed = 8 +391928 totalPokes = 57 +391929 totalRewards = 37 +391929 countPokes1 = 4 +391930 countRewards1 = 0 +391930 leafProbs1 = 20 +391930 countPokes2 = 5 +391930 countRewards2 = 3 +391944 leafProbs2 = 50 +391944 countPokes3 = 20 +391945 countRewards3 = 17 +391945 leafProbs3 = 80 +391946 countPokes4 = 22 +391946 countRewards4 = 13 +391946 leafProbs4 = 50 +391946 countPokes5 = 3 +391947 countRewards5 = 1 +391947 leafProbs5 = 20 +391961 countPokes6 = 3 +391962 countRewards6 = 3 +391962 leafProbs6 = 80 +~~~ +391962 UP 4 +391962 8 0 +392353 DOWN 4 +392353 0 0 +392670 UP 4 +392670 8 0 +393102 DOWN 4 +393102 0 0 +394720 UP 3 +394720 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394747 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +394938 DOWN 3 +394938 0 256 +394963 UP 3 +394963 4 256 +~~~ +394974 contingency = 0 +394974 trialThresh = 100 +394974 timeMaxOut = 30 +394974 timeElapsed = 8 +394975 totalPokes = 58 +394975 totalRewards = 38 +394975 countPokes1 = 4 +394975 countRewards1 = 0 +394975 leafProbs1 = 20 +394976 countPokes2 = 5 +394976 countRewards2 = 3 +394990 leafProbs2 = 50 +394991 countPokes3 = 21 +394991 countRewards3 = 18 +394991 leafProbs3 = 80 +394991 countPokes4 = 22 +394992 countRewards4 = 13 +394992 leafProbs4 = 50 +394993 countPokes5 = 3 +394993 countRewards5 = 1 +394993 leafProbs5 = 20 +395007 countPokes6 = 3 +395007 countRewards6 = 3 +395008 leafProbs6 = 80 +~~~ +395025 DOWN 3 +395025 0 256 +395032 UP 3 +395032 4 256 +395047 4 0 +395109 DOWN 3 +395109 0 0 +395117 UP 3 +395117 4 0 +396385 DOWN 3 +396385 0 0 +396391 UP 3 +396391 4 0 +396485 DOWN 3 +396485 0 0 +396488 UP 3 +396488 4 0 +399053 DOWN 3 +399053 0 0 +399074 UP 3 +399074 4 0 +399081 DOWN 3 +399081 0 0 +399087 UP 3 +399087 4 0 +399145 DOWN 3 +399145 0 0 +399155 UP 3 +399155 4 0 +399170 DOWN 3 +399170 0 0 +399224 UP 3 +399224 4 0 +399237 DOWN 3 +399237 0 0 +400753 UP 4 +400753 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +400791 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +401091 8 0 +403299 DOWN 4 +403299 0 0 +403316 UP 4 +403316 8 0 +~~~ +403329 contingency = 0 +403330 trialThresh = 100 +403330 timeMaxOut = 30 +403331 timeElapsed = 8 +403331 totalPokes = 59 +403331 totalRewards = 39 +403331 countPokes1 = 4 +403332 countRewards1 = 0 +403332 leafProbs1 = 20 +403333 countPokes2 = 5 +403333 countRewards2 = 3 +403347 leafProbs2 = 50 +403347 countPokes3 = 21 +403347 countRewards3 = 18 +403348 leafProbs3 = 80 +403348 countPokes4 = 23 +403349 countRewards4 = 14 +403349 leafProbs4 = 50 +403349 countPokes5 = 3 +403349 countRewards5 = 1 +403349 leafProbs5 = 20 +403363 countPokes6 = 3 +403364 countRewards6 = 3 +403364 leafProbs6 = 80 +~~~ +403427 DOWN 4 +403427 0 0 +403431 UP 4 +403431 8 0 +403492 DOWN 4 +403492 0 0 +403497 UP 4 +403497 8 0 +403516 DOWN 4 +403516 0 0 +403557 UP 4 +403557 8 0 +403563 DOWN 4 +403563 0 0 +405065 UP 3 +405065 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405093 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +405286 DOWN 3 +405286 0 256 +405291 UP 3 +405291 4 256 +~~~ +405311 contingency = 0 +405311 trialThresh = 100 +405311 timeMaxOut = 30 +405311 timeElapsed = 8 +405311 totalPokes = 60 +405312 totalRewards = 40 +405312 countPokes1 = 4 +405313 countRewards1 = 0 +405313 leafProbs1 = 20 +405313 countPokes2 = 5 +405313 countRewards2 = 3 +405327 leafProbs2 = 50 +405328 countPokes3 = 22 +405328 countRewards3 = 19 +405329 leafProbs3 = 80 +405329 countPokes4 = 23 +405329 countRewards4 = 14 +405329 leafProbs4 = 50 +405330 countPokes5 = 3 +405330 countRewards5 = 1 +405331 leafProbs5 = 20 +405344 countPokes6 = 3 +405345 countRewards6 = 3 +405345 leafProbs6 = 80 +~~~ +405345 DOWN 3 +405345 0 256 +405348 UP 3 +405348 4 256 +405392 4 0 +405421 DOWN 3 +405421 0 0 +405433 UP 3 +405433 4 0 +409527 DOWN 3 +409527 0 0 +411514 UP 4 +411514 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411547 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +411847 8 0 +413959 DOWN 4 +413959 0 0 +~~~ +413973 contingency = 0 +413974 trialThresh = 100 +413974 timeMaxOut = 30 +413975 timeElapsed = 9 +413975 totalPokes = 61 +413975 totalRewards = 41 +413975 countPokes1 = 4 +413976 countRewards1 = 0 +413976 leafProbs1 = 20 +413977 countPokes2 = 5 +413977 countRewards2 = 3 +413991 leafProbs2 = 50 +413991 countPokes3 = 22 +413991 countRewards3 = 19 +413992 leafProbs3 = 80 +413992 countPokes4 = 24 +413992 countRewards4 = 15 +413993 leafProbs4 = 50 +413993 countPokes5 = 3 +413993 countRewards5 = 1 +413993 leafProbs5 = 20 +414007 countPokes6 = 3 +414008 countRewards6 = 3 +414008 leafProbs6 = 80 +~~~ +414009 UP 4 +414009 8 0 +414075 DOWN 4 +414075 0 0 +414079 UP 4 +414079 8 0 +414369 DOWN 4 +414369 0 0 +415901 UP 3 +415901 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +415923 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +416088 DOWN 3 +416088 0 256 +416094 UP 3 +416094 4 256 +~~~ +416107 contingency = 0 +416107 trialThresh = 100 +416108 timeMaxOut = 30 +416108 timeElapsed = 9 +416108 totalPokes = 62 +416109 totalRewards = 42 +416109 countPokes1 = 4 +416109 countRewards1 = 0 +416109 leafProbs1 = 20 +416110 countPokes2 = 5 +416110 countRewards2 = 3 +416124 leafProbs2 = 50 +416125 countPokes3 = 23 +416125 countRewards3 = 20 +416125 leafProbs3 = 80 +416125 countPokes4 = 24 +416126 countRewards4 = 15 +416126 leafProbs4 = 50 +416127 countPokes5 = 3 +416127 countRewards5 = 1 +416127 leafProbs5 = 20 +416141 countPokes6 = 3 +416141 countRewards6 = 3 +416141 leafProbs6 = 80 +~~~ +416176 DOWN 3 +416176 0 256 +416178 UP 3 +416178 4 256 +416223 4 0 +416255 DOWN 3 +416255 0 0 +416264 UP 3 +416264 4 0 +418621 DOWN 3 +418621 0 0 +418635 UP 3 +418635 4 0 +419042 DOWN 3 +419042 0 0 +420627 UP 4 +420627 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420649 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +420949 8 0 +423039 DOWN 4 +423039 0 0 +~~~ +423052 contingency = 0 +423052 trialThresh = 100 +423053 timeMaxOut = 30 +423053 timeElapsed = 9 +423053 totalPokes = 63 +423053 totalRewards = 43 +423054 countPokes1 = 4 +423054 countRewards1 = 0 +423055 leafProbs1 = 20 +423055 countPokes2 = 5 +423055 countRewards2 = 3 +423069 leafProbs2 = 50 +423069 countPokes3 = 23 +423069 countRewards3 = 20 +423070 leafProbs3 = 80 +423070 countPokes4 = 25 +423071 countRewards4 = 16 +423071 leafProbs4 = 50 +423071 countPokes5 = 3 +423071 countRewards5 = 1 +423072 leafProbs5 = 20 +423086 countPokes6 = 3 +423086 countRewards6 = 3 +423087 leafProbs6 = 80 +~~~ +423087 UP 4 +423087 8 0 +423105 DOWN 4 +423105 0 0 +425605 UP 3 +425605 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425635 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +425756 DOWN 3 +425756 0 256 +~~~ +425774 contingency = 0 +425774 trialThresh = 100 +425774 timeMaxOut = 30 +425775 timeElapsed = 9 +425775 totalPokes = 64 +425775 totalRewards = 44 +425775 countPokes1 = 4 +425776 countRewards1 = 0 +425776 leafProbs1 = 20 +425777 countPokes2 = 5 +425777 countRewards2 = 3 +425791 leafProbs2 = 50 +425791 countPokes3 = 24 +425791 countRewards3 = 21 +425792 leafProbs3 = 80 +425792 countPokes4 = 25 +425793 countRewards4 = 16 +425793 leafProbs4 = 50 +425793 countPokes5 = 3 +425793 countRewards5 = 1 +425794 leafProbs5 = 20 +425807 countPokes6 = 3 +425808 countRewards6 = 3 +425808 leafProbs6 = 80 +~~~ +425809 UP 3 +425809 4 256 +425935 4 0 +427982 DOWN 3 +427982 0 0 +427990 UP 3 +427990 4 0 +428051 DOWN 3 +428051 0 0 +428056 UP 3 +428056 4 0 +428276 DOWN 3 +428276 0 0 +429922 UP 4 +429922 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +429960 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +430260 8 0 +431919 DOWN 4 +431919 0 0 +431924 UP 4 +431924 8 0 +~~~ +431935 contingency = 0 +431935 trialThresh = 100 +431935 timeMaxOut = 30 +431935 timeElapsed = 9 +431936 totalPokes = 65 +431936 totalRewards = 45 +431937 countPokes1 = 4 +431937 countRewards1 = 0 +431937 leafProbs1 = 20 +431937 countPokes2 = 5 +431938 countRewards2 = 3 +431952 leafProbs2 = 50 +431952 countPokes3 = 24 +431953 countRewards3 = 21 +431953 leafProbs3 = 80 +431953 countPokes4 = 26 +431953 countRewards4 = 17 +431953 leafProbs4 = 50 +431954 countPokes5 = 3 +431954 countRewards5 = 1 +431955 leafProbs5 = 20 +431969 countPokes6 = 3 +431969 countRewards6 = 3 +431969 leafProbs6 = 80 +~~~ +432523 DOWN 4 +432523 0 0 +434173 UP 3 +434173 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434194 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +434349 DOWN 3 +434349 0 256 +434353 UP 3 +434353 4 256 +~~~ +434375 contingency = 0 +434375 trialThresh = 100 +434375 timeMaxOut = 30 +434376 timeElapsed = 9 +434376 totalPokes = 66 +434377 totalRewards = 46 +434377 countPokes1 = 4 +434377 countRewards1 = 0 +434377 leafProbs1 = 20 +434378 countPokes2 = 5 +434378 countRewards2 = 3 +434392 leafProbs2 = 50 +434393 countPokes3 = 25 +434393 countRewards3 = 22 +434393 leafProbs3 = 80 +434393 countPokes4 = 26 +434394 countRewards4 = 17 +434394 leafProbs4 = 50 +434395 countPokes5 = 3 +434395 countRewards5 = 1 +434395 leafProbs5 = 20 +434409 countPokes6 = 3 +434409 countRewards6 = 3 +434409 leafProbs6 = 80 +~~~ +434494 4 0 +435792 DOWN 3 +435792 0 0 +435799 UP 3 +435799 4 0 +436826 DOWN 3 +436826 0 0 +436844 UP 3 +436844 4 0 +437280 DOWN 3 +437279 0 0 +437311 UP 3 +437311 4 0 +437381 DOWN 3 +437381 0 0 +437423 UP 3 +437423 4 0 +437511 DOWN 3 +437511 0 0 +437522 UP 3 +437522 4 0 +437699 DOWN 3 +437699 0 0 +441205 UP 4 +441205 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441227 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +441527 8 0 +443499 DOWN 4 +443499 0 0 +~~~ +443512 contingency = 0 +443513 trialThresh = 100 +443513 timeMaxOut = 30 +443513 timeElapsed = 9 +443513 totalPokes = 67 +443514 totalRewards = 47 +443514 countPokes1 = 4 +443515 countRewards1 = 0 +443515 leafProbs1 = 20 +443515 countPokes2 = 5 +443515 countRewards2 = 3 +443529 leafProbs2 = 50 +443529 countPokes3 = 25 +443530 countRewards3 = 22 +443530 leafProbs3 = 80 +443531 countPokes4 = 27 +443531 countRewards4 = 18 +443531 leafProbs4 = 50 +443531 countPokes5 = 3 +443532 countRewards5 = 1 +443532 leafProbs5 = 20 +443546 countPokes6 = 3 +443547 countRewards6 = 3 +443547 leafProbs6 = 80 +~~~ +445023 UP 3 +445023 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445051 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +445198 DOWN 3 +445198 0 256 +445203 UP 3 +445203 4 256 +~~~ +445219 contingency = 0 +445219 trialThresh = 100 +445220 timeMaxOut = 30 +445220 timeElapsed = 9 +445221 totalPokes = 68 +445221 totalRewards = 48 +445221 countPokes1 = 4 +445221 countRewards1 = 0 +445222 leafProbs1 = 20 +445222 countPokes2 = 5 +445223 countRewards2 = 3 +445237 leafProbs2 = 50 +445237 countPokes3 = 26 +445237 countRewards3 = 23 +445237 leafProbs3 = 80 +445238 countPokes4 = 27 +445238 countRewards4 = 18 +445238 leafProbs4 = 50 +445239 countPokes5 = 3 +445239 countRewards5 = 1 +445239 leafProbs5 = 20 +445253 countPokes6 = 3 +445253 countRewards6 = 3 +445254 leafProbs6 = 80 +~~~ +445351 4 0 +446564 DOWN 3 +446564 0 0 +446580 UP 3 +446580 4 0 +446666 DOWN 3 +446666 0 0 +446672 UP 3 +446672 4 0 +447271 DOWN 3 +447271 0 0 +447281 UP 3 +447281 4 0 +447399 DOWN 3 +447399 0 0 +447401 UP 3 +447401 4 0 +447585 DOWN 3 +447585 0 0 +447615 UP 3 +447615 4 0 +447643 DOWN 3 +447643 0 0 +450872 UP 3 +450872 4 0 +451134 DOWN 3 +451134 0 0 +458037 UP 3 +458037 4 0 +458053 DOWN 3 +458053 0 0 +460643 UP 4 +460643 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460679 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +460979 8 0 +461063 DOWN 4 +461063 0 0 +461068 UP 4 +461068 8 0 +~~~ +461088 contingency = 0 +461088 trialThresh = 100 +461089 timeMaxOut = 30 +461089 timeElapsed = 10 +461090 totalPokes = 69 +461090 totalRewards = 49 +461090 countPokes1 = 4 +461090 countRewards1 = 0 +461090 leafProbs1 = 20 +461091 countPokes2 = 5 +461091 countRewards2 = 3 +461105 leafProbs2 = 50 +461106 countPokes3 = 26 +461106 countRewards3 = 23 +461106 leafProbs3 = 80 +461106 countPokes4 = 28 +461107 countRewards4 = 19 +461107 leafProbs4 = 50 +461108 countPokes5 = 3 +461108 countRewards5 = 1 +461108 leafProbs5 = 20 +461122 countPokes6 = 3 +461122 countRewards6 = 3 +461123 leafProbs6 = 80 +~~~ +462945 DOWN 4 +462945 0 0 +464503 UP 3 +464503 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464536 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +464675 DOWN 3 +464675 0 256 +464690 UP 3 +464690 4 256 +~~~ +464696 contingency = 0 +464696 trialThresh = 100 +464696 timeMaxOut = 30 +464697 timeElapsed = 10 +464697 totalPokes = 70 +464698 totalRewards = 50 +464698 countPokes1 = 4 +464698 countRewards1 = 0 +464698 leafProbs1 = 20 +464699 countPokes2 = 5 +464699 countRewards2 = 3 +464713 leafProbs2 = 50 +464714 countPokes3 = 27 +464714 countRewards3 = 24 +464714 leafProbs3 = 80 +464714 countPokes4 = 28 +464714 countRewards4 = 19 +464715 leafProbs4 = 50 +464715 countPokes5 = 3 +464716 countRewards5 = 1 +464716 leafProbs5 = 20 +464730 countPokes6 = 3 +464730 countRewards6 = 3 +464730 leafProbs6 = 80 +~~~ +464836 4 0 +466180 DOWN 3 +466180 0 0 +466185 UP 3 +466185 4 0 +466672 DOWN 3 +466672 0 0 +466681 UP 3 +466681 4 0 +467035 DOWN 3 +467035 0 0 +468621 UP 4 +468621 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +469088 DOWN 4 +469088 0 0 +~~~ +469110 contingency = 0 +469110 trialThresh = 100 +469111 timeMaxOut = 30 +469111 timeElapsed = 10 +469112 totalPokes = 71 +469112 totalRewards = 50 +469112 countPokes1 = 4 +469112 countRewards1 = 0 +469113 leafProbs1 = 20 +469113 countPokes2 = 5 +469114 countRewards2 = 3 +469128 leafProbs2 = 50 +469128 countPokes3 = 27 +469128 countRewards3 = 24 +469128 leafProbs3 = 80 +469129 countPokes4 = 29 +469129 countRewards4 = 19 +469130 leafProbs4 = 50 +469130 countPokes5 = 3 +469130 countRewards5 = 1 +469130 leafProbs5 = 20 +469144 countPokes6 = 3 +469144 countRewards6 = 3 +469145 leafProbs6 = 80 +~~~ +469146 UP 4 +469145 8 0 +469254 DOWN 4 +469254 0 0 +470660 UP 3 +470660 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470691 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +470845 DOWN 3 +470845 0 256 +~~~ +470871 contingency = 0 +470872 trialThresh = 100 +470872 timeMaxOut = 30 +470872 timeElapsed = 10 +470872 totalPokes = 72 +470873 totalRewards = 51 +470873 countPokes1 = 4 +470874 countRewards1 = 0 +470874 leafProbs1 = 20 +470874 countPokes2 = 5 +470874 countRewards2 = 3 +470888 leafProbs2 = 50 +470889 countPokes3 = 28 +470889 countRewards3 = 25 +470890 leafProbs3 = 80 +470890 countPokes4 = 29 +470890 countRewards4 = 19 +470890 leafProbs4 = 50 +470890 countPokes5 = 3 +470891 countRewards5 = 1 +470891 leafProbs5 = 20 +470905 countPokes6 = 3 +470906 countRewards6 = 3 +470906 leafProbs6 = 80 +~~~ +470906 UP 3 +470906 4 256 +470939 DOWN 3 +470939 0 256 +470946 UP 3 +470946 4 256 +470991 4 0 +472181 DOWN 3 +472181 0 0 +472195 UP 3 +472195 4 0 +472768 DOWN 3 +472768 0 0 +472803 UP 3 +472803 4 0 +472881 DOWN 3 +472881 0 0 +472900 UP 3 +472900 4 0 +473321 DOWN 3 +473321 0 0 +477310 UP 4 +477310 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477346 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +477646 8 0 +479512 DOWN 4 +479512 0 0 +~~~ +479533 contingency = 0 +479533 trialThresh = 100 +479534 timeMaxOut = 30 +479534 timeElapsed = 10 +479534 totalPokes = 73 +479534 totalRewards = 52 +479535 countPokes1 = 4 +479535 countRewards1 = 0 +479536 leafProbs1 = 20 +479536 countPokes2 = 5 +479536 countRewards2 = 3 +479550 leafProbs2 = 50 +479550 countPokes3 = 28 +479550 countRewards3 = 25 +479551 leafProbs3 = 80 +479551 countPokes4 = 30 +479552 countRewards4 = 20 +479552 leafProbs4 = 50 +479552 countPokes5 = 3 +479552 countRewards5 = 1 +479553 leafProbs5 = 20 +479567 countPokes6 = 3 +479567 countRewards6 = 3 +479568 leafProbs6 = 80 +~~~ +479568 UP 4 +479568 8 0 +479604 DOWN 4 +479604 0 0 +479764 UP 4 +479764 8 0 +479862 DOWN 4 +479862 0 0 +481308 UP 3 +481308 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481334 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +481480 DOWN 3 +481480 0 256 +481487 UP 3 +481486 4 256 +~~~ +481506 contingency = 0 +481506 trialThresh = 100 +481507 timeMaxOut = 30 +481507 timeElapsed = 10 +481508 totalPokes = 74 +481508 totalRewards = 53 +481508 countPokes1 = 4 +481508 countRewards1 = 0 +481509 leafProbs1 = 20 +481509 countPokes2 = 5 +481510 countRewards2 = 3 +481524 leafProbs2 = 50 +481524 countPokes3 = 29 +481524 countRewards3 = 26 +481524 leafProbs3 = 80 +481525 countPokes4 = 30 +481525 countRewards4 = 20 +481526 leafProbs4 = 50 +481526 countPokes5 = 3 +481526 countRewards5 = 1 +481526 leafProbs5 = 20 +481540 countPokes6 = 3 +481540 countRewards6 = 3 +481541 leafProbs6 = 80 +~~~ +481634 4 0 +483938 DOWN 3 +483938 0 0 +483946 UP 3 +483946 4 0 +484246 DOWN 3 +484246 0 0 +485746 UP 4 +485746 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +486222 DOWN 4 +486222 0 0 +~~~ +486242 contingency = 0 +486243 trialThresh = 100 +486243 timeMaxOut = 30 +486244 timeElapsed = 10 +486244 totalPokes = 75 +486244 totalRewards = 53 +486244 countPokes1 = 4 +486245 countRewards1 = 0 +486245 leafProbs1 = 20 +486246 countPokes2 = 5 +486246 countRewards2 = 3 +486260 leafProbs2 = 50 +486260 countPokes3 = 29 +486260 countRewards3 = 26 +486260 leafProbs3 = 80 +486261 countPokes4 = 31 +486261 countRewards4 = 20 +486262 leafProbs4 = 50 +486262 countPokes5 = 3 +486262 countRewards5 = 1 +486262 leafProbs5 = 20 +486276 countPokes6 = 3 +486277 countRewards6 = 3 +486277 leafProbs6 = 80 +~~~ +487845 UP 3 +487845 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +487878 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +488023 DOWN 3 +488023 0 256 +~~~ +488043 contingency = 0 +488043 trialThresh = 100 +488044 timeMaxOut = 30 +488044 timeElapsed = 10 +488044 totalPokes = 76 +488044 totalRewards = 54 +488045 countPokes1 = 4 +488045 countRewards1 = 0 +488046 leafProbs1 = 20 +488046 countPokes2 = 5 +488046 countRewards2 = 3 +488060 leafProbs2 = 50 +488060 countPokes3 = 30 +488061 countRewards3 = 27 +488061 leafProbs3 = 80 +488061 countPokes4 = 31 +488062 countRewards4 = 20 +488062 leafProbs4 = 50 +488062 countPokes5 = 3 +488062 countRewards5 = 1 +488063 leafProbs5 = 20 +488077 countPokes6 = 3 +488077 countRewards6 = 3 +488078 leafProbs6 = 80 +~~~ +488078 UP 3 +488078 4 256 +488177 4 0 +488201 DOWN 3 +488201 0 0 +488207 UP 3 +488207 4 0 +489274 DOWN 3 +489274 0 0 +489282 UP 3 +489282 4 0 +489874 DOWN 3 +489874 0 0 +489897 UP 3 +489897 4 0 +490194 DOWN 3 +490194 0 0 +491882 UP 4 +491882 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +492302 DOWN 4 +492302 0 0 +~~~ +492328 contingency = 0 +492328 trialThresh = 100 +492328 timeMaxOut = 30 +492329 timeElapsed = 11 +492329 totalPokes = 77 +492330 totalRewards = 54 +492330 countPokes1 = 4 +492330 countRewards1 = 0 +492330 leafProbs1 = 20 +492331 countPokes2 = 5 +492331 countRewards2 = 3 +492345 leafProbs2 = 50 +492346 countPokes3 = 30 +492346 countRewards3 = 27 +492346 leafProbs3 = 80 +492346 countPokes4 = 32 +492347 countRewards4 = 20 +492347 leafProbs4 = 50 +492348 countPokes5 = 3 +492348 countRewards5 = 1 +492348 leafProbs5 = 20 +492362 countPokes6 = 3 +492362 countRewards6 = 3 +492363 leafProbs6 = 80 +~~~ +493828 UP 3 +493828 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +493862 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +494037 DOWN 3 +494037 0 256 +494041 UP 3 +494041 4 256 +~~~ +494062 contingency = 0 +494062 trialThresh = 100 +494062 timeMaxOut = 30 +494062 timeElapsed = 11 +494063 totalPokes = 78 +494063 totalRewards = 55 +494064 countPokes1 = 4 +494064 countRewards1 = 0 +494064 leafProbs1 = 20 +494064 countPokes2 = 5 +494065 countRewards2 = 3 +494079 leafProbs2 = 50 +494079 countPokes3 = 31 +494080 countRewards3 = 28 +494080 leafProbs3 = 80 +494080 countPokes4 = 32 +494080 countRewards4 = 20 +494081 leafProbs4 = 50 +494081 countPokes5 = 3 +494082 countRewards5 = 1 +494082 leafProbs5 = 20 +494096 countPokes6 = 3 +494096 countRewards6 = 3 +494096 leafProbs6 = 80 +~~~ +494162 4 0 +495164 DOWN 3 +495164 0 0 +495184 UP 3 +495184 4 0 +497060 DOWN 3 +497060 0 0 +498750 UP 4 +498750 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +499422 DOWN 4 +499422 0 0 +~~~ +499452 contingency = 0 +499452 trialThresh = 100 +499452 timeMaxOut = 30 +499453 timeElapsed = 11 +499453 totalPokes = 79 +499454 totalRewards = 55 +499454 countPokes1 = 4 +499454 countRewards1 = 0 +499454 leafProbs1 = 20 +499455 countPokes2 = 5 +499455 countRewards2 = 3 +499469 leafProbs2 = 50 +499470 countPokes3 = 31 +499470 countRewards3 = 28 +499470 leafProbs3 = 80 +499470 countPokes4 = 33 +499471 countRewards4 = 20 +499471 leafProbs4 = 50 +499472 countPokes5 = 3 +499472 countRewards5 = 1 +499472 leafProbs5 = 20 +499486 countPokes6 = 3 +499486 countRewards6 = 3 +499487 leafProbs6 = 80 +~~~ +502516 UP 3 +502516 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502556 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +502856 4 0 +504370 DOWN 3 +504370 0 0 +504376 UP 3 +504376 4 0 +~~~ +504395 contingency = 0 +504395 trialThresh = 100 +504396 timeMaxOut = 30 +504396 timeElapsed = 11 +504396 totalPokes = 80 +504396 totalRewards = 56 +504397 countPokes1 = 4 +504397 countRewards1 = 0 +504398 leafProbs1 = 20 +504398 countPokes2 = 5 +504398 countRewards2 = 3 +504412 leafProbs2 = 50 +504412 countPokes3 = 32 +504413 countRewards3 = 29 +504413 leafProbs3 = 80 +504414 countPokes4 = 33 +504414 countRewards4 = 20 +504414 leafProbs4 = 50 +504414 countPokes5 = 3 +504415 countRewards5 = 1 +504415 leafProbs5 = 20 +504429 countPokes6 = 3 +504429 countRewards6 = 3 +504430 leafProbs6 = 80 +~~~ +505326 DOWN 3 +505326 0 0 +505337 UP 3 +505337 4 0 +505428 DOWN 3 +505428 0 0 +505438 UP 3 +505438 4 0 +505520 DOWN 3 +505520 0 0 +505527 UP 3 +505527 4 0 +505736 DOWN 3 +505736 0 0 +507569 UP 4 +507569 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +508106 DOWN 4 +508106 0 0 +~~~ +508131 contingency = 0 +508131 trialThresh = 100 +508131 timeMaxOut = 30 +508131 timeElapsed = 11 +508132 totalPokes = 81 +508132 totalRewards = 56 +508133 countPokes1 = 4 +508133 countRewards1 = 0 +508133 leafProbs1 = 20 +508133 countPokes2 = 5 +508134 countRewards2 = 3 +508148 leafProbs2 = 50 +508148 countPokes3 = 32 +508149 countRewards3 = 29 +508149 leafProbs3 = 80 +508149 countPokes4 = 34 +508149 countRewards4 = 20 +508149 leafProbs4 = 50 +508150 countPokes5 = 3 +508150 countRewards5 = 1 +508151 leafProbs5 = 20 +508165 countPokes6 = 3 +508165 countRewards6 = 3 +508165 leafProbs6 = 80 +~~~ +509672 UP 3 +509672 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509706 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +509944 DOWN 3 +509944 0 256 +509950 UP 3 +509949 4 256 +~~~ +509970 contingency = 0 +509971 trialThresh = 100 +509971 timeMaxOut = 30 +509971 timeElapsed = 11 +509971 totalPokes = 82 +509972 totalRewards = 57 +509972 countPokes1 = 4 +509973 countRewards1 = 0 +509973 leafProbs1 = 20 +509973 countPokes2 = 5 +509973 countRewards2 = 3 +509987 leafProbs2 = 50 +509988 countPokes3 = 33 +509988 countRewards3 = 30 +509989 leafProbs3 = 80 +509989 countPokes4 = 34 +509989 countRewards4 = 20 +509989 leafProbs4 = 50 +509990 countPokes5 = 3 +509990 countRewards5 = 1 +509991 leafProbs5 = 20 +510004 countPokes6 = 3 +510005 countRewards6 = 3 +510005 leafProbs6 = 80 +~~~ +510006 4 0 +510025 DOWN 3 +510025 0 0 +510031 UP 3 +510031 4 0 +511178 DOWN 3 +511178 0 0 +511182 UP 3 +511182 4 0 +511997 DOWN 3 +511997 0 0 +512014 UP 3 +512014 4 0 +512108 DOWN 3 +512108 0 0 +512116 UP 3 +512116 4 0 +512525 DOWN 3 +512525 0 0 +512563 UP 3 +512563 4 0 +512575 DOWN 3 +512575 0 0 +514331 UP 4 +514331 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +514854 DOWN 4 +514854 0 0 +~~~ +514871 contingency = 0 +514871 trialThresh = 100 +514871 timeMaxOut = 30 +514871 timeElapsed = 11 +514872 totalPokes = 83 +514872 totalRewards = 57 +514873 countPokes1 = 4 +514873 countRewards1 = 0 +514873 leafProbs1 = 20 +514873 countPokes2 = 5 +514874 countRewards2 = 3 +514888 leafProbs2 = 50 +514888 countPokes3 = 33 +514889 countRewards3 = 30 +514889 leafProbs3 = 80 +514889 countPokes4 = 35 +514889 countRewards4 = 20 +514889 leafProbs4 = 50 +514890 countPokes5 = 3 +514890 countRewards5 = 1 +514891 leafProbs5 = 20 +514905 countPokes6 = 3 +514905 countRewards6 = 3 +514905 leafProbs6 = 80 +~~~ +516388 UP 3 +516388 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516421 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +516567 DOWN 3 +516567 0 256 +~~~ +516585 contingency = 0 +516585 trialThresh = 100 +516585 timeMaxOut = 30 +516586 timeElapsed = 11 +516586 totalPokes = 84 +516586 totalRewards = 58 +516587 countPokes1 = 4 +516587 countRewards1 = 0 +516587 leafProbs1 = 20 +516587 countPokes2 = 5 +516588 countRewards2 = 3 +516602 leafProbs2 = 50 +516602 countPokes3 = 34 +516603 countRewards3 = 31 +516603 leafProbs3 = 80 +516603 countPokes4 = 35 +516603 countRewards4 = 20 +516604 leafProbs4 = 50 +516604 countPokes5 = 3 +516605 countRewards5 = 1 +516605 leafProbs5 = 20 +516619 countPokes6 = 3 +516619 countRewards6 = 3 +516619 leafProbs6 = 80 +~~~ +516620 UP 3 +516620 4 256 +516721 4 0 +517898 DOWN 3 +517898 0 0 +517919 UP 3 +517919 4 0 +518728 DOWN 3 +518728 0 0 +518741 UP 3 +518741 4 0 +519133 DOWN 3 +519133 0 0 +520955 UP 4 +520955 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +520984 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +521284 8 0 +523323 DOWN 4 +523323 0 0 +~~~ +523351 contingency = 0 +523351 trialThresh = 100 +523351 timeMaxOut = 30 +523351 timeElapsed = 11 +523352 totalPokes = 85 +523352 totalRewards = 59 +523353 countPokes1 = 4 +523353 countRewards1 = 0 +523353 leafProbs1 = 20 +523353 countPokes2 = 5 +523354 countRewards2 = 3 +523368 leafProbs2 = 50 +523368 countPokes3 = 34 +523369 countRewards3 = 31 +523369 leafProbs3 = 80 +523369 countPokes4 = 36 +523369 countRewards4 = 21 +523370 leafProbs4 = 50 +523370 countPokes5 = 3 +523370 countRewards5 = 1 +523371 leafProbs5 = 20 +523385 countPokes6 = 3 +523385 countRewards6 = 3 +523385 leafProbs6 = 80 +~~~ +526214 UP 3 +526214 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +526301 DOWN 3 +526301 0 0 +526310 UP 3 +526310 4 0 +~~~ +526327 contingency = 0 +526327 trialThresh = 100 +526327 timeMaxOut = 30 +526327 timeElapsed = 11 +526328 totalPokes = 86 +526328 totalRewards = 59 +526329 countPokes1 = 4 +526329 countRewards1 = 0 +526329 leafProbs1 = 20 +526329 countPokes2 = 5 +526330 countRewards2 = 3 +526344 leafProbs2 = 50 +526344 countPokes3 = 35 +526345 countRewards3 = 31 +526345 leafProbs3 = 80 +526345 countPokes4 = 36 +526345 countRewards4 = 21 +526346 leafProbs4 = 50 +526346 countPokes5 = 3 +526346 countRewards5 = 1 +526347 leafProbs5 = 20 +526361 countPokes6 = 3 +526361 countRewards6 = 3 +526361 leafProbs6 = 80 +~~~ +527470 DOWN 3 +527470 0 0 +529598 UP 3 +529598 4 0 +529755 DOWN 3 +529755 0 0 +531319 UP 4 +531319 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531349 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +531649 8 0 +533663 DOWN 4 +533663 0 0 +~~~ +533685 contingency = 0 +533685 trialThresh = 100 +533686 timeMaxOut = 30 +533686 timeElapsed = 12 +533687 totalPokes = 87 +533687 totalRewards = 60 +533687 countPokes1 = 4 +533687 countRewards1 = 0 +533688 leafProbs1 = 20 +533688 countPokes2 = 5 +533689 countRewards2 = 3 +533703 leafProbs2 = 50 +533703 countPokes3 = 35 +533703 countRewards3 = 31 +533703 leafProbs3 = 80 +533704 countPokes4 = 37 +533704 countRewards4 = 22 +533705 leafProbs4 = 50 +533705 countPokes5 = 3 +533705 countRewards5 = 1 +533705 leafProbs5 = 20 +533719 countPokes6 = 3 +533719 countRewards6 = 3 +533720 leafProbs6 = 80 +~~~ +533720 UP 4 +533720 8 0 +533751 DOWN 4 +533751 0 0 +536909 UP 3 +536909 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +536945 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +537090 DOWN 3 +537090 0 256 +537097 UP 3 +537097 4 256 +~~~ +537116 contingency = 0 +537116 trialThresh = 100 +537117 timeMaxOut = 30 +537117 timeElapsed = 12 +537117 totalPokes = 88 +537117 totalRewards = 61 +537118 countPokes1 = 4 +537118 countRewards1 = 0 +537119 leafProbs1 = 20 +537119 countPokes2 = 5 +537119 countRewards2 = 3 +537133 leafProbs2 = 50 +537133 countPokes3 = 36 +537134 countRewards3 = 32 +537134 leafProbs3 = 80 +537135 countPokes4 = 37 +537135 countRewards4 = 22 +537135 leafProbs4 = 50 +537135 countPokes5 = 3 +537136 countRewards5 = 1 +537136 leafProbs5 = 20 +537150 countPokes6 = 3 +537150 countRewards6 = 3 +537151 leafProbs6 = 80 +~~~ +537245 4 0 +539425 DOWN 3 +539425 0 0 +539438 UP 3 +539438 4 0 +539829 DOWN 3 +539829 0 0 +541662 UP 4 +541662 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +542247 DOWN 4 +542247 0 0 +~~~ +542270 contingency = 0 +542270 trialThresh = 100 +542271 timeMaxOut = 30 +542271 timeElapsed = 12 +542271 totalPokes = 89 +542271 totalRewards = 61 +542272 countPokes1 = 4 +542272 countRewards1 = 0 +542273 leafProbs1 = 20 +542273 countPokes2 = 5 +542273 countRewards2 = 3 +542287 leafProbs2 = 50 +542287 countPokes3 = 36 +542288 countRewards3 = 32 +542288 leafProbs3 = 80 +542289 countPokes4 = 38 +542289 countRewards4 = 22 +542289 leafProbs4 = 50 +542289 countPokes5 = 3 +542290 countRewards5 = 1 +542290 leafProbs5 = 20 +542304 countPokes6 = 3 +542304 countRewards6 = 3 +542305 leafProbs6 = 80 +~~~ +542305 UP 4 +542305 8 0 +542367 DOWN 4 +542367 0 0 +543862 UP 3 +543862 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +543900 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +544127 DOWN 3 +544127 0 256 +544136 UP 3 +544136 4 256 +~~~ +544152 contingency = 0 +544153 trialThresh = 100 +544153 timeMaxOut = 30 +544153 timeElapsed = 12 +544153 totalPokes = 90 +544154 totalRewards = 62 +544154 countPokes1 = 4 +544155 countRewards1 = 0 +544155 leafProbs1 = 20 +544155 countPokes2 = 5 +544155 countRewards2 = 3 +544169 leafProbs2 = 50 +544170 countPokes3 = 37 +544170 countRewards3 = 33 +544171 leafProbs3 = 80 +544171 countPokes4 = 38 +544171 countRewards4 = 22 +544171 leafProbs4 = 50 +544172 countPokes5 = 3 +544172 countRewards5 = 1 +544173 leafProbs5 = 20 +544186 countPokes6 = 3 +544187 countRewards6 = 3 +544187 leafProbs6 = 80 +~~~ +544200 4 0 +545486 DOWN 3 +545486 0 0 +545491 UP 3 +545491 4 0 +545979 DOWN 3 +545979 0 0 +545983 UP 3 +545983 4 0 +546082 DOWN 3 +546082 0 0 +546099 UP 3 +546099 4 0 +546423 DOWN 3 +546423 0 0 +546453 UP 3 +546453 4 0 +546490 DOWN 3 +546490 0 0 +549948 UP 4 +549948 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +550901 DOWN 4 +550901 0 0 +~~~ +550925 contingency = 0 +550926 trialThresh = 100 +550926 timeMaxOut = 30 +550927 timeElapsed = 12 +550927 totalPokes = 91 +550927 totalRewards = 62 +550927 countPokes1 = 4 +550928 countRewards1 = 0 +550928 leafProbs1 = 20 +550929 countPokes2 = 5 +550929 countRewards2 = 3 +550943 leafProbs2 = 50 +550943 countPokes3 = 37 +550943 countRewards3 = 33 +550944 leafProbs3 = 80 +550944 countPokes4 = 39 +550945 countRewards4 = 22 +550945 leafProbs4 = 50 +550945 countPokes5 = 3 +550945 countRewards5 = 1 +550945 leafProbs5 = 20 +550959 countPokes6 = 3 +550960 countRewards6 = 3 +550960 leafProbs6 = 80 +~~~ +552408 UP 3 +552408 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +552598 DOWN 3 +552598 0 0 +552617 UP 3 +552617 4 0 +~~~ +552629 contingency = 0 +552629 trialThresh = 100 +552630 timeMaxOut = 30 +552630 timeElapsed = 12 +552631 totalPokes = 92 +552631 totalRewards = 62 +552631 countPokes1 = 4 +552631 countRewards1 = 0 +552632 leafProbs1 = 20 +552632 countPokes2 = 5 +552633 countRewards2 = 3 +552647 leafProbs2 = 50 +552647 countPokes3 = 38 +552647 countRewards3 = 33 +552647 leafProbs3 = 80 +552648 countPokes4 = 39 +552648 countRewards4 = 22 +552649 leafProbs4 = 50 +552649 countPokes5 = 3 +552649 countRewards5 = 1 +552649 leafProbs5 = 20 +552663 countPokes6 = 3 +552663 countRewards6 = 3 +552664 leafProbs6 = 80 +~~~ +552933 DOWN 3 +552933 0 0 +558142 UP 6 +558142 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558168 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +558468 32 0 +558499 DOWN 6 +558499 0 0 +558519 UP 6 +558519 32 0 +~~~ +558525 contingency = 0 +558525 trialThresh = 100 +558526 timeMaxOut = 30 +558526 timeElapsed = 12 +558527 totalPokes = 93 +558527 totalRewards = 63 +558527 countPokes1 = 4 +558527 countRewards1 = 0 +558528 leafProbs1 = 20 +558528 countPokes2 = 5 +558529 countRewards2 = 3 +558543 leafProbs2 = 50 +558543 countPokes3 = 38 +558543 countRewards3 = 33 +558543 leafProbs3 = 80 +558544 countPokes4 = 39 +558544 countRewards4 = 22 +558544 leafProbs4 = 50 +558545 countPokes5 = 3 +558545 countRewards5 = 1 +558545 leafProbs5 = 20 +558559 countPokes6 = 4 +558559 countRewards6 = 4 +558560 leafProbs6 = 80 +~~~ +558585 DOWN 6 +558585 0 0 +558600 UP 6 +558600 32 0 +558607 DOWN 6 +558607 0 0 +558619 UP 6 +558619 32 0 +558669 DOWN 6 +558669 0 0 +558681 UP 6 +558681 32 0 +558755 DOWN 6 +558755 0 0 +558763 UP 6 +558763 32 0 +558843 DOWN 6 +558843 0 0 +558848 UP 6 +558848 32 0 +560712 DOWN 6 +560712 0 0 +560727 UP 6 +560727 32 0 +561070 DOWN 6 +561070 0 0 +561521 UP 6 +561521 32 0 +561527 DOWN 6 +561527 0 0 +562119 UP 6 +562119 32 0 +562301 DOWN 6 +562301 0 0 +568732 UP 1 +568732 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +568789 DOWN 1 +568789 0 0 +~~~ +568807 contingency = 0 +568807 trialThresh = 100 +568808 timeMaxOut = 30 +568808 timeElapsed = 12 +568808 totalPokes = 94 +568808 totalRewards = 63 +568809 countPokes1 = 5 +568809 countRewards1 = 0 +568810 leafProbs1 = 20 +568810 countPokes2 = 5 +568810 countRewards2 = 3 +568824 leafProbs2 = 50 +568824 countPokes3 = 38 +568825 countRewards3 = 33 +568825 leafProbs3 = 80 +568826 countPokes4 = 39 +568826 countRewards4 = 22 +568826 leafProbs4 = 50 +568826 countPokes5 = 3 +568826 countRewards5 = 1 +568827 leafProbs5 = 20 +568841 countPokes6 = 4 +568841 countRewards6 = 4 +568842 leafProbs6 = 80 +~~~ +568856 UP 1 +568856 1 0 +568902 DOWN 1 +568902 0 0 +568928 UP 1 +568928 1 0 +568972 DOWN 1 +568972 0 0 +568978 UP 1 +568978 1 0 +569138 DOWN 1 +569138 0 0 +591730 UP 2 +591730 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +591756 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +592056 2 0 +592065 DOWN 2 +592065 0 0 +592088 UP 2 +592088 2 0 +~~~ +592108 contingency = 0 +592109 trialThresh = 100 +592109 timeMaxOut = 30 +592110 timeElapsed = 13 +592110 totalPokes = 95 +592110 totalRewards = 64 +592110 countPokes1 = 5 +592111 countRewards1 = 0 +592111 leafProbs1 = 20 +592112 countPokes2 = 6 +592112 countRewards2 = 4 +592126 leafProbs2 = 50 +592126 countPokes3 = 38 +592126 countRewards3 = 33 +592127 leafProbs3 = 80 +592127 countPokes4 = 39 +592128 countRewards4 = 22 +592128 leafProbs4 = 50 +592128 countPokes5 = 3 +592128 countRewards5 = 1 +592129 leafProbs5 = 20 +592142 countPokes6 = 4 +592143 countRewards6 = 4 +592143 leafProbs6 = 80 +~~~ +592150 DOWN 2 +592150 0 0 +592163 UP 2 +592163 2 0 +593402 DOWN 2 +593402 0 0 +593414 UP 2 +593414 2 0 +593972 DOWN 2 +593972 0 0 +604829 UP 6 +604829 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +605011 DOWN 6 +605011 0 0 +~~~ +605028 contingency = 0 +605028 trialThresh = 100 +605028 timeMaxOut = 30 +605028 timeElapsed = 13 +605029 totalPokes = 96 +605029 totalRewards = 64 +605030 countPokes1 = 5 +605030 countRewards1 = 0 +605030 leafProbs1 = 20 +605030 countPokes2 = 6 +605031 countRewards2 = 4 +605045 leafProbs2 = 50 +605045 countPokes3 = 38 +605046 countRewards3 = 33 +605046 leafProbs3 = 80 +605046 countPokes4 = 39 +605046 countRewards4 = 22 +605047 leafProbs4 = 50 +605047 countPokes5 = 3 +605048 countRewards5 = 1 +605048 leafProbs5 = 20 +605062 countPokes6 = 5 +605062 countRewards6 = 4 +605062 leafProbs6 = 80 +~~~ +605062 UP 6 +605062 32 0 +605486 DOWN 6 +605486 0 0 +609736 UP 6 +609736 32 0 +609776 DOWN 6 +609776 0 0 +609785 UP 6 +609785 32 0 +609796 DOWN 6 +609796 0 0 +614642 UP 2 +614642 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614674 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +614974 2 0 +615003 DOWN 2 +615003 0 0 +615025 UP 2 +615025 2 0 +~~~ +615028 contingency = 0 +615028 trialThresh = 100 +615028 timeMaxOut = 30 +615028 timeElapsed = 14 +615029 totalPokes = 97 +615029 totalRewards = 65 +615030 countPokes1 = 5 +615030 countRewards1 = 0 +615030 leafProbs1 = 20 +615030 countPokes2 = 7 +615031 countRewards2 = 5 +615045 leafProbs2 = 50 +615045 countPokes3 = 38 +615046 countRewards3 = 33 +615046 leafProbs3 = 80 +615046 countPokes4 = 39 +615046 countRewards4 = 22 +615047 leafProbs4 = 50 +615047 countPokes5 = 3 +615048 countRewards5 = 1 +615048 leafProbs5 = 20 +615062 countPokes6 = 5 +615062 countRewards6 = 4 +615062 leafProbs6 = 80 +~~~ +615089 DOWN 2 +615089 0 0 +615133 UP 2 +615133 2 0 +615166 DOWN 2 +615166 0 0 +615174 UP 2 +615174 2 0 +615247 DOWN 2 +615247 0 0 +615250 UP 2 +615250 2 0 +616464 DOWN 2 +616464 0 0 +616474 UP 2 +616474 2 0 +616958 DOWN 2 +616958 0 0 +616988 UP 2 +616988 2 0 +617046 DOWN 2 +617046 0 0 +622310 UP 1 +622310 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622334 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +622455 DOWN 1 +622455 0 64 +~~~ +622473 contingency = 0 +622474 trialThresh = 100 +622474 timeMaxOut = 30 +622475 timeElapsed = 14 +622475 totalPokes = 98 +622475 totalRewards = 66 +622475 countPokes1 = 6 +622476 countRewards1 = 1 +622476 leafProbs1 = 20 +622477 countPokes2 = 7 +622477 countRewards2 = 5 +622491 leafProbs2 = 50 +622491 countPokes3 = 38 +622491 countRewards3 = 33 +622492 leafProbs3 = 80 +622492 countPokes4 = 39 +622493 countRewards4 = 22 +622493 leafProbs4 = 50 +622493 countPokes5 = 3 +622493 countRewards5 = 1 +622494 leafProbs5 = 20 +622508 countPokes6 = 5 +622508 countRewards6 = 4 +622508 leafProbs6 = 80 +~~~ +622509 UP 1 +622509 1 64 +622634 1 0 +624194 DOWN 1 +624194 0 0 +624209 UP 1 +624209 1 0 +625083 DOWN 1 +625083 0 0 +625134 UP 1 +625134 1 0 +625417 DOWN 1 +625417 0 0 +625464 UP 1 +625464 1 0 +625483 DOWN 1 +625483 0 0 +625877 UP 1 +625877 1 0 +625949 DOWN 1 +625949 0 0 +625969 UP 1 +625969 1 0 +625992 DOWN 1 +625992 0 0 +633927 UP 2 +633927 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +634281 DOWN 2 +634281 0 0 +~~~ +634297 contingency = 0 +634297 trialThresh = 100 +634298 timeMaxOut = 30 +634298 timeElapsed = 14 +634299 totalPokes = 99 +634299 totalRewards = 66 +634299 countPokes1 = 6 +634299 countRewards1 = 1 +634300 leafProbs1 = 20 +634300 countPokes2 = 8 +634300 countRewards2 = 5 +634315 leafProbs2 = 50 +634315 countPokes3 = 38 +634315 countRewards3 = 33 +634315 leafProbs3 = 80 +634315 countPokes4 = 39 +634316 countRewards4 = 22 +634316 leafProbs4 = 50 +634317 countPokes5 = 3 +634317 countRewards5 = 1 +634317 leafProbs5 = 20 +634331 countPokes6 = 5 +634331 countRewards6 = 4 +634332 leafProbs6 = 80 +~~~ +638222 UP 1 +638222 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638404 DOWN 1 +638404 0 0 +638418 UP 1 +638418 1 0 +~~~ +638425 contingency = 0 +638425 trialThresh = 100 +638425 timeMaxOut = 30 +638426 timeElapsed = 14 +638426 totalPokes = 100 +638427 totalRewards = 66 +638427 countPokes1 = 7 +638427 countRewards1 = 1 +638427 leafProbs1 = 20 +638428 countPokes2 = 8 +638428 countRewards2 = 5 +638442 leafProbs2 = 50 +638443 countPokes3 = 38 +638443 countRewards3 = 33 +638443 leafProbs3 = 80 +638443 countPokes4 = 39 +638444 countRewards4 = 22 +638444 leafProbs4 = 50 +638445 countPokes5 = 3 +638445 countRewards5 = 1 +638445 leafProbs5 = 20 +638459 countPokes6 = 5 +638459 countRewards6 = 4 +638460 leafProbs6 = 80 +~~~ +638461 This contingency is over! +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +638472 DOWN 1 +638472 0 0 +638487 UP 1 +638487 1 0 +638513 DOWN 1 +638513 0 0 +646489 UP 2 +646489 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646515 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +646668 DOWN 2 +646668 0 128 +~~~ +646696 contingency = 1 +646697 trialThresh = 100 +646697 timeMaxOut = 30 +646697 timeElapsed = 0 +646697 totalPokes = 1 +646698 totalRewards = 1 +646698 countPokes1 = 0 +646699 countRewards1 = 0 +646699 leafProbs1 = 80 +646699 countPokes2 = 1 +646699 countRewards2 = 1 +646713 leafProbs2 = 20 +646713 countPokes3 = 0 +646714 countRewards3 = 0 +646714 leafProbs3 = 20 +646715 countPokes4 = 0 +646715 countRewards4 = 0 +646715 leafProbs4 = 50 +646715 countPokes5 = 0 +646716 countRewards5 = 0 +646716 leafProbs5 = 80 +646730 countPokes6 = 0 +646730 countRewards6 = 0 +646730 leafProbs6 = 50 +~~~ +646731 UP 2 +646731 2 128 +646761 DOWN 2 +646761 0 128 +646770 UP 2 +646770 2 128 +646815 2 0 +646848 DOWN 2 +646848 0 0 +646855 UP 2 +646855 2 0 +646933 DOWN 2 +646933 0 0 +646935 UP 2 +646935 2 0 +648132 DOWN 2 +648132 0 0 +648141 UP 2 +648141 2 0 +648226 DOWN 2 +648226 0 0 +648237 UP 2 +648237 2 0 +648715 DOWN 2 +648715 0 0 +653107 UP 1 +653107 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653131 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +653293 DOWN 1 +653293 0 64 +653304 UP 1 +653304 1 64 +~~~ +653311 contingency = 1 +653312 trialThresh = 100 +653312 timeMaxOut = 30 +653313 timeElapsed = 0 +653313 totalPokes = 2 +653313 totalRewards = 2 +653313 countPokes1 = 1 +653314 countRewards1 = 1 +653314 leafProbs1 = 80 +653315 countPokes2 = 1 +653315 countRewards2 = 1 +653329 leafProbs2 = 20 +653329 countPokes3 = 0 +653329 countRewards3 = 0 +653329 leafProbs3 = 20 +653330 countPokes4 = 0 +653330 countRewards4 = 0 +653331 leafProbs4 = 50 +653331 countPokes5 = 0 +653331 countRewards5 = 0 +653331 leafProbs5 = 80 +653345 countPokes6 = 0 +653345 countRewards6 = 0 +653346 leafProbs6 = 50 +~~~ +653431 1 0 +654896 DOWN 1 +654896 0 0 +654909 UP 1 +654909 1 0 +655510 DOWN 1 +655510 0 0 +655525 UP 1 +655525 1 0 +655618 DOWN 1 +655618 0 0 +655645 UP 1 +655645 1 0 +655712 DOWN 1 +655712 0 0 +655745 UP 1 +655745 1 0 +656047 DOWN 1 +656047 0 0 +660017 UP 1 +660017 1 0 +660042 DOWN 1 +660042 0 0 +660144 UP 1 +660144 1 0 +660733 DOWN 1 +660733 0 0 +661455 UP 1 +661455 1 0 +662374 DOWN 1 +662374 0 0 +662767 UP 1 +662767 1 0 +662786 DOWN 1 +662786 0 0 +662843 UP 1 +662843 1 0 +662951 DOWN 1 +662951 0 0 +663092 UP 1 +663092 1 0 +663690 DOWN 1 +663690 0 0 +663868 UP 1 +663868 1 0 +663885 DOWN 1 +663885 0 0 +667344 UP 1 +667344 1 0 +668669 DOWN 1 +668669 0 0 +668771 UP 1 +668771 1 0 +670429 DOWN 1 +670429 0 0 +670599 UP 1 +670599 1 0 +671129 DOWN 1 +671129 0 0 +671135 UP 1 +671135 1 0 +676936 DOWN 1 +676936 0 0 +677158 UP 1 +677158 1 0 +677369 DOWN 1 +677369 0 0 +677386 UP 1 +677386 1 0 +677428 DOWN 1 +677428 0 0 +677446 UP 1 +677446 1 0 +677934 DOWN 1 +677934 0 0 +679615 UP 2 +679615 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679642 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +679879 DOWN 2 +679879 0 128 +~~~ +679904 UP 2 +679904 2 128 +679905 contingency = 1 +679905 trialThresh = 100 +679906 timeMaxOut = 30 +679906 timeElapsed = 1 +679906 totalPokes = 3 +679906 totalRewards = 3 +679906 countPokes1 = 1 +679907 countRewards1 = 1 +679907 leafProbs1 = 80 +679908 countPokes2 = 2 +679922 countRewards2 = 2 +679922 leafProbs2 = 20 +679922 countPokes3 = 0 +679922 countRewards3 = 0 +679923 leafProbs3 = 20 +679923 countPokes4 = 0 +679924 countRewards4 = 0 +679924 leafProbs4 = 50 +679924 countPokes5 = 0 +679924 countRewards5 = 0 +679938 leafProbs5 = 80 +679938 countPokes6 = 0 +679939 countRewards6 = 0 +679939 leafProbs6 = 50 +~~~ +679942 2 0 +679961 DOWN 2 +679961 0 0 +679980 UP 2 +679980 2 0 +680052 DOWN 2 +680052 0 0 +680090 UP 2 +680090 2 0 +680130 DOWN 2 +680130 0 0 +680138 UP 2 +680138 2 0 +680214 DOWN 2 +680214 0 0 +680216 UP 2 +680216 2 0 +681547 DOWN 2 +681547 0 0 +681565 UP 2 +681565 2 0 +681949 DOWN 2 +681949 0 0 +681966 UP 2 +681966 2 0 +682035 DOWN 2 +682035 0 0 +684925 UP 1 +684925 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +684963 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +685263 1 0 +686762 DOWN 1 +686762 0 0 +686785 UP 1 +686785 1 0 +~~~ +686790 contingency = 1 +686791 trialThresh = 100 +686791 timeMaxOut = 30 +686792 timeElapsed = 1 +686792 totalPokes = 4 +686792 totalRewards = 4 +686792 countPokes1 = 2 +686792 countRewards1 = 2 +686793 leafProbs1 = 80 +686793 countPokes2 = 2 +686794 countRewards2 = 2 +686808 leafProbs2 = 20 +686808 countPokes3 = 0 +686808 countRewards3 = 0 +686808 leafProbs3 = 20 +686809 countPokes4 = 0 +686809 countRewards4 = 0 +686810 leafProbs4 = 50 +686810 countPokes5 = 0 +686810 countRewards5 = 0 +686810 leafProbs5 = 80 +686824 countPokes6 = 0 +686824 countRewards6 = 0 +686824 leafProbs6 = 50 +~~~ +686866 DOWN 1 +686866 0 0 +686877 UP 1 +686877 1 0 +687566 DOWN 1 +687566 0 0 +687576 UP 1 +687576 1 0 +687668 DOWN 1 +687668 0 0 +693470 UP 2 +693470 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +693635 DOWN 2 +693635 0 0 +~~~ +693658 contingency = 1 +693658 trialThresh = 100 +693658 timeMaxOut = 30 +693658 timeElapsed = 1 +693658 totalPokes = 5 +693659 totalRewards = 4 +693659 countPokes1 = 2 +693660 countRewards1 = 2 +693660 leafProbs1 = 80 +693660 countPokes2 = 3 +693660 countRewards2 = 2 +693674 leafProbs2 = 20 +693674 countPokes3 = 0 +693675 countRewards3 = 0 +693675 leafProbs3 = 20 +693676 countPokes4 = 0 +693676 countRewards4 = 0 +693676 leafProbs4 = 50 +693676 countPokes5 = 0 +693677 countRewards5 = 0 +693677 leafProbs5 = 80 +693691 countPokes6 = 0 +693691 countRewards6 = 0 +693692 leafProbs6 = 50 +~~~ +693692 UP 2 +693692 2 0 +693956 DOWN 2 +693956 0 0 +696978 UP 2 +696978 2 0 +697030 DOWN 2 +697030 0 0 +699759 UP 1 +699759 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +700230 DOWN 1 +700230 0 0 +~~~ +700245 contingency = 1 +700246 trialThresh = 100 +700246 timeMaxOut = 30 +700246 timeElapsed = 2 +700246 totalPokes = 6 +700247 totalRewards = 4 +700247 countPokes1 = 3 +700247 countRewards1 = 2 +700248 leafProbs1 = 80 +700248 countPokes2 = 3 +700248 countRewards2 = 2 +700262 leafProbs2 = 20 +700262 countPokes3 = 0 +700263 countRewards3 = 0 +700263 leafProbs3 = 20 +700264 countPokes4 = 0 +700264 countRewards4 = 0 +700264 leafProbs4 = 50 +700264 countPokes5 = 0 +700264 countRewards5 = 0 +700265 leafProbs5 = 80 +700278 countPokes6 = 0 +700279 countRewards6 = 0 +700279 leafProbs6 = 50 +~~~ +703081 UP 2 +703081 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +703208 DOWN 2 +703208 0 0 +703223 UP 2 +703223 2 0 +~~~ +703236 contingency = 1 +703236 trialThresh = 100 +703237 timeMaxOut = 30 +703237 timeElapsed = 2 +703238 totalPokes = 7 +703238 totalRewards = 4 +703238 countPokes1 = 3 +703238 countRewards1 = 2 +703239 leafProbs1 = 80 +703239 countPokes2 = 4 +703240 countRewards2 = 2 +703254 leafProbs2 = 20 +703254 countPokes3 = 0 +703254 countRewards3 = 0 +703254 leafProbs3 = 20 +703254 countPokes4 = 0 +703255 countRewards4 = 0 +703255 leafProbs4 = 50 +703256 countPokes5 = 0 +703256 countRewards5 = 0 +703256 leafProbs5 = 80 +703270 countPokes6 = 0 +703270 countRewards6 = 0 +703270 leafProbs6 = 50 +~~~ +703290 DOWN 2 +703290 0 0 +703328 UP 2 +703328 2 0 +703454 DOWN 2 +703454 0 0 +703482 UP 2 +703482 2 0 +703565 DOWN 2 +703565 0 0 +703583 UP 2 +703583 2 0 +703665 DOWN 2 +703665 0 0 +706373 UP 1 +706373 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +706950 DOWN 1 +706950 0 0 +706964 UP 1 +706964 1 0 +~~~ +706971 contingency = 1 +706971 trialThresh = 100 +706972 timeMaxOut = 30 +706972 timeElapsed = 2 +706972 totalPokes = 8 +706972 totalRewards = 4 +706972 countPokes1 = 4 +706973 countRewards1 = 2 +706973 leafProbs1 = 80 +706974 countPokes2 = 4 +706974 countRewards2 = 2 +706988 leafProbs2 = 20 +706988 countPokes3 = 0 +706988 countRewards3 = 0 +706989 leafProbs3 = 20 +706989 countPokes4 = 0 +706990 countRewards4 = 0 +706990 leafProbs4 = 50 +706990 countPokes5 = 0 +706990 countRewards5 = 0 +706990 leafProbs5 = 80 +707004 countPokes6 = 0 +707004 countRewards6 = 0 +707005 leafProbs6 = 50 +~~~ +707161 DOWN 1 +707161 0 0 +707242 UP 1 +707242 1 0 +707332 DOWN 1 +707332 0 0 +707353 UP 1 +707353 1 0 +707676 DOWN 1 +707676 0 0 +711092 UP 2 +711092 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +711282 DOWN 2 +711282 0 0 +~~~ +711306 contingency = 1 +711307 trialThresh = 100 +711307 timeMaxOut = 30 +711308 timeElapsed = 2 +711308 totalPokes = 9 +711308 totalRewards = 4 +711308 countPokes1 = 4 +711309 countRewards1 = 2 +711309 leafProbs1 = 80 +711310 countPokes2 = 5 +711310 countRewards2 = 2 +711324 leafProbs2 = 20 +711324 countPokes3 = 0 +711324 countRewards3 = 0 +711324 leafProbs3 = 20 +711325 countPokes4 = 0 +711325 countRewards4 = 0 +711326 leafProbs4 = 50 +711326 countPokes5 = 0 +711326 countRewards5 = 0 +711326 leafProbs5 = 80 +711340 countPokes6 = 0 +711340 countRewards6 = 0 +711341 leafProbs6 = 50 +~~~ +711341 UP 2 +711341 2 0 +711528 DOWN 2 +711528 0 0 +715382 UP 1 +715382 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715412 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +715712 1 0 +717868 DOWN 1 +717868 0 0 +~~~ +717895 contingency = 1 +717895 trialThresh = 100 +717896 timeMaxOut = 30 +717896 timeElapsed = 2 +717896 totalPokes = 10 +717896 totalRewards = 5 +717897 countPokes1 = 5 +717897 countRewards1 = 3 +717898 leafProbs1 = 80 +717898 countPokes2 = 5 +717898 countRewards2 = 2 +717912 leafProbs2 = 20 +717912 countPokes3 = 0 +717912 countRewards3 = 0 +717913 leafProbs3 = 20 +717913 countPokes4 = 0 +717914 countRewards4 = 0 +717914 leafProbs4 = 50 +717914 countPokes5 = 0 +717914 countRewards5 = 0 +717915 leafProbs5 = 80 +717928 countPokes6 = 0 +717929 countRewards6 = 0 +717929 leafProbs6 = 50 +~~~ +717930 UP 1 +717930 1 0 +717950 DOWN 1 +717950 0 0 +717998 UP 1 +717998 1 0 +718006 DOWN 1 +718006 0 0 +718022 UP 1 +718022 1 0 +718060 DOWN 1 +718060 0 0 +718114 UP 1 +718114 1 0 +718126 DOWN 1 +718126 0 0 +718138 UP 1 +718138 1 0 +718174 DOWN 1 +718174 0 0 +718188 UP 1 +718188 1 0 +718206 DOWN 1 +718206 0 0 +718214 UP 1 +718214 1 0 +718224 DOWN 1 +718224 0 0 +718227 UP 1 +718227 1 0 +718288 DOWN 1 +718288 0 0 +730956 UP 1 +730956 1 0 +731381 DOWN 1 +731381 0 0 +734164 UP 2 +734164 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +734745 DOWN 2 +734745 0 0 +~~~ +734763 contingency = 1 +734763 trialThresh = 100 +734763 timeMaxOut = 30 +734763 timeElapsed = 2 +734764 totalPokes = 11 +734764 totalRewards = 5 +734765 countPokes1 = 5 +734765 countRewards1 = 3 +734765 leafProbs1 = 80 +734765 countPokes2 = 6 +734766 countRewards2 = 2 +734780 leafProbs2 = 20 +734780 countPokes3 = 0 +734781 countRewards3 = 0 +734781 leafProbs3 = 20 +734781 countPokes4 = 0 +734781 countRewards4 = 0 +734781 leafProbs4 = 50 +734782 countPokes5 = 0 +734782 countRewards5 = 0 +734783 leafProbs5 = 80 +734796 countPokes6 = 0 +734797 countRewards6 = 0 +734797 leafProbs6 = 50 +~~~ +734797 UP 2 +734797 2 0 +735089 DOWN 2 +735089 0 0 +735121 UP 2 +735121 2 0 +735145 DOWN 2 +735145 0 0 +745688 UP 3 +745688 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745711 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +745893 DOWN 3 +745893 0 256 +745903 UP 3 +745903 4 256 +~~~ +745921 contingency = 1 +745921 trialThresh = 100 +745921 timeMaxOut = 30 +745921 timeElapsed = 3 +745922 totalPokes = 12 +745922 totalRewards = 6 +745923 countPokes1 = 5 +745923 countRewards1 = 3 +745923 leafProbs1 = 80 +745923 countPokes2 = 6 +745924 countRewards2 = 2 +745938 leafProbs2 = 20 +745938 countPokes3 = 1 +745939 countRewards3 = 1 +745939 leafProbs3 = 20 +745939 countPokes4 = 0 +745939 countRewards4 = 0 +745940 leafProbs4 = 50 +745940 countPokes5 = 0 +745940 countRewards5 = 0 +745941 leafProbs5 = 80 +745954 countPokes6 = 0 +745955 countRewards6 = 0 +745955 leafProbs6 = 50 +~~~ +745973 DOWN 3 +745973 0 256 +745981 UP 3 +745981 4 256 +746011 4 0 +746051 DOWN 3 +746051 0 0 +746057 UP 3 +746057 4 0 +747569 DOWN 3 +747569 0 0 +747585 UP 3 +747585 4 0 +747670 DOWN 3 +747670 0 0 +747673 UP 3 +747673 4 0 +748651 DOWN 3 +748651 0 0 +748698 UP 3 +748698 4 0 +748709 DOWN 3 +748709 0 0 +754494 UP 4 +754494 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754521 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +754821 8 0 +757067 DOWN 4 +757067 0 0 +757085 UP 4 +757085 8 0 +~~~ +757097 contingency = 1 +757097 trialThresh = 100 +757098 timeMaxOut = 30 +757098 timeElapsed = 3 +757099 totalPokes = 13 +757099 totalRewards = 7 +757099 countPokes1 = 5 +757099 countRewards1 = 3 +757100 leafProbs1 = 80 +757100 countPokes2 = 6 +757101 countRewards2 = 2 +757114 leafProbs2 = 20 +757115 countPokes3 = 1 +757115 countRewards3 = 1 +757115 leafProbs3 = 20 +757115 countPokes4 = 1 +757116 countRewards4 = 1 +757116 leafProbs4 = 50 +757117 countPokes5 = 0 +757117 countRewards5 = 0 +757117 leafProbs5 = 80 +757131 countPokes6 = 0 +757131 countRewards6 = 0 +757131 leafProbs6 = 50 +~~~ +757163 DOWN 4 +757163 0 0 +759017 UP 4 +759017 8 0 +759032 DOWN 4 +759032 0 0 +759279 UP 4 +759279 8 0 +759298 DOWN 4 +759298 0 0 +761497 UP 3 +761497 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +761668 DOWN 3 +761668 0 0 +761685 UP 3 +761685 4 0 +~~~ +761690 contingency = 1 +761691 trialThresh = 100 +761691 timeMaxOut = 30 +761691 timeElapsed = 3 +761691 totalPokes = 14 +761692 totalRewards = 7 +761692 countPokes1 = 5 +761693 countRewards1 = 3 +761693 leafProbs1 = 80 +761693 countPokes2 = 6 +761693 countRewards2 = 2 +761707 leafProbs2 = 20 +761707 countPokes3 = 2 +761708 countRewards3 = 1 +761708 leafProbs3 = 20 +761709 countPokes4 = 1 +761709 countRewards4 = 1 +761709 leafProbs4 = 50 +761709 countPokes5 = 0 +761710 countRewards5 = 0 +761710 leafProbs5 = 80 +761724 countPokes6 = 0 +761724 countRewards6 = 0 +761725 leafProbs6 = 50 +~~~ +761756 DOWN 3 +761756 0 0 +761760 UP 3 +761760 4 0 +762060 DOWN 3 +762060 0 0 +767087 UP 6 +767087 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +767503 DOWN 6 +767503 0 0 +767517 UP 6 +767517 32 0 +767529 DOWN 6 +767529 0 0 +~~~ +767533 contingency = 1 +767534 trialThresh = 100 +767534 timeMaxOut = 30 +767535 timeElapsed = 3 +767535 totalPokes = 15 +767535 totalRewards = 7 +767535 countPokes1 = 5 +767535 countRewards1 = 3 +767536 leafProbs1 = 80 +767536 countPokes2 = 6 +767537 countRewards2 = 2 +767551 leafProbs2 = 20 +767551 countPokes3 = 2 +767551 countRewards3 = 1 +767551 leafProbs3 = 20 +767552 countPokes4 = 1 +767552 countRewards4 = 1 +767553 leafProbs4 = 50 +767553 countPokes5 = 0 +767553 countRewards5 = 0 +767553 leafProbs5 = 80 +767567 countPokes6 = 1 +767567 countRewards6 = 0 +767567 leafProbs6 = 50 +~~~ +767612 UP 6 +767612 32 0 +768156 DOWN 6 +768156 0 0 +771823 UP 5 +771823 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +773975 DOWN 5 +773975 0 0 +~~~ +773995 contingency = 1 +773995 trialThresh = 100 +773995 timeMaxOut = 30 +773995 timeElapsed = 3 +773996 totalPokes = 16 +773996 totalRewards = 7 +773997 countPokes1 = 5 +773997 countRewards1 = 3 +773997 leafProbs1 = 80 +773997 countPokes2 = 6 +773998 countRewards2 = 2 +774012 leafProbs2 = 20 +774012 countPokes3 = 2 +774013 countRewards3 = 1 +774013 leafProbs3 = 20 +774013 countPokes4 = 1 +774013 countRewards4 = 1 +774013 leafProbs4 = 50 +774014 countPokes5 = 1 +774014 countRewards5 = 0 +774015 leafProbs5 = 80 +774028 countPokes6 = 1 +774029 countRewards6 = 0 +774029 leafProbs6 = 50 +~~~ +774029 UP 5 +774029 16 0 +774091 DOWN 5 +774091 0 0 +774119 UP 5 +774119 16 0 +774414 DOWN 5 +774414 0 0 +778830 UP 6 +778830 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +779622 DOWN 6 +779622 0 0 +~~~ +779637 contingency = 1 +779637 trialThresh = 100 +779638 timeMaxOut = 30 +779638 timeElapsed = 4 +779639 totalPokes = 17 +779639 totalRewards = 7 +779639 countPokes1 = 5 +779639 countRewards1 = 3 +779640 leafProbs1 = 80 +779640 countPokes2 = 6 +779641 countRewards2 = 2 +779655 leafProbs2 = 20 +779655 countPokes3 = 2 +779655 countRewards3 = 1 +779655 leafProbs3 = 20 +779655 countPokes4 = 1 +779656 countRewards4 = 1 +779656 leafProbs4 = 50 +779657 countPokes5 = 1 +779657 countRewards5 = 0 +779657 leafProbs5 = 80 +779671 countPokes6 = 2 +779671 countRewards6 = 0 +779671 leafProbs6 = 50 +~~~ +788015 UP 2 +788015 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788051 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +788222 DOWN 2 +788222 0 128 +788235 UP 2 +788235 2 128 +~~~ +788247 contingency = 1 +788247 trialThresh = 100 +788248 timeMaxOut = 30 +788248 timeElapsed = 4 +788249 totalPokes = 18 +788249 totalRewards = 8 +788249 countPokes1 = 5 +788249 countRewards1 = 3 +788250 leafProbs1 = 80 +788250 countPokes2 = 7 +788251 countRewards2 = 3 +788264 leafProbs2 = 20 +788265 countPokes3 = 2 +788265 countRewards3 = 1 +788265 leafProbs3 = 20 +788265 countPokes4 = 1 +788266 countRewards4 = 1 +788266 leafProbs4 = 50 +788267 countPokes5 = 1 +788267 countRewards5 = 0 +788267 leafProbs5 = 80 +788281 countPokes6 = 2 +788281 countRewards6 = 0 +788281 leafProbs6 = 50 +~~~ +788308 DOWN 2 +788308 0 128 +788328 UP 2 +788328 2 128 +788351 2 0 +788998 DOWN 2 +788998 0 0 +789007 UP 2 +789007 2 0 +790383 DOWN 2 +790383 0 0 +794214 UP 1 +794214 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794248 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +794548 1 0 +795924 DOWN 1 +795924 0 0 +795934 UP 1 +795934 1 0 +~~~ +795954 contingency = 1 +795955 trialThresh = 100 +795955 timeMaxOut = 30 +795956 timeElapsed = 4 +795956 totalPokes = 19 +795956 totalRewards = 9 +795956 countPokes1 = 6 +795956 countRewards1 = 4 +795957 leafProbs1 = 80 +795957 countPokes2 = 7 +795958 countRewards2 = 3 +795972 leafProbs2 = 20 +795972 countPokes3 = 2 +795972 countRewards3 = 1 +795972 leafProbs3 = 20 +795973 countPokes4 = 1 +795973 countRewards4 = 1 +795974 leafProbs4 = 50 +795974 countPokes5 = 1 +795974 countRewards5 = 0 +795974 leafProbs5 = 80 +795988 countPokes6 = 2 +795988 countRewards6 = 0 +795989 leafProbs6 = 50 +~~~ +796836 DOWN 1 +796836 0 0 +796854 UP 1 +796854 1 0 +797387 DOWN 1 +797387 0 0 +797425 UP 1 +797425 1 0 +797444 DOWN 1 +797444 0 0 +800599 UP 2 +800599 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +800797 DOWN 2 +800797 0 0 +~~~ +800820 contingency = 1 +800821 trialThresh = 100 +800821 timeMaxOut = 30 +800822 timeElapsed = 4 +800822 totalPokes = 20 +800822 totalRewards = 9 +800822 countPokes1 = 6 +800823 countRewards1 = 4 +800823 leafProbs1 = 80 +800824 countPokes2 = 8 +800824 countRewards2 = 3 +800838 leafProbs2 = 20 +800838 countPokes3 = 2 +800838 countRewards3 = 1 +800839 leafProbs3 = 20 +800839 countPokes4 = 1 +800840 countRewards4 = 1 +800840 leafProbs4 = 50 +800840 countPokes5 = 1 +800840 countRewards5 = 0 +800840 leafProbs5 = 80 +800854 countPokes6 = 2 +800854 countRewards6 = 0 +800855 leafProbs6 = 50 +~~~ +800855 UP 2 +800855 2 0 +801028 DOWN 2 +801028 0 0 +801050 UP 2 +801050 2 0 +801110 DOWN 2 +801110 0 0 +815208 UP 1 +815208 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815240 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +815540 1 0 +815983 DOWN 1 +815983 0 0 +~~~ +815998 contingency = 1 +815998 trialThresh = 100 +815998 timeMaxOut = 30 +815998 timeElapsed = 4 +815999 totalPokes = 21 +815999 totalRewards = 10 +816000 countPokes1 = 7 +816000 countRewards1 = 5 +816000 leafProbs1 = 80 +816000 countPokes2 = 8 +816001 countRewards2 = 3 +816015 leafProbs2 = 20 +816015 countPokes3 = 2 +816016 countRewards3 = 1 +816016 leafProbs3 = 20 +816016 countPokes4 = 1 +816016 countRewards4 = 1 +816016 leafProbs4 = 50 +816017 countPokes5 = 1 +816017 countRewards5 = 0 +816018 leafProbs5 = 80 +816031 countPokes6 = 2 +816032 countRewards6 = 0 +816032 leafProbs6 = 50 +~~~ +816182 UP 1 +816182 1 0 +816244 DOWN 1 +816244 0 0 +820529 UP 2 +820529 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +820732 DOWN 2 +820732 0 0 +820740 UP 2 +820740 2 0 +~~~ +820756 contingency = 1 +820756 trialThresh = 100 +820756 timeMaxOut = 30 +820757 timeElapsed = 5 +820757 totalPokes = 22 +820757 totalRewards = 10 +820758 countPokes1 = 7 +820758 countRewards1 = 5 +820758 leafProbs1 = 80 +820758 countPokes2 = 9 +820759 countRewards2 = 3 +820773 leafProbs2 = 20 +820773 countPokes3 = 2 +820774 countRewards3 = 1 +820774 leafProbs3 = 20 +820774 countPokes4 = 1 +820774 countRewards4 = 1 +820775 leafProbs4 = 50 +820775 countPokes5 = 1 +820776 countRewards5 = 0 +820776 leafProbs5 = 80 +820790 countPokes6 = 2 +820790 countRewards6 = 0 +820790 leafProbs6 = 50 +~~~ +820831 DOWN 2 +820831 0 0 +820842 UP 2 +820842 2 0 +820922 DOWN 2 +820922 0 0 +858916 UP 2 +858916 2 0 +859194 DOWN 2 +859194 0 0 +881521 UP 2 +881521 2 0 +881707 DOWN 2 +881707 0 0 +881715 UP 2 +881715 2 0 +881796 DOWN 2 +881796 0 0 +881799 UP 2 +881799 2 0 +881984 DOWN 2 +881984 0 0 +888294 UP 1 +888294 1 0 +888300 DOWN 1 +888300 0 0 +888322 UP 1 +888322 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888331 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +888353 contingency = 1 +888353 trialThresh = 100 +888353 timeMaxOut = 30 +888353 timeElapsed = 6 +888354 totalPokes = 23 +888354 totalRewards = 11 +888355 countPokes1 = 8 +888355 countRewards1 = 6 +888355 leafProbs1 = 80 +888355 countPokes2 = 9 +888356 countRewards2 = 3 +888369 leafProbs2 = 20 +888370 countPokes3 = 2 +888370 countRewards3 = 1 +888371 leafProbs3 = 20 +888371 countPokes4 = 1 +888371 countRewards4 = 1 +888371 leafProbs4 = 50 +888372 countPokes5 = 1 +888372 countRewards5 = 0 +888373 leafProbs5 = 80 +888386 countPokes6 = 2 +888387 countRewards6 = 0 +888387 leafProbs6 = 50 +~~~ +888631 1 0 +888785 DOWN 1 +888785 0 0 +888807 UP 1 +888807 1 0 +888863 DOWN 1 +888863 0 0 +888865 UP 1 +888865 1 0 +890368 DOWN 1 +890368 0 0 +890380 UP 1 +890380 1 0 +891073 DOWN 1 +891073 0 0 +891091 UP 1 +891091 1 0 +891177 DOWN 1 +891177 0 0 +894715 UP 1 +894715 1 0 +894763 DOWN 1 +894763 0 0 +894782 UP 1 +894782 1 0 +894953 DOWN 1 +894953 0 0 +905320 UP 2 +905320 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +905777 DOWN 2 +905777 0 0 +~~~ +905796 contingency = 1 +905796 trialThresh = 100 +905796 timeMaxOut = 30 +905796 timeElapsed = 7 +905796 totalPokes = 24 +905797 totalRewards = 11 +905797 countPokes1 = 8 +905798 countRewards1 = 6 +905798 leafProbs1 = 80 +905798 countPokes2 = 10 +905798 countRewards2 = 3 +905812 leafProbs2 = 20 +905813 countPokes3 = 2 +905813 countRewards3 = 1 +905814 leafProbs3 = 20 +905814 countPokes4 = 1 +905814 countRewards4 = 1 +905814 leafProbs4 = 50 +905815 countPokes5 = 1 +905815 countRewards5 = 0 +905816 leafProbs5 = 80 +905829 countPokes6 = 2 +905830 countRewards6 = 0 +905830 leafProbs6 = 50 +~~~ +908740 UP 1 +908740 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +908766 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +909066 1 0 +909067 DOWN 1 +909067 0 0 +909079 UP 1 +909079 1 0 +~~~ +909107 contingency = 1 +909108 trialThresh = 100 +909108 timeMaxOut = 30 +909108 timeElapsed = 7 +909108 totalPokes = 25 +909109 totalRewards = 12 +909109 countPokes1 = 9 +909110 countRewards1 = 7 +909110 leafProbs1 = 80 +909110 countPokes2 = 10 +909110 countRewards2 = 3 +909124 leafProbs2 = 20 +909125 countPokes3 = 2 +909125 countRewards3 = 1 +909126 leafProbs3 = 20 +909126 countPokes4 = 1 +909126 countRewards4 = 1 +909126 leafProbs4 = 50 +909127 countPokes5 = 1 +909127 countRewards5 = 0 +909128 leafProbs5 = 80 +909141 countPokes6 = 2 +909142 countRewards6 = 0 +909142 leafProbs6 = 50 +~~~ +909154 DOWN 1 +909154 0 0 +909160 UP 1 +909160 1 0 +911404 DOWN 1 +911404 0 0 +911414 UP 1 +911414 1 0 +911764 DOWN 1 +911764 0 0 +911781 UP 1 +911781 1 0 +911996 DOWN 1 +911996 0 0 +912030 UP 1 +912030 1 0 +912190 DOWN 1 +912190 0 0 +912192 UP 1 +912192 1 0 +912439 DOWN 1 +912439 0 0 +912452 UP 1 +912452 1 0 +912496 DOWN 1 +912496 0 0 +926425 UP 1 +926425 1 0 +928889 DOWN 1 +928889 0 0 +931544 UP 2 +931544 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +931960 DOWN 2 +931960 0 0 +~~~ +931988 contingency = 1 +931988 trialThresh = 100 +931988 timeMaxOut = 30 +931989 timeElapsed = 7 +931989 totalPokes = 26 +931989 totalRewards = 12 +931990 countPokes1 = 9 +931990 countRewards1 = 7 +931990 leafProbs1 = 80 +931990 countPokes2 = 11 +931991 countRewards2 = 3 +932005 leafProbs2 = 20 +932005 countPokes3 = 2 +932006 countRewards3 = 1 +932006 leafProbs3 = 20 +932006 countPokes4 = 1 +932006 countRewards4 = 1 +932007 leafProbs4 = 50 +932007 countPokes5 = 1 +932008 countRewards5 = 0 +932008 leafProbs5 = 80 +932022 countPokes6 = 2 +932022 countRewards6 = 0 +932022 leafProbs6 = 50 +~~~ +943435 UP 1 +943435 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943472 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +943542 DOWN 1 +943542 0 64 +~~~ +943572 contingency = 1 +943573 trialThresh = 100 +943573 timeMaxOut = 30 +943574 timeElapsed = 8 +943574 totalPokes = 27 +943574 totalRewards = 13 +943574 countPokes1 = 10 +943575 countRewards1 = 8 +943575 leafProbs1 = 80 +943576 countPokes2 = 11 +943576 countRewards2 = 3 +943590 leafProbs2 = 20 +943590 countPokes3 = 2 +943590 countRewards3 = 1 +943591 leafProbs3 = 20 +943591 countPokes4 = 1 +943592 countRewards4 = 1 +943592 leafProbs4 = 50 +943592 countPokes5 = 1 +943592 countRewards5 = 0 +943592 leafProbs5 = 80 +943606 countPokes6 = 2 +943606 countRewards6 = 0 +943607 leafProbs6 = 50 +~~~ +943632 UP 1 +943632 1 64 +943772 1 0 +944058 DOWN 1 +944058 0 0 +944092 UP 1 +944092 1 0 +944120 DOWN 1 +944120 0 0 +944134 UP 1 +944134 1 0 +944208 DOWN 1 +944208 0 0 +944218 UP 1 +944218 1 0 +946546 DOWN 1 +946546 0 0 +946762 UP 1 +946762 1 0 +946818 DOWN 1 +946818 0 0 +946874 UP 1 +946874 1 0 +946900 DOWN 1 +946900 0 0 +950349 UP 2 +950349 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +950531 DOWN 2 +950531 0 0 +950550 UP 2 +950550 2 0 +~~~ +950552 contingency = 1 +950552 trialThresh = 100 +950552 timeMaxOut = 30 +950553 timeElapsed = 8 +950553 totalPokes = 28 +950554 totalRewards = 13 +950554 countPokes1 = 10 +950554 countRewards1 = 8 +950554 leafProbs1 = 80 +950555 countPokes2 = 12 +950555 countRewards2 = 3 +950569 leafProbs2 = 20 +950569 countPokes3 = 2 +950570 countRewards3 = 1 +950570 leafProbs3 = 20 +950570 countPokes4 = 1 +950570 countRewards4 = 1 +950571 leafProbs4 = 50 +950571 countPokes5 = 1 +950572 countRewards5 = 0 +950572 leafProbs5 = 80 +950586 countPokes6 = 2 +950586 countRewards6 = 0 +950586 leafProbs6 = 50 +~~~ +950646 DOWN 2 +950646 0 0 +950705 UP 2 +950705 2 0 +950708 DOWN 2 +950708 0 0 +959208 UP 4 +959208 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959246 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +959546 8 0 +961797 DOWN 4 +961797 0 0 +~~~ +961823 contingency = 1 +961824 trialThresh = 100 +961824 timeMaxOut = 30 +961825 timeElapsed = 8 +961825 totalPokes = 29 +961825 totalRewards = 14 +961825 countPokes1 = 10 +961825 countRewards1 = 8 +961826 leafProbs1 = 80 +961826 countPokes2 = 12 +961827 countRewards2 = 3 +961841 leafProbs2 = 20 +961841 countPokes3 = 2 +961841 countRewards3 = 1 +961841 leafProbs3 = 20 +961842 countPokes4 = 2 +961842 countRewards4 = 2 +961843 leafProbs4 = 50 +961843 countPokes5 = 1 +961843 countRewards5 = 0 +961843 leafProbs5 = 80 +961857 countPokes6 = 2 +961857 countRewards6 = 0 +961858 leafProbs6 = 50 +~~~ +965182 UP 3 +965182 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +965313 DOWN 3 +965313 0 0 +965324 UP 3 +965324 4 0 +~~~ +965339 contingency = 1 +965339 trialThresh = 100 +965339 timeMaxOut = 30 +965339 timeElapsed = 8 +965340 totalPokes = 30 +965340 totalRewards = 14 +965341 countPokes1 = 10 +965341 countRewards1 = 8 +965341 leafProbs1 = 80 +965341 countPokes2 = 12 +965342 countRewards2 = 3 +965356 leafProbs2 = 20 +965356 countPokes3 = 3 +965357 countRewards3 = 1 +965357 leafProbs3 = 20 +965357 countPokes4 = 2 +965357 countRewards4 = 2 +965358 leafProbs4 = 50 +965358 countPokes5 = 1 +965359 countRewards5 = 0 +965359 leafProbs5 = 80 +965373 countPokes6 = 2 +965373 countRewards6 = 0 +965373 leafProbs6 = 50 +~~~ +965693 DOWN 3 +965693 0 0 +965701 UP 3 +965701 4 0 +965805 DOWN 3 +965805 0 0 +965823 UP 3 +965823 4 0 +965874 DOWN 3 +965874 0 0 +965940 UP 3 +965940 4 0 +966111 DOWN 3 +966111 0 0 +966115 UP 3 +966115 4 0 +966200 DOWN 3 +966200 0 0 +975003 UP 2 +975003 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +975278 DOWN 2 +975278 0 0 +~~~ +975307 contingency = 1 +975307 trialThresh = 100 +975307 timeMaxOut = 30 +975307 timeElapsed = 8 +975307 totalPokes = 31 +975308 totalRewards = 14 +975308 countPokes1 = 10 +975309 countRewards1 = 8 +975309 leafProbs1 = 80 +975309 countPokes2 = 13 +975309 countRewards2 = 3 +975323 leafProbs2 = 20 +975324 countPokes3 = 3 +975324 countRewards3 = 1 +975325 leafProbs3 = 20 +975325 countPokes4 = 2 +975325 countRewards4 = 2 +975325 leafProbs4 = 50 +975326 countPokes5 = 1 +975326 countRewards5 = 0 +975327 leafProbs5 = 80 +975340 countPokes6 = 2 +975341 countRewards6 = 0 +975341 leafProbs6 = 50 +~~~ +975341 UP 2 +975341 2 0 +975454 DOWN 2 +975454 0 0 +978197 UP 1 +978197 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978220 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +978520 1 0 +978578 DOWN 1 +978578 0 0 +978580 UP 1 +978580 1 0 +~~~ +978602 contingency = 1 +978603 trialThresh = 100 +978603 timeMaxOut = 30 +978603 timeElapsed = 9 +978603 totalPokes = 32 +978603 totalRewards = 15 +978604 countPokes1 = 11 +978604 countRewards1 = 9 +978605 leafProbs1 = 80 +978605 countPokes2 = 13 +978605 countRewards2 = 3 +978619 leafProbs2 = 20 +978619 countPokes3 = 3 +978620 countRewards3 = 1 +978620 leafProbs3 = 20 +978621 countPokes4 = 2 +978621 countRewards4 = 2 +978621 leafProbs4 = 50 +978621 countPokes5 = 1 +978622 countRewards5 = 0 +978622 leafProbs5 = 80 +978636 countPokes6 = 2 +978636 countRewards6 = 0 +978637 leafProbs6 = 50 +~~~ +981127 DOWN 1 +981127 0 0 +981171 UP 1 +981171 1 0 +981285 DOWN 1 +981285 0 0 +1016676 UP 1 +1016676 1 0 +1016870 DOWN 1 +1016870 0 0 +1016896 UP 1 +1016896 1 0 +1016954 DOWN 1 +1016954 0 0 +1016984 UP 1 +1016984 1 0 +1017090 DOWN 1 +1017090 0 0 +1017104 UP 1 +1017104 1 0 +1017169 DOWN 1 +1017169 0 0 +1017200 UP 1 +1017200 1 0 +1017293 DOWN 1 +1017293 0 0 +1017334 UP 1 +1017334 1 0 +1017372 DOWN 1 +1017372 0 0 +1039650 UP 6 +1039650 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039680 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1039828 DOWN 6 +1039828 0 2048 +~~~ +1039845 contingency = 1 +1039846 trialThresh = 100 +1039846 timeMaxOut = 30 +1039846 timeElapsed = 10 +1039846 totalPokes = 33 +1039847 totalRewards = 16 +1039847 countPokes1 = 11 +1039848 countRewards1 = 9 +1039848 leafProbs1 = 80 +1039848 countPokes2 = 13 +1039862 countRewards2 = 3 +1039862 leafProbs2 = 20 +1039863 countPokes3 = 3 +1039863 countRewards3 = 1 +1039864 leafProbs3 = 20 +1039864 countPokes4 = 2 +1039864 countRewards4 = 2 +1039864 leafProbs4 = 50 +1039865 countPokes5 = 1 +1039865 countRewards5 = 0 +1039879 leafProbs5 = 80 +1039880 countPokes6 = 3 +1039880 countRewards6 = 1 +1039880 leafProbs6 = 50 +~~~ +1039880 UP 6 +1039880 32 2048 +1039980 32 0 +1042617 DOWN 6 +1042617 0 0 +1048037 UP 6 +1048037 32 0 +1048058 DOWN 6 +1048058 0 0 +1048078 UP 6 +1048078 32 0 +1050392 DOWN 6 +1050392 0 0 +1052484 UP 6 +1052484 32 0 +1052550 DOWN 6 +1052550 0 0 +1052787 UP 6 +1052787 32 0 +1052802 DOWN 6 +1052802 0 0 +1052824 UP 6 +1052824 32 0 +1052870 DOWN 6 +1052870 0 0 +1058451 UP 1 +1058451 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058475 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1058683 DOWN 1 +1058683 0 64 +1058702 UP 1 +1058702 1 64 +~~~ +1058711 contingency = 1 +1058711 trialThresh = 100 +1058712 timeMaxOut = 30 +1058712 timeElapsed = 11 +1058712 totalPokes = 34 +1058712 totalRewards = 17 +1058713 countPokes1 = 12 +1058713 countRewards1 = 10 +1058714 leafProbs1 = 80 +1058714 countPokes2 = 13 +1058728 countRewards2 = 3 +1058728 leafProbs2 = 20 +1058728 countPokes3 = 3 +1058729 countRewards3 = 1 +1058729 leafProbs3 = 20 +1058730 countPokes4 = 2 +1058730 countRewards4 = 2 +1058730 leafProbs4 = 50 +1058730 countPokes5 = 1 +1058731 countRewards5 = 0 +1058745 leafProbs5 = 80 +1058746 countPokes6 = 3 +1058746 countRewards6 = 1 +1058746 leafProbs6 = 50 +~~~ +1058774 1 0 +1058880 DOWN 1 +1058880 0 0 +1058882 UP 1 +1058882 1 0 +1061342 DOWN 1 +1061342 0 0 +1061345 UP 1 +1061345 1 0 +1061644 DOWN 1 +1061644 0 0 +1061646 UP 1 +1061646 1 0 +1061878 DOWN 1 +1061878 0 0 +1065248 UP 2 +1065248 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1065450 DOWN 2 +1065450 0 0 +1065468 UP 2 +1065468 2 0 +~~~ +1065471 contingency = 1 +1065472 trialThresh = 100 +1065472 timeMaxOut = 30 +1065472 timeElapsed = 11 +1065472 totalPokes = 35 +1065473 totalRewards = 17 +1065473 countPokes1 = 12 +1065474 countRewards1 = 10 +1065474 leafProbs1 = 80 +1065474 countPokes2 = 14 +1065488 countRewards2 = 3 +1065488 leafProbs2 = 20 +1065489 countPokes3 = 3 +1065489 countRewards3 = 1 +1065490 leafProbs3 = 20 +1065490 countPokes4 = 2 +1065490 countRewards4 = 2 +1065490 leafProbs4 = 50 +1065490 countPokes5 = 1 +1065491 countRewards5 = 0 +1065505 leafProbs5 = 80 +1065506 countPokes6 = 3 +1065506 countRewards6 = 1 +1065506 leafProbs6 = 50 +~~~ +1065546 DOWN 2 +1065546 0 0 +1065551 UP 2 +1065551 2 0 +1065740 DOWN 2 +1065740 0 0 +1071782 UP 1 +1071782 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1071812 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1072112 1 0 +1074108 DOWN 1 +1074108 0 0 +~~~ +1074121 contingency = 1 +1074121 trialThresh = 100 +1074122 timeMaxOut = 30 +1074122 timeElapsed = 11 +1074123 totalPokes = 36 +1074123 totalRewards = 18 +1074123 countPokes1 = 13 +1074123 countRewards1 = 11 +1074124 leafProbs1 = 80 +1074124 countPokes2 = 14 +1074138 countRewards2 = 3 +1074139 leafProbs2 = 20 +1074139 countPokes3 = 3 +1074139 countRewards3 = 1 +1074139 leafProbs3 = 20 +1074140 countPokes4 = 2 +1074140 countRewards4 = 2 +1074141 leafProbs4 = 50 +1074141 countPokes5 = 1 +1074141 countRewards5 = 0 +1074155 leafProbs5 = 80 +1074155 countPokes6 = 3 +1074156 countRewards6 = 1 +1074156 leafProbs6 = 50 +~~~ +1074157 UP 1 +1074157 1 0 +1074661 DOWN 1 +1074661 0 0 +1084721 UP 6 +1084721 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084745 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1084907 DOWN 6 +1084907 0 2048 +1084925 UP 6 +1084925 32 2048 +~~~ +1084927 contingency = 1 +1084927 trialThresh = 100 +1084927 timeMaxOut = 30 +1084927 timeElapsed = 11 +1084928 totalPokes = 37 +1084928 totalRewards = 19 +1084929 countPokes1 = 13 +1084929 countRewards1 = 11 +1084929 leafProbs1 = 80 +1084929 countPokes2 = 14 +1084943 countRewards2 = 3 +1084944 leafProbs2 = 20 +1084944 countPokes3 = 3 +1084945 countRewards3 = 1 +1084945 leafProbs3 = 20 +1084945 countPokes4 = 2 +1084945 countRewards4 = 2 +1084946 leafProbs4 = 50 +1084946 countPokes5 = 1 +1084947 countRewards5 = 0 +1084961 leafProbs5 = 80 +1084961 countPokes6 = 4 +1084961 countRewards6 = 2 +1084961 leafProbs6 = 50 +~~~ +1085045 32 0 +1087540 DOWN 6 +1087540 0 0 +1087555 UP 6 +1087555 32 0 +1087627 DOWN 6 +1087627 0 0 +1091622 UP 5 +1091622 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091651 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1091927 DOWN 5 +1091927 0 1024 +1091931 UP 5 +1091931 16 1024 +1091951 16 0 +~~~ +1091954 contingency = 1 +1091954 trialThresh = 100 +1091955 timeMaxOut = 30 +1091955 timeElapsed = 11 +1091955 totalPokes = 38 +1091955 totalRewards = 20 +1091956 countPokes1 = 13 +1091956 countRewards1 = 11 +1091957 leafProbs1 = 80 +1091957 countPokes2 = 14 +1091971 countRewards2 = 3 +1091971 leafProbs2 = 20 +1091971 countPokes3 = 3 +1091972 countRewards3 = 1 +1091972 leafProbs3 = 20 +1091973 countPokes4 = 2 +1091973 countRewards4 = 2 +1091973 leafProbs4 = 50 +1091973 countPokes5 = 2 +1091974 countRewards5 = 1 +1091988 leafProbs5 = 80 +1091988 countPokes6 = 4 +1091989 countRewards6 = 2 +1091989 leafProbs6 = 50 +~~~ +1094401 DOWN 5 +1094401 0 0 +1094411 UP 5 +1094411 16 0 +1094943 DOWN 5 +1094943 0 0 +1095158 UP 5 +1095158 16 0 +1095204 DOWN 5 +1095204 0 0 +1095249 UP 5 +1095249 16 0 +1095282 DOWN 5 +1095282 0 0 +1100739 UP 6 +1100739 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1100773 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1101073 32 0 +1101177 DOWN 6 +1101177 0 0 +~~~ +1101195 contingency = 1 +1101195 trialThresh = 100 +1101195 timeMaxOut = 30 +1101196 timeElapsed = 12 +1101196 totalPokes = 39 +1101197 totalRewards = 21 +1101197 countPokes1 = 13 +1101197 countRewards1 = 11 +1101197 leafProbs1 = 80 +1101197 countPokes2 = 14 +1101212 countRewards2 = 3 +1101212 leafProbs2 = 20 +1101213 countPokes3 = 3 +1101213 countRewards3 = 1 +1101213 leafProbs3 = 20 +1101213 countPokes4 = 2 +1101214 countRewards4 = 2 +1101214 leafProbs4 = 50 +1101215 countPokes5 = 2 +1101215 countRewards5 = 1 +1101229 leafProbs5 = 80 +1101229 countPokes6 = 5 +1101229 countRewards6 = 3 +1101230 leafProbs6 = 50 +~~~ +1101230 UP 6 +1101230 32 0 +1101263 DOWN 6 +1101263 0 0 +1101286 UP 6 +1101286 32 0 +1101352 DOWN 6 +1101352 0 0 +1101361 UP 6 +1101361 32 0 +1103083 DOWN 6 +1103083 0 0 +1106055 UP 6 +1106055 32 0 +1106197 DOWN 6 +1106197 0 0 +1113222 UP 4 +1113222 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113255 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1113555 8 0 +1115377 DOWN 4 +1115377 0 0 +1115387 UP 4 +1115387 8 0 +~~~ +1115402 contingency = 1 +1115403 trialThresh = 100 +1115403 timeMaxOut = 30 +1115403 timeElapsed = 12 +1115403 totalPokes = 40 +1115404 totalRewards = 22 +1115404 countPokes1 = 13 +1115405 countRewards1 = 11 +1115405 leafProbs1 = 80 +1115405 countPokes2 = 14 +1115419 countRewards2 = 3 +1115420 leafProbs2 = 20 +1115420 countPokes3 = 3 +1115421 countRewards3 = 1 +1115421 leafProbs3 = 20 +1115421 countPokes4 = 3 +1115421 countRewards4 = 3 +1115421 leafProbs4 = 50 +1115422 countPokes5 = 2 +1115422 countRewards5 = 1 +1115437 leafProbs5 = 80 +1115437 countPokes6 = 5 +1115437 countRewards6 = 3 +1115437 leafProbs6 = 50 +~~~ +1115714 DOWN 4 +1115714 0 0 +1115721 UP 4 +1115721 8 0 +1115806 DOWN 4 +1115806 0 0 +1121197 UP 3 +1121197 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1121315 DOWN 3 +1121315 0 0 +1121326 UP 3 +1121326 4 0 +~~~ +1121337 contingency = 1 +1121337 trialThresh = 100 +1121338 timeMaxOut = 30 +1121338 timeElapsed = 12 +1121339 totalPokes = 41 +1121339 totalRewards = 22 +1121339 countPokes1 = 13 +1121339 countRewards1 = 11 +1121340 leafProbs1 = 80 +1121340 countPokes2 = 14 +1121354 countRewards2 = 3 +1121355 leafProbs2 = 20 +1121355 countPokes3 = 4 +1121355 countRewards3 = 1 +1121355 leafProbs3 = 20 +1121356 countPokes4 = 3 +1121356 countRewards4 = 3 +1121357 leafProbs4 = 50 +1121357 countPokes5 = 2 +1121357 countRewards5 = 1 +1121371 leafProbs5 = 80 +1121371 countPokes6 = 5 +1121372 countRewards6 = 3 +1121372 leafProbs6 = 50 +~~~ +1121405 DOWN 3 +1121405 0 0 +1121409 UP 3 +1121409 4 0 +1121713 DOWN 3 +1121713 0 0 +1121746 UP 3 +1121746 4 0 +1121779 DOWN 3 +1121779 0 0 +1122115 UP 3 +1122115 4 0 +1122428 DOWN 3 +1122428 0 0 +1124279 UP 4 +1124279 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124312 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1124612 8 0 +1126487 DOWN 4 +1126487 0 0 +1126496 UP 4 +1126496 8 0 +~~~ +1126514 contingency = 1 +1126514 trialThresh = 100 +1126515 timeMaxOut = 30 +1126515 timeElapsed = 12 +1126515 totalPokes = 42 +1126515 totalRewards = 23 +1126516 countPokes1 = 13 +1126516 countRewards1 = 11 +1126517 leafProbs1 = 80 +1126517 countPokes2 = 14 +1126531 countRewards2 = 3 +1126531 leafProbs2 = 20 +1126531 countPokes3 = 4 +1126532 countRewards3 = 1 +1126532 leafProbs3 = 20 +1126533 countPokes4 = 4 +1126533 countRewards4 = 4 +1126533 leafProbs4 = 50 +1126533 countPokes5 = 2 +1126534 countRewards5 = 1 +1126548 leafProbs5 = 80 +1126548 countPokes6 = 5 +1126549 countRewards6 = 3 +1126549 leafProbs6 = 50 +~~~ +1126757 DOWN 4 +1126757 0 0 +1127867 UP 4 +1127867 8 0 +1127888 DOWN 4 +1127888 0 0 +1129110 UP 4 +1129110 8 0 +1129114 DOWN 4 +1129114 0 0 +1131757 UP 3 +1131757 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131784 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1131942 DOWN 3 +1131942 0 256 +~~~ +1131963 contingency = 1 +1131964 trialThresh = 100 +1131964 timeMaxOut = 30 +1131964 timeElapsed = 12 +1131964 totalPokes = 43 +1131965 totalRewards = 24 +1131965 countPokes1 = 13 +1131966 countRewards1 = 11 +1131966 leafProbs1 = 80 +1131966 countPokes2 = 14 +1131980 countRewards2 = 3 +1131980 leafProbs2 = 20 +1131981 countPokes3 = 5 +1131981 countRewards3 = 2 +1131982 leafProbs3 = 20 +1131982 countPokes4 = 4 +1131982 countRewards4 = 4 +1131982 leafProbs4 = 50 +1131983 countPokes5 = 2 +1131983 countRewards5 = 1 +1131997 leafProbs5 = 80 +1131998 countPokes6 = 5 +1131998 countRewards6 = 3 +1131998 leafProbs6 = 50 +~~~ +1131998 UP 3 +1131998 4 256 +1132033 DOWN 3 +1132033 0 256 +1132046 UP 3 +1132046 4 256 +1132084 4 0 +1132121 DOWN 3 +1132121 0 0 +1132128 UP 3 +1132128 4 0 +1134662 DOWN 3 +1134662 0 0 +1134678 UP 3 +1134678 4 0 +1134901 DOWN 3 +1134901 0 0 +1134922 UP 3 +1134922 4 0 +1134965 DOWN 3 +1134965 0 0 +1141754 UP 4 +1141754 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1142260 DOWN 4 +1142260 0 0 +~~~ +1142276 contingency = 1 +1142276 trialThresh = 100 +1142276 timeMaxOut = 30 +1142276 timeElapsed = 13 +1142277 totalPokes = 44 +1142277 totalRewards = 24 +1142278 countPokes1 = 13 +1142278 countRewards1 = 11 +1142278 leafProbs1 = 80 +1142278 countPokes2 = 14 +1142292 countRewards2 = 3 +1142293 leafProbs2 = 20 +1142293 countPokes3 = 5 +1142294 countRewards3 = 2 +1142294 leafProbs3 = 20 +1142294 countPokes4 = 5 +1142294 countRewards4 = 4 +1142295 leafProbs4 = 50 +1142295 countPokes5 = 2 +1142296 countRewards5 = 1 +1142310 leafProbs5 = 80 +1142310 countPokes6 = 5 +1142310 countRewards6 = 3 +1142310 leafProbs6 = 50 +~~~ +1147204 UP 3 +1147204 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1147337 DOWN 3 +1147337 0 0 +~~~ +1147360 contingency = 1 +1147361 trialThresh = 100 +1147361 timeMaxOut = 30 +1147362 timeElapsed = 13 +1147362 totalPokes = 45 +1147362 totalRewards = 24 +1147362 countPokes1 = 13 +1147363 countRewards1 = 11 +1147363 leafProbs1 = 80 +1147364 countPokes2 = 14 +1147378 countRewards2 = 3 +1147378 leafProbs2 = 20 +1147378 countPokes3 = 6 +1147378 countRewards3 = 2 +1147379 leafProbs3 = 20 +1147379 countPokes4 = 5 +1147380 countRewards4 = 4 +1147380 leafProbs4 = 50 +1147380 countPokes5 = 2 +1147380 countRewards5 = 1 +1147394 leafProbs5 = 80 +1147395 countPokes6 = 5 +1147395 countRewards6 = 3 +1147396 leafProbs6 = 50 +~~~ +1147396 UP 3 +1147396 4 0 +1147832 DOWN 3 +1147832 0 0 +1147852 UP 3 +1147852 4 0 +1147891 DOWN 3 +1147891 0 0 +1147950 UP 3 +1147950 4 0 +1148024 DOWN 3 +1148024 0 0 +1153956 UP 6 +1153956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1154543 DOWN 6 +1154542 0 0 +1154553 UP 6 +1154553 32 0 +~~~ +1154572 contingency = 1 +1154573 trialThresh = 100 +1154573 timeMaxOut = 30 +1154574 timeElapsed = 13 +1154574 totalPokes = 46 +1154574 totalRewards = 24 +1154574 countPokes1 = 13 +1154575 countRewards1 = 11 +1154575 leafProbs1 = 80 +1154576 countPokes2 = 14 +1154590 countRewards2 = 3 +1154590 leafProbs2 = 20 +1154590 countPokes3 = 6 +1154591 countRewards3 = 2 +1154591 leafProbs3 = 20 +1154592 countPokes4 = 5 +1154592 countRewards4 = 4 +1154592 leafProbs4 = 50 +1154592 countPokes5 = 2 +1154592 countRewards5 = 1 +1154607 leafProbs5 = 80 +1154607 countPokes6 = 6 +1154608 countRewards6 = 3 +1154608 leafProbs6 = 50 +~~~ +1154643 DOWN 6 +1154643 0 0 +1154689 UP 6 +1154689 32 0 +1155273 DOWN 6 +1155273 0 0 +1155288 UP 6 +1155288 32 0 +1155370 DOWN 6 +1155370 0 0 +1155373 UP 6 +1155373 32 0 +1155416 DOWN 6 +1155416 0 0 +1155422 UP 6 +1155422 32 0 +1155482 DOWN 6 +1155482 0 0 +1155496 UP 6 +1155496 32 0 +1155520 DOWN 6 +1155520 0 0 +1155535 UP 6 +1155535 32 0 +1155591 DOWN 6 +1155591 0 0 +1155663 UP 6 +1155663 32 0 +1155704 DOWN 6 +1155704 0 0 +1155768 UP 6 +1155768 32 0 +1155809 DOWN 6 +1155809 0 0 +1159406 UP 5 +1159406 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1159712 DOWN 5 +1159712 0 0 +~~~ +1159730 contingency = 1 +1159730 trialThresh = 100 +1159731 timeMaxOut = 30 +1159731 timeElapsed = 13 +1159732 totalPokes = 47 +1159732 totalRewards = 24 +1159732 countPokes1 = 13 +1159732 countRewards1 = 11 +1159733 leafProbs1 = 80 +1159733 countPokes2 = 14 +1159747 countRewards2 = 3 +1159748 leafProbs2 = 20 +1159748 countPokes3 = 6 +1159748 countRewards3 = 2 +1159748 leafProbs3 = 20 +1159749 countPokes4 = 5 +1159749 countRewards4 = 4 +1159750 leafProbs4 = 50 +1159750 countPokes5 = 3 +1159750 countRewards5 = 1 +1159764 leafProbs5 = 80 +1159764 countPokes6 = 6 +1159765 countRewards6 = 3 +1159765 leafProbs6 = 50 +~~~ +1159766 UP 5 +1159766 16 0 +1159956 DOWN 5 +1159956 0 0 +1160003 UP 5 +1160003 16 0 +1160194 DOWN 5 +1160194 0 0 +1165948 UP 6 +1165948 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1166093 DOWN 6 +1166093 0 0 +~~~ +1166118 contingency = 1 +1166118 trialThresh = 100 +1166118 timeMaxOut = 30 +1166118 timeElapsed = 13 +1166119 totalPokes = 48 +1166119 totalRewards = 24 +1166120 countPokes1 = 13 +1166120 countRewards1 = 11 +1166120 leafProbs1 = 80 +1166120 countPokes2 = 14 +1166135 countRewards2 = 3 +1166135 leafProbs2 = 20 +1166136 countPokes3 = 6 +1166136 countRewards3 = 2 +1166136 leafProbs3 = 20 +1166136 countPokes4 = 5 +1166136 countRewards4 = 4 +1166137 leafProbs4 = 50 +1166137 countPokes5 = 3 +1166138 countRewards5 = 1 +1166152 leafProbs5 = 80 +1166152 countPokes6 = 7 +1166152 countRewards6 = 3 +1166153 leafProbs6 = 50 +~~~ +1166153 UP 6 +1166153 32 0 +1166312 DOWN 6 +1166312 0 0 +1166352 UP 6 +1166352 32 0 +1166412 DOWN 6 +1166412 0 0 +1171718 UP 4 +1171718 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1171960 DOWN 4 +1171960 0 0 +1171982 UP 4 +1171982 8 0 +~~~ +1171994 contingency = 1 +1171994 trialThresh = 100 +1171994 timeMaxOut = 30 +1171995 timeElapsed = 13 +1171995 totalPokes = 49 +1171996 totalRewards = 24 +1171996 countPokes1 = 13 +1171996 countRewards1 = 11 +1171996 leafProbs1 = 80 +1171997 countPokes2 = 14 +1172011 countRewards2 = 3 +1172011 leafProbs2 = 20 +1172012 countPokes3 = 6 +1172012 countRewards3 = 2 +1172012 leafProbs3 = 20 +1172012 countPokes4 = 6 +1172013 countRewards4 = 4 +1172013 leafProbs4 = 50 +1172014 countPokes5 = 3 +1172014 countRewards5 = 1 +1172028 leafProbs5 = 80 +1172028 countPokes6 = 7 +1172028 countRewards6 = 3 +1172029 leafProbs6 = 50 +~~~ +1172288 DOWN 4 +1172288 0 0 +1173219 UP 4 +1173219 8 0 +1173514 DOWN 4 +1173514 0 0 +1177086 UP 3 +1177086 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1177282 DOWN 3 +1177282 0 0 +~~~ +1177304 contingency = 1 +1177304 trialThresh = 100 +1177304 timeMaxOut = 30 +1177304 timeElapsed = 13 +1177305 totalPokes = 50 +1177305 totalRewards = 24 +1177306 countPokes1 = 13 +1177306 countRewards1 = 11 +1177306 leafProbs1 = 80 +1177306 countPokes2 = 14 +1177320 countRewards2 = 3 +1177321 leafProbs2 = 20 +1177321 countPokes3 = 7 +1177322 countRewards3 = 2 +1177322 leafProbs3 = 20 +1177322 countPokes4 = 6 +1177322 countRewards4 = 4 +1177323 leafProbs4 = 50 +1177323 countPokes5 = 3 +1177324 countRewards5 = 1 +1177338 leafProbs5 = 80 +1177338 countPokes6 = 7 +1177338 countRewards6 = 3 +1177338 leafProbs6 = 50 +~~~ +1177339 UP 3 +1177339 4 0 +1177386 DOWN 3 +1177386 0 0 +1177394 UP 3 +1177394 4 0 +1178106 DOWN 3 +1178106 0 0 +1178113 UP 3 +1178113 4 0 +1178132 DOWN 3 +1178132 0 0 +1186869 UP 3 +1186869 4 0 +1187143 DOWN 3 +1187143 0 0 +1187147 UP 3 +1187147 4 0 +1187359 DOWN 3 +1187359 0 0 +1191221 UP 4 +1191221 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1191801 DOWN 4 +1191801 0 0 +~~~ +1191825 contingency = 1 +1191826 trialThresh = 100 +1191826 timeMaxOut = 30 +1191827 timeElapsed = 14 +1191827 totalPokes = 51 +1191827 totalRewards = 24 +1191827 countPokes1 = 13 +1191828 countRewards1 = 11 +1191828 leafProbs1 = 80 +1191829 countPokes2 = 14 +1191843 countRewards2 = 3 +1191843 leafProbs2 = 20 +1191843 countPokes3 = 7 +1191843 countRewards3 = 2 +1191844 leafProbs3 = 20 +1191844 countPokes4 = 7 +1191845 countRewards4 = 4 +1191845 leafProbs4 = 50 +1191845 countPokes5 = 3 +1191845 countRewards5 = 1 +1191860 leafProbs5 = 80 +1191860 countPokes6 = 7 +1191861 countRewards6 = 3 +1191861 leafProbs6 = 50 +~~~ +1191861 UP 4 +1191861 8 0 +1191879 DOWN 4 +1191879 0 0 +1191933 UP 4 +1191933 8 0 +1191985 DOWN 4 +1191985 0 0 +1192051 UP 4 +1192051 8 0 +1192160 DOWN 4 +1192160 0 0 +1194291 UP 3 +1194291 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1194479 DOWN 3 +1194479 0 0 +~~~ +1194505 contingency = 1 +1194505 trialThresh = 100 +1194505 timeMaxOut = 30 +1194505 timeElapsed = 14 +1194506 totalPokes = 52 +1194506 totalRewards = 24 +1194507 countPokes1 = 13 +1194507 countRewards1 = 11 +1194507 leafProbs1 = 80 +1194507 countPokes2 = 14 +1194522 countRewards2 = 3 +1194522 leafProbs2 = 20 +1194523 countPokes3 = 8 +1194523 countRewards3 = 2 +1194523 leafProbs3 = 20 +1194523 countPokes4 = 7 +1194523 countRewards4 = 4 +1194524 leafProbs4 = 50 +1194524 countPokes5 = 3 +1194525 countRewards5 = 1 +1194539 leafProbs5 = 80 +1194539 countPokes6 = 7 +1194539 countRewards6 = 3 +1194540 leafProbs6 = 50 +~~~ +1194540 UP 3 +1194540 4 0 +1194585 DOWN 3 +1194585 0 0 +1194591 UP 3 +1194591 4 0 +1195217 DOWN 3 +1195217 0 0 +1195228 UP 3 +1195228 4 0 +1195291 DOWN 3 +1195291 0 0 +1200633 UP 4 +1200633 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1201231 DOWN 4 +1201231 0 0 +1201253 UP 4 +1201253 8 0 +~~~ +1201257 contingency = 1 +1201257 trialThresh = 100 +1201257 timeMaxOut = 30 +1201258 timeElapsed = 14 +1201258 totalPokes = 53 +1201259 totalRewards = 24 +1201259 countPokes1 = 13 +1201259 countRewards1 = 11 +1201259 leafProbs1 = 80 +1201260 countPokes2 = 14 +1201274 countRewards2 = 3 +1201275 leafProbs2 = 20 +1201275 countPokes3 = 8 +1201275 countRewards3 = 2 +1201275 leafProbs3 = 20 +1201275 countPokes4 = 8 +1201276 countRewards4 = 4 +1201276 leafProbs4 = 50 +1201277 countPokes5 = 3 +1201277 countRewards5 = 1 +1201291 leafProbs5 = 80 +1201291 countPokes6 = 7 +1201291 countRewards6 = 3 +1201292 leafProbs6 = 50 +~~~ +1201625 DOWN 4 +1201625 0 0 +1201650 UP 4 +1201650 8 0 +1201851 DOWN 4 +1201851 0 0 +1206660 UP 1 +1206660 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1207087 DOWN 1 +1207087 0 0 +~~~ +1207109 contingency = 1 +1207109 trialThresh = 100 +1207109 timeMaxOut = 30 +1207110 timeElapsed = 14 +1207110 totalPokes = 54 +1207111 totalRewards = 24 +1207111 countPokes1 = 14 +1207111 countRewards1 = 11 +1207111 leafProbs1 = 80 +1207112 countPokes2 = 14 +1207126 countRewards2 = 3 +1207126 leafProbs2 = 20 +1207127 countPokes3 = 8 +1207127 countRewards3 = 2 +1207127 leafProbs3 = 20 +1207127 countPokes4 = 8 +1207128 countRewards4 = 4 +1207128 leafProbs4 = 50 +1207129 countPokes5 = 3 +1207129 countRewards5 = 1 +1207143 leafProbs5 = 80 +1207143 countPokes6 = 7 +1207143 countRewards6 = 3 +1207144 leafProbs6 = 50 +~~~ +1207832 UP 1 +1207832 1 0 +1207976 DOWN 1 +1207976 0 0 +1211269 UP 1 +1211269 1 0 +1211506 DOWN 1 +1211506 0 0 +1214204 UP 1 +1214204 1 0 +1214248 DOWN 1 +1214248 0 0 +1215744 UP 1 +1215744 1 0 +1215749 DOWN 1 +1215749 0 0 +1231125 UP 2 +1231125 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1231357 DOWN 2 +1231357 0 0 +1231367 UP 2 +1231367 2 0 +1231381 DOWN 2 +1231381 0 0 +~~~ +1231385 contingency = 1 +1231385 trialThresh = 100 +1231386 timeMaxOut = 30 +1231386 timeElapsed = 15 +1231387 totalPokes = 55 +1231387 totalRewards = 24 +1231387 countPokes1 = 14 +1231387 countRewards1 = 11 +1231388 leafProbs1 = 80 +1231388 countPokes2 = 15 +1231403 countRewards2 = 3 +1231403 leafProbs2 = 20 +1231403 countPokes3 = 8 +1231403 countRewards3 = 2 +1231403 leafProbs3 = 20 +1231404 countPokes4 = 8 +1231404 countRewards4 = 4 +1231405 leafProbs4 = 50 +1231405 countPokes5 = 3 +1231405 countRewards5 = 1 +1231419 leafProbs5 = 80 +1231420 countPokes6 = 7 +1231420 countRewards6 = 3 +1231420 leafProbs6 = 50 +~~~ +1231421 UP 2 +1231421 2 0 +1231469 DOWN 2 +1231469 0 0 +1231506 UP 2 +1231506 2 0 +1231616 DOWN 2 +1231616 0 0 +1231625 UP 2 +1231625 2 0 +1231663 DOWN 2 +1231663 0 0 +1231913 UP 2 +1231913 2 0 +1232013 DOWN 2 +1232013 0 0 +1239462 UP 1 +1239462 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239498 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1239797 1 0 +1239872 DOWN 1 +1239872 0 0 +~~~ +1239892 UP 1 +1239892 1 0 +1239893 contingency = 1 +1239893 trialThresh = 100 +1239893 timeMaxOut = 30 +1239893 timeElapsed = 15 +1239894 totalPokes = 56 +1239894 totalRewards = 25 +1239895 countPokes1 = 15 +1239895 countRewards1 = 12 +1239895 leafProbs1 = 80 +1239909 countPokes2 = 15 +1239909 countRewards2 = 3 +1239909 leafProbs2 = 20 +1239910 countPokes3 = 8 +1239910 countRewards3 = 2 +1239911 leafProbs3 = 20 +1239911 countPokes4 = 8 +1239911 countRewards4 = 4 +1239911 leafProbs4 = 50 +1239912 countPokes5 = 3 +1239926 countRewards5 = 1 +1239926 leafProbs5 = 80 +1239927 countPokes6 = 7 +1239927 countRewards6 = 3 +1239927 leafProbs6 = 50 +~~~ +1240294 DOWN 1 +1240294 0 0 +1240297 UP 1 +1240297 1 0 +1240754 DOWN 1 +1240754 0 0 +1240760 UP 1 +1240760 1 0 +1242282 DOWN 1 +1242282 0 0 +1242292 UP 1 +1242292 1 0 +1242905 DOWN 1 +1242905 0 0 +1242946 UP 1 +1242946 1 0 +1242962 DOWN 1 +1242962 0 0 +1250015 UP 1 +1250015 1 0 +1250317 DOWN 1 +1250317 0 0 +1250382 UP 1 +1250382 1 0 +1250384 DOWN 1 +1250384 0 0 +1251029 UP 1 +1251029 1 0 +1251094 DOWN 1 +1251094 0 0 +1254861 UP 1 +1254861 1 0 +1254980 DOWN 1 +1254980 0 0 +1255546 UP 1 +1255546 1 0 +1255704 DOWN 1 +1255704 0 0 +1261826 UP 1 +1261826 1 0 +1261854 DOWN 1 +1261854 0 0 +1263825 UP 2 +1263825 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1263852 2 128 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1264048 DOWN 2 +1264048 0 128 +1264055 UP 2 +1264055 2 128 +~~~ +1264075 contingency = 1 +1264075 trialThresh = 100 +1264076 timeMaxOut = 30 +1264076 timeElapsed = 16 +1264076 totalPokes = 57 +1264076 totalRewards = 26 +1264077 countPokes1 = 15 +1264077 countRewards1 = 12 +1264078 leafProbs1 = 80 +1264078 countPokes2 = 16 +1264092 countRewards2 = 4 +1264092 leafProbs2 = 20 +1264092 countPokes3 = 8 +1264093 countRewards3 = 2 +1264093 leafProbs3 = 20 +1264094 countPokes4 = 8 +1264094 countRewards4 = 4 +1264094 leafProbs4 = 50 +1264094 countPokes5 = 3 +1264095 countRewards5 = 1 +1264109 leafProbs5 = 80 +1264109 countPokes6 = 7 +1264110 countRewards6 = 3 +1264110 leafProbs6 = 50 +~~~ +1264152 2 0 +1264154 DOWN 2 +1264154 0 0 +1264170 UP 2 +1264170 2 0 +1264244 DOWN 2 +1264244 0 0 +1264260 UP 2 +1264260 2 0 +1264326 DOWN 2 +1264326 0 0 +1264334 UP 2 +1264334 2 0 +1264338 DOWN 2 +1264338 0 0 +1264367 UP 2 +1264367 2 0 +1264408 DOWN 2 +1264408 0 0 +1264415 UP 2 +1264415 2 0 +1264494 DOWN 2 +1264494 0 0 +1264500 UP 2 +1264500 2 0 +1265892 DOWN 2 +1265892 0 0 +1265905 UP 2 +1265905 2 0 +1266323 DOWN 2 +1266323 0 0 +1266326 UP 2 +1266326 2 0 +1266426 DOWN 2 +1266426 0 0 +1266473 UP 2 +1266473 2 0 +1266494 DOWN 2 +1266494 0 0 +1273432 UP 1 +1273432 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273459 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1273758 1 0 +1274032 DOWN 1 +1274032 0 0 +1274039 UP 1 +1274039 1 0 +~~~ +1274059 contingency = 1 +1274060 trialThresh = 100 +1274060 timeMaxOut = 30 +1274060 timeElapsed = 16 +1274060 totalPokes = 58 +1274061 totalRewards = 27 +1274061 countPokes1 = 16 +1274062 countRewards1 = 13 +1274062 leafProbs1 = 80 +1274062 countPokes2 = 16 +1274076 countRewards2 = 4 +1274076 leafProbs2 = 20 +1274077 countPokes3 = 8 +1274077 countRewards3 = 2 +1274078 leafProbs3 = 20 +1274078 countPokes4 = 8 +1274078 countRewards4 = 4 +1274078 leafProbs4 = 50 +1274079 countPokes5 = 3 +1274079 countRewards5 = 1 +1274094 leafProbs5 = 80 +1274094 countPokes6 = 7 +1274094 countRewards6 = 3 +1274094 leafProbs6 = 50 +~~~ +1276386 DOWN 1 +1276386 0 0 +1276404 UP 1 +1276404 1 0 +1276717 DOWN 1 +1276717 0 0 +1288662 UP 2 +1288662 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1289167 DOWN 2 +1289167 0 0 +~~~ +1289193 contingency = 1 +1289193 trialThresh = 100 +1289194 timeMaxOut = 30 +1289194 timeElapsed = 16 +1289194 totalPokes = 59 +1289194 totalRewards = 27 +1289195 countPokes1 = 16 +1289195 countRewards1 = 13 +1289196 leafProbs1 = 80 +1289196 countPokes2 = 17 +1289210 countRewards2 = 4 +1289210 leafProbs2 = 20 +1289210 countPokes3 = 8 +1289211 countRewards3 = 2 +1289211 leafProbs3 = 20 +1289212 countPokes4 = 8 +1289212 countRewards4 = 4 +1289212 leafProbs4 = 50 +1289212 countPokes5 = 3 +1289213 countRewards5 = 1 +1289227 leafProbs5 = 80 +1289227 countPokes6 = 7 +1289228 countRewards6 = 3 +1289228 leafProbs6 = 50 +~~~ +1295557 UP 1 +1295557 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295588 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1295748 DOWN 1 +1295748 0 64 +1295765 UP 1 +1295765 1 64 +~~~ +1295772 contingency = 1 +1295772 trialThresh = 100 +1295772 timeMaxOut = 30 +1295772 timeElapsed = 16 +1295772 totalPokes = 60 +1295773 totalRewards = 28 +1295773 countPokes1 = 17 +1295774 countRewards1 = 14 +1295774 leafProbs1 = 80 +1295774 countPokes2 = 17 +1295788 countRewards2 = 4 +1295789 leafProbs2 = 20 +1295789 countPokes3 = 8 +1295790 countRewards3 = 2 +1295790 leafProbs3 = 20 +1295790 countPokes4 = 8 +1295790 countRewards4 = 4 +1295791 leafProbs4 = 50 +1295791 countPokes5 = 3 +1295792 countRewards5 = 1 +1295806 leafProbs5 = 80 +1295806 countPokes6 = 7 +1295806 countRewards6 = 3 +1295806 leafProbs6 = 50 +~~~ +1295888 1 0 +1297809 DOWN 1 +1297809 0 0 +1300950 UP 1 +1300950 1 0 +1300961 DOWN 1 +1300961 0 0 +1303009 UP 1 +1303009 1 0 +1303026 DOWN 1 +1303026 0 0 +1309530 UP 1 +1309530 1 0 +1309548 DOWN 1 +1309548 0 0 +1309711 UP 1 +1309711 1 0 +1309715 DOWN 1 +1309715 0 0 +1309718 UP 1 +1309718 1 0 +1309722 DOWN 1 +1309722 0 0 +1313455 UP 1 +1313455 1 0 +1317834 DOWN 1 +1317834 0 0 +1318487 UP 1 +1318487 1 0 +1319146 DOWN 1 +1319146 0 0 +1323681 UP 2 +1323681 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1324191 DOWN 2 +1324191 0 0 +1324211 UP 2 +1324211 2 0 +~~~ +1324212 contingency = 1 +1324213 trialThresh = 100 +1324213 timeMaxOut = 30 +1324213 timeElapsed = 17 +1324213 totalPokes = 61 +1324214 totalRewards = 28 +1324214 countPokes1 = 17 +1324215 countRewards1 = 14 +1324215 leafProbs1 = 80 +1324215 countPokes2 = 18 +1324229 countRewards2 = 4 +1324229 leafProbs2 = 20 +1324230 countPokes3 = 8 +1324230 countRewards3 = 2 +1324231 leafProbs3 = 20 +1324231 countPokes4 = 8 +1324231 countRewards4 = 4 +1324231 leafProbs4 = 50 +1324232 countPokes5 = 3 +1324232 countRewards5 = 1 +1324247 leafProbs5 = 80 +1324247 countPokes6 = 7 +1324247 countRewards6 = 3 +1324247 leafProbs6 = 50 +~~~ +1324248 DOWN 2 +1324248 0 0 +1324255 UP 2 +1324255 2 0 +1324289 DOWN 2 +1324289 0 0 +1324304 UP 2 +1324304 2 0 +1324393 DOWN 2 +1324393 0 0 +1324402 UP 2 +1324402 2 0 +1324431 DOWN 2 +1324431 0 0 +1324433 UP 2 +1324433 2 0 +1324735 DOWN 2 +1324735 0 0 +1324753 UP 2 +1324753 2 0 +1324849 DOWN 2 +1324849 0 0 +1324893 UP 2 +1324893 2 0 +1324926 DOWN 2 +1324926 0 0 +1330640 UP 1 +1330640 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330664 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1330895 DOWN 1 +1330895 0 64 +1330909 UP 1 +1330909 1 64 +~~~ +1330925 contingency = 1 +1330926 trialThresh = 100 +1330926 timeMaxOut = 30 +1330926 timeElapsed = 17 +1330927 totalPokes = 62 +1330927 totalRewards = 29 +1330927 countPokes1 = 18 +1330927 countRewards1 = 15 +1330928 leafProbs1 = 80 +1330928 countPokes2 = 18 +1330943 countRewards2 = 4 +1330943 leafProbs2 = 20 +1330943 countPokes3 = 8 +1330943 countRewards3 = 2 +1330944 leafProbs3 = 20 +1330944 countPokes4 = 8 +1330945 countRewards4 = 4 +1330945 leafProbs4 = 50 +1330945 countPokes5 = 3 +1330945 countRewards5 = 1 +1330959 leafProbs5 = 80 +1330960 countPokes6 = 7 +1330960 countRewards6 = 3 +1330961 leafProbs6 = 50 +~~~ +1330963 1 0 +1330985 DOWN 1 +1330985 0 0 +1330989 UP 1 +1330989 1 0 +1333183 DOWN 1 +1333183 0 0 +1333194 UP 1 +1333194 1 0 +1333285 DOWN 1 +1333285 0 0 +1333299 UP 1 +1333299 1 0 +1333729 DOWN 1 +1333729 0 0 +1333763 UP 1 +1333763 1 0 +1333837 DOWN 1 +1333837 0 0 +1334076 UP 1 +1334076 1 0 +1334157 DOWN 1 +1334157 0 0 +1363910 UP 1 +1363910 1 0 +1363952 DOWN 1 +1363952 0 0 +1363982 UP 1 +1363982 1 0 +1364188 DOWN 1 +1364188 0 0 +1364372 UP 1 +1364372 1 0 +1364387 DOWN 1 +1364387 0 0 +1364428 UP 1 +1364428 1 0 +1364532 DOWN 1 +1364532 0 0 +1364798 UP 1 +1364798 1 0 +1365786 DOWN 1 +1365786 0 0 +1368358 UP 6 +1368358 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1368387 32 2048 +~~~ +~~~ +1368390 DOWN 6 +1368390 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +1368471 UP 6 +1368471 32 2048 +~~~ +1368503 contingency = 1 +1368503 trialThresh = 100 +1368504 timeMaxOut = 30 +1368504 timeElapsed = 18 +1368504 totalPokes = 63 +1368504 totalRewards = 30 +1368505 countPokes1 = 18 +1368505 countRewards1 = 15 +1368506 leafProbs1 = 80 +1368506 countPokes2 = 18 +1368520 countRewards2 = 4 +1368520 leafProbs2 = 20 +1368520 countPokes3 = 8 +1368521 countRewards3 = 2 +1368521 leafProbs3 = 20 +1368522 countPokes4 = 8 +1368522 countRewards4 = 4 +1368522 leafProbs4 = 50 +1368522 countPokes5 = 3 +1368523 countRewards5 = 1 +1368537 leafProbs5 = 80 +1368537 countPokes6 = 8 +1368538 countRewards6 = 4 +1368538 leafProbs6 = 50 +~~~ +1368538 DOWN 6 +1368538 0 2048 +1368581 UP 6 +1368581 32 2048 +1368687 32 0 +1371416 DOWN 6 +1371416 0 0 +1371448 UP 6 +1371448 32 0 +1371500 DOWN 6 +1371500 0 0 +1373649 UP 6 +1373649 32 0 +1373746 DOWN 6 +1373746 0 0 +1377612 UP 5 +1377612 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377642 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1377941 16 0 +1380619 DOWN 5 +1380619 0 0 +~~~ +1380643 contingency = 1 +1380643 trialThresh = 100 +1380644 timeMaxOut = 30 +1380644 timeElapsed = 19 +1380644 totalPokes = 64 +1380644 totalRewards = 31 +1380645 countPokes1 = 18 +1380645 countRewards1 = 15 +1380646 leafProbs1 = 80 +1380646 countPokes2 = 18 +1380660 countRewards2 = 4 +1380660 leafProbs2 = 20 +1380660 countPokes3 = 8 +1380661 countRewards3 = 2 +1380661 leafProbs3 = 20 +1380662 countPokes4 = 8 +1380662 countRewards4 = 4 +1380662 leafProbs4 = 50 +1380662 countPokes5 = 4 +1380663 countRewards5 = 2 +1380677 leafProbs5 = 80 +1380677 countPokes6 = 8 +1380678 countRewards6 = 4 +1380678 leafProbs6 = 50 +~~~ +1380678 UP 5 +1380678 16 0 +1380938 DOWN 5 +1380938 0 0 +1383956 UP 6 +1383956 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1384571 DOWN 6 +1384571 0 0 +~~~ +1384595 contingency = 1 +1384596 trialThresh = 100 +1384596 timeMaxOut = 30 +1384596 timeElapsed = 19 +1384596 totalPokes = 65 +1384596 totalRewards = 31 +1384597 countPokes1 = 18 +1384597 countRewards1 = 15 +1384598 leafProbs1 = 80 +1384598 countPokes2 = 18 +1384612 countRewards2 = 4 +1384612 leafProbs2 = 20 +1384613 countPokes3 = 8 +1384613 countRewards3 = 2 +1384614 leafProbs3 = 20 +1384614 countPokes4 = 8 +1384614 countRewards4 = 4 +1384614 leafProbs4 = 50 +1384614 countPokes5 = 4 +1384615 countRewards5 = 2 +1384629 leafProbs5 = 80 +1384630 countPokes6 = 9 +1384630 countRewards6 = 4 +1384630 leafProbs6 = 50 +~~~ +1384630 UP 6 +1384630 32 0 +1384690 DOWN 6 +1384690 0 0 +1389274 UP 5 +1389274 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389305 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1389566 DOWN 5 +1389566 0 1024 +1389590 UP 5 +1389590 16 1024 +~~~ +1389592 contingency = 1 +1389593 trialThresh = 100 +1389593 timeMaxOut = 30 +1389594 timeElapsed = 19 +1389594 totalPokes = 66 +1389594 totalRewards = 32 +1389594 countPokes1 = 18 +1389595 countRewards1 = 15 +1389595 leafProbs1 = 80 +1389596 countPokes2 = 18 +1389610 countRewards2 = 4 +1389610 leafProbs2 = 20 +1389610 countPokes3 = 8 +1389611 countRewards3 = 2 +1389611 leafProbs3 = 20 +1389612 countPokes4 = 8 +1389612 countRewards4 = 4 +1389612 leafProbs4 = 50 +1389612 countPokes5 = 5 +1389612 countRewards5 = 3 +1389627 leafProbs5 = 80 +1389627 countPokes6 = 9 +1389628 countRewards6 = 4 +1389628 leafProbs6 = 50 +~~~ +1389628 16 0 +1391076 DOWN 5 +1391076 0 0 +1391080 UP 5 +1391080 16 0 +1392035 DOWN 5 +1392035 0 0 +1392046 UP 5 +1392046 16 0 +1392136 DOWN 5 +1392136 0 0 +1392181 UP 5 +1392181 16 0 +1392250 DOWN 5 +1392250 0 0 +1392284 UP 5 +1392284 16 0 +1392368 DOWN 5 +1392368 0 0 +1392392 UP 5 +1392392 16 0 +1392465 DOWN 5 +1392465 0 0 +1395232 UP 6 +1395232 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395265 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1395565 32 0 +1398420 DOWN 6 +1398420 0 0 +1398438 UP 6 +1398438 32 0 +~~~ +1398451 contingency = 1 +1398452 trialThresh = 100 +1398452 timeMaxOut = 30 +1398452 timeElapsed = 19 +1398452 totalPokes = 67 +1398453 totalRewards = 33 +1398453 countPokes1 = 18 +1398454 countRewards1 = 15 +1398454 leafProbs1 = 80 +1398454 countPokes2 = 18 +1398468 countRewards2 = 4 +1398468 leafProbs2 = 20 +1398469 countPokes3 = 8 +1398469 countRewards3 = 2 +1398470 leafProbs3 = 20 +1398470 countPokes4 = 8 +1398470 countRewards4 = 4 +1398470 leafProbs4 = 50 +1398471 countPokes5 = 5 +1398471 countRewards5 = 3 +1398485 leafProbs5 = 80 +1398486 countPokes6 = 10 +1398486 countRewards6 = 5 +1398486 leafProbs6 = 50 +~~~ +1398548 DOWN 6 +1398548 0 0 +1398554 UP 6 +1398554 32 0 +1398647 DOWN 6 +1398647 0 0 +1406156 UP 1 +1406156 1 0 +1406166 DOWN 1 +1406166 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406185 0 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1406204 contingency = 1 +1406205 trialThresh = 100 +1406205 timeMaxOut = 30 +1406206 timeElapsed = 19 +1406206 totalPokes = 68 +1406206 totalRewards = 34 +1406206 countPokes1 = 19 +1406207 countRewards1 = 16 +1406207 leafProbs1 = 80 +1406208 countPokes2 = 18 +1406222 countRewards2 = 4 +1406222 leafProbs2 = 20 +1406222 countPokes3 = 8 +1406222 countRewards3 = 2 +1406223 leafProbs3 = 20 +1406223 countPokes4 = 8 +1406224 countRewards4 = 4 +1406224 leafProbs4 = 50 +1406224 countPokes5 = 5 +1406224 countRewards5 = 3 +1406238 leafProbs5 = 80 +1406239 countPokes6 = 10 +1406239 countRewards6 = 5 +1406240 leafProbs6 = 50 +~~~ +1406240 UP 1 +1406240 1 64 +1406256 DOWN 1 +1406256 0 64 +1406280 UP 1 +1406280 1 64 +1406485 1 0 +1409665 DOWN 1 +1409665 0 0 +1409685 UP 1 +1409685 1 0 +1409709 DOWN 1 +1409708 0 0 +1417163 UP 2 +1417163 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1417315 DOWN 2 +1417315 0 0 +1417319 UP 2 +1417319 2 0 +~~~ +1417337 contingency = 1 +1417337 trialThresh = 100 +1417337 timeMaxOut = 30 +1417337 timeElapsed = 19 +1417337 totalPokes = 69 +1417338 totalRewards = 34 +1417338 countPokes1 = 19 +1417339 countRewards1 = 16 +1417339 leafProbs1 = 80 +1417339 countPokes2 = 19 +1417353 countRewards2 = 4 +1417354 leafProbs2 = 20 +1417354 countPokes3 = 8 +1417355 countRewards3 = 2 +1417355 leafProbs3 = 20 +1417355 countPokes4 = 8 +1417355 countRewards4 = 4 +1417356 leafProbs4 = 50 +1417356 countPokes5 = 5 +1417356 countRewards5 = 3 +1417371 leafProbs5 = 80 +1417371 countPokes6 = 10 +1417371 countRewards6 = 5 +1417371 leafProbs6 = 50 +~~~ +1417517 DOWN 2 +1417517 0 0 +1425199 UP 1 +1425199 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425232 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1425531 1 0 +1425628 DOWN 1 +1425628 0 0 +1425630 UP 1 +1425630 1 0 +~~~ +1425642 contingency = 1 +1425642 trialThresh = 100 +1425643 timeMaxOut = 30 +1425643 timeElapsed = 20 +1425643 totalPokes = 70 +1425643 totalRewards = 35 +1425644 countPokes1 = 20 +1425644 countRewards1 = 17 +1425645 leafProbs1 = 80 +1425645 countPokes2 = 19 +1425659 countRewards2 = 4 +1425659 leafProbs2 = 20 +1425659 countPokes3 = 8 +1425660 countRewards3 = 2 +1425660 leafProbs3 = 20 +1425661 countPokes4 = 8 +1425661 countRewards4 = 4 +1425661 leafProbs4 = 50 +1425661 countPokes5 = 5 +1425662 countRewards5 = 3 +1425676 leafProbs5 = 80 +1425676 countPokes6 = 10 +1425677 countRewards6 = 5 +1425677 leafProbs6 = 50 +~~~ +1428095 DOWN 1 +1428095 0 0 +1436386 UP 1 +1436386 1 0 +1436553 DOWN 1 +1436553 0 0 +1436573 UP 1 +1436573 1 0 +1436757 DOWN 1 +1436757 0 0 +1439165 UP 1 +1439165 1 0 +1439433 DOWN 1 +1439433 0 0 +1439563 UP 1 +1439563 1 0 +1439677 DOWN 1 +1439677 0 0 +1457845 UP 6 +1457845 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1458384 DOWN 6 +1458384 0 0 +~~~ +1458413 contingency = 1 +1458413 trialThresh = 100 +1458413 timeMaxOut = 30 +1458414 timeElapsed = 20 +1458414 totalPokes = 71 +1458415 totalRewards = 35 +1458415 countPokes1 = 20 +1458415 countRewards1 = 17 +1458415 leafProbs1 = 80 +1458416 countPokes2 = 19 +1458430 countRewards2 = 4 +1458431 leafProbs2 = 20 +1458431 countPokes3 = 8 +1458431 countRewards3 = 2 +1458431 leafProbs3 = 20 +1458431 countPokes4 = 8 +1458432 countRewards4 = 4 +1458432 leafProbs4 = 50 +1458433 countPokes5 = 5 +1458433 countRewards5 = 3 +1458447 leafProbs5 = 80 +1458447 countPokes6 = 11 +1458448 countRewards6 = 5 +1458448 leafProbs6 = 50 +~~~ +1463182 UP 4 +1463182 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463207 8 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1463507 8 0 +1465068 DOWN 4 +1465068 0 0 +1465078 UP 4 +1465078 8 0 +~~~ +1465080 contingency = 1 +1465080 trialThresh = 100 +1465081 timeMaxOut = 30 +1465081 timeElapsed = 21 +1465082 totalPokes = 72 +1465082 totalRewards = 36 +1465082 countPokes1 = 20 +1465082 countRewards1 = 17 +1465083 leafProbs1 = 80 +1465083 countPokes2 = 19 +1465097 countRewards2 = 4 +1465098 leafProbs2 = 20 +1465098 countPokes3 = 8 +1465098 countRewards3 = 2 +1465098 leafProbs3 = 20 +1465099 countPokes4 = 9 +1465099 countRewards4 = 5 +1465100 leafProbs4 = 50 +1465100 countPokes5 = 5 +1465100 countRewards5 = 3 +1465114 leafProbs5 = 80 +1465114 countPokes6 = 11 +1465115 countRewards6 = 5 +1465115 leafProbs6 = 50 +~~~ +1465910 DOWN 4 +1465910 0 0 +1465932 UP 4 +1465932 8 0 +1465982 DOWN 4 +1465982 0 0 +1469977 UP 3 +1469977 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1470102 DOWN 3 +1470102 0 0 +1470106 UP 3 +1470106 4 0 +~~~ +1470131 contingency = 1 +1470131 trialThresh = 100 +1470132 timeMaxOut = 30 +1470132 timeElapsed = 21 +1470132 totalPokes = 73 +1470132 totalRewards = 36 +1470133 countPokes1 = 20 +1470133 countRewards1 = 17 +1470134 leafProbs1 = 80 +1470134 countPokes2 = 19 +1470148 countRewards2 = 4 +1470148 leafProbs2 = 20 +1470148 countPokes3 = 9 +1470149 countRewards3 = 2 +1470149 leafProbs3 = 20 +1470150 countPokes4 = 9 +1470150 countRewards4 = 5 +1470150 leafProbs4 = 50 +1470150 countPokes5 = 5 +1470151 countRewards5 = 3 +1470165 leafProbs5 = 80 +1470166 countPokes6 = 11 +1470166 countRewards6 = 5 +1470166 leafProbs6 = 50 +~~~ +1470412 DOWN 3 +1470412 0 0 +1470744 UP 3 +1470744 4 0 +1470804 DOWN 3 +1470804 0 0 +1470988 UP 3 +1470988 4 0 +1471230 DOWN 3 +1471230 0 0 +1471241 UP 3 +1471241 4 0 +1471517 DOWN 3 +1471517 0 0 +1487864 UP 1 +1487864 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1487894 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1488033 DOWN 1 +1488033 0 64 +~~~ +1488052 contingency = 1 +1488052 trialThresh = 100 +1488052 timeMaxOut = 30 +1488053 timeElapsed = 21 +1488053 totalPokes = 74 +1488054 totalRewards = 37 +1488054 countPokes1 = 21 +1488054 countRewards1 = 18 +1488054 leafProbs1 = 80 +1488055 countPokes2 = 19 +1488069 countRewards2 = 4 +1488069 leafProbs2 = 20 +1488070 countPokes3 = 9 +1488070 countRewards3 = 2 +1488070 leafProbs3 = 20 +1488070 countPokes4 = 9 +1488071 countRewards4 = 5 +1488071 leafProbs4 = 50 +1488072 countPokes5 = 5 +1488072 countRewards5 = 3 +1488086 leafProbs5 = 80 +1488086 countPokes6 = 11 +1488086 countRewards6 = 5 +1488087 leafProbs6 = 50 +~~~ +1488088 UP 1 +1488087 1 64 +1488125 DOWN 1 +1488125 0 64 +1488134 UP 1 +1488134 1 64 +1488194 1 0 +1488215 DOWN 1 +1488215 0 0 +1488224 UP 1 +1488224 1 0 +1490974 DOWN 1 +1490974 0 0 +1509584 UP 1 +1509584 1 0 +1509649 DOWN 1 +1509649 0 0 +1518425 UP 1 +1518425 1 0 +1518702 DOWN 1 +1518702 0 0 +1546275 UP 1 +1546275 1 0 +1546302 DOWN 1 +1546302 0 0 +1546606 UP 1 +1546606 1 0 +1548522 DOWN 1 +1548522 0 0 +1573975 UP 1 +1573975 1 0 +1573983 DOWN 1 +1573983 0 0 +1574029 UP 1 +1574029 1 0 +1574135 DOWN 1 +1574135 0 0 +1574191 UP 1 +1574191 1 0 +1574205 DOWN 1 +1574205 0 0 +1574431 UP 1 +1574431 1 0 +1574458 DOWN 1 +1574458 0 0 +1574699 UP 1 +1574699 1 0 +1574740 DOWN 1 +1574740 0 0 +1574977 UP 1 +1574977 1 0 +1575446 DOWN 1 +1575446 0 0 +1575945 UP 1 +1575945 1 0 +1575990 DOWN 1 +1575990 0 0 +1576114 UP 1 +1576114 1 0 +1578288 DOWN 1 +1578288 0 0 +1578320 UP 1 +1578320 1 0 +1578472 DOWN 1 +1578472 0 0 +1579059 UP 1 +1579059 1 0 +1580865 DOWN 1 +1580865 0 0 +1581494 UP 1 +1581494 1 0 +1581933 DOWN 1 +1581933 0 0 +1584793 UP 2 +1584793 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1585028 DOWN 2 +1585028 0 0 +~~~ +1585042 contingency = 1 +1585042 trialThresh = 100 +1585043 timeMaxOut = 30 +1585043 timeElapsed = 24 +1585044 totalPokes = 75 +1585044 totalRewards = 37 +1585044 countPokes1 = 21 +1585044 countRewards1 = 18 +1585045 leafProbs1 = 80 +1585045 countPokes2 = 20 +1585059 countRewards2 = 4 +1585060 leafProbs2 = 20 +1585060 countPokes3 = 9 +1585060 countRewards3 = 2 +1585060 leafProbs3 = 20 +1585061 countPokes4 = 9 +1585061 countRewards4 = 5 +1585062 leafProbs4 = 50 +1585062 countPokes5 = 5 +1585062 countRewards5 = 3 +1585076 leafProbs5 = 80 +1585076 countPokes6 = 11 +1585077 countRewards6 = 5 +1585077 leafProbs6 = 50 +~~~ +1585078 UP 2 +1585078 2 0 +1585135 DOWN 2 +1585135 0 0 +1585165 UP 2 +1585165 2 0 +1585252 DOWN 2 +1585252 0 0 +1585263 UP 2 +1585263 2 0 +1585596 DOWN 2 +1585596 0 0 +1585618 UP 2 +1585618 2 0 +1585701 DOWN 2 +1585701 0 0 +1596554 UP 1 +1596554 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596579 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1596842 DOWN 1 +1596842 0 64 +1596868 UP 1 +1596868 1 64 +~~~ +1596872 contingency = 1 +1596873 trialThresh = 100 +1596873 timeMaxOut = 30 +1596874 timeElapsed = 24 +1596874 totalPokes = 76 +1596874 totalRewards = 38 +1596874 countPokes1 = 22 +1596875 countRewards1 = 19 +1596875 leafProbs1 = 80 +1596876 countPokes2 = 20 +1596890 countRewards2 = 4 +1596890 leafProbs2 = 20 +1596890 countPokes3 = 9 +1596891 countRewards3 = 2 +1596891 leafProbs3 = 20 +1596891 countPokes4 = 9 +1596892 countRewards4 = 5 +1596892 leafProbs4 = 50 +1596892 countPokes5 = 5 +1596892 countRewards5 = 3 +1596907 leafProbs5 = 80 +1596907 countPokes6 = 11 +1596908 countRewards6 = 5 +1596908 leafProbs6 = 50 +~~~ +1596908 1 0 +1597552 DOWN 1 +1597552 0 0 +1597562 UP 1 +1597562 1 0 +1599590 DOWN 1 +1599590 0 0 +1599603 UP 1 +1599603 1 0 +1599930 DOWN 1 +1599930 0 0 +1599949 UP 1 +1599949 1 0 +1600040 DOWN 1 +1600040 0 0 +1600082 UP 1 +1600082 1 0 +1600148 DOWN 1 +1600148 0 0 +1621420 UP 3 +1621420 4 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621446 4 256 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1621516 DOWN 3 +1621516 0 256 +1621541 UP 3 +1621541 4 256 +~~~ +1621544 contingency = 1 +1621544 trialThresh = 100 +1621544 timeMaxOut = 30 +1621544 timeElapsed = 25 +1621545 totalPokes = 77 +1621545 totalRewards = 39 +1621546 countPokes1 = 22 +1621546 countRewards1 = 19 +1621546 leafProbs1 = 80 +1621546 countPokes2 = 20 +1621561 countRewards2 = 4 +1621561 leafProbs2 = 20 +1621562 countPokes3 = 10 +1621562 countRewards3 = 3 +1621562 leafProbs3 = 20 +1621562 countPokes4 = 9 +1621563 countRewards4 = 5 +1621563 leafProbs4 = 50 +1621564 countPokes5 = 5 +1621564 countRewards5 = 3 +1621577 leafProbs5 = 80 +1621578 countPokes6 = 11 +1621578 countRewards6 = 5 +1621578 leafProbs6 = 50 +~~~ +1621595 DOWN 3 +1621595 0 256 +1621605 UP 3 +1621605 4 256 +1621746 4 0 +1624916 DOWN 3 +1624916 0 0 +1624949 UP 3 +1624949 4 0 +1624966 DOWN 3 +1624966 0 0 +1627332 UP 4 +1627332 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1627640 DOWN 4 +1627640 0 0 +~~~ +1627661 contingency = 1 +1627661 trialThresh = 100 +1627662 timeMaxOut = 30 +1627662 timeElapsed = 25 +1627662 totalPokes = 78 +1627662 totalRewards = 39 +1627663 countPokes1 = 22 +1627663 countRewards1 = 19 +1627663 leafProbs1 = 80 +1627664 countPokes2 = 20 +1627678 countRewards2 = 4 +1627678 leafProbs2 = 20 +1627678 countPokes3 = 10 +1627679 countRewards3 = 3 +1627679 leafProbs3 = 20 +1627680 countPokes4 = 10 +1627680 countRewards4 = 5 +1627680 leafProbs4 = 50 +1627680 countPokes5 = 5 +1627681 countRewards5 = 3 +1627694 leafProbs5 = 80 +1627694 countPokes6 = 11 +1627695 countRewards6 = 5 +1627695 leafProbs6 = 50 +~~~ +1632671 UP 6 +1632671 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1632929 DOWN 6 +1632928 0 0 +~~~ +1632951 contingency = 1 +1632951 trialThresh = 100 +1632951 timeMaxOut = 30 +1632951 timeElapsed = 25 +1632952 totalPokes = 79 +1632952 totalRewards = 39 +1632953 countPokes1 = 22 +1632953 countRewards1 = 19 +1632953 leafProbs1 = 80 +1632953 countPokes2 = 20 +1632967 countRewards2 = 4 +1632968 leafProbs2 = 20 +1632968 countPokes3 = 10 +1632969 countRewards3 = 3 +1632969 leafProbs3 = 20 +1632969 countPokes4 = 10 +1632969 countRewards4 = 5 +1632970 leafProbs4 = 50 +1632970 countPokes5 = 5 +1632971 countRewards5 = 3 +1632984 leafProbs5 = 80 +1632984 countPokes6 = 12 +1632985 countRewards6 = 5 +1632985 leafProbs6 = 50 +~~~ +1632985 UP 6 +1632985 32 0 +1633433 DOWN 6 +1633433 0 0 +1656329 UP 5 +1656329 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1656549 DOWN 5 +1656549 0 0 +1656561 UP 5 +1656561 16 0 +~~~ +1656577 contingency = 1 +1656577 trialThresh = 100 +1656577 timeMaxOut = 30 +1656578 timeElapsed = 25 +1656578 totalPokes = 80 +1656579 totalRewards = 39 +1656579 countPokes1 = 22 +1656579 countRewards1 = 19 +1656579 leafProbs1 = 80 +1656580 countPokes2 = 20 +1656594 countRewards2 = 4 +1656594 leafProbs2 = 20 +1656595 countPokes3 = 10 +1656595 countRewards3 = 3 +1656595 leafProbs3 = 20 +1656595 countPokes4 = 10 +1656596 countRewards4 = 5 +1656596 leafProbs4 = 50 +1656597 countPokes5 = 6 +1656597 countRewards5 = 3 +1656611 leafProbs5 = 80 +1656611 countPokes6 = 12 +1656611 countRewards6 = 5 +1656611 leafProbs6 = 50 +~~~ +1656768 DOWN 5 +1656768 0 0 +1656800 UP 5 +1656800 16 0 +1656865 DOWN 5 +1656865 0 0 +1657065 UP 5 +1657065 16 0 +1657198 DOWN 5 +1657198 0 0 +1657390 UP 5 +1657390 16 0 +1657589 DOWN 5 +1657589 0 0 +1665403 UP 6 +1665403 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1665845 DOWN 6 +1665845 0 0 +~~~ +1665871 contingency = 1 +1665871 trialThresh = 100 +1665871 timeMaxOut = 30 +1665871 timeElapsed = 26 +1665872 totalPokes = 81 +1665872 totalRewards = 39 +1665873 countPokes1 = 22 +1665873 countRewards1 = 19 +1665873 leafProbs1 = 80 +1665873 countPokes2 = 20 +1665888 countRewards2 = 4 +1665888 leafProbs2 = 20 +1665889 countPokes3 = 10 +1665889 countRewards3 = 3 +1665889 leafProbs3 = 20 +1665889 countPokes4 = 10 +1665889 countRewards4 = 5 +1665890 leafProbs4 = 50 +1665890 countPokes5 = 6 +1665891 countRewards5 = 3 +1665904 leafProbs5 = 80 +1665905 countPokes6 = 13 +1665905 countRewards6 = 5 +1665905 leafProbs6 = 50 +~~~ +1669113 UP 6 +1669113 32 0 +1669383 DOWN 6 +1669383 0 0 +1675641 UP 6 +1675641 32 0 +1675761 DOWN 6 +1675761 0 0 +1690033 UP 5 +1690033 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690072 16 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1690281 DOWN 5 +1690281 0 1024 +1690303 UP 5 +1690303 16 1024 +~~~ +1690307 contingency = 1 +1690307 trialThresh = 100 +1690308 timeMaxOut = 30 +1690308 timeElapsed = 26 +1690308 totalPokes = 82 +1690308 totalRewards = 40 +1690309 countPokes1 = 22 +1690309 countRewards1 = 19 +1690310 leafProbs1 = 80 +1690310 countPokes2 = 20 +1690324 countRewards2 = 4 +1690324 leafProbs2 = 20 +1690324 countPokes3 = 10 +1690325 countRewards3 = 3 +1690325 leafProbs3 = 20 +1690326 countPokes4 = 10 +1690326 countRewards4 = 5 +1690326 leafProbs4 = 50 +1690326 countPokes5 = 7 +1690327 countRewards5 = 4 +1690340 leafProbs5 = 80 +1690340 countPokes6 = 13 +1690341 countRewards6 = 5 +1690341 leafProbs6 = 50 +~~~ +1690372 16 0 +1692550 DOWN 5 +1692550 0 0 +1692566 UP 5 +1692566 16 0 +1692648 DOWN 5 +1692648 0 0 +1692660 UP 5 +1692660 16 0 +1692974 DOWN 5 +1692974 0 0 +1692980 UP 5 +1692980 16 0 +1693067 DOWN 5 +1693067 0 0 +1697581 UP 6 +1697581 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697616 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1697849 DOWN 6 +1697849 0 2048 +~~~ +1697876 contingency = 1 +1697877 trialThresh = 100 +1697877 timeMaxOut = 30 +1697878 timeElapsed = 26 +1697878 totalPokes = 83 +1697878 totalRewards = 41 +1697878 countPokes1 = 22 +1697879 countRewards1 = 19 +1697879 leafProbs1 = 80 +1697880 countPokes2 = 20 +1697894 countRewards2 = 4 +1697894 leafProbs2 = 20 +1697894 countPokes3 = 10 +1697895 countRewards3 = 3 +1697895 leafProbs3 = 20 +1697896 countPokes4 = 10 +1697896 countRewards4 = 5 +1697896 leafProbs4 = 50 +1697896 countPokes5 = 7 +1697897 countRewards5 = 4 +1697910 leafProbs5 = 80 +1697910 countPokes6 = 14 +1697911 countRewards6 = 6 +1697911 leafProbs6 = 50 +~~~ +1697912 UP 6 +1697912 32 2048 +1697916 32 0 +1701074 DOWN 6 +1701074 0 0 +1701121 UP 6 +1701121 32 0 +1701172 DOWN 6 +1701172 0 0 +1703985 UP 6 +1703985 32 0 +1704576 DOWN 6 +1704576 0 0 +1713248 UP 6 +1713248 32 0 +1713398 DOWN 6 +1713398 0 0 +1720212 UP 6 +1720212 32 0 +1720425 DOWN 6 +1720425 0 0 +1720460 UP 6 +1720460 32 0 +1720823 DOWN 6 +1720823 0 0 +1720884 UP 6 +1720884 32 0 +1720910 DOWN 6 +1720910 0 0 +1720928 UP 6 +1720928 32 0 +1721029 DOWN 6 +1721029 0 0 +1730404 UP 1 +1730404 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1730828 DOWN 1 +1730828 0 0 +1730838 UP 1 +1730838 1 0 +~~~ +1730854 contingency = 1 +1730854 trialThresh = 100 +1730854 timeMaxOut = 30 +1730855 timeElapsed = 27 +1730855 totalPokes = 84 +1730856 totalRewards = 41 +1730856 countPokes1 = 23 +1730856 countRewards1 = 19 +1730856 leafProbs1 = 80 +1730856 countPokes2 = 20 +1730871 countRewards2 = 4 +1730871 leafProbs2 = 20 +1730872 countPokes3 = 10 +1730872 countRewards3 = 3 +1730872 leafProbs3 = 20 +1730872 countPokes4 = 10 +1730873 countRewards4 = 5 +1730873 leafProbs4 = 50 +1730874 countPokes5 = 7 +1730874 countRewards5 = 4 +1730887 leafProbs5 = 80 +1730888 countPokes6 = 14 +1730888 countRewards6 = 6 +1730888 leafProbs6 = 50 +~~~ +1730888 DOWN 1 +1730888 0 0 +1730978 UP 1 +1730978 1 0 +1731260 DOWN 1 +1731260 0 0 +1731340 UP 1 +1731340 1 0 +1731363 DOWN 1 +1731363 0 0 +1731384 UP 1 +1731384 1 0 +1731536 DOWN 1 +1731536 0 0 +1742889 UP 1 +1742889 1 0 +1742936 DOWN 1 +1742936 0 0 +1743067 UP 1 +1743067 1 0 +1744211 DOWN 1 +1744211 0 0 +1744227 UP 1 +1744227 1 0 +1744330 DOWN 1 +1744330 0 0 +1744349 UP 1 +1744349 1 0 +1744457 DOWN 1 +1744457 0 0 +1744477 UP 1 +1744477 1 0 +1744689 DOWN 1 +1744689 0 0 +1744701 UP 1 +1744701 1 0 +1744721 DOWN 1 +1744721 0 0 +1744786 UP 1 +1744786 1 0 +1744804 DOWN 1 +1744804 0 0 +1744814 UP 1 +1744814 1 0 +1744896 DOWN 1 +1744896 0 0 +1744901 UP 1 +1744901 1 0 +1745017 DOWN 1 +1745017 0 0 +1745024 UP 1 +1745024 1 0 +1745139 DOWN 1 +1745139 0 0 +1761273 UP 1 +1761273 1 0 +1761327 DOWN 1 +1761327 0 0 +1764240 UP 2 +1764240 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1764473 DOWN 2 +1764473 0 0 +1764489 UP 2 +1764489 2 0 +~~~ +1764493 contingency = 1 +1764493 trialThresh = 100 +1764494 timeMaxOut = 30 +1764494 timeElapsed = 28 +1764495 totalPokes = 85 +1764495 totalRewards = 41 +1764495 countPokes1 = 23 +1764495 countRewards1 = 19 +1764496 leafProbs1 = 80 +1764496 countPokes2 = 21 +1764510 countRewards2 = 4 +1764511 leafProbs2 = 20 +1764511 countPokes3 = 10 +1764511 countRewards3 = 3 +1764511 leafProbs3 = 20 +1764512 countPokes4 = 10 +1764512 countRewards4 = 5 +1764513 leafProbs4 = 50 +1764513 countPokes5 = 7 +1764513 countRewards5 = 4 +1764527 leafProbs5 = 80 +1764527 countPokes6 = 14 +1764527 countRewards6 = 6 +1764527 leafProbs6 = 50 +~~~ +1764597 DOWN 2 +1764597 0 0 +1764605 UP 2 +1764605 2 0 +1765104 DOWN 2 +1765103 0 0 +1770599 UP 1 +1770599 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1771061 DOWN 1 +1771061 0 0 +1771071 UP 1 +1771071 1 0 +~~~ +1771083 contingency = 1 +1771084 trialThresh = 100 +1771084 timeMaxOut = 30 +1771085 timeElapsed = 28 +1771085 totalPokes = 86 +1771085 totalRewards = 41 +1771085 countPokes1 = 24 +1771085 countRewards1 = 19 +1771086 leafProbs1 = 80 +1771086 countPokes2 = 21 +1771101 countRewards2 = 4 +1771101 leafProbs2 = 20 +1771101 countPokes3 = 10 +1771101 countRewards3 = 3 +1771102 leafProbs3 = 20 +1771102 countPokes4 = 10 +1771103 countRewards4 = 5 +1771103 leafProbs4 = 50 +1771103 countPokes5 = 7 +1771103 countRewards5 = 4 +1771117 leafProbs5 = 80 +1771117 countPokes6 = 14 +1771117 countRewards6 = 6 +1771118 leafProbs6 = 50 +~~~ +1771118 DOWN 1 +1771118 0 0 +1773853 UP 1 +1773853 1 0 +1773885 DOWN 1 +1773885 0 0 +1796885 UP 2 +1796885 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1797423 DOWN 2 +1797423 0 0 +~~~ +1797451 contingency = 1 +1797451 trialThresh = 100 +1797452 timeMaxOut = 30 +1797452 timeElapsed = 29 +1797452 totalPokes = 87 +1797452 totalRewards = 41 +1797453 countPokes1 = 24 +1797453 countRewards1 = 19 +1797454 leafProbs1 = 80 +1797454 countPokes2 = 22 +1797468 countRewards2 = 4 +1797468 leafProbs2 = 20 +1797469 countPokes3 = 10 +1797469 countRewards3 = 3 +1797470 leafProbs3 = 20 +1797470 countPokes4 = 10 +1797470 countRewards4 = 5 +1797470 leafProbs4 = 50 +1797470 countPokes5 = 7 +1797471 countRewards5 = 4 +1797484 leafProbs5 = 80 +1797485 countPokes6 = 14 +1797485 countRewards6 = 6 +1797486 leafProbs6 = 50 +~~~ +1802774 UP 1 +1802774 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1802803 1 64 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1803012 DOWN 1 +1803012 0 64 +1803039 UP 1 +1803039 1 64 +~~~ +1803040 contingency = 1 +1803040 trialThresh = 100 +1803041 timeMaxOut = 30 +1803041 timeElapsed = 29 +1803042 totalPokes = 88 +1803042 totalRewards = 42 +1803042 countPokes1 = 25 +1803042 countRewards1 = 20 +1803043 leafProbs1 = 80 +1803057 countPokes2 = 22 +1803057 countRewards2 = 4 +1803058 leafProbs2 = 20 +1803058 countPokes3 = 10 +1803058 countRewards3 = 3 +1803058 leafProbs3 = 20 +1803058 countPokes4 = 10 +1803059 countRewards4 = 5 +1803059 leafProbs4 = 50 +1803060 countPokes5 = 7 +1803074 countRewards5 = 4 +1803074 leafProbs5 = 80 +1803074 countPokes6 = 14 +1803074 countRewards6 = 6 +1803074 leafProbs6 = 50 +~~~ +1803103 1 0 +1803107 DOWN 1 +1803107 0 0 +1803121 UP 1 +1803121 1 0 +1805498 DOWN 1 +1805498 0 0 +1805512 UP 1 +1805512 1 0 +1805582 DOWN 1 +1805582 0 0 +1805630 UP 1 +1805630 1 0 +1805694 DOWN 1 +1805694 0 0 +1805708 UP 1 +1805708 1 0 +1805940 DOWN 1 +1805940 0 0 +1811690 UP 1 +1811690 1 0 +1811692 DOWN 1 +1811692 0 0 +1819890 UP 6 +1819890 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1819919 32 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +1820218 32 0 +1823071 DOWN 6 +1823071 0 0 +1823084 UP 6 +1823084 32 0 +~~~ +1823102 contingency = 1 +1823103 trialThresh = 100 +1823103 timeMaxOut = 30 +1823104 timeElapsed = 30 +1823104 totalPokes = 89 +1823104 totalRewards = 43 +1823104 countPokes1 = 25 +1823105 countRewards1 = 20 +1823105 leafProbs1 = 80 +1823106 countPokes2 = 22 +1823120 countRewards2 = 4 +1823120 leafProbs2 = 20 +1823120 countPokes3 = 10 +1823121 countRewards3 = 3 +1823121 leafProbs3 = 20 +1823121 countPokes4 = 10 +1823122 countRewards4 = 5 +1823122 leafProbs4 = 50 +1823122 countPokes5 = 7 +1823122 countRewards5 = 4 +1823136 leafProbs5 = 80 +1823136 countPokes6 = 15 +1823137 countRewards6 = 7 +1823137 leafProbs6 = 50 +~~~ +1823138 This contingency is over! +~~~ +1823138 This session is complete! +~~~ +1823138 32 63 +1823170 DOWN 6 +1823170 0 63 +1823388 0 0 +1823638 0 63 +1823888 0 0 +1824138 0 63 +1824388 0 0 +1824638 0 63 +1824888 0 0 +1825138 0 63 +1825388 0 0 +1825638 0 63 +1825888 0 0 +1826138 0 63 +1826388 0 0 +1826638 0 63 +1826888 0 0 +1827138 0 63 +1827257 UP 6 +1827257 32 63 +1827317 DOWN 6 +1827317 0 63 +1827388 0 0 +1827638 0 63 +1827888 0 0 +1828138 0 63 +1828388 0 0 +1828638 0 63 +1828888 0 0 +1829138 0 63 +1829388 0 0 +1829638 0 63 +1829888 0 0 +1830138 0 63 +1830388 0 0 +1830638 0 63 +1830888 0 0 +1831138 0 63 +1831388 0 0 +1831638 0 63 +1831888 0 0 +1832138 0 63 +1832388 0 0 +1832638 0 63 +1832888 0 0 +1833138 0 63 +1833388 0 0 +1833638 0 63 +1833888 0 0 +1834138 0 63 +1834388 0 0 +1834638 0 63 +1834888 0 0 +1835138 0 63 +1835388 0 0 +1842744 UP 6 +1842744 32 0 +1844444 DOWN 6 +1844444 0 0 + + description: state script log run 1 + task_epochs: 2, +] +2021-05-23 17:38:13,041 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-23 17:38:13,635 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-05-23 17:38:13,638 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-05-23 17:38:13,638 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-05-23 17:38:13,640 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-05-23 17:38:13,641 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-05-23 17:38:13,665 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-05-23 17:38:13,666 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-05-23 17:38:13,683 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-05-23 17:38:13,683 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-05-23 17:38:13,685 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-05-23 17:38:13,685 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-05-23 17:38:13,685 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-05-23 17:38:13,686 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-05-23 17:38:13,686 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-05-23 17:38:13,686 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-05-23 17:38:13,687 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-05-23 17:38:13,688 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-05-23 17:38:13,688 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-05-23 17:38:13,689 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-05-23 17:38:13,689 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. +2021-05-23 17:38:13,690 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. +2021-05-23 17:38:13,694 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-05-23 17:38:13,694 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-05-23 17:38:13,696 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-05-23 17:38:13,696 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-05-23 17:38:13,700 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-05-23 17:38:13,800 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-05-23 17:38:13,810 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-05-23 17:38:13,814 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-05-23 17:38:13,815 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-05-23 17:38:14,964 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-05-23 17:38:14,968 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-05-23 17:38:17,421 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-05-23 17:38:17,421 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-05-23 17:38:17,423 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-05-23 17:38:17,425 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-05-23 17:38:17,426 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-05-23 17:38:17,615 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-05-23 17:38:17,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-05-23 17:38:17,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-05-23 17:38:17,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-05-23 17:38:17,617 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:38:19,543 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:38:30,035 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-05-23 17:38:30,047 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-05-23 17:38:30,274 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:38:31,939 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:38:40,575 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-05-23 17:38:47,718 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-05-23 17:38:47,719 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb/rawbeans20190718.nwb +2021-05-23 17:59:10,080 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:59:10,110 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:59:15,104 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat +2021-05-23 17:59:15,682 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat +2021-05-23 17:59:32,903 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb/rawbeans20190718.nwb file has been created. diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 60f955978..a9d5ca879 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -58,7 +58,7 @@ class RawToNWBBuilder: spikes_export_args (tuple of strings): parameters to launch spikes extraction from spikegadgets time_export_args (tuple of strings): parameters to launch time extraction from spikegadgets trodes_rec_export_args (tuple of strings): parameters to launch analog extraction from spikegadgets - parallel_instances (int): number of parallel processes used during processing data + parallel_instances (int): number of parallel processes used during extracting data Methods: build_nwb() diff --git a/rec_to_nwb/processing/nwb/common/data_manager.py b/rec_to_nwb/processing/nwb/common/data_manager.py index 7f8dd704e..531706f9c 100644 --- a/rec_to_nwb/processing/nwb/common/data_manager.py +++ b/rec_to_nwb/processing/nwb/common/data_manager.py @@ -9,7 +9,6 @@ def __init__(self, directories): self.number_of_datasets = self.get_number_of_datasets() self.number_of_files_per_dataset = self.get_number_of_files_per_dataset() - # self.number_of_rows_per_file = self._get_data_shape(0)[0] self.number_of_rows_per_file = self._get_number_of_rows_per_file() self.file_lenghts_in_datasets = self._get_file_length(self.number_of_datasets) @@ -20,10 +19,13 @@ def read_data(self, dataset_id, file_id): def get_number_of_files_per_dataset(self): return np.shape(self.directories)[1] - def _get_data_shape(self, dataset_num): - dim1 = np.shape(self.read_data(dataset_num, 0))[0] - dim2 = np.shape(self.read_data(dataset_num, 0))[1] + def _get_data_shape(self, dataset_num, file_num=0): + dim1 = np.shape(self.read_data(dataset_num, file_num))[0] + dim2 = np.shape(self.read_data(dataset_num, file_num))[1] return dim1, dim2 + + def get_data_shape(self, dataset_num, file_num=0): + return self._get_data_shape(dataset_num, file_num) def _get_file_length(self, number_of_datasets): return [self._get_data_shape(i)[1] for i in range(number_of_datasets)] diff --git a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py index 0e24d1235..b87713d1a 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py @@ -10,7 +10,8 @@ def __init__(self, data): self.current_file = 0 self.current_dataset = 0 - self.number_of_steps = self.data.get_number_of_datasets() * self.data.get_number_of_files_per_dataset() + self.number_of_datasets = self.data.get_number_of_datasets() + self.number_of_steps = self.number_of_datasets * self.data.get_number_of_files_per_dataset() self.dataset_file_length = self.data.get_file_lenghts_in_datasets() self.number_of_rows = self.data.get_number_of_rows_per_file() self.number_of_files_in_single_dataset = self.data.get_number_of_files_per_dataset() diff --git a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py index 39a3599e4..7d076b3d9 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py @@ -48,3 +48,53 @@ def __next__(self): def get_data_from_file(data, current_dataset, current_file): return np.transpose(data.read_data(current_dataset, current_file)) + +#TODO: finish this code and move to new file when data are extracted in a single file. +class ChunkedDataIterator(DataIterator): + def __init__(self, data, number_of_threads=6, read_chunk_mb=100): + DataIterator.__init__(self, data) + self.number_of_threads = number_of_threads + self.read_chunk_mb = read_chunk_mb + # Figure out the size of each datafile in each dataset where one dataset is an epoch + self.dataset_file_dims = () + for dataset in range(self.number_of_datasets): + self.dataset_file_dims.append(data.get_data_dims(dataset, 0)) + + + def __next__(self): + if self._current_index < self.number_of_steps: + number_of_threads_in_current_step = min(self.number_of_threads, + self.number_of_files_in_single_dataset - self.current_file) + with concurrent.futures.ThreadPoolExecutor() as executor: + threads = [executor.submit(MultiThreadDataIterator.get_data_from_file, + self.data, self.current_dataset, self.current_file + i) + for i in range(number_of_threads_in_current_step)] + data_from_multiple_files = () + for thread in threads: + data_from_multiple_files += (thread.result(),) + stacked_data_from_multiple_files = np.hstack(data_from_multiple_files) + selection = self.get_selection(number_of_threads=number_of_threads_in_current_step, + current_dataset=self.current_dataset, + dataset_file_length=self.dataset_file_length, + current_file=self.current_file, + number_of_rows=self.number_of_rows) + data_chunk = DataChunk(data=stacked_data_from_multiple_files, selection=selection) + + self._current_index += number_of_threads_in_current_step + self.current_file += number_of_threads_in_current_step + + if self.current_file >= self.number_of_files_in_single_dataset: + self.current_dataset += 1 + self.current_file = 0 + + del stacked_data_from_multiple_files + return data_chunk + + raise StopIteration + + next = __next__ + + @staticmethod + def get_data_from_file(data, current_dataset, current_file): + return np.transpose(data.read_data(current_dataset, current_file)) + diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index df7b9a6ea..9a1923fe3 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -5,7 +5,6 @@ from rec_to_nwb.processing.nwb.components.mda.mda_data_manager import MdaDataManager from rec_to_nwb.processing.nwb.components.mda.mda_timestamp_manager import MdaTimestampDataManager - class FlMdaExtractor: def __init__(self, datasets, conversion): @@ -14,32 +13,43 @@ def __init__(self, datasets, conversion): self.raw_to_uv = float(conversion) * 1e6 def get_data(self): - mda_data, timestamps, continuous_time = self.__extract_data() + mda_data_files, timestamp_files, continuous_time_files = self.__extract_data_files() mda_timestamp_data_manager = MdaTimestampDataManager( - directories=timestamps, - continuous_time_directories=continuous_time + directories=timestamp_files, + continuous_time_directories=continuous_time_files ) - mda_data_manager = MdaDataManager(mda_data, self.raw_to_uv) - data_iterator = MultiThreadDataIterator(mda_data_manager) + mda_data_manager = MdaDataManager(mda_data_files, self.raw_to_uv) + # check the number of files and set the number of threads appropriately assuming 32 GB of available RAM + datalen = [mda_data_manager.get_data_shape(dataset_num)[1] + for dataset_num in range(len(mda_data_manager.directories))] + if max(datalen) < 3e9: # each file < 3GB samples (2 bytes / sample) + num_threads = 6 + elif max(datalen) < 6e9: + num_threads = 3 + else: + num_threads = 1 + + print(f'in FlMdaExtractor: will write {num_threads} files as a chunk') + data_iterator = MultiThreadDataIterator(mda_data_manager, number_of_threads=num_threads) timestamp_iterator = MultiThreadTimestampIterator(mda_timestamp_data_manager) return MdaContent(data_iterator, timestamp_iterator) - def __extract_data(self): - mda_data = [] - timestamps = [] - continuous_time = [] + def __extract_data_files(self): + mda_data_files = [] + timestamp_files = [] + continuous_time_files = [] for dataset in self.datasets: - data_from_single_dataset = self.__extract_data_for_single_dataset(dataset) - mda_data.append(data_from_single_dataset[0]) - timestamps.append(data_from_single_dataset[1]) - continuous_time.append(data_from_single_dataset[2]) + data_files_from_single_dataset = self.__extract_data_files_for_single_dataset(dataset) + mda_data_files.append(data_files_from_single_dataset[0]) + timestamp_files.append(data_files_from_single_dataset[1]) + continuous_time_files.append(data_files_from_single_dataset[2]) - return mda_data, timestamps, continuous_time + return mda_data_files, timestamp_files, continuous_time_files - def __extract_data_for_single_dataset(self, dataset): - data_from_current_dataset = self.__get_data_from_current_dataset(dataset) + def __extract_data_files_for_single_dataset(self, dataset): + data_from_current_dataset = self.__get_data_files_from_current_dataset(dataset) if not self.__data_exist(data_from_current_dataset, dataset): raise MissingDataException("Incomplete data in dataset " + str(dataset.name) + ", missing mda files") @@ -47,7 +57,7 @@ def __extract_data_for_single_dataset(self, dataset): return data_from_current_dataset, [dataset.get_mda_timestamps()], dataset.get_continuous_time() @staticmethod - def __get_data_from_current_dataset(dataset): + def __get_data_files_from_current_dataset(dataset): return [dataset.get_data_path_from_dataset('mda') + mda_file for mda_file in dataset.get_all_data_from_dataset('mda') if (mda_file.endswith('.mda') and not mda_file.endswith('timestamps.mda'))] diff --git a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py index 3758ed852..064fc1ecd 100644 --- a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py @@ -1,4 +1,4 @@ -from mountainlab_pytools.mdaio import readmda +from mountainlab_pytools.mdaio import readmda, DiskReadMda from numpy import isclose from rec_to_nwb.processing.nwb.common.data_manager import DataManager @@ -15,3 +15,16 @@ def read_data(self, dataset_id, file_id): return (readmda(self.directories[dataset_id][file_id]) * self.raw_to_uv).astype('int16') else: return readmda(self.directories[dataset_id][file_id]).astype('int16') + + #override to make more efficient + def _get_data_shape(self, dataset_id, file_num=0): + #use DiskReadMDA to return a two element list with the MxN data dimensions for the first file in a given dataset + return DiskReadMda(self.directories[dataset_id][file_num]).dims() + + #override to make more efficient; not clear if this is used right now. + def _get_number_of_rows_per_file(self): + dataset_num = 0 # assume that all datasets have identical structures + # all files may not have the same numbers of rows (e.g. channels) + return [self.get_data_shape(dataset_num, file_num)[0] + for file_num in range(self.number_of_files_per_dataset)] + diff --git a/rec_to_nwb/test.yml b/rec_to_nwb/test.yml new file mode 100644 index 000000000..d57c017c0 --- /dev/null +++ b/rec_to_nwb/test.yml @@ -0,0 +1,59 @@ +name: test +channels: + - conda-forge + - defaults + - novelakrk +dependencies: + - python>=3.6,<3.8 + - pip + - hdmf + - pynwb + - asn1crypto + - blas + - ca-certificates + - certifi + - cffi + - chardet + - cryptography + - elementpath + - h5py<3.0 + - hdf5 + - idna + - libblas + - libcblas + - liblapack + - mkl + - mkl-service + - numpy + - openssl + - pandas + - pycparser + - pyopenssl + - pysocks + - python-dateutil + - pytz + - requests + - scipy + - setuptools + - six + - sqlite + - urllib3 + - wheel + - xmlschema + - zlib + - vdom + - pyyaml + - pytest + - testfixtures + - ndx-franklab-novela=0.0.011 + - pip: + - mountainlab_pytools + - xmldiff + - rec-to-binaries + - hdmf>2.1.0 + - pynwb + +# Docs + - recommonmark + - sphinx-autoapi + - sphinx_rtd_theme From 1a3b44e0d96268badc5a3cd38b5e151d6732b843 Mon Sep 17 00:00:00 2001 From: Loren Date: Sun, 23 May 2021 21:45:33 -0700 Subject: [PATCH 044/205] removed print statement --- rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index 9a1923fe3..d22ec0291 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -29,7 +29,7 @@ def get_data(self): else: num_threads = 1 - print(f'in FlMdaExtractor: will write {num_threads} files as a chunk') + #print(f'in FlMdaExtractor: will write {num_threads} files as a chunk') data_iterator = MultiThreadDataIterator(mda_data_manager, number_of_threads=num_threads) timestamp_iterator = MultiThreadTimestampIterator(mda_timestamp_data_manager) From dabaed5952f55a7797a729844e21fe94d333a657 Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Mon, 24 May 2021 21:18:13 -0700 Subject: [PATCH 045/205] fixes to reference electrode code --- .vscode/settings.json | 2 +- rec_to_nwb.log | 254337 +++++++++++++++ .../fl_electrode_extension_factory.py | 14 +- 3 files changed, 254351 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index b3a87aa0b..d8a493bac 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,4 @@ { - "python.pythonPath": "/Users/loren/opt/anaconda3/envs/rec_to_nwb/bin/python", + "python.pythonPath": "/home/loren/anaconda3/envs/rec_to_nwb/bin/python", "python.linting.pylintEnabled": true } \ No newline at end of file diff --git a/rec_to_nwb.log b/rec_to_nwb.log index d109a0afc..f303f6335 100644 --- a/rec_to_nwb.log +++ b/rec_to_nwb.log @@ -655035,3 +655035,254340 @@ Fields: 2021-05-23 17:59:15,104 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat 2021-05-23 17:59:15,682 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat 2021-05-23 17:59:32,903 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb/rawbeans20190718.nwb file has been created. +2021-05-24 14:07:46,471 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = despereaux +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-05-24 14:07:47,305 rec_to_binaries.core: INFO Extracting analog data... +2021-05-24 14:07:47,307 rec_to_binaries.core: INFO Extracting DIO... +2021-05-24 14:07:47,308 rec_to_binaries.core: INFO Extracting mda... +2021-05-24 14:07:47,308 rec_to_binaries.core: INFO Extracting time... +2021-05-24 14:14:59,695 rec_to_binaries.core: INFO Making position directory... +2021-05-24 14:15:12,372 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-24 14:15:12,373 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 +2021-05-24 14:15:12,374 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-24 14:15:12,375 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = despereaux +date = 20191125 +nwb_metadata = Experiment Info: +Experimenter: Anna Gillespie +Description: Sungod control +Session Id: 4 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/loren/despereaux20191125.nwb + +2021-05-24 14:15:13,577 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! + , [] +2021-05-24 14:15:31,355 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-24 14:15:31,393 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-24 14:15:31,394 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-24 14:15:31,395 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-24 14:15:31,396 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-24 14:15:31,396 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-24 14:15:31,397 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-24 14:15:31,397 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-24 14:15:31,398 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-24 14:15:31,398 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-24 14:15:31,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-24 14:15:31,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-24 14:15:31,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-24 14:15:31,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-24 14:15:31,402 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-24 14:15:31,402 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-24 14:15:31,409 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-24 14:15:31,411 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-24 14:15:31,414 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [Statescript1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140181332890512 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +2608699 UP 10 +2608699 waslock = 0 +2608699 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2608722 512 16777728 +~~~ +2608872 512 512 +2608885 DOWN 10 +2608885 0 512 +~~~ +~~~ +2608901 0 1536 +~~~ +~~~ +2608903 0 1024 +2608904 homeCount = 1 +2608904 waitCount = 0 +2608905 ripCount = 0 +2608905 locktype1 = 0 +2608906 locktype2 = 0 +2608906 locktype3 = 0 +2608907 goalCount = 0 +2608907 goalTotal = 0 +2608908 otherCount = 0 +~~~ +2609055 UP 10 +2609055 waslock = 0 +2609054 512 1024 +2609074 DOWN 10 +2609074 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +2609109 homeCount = 1 +2609109 waitCount = 0 +2609109 ripCount = 0 +2609110 locktype1 = 0 +2609110 locktype2 = 0 +2609111 locktype3 = 0 +2609111 goalCount = 0 +2609112 goalTotal = 0 +2609112 otherCount = 0 +~~~ +2609182 UP 10 +2609182 waslock = 0 +2609182 512 1024 +~~~ +2609223 DOWN 10 +2609223 0 1024 +~~~ +~~~ +~~~ +~~~ +2609256 homeCount = 1 +2609257 waitCount = 0 +2609257 ripCount = 0 +2609258 locktype1 = 0 +2609258 locktype2 = 0 +2609259 locktype3 = 0 +2609259 goalCount = 0 +2609260 goalTotal = 0 +2609260 otherCount = 0 +~~~ +2609311 UP 10 +2609311 waslock = 0 +2609311 512 1024 +~~~ +2609574 DOWN 10 +2609574 0 1024 +~~~ +~~~ +~~~ +2609597 UP 10 +2609597 waslock = 0 +2609597 512 1024 +~~~ +2609599 homeCount = 1 +2609600 waitCount = 0 +2609600 ripCount = 0 +2609601 locktype1 = 0 +2609601 locktype2 = 0 +2609602 locktype3 = 0 +2609602 goalCount = 0 +2609602 goalTotal = 0 +2609603 otherCount = 0 +~~~ +~~~ +2609728 DOWN 10 +2609728 0 1024 +~~~ +~~~ +~~~ +~~~ +2609754 homeCount = 1 +2609754 waitCount = 0 +2609755 ripCount = 0 +2609755 locktype1 = 0 +2609756 locktype2 = 0 +2609756 locktype3 = 0 +2609757 goalCount = 0 +2609757 goalTotal = 0 +2609758 otherCount = 0 +~~~ +2609758 UP 10 +2609759 waslock = 0 +2609758 512 1024 +~~~ +2609870 DOWN 10 +2609870 0 1024 +~~~ +~~~ +~~~ +~~~ +2609895 homeCount = 1 +2609896 waitCount = 0 +2609896 ripCount = 0 +2609897 locktype1 = 0 +2609897 locktype2 = 0 +2609898 locktype3 = 0 +2609898 goalCount = 0 +2609898 goalTotal = 0 +2609899 otherCount = 0 +~~~ +2609909 UP 10 +2609910 waslock = 0 +2609909 512 1024 +~~~ +2610022 DOWN 10 +2610022 0 1024 +~~~ +~~~ +~~~ +~~~ +2610045 homeCount = 1 +2610045 waitCount = 0 +2610046 ripCount = 0 +2610046 locktype1 = 0 +2610047 locktype2 = 0 +2610047 locktype3 = 0 +2610048 goalCount = 0 +2610048 goalTotal = 0 +2610049 otherCount = 0 +~~~ +2610059 UP 10 +2610059 waslock = 0 +2610059 512 1024 +~~~ +2610177 DOWN 10 +2610177 0 1024 +~~~ +~~~ +~~~ +~~~ +2610204 homeCount = 1 +2610205 waitCount = 0 +2610205 ripCount = 0 +2610206 locktype1 = 0 +2610206 locktype2 = 0 +2610206 locktype3 = 0 +2610207 goalCount = 0 +2610207 goalTotal = 0 +2610208 otherCount = 0 +~~~ +2610208 UP 10 +2610209 waslock = 0 +2610208 512 1024 +~~~ +2610339 DOWN 10 +2610338 0 1024 +~~~ +~~~ +~~~ +2610363 UP 10 +2610363 waslock = 0 +2610363 512 1024 +~~~ +2610365 homeCount = 1 +2610365 waitCount = 0 +2610366 ripCount = 0 +2610366 locktype1 = 0 +2610367 locktype2 = 0 +2610367 locktype3 = 0 +2610367 goalCount = 0 +2610368 goalTotal = 0 +2610368 otherCount = 0 +~~~ +~~~ +2610495 DOWN 10 +2610495 0 1024 +~~~ +~~~ +~~~ +~~~ +2610515 homeCount = 1 +2610515 waitCount = 0 +2610516 ripCount = 0 +2610516 locktype1 = 0 +2610516 locktype2 = 0 +2610517 locktype3 = 0 +2610517 goalCount = 0 +2610518 goalTotal = 0 +2610518 otherCount = 0 +~~~ +2610526 UP 10 +2610526 waslock = 0 +2610526 512 1024 +~~~ +2610666 DOWN 10 +2610666 0 1024 +2610679 UP 10 +2610680 waslock = 0 +2610679 512 1024 +~~~ +~~~ +~~~ +~~~ +2610696 homeCount = 1 +2610697 waitCount = 0 +2610697 ripCount = 0 +2610698 locktype1 = 0 +2610698 locktype2 = 0 +2610699 locktype3 = 0 +2610699 goalCount = 0 +2610700 goalTotal = 0 +2610700 otherCount = 0 +~~~ +~~~ +2611006 DOWN 10 +2611006 0 1024 +2611013 UP 10 +2611013 waslock = 0 +2611013 512 1024 +~~~ +~~~ +~~~ +~~~ +2611036 homeCount = 1 +2611036 waitCount = 0 +2611037 ripCount = 0 +2611037 locktype1 = 0 +2611038 locktype2 = 0 +2611038 locktype3 = 0 +2611038 goalCount = 0 +2611039 goalTotal = 0 +2611039 otherCount = 0 +~~~ +~~~ +2611156 DOWN 10 +2611156 0 1024 +2611188 UP 10 +2611189 waslock = 0 +2611188 512 1024 +~~~ +~~~ +~~~ +~~~ +2611194 homeCount = 1 +2611195 waitCount = 0 +2611195 ripCount = 0 +2611196 locktype1 = 0 +2611196 locktype2 = 0 +2611196 locktype3 = 0 +2611197 goalCount = 0 +2611197 goalTotal = 0 +2611198 otherCount = 0 +~~~ +~~~ +2611313 DOWN 10 +2611313 0 1024 +~~~ +~~~ +~~~ +~~~ +2611336 homeCount = 1 +2611337 waitCount = 0 +2611337 ripCount = 0 +2611338 locktype1 = 0 +2611338 locktype2 = 0 +2611339 locktype3 = 0 +2611339 goalCount = 0 +2611340 goalTotal = 0 +2611340 otherCount = 0 +~~~ +2611352 UP 10 +2611353 waslock = 0 +2611352 512 1024 +~~~ +2611481 DOWN 10 +2611481 0 1024 +~~~ +~~~ +~~~ +~~~ +2611505 homeCount = 1 +2611506 waitCount = 0 +2611506 ripCount = 0 +2611507 locktype1 = 0 +2611507 locktype2 = 0 +2611508 locktype3 = 0 +2611508 goalCount = 0 +2611508 goalTotal = 0 +2611509 otherCount = 0 +~~~ +2611524 UP 10 +2611524 waslock = 0 +2611524 512 1024 +~~~ +2611655 DOWN 10 +2611655 0 1024 +~~~ +~~~ +~~~ +~~~ +2611675 homeCount = 1 +2611676 waitCount = 0 +2611676 ripCount = 0 +2611677 locktype1 = 0 +2611677 locktype2 = 0 +2611678 locktype3 = 0 +2611678 goalCount = 0 +2611679 goalTotal = 0 +2611679 otherCount = 0 +~~~ +2611701 UP 10 +2611702 waslock = 0 +2611701 512 1024 +~~~ +2611829 DOWN 10 +2611829 0 1024 +~~~ +~~~ +~~~ +~~~ +2611855 homeCount = 1 +2611855 waitCount = 0 +2611856 ripCount = 0 +2611856 locktype1 = 0 +2611857 locktype2 = 0 +2611857 locktype3 = 0 +2611858 goalCount = 0 +2611858 goalTotal = 0 +2611859 otherCount = 0 +~~~ +2611865 UP 10 +2611865 waslock = 0 +2611865 512 1024 +~~~ +2612015 DOWN 10 +2612015 0 1024 +~~~ +~~~ +~~~ +2612033 UP 10 +2612034 waslock = 0 +2612033 512 1024 +~~~ +2612035 homeCount = 1 +2612036 waitCount = 0 +2612036 ripCount = 0 +2612037 locktype1 = 0 +2612037 locktype2 = 0 +2612038 locktype3 = 0 +2612038 goalCount = 0 +2612039 goalTotal = 0 +2612039 otherCount = 0 +~~~ +~~~ +2612181 DOWN 10 +2612180 0 1024 +~~~ +~~~ +~~~ +~~~ +2612207 homeCount = 1 +2612208 waitCount = 0 +2612208 ripCount = 0 +2612209 locktype1 = 0 +2612209 locktype2 = 0 +2612210 locktype3 = 0 +2612210 goalCount = 0 +2612211 goalTotal = 0 +2612211 otherCount = 0 +~~~ +2612229 UP 10 +2612229 waslock = 0 +2612229 512 1024 +~~~ +2612356 DOWN 10 +2612356 0 1024 +~~~ +~~~ +~~~ +~~~ +2612387 homeCount = 1 +2612387 waitCount = 0 +2612388 ripCount = 0 +2612388 locktype1 = 0 +2612389 locktype2 = 0 +2612389 locktype3 = 0 +2612390 goalCount = 0 +2612390 goalTotal = 0 +2612391 otherCount = 0 +~~~ +2612407 UP 10 +2612407 waslock = 0 +2612406 512 1024 +~~~ +2614983 DOWN 10 +2614983 0 1024 +~~~ +~~~ +~~~ +~~~ +2615004 homeCount = 1 +2615005 waitCount = 0 +2615005 ripCount = 0 +2615006 locktype1 = 0 +2615006 locktype2 = 0 +2615007 locktype3 = 0 +2615007 goalCount = 0 +2615008 goalTotal = 0 +2615008 otherCount = 0 +~~~ +2617153 UP 12 +2617154 LOCKOUT 1 +2617153 2048 1024 +~~~ +2617175 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +2617178 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2617366 DOWN 12 +2617366 0 0 +2617491 UP 12 +2617491 2048 0 +2617895 DOWN 12 +2617895 0 0 +2617923 UP 12 +2617923 2048 0 +2618053 DOWN 12 +2618053 0 0 +2618075 UP 12 +2618075 2048 0 +2619271 DOWN 12 +2619271 0 0 +2619295 UP 12 +2619295 2048 0 +2619584 DOWN 12 +2619584 0 0 +2619593 UP 12 +2619593 2048 0 +2621137 DOWN 12 +2621137 0 0 +2622946 UP 11 +2622946 1024 0 +2623563 DOWN 11 +2623563 0 0 +2623582 UP 11 +2623582 1024 0 +2623717 DOWN 11 +2623717 0 0 +2623731 UP 11 +2623731 1024 0 +2623879 DOWN 11 +2623879 0 0 +2623904 UP 11 +2623903 1024 0 +2624051 DOWN 11 +2624051 0 0 +2624056 UP 11 +2624056 1024 0 +2626713 DOWN 11 +2626713 0 0 +2626722 UP 11 +2626722 1024 0 +2627171 DOWN 11 +2627171 0 0 +2631902 UP 7 +2631902 64 0 +2632210 DOWN 7 +2632210 0 0 +2632230 64 0 +2634192 DOWN 7 +2634192 0 0 +2634209 64 0 +2635732 DOWN 7 +2635732 0 0 +2642069 512 0 +2642175 LOCKEND +~~~ +~~~ +~~~ +2642201 512 512 +2642433 DOWN 10 +2642433 0 512 +2642526 UP 10 +2642526 waslock = 0 +2642526 512 512 +2642544 DOWN 10 +2642544 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2642558 0 16777728 +~~~ +~~~ +~~~ +2642570 0 16778752 +~~~ +~~~ +2642571 0 16778240 +2642572 homeCount = 2 +2642573 waitCount = 0 +2642573 ripCount = 0 +2642574 locktype1 = 1 +2642574 locktype2 = 0 +2642575 locktype3 = 0 +2642575 goalCount = 0 +2642576 goalTotal = 0 +2642576 otherCount = 0 +~~~ +2642628 UP 10 +2642629 waslock = 0 +2642628 512 16778240 +~~~ +2642704 DOWN 10 +2642704 0 16778240 +2642706 UP 10 +2642707 waslock = 0 +2642706 512 16778240 +2642708 512 1024 +2642713 DOWN 10 +2642713 0 1024 +2642720 UP 10 +2642720 waslock = 0 +2642720 512 1024 +~~~ +~~~ +~~~ +~~~ +2642742 homeCount = 2 +2642742 waitCount = 0 +2642743 ripCount = 0 +2642743 locktype1 = 1 +2642744 locktype2 = 0 +2642744 locktype3 = 0 +2642745 goalCount = 0 +2642745 goalTotal = 0 +2642746 otherCount = 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2642748 homeCount = 2 +2642770 waitCount = 0 +2642770 ripCount = 0 +2642771 locktype1 = 1 +2642771 locktype2 = 0 +2642772 locktype3 = 0 +2642772 goalCount = 0 +2642772 goalTotal = 0 +2642773 otherCount = 0 +~~~ +~~~ +2643241 DOWN 10 +2643241 0 1024 +2643258 UP 10 +2643258 waslock = 0 +2643258 512 1024 +~~~ +~~~ +~~~ +~~~ +2643268 homeCount = 2 +2643268 waitCount = 0 +2643269 ripCount = 0 +2643269 locktype1 = 1 +2643269 locktype2 = 0 +2643270 locktype3 = 0 +2643270 goalCount = 0 +2643271 goalTotal = 0 +2643271 otherCount = 0 +~~~ +~~~ +2643397 DOWN 10 +2643397 0 1024 +~~~ +~~~ +~~~ +~~~ +2643424 homeCount = 2 +2643424 waitCount = 0 +2643425 ripCount = 0 +2643425 locktype1 = 1 +2643426 locktype2 = 0 +2643426 locktype3 = 0 +2643427 goalCount = 0 +2643427 goalTotal = 0 +2643427 otherCount = 0 +~~~ +2643429 UP 10 +2643429 waslock = 0 +2643429 512 1024 +~~~ +2646784 DOWN 10 +2646784 0 1024 +~~~ +~~~ +~~~ +~~~ +2646812 homeCount = 2 +2646812 waitCount = 0 +2646813 ripCount = 0 +2646813 locktype1 = 1 +2646813 locktype2 = 0 +2646814 locktype3 = 0 +2646814 goalCount = 0 +2646815 goalTotal = 0 +2646815 otherCount = 0 +~~~ +2654547 UP 2 +2654547 2 1024 +~~~ +2654570 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +2654574 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2654848 DOWN 2 +2654848 0 0 +2654865 2 0 +2655008 DOWN 2 +2655008 0 0 +2655030 2 0 +2657028 DOWN 2 +2657028 0 0 +2661794 512 0 +2661810 0 0 +2661854 512 0 +2662303 0 0 +2662318 512 0 +2662471 0 0 +2662483 512 0 +2662646 0 0 +2662676 512 0 +2662753 0 0 +2662824 512 0 +2663410 0 0 +2667214 UP 8 +2667214 128 0 +2667509 DOWN 8 +2667509 0 0 +2667541 128 0 +2667910 DOWN 8 +2667910 0 0 +2667936 128 0 +2668075 DOWN 8 +2668075 0 0 +2668097 128 0 +2668243 DOWN 8 +2668243 0 0 +2668267 128 0 +2668421 DOWN 8 +2668421 0 0 +2668438 128 0 +2668589 DOWN 8 +2668589 0 0 +2668622 128 0 +2668952 DOWN 8 +2668952 0 0 +2668978 128 0 +2669136 DOWN 8 +2669136 0 0 +2669147 128 0 +2670697 DOWN 8 +2670697 0 0 +2670704 128 0 +2670876 DOWN 8 +2670876 0 0 +2670890 128 0 +2673117 DOWN 8 +2673117 0 0 +2673168 128 0 +2673243 DOWN 8 +2673243 0 0 +2673296 128 0 +2673609 DOWN 8 +2673609 0 0 +2673620 128 0 +2674173 DOWN 8 +2674173 0 0 +2674176 128 0 +2674222 DOWN 8 +2674222 0 0 +2674261 128 0 +2674378 DOWN 8 +2674378 0 0 +2674393 128 0 +2674564 DOWN 8 +2674564 0 0 +2674583 128 0 +2674681 DOWN 8 +2674681 0 0 +2679570 LOCKEND +~~~ +~~~ +~~~ +2679589 0 512 +2680342 UP 10 +2680343 waslock = 0 +2680342 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2680378 512 16777728 +~~~ +2680411 DOWN 10 +2680411 0 16777728 +~~~ +~~~ +2680438 0 16779776 +~~~ +~~~ +2680440 0 16779264 +2680441 homeCount = 3 +2680442 waitCount = 0 +2680442 ripCount = 0 +2680443 locktype1 = 1 +2680443 locktype2 = 1 +2680443 locktype3 = 0 +2680444 goalCount = 0 +2680444 goalTotal = 0 +2680445 otherCount = 0 +~~~ +2680525 UP 10 +2680525 waslock = 0 +2680525 512 16779264 +2680528 512 2048 +~~~ +2680573 DOWN 10 +2680573 0 2048 +~~~ +~~~ +~~~ +~~~ +2680601 homeCount = 3 +2680601 waitCount = 0 +2680602 ripCount = 0 +2680602 locktype1 = 1 +2680603 locktype2 = 1 +2680603 locktype3 = 0 +2680604 goalCount = 0 +2680604 goalTotal = 0 +2680605 otherCount = 0 +~~~ +2680677 UP 10 +2680678 waslock = 0 +2680677 512 2048 +~~~ +2681296 DOWN 10 +2681296 0 2048 +~~~ +~~~ +2681318 UP 10 +2681318 waslock = 0 +2681318 512 2048 +~~~ +~~~ +2681321 homeCount = 3 +2681321 waitCount = 0 +2681322 ripCount = 0 +2681322 locktype1 = 1 +2681323 locktype2 = 1 +2681323 locktype3 = 0 +2681324 goalCount = 0 +2681324 goalTotal = 0 +2681325 otherCount = 0 +~~~ +~~~ +2682967 DOWN 10 +2682967 0 2048 +2682978 UP 10 +2682978 waslock = 0 +2682978 512 2048 +~~~ +~~~ +~~~ +~~~ +2683005 homeCount = 3 +2683005 waitCount = 0 +2683006 ripCount = 0 +2683006 locktype1 = 1 +2683007 locktype2 = 1 +2683007 locktype3 = 0 +2683008 goalCount = 0 +2683008 goalTotal = 0 +2683009 otherCount = 0 +~~~ +~~~ +2684230 DOWN 10 +2684230 0 2048 +~~~ +~~~ +~~~ +~~~ +2684252 homeCount = 3 +2684253 waitCount = 0 +2684253 ripCount = 0 +2684254 locktype1 = 1 +2684254 locktype2 = 1 +2684255 locktype3 = 0 +2684255 goalCount = 0 +2684256 goalTotal = 0 +2684256 otherCount = 0 +~~~ +2684266 UP 10 +2684266 waslock = 0 +2684266 512 2048 +~~~ +2684599 DOWN 10 +2684599 0 2048 +~~~ +~~~ +2684620 UP 10 +2684620 waslock = 0 +2684620 512 2048 +~~~ +~~~ +2684623 homeCount = 3 +2684623 waitCount = 0 +2684624 ripCount = 0 +2684624 locktype1 = 1 +2684624 locktype2 = 1 +2684625 locktype3 = 0 +2684625 goalCount = 0 +2684626 goalTotal = 0 +2684626 otherCount = 0 +~~~ +~~~ +2684738 DOWN 10 +2684738 0 2048 +~~~ +~~~ +~~~ +~~~ +2684765 homeCount = 3 +2684765 waitCount = 0 +2684766 ripCount = 0 +2684766 locktype1 = 1 +2684767 locktype2 = 1 +2684767 locktype3 = 0 +2684768 goalCount = 0 +2684768 goalTotal = 0 +2684769 otherCount = 0 +~~~ +2685961 UP 12 +2685961 2048 2048 +2686484 DOWN 12 +2686484 0 2048 +2686519 UP 12 +2686519 2048 2048 +2686961 CLICK1 +2686961 CLICK2 +2686961 DOWN 12 +2686961 0 2048 +~~~ +~~~ +~~~ +2686981 0 67110912 +~~~ +2687006 UP 12 +2687006 2048 67110912 +2687131 2048 2048 +~~~ +~~~ +2687156 2048 0 +~~~ +~~~ +2687157 2048 1 +~~~ +~~~ +2687159 2048 3 +~~~ +~~~ +2687161 2048 7 +~~~ +~~~ +2687163 2048 15 +~~~ +~~~ +2687165 2048 31 +~~~ +~~~ +2687166 2048 63 +~~~ +~~~ +2687168 2048 127 +~~~ +~~~ +2687170 2048 255 +2687171 homeCount = 3 +2687172 waitCount = 1 +2687172 ripCount = 0 +2687173 locktype1 = 1 +2687194 locktype2 = 1 +2687194 locktype3 = 0 +2687195 goalCount = 0 +2687195 goalTotal = 0 +2687196 otherCount = 0 +~~~ +2687197 CURRENTGOAL IS [5] +~~~ +2691575 DOWN 12 +2691575 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2691618 homeCount = 3 +2691619 waitCount = 1 +2691619 ripCount = 0 +2691620 locktype1 = 1 +2691620 locktype2 = 1 +2691621 locktype3 = 0 +2691621 goalCount = 0 +2691621 goalTotal = 0 +2691622 otherCount = 0 +~~~ +2691623 CURRENTGOAL IS [5] +~~~ +2694045 UP 4 +2694045 8 255 +~~~ +~~~ +2694307 DOWN 4 +2694307 0 255 +~~~ +~~~ +2694333 0 254 +~~~ +~~~ +2694335 0 252 +~~~ +~~~ +2694337 0 248 +~~~ +~~~ +2694339 0 240 +~~~ +2694340 8 240 +~~~ +~~~ +2694342 8 224 +~~~ +~~~ +2694344 8 192 +~~~ +2694345 8 128 +~~~ +~~~ +2694346 8 0 +~~~ +~~~ +2694348 8 512 +2694349 homeCount = 3 +2694349 waitCount = 1 +2694350 ripCount = 0 +2694371 locktype1 = 1 +2694371 locktype2 = 1 +2694372 locktype3 = 0 +2694372 goalCount = 0 +2694373 goalTotal = 0 +2694373 otherCount = 1 +~~~ +2697167 DOWN 4 +2697167 0 512 +2700619 UP 10 +2700620 waslock = 0 +2700619 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2700643 512 16777728 +~~~ +2700677 DOWN 10 +2700677 0 16777728 +~~~ +~~~ +2700697 0 16778752 +~~~ +~~~ +2700699 0 16778240 +2700700 homeCount = 4 +2700700 waitCount = 1 +2700701 ripCount = 0 +2700701 locktype1 = 1 +2700702 locktype2 = 1 +2700702 locktype3 = 0 +2700703 goalCount = 0 +2700703 goalTotal = 0 +2700703 otherCount = 1 +~~~ +2700725 UP 10 +2700725 waslock = 0 +2700725 512 16778240 +~~~ +2700793 512 1024 +2700811 DOWN 10 +2700811 0 1024 +~~~ +~~~ +~~~ +~~~ +2700832 homeCount = 4 +2700832 waitCount = 1 +2700833 ripCount = 0 +2700833 locktype1 = 1 +2700834 locktype2 = 1 +2700834 locktype3 = 0 +2700835 goalCount = 0 +2700835 goalTotal = 0 +2700836 otherCount = 1 +~~~ +2700921 UP 10 +2700921 waslock = 0 +2700921 512 1024 +~~~ +2703713 DOWN 10 +2703713 0 1024 +2703727 UP 10 +2703728 waslock = 0 +2703727 512 1024 +~~~ +~~~ +~~~ +~~~ +2703741 homeCount = 4 +2703742 waitCount = 1 +2703742 ripCount = 0 +2703743 locktype1 = 1 +2703743 locktype2 = 1 +2703744 locktype3 = 0 +2703744 goalCount = 0 +2703745 goalTotal = 0 +2703745 otherCount = 1 +~~~ +~~~ +2703764 DOWN 10 +2703764 0 1024 +~~~ +~~~ +~~~ +~~~ +2703786 homeCount = 4 +2703786 waitCount = 1 +2703787 ripCount = 0 +2703787 locktype1 = 1 +2703788 locktype2 = 1 +2703788 locktype3 = 0 +2703789 goalCount = 0 +2703789 goalTotal = 0 +2703790 otherCount = 1 +~~~ +2704753 UP 11 +2704753 1024 1024 +2705597 DOWN 11 +2705597 0 1024 +2705617 UP 11 +2705617 1024 1024 +2705678 DOWN 11 +2705678 0 1024 +2705744 UP 11 +2705744 1024 1024 +2705753 BEEP1 +2705753 BEEP2 +~~~ +~~~ +~~~ +2705772 1024 33555456 +~~~ +2705922 1024 1024 +2709117 DOWN 11 +2709117 0 1024 +~~~ +~~~ +2709138 0 0 +~~~ +~~~ +2709140 0 1 +~~~ +~~~ +2709142 0 3 +~~~ +~~~ +2709144 0 7 +~~~ +~~~ +2709146 0 15 +~~~ +~~~ +2709147 0 31 +~~~ +~~~ +2709149 0 63 +~~~ +~~~ +2709151 0 127 +~~~ +~~~ +2709153 0 255 +2709154 homeCount = 4 +2709154 waitCount = 1 +2709155 ripCount = 1 +2709155 locktype1 = 1 +2709156 locktype2 = 1 +2709156 locktype3 = 0 +2709178 goalCount = 0 +2709178 goalTotal = 0 +2709178 otherCount = 1 +~~~ +2709180 CURRENTGOAL IS [5] +~~~ +2709182 UP 11 +2709182 1024 255 +2709619 DOWN 11 +2709619 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2709655 homeCount = 4 +2709655 waitCount = 1 +2709656 ripCount = 1 +2709656 locktype1 = 1 +2709657 locktype2 = 1 +2709657 locktype3 = 0 +2709658 goalCount = 0 +2709658 goalTotal = 0 +2709659 otherCount = 1 +~~~ +2709660 CURRENTGOAL IS [5] +~~~ +2711925 UP 7 +2711925 64 255 +~~~ +~~~ +2714140 DOWN 7 +2714140 0 255 +~~~ +~~~ +2714164 0 254 +~~~ +~~~ +2714166 0 252 +~~~ +~~~ +2714168 0 248 +~~~ +~~~ +2714170 0 240 +~~~ +~~~ +2714171 0 224 +~~~ +~~~ +2714173 0 192 +~~~ +~~~ +2714175 0 128 +~~~ +~~~ +2714177 0 0 +~~~ +~~~ +2714179 0 512 +2714180 homeCount = 4 +2714180 waitCount = 1 +2714181 ripCount = 1 +2714181 locktype1 = 1 +2714182 locktype2 = 1 +2714203 locktype3 = 0 +2714203 goalCount = 0 +2714204 goalTotal = 0 +2714204 otherCount = 2 +~~~ +2714205 64 512 +2714226 DOWN 7 +2714226 0 512 +2717944 UP 10 +2717945 waslock = 0 +2717944 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2717977 512 16777728 +~~~ +2718127 512 512 +2718153 DOWN 10 +2718153 0 512 +~~~ +~~~ +2718172 0 2560 +~~~ +~~~ +2718174 0 2048 +2718175 homeCount = 5 +2718176 waitCount = 1 +2718176 ripCount = 1 +2718177 locktype1 = 1 +2718177 locktype2 = 1 +2718178 locktype3 = 0 +2718178 goalCount = 0 +2718179 goalTotal = 0 +2718179 otherCount = 2 +~~~ +2718313 UP 10 +2718314 waslock = 0 +2718313 512 2048 +~~~ +2721159 DOWN 10 +2721158 0 2048 +2721177 UP 10 +2721177 waslock = 0 +2721177 512 2048 +~~~ +~~~ +~~~ +~~~ +2721185 homeCount = 5 +2721186 waitCount = 1 +2721186 ripCount = 1 +2721187 locktype1 = 1 +2721187 locktype2 = 1 +2721188 locktype3 = 0 +2721188 goalCount = 0 +2721189 goalTotal = 0 +2721189 otherCount = 2 +~~~ +~~~ +2721253 DOWN 10 +2721253 0 2048 +~~~ +~~~ +~~~ +~~~ +2721276 homeCount = 5 +2721276 waitCount = 1 +2721277 ripCount = 1 +2721277 locktype1 = 1 +2721278 locktype2 = 1 +2721278 locktype3 = 0 +2721279 goalCount = 0 +2721279 goalTotal = 0 +2721280 otherCount = 2 +~~~ +2722359 UP 12 +2722359 2048 2048 +2722798 DOWN 12 +2722798 0 2048 +2722838 UP 12 +2722838 2048 2048 +2723142 DOWN 12 +2723142 0 2048 +2723159 UP 12 +2723159 2048 2048 +2723223 DOWN 12 +2723223 0 2048 +2723288 UP 12 +2723288 2048 2048 +2723859 CLICK1 +2723859 CLICK2 +~~~ +~~~ +~~~ +2723886 2048 67110912 +~~~ +2724036 2048 2048 +2727818 DOWN 12 +2727818 0 2048 +~~~ +~~~ +2727844 0 0 +~~~ +~~~ +2727846 0 1 +~~~ +~~~ +2727847 0 3 +~~~ +~~~ +2727849 0 7 +~~~ +~~~ +2727851 0 15 +~~~ +~~~ +2727853 0 31 +~~~ +~~~ +2727855 0 63 +~~~ +~~~ +2727856 0 127 +~~~ +~~~ +2727858 0 255 +2727859 homeCount = 5 +2727860 waitCount = 2 +2727860 ripCount = 1 +2727861 locktype1 = 1 +2727861 locktype2 = 1 +2727862 locktype3 = 0 +2727883 goalCount = 0 +2727883 goalTotal = 0 +2727884 otherCount = 2 +~~~ +2727885 CURRENTGOAL IS [5] +~~~ +2732529 UP 1 +2732529 1 255 +~~~ +~~~ +2732809 DOWN 1 +2732809 0 255 +2732825 1 255 +~~~ +~~~ +2732828 1 254 +~~~ +~~~ +2732830 1 252 +~~~ +~~~ +2732832 1 248 +~~~ +~~~ +2732833 1 240 +~~~ +~~~ +2732835 1 224 +~~~ +~~~ +2732837 1 192 +~~~ +~~~ +2732839 1 128 +~~~ +~~~ +2732841 1 0 +~~~ +~~~ +2732843 1 512 +2732843 homeCount = 5 +2732844 waitCount = 2 +2732844 ripCount = 1 +2732845 locktype1 = 1 +2732845 locktype2 = 1 +2732866 locktype3 = 0 +2732867 goalCount = 0 +2732867 goalTotal = 0 +2732867 otherCount = 3 +~~~ +2734994 DOWN 1 +2734994 0 512 +2735003 1 512 +2735908 DOWN 1 +2735908 0 512 +2735920 1 512 +2736101 DOWN 1 +2736101 0 512 +2736111 1 512 +2737189 DOWN 1 +2737189 0 512 +2737197 1 512 +2737380 DOWN 1 +2737380 0 512 +2737397 1 512 +2737567 DOWN 1 +2737567 0 512 +2737579 1 512 +2737737 DOWN 1 +2737737 0 512 +2737755 1 512 +2737928 DOWN 1 +2737928 0 512 +2737943 1 512 +2738611 DOWN 1 +2738611 0 512 +2738651 1 512 +2738688 DOWN 1 +2738688 0 512 +2738818 1 512 +2738845 DOWN 1 +2738845 0 512 +2743363 UP 10 +2743363 waslock = 0 +2743363 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2743394 512 16777728 +~~~ +2743521 DOWN 10 +2743520 0 16777728 +2743544 0 512 +~~~ +~~~ +2743560 0 2560 +~~~ +~~~ +2743562 0 2048 +2743563 homeCount = 6 +2743564 waitCount = 2 +2743564 ripCount = 1 +2743565 locktype1 = 1 +2743565 locktype2 = 1 +2743566 locktype3 = 0 +2743566 goalCount = 0 +2743567 goalTotal = 0 +2743567 otherCount = 3 +~~~ +2743579 UP 10 +2743579 waslock = 0 +2743579 512 2048 +~~~ +2748231 DOWN 10 +2748231 0 2048 +~~~ +~~~ +~~~ +~~~ +2748261 homeCount = 6 +2748261 waitCount = 2 +2748262 ripCount = 1 +2748262 locktype1 = 1 +2748263 locktype2 = 1 +2748263 locktype3 = 0 +2748263 goalCount = 0 +2748264 goalTotal = 0 +2748264 otherCount = 3 +~~~ +2748272 UP 10 +2748273 waslock = 0 +2748272 512 2048 +~~~ +2748303 DOWN 10 +2748303 0 2048 +~~~ +~~~ +~~~ +~~~ +2748321 homeCount = 6 +2748322 waitCount = 2 +2748322 ripCount = 1 +2748323 locktype1 = 1 +2748323 locktype2 = 1 +2748324 locktype3 = 0 +2748324 goalCount = 0 +2748325 goalTotal = 0 +2748325 otherCount = 3 +~~~ +2749680 UP 12 +2749680 2048 2048 +2751680 CLICK1 +2751680 CLICK2 +~~~ +~~~ +~~~ +2751702 2048 67110912 +~~~ +2751852 2048 2048 +2755155 DOWN 12 +2755155 0 2048 +~~~ +~~~ +2755179 0 0 +~~~ +2755181 UP 12 +2755181 2048 0 +~~~ +~~~ +2755182 2048 1 +~~~ +~~~ +2755184 2048 3 +~~~ +2755185 2048 7 +~~~ +~~~ +2755187 2048 15 +~~~ +~~~ +2755188 2048 31 +~~~ +~~~ +2755190 2048 63 +~~~ +~~~ +2755192 2048 127 +~~~ +~~~ +2755194 2048 255 +2755195 homeCount = 6 +2755216 waitCount = 3 +2755217 ripCount = 1 +2755217 locktype1 = 1 +2755218 locktype2 = 1 +2755218 locktype3 = 0 +2755218 goalCount = 0 +2755219 goalTotal = 0 +2755219 otherCount = 3 +~~~ +2755220 CURRENTGOAL IS [5] +~~~ +2755257 DOWN 12 +2755257 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2755297 homeCount = 6 +2755297 waitCount = 3 +2755298 ripCount = 1 +2755298 locktype1 = 1 +2755299 locktype2 = 1 +2755299 locktype3 = 0 +2755300 goalCount = 0 +2755300 goalTotal = 0 +2755301 otherCount = 3 +~~~ +2755302 CURRENTGOAL IS [5] +~~~ +2758389 UP 6 +2758389 32 255 +~~~ +~~~ +2762845 DOWN 6 +2762845 0 255 +~~~ +~~~ +2762870 0 254 +~~~ +~~~ +2762872 0 252 +~~~ +~~~ +2762873 0 248 +~~~ +~~~ +2762875 0 240 +~~~ +~~~ +2762877 0 224 +~~~ +~~~ +2762879 0 192 +~~~ +~~~ +2762881 0 128 +~~~ +~~~ +2762882 0 0 +~~~ +~~~ +2762884 0 512 +2762885 homeCount = 6 +2762886 waitCount = 3 +2762886 ripCount = 1 +2762887 locktype1 = 1 +2762887 locktype2 = 1 +2762908 locktype3 = 0 +2762909 goalCount = 0 +2762909 goalTotal = 0 +2762910 otherCount = 4 +~~~ +2766008 UP 10 +2766008 waslock = 0 +2766008 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2766038 512 16777728 +~~~ +2766188 512 512 +2766218 DOWN 10 +2766217 0 512 +~~~ +~~~ +2766243 0 1536 +~~~ +~~~ +2766245 0 1024 +2766246 homeCount = 7 +2766246 waitCount = 3 +2766247 ripCount = 1 +2766247 locktype1 = 1 +2766248 locktype2 = 1 +2766248 locktype3 = 0 +2766249 goalCount = 0 +2766249 goalTotal = 0 +2766250 otherCount = 4 +~~~ +2766305 UP 10 +2766305 waslock = 0 +2766305 512 1024 +~~~ +2770192 DOWN 10 +2770192 0 1024 +~~~ +~~~ +~~~ +~~~ +2770215 homeCount = 7 +2770215 waitCount = 3 +2770216 ripCount = 1 +2770216 locktype1 = 1 +2770217 locktype2 = 1 +2770217 locktype3 = 0 +2770218 goalCount = 0 +2770218 goalTotal = 0 +2770219 otherCount = 4 +~~~ +2771671 UP 11 +2771671 1024 1024 +2771682 DOWN 11 +2771682 0 1024 +2771731 UP 11 +2771731 1024 1024 +2773171 BEEP1 +2773171 BEEP2 +~~~ +~~~ +~~~ +2773194 1024 33555456 +~~~ +2773198 DOWN 11 +2773198 0 33555456 +2773250 UP 11 +2773250 1024 33555456 +2773344 1024 1024 +~~~ +~~~ +2773852 1024 0 +~~~ +~~~ +2773854 1024 1 +~~~ +~~~ +2773856 1024 3 +~~~ +~~~ +2773858 1024 7 +~~~ +~~~ +2773860 1024 15 +~~~ +~~~ +2773861 1024 31 +~~~ +~~~ +2773863 1024 63 +~~~ +~~~ +2773865 1024 127 +~~~ +~~~ +2773867 1024 255 +2773868 homeCount = 7 +2773868 waitCount = 3 +2773869 ripCount = 2 +2773869 locktype1 = 1 +2773890 locktype2 = 1 +2773891 locktype3 = 0 +2773891 goalCount = 0 +2773892 goalTotal = 0 +2773892 otherCount = 4 +~~~ +2773893 CURRENTGOAL IS [5] +~~~ +2778754 DOWN 11 +2778754 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2778788 homeCount = 7 +2778789 waitCount = 3 +2778789 ripCount = 2 +2778790 locktype1 = 1 +2778790 locktype2 = 1 +2778790 locktype3 = 0 +2778791 goalCount = 0 +2778791 goalTotal = 0 +2778792 otherCount = 4 +~~~ +2778793 CURRENTGOAL IS [5] +~~~ +2782128 UP 6 +2782128 32 255 +~~~ +~~~ +2783049 DOWN 6 +2783049 0 255 +~~~ +~~~ +2783075 0 254 +~~~ +~~~ +2783077 0 252 +~~~ +~~~ +2783078 0 248 +~~~ +~~~ +2783080 0 240 +~~~ +~~~ +2783082 0 224 +~~~ +~~~ +2783084 0 192 +~~~ +~~~ +2783086 0 128 +~~~ +~~~ +2783088 0 0 +~~~ +~~~ +2783090 0 512 +2783090 homeCount = 7 +2783091 waitCount = 3 +2783091 ripCount = 2 +2783092 locktype1 = 1 +2783092 locktype2 = 1 +2783114 locktype3 = 0 +2783114 goalCount = 0 +2783114 goalTotal = 0 +2783115 otherCount = 5 +~~~ +2786457 UP 10 +2786457 waslock = 0 +2786457 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2786485 512 16777728 +~~~ +2786635 512 512 +2786717 DOWN 10 +2786716 0 512 +~~~ +~~~ +2786737 0 2560 +~~~ +~~~ +2786739 0 2048 +2786740 homeCount = 8 +2786740 waitCount = 3 +2786741 ripCount = 2 +2786741 locktype1 = 1 +2786742 locktype2 = 1 +2786742 locktype3 = 0 +2786742 goalCount = 0 +2786743 goalTotal = 0 +2786743 otherCount = 5 +~~~ +2786787 UP 10 +2786787 waslock = 0 +2786787 512 2048 +~~~ +2790582 DOWN 10 +2790582 0 2048 +~~~ +~~~ +~~~ +~~~ +2790611 UP 10 +2790611 waslock = 0 +2790610 512 2048 +2790612 homeCount = 8 +2790613 waitCount = 3 +2790613 ripCount = 2 +2790614 locktype1 = 1 +2790614 locktype2 = 1 +2790615 locktype3 = 0 +2790615 goalCount = 0 +2790616 goalTotal = 0 +2790616 otherCount = 5 +~~~ +~~~ +2790655 DOWN 10 +2790655 0 2048 +~~~ +~~~ +~~~ +~~~ +2790682 homeCount = 8 +2790682 waitCount = 3 +2790683 ripCount = 2 +2790683 locktype1 = 1 +2790684 locktype2 = 1 +2790684 locktype3 = 0 +2790685 goalCount = 0 +2790685 goalTotal = 0 +2790686 otherCount = 5 +~~~ +2791798 UP 12 +2791798 2048 2048 +2792281 DOWN 12 +2792281 0 2048 +2792337 UP 12 +2792337 2048 2048 +2792758 DOWN 12 +2792758 0 2048 +2792844 UP 12 +2792844 2048 2048 +2795298 CLICK1 +2795298 CLICK2 +~~~ +~~~ +~~~ +2795318 2048 67110912 +~~~ +2795468 2048 2048 +2799664 DOWN 12 +2799664 0 2048 +~~~ +~~~ +2799687 0 0 +~~~ +~~~ +2799689 0 1 +~~~ +~~~ +2799690 0 3 +~~~ +~~~ +2799692 0 7 +~~~ +~~~ +2799694 0 15 +~~~ +~~~ +2799696 0 31 +~~~ +~~~ +2799698 0 63 +~~~ +~~~ +2799700 0 127 +~~~ +~~~ +2799701 0 255 +2799702 homeCount = 8 +2799703 waitCount = 4 +2799703 ripCount = 2 +2799704 locktype1 = 1 +2799704 locktype2 = 1 +2799705 locktype3 = 0 +2799726 goalCount = 0 +2799727 goalTotal = 0 +2799727 otherCount = 5 +~~~ +2799728 CURRENTGOAL IS [5] +~~~ +2802199 UP 4 +2802199 8 255 +~~~ +~~~ +2802576 DOWN 4 +2802576 0 255 +2802593 8 255 +~~~ +~~~ +2802609 8 254 +~~~ +~~~ +2802611 8 252 +~~~ +~~~ +2802613 8 248 +~~~ +~~~ +2802615 8 240 +~~~ +~~~ +2802616 8 224 +~~~ +~~~ +2802618 8 192 +~~~ +~~~ +2802620 8 128 +~~~ +~~~ +2802622 8 0 +~~~ +~~~ +2802624 8 512 +2802625 homeCount = 8 +2802625 waitCount = 4 +2802626 ripCount = 2 +2802626 locktype1 = 1 +2802627 locktype2 = 1 +2802648 locktype3 = 0 +2802648 goalCount = 0 +2802649 goalTotal = 0 +2802649 otherCount = 6 +~~~ +2803199 DOWN 4 +2803199 0 512 +2806645 UP 10 +2806645 waslock = 0 +2806645 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2806667 512 16777728 +~~~ +2806808 DOWN 10 +2806808 0 16777728 +2806817 0 512 +~~~ +~~~ +2806832 0 2560 +~~~ +~~~ +2806834 0 2048 +2806835 homeCount = 9 +2806836 waitCount = 4 +2806836 ripCount = 2 +2806837 locktype1 = 1 +2806837 locktype2 = 1 +2806838 locktype3 = 0 +2806838 goalCount = 0 +2806838 goalTotal = 0 +2806839 otherCount = 6 +~~~ +2806843 UP 10 +2806843 waslock = 0 +2806843 512 2048 +~~~ +2807597 DOWN 10 +2807597 0 2048 +~~~ +~~~ +~~~ +~~~ +2807626 homeCount = 9 +2807626 waitCount = 4 +2807627 ripCount = 2 +2807627 locktype1 = 1 +2807628 locktype2 = 1 +2807628 locktype3 = 0 +2807629 goalCount = 0 +2807629 goalTotal = 0 +2807630 otherCount = 6 +~~~ +2810696 UP 11 +2810696 LOCKOUT 1 +2810696 1024 2048 +~~~ +2810723 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2810729 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2810753 DOWN 11 +2810753 0 0 +2810768 UP 11 +2810768 1024 0 +2811250 DOWN 11 +2811250 0 0 +2811286 UP 11 +2811286 1024 0 +2811744 DOWN 11 +2811744 0 0 +2811766 UP 11 +2811766 1024 0 +2811807 DOWN 11 +2811807 0 0 +2811850 UP 11 +2811850 1024 0 +2812828 DOWN 11 +2812828 0 0 +2812876 UP 11 +2812876 1024 0 +2813995 DOWN 11 +2813995 0 0 +2814049 UP 11 +2814049 1024 0 +2815505 DOWN 11 +2815505 0 0 +2819543 UP 8 +2819543 128 0 +2819585 DOWN 8 +2819585 0 0 +2819606 128 0 +2819875 DOWN 8 +2819875 0 0 +2819901 128 0 +2819941 DOWN 8 +2819941 0 0 +2824340 512 0 +2824731 0 0 +2824770 512 0 +2827498 0 0 +2827513 512 0 +2827572 0 0 +2835723 LOCKEND +~~~ +~~~ +~~~ +2835743 0 512 +2837111 UP 3 +2837111 4 512 +2837391 DOWN 3 +2837391 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2837428 homeCount = 9 +2837428 waitCount = 4 +2837429 ripCount = 2 +2837429 locktype1 = 2 +2837430 locktype2 = 1 +2837430 locktype3 = 0 +2837431 goalCount = 0 +2837431 goalTotal = 0 +2837432 otherCount = 6 +~~~ +2837436 4 512 +2837822 DOWN 3 +2837822 0 512 +2837860 4 512 +2838167 DOWN 3 +2838167 0 512 +2838177 4 512 +2838316 DOWN 3 +2838316 0 512 +2838347 4 512 +2839028 DOWN 3 +2839028 0 512 +2839041 4 512 +2839199 DOWN 3 +2839199 0 512 +2839209 4 512 +2841094 DOWN 3 +2841094 0 512 +2841119 4 512 +2841151 DOWN 3 +2841151 0 512 +2845140 UP 10 +2845140 waslock = 0 +2845140 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2845169 512 16777728 +~~~ +2845199 DOWN 10 +2845199 0 16777728 +~~~ +~~~ +2845224 0 16778752 +~~~ +~~~ +2845226 0 16778240 +2845227 homeCount = 10 +2845227 waitCount = 4 +2845228 ripCount = 2 +2845228 locktype1 = 2 +2845229 locktype2 = 1 +2845229 locktype3 = 0 +2845230 goalCount = 0 +2845230 goalTotal = 0 +2845231 otherCount = 6 +~~~ +2845259 UP 10 +2845259 waslock = 0 +2845259 512 16778240 +~~~ +2845319 512 1024 +2845324 DOWN 10 +2845324 0 1024 +~~~ +~~~ +~~~ +~~~ +2845350 homeCount = 10 +2845350 waitCount = 4 +2845351 ripCount = 2 +2845351 locktype1 = 2 +2845352 locktype2 = 1 +2845352 locktype3 = 0 +2845353 goalCount = 0 +2845353 goalTotal = 0 +2845354 otherCount = 6 +~~~ +2845370 UP 10 +2845370 waslock = 0 +2845370 512 1024 +~~~ +2846016 DOWN 10 +2846016 0 1024 +~~~ +~~~ +~~~ +~~~ +2846039 homeCount = 10 +2846039 waitCount = 4 +2846040 ripCount = 2 +2846040 locktype1 = 2 +2846041 locktype2 = 1 +2846041 locktype3 = 0 +2846041 goalCount = 0 +2846042 goalTotal = 0 +2846042 otherCount = 6 +~~~ +2846045 UP 10 +2846045 waslock = 0 +2846045 512 1024 +~~~ +2846440 DOWN 10 +2846440 0 1024 +~~~ +~~~ +~~~ +~~~ +2846469 homeCount = 10 +2846470 waitCount = 4 +2846470 ripCount = 2 +2846471 locktype1 = 2 +2846471 locktype2 = 1 +2846472 locktype3 = 0 +2846472 goalCount = 0 +2846473 goalTotal = 0 +2846473 otherCount = 6 +~~~ +2846499 UP 10 +2846499 waslock = 0 +2846498 512 1024 +~~~ +2846565 DOWN 10 +2846565 0 1024 +~~~ +~~~ +~~~ +~~~ +2846591 homeCount = 10 +2846592 waitCount = 4 +2846592 ripCount = 2 +2846593 locktype1 = 2 +2846593 locktype2 = 1 +2846594 locktype3 = 0 +2846594 goalCount = 0 +2846595 goalTotal = 0 +2846595 otherCount = 6 +~~~ +2847849 UP 11 +2847849 1024 1024 +2849371 DOWN 11 +2849371 0 1024 +2849409 UP 11 +2849409 1024 1024 +2849850 BEEP1 +2849850 BEEP2 +~~~ +~~~ +~~~ +2849879 1024 33555456 +~~~ +2850029 1024 1024 +2855199 DOWN 11 +2855199 0 1024 +~~~ +~~~ +2855227 0 0 +~~~ +~~~ +2855228 0 1 +~~~ +~~~ +2855230 0 3 +~~~ +~~~ +2855232 0 7 +~~~ +~~~ +2855234 0 15 +~~~ +~~~ +2855236 0 31 +~~~ +~~~ +2855237 0 63 +~~~ +~~~ +2855239 0 127 +~~~ +~~~ +2855241 0 255 +2855242 homeCount = 10 +2855243 waitCount = 4 +2855243 ripCount = 3 +2855244 locktype1 = 2 +2855244 locktype2 = 1 +2855245 locktype3 = 0 +2855266 goalCount = 0 +2855266 goalTotal = 0 +2855267 otherCount = 6 +~~~ +2855268 CURRENTGOAL IS [5] +~~~ +2857717 UP 7 +2857717 64 255 +~~~ +~~~ +2858426 DOWN 7 +2858426 0 255 +~~~ +~~~ +2858445 0 254 +~~~ +~~~ +2858447 0 252 +~~~ +~~~ +2858449 0 248 +~~~ +~~~ +2858451 0 240 +~~~ +~~~ +2858453 0 224 +~~~ +~~~ +2858455 0 192 +~~~ +~~~ +2858456 0 128 +~~~ +~~~ +2858458 0 0 +~~~ +~~~ +2858460 0 512 +2858461 homeCount = 10 +2858462 waitCount = 4 +2858462 ripCount = 3 +2858463 locktype1 = 2 +2858463 locktype2 = 1 +2858484 locktype3 = 0 +2858485 goalCount = 0 +2858485 goalTotal = 0 +2858486 otherCount = 7 +~~~ +2858682 64 512 +2859243 DOWN 7 +2859243 0 512 +2859279 64 512 +2859326 DOWN 7 +2859326 0 512 +2862459 UP 10 +2862459 waslock = 0 +2862459 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2862493 512 16777728 +~~~ +2862499 DOWN 10 +2862499 0 16777728 +~~~ +~~~ +2862523 0 16778752 +~~~ +~~~ +2862525 0 16778240 +2862526 homeCount = 11 +2862527 waitCount = 4 +2862527 ripCount = 3 +2862528 locktype1 = 2 +2862528 locktype2 = 1 +2862528 locktype3 = 0 +2862529 goalCount = 0 +2862529 goalTotal = 0 +2862530 otherCount = 7 +~~~ +2862551 UP 10 +2862551 waslock = 0 +2862551 512 16778240 +~~~ +2862643 512 1024 +2862760 DOWN 10 +2862760 0 1024 +~~~ +~~~ +~~~ +~~~ +2862797 homeCount = 11 +2862798 waitCount = 4 +2862798 ripCount = 3 +2862799 locktype1 = 2 +2862799 locktype2 = 1 +2862799 locktype3 = 0 +2862800 goalCount = 0 +2862800 goalTotal = 0 +2862801 otherCount = 7 +~~~ +2862809 UP 10 +2862809 waslock = 0 +2862809 512 1024 +~~~ +2868573 DOWN 10 +2868573 0 1024 +~~~ +~~~ +~~~ +~~~ +2868601 homeCount = 11 +2868602 waitCount = 4 +2868602 ripCount = 3 +2868603 locktype1 = 2 +2868603 locktype2 = 1 +2868604 locktype3 = 0 +2868604 goalCount = 0 +2868605 goalTotal = 0 +2868605 otherCount = 7 +~~~ +2870096 UP 11 +2870096 1024 1024 +2870130 DOWN 11 +2870130 0 1024 +2870158 UP 11 +2870158 1024 1024 +2870493 DOWN 11 +2870493 0 1024 +2870497 UP 11 +2870497 1024 1024 +2871248 DOWN 11 +2871248 0 1024 +2871278 UP 11 +2871278 1024 1024 +2871621 DOWN 11 +2871621 0 1024 +2871738 UP 11 +2871738 1024 1024 +2874346 BEEP1 +2874346 BEEP2 +~~~ +~~~ +~~~ +2874367 1024 33555456 +~~~ +2874517 1024 1024 +2880959 DOWN 11 +2880959 0 1024 +~~~ +~~~ +2880977 0 0 +~~~ +~~~ +2880978 0 1 +~~~ +~~~ +2880980 0 3 +~~~ +~~~ +2880982 0 7 +~~~ +~~~ +2880984 0 15 +~~~ +~~~ +2880986 0 31 +~~~ +~~~ +2880988 0 63 +~~~ +~~~ +2880989 0 127 +~~~ +~~~ +2880991 0 255 +2880992 homeCount = 11 +2880993 waitCount = 4 +2880993 ripCount = 4 +2880994 locktype1 = 2 +2880994 locktype2 = 1 +2880995 locktype3 = 0 +2881016 goalCount = 0 +2881016 goalTotal = 0 +2881017 otherCount = 7 +~~~ +2881018 CURRENTGOAL IS [5] +~~~ +2881018 UP 11 +2881018 1024 255 +2881052 DOWN 11 +2881052 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2881094 homeCount = 11 +2881095 waitCount = 4 +2881095 ripCount = 4 +2881096 locktype1 = 2 +2881096 locktype2 = 1 +2881097 locktype3 = 0 +2881097 goalCount = 0 +2881098 goalTotal = 0 +2881098 otherCount = 7 +~~~ +2881099 CURRENTGOAL IS [5] +~~~ +2883804 UP 5 +2883804 16 255 +~~~ +~~~ +2883831 outer reward +~~~ +2883831 16 1048831 +~~~ +~~~ +2884000 DOWN 5 +2884000 0 1048831 +~~~ +~~~ +2884018 0 1048830 +~~~ +~~~ +2884020 0 1048828 +~~~ +~~~ +2884022 0 1048824 +~~~ +~~~ +2884024 0 1048816 +~~~ +~~~ +2884026 0 1048800 +~~~ +~~~ +2884027 0 1048768 +~~~ +~~~ +2884029 0 1048704 +~~~ +~~~ +2884031 0 1048576 +~~~ +~~~ +2884033 0 1049088 +2884034 homeCount = 11 +2884034 waitCount = 4 +2884035 ripCount = 4 +2884056 locktype1 = 2 +2884056 locktype2 = 1 +2884057 locktype3 = 0 +2884057 goalCount = 1 +2884058 goalTotal = 1 +2884058 otherCount = 7 +~~~ +2884085 16 1049088 +2884281 16 512 +2884488 DOWN 5 +2884488 0 512 +2884507 16 512 +2884624 DOWN 5 +2884624 0 512 +2884646 16 512 +2884762 DOWN 5 +2884762 0 512 +2884788 16 512 +2884901 DOWN 5 +2884901 0 512 +2884928 16 512 +2885047 DOWN 5 +2885047 0 512 +2885071 16 512 +2885212 DOWN 5 +2885212 0 512 +2885215 16 512 +2885512 DOWN 5 +2885512 0 512 +2885526 16 512 +2893817 DOWN 5 +2893817 0 512 +2893879 16 512 +2893901 DOWN 5 +2893901 0 512 +2900132 UP 10 +2900132 waslock = 0 +2900132 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2900165 512 16777728 +~~~ +2900270 DOWN 10 +2900270 0 16777728 +~~~ +~~~ +2900289 0 16779776 +~~~ +~~~ +2900291 0 16779264 +2900292 homeCount = 12 +2900292 waitCount = 4 +2900293 ripCount = 4 +2900293 locktype1 = 2 +2900294 locktype2 = 1 +2900294 locktype3 = 0 +2900295 goalCount = 1 +2900295 goalTotal = 1 +2900296 otherCount = 7 +~~~ +2900317 0 2048 +2900502 UP 10 +2900503 waslock = 0 +2900502 512 2048 +~~~ +2904478 DOWN 10 +2904478 0 2048 +~~~ +~~~ +~~~ +~~~ +2904501 homeCount = 12 +2904501 waitCount = 4 +2904502 ripCount = 4 +2904502 locktype1 = 2 +2904503 locktype2 = 1 +2904503 locktype3 = 0 +2904504 goalCount = 1 +2904504 goalTotal = 1 +2904505 otherCount = 7 +~~~ +2906493 UP 12 +2906493 2048 2048 +2907045 DOWN 12 +2907045 0 2048 +2907073 UP 12 +2907073 2048 2048 +2907265 DOWN 12 +2907265 0 2048 +2907322 UP 12 +2907322 2048 2048 +2908818 DOWN 12 +2908818 0 2048 +2908848 UP 12 +2908848 2048 2048 +2908879 DOWN 12 +2908879 0 2048 +2908896 UP 12 +2908896 2048 2048 +2908993 CLICK1 +2908993 CLICK2 +~~~ +~~~ +~~~ +2909022 2048 67110912 +~~~ +2909172 2048 2048 +2917583 DOWN 12 +2917583 0 2048 +~~~ +~~~ +2917608 0 0 +~~~ +~~~ +2917610 0 1 +~~~ +~~~ +2917612 0 3 +~~~ +~~~ +2917614 0 7 +~~~ +~~~ +2917616 0 15 +~~~ +~~~ +2917618 0 31 +~~~ +~~~ +2917619 0 63 +~~~ +~~~ +2917621 0 127 +~~~ +~~~ +2917623 0 255 +2917624 homeCount = 12 +2917624 waitCount = 5 +2917625 ripCount = 4 +2917625 locktype1 = 2 +2917626 locktype2 = 1 +2917626 locktype3 = 0 +2917647 goalCount = 1 +2917648 goalTotal = 1 +2917648 otherCount = 7 +~~~ +2917649 CURRENTGOAL IS [5] +~~~ +2926969 UP 10 +2926969 waslock = 0 +2926969 512 255 +~~~ +2926992 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2926999 512 254 +~~~ +~~~ +2927001 512 252 +~~~ +~~~ +2927003 512 248 +~~~ +~~~ +2927005 512 240 +~~~ +~~~ +2927006 512 224 +~~~ +~~~ +2927008 512 192 +~~~ +~~~ +2927010 512 128 +~~~ +~~~ +2927012 512 0 +~~~ +~~~ +~~~ +2927150 0 0 +2927358 512 0 +2927666 0 0 +2929005 UP 11 +2929005 1024 0 +2930091 DOWN 11 +2930091 0 0 +2930141 UP 11 +2930141 1024 0 +2930869 DOWN 11 +2930869 0 0 +2930890 UP 11 +2930890 1024 0 +2930901 DOWN 11 +2930901 0 0 +2930965 UP 11 +2930965 1024 0 +2932611 DOWN 11 +2932611 0 0 +2932703 UP 11 +2932703 1024 0 +2932933 DOWN 11 +2932933 0 0 +2937462 512 0 +2938258 0 0 +2938311 512 0 +2938361 0 0 +2938456 512 0 +2938511 0 0 +2938584 512 0 +2938784 0 0 +2950209 512 0 +2950384 0 0 +2951992 LOCKEND +~~~ +~~~ +~~~ +2952011 0 512 +2955226 UP 10 +2955226 waslock = 0 +2955226 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2955256 512 16777728 +~~~ +2955406 512 512 +2955469 DOWN 10 +2955469 0 512 +~~~ +~~~ +2955491 0 1536 +~~~ +~~~ +2955492 0 1024 +2955493 homeCount = 13 +2955494 waitCount = 5 +2955494 ripCount = 4 +2955495 locktype1 = 2 +2955495 locktype2 = 2 +2955496 locktype3 = 0 +2955496 goalCount = 1 +2955497 goalTotal = 1 +2955497 otherCount = 7 +~~~ +2955567 UP 10 +2955567 waslock = 0 +2955567 512 1024 +~~~ +2959020 DOWN 10 +2959020 0 1024 +2959034 UP 10 +2959035 waslock = 0 +2959034 512 1024 +~~~ +~~~ +~~~ +~~~ +2959056 homeCount = 13 +2959056 waitCount = 5 +2959057 ripCount = 4 +2959057 locktype1 = 2 +2959057 locktype2 = 2 +2959058 locktype3 = 0 +2959058 goalCount = 1 +2959059 goalTotal = 1 +2959059 otherCount = 7 +~~~ +~~~ +2959132 DOWN 10 +2959132 0 1024 +~~~ +~~~ +~~~ +~~~ +2959154 homeCount = 13 +2959154 waitCount = 5 +2959155 ripCount = 4 +2959155 locktype1 = 2 +2959156 locktype2 = 2 +2959156 locktype3 = 0 +2959157 goalCount = 1 +2959157 goalTotal = 1 +2959158 otherCount = 7 +~~~ +2960777 UP 11 +2960777 1024 1024 +2962087 DOWN 11 +2962087 0 1024 +2962136 UP 11 +2962136 1024 1024 +2964777 BEEP1 +2964777 BEEP2 +~~~ +~~~ +~~~ +2964802 1024 33555456 +~~~ +2964952 1024 1024 +2971806 DOWN 11 +2971806 0 1024 +~~~ +~~~ +2971831 0 0 +~~~ +~~~ +2971833 0 1 +~~~ +~~~ +2971835 0 3 +~~~ +~~~ +2971837 0 7 +~~~ +~~~ +2971838 0 15 +~~~ +~~~ +2971840 0 31 +~~~ +~~~ +2971842 0 63 +~~~ +~~~ +2971844 0 127 +~~~ +~~~ +2971846 0 255 +2971847 homeCount = 13 +2971847 waitCount = 5 +2971848 ripCount = 5 +2971848 locktype1 = 2 +2971849 locktype2 = 2 +2971870 locktype3 = 0 +2971870 goalCount = 1 +2971871 goalTotal = 1 +2971871 otherCount = 7 +~~~ +2971872 CURRENTGOAL IS [5] +~~~ +2971877 UP 11 +2971877 1024 255 +2971903 DOWN 11 +2971903 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2971937 homeCount = 13 +2971938 waitCount = 5 +2971938 ripCount = 5 +2971939 locktype1 = 2 +2971939 locktype2 = 2 +2971940 locktype3 = 0 +2971940 goalCount = 1 +2971940 goalTotal = 1 +2971941 otherCount = 7 +~~~ +2971942 CURRENTGOAL IS [5] +~~~ +2976396 UP 5 +2976396 16 255 +~~~ +~~~ +2976414 outer reward +~~~ +2976414 16 1048831 +~~~ +~~~ +2976423 DOWN 5 +2976423 0 1048831 +~~~ +~~~ +2976442 0 1048830 +~~~ +~~~ +2976444 0 1048828 +~~~ +~~~ +2976446 0 1048824 +~~~ +~~~ +2976448 0 1048816 +~~~ +~~~ +2976450 0 1048800 +~~~ +~~~ +2976451 0 1048768 +~~~ +~~~ +2976453 0 1048704 +~~~ +~~~ +2976455 0 1048576 +~~~ +~~~ +2976457 0 1049088 +2976458 homeCount = 13 +2976459 waitCount = 5 +2976459 ripCount = 5 +2976480 locktype1 = 2 +2976481 locktype2 = 2 +2976481 locktype3 = 0 +2976482 goalCount = 2 +2976482 goalTotal = 2 +2976483 otherCount = 7 +~~~ +2976745 16 1049088 +2976864 16 512 +2977119 DOWN 5 +2977119 0 512 +2977139 16 512 +2977247 DOWN 5 +2977247 0 512 +2977273 16 512 +2977378 DOWN 5 +2977378 0 512 +2977408 16 512 +2977520 DOWN 5 +2977520 0 512 +2977546 16 512 +2977661 DOWN 5 +2977661 0 512 +2977678 16 512 +2977805 DOWN 5 +2977805 0 512 +2977822 16 512 +2977954 DOWN 5 +2977954 0 512 +2977960 16 512 +2978103 DOWN 5 +2978103 0 512 +2978108 16 512 +2984704 DOWN 5 +2984704 0 512 +2984779 16 512 +2984829 DOWN 5 +2984829 0 512 +2988561 UP 10 +2988561 waslock = 0 +2988561 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2988589 512 16777728 +~~~ +2988710 DOWN 10 +2988710 0 16777728 +~~~ +~~~ +2988736 0 16779776 +~~~ +~~~ +2988737 0 16779264 +2988738 homeCount = 14 +2988739 waitCount = 5 +2988739 ripCount = 5 +2988740 locktype1 = 2 +2988740 locktype2 = 2 +2988741 locktype3 = 0 +2988741 goalCount = 2 +2988742 goalTotal = 2 +2988742 otherCount = 7 +~~~ +2988763 0 2048 +2988869 UP 10 +2988869 waslock = 0 +2988869 512 2048 +~~~ +2992466 DOWN 10 +2992466 0 2048 +~~~ +~~~ +~~~ +~~~ +2992487 homeCount = 14 +2992487 waitCount = 5 +2992488 ripCount = 5 +2992488 locktype1 = 2 +2992489 locktype2 = 2 +2992489 locktype3 = 0 +2992490 goalCount = 2 +2992490 goalTotal = 2 +2992491 otherCount = 7 +~~~ +2994131 UP 12 +2994131 2048 2048 +2994583 DOWN 12 +2994583 0 2048 +2994618 UP 12 +2994618 2048 2048 +2997762 DOWN 12 +2997762 0 2048 +2997801 UP 12 +2997801 2048 2048 +2998062 DOWN 12 +2998062 0 2048 +2998088 UP 12 +2998088 2048 2048 +2998631 CLICK1 +2998631 CLICK2 +~~~ +~~~ +~~~ +2998655 2048 67110912 +~~~ +2998805 2048 2048 +3004157 DOWN 12 +3004156 0 2048 +~~~ +~~~ +3004183 0 0 +~~~ +~~~ +3004185 0 1 +~~~ +~~~ +3004187 0 3 +~~~ +~~~ +3004188 0 7 +~~~ +~~~ +3004190 0 15 +~~~ +~~~ +3004192 0 31 +~~~ +~~~ +3004194 0 63 +~~~ +~~~ +3004196 0 127 +~~~ +~~~ +3004197 0 255 +3004198 homeCount = 14 +3004199 waitCount = 6 +3004199 ripCount = 5 +3004200 locktype1 = 2 +3004200 locktype2 = 2 +3004201 locktype3 = 0 +3004222 goalCount = 2 +3004222 goalTotal = 2 +3004223 otherCount = 7 +~~~ +3004224 CURRENTGOAL IS [5] +~~~ +3008015 UP 4 +3008015 8 255 +~~~ +~~~ +3008683 DOWN 4 +3008683 0 255 +~~~ +~~~ +3008705 0 254 +~~~ +~~~ +3008706 0 252 +~~~ +~~~ +3008708 0 248 +~~~ +~~~ +3008710 0 240 +~~~ +~~~ +3008712 0 224 +~~~ +~~~ +3008714 0 192 +~~~ +~~~ +3008716 0 128 +~~~ +~~~ +3008717 0 0 +~~~ +~~~ +3008719 0 512 +3008720 homeCount = 14 +3008721 waitCount = 6 +3008721 ripCount = 5 +3008722 locktype1 = 2 +3008722 locktype2 = 2 +3008743 locktype3 = 0 +3008743 goalCount = 2 +3008744 goalTotal = 2 +3008744 otherCount = 8 +~~~ +3008745 8 512 +3008988 DOWN 4 +3008988 0 512 +3012101 UP 10 +3012101 waslock = 0 +3012101 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3012131 512 16777728 +~~~ +3012281 512 512 +3012321 DOWN 10 +3012321 0 512 +3012338 UP 10 +3012338 waslock = 0 +3012338 512 512 +~~~ +~~~ +3012356 512 1536 +~~~ +~~~ +3012358 512 1024 +3012359 homeCount = 15 +3012359 waitCount = 6 +3012360 ripCount = 5 +3012360 locktype1 = 2 +3012361 locktype2 = 2 +3012361 locktype3 = 0 +3012362 goalCount = 2 +3012362 goalTotal = 2 +3012363 otherCount = 8 +~~~ +~~~ +3016884 DOWN 10 +3016884 0 1024 +~~~ +~~~ +~~~ +~~~ +3016910 homeCount = 15 +3016910 waitCount = 6 +3016911 ripCount = 5 +3016911 locktype1 = 2 +3016912 locktype2 = 2 +3016912 locktype3 = 0 +3016913 goalCount = 2 +3016913 goalTotal = 2 +3016913 otherCount = 8 +~~~ +3016929 UP 10 +3016930 waslock = 0 +3016929 512 1024 +~~~ +3016971 DOWN 10 +3016971 0 1024 +~~~ +~~~ +~~~ +~~~ +3017003 homeCount = 15 +3017004 waitCount = 6 +3017004 ripCount = 5 +3017005 locktype1 = 2 +3017005 locktype2 = 2 +3017006 locktype3 = 0 +3017006 goalCount = 2 +3017007 goalTotal = 2 +3017007 otherCount = 8 +~~~ +3018772 UP 11 +3018772 1024 1024 +3022772 BEEP1 +3022772 BEEP2 +~~~ +~~~ +~~~ +3022798 1024 33555456 +~~~ +3022948 1024 1024 +3026798 DOWN 11 +3026798 0 1024 +3026812 UP 11 +3026812 1024 1024 +~~~ +~~~ +3026816 1024 0 +~~~ +~~~ +3026818 1024 1 +~~~ +~~~ +3026820 1024 3 +~~~ +~~~ +3026822 1024 7 +~~~ +~~~ +3026824 1024 15 +~~~ +~~~ +3026826 1024 31 +~~~ +~~~ +3026827 1024 63 +~~~ +~~~ +3026829 1024 127 +~~~ +~~~ +3026831 1024 255 +3026832 homeCount = 15 +3026833 waitCount = 6 +3026833 ripCount = 6 +3026834 locktype1 = 2 +3026855 locktype2 = 2 +3026855 locktype3 = 0 +3026856 goalCount = 2 +3026856 goalTotal = 2 +3026857 otherCount = 8 +~~~ +3026858 CURRENTGOAL IS [5] +~~~ +3029131 DOWN 11 +3029131 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3029172 homeCount = 15 +3029172 waitCount = 6 +3029173 ripCount = 6 +3029173 locktype1 = 2 +3029174 locktype2 = 2 +3029174 locktype3 = 0 +3029175 goalCount = 2 +3029175 goalTotal = 2 +3029176 otherCount = 8 +~~~ +3029177 CURRENTGOAL IS [5] +~~~ +3029180 UP 11 +3029180 1024 255 +3029224 DOWN 11 +3029224 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3029261 homeCount = 15 +3029262 waitCount = 6 +3029262 ripCount = 6 +3029263 locktype1 = 2 +3029263 locktype2 = 2 +3029264 locktype3 = 0 +3029264 goalCount = 2 +3029265 goalTotal = 2 +3029265 otherCount = 8 +~~~ +3029266 CURRENTGOAL IS [5] +~~~ +3033041 UP 5 +3033041 16 255 +~~~ +~~~ +3033069 outer reward +~~~ +3033069 16 1048831 +~~~ +~~~ +3033156 DOWN 5 +3033156 0 1048831 +~~~ +~~~ +3033176 0 1048830 +~~~ +~~~ +3033178 0 1048828 +~~~ +~~~ +3033180 0 1048824 +~~~ +~~~ +3033182 0 1048816 +~~~ +~~~ +3033183 0 1048800 +~~~ +~~~ +3033185 0 1048768 +~~~ +~~~ +3033187 0 1048704 +~~~ +~~~ +3033189 0 1048576 +~~~ +~~~ +3033191 0 1049088 +3033192 homeCount = 15 +3033192 waitCount = 6 +3033193 ripCount = 6 +3033214 locktype1 = 2 +3033214 locktype2 = 2 +3033215 locktype3 = 0 +3033215 goalCount = 3 +3033215 goalTotal = 3 +3033216 otherCount = 8 +~~~ +3033216 16 1049088 +3033519 16 512 +3033749 DOWN 5 +3033749 0 512 +3033766 16 512 +3033865 DOWN 5 +3033865 0 512 +3033899 16 512 +3033999 DOWN 5 +3033999 0 512 +3034031 16 512 +3034141 DOWN 5 +3034141 0 512 +3034169 16 512 +3034280 DOWN 5 +3034280 0 512 +3034309 16 512 +3034429 DOWN 5 +3034429 0 512 +3034450 16 512 +3034576 DOWN 5 +3034576 0 512 +3034597 16 512 +3035054 DOWN 5 +3035054 0 512 +3035067 16 512 +3042062 DOWN 5 +3042062 0 512 +3042075 16 512 +3042174 DOWN 5 +3042174 0 512 +3045701 UP 10 +3045701 waslock = 0 +3045701 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3045733 512 16777728 +~~~ +3045883 512 512 +3045949 DOWN 10 +3045949 0 512 +3045963 UP 10 +3045963 waslock = 0 +3045963 512 512 +~~~ +~~~ +3045967 512 2560 +~~~ +~~~ +3045969 512 2048 +3045970 homeCount = 16 +3045970 waitCount = 6 +3045971 ripCount = 6 +3045971 locktype1 = 2 +3045972 locktype2 = 2 +3045972 locktype3 = 0 +3045973 goalCount = 3 +3045973 goalTotal = 3 +3045973 otherCount = 8 +~~~ +~~~ +3051491 DOWN 10 +3051491 0 2048 +~~~ +~~~ +~~~ +~~~ +3051519 homeCount = 16 +3051520 waitCount = 6 +3051520 ripCount = 6 +3051521 locktype1 = 2 +3051521 locktype2 = 2 +3051522 locktype3 = 0 +3051522 goalCount = 3 +3051523 goalTotal = 3 +3051523 otherCount = 8 +~~~ +3053813 UP 12 +3053813 2048 2048 +3054243 DOWN 12 +3054243 0 2048 +3054339 UP 12 +3054339 2048 2048 +3054607 DOWN 12 +3054607 0 2048 +3054671 UP 12 +3054671 2048 2048 +3056813 CLICK1 +3056813 CLICK2 +~~~ +~~~ +~~~ +3056838 2048 67110912 +~~~ +3056987 2048 2048 +3061603 DOWN 12 +3061603 0 2048 +~~~ +~~~ +3061626 0 0 +~~~ +~~~ +3061627 0 1 +~~~ +~~~ +3061629 0 3 +~~~ +~~~ +3061631 0 7 +~~~ +~~~ +3061633 0 15 +~~~ +~~~ +3061635 0 31 +~~~ +~~~ +3061636 0 63 +~~~ +~~~ +3061638 0 127 +~~~ +~~~ +3061640 0 255 +3061641 homeCount = 16 +3061642 waitCount = 7 +3061642 ripCount = 6 +3061643 locktype1 = 2 +3061643 locktype2 = 2 +3061664 locktype3 = 0 +3061665 goalCount = 3 +3061665 goalTotal = 3 +3061666 otherCount = 8 +~~~ +3061667 CURRENTGOAL IS [5] +~~~ +3065106 UP 5 +3065106 16 255 +~~~ +~~~ +3065129 outer reward +~~~ +3065130 16 1048831 +~~~ +~~~ +3065146 DOWN 5 +3065146 0 1048831 +~~~ +~~~ +3065166 0 1048830 +~~~ +~~~ +3065168 0 1048828 +~~~ +~~~ +3065170 0 1048824 +~~~ +~~~ +3065171 0 1048816 +~~~ +~~~ +3065173 0 1048800 +~~~ +~~~ +3065175 0 1048768 +~~~ +~~~ +3065177 0 1048704 +~~~ +~~~ +3065179 0 1048576 +~~~ +~~~ +3065181 0 1049088 +3065182 homeCount = 16 +3065182 waitCount = 7 +3065183 ripCount = 6 +3065204 locktype1 = 2 +3065204 locktype2 = 2 +3065205 locktype3 = 0 +3065205 goalCount = 4 +3065206 goalTotal = 4 +3065206 otherCount = 8 +~~~ +3065207 16 1049088 +3065270 DOWN 5 +3065270 0 1049088 +3065325 16 1049088 +3065579 16 512 +3065887 DOWN 5 +3065887 0 512 +3065911 16 512 +3066021 DOWN 5 +3066021 0 512 +3066053 16 512 +3066168 DOWN 5 +3066168 0 512 +3066196 16 512 +3066317 DOWN 5 +3066317 0 512 +3066340 16 512 +3074351 DOWN 5 +3074351 0 512 +3074360 16 512 +3075013 DOWN 5 +3075013 0 512 +3075057 16 512 +3076432 DOWN 5 +3076432 0 512 +3080377 UP 10 +3080378 waslock = 0 +3080377 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3080403 512 16777728 +~~~ +3080553 512 512 +3080585 DOWN 10 +3080585 0 512 +~~~ +~~~ +3080606 0 2560 +~~~ +~~~ +3080608 0 2048 +3080609 homeCount = 17 +3080610 waitCount = 7 +3080610 ripCount = 6 +3080611 locktype1 = 2 +3080611 locktype2 = 2 +3080612 locktype3 = 0 +3080612 goalCount = 4 +3080613 goalTotal = 4 +3080613 otherCount = 8 +~~~ +3080614 UP 10 +3080635 waslock = 0 +3080614 512 2048 +~~~ +3084727 DOWN 10 +3084727 0 2048 +~~~ +~~~ +~~~ +3084747 UP 10 +3084747 waslock = 0 +3084747 512 2048 +~~~ +3084749 homeCount = 17 +3084750 waitCount = 7 +3084750 ripCount = 6 +3084751 locktype1 = 2 +3084751 locktype2 = 2 +3084751 locktype3 = 0 +3084752 goalCount = 4 +3084752 goalTotal = 4 +3084753 otherCount = 8 +~~~ +~~~ +3084815 DOWN 10 +3084815 0 2048 +~~~ +~~~ +~~~ +~~~ +3084840 homeCount = 17 +3084840 waitCount = 7 +3084841 ripCount = 6 +3084841 locktype1 = 2 +3084842 locktype2 = 2 +3084842 locktype3 = 0 +3084843 goalCount = 4 +3084843 goalTotal = 4 +3084844 otherCount = 8 +~~~ +3086263 UP 12 +3086263 2048 2048 +3086712 DOWN 12 +3086712 0 2048 +3086759 UP 12 +3086759 2048 2048 +3088514 CLICK1 +3088514 CLICK2 +~~~ +~~~ +~~~ +3088539 2048 67110912 +~~~ +3088689 2048 2048 +3093822 DOWN 12 +3093822 0 2048 +~~~ +~~~ +3093848 0 0 +~~~ +~~~ +3093849 0 1 +~~~ +~~~ +3093851 0 3 +~~~ +~~~ +3093853 0 7 +~~~ +~~~ +3093855 0 15 +~~~ +~~~ +3093857 0 31 +~~~ +~~~ +3093858 0 63 +~~~ +~~~ +3093860 0 127 +~~~ +~~~ +3093862 0 255 +3093863 homeCount = 17 +3093864 waitCount = 8 +3093864 ripCount = 6 +3093865 locktype1 = 2 +3093865 locktype2 = 2 +3093866 locktype3 = 0 +3093887 goalCount = 4 +3093887 goalTotal = 4 +3093888 otherCount = 8 +~~~ +3093889 CURRENTGOAL IS [5] +~~~ +3093890 UP 12 +3093890 2048 255 +3096724 DOWN 12 +3096724 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3096762 homeCount = 17 +3096762 waitCount = 8 +3096763 ripCount = 6 +3096763 locktype1 = 2 +3096764 locktype2 = 2 +3096764 locktype3 = 0 +3096765 goalCount = 4 +3096765 goalTotal = 4 +3096766 otherCount = 8 +~~~ +3096767 CURRENTGOAL IS [5] +~~~ +3096796 UP 12 +3096796 2048 255 +3096833 DOWN 12 +3096833 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3096874 homeCount = 17 +3096874 waitCount = 8 +3096875 ripCount = 6 +3096875 locktype1 = 2 +3096876 locktype2 = 2 +3096876 locktype3 = 0 +3096877 goalCount = 4 +3096877 goalTotal = 4 +3096877 otherCount = 8 +~~~ +3096879 CURRENTGOAL IS [5] +~~~ +3100868 UP 5 +3100868 16 255 +~~~ +~~~ +3100887 outer reward +~~~ +3100888 16 1048831 +~~~ +~~~ +3100913 DOWN 5 +3100913 0 1048831 +~~~ +~~~ +3100937 0 1048830 +~~~ +~~~ +3100939 0 1048828 +~~~ +~~~ +3100941 0 1048824 +~~~ +~~~ +3100942 0 1048816 +~~~ +~~~ +3100944 0 1048800 +~~~ +~~~ +3100946 0 1048768 +~~~ +~~~ +3100948 0 1048704 +~~~ +3100949 16 1048704 +~~~ +~~~ +3100951 16 1048576 +~~~ +3100952 16 1049088 +3100953 homeCount = 17 +3100953 waitCount = 8 +3100974 ripCount = 6 +3100975 locktype1 = 2 +3100975 locktype2 = 2 +3100976 locktype3 = 0 +3100976 goalCount = 5 +3100977 goalTotal = 5 +3100977 otherCount = 8 +~~~ +3101030 DOWN 5 +3101030 0 1049088 +3101085 16 1049088 +3101337 16 512 +3101521 DOWN 5 +3101521 0 512 +3101537 16 512 +3101644 DOWN 5 +3101644 0 512 +3101675 16 512 +3101791 DOWN 5 +3101791 0 512 +3101820 16 512 +3101934 DOWN 5 +3101934 0 512 +3101961 16 512 +3110337 DOWN 5 +3110337 0 512 +3110357 16 512 +3110459 DOWN 5 +3110459 0 512 +3110518 16 512 +3110553 DOWN 5 +3110553 0 512 +3115418 UP 10 +3115418 waslock = 0 +3115418 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3115442 512 16777728 +~~~ +3115592 512 512 +3115661 DOWN 10 +3115661 0 512 +~~~ +~~~ +3115693 0 2560 +~~~ +~~~ +3115694 0 2048 +3115695 homeCount = 18 +3115696 waitCount = 8 +3115696 ripCount = 6 +3115697 locktype1 = 2 +3115697 locktype2 = 2 +3115698 locktype3 = 0 +3115698 goalCount = 5 +3115699 goalTotal = 5 +3115699 otherCount = 8 +~~~ +3115746 UP 10 +3115746 waslock = 0 +3115746 512 2048 +~~~ +3119352 DOWN 10 +3119352 0 2048 +~~~ +~~~ +~~~ +~~~ +3119379 homeCount = 18 +3119379 waitCount = 8 +3119380 ripCount = 6 +3119380 locktype1 = 2 +3119381 locktype2 = 2 +3119381 locktype3 = 0 +3119382 goalCount = 5 +3119382 goalTotal = 5 +3119383 otherCount = 8 +~~~ +3120777 UP 12 +3120777 2048 2048 +3123277 CLICK1 +3123277 CLICK2 +~~~ +~~~ +~~~ +3123299 2048 67110912 +~~~ +3123449 2048 2048 +3130663 DOWN 12 +3130663 0 2048 +~~~ +~~~ +3130687 0 0 +~~~ +~~~ +3130689 0 1 +~~~ +~~~ +3130691 0 3 +~~~ +~~~ +3130693 0 7 +~~~ +~~~ +3130695 0 15 +~~~ +~~~ +3130696 0 31 +~~~ +~~~ +3130698 0 63 +~~~ +~~~ +3130700 0 127 +~~~ +~~~ +3130702 0 255 +3130703 homeCount = 18 +3130703 waitCount = 9 +3130704 ripCount = 6 +3130704 locktype1 = 2 +3130705 locktype2 = 2 +3130705 locktype3 = 0 +3130726 goalCount = 5 +3130726 goalTotal = 5 +3130727 otherCount = 8 +~~~ +3130728 CURRENTGOAL IS [5] +~~~ +3130749 UP 12 +3130749 2048 255 +3130773 DOWN 12 +3130773 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3130808 homeCount = 18 +3130809 waitCount = 9 +3130809 ripCount = 6 +3130810 locktype1 = 2 +3130810 locktype2 = 2 +3130811 locktype3 = 0 +3130811 goalCount = 5 +3130812 goalTotal = 5 +3130812 otherCount = 8 +~~~ +3130813 CURRENTGOAL IS [5] +~~~ +3130908 UP 12 +3130908 2048 255 +3131207 DOWN 12 +3131207 0 255 +3131223 UP 12 +3131223 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131244 homeCount = 18 +3131244 waitCount = 9 +3131245 ripCount = 6 +3131245 locktype1 = 2 +3131246 locktype2 = 2 +3131246 locktype3 = 0 +3131247 goalCount = 5 +3131247 goalTotal = 5 +3131248 otherCount = 8 +~~~ +3131249 CURRENTGOAL IS [5] +~~~ +3131887 DOWN 12 +3131887 0 255 +3131901 UP 12 +3131901 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131929 DOWN 12 +3131929 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131935 homeCount = 18 +3131936 waitCount = 9 +3131936 ripCount = 6 +3131937 locktype1 = 2 +3131937 locktype2 = 2 +3131938 locktype3 = 0 +3131938 goalCount = 5 +3131939 goalTotal = 5 +3131939 otherCount = 8 +~~~ +3131940 CURRENTGOAL IS [5] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131976 homeCount = 18 +3131977 waitCount = 9 +3131977 ripCount = 6 +3131978 locktype1 = 2 +3131978 locktype2 = 2 +3131978 locktype3 = 0 +3131979 goalCount = 5 +3131979 goalTotal = 5 +3131980 otherCount = 8 +~~~ +3131981 CURRENTGOAL IS [5] +~~~ +3135451 UP 5 +3135451 16 255 +~~~ +~~~ +3135472 outer reward +~~~ +3135472 16 1048831 +~~~ +~~~ +3135498 DOWN 5 +3135498 0 1048831 +~~~ +~~~ +3135518 0 1048830 +~~~ +~~~ +3135520 0 1048828 +~~~ +~~~ +3135521 0 1048824 +~~~ +~~~ +3135523 0 1048816 +~~~ +~~~ +3135525 0 1048800 +~~~ +~~~ +3135527 0 1048768 +~~~ +~~~ +3135529 0 1048704 +~~~ +~~~ +3135531 0 1048576 +~~~ +~~~ +3135533 0 1049088 +3135534 homeCount = 18 +3135534 waitCount = 9 +3135534 ripCount = 6 +3135555 locktype1 = 2 +3135556 locktype2 = 2 +3135556 locktype3 = 0 +3135557 goalCount = 6 +3135557 goalTotal = 6 +3135558 otherCount = 8 +~~~ +3135701 16 1049088 +3135922 16 512 +3136141 DOWN 5 +3136141 0 512 +3136162 16 512 +3136267 DOWN 5 +3136267 0 512 +3136300 16 512 +3136417 DOWN 5 +3136417 0 512 +3136440 16 512 +3136571 DOWN 5 +3136571 0 512 +3136593 16 512 +3136726 DOWN 5 +3136726 0 512 +3136735 16 512 +3144812 DOWN 5 +3144812 0 512 +3144860 16 512 +3144921 DOWN 5 +3144921 0 512 +3149602 UP 10 +3149602 waslock = 0 +3149602 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3149626 512 16777728 +~~~ +3149776 512 512 +3149906 DOWN 10 +3149906 0 512 +~~~ +~~~ +3149930 0 2560 +~~~ +~~~ +3149931 0 2048 +3149932 homeCount = 19 +3149933 waitCount = 9 +3149933 ripCount = 6 +3149934 locktype1 = 2 +3149934 locktype2 = 2 +3149935 locktype3 = 0 +3149935 goalCount = 6 +3149936 goalTotal = 6 +3149936 otherCount = 8 +~~~ +3149950 UP 10 +3149950 waslock = 0 +3149950 512 2048 +~~~ +3154133 DOWN 10 +3154133 0 2048 +~~~ +~~~ +~~~ +~~~ +3154161 homeCount = 19 +3154161 waitCount = 9 +3154162 ripCount = 6 +3154162 locktype1 = 2 +3154163 locktype2 = 2 +3154163 locktype3 = 0 +3154164 goalCount = 6 +3154164 goalTotal = 6 +3154165 otherCount = 8 +~~~ +3155594 UP 12 +3155594 2048 2048 +3158393 DOWN 12 +3158393 0 2048 +3158406 UP 12 +3158406 2048 2048 +3158844 CLICK1 +3158844 CLICK2 +~~~ +~~~ +~~~ +3158876 2048 67110912 +~~~ +3159026 2048 2048 +3163507 DOWN 12 +3163507 0 2048 +~~~ +~~~ +3163529 0 0 +~~~ +~~~ +3163531 0 1 +~~~ +~~~ +3163533 0 3 +~~~ +~~~ +3163535 0 7 +~~~ +~~~ +3163536 0 15 +~~~ +~~~ +3163538 0 31 +~~~ +~~~ +3163540 0 63 +~~~ +~~~ +3163542 0 127 +~~~ +~~~ +3163544 0 255 +3163545 homeCount = 19 +3163545 waitCount = 10 +3163546 ripCount = 6 +3163546 locktype1 = 2 +3163547 locktype2 = 2 +3163568 locktype3 = 0 +3163568 goalCount = 6 +3163569 goalTotal = 6 +3163569 otherCount = 8 +~~~ +3163570 CURRENTGOAL IS [5] +~~~ +3163578 UP 12 +3163578 2048 255 +3163598 DOWN 12 +3163598 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3163638 homeCount = 19 +3163638 waitCount = 10 +3163639 ripCount = 6 +3163639 locktype1 = 2 +3163640 locktype2 = 2 +3163640 locktype3 = 0 +3163641 goalCount = 6 +3163641 goalTotal = 6 +3163642 otherCount = 8 +~~~ +3163643 CURRENTGOAL IS [5] +~~~ +3166713 UP 5 +3166713 16 255 +~~~ +~~~ +3166733 outer reward +~~~ +3166734 16 1048831 +~~~ +~~~ +3166852 DOWN 5 +3166852 0 1048831 +~~~ +~~~ +3166871 0 1048830 +~~~ +~~~ +3166872 0 1048828 +~~~ +~~~ +3166874 0 1048824 +~~~ +~~~ +3166876 0 1048816 +~~~ +~~~ +3166878 0 1048800 +~~~ +~~~ +3166880 0 1048768 +~~~ +~~~ +3166881 0 1048704 +~~~ +~~~ +3166883 0 1048576 +~~~ +~~~ +3166885 0 1049088 +3166886 homeCount = 19 +3166887 waitCount = 10 +3166887 ripCount = 6 +3166908 locktype1 = 2 +3166909 locktype2 = 2 +3166909 locktype3 = 0 +3166910 goalCount = 7 +3166910 goalTotal = 7 +3166911 otherCount = 8 +~~~ +3166920 16 1049088 +3167183 16 512 +3167467 DOWN 5 +3167467 0 512 +3167492 16 512 +3167596 DOWN 5 +3167596 0 512 +3167627 16 512 +3167749 DOWN 5 +3167749 0 512 +3167769 16 512 +3167902 DOWN 5 +3167902 0 512 +3167918 16 512 +3168063 DOWN 5 +3168063 0 512 +3168067 16 512 +3168216 DOWN 5 +3168216 0 512 +3168221 16 512 +3173245 DOWN 5 +3173245 0 512 +3173274 16 512 +3173358 DOWN 5 +3173358 0 512 +3173398 16 512 +3173533 DOWN 5 +3173533 0 512 +3173545 16 512 +3174748 DOWN 5 +3174748 0 512 +3178391 UP 10 +3178391 waslock = 0 +3178391 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3178419 512 16777728 +~~~ +3178513 DOWN 10 +3178513 0 16777728 +~~~ +~~~ +3178533 0 16779776 +~~~ +~~~ +3178535 0 16779264 +3178536 homeCount = 20 +3178536 waitCount = 10 +3178537 ripCount = 6 +3178537 locktype1 = 2 +3178538 locktype2 = 2 +3178538 locktype3 = 0 +3178539 goalCount = 7 +3178539 goalTotal = 7 +3178540 otherCount = 8 +~~~ +3178565 UP 10 +3178565 waslock = 0 +3178565 512 16779264 +3178569 512 2048 +~~~ +3181110 DOWN 10 +3181110 0 2048 +~~~ +~~~ +~~~ +~~~ +3181136 homeCount = 20 +3181137 waitCount = 10 +3181137 ripCount = 6 +3181138 locktype1 = 2 +3181138 locktype2 = 2 +3181138 locktype3 = 0 +3181139 goalCount = 7 +3181139 goalTotal = 7 +3181140 otherCount = 8 +~~~ +3181148 UP 10 +3181148 waslock = 0 +3181148 512 2048 +~~~ +3182879 DOWN 10 +3182879 0 2048 +~~~ +~~~ +~~~ +~~~ +3182909 homeCount = 20 +3182909 waitCount = 10 +3182910 ripCount = 6 +3182910 locktype1 = 2 +3182911 locktype2 = 2 +3182911 locktype3 = 0 +3182912 goalCount = 7 +3182912 goalTotal = 7 +3182912 otherCount = 8 +~~~ +3184248 UP 12 +3184248 2048 2048 +3184441 DOWN 12 +3184441 0 2048 +3184642 LOCKOUT 3 +~~~ +3184664 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3184670 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3184821 UP 12 +3184821 2048 0 +3186676 DOWN 12 +3186676 0 0 +3186687 UP 12 +3186687 2048 0 +3186880 DOWN 12 +3186880 0 0 +3186888 UP 12 +3186888 2048 0 +3192209 DOWN 12 +3192209 0 0 +3203995 512 0 +3204208 0 0 +3204247 512 0 +3204551 0 0 +3209664 LOCKEND +~~~ +~~~ +~~~ +3209684 0 512 +3211290 UP 10 +3211291 waslock = 0 +3211290 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3211319 512 16777728 +~~~ +3211469 512 512 +3211753 DOWN 10 +3211753 0 512 +~~~ +~~~ +3211773 0 2560 +~~~ +~~~ +3211775 0 2048 +3211776 homeCount = 21 +3211776 waitCount = 10 +3211777 ripCount = 6 +3211777 locktype1 = 2 +3211778 locktype2 = 2 +3211778 locktype3 = 1 +3211779 goalCount = 7 +3211779 goalTotal = 7 +3211780 otherCount = 8 +~~~ +3212060 UP 10 +3212061 waslock = 0 +3212060 512 2048 +~~~ +3212477 DOWN 10 +3212477 0 2048 +3212487 UP 10 +3212488 waslock = 0 +3212487 512 2048 +~~~ +~~~ +~~~ +~~~ +3212507 homeCount = 21 +3212508 waitCount = 10 +3212508 ripCount = 6 +3212509 locktype1 = 2 +3212509 locktype2 = 2 +3212510 locktype3 = 1 +3212510 goalCount = 7 +3212511 goalTotal = 7 +3212511 otherCount = 8 +~~~ +~~~ +3215388 DOWN 10 +3215388 0 2048 +3215405 UP 10 +3215405 waslock = 0 +3215405 512 2048 +~~~ +~~~ +~~~ +~~~ +3215428 homeCount = 21 +3215428 waitCount = 10 +3215429 ripCount = 6 +3215429 locktype1 = 2 +3215430 locktype2 = 2 +3215430 locktype3 = 1 +3215431 goalCount = 7 +3215431 goalTotal = 7 +3215432 otherCount = 8 +~~~ +~~~ +3215479 DOWN 10 +3215479 0 2048 +~~~ +~~~ +~~~ +~~~ +3215506 homeCount = 21 +3215506 waitCount = 10 +3215507 ripCount = 6 +3215507 locktype1 = 2 +3215508 locktype2 = 2 +3215508 locktype3 = 1 +3215508 goalCount = 7 +3215509 goalTotal = 7 +3215509 otherCount = 8 +~~~ +3216863 UP 12 +3216863 2048 2048 +3218565 DOWN 12 +3218565 0 2048 +3218574 UP 12 +3218574 2048 2048 +3220863 CLICK1 +3220863 CLICK2 +~~~ +~~~ +~~~ +3220884 2048 67110912 +~~~ +3221034 2048 2048 +3226345 DOWN 12 +3226345 0 2048 +~~~ +~~~ +3226363 0 0 +~~~ +~~~ +3226365 0 1 +~~~ +~~~ +3226367 0 3 +~~~ +~~~ +3226368 0 7 +~~~ +~~~ +3226370 0 15 +~~~ +~~~ +3226372 0 31 +~~~ +~~~ +3226374 0 63 +~~~ +~~~ +3226376 0 127 +~~~ +~~~ +3226377 0 255 +3226378 homeCount = 21 +3226379 waitCount = 11 +3226379 ripCount = 6 +3226380 locktype1 = 2 +3226380 locktype2 = 2 +3226402 locktype3 = 1 +3226402 goalCount = 7 +3226403 goalTotal = 7 +3226403 otherCount = 8 +~~~ +3226404 CURRENTGOAL IS [5] +~~~ +3226405 UP 12 +3226405 2048 255 +3226446 DOWN 12 +3226446 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3226478 homeCount = 21 +3226479 waitCount = 11 +3226479 ripCount = 6 +3226480 locktype1 = 2 +3226480 locktype2 = 2 +3226481 locktype3 = 1 +3226481 goalCount = 7 +3226482 goalTotal = 7 +3226482 otherCount = 8 +~~~ +3226483 CURRENTGOAL IS [5] +~~~ +3229553 UP 5 +3229553 16 255 +~~~ +~~~ +3229574 outer reward +~~~ +3229575 16 1048831 +~~~ +~~~ +3229607 DOWN 5 +3229607 0 1048831 +~~~ +~~~ +3229632 0 1048830 +~~~ +~~~ +3229634 0 1048828 +~~~ +~~~ +3229636 0 1048824 +~~~ +~~~ +3229638 0 1048816 +~~~ +~~~ +3229640 0 1048800 +~~~ +~~~ +3229642 0 1048768 +~~~ +~~~ +3229643 0 1048704 +~~~ +~~~ +3229645 0 1048576 +~~~ +~~~ +3229647 16 1049088 +3229648 homeCount = 21 +3229649 waitCount = 11 +3229649 ripCount = 6 +3229670 locktype1 = 2 +3229671 locktype2 = 2 +3229671 locktype3 = 1 +3229672 goalCount = 8 +3229672 goalTotal = 8 +3229673 otherCount = 8 +~~~ +3229707 DOWN 5 +3229707 0 1049088 +3229782 16 1049088 +3230024 16 512 +3230230 DOWN 5 +3230230 0 512 +3230247 16 512 +3230349 DOWN 5 +3230349 0 512 +3230385 16 512 +3230485 DOWN 5 +3230485 0 512 +3230525 16 512 +3230632 DOWN 5 +3230632 0 512 +3230658 16 512 +3231216 DOWN 5 +3231216 0 512 +3231224 16 512 +3238685 DOWN 5 +3238685 0 512 +3242068 UP 10 +3242068 waslock = 0 +3242068 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3242100 512 16777728 +~~~ +3242250 512 512 +3242279 DOWN 10 +3242279 0 512 +3242291 UP 10 +3242291 waslock = 0 +3242291 512 512 +~~~ +~~~ +3242317 512 1536 +~~~ +~~~ +3242319 512 1024 +3242320 homeCount = 22 +3242321 waitCount = 11 +3242321 ripCount = 6 +3242322 locktype1 = 2 +3242322 locktype2 = 2 +3242322 locktype3 = 1 +3242323 goalCount = 8 +3242323 goalTotal = 8 +3242324 otherCount = 8 +~~~ +~~~ +3245953 DOWN 10 +3245953 0 1024 +~~~ +~~~ +~~~ +~~~ +3245977 homeCount = 22 +3245977 waitCount = 11 +3245978 ripCount = 6 +3245978 locktype1 = 2 +3245979 locktype2 = 2 +3245979 locktype3 = 1 +3245980 goalCount = 8 +3245980 goalTotal = 8 +3245981 otherCount = 8 +~~~ +3248007 UP 11 +3248006 1024 1024 +3248996 DOWN 11 +3248996 0 1024 +3249014 UP 11 +3249014 1024 1024 +3249041 DOWN 11 +3249041 0 1024 +3249053 UP 11 +3249053 1024 1024 +3249157 DOWN 11 +3249157 0 1024 +3249226 UP 11 +3249226 1024 1024 +3250007 BEEP1 +3250007 BEEP2 +~~~ +~~~ +~~~ +3250027 1024 33555456 +~~~ +3250177 1024 1024 +3254636 DOWN 11 +3254636 0 1024 +~~~ +~~~ +3254664 0 0 +~~~ +~~~ +3254666 0 1 +~~~ +~~~ +3254668 0 3 +~~~ +~~~ +3254669 0 7 +~~~ +~~~ +3254671 0 15 +~~~ +~~~ +3254673 0 31 +~~~ +~~~ +3254675 0 63 +~~~ +~~~ +3254677 0 127 +~~~ +~~~ +3254679 0 255 +3254680 homeCount = 22 +3254680 waitCount = 11 +3254681 ripCount = 7 +3254681 locktype1 = 2 +3254682 locktype2 = 2 +3254703 locktype3 = 1 +3254703 goalCount = 8 +3254704 goalTotal = 8 +3254704 otherCount = 8 +~~~ +3254705 CURRENTGOAL IS [5] +~~~ +3254706 UP 11 +3254706 1024 255 +3254903 DOWN 11 +3254903 0 255 +3254916 UP 11 +3254916 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3254954 homeCount = 22 +3254955 waitCount = 11 +3254955 ripCount = 7 +3254956 locktype1 = 2 +3254956 locktype2 = 2 +3254957 locktype3 = 1 +3254957 goalCount = 8 +3254957 goalTotal = 8 +3254958 otherCount = 8 +~~~ +3254959 CURRENTGOAL IS [5] +~~~ +3256704 DOWN 11 +3256704 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3256740 homeCount = 22 +3256741 waitCount = 11 +3256741 ripCount = 7 +3256742 locktype1 = 2 +3256742 locktype2 = 2 +3256743 locktype3 = 1 +3256743 goalCount = 8 +3256744 goalTotal = 8 +3256744 otherCount = 8 +~~~ +3256745 CURRENTGOAL IS [5] +~~~ +3256756 UP 11 +3256756 1024 255 +3256791 DOWN 11 +3256791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3256831 homeCount = 22 +3256832 waitCount = 11 +3256832 ripCount = 7 +3256833 locktype1 = 2 +3256833 locktype2 = 2 +3256834 locktype3 = 1 +3256834 goalCount = 8 +3256835 goalTotal = 8 +3256835 otherCount = 8 +~~~ +3256836 CURRENTGOAL IS [5] +~~~ +3256857 UP 11 +3256857 1024 255 +3259186 DOWN 11 +3259186 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3259222 homeCount = 22 +3259222 waitCount = 11 +3259223 ripCount = 7 +3259223 locktype1 = 2 +3259224 locktype2 = 2 +3259224 locktype3 = 1 +3259225 goalCount = 8 +3259225 goalTotal = 8 +3259226 otherCount = 8 +~~~ +3259227 CURRENTGOAL IS [5] +~~~ +3262562 UP 5 +3262562 16 255 +~~~ +~~~ +3262589 outer reward +~~~ +3262589 16 1048831 +~~~ +~~~ +3262710 DOWN 5 +3262710 0 1048831 +~~~ +~~~ +3262726 0 1048830 +~~~ +~~~ +3262728 0 1048828 +~~~ +~~~ +3262730 0 1048824 +~~~ +~~~ +3262732 0 1048816 +~~~ +~~~ +3262733 0 1048800 +~~~ +~~~ +3262735 0 1048768 +~~~ +~~~ +3262737 0 1048704 +~~~ +~~~ +3262739 0 1048576 +~~~ +~~~ +3262741 0 1049088 +3262742 homeCount = 22 +3262742 waitCount = 11 +3262743 ripCount = 7 +3262764 locktype1 = 2 +3262764 locktype2 = 2 +3262764 locktype3 = 1 +3262765 goalCount = 9 +3262765 goalTotal = 9 +3262766 otherCount = 8 +~~~ +3262801 16 1049088 +3263039 16 512 +3263359 DOWN 5 +3263359 0 512 +3263383 16 512 +3263493 DOWN 5 +3263493 0 512 +3263518 16 512 +3264398 DOWN 5 +3264398 0 512 +3264406 16 512 +3270249 DOWN 5 +3270249 0 512 +3270308 16 512 +3270360 DOWN 5 +3270360 0 512 +3273977 UP 10 +3273977 waslock = 0 +3273977 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3274003 512 16777728 +~~~ +3274153 512 512 +3274201 DOWN 10 +3274201 0 512 +~~~ +~~~ +3274227 0 2560 +~~~ +~~~ +3274229 0 2048 +3274230 homeCount = 23 +3274230 waitCount = 11 +3274231 ripCount = 7 +3274231 locktype1 = 2 +3274232 locktype2 = 2 +3274232 locktype3 = 1 +3274233 goalCount = 9 +3274233 goalTotal = 9 +3274234 otherCount = 8 +~~~ +3274240 UP 10 +3274240 waslock = 0 +3274240 512 2048 +~~~ +3278548 DOWN 10 +3278548 0 2048 +~~~ +~~~ +~~~ +~~~ +3278571 homeCount = 23 +3278571 waitCount = 11 +3278572 ripCount = 7 +3278572 locktype1 = 2 +3278572 locktype2 = 2 +3278573 locktype3 = 1 +3278573 goalCount = 9 +3278574 goalTotal = 9 +3278574 otherCount = 8 +~~~ +3280094 UP 12 +3280093 2048 2048 +3283094 CLICK1 +3283094 CLICK2 +~~~ +~~~ +~~~ +3283119 2048 67110912 +~~~ +3283269 2048 2048 +3287508 DOWN 12 +3287508 0 2048 +~~~ +~~~ +3287532 0 0 +~~~ +~~~ +3287534 0 1 +~~~ +~~~ +3287536 0 3 +~~~ +~~~ +3287538 0 7 +~~~ +~~~ +3287539 0 15 +~~~ +~~~ +3287541 0 31 +~~~ +~~~ +3287543 0 63 +~~~ +~~~ +3287545 0 127 +~~~ +~~~ +3287547 0 255 +3287548 homeCount = 23 +3287548 waitCount = 12 +3287549 ripCount = 7 +3287549 locktype1 = 2 +3287550 locktype2 = 2 +3287550 locktype3 = 1 +3287571 goalCount = 9 +3287572 goalTotal = 9 +3287572 otherCount = 8 +~~~ +3287573 CURRENTGOAL IS [5] +~~~ +3287592 UP 12 +3287592 2048 255 +3289873 DOWN 12 +3289873 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3289914 homeCount = 23 +3289914 waitCount = 12 +3289915 ripCount = 7 +3289915 locktype1 = 2 +3289916 locktype2 = 2 +3289916 locktype3 = 1 +3289917 goalCount = 9 +3289917 goalTotal = 9 +3289918 otherCount = 8 +~~~ +3289919 CURRENTGOAL IS [5] +~~~ +3289919 UP 12 +3289919 2048 255 +3289957 DOWN 12 +3289957 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3289993 homeCount = 23 +3289994 waitCount = 12 +3289994 ripCount = 7 +3289995 locktype1 = 2 +3289995 locktype2 = 2 +3289996 locktype3 = 1 +3289996 goalCount = 9 +3289997 goalTotal = 9 +3289997 otherCount = 8 +~~~ +3289998 CURRENTGOAL IS [5] +~~~ +3293507 UP 5 +3293507 16 255 +~~~ +~~~ +3293531 outer reward +~~~ +3293531 16 1048831 +~~~ +~~~ +3293536 outerreps = 12 +~~~ +~~~ +3293615 DOWN 5 +3293615 0 1048831 +~~~ +~~~ +3293637 0 1048830 +~~~ +~~~ +3293639 0 1048828 +~~~ +~~~ +3293641 0 1048824 +~~~ +~~~ +3293643 0 1048816 +~~~ +~~~ +3293645 0 1048800 +~~~ +~~~ +3293647 0 1048768 +~~~ +~~~ +3293648 0 1048704 +~~~ +~~~ +3293650 0 1048576 +~~~ +~~~ +3293652 0 1049088 +3293653 homeCount = 23 +3293654 waitCount = 12 +3293654 ripCount = 7 +3293675 locktype1 = 2 +3293675 locktype2 = 2 +3293676 locktype3 = 1 +3293676 goalCount = 0 +3293677 goalTotal = 10 +3293677 otherCount = 8 +~~~ +3293737 16 1049088 +3293981 16 512 +3294292 DOWN 5 +3294292 0 512 +3294316 16 512 +3294427 DOWN 5 +3294427 0 512 +3294455 16 512 +3294576 DOWN 5 +3294576 0 512 +3294585 16 512 +3300882 DOWN 5 +3300882 0 512 +3300930 16 512 +3300943 DOWN 5 +3300943 0 512 +3304714 UP 10 +3304714 waslock = 0 +3304714 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3304747 512 16777728 +~~~ +3304897 512 512 +3304898 DOWN 10 +3304898 0 512 +3304908 UP 10 +3304908 waslock = 0 +3304908 512 512 +~~~ +~~~ +3304923 512 1536 +~~~ +~~~ +3304925 512 1024 +3304926 homeCount = 24 +3304927 waitCount = 12 +3304927 ripCount = 7 +3304928 locktype1 = 2 +3304928 locktype2 = 2 +3304928 locktype3 = 1 +3304929 goalCount = 0 +3304929 goalTotal = 10 +3304930 otherCount = 8 +~~~ +~~~ +3308761 DOWN 10 +3308761 0 1024 +~~~ +~~~ +~~~ +~~~ +3308787 homeCount = 24 +3308788 waitCount = 12 +3308788 ripCount = 7 +3308789 locktype1 = 2 +3308789 locktype2 = 2 +3308790 locktype3 = 1 +3308790 goalCount = 0 +3308791 goalTotal = 10 +3308791 otherCount = 8 +~~~ +3308798 UP 10 +3308798 waslock = 0 +3308798 512 1024 +~~~ +3308860 DOWN 10 +3308860 0 1024 +~~~ +~~~ +~~~ +~~~ +3308885 homeCount = 24 +3308886 waitCount = 12 +3308886 ripCount = 7 +3308887 locktype1 = 2 +3308887 locktype2 = 2 +3308888 locktype3 = 1 +3308888 goalCount = 0 +3308889 goalTotal = 10 +3308889 otherCount = 8 +~~~ +3311076 UP 11 +3311076 1024 1024 +3313181 DOWN 11 +3313181 0 1024 +3313192 UP 11 +3313192 1024 1024 +3314077 BEEP1 +3314077 BEEP2 +~~~ +~~~ +~~~ +3314104 1024 33555456 +~~~ +3314254 1024 1024 +3318081 DOWN 11 +3318081 0 1024 +~~~ +3318103 UP 11 +3318103 1024 1024 +~~~ +~~~ +3318105 1024 0 +~~~ +~~~ +3318106 1024 1 +~~~ +3318107 1024 3 +~~~ +~~~ +3318109 1024 7 +~~~ +~~~ +3318111 1024 15 +~~~ +~~~ +3318113 1024 31 +~~~ +~~~ +3318114 1024 63 +~~~ +~~~ +3318116 1024 127 +~~~ +~~~ +3318118 1024 255 +3318119 homeCount = 24 +3318140 waitCount = 12 +3318141 ripCount = 8 +3318141 locktype1 = 2 +3318142 locktype2 = 2 +3318142 locktype3 = 1 +3318142 goalCount = 0 +3318143 goalTotal = 10 +3318143 otherCount = 8 +~~~ +3318144 CURRENTGOAL IS [4] +~~~ +3318210 DOWN 11 +3318210 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3318243 homeCount = 24 +3318243 waitCount = 12 +3318244 ripCount = 8 +3318244 locktype1 = 2 +3318245 locktype2 = 2 +3318245 locktype3 = 1 +3318246 goalCount = 0 +3318246 goalTotal = 10 +3318247 otherCount = 8 +~~~ +3318248 CURRENTGOAL IS [4] +~~~ +3318282 UP 11 +3318282 1024 255 +3320896 DOWN 11 +3320896 0 255 +3320908 UP 11 +3320907 1024 255 +3320920 DOWN 11 +3320920 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3320943 homeCount = 24 +3320944 waitCount = 12 +3320944 ripCount = 8 +3320945 locktype1 = 2 +3320945 locktype2 = 2 +3320946 locktype3 = 1 +3320946 goalCount = 0 +3320947 goalTotal = 10 +3320947 otherCount = 8 +~~~ +3320948 CURRENTGOAL IS [4] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3320976 homeCount = 24 +3320976 waitCount = 12 +3320977 ripCount = 8 +3320977 locktype1 = 2 +3320978 locktype2 = 2 +3320978 locktype3 = 1 +3320979 goalCount = 0 +3320979 goalTotal = 10 +3321000 otherCount = 8 +~~~ +3321001 CURRENTGOAL IS [4] +~~~ +3321002 UP 11 +3321002 1024 255 +3323162 DOWN 11 +3323162 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3323198 homeCount = 24 +3323198 waitCount = 12 +3323199 ripCount = 8 +3323199 locktype1 = 2 +3323200 locktype2 = 2 +3323200 locktype3 = 1 +3323201 goalCount = 0 +3323201 goalTotal = 10 +3323202 otherCount = 8 +~~~ +3323203 CURRENTGOAL IS [4] +~~~ +3326113 UP 5 +3326113 16 255 +~~~ +~~~ +3326327 DOWN 5 +3326327 0 255 +~~~ +~~~ +3326352 0 254 +~~~ +~~~ +3326354 0 252 +~~~ +~~~ +3326356 0 248 +~~~ +~~~ +3326358 0 240 +~~~ +~~~ +3326360 0 224 +~~~ +~~~ +3326361 0 192 +~~~ +~~~ +3326363 0 128 +~~~ +~~~ +3326365 0 0 +~~~ +~~~ +3326367 0 512 +3326368 homeCount = 24 +3326368 waitCount = 12 +3326369 ripCount = 8 +3326369 locktype1 = 2 +3326370 locktype2 = 2 +3326391 locktype3 = 1 +3326392 goalCount = 0 +3326392 goalTotal = 10 +3326392 otherCount = 9 +~~~ +3326393 16 512 +3327275 DOWN 5 +3327275 0 512 +3331483 UP 10 +3331483 waslock = 0 +3331483 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3331515 512 16777728 +~~~ +3331628 DOWN 10 +3331628 0 16777728 +~~~ +~~~ +3331648 0 16779776 +~~~ +~~~ +3331650 0 16779264 +3331651 homeCount = 25 +3331652 waitCount = 12 +3331652 ripCount = 8 +3331653 locktype1 = 2 +3331653 locktype2 = 2 +3331654 locktype3 = 1 +3331654 goalCount = 0 +3331655 goalTotal = 10 +3331655 otherCount = 9 +~~~ +3331676 0 2048 +3331678 UP 10 +3331678 waslock = 0 +3331678 512 2048 +~~~ +3335072 DOWN 10 +3335072 0 2048 +~~~ +~~~ +~~~ +~~~ +3335101 homeCount = 25 +3335102 waitCount = 12 +3335102 ripCount = 8 +3335103 locktype1 = 2 +3335103 locktype2 = 2 +3335104 locktype3 = 1 +3335104 goalCount = 0 +3335105 goalTotal = 10 +3335105 otherCount = 9 +~~~ +3335111 UP 10 +3335111 waslock = 0 +3335111 512 2048 +~~~ +3335173 DOWN 10 +3335173 0 2048 +~~~ +~~~ +~~~ +~~~ +3335201 homeCount = 25 +3335201 waitCount = 12 +3335202 ripCount = 8 +3335202 locktype1 = 2 +3335202 locktype2 = 2 +3335203 locktype3 = 1 +3335203 goalCount = 0 +3335204 goalTotal = 10 +3335204 otherCount = 9 +~~~ +3337393 UP 12 +3337393 2048 2048 +3338245 DOWN 12 +3338245 0 2048 +3338263 UP 12 +3338263 2048 2048 +3338315 DOWN 12 +3338315 0 2048 +3338351 UP 12 +3338351 2048 2048 +3341498 DOWN 12 +3341498 0 2048 +3341509 UP 12 +3341509 2048 2048 +3343393 CLICK1 +3343393 CLICK2 +~~~ +~~~ +~~~ +3343422 2048 67110912 +~~~ +3343572 2048 2048 +3347572 DOWN 12 +3347572 0 2048 +~~~ +~~~ +3347598 0 0 +~~~ +~~~ +3347599 0 1 +~~~ +~~~ +3347601 0 3 +~~~ +~~~ +3347603 0 7 +~~~ +~~~ +3347605 0 15 +~~~ +~~~ +3347607 0 31 +~~~ +~~~ +3347608 0 63 +~~~ +~~~ +3347610 0 127 +~~~ +~~~ +3347612 0 255 +3347613 homeCount = 25 +3347614 waitCount = 13 +3347614 ripCount = 8 +3347615 locktype1 = 2 +3347615 locktype2 = 2 +3347616 locktype3 = 1 +3347636 goalCount = 0 +3347637 goalTotal = 10 +3347637 otherCount = 9 +~~~ +3347638 CURRENTGOAL IS [4] +~~~ +3353871 UP 1 +3353871 1 255 +~~~ +~~~ +3355979 DOWN 1 +3355979 0 255 +~~~ +~~~ +3355998 0 254 +~~~ +~~~ +3355999 0 252 +~~~ +~~~ +3356001 0 248 +~~~ +~~~ +3356003 0 240 +~~~ +~~~ +3356005 0 224 +~~~ +~~~ +3356007 0 192 +~~~ +~~~ +3356008 0 128 +~~~ +~~~ +3356010 0 0 +~~~ +~~~ +3356012 0 512 +3356013 homeCount = 25 +3356014 waitCount = 13 +3356014 ripCount = 8 +3356015 locktype1 = 2 +3356015 locktype2 = 2 +3356036 locktype3 = 1 +3356037 goalCount = 0 +3356037 goalTotal = 10 +3356038 otherCount = 10 +~~~ +3356051 1 512 +3356113 DOWN 1 +3356113 0 512 +3364545 UP 10 +3364546 waslock = 0 +3364545 512 512 +3364564 DOWN 10 +3364564 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3364574 0 16777728 +~~~ +3364586 UP 10 +3364587 waslock = 0 +3364586 512 16777728 +~~~ +~~~ +3364589 512 16779776 +~~~ +~~~ +3364591 512 16779264 +3364592 homeCount = 26 +3364592 waitCount = 13 +3364593 ripCount = 8 +3364593 locktype1 = 2 +3364594 locktype2 = 2 +3364594 locktype3 = 1 +3364595 goalCount = 0 +3364616 goalTotal = 10 +3364616 otherCount = 10 +~~~ +~~~ +3364724 512 2048 +3364785 DOWN 10 +3364785 0 2048 +~~~ +~~~ +~~~ +~~~ +3364814 homeCount = 26 +3364815 waitCount = 13 +3364815 ripCount = 8 +3364816 locktype1 = 2 +3364816 locktype2 = 2 +3364817 locktype3 = 1 +3364817 goalCount = 0 +3364818 goalTotal = 10 +3364818 otherCount = 10 +~~~ +3364820 UP 10 +3364821 waslock = 0 +3364820 512 2048 +~~~ +3369000 DOWN 10 +3369000 0 2048 +~~~ +~~~ +~~~ +~~~ +3369021 homeCount = 26 +3369021 waitCount = 13 +3369022 ripCount = 8 +3369022 locktype1 = 2 +3369023 locktype2 = 2 +3369023 locktype3 = 1 +3369024 goalCount = 0 +3369024 goalTotal = 10 +3369025 otherCount = 10 +~~~ +3371473 UP 12 +3371473 2048 2048 +3371491 DOWN 12 +3371491 0 2048 +3371539 UP 12 +3371539 2048 2048 +3372597 DOWN 12 +3372597 0 2048 +3372605 UP 12 +3372605 2048 2048 +3372635 DOWN 12 +3372635 0 2048 +3372713 UP 12 +3372713 2048 2048 +3374473 CLICK1 +3374473 CLICK2 +~~~ +~~~ +~~~ +3374502 2048 67110912 +~~~ +3374652 2048 2048 +3379419 DOWN 12 +3379419 0 2048 +~~~ +~~~ +3379439 0 0 +~~~ +~~~ +3379441 0 1 +~~~ +3379442 UP 12 +3379442 2048 1 +~~~ +~~~ +3379444 2048 3 +~~~ +~~~ +3379446 2048 7 +~~~ +3379447 2048 15 +~~~ +~~~ +3379448 2048 31 +~~~ +~~~ +3379450 2048 63 +~~~ +~~~ +3379452 2048 127 +~~~ +~~~ +3379454 2048 255 +3379455 homeCount = 26 +3379455 waitCount = 14 +3379476 ripCount = 8 +3379477 locktype1 = 2 +3379477 locktype2 = 2 +3379478 locktype3 = 1 +3379478 goalCount = 0 +3379479 goalTotal = 10 +3379479 otherCount = 10 +~~~ +3379480 CURRENTGOAL IS [4] +~~~ +3379501 DOWN 12 +3379501 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3379536 homeCount = 26 +3379537 waitCount = 14 +3379537 ripCount = 8 +3379538 locktype1 = 2 +3379538 locktype2 = 2 +3379539 locktype3 = 1 +3379539 goalCount = 0 +3379540 goalTotal = 10 +3379540 otherCount = 10 +~~~ +3379541 CURRENTGOAL IS [4] +~~~ +3382877 UP 5 +3382877 16 255 +~~~ +~~~ +3383277 DOWN 5 +3383277 0 255 +~~~ +~~~ +3383303 0 254 +~~~ +~~~ +3383305 0 252 +~~~ +~~~ +3383307 0 248 +~~~ +~~~ +3383309 0 240 +~~~ +~~~ +3383311 0 224 +~~~ +~~~ +3383312 0 192 +~~~ +~~~ +3383314 0 128 +~~~ +~~~ +3383316 0 0 +~~~ +~~~ +3383318 0 512 +3383319 homeCount = 26 +3383319 waitCount = 14 +3383320 ripCount = 8 +3383320 locktype1 = 2 +3383321 locktype2 = 2 +3383342 locktype3 = 1 +3383342 goalCount = 0 +3383343 goalTotal = 10 +3383343 otherCount = 11 +~~~ +3383433 16 512 +3383515 DOWN 5 +3383515 0 512 +3386814 UP 10 +3386815 waslock = 0 +3386814 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3386842 512 16777728 +~~~ +3386992 512 512 +3387046 DOWN 10 +3387046 0 512 +~~~ +~~~ +3387067 0 1536 +~~~ +~~~ +3387069 0 1024 +3387070 homeCount = 27 +3387070 waitCount = 14 +3387071 ripCount = 8 +3387071 locktype1 = 2 +3387072 locktype2 = 2 +3387072 locktype3 = 1 +3387073 goalCount = 0 +3387073 goalTotal = 10 +3387074 otherCount = 11 +~~~ +3387074 UP 10 +3387095 waslock = 0 +3387074 512 1024 +~~~ +3390332 DOWN 10 +3390332 0 1024 +~~~ +~~~ +~~~ +~~~ +3390354 homeCount = 27 +3390354 waitCount = 14 +3390355 ripCount = 8 +3390355 locktype1 = 2 +3390356 locktype2 = 2 +3390356 locktype3 = 1 +3390357 goalCount = 0 +3390357 goalTotal = 10 +3390358 otherCount = 11 +~~~ +3390364 UP 10 +3390364 waslock = 0 +3390363 512 1024 +~~~ +3390422 DOWN 10 +3390422 0 1024 +~~~ +~~~ +~~~ +~~~ +3390446 homeCount = 27 +3390446 waitCount = 14 +3390447 ripCount = 8 +3390447 locktype1 = 2 +3390448 locktype2 = 2 +3390448 locktype3 = 1 +3390449 goalCount = 0 +3390449 goalTotal = 10 +3390450 otherCount = 11 +~~~ +3392373 UP 11 +3392373 1024 1024 +3394624 BEEP1 +3394624 BEEP2 +~~~ +~~~ +~~~ +3394644 1024 33555456 +~~~ +3394794 1024 1024 +3402282 DOWN 11 +3402282 0 1024 +~~~ +~~~ +3402303 0 0 +~~~ +~~~ +3402305 0 1 +~~~ +~~~ +3402307 0 3 +~~~ +~~~ +3402308 0 7 +~~~ +~~~ +3402310 0 15 +~~~ +~~~ +3402312 0 31 +~~~ +~~~ +3402314 0 63 +~~~ +~~~ +3402316 0 127 +~~~ +~~~ +3402317 0 255 +3402318 homeCount = 27 +3402319 waitCount = 14 +3402319 ripCount = 9 +3402320 locktype1 = 2 +3402320 locktype2 = 2 +3402321 locktype3 = 1 +3402342 goalCount = 0 +3402342 goalTotal = 10 +3402343 otherCount = 11 +~~~ +3402344 CURRENTGOAL IS [4] +~~~ +3405003 UP 8 +3405003 128 255 +~~~ +~~~ +3405483 DOWN 8 +3405483 0 255 +3405500 128 255 +~~~ +~~~ +3405509 128 254 +~~~ +~~~ +3405511 128 252 +~~~ +~~~ +3405513 128 248 +~~~ +~~~ +3405515 128 240 +~~~ +~~~ +3405517 128 224 +~~~ +~~~ +3405518 128 192 +~~~ +~~~ +3405520 128 128 +~~~ +~~~ +3405522 128 0 +~~~ +~~~ +3405524 128 512 +3405525 homeCount = 27 +3405526 waitCount = 14 +3405526 ripCount = 9 +3405526 locktype1 = 2 +3405547 locktype2 = 2 +3405548 locktype3 = 1 +3405548 goalCount = 0 +3405549 goalTotal = 10 +3405549 otherCount = 12 +~~~ +3405550 DOWN 8 +3405550 0 512 +3405554 128 512 +3405618 DOWN 8 +3405618 0 512 +3405768 128 512 +3406173 DOWN 8 +3406173 0 512 +3406190 128 512 +3406488 DOWN 8 +3406488 0 512 +3412401 UP 10 +3412402 waslock = 0 +3412401 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3412426 512 16777728 +~~~ +3412576 512 512 +3417283 DOWN 10 +3417283 0 512 +~~~ +~~~ +3417301 0 1536 +~~~ +~~~ +3417303 0 1024 +3417304 homeCount = 28 +3417305 waitCount = 14 +3417305 ripCount = 9 +3417306 locktype1 = 2 +3417306 locktype2 = 2 +3417306 locktype3 = 1 +3417307 goalCount = 0 +3417307 goalTotal = 10 +3417308 otherCount = 12 +~~~ +3417314 UP 10 +3417314 waslock = 0 +3417314 512 1024 +~~~ +3417369 DOWN 10 +3417369 0 1024 +~~~ +~~~ +~~~ +~~~ +3417395 homeCount = 28 +3417395 waitCount = 14 +3417396 ripCount = 9 +3417396 locktype1 = 2 +3417397 locktype2 = 2 +3417397 locktype3 = 1 +3417398 goalCount = 0 +3417398 goalTotal = 10 +3417398 otherCount = 12 +~~~ +3418917 UP 11 +3418917 1024 1024 +3421167 BEEP1 +3421167 BEEP2 +~~~ +~~~ +~~~ +3421193 1024 33555456 +~~~ +3421343 1024 1024 +3426415 DOWN 11 +3426415 0 1024 +~~~ +~~~ +3426441 0 0 +~~~ +3426442 UP 11 +3426442 1024 0 +~~~ +~~~ +3426444 1024 1 +~~~ +~~~ +3426446 1024 3 +~~~ +3426447 1024 7 +~~~ +~~~ +3426448 1024 15 +~~~ +~~~ +3426450 1024 31 +~~~ +~~~ +3426452 1024 63 +~~~ +~~~ +3426453 1024 127 +~~~ +~~~ +3426455 1024 255 +3426456 homeCount = 28 +3426478 waitCount = 14 +3426478 ripCount = 10 +3426478 locktype1 = 2 +3426479 locktype2 = 2 +3426479 locktype3 = 1 +3426480 goalCount = 0 +3426480 goalTotal = 10 +3426481 otherCount = 12 +~~~ +3426482 CURRENTGOAL IS [4] +~~~ +3426484 DOWN 11 +3426484 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3426535 UP 11 +3426535 1024 255 +~~~ +~~~ +~~~ +~~~ +3426539 homeCount = 28 +3426540 waitCount = 14 +3426540 ripCount = 10 +3426541 locktype1 = 2 +3426541 locktype2 = 2 +3426542 locktype3 = 1 +3426542 goalCount = 0 +3426543 goalTotal = 10 +3426543 otherCount = 12 +~~~ +3426544 CURRENTGOAL IS [4] +~~~ +3428785 DOWN 11 +3428785 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3428822 homeCount = 28 +3428823 waitCount = 14 +3428823 ripCount = 10 +3428824 locktype1 = 2 +3428824 locktype2 = 2 +3428825 locktype3 = 1 +3428825 goalCount = 0 +3428826 goalTotal = 10 +3428826 otherCount = 12 +~~~ +3428827 CURRENTGOAL IS [4] +~~~ +3431457 UP 6 +3431457 32 255 +~~~ +~~~ +3433724 DOWN 6 +3433724 0 255 +~~~ +~~~ +3433746 0 254 +~~~ +~~~ +3433747 0 252 +~~~ +~~~ +3433749 0 248 +~~~ +~~~ +3433751 0 240 +~~~ +~~~ +3433753 0 224 +~~~ +~~~ +3433755 0 192 +~~~ +~~~ +3433757 0 128 +~~~ +~~~ +3433758 0 0 +~~~ +~~~ +3433760 0 512 +3433761 homeCount = 28 +3433762 waitCount = 14 +3433762 ripCount = 10 +3433763 locktype1 = 2 +3433763 locktype2 = 2 +3433784 locktype3 = 1 +3433785 goalCount = 0 +3433785 goalTotal = 10 +3433786 otherCount = 13 +~~~ +3433786 32 512 +3433787 DOWN 6 +3433787 0 512 +3437391 UP 10 +3437392 waslock = 0 +3437391 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3437423 512 16777728 +~~~ +3437573 512 512 +3439941 DOWN 10 +3439941 0 512 +~~~ +~~~ +3439966 0 1536 +~~~ +~~~ +3439968 0 1024 +3439969 homeCount = 29 +3439969 waitCount = 14 +3439970 ripCount = 10 +3439970 locktype1 = 2 +3439971 locktype2 = 2 +3439971 locktype3 = 1 +3439971 goalCount = 0 +3439972 goalTotal = 10 +3439972 otherCount = 13 +~~~ +3440045 UP 10 +3440045 waslock = 0 +3440045 512 1024 +~~~ +3443900 DOWN 10 +3443900 0 1024 +~~~ +~~~ +~~~ +~~~ +3443928 homeCount = 29 +3443929 waitCount = 14 +3443929 ripCount = 10 +3443930 locktype1 = 2 +3443930 locktype2 = 2 +3443931 locktype3 = 1 +3443931 goalCount = 0 +3443932 goalTotal = 10 +3443932 otherCount = 13 +~~~ +3443937 UP 10 +3443938 waslock = 0 +3443937 512 1024 +~~~ +3444010 DOWN 10 +3444010 0 1024 +~~~ +~~~ +~~~ +~~~ +3444047 homeCount = 29 +3444048 waitCount = 14 +3444048 ripCount = 10 +3444049 locktype1 = 2 +3444049 locktype2 = 2 +3444050 locktype3 = 1 +3444050 goalCount = 0 +3444051 goalTotal = 10 +3444051 otherCount = 13 +~~~ +3447480 UP 11 +3447480 1024 1024 +3449428 DOWN 11 +3449428 0 1024 +3449534 UP 11 +3449534 1024 1024 +3450480 BEEP1 +3450480 BEEP2 +~~~ +~~~ +~~~ +3450499 1024 33555456 +~~~ +3450520 DOWN 11 +3450520 0 33555456 +3450539 UP 11 +3450539 1024 33555456 +3450649 1024 1024 +3450808 DOWN 11 +3450808 0 1024 +3450838 UP 11 +3450838 1024 1024 +~~~ +~~~ +3451150 1024 0 +~~~ +~~~ +3451152 1024 1 +~~~ +~~~ +3451154 1024 3 +~~~ +~~~ +3451156 1024 7 +~~~ +~~~ +3451158 1024 15 +~~~ +~~~ +3451160 1024 31 +~~~ +~~~ +3451161 1024 63 +~~~ +~~~ +3451163 1024 127 +~~~ +~~~ +3451165 1024 255 +3451166 homeCount = 29 +3451167 waitCount = 14 +3451167 ripCount = 11 +3451168 locktype1 = 2 +3451188 locktype2 = 2 +3451189 locktype3 = 1 +3451189 goalCount = 0 +3451190 goalTotal = 10 +3451190 otherCount = 13 +~~~ +3451191 CURRENTGOAL IS [4] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3451219 homeCount = 29 +3451219 waitCount = 14 +3451220 ripCount = 11 +3451220 locktype1 = 2 +3451221 locktype2 = 2 +3451221 locktype3 = 1 +3451222 goalCount = 0 +3451222 goalTotal = 10 +3451223 otherCount = 13 +~~~ +3451224 CURRENTGOAL IS [4] +~~~ +3455069 DOWN 11 +3455069 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3455110 homeCount = 29 +3455111 waitCount = 14 +3455111 ripCount = 11 +3455112 locktype1 = 2 +3455112 locktype2 = 2 +3455113 locktype3 = 1 +3455113 goalCount = 0 +3455113 goalTotal = 10 +3455114 otherCount = 13 +~~~ +3455115 CURRENTGOAL IS [4] +~~~ +3455116 UP 11 +3455115 1024 255 +3455168 DOWN 11 +3455168 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3455204 homeCount = 29 +3455205 waitCount = 14 +3455205 ripCount = 11 +3455206 locktype1 = 2 +3455206 locktype2 = 2 +3455207 locktype3 = 1 +3455207 goalCount = 0 +3455208 goalTotal = 10 +3455208 otherCount = 13 +~~~ +3455209 CURRENTGOAL IS [4] +~~~ +3467183 UP 5 +3467183 16 255 +~~~ +~~~ +3467241 DOWN 5 +3467241 0 255 +3467259 16 255 +~~~ +~~~ +3467270 16 254 +~~~ +~~~ +3467271 16 252 +~~~ +~~~ +3467273 16 248 +~~~ +~~~ +3467275 16 240 +~~~ +~~~ +3467277 16 224 +~~~ +~~~ +3467279 16 192 +~~~ +~~~ +3467281 16 128 +~~~ +~~~ +3467282 16 0 +~~~ +~~~ +3467284 16 512 +3467285 homeCount = 29 +3467286 waitCount = 14 +3467286 ripCount = 11 +3467287 locktype1 = 2 +3467308 locktype2 = 2 +3467308 locktype3 = 1 +3467309 goalCount = 0 +3467309 goalTotal = 10 +3467310 otherCount = 14 +~~~ +3467494 DOWN 5 +3467494 0 512 +3470785 UP 10 +3470785 waslock = 0 +3470785 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3470815 512 16777728 +~~~ +3470959 DOWN 10 +3470959 0 16777728 +3470965 0 512 +3470971 UP 10 +3470971 waslock = 0 +3470971 512 512 +~~~ +~~~ +3470990 512 1536 +~~~ +~~~ +3470992 512 1024 +3470993 homeCount = 30 +3470994 waitCount = 14 +3470994 ripCount = 11 +3470995 locktype1 = 2 +3470995 locktype2 = 2 +3470996 locktype3 = 1 +3470996 goalCount = 0 +3470997 goalTotal = 10 +3470997 otherCount = 14 +~~~ +~~~ +3471019 DOWN 10 +3471019 0 1024 +~~~ +~~~ +~~~ +~~~ +3471035 homeCount = 30 +3471036 waitCount = 14 +3471036 ripCount = 11 +3471037 locktype1 = 2 +3471037 locktype2 = 2 +3471038 locktype3 = 1 +3471038 goalCount = 0 +3471039 goalTotal = 10 +3471039 otherCount = 14 +~~~ +3471096 UP 10 +3471097 waslock = 0 +3471096 512 1024 +~~~ +3474249 DOWN 10 +3474249 0 1024 +~~~ +~~~ +~~~ +~~~ +3474271 homeCount = 30 +3474271 waitCount = 14 +3474272 ripCount = 11 +3474272 locktype1 = 2 +3474273 locktype2 = 2 +3474273 locktype3 = 1 +3474274 goalCount = 0 +3474274 goalTotal = 10 +3474275 otherCount = 14 +~~~ +3474308 UP 10 +3474308 waslock = 0 +3474307 512 1024 +3474331 DOWN 10 +3474331 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +3474354 homeCount = 30 +3474354 waitCount = 14 +3474355 ripCount = 11 +3474355 locktype1 = 2 +3474356 locktype2 = 2 +3474356 locktype3 = 1 +3474356 goalCount = 0 +3474357 goalTotal = 10 +3474357 otherCount = 14 +~~~ +3476396 UP 11 +3476396 1024 1024 +3476414 DOWN 11 +3476414 0 1024 +3476440 UP 11 +3476440 1024 1024 +3477699 DOWN 11 +3477699 0 1024 +3477756 UP 11 +3477756 1024 1024 +3482397 BEEP1 +3482397 BEEP2 +~~~ +~~~ +~~~ +3482421 1024 33555456 +~~~ +3482571 1024 1024 +3487234 DOWN 11 +3487234 0 1024 +~~~ +~~~ +3487260 0 0 +~~~ +~~~ +3487261 0 1 +~~~ +~~~ +3487263 0 3 +~~~ +~~~ +3487265 0 7 +~~~ +~~~ +3487267 0 15 +~~~ +~~~ +3487269 0 31 +~~~ +~~~ +3487271 0 63 +~~~ +~~~ +3487272 0 127 +~~~ +~~~ +3487274 0 255 +3487275 homeCount = 30 +3487276 waitCount = 14 +3487276 ripCount = 12 +3487277 locktype1 = 2 +3487277 locktype2 = 2 +3487278 locktype3 = 1 +3487299 goalCount = 0 +3487299 goalTotal = 10 +3487299 otherCount = 14 +~~~ +3487301 CURRENTGOAL IS [4] +~~~ +3492075 UP 3 +3492075 4 255 +~~~ +~~~ +3493640 DOWN 3 +3493640 0 255 +~~~ +~~~ +3493660 0 254 +~~~ +~~~ +3493662 0 252 +~~~ +~~~ +3493664 0 248 +~~~ +~~~ +3493666 0 240 +~~~ +~~~ +3493668 0 224 +~~~ +~~~ +3493669 0 192 +~~~ +~~~ +3493671 0 128 +~~~ +~~~ +3493673 0 0 +~~~ +~~~ +3493675 0 512 +3493676 homeCount = 30 +3493676 waitCount = 14 +3493677 ripCount = 12 +3493677 locktype1 = 2 +3493678 locktype2 = 2 +3493699 locktype3 = 1 +3493699 goalCount = 0 +3493700 goalTotal = 10 +3493700 otherCount = 15 +~~~ +3496771 UP 10 +3496771 waslock = 0 +3496771 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3496799 512 16777728 +~~~ +3496949 512 512 +3496960 DOWN 10 +3496959 0 512 +~~~ +~~~ +3496976 0 2560 +~~~ +~~~ +3496978 0 2048 +3496979 homeCount = 31 +3496980 waitCount = 14 +3496980 ripCount = 12 +3496981 locktype1 = 2 +3496981 locktype2 = 2 +3496982 locktype3 = 1 +3496982 goalCount = 0 +3496983 goalTotal = 10 +3496983 otherCount = 15 +~~~ +3496994 UP 10 +3496994 waslock = 0 +3496994 512 2048 +~~~ +3500863 DOWN 10 +3500863 0 2048 +~~~ +~~~ +~~~ +~~~ +3500884 homeCount = 31 +3500884 waitCount = 14 +3500885 ripCount = 12 +3500885 locktype1 = 2 +3500886 locktype2 = 2 +3500886 locktype3 = 1 +3500887 goalCount = 0 +3500887 goalTotal = 10 +3500888 otherCount = 15 +~~~ +3502510 UP 12 +3502510 2048 2048 +3503845 DOWN 12 +3503845 0 2048 +3503872 UP 12 +3503872 2048 2048 +3508139 DOWN 12 +3508139 0 2048 +3508145 UP 12 +3508145 2048 2048 +3508156 DOWN 12 +3508156 0 2048 +3508173 UP 12 +3508173 2048 2048 +3508510 CLICK1 +3508510 CLICK2 +~~~ +~~~ +~~~ +3508533 2048 67110912 +~~~ +3508683 2048 2048 +3515792 DOWN 12 +3515792 0 2048 +~~~ +~~~ +3515814 0 0 +~~~ +~~~ +3515816 0 1 +~~~ +~~~ +3515818 0 3 +~~~ +~~~ +3515820 0 7 +~~~ +~~~ +3515821 0 15 +~~~ +~~~ +3515823 0 31 +~~~ +~~~ +3515825 0 63 +~~~ +~~~ +3515827 0 127 +~~~ +~~~ +3515829 0 255 +3515830 homeCount = 31 +3515830 waitCount = 15 +3515831 ripCount = 12 +3515831 locktype1 = 2 +3515832 locktype2 = 2 +3515853 locktype3 = 1 +3515853 goalCount = 0 +3515854 goalTotal = 10 +3515854 otherCount = 15 +~~~ +3515855 CURRENTGOAL IS [4] +~~~ +3521707 UP 8 +3521707 128 255 +~~~ +~~~ +3522495 DOWN 8 +3522494 0 255 +~~~ +~~~ +3522516 0 254 +~~~ +~~~ +3522517 0 252 +~~~ +~~~ +3522519 0 248 +~~~ +~~~ +3522521 0 240 +~~~ +~~~ +3522523 0 224 +~~~ +~~~ +3522525 0 192 +~~~ +~~~ +3522526 0 128 +~~~ +~~~ +3522528 0 0 +~~~ +~~~ +3522530 0 512 +3522531 homeCount = 31 +3522532 waitCount = 15 +3522532 ripCount = 12 +3522533 locktype1 = 2 +3522533 locktype2 = 2 +3522554 locktype3 = 1 +3522554 goalCount = 0 +3522555 goalTotal = 10 +3522555 otherCount = 16 +~~~ +3528013 UP 10 +3528013 waslock = 0 +3528013 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3528040 512 16777728 +~~~ +3528190 512 512 +3532039 DOWN 10 +3532039 0 512 +3532051 UP 10 +3532051 waslock = 0 +3532051 512 512 +~~~ +~~~ +3532064 512 2560 +~~~ +~~~ +3532066 512 2048 +3532067 homeCount = 32 +3532068 waitCount = 15 +3532068 ripCount = 12 +3532069 locktype1 = 2 +3532069 locktype2 = 2 +3532070 locktype3 = 1 +3532070 goalCount = 0 +3532071 goalTotal = 10 +3532071 otherCount = 16 +~~~ +~~~ +3532129 DOWN 10 +3532129 0 2048 +~~~ +~~~ +~~~ +~~~ +3532159 homeCount = 32 +3532159 waitCount = 15 +3532160 ripCount = 12 +3532160 locktype1 = 2 +3532161 locktype2 = 2 +3532161 locktype3 = 1 +3532162 goalCount = 0 +3532162 goalTotal = 10 +3532163 otherCount = 16 +~~~ +3533716 UP 12 +3533716 2048 2048 +3535140 DOWN 12 +3535140 0 2048 +3535175 UP 12 +3535175 2048 2048 +3535301 DOWN 12 +3535301 0 2048 +3535317 UP 12 +3535317 2048 2048 +3540716 CLICK1 +3540716 CLICK2 +~~~ +~~~ +~~~ +3540738 2048 67110912 +~~~ +3540888 2048 2048 +3547369 DOWN 12 +3547369 0 2048 +~~~ +~~~ +3547388 0 0 +~~~ +~~~ +3547390 0 1 +~~~ +~~~ +3547391 0 3 +~~~ +~~~ +3547393 0 7 +~~~ +~~~ +3547395 0 15 +~~~ +~~~ +3547397 0 31 +~~~ +~~~ +3547399 0 63 +~~~ +~~~ +3547401 0 127 +~~~ +~~~ +3547402 0 255 +3547403 homeCount = 32 +3547404 waitCount = 16 +3547404 ripCount = 12 +3547405 locktype1 = 2 +3547405 locktype2 = 2 +3547427 locktype3 = 1 +3547427 goalCount = 0 +3547428 goalTotal = 10 +3547428 otherCount = 16 +~~~ +3547429 CURRENTGOAL IS [4] +~~~ +3561111 UP 10 +3561112 waslock = 0 +3561111 512 255 +~~~ +3561132 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3561140 512 254 +~~~ +~~~ +3561142 512 252 +~~~ +~~~ +3561143 512 248 +~~~ +~~~ +3561145 512 240 +~~~ +~~~ +3561147 512 224 +~~~ +~~~ +3561149 512 192 +~~~ +~~~ +3561151 512 128 +~~~ +~~~ +3561152 512 0 +~~~ +~~~ +~~~ +3561157 0 0 +3561238 512 0 +3562992 0 0 +3564933 UP 11 +3564933 1024 0 +3565541 DOWN 11 +3565541 0 0 +3565809 UP 11 +3565809 1024 0 +3566154 DOWN 11 +3566154 0 0 +3576441 512 0 +3576538 0 0 +3582894 512 0 +3583443 0 0 +3583733 512 0 +3584225 0 0 +3584278 512 0 +3584343 0 0 +3584390 512 0 +3585280 0 0 +3585494 512 0 +3585871 0 0 +3586132 LOCKEND +~~~ +~~~ +~~~ +3586153 0 512 +3586897 UP 10 +3586897 waslock = 0 +3586897 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3586928 512 16777728 +~~~ +3587078 512 512 +3590979 DOWN 10 +3590979 0 512 +3590998 UP 10 +3590999 waslock = 0 +3590998 512 512 +~~~ +~~~ +3591002 512 1536 +~~~ +~~~ +3591004 512 1024 +3591005 homeCount = 33 +3591005 waitCount = 16 +3591006 ripCount = 12 +3591006 locktype1 = 2 +3591007 locktype2 = 3 +3591007 locktype3 = 1 +3591008 goalCount = 0 +3591008 goalTotal = 10 +3591009 otherCount = 16 +~~~ +~~~ +3591090 DOWN 10 +3591090 0 1024 +~~~ +~~~ +~~~ +~~~ +3591121 homeCount = 33 +3591121 waitCount = 16 +3591122 ripCount = 12 +3591122 locktype1 = 2 +3591123 locktype2 = 3 +3591123 locktype3 = 1 +3591124 goalCount = 0 +3591124 goalTotal = 10 +3591125 otherCount = 16 +~~~ +3591146 UP 10 +3591147 waslock = 0 +3591146 512 1024 +~~~ +3591191 DOWN 10 +3591191 0 1024 +~~~ +~~~ +~~~ +~~~ +3591219 homeCount = 33 +3591219 waitCount = 16 +3591220 ripCount = 12 +3591220 locktype1 = 2 +3591221 locktype2 = 3 +3591221 locktype3 = 1 +3591222 goalCount = 0 +3591222 goalTotal = 10 +3591223 otherCount = 16 +~~~ +3593272 UP 11 +3593272 1024 1024 +3593859 DOWN 11 +3593859 0 1024 +3593918 UP 11 +3593918 1024 1024 +3593945 DOWN 11 +3593945 0 1024 +3593960 UP 11 +3593960 1024 1024 +3594765 DOWN 11 +3594765 0 1024 +3594779 UP 11 +3594779 1024 1024 +3598015 DOWN 11 +3598015 0 1024 +3598034 UP 11 +3598034 1024 1024 +3600272 BEEP1 +3600272 BEEP2 +~~~ +~~~ +~~~ +3600296 1024 33555456 +~~~ +3600445 1024 1024 +3604781 DOWN 11 +3604781 0 1024 +3604791 UP 11 +3604791 1024 1024 +~~~ +~~~ +3604804 1024 0 +~~~ +~~~ +3604806 1024 1 +~~~ +~~~ +3604808 1024 3 +~~~ +~~~ +3604809 1024 7 +~~~ +~~~ +3604811 1024 15 +~~~ +~~~ +3604813 1024 31 +~~~ +~~~ +3604815 1024 63 +~~~ +~~~ +3604817 1024 127 +~~~ +~~~ +3604818 1024 255 +3604819 homeCount = 33 +3604820 waitCount = 16 +3604821 ripCount = 13 +3604821 locktype1 = 2 +3604842 locktype2 = 3 +3604843 locktype3 = 1 +3604843 goalCount = 0 +3604844 goalTotal = 10 +3604844 otherCount = 16 +~~~ +3604845 CURRENTGOAL IS [4] +~~~ +3604903 DOWN 11 +3604903 0 255 +3604925 UP 11 +3604925 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3604942 homeCount = 33 +3604943 waitCount = 16 +3604943 ripCount = 13 +3604944 locktype1 = 2 +3604944 locktype2 = 3 +3604945 locktype3 = 1 +3604945 goalCount = 0 +3604946 goalTotal = 10 +3604946 otherCount = 16 +~~~ +3604947 CURRENTGOAL IS [4] +~~~ +3605028 DOWN 11 +3605028 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3605064 homeCount = 33 +3605064 waitCount = 16 +3605065 ripCount = 13 +3605065 locktype1 = 2 +3605066 locktype2 = 3 +3605066 locktype3 = 1 +3605067 goalCount = 0 +3605067 goalTotal = 10 +3605068 otherCount = 16 +~~~ +3605069 CURRENTGOAL IS [4] +~~~ +3605092 UP 11 +3605092 1024 255 +3608325 DOWN 11 +3608325 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3608364 homeCount = 33 +3608364 waitCount = 16 +3608365 ripCount = 13 +3608365 locktype1 = 2 +3608366 locktype2 = 3 +3608366 locktype3 = 1 +3608367 goalCount = 0 +3608367 goalTotal = 10 +3608368 otherCount = 16 +~~~ +3608369 CURRENTGOAL IS [4] +~~~ +3608378 UP 11 +3608378 1024 255 +3608425 DOWN 11 +3608425 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3608464 homeCount = 33 +3608465 waitCount = 16 +3608465 ripCount = 13 +3608466 locktype1 = 2 +3608466 locktype2 = 3 +3608467 locktype3 = 1 +3608467 goalCount = 0 +3608467 goalTotal = 10 +3608468 otherCount = 16 +~~~ +3608469 CURRENTGOAL IS [4] +~~~ +3616545 UP 10 +3616545 waslock = 0 +3616545 512 255 +~~~ +3616569 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3616577 512 254 +~~~ +~~~ +3616579 512 252 +~~~ +~~~ +3616581 512 248 +~~~ +~~~ +3616582 512 240 +~~~ +~~~ +3616584 512 224 +~~~ +~~~ +3616586 512 192 +~~~ +~~~ +3616588 512 128 +~~~ +~~~ +3616590 512 0 +~~~ +~~~ +~~~ +3617133 0 0 +3617163 512 0 +3617761 0 0 +3617783 512 0 +3617868 0 0 +3618349 512 0 +3618488 0 0 +3620077 512 0 +3620300 0 0 +3623436 UP 12 +3623436 2048 0 +3623470 DOWN 12 +3623470 0 0 +3626087 512 0 +3626274 0 0 +3628560 UP 11 +3628560 1024 0 +3629234 DOWN 11 +3629234 0 0 +3640902 512 0 +3641510 0 0 +3641538 512 0 +3641569 LOCKEND +~~~ +~~~ +~~~ +3641592 512 512 +3641834 DOWN 10 +3641834 0 512 +3642205 UP 10 +3642205 waslock = 0 +3642205 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3642238 512 16777728 +~~~ +3642263 DOWN 10 +3642263 0 16777728 +~~~ +~~~ +3642281 0 16779776 +~~~ +~~~ +3642283 0 16779264 +3642284 homeCount = 34 +3642284 waitCount = 16 +3642285 ripCount = 13 +3642285 locktype1 = 2 +3642286 locktype2 = 4 +3642286 locktype3 = 1 +3642287 goalCount = 0 +3642287 goalTotal = 10 +3642288 otherCount = 16 +~~~ +3642363 UP 10 +3642363 waslock = 0 +3642363 512 16779264 +~~~ +3642386 DOWN 10 +3642386 0 16779264 +3642388 0 2048 +~~~ +~~~ +~~~ +~~~ +3642414 homeCount = 34 +3642415 waitCount = 16 +3642415 ripCount = 13 +3642416 locktype1 = 2 +3642416 locktype2 = 4 +3642416 locktype3 = 1 +3642417 goalCount = 0 +3642417 goalTotal = 10 +3642418 otherCount = 16 +~~~ +3642507 UP 10 +3642507 waslock = 0 +3642506 512 2048 +~~~ +3648667 DOWN 10 +3648667 0 2048 +3648678 UP 10 +3648678 waslock = 0 +3648678 512 2048 +~~~ +~~~ +~~~ +~~~ +3648694 homeCount = 34 +3648695 waitCount = 16 +3648695 ripCount = 13 +3648696 locktype1 = 2 +3648696 locktype2 = 4 +3648697 locktype3 = 1 +3648697 goalCount = 0 +3648698 goalTotal = 10 +3648698 otherCount = 16 +~~~ +~~~ +3648761 DOWN 10 +3648761 0 2048 +~~~ +~~~ +~~~ +~~~ +3648785 homeCount = 34 +3648786 waitCount = 16 +3648786 ripCount = 13 +3648787 locktype1 = 2 +3648787 locktype2 = 4 +3648788 locktype3 = 1 +3648788 goalCount = 0 +3648789 goalTotal = 10 +3648789 otherCount = 16 +~~~ +3648842 UP 10 +3648842 waslock = 0 +3648842 512 2048 +3648864 DOWN 10 +3648864 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3648895 homeCount = 34 +3648895 waitCount = 16 +3648895 ripCount = 13 +3648896 locktype1 = 2 +3648896 locktype2 = 4 +3648897 locktype3 = 1 +3648897 goalCount = 0 +3648898 goalTotal = 10 +3648898 otherCount = 16 +~~~ +3652123 UP 12 +3652123 2048 2048 +3652932 DOWN 12 +3652932 0 2048 +3652964 UP 12 +3652964 2048 2048 +3653181 DOWN 12 +3653181 0 2048 +3653233 UP 12 +3653233 2048 2048 +3654201 DOWN 12 +3654201 0 2048 +3654214 UP 12 +3654214 2048 2048 +3654302 DOWN 12 +3654302 0 2048 +3654322 UP 12 +3654322 2048 2048 +3656123 CLICK1 +3656123 CLICK2 +~~~ +~~~ +~~~ +3656142 2048 67110912 +~~~ +3656292 2048 2048 +3663270 DOWN 12 +3663270 0 2048 +~~~ +~~~ +3663292 0 0 +~~~ +~~~ +3663294 0 1 +~~~ +~~~ +3663295 0 3 +~~~ +~~~ +3663297 0 7 +~~~ +~~~ +3663299 0 15 +~~~ +~~~ +3663301 0 31 +~~~ +~~~ +3663303 0 63 +~~~ +~~~ +3663305 0 127 +~~~ +~~~ +3663306 0 255 +3663307 homeCount = 34 +3663308 waitCount = 17 +3663308 ripCount = 13 +3663309 locktype1 = 2 +3663309 locktype2 = 4 +3663310 locktype3 = 1 +3663331 goalCount = 0 +3663331 goalTotal = 10 +3663332 otherCount = 16 +~~~ +3663333 CURRENTGOAL IS [4] +~~~ +3663342 UP 12 +3663342 2048 255 +3663376 DOWN 12 +3663376 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3663417 homeCount = 34 +3663418 waitCount = 17 +3663418 ripCount = 13 +3663419 locktype1 = 2 +3663419 locktype2 = 4 +3663420 locktype3 = 1 +3663420 goalCount = 0 +3663421 goalTotal = 10 +3663421 otherCount = 16 +~~~ +3663422 CURRENTGOAL IS [4] +~~~ +3667780 UP 8 +3667780 128 255 +~~~ +~~~ +3669059 DOWN 8 +3669059 0 255 +~~~ +~~~ +3669082 0 254 +~~~ +~~~ +3669083 0 252 +~~~ +~~~ +3669085 0 248 +~~~ +~~~ +3669087 0 240 +~~~ +~~~ +3669089 0 224 +~~~ +~~~ +3669091 0 192 +~~~ +~~~ +3669092 0 128 +~~~ +~~~ +3669094 0 0 +~~~ +~~~ +3669096 0 512 +3669097 homeCount = 34 +3669098 waitCount = 17 +3669098 ripCount = 13 +3669099 locktype1 = 2 +3669099 locktype2 = 4 +3669120 locktype3 = 1 +3669120 goalCount = 0 +3669121 goalTotal = 10 +3669121 otherCount = 17 +~~~ +3669122 128 512 +3669779 DOWN 8 +3669778 0 512 +3673367 UP 10 +3673368 waslock = 0 +3673367 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3673398 512 16777728 +~~~ +3673548 512 512 +3674004 DOWN 10 +3674004 0 512 +~~~ +~~~ +3674022 0 2560 +~~~ +~~~ +3674024 0 2048 +3674025 homeCount = 35 +3674026 waitCount = 17 +3674026 ripCount = 13 +3674027 locktype1 = 2 +3674027 locktype2 = 4 +3674028 locktype3 = 1 +3674028 goalCount = 0 +3674029 goalTotal = 10 +3674029 otherCount = 17 +~~~ +3674070 UP 10 +3674071 waslock = 0 +3674070 512 2048 +~~~ +3674098 DOWN 10 +3674098 0 2048 +~~~ +~~~ +~~~ +~~~ +3674117 homeCount = 35 +3674117 waitCount = 17 +3674118 ripCount = 13 +3674118 locktype1 = 2 +3674119 locktype2 = 4 +3674119 locktype3 = 1 +3674120 goalCount = 0 +3674120 goalTotal = 10 +3674121 otherCount = 17 +~~~ +3674174 UP 10 +3674174 waslock = 0 +3674174 512 2048 +~~~ +3674249 DOWN 10 +3674249 0 2048 +~~~ +~~~ +~~~ +~~~ +3674275 homeCount = 35 +3674276 waitCount = 17 +3674276 ripCount = 13 +3674277 locktype1 = 2 +3674277 locktype2 = 4 +3674277 locktype3 = 1 +3674278 goalCount = 0 +3674278 goalTotal = 10 +3674279 otherCount = 17 +~~~ +3674293 UP 10 +3674293 waslock = 0 +3674293 512 2048 +~~~ +3677709 DOWN 10 +3677709 0 2048 +~~~ +~~~ +~~~ +~~~ +3677735 homeCount = 35 +3677736 waitCount = 17 +3677736 ripCount = 13 +3677737 locktype1 = 2 +3677737 locktype2 = 4 +3677738 locktype3 = 1 +3677738 goalCount = 0 +3677738 goalTotal = 10 +3677739 otherCount = 17 +~~~ +3677740 UP 10 +3677740 waslock = 0 +3677740 512 2048 +~~~ +3677816 DOWN 10 +3677816 0 2048 +~~~ +~~~ +~~~ +~~~ +3677847 homeCount = 35 +3677847 waitCount = 17 +3677848 ripCount = 13 +3677848 locktype1 = 2 +3677849 locktype2 = 4 +3677849 locktype3 = 1 +3677850 goalCount = 0 +3677850 goalTotal = 10 +3677851 otherCount = 17 +~~~ +3679816 UP 12 +3679816 2048 2048 +3681588 DOWN 12 +3681588 0 2048 +3681597 UP 12 +3681597 2048 2048 +3684430 DOWN 12 +3684430 0 2048 +3684485 UP 12 +3684485 2048 2048 +3684747 DOWN 12 +3684747 0 2048 +3684948 LOCKOUT 3 +~~~ +3684973 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3684978 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3685030 UP 12 +3685030 2048 0 +3685082 DOWN 12 +3685082 0 0 +3685355 UP 12 +3685355 2048 0 +3692687 DOWN 12 +3692687 0 0 +3692745 UP 12 +3692745 2048 0 +3692881 DOWN 12 +3692881 0 0 +3692939 UP 12 +3692939 2048 0 +3694152 DOWN 12 +3694152 0 0 +3699170 UP 4 +3699170 8 0 +3699650 DOWN 4 +3699650 0 0 +3699701 8 0 +3700017 DOWN 4 +3700017 0 0 +3706263 512 0 +3706530 0 0 +3706569 512 0 +3707502 0 0 +3709664 512 0 +3709973 LOCKEND +~~~ +~~~ +~~~ +3709995 512 512 +3710150 DOWN 10 +3710150 0 512 +3710528 UP 10 +3710528 waslock = 0 +3710528 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3710560 512 16777728 +~~~ +3710592 DOWN 10 +3710592 0 16777728 +~~~ +~~~ +3710613 0 16778752 +~~~ +~~~ +3710615 0 16778240 +3710616 homeCount = 36 +3710616 waitCount = 17 +3710617 ripCount = 13 +3710617 locktype1 = 2 +3710618 locktype2 = 4 +3710618 locktype3 = 2 +3710618 goalCount = 0 +3710619 goalTotal = 10 +3710619 otherCount = 17 +~~~ +3710647 UP 10 +3710647 waslock = 0 +3710647 512 16778240 +~~~ +3710710 512 1024 +3710725 DOWN 10 +3710725 0 1024 +~~~ +~~~ +~~~ +~~~ +3710752 homeCount = 36 +3710752 waitCount = 17 +3710753 ripCount = 13 +3710753 locktype1 = 2 +3710754 locktype2 = 4 +3710754 locktype3 = 2 +3710755 goalCount = 0 +3710755 goalTotal = 10 +3710756 otherCount = 17 +~~~ +3710813 UP 10 +3710813 waslock = 0 +3710813 512 1024 +~~~ +3716169 DOWN 10 +3716169 0 1024 +~~~ +3716193 UP 10 +3716194 waslock = 0 +3716193 512 1024 +~~~ +~~~ +~~~ +3716197 homeCount = 36 +3716197 waitCount = 17 +3716198 ripCount = 13 +3716198 locktype1 = 2 +3716199 locktype2 = 4 +3716199 locktype3 = 2 +3716200 goalCount = 0 +3716200 goalTotal = 10 +3716201 otherCount = 17 +~~~ +~~~ +3716276 DOWN 10 +3716276 0 1024 +~~~ +~~~ +~~~ +~~~ +3716297 homeCount = 36 +3716297 waitCount = 17 +3716298 ripCount = 13 +3716298 locktype1 = 2 +3716299 locktype2 = 4 +3716299 locktype3 = 2 +3716300 goalCount = 0 +3716300 goalTotal = 10 +3716301 otherCount = 17 +~~~ +3717906 UP 11 +3717906 1024 1024 +3723028 DOWN 11 +3723028 0 1024 +3723040 UP 11 +3723040 1024 1024 +3724906 BEEP1 +3724906 BEEP2 +~~~ +~~~ +~~~ +3724926 1024 33555456 +~~~ +3725076 1024 1024 +3731454 DOWN 11 +3731454 0 1024 +~~~ +3731474 UP 11 +3731474 1024 1024 +~~~ +~~~ +3731475 1024 0 +~~~ +3731477 1024 1 +~~~ +~~~ +3731478 1024 3 +~~~ +~~~ +3731480 1024 7 +~~~ +~~~ +3731482 1024 15 +~~~ +~~~ +3731483 1024 31 +~~~ +~~~ +3731485 1024 63 +~~~ +~~~ +3731487 1024 127 +~~~ +~~~ +3731489 1024 255 +3731490 homeCount = 36 +3731490 waitCount = 17 +3731511 ripCount = 14 +3731512 locktype1 = 2 +3731512 locktype2 = 4 +3731513 locktype3 = 2 +3731513 goalCount = 0 +3731514 goalTotal = 10 +3731514 otherCount = 17 +~~~ +3731515 CURRENTGOAL IS [4] +~~~ +3731564 DOWN 11 +3731564 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3731600 homeCount = 36 +3731600 waitCount = 17 +3731601 ripCount = 14 +3731601 locktype1 = 2 +3731602 locktype2 = 4 +3731602 locktype3 = 2 +3731603 goalCount = 0 +3731603 goalTotal = 10 +3731604 otherCount = 17 +~~~ +3731605 CURRENTGOAL IS [4] +~~~ +3731649 UP 11 +3731648 1024 255 +3731667 DOWN 11 +3731667 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3731701 homeCount = 36 +3731702 waitCount = 17 +3731702 ripCount = 14 +3731703 locktype1 = 2 +3731703 locktype2 = 4 +3731704 locktype3 = 2 +3731704 goalCount = 0 +3731705 goalTotal = 10 +3731705 otherCount = 17 +~~~ +3731706 CURRENTGOAL IS [4] +~~~ +3745775 UP 10 +3745776 waslock = 0 +3745775 512 255 +~~~ +3745796 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3745804 512 254 +~~~ +~~~ +3745805 512 252 +~~~ +~~~ +3745807 512 248 +~~~ +~~~ +3745809 512 240 +~~~ +~~~ +3745811 512 224 +~~~ +~~~ +3745813 512 192 +~~~ +~~~ +3745815 512 128 +~~~ +~~~ +3745816 512 0 +~~~ +~~~ +~~~ +3745982 0 0 +3749232 512 0 +3749422 0 0 +3749467 512 0 +3749501 0 0 +3749833 512 0 +3750026 0 0 +3750243 512 0 +3750549 0 0 +3752435 512 0 +3753237 0 0 +3753302 512 0 +3753343 0 0 +3759767 512 0 +3760055 0 0 +3760344 512 0 +3760578 0 0 +3768463 512 0 +3768985 0 0 +3769220 512 0 +3769969 0 0 +3770796 LOCKEND +~~~ +~~~ +~~~ +3770817 0 512 +3771670 UP 10 +3771670 waslock = 0 +3771670 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3771703 512 16777728 +~~~ +3771725 DOWN 10 +3771725 0 16777728 +~~~ +~~~ +3771749 0 16779776 +~~~ +~~~ +3771751 0 16779264 +3771752 homeCount = 37 +3771753 waitCount = 17 +3771753 ripCount = 14 +3771754 locktype1 = 2 +3771754 locktype2 = 5 +3771755 locktype3 = 2 +3771755 goalCount = 0 +3771756 goalTotal = 10 +3771756 otherCount = 17 +~~~ +3771805 UP 10 +3771805 waslock = 0 +3771805 512 16779264 +~~~ +3771853 512 2048 +3776248 DOWN 10 +3776248 0 2048 +3776261 UP 10 +3776261 waslock = 0 +3776261 512 2048 +~~~ +~~~ +~~~ +~~~ +3776269 homeCount = 37 +3776269 waitCount = 17 +3776270 ripCount = 14 +3776270 locktype1 = 2 +3776271 locktype2 = 5 +3776271 locktype3 = 2 +3776272 goalCount = 0 +3776272 goalTotal = 10 +3776272 otherCount = 17 +~~~ +~~~ +3777488 DOWN 10 +3777488 0 2048 +~~~ +~~~ +~~~ +~~~ +3777511 homeCount = 37 +3777511 waitCount = 17 +3777512 ripCount = 14 +3777512 locktype1 = 2 +3777513 locktype2 = 5 +3777513 locktype3 = 2 +3777514 goalCount = 0 +3777514 goalTotal = 10 +3777515 otherCount = 17 +~~~ +3778917 UP 12 +3778916 2048 2048 +3780637 DOWN 12 +3780637 0 2048 +3780645 UP 12 +3780645 2048 2048 +3781520 DOWN 12 +3781520 0 2048 +3781545 UP 12 +3781544 2048 2048 +3781571 DOWN 12 +3781571 0 2048 +3781623 UP 12 +3781623 2048 2048 +3781643 DOWN 12 +3781643 0 2048 +3781678 UP 12 +3781678 2048 2048 +3784417 CLICK1 +3784417 CLICK2 +~~~ +~~~ +~~~ +3784438 2048 67110912 +~~~ +3784588 2048 2048 +3789657 DOWN 12 +3789657 0 2048 +~~~ +~~~ +3789677 0 0 +~~~ +~~~ +3789678 0 1 +~~~ +~~~ +3789680 0 3 +~~~ +~~~ +3789682 0 7 +~~~ +~~~ +3789684 0 15 +~~~ +~~~ +3789686 0 31 +~~~ +~~~ +3789688 0 63 +~~~ +~~~ +3789689 0 127 +~~~ +~~~ +3789691 0 255 +3789692 homeCount = 37 +3789693 waitCount = 18 +3789693 ripCount = 14 +3789694 locktype1 = 2 +3789694 locktype2 = 5 +3789715 locktype3 = 2 +3789716 goalCount = 0 +3789716 goalTotal = 10 +3789717 otherCount = 17 +~~~ +3789718 CURRENTGOAL IS [4] +~~~ +3789718 UP 12 +3789718 2048 255 +3789772 DOWN 12 +3789772 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3789807 homeCount = 37 +3789808 waitCount = 18 +3789808 ripCount = 14 +3789809 locktype1 = 2 +3789809 locktype2 = 5 +3789810 locktype3 = 2 +3789810 goalCount = 0 +3789811 goalTotal = 10 +3789811 otherCount = 17 +~~~ +3789812 CURRENTGOAL IS [4] +~~~ +3794235 UP 5 +3794235 16 255 +~~~ +~~~ +3795367 DOWN 5 +3795367 0 255 +~~~ +~~~ +3795392 0 254 +~~~ +~~~ +3795394 0 252 +~~~ +~~~ +3795396 0 248 +~~~ +~~~ +3795398 0 240 +~~~ +~~~ +3795399 0 224 +~~~ +~~~ +3795401 0 192 +~~~ +~~~ +3795403 0 128 +~~~ +~~~ +3795405 0 0 +~~~ +~~~ +3795407 0 512 +3795408 homeCount = 37 +3795408 waitCount = 18 +3795409 ripCount = 14 +3795409 locktype1 = 2 +3795410 locktype2 = 5 +3795431 locktype3 = 2 +3795431 goalCount = 0 +3795432 goalTotal = 10 +3795432 otherCount = 18 +~~~ +3795433 16 512 +3795632 DOWN 5 +3795632 0 512 +3795657 16 512 +3795681 DOWN 5 +3795681 0 512 +3799735 UP 10 +3799735 waslock = 0 +3799735 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3799766 512 16777728 +~~~ +3799916 512 512 +3800136 DOWN 10 +3800136 0 512 +~~~ +~~~ +3800161 0 2560 +~~~ +~~~ +3800163 0 2048 +3800164 homeCount = 38 +3800165 waitCount = 18 +3800165 ripCount = 14 +3800166 locktype1 = 2 +3800166 locktype2 = 5 +3800167 locktype3 = 2 +3800167 goalCount = 0 +3800168 goalTotal = 10 +3800168 otherCount = 18 +~~~ +3800211 UP 10 +3800211 waslock = 0 +3800211 512 2048 +3800219 DOWN 10 +3800219 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3800237 homeCount = 38 +3800238 waitCount = 18 +3800238 ripCount = 14 +3800239 locktype1 = 2 +3800239 locktype2 = 5 +3800239 locktype3 = 2 +3800240 goalCount = 0 +3800240 goalTotal = 10 +3800241 otherCount = 18 +~~~ +3800339 UP 10 +3800340 waslock = 0 +3800339 512 2048 +~~~ +3800385 DOWN 10 +3800385 0 2048 +3800396 UP 10 +3800396 waslock = 0 +3800396 512 2048 +~~~ +~~~ +~~~ +~~~ +3800409 homeCount = 38 +3800410 waitCount = 18 +3800410 ripCount = 14 +3800411 locktype1 = 2 +3800411 locktype2 = 5 +3800412 locktype3 = 2 +3800412 goalCount = 0 +3800413 goalTotal = 10 +3800413 otherCount = 18 +~~~ +3800414 DOWN 10 +3800414 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3800451 homeCount = 38 +3800452 waitCount = 18 +3800452 ripCount = 14 +3800453 locktype1 = 2 +3800453 locktype2 = 5 +3800453 locktype3 = 2 +3800454 goalCount = 0 +3800454 goalTotal = 10 +3800455 otherCount = 18 +~~~ +3800468 UP 10 +3800468 waslock = 0 +3800467 512 2048 +~~~ +3803996 DOWN 10 +3803996 0 2048 +~~~ +~~~ +~~~ +~~~ +3804015 homeCount = 38 +3804016 waitCount = 18 +3804016 ripCount = 14 +3804017 locktype1 = 2 +3804017 locktype2 = 5 +3804018 locktype3 = 2 +3804018 goalCount = 0 +3804019 goalTotal = 10 +3804019 otherCount = 18 +~~~ +3804022 UP 10 +3804022 waslock = 0 +3804022 512 2048 +~~~ +3804098 DOWN 10 +3804098 0 2048 +~~~ +~~~ +~~~ +~~~ +3804127 homeCount = 38 +3804128 waitCount = 18 +3804128 ripCount = 14 +3804129 locktype1 = 2 +3804129 locktype2 = 5 +3804129 locktype3 = 2 +3804130 goalCount = 0 +3804130 goalTotal = 10 +3804131 otherCount = 18 +~~~ +3805817 UP 12 +3805817 2048 2048 +3807265 DOWN 12 +3807265 0 2048 +3807349 UP 12 +3807349 2048 2048 +3807359 DOWN 12 +3807359 0 2048 +3807468 UP 12 +3807468 2048 2048 +3807502 DOWN 12 +3807502 0 2048 +3807537 UP 12 +3807537 2048 2048 +3811317 CLICK1 +3811317 CLICK2 +~~~ +~~~ +~~~ +3811334 2048 67110912 +~~~ +3811484 2048 2048 +3817632 DOWN 12 +3817632 0 2048 +~~~ +~~~ +3817654 0 0 +~~~ +~~~ +3817656 0 1 +~~~ +~~~ +3817658 0 3 +~~~ +~~~ +3817660 0 7 +~~~ +~~~ +3817662 0 15 +~~~ +~~~ +3817664 0 31 +~~~ +~~~ +3817665 0 63 +~~~ +~~~ +3817667 0 127 +~~~ +~~~ +3817669 0 255 +3817670 homeCount = 38 +3817671 waitCount = 19 +3817671 ripCount = 14 +3817672 locktype1 = 2 +3817672 locktype2 = 5 +3817673 locktype3 = 2 +3817694 goalCount = 0 +3817694 goalTotal = 10 +3817695 otherCount = 18 +~~~ +3817696 CURRENTGOAL IS [4] +~~~ +3817696 UP 12 +3817696 2048 255 +3817723 DOWN 12 +3817723 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3817760 homeCount = 38 +3817760 waitCount = 19 +3817761 ripCount = 14 +3817761 locktype1 = 2 +3817762 locktype2 = 5 +3817762 locktype3 = 2 +3817763 goalCount = 0 +3817763 goalTotal = 10 +3817764 otherCount = 18 +~~~ +3817765 CURRENTGOAL IS [4] +~~~ +3821477 UP 1 +3821477 1 255 +~~~ +~~~ +3822494 DOWN 1 +3822494 0 255 +~~~ +~~~ +3822514 0 254 +~~~ +~~~ +3822516 0 252 +~~~ +~~~ +3822517 0 248 +~~~ +~~~ +3822519 0 240 +~~~ +~~~ +3822521 0 224 +~~~ +~~~ +3822523 0 192 +~~~ +~~~ +3822525 0 128 +~~~ +~~~ +3822526 0 0 +~~~ +~~~ +3822528 0 512 +3822529 homeCount = 38 +3822530 waitCount = 19 +3822530 ripCount = 14 +3822531 locktype1 = 2 +3822531 locktype2 = 5 +3822552 locktype3 = 2 +3822553 goalCount = 0 +3822553 goalTotal = 10 +3822554 otherCount = 19 +~~~ +3826161 UP 10 +3826161 waslock = 0 +3826161 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3826190 512 16777728 +~~~ +3826340 512 512 +3826395 DOWN 10 +3826395 0 512 +3826408 UP 10 +3826408 waslock = 0 +3826408 512 512 +~~~ +~~~ +3826416 512 1536 +~~~ +~~~ +3826418 512 1024 +3826419 homeCount = 39 +3826420 waitCount = 19 +3826420 ripCount = 14 +3826420 locktype1 = 2 +3826421 locktype2 = 5 +3826421 locktype3 = 2 +3826422 goalCount = 0 +3826422 goalTotal = 10 +3826423 otherCount = 19 +~~~ +~~~ +3829789 DOWN 10 +3829789 0 1024 +~~~ +~~~ +~~~ +~~~ +3829819 homeCount = 39 +3829820 waitCount = 19 +3829820 ripCount = 14 +3829821 locktype1 = 2 +3829821 locktype2 = 5 +3829822 locktype3 = 2 +3829822 goalCount = 0 +3829823 goalTotal = 10 +3829823 otherCount = 19 +~~~ +3829857 UP 10 +3829857 waslock = 0 +3829857 512 1024 +~~~ +3829908 DOWN 10 +3829908 0 1024 +~~~ +~~~ +~~~ +~~~ +3829939 homeCount = 39 +3829939 waitCount = 19 +3829940 ripCount = 14 +3829940 locktype1 = 2 +3829941 locktype2 = 5 +3829941 locktype3 = 2 +3829942 goalCount = 0 +3829942 goalTotal = 10 +3829943 otherCount = 19 +~~~ +3831810 UP 11 +3831810 1024 1024 +3834588 DOWN 11 +3834588 0 1024 +3834611 UP 11 +3834611 1024 1024 +3834810 BEEP1 +3834810 BEEP2 +~~~ +~~~ +~~~ +3834838 1024 33555456 +~~~ +3834988 1024 1024 +3843339 DOWN 11 +3843339 0 1024 +~~~ +~~~ +3843368 0 0 +~~~ +~~~ +3843370 0 1 +~~~ +~~~ +3843372 0 3 +~~~ +~~~ +3843373 0 7 +~~~ +~~~ +3843375 0 15 +~~~ +~~~ +3843377 0 31 +~~~ +~~~ +3843379 0 63 +~~~ +~~~ +3843381 0 127 +~~~ +~~~ +3843382 0 255 +3843383 homeCount = 39 +3843384 waitCount = 19 +3843384 ripCount = 15 +3843385 locktype1 = 2 +3843385 locktype2 = 5 +3843407 locktype3 = 2 +3843407 goalCount = 0 +3843408 goalTotal = 10 +3843408 otherCount = 19 +~~~ +3843409 CURRENTGOAL IS [4] +~~~ +3850007 UP 6 +3850007 32 255 +~~~ +~~~ +3850438 DOWN 6 +3850438 0 255 +~~~ +~~~ +3850460 0 254 +~~~ +~~~ +3850461 0 252 +~~~ +~~~ +3850463 0 248 +~~~ +~~~ +3850465 0 240 +~~~ +~~~ +3850467 0 224 +~~~ +~~~ +3850469 0 192 +~~~ +~~~ +3850471 0 128 +~~~ +~~~ +3850472 0 0 +~~~ +~~~ +3850474 0 512 +3850475 homeCount = 39 +3850476 waitCount = 19 +3850476 ripCount = 15 +3850477 locktype1 = 2 +3850477 locktype2 = 5 +3850498 locktype3 = 2 +3850499 goalCount = 0 +3850499 goalTotal = 10 +3850500 otherCount = 20 +~~~ +3854285 UP 10 +3854285 waslock = 0 +3854285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3854318 512 16777728 +~~~ +3854327 DOWN 10 +3854327 0 16777728 +~~~ +~~~ +3854355 0 16778752 +~~~ +~~~ +3854357 0 16778240 +3854358 homeCount = 40 +3854359 waitCount = 19 +3854359 ripCount = 15 +3854359 locktype1 = 2 +3854360 locktype2 = 5 +3854360 locktype3 = 2 +3854361 goalCount = 0 +3854361 goalTotal = 10 +3854362 otherCount = 20 +~~~ +3854428 UP 10 +3854428 waslock = 0 +3854428 512 16778240 +~~~ +3854468 512 1024 +3854575 DOWN 10 +3854575 0 1024 +3854594 UP 10 +3854594 waslock = 0 +3854594 512 1024 +~~~ +~~~ +~~~ +~~~ +3854615 homeCount = 40 +3854616 waitCount = 19 +3854616 ripCount = 15 +3854617 locktype1 = 2 +3854617 locktype2 = 5 +3854617 locktype3 = 2 +3854618 goalCount = 0 +3854618 goalTotal = 10 +3854619 otherCount = 20 +~~~ +~~~ +3858624 DOWN 10 +3858624 0 1024 +3858631 UP 10 +3858632 waslock = 0 +3858631 512 1024 +~~~ +~~~ +~~~ +~~~ +3858656 homeCount = 40 +3858657 waitCount = 19 +3858657 ripCount = 15 +3858658 locktype1 = 2 +3858658 locktype2 = 5 +3858659 locktype3 = 2 +3858659 goalCount = 0 +3858660 goalTotal = 10 +3858660 otherCount = 20 +~~~ +~~~ +3858741 DOWN 10 +3858741 0 1024 +~~~ +~~~ +~~~ +~~~ +3858764 homeCount = 40 +3858764 waitCount = 19 +3858765 ripCount = 15 +3858765 locktype1 = 2 +3858765 locktype2 = 5 +3858766 locktype3 = 2 +3858766 goalCount = 0 +3858767 goalTotal = 10 +3858767 otherCount = 20 +~~~ +3858768 UP 10 +3858768 waslock = 0 +3858768 512 1024 +~~~ +3858851 DOWN 10 +3858851 0 1024 +~~~ +~~~ +~~~ +~~~ +3858874 homeCount = 40 +3858874 waitCount = 19 +3858875 ripCount = 15 +3858875 locktype1 = 2 +3858876 locktype2 = 5 +3858876 locktype3 = 2 +3858877 goalCount = 0 +3858877 goalTotal = 10 +3858878 otherCount = 20 +~~~ +3861332 UP 11 +3861332 1024 1024 +3864187 DOWN 11 +3864187 0 1024 +3864226 UP 11 +3864226 1024 1024 +3864504 DOWN 11 +3864504 0 1024 +3864515 UP 11 +3864515 1024 1024 +3869332 BEEP1 +3869332 BEEP2 +~~~ +~~~ +~~~ +3869353 1024 33555456 +~~~ +3869503 1024 1024 +3877388 DOWN 11 +3877388 0 1024 +~~~ +~~~ +3877411 0 0 +~~~ +~~~ +3877413 0 1 +~~~ +~~~ +3877415 0 3 +~~~ +~~~ +3877416 0 7 +~~~ +~~~ +3877418 0 15 +~~~ +~~~ +3877420 0 31 +~~~ +~~~ +3877422 0 63 +~~~ +~~~ +3877424 0 127 +~~~ +~~~ +3877425 0 255 +3877426 homeCount = 40 +3877427 waitCount = 19 +3877427 ripCount = 16 +3877428 locktype1 = 2 +3877428 locktype2 = 5 +3877429 locktype3 = 2 +3877450 goalCount = 0 +3877450 goalTotal = 10 +3877451 otherCount = 20 +~~~ +3877452 CURRENTGOAL IS [4] +~~~ +3877452 UP 11 +3877452 1024 255 +3877495 DOWN 11 +3877495 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3877536 homeCount = 40 +3877537 waitCount = 19 +3877537 ripCount = 16 +3877538 locktype1 = 2 +3877538 locktype2 = 5 +3877539 locktype3 = 2 +3877539 goalCount = 0 +3877540 goalTotal = 10 +3877540 otherCount = 20 +~~~ +3877541 CURRENTGOAL IS [4] +~~~ +3888649 UP 10 +3888649 waslock = 0 +3888649 512 255 +~~~ +3888671 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3888679 512 254 +~~~ +~~~ +3888681 512 252 +~~~ +~~~ +3888683 512 248 +~~~ +~~~ +3888684 512 240 +~~~ +~~~ +3888686 512 224 +~~~ +~~~ +3888688 512 192 +~~~ +~~~ +3888690 512 128 +~~~ +~~~ +3888692 512 0 +~~~ +~~~ +~~~ +3888764 0 0 +3888945 512 0 +3889129 0 0 +3892595 UP 11 +3892595 1024 0 +3892720 DOWN 11 +3892720 0 0 +3896362 512 0 +3896505 0 0 +3896586 512 0 +3896737 0 0 +3896765 512 0 +3897158 0 0 +3897194 512 0 +3897289 0 0 +3897321 512 0 +3897709 0 0 +3899622 512 0 +3900148 0 0 +3906959 512 0 +3908083 0 0 +3908132 512 0 +3908168 0 0 +3913671 LOCKEND +~~~ +~~~ +~~~ +3913693 0 512 +3919562 UP 10 +3919562 waslock = 0 +3919562 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3919587 512 16777728 +~~~ +3919709 DOWN 10 +3919709 0 16777728 +3919737 0 512 +~~~ +~~~ +3919739 0 1536 +~~~ +~~~ +3919740 0 1024 +3919741 homeCount = 41 +3919742 waitCount = 19 +3919742 ripCount = 16 +3919743 locktype1 = 2 +3919743 locktype2 = 6 +3919744 locktype3 = 2 +3919744 goalCount = 0 +3919745 goalTotal = 10 +3919745 otherCount = 20 +~~~ +3919773 UP 10 +3919773 waslock = 0 +3919773 512 1024 +3919795 DOWN 10 +3919795 0 1024 +~~~ +3919811 UP 10 +3919811 waslock = 0 +3919811 512 1024 +~~~ +~~~ +~~~ +~~~ +3919830 homeCount = 41 +3919830 waitCount = 19 +3919831 ripCount = 16 +3919831 locktype1 = 2 +3919832 locktype2 = 6 +3919832 locktype3 = 2 +3919833 goalCount = 0 +3919833 goalTotal = 10 +3919834 otherCount = 20 +~~~ +~~~ +3924979 DOWN 10 +3924979 0 1024 +~~~ +~~~ +~~~ +~~~ +3925005 homeCount = 41 +3925006 waitCount = 19 +3925006 ripCount = 16 +3925007 locktype1 = 2 +3925007 locktype2 = 6 +3925008 locktype3 = 2 +3925008 goalCount = 0 +3925008 goalTotal = 10 +3925009 otherCount = 20 +~~~ +3926610 UP 11 +3926610 1024 1024 +3926694 DOWN 11 +3926694 0 1024 +3926742 UP 11 +3926742 1024 1024 +3930573 DOWN 11 +3930573 0 1024 +3930600 UP 11 +3930600 1024 1024 +3930610 BEEP1 +3930610 BEEP2 +~~~ +~~~ +~~~ +3930628 1024 33555456 +~~~ +3930778 1024 1024 +3937964 DOWN 11 +3937964 0 1024 +3937975 UP 11 +3937975 1024 1024 +~~~ +~~~ +3937994 1024 0 +~~~ +~~~ +3937996 1024 1 +~~~ +~~~ +3937997 1024 3 +~~~ +~~~ +3937999 1024 7 +~~~ +~~~ +3938001 1024 15 +~~~ +~~~ +3938003 1024 31 +~~~ +~~~ +3938005 1024 63 +~~~ +~~~ +3938006 1024 127 +~~~ +~~~ +3938008 1024 255 +3938009 homeCount = 41 +3938010 waitCount = 19 +3938010 ripCount = 17 +3938011 locktype1 = 2 +3938031 locktype2 = 6 +3938032 locktype3 = 2 +3938032 goalCount = 0 +3938033 goalTotal = 10 +3938033 otherCount = 20 +~~~ +3938034 CURRENTGOAL IS [4] +~~~ +3938094 DOWN 11 +3938094 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3938130 homeCount = 41 +3938131 waitCount = 19 +3938131 ripCount = 17 +3938132 locktype1 = 2 +3938132 locktype2 = 6 +3938133 locktype3 = 2 +3938133 goalCount = 0 +3938134 goalTotal = 10 +3938134 otherCount = 20 +~~~ +3938135 CURRENTGOAL IS [4] +~~~ +3944182 UP 7 +3944182 64 255 +~~~ +~~~ +3945239 DOWN 7 +3945239 0 255 +~~~ +~~~ +3945265 0 254 +~~~ +~~~ +3945267 0 252 +~~~ +~~~ +3945269 0 248 +~~~ +~~~ +3945271 0 240 +~~~ +~~~ +3945272 0 224 +~~~ +~~~ +3945274 0 192 +~~~ +~~~ +3945276 0 128 +~~~ +~~~ +3945278 0 0 +~~~ +~~~ +3945280 0 512 +3945281 homeCount = 41 +3945281 waitCount = 19 +3945282 ripCount = 17 +3945282 locktype1 = 2 +3945283 locktype2 = 6 +3945304 locktype3 = 2 +3945304 goalCount = 0 +3945305 goalTotal = 10 +3945305 otherCount = 21 +~~~ +3945639 64 512 +3945686 DOWN 7 +3945686 0 512 +3950837 UP 10 +3950838 waslock = 0 +3950837 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3950872 512 16777728 +~~~ +3951022 512 512 +3955553 DOWN 10 +3955553 0 512 +~~~ +~~~ +3955574 0 2560 +~~~ +~~~ +3955576 0 2048 +3955577 homeCount = 42 +3955578 waitCount = 19 +3955578 ripCount = 17 +3955579 locktype1 = 2 +3955579 locktype2 = 6 +3955580 locktype3 = 2 +3955580 goalCount = 0 +3955581 goalTotal = 10 +3955581 otherCount = 21 +~~~ +3955584 UP 10 +3955584 waslock = 0 +3955584 512 2048 +~~~ +3955653 DOWN 10 +3955653 0 2048 +~~~ +~~~ +~~~ +~~~ +3955679 homeCount = 42 +3955679 waitCount = 19 +3955680 ripCount = 17 +3955680 locktype1 = 2 +3955681 locktype2 = 6 +3955681 locktype3 = 2 +3955682 goalCount = 0 +3955682 goalTotal = 10 +3955683 otherCount = 21 +~~~ +3957642 UP 12 +3957642 2048 2048 +3960221 DOWN 12 +3960221 0 2048 +3960243 UP 12 +3960243 2048 2048 +3960399 DOWN 12 +3960399 0 2048 +3960427 UP 12 +3960427 2048 2048 +3960642 CLICK1 +3960642 CLICK2 +~~~ +~~~ +~~~ +3960669 2048 67110912 +~~~ +3960819 2048 2048 +3965466 DOWN 12 +3965465 0 2048 +~~~ +~~~ +3965487 0 0 +~~~ +~~~ +3965489 0 1 +~~~ +~~~ +3965491 0 3 +~~~ +~~~ +3965492 0 7 +~~~ +~~~ +3965494 0 15 +~~~ +~~~ +3965496 0 31 +~~~ +~~~ +3965498 0 63 +~~~ +~~~ +3965500 0 127 +~~~ +~~~ +3965502 0 255 +3965503 homeCount = 42 +3965503 waitCount = 20 +3965504 ripCount = 17 +3965504 locktype1 = 2 +3965505 locktype2 = 6 +3965505 locktype3 = 2 +3965526 goalCount = 0 +3965526 goalTotal = 10 +3965527 otherCount = 21 +~~~ +3965528 CURRENTGOAL IS [4] +~~~ +3965532 UP 12 +3965532 2048 255 +3965567 DOWN 12 +3965567 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3965604 homeCount = 42 +3965604 waitCount = 20 +3965605 ripCount = 17 +3965605 locktype1 = 2 +3965606 locktype2 = 6 +3965606 locktype3 = 2 +3965607 goalCount = 0 +3965607 goalTotal = 10 +3965608 otherCount = 21 +~~~ +3965609 CURRENTGOAL IS [4] +~~~ +3978210 UP 1 +3978210 1 255 +~~~ +~~~ +3979269 DOWN 1 +3979269 0 255 +~~~ +~~~ +3979288 0 254 +~~~ +~~~ +3979290 0 252 +~~~ +~~~ +3979292 0 248 +~~~ +~~~ +3979294 0 240 +~~~ +~~~ +3979295 0 224 +~~~ +~~~ +3979297 0 192 +~~~ +~~~ +3979299 0 128 +~~~ +~~~ +3979301 0 0 +~~~ +~~~ +3979303 0 512 +3979304 homeCount = 42 +3979304 waitCount = 20 +3979305 ripCount = 17 +3979305 locktype1 = 2 +3979306 locktype2 = 6 +3979326 locktype3 = 2 +3979327 goalCount = 0 +3979327 goalTotal = 10 +3979328 otherCount = 22 +~~~ +3982606 UP 10 +3982607 waslock = 0 +3982606 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3982633 512 16777728 +~~~ +3982783 512 512 +3982795 DOWN 10 +3982795 0 512 +~~~ +~~~ +3982807 0 1536 +~~~ +~~~ +3982809 0 1024 +3982810 homeCount = 43 +3982811 waitCount = 20 +3982811 ripCount = 17 +3982812 locktype1 = 2 +3982812 locktype2 = 6 +3982813 locktype3 = 2 +3982813 goalCount = 0 +3982814 goalTotal = 10 +3982814 otherCount = 22 +~~~ +3982834 UP 10 +3982834 waslock = 0 +3982834 512 1024 +~~~ +3987599 DOWN 10 +3987599 0 1024 +3987616 UP 10 +3987617 waslock = 0 +3987616 512 1024 +~~~ +~~~ +~~~ +~~~ +3987621 homeCount = 43 +3987622 waitCount = 20 +3987622 ripCount = 17 +3987623 locktype1 = 2 +3987623 locktype2 = 6 +3987624 locktype3 = 2 +3987624 goalCount = 0 +3987625 goalTotal = 10 +3987625 otherCount = 22 +~~~ +~~~ +3987720 DOWN 10 +3987720 0 1024 +~~~ +~~~ +~~~ +~~~ +3987742 homeCount = 43 +3987742 waitCount = 20 +3987743 ripCount = 17 +3987743 locktype1 = 2 +3987744 locktype2 = 6 +3987744 locktype3 = 2 +3987745 goalCount = 0 +3987745 goalTotal = 10 +3987746 otherCount = 22 +~~~ +3987749 UP 10 +3987749 waslock = 0 +3987749 512 1024 +~~~ +3987825 DOWN 10 +3987825 0 1024 +~~~ +~~~ +~~~ +~~~ +3987859 homeCount = 43 +3987860 waitCount = 20 +3987860 ripCount = 17 +3987861 locktype1 = 2 +3987861 locktype2 = 6 +3987862 locktype3 = 2 +3987862 goalCount = 0 +3987862 goalTotal = 10 +3987863 otherCount = 22 +~~~ +3989547 UP 11 +3989547 1024 1024 +3995048 BEEP1 +3995048 BEEP2 +~~~ +~~~ +~~~ +3995074 1024 33555456 +~~~ +3995224 1024 1024 +4000147 DOWN 11 +4000147 0 1024 +~~~ +~~~ +4000174 0 0 +~~~ +~~~ +4000176 UP 11 +4000176 1024 1 +~~~ +~~~ +4000178 1024 3 +~~~ +~~~ +4000180 1024 7 +~~~ +~~~ +4000181 1024 15 +~~~ +~~~ +4000183 1024 31 +~~~ +~~~ +4000185 1024 63 +~~~ +~~~ +4000187 1024 127 +~~~ +~~~ +4000189 1024 255 +4000190 homeCount = 43 +4000190 waitCount = 20 +4000191 ripCount = 18 +4000212 locktype1 = 2 +4000212 locktype2 = 6 +4000213 locktype3 = 2 +4000213 goalCount = 0 +4000214 goalTotal = 10 +4000214 otherCount = 22 +~~~ +4000215 CURRENTGOAL IS [4] +~~~ +4002715 DOWN 11 +4002715 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4002752 homeCount = 43 +4002752 waitCount = 20 +4002753 ripCount = 18 +4002753 locktype1 = 2 +4002754 locktype2 = 6 +4002754 locktype3 = 2 +4002755 goalCount = 0 +4002755 goalTotal = 10 +4002756 otherCount = 22 +~~~ +4002757 CURRENTGOAL IS [4] +~~~ +4002789 UP 11 +4002789 1024 255 +4002814 DOWN 11 +4002814 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4002852 homeCount = 43 +4002853 waitCount = 20 +4002853 ripCount = 18 +4002854 locktype1 = 2 +4002854 locktype2 = 6 +4002855 locktype3 = 2 +4002855 goalCount = 0 +4002855 goalTotal = 10 +4002856 otherCount = 22 +~~~ +4002857 CURRENTGOAL IS [4] +~~~ +4017754 UP 4 +4017754 8 255 +~~~ +~~~ +4017778 outer reward +~~~ +4017778 8 524543 +~~~ +~~~ +4018228 8 255 +4026115 DOWN 4 +4026115 0 255 +4026124 8 255 +~~~ +~~~ +4026135 8 254 +~~~ +~~~ +4026137 8 252 +~~~ +~~~ +4026139 8 248 +~~~ +~~~ +4026141 8 240 +~~~ +~~~ +4026143 8 224 +~~~ +~~~ +4026145 8 192 +~~~ +~~~ +4026146 8 128 +~~~ +~~~ +4026148 8 0 +~~~ +~~~ +4026150 8 512 +4026151 homeCount = 43 +4026152 waitCount = 20 +4026152 ripCount = 18 +4026153 locktype1 = 2 +4026153 locktype2 = 6 +4026174 locktype3 = 2 +4026175 goalCount = 1 +4026175 goalTotal = 11 +4026176 otherCount = 22 +~~~ +4026210 DOWN 4 +4026210 0 512 +4031912 UP 10 +4031913 waslock = 0 +4031912 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4031942 512 16777728 +~~~ +4032092 512 512 +4034692 DOWN 10 +4034692 0 512 +4034708 UP 10 +4034708 waslock = 0 +4034708 512 512 +~~~ +~~~ +4034727 512 1536 +~~~ +~~~ +4034729 512 1024 +4034730 homeCount = 44 +4034730 waitCount = 20 +4034731 ripCount = 18 +4034731 locktype1 = 2 +4034732 locktype2 = 6 +4034732 locktype3 = 2 +4034733 goalCount = 1 +4034733 goalTotal = 11 +4034734 otherCount = 22 +~~~ +~~~ +4034802 DOWN 10 +4034802 0 1024 +~~~ +~~~ +~~~ +~~~ +4034829 homeCount = 44 +4034829 waitCount = 20 +4034830 ripCount = 18 +4034830 locktype1 = 2 +4034831 locktype2 = 6 +4034831 locktype3 = 2 +4034832 goalCount = 1 +4034832 goalTotal = 11 +4034833 otherCount = 22 +~~~ +4034845 UP 10 +4034845 waslock = 0 +4034845 512 1024 +~~~ +4034916 DOWN 10 +4034916 0 1024 +~~~ +~~~ +~~~ +~~~ +4034938 homeCount = 44 +4034939 waitCount = 20 +4034939 ripCount = 18 +4034940 locktype1 = 2 +4034940 locktype2 = 6 +4034941 locktype3 = 2 +4034941 goalCount = 1 +4034942 goalTotal = 11 +4034942 otherCount = 22 +~~~ +4034974 UP 10 +4034974 waslock = 0 +4034974 512 1024 +~~~ +4036788 DOWN 10 +4036788 0 1024 +4036798 UP 10 +4036798 waslock = 0 +4036798 512 1024 +~~~ +~~~ +~~~ +~~~ +4036820 homeCount = 44 +4036821 waitCount = 20 +4036821 ripCount = 18 +4036822 locktype1 = 2 +4036822 locktype2 = 6 +4036823 locktype3 = 2 +4036823 goalCount = 1 +4036824 goalTotal = 11 +4036824 otherCount = 22 +~~~ +~~~ +4036891 DOWN 10 +4036891 0 1024 +~~~ +~~~ +~~~ +~~~ +4036918 homeCount = 44 +4036919 waitCount = 20 +4036919 ripCount = 18 +4036920 locktype1 = 2 +4036920 locktype2 = 6 +4036921 locktype3 = 2 +4036921 goalCount = 1 +4036922 goalTotal = 11 +4036922 otherCount = 22 +~~~ +4039257 UP 11 +4039257 1024 1024 +4040494 DOWN 11 +4040494 0 1024 +4040534 UP 11 +4040534 1024 1024 +4041183 DOWN 11 +4041183 0 1024 +4041188 UP 11 +4041188 1024 1024 +4046257 BEEP1 +4046257 BEEP2 +~~~ +~~~ +~~~ +4046278 1024 33555456 +~~~ +4046428 1024 1024 +4052299 DOWN 11 +4052299 0 1024 +~~~ +~~~ +4052326 0 0 +~~~ +~~~ +4052328 0 1 +~~~ +~~~ +4052330 0 3 +~~~ +~~~ +4052331 0 7 +~~~ +~~~ +4052333 0 15 +~~~ +~~~ +4052335 0 31 +~~~ +~~~ +4052337 0 63 +~~~ +~~~ +4052339 0 127 +~~~ +~~~ +4052340 0 255 +4052341 homeCount = 44 +4052342 waitCount = 20 +4052342 ripCount = 19 +4052343 locktype1 = 2 +4052343 locktype2 = 6 +4052344 locktype3 = 2 +4052365 goalCount = 1 +4052365 goalTotal = 11 +4052366 otherCount = 22 +~~~ +4052367 CURRENTGOAL IS [4] +~~~ +4052367 UP 11 +4052367 1024 255 +4052392 DOWN 11 +4052392 0 255 +4052405 UP 11 +4052405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4052432 homeCount = 44 +4052432 waitCount = 20 +4052433 ripCount = 19 +4052433 locktype1 = 2 +4052434 locktype2 = 6 +4052434 locktype3 = 2 +4052435 goalCount = 1 +4052435 goalTotal = 11 +4052436 otherCount = 22 +~~~ +4052437 CURRENTGOAL IS [4] +~~~ +4055242 DOWN 11 +4055242 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4055281 homeCount = 44 +4055281 waitCount = 20 +4055282 ripCount = 19 +4055282 locktype1 = 2 +4055283 locktype2 = 6 +4055283 locktype3 = 2 +4055284 goalCount = 1 +4055284 goalTotal = 11 +4055285 otherCount = 22 +~~~ +4055286 CURRENTGOAL IS [4] +~~~ +4059122 UP 8 +4059122 128 255 +~~~ +~~~ +4059571 DOWN 8 +4059571 0 255 +~~~ +~~~ +4059595 0 254 +~~~ +~~~ +4059597 0 252 +~~~ +~~~ +4059599 0 248 +~~~ +~~~ +4059601 0 240 +~~~ +~~~ +4059603 0 224 +~~~ +~~~ +4059604 0 192 +~~~ +~~~ +4059606 0 128 +~~~ +~~~ +4059608 0 0 +~~~ +~~~ +4059610 0 512 +4059611 homeCount = 44 +4059611 waitCount = 20 +4059612 ripCount = 19 +4059612 locktype1 = 2 +4059613 locktype2 = 6 +4059634 locktype3 = 2 +4059635 goalCount = 1 +4059635 goalTotal = 11 +4059635 otherCount = 23 +~~~ +4059721 128 512 +4059773 DOWN 8 +4059773 0 512 +4067416 UP 10 +4067416 waslock = 0 +4067416 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4067444 512 16777728 +~~~ +4067594 512 512 +4068209 DOWN 10 +4068209 0 512 +4068223 UP 10 +4068223 waslock = 0 +4068223 512 512 +~~~ +~~~ +4068228 512 1536 +~~~ +~~~ +4068230 512 1024 +4068231 homeCount = 45 +4068231 waitCount = 20 +4068232 ripCount = 19 +4068232 locktype1 = 2 +4068233 locktype2 = 6 +4068233 locktype3 = 2 +4068234 goalCount = 1 +4068234 goalTotal = 11 +4068235 otherCount = 23 +~~~ +~~~ +4068337 DOWN 10 +4068337 0 1024 +~~~ +~~~ +~~~ +~~~ +4068363 homeCount = 45 +4068363 waitCount = 20 +4068364 ripCount = 19 +4068364 locktype1 = 2 +4068365 locktype2 = 6 +4068365 locktype3 = 2 +4068366 goalCount = 1 +4068366 goalTotal = 11 +4068367 otherCount = 23 +~~~ +4068380 UP 10 +4068380 waslock = 0 +4068380 512 1024 +~~~ +4068460 DOWN 10 +4068460 0 1024 +~~~ +~~~ +~~~ +~~~ +4068482 homeCount = 45 +4068482 waitCount = 20 +4068483 ripCount = 19 +4068483 locktype1 = 2 +4068484 locktype2 = 6 +4068484 locktype3 = 2 +4068485 goalCount = 1 +4068485 goalTotal = 11 +4068486 otherCount = 23 +~~~ +4068495 UP 10 +4068496 waslock = 0 +4068495 512 1024 +~~~ +4072504 DOWN 10 +4072504 0 1024 +~~~ +~~~ +~~~ +~~~ +4072531 homeCount = 45 +4072531 waitCount = 20 +4072532 ripCount = 19 +4072532 locktype1 = 2 +4072533 locktype2 = 6 +4072533 locktype3 = 2 +4072534 goalCount = 1 +4072534 goalTotal = 11 +4072535 otherCount = 23 +~~~ +4072546 UP 10 +4072546 waslock = 0 +4072546 512 1024 +~~~ +4072605 DOWN 10 +4072605 0 1024 +~~~ +~~~ +~~~ +~~~ +4072634 homeCount = 45 +4072635 waitCount = 20 +4072635 ripCount = 19 +4072636 locktype1 = 2 +4072636 locktype2 = 6 +4072637 locktype3 = 2 +4072637 goalCount = 1 +4072638 goalTotal = 11 +4072638 otherCount = 23 +~~~ +4074839 UP 11 +4074839 1024 1024 +4077839 BEEP1 +4077839 BEEP2 +~~~ +~~~ +~~~ +4077859 1024 33555456 +~~~ +4078009 1024 1024 +4083791 DOWN 11 +4083791 0 1024 +~~~ +~~~ +4083818 0 0 +~~~ +~~~ +4083820 0 1 +~~~ +~~~ +4083822 0 3 +~~~ +~~~ +4083823 0 7 +~~~ +~~~ +4083825 0 15 +~~~ +4083827 UP 11 +4083826 1024 15 +~~~ +~~~ +4083828 1024 31 +~~~ +~~~ +4083830 1024 63 +~~~ +4083831 1024 127 +~~~ +~~~ +4083833 1024 255 +4083834 homeCount = 45 +4083834 waitCount = 20 +4083855 ripCount = 20 +4083855 locktype1 = 2 +4083856 locktype2 = 6 +4083856 locktype3 = 2 +4083857 goalCount = 1 +4083857 goalTotal = 11 +4083858 otherCount = 23 +~~~ +4083859 CURRENTGOAL IS [4] +~~~ +4083859 DOWN 11 +4083859 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4083907 homeCount = 45 +4083908 waitCount = 20 +4083909 ripCount = 20 +4083909 locktype1 = 2 +4083910 locktype2 = 6 +4083910 locktype3 = 2 +4083911 goalCount = 1 +4083911 goalTotal = 11 +4083911 otherCount = 23 +~~~ +4083913 CURRENTGOAL IS [4] +~~~ +4083913 UP 11 +4083913 1024 255 +4086791 DOWN 11 +4086791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4086829 homeCount = 45 +4086829 waitCount = 20 +4086830 ripCount = 20 +4086830 locktype1 = 2 +4086831 locktype2 = 6 +4086831 locktype3 = 2 +4086832 goalCount = 1 +4086832 goalTotal = 11 +4086833 otherCount = 23 +~~~ +4086834 CURRENTGOAL IS [4] +~~~ +4087998 UP 11 +4087998 1024 255 +4088002 DOWN 11 +4088002 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4088043 homeCount = 45 +4088043 waitCount = 20 +4088044 ripCount = 20 +4088044 locktype1 = 2 +4088045 locktype2 = 6 +4088045 locktype3 = 2 +4088046 goalCount = 1 +4088046 goalTotal = 11 +4088047 otherCount = 23 +~~~ +4088048 CURRENTGOAL IS [4] +~~~ +4090950 UP 5 +4090950 16 255 +~~~ +~~~ +4091298 DOWN 5 +4091297 0 255 +~~~ +~~~ +4091323 0 254 +~~~ +~~~ +4091325 0 252 +~~~ +~~~ +4091327 0 248 +~~~ +~~~ +4091329 0 240 +~~~ +~~~ +4091330 0 224 +~~~ +~~~ +4091332 0 192 +~~~ +~~~ +4091334 0 128 +~~~ +~~~ +4091336 0 0 +~~~ +~~~ +4091338 0 512 +4091339 homeCount = 45 +4091339 waitCount = 20 +4091340 ripCount = 20 +4091340 locktype1 = 2 +4091341 locktype2 = 6 +4091362 locktype3 = 2 +4091362 goalCount = 1 +4091363 goalTotal = 11 +4091363 otherCount = 24 +~~~ +4091364 16 512 +4091503 DOWN 5 +4091503 0 512 +4095890 UP 10 +4095891 waslock = 0 +4095890 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4095915 512 16777728 +~~~ +4096065 512 512 +4096110 DOWN 10 +4096110 0 512 +~~~ +~~~ +4096133 0 2560 +~~~ +~~~ +4096135 0 2048 +4096136 homeCount = 46 +4096137 waitCount = 20 +4096137 ripCount = 20 +4096138 locktype1 = 2 +4096138 locktype2 = 6 +4096139 locktype3 = 2 +4096139 goalCount = 1 +4096140 goalTotal = 11 +4096140 otherCount = 24 +~~~ +4096211 UP 10 +4096211 waslock = 0 +4096211 512 2048 +~~~ +4100984 DOWN 10 +4100984 0 2048 +~~~ +~~~ +~~~ +~~~ +4101012 homeCount = 46 +4101012 waitCount = 20 +4101013 ripCount = 20 +4101013 locktype1 = 2 +4101014 locktype2 = 6 +4101014 locktype3 = 2 +4101015 goalCount = 1 +4101015 goalTotal = 11 +4101016 otherCount = 24 +~~~ +4102585 UP 12 +4102585 2048 2048 +4104563 DOWN 12 +4104563 0 2048 +4104602 UP 12 +4104602 2048 2048 +4106085 CLICK1 +4106085 CLICK2 +~~~ +~~~ +~~~ +4106111 2048 67110912 +~~~ +4106261 2048 2048 +4113653 DOWN 12 +4113653 0 2048 +~~~ +~~~ +4113670 0 0 +~~~ +~~~ +4113672 0 1 +~~~ +~~~ +4113674 0 3 +~~~ +~~~ +4113675 0 7 +~~~ +~~~ +4113677 0 15 +~~~ +~~~ +4113679 0 31 +~~~ +~~~ +4113681 0 63 +~~~ +~~~ +4113683 0 127 +~~~ +~~~ +4113685 0 255 +4113686 homeCount = 46 +4113686 waitCount = 21 +4113687 ripCount = 20 +4113687 locktype1 = 2 +4113688 locktype2 = 6 +4113709 locktype3 = 2 +4113709 goalCount = 1 +4113710 goalTotal = 11 +4113710 otherCount = 24 +~~~ +4113711 CURRENTGOAL IS [4] +~~~ +4113721 UP 12 +4113721 2048 255 +4113777 DOWN 12 +4113777 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4113818 homeCount = 46 +4113819 waitCount = 21 +4113819 ripCount = 20 +4113820 locktype1 = 2 +4113820 locktype2 = 6 +4113821 locktype3 = 2 +4113821 goalCount = 1 +4113822 goalTotal = 11 +4113822 otherCount = 24 +~~~ +4113823 CURRENTGOAL IS [4] +~~~ +4114284 UP 12 +4114284 2048 255 +4114665 DOWN 12 +4114665 0 255 +4114670 UP 12 +4114670 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4114698 homeCount = 46 +4114699 waitCount = 21 +4114699 ripCount = 20 +4114700 locktype1 = 2 +4114700 locktype2 = 6 +4114701 locktype3 = 2 +4114701 goalCount = 1 +4114702 goalTotal = 11 +4114702 otherCount = 24 +~~~ +4114703 CURRENTGOAL IS [4] +~~~ +4114704 DOWN 12 +4114704 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4114761 homeCount = 46 +4114761 waitCount = 21 +4114762 ripCount = 20 +4114763 locktype1 = 2 +4114763 locktype2 = 6 +4114763 locktype3 = 2 +4114764 goalCount = 1 +4114764 goalTotal = 11 +4114765 otherCount = 24 +~~~ +4114766 CURRENTGOAL IS [4] +~~~ +4114819 UP 12 +4114819 2048 255 +4114989 DOWN 12 +4114989 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4115028 homeCount = 46 +4115028 waitCount = 21 +4115029 ripCount = 20 +4115030 locktype1 = 2 +4115030 locktype2 = 6 +4115030 locktype3 = 2 +4115031 goalCount = 1 +4115031 goalTotal = 11 +4115032 otherCount = 24 +~~~ +4115033 CURRENTGOAL IS [4] +~~~ +4115131 UP 12 +4115131 2048 255 +4115180 DOWN 12 +4115180 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4115219 homeCount = 46 +4115220 waitCount = 21 +4115220 ripCount = 20 +4115221 locktype1 = 2 +4115221 locktype2 = 6 +4115222 locktype3 = 2 +4115222 goalCount = 1 +4115223 goalTotal = 11 +4115223 otherCount = 24 +~~~ +4115224 CURRENTGOAL IS [4] +~~~ +4122428 UP 4 +4122428 8 255 +~~~ +~~~ +4122455 outer reward +~~~ +4122456 8 524543 +~~~ +~~~ +4122729 DOWN 4 +4122729 0 524543 +~~~ +~~~ +4122753 0 524542 +~~~ +~~~ +4122755 0 524540 +~~~ +~~~ +4122757 0 524536 +~~~ +~~~ +4122759 0 524528 +~~~ +~~~ +4122761 0 524512 +~~~ +~~~ +4122762 0 524480 +~~~ +~~~ +4122764 0 524416 +~~~ +~~~ +4122766 0 524288 +~~~ +4122767 8 524288 +~~~ +4122769 8 524800 +4122770 homeCount = 46 +4122770 waitCount = 21 +4122791 ripCount = 20 +4122792 locktype1 = 2 +4122792 locktype2 = 6 +4122793 locktype3 = 2 +4122793 goalCount = 2 +4122794 goalTotal = 12 +4122794 otherCount = 24 +~~~ +4122905 8 512 +4123027 DOWN 4 +4123027 0 512 +4123052 8 512 +4123136 DOWN 4 +4123136 0 512 +4123166 8 512 +4123268 DOWN 4 +4123268 0 512 +4123295 8 512 +4123386 DOWN 4 +4123386 0 512 +4123423 8 512 +4123521 DOWN 4 +4123521 0 512 +4123554 8 512 +4123652 DOWN 4 +4123652 0 512 +4123684 8 512 +4123785 DOWN 4 +4123785 0 512 +4123811 8 512 +4123915 DOWN 4 +4123915 0 512 +4123946 8 512 +4124055 DOWN 4 +4124055 0 512 +4124079 8 512 +4124194 DOWN 4 +4124194 0 512 +4124218 8 512 +4124337 DOWN 4 +4124337 0 512 +4124358 8 512 +4124486 DOWN 4 +4124486 0 512 +4124501 8 512 +4124634 DOWN 4 +4124634 0 512 +4124650 8 512 +4124790 DOWN 4 +4124790 0 512 +4124797 8 512 +4125100 DOWN 4 +4125100 0 512 +4125109 8 512 +4128672 DOWN 4 +4128672 0 512 +4128679 8 512 +4128805 DOWN 4 +4128805 0 512 +4128828 8 512 +4130462 DOWN 4 +4130462 0 512 +4134961 UP 10 +4134961 waslock = 0 +4134961 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4134991 512 16777728 +~~~ +4135000 DOWN 10 +4135000 0 16777728 +~~~ +~~~ +4135021 0 16778752 +~~~ +~~~ +4135023 0 16778240 +4135024 homeCount = 47 +4135025 waitCount = 21 +4135025 ripCount = 20 +4135026 locktype1 = 2 +4135026 locktype2 = 6 +4135027 locktype3 = 2 +4135027 goalCount = 2 +4135028 goalTotal = 12 +4135028 otherCount = 24 +~~~ +4135049 UP 10 +4135050 waslock = 0 +4135049 512 16778240 +~~~ +4135141 512 1024 +4135184 DOWN 10 +4135184 0 1024 +~~~ +~~~ +~~~ +~~~ +4135208 homeCount = 47 +4135209 waitCount = 21 +4135209 ripCount = 20 +4135210 locktype1 = 2 +4135210 locktype2 = 6 +4135211 locktype3 = 2 +4135211 goalCount = 2 +4135212 goalTotal = 12 +4135212 otherCount = 24 +~~~ +4135243 UP 10 +4135243 waslock = 0 +4135243 512 1024 +~~~ +4139256 DOWN 10 +4139256 0 1024 +~~~ +~~~ +~~~ +~~~ +4139281 homeCount = 47 +4139281 waitCount = 21 +4139282 ripCount = 20 +4139282 locktype1 = 2 +4139283 locktype2 = 6 +4139283 locktype3 = 2 +4139284 goalCount = 2 +4139284 goalTotal = 12 +4139285 otherCount = 24 +~~~ +4141258 UP 11 +4141258 1024 1024 +4143110 DOWN 11 +4143110 0 1024 +4143119 UP 11 +4143119 1024 1024 +4143125 DOWN 11 +4143125 0 1024 +4143142 UP 11 +4143142 1024 1024 +4143768 DOWN 11 +4143768 0 1024 +4143852 UP 11 +4143852 1024 1024 +4144258 BEEP1 +4144258 BEEP2 +~~~ +~~~ +~~~ +4144279 1024 33555456 +~~~ +4144429 1024 1024 +4148801 DOWN 11 +4148801 0 1024 +4148814 UP 11 +4148814 1024 1024 +~~~ +~~~ +4148830 1024 0 +~~~ +~~~ +4148831 1024 1 +~~~ +~~~ +4148833 1024 3 +~~~ +~~~ +4148835 1024 7 +~~~ +~~~ +4148837 1024 15 +~~~ +~~~ +4148839 1024 31 +~~~ +~~~ +4148841 1024 63 +~~~ +~~~ +4148842 1024 127 +~~~ +~~~ +4148844 1024 255 +4148845 homeCount = 47 +4148846 waitCount = 21 +4148846 ripCount = 21 +4148847 locktype1 = 2 +4148868 locktype2 = 6 +4148868 locktype3 = 2 +4148869 goalCount = 2 +4148869 goalTotal = 12 +4148870 otherCount = 24 +~~~ +4148871 CURRENTGOAL IS [4] +~~~ +4150765 DOWN 11 +4150765 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4150803 homeCount = 47 +4150804 waitCount = 21 +4150805 ripCount = 21 +4150805 locktype1 = 2 +4150806 locktype2 = 6 +4150806 locktype3 = 2 +4150806 goalCount = 2 +4150807 goalTotal = 12 +4150807 otherCount = 24 +~~~ +4150808 CURRENTGOAL IS [4] +~~~ +4150827 UP 11 +4150827 1024 255 +4150902 DOWN 11 +4150902 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4150944 homeCount = 47 +4150944 waitCount = 21 +4150945 ripCount = 21 +4150945 locktype1 = 2 +4150946 locktype2 = 6 +4150946 locktype3 = 2 +4150947 goalCount = 2 +4150947 goalTotal = 12 +4150948 otherCount = 24 +~~~ +4150949 CURRENTGOAL IS [4] +~~~ +4154099 UP 4 +4154099 8 255 +~~~ +~~~ +4154121 outer reward +~~~ +4154121 8 524543 +~~~ +~~~ +4154381 DOWN 4 +4154381 0 524543 +~~~ +~~~ +4154408 0 524542 +~~~ +4154409 8 524542 +~~~ +~~~ +4154411 8 524540 +~~~ +4154412 8 524536 +~~~ +~~~ +4154414 8 524528 +~~~ +~~~ +4154415 8 524512 +~~~ +~~~ +4154417 8 524480 +~~~ +~~~ +4154419 8 524416 +~~~ +~~~ +4154421 8 524288 +~~~ +~~~ +4154423 8 524800 +4154424 homeCount = 47 +4154424 waitCount = 21 +4154445 ripCount = 21 +4154446 locktype1 = 2 +4154446 locktype2 = 6 +4154447 locktype3 = 2 +4154447 goalCount = 3 +4154448 goalTotal = 13 +4154448 otherCount = 24 +~~~ +4154571 8 512 +4154798 DOWN 4 +4154798 0 512 +4154825 8 512 +4154922 DOWN 4 +4154922 0 512 +4154958 8 512 +4155053 DOWN 4 +4155053 0 512 +4155087 8 512 +4155192 DOWN 4 +4155192 0 512 +4155219 8 512 +4155325 DOWN 4 +4155325 0 512 +4155360 8 512 +4155624 DOWN 4 +4155624 0 512 +4155633 8 512 +4156054 DOWN 4 +4156054 0 512 +4156064 8 512 +4162502 DOWN 4 +4162502 0 512 +4162532 8 512 +4162633 DOWN 4 +4162633 0 512 +4162670 8 512 +4162773 DOWN 4 +4162773 0 512 +4167844 UP 10 +4167845 waslock = 0 +4167844 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4167875 512 16777728 +~~~ +4168025 512 512 +4170914 DOWN 10 +4170914 0 512 +~~~ +~~~ +4170942 0 2560 +~~~ +~~~ +4170944 0 2048 +4170945 homeCount = 48 +4170945 waitCount = 21 +4170946 ripCount = 21 +4170946 locktype1 = 2 +4170946 locktype2 = 6 +4170947 locktype3 = 2 +4170947 goalCount = 3 +4170948 goalTotal = 13 +4170948 otherCount = 24 +~~~ +4170949 UP 10 +4170970 waslock = 0 +4170949 512 2048 +~~~ +4171034 DOWN 10 +4171034 0 2048 +~~~ +~~~ +~~~ +~~~ +4171061 homeCount = 48 +4171062 waitCount = 21 +4171062 ripCount = 21 +4171063 locktype1 = 2 +4171063 locktype2 = 6 +4171064 locktype3 = 2 +4171064 goalCount = 3 +4171065 goalTotal = 13 +4171065 otherCount = 24 +~~~ +4171069 UP 10 +4171071 waslock = 0 +4171069 512 2048 +~~~ +4173229 DOWN 10 +4173229 0 2048 +~~~ +~~~ +~~~ +~~~ +4173254 homeCount = 48 +4173254 waitCount = 21 +4173255 ripCount = 21 +4173255 locktype1 = 2 +4173256 locktype2 = 6 +4173256 locktype3 = 2 +4173257 goalCount = 3 +4173257 goalTotal = 13 +4173258 otherCount = 24 +~~~ +4174888 UP 12 +4174888 2048 2048 +4177658 DOWN 12 +4177658 0 2048 +4177681 UP 12 +4177681 2048 2048 +4177889 CLICK1 +4177889 CLICK2 +~~~ +~~~ +~~~ +4177910 2048 67110912 +~~~ +4178060 2048 2048 +4183984 DOWN 12 +4183984 0 2048 +4184003 UP 12 +4184003 2048 2048 +~~~ +~~~ +4184010 2048 0 +~~~ +~~~ +4184012 2048 1 +~~~ +~~~ +4184014 2048 3 +~~~ +~~~ +4184016 2048 7 +~~~ +~~~ +4184018 2048 15 +~~~ +~~~ +4184019 2048 31 +~~~ +~~~ +4184021 2048 63 +~~~ +~~~ +4184023 2048 127 +~~~ +~~~ +4184025 2048 255 +4184026 homeCount = 48 +4184026 waitCount = 22 +4184027 ripCount = 21 +4184027 locktype1 = 2 +4184048 locktype2 = 6 +4184049 locktype3 = 2 +4184049 goalCount = 3 +4184050 goalTotal = 13 +4184050 otherCount = 24 +~~~ +4184051 CURRENTGOAL IS [4] +~~~ +4184071 DOWN 12 +4184071 0 255 +~~~ +~~~ +~~~ +~~~ +4184086 UP 12 +4184086 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184100 homeCount = 48 +4184100 waitCount = 22 +4184101 ripCount = 21 +4184101 locktype1 = 2 +4184102 locktype2 = 6 +4184102 locktype3 = 2 +4184103 goalCount = 3 +4184103 goalTotal = 13 +4184104 otherCount = 24 +~~~ +4184105 CURRENTGOAL IS [4] +~~~ +4184107 DOWN 12 +4184107 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184155 homeCount = 48 +4184155 waitCount = 22 +4184156 ripCount = 21 +4184156 locktype1 = 2 +4184157 locktype2 = 6 +4184157 locktype3 = 2 +4184158 goalCount = 3 +4184158 goalTotal = 13 +4184159 otherCount = 24 +~~~ +4184160 CURRENTGOAL IS [4] +~~~ +4184181 UP 12 +4184181 2048 255 +4184186 DOWN 12 +4184186 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184206 UP 12 +4184206 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184212 homeCount = 48 +4184213 waitCount = 22 +4184213 ripCount = 21 +4184214 locktype1 = 2 +4184214 locktype2 = 6 +4184215 locktype3 = 2 +4184215 goalCount = 3 +4184216 goalTotal = 13 +4184216 otherCount = 24 +~~~ +4184217 CURRENTGOAL IS [4] +~~~ +4184649 DOWN 12 +4184649 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184690 homeCount = 48 +4184691 waitCount = 22 +4184691 ripCount = 21 +4184692 locktype1 = 2 +4184692 locktype2 = 6 +4184693 locktype3 = 2 +4184693 goalCount = 3 +4184694 goalTotal = 13 +4184694 otherCount = 24 +~~~ +4184695 CURRENTGOAL IS [4] +~~~ +4184704 UP 12 +4184704 2048 255 +4185594 DOWN 12 +4185594 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4185628 homeCount = 48 +4185629 waitCount = 22 +4185629 ripCount = 21 +4185630 locktype1 = 2 +4185630 locktype2 = 6 +4185631 locktype3 = 2 +4185631 goalCount = 3 +4185632 goalTotal = 13 +4185632 otherCount = 24 +~~~ +4185633 CURRENTGOAL IS [4] +~~~ +4185641 UP 12 +4185641 2048 255 +4185708 DOWN 12 +4185707 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4185750 homeCount = 48 +4185750 waitCount = 22 +4185751 ripCount = 21 +4185751 locktype1 = 2 +4185752 locktype2 = 6 +4185752 locktype3 = 2 +4185752 goalCount = 3 +4185753 goalTotal = 13 +4185753 otherCount = 24 +~~~ +4185755 CURRENTGOAL IS [4] +~~~ +4189317 UP 4 +4189317 8 255 +~~~ +~~~ +4189337 outer reward +~~~ +4189337 8 524543 +~~~ +~~~ +4189569 DOWN 4 +4189569 0 524543 +~~~ +~~~ +4189593 0 524542 +~~~ +~~~ +4189595 0 524540 +~~~ +~~~ +4189597 0 524536 +~~~ +~~~ +4189599 0 524528 +~~~ +~~~ +4189601 0 524512 +~~~ +~~~ +4189603 0 524480 +~~~ +~~~ +4189604 0 524416 +~~~ +~~~ +4189606 0 524288 +~~~ +~~~ +4189608 0 524800 +4189609 homeCount = 48 +4189610 waitCount = 22 +4189610 ripCount = 21 +4189611 locktype1 = 2 +4189631 locktype2 = 6 +4189632 locktype3 = 2 +4189632 goalCount = 4 +4189633 goalTotal = 14 +4189633 otherCount = 24 +~~~ +4189634 8 524800 +4189787 8 512 +4190012 DOWN 4 +4190012 0 512 +4190037 8 512 +4190135 DOWN 4 +4190135 0 512 +4190166 8 512 +4190263 DOWN 4 +4190263 0 512 +4190291 8 512 +4190397 DOWN 4 +4190397 0 512 +4190428 8 512 +4190540 DOWN 4 +4190540 0 512 +4190564 8 512 +4190690 DOWN 4 +4190690 0 512 +4190706 8 512 +4190823 DOWN 4 +4190823 0 512 +4190850 8 512 +4190967 DOWN 4 +4190967 0 512 +4190989 8 512 +4191427 DOWN 4 +4191427 0 512 +4191434 8 512 +4196787 DOWN 4 +4196787 0 512 +4196850 8 512 +4196885 DOWN 4 +4196885 0 512 +4201709 UP 10 +4201709 waslock = 0 +4201709 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4201743 512 16777728 +~~~ +4201893 512 512 +4205616 DOWN 10 +4205616 0 512 +~~~ +~~~ +4205637 0 2560 +~~~ +~~~ +4205639 0 2048 +4205640 homeCount = 49 +4205640 waitCount = 22 +4205641 ripCount = 21 +4205641 locktype1 = 2 +4205642 locktype2 = 6 +4205642 locktype3 = 2 +4205643 goalCount = 4 +4205643 goalTotal = 14 +4205644 otherCount = 24 +~~~ +4207370 UP 12 +4207370 2048 2048 +4210795 DOWN 12 +4210795 0 2048 +4210828 UP 12 +4210828 2048 2048 +4213370 CLICK1 +4213370 CLICK2 +~~~ +~~~ +~~~ +4213398 2048 67110912 +~~~ +4213548 2048 2048 +4218738 DOWN 12 +4218738 0 2048 +4218747 UP 12 +4218747 2048 2048 +~~~ +~~~ +4218767 2048 0 +~~~ +~~~ +4218768 2048 1 +~~~ +~~~ +4218770 2048 3 +~~~ +~~~ +4218772 2048 7 +~~~ +~~~ +4218774 2048 15 +~~~ +~~~ +4218776 2048 31 +~~~ +~~~ +4218777 2048 63 +~~~ +~~~ +4218779 2048 127 +~~~ +~~~ +4218781 2048 255 +4218782 homeCount = 49 +4218783 waitCount = 23 +4218783 ripCount = 21 +4218784 locktype1 = 2 +4218805 locktype2 = 6 +4218805 locktype3 = 2 +4218805 goalCount = 4 +4218806 goalTotal = 14 +4218806 otherCount = 24 +~~~ +4218807 CURRENTGOAL IS [4] +~~~ +4218872 DOWN 12 +4218872 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4218914 homeCount = 49 +4218915 waitCount = 23 +4218915 ripCount = 21 +4218916 locktype1 = 2 +4218916 locktype2 = 6 +4218917 locktype3 = 2 +4218917 goalCount = 4 +4218918 goalTotal = 14 +4218918 otherCount = 24 +~~~ +4218919 CURRENTGOAL IS [4] +~~~ +4218920 UP 12 +4218920 2048 255 +4221459 DOWN 12 +4221459 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4221495 homeCount = 49 +4221495 waitCount = 23 +4221496 ripCount = 21 +4221496 locktype1 = 2 +4221497 locktype2 = 6 +4221497 locktype3 = 2 +4221498 goalCount = 4 +4221498 goalTotal = 14 +4221498 otherCount = 24 +~~~ +4221500 CURRENTGOAL IS [4] +~~~ +4224609 UP 4 +4224609 8 255 +~~~ +~~~ +4224631 outer reward +~~~ +4224631 8 524543 +~~~ +~~~ +4224876 DOWN 4 +4224876 0 524543 +~~~ +~~~ +4224899 0 524542 +~~~ +~~~ +4224900 0 524540 +~~~ +~~~ +4224902 0 524536 +~~~ +~~~ +4224904 0 524528 +~~~ +~~~ +4224906 0 524512 +~~~ +~~~ +4224908 0 524480 +~~~ +~~~ +4224909 0 524416 +~~~ +~~~ +4224911 0 524288 +~~~ +~~~ +4224913 0 524800 +4224914 homeCount = 49 +4224915 waitCount = 23 +4224915 ripCount = 21 +4224916 locktype1 = 2 +4224936 locktype2 = 6 +4224937 locktype3 = 2 +4224937 goalCount = 5 +4224938 goalTotal = 15 +4224938 otherCount = 24 +~~~ +4224939 8 524800 +4225081 8 512 +4225313 DOWN 4 +4225313 0 512 +4225326 8 512 +4225439 DOWN 4 +4225439 0 512 +4225457 8 512 +4225572 DOWN 4 +4225572 0 512 +4225586 8 512 +4225707 DOWN 4 +4225707 0 512 +4225724 8 512 +4225835 DOWN 4 +4225835 0 512 +4225858 8 512 +4225971 DOWN 4 +4225971 0 512 +4225988 8 512 +4226102 DOWN 4 +4226102 0 512 +4226123 8 512 +4226240 DOWN 4 +4226240 0 512 +4226257 8 512 +4226379 DOWN 4 +4226379 0 512 +4226390 8 512 +4226527 DOWN 4 +4226527 0 512 +4226533 8 512 +4231515 DOWN 4 +4231515 0 512 +4231529 8 512 +4233369 DOWN 4 +4233369 0 512 +4237735 UP 10 +4237735 waslock = 0 +4237735 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4237765 512 16777728 +~~~ +4237915 512 512 +4241880 DOWN 10 +4241880 0 512 +~~~ +~~~ +4241900 0 1536 +~~~ +~~~ +4241902 0 1024 +4241903 homeCount = 50 +4241903 waitCount = 23 +4241904 ripCount = 21 +4241904 locktype1 = 2 +4241905 locktype2 = 6 +4241905 locktype3 = 2 +4241905 goalCount = 5 +4241906 goalTotal = 15 +4241906 otherCount = 24 +~~~ +4243762 UP 11 +4243762 1024 1024 +4243837 DOWN 11 +4243837 0 1024 +4243952 UP 11 +4243952 1024 1024 +4250763 BEEP1 +4250763 BEEP2 +~~~ +~~~ +~~~ +4250781 1024 33555456 +~~~ +4250931 1024 1024 +4256515 DOWN 11 +4256515 0 1024 +~~~ +~~~ +4256539 0 0 +~~~ +~~~ +4256541 0 1 +~~~ +~~~ +4256543 0 3 +~~~ +~~~ +4256545 0 7 +~~~ +~~~ +4256546 0 15 +~~~ +~~~ +4256548 0 31 +~~~ +~~~ +4256550 0 63 +~~~ +~~~ +4256552 0 127 +~~~ +~~~ +4256554 0 255 +4256555 homeCount = 50 +4256555 waitCount = 23 +4256556 ripCount = 22 +4256556 locktype1 = 2 +4256557 locktype2 = 6 +4256557 locktype3 = 2 +4256578 goalCount = 5 +4256579 goalTotal = 15 +4256579 otherCount = 24 +~~~ +4256580 CURRENTGOAL IS [4] +~~~ +4256581 UP 11 +4256581 1024 255 +4259496 DOWN 11 +4259496 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4259538 homeCount = 50 +4259538 waitCount = 23 +4259539 ripCount = 22 +4259539 locktype1 = 2 +4259540 locktype2 = 6 +4259540 locktype3 = 2 +4259541 goalCount = 5 +4259541 goalTotal = 15 +4259542 otherCount = 24 +~~~ +4259543 CURRENTGOAL IS [4] +~~~ +4265652 UP 4 +4265652 8 255 +~~~ +~~~ +4265674 outer reward +~~~ +4265674 8 524543 +~~~ +~~~ +4265917 DOWN 4 +4265917 0 524543 +~~~ +~~~ +4265942 0 524542 +~~~ +~~~ +4265944 0 524540 +~~~ +~~~ +4265945 0 524536 +~~~ +~~~ +4265947 0 524528 +~~~ +~~~ +4265949 0 524512 +~~~ +~~~ +4265951 0 524480 +~~~ +~~~ +4265953 0 524416 +~~~ +~~~ +4265955 0 524288 +~~~ +~~~ +4265956 0 524800 +4265957 homeCount = 50 +4265958 waitCount = 23 +4265958 ripCount = 22 +4265959 locktype1 = 2 +4265980 locktype2 = 6 +4265980 locktype3 = 2 +4265981 goalCount = 6 +4265981 goalTotal = 16 +4265982 otherCount = 24 +~~~ +4265982 8 524800 +4266107 DOWN 4 +4266107 0 524800 +4266124 0 512 +4266129 8 512 +4266357 DOWN 4 +4266357 0 512 +4266378 8 512 +4266481 DOWN 4 +4266481 0 512 +4266507 8 512 +4266607 DOWN 4 +4266607 0 512 +4266639 8 512 +4266745 DOWN 4 +4266745 0 512 +4266764 8 512 +4266865 DOWN 4 +4266865 0 512 +4266891 8 512 +4266997 DOWN 4 +4266997 0 512 +4267021 8 512 +4267136 DOWN 4 +4267136 0 512 +4267154 8 512 +4274215 DOWN 4 +4274215 0 512 +4280342 UP 10 +4280343 waslock = 0 +4280342 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4280370 512 16777728 +~~~ +4280520 512 512 +4280525 DOWN 10 +4280525 0 512 +4280544 UP 10 +4280544 waslock = 0 +4280544 512 512 +~~~ +~~~ +4280547 512 1536 +~~~ +~~~ +4280549 512 1024 +4280550 homeCount = 51 +4280551 waitCount = 23 +4280551 ripCount = 22 +4280552 locktype1 = 2 +4280552 locktype2 = 6 +4280553 locktype3 = 2 +4280553 goalCount = 6 +4280554 goalTotal = 16 +4280554 otherCount = 24 +~~~ +~~~ +4284174 DOWN 10 +4284174 0 1024 +~~~ +~~~ +~~~ +~~~ +4284198 homeCount = 51 +4284199 waitCount = 23 +4284199 ripCount = 22 +4284200 locktype1 = 2 +4284200 locktype2 = 6 +4284201 locktype3 = 2 +4284201 goalCount = 6 +4284202 goalTotal = 16 +4284202 otherCount = 24 +~~~ +4285958 UP 11 +4285958 1024 1024 +4289670 DOWN 11 +4289669 0 1024 +4289688 UP 11 +4289688 1024 1024 +4290459 BEEP1 +4290459 BEEP2 +~~~ +~~~ +~~~ +4290489 1024 33555456 +~~~ +4290638 1024 1024 +4295683 DOWN 11 +4295683 0 1024 +4295693 UP 11 +4295693 1024 1024 +~~~ +~~~ +4295706 1024 0 +~~~ +~~~ +4295708 1024 1 +~~~ +~~~ +4295710 1024 3 +~~~ +~~~ +4295712 1024 7 +~~~ +~~~ +4295713 1024 15 +~~~ +~~~ +4295715 1024 31 +~~~ +~~~ +4295717 1024 63 +~~~ +~~~ +4295719 1024 127 +~~~ +~~~ +4295721 1024 255 +4295722 homeCount = 51 +4295722 waitCount = 23 +4295723 ripCount = 23 +4295723 locktype1 = 2 +4295744 locktype2 = 6 +4295745 locktype3 = 2 +4295745 goalCount = 6 +4295745 goalTotal = 16 +4295746 otherCount = 24 +~~~ +4295747 CURRENTGOAL IS [4] +~~~ +4295766 DOWN 11 +4295766 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4295801 UP 11 +4295801 1024 255 +4295803 homeCount = 51 +4295803 waitCount = 23 +4295804 ripCount = 23 +4295804 locktype1 = 2 +4295805 locktype2 = 6 +4295805 locktype3 = 2 +4295805 goalCount = 6 +4295806 goalTotal = 16 +4295806 otherCount = 24 +~~~ +4295808 CURRENTGOAL IS [4] +~~~ +4298136 DOWN 11 +4298136 0 255 +4298151 UP 11 +4298150 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298186 homeCount = 51 +4298186 waitCount = 23 +4298187 ripCount = 23 +4298187 locktype1 = 2 +4298188 locktype2 = 6 +4298188 locktype3 = 2 +4298189 goalCount = 6 +4298189 goalTotal = 16 +4298189 otherCount = 24 +~~~ +4298191 CURRENTGOAL IS [4] +~~~ +4298236 DOWN 11 +4298236 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298273 homeCount = 51 +4298274 waitCount = 23 +4298274 ripCount = 23 +4298275 locktype1 = 2 +4298275 locktype2 = 6 +4298276 locktype3 = 2 +4298276 goalCount = 6 +4298277 goalTotal = 16 +4298277 otherCount = 24 +~~~ +4298278 CURRENTGOAL IS [4] +~~~ +4298331 UP 11 +4298331 1024 255 +4298354 DOWN 11 +4298354 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298397 homeCount = 51 +4298397 waitCount = 23 +4298398 ripCount = 23 +4298399 locktype1 = 2 +4298399 locktype2 = 6 +4298399 locktype3 = 2 +4298400 goalCount = 6 +4298400 goalTotal = 16 +4298401 otherCount = 24 +~~~ +4298402 CURRENTGOAL IS [4] +~~~ +4302468 UP 4 +4302468 8 255 +~~~ +~~~ +4302491 outer reward +~~~ +4302492 8 524543 +~~~ +~~~ +4302679 DOWN 4 +4302679 0 524543 +~~~ +~~~ +4302699 0 524542 +~~~ +~~~ +4302701 0 524540 +~~~ +~~~ +4302703 0 524536 +~~~ +~~~ +4302704 0 524528 +~~~ +~~~ +4302706 0 524512 +~~~ +~~~ +4302708 0 524480 +~~~ +~~~ +4302710 0 524416 +~~~ +~~~ +4302712 0 524288 +~~~ +~~~ +4302714 0 524800 +4302715 homeCount = 51 +4302715 waitCount = 23 +4302716 ripCount = 23 +4302716 locktype1 = 2 +4302737 locktype2 = 6 +4302737 locktype3 = 2 +4302738 goalCount = 7 +4302738 goalTotal = 17 +4302739 otherCount = 24 +~~~ +4302739 8 524800 +4302941 8 512 +4303248 DOWN 4 +4303248 0 512 +4303265 8 512 +4303374 DOWN 4 +4303374 0 512 +4303389 8 512 +4303497 DOWN 4 +4303497 0 512 +4303521 8 512 +4303616 DOWN 4 +4303616 0 512 +4303650 8 512 +4303768 DOWN 4 +4303768 0 512 +4303779 8 512 +4304355 DOWN 4 +4304355 0 512 +4304361 8 512 +4309831 DOWN 4 +4309831 0 512 +4314365 UP 10 +4314365 waslock = 0 +4314365 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4314398 512 16777728 +~~~ +4314518 DOWN 10 +4314518 0 16777728 +~~~ +~~~ +4314541 0 16778752 +~~~ +~~~ +4314543 0 16778240 +4314544 homeCount = 52 +4314544 waitCount = 23 +4314545 ripCount = 23 +4314545 locktype1 = 2 +4314546 locktype2 = 6 +4314546 locktype3 = 2 +4314547 goalCount = 7 +4314547 goalTotal = 17 +4314548 otherCount = 24 +~~~ +4314569 UP 10 +4314569 waslock = 0 +4314569 512 16778240 +4314571 512 1024 +~~~ +4320357 DOWN 10 +4320357 0 1024 +~~~ +~~~ +~~~ +~~~ +4320385 homeCount = 52 +4320385 waitCount = 23 +4320386 ripCount = 23 +4320386 locktype1 = 2 +4320387 locktype2 = 6 +4320387 locktype3 = 2 +4320388 goalCount = 7 +4320388 goalTotal = 17 +4320389 otherCount = 24 +~~~ +4322525 UP 11 +4322525 1024 1024 +4324497 DOWN 11 +4324497 0 1024 +4324536 UP 11 +4324536 1024 1024 +4326525 BEEP1 +4326525 BEEP2 +~~~ +~~~ +~~~ +4326554 1024 33555456 +~~~ +4326703 1024 1024 +4332297 DOWN 11 +4332297 0 1024 +~~~ +~~~ +4332321 0 0 +~~~ +~~~ +4332323 0 1 +~~~ +~~~ +4332325 0 3 +~~~ +~~~ +4332327 0 7 +~~~ +~~~ +4332329 0 15 +~~~ +~~~ +4332331 0 31 +~~~ +~~~ +4332332 0 63 +~~~ +~~~ +4332334 0 127 +~~~ +~~~ +4332336 0 255 +4332337 homeCount = 52 +4332338 waitCount = 23 +4332338 ripCount = 24 +4332339 locktype1 = 2 +4332339 locktype2 = 6 +4332360 locktype3 = 2 +4332361 goalCount = 7 +4332361 goalTotal = 17 +4332362 otherCount = 24 +~~~ +4332363 CURRENTGOAL IS [4] +~~~ +4332363 UP 11 +4332363 1024 255 +4336000 DOWN 11 +4336000 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4336037 homeCount = 52 +4336038 waitCount = 23 +4336038 ripCount = 24 +4336039 locktype1 = 2 +4336039 locktype2 = 6 +4336040 locktype3 = 2 +4336040 goalCount = 7 +4336041 goalTotal = 17 +4336041 otherCount = 24 +~~~ +4336042 CURRENTGOAL IS [4] +~~~ +4336052 UP 11 +4336052 1024 255 +4336156 DOWN 11 +4336156 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4336197 homeCount = 52 +4336198 waitCount = 23 +4336198 ripCount = 24 +4336199 locktype1 = 2 +4336199 locktype2 = 6 +4336200 locktype3 = 2 +4336200 goalCount = 7 +4336201 goalTotal = 17 +4336201 otherCount = 24 +~~~ +4336202 CURRENTGOAL IS [4] +~~~ +4340725 UP 4 +4340725 8 255 +~~~ +~~~ +4340744 outer reward +~~~ +4340745 8 524543 +~~~ +~~~ +4340992 DOWN 4 +4340992 0 524543 +~~~ +~~~ +4341014 0 524542 +~~~ +~~~ +4341016 0 524540 +~~~ +~~~ +4341018 0 524536 +~~~ +~~~ +4341020 0 524528 +~~~ +~~~ +4341022 0 524512 +~~~ +~~~ +4341023 0 524480 +~~~ +~~~ +4341025 0 524416 +~~~ +~~~ +4341027 0 524288 +~~~ +~~~ +4341029 0 524800 +4341030 homeCount = 52 +4341030 waitCount = 23 +4341031 ripCount = 24 +4341031 locktype1 = 2 +4341052 locktype2 = 6 +4341053 locktype3 = 2 +4341053 goalCount = 8 +4341054 goalTotal = 18 +4341054 otherCount = 24 +~~~ +4341055 8 524800 +4341194 8 512 +4341417 DOWN 4 +4341417 0 512 +4341435 8 512 +4341664 DOWN 4 +4341664 0 512 +4341693 8 512 +4341796 DOWN 4 +4341796 0 512 +4341811 8 512 +4341917 DOWN 4 +4341917 0 512 +4341945 8 512 +4342051 DOWN 4 +4342051 0 512 +4342074 8 512 +4342192 DOWN 4 +4342192 0 512 +4342207 8 512 +4342332 DOWN 4 +4342332 0 512 +4342351 8 512 +4342475 DOWN 4 +4342475 0 512 +4342489 8 512 +4342627 DOWN 4 +4342627 0 512 +4342636 8 512 +4342773 DOWN 4 +4342773 0 512 +4342786 8 512 +4342928 DOWN 4 +4342928 0 512 +4342942 8 512 +4343079 DOWN 4 +4343079 0 512 +4343090 8 512 +4345668 DOWN 4 +4345668 0 512 +4345673 8 512 +4347893 DOWN 4 +4347893 0 512 +4347977 8 512 +4347999 DOWN 4 +4347999 0 512 +4352959 UP 10 +4352959 waslock = 0 +4352959 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4352990 512 16777728 +~~~ +4353126 DOWN 10 +4353126 0 16777728 +4353139 0 512 +~~~ +~~~ +4353148 0 1536 +~~~ +~~~ +4353150 0 1024 +4353150 homeCount = 53 +4353151 waitCount = 23 +4353151 ripCount = 24 +4353152 locktype1 = 2 +4353152 locktype2 = 6 +4353153 locktype3 = 2 +4353153 goalCount = 8 +4353154 goalTotal = 18 +4353154 otherCount = 24 +~~~ +4353161 UP 10 +4353161 waslock = 0 +4353161 512 1024 +~~~ +4356494 DOWN 10 +4356494 0 1024 +~~~ +~~~ +~~~ +~~~ +4356516 homeCount = 53 +4356517 waitCount = 23 +4356517 ripCount = 24 +4356518 locktype1 = 2 +4356518 locktype2 = 6 +4356519 locktype3 = 2 +4356519 goalCount = 8 +4356520 goalTotal = 18 +4356520 otherCount = 24 +~~~ +4356538 UP 10 +4356539 waslock = 0 +4356538 512 1024 +~~~ +4356593 DOWN 10 +4356593 0 1024 +~~~ +~~~ +~~~ +~~~ +4356618 homeCount = 53 +4356619 waitCount = 23 +4356619 ripCount = 24 +4356620 locktype1 = 2 +4356620 locktype2 = 6 +4356621 locktype3 = 2 +4356621 goalCount = 8 +4356622 goalTotal = 18 +4356622 otherCount = 24 +~~~ +4358394 UP 11 +4358394 1024 1024 +4361395 BEEP1 +4361395 BEEP2 +~~~ +~~~ +~~~ +4361417 1024 33555456 +~~~ +4361567 1024 1024 +4368629 DOWN 11 +4368629 0 1024 +~~~ +~~~ +4368655 0 0 +~~~ +~~~ +4368657 0 1 +~~~ +~~~ +4368659 0 3 +~~~ +~~~ +4368660 0 7 +~~~ +~~~ +4368662 0 15 +~~~ +~~~ +4368664 0 31 +~~~ +~~~ +4368666 0 63 +~~~ +~~~ +4368668 0 127 +~~~ +~~~ +4368669 0 255 +4368670 homeCount = 53 +4368671 waitCount = 23 +4368672 ripCount = 25 +4368672 locktype1 = 2 +4368673 locktype2 = 6 +4368673 locktype3 = 2 +4368694 goalCount = 8 +4368694 goalTotal = 18 +4368695 otherCount = 24 +~~~ +4368696 CURRENTGOAL IS [4] +~~~ +4368696 UP 11 +4368696 1024 255 +4370757 DOWN 11 +4370757 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4370794 homeCount = 53 +4370794 waitCount = 23 +4370795 ripCount = 25 +4370795 locktype1 = 2 +4370796 locktype2 = 6 +4370796 locktype3 = 2 +4370797 goalCount = 8 +4370797 goalTotal = 18 +4370798 otherCount = 24 +~~~ +4370799 CURRENTGOAL IS [4] +~~~ +4370799 UP 11 +4370799 1024 255 +4370853 DOWN 11 +4370853 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4370893 homeCount = 53 +4370893 waitCount = 23 +4370894 ripCount = 25 +4370894 locktype1 = 2 +4370895 locktype2 = 6 +4370895 locktype3 = 2 +4370896 goalCount = 8 +4370896 goalTotal = 18 +4370897 otherCount = 24 +~~~ +4370898 CURRENTGOAL IS [4] +~~~ +4374044 UP 4 +4374044 8 255 +~~~ +~~~ +4374070 outer reward +~~~ +4374070 8 524543 +~~~ +~~~ +4374256 DOWN 4 +4374256 0 524543 +~~~ +~~~ +4374277 0 524542 +~~~ +~~~ +4374279 0 524540 +~~~ +~~~ +4374281 0 524536 +~~~ +~~~ +4374283 0 524528 +~~~ +~~~ +4374284 0 524512 +~~~ +~~~ +4374286 0 524480 +~~~ +~~~ +4374288 0 524416 +~~~ +~~~ +4374290 0 524288 +~~~ +~~~ +4374292 0 524800 +4374293 homeCount = 53 +4374293 waitCount = 23 +4374294 ripCount = 25 +4374315 locktype1 = 2 +4374315 locktype2 = 6 +4374316 locktype3 = 2 +4374316 goalCount = 9 +4374317 goalTotal = 19 +4374317 otherCount = 24 +~~~ +4374318 8 524800 +4374520 8 512 +4374698 DOWN 4 +4374698 0 512 +4374706 8 512 +4374816 DOWN 4 +4374815 0 512 +4374836 8 512 +4374934 DOWN 4 +4374934 0 512 +4374972 8 512 +4375072 DOWN 4 +4375071 0 512 +4375096 8 512 +4375198 DOWN 4 +4375198 0 512 +4375232 8 512 +4375338 DOWN 4 +4375338 0 512 +4375353 8 512 +4375631 DOWN 4 +4375631 0 512 +4375642 8 512 +4379874 DOWN 4 +4379874 0 512 +4379885 8 512 +4380055 DOWN 4 +4380055 0 512 +4380062 8 512 +4381987 DOWN 4 +4381987 0 512 +4382016 8 512 +4382061 DOWN 4 +4382061 0 512 +4385877 UP 10 +4385878 waslock = 0 +4385877 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4385906 512 16777728 +~~~ +4385914 DOWN 10 +4385913 0 16777728 +~~~ +~~~ +4385944 0 16778752 +~~~ +4385945 UP 10 +4385945 waslock = 0 +4385945 512 16778752 +~~~ +4385947 homeCount = 54 +4385948 waitCount = 23 +4385948 ripCount = 25 +4385949 locktype1 = 2 +4385949 locktype2 = 6 +4385950 locktype3 = 2 +4385950 goalCount = 9 +4385951 goalTotal = 19 +4385972 otherCount = 24 +~~~ +4385972 512 16778240 +~~~ +4386055 512 1024 +4390253 DOWN 10 +4390253 0 1024 +~~~ +~~~ +~~~ +~~~ +4390279 homeCount = 54 +4390280 waitCount = 23 +4390280 ripCount = 25 +4390281 locktype1 = 2 +4390281 locktype2 = 6 +4390282 locktype3 = 2 +4390282 goalCount = 9 +4390283 goalTotal = 19 +4390283 otherCount = 24 +~~~ +4390329 UP 10 +4390330 waslock = 0 +4390329 512 1024 +~~~ +4390375 DOWN 10 +4390375 0 1024 +~~~ +~~~ +~~~ +~~~ +4390398 homeCount = 54 +4390399 waitCount = 23 +4390399 ripCount = 25 +4390400 locktype1 = 2 +4390400 locktype2 = 6 +4390401 locktype3 = 2 +4390401 goalCount = 9 +4390402 goalTotal = 19 +4390402 otherCount = 24 +~~~ +4391799 UP 11 +4391799 1024 1024 +4395467 DOWN 11 +4395467 0 1024 +4395532 UP 11 +4395532 1024 1024 +4398800 BEEP1 +4398800 BEEP2 +~~~ +~~~ +~~~ +4398827 1024 33555456 +~~~ +4398977 1024 1024 +4404797 DOWN 11 +4404797 0 1024 +~~~ +~~~ +4404815 0 0 +~~~ +~~~ +4404817 0 1 +~~~ +~~~ +4404819 0 3 +~~~ +~~~ +4404821 0 7 +~~~ +~~~ +4404823 0 15 +~~~ +4404824 UP 11 +4404824 1024 15 +~~~ +~~~ +~~~ +4404826 1024 63 +~~~ +~~~ +4404828 1024 127 +~~~ +~~~ +4404830 1024 255 +4404831 homeCount = 54 +4404831 waitCount = 23 +4404832 ripCount = 26 +4404853 locktype1 = 2 +4404854 locktype2 = 6 +4404854 locktype3 = 2 +4404855 goalCount = 9 +4404855 goalTotal = 19 +4404856 otherCount = 24 +~~~ +4404857 CURRENTGOAL IS [4] +~~~ +4404857 DOWN 11 +4404857 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +4404890 UP 11 +4404890 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4404902 homeCount = 54 +4404903 waitCount = 23 +4404903 ripCount = 26 +4404904 locktype1 = 2 +4404904 locktype2 = 6 +4404905 locktype3 = 2 +4404905 goalCount = 9 +4404906 goalTotal = 19 +4404906 otherCount = 24 +~~~ +4404907 CURRENTGOAL IS [4] +~~~ +4408442 DOWN 11 +4408442 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4408483 homeCount = 54 +4408483 waitCount = 23 +4408484 ripCount = 26 +4408484 locktype1 = 2 +4408485 locktype2 = 6 +4408485 locktype3 = 2 +4408486 goalCount = 9 +4408486 goalTotal = 19 +4408486 otherCount = 24 +~~~ +4408488 CURRENTGOAL IS [4] +~~~ +4411793 UP 4 +4411793 8 255 +~~~ +~~~ +4411820 outer reward +~~~ +4411820 8 524543 +~~~ +~~~ +4411825 outerreps = 12 +~~~ +~~~ +4412010 DOWN 4 +4412010 0 524543 +~~~ +~~~ +4412036 0 524542 +~~~ +~~~ +4412037 0 524540 +~~~ +~~~ +4412039 0 524536 +~~~ +~~~ +4412041 0 524528 +~~~ +~~~ +4412043 0 524512 +~~~ +~~~ +4412045 0 524480 +~~~ +~~~ +4412047 0 524416 +~~~ +~~~ +4412048 0 524288 +~~~ +~~~ +4412050 0 524800 +4412051 homeCount = 54 +4412052 waitCount = 23 +4412052 ripCount = 26 +4412073 locktype1 = 2 +4412074 locktype2 = 6 +4412074 locktype3 = 2 +4412075 goalCount = 0 +4412075 goalTotal = 20 +4412076 otherCount = 24 +~~~ +4412076 8 524800 +4412270 8 512 +4412461 DOWN 4 +4412461 0 512 +4412488 8 512 +4412620 DOWN 4 +4412620 0 512 +4412641 8 512 +4412756 DOWN 4 +4412756 0 512 +4412785 8 512 +4412892 DOWN 4 +4412892 0 512 +4412925 8 512 +4413034 DOWN 4 +4413034 0 512 +4413058 8 512 +4413170 DOWN 4 +4413170 0 512 +4413199 8 512 +4413313 DOWN 4 +4413313 0 512 +4413341 8 512 +4413460 DOWN 4 +4413460 0 512 +4413480 8 512 +4413605 DOWN 4 +4413605 0 512 +4413626 8 512 +4413754 DOWN 4 +4413754 0 512 +4413772 8 512 +4413907 DOWN 4 +4413907 0 512 +4413921 8 512 +4420599 DOWN 4 +4420599 0 512 +4420642 8 512 +4420716 DOWN 4 +4420716 0 512 +4425492 UP 10 +4425492 waslock = 0 +4425492 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4425523 512 16777728 +~~~ +4425673 512 512 +4428204 DOWN 10 +4428204 0 512 +~~~ +~~~ +4428226 0 2560 +~~~ +~~~ +4428228 0 2048 +4428229 homeCount = 55 +4428229 waitCount = 23 +4428230 ripCount = 26 +4428230 locktype1 = 2 +4428231 locktype2 = 6 +4428231 locktype3 = 2 +4428232 goalCount = 0 +4428232 goalTotal = 20 +4428233 otherCount = 24 +~~~ +4430289 UP 12 +4430289 2048 2048 +4435709 DOWN 12 +4435709 0 2048 +4435765 UP 12 +4435765 2048 2048 +4435789 CLICK1 +4435789 CLICK2 +~~~ +~~~ +~~~ +4435811 2048 67110912 +~~~ +4435961 2048 2048 +4442288 DOWN 12 +4442288 0 2048 +~~~ +~~~ +4442307 0 0 +~~~ +~~~ +4442309 0 1 +~~~ +~~~ +4442310 0 3 +~~~ +~~~ +4442312 0 7 +~~~ +~~~ +4442314 0 15 +~~~ +~~~ +4442316 0 31 +~~~ +~~~ +4442318 0 63 +~~~ +~~~ +4442319 0 127 +~~~ +~~~ +4442321 0 255 +4442322 homeCount = 55 +4442323 waitCount = 24 +4442323 ripCount = 26 +4442324 locktype1 = 2 +4442324 locktype2 = 6 +4442325 locktype3 = 2 +4442346 goalCount = 0 +4442346 goalTotal = 20 +4442347 otherCount = 24 +~~~ +4442348 CURRENTGOAL IS [6] +~~~ +4442348 UP 12 +4442348 2048 255 +4442406 DOWN 12 +4442406 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4442443 homeCount = 55 +4442443 waitCount = 24 +4442444 ripCount = 26 +4442444 locktype1 = 2 +4442445 locktype2 = 6 +4442445 locktype3 = 2 +4442446 goalCount = 0 +4442446 goalTotal = 20 +4442447 otherCount = 24 +~~~ +4442448 CURRENTGOAL IS [6] +~~~ +4442871 UP 12 +4442871 2048 255 +4444133 DOWN 12 +4444133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4444173 homeCount = 55 +4444173 waitCount = 24 +4444174 ripCount = 26 +4444174 locktype1 = 2 +4444175 locktype2 = 6 +4444175 locktype3 = 2 +4444176 goalCount = 0 +4444176 goalTotal = 20 +4444177 otherCount = 24 +~~~ +4444178 CURRENTGOAL IS [6] +~~~ +4446862 UP 4 +4446862 8 255 +~~~ +~~~ +4447080 DOWN 4 +4447080 0 255 +~~~ +~~~ +4447099 0 254 +~~~ +~~~ +4447101 0 252 +~~~ +~~~ +4447102 0 248 +~~~ +~~~ +4447104 0 240 +~~~ +~~~ +4447106 0 224 +~~~ +~~~ +4447108 0 192 +~~~ +~~~ +4447110 0 128 +~~~ +~~~ +4447112 0 0 +~~~ +~~~ +4447113 0 512 +4447114 homeCount = 55 +4447115 waitCount = 24 +4447115 ripCount = 26 +4447116 locktype1 = 2 +4447116 locktype2 = 6 +4447137 locktype3 = 2 +4447138 goalCount = 0 +4447138 goalTotal = 20 +4447139 otherCount = 25 +~~~ +4447139 8 512 +4447799 DOWN 4 +4447799 0 512 +4452075 UP 10 +4452076 waslock = 0 +4452075 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4452106 512 16777728 +~~~ +4452117 DOWN 10 +4452117 0 16777728 +4452125 UP 10 +4452125 waslock = 0 +4452125 512 16777728 +~~~ +~~~ +4452143 512 16779776 +~~~ +~~~ +4452145 512 16779264 +4452146 homeCount = 56 +4452147 waitCount = 24 +4452147 ripCount = 26 +4452148 locktype1 = 2 +4452148 locktype2 = 6 +4452149 locktype3 = 2 +4452149 goalCount = 0 +4452150 goalTotal = 20 +4452150 otherCount = 25 +~~~ +~~~ +4452256 512 2048 +4452265 DOWN 10 +4452265 0 2048 +4452277 UP 10 +4452277 waslock = 0 +4452277 512 2048 +~~~ +~~~ +~~~ +~~~ +4452287 homeCount = 56 +4452287 waitCount = 24 +4452288 ripCount = 26 +4452288 locktype1 = 2 +4452289 locktype2 = 6 +4452289 locktype3 = 2 +4452290 goalCount = 0 +4452290 goalTotal = 20 +4452291 otherCount = 25 +~~~ +~~~ +4456357 DOWN 10 +4456357 0 2048 +~~~ +~~~ +~~~ +~~~ +4456382 homeCount = 56 +4456382 waitCount = 24 +4456383 ripCount = 26 +4456383 locktype1 = 2 +4456384 locktype2 = 6 +4456384 locktype3 = 2 +4456385 goalCount = 0 +4456385 goalTotal = 20 +4456386 otherCount = 25 +~~~ +4458260 UP 12 +4458260 2048 2048 +4461699 DOWN 12 +4461699 0 2048 +4461721 UP 12 +4461721 2048 2048 +4461856 DOWN 12 +4461856 0 2048 +4461869 UP 12 +4461869 2048 2048 +4461961 DOWN 12 +4461961 0 2048 +4461992 UP 12 +4461992 2048 2048 +4462760 CLICK1 +4462760 CLICK2 +~~~ +~~~ +~~~ +4462782 2048 67110912 +~~~ +4462932 2048 2048 +4469122 DOWN 12 +4469122 0 2048 +4469136 UP 12 +4469136 2048 2048 +~~~ +~~~ +4469143 2048 0 +~~~ +~~~ +4469145 2048 1 +~~~ +~~~ +4469146 2048 3 +~~~ +~~~ +4469148 2048 7 +~~~ +~~~ +4469150 2048 15 +~~~ +~~~ +4469152 2048 31 +~~~ +~~~ +4469154 2048 63 +~~~ +~~~ +4469155 2048 127 +~~~ +~~~ +4469157 2048 255 +4469158 homeCount = 56 +4469159 waitCount = 25 +4469159 ripCount = 26 +4469160 locktype1 = 2 +4469181 locktype2 = 6 +4469181 locktype3 = 2 +4469181 goalCount = 0 +4469182 goalTotal = 20 +4469182 otherCount = 25 +~~~ +4469183 CURRENTGOAL IS [6] +~~~ +4469216 DOWN 12 +4469216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4469257 homeCount = 56 +4469258 waitCount = 25 +4469258 ripCount = 26 +4469259 locktype1 = 2 +4469259 locktype2 = 6 +4469260 locktype3 = 2 +4469260 goalCount = 0 +4469261 goalTotal = 20 +4469261 otherCount = 25 +~~~ +4469262 CURRENTGOAL IS [6] +~~~ +4478752 UP 4 +4478752 8 255 +~~~ +~~~ +4479850 DOWN 4 +4479850 0 255 +4479863 8 255 +~~~ +~~~ +4479870 8 254 +~~~ +~~~ +4479872 8 252 +~~~ +~~~ +4479874 8 248 +~~~ +~~~ +4479876 8 240 +~~~ +~~~ +4479877 8 224 +~~~ +~~~ +4479879 8 192 +~~~ +~~~ +4479881 8 128 +~~~ +~~~ +4479883 8 0 +~~~ +~~~ +4479885 8 512 +4479886 homeCount = 56 +4479886 waitCount = 25 +4479887 ripCount = 26 +4479887 locktype1 = 2 +4479888 locktype2 = 6 +4479909 locktype3 = 2 +4479909 goalCount = 0 +4479910 goalTotal = 20 +4479910 otherCount = 26 +~~~ +4480518 DOWN 4 +4480518 0 512 +4480662 8 512 +4480695 DOWN 4 +4480695 0 512 +4488328 UP 10 +4488329 waslock = 0 +4488328 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4488357 512 16777728 +~~~ +4488507 512 512 +4491647 DOWN 10 +4491647 0 512 +~~~ +~~~ +4491671 0 1536 +~~~ +~~~ +4491673 0 1024 +4491674 homeCount = 57 +4491675 waitCount = 25 +4491675 ripCount = 26 +4491676 locktype1 = 2 +4491676 locktype2 = 6 +4491677 locktype3 = 2 +4491677 goalCount = 0 +4491678 goalTotal = 20 +4491678 otherCount = 26 +~~~ +4491681 UP 10 +4491681 waslock = 0 +4491681 512 1024 +~~~ +4491732 DOWN 10 +4491732 0 1024 +~~~ +~~~ +~~~ +~~~ +4491759 homeCount = 57 +4491760 waitCount = 25 +4491760 ripCount = 26 +4491761 locktype1 = 2 +4491761 locktype2 = 6 +4491762 locktype3 = 2 +4491762 goalCount = 0 +4491763 goalTotal = 20 +4491763 otherCount = 26 +~~~ +4493146 UP 11 +4493146 1024 1024 +4496146 BEEP1 +4496146 BEEP2 +~~~ +~~~ +~~~ +4496174 1024 33555456 +~~~ +4496324 1024 1024 +4502061 DOWN 11 +4502061 0 1024 +4502078 UP 11 +4502078 1024 1024 +~~~ +~~~ +4502085 1024 0 +~~~ +~~~ +4502087 1024 1 +~~~ +~~~ +4502089 1024 3 +~~~ +~~~ +4502091 1024 7 +~~~ +~~~ +4502093 1024 15 +~~~ +~~~ +4502094 1024 31 +~~~ +~~~ +4502096 1024 63 +~~~ +~~~ +4502098 1024 127 +~~~ +~~~ +4502100 1024 255 +4502101 homeCount = 57 +4502101 waitCount = 25 +4502102 ripCount = 27 +4502102 locktype1 = 2 +4502123 locktype2 = 6 +4502124 locktype3 = 2 +4502124 goalCount = 0 +4502124 goalTotal = 20 +4502125 otherCount = 26 +~~~ +4502126 CURRENTGOAL IS [6] +~~~ +4502199 DOWN 11 +4502199 0 255 +4502220 UP 11 +4502220 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4502253 homeCount = 57 +4502254 waitCount = 25 +4502254 ripCount = 27 +4502255 locktype1 = 2 +4502255 locktype2 = 6 +4502256 locktype3 = 2 +4502256 goalCount = 0 +4502256 goalTotal = 20 +4502257 otherCount = 26 +~~~ +4502258 CURRENTGOAL IS [6] +~~~ +4503858 DOWN 11 +4503858 0 255 +4503869 UP 11 +4503869 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4503906 homeCount = 57 +4503907 waitCount = 25 +4503907 ripCount = 27 +4503908 locktype1 = 2 +4503908 locktype2 = 6 +4503909 locktype3 = 2 +4503909 goalCount = 0 +4503910 goalTotal = 20 +4503910 otherCount = 26 +~~~ +4503911 CURRENTGOAL IS [6] +~~~ +4503932 DOWN 11 +4503932 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4503967 homeCount = 57 +4503967 waitCount = 25 +4503968 ripCount = 27 +4503968 locktype1 = 2 +4503969 locktype2 = 6 +4503969 locktype3 = 2 +4503970 goalCount = 0 +4503970 goalTotal = 20 +4503971 otherCount = 26 +~~~ +4503972 CURRENTGOAL IS [6] +~~~ +4508236 UP 7 +4508236 64 255 +~~~ +~~~ +4509602 DOWN 7 +4509602 0 255 +~~~ +~~~ +4509629 0 254 +~~~ +~~~ +4509631 0 252 +~~~ +~~~ +4509632 0 248 +~~~ +~~~ +4509634 0 240 +~~~ +~~~ +4509636 0 224 +~~~ +~~~ +4509638 0 192 +~~~ +~~~ +4509640 0 128 +~~~ +~~~ +4509642 0 0 +~~~ +~~~ +4509643 0 512 +4509644 homeCount = 57 +4509645 waitCount = 25 +4509645 ripCount = 27 +4509646 locktype1 = 2 +4509646 locktype2 = 6 +4509667 locktype3 = 2 +4509668 goalCount = 0 +4509668 goalTotal = 20 +4509669 otherCount = 27 +~~~ +4513958 UP 10 +4513958 waslock = 0 +4513958 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4513985 512 16777728 +~~~ +4514134 512 512 +4518768 DOWN 10 +4518768 0 512 +4518781 UP 10 +4518781 waslock = 0 +4518781 512 512 +~~~ +~~~ +4518788 512 2560 +~~~ +~~~ +4518790 512 2048 +4518791 homeCount = 58 +4518792 waitCount = 25 +4518792 ripCount = 27 +4518793 locktype1 = 2 +4518793 locktype2 = 6 +4518794 locktype3 = 2 +4518794 goalCount = 0 +4518795 goalTotal = 20 +4518795 otherCount = 27 +~~~ +~~~ +4518875 DOWN 10 +4518875 0 2048 +~~~ +~~~ +~~~ +~~~ +4518904 homeCount = 58 +4518905 waitCount = 25 +4518905 ripCount = 27 +4518906 locktype1 = 2 +4518906 locktype2 = 6 +4518907 locktype3 = 2 +4518907 goalCount = 0 +4518908 goalTotal = 20 +4518908 otherCount = 27 +~~~ +4518933 UP 10 +4518934 waslock = 0 +4518933 512 2048 +~~~ +4518972 DOWN 10 +4518972 0 2048 +~~~ +~~~ +~~~ +~~~ +4518998 homeCount = 58 +4518998 waitCount = 25 +4518999 ripCount = 27 +4518999 locktype1 = 2 +4519000 locktype2 = 6 +4519000 locktype3 = 2 +4519001 goalCount = 0 +4519001 goalTotal = 20 +4519002 otherCount = 27 +~~~ +4522457 UP 12 +4522457 2048 2048 +4523944 DOWN 12 +4523944 0 2048 +4523959 UP 12 +4523959 2048 2048 +4525297 DOWN 12 +4525297 0 2048 +4525313 UP 12 +4525313 2048 2048 +4525457 CLICK1 +4525457 CLICK2 +~~~ +~~~ +~~~ +4525481 2048 67110912 +~~~ +4525631 2048 2048 +4533270 DOWN 12 +4533270 0 2048 +~~~ +~~~ +4533292 0 0 +~~~ +~~~ +4533294 0 1 +~~~ +~~~ +4533295 0 3 +~~~ +~~~ +4533297 0 7 +~~~ +~~~ +4533299 0 15 +~~~ +~~~ +4533301 0 31 +~~~ +~~~ +4533303 0 63 +~~~ +~~~ +4533304 0 127 +~~~ +~~~ +4533306 0 255 +4533307 homeCount = 58 +4533308 waitCount = 26 +4533308 ripCount = 27 +4533309 locktype1 = 2 +4533309 locktype2 = 6 +4533310 locktype3 = 2 +4533331 goalCount = 0 +4533331 goalTotal = 20 +4533332 otherCount = 27 +~~~ +4533333 CURRENTGOAL IS [6] +~~~ +4536223 UP 1 +4536223 1 255 +~~~ +~~~ +4537485 DOWN 1 +4537485 0 255 +~~~ +~~~ +4537514 0 254 +~~~ +~~~ +4537516 0 252 +~~~ +~~~ +4537518 0 248 +~~~ +~~~ +4537519 0 240 +~~~ +~~~ +4537521 0 224 +~~~ +~~~ +4537523 0 192 +~~~ +~~~ +4537525 0 128 +~~~ +~~~ +4537527 0 0 +~~~ +~~~ +4537529 0 512 +4537530 homeCount = 58 +4537530 waitCount = 26 +4537531 ripCount = 27 +4537531 locktype1 = 2 +4537532 locktype2 = 6 +4537553 locktype3 = 2 +4537553 goalCount = 0 +4537554 goalTotal = 20 +4537554 otherCount = 28 +~~~ +4541072 UP 10 +4541073 waslock = 0 +4541072 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4541100 512 16777728 +~~~ +4541113 DOWN 10 +4541113 0 16777728 +4541130 UP 10 +4541130 waslock = 0 +4541130 512 16777728 +~~~ +~~~ +4541134 512 16779776 +~~~ +~~~ +4541136 512 16779264 +4541137 homeCount = 59 +4541138 waitCount = 26 +4541138 ripCount = 27 +4541139 locktype1 = 2 +4541139 locktype2 = 6 +4541139 locktype3 = 2 +4541140 goalCount = 0 +4541140 goalTotal = 20 +4541162 otherCount = 28 +~~~ +~~~ +4541250 512 2048 +4544625 DOWN 10 +4544625 0 2048 +4544638 UP 10 +4544638 waslock = 0 +4544638 512 2048 +~~~ +~~~ +~~~ +~~~ +4544662 homeCount = 59 +4544663 waitCount = 26 +4544663 ripCount = 27 +4544664 locktype1 = 2 +4544664 locktype2 = 6 +4544665 locktype3 = 2 +4544665 goalCount = 0 +4544666 goalTotal = 20 +4544666 otherCount = 28 +~~~ +~~~ +4544737 DOWN 10 +4544737 0 2048 +~~~ +~~~ +~~~ +~~~ +4544772 homeCount = 59 +4544773 waitCount = 26 +4544773 ripCount = 27 +4544774 locktype1 = 2 +4544774 locktype2 = 6 +4544775 locktype3 = 2 +4544775 goalCount = 0 +4544776 goalTotal = 20 +4544776 otherCount = 28 +~~~ +4544787 UP 10 +4544787 waslock = 0 +4544787 512 2048 +~~~ +4544820 DOWN 10 +4544820 0 2048 +~~~ +~~~ +~~~ +~~~ +4544842 homeCount = 59 +4544842 waitCount = 26 +4544843 ripCount = 27 +4544843 locktype1 = 2 +4544844 locktype2 = 6 +4544844 locktype3 = 2 +4544845 goalCount = 0 +4544845 goalTotal = 20 +4544846 otherCount = 28 +~~~ +4546342 UP 12 +4546342 2048 2048 +4548004 DOWN 12 +4548004 0 2048 +4548042 UP 12 +4548042 2048 2048 +4549331 DOWN 12 +4549331 0 2048 +4549341 UP 12 +4549341 2048 2048 +4549342 CLICK1 +4549343 CLICK2 +~~~ +~~~ +~~~ +4549361 2048 67110912 +~~~ +4549511 2048 2048 +4555132 DOWN 12 +4555132 0 2048 +~~~ +~~~ +4555156 0 0 +~~~ +~~~ +4555158 0 1 +~~~ +~~~ +4555159 0 3 +~~~ +~~~ +4555161 0 7 +~~~ +~~~ +4555163 0 15 +~~~ +~~~ +4555165 0 31 +~~~ +~~~ +4555167 0 63 +~~~ +4555168 UP 12 +4555168 2048 63 +~~~ +~~~ +4555170 2048 127 +~~~ +4555171 homeCount = 59 +4555172 waitCount = 27 +4555172 ripCount = 27 +4555173 locktype1 = 2 +4555194 locktype2 = 6 +4555194 locktype3 = 2 +4555194 goalCount = 0 +4555195 goalTotal = 20 +4555195 otherCount = 28 +~~~ +4555197 CURRENTGOAL IS [6] +~~~ +4555197 2048 255 +4555226 DOWN 12 +4555226 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4555259 homeCount = 59 +4555259 waitCount = 27 +4555260 ripCount = 27 +4555260 locktype1 = 2 +4555261 locktype2 = 6 +4555261 locktype3 = 2 +4555262 goalCount = 0 +4555262 goalTotal = 20 +4555263 otherCount = 28 +~~~ +4555264 CURRENTGOAL IS [6] +~~~ +4578122 UP 1 +4578122 1 255 +~~~ +~~~ +4578407 DOWN 1 +4578407 0 255 +~~~ +~~~ +4578425 0 254 +~~~ +~~~ +4578427 0 252 +~~~ +~~~ +4578428 0 248 +~~~ +~~~ +4578430 0 240 +~~~ +~~~ +4578432 0 224 +~~~ +~~~ +4578434 0 192 +~~~ +~~~ +4578436 0 128 +~~~ +~~~ +4578438 0 0 +~~~ +~~~ +4578439 0 512 +4578440 homeCount = 59 +4578441 waitCount = 27 +4578441 ripCount = 27 +4578442 locktype1 = 2 +4578442 locktype2 = 6 +4578463 locktype3 = 2 +4578464 goalCount = 0 +4578464 goalTotal = 20 +4578465 otherCount = 29 +~~~ +4578465 1 512 +4578663 DOWN 1 +4578663 0 512 +4582924 1 512 +4582970 DOWN 1 +4582970 0 512 +4591382 UP 10 +4591383 waslock = 0 +4591382 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4591413 512 16777728 +~~~ +4591509 DOWN 10 +4591509 0 16777728 +4591521 UP 10 +4591521 waslock = 0 +4591521 512 16777728 +~~~ +~~~ +4591537 512 16779776 +~~~ +~~~ +4591539 512 16779264 +4591540 homeCount = 60 +4591541 waitCount = 27 +4591541 ripCount = 27 +4591542 locktype1 = 2 +4591542 locktype2 = 6 +4591543 locktype3 = 2 +4591543 goalCount = 0 +4591544 goalTotal = 20 +4591544 otherCount = 29 +~~~ +~~~ +4591566 512 2048 +4591576 DOWN 10 +4591576 0 2048 +~~~ +~~~ +~~~ +~~~ +4591602 homeCount = 60 +4591603 waitCount = 27 +4591603 ripCount = 27 +4591604 locktype1 = 2 +4591604 locktype2 = 6 +4591605 locktype3 = 2 +4591605 goalCount = 0 +4591606 goalTotal = 20 +4591606 otherCount = 29 +~~~ +4591669 UP 10 +4591669 waslock = 0 +4591669 512 2048 +~~~ +4591896 DOWN 10 +4591896 0 2048 +4591916 UP 10 +4591917 waslock = 0 +4591916 512 2048 +~~~ +~~~ +~~~ +~~~ +4591922 homeCount = 60 +4591922 waitCount = 27 +4591923 ripCount = 27 +4591923 locktype1 = 2 +4591924 locktype2 = 6 +4591924 locktype3 = 2 +4591925 goalCount = 0 +4591925 goalTotal = 20 +4591926 otherCount = 29 +~~~ +~~~ +4592040 DOWN 10 +4592040 0 2048 +~~~ +~~~ +~~~ +~~~ +4592063 homeCount = 60 +4592064 waitCount = 27 +4592064 ripCount = 27 +4592065 locktype1 = 2 +4592065 locktype2 = 6 +4592066 locktype3 = 2 +4592066 goalCount = 0 +4592067 goalTotal = 20 +4592067 otherCount = 29 +~~~ +4592076 UP 10 +4592076 waslock = 0 +4592076 512 2048 +~~~ +4592555 DOWN 10 +4592555 0 2048 +4592571 UP 10 +4592571 waslock = 0 +4592571 512 2048 +~~~ +~~~ +~~~ +~~~ +4592596 homeCount = 60 +4592597 waitCount = 27 +4592597 ripCount = 27 +4592598 locktype1 = 2 +4592598 locktype2 = 6 +4592599 locktype3 = 2 +4592599 goalCount = 0 +4592600 goalTotal = 20 +4592600 otherCount = 29 +~~~ +~~~ +4596305 DOWN 10 +4596305 0 2048 +4596315 UP 10 +4596315 waslock = 0 +4596315 512 2048 +~~~ +~~~ +~~~ +~~~ +4596335 homeCount = 60 +4596335 waitCount = 27 +4596336 ripCount = 27 +4596336 locktype1 = 2 +4596337 locktype2 = 6 +4596337 locktype3 = 2 +4596338 goalCount = 0 +4596338 goalTotal = 20 +4596338 otherCount = 29 +~~~ +~~~ +4596388 DOWN 10 +4596388 0 2048 +~~~ +~~~ +~~~ +~~~ +4596418 homeCount = 60 +4596418 waitCount = 27 +4596419 ripCount = 27 +4596419 locktype1 = 2 +4596420 locktype2 = 6 +4596420 locktype3 = 2 +4596421 goalCount = 0 +4596421 goalTotal = 20 +4596422 otherCount = 29 +~~~ +4598400 UP 12 +4598400 2048 2048 +4599231 DOWN 12 +4599231 0 2048 +4599308 UP 12 +4599308 2048 2048 +4599343 DOWN 12 +4599343 0 2048 +4599349 UP 12 +4599349 2048 2048 +4599898 DOWN 12 +4599898 0 2048 +4599929 UP 12 +4599929 2048 2048 +4599943 DOWN 12 +4599943 0 2048 +4599987 UP 12 +4599987 2048 2048 +4601873 DOWN 12 +4601873 0 2048 +4601883 UP 12 +4601883 2048 2048 +4601892 DOWN 12 +4601892 0 2048 +4601911 UP 12 +4601911 2048 2048 +4602165 DOWN 12 +4602165 0 2048 +4602189 UP 12 +4602189 2048 2048 +4602226 DOWN 12 +4602226 0 2048 +4602261 UP 12 +4602261 2048 2048 +4602431 DOWN 12 +4602431 0 2048 +4602447 UP 12 +4602447 2048 2048 +4604401 CLICK1 +4604401 CLICK2 +~~~ +~~~ +~~~ +4604423 2048 67110912 +~~~ +4604573 2048 2048 +4611485 DOWN 12 +4611485 0 2048 +~~~ +~~~ +4611512 0 0 +~~~ +~~~ +4611513 0 1 +~~~ +~~~ +4611515 0 3 +~~~ +~~~ +4611517 0 7 +~~~ +~~~ +4611519 0 15 +~~~ +~~~ +4611521 0 31 +~~~ +4611522 UP 12 +4611522 2048 31 +~~~ +~~~ +4611524 2048 63 +~~~ +~~~ +4611526 2048 127 +~~~ +4611527 2048 255 +4611528 homeCount = 60 +4611528 waitCount = 28 +4611529 ripCount = 27 +4611550 locktype1 = 2 +4611550 locktype2 = 6 +4611551 locktype3 = 2 +4611551 goalCount = 0 +4611552 goalTotal = 20 +4611552 otherCount = 29 +~~~ +4611553 CURRENTGOAL IS [6] +~~~ +4611569 DOWN 12 +4611569 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4611608 homeCount = 60 +4611608 waitCount = 28 +4611609 ripCount = 27 +4611609 locktype1 = 2 +4611610 locktype2 = 6 +4611610 locktype3 = 2 +4611611 goalCount = 0 +4611611 goalTotal = 20 +4611612 otherCount = 29 +~~~ +4611613 CURRENTGOAL IS [6] +~~~ +4621158 UP 5 +4621158 16 255 +~~~ +~~~ +4621238 DOWN 5 +4621238 0 255 +~~~ +~~~ +4621262 0 254 +~~~ +~~~ +4621263 0 252 +~~~ +~~~ +4621265 0 248 +~~~ +~~~ +4621267 0 240 +~~~ +~~~ +4621269 0 224 +~~~ +~~~ +4621271 0 192 +~~~ +~~~ +4621272 0 128 +~~~ +~~~ +4621274 0 0 +~~~ +~~~ +4621276 0 512 +4621277 homeCount = 60 +4621278 waitCount = 28 +4621278 ripCount = 27 +4621279 locktype1 = 2 +4621279 locktype2 = 6 +4621300 locktype3 = 2 +4621301 goalCount = 0 +4621301 goalTotal = 20 +4621302 otherCount = 30 +~~~ +4621492 16 512 +4621883 DOWN 5 +4621883 0 512 +4653143 UP 10 +4653144 waslock = 0 +4653143 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4653177 512 16777728 +~~~ +4653234 DOWN 10 +4653234 0 16777728 +~~~ +~~~ +4653265 0 16779776 +~~~ +~~~ +4653267 0 16779264 +4653268 homeCount = 61 +4653269 waitCount = 28 +4653269 ripCount = 27 +4653270 locktype1 = 2 +4653270 locktype2 = 6 +4653271 locktype3 = 2 +4653271 goalCount = 0 +4653272 goalTotal = 20 +4653272 otherCount = 30 +~~~ +4653327 0 2048 +4653569 UP 10 +4653569 waslock = 0 +4653569 512 2048 +~~~ +4659370 DOWN 10 +4659370 0 2048 +~~~ +~~~ +~~~ +~~~ +4659397 homeCount = 61 +4659397 waitCount = 28 +4659398 ripCount = 27 +4659398 locktype1 = 2 +4659399 locktype2 = 6 +4659399 locktype3 = 2 +4659400 goalCount = 0 +4659400 goalTotal = 20 +4659401 otherCount = 30 +~~~ +4659401 UP 10 +4659402 waslock = 0 +4659401 512 2048 +~~~ +4659484 DOWN 10 +4659484 0 2048 +~~~ +~~~ +~~~ +~~~ +4659507 homeCount = 61 +4659507 waitCount = 28 +4659508 ripCount = 27 +4659508 locktype1 = 2 +4659509 locktype2 = 6 +4659509 locktype3 = 2 +4659510 goalCount = 0 +4659510 goalTotal = 20 +4659511 otherCount = 30 +~~~ +4662675 UP 12 +4662675 2048 2048 +4664127 DOWN 12 +4664127 0 2048 +4664217 UP 12 +4664217 2048 2048 +4664276 DOWN 12 +4664276 0 2048 +4664339 UP 12 +4664339 2048 2048 +4664365 DOWN 12 +4664365 0 2048 +4664394 UP 12 +4664394 2048 2048 +4664592 DOWN 12 +4664592 0 2048 +4664696 UP 12 +4664696 2048 2048 +4666175 CLICK1 +4666175 CLICK2 +~~~ +~~~ +~~~ +4666193 2048 67110912 +~~~ +4666343 2048 2048 +4673291 DOWN 12 +4673291 0 2048 +~~~ +~~~ +4673313 0 0 +~~~ +~~~ +4673315 0 1 +~~~ +~~~ +4673317 0 3 +~~~ +~~~ +4673319 0 7 +~~~ +~~~ +4673321 0 15 +~~~ +~~~ +4673322 0 31 +~~~ +~~~ +4673324 0 63 +~~~ +~~~ +4673326 0 127 +~~~ +~~~ +4673328 0 255 +4673329 homeCount = 61 +4673329 waitCount = 29 +4673330 ripCount = 27 +4673330 locktype1 = 2 +4673331 locktype2 = 6 +4673331 locktype3 = 2 +4673352 goalCount = 0 +4673353 goalTotal = 20 +4673353 otherCount = 30 +~~~ +4673354 CURRENTGOAL IS [6] +~~~ +4685779 UP 4 +4685779 8 255 +~~~ +~~~ +4686370 DOWN 4 +4686370 0 255 +~~~ +~~~ +4686393 0 254 +~~~ +~~~ +4686395 0 252 +~~~ +~~~ +4686397 0 248 +~~~ +~~~ +4686399 0 240 +~~~ +~~~ +4686400 0 224 +~~~ +~~~ +4686402 0 192 +~~~ +~~~ +4686404 0 128 +~~~ +~~~ +4686406 0 0 +~~~ +~~~ +4686408 0 512 +4686409 homeCount = 61 +4686409 waitCount = 29 +4686410 ripCount = 27 +4686410 locktype1 = 2 +4686411 locktype2 = 6 +4686432 locktype3 = 2 +4686432 goalCount = 0 +4686433 goalTotal = 20 +4686433 otherCount = 31 +~~~ +4686950 8 512 +4687129 DOWN 4 +4687129 0 512 +4691150 UP 10 +4691150 waslock = 0 +4691150 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4691178 512 16777728 +~~~ +4691328 512 512 +4694660 DOWN 10 +4694660 0 512 +~~~ +~~~ +4694682 0 2560 +~~~ +~~~ +4694684 0 2048 +4694685 homeCount = 62 +4694685 waitCount = 29 +4694686 ripCount = 27 +4694686 locktype1 = 2 +4694687 locktype2 = 6 +4694687 locktype3 = 2 +4694688 goalCount = 0 +4694688 goalTotal = 20 +4694689 otherCount = 31 +~~~ +4697293 UP 12 +4697293 2048 2048 +4698720 DOWN 12 +4698720 0 2048 +4698799 UP 12 +4698799 2048 2048 +4700121 DOWN 12 +4700121 0 2048 +4700144 UP 12 +4700144 2048 2048 +4700294 CLICK1 +4700294 CLICK2 +~~~ +~~~ +~~~ +4700314 2048 67110912 +~~~ +4700464 2048 2048 +4707458 DOWN 12 +4707458 0 2048 +~~~ +~~~ +4707482 0 0 +~~~ +~~~ +4707484 0 1 +~~~ +~~~ +4707485 0 3 +~~~ +~~~ +4707487 0 7 +~~~ +~~~ +4707489 0 15 +~~~ +~~~ +4707491 0 31 +~~~ +~~~ +4707493 0 63 +~~~ +~~~ +4707495 0 127 +~~~ +~~~ +4707496 0 255 +4707497 homeCount = 62 +4707498 waitCount = 30 +4707498 ripCount = 27 +4707499 locktype1 = 2 +4707499 locktype2 = 6 +4707521 locktype3 = 2 +4707521 goalCount = 0 +4707522 goalTotal = 20 +4707522 otherCount = 31 +~~~ +4707523 CURRENTGOAL IS [6] +~~~ +4708450 UP 12 +4708450 2048 255 +4708630 DOWN 12 +4708630 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4708670 homeCount = 62 +4708670 waitCount = 30 +4708671 ripCount = 27 +4708671 locktype1 = 2 +4708672 locktype2 = 6 +4708672 locktype3 = 2 +4708673 goalCount = 0 +4708673 goalTotal = 20 +4708674 otherCount = 31 +~~~ +4708675 CURRENTGOAL IS [6] +~~~ +4712657 UP 8 +4712657 128 255 +~~~ +~~~ +4713151 DOWN 8 +4713151 0 255 +~~~ +~~~ +4713172 0 254 +~~~ +~~~ +4713174 0 252 +~~~ +~~~ +4713176 0 248 +~~~ +~~~ +4713178 0 240 +~~~ +~~~ +4713180 0 224 +~~~ +~~~ +4713181 0 192 +~~~ +~~~ +4713183 0 128 +~~~ +~~~ +4713185 0 0 +~~~ +~~~ +4713187 0 512 +4713188 homeCount = 62 +4713188 waitCount = 30 +4713189 ripCount = 27 +4713189 locktype1 = 2 +4713190 locktype2 = 6 +4713211 locktype3 = 2 +4713211 goalCount = 0 +4713212 goalTotal = 20 +4713212 otherCount = 32 +~~~ +4717890 UP 10 +4717891 waslock = 0 +4717890 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4717919 512 16777728 +~~~ +4718069 512 512 +4718228 DOWN 10 +4718228 0 512 +~~~ +~~~ +4718252 0 2560 +~~~ +~~~ +4718254 0 2048 +4718255 homeCount = 63 +4718256 waitCount = 30 +4718256 ripCount = 27 +4718257 locktype1 = 2 +4718257 locktype2 = 6 +4718258 locktype3 = 2 +4718258 goalCount = 0 +4718259 goalTotal = 20 +4718259 otherCount = 32 +~~~ +4718277 UP 10 +4718277 waslock = 0 +4718277 512 2048 +~~~ +4723383 DOWN 10 +4723383 0 2048 +~~~ +~~~ +~~~ +~~~ +4723407 homeCount = 63 +4723408 waitCount = 30 +4723408 ripCount = 27 +4723409 locktype1 = 2 +4723409 locktype2 = 6 +4723409 locktype3 = 2 +4723410 goalCount = 0 +4723410 goalTotal = 20 +4723411 otherCount = 32 +~~~ +4723434 UP 10 +4723434 waslock = 0 +4723434 512 2048 +~~~ +4723461 DOWN 10 +4723461 0 2048 +~~~ +~~~ +~~~ +~~~ +4723486 homeCount = 63 +4723487 waitCount = 30 +4723487 ripCount = 27 +4723488 locktype1 = 2 +4723488 locktype2 = 6 +4723489 locktype3 = 2 +4723489 goalCount = 0 +4723490 goalTotal = 20 +4723490 otherCount = 32 +~~~ +4725181 UP 12 +4725181 2048 2048 +4730467 DOWN 12 +4730467 0 2048 +4730514 UP 12 +4730514 2048 2048 +4732181 CLICK1 +4732181 CLICK2 +~~~ +~~~ +~~~ +4732205 2048 67110912 +~~~ +4732354 2048 2048 +4741145 DOWN 12 +4741145 0 2048 +~~~ +~~~ +4741163 0 0 +~~~ +~~~ +4741165 0 1 +~~~ +~~~ +4741167 0 3 +~~~ +~~~ +4741169 0 7 +~~~ +~~~ +4741171 0 15 +~~~ +~~~ +4741172 0 31 +~~~ +~~~ +4741174 0 63 +~~~ +~~~ +4741176 0 127 +~~~ +~~~ +4741178 0 255 +4741179 homeCount = 63 +4741179 waitCount = 31 +4741180 ripCount = 27 +4741180 locktype1 = 2 +4741181 locktype2 = 6 +4741202 locktype3 = 2 +4741203 goalCount = 0 +4741203 goalTotal = 20 +4741204 otherCount = 32 +~~~ +4741205 CURRENTGOAL IS [6] +~~~ +4744871 UP 4 +4744871 8 255 +~~~ +~~~ +4745068 DOWN 4 +4745068 0 255 +~~~ +~~~ +4745095 0 254 +~~~ +~~~ +4745097 0 252 +~~~ +~~~ +4745099 0 248 +~~~ +~~~ +4745101 0 240 +~~~ +~~~ +4745102 0 224 +~~~ +~~~ +4745104 0 192 +~~~ +~~~ +4745106 0 128 +~~~ +~~~ +4745108 0 0 +~~~ +~~~ +4745110 0 512 +4745111 homeCount = 63 +4745111 waitCount = 31 +4745112 ripCount = 27 +4745112 locktype1 = 2 +4745113 locktype2 = 6 +4745134 locktype3 = 2 +4745134 goalCount = 0 +4745135 goalTotal = 20 +4745135 otherCount = 33 +~~~ +4749055 UP 10 +4749055 waslock = 0 +4749055 512 512 +4749065 DOWN 10 +4749065 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4749082 0 16777728 +~~~ +~~~ +~~~ +4749085 0 16779776 +~~~ +~~~ +4749087 0 16779264 +4749088 homeCount = 64 +4749088 waitCount = 31 +4749089 ripCount = 27 +4749089 locktype1 = 2 +4749089 locktype2 = 6 +4749090 locktype3 = 2 +4749090 goalCount = 0 +4749091 goalTotal = 20 +4749091 otherCount = 33 +~~~ +4749164 UP 10 +4749165 waslock = 0 +4749164 512 16779264 +~~~ +4749232 512 2048 +4752944 DOWN 10 +4752944 0 2048 +~~~ +~~~ +~~~ +~~~ +4752969 homeCount = 64 +4752969 waitCount = 31 +4752970 ripCount = 27 +4752970 locktype1 = 2 +4752971 locktype2 = 6 +4752971 locktype3 = 2 +4752972 goalCount = 0 +4752972 goalTotal = 20 +4752972 otherCount = 33 +~~~ +4752973 UP 10 +4752973 waslock = 0 +4752973 512 2048 +~~~ +4753030 DOWN 10 +4753030 0 2048 +~~~ +~~~ +~~~ +~~~ +4753060 homeCount = 64 +4753061 waitCount = 31 +4753061 ripCount = 27 +4753062 locktype1 = 2 +4753062 locktype2 = 6 +4753063 locktype3 = 2 +4753063 goalCount = 0 +4753064 goalTotal = 20 +4753064 otherCount = 33 +~~~ +4754833 UP 12 +4754833 2048 2048 +4758334 CLICK1 +4758334 CLICK2 +~~~ +~~~ +~~~ +4758357 2048 67110912 +~~~ +4758507 2048 2048 +4765227 DOWN 12 +4765226 0 2048 +~~~ +~~~ +4765245 0 0 +~~~ +~~~ +4765247 0 1 +~~~ +~~~ +4765249 0 3 +~~~ +~~~ +4765251 0 7 +~~~ +~~~ +4765253 0 15 +~~~ +~~~ +4765254 0 31 +~~~ +~~~ +4765256 0 63 +~~~ +~~~ +4765258 0 127 +~~~ +~~~ +4765260 0 255 +4765261 homeCount = 64 +4765261 waitCount = 32 +4765262 ripCount = 27 +4765262 locktype1 = 2 +4765263 locktype2 = 6 +4765284 locktype3 = 2 +4765284 goalCount = 0 +4765285 goalTotal = 20 +4765285 otherCount = 33 +~~~ +4765286 CURRENTGOAL IS [6] +~~~ +4765287 UP 12 +4765287 2048 255 +4765315 DOWN 12 +4765315 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4765350 homeCount = 64 +4765351 waitCount = 32 +4765351 ripCount = 27 +4765352 locktype1 = 2 +4765352 locktype2 = 6 +4765353 locktype3 = 2 +4765353 goalCount = 0 +4765354 goalTotal = 20 +4765354 otherCount = 33 +~~~ +4765355 CURRENTGOAL IS [6] +~~~ +4770972 UP 2 +4770972 2 255 +~~~ +~~~ +4771352 DOWN 2 +4771352 0 255 +~~~ +~~~ +4771375 0 254 +~~~ +~~~ +4771377 0 252 +~~~ +4771379 2 252 +~~~ +~~~ +4771380 2 248 +~~~ +4771381 2 240 +~~~ +~~~ +4771383 2 224 +~~~ +~~~ +4771384 2 192 +~~~ +~~~ +4771386 2 128 +~~~ +~~~ +4771388 2 0 +~~~ +~~~ +4771390 2 512 +4771391 homeCount = 64 +4771392 waitCount = 32 +4771392 ripCount = 27 +4771393 locktype1 = 2 +4771414 locktype2 = 6 +4771414 locktype3 = 2 +4771415 goalCount = 0 +4771415 goalTotal = 20 +4771416 otherCount = 34 +~~~ +4772044 DOWN 2 +4772044 0 512 +4772070 2 512 +4772136 DOWN 2 +4772136 0 512 +4776301 UP 10 +4776302 waslock = 0 +4776301 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4776334 512 16777728 +~~~ +4776484 512 512 +4780543 DOWN 10 +4780543 0 512 +~~~ +~~~ +4780568 0 1536 +~~~ +~~~ +4780570 0 1024 +4780571 homeCount = 65 +4780572 waitCount = 32 +4780572 ripCount = 27 +4780573 locktype1 = 2 +4780573 locktype2 = 6 +4780574 locktype3 = 2 +4780574 goalCount = 0 +4780574 goalTotal = 20 +4780575 otherCount = 34 +~~~ +4780616 UP 10 +4780616 waslock = 0 +4780616 512 1024 +4780631 DOWN 10 +4780631 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +4780658 homeCount = 65 +4780659 waitCount = 32 +4780659 ripCount = 27 +4780660 locktype1 = 2 +4780660 locktype2 = 6 +4780661 locktype3 = 2 +4780661 goalCount = 0 +4780662 goalTotal = 20 +4780662 otherCount = 34 +~~~ +4782283 UP 11 +4782283 1024 1024 +4785849 DOWN 11 +4785849 0 1024 +4785873 UP 11 +4785873 1024 1024 +4785903 DOWN 11 +4785903 0 1024 +4785929 UP 11 +4785929 1024 1024 +4786783 BEEP1 +4786783 BEEP2 +~~~ +~~~ +~~~ +4786802 1024 33555456 +~~~ +4786952 1024 1024 +4791693 DOWN 11 +4791693 0 1024 +~~~ +~~~ +4791720 0 0 +~~~ +~~~ +4791722 0 1 +~~~ +~~~ +4791724 0 3 +~~~ +~~~ +4791726 0 7 +~~~ +~~~ +4791727 0 15 +~~~ +~~~ +4791729 0 31 +~~~ +~~~ +4791731 0 63 +~~~ +~~~ +4791733 0 127 +~~~ +~~~ +4791735 0 255 +4791736 homeCount = 65 +4791736 waitCount = 32 +4791737 ripCount = 28 +4791737 locktype1 = 2 +4791738 locktype2 = 6 +4791738 locktype3 = 2 +4791759 goalCount = 0 +4791760 goalTotal = 20 +4791760 otherCount = 34 +~~~ +4791761 CURRENTGOAL IS [6] +~~~ +4791762 UP 11 +4791762 1024 255 +4796159 DOWN 11 +4796159 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4796199 homeCount = 65 +4796200 waitCount = 32 +4796200 ripCount = 28 +4796201 locktype1 = 2 +4796201 locktype2 = 6 +4796202 locktype3 = 2 +4796202 goalCount = 0 +4796203 goalTotal = 20 +4796203 otherCount = 34 +~~~ +4796204 CURRENTGOAL IS [6] +~~~ +4803475 UP 6 +4803475 32 255 +~~~ +~~~ +4803496 outer reward +~~~ +4803496 32 2097407 +~~~ +~~~ +4803946 32 255 +4810377 DOWN 6 +4810377 0 255 +~~~ +~~~ +4810403 0 254 +~~~ +~~~ +4810405 0 252 +~~~ +~~~ +4810407 0 248 +~~~ +~~~ +4810408 0 240 +~~~ +~~~ +4810410 0 224 +~~~ +~~~ +4810412 0 192 +~~~ +~~~ +4810414 0 128 +~~~ +~~~ +4810416 0 0 +~~~ +~~~ +4810418 0 512 +4810419 homeCount = 65 +4810419 waitCount = 32 +4810420 ripCount = 28 +4810420 locktype1 = 2 +4810420 locktype2 = 6 +4810442 locktype3 = 2 +4810442 goalCount = 1 +4810442 goalTotal = 21 +4810443 otherCount = 34 +~~~ +4810443 32 512 +4810501 DOWN 6 +4810501 0 512 +4810580 32 512 +4810629 DOWN 6 +4810629 0 512 +4813598 32 512 +4813796 DOWN 6 +4813796 0 512 +4813876 32 512 +4813942 DOWN 6 +4813942 0 512 +4818623 UP 10 +4818623 waslock = 0 +4818623 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4818651 512 16777728 +~~~ +4818801 512 512 +4818900 DOWN 10 +4818900 0 512 +~~~ +~~~ +4818925 0 2560 +~~~ +~~~ +4818927 0 2048 +4818928 homeCount = 66 +4818929 waitCount = 32 +4818929 ripCount = 28 +4818930 locktype1 = 2 +4818930 locktype2 = 6 +4818930 locktype3 = 2 +4818931 goalCount = 1 +4818931 goalTotal = 21 +4818932 otherCount = 34 +~~~ +4818952 UP 10 +4818953 waslock = 0 +4818952 512 2048 +~~~ +4822693 DOWN 10 +4822693 0 2048 +~~~ +~~~ +~~~ +~~~ +4822716 homeCount = 66 +4822717 waitCount = 32 +4822717 ripCount = 28 +4822718 locktype1 = 2 +4822718 locktype2 = 6 +4822719 locktype3 = 2 +4822719 goalCount = 1 +4822720 goalTotal = 21 +4822720 otherCount = 34 +~~~ +4824694 UP 12 +4824694 2048 2048 +4829105 DOWN 12 +4829105 0 2048 +4829150 UP 12 +4829150 2048 2048 +4829195 CLICK1 +4829195 CLICK2 +~~~ +~~~ +~~~ +4829217 2048 67110912 +~~~ +4829366 2048 2048 +4835687 DOWN 12 +4835687 0 2048 +~~~ +~~~ +4835713 0 0 +~~~ +~~~ +4835715 0 1 +~~~ +~~~ +4835717 0 3 +~~~ +~~~ +4835719 0 7 +~~~ +~~~ +4835720 0 15 +~~~ +~~~ +4835722 0 31 +~~~ +~~~ +4835724 0 63 +~~~ +~~~ +4835726 0 127 +~~~ +~~~ +4835728 0 255 +4835729 homeCount = 66 +4835729 waitCount = 33 +4835730 ripCount = 28 +4835730 locktype1 = 2 +4835731 locktype2 = 6 +4835752 locktype3 = 2 +4835752 goalCount = 1 +4835753 goalTotal = 21 +4835753 otherCount = 34 +~~~ +4835754 CURRENTGOAL IS [6] +~~~ +4845023 UP 6 +4845023 32 255 +~~~ +~~~ +4845047 outer reward +~~~ +4845048 32 2097407 +~~~ +~~~ +4845425 DOWN 6 +4845425 0 2097407 +4845446 32 2097407 +~~~ +~~~ +4845448 32 2097406 +~~~ +~~~ +4845449 32 2097404 +~~~ +~~~ +4845451 32 2097400 +~~~ +~~~ +4845453 32 2097392 +~~~ +~~~ +4845455 32 2097376 +~~~ +~~~ +4845457 32 2097344 +~~~ +~~~ +4845458 32 2097280 +~~~ +~~~ +4845460 32 2097152 +~~~ +~~~ +4845462 32 2097664 +4845463 homeCount = 66 +4845464 waitCount = 33 +4845484 ripCount = 28 +4845485 locktype1 = 2 +4845485 locktype2 = 6 +4845486 locktype3 = 2 +4845486 goalCount = 2 +4845487 goalTotal = 22 +4845487 otherCount = 34 +~~~ +4845497 32 512 +4851372 DOWN 6 +4851372 0 512 +4851430 32 512 +4851482 DOWN 6 +4851482 0 512 +4851574 32 512 +4851594 DOWN 6 +4851594 0 512 +4855743 UP 10 +4855743 waslock = 0 +4855743 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4855773 512 16777728 +~~~ +4855923 512 512 +4860434 DOWN 10 +4860434 0 512 +~~~ +~~~ +4860459 0 1536 +~~~ +~~~ +4860461 0 1024 +4860462 homeCount = 67 +4860462 waitCount = 33 +4860463 ripCount = 28 +4860463 locktype1 = 2 +4860464 locktype2 = 6 +4860464 locktype3 = 2 +4860464 goalCount = 2 +4860465 goalTotal = 22 +4860465 otherCount = 34 +~~~ +4862633 UP 11 +4862633 1024 1024 +4864053 DOWN 11 +4864053 0 1024 +4864086 UP 11 +4864086 1024 1024 +4865406 DOWN 11 +4865406 0 1024 +4865441 UP 11 +4865441 1024 1024 +4866186 DOWN 11 +4866186 0 1024 +4866229 UP 11 +4866229 1024 1024 +4866243 DOWN 11 +4866243 0 1024 +4866287 UP 11 +4866287 1024 1024 +4866547 DOWN 11 +4866547 0 1024 +4866559 UP 11 +4866559 1024 1024 +4866633 BEEP1 +4866633 BEEP2 +~~~ +~~~ +~~~ +4866656 1024 33555456 +~~~ +4866806 1024 1024 +4871315 DOWN 11 +4871315 0 1024 +~~~ +~~~ +4871342 0 0 +~~~ +~~~ +4871344 0 1 +~~~ +4871345 UP 11 +4871345 1024 1 +~~~ +~~~ +4871347 1024 3 +~~~ +~~~ +4871348 1024 7 +~~~ +~~~ +4871350 1024 15 +~~~ +4871351 1024 31 +~~~ +~~~ +4871353 1024 63 +~~~ +~~~ +4871354 1024 127 +~~~ +~~~ +4871356 1024 255 +4871357 homeCount = 67 +4871379 waitCount = 33 +4871379 ripCount = 29 +4871380 locktype1 = 2 +4871380 locktype2 = 6 +4871380 locktype3 = 2 +4871381 goalCount = 2 +4871381 goalTotal = 22 +4871382 otherCount = 34 +~~~ +4871383 CURRENTGOAL IS [6] +~~~ +4871383 DOWN 11 +4871383 0 255 +4871405 UP 11 +4871405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4871442 homeCount = 67 +4871442 waitCount = 33 +4871443 ripCount = 29 +4871443 locktype1 = 2 +4871444 locktype2 = 6 +4871444 locktype3 = 2 +4871445 goalCount = 2 +4871445 goalTotal = 22 +4871445 otherCount = 34 +~~~ +4871447 CURRENTGOAL IS [6] +~~~ +4873361 DOWN 11 +4873361 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4873397 homeCount = 67 +4873397 waitCount = 33 +4873398 ripCount = 29 +4873398 locktype1 = 2 +4873399 locktype2 = 6 +4873399 locktype3 = 2 +4873400 goalCount = 2 +4873400 goalTotal = 22 +4873401 otherCount = 34 +~~~ +4873402 CURRENTGOAL IS [6] +~~~ +4873455 UP 11 +4873455 1024 255 +4873472 DOWN 11 +4873472 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +4873497 UP 11 +4873497 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4873509 homeCount = 67 +4873510 waitCount = 33 +4873510 ripCount = 29 +4873511 locktype1 = 2 +4873511 locktype2 = 6 +4873512 locktype3 = 2 +4873512 goalCount = 2 +4873512 goalTotal = 22 +4873513 otherCount = 34 +~~~ +4873514 CURRENTGOAL IS [6] +~~~ +4874404 DOWN 11 +4874404 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4874438 homeCount = 67 +4874438 waitCount = 33 +4874439 ripCount = 29 +4874439 locktype1 = 2 +4874440 locktype2 = 6 +4874440 locktype3 = 2 +4874441 goalCount = 2 +4874441 goalTotal = 22 +4874442 otherCount = 34 +~~~ +4874443 CURRENTGOAL IS [6] +~~~ +4877582 UP 7 +4877582 64 255 +~~~ +~~~ +4878186 DOWN 7 +4878186 0 255 +~~~ +~~~ +4878208 0 254 +~~~ +~~~ +4878210 0 252 +~~~ +~~~ +4878212 0 248 +~~~ +~~~ +4878214 0 240 +~~~ +~~~ +4878215 0 224 +~~~ +~~~ +4878217 0 192 +~~~ +~~~ +4878219 0 128 +~~~ +~~~ +4878221 0 0 +~~~ +~~~ +4878223 0 512 +4878224 homeCount = 67 +4878224 waitCount = 33 +4878225 ripCount = 29 +4878225 locktype1 = 2 +4878226 locktype2 = 6 +4878247 locktype3 = 2 +4878247 goalCount = 2 +4878248 goalTotal = 22 +4878248 otherCount = 35 +~~~ +4878255 64 512 +4878364 DOWN 7 +4878364 0 512 +4888220 UP 6 +4888220 32 512 +~~~ +4888240 WHITENOISE +~~~ +~~~ +~~~ +4888242 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4888552 DOWN 6 +4888552 0 0 +4888580 32 0 +4889335 DOWN 6 +4889335 0 0 +4895758 512 0 +4895900 0 0 +4896086 512 0 +4896709 0 0 +4896767 512 0 +4896810 0 0 +4913240 LOCKEND +~~~ +~~~ +~~~ +4913260 0 512 +4913827 UP 10 +4913827 waslock = 0 +4913827 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4913856 512 16777728 +~~~ +4914006 512 512 +4919172 DOWN 10 +4919171 0 512 +~~~ +~~~ +4919189 0 1536 +~~~ +~~~ +4919191 0 1024 +4919192 homeCount = 68 +4919192 waitCount = 33 +4919193 ripCount = 29 +4919193 locktype1 = 2 +4919193 locktype2 = 7 +4919194 locktype3 = 2 +4919194 goalCount = 2 +4919195 goalTotal = 22 +4919195 otherCount = 35 +~~~ +4919208 UP 10 +4919208 waslock = 0 +4919208 512 1024 +~~~ +4919258 DOWN 10 +4919258 0 1024 +~~~ +~~~ +~~~ +~~~ +4919283 homeCount = 68 +4919284 waitCount = 33 +4919284 ripCount = 29 +4919285 locktype1 = 2 +4919285 locktype2 = 7 +4919286 locktype3 = 2 +4919286 goalCount = 2 +4919287 goalTotal = 22 +4919287 otherCount = 35 +~~~ +4920827 UP 11 +4920827 1024 1024 +4923419 DOWN 11 +4923419 0 1024 +4923459 UP 11 +4923459 1024 1024 +4924327 BEEP1 +4924327 BEEP2 +~~~ +~~~ +~~~ +4924356 1024 33555456 +~~~ +4924506 1024 1024 +4930037 DOWN 11 +4930037 0 1024 +~~~ +~~~ +4930062 UP 11 +4930062 1024 0 +~~~ +~~~ +4930064 1024 1 +~~~ +~~~ +4930066 1024 3 +~~~ +~~~ +4930067 1024 7 +~~~ +~~~ +4930069 1024 15 +~~~ +~~~ +4930071 1024 31 +~~~ +~~~ +4930073 1024 63 +~~~ +~~~ +4930075 1024 127 +~~~ +~~~ +4930076 1024 255 +4930078 homeCount = 68 +4930078 waitCount = 33 +4930079 ripCount = 30 +4930100 locktype1 = 2 +4930100 locktype2 = 7 +4930101 locktype3 = 2 +4930101 goalCount = 2 +4930102 goalTotal = 22 +4930102 otherCount = 35 +~~~ +4930103 CURRENTGOAL IS [6] +~~~ +4931788 DOWN 11 +4931788 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4931830 homeCount = 68 +4931831 waitCount = 33 +4931831 ripCount = 30 +4931832 locktype1 = 2 +4931832 locktype2 = 7 +4931833 locktype3 = 2 +4931833 goalCount = 2 +4931834 goalTotal = 22 +4931834 otherCount = 35 +~~~ +4931835 CURRENTGOAL IS [6] +~~~ +4931856 UP 11 +4931856 1024 255 +4931911 DOWN 11 +4931911 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4931949 homeCount = 68 +4931949 waitCount = 33 +4931950 ripCount = 30 +4931950 locktype1 = 2 +4931951 locktype2 = 7 +4931951 locktype3 = 2 +4931952 goalCount = 2 +4931952 goalTotal = 22 +4931953 otherCount = 35 +~~~ +4931954 CURRENTGOAL IS [6] +~~~ +4935641 UP 6 +4935641 32 255 +~~~ +~~~ +4935667 outer reward +~~~ +4935667 32 2097407 +~~~ +~~~ +4935968 DOWN 6 +4935968 0 2097407 +~~~ +4935992 32 2097407 +~~~ +4935993 32 2097406 +~~~ +~~~ +4935995 32 2097404 +~~~ +~~~ +4935997 32 2097400 +~~~ +~~~ +4935999 32 2097392 +~~~ +~~~ +4936000 32 2097376 +~~~ +~~~ +4936002 32 2097344 +~~~ +~~~ +4936004 32 2097280 +~~~ +~~~ +4936006 32 2097152 +~~~ +~~~ +4936008 32 2097664 +4936009 homeCount = 68 +4936029 waitCount = 33 +4936031 ripCount = 30 +4936031 locktype1 = 2 +4936031 locktype2 = 7 +4936032 locktype3 = 2 +4936032 goalCount = 3 +4936033 goalTotal = 23 +4936033 otherCount = 35 +~~~ +4936117 32 512 +4943256 DOWN 6 +4943256 0 512 +4943326 32 512 +4943341 DOWN 6 +4943341 0 512 +4947597 UP 10 +4947597 waslock = 0 +4947597 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4947631 512 16777728 +~~~ +4947780 512 512 +4947829 DOWN 10 +4947829 0 512 +~~~ +~~~ +4947853 0 2560 +~~~ +~~~ +4947855 0 2048 +4947856 homeCount = 69 +4947856 waitCount = 33 +4947857 ripCount = 30 +4947857 locktype1 = 2 +4947858 locktype2 = 7 +4947858 locktype3 = 2 +4947859 goalCount = 3 +4947859 goalTotal = 23 +4947860 otherCount = 35 +~~~ +4947988 UP 10 +4947989 waslock = 0 +4947988 512 2048 +~~~ +4952305 DOWN 10 +4952305 0 2048 +~~~ +~~~ +~~~ +~~~ +4952326 homeCount = 69 +4952326 waitCount = 33 +4952327 ripCount = 30 +4952327 locktype1 = 2 +4952328 locktype2 = 7 +4952328 locktype3 = 2 +4952329 goalCount = 3 +4952329 goalTotal = 23 +4952330 otherCount = 35 +~~~ +4952364 UP 10 +4952365 waslock = 0 +4952364 512 2048 +~~~ +4952401 DOWN 10 +4952401 0 2048 +~~~ +~~~ +~~~ +~~~ +4952421 homeCount = 69 +4952422 waitCount = 33 +4952422 ripCount = 30 +4952423 locktype1 = 2 +4952423 locktype2 = 7 +4952424 locktype3 = 2 +4952424 goalCount = 3 +4952425 goalTotal = 23 +4952425 otherCount = 35 +~~~ +4954268 UP 12 +4954268 2048 2048 +4956332 DOWN 12 +4956332 0 2048 +4956407 UP 12 +4956407 2048 2048 +4957946 DOWN 12 +4957946 0 2048 +4958000 UP 12 +4958000 2048 2048 +4959769 CLICK1 +4959769 CLICK2 +~~~ +~~~ +~~~ +4959795 2048 67110912 +~~~ +4959945 2048 2048 +4966527 DOWN 12 +4966527 0 2048 +~~~ +~~~ +4966544 0 0 +~~~ +~~~ +4966546 0 1 +~~~ +~~~ +4966548 0 3 +~~~ +~~~ +4966550 0 7 +~~~ +~~~ +4966552 0 15 +~~~ +~~~ +4966553 0 31 +~~~ +4966555 UP 12 +4966555 2048 31 +~~~ +~~~ +4966557 2048 63 +~~~ +~~~ +4966558 2048 127 +~~~ +4966559 2048 255 +4966560 homeCount = 69 +4966561 waitCount = 34 +4966562 ripCount = 30 +4966583 locktype1 = 2 +4966583 locktype2 = 7 +4966584 locktype3 = 2 +4966584 goalCount = 3 +4966585 goalTotal = 23 +4966585 otherCount = 35 +~~~ +4966586 CURRENTGOAL IS [6] +~~~ +4966600 DOWN 12 +4966600 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4966632 homeCount = 69 +4966632 waitCount = 34 +4966633 ripCount = 30 +4966633 locktype1 = 2 +4966634 locktype2 = 7 +4966634 locktype3 = 2 +4966635 goalCount = 3 +4966635 goalTotal = 23 +4966636 otherCount = 35 +~~~ +4966637 CURRENTGOAL IS [6] +~~~ +4966668 UP 12 +4966668 2048 255 +4969174 DOWN 12 +4969174 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4969211 homeCount = 69 +4969212 waitCount = 34 +4969212 ripCount = 30 +4969213 locktype1 = 2 +4969213 locktype2 = 7 +4969214 locktype3 = 2 +4969214 goalCount = 3 +4969215 goalTotal = 23 +4969215 otherCount = 35 +~~~ +4969216 CURRENTGOAL IS [6] +~~~ +4974183 UP 6 +4974183 32 255 +~~~ +~~~ +4974209 outer reward +~~~ +4974209 32 2097407 +~~~ +~~~ +4974418 DOWN 6 +4974418 0 2097407 +~~~ +~~~ +4974436 0 2097406 +~~~ +~~~ +4974438 0 2097404 +~~~ +~~~ +4974440 0 2097400 +~~~ +~~~ +4974442 0 2097392 +~~~ +~~~ +4974444 0 2097376 +~~~ +~~~ +4974445 0 2097344 +~~~ +~~~ +4974447 0 2097280 +~~~ +~~~ +4974449 0 2097152 +~~~ +~~~ +4974451 0 2097664 +4974452 homeCount = 69 +4974453 waitCount = 34 +4974453 ripCount = 30 +4974474 locktype1 = 2 +4974475 locktype2 = 7 +4974475 locktype3 = 2 +4974476 goalCount = 4 +4974476 goalTotal = 24 +4974477 otherCount = 35 +~~~ +4974477 32 2097664 +4974659 32 512 +4975104 DOWN 6 +4975104 0 512 +4975119 32 512 +4975232 DOWN 6 +4975232 0 512 +4975246 32 512 +4975346 DOWN 6 +4975346 0 512 +4975380 32 512 +4975480 DOWN 6 +4975480 0 512 +4975509 32 512 +4975617 DOWN 6 +4975617 0 512 +4975642 32 512 +4975756 DOWN 6 +4975756 0 512 +4975773 32 512 +4975895 DOWN 6 +4975895 0 512 +4975910 32 512 +4980733 DOWN 6 +4980733 0 512 +4980774 32 512 +4980818 DOWN 6 +4980818 0 512 +4984695 UP 10 +4984695 waslock = 0 +4984694 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4984722 512 16777728 +~~~ +4984872 512 512 +4989193 DOWN 10 +4989193 0 512 +~~~ +~~~ +4989216 0 1536 +~~~ +~~~ +4989218 0 1024 +4989219 homeCount = 70 +4989219 waitCount = 34 +4989220 ripCount = 30 +4989220 locktype1 = 2 +4989221 locktype2 = 7 +4989221 locktype3 = 2 +4989222 goalCount = 4 +4989222 goalTotal = 24 +4989223 otherCount = 35 +~~~ +4989259 UP 10 +4989260 waslock = 0 +4989259 512 1024 +4989279 DOWN 10 +4989279 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +4989301 homeCount = 70 +4989301 waitCount = 34 +4989302 ripCount = 30 +4989302 locktype1 = 2 +4989303 locktype2 = 7 +4989303 locktype3 = 2 +4989304 goalCount = 4 +4989304 goalTotal = 24 +4989305 otherCount = 35 +~~~ +4991305 UP 11 +4991305 1024 1024 +4992871 DOWN 11 +4992871 0 1024 +4992939 UP 11 +4992939 1024 1024 +4992987 DOWN 11 +4992987 0 1024 +4992997 UP 11 +4992997 1024 1024 +4994737 DOWN 11 +4994737 0 1024 +4994747 UP 11 +4994747 1024 1024 +4997651 DOWN 11 +4997651 0 1024 +4997663 UP 11 +4997663 1024 1024 +4998026 DOWN 11 +4998026 0 1024 +4998060 UP 11 +4998060 1024 1024 +4998077 DOWN 11 +4998077 0 1024 +4998088 UP 11 +4998088 1024 1024 +4998306 BEEP1 +4998306 BEEP2 +~~~ +~~~ +~~~ +4998329 1024 33555456 +~~~ +4998478 1024 1024 +5004681 DOWN 11 +5004681 0 1024 +~~~ +~~~ +5004706 0 0 +~~~ +~~~ +5004708 0 1 +~~~ +~~~ +5004710 0 3 +~~~ +~~~ +5004711 UP 11 +5004711 1024 7 +~~~ +~~~ +5004713 1024 15 +~~~ +~~~ +5004715 1024 31 +~~~ +~~~ +5004717 1024 63 +~~~ +~~~ +5004719 1024 127 +~~~ +~~~ +5004720 1024 255 +5004721 homeCount = 70 +5004722 waitCount = 34 +5004723 ripCount = 31 +5004744 locktype1 = 2 +5004744 locktype2 = 7 +5004744 locktype3 = 2 +5004745 goalCount = 4 +5004745 goalTotal = 24 +5004746 otherCount = 35 +~~~ +5004747 CURRENTGOAL IS [6] +~~~ +5004769 DOWN 11 +5004769 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5004805 homeCount = 70 +5004806 waitCount = 34 +5004806 ripCount = 31 +5004807 locktype1 = 2 +5004807 locktype2 = 7 +5004808 locktype3 = 2 +5004808 goalCount = 4 +5004809 goalTotal = 24 +5004809 otherCount = 35 +~~~ +5004810 CURRENTGOAL IS [6] +~~~ +5014643 UP 6 +5014643 32 255 +~~~ +~~~ +5014669 outer reward +~~~ +5014670 32 2097407 +~~~ +~~~ +5014904 DOWN 6 +5014904 0 2097407 +~~~ +~~~ +5014928 0 2097406 +~~~ +~~~ +5014930 0 2097404 +~~~ +~~~ +5014931 0 2097400 +~~~ +~~~ +5014933 0 2097392 +~~~ +~~~ +5014935 0 2097376 +~~~ +~~~ +5014937 0 2097344 +~~~ +~~~ +5014939 0 2097280 +~~~ +~~~ +5014940 0 2097152 +~~~ +~~~ +5014942 0 2097664 +5014943 homeCount = 70 +5014944 waitCount = 34 +5014944 ripCount = 31 +5014966 locktype1 = 2 +5014966 locktype2 = 7 +5014966 locktype3 = 2 +5014967 goalCount = 5 +5014967 goalTotal = 25 +5014968 otherCount = 35 +~~~ +5014968 32 2097664 +5015119 32 512 +5015329 DOWN 6 +5015329 0 512 +5015358 32 512 +5015461 DOWN 6 +5015461 0 512 +5015476 32 512 +5015588 DOWN 6 +5015588 0 512 +5015600 32 512 +5015717 DOWN 6 +5015717 0 512 +5015727 32 512 +5015843 DOWN 6 +5015843 0 512 +5015855 32 512 +5020832 DOWN 6 +5020832 0 512 +5020886 32 512 +5020928 DOWN 6 +5020928 0 512 +5026912 UP 10 +5026912 waslock = 0 +5026912 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5026939 512 16777728 +~~~ +5027086 DOWN 10 +5027086 0 16777728 +5027089 0 512 +~~~ +~~~ +5027104 0 2560 +~~~ +~~~ +5027106 0 2048 +5027107 homeCount = 71 +5027107 waitCount = 34 +5027108 ripCount = 31 +5027108 locktype1 = 2 +5027109 locktype2 = 7 +5027109 locktype3 = 2 +5027110 goalCount = 5 +5027110 goalTotal = 25 +5027111 otherCount = 35 +~~~ +5027415 UP 10 +5027415 waslock = 0 +5027415 512 2048 +~~~ +5032403 DOWN 10 +5032403 0 2048 +5032408 UP 10 +5032409 waslock = 0 +5032408 512 2048 +~~~ +~~~ +~~~ +~~~ +5032426 homeCount = 71 +5032427 waitCount = 34 +5032427 ripCount = 31 +5032428 locktype1 = 2 +5032428 locktype2 = 7 +5032429 locktype3 = 2 +5032429 goalCount = 5 +5032430 goalTotal = 25 +5032430 otherCount = 35 +~~~ +~~~ +5032515 DOWN 10 +5032515 0 2048 +~~~ +~~~ +~~~ +~~~ +5032539 homeCount = 71 +5032539 waitCount = 34 +5032540 ripCount = 31 +5032540 locktype1 = 2 +5032541 locktype2 = 7 +5032541 locktype3 = 2 +5032542 goalCount = 5 +5032542 goalTotal = 25 +5032543 otherCount = 35 +~~~ +5032546 UP 10 +5032546 waslock = 0 +5032546 512 2048 +~~~ +5032613 DOWN 10 +5032613 0 2048 +~~~ +~~~ +~~~ +~~~ +5032639 homeCount = 71 +5032640 waitCount = 34 +5032640 ripCount = 31 +5032641 locktype1 = 2 +5032641 locktype2 = 7 +5032642 locktype3 = 2 +5032642 goalCount = 5 +5032643 goalTotal = 25 +5032643 otherCount = 35 +~~~ +5034484 UP 12 +5034484 2048 2048 +5036958 DOWN 12 +5036958 0 2048 +5037036 UP 12 +5037036 2048 2048 +5040518 DOWN 12 +5040518 0 2048 +5040568 UP 12 +5040568 2048 2048 +5042485 CLICK1 +5042485 CLICK2 +~~~ +~~~ +~~~ +5042506 2048 67110912 +~~~ +5042656 2048 2048 +5047511 DOWN 12 +5047510 0 2048 +5047520 UP 12 +5047520 2048 2048 +~~~ +~~~ +5047534 2048 0 +~~~ +~~~ +5047536 2048 1 +~~~ +~~~ +5047538 2048 3 +~~~ +~~~ +5047540 2048 7 +~~~ +~~~ +5047541 2048 15 +~~~ +~~~ +5047543 2048 31 +~~~ +~~~ +5047545 2048 63 +~~~ +~~~ +5047547 2048 127 +~~~ +~~~ +5047549 2048 255 +5047550 homeCount = 71 +5047550 waitCount = 35 +5047551 ripCount = 31 +5047551 locktype1 = 2 +5047573 locktype2 = 7 +5047573 locktype3 = 2 +5047573 goalCount = 5 +5047574 goalTotal = 25 +5047574 otherCount = 35 +~~~ +5047575 CURRENTGOAL IS [6] +~~~ +5047576 DOWN 12 +5047576 0 255 +5047581 UP 12 +5047581 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5047620 homeCount = 71 +5047621 waitCount = 35 +5047621 ripCount = 31 +5047622 locktype1 = 2 +5047622 locktype2 = 7 +5047623 locktype3 = 2 +5047623 goalCount = 5 +5047624 goalTotal = 25 +5047624 otherCount = 35 +~~~ +5047625 CURRENTGOAL IS [6] +~~~ +5050479 DOWN 12 +5050479 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5050518 homeCount = 71 +5050518 waitCount = 35 +5050519 ripCount = 31 +5050519 locktype1 = 2 +5050520 locktype2 = 7 +5050520 locktype3 = 2 +5050521 goalCount = 5 +5050521 goalTotal = 25 +5050522 otherCount = 35 +~~~ +5050523 CURRENTGOAL IS [6] +~~~ +5065836 UP 6 +5065836 32 255 +~~~ +~~~ +5065861 outer reward +~~~ +5065862 32 2097407 +~~~ +~~~ +5066136 DOWN 6 +5066136 0 2097407 +~~~ +~~~ +5066159 0 2097406 +~~~ +~~~ +5066161 0 2097404 +~~~ +~~~ +5066163 0 2097400 +~~~ +~~~ +5066165 0 2097392 +~~~ +~~~ +5066167 0 2097376 +~~~ +~~~ +5066168 0 2097344 +~~~ +~~~ +5066170 0 2097280 +~~~ +5066172 32 2097280 +~~~ +~~~ +5066173 32 2097152 +~~~ +5066174 32 2097664 +5066176 homeCount = 71 +5066176 waitCount = 35 +5066197 ripCount = 31 +5066197 locktype1 = 2 +5066198 locktype2 = 7 +5066198 locktype3 = 2 +5066199 goalCount = 6 +5066199 goalTotal = 26 +5066200 otherCount = 35 +~~~ +5066311 32 512 +5066557 DOWN 6 +5066557 0 512 +5066572 32 512 +5067050 DOWN 6 +5067050 0 512 +5067083 32 512 +5071100 DOWN 6 +5071100 0 512 +5071143 32 512 +5072577 DOWN 6 +5072577 0 512 +5079381 UP 10 +5079382 waslock = 0 +5079381 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5079405 512 16777728 +~~~ +5079555 512 512 +5084925 DOWN 10 +5084925 0 512 +5084940 UP 10 +5084940 waslock = 0 +5084940 512 512 +~~~ +~~~ +5084949 512 2560 +~~~ +~~~ +5084951 512 2048 +5084952 homeCount = 72 +5084952 waitCount = 35 +5084953 ripCount = 31 +5084953 locktype1 = 2 +5084954 locktype2 = 7 +5084954 locktype3 = 2 +5084955 goalCount = 6 +5084955 goalTotal = 26 +5084955 otherCount = 35 +~~~ +~~~ +5085037 DOWN 10 +5085037 0 2048 +~~~ +~~~ +~~~ +~~~ +5085065 homeCount = 72 +5085066 waitCount = 35 +5085066 ripCount = 31 +5085067 locktype1 = 2 +5085067 locktype2 = 7 +5085068 locktype3 = 2 +5085068 goalCount = 6 +5085069 goalTotal = 26 +5085069 otherCount = 35 +~~~ +5086546 UP 12 +5086546 2048 2048 +5086603 DOWN 12 +5086603 0 2048 +5086685 UP 12 +5086685 2048 2048 +5088393 DOWN 12 +5088393 0 2048 +5088565 UP 12 +5088565 2048 2048 +5089288 DOWN 12 +5089288 0 2048 +5089293 UP 12 +5089293 2048 2048 +5094546 CLICK1 +5094546 CLICK2 +~~~ +~~~ +~~~ +5094571 2048 67110912 +~~~ +5094721 2048 2048 +5100032 DOWN 12 +5100032 0 2048 +5100044 UP 12 +5100044 2048 2048 +~~~ +~~~ +5100049 2048 0 +~~~ +~~~ +5100051 2048 1 +~~~ +~~~ +5100052 2048 3 +~~~ +~~~ +5100054 2048 7 +~~~ +~~~ +5100056 2048 15 +~~~ +~~~ +5100058 2048 31 +~~~ +~~~ +5100060 2048 63 +~~~ +~~~ +5100062 2048 127 +~~~ +~~~ +5100063 2048 255 +5100064 homeCount = 72 +5100065 waitCount = 36 +5100065 ripCount = 31 +5100066 locktype1 = 2 +5100087 locktype2 = 7 +5100088 locktype3 = 2 +5100088 goalCount = 6 +5100089 goalTotal = 26 +5100089 otherCount = 35 +~~~ +5100090 CURRENTGOAL IS [6] +~~~ +5100091 DOWN 12 +5100090 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5100137 homeCount = 72 +5100137 waitCount = 36 +5100138 ripCount = 31 +5100138 locktype1 = 2 +5100139 locktype2 = 7 +5100139 locktype3 = 2 +5100140 goalCount = 6 +5100140 goalTotal = 26 +5100141 otherCount = 35 +~~~ +5100142 CURRENTGOAL IS [6] +~~~ +5100176 UP 12 +5100176 2048 255 +5100497 DOWN 12 +5100497 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5100537 homeCount = 72 +5100538 waitCount = 36 +5100538 ripCount = 31 +5100539 locktype1 = 2 +5100539 locktype2 = 7 +5100540 locktype3 = 2 +5100540 goalCount = 6 +5100541 goalTotal = 26 +5100541 otherCount = 35 +~~~ +5100542 CURRENTGOAL IS [6] +~~~ +5100637 UP 12 +5100637 2048 255 +5102022 DOWN 12 +5102022 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5102060 homeCount = 72 +5102061 waitCount = 36 +5102061 ripCount = 31 +5102062 locktype1 = 2 +5102062 locktype2 = 7 +5102063 locktype3 = 2 +5102063 goalCount = 6 +5102064 goalTotal = 26 +5102064 otherCount = 35 +~~~ +5102065 CURRENTGOAL IS [6] +~~~ +5108521 UP 6 +5108521 32 255 +~~~ +~~~ +5108549 outer reward +~~~ +5108549 32 2097407 +~~~ +~~~ +5108766 DOWN 6 +5108766 0 2097407 +~~~ +~~~ +5108789 0 2097406 +~~~ +~~~ +5108791 0 2097404 +~~~ +~~~ +5108793 0 2097400 +~~~ +~~~ +5108795 0 2097392 +~~~ +~~~ +5108797 0 2097376 +~~~ +~~~ +5108798 0 2097344 +~~~ +~~~ +5108800 0 2097280 +~~~ +~~~ +5108802 0 2097152 +~~~ +~~~ +5108804 0 2097664 +5108805 homeCount = 72 +5108805 waitCount = 36 +5108806 ripCount = 31 +5108827 locktype1 = 2 +5108828 locktype2 = 7 +5108828 locktype3 = 2 +5108829 goalCount = 7 +5108829 goalTotal = 27 +5108830 otherCount = 35 +~~~ +5108830 32 2097664 +5108999 32 512 +5109204 DOWN 6 +5109204 0 512 +5109215 32 512 +5109317 DOWN 6 +5109317 0 512 +5109351 32 512 +5109448 DOWN 6 +5109448 0 512 +5109470 32 512 +5109572 DOWN 6 +5109572 0 512 +5109589 32 512 +5109693 DOWN 6 +5109693 0 512 +5109723 32 512 +5113979 DOWN 6 +5113979 0 512 +5113984 32 512 +5115574 DOWN 6 +5115574 0 512 +5119927 UP 10 +5119927 waslock = 0 +5119927 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5119957 512 16777728 +~~~ +5119972 DOWN 10 +5119971 0 16777728 +~~~ +~~~ +5119990 0 16779776 +~~~ +~~~ +5119992 0 16779264 +5119993 homeCount = 73 +5119994 waitCount = 36 +5119994 ripCount = 31 +5119995 locktype1 = 2 +5119995 locktype2 = 7 +5119996 locktype3 = 2 +5119996 goalCount = 7 +5119997 goalTotal = 27 +5119997 otherCount = 35 +~~~ +5120049 UP 10 +5120049 waslock = 0 +5120049 512 16779264 +~~~ +5120107 512 2048 +5123786 DOWN 10 +5123786 0 2048 +~~~ +~~~ +~~~ +~~~ +5123813 homeCount = 73 +5123813 waitCount = 36 +5123814 ripCount = 31 +5123814 locktype1 = 2 +5123814 locktype2 = 7 +5123815 locktype3 = 2 +5123815 goalCount = 7 +5123816 goalTotal = 27 +5123816 otherCount = 35 +~~~ +5125790 UP 12 +5125790 2048 2048 +5127598 DOWN 12 +5127598 0 2048 +5127629 UP 12 +5127629 2048 2048 +5129445 DOWN 12 +5129445 0 2048 +5129463 UP 12 +5129463 2048 2048 +5130858 DOWN 12 +5130858 0 2048 +5130864 UP 12 +5130864 2048 2048 +5133790 CLICK1 +5133790 CLICK2 +~~~ +~~~ +~~~ +5133813 2048 67110912 +~~~ +5133963 2048 2048 +5138931 DOWN 12 +5138931 0 2048 +5138937 UP 12 +5138937 2048 2048 +~~~ +~~~ +5138950 2048 0 +~~~ +~~~ +5138951 2048 1 +~~~ +~~~ +5138953 2048 3 +~~~ +~~~ +5138955 2048 7 +~~~ +~~~ +5138957 2048 15 +~~~ +~~~ +5138959 2048 31 +~~~ +~~~ +5138961 2048 63 +~~~ +~~~ +5138962 2048 127 +~~~ +~~~ +5138964 2048 255 +5138965 homeCount = 73 +5138966 waitCount = 37 +5138966 ripCount = 31 +5138967 locktype1 = 2 +5138987 locktype2 = 7 +5138988 locktype3 = 2 +5138988 goalCount = 7 +5138989 goalTotal = 27 +5138989 otherCount = 35 +~~~ +5138990 CURRENTGOAL IS [6] +~~~ +5138991 DOWN 12 +5138991 0 255 +5139007 UP 12 +5139007 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5139035 homeCount = 73 +5139035 waitCount = 37 +5139036 ripCount = 31 +5139036 locktype1 = 2 +5139037 locktype2 = 7 +5139037 locktype3 = 2 +5139038 goalCount = 7 +5139038 goalTotal = 27 +5139039 otherCount = 35 +~~~ +5139040 CURRENTGOAL IS [6] +~~~ +5141276 DOWN 12 +5141276 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5141318 homeCount = 73 +5141319 waitCount = 37 +5141319 ripCount = 31 +5141320 locktype1 = 2 +5141320 locktype2 = 7 +5141321 locktype3 = 2 +5141321 goalCount = 7 +5141322 goalTotal = 27 +5141322 otherCount = 35 +~~~ +5141323 CURRENTGOAL IS [6] +~~~ +5147743 UP 6 +5147743 32 255 +~~~ +~~~ +5147763 outer reward +~~~ +5147764 32 2097407 +~~~ +~~~ +5147993 DOWN 6 +5147993 0 2097407 +~~~ +~~~ +5148012 0 2097406 +~~~ +~~~ +5148014 0 2097404 +~~~ +~~~ +5148016 0 2097400 +~~~ +~~~ +5148018 0 2097392 +~~~ +~~~ +5148019 0 2097376 +~~~ +~~~ +5148021 0 2097344 +~~~ +~~~ +5148023 0 2097280 +~~~ +~~~ +5148025 0 2097152 +~~~ +~~~ +5148027 0 2097664 +5148028 homeCount = 73 +5148028 waitCount = 37 +5148029 ripCount = 31 +5148050 locktype1 = 2 +5148050 locktype2 = 7 +5148051 locktype3 = 2 +5148051 goalCount = 8 +5148052 goalTotal = 28 +5148052 otherCount = 35 +~~~ +5148068 32 2097664 +5148213 32 512 +5148335 DOWN 6 +5148335 0 512 +5148358 32 512 +5148457 DOWN 6 +5148457 0 512 +5148501 32 512 +5148589 DOWN 6 +5148589 0 512 +5148618 32 512 +5155375 DOWN 6 +5155374 0 512 +5159939 UP 10 +5159939 waslock = 0 +5159939 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5159964 512 16777728 +~~~ +5160114 512 512 +5160151 DOWN 10 +5160151 0 512 +5160165 UP 10 +5160165 waslock = 0 +5160165 512 512 +~~~ +~~~ +5160171 512 2560 +~~~ +~~~ +5160173 512 2048 +5160174 homeCount = 74 +5160175 waitCount = 37 +5160175 ripCount = 31 +5160176 locktype1 = 2 +5160176 locktype2 = 7 +5160177 locktype3 = 2 +5160177 goalCount = 8 +5160178 goalTotal = 28 +5160178 otherCount = 35 +~~~ +~~~ +5164052 DOWN 10 +5164052 0 2048 +~~~ +~~~ +~~~ +~~~ +5164072 homeCount = 74 +5164073 waitCount = 37 +5164073 ripCount = 31 +5164074 locktype1 = 2 +5164074 locktype2 = 7 +5164075 locktype3 = 2 +5164075 goalCount = 8 +5164076 goalTotal = 28 +5164076 otherCount = 35 +~~~ +5165621 UP 12 +5165621 2048 2048 +5172621 CLICK1 +5172621 CLICK2 +~~~ +~~~ +~~~ +5172641 2048 67110912 +~~~ +5172791 2048 2048 +5178708 DOWN 12 +5178708 0 2048 +5178727 UP 12 +5178727 2048 2048 +~~~ +~~~ +5178729 2048 0 +~~~ +~~~ +5178731 2048 1 +~~~ +~~~ +5178733 2048 3 +~~~ +~~~ +5178735 2048 7 +~~~ +~~~ +5178737 2048 15 +~~~ +~~~ +5178738 2048 31 +~~~ +~~~ +5178740 2048 63 +~~~ +~~~ +5178742 2048 127 +~~~ +~~~ +5178744 2048 255 +5178745 homeCount = 74 +5178745 waitCount = 38 +5178766 ripCount = 31 +5178767 locktype1 = 2 +5178767 locktype2 = 7 +5178768 locktype3 = 2 +5178768 goalCount = 8 +5178769 goalTotal = 28 +5178769 otherCount = 35 +~~~ +5178770 CURRENTGOAL IS [6] +~~~ +5178791 DOWN 12 +5178791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5178818 homeCount = 74 +5178819 waitCount = 38 +5178819 ripCount = 31 +5178820 locktype1 = 2 +5178820 locktype2 = 7 +5178821 locktype3 = 2 +5178821 goalCount = 8 +5178822 goalTotal = 28 +5178822 otherCount = 35 +~~~ +5178823 CURRENTGOAL IS [6] +~~~ +5178824 UP 12 +5178824 2048 255 +5178846 DOWN 12 +5178846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5178877 homeCount = 74 +5178877 waitCount = 38 +5178878 ripCount = 31 +5178878 locktype1 = 2 +5178879 locktype2 = 7 +5178879 locktype3 = 2 +5178880 goalCount = 8 +5178880 goalTotal = 28 +5178881 otherCount = 35 +~~~ +5178882 CURRENTGOAL IS [6] +~~~ +5179006 UP 12 +5179006 2048 255 +5180699 DOWN 12 +5180699 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5180741 homeCount = 74 +5180741 waitCount = 38 +5180742 ripCount = 31 +5180742 locktype1 = 2 +5180743 locktype2 = 7 +5180743 locktype3 = 2 +5180744 goalCount = 8 +5180744 goalTotal = 28 +5180744 otherCount = 35 +~~~ +5180746 CURRENTGOAL IS [6] +~~~ +5185076 UP 6 +5185076 32 255 +~~~ +~~~ +5185099 outer reward +~~~ +5185100 32 2097407 +~~~ +~~~ +5185320 DOWN 6 +5185320 0 2097407 +~~~ +~~~ +5185345 0 2097406 +~~~ +~~~ +5185347 0 2097404 +~~~ +~~~ +5185349 0 2097400 +~~~ +~~~ +5185351 0 2097392 +~~~ +~~~ +5185353 0 2097376 +~~~ +~~~ +5185355 0 2097344 +~~~ +~~~ +5185356 0 2097280 +~~~ +~~~ +5185358 0 2097152 +~~~ +~~~ +5185360 0 2097664 +5185361 homeCount = 74 +5185362 waitCount = 38 +5185362 ripCount = 31 +5185383 locktype1 = 2 +5185384 locktype2 = 7 +5185384 locktype3 = 2 +5185385 goalCount = 9 +5185385 goalTotal = 29 +5185386 otherCount = 35 +~~~ +5185386 32 2097664 +5185549 32 512 +5185758 DOWN 6 +5185757 0 512 +5185784 32 512 +5186141 DOWN 6 +5186141 0 512 +5186165 32 512 +5189858 DOWN 6 +5189857 0 512 +5189864 32 512 +5192101 DOWN 6 +5192101 0 512 +5202397 UP 10 +5202398 waslock = 0 +5202397 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5202424 512 16777728 +~~~ +5202574 512 512 +5202655 DOWN 10 +5202655 0 512 +~~~ +~~~ +5202677 0 1536 +~~~ +~~~ +5202679 0 1024 +5202680 homeCount = 75 +5202680 waitCount = 38 +5202681 ripCount = 31 +5202681 locktype1 = 2 +5202682 locktype2 = 7 +5202682 locktype3 = 2 +5202683 goalCount = 9 +5202683 goalTotal = 29 +5202684 otherCount = 35 +~~~ +5202757 UP 10 +5202758 waslock = 0 +5202757 512 1024 +~~~ +5207019 DOWN 10 +5207019 0 1024 +5207036 UP 10 +5207036 waslock = 0 +5207035 512 1024 +~~~ +~~~ +~~~ +~~~ +5207042 homeCount = 75 +5207042 waitCount = 38 +5207043 ripCount = 31 +5207043 locktype1 = 2 +5207044 locktype2 = 7 +5207044 locktype3 = 2 +5207045 goalCount = 9 +5207045 goalTotal = 29 +5207046 otherCount = 35 +~~~ +~~~ +5207117 DOWN 10 +5207117 0 1024 +~~~ +~~~ +~~~ +~~~ +5207144 homeCount = 75 +5207144 waitCount = 38 +5207145 ripCount = 31 +5207145 locktype1 = 2 +5207146 locktype2 = 7 +5207146 locktype3 = 2 +5207147 goalCount = 9 +5207147 goalTotal = 29 +5207148 otherCount = 35 +~~~ +5209520 UP 11 +5209520 1024 1024 +5211517 DOWN 11 +5211517 0 1024 +5211529 UP 11 +5211529 1024 1024 +5212520 BEEP1 +5212520 BEEP2 +~~~ +~~~ +~~~ +5212541 1024 33555456 +~~~ +5212691 1024 1024 +5217823 DOWN 11 +5217823 0 1024 +5217847 UP 11 +5217847 1024 1024 +~~~ +~~~ +5217850 1024 0 +~~~ +~~~ +5217852 1024 1 +~~~ +~~~ +5217854 1024 3 +~~~ +~~~ +5217856 1024 7 +~~~ +~~~ +5217857 1024 15 +~~~ +~~~ +5217859 1024 31 +~~~ +~~~ +5217861 1024 63 +~~~ +~~~ +5217863 1024 127 +~~~ +~~~ +5217865 1024 255 +5217866 homeCount = 75 +5217866 waitCount = 38 +5217867 ripCount = 32 +5217867 locktype1 = 2 +5217888 locktype2 = 7 +5217889 locktype3 = 2 +5217889 goalCount = 9 +5217889 goalTotal = 29 +5217890 otherCount = 35 +~~~ +5217891 CURRENTGOAL IS [6] +~~~ +5217891 DOWN 11 +5217891 0 255 +5217918 UP 11 +5217918 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5217949 homeCount = 75 +5217949 waitCount = 38 +5217950 ripCount = 32 +5217950 locktype1 = 2 +5217951 locktype2 = 7 +5217951 locktype3 = 2 +5217952 goalCount = 9 +5217952 goalTotal = 29 +5217953 otherCount = 35 +~~~ +5217954 CURRENTGOAL IS [6] +~~~ +5217954 DOWN 11 +5217954 0 255 +5217976 UP 11 +5217976 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5218014 homeCount = 75 +5218015 waitCount = 38 +5218016 ripCount = 32 +5218016 locktype1 = 2 +5218017 locktype2 = 7 +5218017 locktype3 = 2 +5218017 goalCount = 9 +5218018 goalTotal = 29 +5218018 otherCount = 35 +~~~ +5218019 CURRENTGOAL IS [6] +~~~ +5219962 DOWN 11 +5219962 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5219994 homeCount = 75 +5219995 waitCount = 38 +5219996 ripCount = 32 +5219996 locktype1 = 2 +5219997 locktype2 = 7 +5219997 locktype3 = 2 +5219997 goalCount = 9 +5219998 goalTotal = 29 +5219998 otherCount = 35 +~~~ +5219999 CURRENTGOAL IS [6] +~~~ +5220006 UP 11 +5220006 1024 255 +5220095 DOWN 11 +5220095 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5220135 homeCount = 75 +5220135 waitCount = 38 +5220136 ripCount = 32 +5220136 locktype1 = 2 +5220137 locktype2 = 7 +5220137 locktype3 = 2 +5220138 goalCount = 9 +5220138 goalTotal = 29 +5220139 otherCount = 35 +~~~ +5220140 CURRENTGOAL IS [6] +~~~ +5220369 UP 11 +5220369 1024 255 +5220384 DOWN 11 +5220384 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5220420 homeCount = 75 +5220421 waitCount = 38 +5220421 ripCount = 32 +5220422 locktype1 = 2 +5220422 locktype2 = 7 +5220423 locktype3 = 2 +5220423 goalCount = 9 +5220424 goalTotal = 29 +5220424 otherCount = 35 +~~~ +5220425 CURRENTGOAL IS [6] +~~~ +5220756 UP 11 +5220756 1024 255 +5222629 DOWN 11 +5222629 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222658 UP 11 +5222658 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222666 homeCount = 75 +5222666 waitCount = 38 +5222667 ripCount = 32 +5222667 locktype1 = 2 +5222668 locktype2 = 7 +5222668 locktype3 = 2 +5222669 goalCount = 9 +5222669 goalTotal = 29 +5222669 otherCount = 35 +~~~ +5222671 CURRENTGOAL IS [6] +~~~ +5222721 DOWN 11 +5222721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222756 homeCount = 75 +5222757 waitCount = 38 +5222757 ripCount = 32 +5222758 locktype1 = 2 +5222758 locktype2 = 7 +5222759 locktype3 = 2 +5222759 goalCount = 9 +5222760 goalTotal = 29 +5222760 otherCount = 35 +~~~ +5222761 CURRENTGOAL IS [6] +~~~ +5225752 UP 6 +5225752 32 255 +~~~ +~~~ +5225775 outer reward +~~~ +5225775 32 2097407 +~~~ +~~~ +5225780 outerreps = 8 +~~~ +~~~ +5226029 DOWN 6 +5226029 0 2097407 +~~~ +~~~ +5226052 0 2097406 +~~~ +~~~ +5226053 0 2097404 +~~~ +~~~ +5226055 0 2097400 +~~~ +~~~ +5226057 0 2097392 +~~~ +~~~ +5226059 0 2097376 +~~~ +~~~ +5226061 0 2097344 +~~~ +~~~ +5226062 0 2097280 +~~~ +5226064 32 2097280 +~~~ +~~~ +5226066 32 2097152 +~~~ +5226067 32 2097664 +5226068 homeCount = 75 +5226068 waitCount = 38 +5226089 ripCount = 32 +5226090 locktype1 = 2 +5226090 locktype2 = 7 +5226091 locktype3 = 2 +5226091 goalCount = 0 +5226092 goalTotal = 30 +5226092 otherCount = 35 +~~~ +5226225 32 512 +5234212 DOWN 6 +5234212 0 512 +5234299 32 512 +5234328 DOWN 6 +5234328 0 512 +5238432 UP 10 +5238432 waslock = 0 +5238432 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5238461 512 16777728 +~~~ +5238611 512 512 +5238651 DOWN 10 +5238651 0 512 +5238675 UP 10 +5238675 waslock = 0 +5238675 512 512 +~~~ +~~~ +~~~ +5238678 512 1536 +~~~ +5238679 512 1024 +5238680 homeCount = 76 +5238680 waitCount = 38 +5238681 ripCount = 32 +5238681 locktype1 = 2 +5238682 locktype2 = 7 +5238682 locktype3 = 2 +5238683 goalCount = 0 +5238704 goalTotal = 30 +5238704 otherCount = 35 +~~~ +~~~ +5242681 DOWN 10 +5242681 0 1024 +~~~ +~~~ +5242707 UP 10 +5242707 waslock = 0 +5242707 512 1024 +~~~ +~~~ +5242710 homeCount = 76 +5242710 waitCount = 38 +5242711 ripCount = 32 +5242711 locktype1 = 2 +5242712 locktype2 = 7 +5242712 locktype3 = 2 +5242713 goalCount = 0 +5242713 goalTotal = 30 +5242714 otherCount = 35 +~~~ +~~~ +5242781 DOWN 10 +5242781 0 1024 +~~~ +~~~ +~~~ +~~~ +5242809 homeCount = 76 +5242809 waitCount = 38 +5242810 ripCount = 32 +5242810 locktype1 = 2 +5242811 locktype2 = 7 +5242811 locktype3 = 2 +5242812 goalCount = 0 +5242812 goalTotal = 30 +5242813 otherCount = 35 +~~~ +5244744 UP 11 +5244744 1024 1024 +5245062 DOWN 11 +5245062 0 1024 +5245263 LOCKOUT 3 +~~~ +5245287 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +5245291 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5245390 UP 11 +5245390 1024 0 +5247273 DOWN 11 +5247273 0 0 +5247303 UP 11 +5247303 1024 0 +5248048 DOWN 11 +5248048 0 0 +5248092 UP 11 +5248092 1024 0 +5249639 DOWN 11 +5249639 0 0 +5270287 LOCKEND +~~~ +~~~ +~~~ +5270306 0 512 +5281092 UP 10 +5281092 waslock = 0 +5281092 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5281122 512 16777728 +~~~ +5281134 DOWN 10 +5281134 0 16777728 +~~~ +~~~ +5281155 0 16778752 +~~~ +~~~ +5281157 0 16778240 +5281158 homeCount = 77 +5281159 waitCount = 38 +5281159 ripCount = 32 +5281160 locktype1 = 2 +5281160 locktype2 = 7 +5281161 locktype3 = 3 +5281161 goalCount = 0 +5281162 goalTotal = 30 +5281162 otherCount = 35 +~~~ +5281227 UP 10 +5281228 waslock = 0 +5281227 512 16778240 +~~~ +5281272 512 1024 +5281345 DOWN 10 +5281344 0 1024 +~~~ +~~~ +~~~ +~~~ +5281368 homeCount = 77 +5281369 waitCount = 38 +5281369 ripCount = 32 +5281370 locktype1 = 2 +5281370 locktype2 = 7 +5281371 locktype3 = 3 +5281371 goalCount = 0 +5281372 goalTotal = 30 +5281372 otherCount = 35 +~~~ +5281376 UP 10 +5281376 waslock = 0 +5281376 512 1024 +~~~ +5281500 DOWN 10 +5281500 0 1024 +5281522 UP 10 +5281522 waslock = 0 +5281522 512 1024 +~~~ +~~~ +~~~ +~~~ +5281529 homeCount = 77 +5281530 waitCount = 38 +5281530 ripCount = 32 +5281531 locktype1 = 2 +5281531 locktype2 = 7 +5281532 locktype3 = 3 +5281532 goalCount = 0 +5281533 goalTotal = 30 +5281533 otherCount = 35 +~~~ +~~~ +5281646 DOWN 10 +5281646 0 1024 +~~~ +~~~ +~~~ +~~~ +5281669 homeCount = 77 +5281669 waitCount = 38 +5281670 ripCount = 32 +5281670 locktype1 = 2 +5281671 locktype2 = 7 +5281671 locktype3 = 3 +5281672 goalCount = 0 +5281672 goalTotal = 30 +5281673 otherCount = 35 +~~~ +5281674 UP 10 +5281675 waslock = 0 +5281674 512 1024 +~~~ +5281809 DOWN 10 +5281809 0 1024 +5281818 UP 10 +5281818 waslock = 0 +5281818 512 1024 +~~~ +~~~ +~~~ +~~~ +5281840 homeCount = 77 +5281841 waitCount = 38 +5281841 ripCount = 32 +5281842 locktype1 = 2 +5281842 locktype2 = 7 +5281843 locktype3 = 3 +5281843 goalCount = 0 +5281844 goalTotal = 30 +5281844 otherCount = 35 +~~~ +~~~ +5285763 DOWN 10 +5285763 0 1024 +5285779 UP 10 +5285780 waslock = 0 +5285779 512 1024 +~~~ +~~~ +~~~ +~~~ +5285799 homeCount = 77 +5285800 waitCount = 38 +5285800 ripCount = 32 +5285801 locktype1 = 2 +5285801 locktype2 = 7 +5285802 locktype3 = 3 +5285802 goalCount = 0 +5285803 goalTotal = 30 +5285803 otherCount = 35 +~~~ +~~~ +5285874 DOWN 10 +5285874 0 1024 +~~~ +~~~ +~~~ +~~~ +5285900 homeCount = 77 +5285900 waitCount = 38 +5285901 ripCount = 32 +5285901 locktype1 = 2 +5285902 locktype2 = 7 +5285902 locktype3 = 3 +5285902 goalCount = 0 +5285903 goalTotal = 30 +5285903 otherCount = 35 +~~~ +5285920 UP 10 +5285920 waslock = 0 +5285920 512 1024 +~~~ +5285968 DOWN 10 +5285968 0 1024 +~~~ +~~~ +~~~ +~~~ +5285989 homeCount = 77 +5285990 waitCount = 38 +5285990 ripCount = 32 +5285991 locktype1 = 2 +5285991 locktype2 = 7 +5285992 locktype3 = 3 +5285992 goalCount = 0 +5285993 goalTotal = 30 +5285993 otherCount = 35 +~~~ +5287968 UP 11 +5287968 1024 1024 +5290407 DOWN 11 +5290407 0 1024 +5290421 UP 11 +5290421 1024 1024 +5290437 DOWN 11 +5290437 0 1024 +5290524 UP 11 +5290524 1024 1024 +5290968 BEEP1 +5290968 BEEP2 +~~~ +~~~ +~~~ +5290989 1024 33555456 +~~~ +5291139 1024 1024 +5296670 DOWN 11 +5296670 0 1024 +~~~ +~~~ +5296696 0 0 +~~~ +~~~ +5296698 0 1 +~~~ +~~~ +5296700 0 3 +~~~ +~~~ +5296702 0 7 +~~~ +~~~ +5296703 0 15 +~~~ +~~~ +5296705 0 31 +~~~ +~~~ +5296707 0 63 +~~~ +~~~ +5296709 0 127 +~~~ +~~~ +5296711 0 255 +5296712 homeCount = 77 +5296712 waitCount = 38 +5296713 ripCount = 33 +5296713 locktype1 = 2 +5296714 locktype2 = 7 +5296735 locktype3 = 3 +5296735 goalCount = 0 +5296736 goalTotal = 30 +5296736 otherCount = 35 +~~~ +5296737 CURRENTGOAL IS [3] +~~~ +5296738 UP 11 +5296738 1024 255 +5296936 DOWN 11 +5296936 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5296973 homeCount = 77 +5296973 waitCount = 38 +5296974 ripCount = 33 +5296974 locktype1 = 2 +5296975 locktype2 = 7 +5296975 locktype3 = 3 +5296976 goalCount = 0 +5296976 goalTotal = 30 +5296976 otherCount = 35 +~~~ +5296978 CURRENTGOAL IS [3] +~~~ +5296981 UP 11 +5296981 1024 255 +5300102 DOWN 11 +5300102 0 255 +5300120 UP 11 +5300120 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5300155 homeCount = 77 +5300156 waitCount = 38 +5300156 ripCount = 33 +5300157 locktype1 = 2 +5300157 locktype2 = 7 +5300158 locktype3 = 3 +5300158 goalCount = 0 +5300159 goalTotal = 30 +5300159 otherCount = 35 +~~~ +5300160 CURRENTGOAL IS [3] +~~~ +5302657 DOWN 11 +5302657 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5302699 homeCount = 77 +5302699 waitCount = 38 +5302700 ripCount = 33 +5302700 locktype1 = 2 +5302701 locktype2 = 7 +5302701 locktype3 = 3 +5302702 goalCount = 0 +5302702 goalTotal = 30 +5302703 otherCount = 35 +~~~ +5302704 CURRENTGOAL IS [3] +~~~ +5302808 UP 11 +5302808 1024 255 +5302848 DOWN 11 +5302848 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5302888 homeCount = 77 +5302889 waitCount = 38 +5302889 ripCount = 33 +5302890 locktype1 = 2 +5302890 locktype2 = 7 +5302891 locktype3 = 3 +5302891 goalCount = 0 +5302892 goalTotal = 30 +5302892 otherCount = 35 +~~~ +5302893 CURRENTGOAL IS [3] +~~~ +5306189 UP 8 +5306189 128 255 +~~~ +~~~ +5306730 DOWN 8 +5306730 0 255 +~~~ +~~~ +5306752 0 254 +~~~ +~~~ +5306754 0 252 +~~~ +~~~ +5306756 0 248 +~~~ +~~~ +5306757 0 240 +~~~ +~~~ +5306759 0 224 +~~~ +~~~ +5306761 0 192 +~~~ +~~~ +5306763 0 128 +~~~ +~~~ +5306765 0 0 +~~~ +~~~ +5306767 0 512 +5306768 homeCount = 77 +5306768 waitCount = 38 +5306769 ripCount = 33 +5306769 locktype1 = 2 +5306770 locktype2 = 7 +5306790 locktype3 = 3 +5306791 goalCount = 0 +5306791 goalTotal = 30 +5306792 otherCount = 36 +~~~ +5306792 128 512 +5307532 DOWN 8 +5307532 0 512 +5312695 UP 10 +5312695 waslock = 0 +5312695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5312721 512 16777728 +~~~ +5312871 512 512 +5319453 DOWN 10 +5319453 0 512 +~~~ +~~~ +5319475 0 1536 +~~~ +~~~ +5319477 0 1024 +5319478 homeCount = 78 +5319478 waitCount = 38 +5319479 ripCount = 33 +5319479 locktype1 = 2 +5319480 locktype2 = 7 +5319480 locktype3 = 3 +5319481 goalCount = 0 +5319481 goalTotal = 30 +5319482 otherCount = 36 +~~~ +5319509 UP 10 +5319509 waslock = 0 +5319509 512 1024 +5319535 DOWN 10 +5319535 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +5319565 homeCount = 78 +5319565 waitCount = 38 +5319566 ripCount = 33 +5319566 locktype1 = 2 +5319567 locktype2 = 7 +5319567 locktype3 = 3 +5319568 goalCount = 0 +5319568 goalTotal = 30 +5319569 otherCount = 36 +~~~ +5323431 UP 11 +5323431 1024 1024 +5327431 BEEP1 +5327431 BEEP2 +~~~ +~~~ +~~~ +5327453 1024 33555456 +~~~ +5327603 1024 1024 +5332677 DOWN 11 +5332677 0 1024 +5332695 UP 11 +5332695 1024 1024 +~~~ +~~~ +5332702 1024 0 +~~~ +~~~ +5332704 1024 1 +~~~ +~~~ +5332706 1024 3 +~~~ +~~~ +5332708 1024 7 +~~~ +~~~ +5332709 1024 15 +~~~ +~~~ +5332711 1024 31 +~~~ +~~~ +5332713 1024 63 +~~~ +~~~ +5332715 1024 127 +~~~ +~~~ +5332717 1024 255 +5332718 homeCount = 78 +5332718 waitCount = 38 +5332719 ripCount = 34 +5332719 locktype1 = 2 +5332740 locktype2 = 7 +5332741 locktype3 = 3 +5332741 goalCount = 0 +5332741 goalTotal = 30 +5332742 otherCount = 36 +~~~ +5332743 CURRENTGOAL IS [3] +~~~ +5332814 DOWN 11 +5332814 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5332843 UP 11 +5332842 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +5332848 homeCount = 78 +5332848 waitCount = 38 +5332849 ripCount = 34 +5332849 locktype1 = 2 +5332850 locktype2 = 7 +5332850 locktype3 = 3 +5332851 goalCount = 0 +5332851 goalTotal = 30 +5332852 otherCount = 36 +~~~ +5332853 CURRENTGOAL IS [3] +~~~ +5332941 DOWN 11 +5332941 0 255 +5332961 UP 11 +5332961 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5332978 homeCount = 78 +5332978 waitCount = 38 +5332979 ripCount = 34 +5332979 locktype1 = 2 +5332980 locktype2 = 7 +5332980 locktype3 = 3 +5332981 goalCount = 0 +5332981 goalTotal = 30 +5332982 otherCount = 36 +~~~ +5332983 CURRENTGOAL IS [3] +~~~ +5334881 DOWN 11 +5334881 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5334919 homeCount = 78 +5334919 waitCount = 38 +5334920 ripCount = 34 +5334920 locktype1 = 2 +5334921 locktype2 = 7 +5334921 locktype3 = 3 +5334922 goalCount = 0 +5334922 goalTotal = 30 +5334923 otherCount = 36 +~~~ +5334924 CURRENTGOAL IS [3] +~~~ +5340609 UP 5 +5340608 16 255 +~~~ +~~~ +5340874 DOWN 5 +5340874 0 255 +~~~ +~~~ +5340892 0 254 +~~~ +~~~ +5340894 0 252 +~~~ +~~~ +5340895 0 248 +~~~ +~~~ +5340897 0 240 +~~~ +~~~ +5340899 0 224 +~~~ +~~~ +5340901 0 192 +~~~ +~~~ +5340903 0 128 +~~~ +~~~ +5340904 0 0 +~~~ +~~~ +5340906 0 512 +5340907 homeCount = 78 +5340908 waitCount = 38 +5340908 ripCount = 34 +5340909 locktype1 = 2 +5340909 locktype2 = 7 +5340930 locktype3 = 3 +5340931 goalCount = 0 +5340931 goalTotal = 30 +5340932 otherCount = 37 +~~~ +5345212 UP 10 +5345212 waslock = 0 +5345212 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5345238 512 16777728 +~~~ +5345303 DOWN 10 +5345303 0 16777728 +~~~ +~~~ +5345330 0 16779776 +~~~ +~~~ +5345332 0 16779264 +5345333 homeCount = 79 +5345333 waitCount = 38 +5345334 ripCount = 34 +5345334 locktype1 = 2 +5345335 locktype2 = 7 +5345335 locktype3 = 3 +5345335 goalCount = 0 +5345336 goalTotal = 30 +5345336 otherCount = 37 +~~~ +5345388 0 2048 +5345395 UP 10 +5345395 waslock = 0 +5345395 512 2048 +~~~ +5345443 DOWN 10 +5345443 0 2048 +~~~ +~~~ +~~~ +~~~ +5345465 homeCount = 79 +5345466 waitCount = 38 +5345467 ripCount = 34 +5345467 locktype1 = 2 +5345467 locktype2 = 7 +5345468 locktype3 = 3 +5345468 goalCount = 0 +5345469 goalTotal = 30 +5345469 otherCount = 37 +~~~ +5345470 UP 10 +5345470 waslock = 0 +5345470 512 2048 +~~~ +5345649 DOWN 10 +5345649 0 2048 +~~~ +~~~ +~~~ +~~~ +5345675 homeCount = 79 +5345675 waitCount = 38 +5345676 ripCount = 34 +5345676 locktype1 = 2 +5345677 locktype2 = 7 +5345677 locktype3 = 3 +5345678 goalCount = 0 +5345678 goalTotal = 30 +5345679 otherCount = 37 +~~~ +5345679 UP 10 +5345679 waslock = 0 +5345679 512 2048 +~~~ +5345795 DOWN 10 +5345795 0 2048 +~~~ +~~~ +~~~ +~~~ +5345817 homeCount = 79 +5345818 waitCount = 38 +5345818 ripCount = 34 +5345819 locktype1 = 2 +5345819 locktype2 = 7 +5345819 locktype3 = 3 +5345820 goalCount = 0 +5345820 goalTotal = 30 +5345821 otherCount = 37 +~~~ +5345824 UP 10 +5345825 waslock = 0 +5345824 512 2048 +5345847 DOWN 10 +5345847 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5345864 homeCount = 79 +5345864 waitCount = 38 +5345865 ripCount = 34 +5345865 locktype1 = 2 +5345866 locktype2 = 7 +5345866 locktype3 = 3 +5345867 goalCount = 0 +5345867 goalTotal = 30 +5345868 otherCount = 37 +~~~ +5345956 UP 10 +5345956 waslock = 0 +5345956 512 2048 +5345982 DOWN 10 +5345982 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5346004 UP 10 +5346004 waslock = 0 +5346004 512 2048 +5346006 homeCount = 79 +5346006 waitCount = 38 +5346007 ripCount = 34 +5346007 locktype1 = 2 +5346008 locktype2 = 7 +5346008 locktype3 = 3 +5346009 goalCount = 0 +5346009 goalTotal = 30 +5346010 otherCount = 37 +~~~ +~~~ +5351222 DOWN 10 +5351222 0 2048 +~~~ +~~~ +~~~ +~~~ +5351245 homeCount = 79 +5351246 waitCount = 38 +5351246 ripCount = 34 +5351247 locktype1 = 2 +5351247 locktype2 = 7 +5351247 locktype3 = 3 +5351248 goalCount = 0 +5351248 goalTotal = 30 +5351249 otherCount = 37 +~~~ +5351281 UP 10 +5351281 waslock = 0 +5351281 512 2048 +~~~ +5351364 DOWN 10 +5351364 0 2048 +~~~ +~~~ +~~~ +~~~ +5351388 homeCount = 79 +5351389 waitCount = 38 +5351389 ripCount = 34 +5351390 locktype1 = 2 +5351390 locktype2 = 7 +5351391 locktype3 = 3 +5351391 goalCount = 0 +5351392 goalTotal = 30 +5351392 otherCount = 37 +~~~ +5353583 UP 12 +5353583 2048 2048 +5355776 DOWN 12 +5355776 0 2048 +5355802 UP 12 +5355802 2048 2048 +5355812 DOWN 12 +5355812 0 2048 +5355851 UP 12 +5355851 2048 2048 +5356583 CLICK1 +5356583 CLICK2 +5356595 DOWN 12 +5356595 0 2048 +~~~ +~~~ +~~~ +5356616 0 67110912 +~~~ +5356659 UP 12 +5356659 2048 67110912 +5356766 2048 2048 +~~~ +~~~ +5356769 2048 0 +~~~ +~~~ +5356771 2048 1 +~~~ +~~~ +5356773 2048 3 +~~~ +~~~ +5356774 2048 7 +~~~ +~~~ +5356776 2048 15 +~~~ +~~~ +5356778 2048 31 +~~~ +~~~ +5356780 2048 63 +~~~ +~~~ +5356782 2048 127 +~~~ +~~~ +5356784 2048 255 +5356785 homeCount = 79 +5356785 waitCount = 39 +5356786 ripCount = 34 +5356786 locktype1 = 2 +5356807 locktype2 = 7 +5356808 locktype3 = 3 +5356808 goalCount = 0 +5356809 goalTotal = 30 +5356809 otherCount = 37 +~~~ +5356810 CURRENTGOAL IS [3] +~~~ +5356916 DOWN 12 +5356916 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5356942 UP 12 +5356942 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5356950 homeCount = 79 +5356950 waitCount = 39 +5356951 ripCount = 34 +5356951 locktype1 = 2 +5356952 locktype2 = 7 +5356952 locktype3 = 3 +5356953 goalCount = 0 +5356953 goalTotal = 30 +5356954 otherCount = 37 +~~~ +5356955 CURRENTGOAL IS [3] +~~~ +5362292 DOWN 12 +5362292 0 255 +5362302 UP 12 +5362302 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5362333 homeCount = 79 +5362333 waitCount = 39 +5362334 ripCount = 34 +5362334 locktype1 = 2 +5362335 locktype2 = 7 +5362335 locktype3 = 3 +5362336 goalCount = 0 +5362336 goalTotal = 30 +5362337 otherCount = 37 +~~~ +5362338 CURRENTGOAL IS [3] +~~~ +5365136 DOWN 12 +5365136 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5365170 homeCount = 79 +5365170 waitCount = 39 +5365171 ripCount = 34 +5365171 locktype1 = 2 +5365172 locktype2 = 7 +5365172 locktype3 = 3 +5365173 goalCount = 0 +5365173 goalTotal = 30 +5365174 otherCount = 37 +~~~ +5365175 CURRENTGOAL IS [3] +~~~ +5369259 UP 6 +5369259 32 255 +~~~ +~~~ +5369588 DOWN 6 +5369587 0 255 +~~~ +~~~ +5369606 0 254 +~~~ +~~~ +5369607 0 252 +~~~ +~~~ +5369609 32 248 +~~~ +~~~ +5369611 32 240 +~~~ +~~~ +5369613 32 224 +~~~ +~~~ +5369615 32 192 +~~~ +~~~ +5369616 32 128 +~~~ +~~~ +5369618 32 0 +~~~ +~~~ +5369620 32 512 +5369621 homeCount = 79 +5369622 waitCount = 39 +5369622 ripCount = 34 +5369623 locktype1 = 2 +5369623 locktype2 = 7 +5369644 locktype3 = 3 +5369645 goalCount = 0 +5369645 goalTotal = 30 +5369646 otherCount = 38 +~~~ +5370768 DOWN 6 +5370768 0 512 +5374899 UP 10 +5374899 waslock = 0 +5374899 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5374926 512 16777728 +~~~ +5375076 512 512 +5375078 DOWN 10 +5375077 0 512 +~~~ +~~~ +5375101 0 2560 +~~~ +~~~ +5375103 0 2048 +5375104 homeCount = 80 +5375105 waitCount = 39 +5375105 ripCount = 34 +5375106 locktype1 = 2 +5375106 locktype2 = 7 +5375107 locktype3 = 3 +5375107 goalCount = 0 +5375108 goalTotal = 30 +5375108 otherCount = 38 +~~~ +5375122 UP 10 +5375122 waslock = 0 +5375122 512 2048 +~~~ +5379775 DOWN 10 +5379775 0 2048 +5379790 UP 10 +5379791 waslock = 0 +5379790 512 2048 +~~~ +~~~ +~~~ +~~~ +5379818 homeCount = 80 +5379818 waitCount = 39 +5379819 ripCount = 34 +5379819 locktype1 = 2 +5379820 locktype2 = 7 +5379820 locktype3 = 3 +5379821 goalCount = 0 +5379821 goalTotal = 30 +5379822 otherCount = 38 +~~~ +~~~ +5379874 DOWN 10 +5379874 0 2048 +~~~ +~~~ +~~~ +~~~ +5379897 homeCount = 80 +5379898 waitCount = 39 +5379898 ripCount = 34 +5379899 locktype1 = 2 +5379899 locktype2 = 7 +5379899 locktype3 = 3 +5379900 goalCount = 0 +5379900 goalTotal = 30 +5379901 otherCount = 38 +~~~ +5382027 UP 12 +5382026 2048 2048 +5383448 DOWN 12 +5383447 0 2048 +5383464 UP 12 +5383464 2048 2048 +5384242 DOWN 12 +5384242 0 2048 +5384443 LOCKOUT 3 +~~~ +5384462 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5384468 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5384556 UP 12 +5384556 2048 0 +5384693 DOWN 12 +5384693 0 0 +5384742 UP 12 +5384742 2048 0 +5384902 DOWN 12 +5384902 0 0 +5384936 UP 12 +5384936 2048 0 +5385183 DOWN 12 +5385183 0 0 +5409462 LOCKEND +~~~ +~~~ +~~~ +5409482 0 512 +5421059 UP 10 +5421059 waslock = 0 +5421059 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5421086 512 16777728 +~~~ +5421236 512 512 +5421325 DOWN 10 +5421325 0 512 +5421337 UP 10 +5421337 waslock = 0 +5421337 512 512 +~~~ +~~~ +5421350 512 1536 +~~~ +~~~ +5421352 512 1024 +5421353 homeCount = 81 +5421354 waitCount = 39 +5421354 ripCount = 34 +5421355 locktype1 = 2 +5421355 locktype2 = 7 +5421355 locktype3 = 4 +5421356 goalCount = 0 +5421356 goalTotal = 30 +5421357 otherCount = 38 +~~~ +~~~ +5421379 DOWN 10 +5421379 0 1024 +~~~ +~~~ +~~~ +~~~ +5421398 homeCount = 81 +5421398 waitCount = 39 +5421399 ripCount = 34 +5421399 locktype1 = 2 +5421400 locktype2 = 7 +5421400 locktype3 = 4 +5421401 goalCount = 0 +5421401 goalTotal = 30 +5421402 otherCount = 38 +~~~ +5421457 UP 10 +5421457 waslock = 0 +5421456 512 1024 +~~~ +5424643 DOWN 10 +5424643 0 1024 +~~~ +~~~ +~~~ +~~~ +5424663 homeCount = 81 +5424664 waitCount = 39 +5424664 ripCount = 34 +5424665 locktype1 = 2 +5424665 locktype2 = 7 +5424666 locktype3 = 4 +5424666 goalCount = 0 +5424667 goalTotal = 30 +5424667 otherCount = 38 +~~~ +5424697 UP 10 +5424698 waslock = 0 +5424697 512 1024 +~~~ +5426707 DOWN 10 +5426707 0 1024 +~~~ +~~~ +~~~ +~~~ +5426734 homeCount = 81 +5426734 waitCount = 39 +5426735 ripCount = 34 +5426735 locktype1 = 2 +5426736 locktype2 = 7 +5426736 locktype3 = 4 +5426737 goalCount = 0 +5426737 goalTotal = 30 +5426738 otherCount = 38 +~~~ +5426750 UP 10 +5426750 waslock = 0 +5426750 512 1024 +~~~ +5426812 DOWN 10 +5426812 0 1024 +~~~ +~~~ +~~~ +~~~ +5426833 homeCount = 81 +5426833 waitCount = 39 +5426834 ripCount = 34 +5426834 locktype1 = 2 +5426835 locktype2 = 7 +5426835 locktype3 = 4 +5426836 goalCount = 0 +5426836 goalTotal = 30 +5426837 otherCount = 38 +~~~ +5429056 UP 11 +5429056 1024 1024 +5429109 DOWN 11 +5429109 0 1024 +5429215 UP 11 +5429215 1024 1024 +5433057 BEEP1 +5433057 BEEP2 +~~~ +~~~ +~~~ +5433081 1024 33555456 +~~~ +5433231 1024 1024 +5433241 DOWN 11 +5433241 0 1024 +5433252 UP 11 +5433252 1024 1024 +~~~ +~~~ +5433732 1024 0 +~~~ +~~~ +5433734 1024 1 +~~~ +~~~ +5433736 1024 3 +~~~ +~~~ +5433737 1024 7 +~~~ +~~~ +5433739 1024 15 +~~~ +~~~ +5433741 1024 31 +~~~ +~~~ +5433743 1024 63 +~~~ +~~~ +5433745 1024 127 +~~~ +~~~ +5433746 1024 255 +5433747 homeCount = 81 +5433748 waitCount = 39 +5433749 ripCount = 35 +5433749 locktype1 = 2 +5433770 locktype2 = 7 +5433770 locktype3 = 4 +5433771 goalCount = 0 +5433771 goalTotal = 30 +5433772 otherCount = 38 +~~~ +5433773 CURRENTGOAL IS [3] +~~~ +5439996 DOWN 11 +5439996 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5440032 homeCount = 81 +5440032 waitCount = 39 +5440033 ripCount = 35 +5440033 locktype1 = 2 +5440034 locktype2 = 7 +5440034 locktype3 = 4 +5440035 goalCount = 0 +5440035 goalTotal = 30 +5440035 otherCount = 38 +~~~ +5440037 CURRENTGOAL IS [3] +~~~ +5448817 UP 6 +5448817 32 255 +~~~ +~~~ +5449550 DOWN 6 +5449550 0 255 +~~~ +~~~ +5449577 0 254 +~~~ +~~~ +5449579 0 252 +~~~ +~~~ +5449580 0 248 +~~~ +~~~ +5449582 0 240 +~~~ +~~~ +5449584 0 224 +~~~ +~~~ +5449586 0 192 +~~~ +~~~ +5449588 0 128 +~~~ +~~~ +5449589 0 0 +~~~ +~~~ +5449591 0 512 +5449592 homeCount = 81 +5449593 waitCount = 39 +5449593 ripCount = 35 +5449594 locktype1 = 2 +5449594 locktype2 = 7 +5449615 locktype3 = 4 +5449616 goalCount = 0 +5449616 goalTotal = 30 +5449617 otherCount = 39 +~~~ +5453833 UP 10 +5453833 waslock = 0 +5453833 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5453864 512 16777728 +~~~ +5454014 512 512 +5454054 DOWN 10 +5454054 0 512 +5454062 UP 10 +5454062 waslock = 0 +5454062 512 512 +~~~ +~~~ +5454080 512 2560 +~~~ +~~~ +5454082 512 2048 +5454083 homeCount = 82 +5454084 waitCount = 39 +5454084 ripCount = 35 +5454085 locktype1 = 2 +5454085 locktype2 = 7 +5454086 locktype3 = 4 +5454086 goalCount = 0 +5454087 goalTotal = 30 +5454087 otherCount = 39 +~~~ +~~~ +5454109 DOWN 10 +5454109 0 2048 +~~~ +~~~ +~~~ +~~~ +5454135 homeCount = 82 +5454135 waitCount = 39 +5454136 ripCount = 35 +5454136 locktype1 = 2 +5454137 locktype2 = 7 +5454137 locktype3 = 4 +5454138 goalCount = 0 +5454138 goalTotal = 30 +5454139 otherCount = 39 +~~~ +5454155 UP 10 +5454155 waslock = 0 +5454155 512 2048 +~~~ +5459304 DOWN 10 +5459304 0 2048 +~~~ +~~~ +~~~ +~~~ +5459331 homeCount = 82 +5459331 waitCount = 39 +5459332 ripCount = 35 +5459332 locktype1 = 2 +5459333 locktype2 = 7 +5459333 locktype3 = 4 +5459334 goalCount = 0 +5459334 goalTotal = 30 +5459335 otherCount = 39 +~~~ +5461800 UP 12 +5461800 2048 2048 +5464976 DOWN 12 +5464975 0 2048 +5464998 UP 12 +5464998 2048 2048 +5465058 DOWN 12 +5465058 0 2048 +5465105 UP 12 +5465105 2048 2048 +5465228 DOWN 12 +5465228 0 2048 +5465245 UP 12 +5465245 2048 2048 +5467049 DOWN 12 +5467049 0 2048 +5467092 UP 12 +5467092 2048 2048 +5467349 DOWN 12 +5467349 0 2048 +5467359 UP 12 +5467359 2048 2048 +5468800 CLICK1 +5468800 CLICK2 +~~~ +~~~ +~~~ +5468821 2048 67110912 +~~~ +5468971 2048 2048 +5477415 DOWN 12 +5477415 0 2048 +~~~ +~~~ +5477438 0 0 +~~~ +~~~ +5477440 0 1 +~~~ +~~~ +5477442 0 3 +~~~ +~~~ +5477444 0 7 +~~~ +~~~ +5477446 0 15 +~~~ +~~~ +5477447 0 31 +~~~ +~~~ +5477449 0 63 +~~~ +~~~ +5477451 0 127 +~~~ +~~~ +5477453 0 255 +5477454 homeCount = 82 +5477454 waitCount = 40 +5477455 ripCount = 35 +5477455 locktype1 = 2 +5477456 locktype2 = 7 +5477456 locktype3 = 4 +5477477 goalCount = 0 +5477478 goalTotal = 30 +5477478 otherCount = 39 +~~~ +5477479 CURRENTGOAL IS [3] +~~~ +5481136 UP 3 +5481136 4 255 +~~~ +~~~ +5481155 outer reward +~~~ +5481155 4 262399 +~~~ +~~~ +5481605 4 255 +5487589 DOWN 3 +5487589 0 255 +5487610 4 255 +~~~ +~~~ +5487626 4 254 +~~~ +~~~ +5487628 4 252 +~~~ +~~~ +5487630 4 248 +~~~ +~~~ +5487631 4 240 +~~~ +~~~ +5487633 4 224 +~~~ +~~~ +5487635 4 192 +~~~ +~~~ +5487637 4 128 +~~~ +~~~ +5487639 4 0 +~~~ +~~~ +5487641 4 512 +5487642 homeCount = 82 +5487642 waitCount = 40 +5487643 ripCount = 35 +5487643 locktype1 = 2 +5487644 locktype2 = 7 +5487665 locktype3 = 4 +5487665 goalCount = 1 +5487666 goalTotal = 31 +5487666 otherCount = 39 +~~~ +5487708 DOWN 3 +5487708 0 512 +5487767 4 512 +5487817 DOWN 3 +5487817 0 512 +5492910 UP 10 +5492910 waslock = 0 +5492910 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5492939 512 16777728 +~~~ +5493089 512 512 +5493153 DOWN 10 +5493153 0 512 +~~~ +~~~ +5493174 0 1536 +~~~ +~~~ +5493176 0 1024 +5493177 homeCount = 83 +5493178 waitCount = 40 +5493178 ripCount = 35 +5493179 locktype1 = 2 +5493179 locktype2 = 7 +5493180 locktype3 = 4 +5493180 goalCount = 1 +5493181 goalTotal = 31 +5493181 otherCount = 39 +~~~ +5493182 UP 10 +5493203 waslock = 0 +5493182 512 1024 +~~~ +5496843 DOWN 10 +5496843 0 1024 +~~~ +~~~ +~~~ +~~~ +5496867 homeCount = 83 +5496867 waitCount = 40 +5496868 ripCount = 35 +5496868 locktype1 = 2 +5496869 locktype2 = 7 +5496869 locktype3 = 4 +5496870 goalCount = 1 +5496870 goalTotal = 31 +5496870 otherCount = 39 +~~~ +5496907 UP 10 +5496907 waslock = 0 +5496907 512 1024 +~~~ +5496966 DOWN 10 +5496966 0 1024 +~~~ +~~~ +~~~ +~~~ +5496990 homeCount = 83 +5496990 waitCount = 40 +5496991 ripCount = 35 +5496991 locktype1 = 2 +5496992 locktype2 = 7 +5496992 locktype3 = 4 +5496993 goalCount = 1 +5496993 goalTotal = 31 +5496994 otherCount = 39 +~~~ +5499060 UP 11 +5499060 1024 1024 +5502861 DOWN 11 +5502861 0 1024 +5502900 UP 11 +5502900 1024 1024 +5503033 DOWN 11 +5503033 0 1024 +5503058 UP 11 +5503058 1024 1024 +5503803 DOWN 11 +5503803 0 1024 +5503839 UP 11 +5503839 1024 1024 +5504854 DOWN 11 +5504854 0 1024 +5504881 UP 11 +5504881 1024 1024 +5506061 BEEP1 +5506061 BEEP2 +~~~ +~~~ +~~~ +5506088 1024 33555456 +~~~ +5506238 1024 1024 +5512469 DOWN 11 +5512469 0 1024 +~~~ +~~~ +5512494 0 0 +~~~ +~~~ +5512496 0 1 +~~~ +~~~ +5512497 0 3 +~~~ +~~~ +5512499 0 7 +~~~ +~~~ +5512501 0 15 +~~~ +~~~ +5512503 0 31 +~~~ +~~~ +5512505 0 63 +~~~ +~~~ +5512507 0 127 +~~~ +~~~ +5512508 0 255 +5512509 homeCount = 83 +5512510 waitCount = 40 +5512510 ripCount = 36 +5512511 locktype1 = 2 +5512511 locktype2 = 7 +5512532 locktype3 = 4 +5512533 goalCount = 1 +5512533 goalTotal = 31 +5512534 otherCount = 39 +~~~ +5512535 CURRENTGOAL IS [3] +~~~ +5512585 UP 11 +5512585 1024 255 +5512624 DOWN 11 +5512624 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5512659 homeCount = 83 +5512660 waitCount = 40 +5512660 ripCount = 36 +5512661 locktype1 = 2 +5512661 locktype2 = 7 +5512662 locktype3 = 4 +5512662 goalCount = 1 +5512663 goalTotal = 31 +5512663 otherCount = 39 +~~~ +5512664 CURRENTGOAL IS [3] +~~~ +5512721 UP 11 +5512721 1024 255 +5512757 DOWN 11 +5512757 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5512790 homeCount = 83 +5512791 waitCount = 40 +5512791 ripCount = 36 +5512792 locktype1 = 2 +5512792 locktype2 = 7 +5512793 locktype3 = 4 +5512793 goalCount = 1 +5512794 goalTotal = 31 +5512794 otherCount = 39 +~~~ +5512795 CURRENTGOAL IS [3] +~~~ +5512798 UP 11 +5512798 1024 255 +5515026 DOWN 11 +5515026 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5515062 homeCount = 83 +5515062 waitCount = 40 +5515063 ripCount = 36 +5515063 locktype1 = 2 +5515064 locktype2 = 7 +5515064 locktype3 = 4 +5515065 goalCount = 1 +5515065 goalTotal = 31 +5515066 otherCount = 39 +~~~ +5515067 CURRENTGOAL IS [3] +~~~ +5515067 UP 11 +5515067 1024 255 +5515120 DOWN 11 +5515120 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5515163 homeCount = 83 +5515163 waitCount = 40 +5515164 ripCount = 36 +5515164 locktype1 = 2 +5515165 locktype2 = 7 +5515165 locktype3 = 4 +5515166 goalCount = 1 +5515166 goalTotal = 31 +5515167 otherCount = 39 +~~~ +5515168 CURRENTGOAL IS [3] +~~~ +5522004 UP 7 +5522004 64 255 +~~~ +~~~ +5523259 DOWN 7 +5523259 0 255 +~~~ +~~~ +5523277 0 254 +~~~ +~~~ +5523278 0 252 +~~~ +~~~ +5523280 0 248 +~~~ +~~~ +5523282 0 240 +~~~ +~~~ +5523284 0 224 +~~~ +~~~ +5523286 0 192 +~~~ +~~~ +5523288 0 128 +~~~ +~~~ +5523289 0 0 +~~~ +~~~ +5523291 0 512 +5523292 homeCount = 83 +5523293 waitCount = 40 +5523293 ripCount = 36 +5523294 locktype1 = 2 +5523294 locktype2 = 7 +5523315 locktype3 = 4 +5523316 goalCount = 1 +5523316 goalTotal = 31 +5523317 otherCount = 40 +~~~ +5529655 UP 10 +5529655 waslock = 0 +5529655 512 512 +~~~ +5529677 DOWN 10 +5529677 0 512 +~~~ +~~~ +~~~ +~~~ +5529683 0 16777728 +~~~ +5529696 UP 10 +5529697 waslock = 0 +5529696 512 16777728 +~~~ +~~~ +5529707 512 16779776 +~~~ +~~~ +5529709 512 16779264 +5529710 homeCount = 84 +5529710 waitCount = 40 +5529711 ripCount = 36 +5529711 locktype1 = 2 +5529712 locktype2 = 7 +5529712 locktype3 = 4 +5529713 goalCount = 1 +5529713 goalTotal = 31 +5529713 otherCount = 40 +~~~ +~~~ +5529833 512 2048 +5535219 DOWN 10 +5535219 0 2048 +~~~ +~~~ +~~~ +~~~ +5535242 homeCount = 84 +5535243 waitCount = 40 +5535243 ripCount = 36 +5535244 locktype1 = 2 +5535244 locktype2 = 7 +5535244 locktype3 = 4 +5535245 goalCount = 1 +5535245 goalTotal = 31 +5535246 otherCount = 40 +~~~ +5538565 UP 12 +5538565 2048 2048 +5544549 DOWN 12 +5544549 0 2048 +5544570 UP 12 +5544570 2048 2048 +5545566 CLICK1 +5545566 CLICK2 +~~~ +~~~ +~~~ +5545592 2048 67110912 +~~~ +5545742 2048 2048 +5550885 DOWN 12 +5550885 0 2048 +~~~ +~~~ +5550911 0 0 +~~~ +~~~ +5550912 0 1 +~~~ +~~~ +5550914 0 3 +~~~ +~~~ +5550916 0 7 +~~~ +~~~ +5550918 0 15 +~~~ +~~~ +5550920 0 31 +~~~ +~~~ +5550922 0 63 +~~~ +~~~ +5550923 0 127 +~~~ +~~~ +5550925 0 255 +5550926 homeCount = 84 +5550927 waitCount = 41 +5550927 ripCount = 36 +5550928 locktype1 = 2 +5550928 locktype2 = 7 +5550929 locktype3 = 4 +5550950 goalCount = 1 +5550950 goalTotal = 31 +5550951 otherCount = 40 +~~~ +5550952 CURRENTGOAL IS [3] +~~~ +5550952 UP 12 +5550952 2048 255 +5551037 DOWN 12 +5551037 0 255 +~~~ +~~~ +~~~ +5551057 UP 12 +5551057 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5551071 homeCount = 84 +5551072 waitCount = 41 +5551072 ripCount = 36 +5551073 locktype1 = 2 +5551073 locktype2 = 7 +5551074 locktype3 = 4 +5551074 goalCount = 1 +5551075 goalTotal = 31 +5551075 otherCount = 40 +~~~ +5551076 CURRENTGOAL IS [3] +~~~ +5551164 DOWN 12 +5551164 0 255 +5551176 UP 12 +5551176 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5551213 homeCount = 84 +5551214 waitCount = 41 +5551214 ripCount = 36 +5551215 locktype1 = 2 +5551215 locktype2 = 7 +5551216 locktype3 = 4 +5551216 goalCount = 1 +5551217 goalTotal = 31 +5551217 otherCount = 40 +~~~ +5551218 CURRENTGOAL IS [3] +~~~ +5554861 DOWN 12 +5554861 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5554903 homeCount = 84 +5554904 waitCount = 41 +5554904 ripCount = 36 +5554905 locktype1 = 2 +5554905 locktype2 = 7 +5554906 locktype3 = 4 +5554906 goalCount = 1 +5554907 goalTotal = 31 +5554907 otherCount = 40 +~~~ +5554908 CURRENTGOAL IS [3] +~~~ +5559663 UP 2 +5559663 2 255 +~~~ +~~~ +5561437 DOWN 2 +5561437 0 255 +~~~ +~~~ +5561457 0 254 +~~~ +~~~ +5561459 0 252 +~~~ +~~~ +5561460 0 248 +~~~ +~~~ +5561462 0 240 +~~~ +~~~ +5561464 0 224 +~~~ +~~~ +5561466 0 192 +~~~ +~~~ +5561468 0 128 +~~~ +~~~ +5561469 0 0 +~~~ +~~~ +5561471 0 512 +5561472 homeCount = 84 +5561473 waitCount = 41 +5561473 ripCount = 36 +5561474 locktype1 = 2 +5561474 locktype2 = 7 +5561495 locktype3 = 4 +5561496 goalCount = 1 +5561496 goalTotal = 31 +5561497 otherCount = 41 +~~~ +5564965 UP 10 +5564965 waslock = 0 +5564965 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5564994 512 16777728 +~~~ +5565007 DOWN 10 +5565007 0 16777728 +~~~ +~~~ +5565037 0 16778752 +~~~ +~~~ +5565039 0 16778240 +5565040 homeCount = 85 +5565040 waitCount = 41 +5565041 ripCount = 36 +5565041 locktype1 = 2 +5565042 locktype2 = 7 +5565042 locktype3 = 4 +5565043 goalCount = 1 +5565043 goalTotal = 31 +5565044 otherCount = 41 +~~~ +5565065 UP 10 +5565065 waslock = 0 +5565065 512 16778240 +~~~ +5565144 512 1024 +5565160 DOWN 10 +5565160 0 1024 +5565173 UP 10 +5565173 waslock = 0 +5565173 512 1024 +~~~ +~~~ +~~~ +~~~ +5565194 homeCount = 85 +5565194 waitCount = 41 +5565195 ripCount = 36 +5565195 locktype1 = 2 +5565196 locktype2 = 7 +5565196 locktype3 = 4 +5565196 goalCount = 1 +5565197 goalTotal = 31 +5565197 otherCount = 41 +~~~ +~~~ +5569406 DOWN 10 +5569406 0 1024 +~~~ +~~~ +~~~ +~~~ +5569433 homeCount = 85 +5569433 waitCount = 41 +5569434 ripCount = 36 +5569434 locktype1 = 2 +5569435 locktype2 = 7 +5569435 locktype3 = 4 +5569435 goalCount = 1 +5569436 goalTotal = 31 +5569436 otherCount = 41 +~~~ +5569465 UP 10 +5569466 waslock = 0 +5569465 512 1024 +5569491 DOWN 10 +5569491 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +5569518 homeCount = 85 +5569518 waitCount = 41 +5569519 ripCount = 36 +5569519 locktype1 = 2 +5569520 locktype2 = 7 +5569520 locktype3 = 4 +5569521 goalCount = 1 +5569521 goalTotal = 31 +5569522 otherCount = 41 +~~~ +5571097 UP 11 +5571097 1024 1024 +5574495 DOWN 11 +5574495 0 1024 +5574542 UP 11 +5574542 1024 1024 +5574781 DOWN 11 +5574781 0 1024 +5574802 UP 11 +5574802 1024 1024 +5576598 BEEP1 +5576598 BEEP2 +~~~ +~~~ +~~~ +5576622 1024 33555456 +~~~ +5576771 1024 1024 +5582951 DOWN 11 +5582951 0 1024 +~~~ +~~~ +5582969 0 0 +~~~ +~~~ +5582971 0 1 +~~~ +~~~ +5582973 0 3 +~~~ +~~~ +5582974 0 7 +~~~ +~~~ +5582976 0 15 +~~~ +~~~ +5582978 0 31 +~~~ +~~~ +5582980 0 63 +~~~ +~~~ +5582982 0 127 +~~~ +~~~ +5582984 0 255 +5582985 homeCount = 85 +5582985 waitCount = 41 +5582986 ripCount = 37 +5582986 locktype1 = 2 +5582987 locktype2 = 7 +5582987 locktype3 = 4 +5583008 goalCount = 1 +5583008 goalTotal = 31 +5583009 otherCount = 41 +~~~ +5583010 CURRENTGOAL IS [3] +~~~ +5583073 UP 11 +5583073 1024 255 +5583104 DOWN 11 +5583104 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5583138 homeCount = 85 +5583138 waitCount = 41 +5583139 ripCount = 37 +5583139 locktype1 = 2 +5583140 locktype2 = 7 +5583140 locktype3 = 4 +5583141 goalCount = 1 +5583141 goalTotal = 31 +5583142 otherCount = 41 +~~~ +5583143 CURRENTGOAL IS [3] +~~~ +5583208 UP 11 +5583208 1024 255 +5583225 DOWN 11 +5583225 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5583261 homeCount = 85 +5583262 waitCount = 41 +5583262 ripCount = 37 +5583263 locktype1 = 2 +5583263 locktype2 = 7 +5583264 locktype3 = 4 +5583264 goalCount = 1 +5583265 goalTotal = 31 +5583265 otherCount = 41 +~~~ +5583266 CURRENTGOAL IS [3] +~~~ +5583336 UP 11 +5583336 1024 255 +5585553 DOWN 11 +5585553 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5585591 homeCount = 85 +5585592 waitCount = 41 +5585592 ripCount = 37 +5585593 locktype1 = 2 +5585593 locktype2 = 7 +5585594 locktype3 = 4 +5585594 goalCount = 1 +5585595 goalTotal = 31 +5585595 otherCount = 41 +~~~ +5585596 CURRENTGOAL IS [3] +~~~ +5585606 UP 11 +5585606 1024 255 +5585621 DOWN 11 +5585621 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5585656 homeCount = 85 +5585656 waitCount = 41 +5585657 ripCount = 37 +5585657 locktype1 = 2 +5585658 locktype2 = 7 +5585658 locktype3 = 4 +5585659 goalCount = 1 +5585659 goalTotal = 31 +5585660 otherCount = 41 +~~~ +5585661 CURRENTGOAL IS [3] +~~~ +5589893 UP 4 +5589893 8 255 +~~~ +~~~ +5590508 DOWN 4 +5590508 0 255 +~~~ +~~~ +5590526 0 254 +~~~ +~~~ +5590528 0 252 +~~~ +~~~ +5590530 0 248 +~~~ +~~~ +5590532 0 240 +~~~ +~~~ +5590533 0 224 +~~~ +~~~ +5590535 0 192 +~~~ +~~~ +5590537 0 128 +~~~ +~~~ +5590539 0 0 +~~~ +~~~ +5590541 0 512 +5590542 homeCount = 85 +5590542 waitCount = 41 +5590543 ripCount = 37 +5590543 locktype1 = 2 +5590544 locktype2 = 7 +5590565 locktype3 = 4 +5590565 goalCount = 1 +5590566 goalTotal = 31 +5590566 otherCount = 42 +~~~ +5590567 8 512 +5590669 DOWN 4 +5590669 0 512 +5590754 8 512 +5590937 DOWN 4 +5590937 0 512 +5595749 UP 10 +5595749 waslock = 0 +5595749 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5595775 512 16777728 +~~~ +5595925 512 512 +5595965 DOWN 10 +5595965 0 512 +~~~ +~~~ +5595990 0 2560 +~~~ +5595992 UP 10 +5595992 waslock = 0 +5595992 512 2560 +~~~ +5595994 homeCount = 86 +5595994 waitCount = 41 +5595995 ripCount = 37 +5595995 locktype1 = 2 +5595996 locktype2 = 7 +5595996 locktype3 = 4 +5595997 goalCount = 1 +5595997 goalTotal = 31 +5596018 otherCount = 42 +~~~ +5596019 512 2048 +~~~ +5601517 DOWN 10 +5601517 0 2048 +~~~ +~~~ +~~~ +~~~ +5601544 homeCount = 86 +5601544 waitCount = 41 +5601545 ripCount = 37 +5601545 locktype1 = 2 +5601546 locktype2 = 7 +5601546 locktype3 = 4 +5601547 goalCount = 1 +5601547 goalTotal = 31 +5601548 otherCount = 42 +~~~ +5601560 UP 10 +5601560 waslock = 0 +5601560 512 2048 +~~~ +5601601 DOWN 10 +5601601 0 2048 +~~~ +~~~ +~~~ +~~~ +5601625 homeCount = 86 +5601625 waitCount = 41 +5601626 ripCount = 37 +5601626 locktype1 = 2 +5601627 locktype2 = 7 +5601627 locktype3 = 4 +5601628 goalCount = 1 +5601628 goalTotal = 31 +5601629 otherCount = 42 +~~~ +5603350 UP 12 +5603350 2048 2048 +5607351 CLICK1 +5607351 CLICK2 +~~~ +~~~ +~~~ +5607373 2048 67110912 +~~~ +5607523 2048 2048 +5613771 DOWN 12 +5613771 0 2048 +~~~ +~~~ +5613791 0 0 +~~~ +~~~ +5613793 0 1 +~~~ +~~~ +5613794 0 3 +~~~ +~~~ +5613796 0 7 +~~~ +~~~ +5613798 0 15 +~~~ +~~~ +5613800 0 31 +~~~ +~~~ +5613802 0 63 +~~~ +~~~ +5613803 0 127 +~~~ +~~~ +5613805 0 255 +5613806 homeCount = 86 +5613807 waitCount = 42 +5613807 ripCount = 37 +5613808 locktype1 = 2 +5613808 locktype2 = 7 +5613829 locktype3 = 4 +5613830 goalCount = 1 +5613830 goalTotal = 31 +5613831 otherCount = 42 +~~~ +5613832 CURRENTGOAL IS [3] +~~~ +5613832 UP 12 +5613832 2048 255 +5613856 DOWN 12 +5613856 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5613886 homeCount = 86 +5613886 waitCount = 42 +5613887 ripCount = 37 +5613887 locktype1 = 2 +5613888 locktype2 = 7 +5613888 locktype3 = 4 +5613889 goalCount = 1 +5613889 goalTotal = 31 +5613890 otherCount = 42 +~~~ +5613891 CURRENTGOAL IS [3] +~~~ +5613970 UP 12 +5613970 2048 255 +5613993 DOWN 12 +5613993 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5614033 homeCount = 86 +5614034 waitCount = 42 +5614034 ripCount = 37 +5614035 locktype1 = 2 +5614035 locktype2 = 7 +5614036 locktype3 = 4 +5614036 goalCount = 1 +5614037 goalTotal = 31 +5614037 otherCount = 42 +~~~ +5614038 CURRENTGOAL IS [3] +~~~ +5614039 UP 12 +5614039 2048 255 +5614423 DOWN 12 +5614423 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5614462 homeCount = 86 +5614463 waitCount = 42 +5614463 ripCount = 37 +5614464 locktype1 = 2 +5614464 locktype2 = 7 +5614465 locktype3 = 4 +5614465 goalCount = 1 +5614466 goalTotal = 31 +5614466 otherCount = 42 +~~~ +5614467 CURRENTGOAL IS [3] +~~~ +5617914 UP 1 +5617914 1 255 +~~~ +~~~ +5619242 DOWN 1 +5619242 0 255 +~~~ +~~~ +5619266 0 254 +~~~ +~~~ +5619268 0 252 +~~~ +~~~ +5619270 0 248 +~~~ +~~~ +5619271 0 240 +~~~ +~~~ +5619273 0 224 +~~~ +~~~ +5619275 0 192 +~~~ +~~~ +5619277 0 128 +~~~ +~~~ +5619279 0 0 +~~~ +~~~ +5619281 0 512 +5619282 homeCount = 86 +5619282 waitCount = 42 +5619282 ripCount = 37 +5619283 locktype1 = 2 +5619283 locktype2 = 7 +5619305 locktype3 = 4 +5619305 goalCount = 1 +5619305 goalTotal = 31 +5619306 otherCount = 43 +~~~ +5623329 UP 10 +5623329 waslock = 0 +5623329 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5623362 512 16777728 +~~~ +5623512 512 512 +5623523 DOWN 10 +5623523 0 512 +~~~ +~~~ +5623537 0 2560 +~~~ +~~~ +5623539 0 2048 +5623540 homeCount = 87 +5623540 waitCount = 42 +5623541 ripCount = 37 +5623541 locktype1 = 2 +5623542 locktype2 = 7 +5623542 locktype3 = 4 +5623543 goalCount = 1 +5623543 goalTotal = 31 +5623544 otherCount = 43 +~~~ +5623544 UP 10 +5623565 waslock = 0 +5623544 512 2048 +~~~ +5623698 DOWN 10 +5623698 0 2048 +5623712 UP 10 +5623712 waslock = 0 +5623712 512 2048 +~~~ +~~~ +~~~ +~~~ +5623721 homeCount = 87 +5623722 waitCount = 42 +5623722 ripCount = 37 +5623723 locktype1 = 2 +5623723 locktype2 = 7 +5623723 locktype3 = 4 +5623724 goalCount = 1 +5623724 goalTotal = 31 +5623725 otherCount = 43 +~~~ +~~~ +5627894 DOWN 10 +5627894 0 2048 +~~~ +~~~ +~~~ +~~~ +5627923 homeCount = 87 +5627923 waitCount = 42 +5627924 ripCount = 37 +5627924 locktype1 = 2 +5627925 locktype2 = 7 +5627925 locktype3 = 4 +5627926 goalCount = 1 +5627926 goalTotal = 31 +5627927 otherCount = 43 +~~~ +5629774 UP 12 +5629774 2048 2048 +5635275 CLICK1 +5635275 CLICK2 +~~~ +~~~ +~~~ +5635302 2048 67110912 +~~~ +5635452 2048 2048 +5641984 DOWN 12 +5641984 0 2048 +5642006 UP 12 +5642006 2048 2048 +~~~ +~~~ +5642011 2048 0 +~~~ +~~~ +5642013 2048 1 +~~~ +~~~ +5642015 2048 3 +~~~ +~~~ +5642016 2048 7 +~~~ +~~~ +5642018 2048 15 +~~~ +~~~ +5642020 2048 31 +~~~ +~~~ +5642022 2048 63 +~~~ +~~~ +5642024 2048 127 +~~~ +~~~ +5642026 2048 255 +5642027 homeCount = 87 +5642027 waitCount = 43 +5642028 ripCount = 37 +5642028 locktype1 = 2 +5642049 locktype2 = 7 +5642049 locktype3 = 4 +5642050 goalCount = 1 +5642050 goalTotal = 31 +5642051 otherCount = 43 +~~~ +5642052 CURRENTGOAL IS [3] +~~~ +5642075 DOWN 12 +5642075 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5642117 homeCount = 87 +5642117 waitCount = 43 +5642118 ripCount = 37 +5642118 locktype1 = 2 +5642119 locktype2 = 7 +5642119 locktype3 = 4 +5642120 goalCount = 1 +5642120 goalTotal = 31 +5642121 otherCount = 43 +~~~ +5642122 CURRENTGOAL IS [3] +~~~ +5647230 UP 2 +5647229 2 255 +~~~ +~~~ +5647953 DOWN 2 +5647953 0 255 +~~~ +~~~ +5647972 0 254 +~~~ +~~~ +5647974 0 252 +~~~ +~~~ +5647976 0 248 +~~~ +~~~ +5647977 0 240 +~~~ +~~~ +5647979 0 224 +~~~ +~~~ +5647981 0 192 +~~~ +~~~ +5647983 0 128 +~~~ +~~~ +5647985 0 0 +~~~ +~~~ +5647987 0 512 +5647988 homeCount = 87 +5647988 waitCount = 43 +5647989 ripCount = 37 +5647989 locktype1 = 2 +5647990 locktype2 = 7 +5648010 locktype3 = 4 +5648011 goalCount = 1 +5648011 goalTotal = 31 +5648012 otherCount = 44 +~~~ +5648216 2 512 +5648546 DOWN 2 +5648546 0 512 +5648670 2 512 +5648920 DOWN 2 +5648920 0 512 +5652561 UP 10 +5652561 waslock = 0 +5652561 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5652587 512 16777728 +~~~ +5652737 512 512 +5657217 DOWN 10 +5657217 0 512 +5657227 UP 10 +5657227 waslock = 0 +5657227 512 512 +~~~ +~~~ +5657243 512 2560 +~~~ +~~~ +5657245 512 2048 +5657246 homeCount = 88 +5657247 waitCount = 43 +5657247 ripCount = 37 +5657248 locktype1 = 2 +5657248 locktype2 = 7 +5657248 locktype3 = 4 +5657249 goalCount = 1 +5657249 goalTotal = 31 +5657250 otherCount = 44 +~~~ +~~~ +5657312 DOWN 10 +5657312 0 2048 +~~~ +~~~ +~~~ +~~~ +5657336 homeCount = 88 +5657336 waitCount = 43 +5657337 ripCount = 37 +5657337 locktype1 = 2 +5657338 locktype2 = 7 +5657338 locktype3 = 4 +5657339 goalCount = 1 +5657339 goalTotal = 31 +5657340 otherCount = 44 +~~~ +5659131 UP 12 +5659131 2048 2048 +5662533 DOWN 12 +5662533 0 2048 +5662574 UP 12 +5662574 2048 2048 +5662705 DOWN 12 +5662705 0 2048 +5662761 UP 12 +5662761 2048 2048 +5663131 CLICK1 +5663131 CLICK2 +~~~ +~~~ +~~~ +5663154 2048 67110912 +~~~ +5663304 2048 2048 +5670561 DOWN 12 +5670561 0 2048 +~~~ +~~~ +5670583 0 0 +~~~ +~~~ +5670585 0 1 +~~~ +~~~ +5670587 0 3 +~~~ +~~~ +5670589 0 7 +~~~ +~~~ +5670591 0 15 +~~~ +~~~ +5670592 0 31 +~~~ +~~~ +5670594 0 63 +~~~ +~~~ +5670596 0 127 +~~~ +~~~ +5670598 0 255 +5670599 homeCount = 88 +5670599 waitCount = 44 +5670600 ripCount = 37 +5670600 locktype1 = 2 +5670601 locktype2 = 7 +5670601 locktype3 = 4 +5670622 goalCount = 1 +5670623 goalTotal = 31 +5670623 otherCount = 44 +~~~ +5670624 CURRENTGOAL IS [3] +~~~ +5670625 UP 12 +5670625 2048 255 +5670656 DOWN 12 +5670656 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5670690 homeCount = 88 +5670691 waitCount = 44 +5670691 ripCount = 37 +5670692 locktype1 = 2 +5670692 locktype2 = 7 +5670693 locktype3 = 4 +5670693 goalCount = 1 +5670694 goalTotal = 31 +5670694 otherCount = 44 +~~~ +5670695 CURRENTGOAL IS [3] +~~~ +5677942 UP 2 +5677942 2 255 +~~~ +~~~ +5678387 DOWN 2 +5678387 0 255 +~~~ +~~~ +5678415 0 254 +~~~ +~~~ +5678417 0 252 +~~~ +~~~ +5678419 0 248 +~~~ +~~~ +5678420 0 240 +~~~ +~~~ +5678422 0 224 +~~~ +~~~ +5678424 0 192 +~~~ +~~~ +5678426 0 128 +~~~ +~~~ +5678428 0 0 +~~~ +~~~ +5678430 0 512 +5678431 homeCount = 88 +5678431 waitCount = 44 +5678432 ripCount = 37 +5678432 locktype1 = 2 +5678433 locktype2 = 7 +5678454 locktype3 = 4 +5678454 goalCount = 1 +5678455 goalTotal = 31 +5678455 otherCount = 45 +~~~ +5681630 UP 10 +5681630 waslock = 0 +5681630 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5681661 512 16777728 +~~~ +5681811 512 512 +5686735 DOWN 10 +5686735 0 512 +~~~ +~~~ +5686755 0 1536 +~~~ +~~~ +5686757 0 1024 +5686758 homeCount = 89 +5686759 waitCount = 44 +5686759 ripCount = 37 +5686760 locktype1 = 2 +5686760 locktype2 = 7 +5686761 locktype3 = 4 +5686761 goalCount = 1 +5686761 goalTotal = 31 +5686762 otherCount = 45 +~~~ +5688438 UP 11 +5688438 1024 1024 +5691438 BEEP1 +5691438 BEEP2 +~~~ +~~~ +~~~ +5691457 1024 33555456 +~~~ +5691544 DOWN 11 +5691544 0 33555456 +5691547 UP 11 +5691547 1024 33555456 +5691607 1024 1024 +~~~ +~~~ +5692129 1024 0 +~~~ +~~~ +5692131 1024 1 +~~~ +~~~ +5692133 1024 3 +~~~ +~~~ +5692134 1024 7 +~~~ +~~~ +5692136 1024 15 +~~~ +~~~ +5692138 1024 31 +~~~ +~~~ +5692140 1024 63 +~~~ +~~~ +5692142 1024 127 +~~~ +~~~ +5692144 1024 255 +5692145 homeCount = 89 +5692145 waitCount = 44 +5692146 ripCount = 38 +5692146 locktype1 = 2 +5692167 locktype2 = 7 +5692168 locktype3 = 4 +5692168 goalCount = 1 +5692169 goalTotal = 31 +5692169 otherCount = 45 +~~~ +5692170 CURRENTGOAL IS [3] +~~~ +5697547 DOWN 11 +5697547 0 255 +5697564 UP 11 +5697564 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697582 homeCount = 89 +5697583 waitCount = 44 +5697583 ripCount = 38 +5697584 locktype1 = 2 +5697584 locktype2 = 7 +5697585 locktype3 = 4 +5697585 goalCount = 1 +5697586 goalTotal = 31 +5697586 otherCount = 45 +~~~ +5697587 CURRENTGOAL IS [3] +~~~ +5697675 DOWN 11 +5697675 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697707 UP 11 +5697707 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +5697712 homeCount = 89 +5697713 waitCount = 44 +5697713 ripCount = 38 +5697714 locktype1 = 2 +5697714 locktype2 = 7 +5697715 locktype3 = 4 +5697715 goalCount = 1 +5697716 goalTotal = 31 +5697716 otherCount = 45 +~~~ +5697717 CURRENTGOAL IS [3] +~~~ +5697811 DOWN 11 +5697811 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697843 UP 11 +5697843 1024 255 +~~~ +~~~ +~~~ +5697846 homeCount = 89 +5697847 waitCount = 44 +5697847 ripCount = 38 +5697848 locktype1 = 2 +5697848 locktype2 = 7 +5697849 locktype3 = 4 +5697849 goalCount = 1 +5697850 goalTotal = 31 +5697850 otherCount = 45 +~~~ +5697851 CURRENTGOAL IS [3] +~~~ +5700488 DOWN 11 +5700488 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5700525 homeCount = 89 +5700526 waitCount = 44 +5700526 ripCount = 38 +5700527 locktype1 = 2 +5700527 locktype2 = 7 +5700528 locktype3 = 4 +5700528 goalCount = 1 +5700528 goalTotal = 31 +5700529 otherCount = 45 +~~~ +5700530 CURRENTGOAL IS [3] +~~~ +5700536 UP 11 +5700536 1024 255 +5700622 DOWN 11 +5700622 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5700656 homeCount = 89 +5700656 waitCount = 44 +5700657 ripCount = 38 +5700657 locktype1 = 2 +5700658 locktype2 = 7 +5700658 locktype3 = 4 +5700659 goalCount = 1 +5700659 goalTotal = 31 +5700660 otherCount = 45 +~~~ +5700661 CURRENTGOAL IS [3] +~~~ +5701175 UP 11 +5701175 1024 255 +5701502 DOWN 11 +5701502 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5701545 homeCount = 89 +5701546 waitCount = 44 +5701547 ripCount = 38 +5701547 locktype1 = 2 +5701548 locktype2 = 7 +5701548 locktype3 = 4 +5701548 goalCount = 1 +5701549 goalTotal = 31 +5701549 otherCount = 45 +~~~ +5701551 CURRENTGOAL IS [3] +~~~ +5701590 UP 11 +5701590 1024 255 +5702159 DOWN 11 +5702159 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5702196 homeCount = 89 +5702196 waitCount = 44 +5702197 ripCount = 38 +5702197 locktype1 = 2 +5702198 locktype2 = 7 +5702198 locktype3 = 4 +5702199 goalCount = 1 +5702199 goalTotal = 31 +5702200 otherCount = 45 +~~~ +5702201 CURRENTGOAL IS [3] +~~~ +5702214 UP 11 +5702214 1024 255 +5703249 DOWN 11 +5703249 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5703287 homeCount = 89 +5703288 waitCount = 44 +5703288 ripCount = 38 +5703289 locktype1 = 2 +5703290 locktype2 = 7 +5703290 locktype3 = 4 +5703290 goalCount = 1 +5703291 goalTotal = 31 +5703291 otherCount = 45 +~~~ +5703292 CURRENTGOAL IS [3] +~~~ +5716846 UP 3 +5716846 4 255 +~~~ +~~~ +5716863 outer reward +~~~ +5716864 4 262399 +~~~ +~~~ +5716866 DOWN 3 +5716866 0 262399 +~~~ +~~~ +5716883 0 262398 +~~~ +~~~ +5716885 0 262396 +~~~ +~~~ +5716887 0 262392 +~~~ +5716888 4 262392 +~~~ +~~~ +5716890 4 262384 +~~~ +~~~ +5716891 4 262368 +~~~ +5716892 4 262336 +~~~ +~~~ +5716894 4 262272 +~~~ +~~~ +5716896 4 262144 +~~~ +~~~ +5716898 4 262656 +5716899 homeCount = 89 +5716899 waitCount = 44 +5716920 ripCount = 38 +5716921 locktype1 = 2 +5716921 locktype2 = 7 +5716922 locktype3 = 4 +5716922 goalCount = 2 +5716923 goalTotal = 32 +5716923 otherCount = 45 +~~~ +5717199 DOWN 3 +5717199 0 262656 +5717223 4 262656 +5717313 4 512 +5717605 DOWN 3 +5717605 0 512 +5717612 4 512 +5717719 DOWN 3 +5717719 0 512 +5717740 4 512 +5717840 DOWN 3 +5717840 0 512 +5717858 4 512 +5717966 DOWN 3 +5717966 0 512 +5717983 4 512 +5718090 DOWN 3 +5718090 0 512 +5718109 4 512 +5723871 DOWN 3 +5723871 0 512 +5723884 4 512 +5724350 DOWN 3 +5724350 0 512 +5724405 4 512 +5724458 DOWN 3 +5724458 0 512 +5728178 UP 10 +5728179 waslock = 0 +5728178 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5728208 512 16777728 +~~~ +5728358 512 512 +5734718 DOWN 10 +5734718 0 512 +5734740 UP 10 +5734740 waslock = 0 +5734740 512 512 +~~~ +~~~ +~~~ +5734743 512 1536 +~~~ +5734744 512 1024 +5734745 homeCount = 90 +5734745 waitCount = 44 +5734746 ripCount = 38 +5734746 locktype1 = 2 +5734747 locktype2 = 7 +5734747 locktype3 = 4 +5734748 goalCount = 2 +5734769 goalTotal = 32 +5734769 otherCount = 45 +~~~ +~~~ +5734818 DOWN 10 +5734818 0 1024 +~~~ +~~~ +~~~ +~~~ +5734839 homeCount = 90 +5734840 waitCount = 44 +5734840 ripCount = 38 +5734841 locktype1 = 2 +5734841 locktype2 = 7 +5734842 locktype3 = 4 +5734842 goalCount = 2 +5734843 goalTotal = 32 +5734843 otherCount = 45 +~~~ +5736341 UP 11 +5736341 1024 1024 +5739841 BEEP1 +5739841 BEEP2 +~~~ +~~~ +~~~ +5739868 1024 33555456 +~~~ +5740018 1024 1024 +5746448 DOWN 11 +5746448 0 1024 +5746457 UP 11 +5746456 1024 1024 +~~~ +~~~ +5746467 1024 0 +~~~ +~~~ +5746469 1024 1 +~~~ +~~~ +5746471 1024 3 +~~~ +~~~ +5746472 1024 7 +~~~ +~~~ +5746474 1024 15 +~~~ +~~~ +5746476 1024 31 +~~~ +~~~ +5746478 1024 63 +~~~ +~~~ +5746480 1024 127 +~~~ +~~~ +5746481 1024 255 +5746482 homeCount = 90 +5746483 waitCount = 44 +5746484 ripCount = 39 +5746484 locktype1 = 2 +5746505 locktype2 = 7 +5746505 locktype3 = 4 +5746506 goalCount = 2 +5746506 goalTotal = 32 +5746507 otherCount = 45 +~~~ +5746508 CURRENTGOAL IS [3] +~~~ +5750211 DOWN 11 +5750211 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5750252 homeCount = 90 +5750253 waitCount = 44 +5750253 ripCount = 39 +5750254 locktype1 = 2 +5750254 locktype2 = 7 +5750255 locktype3 = 4 +5750255 goalCount = 2 +5750256 goalTotal = 32 +5750256 otherCount = 45 +~~~ +5750257 CURRENTGOAL IS [3] +~~~ +5750278 UP 11 +5750278 1024 255 +5751976 DOWN 11 +5751976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5752013 homeCount = 90 +5752013 waitCount = 44 +5752014 ripCount = 39 +5752014 locktype1 = 2 +5752015 locktype2 = 7 +5752015 locktype3 = 4 +5752016 goalCount = 2 +5752016 goalTotal = 32 +5752016 otherCount = 45 +~~~ +5752018 CURRENTGOAL IS [3] +~~~ +5758629 UP 2 +5758629 2 255 +~~~ +~~~ +5759431 DOWN 2 +5759431 0 255 +~~~ +~~~ +5759455 0 254 +~~~ +~~~ +5759457 0 252 +~~~ +~~~ +5759459 0 248 +~~~ +~~~ +5759461 0 240 +~~~ +~~~ +5759463 0 224 +~~~ +~~~ +5759465 0 192 +~~~ +~~~ +5759466 0 128 +~~~ +~~~ +5759468 0 0 +~~~ +~~~ +5759470 0 512 +5759471 homeCount = 90 +5759472 waitCount = 44 +5759472 ripCount = 39 +5759473 locktype1 = 2 +5759473 locktype2 = 7 +5759494 locktype3 = 4 +5759495 goalCount = 2 +5759495 goalTotal = 32 +5759495 otherCount = 46 +~~~ +5759663 2 512 +5759777 DOWN 2 +5759777 0 512 +5765697 UP 10 +5765697 waslock = 0 +5765697 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5765722 512 16777728 +~~~ +5765872 512 512 +5765931 DOWN 10 +5765931 0 512 +5765938 UP 10 +5765938 waslock = 0 +5765938 512 512 +~~~ +~~~ +5765957 512 2560 +~~~ +~~~ +5765959 512 2048 +5765960 homeCount = 91 +5765961 waitCount = 44 +5765961 ripCount = 39 +5765962 locktype1 = 2 +5765962 locktype2 = 7 +5765962 locktype3 = 4 +5765963 goalCount = 2 +5765963 goalTotal = 32 +5765964 otherCount = 46 +~~~ +~~~ +5770516 DOWN 10 +5770516 0 2048 +5770527 UP 10 +5770527 waslock = 0 +5770527 512 2048 +~~~ +~~~ +~~~ +~~~ +5770552 homeCount = 91 +5770553 waitCount = 44 +5770553 ripCount = 39 +5770554 locktype1 = 2 +5770554 locktype2 = 7 +5770555 locktype3 = 4 +5770555 goalCount = 2 +5770556 goalTotal = 32 +5770556 otherCount = 46 +~~~ +~~~ +5770605 DOWN 10 +5770605 0 2048 +~~~ +~~~ +~~~ +~~~ +5770632 homeCount = 91 +5770632 waitCount = 44 +5770633 ripCount = 39 +5770633 locktype1 = 2 +5770634 locktype2 = 7 +5770634 locktype3 = 4 +5770635 goalCount = 2 +5770635 goalTotal = 32 +5770635 otherCount = 46 +~~~ +5772538 UP 12 +5772538 2048 2048 +5774762 DOWN 12 +5774762 0 2048 +5774792 UP 12 +5774792 2048 2048 +5774819 DOWN 12 +5774819 0 2048 +5774837 UP 12 +5774837 2048 2048 +5777111 DOWN 12 +5777111 0 2048 +5777126 UP 12 +5777126 2048 2048 +5780539 CLICK1 +5780539 CLICK2 +~~~ +~~~ +~~~ +5780558 2048 67110912 +~~~ +5780708 2048 2048 +5787618 DOWN 12 +5787618 0 2048 +~~~ +~~~ +5787637 0 0 +~~~ +~~~ +5787639 0 1 +~~~ +~~~ +5787640 0 3 +~~~ +~~~ +5787642 0 7 +~~~ +~~~ +5787644 0 15 +~~~ +~~~ +5787646 0 31 +~~~ +~~~ +5787648 0 63 +~~~ +~~~ +5787649 0 127 +~~~ +~~~ +5787651 0 255 +5787652 homeCount = 91 +5787653 waitCount = 45 +5787653 ripCount = 39 +5787654 locktype1 = 2 +5787654 locktype2 = 7 +5787675 locktype3 = 4 +5787675 goalCount = 2 +5787676 goalTotal = 32 +5787676 otherCount = 46 +~~~ +5787677 CURRENTGOAL IS [3] +~~~ +5787678 UP 12 +5787678 2048 255 +5787722 DOWN 12 +5787722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5787754 homeCount = 91 +5787755 waitCount = 45 +5787755 ripCount = 39 +5787756 locktype1 = 2 +5787756 locktype2 = 7 +5787757 locktype3 = 4 +5787757 goalCount = 2 +5787758 goalTotal = 32 +5787758 otherCount = 46 +~~~ +5787759 CURRENTGOAL IS [3] +~~~ +5795603 UP 7 +5795603 64 255 +~~~ +~~~ +5796010 DOWN 7 +5796010 0 255 +~~~ +~~~ +5796029 0 254 +~~~ +~~~ +5796031 0 252 +~~~ +~~~ +5796033 0 248 +~~~ +~~~ +5796034 0 240 +~~~ +~~~ +5796036 0 224 +~~~ +~~~ +5796038 0 192 +~~~ +~~~ +5796040 0 128 +~~~ +~~~ +5796042 0 0 +~~~ +~~~ +5796044 0 512 +5796045 homeCount = 91 +5796045 waitCount = 45 +5796046 ripCount = 39 +5796046 locktype1 = 2 +5796047 locktype2 = 7 +5796068 locktype3 = 4 +5796068 goalCount = 2 +5796069 goalTotal = 32 +5796069 otherCount = 47 +~~~ +5796070 64 512 +5796533 DOWN 7 +5796533 0 512 +5800125 UP 10 +5800125 waslock = 0 +5800125 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5800149 512 16777728 +~~~ +5800299 512 512 +5800329 DOWN 10 +5800329 0 512 +5800334 UP 10 +5800334 waslock = 0 +5800334 512 512 +~~~ +~~~ +5800353 512 1536 +~~~ +~~~ +5800355 512 1024 +5800356 homeCount = 92 +5800357 waitCount = 45 +5800357 ripCount = 39 +5800358 locktype1 = 2 +5800358 locktype2 = 7 +5800359 locktype3 = 4 +5800359 goalCount = 2 +5800359 goalTotal = 32 +5800360 otherCount = 47 +~~~ +~~~ +5805808 DOWN 10 +5805808 0 1024 +~~~ +~~~ +~~~ +~~~ +5805836 homeCount = 92 +5805836 waitCount = 45 +5805837 ripCount = 39 +5805837 locktype1 = 2 +5805838 locktype2 = 7 +5805838 locktype3 = 4 +5805839 goalCount = 2 +5805839 goalTotal = 32 +5805840 otherCount = 47 +~~~ +5807754 UP 11 +5807754 1024 1024 +5810234 DOWN 11 +5810234 0 1024 +5810278 UP 11 +5810278 1024 1024 +5810754 BEEP1 +5810754 BEEP2 +~~~ +~~~ +~~~ +5810775 1024 33555456 +~~~ +5810925 1024 1024 +5817367 DOWN 11 +5817367 0 1024 +5817376 UP 11 +5817376 1024 1024 +~~~ +~~~ +5817392 1024 0 +~~~ +~~~ +5817394 1024 1 +~~~ +~~~ +5817396 1024 3 +~~~ +~~~ +5817397 1024 7 +~~~ +~~~ +5817399 1024 15 +~~~ +~~~ +5817401 1024 31 +~~~ +~~~ +5817403 1024 63 +~~~ +~~~ +5817405 1024 127 +~~~ +~~~ +5817407 1024 255 +5817408 homeCount = 92 +5817408 waitCount = 45 +5817409 ripCount = 40 +5817409 locktype1 = 2 +5817430 locktype2 = 7 +5817431 locktype3 = 4 +5817431 goalCount = 2 +5817432 goalTotal = 32 +5817432 otherCount = 47 +~~~ +5817433 CURRENTGOAL IS [3] +~~~ +5820017 DOWN 11 +5820017 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5820058 homeCount = 92 +5820059 waitCount = 45 +5820059 ripCount = 40 +5820060 locktype1 = 2 +5820060 locktype2 = 7 +5820061 locktype3 = 4 +5820061 goalCount = 2 +5820061 goalTotal = 32 +5820062 otherCount = 47 +~~~ +5820063 CURRENTGOAL IS [3] +~~~ +5828153 UP 3 +5828153 4 255 +~~~ +~~~ +5828176 outer reward +~~~ +5828176 4 262399 +~~~ +~~~ +5828381 DOWN 3 +5828381 0 262399 +~~~ +~~~ +5828405 0 262398 +~~~ +~~~ +5828407 0 262396 +~~~ +~~~ +5828409 0 262392 +~~~ +~~~ +5828411 0 262384 +~~~ +~~~ +5828412 0 262368 +~~~ +~~~ +5828414 0 262336 +~~~ +5828416 4 262336 +~~~ +~~~ +5828417 4 262272 +~~~ +5828418 4 262144 +~~~ +~~~ +5828420 4 262656 +5828421 homeCount = 92 +5828421 waitCount = 45 +5828442 ripCount = 40 +5828443 locktype1 = 2 +5828443 locktype2 = 7 +5828444 locktype3 = 4 +5828444 goalCount = 3 +5828445 goalTotal = 33 +5828445 otherCount = 47 +~~~ +5828626 4 512 +5828783 DOWN 3 +5828783 0 512 +5828810 4 512 +5828903 DOWN 3 +5828903 0 512 +5828941 4 512 +5829030 DOWN 3 +5829030 0 512 +5829062 4 512 +5829159 DOWN 3 +5829159 0 512 +5829194 4 512 +5829292 DOWN 3 +5829292 0 512 +5829324 4 512 +5829422 DOWN 3 +5829422 0 512 +5829451 4 512 +5829559 DOWN 3 +5829559 0 512 +5829588 4 512 +5829697 DOWN 3 +5829697 0 512 +5829724 4 512 +5829837 DOWN 3 +5829837 0 512 +5829860 4 512 +5829982 DOWN 3 +5829982 0 512 +5830000 4 512 +5830129 DOWN 3 +5830129 0 512 +5830141 4 512 +5830435 DOWN 3 +5830435 0 512 +5830444 4 512 +5833394 DOWN 3 +5833394 0 512 +5833418 4 512 +5834560 DOWN 3 +5834560 0 512 +5834571 4 512 +5834740 DOWN 3 +5834740 0 512 +5834746 4 512 +5836809 DOWN 3 +5836809 0 512 +5836847 4 512 +5836894 DOWN 3 +5836894 0 512 +5840557 UP 10 +5840558 waslock = 0 +5840557 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5840584 512 16777728 +~~~ +5840734 512 512 +5844296 DOWN 10 +5844296 0 512 +~~~ +~~~ +5844316 0 2560 +~~~ +~~~ +5844318 0 2048 +5844319 homeCount = 93 +5844320 waitCount = 45 +5844320 ripCount = 40 +5844321 locktype1 = 2 +5844321 locktype2 = 7 +5844321 locktype3 = 4 +5844322 goalCount = 3 +5844322 goalTotal = 33 +5844323 otherCount = 47 +~~~ +5845949 UP 12 +5845949 2048 2048 +5849054 DOWN 12 +5849054 0 2048 +5849095 UP 12 +5849095 2048 2048 +5849949 CLICK1 +5849949 CLICK2 +~~~ +~~~ +~~~ +5849973 2048 67110912 +~~~ +5850123 2048 2048 +5856550 DOWN 12 +5856550 0 2048 +~~~ +~~~ +5856578 0 0 +~~~ +~~~ +5856580 0 1 +~~~ +~~~ +5856581 0 3 +~~~ +~~~ +5856583 0 7 +~~~ +~~~ +5856585 0 15 +~~~ +~~~ +5856587 0 31 +~~~ +~~~ +5856589 0 63 +~~~ +~~~ +5856590 0 127 +~~~ +~~~ +5856592 0 255 +5856593 homeCount = 93 +5856594 waitCount = 46 +5856594 ripCount = 40 +5856595 locktype1 = 2 +5856595 locktype2 = 7 +5856596 locktype3 = 4 +5856617 goalCount = 3 +5856618 goalTotal = 33 +5856618 otherCount = 47 +~~~ +5856619 CURRENTGOAL IS [3] +~~~ +5856644 UP 12 +5856644 2048 255 +5858693 DOWN 12 +5858693 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5858736 homeCount = 93 +5858736 waitCount = 46 +5858737 ripCount = 40 +5858737 locktype1 = 2 +5858738 locktype2 = 7 +5858738 locktype3 = 4 +5858739 goalCount = 3 +5858739 goalTotal = 33 +5858740 otherCount = 47 +~~~ +5858741 CURRENTGOAL IS [3] +~~~ +5862529 UP 3 +5862529 4 255 +~~~ +~~~ +5862552 outer reward +~~~ +5862552 4 262399 +~~~ +~~~ +5862752 DOWN 3 +5862752 0 262399 +~~~ +~~~ +5862770 0 262398 +~~~ +~~~ +5862772 0 262396 +~~~ +~~~ +5862774 0 262392 +~~~ +~~~ +5862776 0 262384 +~~~ +~~~ +5862777 0 262368 +~~~ +~~~ +5862779 0 262336 +~~~ +~~~ +5862781 0 262272 +~~~ +~~~ +5862783 0 262144 +~~~ +~~~ +5862785 0 262656 +5862786 homeCount = 93 +5862786 waitCount = 46 +5862787 ripCount = 40 +5862808 locktype1 = 2 +5862809 locktype2 = 7 +5862809 locktype3 = 4 +5862809 goalCount = 4 +5862810 goalTotal = 34 +5862810 otherCount = 47 +~~~ +5862811 4 262656 +5863002 4 512 +5863190 DOWN 3 +5863190 0 512 +5863214 4 512 +5863309 DOWN 3 +5863309 0 512 +5863346 4 512 +5863438 DOWN 3 +5863438 0 512 +5863466 4 512 +5863585 DOWN 3 +5863585 0 512 +5863605 4 512 +5863714 DOWN 3 +5863714 0 512 +5863740 4 512 +5863854 DOWN 3 +5863854 0 512 +5863877 4 512 +5863999 DOWN 3 +5863999 0 512 +5864018 4 512 +5864142 DOWN 3 +5864142 0 512 +5864162 4 512 +5864291 DOWN 3 +5864291 0 512 +5864306 4 512 +5864440 DOWN 3 +5864440 0 512 +5864456 4 512 +5870702 DOWN 3 +5870702 0 512 +5870792 4 512 +5870801 DOWN 3 +5870801 0 512 +5874682 UP 10 +5874682 waslock = 0 +5874682 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5874707 512 16777728 +~~~ +5874857 512 512 +5874917 DOWN 10 +5874917 0 512 +5874930 UP 10 +5874931 waslock = 0 +5874930 512 512 +~~~ +~~~ +5874941 512 2560 +~~~ +~~~ +5874943 512 2048 +5874944 homeCount = 94 +5874945 waitCount = 46 +5874945 ripCount = 40 +5874946 locktype1 = 2 +5874946 locktype2 = 7 +5874947 locktype3 = 4 +5874947 goalCount = 4 +5874947 goalTotal = 34 +5874948 otherCount = 47 +~~~ +~~~ +5879193 DOWN 10 +5879193 0 2048 +~~~ +~~~ +~~~ +~~~ +5879215 homeCount = 94 +5879216 waitCount = 46 +5879216 ripCount = 40 +5879217 locktype1 = 2 +5879217 locktype2 = 7 +5879218 locktype3 = 4 +5879218 goalCount = 4 +5879219 goalTotal = 34 +5879219 otherCount = 47 +~~~ +5880914 UP 12 +5880914 2048 2048 +5881174 DOWN 12 +5881174 0 2048 +5881272 UP 12 +5881272 2048 2048 +5881331 DOWN 12 +5881331 0 2048 +5881349 UP 12 +5881349 2048 2048 +5882641 DOWN 12 +5882641 0 2048 +5882721 UP 12 +5882721 2048 2048 +5883785 DOWN 12 +5883785 0 2048 +5883812 UP 12 +5883812 2048 2048 +5886414 CLICK1 +5886414 CLICK2 +~~~ +~~~ +~~~ +5886435 2048 67110912 +~~~ +5886585 2048 2048 +5892947 DOWN 12 +5892947 0 2048 +5892961 UP 12 +5892961 2048 2048 +~~~ +~~~ +5892972 2048 0 +~~~ +~~~ +5892974 2048 1 +~~~ +~~~ +5892976 2048 3 +~~~ +~~~ +5892978 2048 7 +~~~ +~~~ +5892979 2048 15 +~~~ +~~~ +5892981 2048 31 +~~~ +~~~ +5892983 2048 63 +~~~ +~~~ +5892985 2048 127 +~~~ +~~~ +5892987 2048 255 +5892988 homeCount = 94 +5892988 waitCount = 47 +5892989 ripCount = 40 +5892989 locktype1 = 2 +5893010 locktype2 = 7 +5893010 locktype3 = 4 +5893011 goalCount = 4 +5893011 goalTotal = 34 +5893012 otherCount = 47 +~~~ +5893013 CURRENTGOAL IS [3] +~~~ +5893066 DOWN 12 +5893066 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5893100 homeCount = 94 +5893101 waitCount = 47 +5893101 ripCount = 40 +5893102 locktype1 = 2 +5893102 locktype2 = 7 +5893103 locktype3 = 4 +5893103 goalCount = 4 +5893104 goalTotal = 34 +5893104 otherCount = 47 +~~~ +5893105 CURRENTGOAL IS [3] +~~~ +5893124 UP 12 +5893124 2048 255 +5894503 DOWN 12 +5894503 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5894542 homeCount = 94 +5894542 waitCount = 47 +5894543 ripCount = 40 +5894543 locktype1 = 2 +5894544 locktype2 = 7 +5894544 locktype3 = 4 +5894545 goalCount = 4 +5894545 goalTotal = 34 +5894546 otherCount = 47 +~~~ +5894547 CURRENTGOAL IS [3] +~~~ +5898051 UP 3 +5898051 4 255 +~~~ +~~~ +5898075 outer reward +~~~ +5898075 4 262399 +~~~ +~~~ +5898084 DOWN 3 +5898084 0 262399 +~~~ +~~~ +5898105 0 262398 +~~~ +~~~ +5898107 0 262396 +~~~ +~~~ +5898109 0 262392 +~~~ +~~~ +5898111 0 262384 +~~~ +~~~ +5898113 0 262368 +~~~ +~~~ +5898114 0 262336 +~~~ +~~~ +5898116 0 262272 +~~~ +~~~ +5898118 0 262144 +~~~ +5898119 4 262144 +~~~ +5898121 4 262656 +5898121 homeCount = 94 +5898122 waitCount = 47 +5898143 ripCount = 40 +5898143 locktype1 = 2 +5898143 locktype2 = 7 +5898144 locktype3 = 4 +5898144 goalCount = 5 +5898145 goalTotal = 35 +5898145 otherCount = 47 +~~~ +5898295 DOWN 3 +5898295 0 262656 +5898339 4 262656 +5898474 DOWN 3 +5898474 0 262656 +5898485 4 262656 +5898525 4 512 +5898613 DOWN 3 +5898613 0 512 +5898629 4 512 +5898725 DOWN 3 +5898725 0 512 +5898757 4 512 +5899023 DOWN 3 +5899023 0 512 +5899036 4 512 +5899150 DOWN 3 +5899150 0 512 +5899168 4 512 +5899278 DOWN 3 +5899278 0 512 +5899303 4 512 +5899418 DOWN 3 +5899418 0 512 +5899436 4 512 +5899556 DOWN 3 +5899556 0 512 +5899573 4 512 +5900710 DOWN 3 +5900710 0 512 +5900719 4 512 +5901495 DOWN 3 +5901495 0 512 +5901502 4 512 +5907977 DOWN 3 +5907977 0 512 +5907988 4 512 +5908474 DOWN 3 +5908474 0 512 +5908635 4 512 +5908689 DOWN 3 +5908689 0 512 +5913757 UP 10 +5913758 waslock = 0 +5913757 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5913783 512 16777728 +~~~ +5913933 512 512 +5917745 DOWN 10 +5917745 0 512 +~~~ +~~~ +5917767 0 2560 +~~~ +~~~ +5917769 0 2048 +5917770 homeCount = 95 +5917771 waitCount = 47 +5917771 ripCount = 40 +5917771 locktype1 = 2 +5917772 locktype2 = 7 +5917772 locktype3 = 4 +5917773 goalCount = 5 +5917773 goalTotal = 35 +5917774 otherCount = 47 +~~~ +5917777 UP 10 +5917778 waslock = 0 +5917777 512 2048 +5917816 DOWN 10 +5917816 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5917844 homeCount = 95 +5917844 waitCount = 47 +5917845 ripCount = 40 +5917845 locktype1 = 2 +5917846 locktype2 = 7 +5917846 locktype3 = 4 +5917847 goalCount = 5 +5917847 goalTotal = 35 +5917848 otherCount = 47 +~~~ +5919813 UP 12 +5919813 2048 2048 +5920060 DOWN 12 +5920060 0 2048 +5920260 LOCKOUT 3 +~~~ +5920281 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5920287 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5920319 UP 12 +5920319 2048 0 +5921986 DOWN 12 +5921986 0 0 +5922031 UP 12 +5922031 2048 0 +5928322 DOWN 12 +5928322 0 0 +5928360 UP 12 +5928360 2048 0 +5928730 DOWN 12 +5928729 0 0 +5928859 UP 12 +5928859 2048 0 +5930252 DOWN 12 +5930252 0 0 +5942734 UP 8 +5942734 128 0 +5943812 DOWN 8 +5943812 0 0 +5944012 128 0 +5944110 DOWN 8 +5944110 0 0 +5945254 128 0 +5945281 LOCKEND +~~~ +~~~ +~~~ +5945306 128 512 +5945311 DOWN 8 +5945311 0 512 +5945821 128 512 +5947058 DOWN 8 +5947058 0 512 +5970247 UP 10 +5970248 waslock = 0 +5970247 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5970272 512 16777728 +~~~ +5970422 512 512 +5972015 DOWN 10 +5972015 0 512 +5972026 UP 10 +5972026 waslock = 0 +5972026 512 512 +~~~ +~~~ +5972046 512 1536 +~~~ +~~~ +5972048 512 1024 +5972049 homeCount = 96 +5972050 waitCount = 47 +5972050 ripCount = 40 +5972051 locktype1 = 2 +5972051 locktype2 = 7 +5972052 locktype3 = 5 +5972052 goalCount = 5 +5972053 goalTotal = 35 +5972053 otherCount = 47 +~~~ +~~~ +5976454 DOWN 10 +5976454 0 1024 +~~~ +~~~ +~~~ +~~~ +5976477 homeCount = 96 +5976477 waitCount = 47 +5976478 ripCount = 40 +5976478 locktype1 = 2 +5976479 locktype2 = 7 +5976479 locktype3 = 5 +5976480 goalCount = 5 +5976480 goalTotal = 35 +5976481 otherCount = 47 +~~~ +5982820 UP 11 +5982820 1024 1024 +5983404 DOWN 11 +5983404 0 1024 +5983449 UP 11 +5983449 1024 1024 +5983553 DOWN 11 +5983553 0 1024 +5983643 UP 11 +5983643 1024 1024 +5984311 DOWN 11 +5984311 0 1024 +5984334 UP 11 +5984334 1024 1024 +5984358 DOWN 11 +5984358 0 1024 +5984404 UP 11 +5984404 1024 1024 +5984446 DOWN 11 +5984446 0 1024 +5984470 UP 11 +5984470 1024 1024 +5985787 DOWN 11 +5985787 0 1024 +5985812 UP 11 +5985812 1024 1024 +5987321 BEEP1 +5987321 BEEP2 +~~~ +~~~ +~~~ +5987346 1024 33555456 +~~~ +5987496 1024 1024 +5995025 DOWN 11 +5995025 0 1024 +~~~ +~~~ +5995044 0 0 +~~~ +~~~ +5995046 0 1 +~~~ +~~~ +5995048 0 3 +~~~ +~~~ +5995050 0 7 +~~~ +~~~ +5995052 0 15 +~~~ +~~~ +5995053 0 31 +~~~ +~~~ +5995055 0 63 +~~~ +~~~ +5995057 0 127 +~~~ +~~~ +5995059 0 255 +5995060 homeCount = 96 +5995060 waitCount = 47 +5995061 ripCount = 41 +5995061 locktype1 = 2 +5995062 locktype2 = 7 +5995062 locktype3 = 5 +5995083 goalCount = 5 +5995084 goalTotal = 35 +5995084 otherCount = 47 +~~~ +5995085 CURRENTGOAL IS [3] +~~~ +5995086 UP 11 +5995086 1024 255 +5995127 DOWN 11 +5995127 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5995166 homeCount = 96 +5995166 waitCount = 47 +5995167 ripCount = 41 +5995167 locktype1 = 2 +5995168 locktype2 = 7 +5995168 locktype3 = 5 +5995169 goalCount = 5 +5995169 goalTotal = 35 +5995170 otherCount = 47 +~~~ +5995171 CURRENTGOAL IS [3] +~~~ +5998831 UP 6 +5998831 32 255 +~~~ +~~~ +5999406 DOWN 6 +5999406 0 255 +~~~ +~~~ +5999430 0 254 +~~~ +~~~ +5999432 0 252 +~~~ +~~~ +5999434 0 248 +~~~ +~~~ +5999435 0 240 +~~~ +~~~ +5999437 0 224 +~~~ +~~~ +5999439 0 192 +~~~ +~~~ +5999441 0 128 +~~~ +~~~ +5999443 0 0 +~~~ +~~~ +5999445 0 512 +5999446 homeCount = 96 +5999446 waitCount = 47 +5999446 ripCount = 41 +5999447 locktype1 = 2 +5999447 locktype2 = 7 +5999469 locktype3 = 5 +5999469 goalCount = 5 +5999470 goalTotal = 35 +5999470 otherCount = 48 +~~~ +6003715 UP 10 +6003715 waslock = 0 +6003715 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6003747 512 16777728 +~~~ +6003897 512 512 +6003918 DOWN 10 +6003918 0 512 +~~~ +~~~ +6003946 0 1536 +~~~ +6003948 UP 10 +6003948 waslock = 0 +6003948 512 1536 +~~~ +6003950 homeCount = 97 +6003950 waitCount = 47 +6003951 ripCount = 41 +6003951 locktype1 = 2 +6003952 locktype2 = 7 +6003952 locktype3 = 5 +6003953 goalCount = 5 +6003953 goalTotal = 35 +6003974 otherCount = 48 +~~~ +6003975 DOWN 10 +6003975 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6003999 homeCount = 97 +6004000 waitCount = 47 +6004000 ripCount = 41 +6004001 locktype1 = 2 +6004001 locktype2 = 7 +6004002 locktype3 = 5 +6004002 goalCount = 5 +6004003 goalTotal = 35 +6004003 otherCount = 48 +~~~ +6004012 UP 10 +6004013 waslock = 0 +6004012 512 1024 +~~~ +6009857 DOWN 10 +6009857 0 1024 +~~~ +~~~ +~~~ +~~~ +6009879 homeCount = 97 +6009879 waitCount = 47 +6009880 ripCount = 41 +6009880 locktype1 = 2 +6009881 locktype2 = 7 +6009881 locktype3 = 5 +6009882 goalCount = 5 +6009882 goalTotal = 35 +6009883 otherCount = 48 +~~~ +6009933 UP 10 +6009934 waslock = 0 +6009933 512 1024 +6009944 DOWN 10 +6009944 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6009963 homeCount = 97 +6009964 waitCount = 47 +6009964 ripCount = 41 +6009965 locktype1 = 2 +6009965 locktype2 = 7 +6009966 locktype3 = 5 +6009966 goalCount = 5 +6009967 goalTotal = 35 +6009967 otherCount = 48 +~~~ +6012452 UP 11 +6012452 1024 1024 +6015272 DOWN 11 +6015272 0 1024 +6015283 UP 11 +6015283 1024 1024 +6015352 DOWN 11 +6015352 0 1024 +6015388 UP 11 +6015388 1024 1024 +6017952 BEEP1 +6017952 BEEP2 +~~~ +~~~ +~~~ +6017977 1024 33555456 +~~~ +6018127 1024 1024 +6023478 DOWN 11 +6023478 0 1024 +6023492 UP 11 +6023492 1024 1024 +~~~ +~~~ +6023498 1024 0 +~~~ +~~~ +6023499 1024 1 +~~~ +~~~ +6023501 1024 3 +~~~ +~~~ +6023503 1024 7 +~~~ +~~~ +6023505 1024 15 +~~~ +~~~ +6023507 1024 31 +~~~ +~~~ +6023509 1024 63 +~~~ +~~~ +6023510 1024 127 +~~~ +~~~ +6023512 1024 255 +6023513 homeCount = 97 +6023514 waitCount = 47 +6023514 ripCount = 42 +6023515 locktype1 = 2 +6023536 locktype2 = 7 +6023536 locktype3 = 5 +6023537 goalCount = 5 +6023537 goalTotal = 35 +6023538 otherCount = 48 +~~~ +6023539 CURRENTGOAL IS [3] +~~~ +6023606 DOWN 11 +6023606 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023634 UP 11 +6023634 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023643 homeCount = 97 +6023643 waitCount = 47 +6023644 ripCount = 42 +6023644 locktype1 = 2 +6023645 locktype2 = 7 +6023645 locktype3 = 5 +6023646 goalCount = 5 +6023646 goalTotal = 35 +6023647 otherCount = 48 +~~~ +6023648 CURRENTGOAL IS [3] +~~~ +6023702 DOWN 11 +6023702 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023742 homeCount = 97 +6023743 waitCount = 47 +6023743 ripCount = 42 +6023744 locktype1 = 2 +6023744 locktype2 = 7 +6023745 locktype3 = 5 +6023745 goalCount = 5 +6023746 goalTotal = 35 +6023746 otherCount = 48 +~~~ +6023747 CURRENTGOAL IS [3] +~~~ +6023800 UP 11 +6023800 1024 255 +6023848 DOWN 11 +6023848 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023883 UP 11 +6023883 1024 255 +6023884 homeCount = 97 +6023884 waitCount = 47 +6023885 ripCount = 42 +6023885 locktype1 = 2 +6023886 locktype2 = 7 +6023886 locktype3 = 5 +6023887 goalCount = 5 +6023887 goalTotal = 35 +6023888 otherCount = 48 +~~~ +6023889 CURRENTGOAL IS [3] +~~~ +6023989 DOWN 11 +6023989 0 255 +~~~ +~~~ +~~~ +~~~ +6024013 UP 11 +6024013 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6024026 homeCount = 97 +6024027 waitCount = 47 +6024027 ripCount = 42 +6024028 locktype1 = 2 +6024028 locktype2 = 7 +6024029 locktype3 = 5 +6024029 goalCount = 5 +6024030 goalTotal = 35 +6024030 otherCount = 48 +~~~ +6024031 CURRENTGOAL IS [3] +~~~ +6024163 DOWN 11 +6024163 0 255 +6024176 UP 11 +6024176 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6024197 homeCount = 97 +6024198 waitCount = 47 +6024198 ripCount = 42 +6024199 locktype1 = 2 +6024199 locktype2 = 7 +6024200 locktype3 = 5 +6024200 goalCount = 5 +6024201 goalTotal = 35 +6024201 otherCount = 48 +~~~ +6024202 CURRENTGOAL IS [3] +~~~ +6026519 DOWN 11 +6026519 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6026563 homeCount = 97 +6026563 waitCount = 47 +6026564 ripCount = 42 +6026564 locktype1 = 2 +6026565 locktype2 = 7 +6026565 locktype3 = 5 +6026566 goalCount = 5 +6026566 goalTotal = 35 +6026567 otherCount = 48 +~~~ +6026568 CURRENTGOAL IS [3] +~~~ +6032818 UP 8 +6032818 128 255 +~~~ +~~~ +6033239 DOWN 8 +6033239 0 255 +~~~ +~~~ +6033258 0 254 +~~~ +~~~ +6033259 0 252 +~~~ +~~~ +6033261 0 248 +~~~ +~~~ +6033263 0 240 +~~~ +~~~ +6033265 0 224 +~~~ +~~~ +6033267 0 192 +~~~ +~~~ +6033269 0 128 +~~~ +~~~ +6033270 0 0 +~~~ +~~~ +6033272 0 512 +6033273 homeCount = 97 +6033274 waitCount = 47 +6033274 ripCount = 42 +6033275 locktype1 = 2 +6033275 locktype2 = 7 +6033296 locktype3 = 5 +6033297 goalCount = 5 +6033297 goalTotal = 35 +6033298 otherCount = 49 +~~~ +6033317 128 512 +6033371 DOWN 8 +6033371 0 512 +6038368 UP 10 +6038368 waslock = 0 +6038368 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6038397 512 16777728 +~~~ +6038547 512 512 +6039272 DOWN 10 +6039272 0 512 +~~~ +~~~ +6039291 0 1536 +~~~ +~~~ +6039293 0 1024 +6039294 homeCount = 98 +6039294 waitCount = 47 +6039295 ripCount = 42 +6039295 locktype1 = 2 +6039296 locktype2 = 7 +6039296 locktype3 = 5 +6039297 goalCount = 5 +6039297 goalTotal = 35 +6039297 otherCount = 49 +~~~ +6039298 UP 10 +6039319 waslock = 0 +6039298 512 1024 +~~~ +6044381 DOWN 10 +6044381 0 1024 +~~~ +~~~ +~~~ +~~~ +6044402 homeCount = 98 +6044403 waitCount = 47 +6044403 ripCount = 42 +6044404 locktype1 = 2 +6044404 locktype2 = 7 +6044405 locktype3 = 5 +6044405 goalCount = 5 +6044406 goalTotal = 35 +6044406 otherCount = 49 +~~~ +6044424 UP 10 +6044424 waslock = 0 +6044424 512 1024 +~~~ +6044471 DOWN 10 +6044471 0 1024 +~~~ +~~~ +~~~ +~~~ +6044493 homeCount = 98 +6044493 waitCount = 47 +6044494 ripCount = 42 +6044494 locktype1 = 2 +6044495 locktype2 = 7 +6044495 locktype3 = 5 +6044496 goalCount = 5 +6044496 goalTotal = 35 +6044497 otherCount = 49 +~~~ +6046733 UP 11 +6046733 1024 1024 +6049202 DOWN 11 +6049202 0 1024 +6049248 UP 11 +6049248 1024 1024 +6050940 DOWN 11 +6050940 0 1024 +6050972 UP 11 +6050972 1024 1024 +6053734 BEEP1 +6053734 BEEP2 +~~~ +~~~ +~~~ +6053752 1024 33555456 +~~~ +6053902 1024 1024 +6059069 DOWN 11 +6059069 0 1024 +~~~ +~~~ +6059095 0 0 +~~~ +~~~ +6059097 0 1 +~~~ +6059098 UP 11 +6059098 1024 1 +~~~ +~~~ +6059100 1024 3 +~~~ +~~~ +6059102 1024 7 +~~~ +6059103 1024 15 +~~~ +~~~ +6059104 1024 31 +~~~ +~~~ +6059106 1024 63 +~~~ +~~~ +6059108 1024 127 +~~~ +~~~ +6059110 1024 255 +6059111 homeCount = 98 +6059111 waitCount = 47 +6059132 ripCount = 43 +6059133 locktype1 = 2 +6059133 locktype2 = 7 +6059134 locktype3 = 5 +6059134 goalCount = 5 +6059135 goalTotal = 35 +6059135 otherCount = 49 +~~~ +6059136 CURRENTGOAL IS [3] +~~~ +6059137 DOWN 11 +6059137 0 255 +6059158 UP 11 +6059158 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059192 DOWN 11 +6059192 0 255 +~~~ +6059193 homeCount = 98 +6059194 waitCount = 47 +6059194 ripCount = 43 +6059195 locktype1 = 2 +6059195 locktype2 = 7 +6059196 locktype3 = 5 +6059196 goalCount = 5 +6059197 goalTotal = 35 +6059197 otherCount = 49 +~~~ +6059198 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059242 homeCount = 98 +6059242 waitCount = 47 +6059243 ripCount = 43 +6059243 locktype1 = 2 +6059244 locktype2 = 7 +6059244 locktype3 = 5 +6059245 goalCount = 5 +6059245 goalTotal = 35 +6059246 otherCount = 49 +~~~ +6059247 CURRENTGOAL IS [3] +~~~ +6059274 UP 11 +6059274 1024 255 +6059335 DOWN 11 +6059335 0 255 +6059341 UP 11 +6059341 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059378 homeCount = 98 +6059378 waitCount = 47 +6059379 ripCount = 43 +6059379 locktype1 = 2 +6059380 locktype2 = 7 +6059380 locktype3 = 5 +6059381 goalCount = 5 +6059381 goalTotal = 35 +6059381 otherCount = 49 +~~~ +6059383 CURRENTGOAL IS [3] +~~~ +6061599 DOWN 11 +6061599 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6061639 homeCount = 98 +6061639 waitCount = 47 +6061640 ripCount = 43 +6061640 locktype1 = 2 +6061641 locktype2 = 7 +6061641 locktype3 = 5 +6061642 goalCount = 5 +6061642 goalTotal = 35 +6061643 otherCount = 49 +~~~ +6061644 CURRENTGOAL IS [3] +~~~ +6061677 UP 11 +6061677 1024 255 +6061721 DOWN 11 +6061721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6061756 homeCount = 98 +6061757 waitCount = 47 +6061757 ripCount = 43 +6061758 locktype1 = 2 +6061758 locktype2 = 7 +6061759 locktype3 = 5 +6061759 goalCount = 5 +6061760 goalTotal = 35 +6061760 otherCount = 49 +~~~ +6061761 CURRENTGOAL IS [3] +~~~ +6067760 UP 6 +6067760 32 255 +~~~ +~~~ +6068412 DOWN 6 +6068412 0 255 +~~~ +~~~ +6068434 0 254 +~~~ +~~~ +6068436 0 252 +~~~ +~~~ +6068438 0 248 +~~~ +~~~ +6068440 0 240 +~~~ +~~~ +6068442 0 224 +~~~ +~~~ +6068443 0 192 +~~~ +~~~ +6068445 0 128 +~~~ +~~~ +6068447 0 0 +~~~ +~~~ +6068449 0 512 +6068450 homeCount = 98 +6068450 waitCount = 47 +6068451 ripCount = 43 +6068451 locktype1 = 2 +6068452 locktype2 = 7 +6068473 locktype3 = 5 +6068474 goalCount = 5 +6068474 goalTotal = 35 +6068474 otherCount = 50 +~~~ +6068505 32 512 +6068699 DOWN 6 +6068699 0 512 +6072218 UP 10 +6072218 waslock = 0 +6072218 512 512 +6072233 DOWN 10 +6072233 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6072251 0 16777728 +~~~ +~~~ +~~~ +6072254 0 16778752 +~~~ +~~~ +6072256 0 16778240 +6072257 homeCount = 99 +6072257 waitCount = 47 +6072258 ripCount = 43 +6072258 locktype1 = 2 +6072258 locktype2 = 7 +6072259 locktype3 = 5 +6072259 goalCount = 5 +6072260 goalTotal = 35 +6072260 otherCount = 50 +~~~ +6072286 UP 10 +6072286 waslock = 0 +6072286 512 16778240 +~~~ +6072401 512 1024 +6072436 DOWN 10 +6072436 0 1024 +~~~ +~~~ +~~~ +~~~ +6072460 homeCount = 99 +6072460 waitCount = 47 +6072461 ripCount = 43 +6072461 locktype1 = 2 +6072462 locktype2 = 7 +6072462 locktype3 = 5 +6072463 goalCount = 5 +6072463 goalTotal = 35 +6072464 otherCount = 50 +~~~ +6072496 UP 10 +6072496 waslock = 0 +6072496 512 1024 +~~~ +6077367 DOWN 10 +6077367 0 1024 +~~~ +~~~ +~~~ +~~~ +6077388 homeCount = 99 +6077388 waitCount = 47 +6077389 ripCount = 43 +6077389 locktype1 = 2 +6077390 locktype2 = 7 +6077390 locktype3 = 5 +6077391 goalCount = 5 +6077391 goalTotal = 35 +6077392 otherCount = 50 +~~~ +6080272 UP 11 +6080272 1024 1024 +6081281 DOWN 11 +6081281 0 1024 +6081297 UP 11 +6081297 1024 1024 +6086272 BEEP1 +6086272 BEEP2 +~~~ +~~~ +~~~ +6086296 1024 33555456 +~~~ +6086446 1024 1024 +6092798 DOWN 11 +6092798 0 1024 +~~~ +~~~ +6092824 0 0 +~~~ +~~~ +6092826 0 1 +~~~ +~~~ +6092828 0 3 +~~~ +~~~ +6092830 0 7 +~~~ +6092831 UP 11 +6092831 1024 7 +~~~ +~~~ +6092833 1024 15 +~~~ +~~~ +6092835 1024 31 +~~~ +~~~ +6092837 1024 63 +~~~ +6092838 1024 127 +~~~ +~~~ +6092839 1024 255 +6092840 homeCount = 99 +6092841 waitCount = 47 +6092862 ripCount = 44 +6092862 locktype1 = 2 +6092863 locktype2 = 7 +6092863 locktype3 = 5 +6092864 goalCount = 5 +6092864 goalTotal = 35 +6092865 otherCount = 50 +~~~ +6092866 CURRENTGOAL IS [3] +~~~ +6095570 DOWN 11 +6095570 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6095610 homeCount = 99 +6095610 waitCount = 47 +6095611 ripCount = 44 +6095611 locktype1 = 2 +6095612 locktype2 = 7 +6095612 locktype3 = 5 +6095613 goalCount = 5 +6095613 goalTotal = 35 +6095614 otherCount = 50 +~~~ +6095615 CURRENTGOAL IS [3] +~~~ +6095619 UP 11 +6095619 1024 255 +6095697 DOWN 11 +6095697 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6095730 homeCount = 99 +6095730 waitCount = 47 +6095731 ripCount = 44 +6095731 locktype1 = 2 +6095732 locktype2 = 7 +6095732 locktype3 = 5 +6095733 goalCount = 5 +6095733 goalTotal = 35 +6095734 otherCount = 50 +~~~ +6095735 CURRENTGOAL IS [3] +~~~ +6100784 UP 4 +6100784 8 255 +~~~ +~~~ +6101758 DOWN 4 +6101758 0 255 +~~~ +~~~ +6101784 0 254 +~~~ +~~~ +6101785 0 252 +~~~ +~~~ +6101787 0 248 +~~~ +~~~ +6101789 0 240 +~~~ +~~~ +6101791 0 224 +~~~ +~~~ +6101793 0 192 +~~~ +~~~ +6101794 0 128 +~~~ +~~~ +6101796 0 0 +~~~ +~~~ +6101798 0 512 +6101799 homeCount = 99 +6101800 waitCount = 47 +6101800 ripCount = 44 +6101801 locktype1 = 2 +6101801 locktype2 = 7 +6101822 locktype3 = 5 +6101823 goalCount = 5 +6101823 goalTotal = 35 +6101824 otherCount = 51 +~~~ +6101824 8 512 +6101854 DOWN 4 +6101854 0 512 +6106062 UP 10 +6106062 waslock = 0 +6106062 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6106095 512 16777728 +~~~ +6106238 DOWN 10 +6106238 0 16777728 +6106245 0 512 +~~~ +~~~ +6106259 0 2560 +~~~ +~~~ +6106261 0 2048 +6106261 homeCount = 100 +6106262 waitCount = 47 +6106262 ripCount = 44 +6106263 locktype1 = 2 +6106263 locktype2 = 7 +6106264 locktype3 = 5 +6106264 goalCount = 5 +6106265 goalTotal = 35 +6106265 otherCount = 51 +~~~ +6106278 UP 10 +6106279 waslock = 0 +6106278 512 2048 +~~~ +6111719 DOWN 10 +6111719 0 2048 +~~~ +~~~ +~~~ +~~~ +6111739 homeCount = 100 +6111739 waitCount = 47 +6111740 ripCount = 44 +6111740 locktype1 = 2 +6111741 locktype2 = 7 +6111741 locktype3 = 5 +6111742 goalCount = 5 +6111742 goalTotal = 35 +6111743 otherCount = 51 +~~~ +6113476 UP 12 +6113476 2048 2048 +6115635 DOWN 12 +6115635 0 2048 +6115646 UP 12 +6115646 2048 2048 +6116424 DOWN 12 +6116424 0 2048 +6116461 UP 12 +6116461 2048 2048 +6119477 CLICK1 +6119477 CLICK2 +~~~ +~~~ +~~~ +6119497 2048 67110912 +~~~ +6119647 2048 2048 +6127039 DOWN 12 +6127039 0 2048 +~~~ +~~~ +6127056 0 0 +~~~ +~~~ +6127058 0 1 +~~~ +~~~ +6127059 0 3 +~~~ +~~~ +6127061 0 7 +~~~ +~~~ +6127063 0 15 +~~~ +~~~ +6127065 0 31 +~~~ +~~~ +6127067 0 63 +~~~ +~~~ +6127069 0 127 +~~~ +~~~ +6127070 UP 12 +6127070 2048 255 +6127072 homeCount = 100 +6127072 waitCount = 48 +6127073 ripCount = 44 +6127073 locktype1 = 2 +6127074 locktype2 = 7 +6127095 locktype3 = 5 +6127096 goalCount = 5 +6127096 goalTotal = 35 +6127097 otherCount = 51 +~~~ +6127098 CURRENTGOAL IS [3] +~~~ +6127133 DOWN 12 +6127133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6127167 homeCount = 100 +6127167 waitCount = 48 +6127168 ripCount = 44 +6127168 locktype1 = 2 +6127169 locktype2 = 7 +6127169 locktype3 = 5 +6127170 goalCount = 5 +6127170 goalTotal = 35 +6127170 otherCount = 51 +~~~ +6127172 CURRENTGOAL IS [3] +~~~ +6131072 UP 3 +6131072 4 255 +~~~ +~~~ +6131101 outer reward +~~~ +6131102 4 262399 +~~~ +~~~ +6131384 DOWN 3 +6131384 0 262399 +~~~ +~~~ +6131407 0 262398 +~~~ +~~~ +6131409 0 262396 +~~~ +~~~ +6131411 0 262392 +~~~ +~~~ +6131413 0 262384 +~~~ +~~~ +6131415 0 262368 +~~~ +~~~ +6131416 0 262336 +~~~ +6131418 4 262336 +~~~ +~~~ +6131419 4 262272 +~~~ +6131420 4 262144 +~~~ +~~~ +6131422 4 262656 +6131423 homeCount = 100 +6131424 waitCount = 48 +6131445 ripCount = 44 +6131445 locktype1 = 2 +6131446 locktype2 = 7 +6131446 locktype3 = 5 +6131446 goalCount = 6 +6131447 goalTotal = 36 +6131447 otherCount = 51 +~~~ +6131551 4 512 +6131811 DOWN 3 +6131811 0 512 +6131828 4 512 +6131927 DOWN 3 +6131927 0 512 +6131955 4 512 +6132052 DOWN 3 +6132052 0 512 +6132082 4 512 +6132182 DOWN 3 +6132182 0 512 +6132209 4 512 +6132313 DOWN 3 +6132313 0 512 +6132339 4 512 +6132450 DOWN 3 +6132450 0 512 +6132471 4 512 +6132587 DOWN 3 +6132587 0 512 +6132610 4 512 +6132731 DOWN 3 +6132731 0 512 +6132748 4 512 +6133033 DOWN 3 +6133033 0 512 +6133043 4 512 +6138943 DOWN 3 +6138943 0 512 +6138970 4 512 +6139046 DOWN 3 +6139046 0 512 +6139128 4 512 +6139165 DOWN 3 +6139165 0 512 +6143292 UP 10 +6143293 waslock = 0 +6143292 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6143325 512 16777728 +~~~ +6143475 512 512 +6147475 DOWN 10 +6147475 0 512 +~~~ +~~~ +6147499 0 1536 +~~~ +~~~ +6147501 0 1024 +6147502 homeCount = 101 +6147502 waitCount = 48 +6147503 ripCount = 44 +6147503 locktype1 = 2 +6147504 locktype2 = 7 +6147504 locktype3 = 5 +6147505 goalCount = 6 +6147505 goalTotal = 36 +6147506 otherCount = 51 +~~~ +6147549 UP 10 +6147549 waslock = 0 +6147549 512 1024 +~~~ +6147584 DOWN 10 +6147584 0 1024 +~~~ +~~~ +~~~ +~~~ +6147612 homeCount = 101 +6147613 waitCount = 48 +6147613 ripCount = 44 +6147614 locktype1 = 2 +6147614 locktype2 = 7 +6147615 locktype3 = 5 +6147615 goalCount = 6 +6147615 goalTotal = 36 +6147616 otherCount = 51 +~~~ +6149443 UP 11 +6149443 1024 1024 +6151946 DOWN 11 +6151946 0 1024 +6152022 UP 11 +6152022 1024 1024 +6152046 DOWN 11 +6152046 0 1024 +6152082 UP 11 +6152082 1024 1024 +6153249 DOWN 11 +6153249 0 1024 +6153276 UP 11 +6153276 1024 1024 +6157443 BEEP1 +6157443 BEEP2 +~~~ +~~~ +~~~ +6157469 1024 33555456 +~~~ +6157619 1024 1024 +6163143 DOWN 11 +6163142 0 1024 +6163159 UP 11 +6163159 1024 1024 +~~~ +~~~ +6163178 1024 0 +~~~ +~~~ +6163180 1024 1 +~~~ +~~~ +6163182 1024 3 +~~~ +~~~ +6163184 1024 7 +~~~ +~~~ +6163185 1024 15 +~~~ +~~~ +6163187 1024 31 +~~~ +~~~ +6163189 1024 63 +~~~ +~~~ +6163191 1024 127 +~~~ +~~~ +6163193 1024 255 +6163194 homeCount = 101 +6163194 waitCount = 48 +6163195 ripCount = 45 +6163195 locktype1 = 2 +6163216 locktype2 = 7 +6163216 locktype3 = 5 +6163217 goalCount = 6 +6163217 goalTotal = 36 +6163218 otherCount = 51 +~~~ +6163219 CURRENTGOAL IS [3] +~~~ +6163273 DOWN 11 +6163273 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +6163305 UP 11 +6163304 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6163317 homeCount = 101 +6163317 waitCount = 48 +6163318 ripCount = 45 +6163318 locktype1 = 2 +6163319 locktype2 = 7 +6163319 locktype3 = 5 +6163320 goalCount = 6 +6163320 goalTotal = 36 +6163321 otherCount = 51 +~~~ +6163322 CURRENTGOAL IS [3] +~~~ +6167538 DOWN 11 +6167538 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6167575 homeCount = 101 +6167576 waitCount = 48 +6167576 ripCount = 45 +6167577 locktype1 = 2 +6167577 locktype2 = 7 +6167578 locktype3 = 5 +6167578 goalCount = 6 +6167579 goalTotal = 36 +6167579 otherCount = 51 +~~~ +6167580 CURRENTGOAL IS [3] +~~~ +6167605 UP 11 +6167605 1024 255 +6167660 DOWN 11 +6167660 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6167698 homeCount = 101 +6167699 waitCount = 48 +6167700 ripCount = 45 +6167700 locktype1 = 2 +6167701 locktype2 = 7 +6167701 locktype3 = 5 +6167701 goalCount = 6 +6167702 goalTotal = 36 +6167702 otherCount = 51 +~~~ +6167704 CURRENTGOAL IS [3] +~~~ +6174471 UP 2 +6174471 2 255 +~~~ +~~~ +6174897 DOWN 2 +6174897 0 255 +~~~ +~~~ +6174923 0 254 +~~~ +~~~ +6174924 0 252 +~~~ +~~~ +6174926 0 248 +~~~ +~~~ +6174928 0 240 +~~~ +~~~ +6174930 0 224 +~~~ +~~~ +6174932 0 192 +~~~ +~~~ +6174934 0 128 +~~~ +~~~ +6174935 0 0 +~~~ +~~~ +6174937 0 512 +6174938 homeCount = 101 +6174939 waitCount = 48 +6174939 ripCount = 45 +6174940 locktype1 = 2 +6174940 locktype2 = 7 +6174961 locktype3 = 5 +6174962 goalCount = 6 +6174962 goalTotal = 36 +6174963 otherCount = 52 +~~~ +6178638 UP 10 +6178638 waslock = 0 +6178638 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6178661 512 16777728 +~~~ +6178781 DOWN 10 +6178781 0 16777728 +6178796 UP 10 +6178797 waslock = 0 +6178796 512 16777728 +6178811 512 512 +~~~ +~~~ +6178815 512 1536 +~~~ +~~~ +6178817 512 1024 +6178818 homeCount = 102 +6178818 waitCount = 48 +6178819 ripCount = 45 +6178819 locktype1 = 2 +6178820 locktype2 = 7 +6178820 locktype3 = 5 +6178821 goalCount = 6 +6178821 goalTotal = 36 +6178822 otherCount = 52 +~~~ +~~~ +6183138 DOWN 10 +6183138 0 1024 +~~~ +~~~ +~~~ +~~~ +6183158 homeCount = 102 +6183159 waitCount = 48 +6183159 ripCount = 45 +6183160 locktype1 = 2 +6183160 locktype2 = 7 +6183161 locktype3 = 5 +6183161 goalCount = 6 +6183161 goalTotal = 36 +6183162 otherCount = 52 +~~~ +6184941 UP 11 +6184941 1024 1024 +6186798 DOWN 11 +6186798 0 1024 +6186827 UP 11 +6186827 1024 1024 +6187258 DOWN 11 +6187258 0 1024 +6187286 UP 11 +6187286 1024 1024 +6188348 DOWN 11 +6188348 0 1024 +6188360 UP 11 +6188360 1024 1024 +6189441 BEEP1 +6189441 BEEP2 +~~~ +~~~ +~~~ +6189469 1024 33555456 +~~~ +6189619 1024 1024 +6190398 DOWN 11 +6190398 0 1024 +6190417 UP 11 +6190417 1024 1024 +~~~ +~~~ +6190424 1024 0 +~~~ +~~~ +6190426 1024 1 +~~~ +~~~ +6190428 1024 3 +~~~ +~~~ +6190429 1024 7 +~~~ +~~~ +6190431 1024 15 +~~~ +~~~ +6190433 1024 31 +~~~ +~~~ +6190435 1024 63 +~~~ +~~~ +6190437 1024 127 +~~~ +~~~ +6190438 1024 255 +6190439 homeCount = 102 +6190440 waitCount = 48 +6190441 ripCount = 46 +6190441 locktype1 = 2 +6190462 locktype2 = 7 +6190462 locktype3 = 5 +6190463 goalCount = 6 +6190463 goalTotal = 36 +6190464 otherCount = 52 +~~~ +6190465 CURRENTGOAL IS [3] +~~~ +6190523 DOWN 11 +6190523 0 255 +6190528 UP 11 +6190528 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190560 homeCount = 102 +6190561 waitCount = 48 +6190561 ripCount = 46 +6190562 locktype1 = 2 +6190562 locktype2 = 7 +6190563 locktype3 = 5 +6190563 goalCount = 6 +6190564 goalTotal = 36 +6190564 otherCount = 52 +~~~ +6190565 CURRENTGOAL IS [3] +~~~ +6190622 DOWN 11 +6190622 0 255 +~~~ +~~~ +~~~ +6190646 UP 11 +6190646 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190660 homeCount = 102 +6190660 waitCount = 48 +6190661 ripCount = 46 +6190661 locktype1 = 2 +6190662 locktype2 = 7 +6190662 locktype3 = 5 +6190663 goalCount = 6 +6190663 goalTotal = 36 +6190664 otherCount = 52 +~~~ +6190665 CURRENTGOAL IS [3] +~~~ +6190698 DOWN 11 +6190698 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190740 homeCount = 102 +6190741 waitCount = 48 +6190741 ripCount = 46 +6190742 locktype1 = 2 +6190742 locktype2 = 7 +6190743 locktype3 = 5 +6190743 goalCount = 6 +6190744 goalTotal = 36 +6190744 otherCount = 52 +~~~ +6190745 CURRENTGOAL IS [3] +~~~ +6190756 UP 11 +6190756 1024 255 +6190794 DOWN 11 +6190794 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190830 homeCount = 102 +6190830 waitCount = 48 +6190831 ripCount = 46 +6190831 locktype1 = 2 +6190832 locktype2 = 7 +6190832 locktype3 = 5 +6190833 goalCount = 6 +6190833 goalTotal = 36 +6190834 otherCount = 52 +~~~ +6190835 CURRENTGOAL IS [3] +~~~ +6190983 UP 11 +6190983 1024 255 +6191069 DOWN 11 +6191069 0 255 +6191089 UP 11 +6191089 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6191108 DOWN 11 +6191108 0 255 +~~~ +~~~ +6191110 homeCount = 102 +6191111 waitCount = 48 +6191111 ripCount = 46 +6191112 locktype1 = 2 +6191112 locktype2 = 7 +6191113 locktype3 = 5 +6191113 goalCount = 6 +6191114 goalTotal = 36 +6191114 otherCount = 52 +~~~ +6191115 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6191164 homeCount = 102 +6191165 waitCount = 48 +6191165 ripCount = 46 +6191166 locktype1 = 2 +6191166 locktype2 = 7 +6191167 locktype3 = 5 +6191167 goalCount = 6 +6191168 goalTotal = 36 +6191168 otherCount = 52 +~~~ +6191169 CURRENTGOAL IS [3] +~~~ +6191273 UP 11 +6191273 1024 255 +6198093 DOWN 11 +6198093 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6198130 homeCount = 102 +6198130 waitCount = 48 +6198131 ripCount = 46 +6198131 locktype1 = 2 +6198132 locktype2 = 7 +6198132 locktype3 = 5 +6198133 goalCount = 6 +6198133 goalTotal = 36 +6198134 otherCount = 52 +~~~ +6198135 CURRENTGOAL IS [3] +~~~ +6202523 UP 7 +6202523 64 255 +~~~ +~~~ +6203214 DOWN 7 +6203214 0 255 +~~~ +~~~ +6203234 0 254 +~~~ +~~~ +6203236 0 252 +~~~ +~~~ +6203237 0 248 +~~~ +~~~ +6203239 0 240 +~~~ +~~~ +6203241 0 224 +~~~ +~~~ +6203243 0 192 +~~~ +~~~ +6203245 0 128 +~~~ +~~~ +6203247 0 0 +~~~ +~~~ +6203248 0 512 +6203249 homeCount = 102 +6203250 waitCount = 48 +6203250 ripCount = 46 +6203251 locktype1 = 2 +6203251 locktype2 = 7 +6203273 locktype3 = 5 +6203273 goalCount = 6 +6203274 goalTotal = 36 +6203274 otherCount = 53 +~~~ +6207230 UP 10 +6207230 waslock = 0 +6207230 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6207261 512 16777728 +~~~ +6207411 512 512 +6207527 DOWN 10 +6207527 0 512 +~~~ +~~~ +6207550 0 2560 +~~~ +~~~ +6207551 0 2048 +6207552 homeCount = 103 +6207553 waitCount = 48 +6207553 ripCount = 46 +6207554 locktype1 = 2 +6207554 locktype2 = 7 +6207555 locktype3 = 5 +6207555 goalCount = 6 +6207556 goalTotal = 36 +6207556 otherCount = 53 +~~~ +6207598 UP 10 +6207598 waslock = 0 +6207598 512 2048 +~~~ +6212686 DOWN 10 +6212686 0 2048 +~~~ +~~~ +~~~ +~~~ +6212708 homeCount = 103 +6212709 waitCount = 48 +6212709 ripCount = 46 +6212710 locktype1 = 2 +6212710 locktype2 = 7 +6212711 locktype3 = 5 +6212711 goalCount = 6 +6212712 goalTotal = 36 +6212712 otherCount = 53 +~~~ +6212713 UP 10 +6212713 waslock = 0 +6212713 512 2048 +~~~ +6212776 DOWN 10 +6212775 0 2048 +~~~ +~~~ +~~~ +~~~ +6212795 homeCount = 103 +6212796 waitCount = 48 +6212796 ripCount = 46 +6212797 locktype1 = 2 +6212797 locktype2 = 7 +6212798 locktype3 = 5 +6212798 goalCount = 6 +6212799 goalTotal = 36 +6212799 otherCount = 53 +~~~ +6214555 UP 12 +6214555 2048 2048 +6217353 DOWN 12 +6217353 0 2048 +6217356 UP 12 +6217356 2048 2048 +6217399 DOWN 12 +6217398 0 2048 +6217438 UP 12 +6217438 2048 2048 +6217465 DOWN 12 +6217465 0 2048 +6217505 UP 12 +6217505 2048 2048 +6217817 DOWN 12 +6217817 0 2048 +6217832 UP 12 +6217831 2048 2048 +6219593 DOWN 12 +6219593 0 2048 +6219608 UP 12 +6219608 2048 2048 +6219625 DOWN 12 +6219625 0 2048 +6219676 UP 12 +6219676 2048 2048 +6219797 DOWN 12 +6219797 0 2048 +6219831 UP 12 +6219831 2048 2048 +6219937 DOWN 12 +6219937 0 2048 +6219953 UP 12 +6219953 2048 2048 +6221555 CLICK1 +6221555 CLICK2 +~~~ +~~~ +~~~ +6221572 2048 67110912 +~~~ +6221722 2048 2048 +6227526 DOWN 12 +6227526 0 2048 +~~~ +~~~ +6227551 0 0 +~~~ +6227552 UP 12 +6227552 2048 0 +~~~ +~~~ +6227554 2048 1 +~~~ +~~~ +6227556 2048 3 +~~~ +6227557 2048 7 +~~~ +~~~ +6227559 2048 15 +~~~ +~~~ +6227560 2048 31 +~~~ +~~~ +6227562 2048 63 +~~~ +~~~ +6227564 2048 127 +~~~ +~~~ +6227566 2048 255 +6227567 homeCount = 103 +6227588 waitCount = 49 +6227588 ripCount = 46 +6227589 locktype1 = 2 +6227589 locktype2 = 7 +6227590 locktype3 = 5 +6227590 goalCount = 6 +6227591 goalTotal = 36 +6227591 otherCount = 53 +~~~ +6227592 CURRENTGOAL IS [3] +~~~ +6227652 DOWN 12 +6227652 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227689 homeCount = 103 +6227689 waitCount = 49 +6227690 ripCount = 46 +6227690 locktype1 = 2 +6227691 locktype2 = 7 +6227691 locktype3 = 5 +6227692 goalCount = 6 +6227692 goalTotal = 36 +6227693 otherCount = 53 +~~~ +6227694 CURRENTGOAL IS [3] +~~~ +6227745 UP 12 +6227745 2048 255 +6227816 DOWN 12 +6227816 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227853 homeCount = 103 +6227853 waitCount = 49 +6227854 ripCount = 46 +6227854 locktype1 = 2 +6227855 locktype2 = 7 +6227855 locktype3 = 5 +6227856 goalCount = 6 +6227856 goalTotal = 36 +6227857 otherCount = 53 +~~~ +6227858 CURRENTGOAL IS [3] +~~~ +6227893 UP 12 +6227893 2048 255 +6227926 DOWN 12 +6227926 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227964 homeCount = 103 +6227965 waitCount = 49 +6227966 ripCount = 46 +6227966 locktype1 = 2 +6227967 locktype2 = 7 +6227967 locktype3 = 5 +6227967 goalCount = 6 +6227968 goalTotal = 36 +6227968 otherCount = 53 +~~~ +6227970 CURRENTGOAL IS [3] +~~~ +6231199 UP 3 +6231199 4 255 +~~~ +~~~ +6231224 outer reward +~~~ +6231224 4 262399 +~~~ +~~~ +6231461 DOWN 3 +6231461 0 262399 +~~~ +~~~ +6231481 0 262398 +~~~ +~~~ +6231483 0 262396 +~~~ +~~~ +6231484 0 262392 +~~~ +~~~ +6231486 0 262384 +~~~ +~~~ +6231488 0 262368 +~~~ +~~~ +6231490 0 262336 +~~~ +~~~ +6231492 0 262272 +~~~ +~~~ +6231493 0 262144 +~~~ +~~~ +6231495 0 262656 +6231496 homeCount = 103 +6231497 waitCount = 49 +6231497 ripCount = 46 +6231498 locktype1 = 2 +6231519 locktype2 = 7 +6231519 locktype3 = 5 +6231520 goalCount = 7 +6231520 goalTotal = 37 +6231521 otherCount = 53 +~~~ +6231521 4 262656 +6231674 4 512 +6232282 DOWN 3 +6232282 0 512 +6232288 4 512 +6232415 DOWN 3 +6232415 0 512 +6232423 4 512 +6232682 DOWN 3 +6232682 0 512 +6232691 4 512 +6232821 DOWN 3 +6232821 0 512 +6232830 4 512 +6239654 DOWN 3 +6239654 0 512 +6239693 4 512 +6239759 DOWN 3 +6239759 0 512 +6243665 UP 10 +6243665 waslock = 0 +6243665 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6243697 512 16777728 +~~~ +6243847 512 512 +6247688 DOWN 10 +6247688 0 512 +~~~ +~~~ +6247711 0 2560 +~~~ +~~~ +6247713 0 2048 +6247714 homeCount = 104 +6247714 waitCount = 49 +6247715 ripCount = 46 +6247715 locktype1 = 2 +6247716 locktype2 = 7 +6247716 locktype3 = 5 +6247717 goalCount = 7 +6247717 goalTotal = 37 +6247718 otherCount = 53 +~~~ +6247723 UP 10 +6247723 waslock = 0 +6247723 512 2048 +~~~ +6247911 DOWN 10 +6247911 0 2048 +6247926 UP 10 +6247926 waslock = 0 +6247926 512 2048 +~~~ +~~~ +~~~ +~~~ +6247936 homeCount = 104 +6247937 waitCount = 49 +6247937 ripCount = 46 +6247938 locktype1 = 2 +6247938 locktype2 = 7 +6247939 locktype3 = 5 +6247939 goalCount = 7 +6247940 goalTotal = 37 +6247940 otherCount = 53 +~~~ +6247944 DOWN 10 +6247944 0 2048 +~~~ +6247985 UP 10 +6247986 waslock = 0 +6247985 512 2048 +~~~ +~~~ +~~~ +~~~ +6247991 homeCount = 104 +6247992 waitCount = 49 +6247992 ripCount = 46 +6247993 locktype1 = 2 +6247993 locktype2 = 7 +6247994 locktype3 = 5 +6247994 goalCount = 7 +6247995 goalTotal = 37 +6247995 otherCount = 53 +~~~ +~~~ +6248478 DOWN 10 +6248478 0 2048 +~~~ +~~~ +~~~ +~~~ +6248498 homeCount = 104 +6248498 waitCount = 49 +6248499 ripCount = 46 +6248499 locktype1 = 2 +6248499 locktype2 = 7 +6248500 locktype3 = 5 +6248500 goalCount = 7 +6248501 goalTotal = 37 +6248501 otherCount = 53 +~~~ +6250170 UP 12 +6250170 2048 2048 +6253007 DOWN 12 +6253007 0 2048 +6253018 UP 12 +6253018 2048 2048 +6253170 CLICK1 +6253170 CLICK2 +~~~ +~~~ +~~~ +6253198 2048 67110912 +~~~ +6253274 DOWN 12 +6253274 0 67110912 +6253295 UP 12 +6253295 2048 67110912 +6253348 2048 2048 +~~~ +~~~ +6253374 2048 0 +~~~ +~~~ +6253376 2048 1 +~~~ +~~~ +6253378 2048 3 +~~~ +~~~ +6253380 2048 7 +~~~ +~~~ +6253382 2048 15 +~~~ +~~~ +6253384 2048 31 +~~~ +~~~ +6253385 2048 63 +~~~ +~~~ +6253387 2048 127 +~~~ +~~~ +6253389 2048 255 +6253390 homeCount = 104 +6253390 waitCount = 50 +6253391 ripCount = 46 +6253392 locktype1 = 2 +6253412 locktype2 = 7 +6253413 locktype3 = 5 +6253413 goalCount = 7 +6253414 goalTotal = 37 +6253414 otherCount = 53 +~~~ +6253415 CURRENTGOAL IS [3] +~~~ +6253465 DOWN 12 +6253465 0 255 +6253469 UP 12 +6253469 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6253503 homeCount = 104 +6253504 waitCount = 50 +6253504 ripCount = 46 +6253505 locktype1 = 2 +6253505 locktype2 = 7 +6253506 locktype3 = 5 +6253506 goalCount = 7 +6253507 goalTotal = 37 +6253507 otherCount = 53 +~~~ +6253508 CURRENTGOAL IS [3] +~~~ +6259155 DOWN 12 +6259155 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259190 UP 12 +6259190 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +6259195 homeCount = 104 +6259196 waitCount = 50 +6259196 ripCount = 46 +6259197 locktype1 = 2 +6259197 locktype2 = 7 +6259198 locktype3 = 5 +6259198 goalCount = 7 +6259199 goalTotal = 37 +6259199 otherCount = 53 +~~~ +6259200 CURRENTGOAL IS [3] +~~~ +6259288 DOWN 12 +6259288 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259323 homeCount = 104 +6259324 waitCount = 50 +6259324 ripCount = 46 +6259325 locktype1 = 2 +6259325 locktype2 = 7 +6259326 locktype3 = 5 +6259326 goalCount = 7 +6259326 goalTotal = 37 +6259327 otherCount = 53 +~~~ +6259328 CURRENTGOAL IS [3] +~~~ +6259354 UP 12 +6259354 2048 255 +6259423 DOWN 12 +6259423 0 255 +6259433 UP 12 +6259433 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259464 homeCount = 104 +6259464 waitCount = 50 +6259465 ripCount = 46 +6259465 locktype1 = 2 +6259466 locktype2 = 7 +6259466 locktype3 = 5 +6259467 goalCount = 7 +6259467 goalTotal = 37 +6259468 otherCount = 53 +~~~ +6259469 CURRENTGOAL IS [3] +~~~ +6259556 DOWN 12 +6259556 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259593 homeCount = 104 +6259593 waitCount = 50 +6259594 ripCount = 46 +6259594 locktype1 = 2 +6259595 locktype2 = 7 +6259595 locktype3 = 5 +6259596 goalCount = 7 +6259596 goalTotal = 37 +6259597 otherCount = 53 +~~~ +6259598 CURRENTGOAL IS [3] +~~~ +6259605 UP 12 +6259605 2048 255 +6262944 DOWN 12 +6262944 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6262983 homeCount = 104 +6262984 waitCount = 50 +6262984 ripCount = 46 +6262985 locktype1 = 2 +6262985 locktype2 = 7 +6262986 locktype3 = 5 +6262986 goalCount = 7 +6262987 goalTotal = 37 +6262987 otherCount = 53 +~~~ +6262988 CURRENTGOAL IS [3] +~~~ +6263015 UP 12 +6263015 2048 255 +6263063 DOWN 12 +6263063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6263105 homeCount = 104 +6263106 waitCount = 50 +6263106 ripCount = 46 +6263107 locktype1 = 2 +6263107 locktype2 = 7 +6263108 locktype3 = 5 +6263108 goalCount = 7 +6263109 goalTotal = 37 +6263109 otherCount = 53 +~~~ +6263110 CURRENTGOAL IS [3] +~~~ +6267639 UP 3 +6267639 4 255 +~~~ +~~~ +6267661 outer reward +~~~ +6267661 4 262399 +~~~ +~~~ +6267664 DOWN 3 +6267664 0 262399 +~~~ +~~~ +6267681 0 262398 +~~~ +~~~ +6267683 0 262396 +~~~ +~~~ +6267685 0 262392 +~~~ +~~~ +6267687 0 262384 +~~~ +~~~ +6267688 0 262368 +~~~ +~~~ +6267690 0 262336 +~~~ +~~~ +6267692 0 262272 +~~~ +~~~ +6267694 0 262144 +~~~ +~~~ +6267696 0 262656 +6267697 homeCount = 104 +6267697 waitCount = 50 +6267698 ripCount = 46 +6267719 locktype1 = 2 +6267719 locktype2 = 7 +6267720 locktype3 = 5 +6267720 goalCount = 8 +6267721 goalTotal = 38 +6267721 otherCount = 53 +~~~ +6267722 4 262656 +6267864 DOWN 3 +6267864 0 262656 +6267907 4 262656 +6268111 4 512 +6268292 DOWN 3 +6268292 0 512 +6268311 4 512 +6268414 DOWN 3 +6268414 0 512 +6268420 4 512 +6268533 DOWN 3 +6268533 0 512 +6268554 4 512 +6268660 DOWN 3 +6268660 0 512 +6268682 4 512 +6268788 DOWN 3 +6268788 0 512 +6268816 4 512 +6268915 DOWN 3 +6268915 0 512 +6268939 4 512 +6269056 DOWN 3 +6269056 0 512 +6269079 4 512 +6269201 DOWN 3 +6269201 0 512 +6269219 4 512 +6269342 DOWN 3 +6269342 0 512 +6269357 4 512 +6275261 DOWN 3 +6275261 0 512 +6275326 4 512 +6275364 DOWN 3 +6275364 0 512 +6279323 UP 10 +6279324 waslock = 0 +6279323 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6279349 512 16777728 +~~~ +6279499 512 512 +6279523 DOWN 10 +6279523 0 512 +~~~ +~~~ +6279540 0 2560 +~~~ +~~~ +6279542 0 2048 +6279543 homeCount = 105 +6279544 waitCount = 50 +6279544 ripCount = 46 +6279545 locktype1 = 2 +6279545 locktype2 = 7 +6279546 locktype3 = 5 +6279546 goalCount = 8 +6279547 goalTotal = 38 +6279547 otherCount = 53 +~~~ +6279555 UP 10 +6279556 waslock = 0 +6279555 512 2048 +~~~ +6284324 DOWN 10 +6284324 0 2048 +~~~ +~~~ +~~~ +~~~ +6284344 homeCount = 105 +6284345 waitCount = 50 +6284345 ripCount = 46 +6284346 locktype1 = 2 +6284346 locktype2 = 7 +6284346 locktype3 = 5 +6284347 goalCount = 8 +6284347 goalTotal = 38 +6284348 otherCount = 53 +~~~ +6286304 UP 12 +6286304 2048 2048 +6287753 DOWN 12 +6287753 0 2048 +6287762 UP 12 +6287762 2048 2048 +6288087 DOWN 12 +6288087 0 2048 +6288126 UP 12 +6288126 2048 2048 +6291804 CLICK1 +6291804 CLICK2 +~~~ +~~~ +~~~ +6291824 2048 67110912 +~~~ +6291974 2048 2048 +6292013 DOWN 12 +6292013 0 2048 +~~~ +6292031 UP 12 +6292031 2048 2048 +~~~ +~~~ +6292033 2048 0 +~~~ +~~~ +6292035 2048 1 +~~~ +6292036 2048 3 +~~~ +~~~ +6292037 2048 7 +~~~ +~~~ +6292039 2048 15 +~~~ +~~~ +6292041 2048 31 +~~~ +~~~ +6292043 2048 63 +~~~ +~~~ +6292044 2048 127 +~~~ +~~~ +6292046 2048 255 +6292047 homeCount = 105 +6292069 waitCount = 51 +6292069 ripCount = 46 +6292069 locktype1 = 2 +6292070 locktype2 = 7 +6292070 locktype3 = 5 +6292071 goalCount = 8 +6292071 goalTotal = 38 +6292072 otherCount = 53 +~~~ +6292073 CURRENTGOAL IS [3] +~~~ +6303041 DOWN 12 +6303041 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6303078 homeCount = 105 +6303078 waitCount = 51 +6303079 ripCount = 46 +6303079 locktype1 = 2 +6303080 locktype2 = 7 +6303080 locktype3 = 5 +6303081 goalCount = 8 +6303081 goalTotal = 38 +6303082 otherCount = 53 +~~~ +6303083 CURRENTGOAL IS [3] +~~~ +6315313 UP 3 +6315313 4 255 +~~~ +~~~ +6315334 outer reward +~~~ +6315334 4 262399 +~~~ +~~~ +6315575 DOWN 3 +6315575 0 262399 +~~~ +~~~ +6315601 0 262398 +~~~ +~~~ +6315603 0 262396 +~~~ +~~~ +6315605 0 262392 +~~~ +~~~ +6315607 0 262384 +~~~ +~~~ +6315609 0 262368 +~~~ +~~~ +6315610 0 262336 +~~~ +~~~ +6315612 0 262272 +~~~ +~~~ +6315614 0 262144 +~~~ +~~~ +6315616 0 262656 +6315617 homeCount = 105 +6315618 waitCount = 51 +6315618 ripCount = 46 +6315618 locktype1 = 2 +6315639 locktype2 = 7 +6315640 locktype3 = 5 +6315640 goalCount = 9 +6315641 goalTotal = 39 +6315641 otherCount = 53 +~~~ +6315642 4 262656 +6315784 4 512 +6316000 DOWN 3 +6316000 0 512 +6316026 4 512 +6316119 DOWN 3 +6316119 0 512 +6316154 4 512 +6316241 DOWN 3 +6316241 0 512 +6316280 4 512 +6316365 DOWN 3 +6316365 0 512 +6316407 4 512 +6316494 DOWN 3 +6316494 0 512 +6316535 4 512 +6316625 DOWN 3 +6316625 0 512 +6316661 4 512 +6316759 DOWN 3 +6316759 0 512 +6316793 4 512 +6316912 DOWN 3 +6316912 0 512 +6316933 4 512 +6317060 DOWN 3 +6317060 0 512 +6317083 4 512 +6317210 DOWN 3 +6317210 0 512 +6317225 4 512 +6317355 DOWN 3 +6317355 0 512 +6317371 4 512 +6320953 DOWN 3 +6320953 0 512 +6320959 4 512 +6323512 DOWN 3 +6323512 0 512 +6323580 4 512 +6323594 DOWN 3 +6323594 0 512 +6329005 UP 10 +6329005 waslock = 0 +6329005 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6329038 512 16777728 +~~~ +6329156 DOWN 10 +6329156 0 16777728 +~~~ +~~~ +6329185 0 16779776 +~~~ +~~~ +6329187 0 16779264 +6329188 homeCount = 106 +6329189 waitCount = 51 +6329189 ripCount = 46 +6329190 locktype1 = 2 +6329190 locktype2 = 7 +6329191 locktype3 = 5 +6329191 goalCount = 9 +6329192 goalTotal = 39 +6329192 otherCount = 53 +~~~ +6329213 UP 10 +6329214 waslock = 0 +6329213 512 2048 +~~~ +6333127 DOWN 10 +6333127 0 2048 +~~~ +~~~ +~~~ +~~~ +6333148 homeCount = 106 +6333149 waitCount = 51 +6333149 ripCount = 46 +6333150 locktype1 = 2 +6333150 locktype2 = 7 +6333151 locktype3 = 5 +6333151 goalCount = 9 +6333151 goalTotal = 39 +6333152 otherCount = 53 +~~~ +6334853 UP 12 +6334853 2048 2048 +6336358 DOWN 12 +6336358 0 2048 +6336394 UP 12 +6336394 2048 2048 +6336421 DOWN 12 +6336421 0 2048 +6336448 UP 12 +6336448 2048 2048 +6339836 DOWN 12 +6339836 0 2048 +6339849 UP 12 +6339849 2048 2048 +6340353 CLICK1 +6340353 CLICK2 +~~~ +~~~ +~~~ +6340372 2048 67110912 +~~~ +6340522 2048 2048 +6348413 DOWN 12 +6348413 0 2048 +~~~ +~~~ +6348439 0 0 +~~~ +~~~ +6348441 0 1 +~~~ +~~~ +6348442 0 3 +~~~ +~~~ +6348444 0 7 +~~~ +~~~ +6348446 0 15 +~~~ +~~~ +6348448 0 31 +~~~ +~~~ +6348450 0 63 +~~~ +~~~ +6348452 0 127 +~~~ +~~~ +6348453 0 255 +6348454 homeCount = 106 +6348455 waitCount = 52 +6348455 ripCount = 46 +6348456 locktype1 = 2 +6348456 locktype2 = 7 +6348478 locktype3 = 5 +6348478 goalCount = 9 +6348479 goalTotal = 39 +6348479 otherCount = 53 +~~~ +6348480 CURRENTGOAL IS [3] +~~~ +6348481 UP 12 +6348481 2048 255 +6348533 DOWN 12 +6348533 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6348567 homeCount = 106 +6348567 waitCount = 52 +6348568 ripCount = 46 +6348568 locktype1 = 2 +6348569 locktype2 = 7 +6348569 locktype3 = 5 +6348570 goalCount = 9 +6348570 goalTotal = 39 +6348571 otherCount = 53 +~~~ +6348572 CURRENTGOAL IS [3] +~~~ +6348593 UP 12 +6348593 2048 255 +6348632 DOWN 12 +6348631 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6348670 homeCount = 106 +6348671 waitCount = 52 +6348671 ripCount = 46 +6348672 locktype1 = 2 +6348672 locktype2 = 7 +6348673 locktype3 = 5 +6348673 goalCount = 9 +6348674 goalTotal = 39 +6348674 otherCount = 53 +~~~ +6348675 CURRENTGOAL IS [3] +~~~ +6348773 UP 12 +6348773 2048 255 +6349353 DOWN 12 +6349352 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6349389 homeCount = 106 +6349389 waitCount = 52 +6349390 ripCount = 46 +6349390 locktype1 = 2 +6349391 locktype2 = 7 +6349391 locktype3 = 5 +6349392 goalCount = 9 +6349392 goalTotal = 39 +6349393 otherCount = 53 +~~~ +6349394 CURRENTGOAL IS [3] +~~~ +6349471 UP 12 +6349471 2048 255 +6349488 DOWN 12 +6349488 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6349526 homeCount = 106 +6349527 waitCount = 52 +6349528 ripCount = 46 +6349528 locktype1 = 2 +6349529 locktype2 = 7 +6349529 locktype3 = 5 +6349529 goalCount = 9 +6349530 goalTotal = 39 +6349530 otherCount = 53 +~~~ +6349531 CURRENTGOAL IS [3] +~~~ +6352357 UP 3 +6352357 4 255 +6352373 DOWN 3 +6352373 0 255 +~~~ +~~~ +6352379 outer reward +~~~ +6352379 0 262399 +~~~ +~~~ +6352384 outerreps = 8 +~~~ +~~~ +~~~ +~~~ +6352397 0 262398 +~~~ +~~~ +6352399 0 262396 +~~~ +~~~ +6352401 0 262392 +~~~ +~~~ +6352403 0 262384 +~~~ +~~~ +6352404 0 262368 +~~~ +~~~ +6352406 0 262336 +~~~ +~~~ +6352408 0 262272 +~~~ +~~~ +6352410 0 262144 +~~~ +~~~ +6352412 0 262656 +6352413 homeCount = 106 +6352413 waitCount = 52 +6352414 ripCount = 46 +6352435 locktype1 = 2 +6352435 locktype2 = 7 +6352436 locktype3 = 5 +6352436 goalCount = 0 +6352437 goalTotal = 40 +6352437 otherCount = 53 +~~~ +6352438 4 262656 +6352613 DOWN 3 +6352613 0 262656 +6352654 4 262656 +6352829 4 512 +6353457 DOWN 3 +6353457 0 512 +6353469 4 512 +6353587 DOWN 3 +6353587 0 512 +6353600 4 512 +6353729 DOWN 3 +6353729 0 512 +6353735 4 512 +6353868 DOWN 3 +6353868 0 512 +6353873 4 512 +6360563 DOWN 3 +6360563 0 512 +6364715 UP 10 +6364715 waslock = 0 +6364715 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6364745 512 16777728 +~~~ +6364878 DOWN 10 +6364878 0 16777728 +6364892 UP 10 +6364892 waslock = 0 +6364891 512 16777728 +6364895 512 512 +~~~ +~~~ +6364910 512 2560 +~~~ +~~~ +6364912 512 2048 +6364913 homeCount = 107 +6364913 waitCount = 52 +6364914 ripCount = 46 +6364914 locktype1 = 2 +6364915 locktype2 = 7 +6364915 locktype3 = 5 +6364916 goalCount = 0 +6364916 goalTotal = 40 +6364917 otherCount = 53 +~~~ +~~~ +6367991 DOWN 10 +6367991 0 2048 +6368002 UP 10 +6368002 waslock = 0 +6368002 512 2048 +~~~ +~~~ +~~~ +~~~ +6368025 homeCount = 107 +6368026 waitCount = 52 +6368026 ripCount = 46 +6368027 locktype1 = 2 +6368027 locktype2 = 7 +6368028 locktype3 = 5 +6368028 goalCount = 0 +6368029 goalTotal = 40 +6368029 otherCount = 53 +~~~ +~~~ +6368090 DOWN 10 +6368090 0 2048 +~~~ +~~~ +~~~ +~~~ +6368115 homeCount = 107 +6368116 waitCount = 52 +6368116 ripCount = 46 +6368117 locktype1 = 2 +6368117 locktype2 = 7 +6368118 locktype3 = 5 +6368118 goalCount = 0 +6368119 goalTotal = 40 +6368119 otherCount = 53 +~~~ +6369955 UP 12 +6369955 2048 2048 +6370697 DOWN 12 +6370697 0 2048 +6370710 UP 12 +6370710 2048 2048 +6372380 DOWN 12 +6372380 0 2048 +6372417 UP 12 +6372417 2048 2048 +6372446 DOWN 12 +6372446 0 2048 +6372474 UP 12 +6372474 2048 2048 +6373955 CLICK1 +6373955 CLICK2 +~~~ +~~~ +~~~ +6373985 2048 67110912 +~~~ +6374135 2048 2048 +6381542 DOWN 12 +6381542 0 2048 +~~~ +~~~ +6381563 0 0 +~~~ +~~~ +6381564 0 1 +~~~ +~~~ +6381566 0 3 +~~~ +~~~ +6381568 0 7 +~~~ +~~~ +6381570 0 15 +~~~ +~~~ +6381572 0 31 +~~~ +~~~ +6381574 0 63 +~~~ +~~~ +6381575 0 127 +~~~ +~~~ +6381577 0 255 +6381578 homeCount = 107 +6381579 waitCount = 53 +6381579 ripCount = 46 +6381580 locktype1 = 2 +6381580 locktype2 = 7 +6381581 locktype3 = 5 +6381602 goalCount = 0 +6381602 goalTotal = 40 +6381603 otherCount = 53 +~~~ +6381604 CURRENTGOAL IS [7] +~~~ +6381604 UP 12 +6381604 2048 255 +6381673 DOWN 12 +6381673 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6381708 homeCount = 107 +6381709 waitCount = 53 +6381709 ripCount = 46 +6381710 locktype1 = 2 +6381710 locktype2 = 7 +6381711 locktype3 = 5 +6381711 goalCount = 0 +6381712 goalTotal = 40 +6381712 otherCount = 53 +~~~ +6381713 CURRENTGOAL IS [7] +~~~ +6381775 UP 12 +6381775 2048 255 +6383359 DOWN 12 +6383359 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6383398 homeCount = 107 +6383399 waitCount = 53 +6383399 ripCount = 46 +6383400 locktype1 = 2 +6383400 locktype2 = 7 +6383401 locktype3 = 5 +6383401 goalCount = 0 +6383402 goalTotal = 40 +6383402 otherCount = 53 +~~~ +6383403 CURRENTGOAL IS [7] +~~~ +6383439 UP 12 +6383439 2048 255 +6383453 DOWN 12 +6383453 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6383489 homeCount = 107 +6383490 waitCount = 53 +6383490 ripCount = 46 +6383491 locktype1 = 2 +6383491 locktype2 = 7 +6383492 locktype3 = 5 +6383492 goalCount = 0 +6383492 goalTotal = 40 +6383493 otherCount = 53 +~~~ +6383494 CURRENTGOAL IS [7] +~~~ +6386266 UP 3 +6386266 4 255 +~~~ +~~~ +6386457 DOWN 3 +6386457 0 255 +~~~ +~~~ +6386481 0 254 +~~~ +~~~ +6386483 0 252 +~~~ +~~~ +6386485 0 248 +~~~ +~~~ +6386486 0 240 +~~~ +~~~ +6386488 0 224 +~~~ +~~~ +6386490 0 192 +~~~ +~~~ +6386492 0 128 +~~~ +~~~ +6386494 0 0 +~~~ +~~~ +6386496 0 512 +6386497 homeCount = 107 +6386497 waitCount = 53 +6386498 ripCount = 46 +6386498 locktype1 = 2 +6386499 locktype2 = 7 +6386520 locktype3 = 5 +6386520 goalCount = 0 +6386521 goalTotal = 40 +6386521 otherCount = 54 +~~~ +6386522 4 512 +6387215 DOWN 3 +6387215 0 512 +6387280 4 512 +6387330 DOWN 3 +6387330 0 512 +6391562 UP 10 +6391563 waslock = 0 +6391562 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6391588 512 16777728 +~~~ +6391612 DOWN 10 +6391612 0 16777728 +~~~ +~~~ +6391632 0 16779776 +~~~ +~~~ +6391634 0 16779264 +6391635 homeCount = 108 +6391635 waitCount = 53 +6391636 ripCount = 46 +6391636 locktype1 = 2 +6391637 locktype2 = 7 +6391637 locktype3 = 5 +6391638 goalCount = 0 +6391638 goalTotal = 40 +6391639 otherCount = 54 +~~~ +6391738 0 2048 +6391756 UP 10 +6391757 waslock = 0 +6391756 512 2048 +~~~ +6396193 DOWN 10 +6396193 0 2048 +~~~ +~~~ +6396213 UP 10 +6396213 waslock = 0 +6396213 512 2048 +~~~ +~~~ +6396215 homeCount = 108 +6396216 waitCount = 53 +6396216 ripCount = 46 +6396217 locktype1 = 2 +6396217 locktype2 = 7 +6396218 locktype3 = 5 +6396218 goalCount = 0 +6396219 goalTotal = 40 +6396219 otherCount = 54 +~~~ +~~~ +6396293 DOWN 10 +6396293 0 2048 +~~~ +~~~ +~~~ +~~~ +6396321 homeCount = 108 +6396321 waitCount = 53 +6396322 ripCount = 46 +6396322 locktype1 = 2 +6396323 locktype2 = 7 +6396323 locktype3 = 5 +6396324 goalCount = 0 +6396324 goalTotal = 40 +6396325 otherCount = 54 +~~~ +6398084 UP 12 +6398084 2048 2048 +6400258 DOWN 12 +6400258 0 2048 +6400290 UP 12 +6400289 2048 2048 +6400802 DOWN 12 +6400802 0 2048 +6400821 UP 12 +6400821 2048 2048 +6403585 CLICK1 +6403585 CLICK2 +~~~ +~~~ +~~~ +6403609 2048 67110912 +~~~ +6403759 2048 2048 +6410651 DOWN 12 +6410651 0 2048 +~~~ +~~~ +6410669 0 0 +~~~ +~~~ +6410670 0 1 +~~~ +~~~ +6410672 0 3 +~~~ +~~~ +6410674 0 7 +~~~ +~~~ +6410676 0 15 +~~~ +~~~ +6410678 0 31 +~~~ +~~~ +6410680 0 63 +~~~ +~~~ +6410681 0 127 +~~~ +~~~ +6410683 0 255 +6410684 homeCount = 108 +6410685 waitCount = 54 +6410685 ripCount = 46 +6410686 locktype1 = 2 +6410686 locktype2 = 7 +6410707 locktype3 = 5 +6410708 goalCount = 0 +6410708 goalTotal = 40 +6410709 otherCount = 54 +~~~ +6410710 CURRENTGOAL IS [7] +~~~ +6410710 UP 12 +6410710 2048 255 +6410790 DOWN 12 +6410790 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6410827 homeCount = 108 +6410827 waitCount = 54 +6410828 ripCount = 46 +6410828 locktype1 = 2 +6410829 locktype2 = 7 +6410829 locktype3 = 5 +6410830 goalCount = 0 +6410830 goalTotal = 40 +6410831 otherCount = 54 +~~~ +6410832 CURRENTGOAL IS [7] +~~~ +6410869 UP 12 +6410869 2048 255 +6410882 DOWN 12 +6410882 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6410918 homeCount = 108 +6410919 waitCount = 54 +6410919 ripCount = 46 +6410920 locktype1 = 2 +6410920 locktype2 = 7 +6410921 locktype3 = 5 +6410921 goalCount = 0 +6410922 goalTotal = 40 +6410922 otherCount = 54 +~~~ +6410923 CURRENTGOAL IS [7] +~~~ +6411007 UP 12 +6411007 2048 255 +6412314 DOWN 12 +6412314 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412351 UP 12 +6412351 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412357 homeCount = 108 +6412358 waitCount = 54 +6412358 ripCount = 46 +6412359 locktype1 = 2 +6412359 locktype2 = 7 +6412360 locktype3 = 5 +6412360 goalCount = 0 +6412361 goalTotal = 40 +6412361 otherCount = 54 +~~~ +6412362 CURRENTGOAL IS [7] +~~~ +6412418 DOWN 12 +6412418 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412457 homeCount = 108 +6412458 waitCount = 54 +6412458 ripCount = 46 +6412459 locktype1 = 2 +6412459 locktype2 = 7 +6412460 locktype3 = 5 +6412460 goalCount = 0 +6412461 goalTotal = 40 +6412461 otherCount = 54 +~~~ +6412462 CURRENTGOAL IS [7] +~~~ +6416338 UP 3 +6416338 4 255 +~~~ +~~~ +6417568 DOWN 3 +6417568 0 255 +~~~ +~~~ +6417592 0 254 +~~~ +~~~ +6417594 0 252 +~~~ +~~~ +6417596 0 248 +~~~ +~~~ +6417597 0 240 +~~~ +~~~ +6417599 0 224 +~~~ +~~~ +6417601 0 192 +~~~ +~~~ +6417603 0 128 +~~~ +~~~ +6417605 0 0 +~~~ +~~~ +6417607 0 512 +6417608 homeCount = 108 +6417608 waitCount = 54 +6417609 ripCount = 46 +6417609 locktype1 = 2 +6417610 locktype2 = 7 +6417631 locktype3 = 5 +6417631 goalCount = 0 +6417632 goalTotal = 40 +6417632 otherCount = 55 +~~~ +6417933 4 512 +6418142 DOWN 3 +6418142 0 512 +6421661 UP 10 +6421661 waslock = 0 +6421661 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6421689 512 16777728 +~~~ +6421839 512 512 +6425407 DOWN 10 +6425407 0 512 +~~~ +~~~ +6425434 0 2560 +~~~ +~~~ +6425436 0 2048 +6425437 homeCount = 109 +6425437 waitCount = 54 +6425438 ripCount = 46 +6425438 locktype1 = 2 +6425439 locktype2 = 7 +6425439 locktype3 = 5 +6425440 goalCount = 0 +6425440 goalTotal = 40 +6425441 otherCount = 55 +~~~ +6425446 UP 10 +6425446 waslock = 0 +6425446 512 2048 +~~~ +6425482 DOWN 10 +6425482 0 2048 +~~~ +~~~ +~~~ +~~~ +6425507 homeCount = 109 +6425508 waitCount = 54 +6425508 ripCount = 46 +6425509 locktype1 = 2 +6425509 locktype2 = 7 +6425510 locktype3 = 5 +6425510 goalCount = 0 +6425511 goalTotal = 40 +6425511 otherCount = 55 +~~~ +6427001 UP 12 +6427001 2048 2048 +6428272 DOWN 12 +6428272 0 2048 +6428389 UP 12 +6428389 2048 2048 +6429840 DOWN 12 +6429840 0 2048 +6429852 UP 12 +6429852 2048 2048 +6429884 DOWN 12 +6429884 0 2048 +6429912 UP 12 +6429912 2048 2048 +6430001 CLICK1 +6430001 CLICK2 +~~~ +~~~ +~~~ +6430025 2048 67110912 +~~~ +6430175 2048 2048 +6437146 DOWN 12 +6437145 0 2048 +~~~ +~~~ +6437173 0 0 +~~~ +~~~ +6437175 0 1 +~~~ +~~~ +6437176 0 3 +~~~ +~~~ +6437178 0 7 +~~~ +~~~ +6437180 0 15 +~~~ +~~~ +6437182 0 31 +~~~ +~~~ +6437184 0 63 +~~~ +~~~ +6437186 0 127 +~~~ +~~~ +6437187 0 255 +6437188 homeCount = 109 +6437189 waitCount = 55 +6437189 ripCount = 46 +6437190 locktype1 = 2 +6437190 locktype2 = 7 +6437191 locktype3 = 5 +6437212 goalCount = 0 +6437212 goalTotal = 40 +6437213 otherCount = 55 +~~~ +6437214 CURRENTGOAL IS [7] +~~~ +6448275 UP 1 +6448275 1 255 +~~~ +~~~ +6449347 DOWN 1 +6449347 0 255 +~~~ +~~~ +6449367 0 254 +~~~ +~~~ +6449369 0 252 +~~~ +~~~ +6449371 0 248 +~~~ +~~~ +6449373 0 240 +~~~ +~~~ +6449375 0 224 +~~~ +~~~ +6449376 0 192 +~~~ +~~~ +6449378 0 128 +~~~ +~~~ +6449380 0 0 +~~~ +~~~ +6449382 0 512 +6449383 homeCount = 109 +6449384 waitCount = 55 +6449384 ripCount = 46 +6449384 locktype1 = 2 +6449385 locktype2 = 7 +6449405 locktype3 = 5 +6449406 goalCount = 0 +6449406 goalTotal = 40 +6449407 otherCount = 56 +~~~ +6457553 UP 10 +6457553 waslock = 0 +6457553 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6457583 512 16777728 +~~~ +6457733 512 512 +6457762 DOWN 10 +6457762 0 512 +6457777 UP 10 +6457778 waslock = 0 +6457777 512 512 +~~~ +~~~ +6457799 512 2560 +~~~ +~~~ +6457801 512 2048 +6457802 homeCount = 110 +6457802 waitCount = 55 +6457803 ripCount = 46 +6457803 locktype1 = 2 +6457804 locktype2 = 7 +6457804 locktype3 = 5 +6457805 goalCount = 0 +6457805 goalTotal = 40 +6457806 otherCount = 56 +~~~ +~~~ +6463809 DOWN 10 +6463809 0 2048 +~~~ +~~~ +~~~ +~~~ +6463830 homeCount = 110 +6463831 waitCount = 55 +6463831 ripCount = 46 +6463832 locktype1 = 2 +6463832 locktype2 = 7 +6463833 locktype3 = 5 +6463833 goalCount = 0 +6463833 goalTotal = 40 +6463834 otherCount = 56 +~~~ +6463835 UP 10 +6463835 waslock = 0 +6463835 512 2048 +~~~ +6463903 DOWN 10 +6463903 0 2048 +~~~ +~~~ +~~~ +~~~ +6463930 homeCount = 110 +6463930 waitCount = 55 +6463931 ripCount = 46 +6463931 locktype1 = 2 +6463932 locktype2 = 7 +6463932 locktype3 = 5 +6463933 goalCount = 0 +6463933 goalTotal = 40 +6463934 otherCount = 56 +~~~ +6465881 UP 12 +6465881 2048 2048 +6467657 DOWN 12 +6467657 0 2048 +6467693 UP 12 +6467693 2048 2048 +6468741 DOWN 12 +6468741 0 2048 +6468762 UP 12 +6468762 2048 2048 +6468914 DOWN 12 +6468914 0 2048 +6468932 UP 12 +6468932 2048 2048 +6472795 DOWN 12 +6472795 0 2048 +6472832 UP 12 +6472832 2048 2048 +6472881 CLICK1 +6472881 CLICK2 +~~~ +~~~ +~~~ +6472910 2048 67110912 +~~~ +6473060 2048 2048 +6479548 DOWN 12 +6479548 0 2048 +~~~ +~~~ +6479568 0 0 +~~~ +~~~ +6479570 0 1 +~~~ +~~~ +6479572 0 3 +~~~ +~~~ +6479573 0 7 +~~~ +~~~ +6479575 0 15 +~~~ +~~~ +6479577 0 31 +~~~ +~~~ +6479579 0 63 +~~~ +~~~ +6479581 0 127 +~~~ +~~~ +6479583 0 255 +6479584 homeCount = 110 +6479584 waitCount = 56 +6479585 ripCount = 46 +6479585 locktype1 = 2 +6479586 locktype2 = 7 +6479586 locktype3 = 5 +6479607 goalCount = 0 +6479608 goalTotal = 40 +6479608 otherCount = 56 +~~~ +6479609 CURRENTGOAL IS [7] +~~~ +6479609 UP 12 +6479609 2048 255 +6479644 DOWN 12 +6479644 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6479684 homeCount = 110 +6479685 waitCount = 56 +6479685 ripCount = 46 +6479686 locktype1 = 2 +6479686 locktype2 = 7 +6479686 locktype3 = 5 +6479687 goalCount = 0 +6479687 goalTotal = 40 +6479688 otherCount = 56 +~~~ +6479689 CURRENTGOAL IS [7] +~~~ +6485355 UP 8 +6485355 128 255 +~~~ +~~~ +6486346 DOWN 8 +6486346 0 255 +~~~ +~~~ +6486369 0 254 +~~~ +~~~ +6486371 0 252 +~~~ +~~~ +6486372 0 248 +~~~ +~~~ +6486374 0 240 +~~~ +~~~ +6486376 0 224 +~~~ +~~~ +6486378 0 192 +~~~ +~~~ +6486380 0 128 +~~~ +~~~ +6486381 0 0 +~~~ +~~~ +6486383 0 512 +6486384 homeCount = 110 +6486385 waitCount = 56 +6486385 ripCount = 46 +6486386 locktype1 = 2 +6486386 locktype2 = 7 +6486407 locktype3 = 5 +6486408 goalCount = 0 +6486408 goalTotal = 40 +6486409 otherCount = 57 +~~~ +6491312 UP 10 +6491312 waslock = 0 +6491312 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6491343 512 16777728 +~~~ +6491493 512 512 +6497957 DOWN 10 +6497957 0 512 +~~~ +~~~ +6497977 0 1536 +~~~ +~~~ +6497979 0 1024 +6497980 homeCount = 111 +6497981 waitCount = 56 +6497981 ripCount = 46 +6497982 locktype1 = 2 +6497982 locktype2 = 7 +6497983 locktype3 = 5 +6497983 goalCount = 0 +6497984 goalTotal = 40 +6497984 otherCount = 57 +~~~ +6500268 UP 11 +6500268 1024 1024 +6501862 DOWN 11 +6501862 0 1024 +6501896 UP 11 +6501896 1024 1024 +6502555 DOWN 11 +6502555 0 1024 +6502573 UP 11 +6502573 1024 1024 +6502784 DOWN 11 +6502784 0 1024 +6502832 UP 11 +6502832 1024 1024 +6502852 DOWN 11 +6502852 0 1024 +6502873 UP 11 +6502873 1024 1024 +6502971 DOWN 11 +6502971 0 1024 +6502994 UP 11 +6502994 1024 1024 +6503021 DOWN 11 +6503021 0 1024 +6503040 UP 11 +6503040 1024 1024 +6503112 DOWN 11 +6503112 0 1024 +6503129 UP 11 +6503129 1024 1024 +6503268 BEEP1 +6503268 BEEP2 +~~~ +~~~ +~~~ +6503292 1024 33555456 +~~~ +6503442 1024 1024 +6503531 DOWN 11 +6503531 0 1024 +6503557 UP 11 +6503557 1024 1024 +~~~ +~~~ +6503943 1024 0 +~~~ +~~~ +6503945 1024 1 +~~~ +~~~ +6503947 1024 3 +~~~ +~~~ +6503949 1024 7 +~~~ +~~~ +6503950 1024 15 +~~~ +~~~ +6503952 1024 31 +~~~ +~~~ +6503954 1024 63 +~~~ +~~~ +6503956 1024 127 +~~~ +~~~ +6503958 1024 255 +6503959 homeCount = 111 +6503959 waitCount = 56 +6503960 ripCount = 47 +6503960 locktype1 = 2 +6503981 locktype2 = 7 +6503981 locktype3 = 5 +6503982 goalCount = 0 +6503982 goalTotal = 40 +6503983 otherCount = 57 +~~~ +6503984 CURRENTGOAL IS [7] +~~~ +6508798 DOWN 11 +6508798 0 255 +6508816 UP 11 +6508816 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6508838 homeCount = 111 +6508839 waitCount = 56 +6508839 ripCount = 47 +6508840 locktype1 = 2 +6508840 locktype2 = 7 +6508841 locktype3 = 5 +6508841 goalCount = 0 +6508842 goalTotal = 40 +6508842 otherCount = 57 +~~~ +6508843 CURRENTGOAL IS [7] +~~~ +6508920 DOWN 11 +6508920 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6508959 homeCount = 111 +6508959 waitCount = 56 +6508960 ripCount = 47 +6508960 locktype1 = 2 +6508961 locktype2 = 7 +6508961 locktype3 = 5 +6508962 goalCount = 0 +6508962 goalTotal = 40 +6508963 otherCount = 57 +~~~ +6508964 CURRENTGOAL IS [7] +~~~ +6508969 UP 11 +6508969 1024 255 +6511527 DOWN 11 +6511527 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6511571 homeCount = 111 +6511571 waitCount = 56 +6511572 ripCount = 47 +6511572 locktype1 = 2 +6511573 locktype2 = 7 +6511573 locktype3 = 5 +6511574 goalCount = 0 +6511574 goalTotal = 40 +6511574 otherCount = 57 +~~~ +6511576 CURRENTGOAL IS [7] +~~~ +6511576 UP 11 +6511576 1024 255 +6511638 DOWN 11 +6511638 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6511680 homeCount = 111 +6511680 waitCount = 56 +6511681 ripCount = 47 +6511681 locktype1 = 2 +6511682 locktype2 = 7 +6511682 locktype3 = 5 +6511683 goalCount = 0 +6511683 goalTotal = 40 +6511684 otherCount = 57 +~~~ +6511685 CURRENTGOAL IS [7] +~~~ +6512177 UP 11 +6512177 1024 255 +6513881 DOWN 11 +6513881 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6513921 homeCount = 111 +6513921 waitCount = 56 +6513922 ripCount = 47 +6513922 locktype1 = 2 +6513923 locktype2 = 7 +6513923 locktype3 = 5 +6513924 goalCount = 0 +6513924 goalTotal = 40 +6513925 otherCount = 57 +~~~ +6513926 CURRENTGOAL IS [7] +~~~ +6518545 UP 5 +6518545 16 255 +~~~ +~~~ +6518724 DOWN 5 +6518723 0 255 +~~~ +~~~ +6518744 0 254 +~~~ +~~~ +6518745 0 252 +~~~ +~~~ +6518747 0 248 +~~~ +~~~ +6518749 0 240 +~~~ +~~~ +6518751 0 224 +~~~ +~~~ +6518753 0 192 +~~~ +~~~ +6518754 0 128 +~~~ +~~~ +6518756 0 0 +~~~ +~~~ +6518758 0 512 +6518759 homeCount = 111 +6518760 waitCount = 56 +6518760 ripCount = 47 +6518761 locktype1 = 2 +6518761 locktype2 = 7 +6518782 locktype3 = 5 +6518783 goalCount = 0 +6518783 goalTotal = 40 +6518784 otherCount = 58 +~~~ +6518788 16 512 +6519650 DOWN 5 +6519650 0 512 +6524649 UP 10 +6524649 waslock = 0 +6524649 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6524681 512 16777728 +~~~ +6524831 512 512 +6529752 DOWN 10 +6529752 0 512 +~~~ +~~~ +6529776 0 2560 +~~~ +~~~ +6529778 0 2048 +6529779 homeCount = 112 +6529779 waitCount = 56 +6529780 ripCount = 47 +6529780 locktype1 = 2 +6529781 locktype2 = 7 +6529781 locktype3 = 5 +6529782 goalCount = 0 +6529782 goalTotal = 40 +6529783 otherCount = 58 +~~~ +6530785 UP 10 +6530786 waslock = 0 +6530785 512 2048 +~~~ +6531302 DOWN 10 +6531302 0 2048 +~~~ +~~~ +~~~ +~~~ +6531328 homeCount = 112 +6531329 waitCount = 56 +6531329 ripCount = 47 +6531330 locktype1 = 2 +6531330 locktype2 = 7 +6531331 locktype3 = 5 +6531331 goalCount = 0 +6531332 goalTotal = 40 +6531332 otherCount = 58 +~~~ +6533320 UP 12 +6533320 2048 2048 +6536249 DOWN 12 +6536249 0 2048 +6536449 LOCKOUT 3 +~~~ +6536465 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6536471 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6536576 UP 12 +6536576 2048 0 +6536890 DOWN 12 +6536890 0 0 +6561465 LOCKEND +~~~ +~~~ +~~~ +6561485 0 512 +6569294 UP 10 +6569295 waslock = 0 +6569294 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6569321 512 16777728 +~~~ +6569368 DOWN 10 +6569368 0 16777728 +6569397 UP 10 +6569397 waslock = 0 +6569397 512 16777728 +~~~ +~~~ +6569400 512 16778752 +~~~ +~~~ +6569402 512 16778240 +6569403 homeCount = 113 +6569404 waitCount = 56 +6569404 ripCount = 47 +6569405 locktype1 = 2 +6569405 locktype2 = 7 +6569405 locktype3 = 6 +6569406 goalCount = 0 +6569406 goalTotal = 40 +6569428 otherCount = 58 +~~~ +~~~ +6569470 512 1024 +6569498 DOWN 10 +6569498 0 1024 +~~~ +~~~ +~~~ +6569518 UP 10 +6569518 waslock = 0 +6569518 512 1024 +~~~ +6569520 homeCount = 113 +6569520 waitCount = 56 +6569521 ripCount = 47 +6569521 locktype1 = 2 +6569522 locktype2 = 7 +6569522 locktype3 = 6 +6569523 goalCount = 0 +6569523 goalTotal = 40 +6569524 otherCount = 58 +~~~ +~~~ +6569573 DOWN 10 +6569573 0 1024 +~~~ +~~~ +~~~ +~~~ +6569600 homeCount = 113 +6569601 waitCount = 56 +6569601 ripCount = 47 +6569602 locktype1 = 2 +6569602 locktype2 = 7 +6569603 locktype3 = 6 +6569603 goalCount = 0 +6569604 goalTotal = 40 +6569604 otherCount = 58 +~~~ +6569619 UP 10 +6569620 waslock = 0 +6569619 512 1024 +~~~ +6569711 DOWN 10 +6569711 0 1024 +~~~ +~~~ +~~~ +~~~ +6569740 homeCount = 113 +6569741 waitCount = 56 +6569741 ripCount = 47 +6569742 locktype1 = 2 +6569742 locktype2 = 7 +6569742 locktype3 = 6 +6569743 goalCount = 0 +6569743 goalTotal = 40 +6569744 otherCount = 58 +~~~ +6569744 UP 10 +6569745 waslock = 0 +6569744 512 1024 +~~~ +6570069 DOWN 10 +6570069 0 1024 +~~~ +~~~ +~~~ +~~~ +6570090 homeCount = 113 +6570090 waitCount = 56 +6570091 ripCount = 47 +6570091 locktype1 = 2 +6570092 locktype2 = 7 +6570092 locktype3 = 6 +6570093 goalCount = 0 +6570093 goalTotal = 40 +6570094 otherCount = 58 +~~~ +6570155 UP 10 +6570155 waslock = 0 +6570155 512 1024 +~~~ +6570216 DOWN 10 +6570216 0 1024 +~~~ +~~~ +~~~ +~~~ +6570241 homeCount = 113 +6570242 waitCount = 56 +6570242 ripCount = 47 +6570243 locktype1 = 2 +6570243 locktype2 = 7 +6570244 locktype3 = 6 +6570244 goalCount = 0 +6570245 goalTotal = 40 +6570245 otherCount = 58 +~~~ +6570297 UP 10 +6570297 waslock = 0 +6570297 512 1024 +~~~ +6570360 DOWN 10 +6570360 0 1024 +~~~ +~~~ +~~~ +~~~ +6570390 homeCount = 113 +6570390 waitCount = 56 +6570391 ripCount = 47 +6570391 locktype1 = 2 +6570392 locktype2 = 7 +6570392 locktype3 = 6 +6570393 goalCount = 0 +6570393 goalTotal = 40 +6570394 otherCount = 58 +~~~ +6570433 UP 10 +6570433 waslock = 0 +6570432 512 1024 +~~~ +6573876 DOWN 10 +6573876 0 1024 +~~~ +~~~ +~~~ +~~~ +6573901 homeCount = 113 +6573902 waitCount = 56 +6573902 ripCount = 47 +6573903 locktype1 = 2 +6573903 locktype2 = 7 +6573903 locktype3 = 6 +6573904 goalCount = 0 +6573904 goalTotal = 40 +6573905 otherCount = 58 +~~~ +6573934 UP 10 +6573935 waslock = 0 +6573934 512 1024 +~~~ +6573977 DOWN 10 +6573977 0 1024 +~~~ +~~~ +~~~ +~~~ +6574003 homeCount = 113 +6574004 waitCount = 56 +6574004 ripCount = 47 +6574005 locktype1 = 2 +6574005 locktype2 = 7 +6574006 locktype3 = 6 +6574006 goalCount = 0 +6574007 goalTotal = 40 +6574007 otherCount = 58 +~~~ +6575372 UP 11 +6575372 1024 1024 +6576446 DOWN 11 +6576446 0 1024 +6576491 UP 11 +6576491 1024 1024 +6577984 DOWN 11 +6577984 0 1024 +6577998 UP 11 +6577998 1024 1024 +6578373 BEEP1 +6578373 BEEP2 +~~~ +~~~ +~~~ +6578399 1024 33555456 +~~~ +6578549 1024 1024 +6578714 DOWN 11 +6578714 0 1024 +6578721 UP 11 +6578721 1024 1024 +6578866 DOWN 11 +6578866 0 1024 +6578903 UP 11 +6578903 1024 1024 +~~~ +~~~ +6579074 1024 0 +~~~ +~~~ +6579075 1024 1 +~~~ +~~~ +6579077 1024 3 +~~~ +~~~ +6579079 1024 7 +~~~ +~~~ +6579081 1024 15 +~~~ +~~~ +6579083 1024 31 +~~~ +~~~ +6579085 1024 63 +~~~ +~~~ +6579086 1024 127 +~~~ +~~~ +6579088 1024 255 +6579089 homeCount = 113 +6579090 waitCount = 56 +6579090 ripCount = 48 +6579091 locktype1 = 2 +6579112 locktype2 = 7 +6579112 locktype3 = 6 +6579113 goalCount = 0 +6579113 goalTotal = 40 +6579113 otherCount = 58 +~~~ +6579115 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6579142 homeCount = 113 +6579143 waitCount = 56 +6579143 ripCount = 48 +6579144 locktype1 = 2 +6579144 locktype2 = 7 +6579145 locktype3 = 6 +6579145 goalCount = 0 +6579146 goalTotal = 40 +6579146 otherCount = 58 +~~~ +6579147 CURRENTGOAL IS [7] +~~~ +6586385 DOWN 11 +6586385 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6586420 homeCount = 113 +6586421 waitCount = 56 +6586421 ripCount = 48 +6586422 locktype1 = 2 +6586422 locktype2 = 7 +6586422 locktype3 = 6 +6586423 goalCount = 0 +6586423 goalTotal = 40 +6586424 otherCount = 58 +~~~ +6586425 CURRENTGOAL IS [7] +~~~ +6590698 UP 7 +6590698 64 255 +6590720 DOWN 7 +6590720 0 255 +~~~ +~~~ +6590725 outer reward +~~~ +6590725 0 4194559 +~~~ +~~~ +~~~ +~~~ +6590745 0 4194558 +~~~ +~~~ +6590747 0 4194556 +~~~ +~~~ +6590749 0 4194552 +~~~ +~~~ +6590750 0 4194544 +~~~ +~~~ +6590752 0 4194528 +~~~ +~~~ +6590754 0 4194496 +~~~ +~~~ +6590756 0 4194432 +~~~ +~~~ +6590758 0 4194304 +~~~ +~~~ +6590760 0 4194816 +6590761 homeCount = 113 +6590761 waitCount = 56 +6590762 ripCount = 48 +6590782 locktype1 = 2 +6590783 locktype2 = 7 +6590783 locktype3 = 6 +6590784 goalCount = 1 +6590784 goalTotal = 41 +6590785 otherCount = 58 +~~~ +6590785 64 4194816 +6591175 64 512 +6599661 DOWN 7 +6599661 0 512 +6608285 UP 10 +6608286 waslock = 0 +6608285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6608312 512 16777728 +~~~ +6608462 512 512 +6608513 DOWN 10 +6608513 0 512 +~~~ +~~~ +6608534 0 2560 +~~~ +~~~ +6608535 0 2048 +6608536 homeCount = 114 +6608537 waitCount = 56 +6608537 ripCount = 48 +6608538 locktype1 = 2 +6608538 locktype2 = 7 +6608539 locktype3 = 6 +6608539 goalCount = 1 +6608540 goalTotal = 41 +6608540 otherCount = 58 +~~~ +6608630 UP 10 +6608630 waslock = 0 +6608630 512 2048 +~~~ +6613637 DOWN 10 +6613637 0 2048 +~~~ +~~~ +~~~ +~~~ +6613666 homeCount = 114 +6613667 waitCount = 56 +6613667 ripCount = 48 +6613668 locktype1 = 2 +6613668 locktype2 = 7 +6613669 locktype3 = 6 +6613669 goalCount = 1 +6613670 goalTotal = 41 +6613670 otherCount = 58 +~~~ +6616329 UP 12 +6616329 2048 2048 +6619830 CLICK1 +6619830 CLICK2 +~~~ +~~~ +~~~ +6619856 2048 67110912 +~~~ +6620006 2048 2048 +6628530 DOWN 12 +6628530 0 2048 +6628552 UP 12 +6628552 2048 2048 +~~~ +~~~ +6628554 2048 0 +~~~ +~~~ +6628556 2048 1 +~~~ +~~~ +6628557 2048 3 +~~~ +~~~ +6628559 2048 7 +~~~ +~~~ +6628561 2048 15 +~~~ +~~~ +6628563 2048 31 +~~~ +~~~ +6628565 2048 63 +~~~ +~~~ +6628566 2048 127 +~~~ +~~~ +6628568 2048 255 +6628569 homeCount = 114 +6628570 waitCount = 57 +6628591 ripCount = 48 +6628591 locktype1 = 2 +6628592 locktype2 = 7 +6628592 locktype3 = 6 +6628592 goalCount = 1 +6628593 goalTotal = 41 +6628593 otherCount = 58 +~~~ +6628595 CURRENTGOAL IS [7] +~~~ +6628616 DOWN 12 +6628616 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6628645 homeCount = 114 +6628646 waitCount = 57 +6628646 ripCount = 48 +6628647 locktype1 = 2 +6628647 locktype2 = 7 +6628648 locktype3 = 6 +6628648 goalCount = 1 +6628648 goalTotal = 41 +6628649 otherCount = 58 +~~~ +6628650 CURRENTGOAL IS [7] +~~~ +6632543 UP 4 +6632543 8 255 +~~~ +~~~ +6633261 DOWN 4 +6633261 0 255 +~~~ +~~~ +6633284 0 254 +~~~ +~~~ +6633286 0 252 +~~~ +~~~ +6633288 0 248 +~~~ +~~~ +6633289 0 240 +~~~ +~~~ +6633291 0 224 +~~~ +~~~ +6633293 0 192 +~~~ +~~~ +6633295 0 128 +~~~ +~~~ +6633297 0 0 +~~~ +~~~ +6633299 0 512 +6633300 homeCount = 114 +6633300 waitCount = 57 +6633301 ripCount = 48 +6633301 locktype1 = 2 +6633302 locktype2 = 7 +6633323 locktype3 = 6 +6633323 goalCount = 1 +6633324 goalTotal = 41 +6633324 otherCount = 59 +~~~ +6637699 UP 10 +6637699 waslock = 0 +6637699 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6637730 512 16777728 +~~~ +6637866 DOWN 10 +6637866 0 16777728 +6637880 0 512 +~~~ +~~~ +6637887 0 2560 +~~~ +~~~ +6637889 0 2048 +6637890 homeCount = 115 +6637890 waitCount = 57 +6637891 ripCount = 48 +6637891 locktype1 = 2 +6637892 locktype2 = 7 +6637892 locktype3 = 6 +6637893 goalCount = 1 +6637893 goalTotal = 41 +6637894 otherCount = 59 +~~~ +6637949 UP 10 +6637949 waslock = 0 +6637949 512 2048 +~~~ +6640995 DOWN 10 +6640995 0 2048 +~~~ +~~~ +~~~ +~~~ +6641017 homeCount = 115 +6641017 waitCount = 57 +6641018 ripCount = 48 +6641018 locktype1 = 2 +6641019 locktype2 = 7 +6641019 locktype3 = 6 +6641020 goalCount = 1 +6641020 goalTotal = 41 +6641021 otherCount = 59 +~~~ +6642706 UP 12 +6642706 2048 2048 +6645350 DOWN 12 +6645350 0 2048 +6645380 UP 12 +6645380 2048 2048 +6647206 CLICK1 +6647206 CLICK2 +~~~ +~~~ +~~~ +6647227 2048 67110912 +~~~ +6647377 2048 2048 +6657145 DOWN 12 +6657144 0 2048 +~~~ +~~~ +6657165 0 0 +~~~ +~~~ +6657167 0 1 +~~~ +~~~ +6657169 0 3 +~~~ +~~~ +6657170 0 7 +~~~ +~~~ +6657172 0 15 +~~~ +~~~ +6657174 0 31 +~~~ +~~~ +6657176 0 63 +~~~ +~~~ +6657178 0 127 +~~~ +~~~ +6657180 0 255 +6657181 homeCount = 115 +6657181 waitCount = 58 +6657182 ripCount = 48 +6657182 locktype1 = 2 +6657183 locktype2 = 7 +6657204 locktype3 = 6 +6657204 goalCount = 1 +6657205 goalTotal = 41 +6657205 otherCount = 59 +~~~ +6657206 CURRENTGOAL IS [7] +~~~ +6657218 UP 12 +6657218 2048 255 +6657280 DOWN 12 +6657280 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6657313 homeCount = 115 +6657314 waitCount = 58 +6657314 ripCount = 48 +6657315 locktype1 = 2 +6657315 locktype2 = 7 +6657316 locktype3 = 6 +6657316 goalCount = 1 +6657317 goalTotal = 41 +6657317 otherCount = 59 +~~~ +6657318 CURRENTGOAL IS [7] +~~~ +6661264 UP 3 +6661264 4 255 +~~~ +~~~ +6661872 DOWN 3 +6661872 0 255 +~~~ +~~~ +6661892 0 254 +~~~ +~~~ +6661894 0 252 +~~~ +~~~ +6661896 0 248 +~~~ +~~~ +6661898 0 240 +~~~ +~~~ +6661900 0 224 +~~~ +~~~ +6661901 0 192 +~~~ +~~~ +6661903 0 128 +~~~ +~~~ +6661905 0 0 +~~~ +~~~ +6661907 0 512 +6661908 homeCount = 115 +6661909 waitCount = 58 +6661909 ripCount = 48 +6661909 locktype1 = 2 +6661910 locktype2 = 7 +6661931 locktype3 = 6 +6661931 goalCount = 1 +6661932 goalTotal = 41 +6661932 otherCount = 60 +~~~ +6661933 4 512 +6662264 DOWN 3 +6662264 0 512 +6665814 UP 10 +6665814 waslock = 0 +6665814 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6665840 512 16777728 +~~~ +6665975 DOWN 10 +6665975 0 16777728 +6665990 0 512 +~~~ +~~~ +6665993 0 1536 +~~~ +~~~ +6665995 0 1024 +6665996 homeCount = 116 +6665997 waitCount = 58 +6665997 ripCount = 48 +6665998 locktype1 = 2 +6665998 locktype2 = 7 +6665999 locktype3 = 6 +6665999 goalCount = 1 +6666000 goalTotal = 41 +6666000 otherCount = 60 +~~~ +6666060 UP 10 +6666060 waslock = 0 +6666060 512 1024 +~~~ +6671137 DOWN 10 +6671137 0 1024 +~~~ +~~~ +~~~ +~~~ +6671163 homeCount = 116 +6671163 waitCount = 58 +6671164 ripCount = 48 +6671164 locktype1 = 2 +6671165 locktype2 = 7 +6671165 locktype3 = 6 +6671166 goalCount = 1 +6671166 goalTotal = 41 +6671167 otherCount = 60 +~~~ +6671175 UP 10 +6671175 waslock = 0 +6671175 512 1024 +6671210 DOWN 10 +6671210 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6671233 homeCount = 116 +6671234 waitCount = 58 +6671234 ripCount = 48 +6671235 locktype1 = 2 +6671235 locktype2 = 7 +6671236 locktype3 = 6 +6671236 goalCount = 1 +6671237 goalTotal = 41 +6671237 otherCount = 60 +~~~ +6672888 UP 11 +6672888 1024 1024 +6675281 DOWN 11 +6675281 0 1024 +6675325 UP 11 +6675325 1024 1024 +6675888 BEEP1 +6675888 BEEP2 +~~~ +~~~ +~~~ +6675910 1024 33555456 +~~~ +6676060 1024 1024 +6683979 DOWN 11 +6683979 0 1024 +~~~ +~~~ +6683999 0 0 +~~~ +~~~ +6684001 0 1 +~~~ +~~~ +6684003 0 3 +~~~ +~~~ +6684004 0 7 +~~~ +~~~ +6684006 0 15 +~~~ +~~~ +6684008 0 31 +~~~ +~~~ +6684010 0 63 +~~~ +~~~ +6684012 0 127 +~~~ +~~~ +6684014 0 255 +6684015 homeCount = 116 +6684015 waitCount = 58 +6684016 ripCount = 49 +6684016 locktype1 = 2 +6684017 locktype2 = 7 +6684017 locktype3 = 6 +6684038 goalCount = 1 +6684039 goalTotal = 41 +6684039 otherCount = 60 +~~~ +6684040 CURRENTGOAL IS [7] +~~~ +6684055 UP 11 +6684055 1024 255 +6684116 DOWN 11 +6684116 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6684159 homeCount = 116 +6684159 waitCount = 58 +6684160 ripCount = 49 +6684160 locktype1 = 2 +6684161 locktype2 = 7 +6684161 locktype3 = 6 +6684162 goalCount = 1 +6684162 goalTotal = 41 +6684163 otherCount = 60 +~~~ +6684164 CURRENTGOAL IS [7] +~~~ +6684221 UP 11 +6684221 1024 255 +6684256 DOWN 11 +6684256 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6684297 homeCount = 116 +6684298 waitCount = 58 +6684298 ripCount = 49 +6684299 locktype1 = 2 +6684299 locktype2 = 7 +6684300 locktype3 = 6 +6684300 goalCount = 1 +6684301 goalTotal = 41 +6684301 otherCount = 60 +~~~ +6684302 CURRENTGOAL IS [7] +~~~ +6684474 UP 11 +6684474 1024 255 +6685220 DOWN 11 +6685220 0 255 +6685235 UP 11 +6685235 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685260 DOWN 11 +6685260 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685272 homeCount = 116 +6685272 waitCount = 58 +6685273 ripCount = 49 +6685273 locktype1 = 2 +6685274 locktype2 = 7 +6685274 locktype3 = 6 +6685275 goalCount = 1 +6685275 goalTotal = 41 +6685276 otherCount = 60 +~~~ +6685277 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685304 homeCount = 116 +6685304 waitCount = 58 +6685305 ripCount = 49 +6685305 locktype1 = 2 +6685306 locktype2 = 7 +6685306 locktype3 = 6 +6685307 goalCount = 1 +6685307 goalTotal = 41 +6685308 otherCount = 60 +~~~ +6685309 CURRENTGOAL IS [7] +~~~ +6685357 UP 11 +6685357 1024 255 +6685427 DOWN 11 +6685427 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685466 homeCount = 116 +6685466 waitCount = 58 +6685467 ripCount = 49 +6685467 locktype1 = 2 +6685468 locktype2 = 7 +6685468 locktype3 = 6 +6685469 goalCount = 1 +6685469 goalTotal = 41 +6685470 otherCount = 60 +~~~ +6685471 CURRENTGOAL IS [7] +~~~ +6691250 UP 8 +6691250 128 255 +~~~ +~~~ +6691294 DOWN 8 +6691294 0 255 +~~~ +6691318 128 255 +~~~ +6691319 128 254 +~~~ +~~~ +6691320 128 252 +~~~ +~~~ +6691322 128 248 +~~~ +~~~ +6691324 128 240 +~~~ +~~~ +6691326 128 224 +~~~ +~~~ +6691328 128 192 +~~~ +~~~ +6691329 128 128 +~~~ +~~~ +6691331 128 0 +~~~ +~~~ +6691333 128 512 +6691334 homeCount = 116 +6691335 waitCount = 58 +6691356 ripCount = 49 +6691356 locktype1 = 2 +6691357 locktype2 = 7 +6691357 locktype3 = 6 +6691358 goalCount = 1 +6691358 goalTotal = 41 +6691359 otherCount = 61 +~~~ +6691705 DOWN 8 +6691705 0 512 +6692128 128 512 +6692970 DOWN 8 +6692969 0 512 +6693144 128 512 +6693170 DOWN 8 +6693170 0 512 +6693199 128 512 +6693388 DOWN 8 +6693388 0 512 +6693402 128 512 +6693443 DOWN 8 +6693443 0 512 +6693515 128 512 +6693538 DOWN 8 +6693538 0 512 +6693619 128 512 +6693648 DOWN 8 +6693648 0 512 +6694010 128 512 +6694839 DOWN 8 +6694838 0 512 +6701433 UP 10 +6701434 waslock = 0 +6701433 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6701465 512 16777728 +~~~ +6701615 512 512 +6701718 DOWN 10 +6701718 0 512 +~~~ +~~~ +6701739 0 1536 +~~~ +~~~ +6701741 0 1024 +6701742 homeCount = 117 +6701743 waitCount = 58 +6701743 ripCount = 49 +6701744 locktype1 = 2 +6701744 locktype2 = 7 +6701745 locktype3 = 6 +6701745 goalCount = 1 +6701746 goalTotal = 41 +6701746 otherCount = 61 +~~~ +6701748 UP 10 +6701748 waslock = 0 +6701748 512 1024 +~~~ +6705821 DOWN 10 +6705821 0 1024 +~~~ +~~~ +~~~ +~~~ +6705843 homeCount = 117 +6705843 waitCount = 58 +6705844 ripCount = 49 +6705844 locktype1 = 2 +6705845 locktype2 = 7 +6705845 locktype3 = 6 +6705846 goalCount = 1 +6705846 goalTotal = 41 +6705847 otherCount = 61 +~~~ +6705847 UP 10 +6705848 waslock = 0 +6705847 512 1024 +~~~ +6705920 DOWN 10 +6705920 0 1024 +~~~ +~~~ +~~~ +~~~ +6705943 homeCount = 117 +6705943 waitCount = 58 +6705944 ripCount = 49 +6705944 locktype1 = 2 +6705944 locktype2 = 7 +6705945 locktype3 = 6 +6705945 goalCount = 1 +6705946 goalTotal = 41 +6705946 otherCount = 61 +~~~ +6708068 UP 11 +6708068 1024 1024 +6708086 DOWN 11 +6708086 0 1024 +6708133 UP 11 +6708133 1024 1024 +6709911 DOWN 11 +6709911 0 1024 +6709920 UP 11 +6709920 1024 1024 +6711114 DOWN 11 +6711114 0 1024 +6711120 UP 11 +6711120 1024 1024 +6711125 DOWN 11 +6711125 0 1024 +6711144 UP 11 +6711144 1024 1024 +6711546 DOWN 11 +6711546 0 1024 +6711576 UP 11 +6711576 1024 1024 +6711611 DOWN 11 +6711611 0 1024 +6711618 UP 11 +6711618 1024 1024 +6715068 BEEP1 +6715068 BEEP2 +~~~ +~~~ +~~~ +6715093 1024 33555456 +~~~ +6715243 1024 1024 +6721928 DOWN 11 +6721928 0 1024 +~~~ +~~~ +6721951 UP 11 +6721951 1024 0 +~~~ +~~~ +6721953 1024 1 +~~~ +~~~ +6721955 1024 3 +~~~ +~~~ +6721956 1024 7 +~~~ +~~~ +6721958 1024 15 +~~~ +~~~ +6721960 1024 31 +~~~ +~~~ +6721962 1024 63 +~~~ +~~~ +6721964 1024 127 +~~~ +~~~ +6721966 1024 255 +6721967 homeCount = 117 +6721967 waitCount = 58 +6721968 ripCount = 50 +6721989 locktype1 = 2 +6721989 locktype2 = 7 +6721990 locktype3 = 6 +6721990 goalCount = 1 +6721991 goalTotal = 41 +6721991 otherCount = 61 +~~~ +6721992 CURRENTGOAL IS [7] +~~~ +6722015 DOWN 11 +6722015 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6722057 homeCount = 117 +6722057 waitCount = 58 +6722058 ripCount = 50 +6722058 locktype1 = 2 +6722059 locktype2 = 7 +6722059 locktype3 = 6 +6722060 goalCount = 1 +6722060 goalTotal = 41 +6722060 otherCount = 61 +~~~ +6722062 CURRENTGOAL IS [7] +~~~ +6725264 UP 6 +6725264 32 255 +~~~ +~~~ +6727484 DOWN 6 +6727484 0 255 +~~~ +~~~ +6727509 0 254 +~~~ +~~~ +6727510 0 252 +~~~ +~~~ +6727512 0 248 +~~~ +~~~ +6727514 0 240 +~~~ +~~~ +6727516 0 224 +~~~ +~~~ +6727518 0 192 +~~~ +~~~ +6727519 0 128 +~~~ +~~~ +6727521 0 0 +~~~ +~~~ +6727523 0 512 +6727524 homeCount = 117 +6727525 waitCount = 58 +6727525 ripCount = 50 +6727526 locktype1 = 2 +6727526 locktype2 = 7 +6727547 locktype3 = 6 +6727548 goalCount = 1 +6727548 goalTotal = 41 +6727549 otherCount = 62 +~~~ +6727577 32 512 +6727791 DOWN 6 +6727791 0 512 +6732072 UP 10 +6732072 waslock = 0 +6732072 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6732099 DOWN 10 +6732099 0 16777728 +~~~ +~~~ +~~~ +6732121 0 16779776 +~~~ +~~~ +6732123 0 16779264 +6732124 homeCount = 118 +6732124 waitCount = 58 +6732125 ripCount = 50 +6732125 locktype1 = 2 +6732126 locktype2 = 7 +6732126 locktype3 = 6 +6732127 goalCount = 1 +6732127 goalTotal = 41 +6732128 otherCount = 62 +~~~ +6732179 UP 10 +6732179 waslock = 0 +6732179 512 16779264 +~~~ +6732249 512 2048 +6732403 DOWN 10 +6732403 0 2048 +~~~ +~~~ +~~~ +~~~ +6732424 homeCount = 118 +6732425 waitCount = 58 +6732425 ripCount = 50 +6732426 locktype1 = 2 +6732426 locktype2 = 7 +6732427 locktype3 = 6 +6732427 goalCount = 1 +6732428 goalTotal = 41 +6732428 otherCount = 62 +~~~ +6732461 UP 10 +6732462 waslock = 0 +6732461 512 2048 +~~~ +6738947 DOWN 10 +6738947 0 2048 +~~~ +~~~ +~~~ +~~~ +6738973 homeCount = 118 +6738973 waitCount = 58 +6738974 ripCount = 50 +6738974 locktype1 = 2 +6738975 locktype2 = 7 +6738975 locktype3 = 6 +6738976 goalCount = 1 +6738976 goalTotal = 41 +6738976 otherCount = 62 +~~~ +6739010 UP 10 +6739010 waslock = 0 +6739010 512 2048 +~~~ +6739045 DOWN 10 +6739045 0 2048 +~~~ +~~~ +~~~ +~~~ +6739064 homeCount = 118 +6739064 waitCount = 58 +6739065 ripCount = 50 +6739065 locktype1 = 2 +6739066 locktype2 = 7 +6739066 locktype3 = 6 +6739067 goalCount = 1 +6739067 goalTotal = 41 +6739068 otherCount = 62 +~~~ +6741119 UP 12 +6741119 2048 2048 +6742871 DOWN 12 +6742871 0 2048 +6742901 UP 12 +6742901 2048 2048 +6744620 CLICK1 +6744620 CLICK2 +~~~ +~~~ +~~~ +6744642 2048 67110912 +~~~ +6744792 2048 2048 +6752291 DOWN 12 +6752291 0 2048 +~~~ +~~~ +6752311 0 0 +~~~ +~~~ +6752313 0 1 +~~~ +~~~ +6752315 0 3 +~~~ +~~~ +6752316 0 7 +~~~ +~~~ +6752318 0 15 +~~~ +~~~ +6752320 0 31 +~~~ +~~~ +6752322 0 63 +~~~ +~~~ +6752324 0 127 +~~~ +~~~ +6752325 0 255 +6752326 homeCount = 118 +6752327 waitCount = 59 +6752328 ripCount = 50 +6752328 locktype1 = 2 +6752329 locktype2 = 7 +6752329 locktype3 = 6 +6752350 goalCount = 1 +6752350 goalTotal = 41 +6752351 otherCount = 62 +~~~ +6752352 CURRENTGOAL IS [7] +~~~ +6752352 UP 12 +6752352 2048 255 +6752415 DOWN 12 +6752415 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6752456 homeCount = 118 +6752456 waitCount = 59 +6752457 ripCount = 50 +6752457 locktype1 = 2 +6752458 locktype2 = 7 +6752458 locktype3 = 6 +6752459 goalCount = 1 +6752459 goalTotal = 41 +6752460 otherCount = 62 +~~~ +6752461 CURRENTGOAL IS [7] +~~~ +6757646 UP 3 +6757646 4 255 +~~~ +~~~ +6758067 DOWN 3 +6758067 0 255 +~~~ +~~~ +6758091 0 254 +~~~ +~~~ +6758093 0 252 +~~~ +~~~ +6758094 0 248 +~~~ +~~~ +6758096 0 240 +~~~ +~~~ +6758098 0 224 +~~~ +~~~ +6758100 0 192 +~~~ +~~~ +6758102 0 128 +~~~ +~~~ +6758103 0 0 +~~~ +~~~ +6758105 0 512 +6758106 homeCount = 118 +6758107 waitCount = 59 +6758107 ripCount = 50 +6758108 locktype1 = 2 +6758108 locktype2 = 7 +6758129 locktype3 = 6 +6758130 goalCount = 1 +6758130 goalTotal = 41 +6758131 otherCount = 63 +~~~ +6761238 UP 10 +6761239 waslock = 0 +6761238 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6761268 512 16777728 +~~~ +6761417 512 512 +6761428 DOWN 10 +6761428 0 512 +~~~ +~~~ +6761445 0 2560 +~~~ +~~~ +6761446 0 2048 +6761447 homeCount = 119 +6761448 waitCount = 59 +6761448 ripCount = 50 +6761449 locktype1 = 2 +6761449 locktype2 = 7 +6761450 locktype3 = 6 +6761450 goalCount = 1 +6761451 goalTotal = 41 +6761451 otherCount = 63 +~~~ +6761468 UP 10 +6761468 waslock = 0 +6761468 512 2048 +~~~ +6768410 DOWN 10 +6768410 0 2048 +~~~ +~~~ +~~~ +~~~ +6768433 homeCount = 119 +6768433 waitCount = 59 +6768434 ripCount = 50 +6768434 locktype1 = 2 +6768434 locktype2 = 7 +6768435 locktype3 = 6 +6768435 goalCount = 1 +6768436 goalTotal = 41 +6768436 otherCount = 63 +~~~ +6770299 UP 12 +6770299 2048 2048 +6772302 DOWN 12 +6772302 0 2048 +6772362 UP 12 +6772362 2048 2048 +6773300 CLICK1 +6773300 CLICK2 +~~~ +~~~ +~~~ +6773325 2048 67110912 +~~~ +6773475 2048 2048 +6779649 DOWN 12 +6779649 0 2048 +~~~ +~~~ +6779670 0 0 +~~~ +~~~ +6779672 0 1 +~~~ +~~~ +6779674 0 3 +~~~ +~~~ +6779676 0 7 +~~~ +~~~ +6779678 0 15 +~~~ +~~~ +6779679 0 31 +~~~ +~~~ +6779681 0 63 +~~~ +~~~ +6779683 0 127 +~~~ +6779684 UP 12 +6779684 2048 127 +~~~ +6779686 homeCount = 119 +6779687 waitCount = 60 +6779687 ripCount = 50 +6779688 locktype1 = 2 +6779708 locktype2 = 7 +6779709 locktype3 = 6 +6779709 goalCount = 1 +6779710 goalTotal = 41 +6779710 otherCount = 63 +~~~ +6779711 CURRENTGOAL IS [7] +~~~ +6779712 2048 255 +6779786 DOWN 12 +6779786 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6779830 homeCount = 119 +6779831 waitCount = 60 +6779831 ripCount = 50 +6779832 locktype1 = 2 +6779832 locktype2 = 7 +6779833 locktype3 = 6 +6779833 goalCount = 1 +6779834 goalTotal = 41 +6779834 otherCount = 63 +~~~ +6779835 CURRENTGOAL IS [7] +~~~ +6779836 UP 12 +6779836 2048 255 +6779858 DOWN 12 +6779858 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6779888 homeCount = 119 +6779888 waitCount = 60 +6779889 ripCount = 50 +6779889 locktype1 = 2 +6779890 locktype2 = 7 +6779890 locktype3 = 6 +6779891 goalCount = 1 +6779891 goalTotal = 41 +6779892 otherCount = 63 +~~~ +6779893 CURRENTGOAL IS [7] +~~~ +6779906 UP 12 +6779906 2048 255 +6783028 DOWN 12 +6783028 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6783069 homeCount = 119 +6783070 waitCount = 60 +6783070 ripCount = 50 +6783071 locktype1 = 2 +6783071 locktype2 = 7 +6783072 locktype3 = 6 +6783072 goalCount = 1 +6783073 goalTotal = 41 +6783073 otherCount = 63 +~~~ +6783074 CURRENTGOAL IS [7] +~~~ +6792931 UP 6 +6792931 32 255 +~~~ +~~~ +6793358 DOWN 6 +6793358 0 255 +~~~ +~~~ +6793374 0 254 +~~~ +~~~ +6793376 0 252 +~~~ +~~~ +6793377 0 248 +~~~ +~~~ +6793379 0 240 +~~~ +~~~ +6793381 0 224 +~~~ +~~~ +6793383 0 192 +~~~ +~~~ +6793385 0 128 +~~~ +~~~ +6793387 0 0 +~~~ +~~~ +6793388 0 512 +6793389 homeCount = 119 +6793390 waitCount = 60 +6793390 ripCount = 50 +6793391 locktype1 = 2 +6793391 locktype2 = 7 +6793413 locktype3 = 6 +6793413 goalCount = 1 +6793414 goalTotal = 41 +6793414 otherCount = 64 +~~~ +6797527 UP 10 +6797527 waslock = 0 +6797527 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6797551 512 16777728 +~~~ +6797585 DOWN 10 +6797585 0 16777728 +~~~ +~~~ +6797604 0 16779776 +~~~ +~~~ +6797606 0 16779264 +6797607 homeCount = 120 +6797608 waitCount = 60 +6797608 ripCount = 50 +6797609 locktype1 = 2 +6797609 locktype2 = 7 +6797610 locktype3 = 6 +6797610 goalCount = 1 +6797611 goalTotal = 41 +6797611 otherCount = 64 +~~~ +6797632 UP 10 +6797633 waslock = 0 +6797632 512 16779264 +~~~ +6797700 DOWN 10 +6797700 0 16779264 +6797701 0 2048 +~~~ +~~~ +~~~ +~~~ +6797728 homeCount = 120 +6797728 waitCount = 60 +6797729 ripCount = 50 +6797729 locktype1 = 2 +6797730 locktype2 = 7 +6797730 locktype3 = 6 +6797731 goalCount = 1 +6797731 goalTotal = 41 +6797732 otherCount = 64 +~~~ +6797848 UP 10 +6797848 waslock = 0 +6797848 512 2048 +~~~ +6804936 DOWN 10 +6804936 0 2048 +~~~ +~~~ +~~~ +~~~ +6804957 homeCount = 120 +6804958 waitCount = 60 +6804958 ripCount = 50 +6804959 locktype1 = 2 +6804959 locktype2 = 7 +6804960 locktype3 = 6 +6804960 goalCount = 1 +6804961 goalTotal = 41 +6804961 otherCount = 64 +~~~ +6804962 UP 10 +6804962 waslock = 0 +6804962 512 2048 +~~~ +6805032 DOWN 10 +6805032 0 2048 +~~~ +~~~ +~~~ +~~~ +6805061 homeCount = 120 +6805061 waitCount = 60 +6805062 ripCount = 50 +6805062 locktype1 = 2 +6805063 locktype2 = 7 +6805063 locktype3 = 6 +6805064 goalCount = 1 +6805064 goalTotal = 41 +6805065 otherCount = 64 +~~~ +6807081 UP 12 +6807081 2048 2048 +6807157 DOWN 12 +6807157 0 2048 +6807196 UP 12 +6807196 2048 2048 +6808281 DOWN 12 +6808281 0 2048 +6808302 UP 12 +6808302 2048 2048 +6811278 DOWN 12 +6811278 0 2048 +6811347 UP 12 +6811347 2048 2048 +6814081 CLICK1 +6814081 CLICK2 +~~~ +~~~ +~~~ +6814107 2048 67110912 +~~~ +6814257 2048 2048 +6819298 DOWN 12 +6819298 0 2048 +~~~ +~~~ +6819318 0 0 +~~~ +~~~ +6819319 0 1 +~~~ +~~~ +6819321 0 3 +~~~ +~~~ +6819323 0 7 +~~~ +~~~ +6819325 0 15 +~~~ +~~~ +6819327 0 31 +~~~ +~~~ +6819329 0 63 +~~~ +~~~ +6819330 0 127 +~~~ +~~~ +6819332 0 255 +6819333 homeCount = 120 +6819334 waitCount = 61 +6819334 ripCount = 50 +6819335 locktype1 = 2 +6819335 locktype2 = 7 +6819336 locktype3 = 6 +6819357 goalCount = 1 +6819357 goalTotal = 41 +6819358 otherCount = 64 +~~~ +6819359 CURRENTGOAL IS [7] +~~~ +6819367 UP 12 +6819367 2048 255 +6819410 DOWN 12 +6819410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6819444 homeCount = 120 +6819444 waitCount = 61 +6819445 ripCount = 50 +6819445 locktype1 = 2 +6819446 locktype2 = 7 +6819446 locktype3 = 6 +6819447 goalCount = 1 +6819447 goalTotal = 41 +6819448 otherCount = 64 +~~~ +6819449 CURRENTGOAL IS [7] +~~~ +6819507 UP 12 +6819507 2048 255 +6819537 DOWN 12 +6819537 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6819574 homeCount = 120 +6819575 waitCount = 61 +6819575 ripCount = 50 +6819576 locktype1 = 2 +6819576 locktype2 = 7 +6819577 locktype3 = 6 +6819577 goalCount = 1 +6819578 goalTotal = 41 +6819578 otherCount = 64 +~~~ +6819579 CURRENTGOAL IS [7] +~~~ +6828002 UP 4 +6828002 8 255 +~~~ +~~~ +6828645 DOWN 4 +6828645 0 255 +~~~ +~~~ +6828668 0 254 +~~~ +~~~ +6828670 0 252 +~~~ +~~~ +6828672 0 248 +~~~ +~~~ +6828673 0 240 +~~~ +~~~ +6828675 0 224 +~~~ +~~~ +6828677 0 192 +~~~ +~~~ +6828679 0 128 +~~~ +~~~ +6828681 0 0 +~~~ +~~~ +6828683 0 512 +6828684 homeCount = 120 +6828684 waitCount = 61 +6828685 ripCount = 50 +6828685 locktype1 = 2 +6828686 locktype2 = 7 +6828707 locktype3 = 6 +6828707 goalCount = 1 +6828708 goalTotal = 41 +6828708 otherCount = 65 +~~~ +6832786 UP 10 +6832787 waslock = 0 +6832786 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6832816 512 16777728 +~~~ +6832958 DOWN 10 +6832958 0 16777728 +6832966 0 512 +~~~ +~~~ +6832983 0 2560 +~~~ +~~~ +6832985 0 2048 +6832986 homeCount = 121 +6832986 waitCount = 61 +6832987 ripCount = 50 +6832987 locktype1 = 2 +6832987 locktype2 = 7 +6832988 locktype3 = 6 +6832988 goalCount = 1 +6832989 goalTotal = 41 +6832989 otherCount = 65 +~~~ +6833089 UP 10 +6833089 waslock = 0 +6833088 512 2048 +~~~ +6833877 DOWN 10 +6833877 0 2048 +~~~ +~~~ +~~~ +~~~ +6833903 homeCount = 121 +6833904 waitCount = 61 +6833904 ripCount = 50 +6833905 locktype1 = 2 +6833905 locktype2 = 7 +6833906 locktype3 = 6 +6833906 goalCount = 1 +6833906 goalTotal = 41 +6833907 otherCount = 65 +~~~ +6833908 UP 10 +6833908 waslock = 0 +6833907 512 2048 +6833930 DOWN 10 +6833930 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +6833955 homeCount = 121 +6833956 waitCount = 61 +6833956 ripCount = 50 +6833957 locktype1 = 2 +6833957 locktype2 = 7 +6833958 locktype3 = 6 +6833958 goalCount = 1 +6833959 goalTotal = 41 +6833959 otherCount = 65 +~~~ +6833962 UP 10 +6833962 waslock = 0 +6833962 512 2048 +~~~ +6837947 DOWN 10 +6837947 0 2048 +~~~ +~~~ +~~~ +~~~ +6837972 homeCount = 121 +6837973 waitCount = 61 +6837973 ripCount = 50 +6837974 locktype1 = 2 +6837974 locktype2 = 7 +6837974 locktype3 = 6 +6837975 goalCount = 1 +6837975 goalTotal = 41 +6837976 otherCount = 65 +~~~ +6837999 UP 10 +6838000 waslock = 0 +6837999 512 2048 +6838018 DOWN 10 +6838018 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +6838043 homeCount = 121 +6838044 waitCount = 61 +6838044 ripCount = 50 +6838045 locktype1 = 2 +6838045 locktype2 = 7 +6838046 locktype3 = 6 +6838046 goalCount = 1 +6838046 goalTotal = 41 +6838047 otherCount = 65 +~~~ +6839502 UP 12 +6839502 2048 2048 +6842503 CLICK1 +6842503 CLICK2 +~~~ +~~~ +~~~ +6842522 2048 67110912 +~~~ +6842672 2048 2048 +6851012 DOWN 12 +6851012 0 2048 +~~~ +~~~ +6851029 0 0 +~~~ +~~~ +6851031 0 1 +~~~ +~~~ +6851033 0 3 +~~~ +~~~ +6851035 0 7 +~~~ +~~~ +6851036 0 15 +~~~ +~~~ +6851038 0 31 +~~~ +~~~ +6851040 0 63 +~~~ +~~~ +6851042 0 127 +~~~ +~~~ +6851044 0 255 +6851045 homeCount = 121 +6851045 waitCount = 62 +6851046 ripCount = 50 +6851046 locktype1 = 2 +6851047 locktype2 = 7 +6851047 locktype3 = 6 +6851068 goalCount = 1 +6851069 goalTotal = 41 +6851069 otherCount = 65 +~~~ +6851070 CURRENTGOAL IS [7] +~~~ +6867037 UP 6 +6867037 32 255 +~~~ +~~~ +6867390 DOWN 6 +6867390 0 255 +~~~ +~~~ +6867410 0 254 +~~~ +~~~ +6867412 0 252 +~~~ +~~~ +6867414 0 248 +~~~ +~~~ +6867416 0 240 +~~~ +~~~ +6867417 0 224 +~~~ +~~~ +6867419 0 192 +~~~ +~~~ +6867421 0 128 +~~~ +~~~ +6867423 0 0 +~~~ +~~~ +6867425 0 512 +6867426 homeCount = 121 +6867426 waitCount = 62 +6867427 ripCount = 50 +6867427 locktype1 = 2 +6867428 locktype2 = 7 +6867449 locktype3 = 6 +6867449 goalCount = 1 +6867450 goalTotal = 41 +6867450 otherCount = 66 +~~~ +6871554 UP 10 +6871554 waslock = 0 +6871553 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6871589 512 16777728 +~~~ +6871739 512 512 +6871848 DOWN 10 +6871848 0 512 +~~~ +~~~ +6871874 0 2560 +~~~ +~~~ +6871876 0 2048 +6871877 homeCount = 122 +6871877 waitCount = 62 +6871878 ripCount = 50 +6871878 locktype1 = 2 +6871879 locktype2 = 7 +6871879 locktype3 = 6 +6871880 goalCount = 1 +6871880 goalTotal = 41 +6871881 otherCount = 66 +~~~ +6871905 UP 10 +6871905 waslock = 0 +6871905 512 2048 +~~~ +6877839 DOWN 10 +6877839 0 2048 +~~~ +~~~ +~~~ +~~~ +6877866 homeCount = 122 +6877867 waitCount = 62 +6877867 ripCount = 50 +6877868 locktype1 = 2 +6877868 locktype2 = 7 +6877869 locktype3 = 6 +6877869 goalCount = 1 +6877869 goalTotal = 41 +6877870 otherCount = 66 +~~~ +6879791 UP 12 +6879791 2048 2048 +6881416 DOWN 12 +6881416 0 2048 +6881430 UP 12 +6881430 2048 2048 +6881961 DOWN 12 +6881961 0 2048 +6881975 UP 12 +6881975 2048 2048 +6883663 DOWN 12 +6883663 0 2048 +6883693 UP 12 +6883693 2048 2048 +6886792 CLICK1 +6886792 CLICK2 +~~~ +~~~ +~~~ +6886815 2048 67110912 +~~~ +6886965 2048 2048 +6893793 DOWN 12 +6893793 0 2048 +~~~ +~~~ +6893814 0 0 +~~~ +~~~ +6893816 0 1 +~~~ +~~~ +6893817 0 3 +~~~ +~~~ +6893819 0 7 +~~~ +~~~ +6893821 0 15 +~~~ +~~~ +6893823 0 31 +~~~ +~~~ +6893825 0 63 +~~~ +~~~ +6893826 0 127 +~~~ +~~~ +6893828 0 255 +6893829 homeCount = 122 +6893830 waitCount = 63 +6893830 ripCount = 50 +6893831 locktype1 = 2 +6893831 locktype2 = 7 +6893832 locktype3 = 6 +6893853 goalCount = 1 +6893853 goalTotal = 41 +6893854 otherCount = 66 +~~~ +6893855 CURRENTGOAL IS [7] +~~~ +6905937 UP 10 +6905938 waslock = 0 +6905937 512 255 +~~~ +6905957 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6905965 512 254 +~~~ +~~~ +6905966 512 252 +~~~ +~~~ +6905968 512 248 +~~~ +~~~ +6905970 512 240 +~~~ +~~~ +6905972 512 224 +~~~ +~~~ +6905974 512 192 +~~~ +~~~ +6905975 512 128 +~~~ +~~~ +6905977 512 0 +~~~ +~~~ +~~~ +6906246 0 0 +6930957 LOCKEND +~~~ +~~~ +~~~ +6930979 0 512 +6934646 UP 10 +6934646 waslock = 0 +6934646 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6934672 512 16777728 +~~~ +6934799 DOWN 10 +6934799 0 16777728 +~~~ +~~~ +6934819 0 16779776 +~~~ +~~~ +6934821 0 16779264 +6934822 homeCount = 123 +6934822 waitCount = 63 +6934823 ripCount = 50 +6934823 locktype1 = 2 +6934824 locktype2 = 8 +6934824 locktype3 = 6 +6934825 goalCount = 1 +6934825 goalTotal = 41 +6934826 otherCount = 66 +~~~ +6934847 0 2048 +6934867 UP 10 +6934867 waslock = 0 +6934867 512 2048 +~~~ +6934893 DOWN 10 +6934893 0 2048 +~~~ +~~~ +~~~ +~~~ +6934910 homeCount = 123 +6934911 waitCount = 63 +6934911 ripCount = 50 +6934912 locktype1 = 2 +6934912 locktype2 = 8 +6934913 locktype3 = 6 +6934913 goalCount = 1 +6934914 goalTotal = 41 +6934914 otherCount = 66 +~~~ +6935112 UP 10 +6935112 waslock = 0 +6935112 512 2048 +~~~ +6935617 DOWN 10 +6935616 0 2048 +~~~ +~~~ +~~~ +~~~ +6935639 homeCount = 123 +6935640 waitCount = 63 +6935640 ripCount = 50 +6935641 locktype1 = 2 +6935641 locktype2 = 8 +6935642 locktype3 = 6 +6935642 goalCount = 1 +6935643 goalTotal = 41 +6935643 otherCount = 66 +~~~ +6935681 UP 10 +6935682 waslock = 0 +6935681 512 2048 +~~~ +6935714 DOWN 10 +6935714 0 2048 +~~~ +~~~ +~~~ +~~~ +6935740 homeCount = 123 +6935741 waitCount = 63 +6935741 ripCount = 50 +6935742 locktype1 = 2 +6935742 locktype2 = 8 +6935743 locktype3 = 6 +6935743 goalCount = 1 +6935744 goalTotal = 41 +6935744 otherCount = 66 +~~~ +6935801 UP 10 +6935801 waslock = 0 +6935801 512 2048 +~~~ +6935843 DOWN 10 +6935843 0 2048 +~~~ +~~~ +~~~ +~~~ +6935871 homeCount = 123 +6935872 waitCount = 63 +6935872 ripCount = 50 +6935873 locktype1 = 2 +6935873 locktype2 = 8 +6935874 locktype3 = 6 +6935874 goalCount = 1 +6935875 goalTotal = 41 +6935875 otherCount = 66 +~~~ +6935918 UP 10 +6935918 waslock = 0 +6935918 512 2048 +~~~ +6935945 DOWN 10 +6935945 0 2048 +~~~ +~~~ +~~~ +~~~ +6935960 homeCount = 123 +6935960 waitCount = 63 +6935961 ripCount = 50 +6935961 locktype1 = 2 +6935962 locktype2 = 8 +6935962 locktype3 = 6 +6935963 goalCount = 1 +6935963 goalTotal = 41 +6935964 otherCount = 66 +~~~ +6936031 UP 10 +6936031 waslock = 0 +6936031 512 2048 +~~~ +6941357 DOWN 10 +6941357 0 2048 +6941366 UP 10 +6941366 waslock = 0 +6941366 512 2048 +~~~ +~~~ +~~~ +~~~ +6941394 homeCount = 123 +6941395 waitCount = 63 +6941395 ripCount = 50 +6941396 locktype1 = 2 +6941396 locktype2 = 8 +6941397 locktype3 = 6 +6941397 goalCount = 1 +6941398 goalTotal = 41 +6941398 otherCount = 66 +~~~ +~~~ +6941466 DOWN 10 +6941466 0 2048 +~~~ +~~~ +~~~ +~~~ +6941491 homeCount = 123 +6941492 waitCount = 63 +6941492 ripCount = 50 +6941493 locktype1 = 2 +6941493 locktype2 = 8 +6941493 locktype3 = 6 +6941494 goalCount = 1 +6941494 goalTotal = 41 +6941495 otherCount = 66 +~~~ +6941496 UP 10 +6941496 waslock = 0 +6941495 512 2048 +~~~ +6941566 DOWN 10 +6941566 0 2048 +~~~ +~~~ +~~~ +~~~ +6941591 homeCount = 123 +6941592 waitCount = 63 +6941592 ripCount = 50 +6941593 locktype1 = 2 +6941593 locktype2 = 8 +6941594 locktype3 = 6 +6941594 goalCount = 1 +6941595 goalTotal = 41 +6941595 otherCount = 66 +~~~ +6943531 UP 12 +6943531 2048 2048 +6945000 DOWN 12 +6945000 0 2048 +6945026 UP 12 +6945026 2048 2048 +6945349 DOWN 12 +6945349 0 2048 +6945363 UP 12 +6945363 2048 2048 +6945387 DOWN 12 +6945387 0 2048 +6945442 UP 12 +6945442 2048 2048 +6947532 CLICK1 +6947532 CLICK2 +~~~ +~~~ +~~~ +6947560 2048 67110912 +~~~ +6947710 2048 2048 +6953981 DOWN 12 +6953981 0 2048 +6953994 UP 12 +6953994 2048 2048 +~~~ +~~~ +6953999 2048 0 +~~~ +~~~ +6954001 2048 1 +~~~ +~~~ +6954002 2048 3 +~~~ +~~~ +6954004 2048 7 +~~~ +~~~ +6954006 2048 15 +~~~ +~~~ +6954008 2048 31 +~~~ +~~~ +6954010 2048 63 +~~~ +~~~ +6954012 2048 127 +~~~ +~~~ +6954013 2048 255 +6954014 homeCount = 123 +6954015 waitCount = 64 +6954015 ripCount = 50 +6954016 locktype1 = 2 +6954037 locktype2 = 8 +6954037 locktype3 = 6 +6954038 goalCount = 1 +6954038 goalTotal = 41 +6954039 otherCount = 66 +~~~ +6954040 CURRENTGOAL IS [7] +~~~ +6954190 DOWN 12 +6954190 0 255 +~~~ +~~~ +~~~ +~~~ +6954214 UP 12 +6954214 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6954227 homeCount = 123 +6954228 waitCount = 64 +6954228 ripCount = 50 +6954229 locktype1 = 2 +6954229 locktype2 = 8 +6954230 locktype3 = 6 +6954230 goalCount = 1 +6954231 goalTotal = 41 +6954231 otherCount = 66 +~~~ +6954232 CURRENTGOAL IS [7] +~~~ +6954328 DOWN 12 +6954328 0 255 +6954335 UP 12 +6954335 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6954367 homeCount = 123 +6954368 waitCount = 64 +6954368 ripCount = 50 +6954369 locktype1 = 2 +6954369 locktype2 = 8 +6954370 locktype3 = 6 +6954370 goalCount = 1 +6954371 goalTotal = 41 +6954371 otherCount = 66 +~~~ +6954372 CURRENTGOAL IS [7] +~~~ +6956456 DOWN 12 +6956456 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6956490 homeCount = 123 +6956491 waitCount = 64 +6956491 ripCount = 50 +6956492 locktype1 = 2 +6956492 locktype2 = 8 +6956493 locktype3 = 6 +6956493 goalCount = 1 +6956494 goalTotal = 41 +6956494 otherCount = 66 +~~~ +6956495 CURRENTGOAL IS [7] +~~~ +6961679 UP 5 +6961679 16 255 +~~~ +~~~ +6961995 DOWN 5 +6961995 0 255 +~~~ +~~~ +6962013 0 254 +~~~ +~~~ +6962015 0 252 +~~~ +~~~ +6962017 0 248 +~~~ +~~~ +6962019 0 240 +~~~ +~~~ +6962021 0 224 +~~~ +~~~ +6962022 0 192 +~~~ +~~~ +6962024 0 128 +~~~ +~~~ +6962026 0 0 +~~~ +~~~ +6962028 0 512 +6962029 homeCount = 123 +6962030 waitCount = 64 +6962030 ripCount = 50 +6962030 locktype1 = 2 +6962031 locktype2 = 8 +6962052 locktype3 = 6 +6962053 goalCount = 1 +6962053 goalTotal = 41 +6962054 otherCount = 67 +~~~ +6962054 16 512 +6962809 DOWN 5 +6962809 0 512 +6967089 UP 10 +6967089 waslock = 0 +6967089 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6967119 512 16777728 +~~~ +6967269 512 512 +6973816 DOWN 10 +6973816 0 512 +~~~ +~~~ +6973835 0 2560 +~~~ +~~~ +6973836 0 2048 +6973837 homeCount = 124 +6973838 waitCount = 64 +6973838 ripCount = 50 +6973839 locktype1 = 2 +6973839 locktype2 = 8 +6973840 locktype3 = 6 +6973840 goalCount = 1 +6973841 goalTotal = 41 +6973841 otherCount = 67 +~~~ +6973842 UP 10 +6973863 waslock = 0 +6973842 512 2048 +~~~ +6973904 DOWN 10 +6973904 0 2048 +~~~ +~~~ +~~~ +~~~ +6973929 homeCount = 124 +6973929 waitCount = 64 +6973930 ripCount = 50 +6973930 locktype1 = 2 +6973931 locktype2 = 8 +6973931 locktype3 = 6 +6973932 goalCount = 1 +6973932 goalTotal = 41 +6973933 otherCount = 67 +~~~ +6975942 UP 12 +6975942 2048 2048 +6978569 DOWN 12 +6978569 0 2048 +6978588 UP 12 +6978588 2048 2048 +6980629 DOWN 12 +6980629 0 2048 +6980662 UP 12 +6980662 2048 2048 +6981442 CLICK1 +6981442 CLICK2 +~~~ +~~~ +~~~ +6981468 2048 67110912 +~~~ +6981618 2048 2048 +6987168 DOWN 12 +6987168 0 2048 +~~~ +~~~ +6987185 0 0 +~~~ +~~~ +6987187 0 1 +~~~ +~~~ +6987188 0 3 +~~~ +~~~ +6987190 0 7 +~~~ +~~~ +6987192 0 15 +~~~ +~~~ +6987194 0 31 +~~~ +~~~ +6987196 0 63 +~~~ +~~~ +6987197 0 127 +~~~ +~~~ +6987199 0 255 +6987200 homeCount = 124 +6987201 waitCount = 65 +6987201 ripCount = 50 +6987202 locktype1 = 2 +6987202 locktype2 = 8 +6987203 locktype3 = 6 +6987224 goalCount = 1 +6987224 goalTotal = 41 +6987225 otherCount = 67 +~~~ +6987226 CURRENTGOAL IS [7] +~~~ +6995646 UP 5 +6995646 16 255 +~~~ +~~~ +6996817 DOWN 5 +6996817 0 255 +~~~ +~~~ +6996836 0 254 +~~~ +~~~ +6996838 0 252 +~~~ +~~~ +6996840 0 248 +~~~ +~~~ +6996841 0 240 +~~~ +~~~ +6996843 0 224 +~~~ +~~~ +6996845 0 192 +~~~ +~~~ +6996847 0 128 +~~~ +~~~ +6996849 0 0 +~~~ +~~~ +6996851 0 512 +6996852 homeCount = 124 +6996852 waitCount = 65 +6996853 ripCount = 50 +6996853 locktype1 = 2 +6996854 locktype2 = 8 +6996875 locktype3 = 6 +6996875 goalCount = 1 +6996876 goalTotal = 41 +6996876 otherCount = 68 +~~~ +6996877 16 512 +6996887 DOWN 5 +6996887 0 512 +6997103 16 512 +6997395 DOWN 5 +6997395 0 512 +6997437 16 512 +6997638 DOWN 5 +6997638 0 512 +7003045 UP 10 +7003046 waslock = 0 +7003045 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7003072 512 16777728 +~~~ +7003222 512 512 +7003296 DOWN 10 +7003296 0 512 +~~~ +~~~ +7003317 0 2560 +~~~ +~~~ +7003319 0 2048 +7003320 homeCount = 125 +7003320 waitCount = 65 +7003321 ripCount = 50 +7003321 locktype1 = 2 +7003322 locktype2 = 8 +7003322 locktype3 = 6 +7003323 goalCount = 1 +7003323 goalTotal = 41 +7003324 otherCount = 68 +~~~ +7003445 UP 10 +7003445 waslock = 0 +7003445 512 2048 +~~~ +7003799 DOWN 10 +7003799 0 2048 +~~~ +~~~ +~~~ +~~~ +7003820 homeCount = 125 +7003821 waitCount = 65 +7003821 ripCount = 50 +7003822 locktype1 = 2 +7003822 locktype2 = 8 +7003823 locktype3 = 6 +7003823 goalCount = 1 +7003824 goalTotal = 41 +7003824 otherCount = 68 +~~~ +7003825 UP 10 +7003825 waslock = 0 +7003825 512 2048 +7003847 DOWN 10 +7003847 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +7003870 homeCount = 125 +7003871 waitCount = 65 +7003871 ripCount = 50 +7003872 locktype1 = 2 +7003872 locktype2 = 8 +7003873 locktype3 = 6 +7003873 goalCount = 1 +7003874 goalTotal = 41 +7003874 otherCount = 68 +~~~ +7003892 UP 10 +7003893 waslock = 0 +7003892 512 2048 +~~~ +7008206 DOWN 10 +7008206 0 2048 +~~~ +~~~ +~~~ +~~~ +7008230 homeCount = 125 +7008230 waitCount = 65 +7008231 ripCount = 50 +7008231 locktype1 = 2 +7008232 locktype2 = 8 +7008232 locktype3 = 6 +7008233 goalCount = 1 +7008233 goalTotal = 41 +7008234 otherCount = 68 +~~~ +7008234 UP 10 +7008234 waslock = 0 +7008234 512 2048 +~~~ +7008328 DOWN 10 +7008328 0 2048 +~~~ +~~~ +~~~ +~~~ +7008353 homeCount = 125 +7008353 waitCount = 65 +7008354 ripCount = 50 +7008354 locktype1 = 2 +7008355 locktype2 = 8 +7008355 locktype3 = 6 +7008355 goalCount = 1 +7008356 goalTotal = 41 +7008356 otherCount = 68 +~~~ +7008384 UP 10 +7008385 waslock = 0 +7008384 512 2048 +~~~ +7008410 DOWN 10 +7008410 0 2048 +~~~ +~~~ +~~~ +~~~ +7008432 homeCount = 125 +7008433 waitCount = 65 +7008433 ripCount = 50 +7008434 locktype1 = 2 +7008434 locktype2 = 8 +7008435 locktype3 = 6 +7008435 goalCount = 1 +7008436 goalTotal = 41 +7008436 otherCount = 68 +~~~ +7010275 UP 12 +7010275 2048 2048 +7014339 DOWN 12 +7014339 0 2048 +7014351 UP 12 +7014351 2048 2048 +7015775 CLICK1 +7015775 CLICK2 +~~~ +~~~ +~~~ +7015800 2048 67110912 +~~~ +7015950 2048 2048 +7021725 DOWN 12 +7021725 0 2048 +~~~ +~~~ +7021748 0 0 +~~~ +~~~ +7021750 0 1 +~~~ +~~~ +7021751 0 3 +~~~ +~~~ +7021753 0 7 +~~~ +~~~ +7021755 0 15 +~~~ +~~~ +7021757 0 31 +~~~ +~~~ +7021759 0 63 +~~~ +~~~ +7021760 0 127 +~~~ +~~~ +7021762 0 255 +7021763 homeCount = 125 +7021764 waitCount = 66 +7021764 ripCount = 50 +7021765 locktype1 = 2 +7021765 locktype2 = 8 +7021766 locktype3 = 6 +7021787 goalCount = 1 +7021787 goalTotal = 41 +7021788 otherCount = 68 +~~~ +7021789 CURRENTGOAL IS [7] +~~~ +7029936 UP 11 +7029936 LOCKOUT 2 +7029935 1024 255 +~~~ +7029959 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7029967 1024 254 +~~~ +~~~ +7029969 1024 252 +~~~ +~~~ +7029970 1024 248 +~~~ +~~~ +7029972 1024 240 +~~~ +~~~ +7029974 1024 224 +~~~ +~~~ +7029976 1024 192 +~~~ +~~~ +7029978 1024 128 +~~~ +~~~ +7029980 1024 0 +~~~ +~~~ +7030046 DOWN 11 +7030046 0 0 +7038812 UP 1 +7038812 1 0 +7040163 DOWN 1 +7040163 0 0 +7044450 512 0 +7045274 0 0 +7045315 512 0 +7045409 0 0 +7045452 512 0 +7045487 0 0 +7045609 512 0 +7048059 0 0 +7048119 512 0 +7048160 0 0 +7054959 LOCKEND +~~~ +~~~ +~~~ +7054982 0 512 +7059549 UP 10 +7059549 waslock = 0 +7059549 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7059577 512 16777728 +~~~ +7059727 512 512 +7060080 DOWN 10 +7060080 0 512 +~~~ +~~~ +7060101 0 1536 +~~~ +~~~ +7060103 0 1024 +7060104 homeCount = 126 +7060104 waitCount = 66 +7060105 ripCount = 50 +7060105 locktype1 = 2 +7060106 locktype2 = 9 +7060106 locktype3 = 6 +7060107 goalCount = 1 +7060107 goalTotal = 41 +7060108 otherCount = 68 +~~~ +7060126 UP 10 +7060126 waslock = 0 +7060126 512 1024 +~~~ +7060201 DOWN 10 +7060201 0 1024 +~~~ +~~~ +~~~ +~~~ +7060230 homeCount = 126 +7060231 waitCount = 66 +7060231 ripCount = 50 +7060232 locktype1 = 2 +7060232 locktype2 = 9 +7060233 locktype3 = 6 +7060233 goalCount = 1 +7060234 goalTotal = 41 +7060234 otherCount = 68 +~~~ +7060239 UP 10 +7060240 waslock = 0 +7060239 512 1024 +~~~ +7065567 DOWN 10 +7065567 0 1024 +7065581 UP 10 +7065581 waslock = 0 +7065581 512 1024 +~~~ +~~~ +~~~ +~~~ +7065605 homeCount = 126 +7065605 waitCount = 66 +7065606 ripCount = 50 +7065606 locktype1 = 2 +7065607 locktype2 = 9 +7065607 locktype3 = 6 +7065608 goalCount = 1 +7065608 goalTotal = 41 +7065609 otherCount = 68 +~~~ +~~~ +7065644 DOWN 10 +7065644 0 1024 +~~~ +~~~ +~~~ +~~~ +7065673 homeCount = 126 +7065673 waitCount = 66 +7065674 ripCount = 50 +7065674 locktype1 = 2 +7065675 locktype2 = 9 +7065675 locktype3 = 6 +7065676 goalCount = 1 +7065676 goalTotal = 41 +7065677 otherCount = 68 +~~~ +7067367 UP 11 +7067367 1024 1024 +7069514 DOWN 11 +7069514 0 1024 +7069517 UP 11 +7069517 1024 1024 +7072868 BEEP1 +7072868 BEEP2 +~~~ +~~~ +~~~ +7072891 1024 33555456 +~~~ +7073041 1024 1024 +7079165 DOWN 11 +7079165 0 1024 +7079170 UP 11 +7079170 1024 1024 +~~~ +~~~ +7079193 1024 0 +~~~ +~~~ +7079195 1024 1 +~~~ +~~~ +7079197 1024 3 +~~~ +~~~ +7079199 1024 7 +~~~ +~~~ +7079200 1024 15 +~~~ +~~~ +7079202 1024 31 +~~~ +~~~ +7079204 1024 63 +~~~ +~~~ +7079206 1024 127 +~~~ +~~~ +7079208 1024 255 +7079209 homeCount = 126 +7079209 waitCount = 66 +7079210 ripCount = 51 +7079210 locktype1 = 2 +7079231 locktype2 = 9 +7079231 locktype3 = 6 +7079232 goalCount = 1 +7079232 goalTotal = 41 +7079233 otherCount = 68 +~~~ +7079234 CURRENTGOAL IS [7] +~~~ +7079287 DOWN 11 +7079287 0 255 +7079298 UP 11 +7079298 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7079327 homeCount = 126 +7079328 waitCount = 66 +7079328 ripCount = 51 +7079329 locktype1 = 2 +7079329 locktype2 = 9 +7079330 locktype3 = 6 +7079330 goalCount = 1 +7079331 goalTotal = 41 +7079331 otherCount = 68 +~~~ +7079332 CURRENTGOAL IS [7] +~~~ +7082284 DOWN 11 +7082284 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7082317 homeCount = 126 +7082318 waitCount = 66 +7082318 ripCount = 51 +7082319 locktype1 = 2 +7082319 locktype2 = 9 +7082320 locktype3 = 6 +7082320 goalCount = 1 +7082321 goalTotal = 41 +7082321 otherCount = 68 +~~~ +7082322 CURRENTGOAL IS [7] +~~~ +7085804 UP 7 +7085804 64 255 +~~~ +~~~ +7085824 outer reward +~~~ +7085824 64 4194559 +~~~ +~~~ +7085981 DOWN 7 +7085981 0 4194559 +~~~ +~~~ +7086003 0 4194558 +~~~ +~~~ +7086005 0 4194556 +~~~ +~~~ +7086007 0 4194552 +~~~ +~~~ +7086008 0 4194544 +~~~ +~~~ +7086010 0 4194528 +~~~ +~~~ +7086012 0 4194496 +~~~ +~~~ +7086014 0 4194432 +~~~ +~~~ +7086016 0 4194304 +~~~ +~~~ +7086018 0 4194816 +7086019 homeCount = 126 +7086019 waitCount = 66 +7086020 ripCount = 51 +7086041 locktype1 = 2 +7086041 locktype2 = 9 +7086042 locktype3 = 6 +7086042 goalCount = 2 +7086043 goalTotal = 42 +7086043 otherCount = 68 +~~~ +7086044 64 4194816 +7086274 64 512 +7094087 DOWN 7 +7094087 0 512 +7099767 UP 10 +7099767 waslock = 0 +7099767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7099800 512 16777728 +~~~ +7099950 512 512 +7104805 DOWN 10 +7104805 0 512 +~~~ +~~~ +7104824 0 2560 +~~~ +~~~ +7104826 0 2048 +7104827 homeCount = 127 +7104828 waitCount = 66 +7104828 ripCount = 51 +7104829 locktype1 = 2 +7104829 locktype2 = 9 +7104830 locktype3 = 6 +7104830 goalCount = 2 +7104831 goalTotal = 42 +7104831 otherCount = 68 +~~~ +7106451 UP 12 +7106451 2048 2048 +7108789 DOWN 12 +7108789 0 2048 +7108810 UP 12 +7108810 2048 2048 +7108872 DOWN 12 +7108872 0 2048 +7108884 UP 12 +7108884 2048 2048 +7111310 DOWN 12 +7111310 0 2048 +7111315 UP 12 +7111315 2048 2048 +7111952 CLICK1 +7111952 CLICK2 +~~~ +~~~ +~~~ +7111980 2048 67110912 +~~~ +7112130 2048 2048 +7119398 DOWN 12 +7119398 0 2048 +~~~ +~~~ +7119425 0 0 +~~~ +~~~ +7119426 0 1 +~~~ +~~~ +7119428 0 3 +~~~ +~~~ +7119430 0 7 +~~~ +~~~ +7119432 0 15 +~~~ +~~~ +7119434 0 31 +~~~ +~~~ +7119436 0 63 +~~~ +~~~ +7119437 0 127 +~~~ +7119439 UP 12 +7119439 2048 127 +~~~ +7119440 homeCount = 127 +7119441 waitCount = 67 +7119442 ripCount = 51 +7119442 locktype1 = 2 +7119463 locktype2 = 9 +7119464 locktype3 = 6 +7119464 goalCount = 2 +7119465 goalTotal = 42 +7119465 otherCount = 68 +~~~ +7119466 CURRENTGOAL IS [7] +~~~ +7119467 2048 255 +7121503 DOWN 12 +7121503 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7121544 homeCount = 127 +7121544 waitCount = 67 +7121545 ripCount = 51 +7121545 locktype1 = 2 +7121546 locktype2 = 9 +7121546 locktype3 = 6 +7121547 goalCount = 2 +7121547 goalTotal = 42 +7121548 otherCount = 68 +~~~ +7121549 CURRENTGOAL IS [7] +~~~ +7121574 UP 12 +7121574 2048 255 +7121609 DOWN 12 +7121609 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7121643 homeCount = 127 +7121643 waitCount = 67 +7121644 ripCount = 51 +7121644 locktype1 = 2 +7121645 locktype2 = 9 +7121645 locktype3 = 6 +7121646 goalCount = 2 +7121646 goalTotal = 42 +7121647 otherCount = 68 +~~~ +7121648 CURRENTGOAL IS [7] +~~~ +7126447 UP 7 +7126447 64 255 +~~~ +~~~ +7126469 outer reward +~~~ +7126469 64 4194559 +~~~ +~~~ +7126710 DOWN 7 +7126710 0 4194559 +~~~ +~~~ +7126737 0 4194558 +~~~ +~~~ +7126739 0 4194556 +~~~ +~~~ +7126740 0 4194552 +~~~ +~~~ +7126742 0 4194544 +~~~ +7126744 64 4194544 +~~~ +~~~ +7126745 64 4194528 +~~~ +~~~ +7126747 64 4194496 +~~~ +7126748 64 4194432 +~~~ +~~~ +7126750 64 4194304 +~~~ +~~~ +7126751 64 4194816 +7126752 homeCount = 127 +7126774 waitCount = 67 +7126774 ripCount = 51 +7126775 locktype1 = 2 +7126775 locktype2 = 9 +7126775 locktype3 = 6 +7126776 goalCount = 3 +7126776 goalTotal = 43 +7126777 otherCount = 68 +~~~ +7126919 64 512 +7127253 DOWN 7 +7127253 0 512 +7127273 64 512 +7127534 DOWN 7 +7127534 0 512 +7127543 64 512 +7127670 DOWN 7 +7127670 0 512 +7127680 64 512 +7136565 DOWN 7 +7136565 0 512 +7136647 64 512 +7136665 DOWN 7 +7136665 0 512 +7140698 UP 10 +7140698 waslock = 0 +7140698 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7140726 512 16777728 +~~~ +7140876 512 512 +7147055 DOWN 10 +7147055 0 512 +~~~ +~~~ +7147078 0 1536 +~~~ +~~~ +7147080 0 1024 +7147081 homeCount = 128 +7147081 waitCount = 67 +7147082 ripCount = 51 +7147082 locktype1 = 2 +7147083 locktype2 = 9 +7147083 locktype3 = 6 +7147084 goalCount = 3 +7147084 goalTotal = 43 +7147085 otherCount = 68 +~~~ +7148849 UP 11 +7148849 1024 1024 +7151745 DOWN 11 +7151745 0 1024 +7151771 UP 11 +7151771 1024 1024 +7151783 DOWN 11 +7151783 0 1024 +7151814 UP 11 +7151814 1024 1024 +7151849 BEEP1 +7151849 BEEP2 +~~~ +~~~ +~~~ +7151871 1024 33555456 +~~~ +7152020 1024 1024 +7158055 DOWN 11 +7158055 0 1024 +7158073 UP 11 +7158073 1024 1024 +~~~ +~~~ +7158091 1024 0 +~~~ +~~~ +7158093 1024 1 +~~~ +~~~ +7158095 1024 3 +~~~ +~~~ +7158097 1024 7 +~~~ +~~~ +7158098 1024 15 +~~~ +~~~ +7158100 1024 31 +~~~ +~~~ +7158102 1024 63 +~~~ +~~~ +7158104 1024 127 +~~~ +~~~ +7158106 1024 255 +7158107 homeCount = 128 +7158107 waitCount = 67 +7158108 ripCount = 52 +7158108 locktype1 = 2 +7158130 locktype2 = 9 +7158130 locktype3 = 6 +7158130 goalCount = 3 +7158131 goalTotal = 43 +7158131 otherCount = 68 +~~~ +7158132 CURRENTGOAL IS [7] +~~~ +7160244 DOWN 11 +7160244 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7160279 homeCount = 128 +7160280 waitCount = 67 +7160280 ripCount = 52 +7160281 locktype1 = 2 +7160281 locktype2 = 9 +7160282 locktype3 = 6 +7160282 goalCount = 3 +7160283 goalTotal = 43 +7160283 otherCount = 68 +~~~ +7160284 CURRENTGOAL IS [7] +~~~ +7160372 UP 11 +7160371 1024 255 +7160380 DOWN 11 +7160380 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7160417 homeCount = 128 +7160418 waitCount = 67 +7160418 ripCount = 52 +7160419 locktype1 = 2 +7160419 locktype2 = 9 +7160420 locktype3 = 6 +7160420 goalCount = 3 +7160421 goalTotal = 43 +7160421 otherCount = 68 +~~~ +7160422 CURRENTGOAL IS [7] +~~~ +7163197 UP 7 +7163197 64 255 +~~~ +~~~ +7163218 outer reward +~~~ +7163218 64 4194559 +~~~ +~~~ +7163445 DOWN 7 +7163445 0 4194559 +~~~ +~~~ +7163466 0 4194558 +~~~ +~~~ +7163468 0 4194556 +~~~ +~~~ +7163470 0 4194552 +~~~ +~~~ +7163472 0 4194544 +~~~ +~~~ +7163473 0 4194528 +~~~ +~~~ +7163475 0 4194496 +~~~ +~~~ +7163477 0 4194432 +~~~ +~~~ +7163479 0 4194304 +~~~ +~~~ +7163481 0 4194816 +7163482 homeCount = 128 +7163482 waitCount = 67 +7163483 ripCount = 52 +7163503 locktype1 = 2 +7163504 locktype2 = 9 +7163504 locktype3 = 6 +7163505 goalCount = 4 +7163505 goalTotal = 44 +7163506 otherCount = 68 +~~~ +7163506 64 4194816 +7163668 64 512 +7173399 DOWN 7 +7173399 0 512 +7173483 64 512 +7173516 DOWN 7 +7173516 0 512 +7177879 UP 10 +7177879 waslock = 0 +7177879 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7177905 512 16777728 +~~~ +7178055 512 512 +7185421 DOWN 10 +7185421 0 512 +~~~ +~~~ +7185440 0 1536 +~~~ +~~~ +7185441 0 1024 +7185442 homeCount = 129 +7185443 waitCount = 67 +7185443 ripCount = 52 +7185444 locktype1 = 2 +7185444 locktype2 = 9 +7185445 locktype3 = 6 +7185445 goalCount = 4 +7185446 goalTotal = 44 +7185446 otherCount = 68 +~~~ +7187609 UP 11 +7187609 1024 1024 +7189528 DOWN 11 +7189527 0 1024 +7189561 UP 11 +7189561 1024 1024 +7190448 DOWN 11 +7190448 0 1024 +7190455 UP 11 +7190455 1024 1024 +7190610 BEEP1 +7190610 BEEP2 +~~~ +~~~ +~~~ +7190633 1024 33555456 +~~~ +7190783 1024 1024 +7196165 DOWN 11 +7196165 0 1024 +~~~ +~~~ +7196190 0 0 +~~~ +~~~ +7196192 0 1 +~~~ +~~~ +7196194 0 3 +~~~ +~~~ +7196196 0 7 +~~~ +~~~ +7196198 0 15 +~~~ +~~~ +7196199 0 31 +~~~ +~~~ +7196201 0 63 +~~~ +~~~ +7196203 0 127 +~~~ +~~~ +7196205 0 255 +7196206 homeCount = 129 +7196206 waitCount = 67 +7196207 ripCount = 53 +7196207 locktype1 = 2 +7196208 locktype2 = 9 +7196208 locktype3 = 6 +7196229 goalCount = 4 +7196230 goalTotal = 44 +7196230 otherCount = 68 +~~~ +7196231 CURRENTGOAL IS [7] +~~~ +7196249 UP 11 +7196249 1024 255 +7196252 DOWN 11 +7196252 0 255 +7196254 UP 11 +7196254 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7196289 homeCount = 129 +7196290 waitCount = 67 +7196290 ripCount = 53 +7196291 locktype1 = 2 +7196291 locktype2 = 9 +7196291 locktype3 = 6 +7196292 goalCount = 4 +7196292 goalTotal = 44 +7196293 otherCount = 68 +~~~ +7196294 CURRENTGOAL IS [7] +~~~ +7196297 DOWN 11 +7196297 0 255 +7196324 UP 11 +7196324 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7196352 homeCount = 129 +7196352 waitCount = 67 +7196353 ripCount = 53 +7196353 locktype1 = 2 +7196354 locktype2 = 9 +7196354 locktype3 = 6 +7196355 goalCount = 4 +7196355 goalTotal = 44 +7196356 otherCount = 68 +~~~ +7196357 CURRENTGOAL IS [7] +~~~ +7198389 DOWN 11 +7198389 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198425 homeCount = 129 +7198426 waitCount = 67 +7198426 ripCount = 53 +7198427 locktype1 = 2 +7198428 locktype2 = 9 +7198428 locktype3 = 6 +7198428 goalCount = 4 +7198429 goalTotal = 44 +7198429 otherCount = 68 +~~~ +7198430 CURRENTGOAL IS [7] +~~~ +7198437 UP 11 +7198437 1024 255 +7198523 DOWN 11 +7198523 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198559 homeCount = 129 +7198560 waitCount = 67 +7198560 ripCount = 53 +7198561 locktype1 = 2 +7198561 locktype2 = 9 +7198562 locktype3 = 6 +7198562 goalCount = 4 +7198563 goalTotal = 44 +7198563 otherCount = 68 +~~~ +7198564 CURRENTGOAL IS [7] +~~~ +7198624 UP 11 +7198624 1024 255 +7198644 DOWN 11 +7198644 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198681 homeCount = 129 +7198682 waitCount = 67 +7198682 ripCount = 53 +7198683 locktype1 = 2 +7198683 locktype2 = 9 +7198684 locktype3 = 6 +7198684 goalCount = 4 +7198685 goalTotal = 44 +7198685 otherCount = 68 +~~~ +7198686 CURRENTGOAL IS [7] +~~~ +7198805 UP 11 +7198805 1024 255 +7198849 DOWN 11 +7198849 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198882 homeCount = 129 +7198883 waitCount = 67 +7198883 ripCount = 53 +7198884 locktype1 = 2 +7198884 locktype2 = 9 +7198885 locktype3 = 6 +7198885 goalCount = 4 +7198885 goalTotal = 44 +7198886 otherCount = 68 +~~~ +7198887 CURRENTGOAL IS [7] +~~~ +7201380 UP 7 +7201380 64 255 +~~~ +~~~ +7201408 outer reward +~~~ +7201408 64 4194559 +~~~ +~~~ +7201633 DOWN 7 +7201633 0 4194559 +~~~ +~~~ +7201656 0 4194558 +~~~ +~~~ +7201657 0 4194556 +~~~ +~~~ +7201659 0 4194552 +~~~ +~~~ +7201661 0 4194544 +~~~ +~~~ +7201663 0 4194528 +~~~ +~~~ +7201665 0 4194496 +~~~ +~~~ +7201666 0 4194432 +~~~ +~~~ +7201668 0 4194304 +~~~ +~~~ +7201670 0 4194816 +7201671 homeCount = 129 +7201672 waitCount = 67 +7201672 ripCount = 53 +7201693 locktype1 = 2 +7201694 locktype2 = 9 +7201694 locktype3 = 6 +7201695 goalCount = 5 +7201695 goalTotal = 45 +7201696 otherCount = 68 +~~~ +7201696 64 4194816 +7201858 64 512 +7212005 DOWN 7 +7212005 0 512 +7212062 64 512 +7212101 DOWN 7 +7212101 0 512 +7216582 UP 10 +7216582 waslock = 0 +7216582 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7216613 512 16777728 +~~~ +7216763 512 512 +7216790 DOWN 10 +7216790 0 512 +~~~ +~~~ +7216807 0 2560 +~~~ +~~~ +7216809 0 2048 +7216810 homeCount = 130 +7216810 waitCount = 67 +7216811 ripCount = 53 +7216811 locktype1 = 2 +7216812 locktype2 = 9 +7216812 locktype3 = 6 +7216813 goalCount = 5 +7216813 goalTotal = 45 +7216813 otherCount = 68 +~~~ +7216851 UP 10 +7216851 waslock = 0 +7216851 512 2048 +~~~ +7222018 DOWN 10 +7222018 0 2048 +7222030 UP 10 +7222030 waslock = 0 +7222030 512 2048 +~~~ +~~~ +~~~ +~~~ +7222052 homeCount = 130 +7222052 waitCount = 67 +7222053 ripCount = 53 +7222053 locktype1 = 2 +7222054 locktype2 = 9 +7222054 locktype3 = 6 +7222054 goalCount = 5 +7222055 goalTotal = 45 +7222055 otherCount = 68 +~~~ +~~~ +7222139 DOWN 10 +7222139 0 2048 +~~~ +~~~ +~~~ +~~~ +7222164 homeCount = 130 +7222165 waitCount = 67 +7222165 ripCount = 53 +7222166 locktype1 = 2 +7222166 locktype2 = 9 +7222167 locktype3 = 6 +7222167 goalCount = 5 +7222167 goalTotal = 45 +7222168 otherCount = 68 +~~~ +7224209 UP 12 +7224208 2048 2048 +7226515 DOWN 12 +7226515 0 2048 +7226537 UP 12 +7226537 2048 2048 +7226794 DOWN 12 +7226794 0 2048 +7226874 UP 12 +7226874 2048 2048 +7227064 DOWN 12 +7227064 0 2048 +7227084 UP 12 +7227084 2048 2048 +7227343 DOWN 12 +7227343 0 2048 +7227375 UP 12 +7227375 2048 2048 +7227423 DOWN 12 +7227423 0 2048 +7227448 UP 12 +7227447 2048 2048 +7227489 DOWN 12 +7227489 0 2048 +7227575 UP 12 +7227575 2048 2048 +7227698 DOWN 12 +7227698 0 2048 +7227728 UP 12 +7227727 2048 2048 +7230295 DOWN 12 +7230295 0 2048 +7230303 UP 12 +7230303 2048 2048 +7230405 DOWN 12 +7230405 0 2048 +7230418 UP 12 +7230418 2048 2048 +7231209 CLICK1 +7231209 CLICK2 +~~~ +~~~ +~~~ +7231238 2048 67110912 +~~~ +7231388 2048 2048 +7238786 DOWN 12 +7238786 0 2048 +~~~ +~~~ +7238809 0 0 +~~~ +~~~ +7238810 0 1 +~~~ +~~~ +7238812 0 3 +~~~ +~~~ +7238814 0 7 +~~~ +~~~ +7238816 0 15 +~~~ +~~~ +7238818 0 31 +~~~ +~~~ +7238820 0 63 +~~~ +~~~ +7238821 0 127 +~~~ +~~~ +7238823 0 255 +7238824 homeCount = 130 +7238825 waitCount = 68 +7238825 ripCount = 53 +7238826 locktype1 = 2 +7238826 locktype2 = 9 +7238848 locktype3 = 6 +7238848 goalCount = 5 +7238848 goalTotal = 45 +7238849 otherCount = 68 +~~~ +7238850 CURRENTGOAL IS [7] +~~~ +7238850 UP 12 +7238850 2048 255 +7238885 DOWN 12 +7238885 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7238925 homeCount = 130 +7238926 waitCount = 68 +7238926 ripCount = 53 +7238927 locktype1 = 2 +7238927 locktype2 = 9 +7238928 locktype3 = 6 +7238928 goalCount = 5 +7238929 goalTotal = 45 +7238929 otherCount = 68 +~~~ +7238930 CURRENTGOAL IS [7] +~~~ +7239004 UP 12 +7239004 2048 255 +7241346 DOWN 12 +7241346 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7241387 homeCount = 130 +7241388 waitCount = 68 +7241388 ripCount = 53 +7241389 locktype1 = 2 +7241389 locktype2 = 9 +7241390 locktype3 = 6 +7241390 goalCount = 5 +7241391 goalTotal = 45 +7241391 otherCount = 68 +~~~ +7241392 CURRENTGOAL IS [7] +~~~ +7241393 UP 12 +7241393 2048 255 +7241448 DOWN 12 +7241448 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7241486 homeCount = 130 +7241487 waitCount = 68 +7241487 ripCount = 53 +7241488 locktype1 = 2 +7241488 locktype2 = 9 +7241489 locktype3 = 6 +7241489 goalCount = 5 +7241490 goalTotal = 45 +7241490 otherCount = 68 +~~~ +7241491 CURRENTGOAL IS [7] +~~~ +7246047 UP 7 +7246047 64 255 +~~~ +~~~ +7246073 outer reward +~~~ +7246073 64 4194559 +~~~ +~~~ +7246239 DOWN 7 +7246239 0 4194559 +~~~ +~~~ +7246263 0 4194558 +~~~ +~~~ +7246265 0 4194556 +~~~ +~~~ +7246267 0 4194552 +~~~ +~~~ +7246269 0 4194544 +~~~ +~~~ +7246271 0 4194528 +~~~ +~~~ +7246273 0 4194496 +~~~ +~~~ +7246274 0 4194432 +~~~ +~~~ +7246276 0 4194304 +~~~ +~~~ +7246278 0 4194816 +7246279 homeCount = 130 +7246280 waitCount = 68 +7246280 ripCount = 53 +7246301 locktype1 = 2 +7246302 locktype2 = 9 +7246302 locktype3 = 6 +7246303 goalCount = 6 +7246303 goalTotal = 46 +7246304 otherCount = 68 +~~~ +7246304 64 4194816 +7246523 64 512 +7246844 DOWN 7 +7246844 0 512 +7246865 64 512 +7246981 DOWN 7 +7246981 0 512 +7246989 64 512 +7247265 DOWN 7 +7247265 0 512 +7247273 64 512 +7253973 DOWN 7 +7253973 0 512 +7253988 64 512 +7255948 DOWN 7 +7255948 0 512 +7260197 UP 10 +7260197 waslock = 0 +7260197 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7260223 512 16777728 +~~~ +7260373 512 512 +7264997 DOWN 10 +7264997 0 512 +~~~ +~~~ +7265017 0 1536 +~~~ +~~~ +7265019 0 1024 +7265020 homeCount = 131 +7265021 waitCount = 68 +7265021 ripCount = 53 +7265022 locktype1 = 2 +7265022 locktype2 = 9 +7265023 locktype3 = 6 +7265023 goalCount = 6 +7265024 goalTotal = 46 +7265024 otherCount = 68 +~~~ +7267139 UP 11 +7267139 1024 1024 +7267176 DOWN 11 +7267176 0 1024 +7267210 UP 11 +7267210 1024 1024 +7267240 DOWN 11 +7267240 0 1024 +7267440 LOCKOUT 3 +~~~ +7267457 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +7267461 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7267592 UP 11 +7267592 1024 0 +7269771 DOWN 11 +7269771 0 0 +7269794 UP 11 +7269794 1024 0 +7271659 DOWN 11 +7271659 0 0 +7271674 UP 11 +7271674 1024 0 +7275691 DOWN 11 +7275691 0 0 +7282884 UP 8 +7282884 128 0 +7283366 DOWN 8 +7283366 0 0 +7292457 LOCKEND +~~~ +~~~ +~~~ +7292478 0 512 +7293423 UP 10 +7293423 waslock = 0 +7293423 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7293452 512 16777728 +~~~ +7293602 512 512 +7298559 DOWN 10 +7298559 0 512 +~~~ +~~~ +7298577 0 2560 +~~~ +~~~ +7298579 0 2048 +7298580 homeCount = 132 +7298580 waitCount = 68 +7298581 ripCount = 53 +7298581 locktype1 = 2 +7298582 locktype2 = 9 +7298582 locktype3 = 7 +7298583 goalCount = 6 +7298583 goalTotal = 46 +7298584 otherCount = 68 +~~~ +7298630 UP 10 +7298630 waslock = 0 +7298630 512 2048 +~~~ +7298656 DOWN 10 +7298656 0 2048 +~~~ +~~~ +~~~ +~~~ +7298670 homeCount = 132 +7298670 waitCount = 68 +7298671 ripCount = 53 +7298671 locktype1 = 2 +7298672 locktype2 = 9 +7298672 locktype3 = 7 +7298673 goalCount = 6 +7298673 goalTotal = 46 +7298674 otherCount = 68 +~~~ +7300525 UP 12 +7300525 2048 2048 +7303861 DOWN 12 +7303861 0 2048 +7303914 UP 12 +7303914 2048 2048 +7304045 DOWN 12 +7304045 0 2048 +7304061 UP 12 +7304061 2048 2048 +7308526 CLICK1 +7308526 CLICK2 +~~~ +~~~ +~~~ +7308548 2048 67110912 +~~~ +7308698 2048 2048 +7317748 DOWN 12 +7317748 0 2048 +~~~ +~~~ +7317770 0 0 +~~~ +~~~ +7317772 0 1 +~~~ +~~~ +7317774 0 3 +~~~ +~~~ +7317776 0 7 +~~~ +~~~ +7317777 0 15 +~~~ +~~~ +7317779 0 31 +~~~ +~~~ +7317781 0 63 +~~~ +~~~ +7317783 0 127 +~~~ +~~~ +7317785 0 255 +7317786 homeCount = 132 +7317786 waitCount = 69 +7317787 ripCount = 53 +7317787 locktype1 = 2 +7317788 locktype2 = 9 +7317809 locktype3 = 7 +7317809 goalCount = 6 +7317810 goalTotal = 46 +7317810 otherCount = 68 +~~~ +7317811 CURRENTGOAL IS [7] +~~~ +7326698 UP 7 +7326698 64 255 +~~~ +~~~ +7326722 outer reward +~~~ +7326722 64 4194559 +~~~ +~~~ +7327001 DOWN 7 +7327001 0 4194559 +~~~ +~~~ +7327021 0 4194558 +~~~ +~~~ +7327022 0 4194556 +~~~ +~~~ +7327024 0 4194552 +~~~ +~~~ +7327026 0 4194544 +~~~ +~~~ +7327028 0 4194528 +~~~ +~~~ +7327030 0 4194496 +~~~ +~~~ +7327032 0 4194432 +~~~ +~~~ +7327033 0 4194304 +~~~ +~~~ +7327035 0 4194816 +7327036 homeCount = 132 +7327037 waitCount = 69 +7327037 ripCount = 53 +7327058 locktype1 = 2 +7327059 locktype2 = 9 +7327059 locktype3 = 7 +7327059 goalCount = 7 +7327060 goalTotal = 47 +7327060 otherCount = 68 +~~~ +7327061 64 4194816 +7327172 64 512 +7327436 DOWN 7 +7327436 0 512 +7327444 64 512 +7335677 DOWN 7 +7335677 0 512 +7335702 64 512 +7335769 DOWN 7 +7335769 0 512 +7340817 UP 10 +7340817 waslock = 0 +7340817 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7340846 512 16777728 +~~~ +7340996 512 512 +7341059 DOWN 10 +7341059 0 512 +~~~ +~~~ +7341080 0 1536 +~~~ +~~~ +7341082 0 1024 +7341083 homeCount = 133 +7341084 waitCount = 69 +7341084 ripCount = 53 +7341085 locktype1 = 2 +7341085 locktype2 = 9 +7341086 locktype3 = 7 +7341086 goalCount = 7 +7341087 goalTotal = 47 +7341087 otherCount = 68 +~~~ +7341163 UP 10 +7341163 waslock = 0 +7341163 512 1024 +~~~ +7345850 DOWN 10 +7345850 0 1024 +7345862 UP 10 +7345862 waslock = 0 +7345862 512 1024 +~~~ +~~~ +~~~ +~~~ +7345873 homeCount = 133 +7345873 waitCount = 69 +7345874 ripCount = 53 +7345874 locktype1 = 2 +7345875 locktype2 = 9 +7345875 locktype3 = 7 +7345876 goalCount = 7 +7345876 goalTotal = 47 +7345876 otherCount = 68 +~~~ +~~~ +7345957 DOWN 10 +7345957 0 1024 +~~~ +~~~ +~~~ +~~~ +7345984 homeCount = 133 +7345985 waitCount = 69 +7345985 ripCount = 53 +7345986 locktype1 = 2 +7345986 locktype2 = 9 +7345987 locktype3 = 7 +7345987 goalCount = 7 +7345988 goalTotal = 47 +7345988 otherCount = 68 +~~~ +7346012 UP 10 +7346012 waslock = 0 +7346012 512 1024 +~~~ +7346063 DOWN 10 +7346063 0 1024 +~~~ +~~~ +~~~ +~~~ +7346083 homeCount = 133 +7346083 waitCount = 69 +7346084 ripCount = 53 +7346084 locktype1 = 2 +7346085 locktype2 = 9 +7346085 locktype3 = 7 +7346086 goalCount = 7 +7346086 goalTotal = 47 +7346087 otherCount = 68 +~~~ +7348564 UP 11 +7348564 1024 1024 +7348580 DOWN 11 +7348580 0 1024 +7348605 UP 11 +7348605 1024 1024 +7350658 DOWN 11 +7350658 0 1024 +7350674 UP 11 +7350674 1024 1024 +7351121 DOWN 11 +7351121 0 1024 +7351136 UP 11 +7351136 1024 1024 +7353064 BEEP1 +7353064 BEEP2 +~~~ +~~~ +~~~ +7353083 1024 33555456 +~~~ +7353233 1024 1024 +7360547 DOWN 11 +7360547 0 1024 +~~~ +~~~ +7360571 0 0 +~~~ +~~~ +7360573 0 1 +~~~ +~~~ +7360575 0 3 +~~~ +~~~ +7360577 0 7 +~~~ +~~~ +7360578 0 15 +~~~ +~~~ +7360580 0 31 +~~~ +~~~ +7360582 0 63 +~~~ +~~~ +7360584 0 127 +~~~ +~~~ +7360586 0 255 +7360587 homeCount = 133 +7360587 waitCount = 69 +7360588 ripCount = 54 +7360588 locktype1 = 2 +7360589 locktype2 = 9 +7360610 locktype3 = 7 +7360610 goalCount = 7 +7360611 goalTotal = 47 +7360611 otherCount = 68 +~~~ +7360612 CURRENTGOAL IS [7] +~~~ +7360641 UP 11 +7360641 1024 255 +7360672 DOWN 11 +7360672 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7360707 homeCount = 133 +7360708 waitCount = 69 +7360708 ripCount = 54 +7360709 locktype1 = 2 +7360709 locktype2 = 9 +7360710 locktype3 = 7 +7360710 goalCount = 7 +7360711 goalTotal = 47 +7360711 otherCount = 68 +~~~ +7360712 CURRENTGOAL IS [7] +~~~ +7360721 UP 11 +7360721 1024 255 +7362656 DOWN 11 +7362656 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7362697 homeCount = 133 +7362698 waitCount = 69 +7362698 ripCount = 54 +7362699 locktype1 = 2 +7362699 locktype2 = 9 +7362700 locktype3 = 7 +7362700 goalCount = 7 +7362701 goalTotal = 47 +7362701 otherCount = 68 +~~~ +7362702 CURRENTGOAL IS [7] +~~~ +7365352 UP 7 +7365352 64 255 +~~~ +~~~ +7365373 outer reward +~~~ +7365374 64 4194559 +~~~ +~~~ +7365536 DOWN 7 +7365536 0 4194559 +~~~ +~~~ +7365562 0 4194558 +~~~ +~~~ +7365563 0 4194556 +~~~ +~~~ +7365565 0 4194552 +~~~ +~~~ +7365567 0 4194544 +~~~ +~~~ +7365569 0 4194528 +~~~ +~~~ +7365571 0 4194496 +~~~ +~~~ +7365572 0 4194432 +~~~ +~~~ +7365574 0 4194304 +~~~ +~~~ +7365576 0 4194816 +7365577 homeCount = 133 +7365578 waitCount = 69 +7365578 ripCount = 54 +7365599 locktype1 = 2 +7365599 locktype2 = 9 +7365600 locktype3 = 7 +7365600 goalCount = 8 +7365601 goalTotal = 48 +7365601 otherCount = 68 +~~~ +7365605 64 4194816 +7365823 64 512 +7366174 DOWN 7 +7366174 0 512 +7366179 64 512 +7374623 DOWN 7 +7374623 0 512 +7379786 UP 10 +7379786 waslock = 0 +7379786 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7379809 512 16777728 +~~~ +7379959 512 512 +7384922 DOWN 10 +7384922 0 512 +~~~ +~~~ +7384944 0 1536 +~~~ +~~~ +7384946 0 1024 +7384947 homeCount = 134 +7384948 waitCount = 69 +7384948 ripCount = 54 +7384948 locktype1 = 2 +7384949 locktype2 = 9 +7384949 locktype3 = 7 +7384950 goalCount = 8 +7384950 goalTotal = 48 +7384951 otherCount = 68 +~~~ +7384996 UP 10 +7384996 waslock = 0 +7384996 512 1024 +7385026 DOWN 10 +7385026 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +7385048 homeCount = 134 +7385048 waitCount = 69 +7385049 ripCount = 54 +7385049 locktype1 = 2 +7385050 locktype2 = 9 +7385050 locktype3 = 7 +7385051 goalCount = 8 +7385051 goalTotal = 48 +7385052 otherCount = 68 +~~~ +7387275 UP 11 +7387275 1024 1024 +7389347 DOWN 11 +7389347 0 1024 +7389404 UP 11 +7389404 1024 1024 +7393276 BEEP1 +7393276 BEEP2 +~~~ +~~~ +~~~ +7393295 1024 33555456 +~~~ +7393445 1024 1024 +7402954 DOWN 11 +7402954 0 1024 +~~~ +~~~ +7402973 0 0 +~~~ +~~~ +7402975 0 1 +~~~ +~~~ +7402977 0 3 +~~~ +~~~ +7402979 0 7 +~~~ +~~~ +7402981 0 15 +~~~ +~~~ +7402982 0 31 +~~~ +~~~ +7402984 0 63 +~~~ +~~~ +7402986 0 127 +~~~ +~~~ +7402988 0 255 +7402989 homeCount = 134 +7402989 waitCount = 69 +7402990 ripCount = 55 +7402990 locktype1 = 2 +7402991 locktype2 = 9 +7403012 locktype3 = 7 +7403013 goalCount = 8 +7403013 goalTotal = 48 +7403013 otherCount = 68 +~~~ +7403015 CURRENTGOAL IS [7] +~~~ +7403015 UP 11 +7403015 1024 255 +7403061 DOWN 11 +7403061 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7403099 homeCount = 134 +7403100 waitCount = 69 +7403100 ripCount = 55 +7403101 locktype1 = 2 +7403101 locktype2 = 9 +7403102 locktype3 = 7 +7403102 goalCount = 8 +7403103 goalTotal = 48 +7403103 otherCount = 68 +~~~ +7403104 CURRENTGOAL IS [7] +~~~ +7406281 UP 7 +7406281 64 255 +~~~ +~~~ +7406307 outer reward +~~~ +7406307 64 4194559 +~~~ +~~~ +7406343 DOWN 7 +7406343 0 4194559 +~~~ +~~~ +7406364 0 4194558 +~~~ +~~~ +7406366 0 4194556 +~~~ +~~~ +7406368 0 4194552 +~~~ +7406369 64 4194552 +~~~ +~~~ +7406371 64 4194544 +~~~ +~~~ +7406373 64 4194528 +~~~ +7406374 64 4194496 +~~~ +~~~ +7406375 64 4194432 +~~~ +~~~ +7406377 64 4194304 +~~~ +~~~ +7406379 64 4194816 +7406380 homeCount = 134 +7406401 waitCount = 69 +7406402 ripCount = 55 +7406402 locktype1 = 2 +7406403 locktype2 = 9 +7406403 locktype3 = 7 +7406404 goalCount = 9 +7406404 goalTotal = 49 +7406405 otherCount = 68 +~~~ +7406561 DOWN 7 +7406561 0 4194816 +7406594 64 4194816 +7406757 64 512 +7415726 DOWN 7 +7415726 0 512 +7415737 64 512 +7417333 DOWN 7 +7417333 0 512 +7417337 64 512 +7417494 DOWN 7 +7417494 0 512 +7417522 64 512 +7417596 DOWN 7 +7417596 0 512 +7425090 UP 10 +7425090 waslock = 0 +7425090 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7425120 512 16777728 +~~~ +7425270 512 512 +7431156 DOWN 10 +7431156 0 512 +7431172 UP 10 +7431172 waslock = 0 +7431172 512 512 +~~~ +~~~ +7431176 512 1536 +~~~ +~~~ +7431178 512 1024 +7431179 homeCount = 135 +7431179 waitCount = 69 +7431180 ripCount = 55 +7431180 locktype1 = 2 +7431181 locktype2 = 9 +7431181 locktype3 = 7 +7431181 goalCount = 9 +7431182 goalTotal = 49 +7431182 otherCount = 68 +~~~ +~~~ +7431273 DOWN 10 +7431273 0 1024 +~~~ +~~~ +~~~ +~~~ +7431299 homeCount = 135 +7431300 waitCount = 69 +7431300 ripCount = 55 +7431301 locktype1 = 2 +7431301 locktype2 = 9 +7431302 locktype3 = 7 +7431302 goalCount = 9 +7431303 goalTotal = 49 +7431303 otherCount = 68 +~~~ +7431350 UP 10 +7431350 waslock = 0 +7431350 512 1024 +7431373 DOWN 10 +7431373 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +7431399 homeCount = 135 +7431399 waitCount = 69 +7431400 ripCount = 55 +7431400 locktype1 = 2 +7431401 locktype2 = 9 +7431401 locktype3 = 7 +7431402 goalCount = 9 +7431402 goalTotal = 49 +7431403 otherCount = 68 +~~~ +7433644 UP 11 +7433644 1024 1024 +7435685 DOWN 11 +7435685 0 1024 +7435694 UP 11 +7435694 1024 1024 +7435696 DOWN 11 +7435696 0 1024 +7435712 UP 11 +7435712 1024 1024 +7435877 DOWN 11 +7435877 0 1024 +7435902 UP 11 +7435902 1024 1024 +7436645 BEEP1 +7436645 BEEP2 +~~~ +~~~ +~~~ +7436666 1024 33555456 +~~~ +7436816 1024 1024 +7444254 DOWN 11 +7444254 0 1024 +~~~ +~~~ +7444275 0 0 +~~~ +~~~ +7444277 0 1 +~~~ +~~~ +7444279 0 3 +~~~ +~~~ +7444281 0 7 +~~~ +~~~ +7444283 0 15 +~~~ +~~~ +7444285 0 31 +~~~ +~~~ +7444286 0 63 +~~~ +~~~ +7444288 0 127 +~~~ +~~~ +7444290 0 255 +7444291 homeCount = 135 +7444292 waitCount = 69 +7444292 ripCount = 56 +7444293 locktype1 = 2 +7444293 locktype2 = 9 +7444294 locktype3 = 7 +7444315 goalCount = 9 +7444315 goalTotal = 49 +7444316 otherCount = 68 +~~~ +7444317 CURRENTGOAL IS [7] +~~~ +7444336 UP 11 +7444336 1024 255 +7446175 DOWN 11 +7446175 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7446211 homeCount = 135 +7446212 waitCount = 69 +7446212 ripCount = 56 +7446213 locktype1 = 2 +7446213 locktype2 = 9 +7446214 locktype3 = 7 +7446214 goalCount = 9 +7446215 goalTotal = 49 +7446215 otherCount = 68 +~~~ +7446216 CURRENTGOAL IS [7] +~~~ +7448886 UP 7 +7448886 64 255 +~~~ +~~~ +7448911 outer reward +~~~ +7448911 64 4194559 +~~~ +~~~ +7448916 outerreps = 8 +~~~ +~~~ +7449078 DOWN 7 +7449078 0 4194559 +~~~ +~~~ +7449097 0 4194558 +~~~ +~~~ +7449099 0 4194556 +~~~ +~~~ +7449100 0 4194552 +~~~ +~~~ +7449102 0 4194544 +~~~ +~~~ +7449104 0 4194528 +~~~ +~~~ +7449106 0 4194496 +~~~ +~~~ +7449108 0 4194432 +~~~ +~~~ +7449110 0 4194304 +~~~ +~~~ +7449111 0 4194816 +7449112 homeCount = 135 +7449113 waitCount = 69 +7449113 ripCount = 56 +7449134 locktype1 = 2 +7449135 locktype2 = 9 +7449135 locktype3 = 7 +7449136 goalCount = 0 +7449136 goalTotal = 50 +7449137 otherCount = 68 +~~~ +7449142 64 4194816 +7449361 64 512 +7449716 DOWN 7 +7449716 0 512 +7449737 64 512 +7450009 DOWN 7 +7450009 0 512 +7450016 64 512 +7460272 DOWN 7 +7460272 0 512 +7460347 64 512 +7460391 DOWN 7 +7460391 0 512 +7460925 64 512 +7460936 DOWN 7 +7460936 0 512 +7466038 UP 10 +7466038 waslock = 0 +7466038 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7466064 512 16777728 +~~~ +7466214 512 512 +7466234 DOWN 10 +7466234 0 512 +~~~ +~~~ +7466261 0 2560 +~~~ +~~~ +7466262 0 2048 +7466263 homeCount = 136 +7466264 waitCount = 69 +7466264 ripCount = 56 +7466265 locktype1 = 2 +7466265 locktype2 = 9 +7466266 locktype3 = 7 +7466266 goalCount = 0 +7466267 goalTotal = 50 +7466267 otherCount = 68 +~~~ +7466338 UP 10 +7466339 waslock = 0 +7466338 512 2048 +~~~ +7473072 DOWN 10 +7473072 0 2048 +~~~ +~~~ +~~~ +~~~ +7473098 homeCount = 136 +7473099 waitCount = 69 +7473099 ripCount = 56 +7473100 locktype1 = 2 +7473100 locktype2 = 9 +7473100 locktype3 = 7 +7473101 goalCount = 0 +7473101 goalTotal = 50 +7473102 otherCount = 68 +~~~ +7473122 UP 10 +7473122 waslock = 0 +7473122 512 2048 +~~~ +7473189 DOWN 10 +7473189 0 2048 +~~~ +~~~ +~~~ +~~~ +7473215 homeCount = 136 +7473216 waitCount = 69 +7473216 ripCount = 56 +7473217 locktype1 = 2 +7473217 locktype2 = 9 +7473218 locktype3 = 7 +7473218 goalCount = 0 +7473219 goalTotal = 50 +7473219 otherCount = 68 +~~~ +7473271 UP 10 +7473271 waslock = 0 +7473271 512 2048 +7473287 DOWN 10 +7473287 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +7473310 homeCount = 136 +7473310 waitCount = 69 +7473311 ripCount = 56 +7473311 locktype1 = 2 +7473312 locktype2 = 9 +7473312 locktype3 = 7 +7473313 goalCount = 0 +7473313 goalTotal = 50 +7473314 otherCount = 68 +~~~ +7475182 UP 12 +7475182 2048 2048 +7478357 DOWN 12 +7478357 0 2048 +7478404 UP 12 +7478404 2048 2048 +7478682 CLICK1 +7478682 CLICK2 +~~~ +~~~ +~~~ +7478704 2048 67110912 +~~~ +7478854 2048 2048 +7487545 DOWN 12 +7487545 0 2048 +~~~ +~~~ +7487563 0 0 +~~~ +~~~ +7487565 0 1 +~~~ +~~~ +7487567 0 3 +~~~ +~~~ +7487569 0 7 +~~~ +~~~ +7487571 0 15 +~~~ +~~~ +7487572 0 31 +~~~ +~~~ +7487574 0 63 +~~~ +~~~ +7487576 0 127 +~~~ +~~~ +7487578 0 255 +7487579 homeCount = 136 +7487579 waitCount = 70 +7487580 ripCount = 56 +7487580 locktype1 = 2 +7487581 locktype2 = 9 +7487581 locktype3 = 7 +7487602 goalCount = 0 +7487603 goalTotal = 50 +7487603 otherCount = 68 +~~~ +7487604 CURRENTGOAL IS [1] +~~~ +7487614 UP 12 +7487614 2048 255 +7487665 DOWN 12 +7487665 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7487702 homeCount = 136 +7487703 waitCount = 70 +7487703 ripCount = 56 +7487704 locktype1 = 2 +7487704 locktype2 = 9 +7487705 locktype3 = 7 +7487705 goalCount = 0 +7487706 goalTotal = 50 +7487706 otherCount = 68 +~~~ +7487707 CURRENTGOAL IS [1] +~~~ +7497495 UP 7 +7497495 64 255 +~~~ +~~~ +7497692 DOWN 7 +7497692 0 255 +~~~ +~~~ +7497716 0 254 +~~~ +~~~ +7497718 0 252 +~~~ +~~~ +7497719 0 248 +~~~ +~~~ +7497721 0 240 +~~~ +~~~ +7497723 0 224 +~~~ +~~~ +7497725 0 192 +~~~ +~~~ +7497727 0 128 +~~~ +~~~ +7497728 0 0 +~~~ +~~~ +7497730 0 512 +7497731 homeCount = 136 +7497732 waitCount = 70 +7497732 ripCount = 56 +7497733 locktype1 = 2 +7497733 locktype2 = 9 +7497754 locktype3 = 7 +7497754 goalCount = 0 +7497755 goalTotal = 50 +7497755 otherCount = 69 +~~~ +7497775 64 512 +7498876 DOWN 7 +7498876 0 512 +7498954 64 512 +7498988 DOWN 7 +7498988 0 512 +7503794 UP 10 +7503795 waslock = 0 +7503794 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7503825 512 16777728 +~~~ +7503975 512 512 +7504038 DOWN 10 +7504038 0 512 +~~~ +~~~ +7504058 0 2560 +~~~ +~~~ +7504060 0 2048 +7504061 homeCount = 137 +7504062 waitCount = 70 +7504062 ripCount = 56 +7504063 locktype1 = 2 +7504063 locktype2 = 9 +7504064 locktype3 = 7 +7504064 goalCount = 0 +7504065 goalTotal = 50 +7504065 otherCount = 69 +~~~ +7504073 UP 10 +7504073 waslock = 0 +7504073 512 2048 +~~~ +7509916 DOWN 10 +7509916 0 2048 +~~~ +~~~ +~~~ +~~~ +7509944 homeCount = 137 +7509945 waitCount = 70 +7509945 ripCount = 56 +7509946 locktype1 = 2 +7509946 locktype2 = 9 +7509947 locktype3 = 7 +7509947 goalCount = 0 +7509948 goalTotal = 50 +7509948 otherCount = 69 +~~~ +7509968 UP 10 +7509968 waslock = 0 +7509968 512 2048 +~~~ +7510017 DOWN 10 +7510017 0 2048 +~~~ +~~~ +~~~ +~~~ +7510044 homeCount = 137 +7510045 waitCount = 70 +7510045 ripCount = 56 +7510046 locktype1 = 2 +7510046 locktype2 = 9 +7510047 locktype3 = 7 +7510047 goalCount = 0 +7510048 goalTotal = 50 +7510048 otherCount = 69 +~~~ +7512207 UP 12 +7512207 2048 2048 +7515181 DOWN 12 +7515181 0 2048 +7515189 UP 12 +7515189 2048 2048 +7515191 DOWN 12 +7515191 0 2048 +7515212 UP 12 +7515212 2048 2048 +7518208 CLICK1 +7518208 CLICK2 +~~~ +~~~ +~~~ +7518231 2048 67110912 +~~~ +7518381 2048 2048 +7527917 DOWN 12 +7527917 0 2048 +~~~ +~~~ +7527940 0 0 +~~~ +~~~ +7527942 0 1 +~~~ +~~~ +7527944 0 3 +~~~ +~~~ +7527946 0 7 +~~~ +~~~ +7527948 0 15 +~~~ +~~~ +7527949 0 31 +~~~ +~~~ +7527951 0 63 +~~~ +~~~ +7527953 0 127 +~~~ +~~~ +7527955 0 255 +7527956 homeCount = 137 +7527956 waitCount = 71 +7527957 ripCount = 56 +7527957 locktype1 = 2 +7527958 locktype2 = 9 +7527958 locktype3 = 7 +7527979 goalCount = 0 +7527980 goalTotal = 50 +7527980 otherCount = 69 +~~~ +7527981 CURRENTGOAL IS [1] +~~~ +7535073 UP 7 +7535073 64 255 +~~~ +~~~ +7535887 DOWN 7 +7535887 0 255 +~~~ +~~~ +7535912 0 254 +~~~ +~~~ +7535914 0 252 +~~~ +~~~ +7535916 0 248 +~~~ +~~~ +7535917 0 240 +~~~ +~~~ +7535919 0 224 +~~~ +~~~ +7535921 0 192 +~~~ +~~~ +7535923 0 128 +~~~ +~~~ +7535925 0 0 +~~~ +~~~ +7535927 0 512 +7535928 homeCount = 137 +7535928 waitCount = 71 +7535929 ripCount = 56 +7535929 locktype1 = 2 +7535930 locktype2 = 9 +7535951 locktype3 = 7 +7535951 goalCount = 0 +7535952 goalTotal = 50 +7535952 otherCount = 70 +~~~ +7541930 UP 10 +7541931 waslock = 0 +7541930 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7541958 512 16777728 +~~~ +7542108 512 512 +7542121 DOWN 10 +7542121 0 512 +~~~ +~~~ +7542138 0 2560 +~~~ +~~~ +7542140 0 2048 +7542141 homeCount = 138 +7542142 waitCount = 71 +7542142 ripCount = 56 +7542143 locktype1 = 2 +7542143 locktype2 = 9 +7542144 locktype3 = 7 +7542144 goalCount = 0 +7542145 goalTotal = 50 +7542145 otherCount = 70 +~~~ +7542404 UP 10 +7542404 waslock = 0 +7542404 512 2048 +~~~ +7548488 DOWN 10 +7548488 0 2048 +~~~ +~~~ +~~~ +~~~ +7548516 homeCount = 138 +7548516 waitCount = 71 +7548517 ripCount = 56 +7548517 locktype1 = 2 +7548517 locktype2 = 9 +7548518 locktype3 = 7 +7548518 goalCount = 0 +7548519 goalTotal = 50 +7548519 otherCount = 70 +~~~ +7548548 UP 10 +7548549 waslock = 0 +7548548 512 2048 +~~~ +7548586 DOWN 10 +7548586 0 2048 +~~~ +~~~ +~~~ +~~~ +7548609 homeCount = 138 +7548609 waitCount = 71 +7548610 ripCount = 56 +7548610 locktype1 = 2 +7548611 locktype2 = 9 +7548611 locktype3 = 7 +7548612 goalCount = 0 +7548612 goalTotal = 50 +7548613 otherCount = 70 +~~~ +7550864 UP 12 +7550864 2048 2048 +7551269 DOWN 12 +7551269 0 2048 +7551469 LOCKOUT 3 +~~~ +7551491 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7551497 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7551703 UP 12 +7551703 2048 0 +7552563 DOWN 12 +7552563 0 0 +7556268 512 0 +7557015 0 0 +7557777 512 0 +7557804 0 0 +7570040 512 0 +7570455 0 0 +7570527 512 0 +7570550 0 0 +7576491 LOCKEND +~~~ +~~~ +~~~ +7576514 0 512 +7579140 UP 10 +7579140 waslock = 0 +7579140 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7579169 512 16777728 +~~~ +7579319 512 512 +7579898 DOWN 10 +7579898 0 512 +7579912 UP 10 +7579913 waslock = 0 +7579912 512 512 +~~~ +~~~ +7579932 512 1536 +~~~ +~~~ +7579934 512 1024 +7579935 homeCount = 139 +7579936 waitCount = 71 +7579936 ripCount = 56 +7579937 locktype1 = 2 +7579937 locktype2 = 9 +7579938 locktype3 = 8 +7579938 goalCount = 0 +7579939 goalTotal = 50 +7579939 otherCount = 70 +~~~ +~~~ +7589333 DOWN 10 +7589333 0 1024 +~~~ +~~~ +~~~ +~~~ +7589354 homeCount = 139 +7589354 waitCount = 71 +7589355 ripCount = 56 +7589355 locktype1 = 2 +7589356 locktype2 = 9 +7589356 locktype3 = 8 +7589357 goalCount = 0 +7589357 goalTotal = 50 +7589358 otherCount = 70 +~~~ +7589393 UP 10 +7589393 waslock = 0 +7589393 512 1024 +~~~ +7589430 DOWN 10 +7589430 0 1024 +~~~ +~~~ +~~~ +~~~ +7589457 homeCount = 139 +7589458 waitCount = 71 +7589458 ripCount = 56 +7589459 locktype1 = 2 +7589459 locktype2 = 9 +7589460 locktype3 = 8 +7589460 goalCount = 0 +7589461 goalTotal = 50 +7589461 otherCount = 70 +~~~ +7590928 UP 11 +7590928 1024 1024 +7592834 DOWN 11 +7592834 0 1024 +7592866 UP 11 +7592866 1024 1024 +7593816 DOWN 11 +7593816 0 1024 +7593925 UP 11 +7593925 1024 1024 +7593962 DOWN 11 +7593962 0 1024 +7594016 UP 11 +7594016 1024 1024 +7594027 DOWN 11 +7594027 0 1024 +7594053 UP 11 +7594053 1024 1024 +7596310 DOWN 11 +7596310 0 1024 +7596336 UP 11 +7596336 1024 1024 +7596428 BEEP1 +7596428 BEEP2 +~~~ +~~~ +~~~ +7596454 1024 33555456 +~~~ +7596604 1024 1024 +7604212 DOWN 11 +7604212 0 1024 +~~~ +~~~ +7604232 0 0 +~~~ +~~~ +7604234 0 1 +~~~ +~~~ +7604236 0 3 +~~~ +~~~ +7604238 0 7 +~~~ +~~~ +7604240 0 15 +~~~ +~~~ +7604241 0 31 +~~~ +~~~ +7604243 0 63 +~~~ +~~~ +7604245 0 127 +~~~ +7604246 UP 11 +7604246 1024 127 +~~~ +7604248 homeCount = 139 +7604249 waitCount = 71 +7604249 ripCount = 57 +7604250 locktype1 = 2 +7604250 locktype2 = 9 +7604271 locktype3 = 8 +7604272 goalCount = 0 +7604272 goalTotal = 50 +7604273 otherCount = 70 +~~~ +7604274 CURRENTGOAL IS [1] +~~~ +7604274 1024 255 +7607328 DOWN 11 +7607328 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7607363 homeCount = 139 +7607363 waitCount = 71 +7607364 ripCount = 57 +7607364 locktype1 = 2 +7607365 locktype2 = 9 +7607365 locktype3 = 8 +7607366 goalCount = 0 +7607366 goalTotal = 50 +7607367 otherCount = 70 +~~~ +7607368 CURRENTGOAL IS [1] +~~~ +7608096 UP 11 +7608096 1024 255 +7608235 DOWN 11 +7608235 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7608273 homeCount = 139 +7608273 waitCount = 71 +7608274 ripCount = 57 +7608274 locktype1 = 2 +7608275 locktype2 = 9 +7608275 locktype3 = 8 +7608276 goalCount = 0 +7608276 goalTotal = 50 +7608277 otherCount = 70 +~~~ +7608278 CURRENTGOAL IS [1] +~~~ +7613872 UP 5 +7613872 16 255 +~~~ +~~~ +7614090 DOWN 5 +7614090 0 255 +~~~ +~~~ +7614106 0 254 +~~~ +~~~ +7614108 0 252 +~~~ +~~~ +7614110 0 248 +~~~ +~~~ +7614112 0 240 +~~~ +~~~ +7614113 0 224 +~~~ +~~~ +7614115 0 192 +~~~ +~~~ +7614117 0 128 +~~~ +~~~ +7614119 0 0 +~~~ +~~~ +7614121 0 512 +7614122 homeCount = 139 +7614122 waitCount = 71 +7614123 ripCount = 57 +7614123 locktype1 = 2 +7614124 locktype2 = 9 +7614145 locktype3 = 8 +7614145 goalCount = 0 +7614146 goalTotal = 50 +7614146 otherCount = 71 +~~~ +7614151 16 512 +7614918 DOWN 5 +7614918 0 512 +7615042 16 512 +7615066 DOWN 5 +7615066 0 512 +7620314 UP 10 +7620314 waslock = 0 +7620314 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7620344 512 16777728 +~~~ +7620494 512 512 +7620617 DOWN 10 +7620617 0 512 +~~~ +~~~ +7620642 0 2560 +~~~ +~~~ +7620644 0 2048 +7620645 homeCount = 140 +7620646 waitCount = 71 +7620646 ripCount = 57 +7620647 locktype1 = 2 +7620647 locktype2 = 9 +7620648 locktype3 = 8 +7620648 goalCount = 0 +7620649 goalTotal = 50 +7620649 otherCount = 71 +~~~ +7620663 UP 10 +7620663 waslock = 0 +7620663 512 2048 +~~~ +7624814 DOWN 10 +7624814 0 2048 +~~~ +~~~ +~~~ +~~~ +7624833 homeCount = 140 +7624834 waitCount = 71 +7624834 ripCount = 57 +7624835 locktype1 = 2 +7624835 locktype2 = 9 +7624836 locktype3 = 8 +7624836 goalCount = 0 +7624837 goalTotal = 50 +7624837 otherCount = 71 +~~~ +7624849 UP 10 +7624849 waslock = 0 +7624849 512 2048 +~~~ +7624910 DOWN 10 +7624910 0 2048 +~~~ +~~~ +~~~ +~~~ +7624933 homeCount = 140 +7624934 waitCount = 71 +7624934 ripCount = 57 +7624935 locktype1 = 2 +7624935 locktype2 = 9 +7624936 locktype3 = 8 +7624936 goalCount = 0 +7624937 goalTotal = 50 +7624937 otherCount = 71 +~~~ +7627214 UP 12 +7627214 2048 2048 +7629405 DOWN 12 +7629405 0 2048 +7629414 UP 12 +7629414 2048 2048 +7630600 DOWN 12 +7630600 0 2048 +7630608 UP 12 +7630608 2048 2048 +7630610 DOWN 12 +7630610 0 2048 +7630629 UP 12 +7630629 2048 2048 +7631348 DOWN 12 +7631348 0 2048 +7631373 UP 12 +7631373 2048 2048 +7631500 DOWN 12 +7631500 0 2048 +7631549 UP 12 +7631549 2048 2048 +7632751 DOWN 12 +7632751 0 2048 +7632791 UP 12 +7632791 2048 2048 +7634214 CLICK1 +7634214 CLICK2 +~~~ +~~~ +~~~ +7634234 2048 67110912 +~~~ +7634384 2048 2048 +7641364 DOWN 12 +7641364 0 2048 +~~~ +~~~ +7641390 0 0 +~~~ +~~~ +7641392 0 1 +~~~ +~~~ +7641394 0 3 +~~~ +~~~ +7641396 0 7 +~~~ +~~~ +7641398 0 15 +~~~ +~~~ +7641400 0 31 +~~~ +~~~ +7641401 0 63 +~~~ +~~~ +7641403 UP 12 +7641403 2048 127 +~~~ +~~~ +7641405 2048 255 +7641406 homeCount = 140 +7641407 waitCount = 72 +7641407 ripCount = 57 +7641408 locktype1 = 2 +7641429 locktype2 = 9 +7641429 locktype3 = 8 +7641429 goalCount = 0 +7641430 goalTotal = 50 +7641430 otherCount = 71 +~~~ +7641432 CURRENTGOAL IS [1] +~~~ +7641495 DOWN 12 +7641495 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7641537 homeCount = 140 +7641537 waitCount = 72 +7641538 ripCount = 57 +7641538 locktype1 = 2 +7641539 locktype2 = 9 +7641539 locktype3 = 8 +7641540 goalCount = 0 +7641540 goalTotal = 50 +7641540 otherCount = 71 +~~~ +7641542 CURRENTGOAL IS [1] +~~~ +7646776 UP 2 +7646776 2 255 +~~~ +~~~ +7647342 DOWN 2 +7647342 0 255 +~~~ +~~~ +7647363 0 254 +~~~ +~~~ +7647365 0 252 +~~~ +~~~ +7647367 0 248 +~~~ +~~~ +7647368 0 240 +~~~ +~~~ +7647370 0 224 +~~~ +~~~ +7647372 0 192 +~~~ +~~~ +7647374 0 128 +~~~ +~~~ +7647376 0 0 +~~~ +~~~ +7647377 0 512 +7647378 homeCount = 140 +7647379 waitCount = 72 +7647379 ripCount = 57 +7647380 locktype1 = 2 +7647380 locktype2 = 9 +7647402 locktype3 = 8 +7647402 goalCount = 0 +7647403 goalTotal = 50 +7647403 otherCount = 72 +~~~ +7651568 UP 10 +7651569 waslock = 0 +7651568 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7651599 512 16777728 +~~~ +7651749 512 512 +7651776 DOWN 10 +7651776 0 512 +~~~ +~~~ +7651794 0 2560 +~~~ +~~~ +7651796 0 2048 +7651797 homeCount = 141 +7651797 waitCount = 72 +7651798 ripCount = 57 +7651798 locktype1 = 2 +7651799 locktype2 = 9 +7651799 locktype3 = 8 +7651800 goalCount = 0 +7651800 goalTotal = 50 +7651801 otherCount = 72 +~~~ +7651924 UP 10 +7651924 waslock = 0 +7651924 512 2048 +~~~ +7657794 DOWN 10 +7657794 0 2048 +~~~ +~~~ +~~~ +~~~ +7657816 homeCount = 141 +7657816 waitCount = 72 +7657817 ripCount = 57 +7657817 locktype1 = 2 +7657817 locktype2 = 9 +7657818 locktype3 = 8 +7657818 goalCount = 0 +7657819 goalTotal = 50 +7657819 otherCount = 72 +~~~ +7657839 UP 10 +7657839 waslock = 0 +7657839 512 2048 +~~~ +7657896 DOWN 10 +7657896 0 2048 +~~~ +~~~ +~~~ +~~~ +7657929 homeCount = 141 +7657929 waitCount = 72 +7657930 ripCount = 57 +7657930 locktype1 = 2 +7657931 locktype2 = 9 +7657931 locktype3 = 8 +7657932 goalCount = 0 +7657932 goalTotal = 50 +7657933 otherCount = 72 +~~~ +7657955 UP 10 +7657956 waslock = 0 +7657955 512 2048 +~~~ +7658197 DOWN 10 +7658197 0 2048 +~~~ +~~~ +~~~ +~~~ +7658232 homeCount = 141 +7658232 waitCount = 72 +7658233 ripCount = 57 +7658233 locktype1 = 2 +7658234 locktype2 = 9 +7658234 locktype3 = 8 +7658235 goalCount = 0 +7658235 goalTotal = 50 +7658235 otherCount = 72 +~~~ +7658246 UP 10 +7658246 waslock = 0 +7658246 512 2048 +~~~ +7659679 DOWN 10 +7659679 0 2048 +~~~ +~~~ +~~~ +~~~ +7659709 homeCount = 141 +7659710 waitCount = 72 +7659710 ripCount = 57 +7659711 locktype1 = 2 +7659711 locktype2 = 9 +7659712 locktype3 = 8 +7659712 goalCount = 0 +7659712 goalTotal = 50 +7659713 otherCount = 72 +~~~ +7661563 UP 12 +7661563 2048 2048 +7662992 DOWN 12 +7662992 0 2048 +7663010 UP 12 +7663010 2048 2048 +7665836 DOWN 12 +7665836 0 2048 +7665848 UP 12 +7665848 2048 2048 +7667063 CLICK1 +7667063 CLICK2 +~~~ +~~~ +~~~ +7667083 2048 67110912 +~~~ +7667233 2048 2048 +7673720 DOWN 12 +7673720 0 2048 +~~~ +~~~ +7673742 0 0 +~~~ +~~~ +7673744 0 1 +~~~ +~~~ +7673746 0 3 +~~~ +~~~ +7673747 0 7 +~~~ +~~~ +7673749 0 15 +~~~ +~~~ +7673751 0 31 +~~~ +~~~ +7673753 0 63 +~~~ +~~~ +7673755 0 127 +~~~ +~~~ +7673757 0 255 +7673758 homeCount = 141 +7673758 waitCount = 73 +7673759 ripCount = 57 +7673759 locktype1 = 2 +7673760 locktype2 = 9 +7673760 locktype3 = 8 +7673781 goalCount = 0 +7673782 goalTotal = 50 +7673782 otherCount = 72 +~~~ +7673783 CURRENTGOAL IS [1] +~~~ +7701490 UP 6 +7701490 32 255 +~~~ +~~~ +7702442 DOWN 6 +7702442 0 255 +~~~ +~~~ +7702466 0 254 +~~~ +~~~ +7702468 0 252 +~~~ +~~~ +7702470 0 248 +~~~ +~~~ +7702472 0 240 +~~~ +~~~ +7702474 0 224 +~~~ +~~~ +7702476 0 192 +~~~ +~~~ +7702477 0 128 +~~~ +~~~ +7702479 0 0 +~~~ +~~~ +7702481 0 512 +7702482 homeCount = 141 +7702483 waitCount = 73 +7702483 ripCount = 57 +7702484 locktype1 = 2 +7702484 locktype2 = 9 +7702505 locktype3 = 8 +7702506 goalCount = 0 +7702506 goalTotal = 50 +7702507 otherCount = 73 +~~~ +7702548 32 512 +7702742 DOWN 6 +7702742 0 512 +7707698 UP 10 +7707698 waslock = 0 +7707698 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7707722 512 16777728 +~~~ +7707872 512 512 +7707990 DOWN 10 +7707990 0 512 +~~~ +~~~ +7708015 0 1536 +~~~ +~~~ +7708016 0 1024 +7708017 homeCount = 142 +7708018 waitCount = 73 +7708018 ripCount = 57 +7708019 locktype1 = 2 +7708019 locktype2 = 9 +7708020 locktype3 = 8 +7708020 goalCount = 0 +7708021 goalTotal = 50 +7708021 otherCount = 73 +~~~ +7708107 UP 10 +7708107 waslock = 0 +7708107 512 1024 +~~~ +7712341 DOWN 10 +7712341 0 1024 +~~~ +~~~ +~~~ +~~~ +7712370 homeCount = 142 +7712371 waitCount = 73 +7712371 ripCount = 57 +7712372 locktype1 = 2 +7712372 locktype2 = 9 +7712373 locktype3 = 8 +7712373 goalCount = 0 +7712374 goalTotal = 50 +7712374 otherCount = 73 +~~~ +7714949 UP 11 +7714949 1024 1024 +7715014 DOWN 11 +7715014 0 1024 +7715081 UP 11 +7715081 1024 1024 +7717142 DOWN 11 +7717142 0 1024 +7717158 UP 11 +7717158 1024 1024 +7718192 DOWN 11 +7718192 0 1024 +7718202 UP 11 +7718202 1024 1024 +7720449 BEEP1 +7720449 BEEP2 +~~~ +~~~ +~~~ +7720468 1024 33555456 +~~~ +7720618 1024 1024 +7720992 DOWN 11 +7720992 0 1024 +7721019 UP 11 +7721019 1024 1024 +~~~ +~~~ +7721117 1024 0 +~~~ +~~~ +7721119 1024 1 +~~~ +~~~ +7721121 1024 3 +~~~ +~~~ +7721123 1024 7 +~~~ +~~~ +7721124 1024 15 +~~~ +~~~ +7721126 1024 31 +~~~ +~~~ +7721128 1024 63 +~~~ +~~~ +7721130 1024 127 +~~~ +~~~ +7721132 1024 255 +7721133 homeCount = 142 +7721133 waitCount = 73 +7721134 ripCount = 58 +7721134 locktype1 = 2 +7721155 locktype2 = 9 +7721155 locktype3 = 8 +7721156 goalCount = 0 +7721156 goalTotal = 50 +7721157 otherCount = 73 +~~~ +7721158 CURRENTGOAL IS [1] +~~~ +7721158 DOWN 11 +7721158 0 255 +7721177 UP 11 +7721177 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7721207 homeCount = 142 +7721208 waitCount = 73 +7721208 ripCount = 58 +7721209 locktype1 = 2 +7721209 locktype2 = 9 +7721210 locktype3 = 8 +7721210 goalCount = 0 +7721211 goalTotal = 50 +7721211 otherCount = 73 +~~~ +7721213 CURRENTGOAL IS [1] +~~~ +7728036 DOWN 11 +7728036 0 255 +7728055 UP 11 +7728055 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7728075 homeCount = 142 +7728076 waitCount = 73 +7728076 ripCount = 58 +7728077 locktype1 = 2 +7728077 locktype2 = 9 +7728078 locktype3 = 8 +7728078 goalCount = 0 +7728079 goalTotal = 50 +7728079 otherCount = 73 +~~~ +7728080 CURRENTGOAL IS [1] +~~~ +7728150 DOWN 11 +7728150 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7728188 homeCount = 142 +7728189 waitCount = 73 +7728189 ripCount = 58 +7728190 locktype1 = 2 +7728190 locktype2 = 9 +7728191 locktype3 = 8 +7728191 goalCount = 0 +7728192 goalTotal = 50 +7728192 otherCount = 73 +~~~ +7728193 CURRENTGOAL IS [1] +~~~ +7732180 UP 8 +7732180 128 255 +~~~ +~~~ +7732779 DOWN 8 +7732779 0 255 +~~~ +~~~ +7732803 0 254 +~~~ +~~~ +7732805 0 252 +~~~ +~~~ +7732807 0 248 +~~~ +~~~ +7732809 0 240 +~~~ +~~~ +7732811 0 224 +~~~ +~~~ +7732812 0 192 +~~~ +~~~ +7732814 0 128 +~~~ +~~~ +7732816 0 0 +~~~ +~~~ +7732818 0 512 +7732819 homeCount = 142 +7732819 waitCount = 73 +7732820 ripCount = 58 +7732820 locktype1 = 2 +7732821 locktype2 = 9 +7732842 locktype3 = 8 +7732842 goalCount = 0 +7732843 goalTotal = 50 +7732843 otherCount = 74 +~~~ +7738334 UP 10 +7738334 waslock = 0 +7738334 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7738360 512 16777728 +~~~ +7738509 512 512 +7743306 DOWN 10 +7743306 0 512 +~~~ +~~~ +7743322 0 1536 +~~~ +~~~ +7743324 0 1024 +7743325 homeCount = 143 +7743326 waitCount = 73 +7743326 ripCount = 58 +7743327 locktype1 = 2 +7743327 locktype2 = 9 +7743328 locktype3 = 8 +7743328 goalCount = 0 +7743329 goalTotal = 50 +7743329 otherCount = 74 +~~~ +7743362 UP 10 +7743363 waslock = 0 +7743362 512 1024 +~~~ +7743405 DOWN 10 +7743405 0 1024 +~~~ +~~~ +~~~ +~~~ +7743418 homeCount = 143 +7743418 waitCount = 73 +7743419 ripCount = 58 +7743419 locktype1 = 2 +7743419 locktype2 = 9 +7743420 locktype3 = 8 +7743420 goalCount = 0 +7743421 goalTotal = 50 +7743421 otherCount = 74 +~~~ +7745977 UP 11 +7745977 1024 1024 +7748173 DOWN 11 +7748173 0 1024 +7748196 UP 11 +7748196 1024 1024 +7748905 DOWN 11 +7748905 0 1024 +7748925 UP 11 +7748925 1024 1024 +7748966 DOWN 11 +7748966 0 1024 +7748995 UP 11 +7748995 1024 1024 +7749281 DOWN 11 +7749281 0 1024 +7749328 UP 11 +7749328 1024 1024 +7749977 BEEP1 +7749977 BEEP2 +~~~ +~~~ +~~~ +7750008 1024 33555456 +~~~ +7750158 1024 1024 +7750253 DOWN 11 +7750253 0 1024 +7750272 UP 11 +7750272 1024 1024 +7750402 DOWN 11 +7750402 0 1024 +7750430 UP 11 +7750430 1024 1024 +~~~ +~~~ +7750674 1024 0 +~~~ +~~~ +7750675 1024 1 +~~~ +~~~ +7750677 1024 3 +~~~ +~~~ +7750679 1024 7 +~~~ +~~~ +7750681 1024 15 +~~~ +~~~ +7750683 1024 31 +~~~ +~~~ +7750685 1024 63 +~~~ +~~~ +7750686 1024 127 +~~~ +~~~ +7750688 1024 255 +7750689 homeCount = 143 +7750690 waitCount = 73 +7750690 ripCount = 59 +7750691 locktype1 = 2 +7750711 locktype2 = 9 +7750712 locktype3 = 8 +7750712 goalCount = 0 +7750713 goalTotal = 50 +7750713 otherCount = 74 +~~~ +7750714 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7750742 homeCount = 143 +7750743 waitCount = 73 +7750743 ripCount = 59 +7750744 locktype1 = 2 +7750744 locktype2 = 9 +7750744 locktype3 = 8 +7750745 goalCount = 0 +7750745 goalTotal = 50 +7750746 otherCount = 74 +~~~ +7750747 CURRENTGOAL IS [1] +~~~ +7757155 DOWN 11 +7757155 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7757187 UP 11 +7757187 1024 255 +~~~ +~~~ +~~~ +7757191 homeCount = 143 +7757191 waitCount = 73 +7757192 ripCount = 59 +7757192 locktype1 = 2 +7757193 locktype2 = 9 +7757193 locktype3 = 8 +7757194 goalCount = 0 +7757194 goalTotal = 50 +7757195 otherCount = 74 +~~~ +7757196 CURRENTGOAL IS [1] +~~~ +7757216 DOWN 11 +7757216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7757258 homeCount = 143 +7757259 waitCount = 73 +7757259 ripCount = 59 +7757260 locktype1 = 2 +7757260 locktype2 = 9 +7757261 locktype3 = 8 +7757261 goalCount = 0 +7757262 goalTotal = 50 +7757262 otherCount = 74 +~~~ +7757263 CURRENTGOAL IS [1] +~~~ +7757290 UP 11 +7757290 1024 255 +7758580 DOWN 11 +7758580 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +7758604 UP 11 +7758604 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758616 homeCount = 143 +7758617 waitCount = 73 +7758617 ripCount = 59 +7758618 locktype1 = 2 +7758618 locktype2 = 9 +7758619 locktype3 = 8 +7758619 goalCount = 0 +7758620 goalTotal = 50 +7758620 otherCount = 74 +~~~ +7758621 CURRENTGOAL IS [1] +~~~ +7758633 DOWN 11 +7758633 0 255 +7758654 UP 11 +7758654 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758676 homeCount = 143 +7758677 waitCount = 73 +7758677 ripCount = 59 +7758678 locktype1 = 2 +7758678 locktype2 = 9 +7758679 locktype3 = 8 +7758679 goalCount = 0 +7758680 goalTotal = 50 +7758680 otherCount = 74 +~~~ +7758681 CURRENTGOAL IS [1] +~~~ +7758900 DOWN 11 +7758900 0 255 +7758918 UP 11 +7758918 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758939 homeCount = 143 +7758939 waitCount = 73 +7758940 ripCount = 59 +7758940 locktype1 = 2 +7758941 locktype2 = 9 +7758941 locktype3 = 8 +7758942 goalCount = 0 +7758942 goalTotal = 50 +7758943 otherCount = 74 +~~~ +7758944 CURRENTGOAL IS [1] +~~~ +7758953 DOWN 11 +7758953 0 255 +7758981 UP 11 +7758981 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7759001 homeCount = 143 +7759001 waitCount = 73 +7759002 ripCount = 59 +7759002 locktype1 = 2 +7759003 locktype2 = 9 +7759003 locktype3 = 8 +7759004 goalCount = 0 +7759004 goalTotal = 50 +7759005 otherCount = 74 +~~~ +7759006 CURRENTGOAL IS [1] +~~~ +7760612 DOWN 11 +7760612 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7760649 homeCount = 143 +7760649 waitCount = 73 +7760650 ripCount = 59 +7760650 locktype1 = 2 +7760651 locktype2 = 9 +7760651 locktype3 = 8 +7760652 goalCount = 0 +7760652 goalTotal = 50 +7760653 otherCount = 74 +~~~ +7760654 CURRENTGOAL IS [1] +~~~ +7766970 UP 4 +7766970 8 255 +~~~ +~~~ +7767557 DOWN 4 +7767557 0 255 +~~~ +~~~ +7767576 0 254 +~~~ +~~~ +7767578 0 252 +~~~ +~~~ +7767579 0 248 +~~~ +~~~ +7767581 0 240 +~~~ +~~~ +7767583 0 224 +~~~ +~~~ +7767585 0 192 +~~~ +~~~ +7767587 0 128 +~~~ +~~~ +7767589 0 0 +~~~ +~~~ +7767591 0 512 +7767591 homeCount = 143 +7767592 waitCount = 73 +7767592 ripCount = 59 +7767593 locktype1 = 2 +7767593 locktype2 = 9 +7767615 locktype3 = 8 +7767615 goalCount = 0 +7767616 goalTotal = 50 +7767616 otherCount = 75 +~~~ +7772489 UP 10 +7772489 waslock = 0 +7772489 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7772523 512 16777728 +~~~ +7772673 512 512 +7772757 DOWN 10 +7772757 0 512 +~~~ +~~~ +7772776 0 1536 +~~~ +~~~ +7772778 0 1024 +7772779 homeCount = 144 +7772780 waitCount = 73 +7772780 ripCount = 59 +7772781 locktype1 = 2 +7772781 locktype2 = 9 +7772782 locktype3 = 8 +7772782 goalCount = 0 +7772783 goalTotal = 50 +7772783 otherCount = 75 +~~~ +7772786 UP 10 +7772786 waslock = 0 +7772786 512 1024 +~~~ +7776498 DOWN 10 +7776498 0 1024 +~~~ +~~~ +~~~ +~~~ +7776519 homeCount = 144 +7776520 waitCount = 73 +7776520 ripCount = 59 +7776521 locktype1 = 2 +7776521 locktype2 = 9 +7776522 locktype3 = 8 +7776522 goalCount = 0 +7776523 goalTotal = 50 +7776523 otherCount = 75 +~~~ +7778339 UP 11 +7778339 1024 1024 +7781339 BEEP1 +7781339 BEEP2 +~~~ +~~~ +~~~ +7781360 1024 33555456 +~~~ +7781510 1024 1024 +7790808 DOWN 11 +7790808 0 1024 +~~~ +~~~ +7790827 0 0 +~~~ +~~~ +7790829 0 1 +~~~ +~~~ +7790831 0 3 +~~~ +~~~ +7790833 0 7 +~~~ +~~~ +7790835 0 15 +~~~ +~~~ +7790836 0 31 +~~~ +~~~ +7790838 0 63 +~~~ +~~~ +7790840 0 127 +~~~ +~~~ +7790842 0 255 +7790843 homeCount = 144 +7790843 waitCount = 73 +7790844 ripCount = 60 +7790844 locktype1 = 2 +7790845 locktype2 = 9 +7790866 locktype3 = 8 +7790866 goalCount = 0 +7790867 goalTotal = 50 +7790867 otherCount = 75 +~~~ +7790868 CURRENTGOAL IS [1] +~~~ +7817653 UP 5 +7817653 16 255 +~~~ +~~~ +7817945 DOWN 5 +7817945 0 255 +~~~ +~~~ +7817966 0 254 +~~~ +~~~ +7817968 0 252 +~~~ +~~~ +7817970 0 248 +~~~ +~~~ +7817972 0 240 +~~~ +~~~ +7817974 0 224 +~~~ +~~~ +7817976 0 192 +~~~ +~~~ +7817977 0 128 +~~~ +~~~ +7817979 0 0 +~~~ +~~~ +7817981 0 512 +7817982 homeCount = 144 +7817983 waitCount = 73 +7817983 ripCount = 60 +7817984 locktype1 = 2 +7817984 locktype2 = 9 +7818005 locktype3 = 8 +7818005 goalCount = 0 +7818006 goalTotal = 50 +7818006 otherCount = 76 +~~~ +7818129 16 512 +7819084 DOWN 5 +7819084 0 512 +7819102 16 512 +7819229 DOWN 5 +7819229 0 512 +7819556 16 512 +7819594 DOWN 5 +7819594 0 512 +7824936 UP 10 +7824937 waslock = 0 +7824936 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7824966 512 16777728 +~~~ +7825116 512 512 +7825293 DOWN 10 +7825293 0 512 +~~~ +~~~ +7825317 0 1536 +~~~ +~~~ +7825319 0 1024 +7825320 homeCount = 145 +7825321 waitCount = 73 +7825321 ripCount = 60 +7825322 locktype1 = 2 +7825322 locktype2 = 9 +7825323 locktype3 = 8 +7825323 goalCount = 0 +7825324 goalTotal = 50 +7825324 otherCount = 76 +~~~ +7825341 UP 10 +7825341 waslock = 0 +7825341 512 1024 +~~~ +7829403 DOWN 10 +7829403 0 1024 +~~~ +~~~ +~~~ +~~~ +7829431 homeCount = 145 +7829431 waitCount = 73 +7829432 ripCount = 60 +7829432 locktype1 = 2 +7829433 locktype2 = 9 +7829433 locktype3 = 8 +7829434 goalCount = 0 +7829434 goalTotal = 50 +7829435 otherCount = 76 +~~~ +7829941 UP 10 +7829941 waslock = 0 +7829941 512 1024 +~~~ +7831848 DOWN 10 +7831848 0 1024 +~~~ +~~~ +~~~ +~~~ +7831870 homeCount = 145 +7831871 waitCount = 73 +7831871 ripCount = 60 +7831872 locktype1 = 2 +7831872 locktype2 = 9 +7831872 locktype3 = 8 +7831873 goalCount = 0 +7831873 goalTotal = 50 +7831874 otherCount = 76 +~~~ +7831894 UP 10 +7831894 waslock = 0 +7831894 512 1024 +~~~ +7831944 DOWN 10 +7831944 0 1024 +~~~ +~~~ +~~~ +~~~ +7831972 homeCount = 145 +7831972 waitCount = 73 +7831973 ripCount = 60 +7831973 locktype1 = 2 +7831974 locktype2 = 9 +7831974 locktype3 = 8 +7831975 goalCount = 0 +7831975 goalTotal = 50 +7831976 otherCount = 76 +~~~ +7835528 UP 11 +7835528 1024 1024 +7837151 DOWN 11 +7837151 0 1024 +7837163 UP 11 +7837163 1024 1024 +7837648 DOWN 11 +7837648 0 1024 +7837684 UP 11 +7837684 1024 1024 +7838242 DOWN 11 +7838242 0 1024 +7838271 UP 11 +7838271 1024 1024 +7840891 DOWN 11 +7840891 0 1024 +7840902 UP 11 +7840902 1024 1024 +7842529 BEEP1 +7842529 BEEP2 +~~~ +~~~ +~~~ +7842549 1024 33555456 +~~~ +7842699 1024 1024 +7849088 DOWN 11 +7849088 0 1024 +~~~ +~~~ +7849110 0 0 +~~~ +~~~ +7849112 0 1 +~~~ +~~~ +7849114 0 3 +~~~ +~~~ +7849116 0 7 +~~~ +~~~ +7849118 0 15 +~~~ +~~~ +7849119 0 31 +~~~ +~~~ +7849121 0 63 +~~~ +~~~ +7849123 0 127 +~~~ +~~~ +7849125 0 255 +7849126 homeCount = 145 +7849126 waitCount = 73 +7849127 ripCount = 61 +7849127 locktype1 = 2 +7849128 locktype2 = 9 +7849128 locktype3 = 8 +7849149 goalCount = 0 +7849150 goalTotal = 50 +7849150 otherCount = 76 +~~~ +7849151 CURRENTGOAL IS [1] +~~~ +7855904 UP 1 +7855904 1 255 +~~~ +~~~ +7855933 outer reward +~~~ +7855933 1 65791 +~~~ +~~~ +7856383 1 255 +7864549 DOWN 1 +7864549 0 255 +~~~ +~~~ +7864571 0 254 +~~~ +~~~ +7864573 0 252 +~~~ +~~~ +7864574 0 248 +~~~ +~~~ +7864576 0 240 +~~~ +~~~ +7864578 0 224 +~~~ +~~~ +7864580 0 192 +~~~ +~~~ +7864582 0 128 +~~~ +~~~ +7864583 0 0 +~~~ +~~~ +7864585 0 512 +7864586 homeCount = 145 +7864587 waitCount = 73 +7864587 ripCount = 61 +7864588 locktype1 = 2 +7864588 locktype2 = 9 +7864610 locktype3 = 8 +7864610 goalCount = 1 +7864610 goalTotal = 51 +7864611 otherCount = 76 +~~~ +7868827 UP 10 +7868828 waslock = 0 +7868827 512 512 +~~~ +~~~ +7868851 DOWN 10 +7868851 0 512 +~~~ +~~~ +~~~ +7868854 0 16777728 +~~~ +7868866 UP 10 +7868866 waslock = 0 +7868866 512 16777728 +~~~ +~~~ +7868870 512 16779776 +~~~ +~~~ +7868872 512 16779264 +7868873 homeCount = 146 +7868873 waitCount = 73 +7868874 ripCount = 61 +7868874 locktype1 = 2 +7868875 locktype2 = 9 +7868875 locktype3 = 8 +7868876 goalCount = 1 +7868876 goalTotal = 51 +7868897 otherCount = 76 +~~~ +~~~ +7869004 512 2048 +7872166 DOWN 10 +7872166 0 2048 +~~~ +~~~ +~~~ +7872190 UP 10 +7872191 waslock = 0 +7872190 512 2048 +~~~ +7872192 homeCount = 146 +7872193 waitCount = 73 +7872193 ripCount = 61 +7872194 locktype1 = 2 +7872194 locktype2 = 9 +7872195 locktype3 = 8 +7872195 goalCount = 1 +7872196 goalTotal = 51 +7872196 otherCount = 76 +~~~ +~~~ +7872268 DOWN 10 +7872268 0 2048 +~~~ +~~~ +~~~ +~~~ +7872293 homeCount = 146 +7872293 waitCount = 73 +7872294 ripCount = 61 +7872294 locktype1 = 2 +7872295 locktype2 = 9 +7872295 locktype3 = 8 +7872296 goalCount = 1 +7872296 goalTotal = 51 +7872297 otherCount = 76 +~~~ +7872341 UP 10 +7872341 waslock = 0 +7872341 512 2048 +~~~ +7872384 DOWN 10 +7872384 0 2048 +~~~ +~~~ +~~~ +~~~ +7872419 homeCount = 146 +7872419 waitCount = 73 +7872420 ripCount = 61 +7872420 locktype1 = 2 +7872421 locktype2 = 9 +7872421 locktype3 = 8 +7872421 goalCount = 1 +7872422 goalTotal = 51 +7872422 otherCount = 76 +~~~ +7874412 UP 12 +7874412 2048 2048 +7877331 DOWN 12 +7877331 0 2048 +7877347 UP 12 +7877347 2048 2048 +7877792 DOWN 12 +7877792 0 2048 +7877797 UP 12 +7877796 2048 2048 +7877912 CLICK1 +7877912 CLICK2 +~~~ +~~~ +~~~ +7877935 2048 67110912 +~~~ +7878085 2048 2048 +7885038 DOWN 12 +7885038 0 2048 +~~~ +~~~ +7885060 0 0 +~~~ +~~~ +7885062 0 1 +~~~ +~~~ +7885064 0 3 +~~~ +~~~ +7885065 0 7 +~~~ +~~~ +7885067 0 15 +~~~ +~~~ +7885069 0 31 +~~~ +~~~ +7885071 0 63 +~~~ +~~~ +7885073 0 127 +~~~ +~~~ +7885074 0 255 +7885075 homeCount = 146 +7885076 waitCount = 74 +7885077 ripCount = 61 +7885077 locktype1 = 2 +7885078 locktype2 = 9 +7885099 locktype3 = 8 +7885099 goalCount = 1 +7885100 goalTotal = 51 +7885100 otherCount = 76 +~~~ +7885101 CURRENTGOAL IS [1] +~~~ +7894917 UP 8 +7894917 128 255 +~~~ +~~~ +7895450 DOWN 8 +7895450 0 255 +~~~ +~~~ +7895471 0 254 +~~~ +~~~ +7895473 0 252 +~~~ +~~~ +7895474 0 248 +~~~ +~~~ +7895476 0 240 +~~~ +~~~ +7895478 0 224 +~~~ +~~~ +7895480 0 192 +~~~ +~~~ +7895482 0 128 +~~~ +~~~ +7895484 0 0 +~~~ +~~~ +7895485 0 512 +7895486 homeCount = 146 +7895487 waitCount = 74 +7895487 ripCount = 61 +7895488 locktype1 = 2 +7895488 locktype2 = 9 +7895510 locktype3 = 8 +7895510 goalCount = 1 +7895511 goalTotal = 51 +7895511 otherCount = 77 +~~~ +7895776 128 512 +7895968 DOWN 8 +7895968 0 512 +7896139 128 512 +7896189 DOWN 8 +7896189 0 512 +7900458 UP 10 +7900458 waslock = 0 +7900458 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7900487 512 16777728 +~~~ +7900637 512 512 +7900779 DOWN 10 +7900779 0 512 +~~~ +~~~ +7900802 0 2560 +~~~ +~~~ +7900804 0 2048 +7900805 homeCount = 147 +7900805 waitCount = 74 +7900806 ripCount = 61 +7900806 locktype1 = 2 +7900807 locktype2 = 9 +7900807 locktype3 = 8 +7900808 goalCount = 1 +7900808 goalTotal = 51 +7900809 otherCount = 77 +~~~ +7900813 UP 10 +7900814 waslock = 0 +7900813 512 2048 +~~~ +7906111 DOWN 10 +7906111 0 2048 +~~~ +~~~ +~~~ +~~~ +7906135 homeCount = 147 +7906135 waitCount = 74 +7906136 ripCount = 61 +7906136 locktype1 = 2 +7906137 locktype2 = 9 +7906137 locktype3 = 8 +7906137 goalCount = 1 +7906138 goalTotal = 51 +7906138 otherCount = 77 +~~~ +7906159 UP 10 +7906159 waslock = 0 +7906159 512 2048 +~~~ +7906195 DOWN 10 +7906195 0 2048 +~~~ +~~~ +~~~ +~~~ +7906236 homeCount = 147 +7906236 waitCount = 74 +7906237 ripCount = 61 +7906237 locktype1 = 2 +7906238 locktype2 = 9 +7906238 locktype3 = 8 +7906239 goalCount = 1 +7906239 goalTotal = 51 +7906240 otherCount = 77 +~~~ +7908017 UP 12 +7908017 2048 2048 +7911017 CLICK1 +7911017 CLICK2 +~~~ +~~~ +~~~ +7911043 2048 67110912 +~~~ +7911193 2048 2048 +7911194 DOWN 12 +7911194 0 2048 +7911200 UP 12 +7911200 2048 2048 +~~~ +~~~ +7911226 2048 0 +~~~ +~~~ +7911228 2048 1 +~~~ +~~~ +7911230 2048 3 +~~~ +~~~ +7911232 2048 7 +~~~ +~~~ +7911233 2048 15 +~~~ +~~~ +7911235 2048 31 +~~~ +~~~ +7911237 2048 63 +~~~ +~~~ +7911239 2048 127 +~~~ +~~~ +7911241 2048 255 +7911242 homeCount = 147 +7911242 waitCount = 75 +7911243 ripCount = 61 +7911243 locktype1 = 2 +7911264 locktype2 = 9 +7911265 locktype3 = 8 +7911265 goalCount = 1 +7911265 goalTotal = 51 +7911266 otherCount = 77 +~~~ +7911267 CURRENTGOAL IS [1] +~~~ +7911361 DOWN 12 +7911361 0 255 +7911380 UP 12 +7911380 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7911397 homeCount = 147 +7911398 waitCount = 75 +7911399 ripCount = 61 +7911399 locktype1 = 2 +7911400 locktype2 = 9 +7911400 locktype3 = 8 +7911400 goalCount = 1 +7911401 goalTotal = 51 +7911401 otherCount = 77 +~~~ +7911403 CURRENTGOAL IS [1] +~~~ +7919722 DOWN 12 +7919722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7919758 homeCount = 147 +7919759 waitCount = 75 +7919759 ripCount = 61 +7919760 locktype1 = 2 +7919760 locktype2 = 9 +7919761 locktype3 = 8 +7919761 goalCount = 1 +7919762 goalTotal = 51 +7919762 otherCount = 77 +~~~ +7919763 CURRENTGOAL IS [1] +~~~ +7919799 UP 12 +7919799 2048 255 +7919845 DOWN 12 +7919845 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7919877 homeCount = 147 +7919877 waitCount = 75 +7919878 ripCount = 61 +7919878 locktype1 = 2 +7919879 locktype2 = 9 +7919879 locktype3 = 8 +7919880 goalCount = 1 +7919880 goalTotal = 51 +7919881 otherCount = 77 +~~~ +7919882 CURRENTGOAL IS [1] +~~~ +7928018 UP 3 +7928018 4 255 +~~~ +~~~ +7928533 DOWN 3 +7928533 0 255 +~~~ +~~~ +7928553 0 254 +~~~ +~~~ +7928555 0 252 +~~~ +~~~ +7928557 0 248 +~~~ +~~~ +7928558 0 240 +~~~ +~~~ +7928560 0 224 +~~~ +~~~ +7928562 0 192 +~~~ +~~~ +7928564 0 128 +~~~ +~~~ +7928566 0 0 +~~~ +~~~ +7928568 0 512 +7928569 homeCount = 147 +7928569 waitCount = 75 +7928570 ripCount = 61 +7928570 locktype1 = 2 +7928570 locktype2 = 9 +7928592 locktype3 = 8 +7928592 goalCount = 1 +7928593 goalTotal = 51 +7928593 otherCount = 78 +~~~ +7932281 UP 10 +7932281 waslock = 0 +7932281 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7932304 512 16777728 +~~~ +7932453 512 512 +7932498 DOWN 10 +7932498 0 512 +~~~ +7932518 UP 10 +7932518 waslock = 0 +7932518 512 512 +~~~ +~~~ +~~~ +7932520 512 2048 +7932521 homeCount = 148 +7932522 waitCount = 75 +7932522 ripCount = 61 +7932523 locktype1 = 2 +7932523 locktype2 = 9 +7932524 locktype3 = 8 +7932524 goalCount = 1 +7932525 goalTotal = 51 +7932546 otherCount = 78 +~~~ +~~~ +7933232 DOWN 10 +7933232 0 2048 +~~~ +~~~ +~~~ +~~~ +7933254 homeCount = 148 +7933255 waitCount = 75 +7933255 ripCount = 61 +7933256 locktype1 = 2 +7933256 locktype2 = 9 +7933256 locktype3 = 8 +7933257 goalCount = 1 +7933257 goalTotal = 51 +7933258 otherCount = 78 +~~~ +7933259 UP 10 +7933259 waslock = 0 +7933258 512 2048 +~~~ +7936681 DOWN 10 +7936681 0 2048 +~~~ +~~~ +~~~ +~~~ +7936705 homeCount = 148 +7936705 waitCount = 75 +7936706 ripCount = 61 +7936706 locktype1 = 2 +7936706 locktype2 = 9 +7936707 locktype3 = 8 +7936707 goalCount = 1 +7936708 goalTotal = 51 +7936708 otherCount = 78 +~~~ +7938394 UP 12 +7938394 2048 2048 +7941781 DOWN 12 +7941781 0 2048 +7941837 UP 12 +7941837 2048 2048 +7941956 DOWN 12 +7941956 0 2048 +7941983 UP 12 +7941983 2048 2048 +7943894 CLICK1 +7943894 CLICK2 +~~~ +~~~ +~~~ +7943913 2048 67110912 +~~~ +7944063 2048 2048 +7950204 DOWN 12 +7950204 0 2048 +~~~ +~~~ +7950231 0 0 +~~~ +~~~ +7950233 0 1 +~~~ +~~~ +7950235 0 3 +~~~ +~~~ +7950237 0 7 +~~~ +~~~ +7950238 0 15 +~~~ +~~~ +7950240 0 31 +~~~ +~~~ +7950242 0 63 +~~~ +~~~ +7950244 0 127 +~~~ +~~~ +7950246 0 255 +7950247 homeCount = 148 +7950247 waitCount = 76 +7950248 ripCount = 61 +7950248 locktype1 = 2 +7950249 locktype2 = 9 +7950249 locktype3 = 8 +7950270 goalCount = 1 +7950271 goalTotal = 51 +7950271 otherCount = 78 +~~~ +7950272 CURRENTGOAL IS [1] +~~~ +7956075 UP 1 +7956075 1 255 +~~~ +~~~ +7956097 outer reward +~~~ +7956097 1 65791 +~~~ +~~~ +7956547 1 255 +7965194 DOWN 1 +7965194 0 255 +~~~ +~~~ +7965214 0 254 +~~~ +~~~ +7965216 0 252 +~~~ +~~~ +7965217 0 248 +~~~ +~~~ +7965219 0 240 +~~~ +~~~ +7965221 0 224 +~~~ +~~~ +7965223 0 192 +~~~ +~~~ +7965225 0 128 +~~~ +~~~ +7965226 0 0 +~~~ +~~~ +7965228 0 512 +7965229 homeCount = 148 +7965230 waitCount = 76 +7965230 ripCount = 61 +7965231 locktype1 = 2 +7965231 locktype2 = 9 +7965252 locktype3 = 8 +7965253 goalCount = 2 +7965253 goalTotal = 52 +7965254 otherCount = 78 +~~~ +7965254 1 512 +7965322 DOWN 1 +7965322 0 512 +7965364 1 512 +7969410 DOWN 1 +7969410 0 512 +7973544 UP 10 +7973544 waslock = 0 +7973543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7973568 512 16777728 +~~~ +7973718 512 512 +7978713 DOWN 10 +7978713 0 512 +~~~ +~~~ +7978733 0 1536 +~~~ +~~~ +7978735 0 1024 +7978736 homeCount = 149 +7978736 waitCount = 76 +7978737 ripCount = 61 +7978737 locktype1 = 2 +7978738 locktype2 = 9 +7978738 locktype3 = 8 +7978739 goalCount = 2 +7978739 goalTotal = 52 +7978740 otherCount = 78 +~~~ +7978779 UP 10 +7978779 waslock = 0 +7978779 512 1024 +~~~ +7978830 DOWN 10 +7978830 0 1024 +~~~ +~~~ +~~~ +~~~ +7978858 homeCount = 149 +7978859 waitCount = 76 +7978859 ripCount = 61 +7978860 locktype1 = 2 +7978860 locktype2 = 9 +7978861 locktype3 = 8 +7978861 goalCount = 2 +7978862 goalTotal = 52 +7978862 otherCount = 78 +~~~ +7980517 UP 11 +7980517 1024 1024 +7983057 DOWN 11 +7983057 0 1024 +7983112 UP 11 +7983112 1024 1024 +7984017 BEEP1 +7984017 BEEP2 +~~~ +~~~ +~~~ +7984035 1024 33555456 +~~~ +7984185 1024 1024 +7992797 DOWN 11 +7992797 0 1024 +~~~ +~~~ +7992824 0 0 +~~~ +7992825 UP 11 +7992825 1024 0 +~~~ +~~~ +7992827 1024 1 +~~~ +~~~ +7992829 1024 3 +~~~ +7992830 1024 7 +~~~ +~~~ +7992831 1024 15 +~~~ +~~~ +7992833 1024 31 +~~~ +~~~ +7992835 1024 63 +~~~ +~~~ +7992837 1024 127 +~~~ +~~~ +7992838 1024 255 +7992840 homeCount = 149 +7992861 waitCount = 76 +7992861 ripCount = 62 +7992862 locktype1 = 2 +7992862 locktype2 = 9 +7992863 locktype3 = 8 +7992863 goalCount = 2 +7992864 goalTotal = 52 +7992864 otherCount = 78 +~~~ +7992865 CURRENTGOAL IS [1] +~~~ +7994733 DOWN 11 +7994733 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7994771 homeCount = 149 +7994772 waitCount = 76 +7994772 ripCount = 62 +7994773 locktype1 = 2 +7994773 locktype2 = 9 +7994774 locktype3 = 8 +7994774 goalCount = 2 +7994775 goalTotal = 52 +7994775 otherCount = 78 +~~~ +7994776 CURRENTGOAL IS [1] +~~~ +7994783 UP 11 +7994783 1024 255 +7994819 DOWN 11 +7994819 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7994853 homeCount = 149 +7994853 waitCount = 76 +7994854 ripCount = 62 +7994854 locktype1 = 2 +7994855 locktype2 = 9 +7994855 locktype3 = 8 +7994856 goalCount = 2 +7994856 goalTotal = 52 +7994856 otherCount = 78 +~~~ +7994858 CURRENTGOAL IS [1] +~~~ +7999561 UP 1 +7999561 1 255 +~~~ +~~~ +7999580 outer reward +~~~ +7999581 1 65791 +~~~ +~~~ +7999876 DOWN 1 +7999876 0 65791 +7999895 1 65791 +~~~ +~~~ +7999897 1 65790 +~~~ +~~~ +7999899 1 65788 +~~~ +~~~ +7999901 1 65784 +~~~ +~~~ +7999903 1 65776 +~~~ +~~~ +7999905 1 65760 +~~~ +~~~ +7999907 1 65728 +~~~ +~~~ +7999908 1 65664 +~~~ +~~~ +7999910 1 65536 +~~~ +~~~ +7999912 1 66048 +7999913 homeCount = 149 +7999914 waitCount = 76 +7999914 ripCount = 62 +7999915 locktype1 = 2 +7999935 locktype2 = 9 +7999936 locktype3 = 8 +7999936 goalCount = 3 +7999937 goalTotal = 53 +7999937 otherCount = 78 +~~~ +8000030 1 512 +8010845 DOWN 1 +8010845 0 512 +8010907 1 512 +8010958 DOWN 1 +8010958 0 512 +8011043 1 512 +8011084 DOWN 1 +8011084 0 512 +8015421 UP 10 +8015421 waslock = 0 +8015421 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +8015455 512 16777728 +~~~ +8015605 512 512 +8018818 DOWN 10 +8018818 0 512 +~~~ +~~~ +8018839 0 2560 +~~~ +~~~ +8018841 0 2048 +8018842 homeCount = 150 +8018843 waitCount = 76 +8018843 ripCount = 62 +8018844 locktype1 = 2 +8018844 locktype2 = 9 +8018845 locktype3 = 8 +8018845 goalCount = 3 +8018846 goalTotal = 53 +8018846 otherCount = 78 +~~~ +8018847 UP 10 +8018867 waslock = 0 +8018847 512 2048 +~~~ +8018914 DOWN 10 +8018913 0 2048 +~~~ +~~~ +~~~ +~~~ +8018945 homeCount = 150 +8018945 waitCount = 76 +8018946 ripCount = 62 +8018946 locktype1 = 2 +8018946 locktype2 = 9 +8018947 locktype3 = 8 +8018947 goalCount = 3 +8018948 goalTotal = 53 +8018948 otherCount = 78 +~~~ +8020546 UP 12 +8020546 2048 2048 +8023546 CLICK1 +8023546 CLICK2 +~~~ +~~~ +~~~ +8023571 2048 67110912 +~~~ +8023721 2048 2048 +8031115 DOWN 12 +8031115 0 2048 +~~~ +~~~ +8031138 0 0 +~~~ +8031140 UP 12 +8031140 2048 0 +~~~ +~~~ +8031142 2048 1 +~~~ +~~~ +8031143 2048 3 +~~~ +8031144 2048 7 +~~~ +~~~ +8031146 2048 15 +~~~ +~~~ +8031148 2048 31 +~~~ +~~~ +8031149 2048 63 +~~~ +~~~ +8031151 2048 127 +~~~ +~~~ +8031153 2048 255 +8031154 homeCount = 150 +8031175 waitCount = 77 +8031176 ripCount = 62 +8031176 locktype1 = 2 +8031177 locktype2 = 9 +8031177 locktype3 = 8 +8031178 goalCount = 3 +8031178 goalTotal = 53 +8031179 otherCount = 78 +~~~ +8031180 CURRENTGOAL IS [1] +~~~ +8031198 DOWN 12 +8031198 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8031228 homeCount = 150 +8031228 waitCount = 77 +8031229 ripCount = 62 +8031229 locktype1 = 2 +8031230 locktype2 = 9 +8031230 locktype3 = 8 +8031231 goalCount = 3 +8031231 goalTotal = 53 +8031231 otherCount = 78 +~~~ +8031233 CURRENTGOAL IS [1] +~~~ +8031282 UP 12 +8031282 2048 255 +8032109 DOWN 12 +8032109 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8032146 homeCount = 150 +8032146 waitCount = 77 +8032147 ripCount = 62 +8032148 locktype1 = 2 +8032148 locktype2 = 9 +8032148 locktype3 = 8 +8032149 goalCount = 3 +8032149 goalTotal = 53 +8032150 otherCount = 78 +~~~ +8032151 CURRENTGOAL IS [1] +~~~ +8032154 UP 12 +8032154 2048 255 +8032202 DOWN 12 +8032202 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8032236 homeCount = 150 +8032236 waitCount = 77 +8032237 ripCount = 62 +8032237 locktype1 = 2 +8032238 locktype2 = 9 +8032238 locktype3 = 8 +8032239 goalCount = 3 +8032239 goalTotal = 53 +8032240 otherCount = 78 +~~~ +8032241 CURRENTGOAL IS [1] +~~~ +8035149 UP 1 +8035149 1 255 +~~~ +~~~ +8035173 outer reward +~~~ +8035174 1 65791 +~~~ +~~~ +8035421 DOWN 1 +8035421 0 65791 +~~~ +~~~ +8035442 0 65790 +~~~ +~~~ +8035444 0 65788 +~~~ +~~~ +8035445 0 65784 +~~~ +~~~ +8035447 0 65776 +~~~ +~~~ +8035449 0 65760 +~~~ +~~~ +8035451 0 65728 +~~~ +~~~ +8035453 0 65664 +~~~ +8035454 1 65664 +~~~ +~~~ +8035456 1 65536 +~~~ +8035457 1 66048 +8035458 homeCount = 150 +8035458 waitCount = 77 +8035459 ripCount = 62 +8035480 locktype1 = 2 +8035481 locktype2 = 9 +8035481 locktype3 = 8 +8035481 goalCount = 4 +8035482 goalTotal = 54 +8035482 otherCount = 78 +~~~ +8035623 1 512 +8047000 DOWN 1 +8047000 0 512 +8047011 1 512 +8047114 DOWN 1 +8047114 0 512 +8047158 1 512 +8047251 DOWN 1 +8047251 0 512 +8047290 1 512 +8047390 DOWN 1 +8047390 0 512 +8047404 1 512 +8047629 DOWN 1 +8047629 0 512 +8051873 UP 10 +8051873 waslock = 0 +8051873 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +8051906 512 16777728 +~~~ +8052056 512 512 +8057856 DOWN 10 +8057856 0 512 +~~~ +~~~ +8057882 0 1536 +~~~ +~~~ +8057884 0 1024 +8057885 homeCount = 151 +8057886 waitCount = 77 +8057886 ripCount = 62 +8057887 locktype1 = 2 +8057887 locktype2 = 9 +8057888 locktype3 = 8 +8057888 goalCount = 4 +8057889 goalTotal = 54 +8057889 otherCount = 78 +~~~ +8057925 UP 10 +8057925 waslock = 0 +8057925 512 1024 +~~~ +8057961 DOWN 10 +8057961 0 1024 +~~~ +~~~ +~~~ +~~~ +8057985 homeCount = 151 +8057985 waitCount = 77 +8057986 ripCount = 62 +8057986 locktype1 = 2 +8057987 locktype2 = 9 +8057987 locktype3 = 8 +8057988 goalCount = 4 +8057988 goalTotal = 54 +8057989 otherCount = 78 +~~~ +8059817 UP 11 +8059817 1024 1024 +8063817 BEEP1 +8063817 BEEP2 +~~~ +~~~ +~~~ +8063842 1024 33555456 +~~~ +8063992 1024 1024 +8074007 DOWN 11 +8074007 0 1024 +~~~ +~~~ +8074031 0 0 +~~~ +~~~ +8074033 0 1 +~~~ +~~~ +8074035 0 3 +~~~ +~~~ +8074037 0 7 +~~~ +~~~ +8074039 0 15 +~~~ +~~~ +8074041 0 31 +~~~ +~~~ +8074042 0 63 +~~~ +~~~ +8074044 0 127 +~~~ +~~~ +8074046 0 255 +8074047 homeCount = 151 +8074048 waitCount = 77 +8074048 ripCount = 63 +8074049 locktype1 = 2 +8074049 locktype2 = 9 +8074070 locktype3 = 8 +8074071 goalCount = 4 +8074071 goalTotal = 54 +8074072 otherCount = 78 +~~~ +8074073 CURRENTGOAL IS [1] +~~~ + + description: Statescript log r1 + task_epochs: 2, +, Statescript2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140181332891024 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +# +#import math +#import struct +#import re +#import time +#import random +#import numpy as np +#import pyaudio +#import wave +#from statistics import mean +## V8pre_forage +## visits to incorrect wells cause 5s lockout +## exception is repeat visit to prior well (is ok, no lockout) +## can go to any outer well, any number of times +## lockout from getting rip/wait wells wrong is also 5s +# +# +## decide what type of up trigger was just recieved; act accordingly +#def pokeIn(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# doHome() +# +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# doOuter(num) +# +## decide what type of down trigger was just recieved; act accordingly +#def pokeOut(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# global lastWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# endHome() +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# endWait() +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# endOuter() +# lastWell = currWell +# +##home poke: decide trial type and upcoming wait length; turn on lights accordingly +#def doHome(): +# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout +# global homePump +# global lastWell +# global currWell +# #global waitdist +# +# if trialtype == 0: +# opts = [1, 2] +# randnum = np.random.randint(0,2) #-1 +# trialtype = opts[randnum] +# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #randnum = np.random.randint(0,8) +# delaytime = chooseDelay() +# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") +# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime +# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC +# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") +# print("SCQTMESSAGE: trigger(1);\n") # deliver reward +# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: +# lockout([2,2]) +# +#def chooseDelay(): +# global trialtype +# global RWcount +# global waitdist +# global startwaitdist +# +# print(RWcount) +# +# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short +# return startwaitdist[RWcount[trialtype-1]] +# +# else: +# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist +# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) +# +# else: +# return int(np.random.choice(waitdist,1)) +# +# +#def endHome(): +# global trialtype +# global lastWell +# global homeWell +# global waitWells +# +# if trialtype == 1 or trialtype == 2: +# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +# +#def click(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# +# #generate_click() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC +# +#def beep(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# #generate_beep() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC +# +#def endWait(): +# global trialtype +# global goalWell +# global currWell +# global outerWells +# +# if trialtype == 3: # wait complete +# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): # turn on outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") +# +# +#def doOuter(val): +# global outerPumps +# global trialtype +# global allGoal +# global thisGoal +# global goalWell +# global outerReps +# global currWell +# global lastWell +# global homeWell +# global numgoals +# global validOuterWells +# global waslock +# +# if trialtype == 3: +# trialtype = 0 # outer satisfied, head home next +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# if currWell in goalWell : # repeated; reward +# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") +# print("SCQTMESSAGE: trigger(2);\n") # deliver reward +# allGoal+=1 +# thisGoal+=1 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC +# +# if thisGoal >= outerReps: #maxed repeats reached, time to switch +# print("time to choose new goalS!") +# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats +# chooseGoal() +# else: +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection +# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection +# print(goalWell) +# +# thisGoal = 0 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# +# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) +# goalWell = [currWell] +# +# else: # wrong well; add to forage record if newly visited +# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC +# +# elif trialtype < 3 and waslock<1: +# lockout([2,2]) +# +#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal +# global goalWell +# global oldGoals +# global numgoals +# global outerWells +# global forageNum +# #global outerReps +# +# oldGoals.append(goalWell) +# print(oldGoals) +# +# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms +# forageNum = 1 +# +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# if len(oldGoals)>7: # if all outers have been goal, reset +# print("resetting oldgoals") +# oldGoals = [None] +# +# while any(i in goalWell for i in oldGoals): #if any common elements +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# print(goalWell) +# +# outerReps = np.random.randint(4,13) +# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# print("new goal is "+str(goalWell)+"\n") +# +#def endOuter(): +# global trialtype +# global outerWells +# global homeWell +# global lastWell +# global currWell +# +# if trialtype == 0 and lastWell != currWell: # outer satisfied +# for num in range(len(outerWells)): # turn off outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +#def lockout(val): # turn off all lights for certain amount of time +# global waitWells +# global outerWells +# global lastWell +# global trialtype +# global waslock +# +# locktype = int(val[1]) +# trialtype = 4 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE +# #turn off all lights +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(waitWells)): #turn off all wait and outer well lights +# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# waslock=1 +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well +# if locktype == 1: +# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well +# if locktype == 2: +# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC +# if locktype == 3: +# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors +# +# +#def lockend(): +# global trialtype +# global homeWell +# +# trialtype = 0 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well +# print("SCQTMESSAGE: trigger(3);\n") +# +#def updateWaslock(val): +# global waslock +# +# waslock = int(val[1]) +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") +# +## Function: generate click sound +#def generate_click(): +# +# File='ZippoClick_short.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +## Function: generate cowbell sound +#def generate_beep(): +# +# File='Beep.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +#def makewhitenoise(): #play white noise for duration of lockout +# global locksoundlength +# +# soundlength = int(44100*locksoundlength/1000) +# p = pyaudio.PyAudio() +# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) +# whitenoise = np.random.randint(700,size = soundlength) +# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) +# stream.write(data) +# stream.close() +# p.terminate() +# +# +## This is the custom callback function. When events occur, addScQtEvent will +## call this function. This function MUST BE NAMED 'callback'!!!! +#def callback(line): +# +# global waslock +# +# if line.find("UP") >= 0: #input triggered +# pokeIn(re.findall(r'\d+',line)) +# if line.find("DOWN") >= 0: #input triggered +# pokeOut(re.findall(r'\d+',line)) +# if line.find("BEEP1") >= 0: # make a beep and deliver reward +# beep() +# if line.find("BEEP2") >= 0: # make a beep and deliver reward +# generate_beep() +# if line.find("CLICK1") >= 0: # make a click and deliver reward +# click() +# if line.find("CLICK2") >= 0: # make a click and deliver reward +# generate_click() +# if line.find("LOCKOUT") >= 0: # lockout procedure +# lockout(re.findall(r'\d+',line)) +# if line.find("LOCKEND") >= 0: # reset trialtype to 0 +# lockend() +# if line.find("WHITENOISE") >= 0: # make noise during lockout +# makewhitenoise() +# if line.find("waslock") >= 0: #update waslock value +# updateWaslock(re.findall(r'\d+',line)) +# +# +## define wells +#homeWell = 10 +#waitWells = [11,12] +#outerWells = [1,2,3,4,5,6,7,8] +##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num +## define pumps +#homePump = 25 +#waitPumps = [26, 27] +#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] +# +##global variables +#lastWell = -1 +#currWell = -1 +#trialtype = 0 +#outerReps = 10 +##outerReps = np.random.randint(4,13) #10 +#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# +#allGoal = 0 +#thisGoal = 0 +#numgoals = 1 # number of outer arms rewarded +#forageNum = 1 +#if numgoals == 1: +# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells +#else: +# goalWell = np.random.choice(outerWells,numgoals,replace=False) +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) +# +#oldGoals = [] #initialize with any wells to exclude from being goal +##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] +#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] +# +#startwaitdist = [1000, 1500, 2000] +# +#locksoundlength = 1000 +#print(goalWell) +#waslock=0 +#RWcount = [0,0 +# +17097908 UP 10 +17097909 waslock = 0 +17097908 512 512 +~~~ +~~~ +17097929 DOWN 10 +17097929 0 512 +~~~ +~~~ +~~~ +17097934 0 16777728 +~~~ +~~~ +~~~ +17097954 0 16779776 +~~~ +~~~ +17097956 0 16779264 +17097957 homeCount = 1 +17097957 waitCount = 0 +17097958 ripCount = 0 +17097958 locktype1 = 0 +17097959 locktype2 = 0 +17097959 locktype3 = 0 +17097960 goalCount = 0 +17097960 goalTotal = 0 +17097960 otherCount = 0 +~~~ +17098084 0 2048 +17098097 UP 10 +17098097 waslock = 0 +17098097 512 2048 +17098115 DOWN 10 +17098115 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098140 homeCount = 1 +17098140 waitCount = 0 +17098141 ripCount = 0 +17098141 locktype1 = 0 +17098142 locktype2 = 0 +17098142 locktype3 = 0 +17098143 goalCount = 0 +17098143 goalTotal = 0 +17098144 otherCount = 0 +~~~ +17098196 UP 10 +17098196 waslock = 0 +17098196 512 2048 +17098203 DOWN 10 +17098203 0 2048 +17098215 UP 10 +17098215 waslock = 0 +17098215 512 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098224 homeCount = 1 +17098224 waitCount = 0 +17098225 ripCount = 0 +17098225 locktype1 = 0 +17098226 locktype2 = 0 +17098226 locktype3 = 0 +17098227 goalCount = 0 +17098227 goalTotal = 0 +17098228 otherCount = 0 +~~~ +17098232 DOWN 10 +17098232 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098271 homeCount = 1 +17098271 waitCount = 0 +17098272 ripCount = 0 +17098272 locktype1 = 0 +17098273 locktype2 = 0 +17098273 locktype3 = 0 +17098274 goalCount = 0 +17098274 goalTotal = 0 +17098275 otherCount = 0 +~~~ +17098313 UP 10 +17098314 waslock = 0 +17098313 512 2048 +17098325 DOWN 10 +17098325 0 2048 +~~~ +~~~ +~~~ +17098341 UP 10 +17098341 waslock = 0 +17098340 512 2048 +~~~ +~~~ +17098343 homeCount = 1 +17098344 waitCount = 0 +17098344 ripCount = 0 +17098345 locktype1 = 0 +17098345 locktype2 = 0 +17098346 locktype3 = 0 +17098346 goalCount = 0 +17098347 goalTotal = 0 +17098368 otherCount = 0 +~~~ +17098368 DOWN 10 +17098368 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098389 homeCount = 1 +17098389 waitCount = 0 +17098390 ripCount = 0 +17098390 locktype1 = 0 +17098391 locktype2 = 0 +17098391 locktype3 = 0 +17098392 goalCount = 0 +17098392 goalTotal = 0 +17098393 otherCount = 0 +~~~ +17098443 UP 10 +17098443 waslock = 0 +17098443 512 2048 +~~~ +17098479 DOWN 10 +17098479 0 2048 +~~~ +~~~ +~~~ +~~~ +17098504 homeCount = 1 +17098504 waitCount = 0 +17098505 ripCount = 0 +17098505 locktype1 = 0 +17098505 locktype2 = 0 +17098506 locktype3 = 0 +17098506 goalCount = 0 +17098507 goalTotal = 0 +17098507 otherCount = 0 +~~~ +17098562 UP 10 +17098562 waslock = 0 +17098562 512 2048 +~~~ +17098607 DOWN 10 +17098607 0 2048 +~~~ +~~~ +~~~ +~~~ +17098626 homeCount = 1 +17098627 waitCount = 0 +17098627 ripCount = 0 +17098628 locktype1 = 0 +17098628 locktype2 = 0 +17098629 locktype3 = 0 +17098629 goalCount = 0 +17098630 goalTotal = 0 +17098630 otherCount = 0 +~~~ +17098693 UP 10 +17098693 waslock = 0 +17098693 512 2048 +~~~ +17098737 DOWN 10 +17098737 0 2048 +~~~ +~~~ +~~~ +~~~ +17098764 homeCount = 1 +17098764 waitCount = 0 +17098765 ripCount = 0 +17098765 locktype1 = 0 +17098766 locktype2 = 0 +17098766 locktype3 = 0 +17098767 goalCount = 0 +17098767 goalTotal = 0 +17098768 otherCount = 0 +~~~ +17098821 UP 10 +17098822 waslock = 0 +17098821 512 2048 +~~~ +17098866 DOWN 10 +17098866 0 2048 +~~~ +~~~ +~~~ +~~~ +17098893 homeCount = 1 +17098894 waitCount = 0 +17098895 ripCount = 0 +17098895 locktype1 = 0 +17098895 locktype2 = 0 +17098896 locktype3 = 0 +17098896 goalCount = 0 +17098897 goalTotal = 0 +17098897 otherCount = 0 +~~~ +17098951 UP 10 +17098951 waslock = 0 +17098951 512 2048 +~~~ +17098997 DOWN 10 +17098997 0 2048 +~~~ +~~~ +~~~ +~~~ +17099024 homeCount = 1 +17099024 waitCount = 0 +17099025 ripCount = 0 +17099025 locktype1 = 0 +17099026 locktype2 = 0 +17099026 locktype3 = 0 +17099027 goalCount = 0 +17099027 goalTotal = 0 +17099028 otherCount = 0 +~~~ +17099078 UP 10 +17099078 waslock = 0 +17099078 512 2048 +~~~ +17099137 DOWN 10 +17099137 0 2048 +~~~ +~~~ +~~~ +~~~ +17099164 homeCount = 1 +17099164 waitCount = 0 +17099165 ripCount = 0 +17099165 locktype1 = 0 +17099166 locktype2 = 0 +17099166 locktype3 = 0 +17099167 goalCount = 0 +17099167 goalTotal = 0 +17099168 otherCount = 0 +~~~ +17099210 UP 10 +17099210 waslock = 0 +17099209 512 2048 +~~~ +17099274 DOWN 10 +17099274 0 2048 +~~~ +~~~ +~~~ +~~~ +17099295 homeCount = 1 +17099295 waitCount = 0 +17099296 ripCount = 0 +17099296 locktype1 = 0 +17099297 locktype2 = 0 +17099297 locktype3 = 0 +17099298 goalCount = 0 +17099298 goalTotal = 0 +17099299 otherCount = 0 +~~~ +17099341 UP 10 +17099342 waslock = 0 +17099341 512 2048 +~~~ +17099412 DOWN 10 +17099412 0 2048 +~~~ +~~~ +~~~ +~~~ +17099438 homeCount = 1 +17099438 waitCount = 0 +17099439 ripCount = 0 +17099439 locktype1 = 0 +17099440 locktype2 = 0 +17099440 locktype3 = 0 +17099441 goalCount = 0 +17099441 goalTotal = 0 +17099442 otherCount = 0 +~~~ +17099483 UP 10 +17099483 waslock = 0 +17099483 512 2048 +~~~ +17099557 DOWN 10 +17099557 0 2048 +17099566 UP 10 +17099566 waslock = 0 +17099566 512 2048 +~~~ +~~~ +~~~ +~~~ +17099587 homeCount = 1 +17099588 waitCount = 0 +17099588 ripCount = 0 +17099589 locktype1 = 0 +17099589 locktype2 = 0 +17099590 locktype3 = 0 +17099590 goalCount = 0 +17099591 goalTotal = 0 +17099591 otherCount = 0 +~~~ +~~~ +17099696 DOWN 10 +17099696 0 2048 +17099699 UP 10 +17099699 waslock = 0 +17099699 512 2048 +~~~ +~~~ +~~~ +~~~ +17099724 homeCount = 1 +17099724 waitCount = 0 +17099725 ripCount = 0 +17099725 locktype1 = 0 +17099726 locktype2 = 0 +17099726 locktype3 = 0 +17099727 goalCount = 0 +17099727 goalTotal = 0 +17099728 otherCount = 0 +~~~ +~~~ +17100772 DOWN 10 +17100772 0 2048 +17100789 UP 10 +17100789 waslock = 0 +17100789 512 2048 +~~~ +~~~ +~~~ +~~~ +17100795 homeCount = 1 +17100795 waitCount = 0 +17100796 ripCount = 0 +17100796 locktype1 = 0 +17100797 locktype2 = 0 +17100797 locktype3 = 0 +17100798 goalCount = 0 +17100798 goalTotal = 0 +17100799 otherCount = 0 +~~~ +~~~ +17100909 DOWN 10 +17100909 0 2048 +~~~ +~~~ +~~~ +~~~ +17100938 homeCount = 1 +17100938 waitCount = 0 +17100939 ripCount = 0 +17100939 locktype1 = 0 +17100940 locktype2 = 0 +17100940 locktype3 = 0 +17100941 goalCount = 0 +17100941 goalTotal = 0 +17100942 otherCount = 0 +~~~ +17100945 UP 10 +17100945 waslock = 0 +17100945 512 2048 +~~~ +17101065 DOWN 10 +17101065 0 2048 +~~~ +~~~ +~~~ +~~~ +17101093 homeCount = 1 +17101093 waitCount = 0 +17101094 ripCount = 0 +17101094 locktype1 = 0 +17101095 locktype2 = 0 +17101095 locktype3 = 0 +17101096 goalCount = 0 +17101096 goalTotal = 0 +17101097 otherCount = 0 +~~~ +17101099 UP 10 +17101100 waslock = 0 +17101099 512 2048 +~~~ +17101243 DOWN 10 +17101243 0 2048 +~~~ +~~~ +~~~ +~~~ +17101263 UP 10 +17101264 waslock = 0 +17101263 512 2048 +17101265 homeCount = 1 +17101266 waitCount = 0 +17101266 ripCount = 0 +17101267 locktype1 = 0 +17101267 locktype2 = 0 +17101268 locktype3 = 0 +17101268 goalCount = 0 +17101269 goalTotal = 0 +17101269 otherCount = 0 +~~~ +~~~ +17101399 DOWN 10 +17101399 0 2048 +17101416 UP 10 +17101416 waslock = 0 +17101416 512 2048 +~~~ +~~~ +~~~ +~~~ +17101424 homeCount = 1 +17101424 waitCount = 0 +17101425 ripCount = 0 +17101425 locktype1 = 0 +17101425 locktype2 = 0 +17101426 locktype3 = 0 +17101426 goalCount = 0 +17101427 goalTotal = 0 +17101427 otherCount = 0 +~~~ +~~~ +17101561 DOWN 10 +17101561 0 2048 +17101572 UP 10 +17101572 waslock = 0 +17101572 512 2048 +~~~ +~~~ +~~~ +~~~ +17101596 homeCount = 1 +17101596 waitCount = 0 +17101597 ripCount = 0 +17101597 locktype1 = 0 +17101598 locktype2 = 0 +17101598 locktype3 = 0 +17101599 goalCount = 0 +17101599 goalTotal = 0 +17101600 otherCount = 0 +~~~ +~~~ +17101896 DOWN 10 +17101896 0 2048 +17101911 UP 10 +17101911 waslock = 0 +17101911 512 2048 +~~~ +~~~ +~~~ +~~~ +17101939 homeCount = 1 +17101940 waitCount = 0 +17101940 ripCount = 0 +17101940 locktype1 = 0 +17101941 locktype2 = 0 +17101941 locktype3 = 0 +17101942 goalCount = 0 +17101942 goalTotal = 0 +17101943 otherCount = 0 +~~~ +~~~ +17102043 DOWN 10 +17102043 0 2048 +~~~ +~~~ +~~~ +~~~ +17102068 homeCount = 1 +17102069 waitCount = 0 +17102069 ripCount = 0 +17102070 locktype1 = 0 +17102070 locktype2 = 0 +17102071 locktype3 = 0 +17102071 goalCount = 0 +17102072 goalTotal = 0 +17102072 otherCount = 0 +~~~ +17102073 UP 10 +17102073 waslock = 0 +17102073 512 2048 +~~~ +17102213 DOWN 10 +17102213 0 2048 +~~~ +17102236 UP 10 +17102236 waslock = 0 +17102236 512 2048 +~~~ +~~~ +~~~ +17102240 homeCount = 1 +17102240 waitCount = 0 +17102241 ripCount = 0 +17102241 locktype1 = 0 +17102242 locktype2 = 0 +17102242 locktype3 = 0 +17102242 goalCount = 0 +17102243 goalTotal = 0 +17102243 otherCount = 0 +~~~ +~~~ +17102394 DOWN 10 +17102394 0 2048 +17102404 UP 10 +17102404 waslock = 0 +17102404 512 2048 +~~~ +~~~ +~~~ +~~~ +17102428 homeCount = 1 +17102429 waitCount = 0 +17102429 ripCount = 0 +17102430 locktype1 = 0 +17102430 locktype2 = 0 +17102431 locktype3 = 0 +17102431 goalCount = 0 +17102431 goalTotal = 0 +17102432 otherCount = 0 +~~~ +~~~ +17102533 DOWN 10 +17102532 0 2048 +~~~ +~~~ +~~~ +~~~ +17102555 homeCount = 1 +17102556 waitCount = 0 +17102556 ripCount = 0 +17102557 locktype1 = 0 +17102557 locktype2 = 0 +17102558 locktype3 = 0 +17102558 goalCount = 0 +17102559 goalTotal = 0 +17102559 otherCount = 0 +~~~ +17102568 UP 10 +17102568 waslock = 0 +17102568 512 2048 +~~~ +17105160 DOWN 10 +17105160 0 2048 +17105166 UP 10 +17105167 waslock = 0 +17105166 512 2048 +~~~ +~~~ +~~~ +~~~ +17105185 homeCount = 1 +17105186 waitCount = 0 +17105186 ripCount = 0 +17105187 locktype1 = 0 +17105187 locktype2 = 0 +17105188 locktype3 = 0 +17105188 goalCount = 0 +17105189 goalTotal = 0 +17105189 otherCount = 0 +~~~ +~~~ +17105317 DOWN 10 +17105317 0 2048 +17105343 UP 10 +17105343 waslock = 0 +17105343 512 2048 +~~~ +~~~ +~~~ +~~~ +17105348 homeCount = 1 +17105348 waitCount = 0 +17105349 ripCount = 0 +17105349 locktype1 = 0 +17105350 locktype2 = 0 +17105350 locktype3 = 0 +17105351 goalCount = 0 +17105351 goalTotal = 0 +17105352 otherCount = 0 +~~~ +~~~ +17105443 DOWN 10 +17105443 0 2048 +~~~ +~~~ +~~~ +~~~ +17105469 homeCount = 1 +17105469 waitCount = 0 +17105470 ripCount = 0 +17105470 locktype1 = 0 +17105471 locktype2 = 0 +17105471 locktype3 = 0 +17105472 goalCount = 0 +17105472 goalTotal = 0 +17105473 otherCount = 0 +~~~ +17105486 UP 10 +17105486 waslock = 0 +17105486 512 2048 +~~~ +17105600 DOWN 10 +17105600 0 2048 +~~~ +~~~ +~~~ +~~~ +17105628 homeCount = 1 +17105628 waitCount = 0 +17105629 ripCount = 0 +17105629 locktype1 = 0 +17105629 locktype2 = 0 +17105630 locktype3 = 0 +17105630 goalCount = 0 +17105631 goalTotal = 0 +17105631 otherCount = 0 +~~~ +17105636 UP 10 +17105636 waslock = 0 +17105636 512 2048 +~~~ +17105791 DOWN 10 +17105791 0 2048 +~~~ +17105814 UP 10 +17105814 waslock = 0 +17105814 512 2048 +~~~ +~~~ +~~~ +17105817 homeCount = 1 +17105818 waitCount = 0 +17105818 ripCount = 0 +17105819 locktype1 = 0 +17105819 locktype2 = 0 +17105820 locktype3 = 0 +17105820 goalCount = 0 +17105821 goalTotal = 0 +17105821 otherCount = 0 +~~~ +~~~ +17105974 DOWN 10 +17105974 0 2048 +17105987 UP 10 +17105988 waslock = 0 +17105987 512 2048 +~~~ +~~~ +~~~ +~~~ +17106001 homeCount = 1 +17106002 waitCount = 0 +17106002 ripCount = 0 +17106003 locktype1 = 0 +17106003 locktype2 = 0 +17106004 locktype3 = 0 +17106004 goalCount = 0 +17106005 goalTotal = 0 +17106005 otherCount = 0 +~~~ +~~~ +17106145 DOWN 10 +17106145 0 2048 +17106156 UP 10 +17106156 waslock = 0 +17106156 512 2048 +~~~ +~~~ +~~~ +~~~ +17106177 homeCount = 1 +17106177 waitCount = 0 +17106178 ripCount = 0 +17106178 locktype1 = 0 +17106179 locktype2 = 0 +17106179 locktype3 = 0 +17106180 goalCount = 0 +17106180 goalTotal = 0 +17106181 otherCount = 0 +~~~ +~~~ +17106662 DOWN 10 +17106662 0 2048 +17106678 UP 10 +17106679 waslock = 0 +17106678 512 2048 +~~~ +~~~ +~~~ +~~~ +17106686 homeCount = 1 +17106686 waitCount = 0 +17106687 ripCount = 0 +17106687 locktype1 = 0 +17106688 locktype2 = 0 +17106688 locktype3 = 0 +17106689 goalCount = 0 +17106689 goalTotal = 0 +17106689 otherCount = 0 +~~~ +~~~ +17107378 DOWN 10 +17107378 0 2048 +17107394 UP 10 +17107395 waslock = 0 +17107394 512 2048 +~~~ +~~~ +~~~ +~~~ +17107416 homeCount = 1 +17107416 waitCount = 0 +17107417 ripCount = 0 +17107417 locktype1 = 0 +17107418 locktype2 = 0 +17107418 locktype3 = 0 +17107419 goalCount = 0 +17107419 goalTotal = 0 +17107420 otherCount = 0 +~~~ +~~~ +17110357 DOWN 10 +17110357 0 2048 +17110367 UP 10 +17110368 waslock = 0 +17110367 512 2048 +~~~ +~~~ +~~~ +~~~ +17110384 homeCount = 1 +17110384 waitCount = 0 +17110385 ripCount = 0 +17110385 locktype1 = 0 +17110386 locktype2 = 0 +17110386 locktype3 = 0 +17110387 goalCount = 0 +17110387 goalTotal = 0 +17110388 otherCount = 0 +~~~ +~~~ +17111248 DOWN 10 +17111248 0 2048 +~~~ +~~~ +~~~ +~~~ +17111278 homeCount = 1 +17111278 waitCount = 0 +17111279 ripCount = 0 +17111279 locktype1 = 0 +17111280 locktype2 = 0 +17111280 locktype3 = 0 +17111281 goalCount = 0 +17111281 goalTotal = 0 +17111282 otherCount = 0 +~~~ +17112980 UP 12 +17112980 2048 2048 +17113019 DOWN 12 +17113019 0 2048 +17113078 UP 12 +17113078 2048 2048 +17113162 DOWN 12 +17113162 0 2048 +17113362 LOCKOUT 3 +~~~ +17113381 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17113387 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17115071 UP 12 +17115071 2048 0 +17115080 DOWN 12 +17115080 0 0 +17115215 UP 12 +17115215 2048 0 +17115221 DOWN 12 +17115221 0 0 +17115349 UP 12 +17115349 2048 0 +17115363 DOWN 12 +17115363 0 0 +17115440 UP 12 +17115440 2048 0 +17115466 DOWN 12 +17115466 0 0 +17115645 UP 12 +17115645 2048 0 +17115657 DOWN 12 +17115657 0 0 +17115667 UP 12 +17115666 2048 0 +17115675 DOWN 12 +17115675 0 0 +17115780 UP 12 +17115780 2048 0 +17115801 DOWN 12 +17115801 0 0 +17115810 UP 12 +17115810 2048 0 +17115816 DOWN 12 +17115816 0 0 +17115955 UP 12 +17115955 2048 0 +17115960 DOWN 12 +17115960 0 0 +17116066 UP 12 +17116066 2048 0 +17116100 DOWN 12 +17116100 0 0 +17116204 UP 12 +17116204 2048 0 +17116257 DOWN 12 +17116257 0 0 +17116327 UP 12 +17116326 2048 0 +17116902 DOWN 12 +17116902 0 0 +17116938 UP 12 +17116938 2048 0 +17117078 DOWN 12 +17117078 0 0 +17117106 UP 12 +17117106 2048 0 +17117247 DOWN 12 +17117247 0 0 +17117269 UP 12 +17117269 2048 0 +17117395 DOWN 12 +17117394 0 0 +17117444 UP 12 +17117443 2048 0 +17117560 DOWN 12 +17117560 0 0 +17117578 UP 12 +17117578 2048 0 +17120536 DOWN 12 +17120536 0 0 +17120564 UP 12 +17120564 2048 0 +17120692 DOWN 12 +17120692 0 0 +17120734 UP 12 +17120734 2048 0 +17122749 DOWN 12 +17122749 0 0 +17122862 UP 12 +17122862 2048 0 +17122925 DOWN 12 +17122925 0 0 +17122966 UP 12 +17122966 2048 0 +17122985 DOWN 12 +17122985 0 0 +17126115 UP 11 +17126115 1024 0 +17126590 DOWN 11 +17126590 0 0 +17126628 UP 11 +17126628 1024 0 +17126735 DOWN 11 +17126735 0 0 +17126767 UP 11 +17126767 1024 0 +17126848 DOWN 11 +17126848 0 0 +17126961 UP 11 +17126961 1024 0 +17127005 DOWN 11 +17127005 0 0 +17127070 UP 11 +17127070 1024 0 +17127268 DOWN 11 +17127268 0 0 +17127323 UP 11 +17127323 1024 0 +17127360 DOWN 11 +17127360 0 0 +17128371 UP 11 +17128371 1024 0 +17128378 DOWN 11 +17128378 0 0 +17128512 UP 11 +17128512 1024 0 +17128520 DOWN 11 +17128520 0 0 +17128657 UP 11 +17128657 1024 0 +17128664 DOWN 11 +17128664 0 0 +17128799 UP 11 +17128799 1024 0 +17128814 DOWN 11 +17128814 0 0 +17128924 UP 11 +17128924 1024 0 +17128955 DOWN 11 +17128955 0 0 +17129072 UP 11 +17129072 1024 0 +17129121 DOWN 11 +17129121 0 0 +17129193 UP 11 +17129193 1024 0 +17129199 DOWN 11 +17129199 0 0 +17129206 UP 11 +17129206 1024 0 +17129273 DOWN 11 +17129273 0 0 +17129339 UP 11 +17129339 1024 0 +17129427 DOWN 11 +17129427 0 0 +17129465 UP 11 +17129465 1024 0 +17129478 DOWN 11 +17129478 0 0 +17129493 UP 11 +17129493 1024 0 +17129584 DOWN 11 +17129584 0 0 +17129604 UP 11 +17129604 1024 0 +17129642 DOWN 11 +17129642 0 0 +17129647 UP 11 +17129647 1024 0 +17129741 DOWN 11 +17129741 0 0 +17129755 UP 11 +17129755 1024 0 +17129913 DOWN 11 +17129913 0 0 +17129916 UP 11 +17129916 1024 0 +17131282 DOWN 11 +17131282 0 0 +17131290 UP 11 +17131290 1024 0 +17131452 DOWN 11 +17131452 0 0 +17131471 UP 11 +17131471 1024 0 +17131613 DOWN 11 +17131613 0 0 +17131648 UP 11 +17131648 1024 0 +17134290 DOWN 11 +17134290 0 0 +17134769 UP 11 +17134769 1024 0 +17134823 DOWN 11 +17134823 0 0 +17138381 LOCKEND +~~~ +~~~ +~~~ +17138406 0 512 +17139837 UP 10 +17139837 waslock = 0 +17139837 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17139872 512 16777728 +~~~ +17139893 DOWN 10 +17139893 0 16777728 +~~~ +~~~ +17139915 0 16779776 +~~~ +~~~ +17139917 0 16779264 +17139918 homeCount = 2 +17139918 waitCount = 0 +17139919 ripCount = 0 +17139919 locktype1 = 0 +17139920 locktype2 = 0 +17139920 locktype3 = 1 +17139921 goalCount = 0 +17139921 goalTotal = 0 +17139922 otherCount = 0 +~~~ +17139950 UP 10 +17139950 waslock = 0 +17139950 512 16779264 +~~~ +17140022 512 2048 +17140065 DOWN 10 +17140065 0 2048 +~~~ +~~~ +~~~ +~~~ +17140088 homeCount = 2 +17140089 waitCount = 0 +17140089 ripCount = 0 +17140090 locktype1 = 0 +17140090 locktype2 = 0 +17140091 locktype3 = 1 +17140091 goalCount = 0 +17140092 goalTotal = 0 +17140092 otherCount = 0 +~~~ +17140101 UP 10 +17140101 waslock = 0 +17140101 512 2048 +~~~ +17140240 DOWN 10 +17140240 0 2048 +17140257 UP 10 +17140257 waslock = 0 +17140257 512 2048 +~~~ +~~~ +~~~ +~~~ +17140270 homeCount = 2 +17140270 waitCount = 0 +17140271 ripCount = 0 +17140271 locktype1 = 0 +17140272 locktype2 = 0 +17140272 locktype3 = 1 +17140273 goalCount = 0 +17140273 goalTotal = 0 +17140274 otherCount = 0 +~~~ +~~~ +17140410 DOWN 10 +17140410 0 2048 +17140426 UP 10 +17140427 waslock = 0 +17140426 512 2048 +~~~ +~~~ +~~~ +~~~ +17140449 homeCount = 2 +17140449 waitCount = 0 +17140450 ripCount = 0 +17140450 locktype1 = 0 +17140451 locktype2 = 0 +17140451 locktype3 = 1 +17140452 goalCount = 0 +17140452 goalTotal = 0 +17140453 otherCount = 0 +~~~ +~~~ +17140577 DOWN 10 +17140577 0 2048 +17140594 UP 10 +17140594 waslock = 0 +17140594 512 2048 +~~~ +~~~ +~~~ +~~~ +17140620 homeCount = 2 +17140621 waitCount = 0 +17140621 ripCount = 0 +17140622 locktype1 = 0 +17140622 locktype2 = 0 +17140623 locktype3 = 1 +17140623 goalCount = 0 +17140624 goalTotal = 0 +17140624 otherCount = 0 +~~~ +~~~ +17142212 DOWN 10 +17142212 0 2048 +17142228 UP 10 +17142229 waslock = 0 +17142228 512 2048 +~~~ +~~~ +~~~ +~~~ +17142249 homeCount = 2 +17142250 waitCount = 0 +17142250 ripCount = 0 +17142251 locktype1 = 0 +17142251 locktype2 = 0 +17142252 locktype3 = 1 +17142252 goalCount = 0 +17142253 goalTotal = 0 +17142253 otherCount = 0 +~~~ +~~~ +17142366 DOWN 10 +17142366 0 2048 +~~~ +~~~ +~~~ +~~~ +17142389 homeCount = 2 +17142389 waitCount = 0 +17142390 ripCount = 0 +17142390 locktype1 = 0 +17142391 locktype2 = 0 +17142391 locktype3 = 1 +17142391 goalCount = 0 +17142392 goalTotal = 0 +17142392 otherCount = 0 +~~~ +17142404 UP 10 +17142405 waslock = 0 +17142404 512 2048 +~~~ +17142467 DOWN 10 +17142467 0 2048 +~~~ +~~~ +~~~ +~~~ +17142488 homeCount = 2 +17142489 waitCount = 0 +17142489 ripCount = 0 +17142490 locktype1 = 0 +17142490 locktype2 = 0 +17142491 locktype3 = 1 +17142491 goalCount = 0 +17142492 goalTotal = 0 +17142492 otherCount = 0 +~~~ +17145618 UP 7 +17145618 64 2048 +~~~ +17145638 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17145644 64 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17145661 DOWN 7 +17145661 0 0 +~~~ +17145688 64 0 +17145936 DOWN 7 +17145935 0 0 +17145982 64 0 +17146406 DOWN 7 +17146406 0 0 +17146420 64 0 +17148954 DOWN 7 +17148954 0 0 +17148975 64 0 +17149053 DOWN 7 +17149053 0 0 +17156173 512 0 +17156617 0 0 +17156641 512 0 +17156974 0 0 +17156988 512 0 +17157127 0 0 +17157152 512 0 +17157306 0 0 +17157321 512 0 +17157477 0 0 +17157493 512 0 +17157661 0 0 +17157668 512 0 +17158019 0 0 +17158039 512 0 +17158176 0 0 +17158207 512 0 +17158364 0 0 +17158393 512 0 +17158518 0 0 +17160113 UP 12 +17160113 2048 0 +17160307 DOWN 12 +17160307 0 0 +17164258 UP 2 +17164258 2 0 +17164330 DOWN 2 +17164330 0 0 +17164364 2 0 +17164660 DOWN 2 +17164660 0 0 +17164694 2 0 +17165098 DOWN 2 +17165098 0 0 +17165116 2 0 +17165603 DOWN 2 +17165603 0 0 +17165620 2 0 +17165783 DOWN 2 +17165783 0 0 +17165803 2 0 +17165960 DOWN 2 +17165960 0 0 +17165976 2 0 +17166139 DOWN 2 +17166139 0 0 +17166149 2 0 +17167551 DOWN 2 +17167551 0 0 +17167564 2 0 +17167726 DOWN 2 +17167726 0 0 +17167754 2 0 +17167812 DOWN 2 +17167812 0 0 +17167901 2 0 +17168006 DOWN 2 +17168006 0 0 +17168074 2 0 +17168160 DOWN 2 +17168160 0 0 +17168269 2 0 +17168360 DOWN 2 +17168360 0 0 +17168390 2 0 +17168528 DOWN 2 +17168528 0 0 +17168554 2 0 +17168701 DOWN 2 +17168701 0 0 +17168770 2 0 +17168793 DOWN 2 +17168793 0 0 +17170638 LOCKEND +~~~ +~~~ +~~~ +17170656 0 512 +17173427 UP 10 +17173427 waslock = 0 +17173427 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17173450 512 16777728 +~~~ +17173481 DOWN 10 +17173481 0 16777728 +~~~ +~~~ +17173505 0 16778752 +~~~ +~~~ +17173507 0 16778240 +17173508 homeCount = 3 +17173509 waitCount = 0 +17173509 ripCount = 0 +17173510 locktype1 = 0 +17173510 locktype2 = 1 +17173511 locktype3 = 1 +17173511 goalCount = 0 +17173512 goalTotal = 0 +17173512 otherCount = 0 +~~~ +17173600 0 1024 +17173629 UP 10 +17173629 waslock = 0 +17173629 512 1024 +~~~ +17177285 DOWN 10 +17177285 0 1024 +17177297 UP 10 +17177298 waslock = 0 +17177297 512 1024 +~~~ +~~~ +~~~ +~~~ +17177320 homeCount = 3 +17177320 waitCount = 0 +17177321 ripCount = 0 +17177321 locktype1 = 0 +17177322 locktype2 = 1 +17177322 locktype3 = 1 +17177322 goalCount = 0 +17177323 goalTotal = 0 +17177323 otherCount = 0 +~~~ +~~~ +17177371 DOWN 10 +17177371 0 1024 +~~~ +~~~ +~~~ +~~~ +17177399 homeCount = 3 +17177399 waitCount = 0 +17177400 ripCount = 0 +17177400 locktype1 = 0 +17177401 locktype2 = 1 +17177401 locktype3 = 1 +17177402 goalCount = 0 +17177402 goalTotal = 0 +17177403 otherCount = 0 +~~~ +17178689 UP 11 +17178689 1024 1024 +17179443 DOWN 11 +17179443 0 1024 +17179507 UP 11 +17179507 1024 1024 +17179689 BEEP1 +17179689 BEEP2 +~~~ +~~~ +~~~ +17179722 1024 33555456 +~~~ +17179872 1024 1024 +17185130 DOWN 11 +17185130 0 1024 +~~~ +~~~ +17185149 0 0 +~~~ +~~~ +17185151 0 1 +~~~ +~~~ +17185153 0 3 +~~~ +~~~ +17185155 0 7 +~~~ +~~~ +17185157 0 15 +~~~ +~~~ +17185159 0 31 +~~~ +~~~ +17185160 0 63 +~~~ +~~~ +17185162 0 127 +~~~ +~~~ +17185164 0 255 +17185165 homeCount = 3 +17185166 waitCount = 0 +17185166 ripCount = 1 +17185167 locktype1 = 0 +17185167 locktype2 = 1 +17185188 locktype3 = 1 +17185189 goalCount = 0 +17185189 goalTotal = 0 +17185190 otherCount = 0 +~~~ +17185191 CURRENTGOAL IS [8] +~~~ +17185191 UP 11 +17185191 1024 255 +17185193 DOWN 11 +17185193 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17185237 homeCount = 3 +17185238 waitCount = 0 +17185238 ripCount = 1 +17185239 locktype1 = 0 +17185239 locktype2 = 1 +17185240 locktype3 = 1 +17185240 goalCount = 0 +17185241 goalTotal = 0 +17185241 otherCount = 0 +~~~ +17185242 CURRENTGOAL IS [8] +~~~ +17187525 UP 8 +17187525 128 255 +17187540 DOWN 8 +17187540 0 255 +17187549 128 255 +~~~ +~~~ +17187564 outer reward +~~~ +17187564 128 8388863 +~~~ +~~~ +~~~ +~~~ +17187568 128 8388862 +~~~ +~~~ +17187570 128 8388860 +~~~ +~~~ +17187572 128 8388856 +~~~ +~~~ +17187574 128 8388848 +~~~ +~~~ +17187575 128 8388832 +~~~ +~~~ +17187577 128 8388800 +~~~ +~~~ +17187579 128 8388736 +~~~ +~~~ +17187581 128 8388608 +~~~ +~~~ +17187583 128 8389120 +17187604 homeCount = 3 +17187605 waitCount = 0 +17187605 ripCount = 1 +17187606 locktype1 = 0 +17187606 locktype2 = 1 +17187607 locktype3 = 1 +17187607 goalCount = 1 +17187608 goalTotal = 1 +17187608 otherCount = 0 +~~~ +17188014 128 512 +17188249 DOWN 8 +17188248 0 512 +17188270 128 512 +17188380 DOWN 8 +17188380 0 512 +17188411 128 512 +17188512 DOWN 8 +17188512 0 512 +17188550 128 512 +17188649 DOWN 8 +17188649 0 512 +17188680 128 512 +17188804 DOWN 8 +17188804 0 512 +17188815 128 512 +17188947 DOWN 8 +17188947 0 512 +17188964 128 512 +17190940 DOWN 8 +17190940 0 512 +17190964 128 512 +17193457 DOWN 8 +17193457 0 512 +17193811 128 512 +17193844 DOWN 8 +17193844 0 512 +17199369 UP 10 +17199369 waslock = 0 +17199369 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17199397 512 16777728 +~~~ +17199547 512 512 +17199572 DOWN 10 +17199572 0 512 +~~~ +~~~ +17199595 0 2560 +~~~ +~~~ +17199596 0 2048 +17199597 homeCount = 4 +17199598 waitCount = 0 +17199598 ripCount = 1 +17199599 locktype1 = 0 +17199599 locktype2 = 1 +17199600 locktype3 = 1 +17199600 goalCount = 1 +17199601 goalTotal = 1 +17199601 otherCount = 0 +~~~ +17199646 UP 10 +17199646 waslock = 0 +17199645 512 2048 +~~~ +17199747 DOWN 10 +17199747 0 2048 +~~~ +~~~ +~~~ +~~~ +17199774 homeCount = 4 +17199775 waitCount = 0 +17199775 ripCount = 1 +17199776 locktype1 = 0 +17199776 locktype2 = 1 +17199777 locktype3 = 1 +17199777 goalCount = 1 +17199778 goalTotal = 1 +17199778 otherCount = 0 +~~~ +17199781 UP 10 +17199781 waslock = 0 +17199781 512 2048 +~~~ +17199882 DOWN 10 +17199882 0 2048 +~~~ +~~~ +~~~ +~~~ +17199908 homeCount = 4 +17199909 waitCount = 0 +17199909 ripCount = 1 +17199909 locktype1 = 0 +17199910 locktype2 = 1 +17199910 locktype3 = 1 +17199911 goalCount = 1 +17199911 goalTotal = 1 +17199912 otherCount = 0 +~~~ +17199918 UP 10 +17199919 waslock = 0 +17199918 512 2048 +~~~ +17200055 DOWN 10 +17200055 0 2048 +~~~ +~~~ +~~~ +~~~ +17200079 UP 10 +17200079 waslock = 0 +17200079 512 2048 +17200080 homeCount = 4 +17200081 waitCount = 0 +17200081 ripCount = 1 +17200082 locktype1 = 0 +17200082 locktype2 = 1 +17200083 locktype3 = 1 +17200083 goalCount = 1 +17200084 goalTotal = 1 +17200084 otherCount = 0 +~~~ +~~~ +17200203 DOWN 10 +17200203 0 2048 +~~~ +~~~ +~~~ +17200231 UP 10 +17200231 waslock = 0 +17200231 512 2048 +~~~ +17200233 homeCount = 4 +17200234 waitCount = 0 +17200234 ripCount = 1 +17200235 locktype1 = 0 +17200235 locktype2 = 1 +17200235 locktype3 = 1 +17200236 goalCount = 1 +17200236 goalTotal = 1 +17200258 otherCount = 0 +~~~ +~~~ +17200369 DOWN 10 +17200369 0 2048 +17200387 UP 10 +17200388 waslock = 0 +17200387 512 2048 +~~~ +~~~ +~~~ +~~~ +17200392 homeCount = 4 +17200393 waitCount = 0 +17200393 ripCount = 1 +17200394 locktype1 = 0 +17200394 locktype2 = 1 +17200395 locktype3 = 1 +17200395 goalCount = 1 +17200396 goalTotal = 1 +17200396 otherCount = 0 +~~~ +~~~ +17200549 DOWN 10 +17200549 0 2048 +17200555 UP 10 +17200555 waslock = 0 +17200555 512 2048 +~~~ +~~~ +~~~ +~~~ +17200573 homeCount = 4 +17200574 waitCount = 0 +17200574 ripCount = 1 +17200575 locktype1 = 0 +17200575 locktype2 = 1 +17200576 locktype3 = 1 +17200576 goalCount = 1 +17200577 goalTotal = 1 +17200577 otherCount = 0 +~~~ +~~~ +17201066 DOWN 10 +17201066 0 2048 +17201087 UP 10 +17201087 waslock = 0 +17201086 512 2048 +~~~ +~~~ +~~~ +~~~ +17201094 homeCount = 4 +17201095 waitCount = 0 +17201095 ripCount = 1 +17201096 locktype1 = 0 +17201096 locktype2 = 1 +17201097 locktype3 = 1 +17201097 goalCount = 1 +17201098 goalTotal = 1 +17201098 otherCount = 0 +~~~ +~~~ +17201975 DOWN 10 +17201975 0 2048 +~~~ +~~~ +~~~ +17202002 UP 10 +17202003 waslock = 0 +17202002 512 2048 +~~~ +17202005 homeCount = 4 +17202005 waitCount = 0 +17202005 ripCount = 1 +17202006 locktype1 = 0 +17202006 locktype2 = 1 +17202007 locktype3 = 1 +17202007 goalCount = 1 +17202008 goalTotal = 1 +17202029 otherCount = 0 +~~~ +~~~ +17202166 DOWN 10 +17202166 0 2048 +17202183 UP 10 +17202183 waslock = 0 +17202183 512 2048 +~~~ +~~~ +~~~ +~~~ +17202206 homeCount = 4 +17202207 waitCount = 0 +17202207 ripCount = 1 +17202208 locktype1 = 0 +17202208 locktype2 = 1 +17202209 locktype3 = 1 +17202209 goalCount = 1 +17202210 goalTotal = 1 +17202210 otherCount = 0 +~~~ +~~~ +17202352 DOWN 10 +17202352 0 2048 +~~~ +~~~ +~~~ +17202373 UP 10 +17202373 waslock = 0 +17202372 512 2048 +~~~ +17202375 homeCount = 4 +17202375 waitCount = 0 +17202376 ripCount = 1 +17202376 locktype1 = 0 +17202377 locktype2 = 1 +17202377 locktype3 = 1 +17202378 goalCount = 1 +17202378 goalTotal = 1 +17202378 otherCount = 0 +~~~ +~~~ +17202533 DOWN 10 +17202533 0 2048 +17202545 UP 10 +17202545 waslock = 0 +17202545 512 2048 +~~~ +~~~ +~~~ +~~~ +17202570 homeCount = 4 +17202570 waitCount = 0 +17202571 ripCount = 1 +17202571 locktype1 = 0 +17202572 locktype2 = 1 +17202572 locktype3 = 1 +17202572 goalCount = 1 +17202573 goalTotal = 1 +17202573 otherCount = 0 +~~~ +~~~ +17202723 DOWN 10 +17202723 0 2048 +17202740 UP 10 +17202740 waslock = 0 +17202740 512 2048 +~~~ +~~~ +~~~ +~~~ +17202747 homeCount = 4 +17202747 waitCount = 0 +17202748 ripCount = 1 +17202748 locktype1 = 0 +17202749 locktype2 = 1 +17202749 locktype3 = 1 +17202750 goalCount = 1 +17202750 goalTotal = 1 +17202751 otherCount = 0 +~~~ +~~~ +17202889 DOWN 10 +17202889 0 2048 +~~~ +~~~ +~~~ +~~~ +17202917 homeCount = 4 +17202918 waitCount = 0 +17202918 ripCount = 1 +17202919 locktype1 = 0 +17202919 locktype2 = 1 +17202920 locktype3 = 1 +17202920 goalCount = 1 +17202921 goalTotal = 1 +17202921 otherCount = 0 +~~~ +17202922 UP 10 +17202922 waslock = 0 +17202922 512 2048 +~~~ +17203082 DOWN 10 +17203082 0 2048 +~~~ +~~~ +~~~ +~~~ +17203107 homeCount = 4 +17203107 waitCount = 0 +17203108 ripCount = 1 +17203108 locktype1 = 0 +17203109 locktype2 = 1 +17203109 locktype3 = 1 +17203110 goalCount = 1 +17203110 goalTotal = 1 +17203111 otherCount = 0 +~~~ +17203111 UP 10 +17203112 waslock = 0 +17203111 512 2048 +~~~ +17203454 DOWN 10 +17203454 0 2048 +~~~ +~~~ +~~~ +~~~ +17203476 homeCount = 4 +17203476 waitCount = 0 +17203477 ripCount = 1 +17203477 locktype1 = 0 +17203478 locktype2 = 1 +17203478 locktype3 = 1 +17203479 goalCount = 1 +17203479 goalTotal = 1 +17203480 otherCount = 0 +~~~ +17203503 UP 10 +17203504 waslock = 0 +17203503 512 2048 +~~~ +17203529 DOWN 10 +17203529 0 2048 +~~~ +~~~ +~~~ +~~~ +17203551 homeCount = 4 +17203551 waitCount = 0 +17203552 ripCount = 1 +17203552 locktype1 = 0 +17203553 locktype2 = 1 +17203553 locktype3 = 1 +17203554 goalCount = 1 +17203554 goalTotal = 1 +17203555 otherCount = 0 +~~~ +17204874 UP 12 +17204874 2048 2048 +17205289 DOWN 12 +17205289 0 2048 +17205350 UP 12 +17205350 2048 2048 +17205874 CLICK1 +17205874 CLICK2 +~~~ +~~~ +~~~ +17205897 2048 67110912 +~~~ +17206047 2048 2048 +17209020 DOWN 12 +17209019 0 2048 +17209027 UP 12 +17209027 2048 2048 +~~~ +~~~ +17209045 2048 0 +~~~ +~~~ +17209047 2048 1 +~~~ +~~~ +17209049 2048 3 +~~~ +~~~ +17209051 2048 7 +~~~ +~~~ +17209053 2048 15 +~~~ +~~~ +17209054 2048 31 +~~~ +~~~ +17209056 2048 63 +~~~ +~~~ +17209058 2048 127 +~~~ +~~~ +17209060 2048 255 +17209061 homeCount = 4 +17209061 waitCount = 1 +17209062 ripCount = 1 +17209083 locktype1 = 0 +17209084 locktype2 = 1 +17209084 locktype3 = 1 +17209085 goalCount = 1 +17209085 goalTotal = 1 +17209086 otherCount = 0 +~~~ +17209087 CURRENTGOAL IS [8] +~~~ +17209208 DOWN 12 +17209207 0 255 +17209215 UP 12 +17209215 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209252 homeCount = 4 +17209253 waitCount = 1 +17209253 ripCount = 1 +17209254 locktype1 = 0 +17209254 locktype2 = 1 +17209255 locktype3 = 1 +17209255 goalCount = 1 +17209256 goalTotal = 1 +17209256 otherCount = 0 +~~~ +17209257 CURRENTGOAL IS [8] +~~~ +17209297 DOWN 12 +17209297 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209333 homeCount = 4 +17209333 waitCount = 1 +17209334 ripCount = 1 +17209334 locktype1 = 0 +17209335 locktype2 = 1 +17209335 locktype3 = 1 +17209336 goalCount = 1 +17209336 goalTotal = 1 +17209337 otherCount = 0 +~~~ +17209338 CURRENTGOAL IS [8] +~~~ +17209367 UP 12 +17209367 2048 255 +17209442 DOWN 12 +17209441 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209482 homeCount = 4 +17209482 waitCount = 1 +17209483 ripCount = 1 +17209483 locktype1 = 0 +17209484 locktype2 = 1 +17209484 locktype3 = 1 +17209485 goalCount = 1 +17209485 goalTotal = 1 +17209486 otherCount = 0 +~~~ +17209487 CURRENTGOAL IS [8] +~~~ +17209521 UP 12 +17209521 2048 255 +17209548 DOWN 12 +17209548 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209584 homeCount = 4 +17209584 waitCount = 1 +17209585 ripCount = 1 +17209585 locktype1 = 0 +17209586 locktype2 = 1 +17209586 locktype3 = 1 +17209587 goalCount = 1 +17209587 goalTotal = 1 +17209588 otherCount = 0 +~~~ +17209589 CURRENTGOAL IS [8] +~~~ +17214096 UP 3 +17214096 4 255 +~~~ +~~~ +17214382 DOWN 3 +17214382 0 255 +~~~ +~~~ +17214406 0 254 +~~~ +~~~ +17214408 0 252 +~~~ +~~~ +17214410 0 248 +~~~ +~~~ +17214412 0 240 +~~~ +~~~ +17214413 0 224 +~~~ +~~~ +17214415 0 192 +~~~ +17214417 4 192 +~~~ +~~~ +17214418 4 128 +~~~ +17214419 4 0 +~~~ +~~~ +17214421 4 512 +17214422 homeCount = 4 +17214422 waitCount = 1 +17214423 ripCount = 1 +17214444 locktype1 = 0 +17214444 locktype2 = 1 +17214445 locktype3 = 1 +17214445 goalCount = 1 +17214446 goalTotal = 1 +17214446 otherCount = 1 +~~~ +17216429 DOWN 3 +17216429 0 512 +17221376 UP 5 +17221376 16 512 +~~~ +17221403 WHITENOISE +~~~ +~~~ +~~~ +17221405 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17221498 DOWN 5 +17221498 0 0 +17221556 16 0 +17221956 DOWN 5 +17221956 0 0 +17221991 16 0 +17222305 DOWN 5 +17222305 0 0 +17222315 16 0 +17224674 DOWN 5 +17224674 0 0 +17229229 512 0 +17229265 0 0 +17229285 512 0 +17229569 0 0 +17229641 512 0 +17230107 0 0 +17230128 512 0 +17230800 0 0 +17230861 512 0 +17230891 0 0 +17241365 UP 1 +17241365 1 0 +17243735 DOWN 1 +17243735 0 0 +17243748 1 0 +17243765 DOWN 1 +17243765 0 0 +17246403 LOCKEND +~~~ +~~~ +~~~ +17246427 0 512 +17248354 UP 10 +17248354 waslock = 0 +17248354 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17248382 512 16777728 +~~~ +17248431 DOWN 10 +17248431 0 16777728 +~~~ +~~~ +17248459 0 16778752 +~~~ +~~~ +17248461 0 16778240 +17248462 homeCount = 5 +17248462 waitCount = 1 +17248463 ripCount = 1 +17248463 locktype1 = 0 +17248464 locktype2 = 2 +17248464 locktype3 = 1 +17248465 goalCount = 1 +17248465 goalTotal = 1 +17248466 otherCount = 1 +~~~ +17248532 0 1024 +17248648 UP 10 +17248648 waslock = 0 +17248648 512 1024 +~~~ +17252377 DOWN 10 +17252377 0 1024 +~~~ +~~~ +~~~ +~~~ +17252397 homeCount = 5 +17252398 waitCount = 1 +17252399 ripCount = 1 +17252399 locktype1 = 0 +17252400 locktype2 = 2 +17252400 locktype3 = 1 +17252400 goalCount = 1 +17252401 goalTotal = 1 +17252401 otherCount = 1 +~~~ +17252421 UP 10 +17252421 waslock = 0 +17252421 512 1024 +~~~ +17252951 DOWN 10 +17252951 0 1024 +~~~ +~~~ +~~~ +~~~ +17252980 homeCount = 5 +17252980 waitCount = 1 +17252981 ripCount = 1 +17252981 locktype1 = 0 +17252981 locktype2 = 2 +17252982 locktype3 = 1 +17252982 goalCount = 1 +17252983 goalTotal = 1 +17252983 otherCount = 1 +~~~ +17254005 UP 11 +17254004 1024 1024 +17254582 DOWN 11 +17254582 0 1024 +17254724 UP 11 +17254724 1024 1024 +17255505 BEEP1 +17255505 BEEP2 +~~~ +~~~ +~~~ +17255528 1024 33555456 +~~~ +17255678 1024 1024 +17260300 DOWN 11 +17260300 0 1024 +~~~ +~~~ +17260324 0 0 +~~~ +~~~ +17260326 0 1 +~~~ +~~~ +17260328 0 3 +~~~ +~~~ +17260330 0 7 +~~~ +~~~ +17260331 0 15 +~~~ +~~~ +17260333 0 31 +~~~ +~~~ +17260335 0 63 +~~~ +~~~ +17260337 0 127 +~~~ +~~~ +17260339 0 255 +17260340 homeCount = 5 +17260340 waitCount = 1 +17260341 ripCount = 2 +17260341 locktype1 = 0 +17260342 locktype2 = 2 +17260363 locktype3 = 1 +17260363 goalCount = 1 +17260364 goalTotal = 1 +17260364 otherCount = 1 +~~~ +17260365 CURRENTGOAL IS [8] +~~~ +17260366 UP 11 +17260366 1024 255 +17260390 DOWN 11 +17260390 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17260428 homeCount = 5 +17260428 waitCount = 1 +17260429 ripCount = 2 +17260429 locktype1 = 0 +17260430 locktype2 = 2 +17260430 locktype3 = 1 +17260431 goalCount = 1 +17260431 goalTotal = 1 +17260432 otherCount = 1 +~~~ +17260433 CURRENTGOAL IS [8] +~~~ +17262731 UP 7 +17262731 64 255 +~~~ +~~~ +17262993 DOWN 7 +17262993 0 255 +~~~ +~~~ +17263010 0 254 +~~~ +~~~ +17263012 0 252 +~~~ +~~~ +17263013 0 248 +~~~ +~~~ +17263015 0 240 +~~~ +~~~ +17263017 0 224 +~~~ +~~~ +17263019 0 192 +~~~ +~~~ +17263021 0 128 +~~~ +~~~ +17263023 0 0 +~~~ +~~~ +17263024 0 512 +17263025 homeCount = 5 +17263026 waitCount = 1 +17263026 ripCount = 2 +17263027 locktype1 = 0 +17263047 locktype2 = 2 +17263048 locktype3 = 1 +17263048 goalCount = 1 +17263049 goalTotal = 1 +17263049 otherCount = 2 +~~~ +17263101 64 512 +17263724 DOWN 7 +17263724 0 512 +17267314 UP 10 +17267315 waslock = 0 +17267314 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17267339 512 16777728 +~~~ +17267489 512 512 +17267798 DOWN 10 +17267798 0 512 +~~~ +~~~ +17267824 0 1536 +~~~ +~~~ +17267826 0 1024 +17267827 homeCount = 6 +17267827 waitCount = 1 +17267828 ripCount = 2 +17267828 locktype1 = 0 +17267829 locktype2 = 2 +17267829 locktype3 = 1 +17267830 goalCount = 1 +17267830 goalTotal = 1 +17267831 otherCount = 2 +~~~ +17267852 UP 10 +17267852 waslock = 0 +17267852 512 1024 +~~~ +17271549 DOWN 10 +17271549 0 1024 +~~~ +~~~ +~~~ +~~~ +17271577 homeCount = 6 +17271577 waitCount = 1 +17271578 ripCount = 2 +17271578 locktype1 = 0 +17271579 locktype2 = 2 +17271579 locktype3 = 1 +17271580 goalCount = 1 +17271580 goalTotal = 1 +17271580 otherCount = 2 +~~~ +17273398 UP 11 +17273398 1024 1024 +17275399 BEEP1 +17275399 BEEP2 +~~~ +~~~ +~~~ +17275425 1024 33555456 +~~~ +17275575 1024 1024 +17280164 DOWN 11 +17280164 0 1024 +~~~ +~~~ +17280183 0 0 +~~~ +~~~ +17280185 0 1 +~~~ +~~~ +17280187 0 3 +~~~ +~~~ +17280189 0 7 +~~~ +~~~ +17280190 0 15 +~~~ +~~~ +17280192 0 31 +~~~ +~~~ +17280194 0 63 +~~~ +~~~ +17280196 0 127 +~~~ +~~~ +17280198 0 255 +17280199 homeCount = 6 +17280199 waitCount = 1 +17280200 ripCount = 3 +17280200 locktype1 = 0 +17280201 locktype2 = 2 +17280222 locktype3 = 1 +17280222 goalCount = 1 +17280223 goalTotal = 1 +17280223 otherCount = 2 +~~~ +17280224 CURRENTGOAL IS [8] +~~~ +17283276 UP 6 +17283276 32 255 +~~~ +~~~ +17287545 DOWN 6 +17287545 0 255 +~~~ +~~~ +17287566 0 254 +~~~ +~~~ +17287568 0 252 +~~~ +~~~ +17287570 0 248 +~~~ +~~~ +17287572 0 240 +~~~ +~~~ +17287574 0 224 +~~~ +~~~ +17287576 0 192 +~~~ +~~~ +17287577 0 128 +~~~ +~~~ +17287579 0 0 +~~~ +~~~ +17287581 0 512 +17287582 homeCount = 6 +17287583 waitCount = 1 +17287583 ripCount = 3 +17287584 locktype1 = 0 +17287584 locktype2 = 2 +17287605 locktype3 = 1 +17287606 goalCount = 1 +17287606 goalTotal = 1 +17287607 otherCount = 3 +~~~ +17292442 UP 10 +17292442 waslock = 0 +17292442 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17292474 512 16777728 +~~~ +17292624 512 512 +17292916 DOWN 10 +17292916 0 512 +~~~ +~~~ +17292940 0 2560 +~~~ +~~~ +17292942 0 2048 +17292943 homeCount = 7 +17292943 waitCount = 1 +17292944 ripCount = 3 +17292944 locktype1 = 0 +17292945 locktype2 = 2 +17292945 locktype3 = 1 +17292946 goalCount = 1 +17292946 goalTotal = 1 +17292947 otherCount = 3 +~~~ +17292968 UP 10 +17292968 waslock = 0 +17292968 512 2048 +~~~ +17295724 DOWN 10 +17295724 0 2048 +~~~ +~~~ +~~~ +~~~ +17295752 homeCount = 7 +17295753 waitCount = 1 +17295753 ripCount = 3 +17295754 locktype1 = 0 +17295754 locktype2 = 2 +17295755 locktype3 = 1 +17295755 goalCount = 1 +17295756 goalTotal = 1 +17295756 otherCount = 3 +~~~ +17297251 UP 12 +17297251 2048 2048 +17298067 DOWN 12 +17298067 0 2048 +17298091 UP 12 +17298090 2048 2048 +17298405 DOWN 12 +17298404 0 2048 +17298448 UP 12 +17298448 2048 2048 +17298503 DOWN 12 +17298503 0 2048 +17298517 UP 12 +17298517 2048 2048 +17298751 CLICK1 +17298751 CLICK2 +~~~ +~~~ +~~~ +17298774 2048 67110912 +~~~ +17298924 2048 2048 +17303723 DOWN 12 +17303723 0 2048 +~~~ +~~~ +17303749 0 0 +~~~ +~~~ +17303751 0 1 +~~~ +~~~ +17303753 0 3 +~~~ +~~~ +17303755 0 7 +~~~ +~~~ +17303757 0 15 +~~~ +~~~ +17303758 0 31 +~~~ +~~~ +17303760 0 63 +~~~ +~~~ +17303762 0 127 +~~~ +~~~ +17303764 0 255 +17303765 homeCount = 7 +17303765 waitCount = 2 +17303766 ripCount = 3 +17303766 locktype1 = 0 +17303767 locktype2 = 2 +17303788 locktype3 = 1 +17303789 goalCount = 1 +17303789 goalTotal = 1 +17303789 otherCount = 3 +~~~ +17303791 CURRENTGOAL IS [8] +~~~ +17306124 UP 3 +17306124 4 255 +~~~ +~~~ +17306596 DOWN 3 +17306596 0 255 +~~~ +~~~ +17306619 0 254 +~~~ +~~~ +17306621 0 252 +~~~ +~~~ +17306623 0 248 +~~~ +~~~ +17306625 0 240 +~~~ +~~~ +17306626 0 224 +~~~ +17306628 4 224 +~~~ +~~~ +17306630 4 192 +~~~ +~~~ +17306631 4 128 +~~~ +17306632 4 0 +~~~ +~~~ +17306634 4 512 +17306635 homeCount = 7 +17306635 waitCount = 2 +17306657 ripCount = 3 +17306657 locktype1 = 0 +17306657 locktype2 = 2 +17306658 locktype3 = 1 +17306658 goalCount = 1 +17306659 goalTotal = 1 +17306659 otherCount = 4 +~~~ +17306899 DOWN 3 +17306899 0 512 +17310805 UP 10 +17310806 waslock = 0 +17310805 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17310836 512 16777728 +~~~ +17310985 512 512 +17311009 DOWN 10 +17311009 0 512 +~~~ +~~~ +17311029 0 2560 +~~~ +~~~ +17311031 0 2048 +17311032 homeCount = 8 +17311033 waitCount = 2 +17311033 ripCount = 3 +17311034 locktype1 = 0 +17311034 locktype2 = 2 +17311034 locktype3 = 1 +17311035 goalCount = 1 +17311035 goalTotal = 1 +17311036 otherCount = 4 +~~~ +17311057 UP 10 +17311058 waslock = 0 +17311057 512 2048 +~~~ +17316712 DOWN 10 +17316712 0 2048 +~~~ +~~~ +~~~ +~~~ +17316732 homeCount = 8 +17316733 waitCount = 2 +17316733 ripCount = 3 +17316734 locktype1 = 0 +17316734 locktype2 = 2 +17316735 locktype3 = 1 +17316735 goalCount = 1 +17316736 goalTotal = 1 +17316736 otherCount = 4 +~~~ +17318338 UP 12 +17318338 2048 2048 +17319026 DOWN 12 +17319026 0 2048 +17319032 UP 12 +17319032 2048 2048 +17319678 DOWN 12 +17319678 0 2048 +17319738 UP 12 +17319738 2048 2048 +17320338 CLICK1 +17320338 CLICK2 +~~~ +~~~ +~~~ +17320363 2048 67110912 +~~~ +17320513 2048 2048 +17326725 DOWN 12 +17326725 0 2048 +~~~ +~~~ +17326751 0 0 +~~~ +~~~ +17326753 0 1 +~~~ +~~~ +17326755 0 3 +~~~ +~~~ +17326757 0 7 +~~~ +~~~ +17326758 0 15 +~~~ +~~~ +17326760 0 31 +~~~ +~~~ +17326762 0 63 +~~~ +~~~ +17326764 0 127 +~~~ +~~~ +17326766 0 255 +17326767 homeCount = 8 +17326767 waitCount = 3 +17326768 ripCount = 3 +17326768 locktype1 = 0 +17326769 locktype2 = 2 +17326790 locktype3 = 1 +17326790 goalCount = 1 +17326791 goalTotal = 1 +17326791 otherCount = 4 +~~~ +17326792 CURRENTGOAL IS [8] +~~~ +17329863 UP 8 +17329863 128 255 +~~~ +~~~ +17329893 outer reward +~~~ +17329893 128 8388863 +~~~ +~~~ +17330172 DOWN 8 +17330172 0 8388863 +~~~ +~~~ +17330190 0 8388862 +~~~ +~~~ +17330192 0 8388860 +~~~ +~~~ +17330194 0 8388856 +~~~ +17330195 128 8388856 +~~~ +~~~ +17330197 128 8388848 +~~~ +~~~ +17330198 128 8388832 +~~~ +~~~ +17330200 128 8388800 +~~~ +17330201 128 8388736 +~~~ +~~~ +17330203 128 8388608 +~~~ +~~~ +17330225 homeCount = 8 +17330226 waitCount = 3 +17330226 ripCount = 3 +17330227 locktype1 = 0 +17330227 locktype2 = 2 +17330228 locktype3 = 1 +17330228 goalCount = 2 +17330229 goalTotal = 2 +17330229 otherCount = 4 +~~~ +17330230 128 8389120 +17330343 128 512 +17330465 DOWN 8 +17330465 0 512 +17330476 128 512 +17330578 DOWN 8 +17330578 0 512 +17330607 128 512 +17330830 DOWN 8 +17330830 0 512 +17330847 128 512 +17330966 DOWN 8 +17330966 0 512 +17330984 128 512 +17331109 DOWN 8 +17331109 0 512 +17331117 128 512 +17333342 DOWN 8 +17333342 0 512 +17333351 128 512 +17333497 DOWN 8 +17333497 0 512 +17333526 128 512 +17336388 DOWN 8 +17336388 0 512 +17336425 128 512 +17336477 DOWN 8 +17336477 0 512 +17340374 UP 10 +17340375 waslock = 0 +17340374 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17340400 512 16777728 +~~~ +17340550 512 512 +17340693 DOWN 10 +17340693 0 512 +~~~ +~~~ +17340713 0 1536 +~~~ +~~~ +17340715 0 1024 +17340716 homeCount = 9 +17340716 waitCount = 3 +17340717 ripCount = 3 +17340717 locktype1 = 0 +17340718 locktype2 = 2 +17340718 locktype3 = 1 +17340719 goalCount = 2 +17340719 goalTotal = 2 +17340720 otherCount = 4 +~~~ +17340741 UP 10 +17340741 waslock = 0 +17340741 512 1024 +~~~ +17340763 DOWN 10 +17340763 0 1024 +~~~ +~~~ +~~~ +~~~ +17340794 homeCount = 9 +17340795 waitCount = 3 +17340795 ripCount = 3 +17340796 locktype1 = 0 +17340796 locktype2 = 2 +17340797 locktype3 = 1 +17340797 goalCount = 2 +17340798 goalTotal = 2 +17340798 otherCount = 4 +~~~ +17340826 UP 10 +17340826 waslock = 0 +17340826 512 1024 +~~~ +17341139 DOWN 10 +17341139 0 1024 +~~~ +17341164 UP 10 +17341164 waslock = 0 +17341164 512 1024 +~~~ +~~~ +~~~ +17341168 homeCount = 9 +17341168 waitCount = 3 +17341168 ripCount = 3 +17341169 locktype1 = 0 +17341169 locktype2 = 2 +17341170 locktype3 = 1 +17341170 goalCount = 2 +17341171 goalTotal = 2 +17341171 otherCount = 4 +~~~ +~~~ +17341287 DOWN 10 +17341287 0 1024 +~~~ +~~~ +~~~ +~~~ +17341311 homeCount = 9 +17341312 waitCount = 3 +17341312 ripCount = 3 +17341312 locktype1 = 0 +17341313 locktype2 = 2 +17341313 locktype3 = 1 +17341314 goalCount = 2 +17341314 goalTotal = 2 +17341315 otherCount = 4 +~~~ +17341319 UP 10 +17341319 waslock = 0 +17341319 512 1024 +~~~ +17345688 DOWN 10 +17345688 0 1024 +~~~ +~~~ +~~~ +~~~ +17345716 homeCount = 9 +17345716 waitCount = 3 +17345717 ripCount = 3 +17345717 locktype1 = 0 +17345718 locktype2 = 2 +17345718 locktype3 = 1 +17345719 goalCount = 2 +17345719 goalTotal = 2 +17345720 otherCount = 4 +~~~ +17345720 UP 10 +17345721 waslock = 0 +17345720 512 1024 +~~~ +17346020 DOWN 10 +17346020 0 1024 +~~~ +~~~ +~~~ +~~~ +17346050 homeCount = 9 +17346051 waitCount = 3 +17346051 ripCount = 3 +17346052 locktype1 = 0 +17346052 locktype2 = 2 +17346053 locktype3 = 1 +17346053 goalCount = 2 +17346054 goalTotal = 2 +17346054 otherCount = 4 +~~~ +17346061 UP 10 +17346061 waslock = 0 +17346061 512 1024 +~~~ +17346109 DOWN 10 +17346109 0 1024 +~~~ +~~~ +~~~ +~~~ +17346131 homeCount = 9 +17346132 waitCount = 3 +17346132 ripCount = 3 +17346133 locktype1 = 0 +17346133 locktype2 = 2 +17346134 locktype3 = 1 +17346134 goalCount = 2 +17346135 goalTotal = 2 +17346135 otherCount = 4 +~~~ +17348173 UP 11 +17348173 1024 1024 +17348892 DOWN 11 +17348892 0 1024 +17348931 UP 11 +17348931 1024 1024 +17349733 DOWN 11 +17349733 0 1024 +17349791 UP 11 +17349791 1024 1024 +17352368 DOWN 11 +17352368 0 1024 +17352424 UP 11 +17352424 1024 1024 +17353673 BEEP1 +17353673 BEEP2 +~~~ +~~~ +~~~ +17353696 1024 33555456 +~~~ +17353846 1024 1024 +17358269 DOWN 11 +17358269 0 1024 +~~~ +~~~ +17358285 0 0 +~~~ +~~~ +17358286 0 1 +~~~ +~~~ +17358288 0 3 +~~~ +~~~ +17358290 0 7 +~~~ +~~~ +17358292 0 15 +~~~ +~~~ +17358294 0 31 +~~~ +~~~ +17358295 0 63 +~~~ +~~~ +17358297 0 127 +~~~ +~~~ +17358299 0 255 +17358300 homeCount = 9 +17358301 waitCount = 3 +17358301 ripCount = 4 +17358302 locktype1 = 0 +17358302 locktype2 = 2 +17358323 locktype3 = 1 +17358323 goalCount = 2 +17358324 goalTotal = 2 +17358324 otherCount = 4 +~~~ +17358325 CURRENTGOAL IS [8] +~~~ +17365570 UP 5 +17365570 16 255 +~~~ +~~~ +17365592 DOWN 5 +17365592 0 255 +~~~ +~~~ +17365610 0 254 +~~~ +~~~ +17365612 0 252 +~~~ +~~~ +17365613 0 248 +~~~ +~~~ +17365615 0 240 +~~~ +~~~ +17365617 0 224 +~~~ +~~~ +17365619 0 192 +~~~ +~~~ +17365621 0 128 +~~~ +~~~ +17365623 0 0 +~~~ +~~~ +17365624 0 512 +17365625 homeCount = 9 +17365626 waitCount = 3 +17365626 ripCount = 4 +17365627 locktype1 = 0 +17365627 locktype2 = 2 +17365648 locktype3 = 1 +17365649 goalCount = 2 +17365649 goalTotal = 2 +17365650 otherCount = 5 +~~~ +17365781 16 512 +17365998 DOWN 5 +17365998 0 512 +17366057 16 512 +17366358 DOWN 5 +17366358 0 512 +17370017 UP 10 +17370017 waslock = 0 +17370016 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17370044 512 16777728 +~~~ +17370086 DOWN 10 +17370086 0 16777728 +17370102 UP 10 +17370102 waslock = 0 +17370102 512 16777728 +~~~ +~~~ +17370109 512 16779776 +~~~ +~~~ +17370110 512 16779264 +17370111 homeCount = 10 +17370112 waitCount = 3 +17370112 ripCount = 4 +17370113 locktype1 = 0 +17370113 locktype2 = 2 +17370114 locktype3 = 1 +17370114 goalCount = 2 +17370115 goalTotal = 2 +17370115 otherCount = 5 +~~~ +~~~ +17370194 512 2048 +17370314 DOWN 10 +17370314 0 2048 +~~~ +~~~ +~~~ +~~~ +17370342 homeCount = 10 +17370342 waitCount = 3 +17370343 ripCount = 4 +17370343 locktype1 = 0 +17370344 locktype2 = 2 +17370344 locktype3 = 1 +17370345 goalCount = 2 +17370345 goalTotal = 2 +17370346 otherCount = 5 +~~~ +17370349 UP 10 +17370350 waslock = 0 +17370349 512 2048 +~~~ +17375317 DOWN 10 +17375317 0 2048 +~~~ +~~~ +~~~ +~~~ +17375343 homeCount = 10 +17375343 waitCount = 3 +17375344 ripCount = 4 +17375344 locktype1 = 0 +17375345 locktype2 = 2 +17375345 locktype3 = 1 +17375346 goalCount = 2 +17375346 goalTotal = 2 +17375347 otherCount = 5 +~~~ +17376808 UP 12 +17376808 2048 2048 +17377545 DOWN 12 +17377545 0 2048 +17377568 UP 12 +17377568 2048 2048 +17377991 DOWN 12 +17377991 0 2048 +17378027 UP 12 +17378027 2048 2048 +17378035 DOWN 12 +17378035 0 2048 +17378077 UP 12 +17378077 2048 2048 +17379308 CLICK1 +17379308 CLICK2 +~~~ +~~~ +~~~ +17379331 2048 67110912 +~~~ +17379481 2048 2048 +17385850 DOWN 12 +17385850 0 2048 +~~~ +~~~ +17385870 0 0 +~~~ +~~~ +17385872 0 1 +~~~ +~~~ +17385874 0 3 +~~~ +~~~ +17385876 0 7 +~~~ +~~~ +17385878 0 15 +~~~ +~~~ +17385879 0 31 +~~~ +~~~ +17385881 0 63 +~~~ +~~~ +17385883 0 127 +~~~ +~~~ +17385885 0 255 +17385886 homeCount = 10 +17385886 waitCount = 4 +17385887 ripCount = 4 +17385887 locktype1 = 0 +17385888 locktype2 = 2 +17385909 locktype3 = 1 +17385910 goalCount = 2 +17385910 goalTotal = 2 +17385911 otherCount = 5 +~~~ +17385912 CURRENTGOAL IS [8] +~~~ +17388562 UP 4 +17388562 8 255 +~~~ +~~~ +17388885 DOWN 4 +17388885 0 255 +~~~ +~~~ +17388905 0 254 +~~~ +~~~ +17388907 0 252 +~~~ +~~~ +17388909 0 248 +~~~ +~~~ +17388911 0 240 +~~~ +~~~ +17388913 0 224 +~~~ +~~~ +17388915 0 192 +~~~ +~~~ +17388916 0 128 +~~~ +~~~ +17388918 0 0 +~~~ +~~~ +17388920 0 512 +17388921 homeCount = 10 +17388922 waitCount = 4 +17388922 ripCount = 4 +17388923 locktype1 = 0 +17388923 locktype2 = 2 +17388944 locktype3 = 1 +17388945 goalCount = 2 +17388945 goalTotal = 2 +17388946 otherCount = 6 +~~~ +17388946 8 512 +17390803 DOWN 4 +17390803 0 512 +17390805 8 512 +17390813 DOWN 4 +17390813 0 512 +17390818 8 512 +17392370 DOWN 4 +17392370 0 512 +17392384 8 512 +17392555 DOWN 4 +17392555 0 512 +17392566 8 512 +17392739 DOWN 4 +17392739 0 512 +17392749 8 512 +17393053 DOWN 4 +17393053 0 512 +17397905 UP 10 +17397905 waslock = 0 +17397905 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17397935 512 16777728 +~~~ +17397959 DOWN 10 +17397959 0 16777728 +~~~ +~~~ +17397988 0 16778752 +~~~ +~~~ +17397989 0 16778240 +17397990 homeCount = 11 +17397991 waitCount = 4 +17397991 ripCount = 4 +17397992 locktype1 = 0 +17397992 locktype2 = 2 +17397993 locktype3 = 1 +17397993 goalCount = 2 +17397994 goalTotal = 2 +17397994 otherCount = 6 +~~~ +17398015 UP 10 +17398015 waslock = 0 +17398015 512 16778240 +~~~ +17398085 512 1024 +17398135 DOWN 10 +17398135 0 1024 +~~~ +~~~ +~~~ +~~~ +17398161 homeCount = 11 +17398161 waitCount = 4 +17398162 ripCount = 4 +17398162 locktype1 = 0 +17398163 locktype2 = 2 +17398163 locktype3 = 1 +17398164 goalCount = 2 +17398164 goalTotal = 2 +17398165 otherCount = 6 +~~~ +17398199 UP 10 +17398200 waslock = 0 +17398199 512 1024 +~~~ +17401566 DOWN 10 +17401566 0 1024 +~~~ +~~~ +~~~ +~~~ +17401591 homeCount = 11 +17401591 waitCount = 4 +17401592 ripCount = 4 +17401592 locktype1 = 0 +17401593 locktype2 = 2 +17401593 locktype3 = 1 +17401594 goalCount = 2 +17401594 goalTotal = 2 +17401595 otherCount = 6 +~~~ +17401630 UP 10 +17401630 waslock = 0 +17401630 512 1024 +17401646 DOWN 10 +17401646 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +17401673 homeCount = 11 +17401673 waitCount = 4 +17401674 ripCount = 4 +17401674 locktype1 = 0 +17401674 locktype2 = 2 +17401675 locktype3 = 1 +17401675 goalCount = 2 +17401676 goalTotal = 2 +17401676 otherCount = 6 +~~~ +17403114 UP 11 +17403114 1024 1024 +17403966 DOWN 11 +17403966 0 1024 +17404015 UP 11 +17404015 1024 1024 +17404028 DOWN 11 +17404028 0 1024 +17404049 UP 11 +17404049 1024 1024 +17405538 DOWN 11 +17405538 0 1024 +17405561 UP 11 +17405561 1024 1024 +17407114 BEEP1 +17407114 BEEP2 +~~~ +~~~ +~~~ +17407139 1024 33555456 +~~~ +17407289 1024 1024 +17411324 DOWN 11 +17411324 0 1024 +17411329 UP 11 +17411329 1024 1024 +~~~ +~~~ +17411346 1024 0 +~~~ +~~~ +17411348 1024 1 +~~~ +~~~ +17411350 1024 3 +~~~ +~~~ +17411352 1024 7 +~~~ +~~~ +17411353 1024 15 +~~~ +~~~ +17411355 1024 31 +~~~ +~~~ +17411357 1024 63 +~~~ +~~~ +17411359 1024 127 +~~~ +~~~ +17411361 1024 255 +17411362 homeCount = 11 +17411362 waitCount = 4 +17411363 ripCount = 5 +17411384 locktype1 = 0 +17411384 locktype2 = 2 +17411385 locktype3 = 1 +17411385 goalCount = 2 +17411386 goalTotal = 2 +17411386 otherCount = 6 +~~~ +17411387 CURRENTGOAL IS [8] +~~~ +17411388 DOWN 11 +17411388 0 255 +17411400 UP 11 +17411400 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411443 homeCount = 11 +17411444 waitCount = 4 +17411444 ripCount = 5 +17411445 locktype1 = 0 +17411445 locktype2 = 2 +17411446 locktype3 = 1 +17411446 goalCount = 2 +17411447 goalTotal = 2 +17411447 otherCount = 6 +~~~ +17411448 CURRENTGOAL IS [8] +~~~ +17411594 DOWN 11 +17411594 0 255 +17411605 UP 11 +17411605 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411634 homeCount = 11 +17411635 waitCount = 4 +17411636 ripCount = 5 +17411636 locktype1 = 0 +17411637 locktype2 = 2 +17411637 locktype3 = 1 +17411638 goalCount = 2 +17411638 goalTotal = 2 +17411638 otherCount = 6 +~~~ +17411640 CURRENTGOAL IS [8] +~~~ +17411643 DOWN 11 +17411643 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411684 UP 11 +17411684 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411695 homeCount = 11 +17411696 waitCount = 4 +17411696 ripCount = 5 +17411697 locktype1 = 0 +17411697 locktype2 = 2 +17411698 locktype3 = 1 +17411698 goalCount = 2 +17411699 goalTotal = 2 +17411699 otherCount = 6 +~~~ +17411700 CURRENTGOAL IS [8] +~~~ +17411725 DOWN 11 +17411725 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411763 homeCount = 11 +17411764 waitCount = 4 +17411765 ripCount = 5 +17411765 locktype1 = 0 +17411766 locktype2 = 2 +17411766 locktype3 = 1 +17411766 goalCount = 2 +17411767 goalTotal = 2 +17411767 otherCount = 6 +~~~ +17411769 CURRENTGOAL IS [8] +~~~ +17414174 UP 8 +17414174 128 255 +~~~ +~~~ +17414201 outer reward +~~~ +17414202 128 8388863 +~~~ +~~~ +17414479 DOWN 8 +17414479 0 8388863 +17414498 128 8388863 +~~~ +~~~ +17414500 128 8388862 +~~~ +~~~ +17414502 128 8388860 +~~~ +~~~ +17414503 128 8388856 +~~~ +~~~ +17414505 128 8388848 +~~~ +~~~ +17414507 128 8388832 +~~~ +~~~ +17414509 128 8388800 +~~~ +~~~ +17414511 128 8388736 +~~~ +~~~ +17414513 128 8388608 +~~~ +~~~ +17414514 128 8389120 +17414536 homeCount = 11 +17414537 waitCount = 4 +17414537 ripCount = 5 +17414537 locktype1 = 0 +17414538 locktype2 = 2 +17414538 locktype3 = 1 +17414539 goalCount = 3 +17414539 goalTotal = 3 +17414540 otherCount = 6 +~~~ +17414651 128 512 +17414876 DOWN 8 +17414876 0 512 +17414889 128 512 +17421666 DOWN 8 +17421666 0 512 +17426251 UP 10 +17426251 waslock = 0 +17426251 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17426278 512 16777728 +~~~ +17426428 512 512 +17426438 DOWN 10 +17426438 0 512 +~~~ +~~~ +17426454 0 1536 +~~~ +~~~ +17426456 0 1024 +17426457 homeCount = 12 +17426458 waitCount = 4 +17426458 ripCount = 5 +17426459 locktype1 = 0 +17426459 locktype2 = 2 +17426460 locktype3 = 1 +17426460 goalCount = 3 +17426461 goalTotal = 3 +17426461 otherCount = 6 +~~~ +17426536 UP 10 +17426537 waslock = 0 +17426536 512 1024 +~~~ +17430663 DOWN 10 +17430663 0 1024 +~~~ +~~~ +~~~ +~~~ +17430685 homeCount = 12 +17430685 waitCount = 4 +17430686 ripCount = 5 +17430686 locktype1 = 0 +17430687 locktype2 = 2 +17430687 locktype3 = 1 +17430688 goalCount = 3 +17430688 goalTotal = 3 +17430689 otherCount = 6 +~~~ +17432753 UP 11 +17432753 1024 1024 +17433614 DOWN 11 +17433614 0 1024 +17433672 UP 11 +17433672 1024 1024 +17434770 DOWN 11 +17434770 0 1024 +17434790 UP 11 +17434790 1024 1024 +17437253 DOWN 11 +17437253 0 1024 +17437320 UP 11 +17437320 1024 1024 +17437753 BEEP1 +17437753 BEEP2 +~~~ +~~~ +~~~ +17437773 1024 33555456 +~~~ +17437923 1024 1024 +17443197 DOWN 11 +17443197 0 1024 +~~~ +~~~ +17443221 0 0 +~~~ +~~~ +17443222 0 1 +~~~ +~~~ +17443224 0 3 +~~~ +~~~ +17443226 0 7 +~~~ +~~~ +17443228 0 15 +~~~ +~~~ +17443230 0 31 +~~~ +~~~ +17443232 0 63 +~~~ +~~~ +17443233 0 127 +~~~ +17443235 UP 11 +17443235 1024 127 +~~~ +17443236 homeCount = 12 +17443237 waitCount = 4 +17443237 ripCount = 6 +17443238 locktype1 = 0 +17443259 locktype2 = 2 +17443259 locktype3 = 1 +17443260 goalCount = 3 +17443260 goalTotal = 3 +17443261 otherCount = 6 +~~~ +17443262 CURRENTGOAL IS [8] +~~~ +17443262 1024 255 +17443287 DOWN 11 +17443287 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17443317 homeCount = 12 +17443318 waitCount = 4 +17443318 ripCount = 6 +17443319 locktype1 = 0 +17443319 locktype2 = 2 +17443320 locktype3 = 1 +17443320 goalCount = 3 +17443320 goalTotal = 3 +17443321 otherCount = 6 +~~~ +17443322 CURRENTGOAL IS [8] +~~~ +17443352 UP 11 +17443352 1024 255 +17443995 DOWN 11 +17443995 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444028 homeCount = 12 +17444028 waitCount = 4 +17444029 ripCount = 6 +17444029 locktype1 = 0 +17444030 locktype2 = 2 +17444030 locktype3 = 1 +17444031 goalCount = 3 +17444031 goalTotal = 3 +17444032 otherCount = 6 +~~~ +17444033 CURRENTGOAL IS [8] +~~~ +17444354 UP 11 +17444354 1024 255 +17444599 DOWN 11 +17444599 0 255 +17444616 UP 11 +17444616 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444637 homeCount = 12 +17444637 waitCount = 4 +17444638 ripCount = 6 +17444638 locktype1 = 0 +17444639 locktype2 = 2 +17444639 locktype3 = 1 +17444640 goalCount = 3 +17444640 goalTotal = 3 +17444641 otherCount = 6 +~~~ +17444642 CURRENTGOAL IS [8] +~~~ +17444645 DOWN 11 +17444645 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444702 homeCount = 12 +17444702 waitCount = 4 +17444703 ripCount = 6 +17444703 locktype1 = 0 +17444704 locktype2 = 2 +17444704 locktype3 = 1 +17444705 goalCount = 3 +17444705 goalTotal = 3 +17444706 otherCount = 6 +~~~ +17444707 CURRENTGOAL IS [8] +~~~ +17448341 UP 8 +17448341 128 255 +~~~ +~~~ +17448364 outer reward +~~~ +17448364 128 8388863 +~~~ +~~~ +17448537 DOWN 8 +17448537 0 8388863 +~~~ +~~~ +17448561 0 8388862 +~~~ +~~~ +17448563 0 8388860 +~~~ +~~~ +17448564 0 8388856 +~~~ +~~~ +17448566 0 8388848 +~~~ +~~~ +17448568 0 8388832 +~~~ +~~~ +17448570 0 8388800 +~~~ +~~~ +17448572 0 8388736 +~~~ +~~~ +17448573 0 8388608 +~~~ +~~~ +17448575 0 8389120 +17448576 homeCount = 12 +17448577 waitCount = 4 +17448598 ripCount = 6 +17448598 locktype1 = 0 +17448599 locktype2 = 2 +17448599 locktype3 = 1 +17448600 goalCount = 4 +17448600 goalTotal = 4 +17448601 otherCount = 6 +~~~ +17448601 128 8389120 +17448814 128 512 +17448949 DOWN 8 +17448949 0 512 +17448983 128 512 +17449076 DOWN 8 +17449076 0 512 +17449099 128 512 +17449201 DOWN 8 +17449201 0 512 +17449231 128 512 +17449326 DOWN 8 +17449326 0 512 +17449363 128 512 +17449462 DOWN 8 +17449462 0 512 +17449484 128 512 +17454977 DOWN 8 +17454977 0 512 +17461792 UP 10 +17461793 waslock = 0 +17461792 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17461817 512 16777728 +~~~ +17461948 DOWN 10 +17461948 0 16777728 +17461967 0 512 +~~~ +~~~ +17461972 0 2560 +~~~ +~~~ +17461974 0 2048 +17461975 homeCount = 13 +17461975 waitCount = 4 +17461976 ripCount = 6 +17461976 locktype1 = 0 +17461977 locktype2 = 2 +17461977 locktype3 = 1 +17461978 goalCount = 4 +17461978 goalTotal = 4 +17461979 otherCount = 6 +~~~ +17462000 UP 10 +17462000 waslock = 0 +17462000 512 2048 +~~~ +17465243 DOWN 10 +17465243 0 2048 +~~~ +~~~ +~~~ +~~~ +17465265 homeCount = 13 +17465266 waitCount = 4 +17465266 ripCount = 6 +17465267 locktype1 = 0 +17465267 locktype2 = 2 +17465268 locktype3 = 1 +17465268 goalCount = 4 +17465269 goalTotal = 4 +17465269 otherCount = 6 +~~~ +17465307 UP 10 +17465308 waslock = 0 +17465307 512 2048 +17465331 DOWN 10 +17465331 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17465361 homeCount = 13 +17465362 waitCount = 4 +17465362 ripCount = 6 +17465362 locktype1 = 0 +17465363 locktype2 = 2 +17465363 locktype3 = 1 +17465364 goalCount = 4 +17465364 goalTotal = 4 +17465365 otherCount = 6 +~~~ +17466887 UP 12 +17466887 2048 2048 +17466953 DOWN 12 +17466953 0 2048 +17466965 UP 12 +17466965 2048 2048 +17467866 DOWN 12 +17467866 0 2048 +17467881 UP 12 +17467881 2048 2048 +17468821 DOWN 12 +17468821 0 2048 +17468850 UP 12 +17468850 2048 2048 +17470138 CLICK1 +17470138 CLICK2 +~~~ +~~~ +~~~ +17470157 2048 67110912 +~~~ +17470307 2048 2048 +17478019 DOWN 12 +17478019 0 2048 +~~~ +~~~ +17478045 0 0 +~~~ +~~~ +17478047 0 1 +~~~ +~~~ +17478049 0 3 +~~~ +~~~ +17478051 0 7 +~~~ +~~~ +17478052 0 15 +~~~ +~~~ +17478054 0 31 +~~~ +~~~ +17478056 0 63 +~~~ +~~~ +17478058 0 127 +~~~ +~~~ +17478060 0 255 +17478061 homeCount = 13 +17478061 waitCount = 5 +17478062 ripCount = 6 +17478062 locktype1 = 0 +17478063 locktype2 = 2 +17478084 locktype3 = 1 +17478084 goalCount = 4 +17478085 goalTotal = 4 +17478085 otherCount = 6 +~~~ +17478086 CURRENTGOAL IS [8] +~~~ +17483323 UP 8 +17483323 128 255 +~~~ +~~~ +17483350 outer reward +~~~ +17483351 128 8388863 +~~~ +~~~ +17483557 DOWN 8 +17483557 0 8388863 +~~~ +~~~ +17483578 0 8388862 +~~~ +~~~ +17483580 0 8388860 +~~~ +~~~ +17483582 0 8388856 +~~~ +~~~ +17483584 0 8388848 +~~~ +~~~ +17483585 0 8388832 +~~~ +~~~ +17483587 0 8388800 +~~~ +~~~ +17483589 0 8388736 +~~~ +~~~ +17483591 0 8388608 +~~~ +~~~ +17483593 0 8389120 +17483594 homeCount = 13 +17483594 waitCount = 5 +17483616 ripCount = 6 +17483616 locktype1 = 0 +17483616 locktype2 = 2 +17483617 locktype3 = 1 +17483617 goalCount = 5 +17483618 goalTotal = 5 +17483618 otherCount = 6 +~~~ +17483619 128 8389120 +17483800 128 512 +17483845 DOWN 8 +17483845 0 512 +17483863 128 512 +17483965 DOWN 8 +17483965 0 512 +17483990 128 512 +17484079 DOWN 8 +17484079 0 512 +17484114 128 512 +17484192 DOWN 8 +17484192 0 512 +17484238 128 512 +17484318 DOWN 8 +17484318 0 512 +17484367 128 512 +17484450 DOWN 8 +17484450 0 512 +17484491 128 512 +17486711 DOWN 8 +17486711 0 512 +17486727 128 512 +17489526 DOWN 8 +17489526 0 512 +17489546 128 512 +17489608 DOWN 8 +17489608 0 512 +17493929 UP 10 +17493929 waslock = 0 +17493929 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17493954 512 16777728 +~~~ +17494104 512 512 +17494144 DOWN 10 +17494144 0 512 +17494153 UP 10 +17494153 waslock = 0 +17494153 512 512 +~~~ +~~~ +17494169 512 1536 +~~~ +~~~ +17494171 512 1024 +17494172 homeCount = 14 +17494172 waitCount = 5 +17494173 ripCount = 6 +17494173 locktype1 = 0 +17494174 locktype2 = 2 +17494174 locktype3 = 1 +17494175 goalCount = 5 +17494175 goalTotal = 5 +17494176 otherCount = 6 +~~~ +~~~ +17497685 DOWN 10 +17497685 0 1024 +~~~ +~~~ +~~~ +~~~ +17497711 homeCount = 14 +17497712 waitCount = 5 +17497712 ripCount = 6 +17497713 locktype1 = 0 +17497713 locktype2 = 2 +17497714 locktype3 = 1 +17497714 goalCount = 5 +17497715 goalTotal = 5 +17497715 otherCount = 6 +~~~ +17497748 UP 10 +17497748 waslock = 0 +17497748 512 1024 +17497761 DOWN 10 +17497761 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +17497787 homeCount = 14 +17497788 waitCount = 5 +17497788 ripCount = 6 +17497789 locktype1 = 0 +17497789 locktype2 = 2 +17497790 locktype3 = 1 +17497790 goalCount = 5 +17497790 goalTotal = 5 +17497791 otherCount = 6 +~~~ +17499720 UP 11 +17499720 1024 1024 +17501721 BEEP1 +17501721 BEEP2 +~~~ +~~~ +~~~ +17501741 1024 33555456 +~~~ +17501890 1024 1024 +17506486 DOWN 11 +17506486 0 1024 +17506499 UP 11 +17506499 1024 1024 +~~~ +~~~ +17506521 1024 0 +~~~ +~~~ +17506523 1024 1 +~~~ +~~~ +17506525 1024 3 +~~~ +~~~ +17506527 1024 7 +~~~ +~~~ +17506529 1024 15 +~~~ +~~~ +17506530 1024 31 +~~~ +~~~ +17506532 1024 63 +~~~ +~~~ +17506534 1024 127 +~~~ +~~~ +17506536 1024 255 +17506537 homeCount = 14 +17506537 waitCount = 5 +17506538 ripCount = 7 +17506559 locktype1 = 0 +17506560 locktype2 = 2 +17506560 locktype3 = 1 +17506561 goalCount = 5 +17506561 goalTotal = 5 +17506561 otherCount = 6 +~~~ +17506563 CURRENTGOAL IS [8] +~~~ +17506564 DOWN 11 +17506564 0 255 +17506596 UP 11 +17506596 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17506617 homeCount = 14 +17506617 waitCount = 5 +17506618 ripCount = 7 +17506618 locktype1 = 0 +17506619 locktype2 = 2 +17506619 locktype3 = 1 +17506620 goalCount = 5 +17506620 goalTotal = 5 +17506621 otherCount = 6 +~~~ +17506622 CURRENTGOAL IS [8] +~~~ +17509072 DOWN 11 +17509072 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17509109 homeCount = 14 +17509110 waitCount = 5 +17509110 ripCount = 7 +17509111 locktype1 = 0 +17509111 locktype2 = 2 +17509112 locktype3 = 1 +17509112 goalCount = 5 +17509113 goalTotal = 5 +17509113 otherCount = 6 +~~~ +17509114 CURRENTGOAL IS [8] +~~~ +17512927 UP 8 +17512927 128 255 +~~~ +~~~ +17512955 outer reward +~~~ +17512955 128 8388863 +~~~ +~~~ +17513181 DOWN 8 +17513181 0 8388863 +~~~ +~~~ +17513203 0 8388862 +~~~ +~~~ +17513205 0 8388860 +~~~ +~~~ +17513207 0 8388856 +~~~ +~~~ +17513209 0 8388848 +~~~ +~~~ +17513211 0 8388832 +~~~ +~~~ +17513213 0 8388800 +~~~ +~~~ +17513214 0 8388736 +~~~ +~~~ +17513216 0 8388608 +~~~ +~~~ +17513218 0 8389120 +17513219 homeCount = 14 +17513220 waitCount = 5 +17513240 ripCount = 7 +17513241 locktype1 = 0 +17513241 locktype2 = 2 +17513242 locktype3 = 1 +17513242 goalCount = 6 +17513243 goalTotal = 6 +17513243 otherCount = 6 +~~~ +17513244 128 8389120 +17513405 128 512 +17513479 DOWN 8 +17513479 0 512 +17513494 128 512 +17513590 DOWN 8 +17513590 0 512 +17513629 128 512 +17513711 DOWN 8 +17513711 0 512 +17513756 128 512 +17513838 DOWN 8 +17513838 0 512 +17513885 128 512 +17513986 DOWN 8 +17513986 0 512 +17514007 128 512 +17514134 DOWN 8 +17514134 0 512 +17514141 128 512 +17514281 DOWN 8 +17514281 0 512 +17514290 128 512 +17514893 DOWN 8 +17514893 0 512 +17514904 128 512 +17518932 DOWN 8 +17518932 0 512 +17518938 128 512 +17519269 DOWN 8 +17519269 0 512 +17519335 128 512 +17519347 DOWN 8 +17519347 0 512 +17524157 UP 10 +17524157 waslock = 0 +17524157 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17524183 512 16777728 +~~~ +17524333 512 512 +17529362 DOWN 10 +17529362 0 512 +~~~ +~~~ +17529386 0 2560 +~~~ +~~~ +17529388 0 2048 +17529389 homeCount = 15 +17529390 waitCount = 5 +17529390 ripCount = 7 +17529391 locktype1 = 0 +17529391 locktype2 = 2 +17529392 locktype3 = 1 +17529392 goalCount = 6 +17529393 goalTotal = 6 +17529393 otherCount = 6 +~~~ +17530797 UP 12 +17530797 2048 2048 +17532183 DOWN 12 +17532183 0 2048 +17532260 UP 12 +17532260 2048 2048 +17533139 DOWN 12 +17533139 0 2048 +17533154 UP 12 +17533154 2048 2048 +17533246 DOWN 12 +17533246 0 2048 +17533274 UP 12 +17533274 2048 2048 +17534047 CLICK1 +17534047 CLICK2 +~~~ +~~~ +~~~ +17534071 2048 67110912 +~~~ +17534221 2048 2048 +17540436 DOWN 12 +17540436 0 2048 +~~~ +~~~ +17540456 0 0 +~~~ +~~~ +17540458 0 1 +~~~ +~~~ +17540460 UP 12 +17540460 2048 3 +~~~ +~~~ +17540462 2048 7 +~~~ +~~~ +17540463 2048 15 +~~~ +~~~ +17540465 2048 31 +~~~ +~~~ +17540467 2048 63 +~~~ +~~~ +17540469 2048 127 +~~~ +~~~ +17540471 2048 255 +17540472 homeCount = 15 +17540472 waitCount = 6 +17540494 ripCount = 7 +17540494 locktype1 = 0 +17540494 locktype2 = 2 +17540495 locktype3 = 1 +17540495 goalCount = 6 +17540496 goalTotal = 6 +17540496 otherCount = 6 +~~~ +17540497 CURRENTGOAL IS [8] +~~~ +17541587 DOWN 12 +17541587 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17541625 homeCount = 15 +17541625 waitCount = 6 +17541626 ripCount = 7 +17541626 locktype1 = 0 +17541627 locktype2 = 2 +17541627 locktype3 = 1 +17541628 goalCount = 6 +17541628 goalTotal = 6 +17541629 otherCount = 6 +~~~ +17541630 CURRENTGOAL IS [8] +~~~ +17541658 UP 12 +17541658 2048 255 +17541921 DOWN 12 +17541921 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17541955 homeCount = 15 +17541956 waitCount = 6 +17541956 ripCount = 7 +17541957 locktype1 = 0 +17541957 locktype2 = 2 +17541958 locktype3 = 1 +17541958 goalCount = 6 +17541959 goalTotal = 6 +17541959 otherCount = 6 +~~~ +17541960 CURRENTGOAL IS [8] +~~~ +17545684 UP 8 +17545684 128 255 +~~~ +~~~ +17545712 outer reward +~~~ +17545712 128 8388863 +~~~ +~~~ +17545903 DOWN 8 +17545903 0 8388863 +~~~ +~~~ +17545920 0 8388862 +~~~ +~~~ +17545921 0 8388860 +~~~ +~~~ +17545923 0 8388856 +~~~ +~~~ +17545925 0 8388848 +~~~ +~~~ +17545927 0 8388832 +~~~ +~~~ +17545929 0 8388800 +~~~ +~~~ +17545930 0 8388736 +~~~ +~~~ +17545932 0 8388608 +~~~ +~~~ +17545934 0 8389120 +17545935 homeCount = 15 +17545936 waitCount = 6 +17545957 ripCount = 7 +17545957 locktype1 = 0 +17545958 locktype2 = 2 +17545958 locktype3 = 1 +17545959 goalCount = 7 +17545959 goalTotal = 7 +17545960 otherCount = 6 +~~~ +17545973 128 8389120 +17546162 128 512 +17546357 DOWN 8 +17546357 0 512 +17546382 128 512 +17546476 DOWN 8 +17546476 0 512 +17546510 128 512 +17546604 DOWN 8 +17546604 0 512 +17546636 128 512 +17546732 DOWN 8 +17546732 0 512 +17546771 128 512 +17546862 DOWN 8 +17546862 0 512 +17546900 128 512 +17547009 DOWN 8 +17547009 0 512 +17547028 128 512 +17549002 DOWN 8 +17549002 0 512 +17549012 128 512 +17551604 DOWN 8 +17551604 0 512 +17551642 128 512 +17551692 DOWN 8 +17551692 0 512 +17555613 UP 10 +17555614 waslock = 0 +17555613 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17555639 512 16777728 +~~~ +17555789 512 512 +17555789 DOWN 10 +17555789 0 512 +~~~ +~~~ +17555815 0 2560 +~~~ +~~~ +17555817 0 2048 +17555818 homeCount = 16 +17555819 waitCount = 6 +17555819 ripCount = 7 +17555820 locktype1 = 0 +17555820 locktype2 = 2 +17555821 locktype3 = 1 +17555821 goalCount = 7 +17555822 goalTotal = 7 +17555822 otherCount = 6 +~~~ +17555873 UP 10 +17555874 waslock = 0 +17555873 512 2048 +~~~ +17560044 DOWN 10 +17560044 0 2048 +~~~ +~~~ +~~~ +~~~ +17560066 homeCount = 16 +17560066 waitCount = 6 +17560067 ripCount = 7 +17560067 locktype1 = 0 +17560068 locktype2 = 2 +17560068 locktype3 = 1 +17560069 goalCount = 7 +17560069 goalTotal = 7 +17560070 otherCount = 6 +~~~ +17561628 UP 12 +17561628 2048 2048 +17563348 DOWN 12 +17563348 0 2048 +17563378 UP 12 +17563378 2048 2048 +17563628 CLICK1 +17563628 CLICK2 +~~~ +~~~ +~~~ +17563654 2048 67110912 +~~~ +17563804 2048 2048 +17569146 DOWN 12 +17569146 0 2048 +~~~ +~~~ +17569173 0 0 +~~~ +~~~ +17569175 0 1 +~~~ +~~~ +17569177 0 3 +~~~ +~~~ +17569179 0 7 +~~~ +~~~ +17569180 0 15 +~~~ +~~~ +17569182 0 31 +~~~ +~~~ +17569184 0 63 +~~~ +~~~ +17569186 0 127 +~~~ +17569187 UP 12 +17569187 2048 127 +~~~ +17569189 homeCount = 16 +17569189 waitCount = 7 +17569190 ripCount = 7 +17569190 locktype1 = 0 +17569211 locktype2 = 2 +17569212 locktype3 = 1 +17569212 goalCount = 7 +17569212 goalTotal = 7 +17569213 otherCount = 6 +~~~ +17569214 CURRENTGOAL IS [8] +~~~ +17569214 DOWN 12 +17569214 0 255 +17569225 UP 12 +17569225 2048 255 +17569227 DOWN 12 +17569226 0 255 +17569253 UP 12 +17569253 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17569271 homeCount = 16 +17569271 waitCount = 7 +17569272 ripCount = 7 +17569272 locktype1 = 0 +17569273 locktype2 = 2 +17569273 locktype3 = 1 +17569274 goalCount = 7 +17569274 goalTotal = 7 +17569275 otherCount = 6 +~~~ +17569276 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17569304 homeCount = 16 +17569304 waitCount = 7 +17569305 ripCount = 7 +17569305 locktype1 = 0 +17569306 locktype2 = 2 +17569306 locktype3 = 1 +17569307 goalCount = 7 +17569328 goalTotal = 7 +17569328 otherCount = 6 +~~~ +17569329 CURRENTGOAL IS [8] +~~~ +17570621 DOWN 12 +17570621 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17570647 UP 12 +17570647 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17570656 homeCount = 16 +17570656 waitCount = 7 +17570657 ripCount = 7 +17570657 locktype1 = 0 +17570658 locktype2 = 2 +17570658 locktype3 = 1 +17570659 goalCount = 7 +17570659 goalTotal = 7 +17570660 otherCount = 6 +~~~ +17570661 CURRENTGOAL IS [8] +~~~ +17572075 DOWN 12 +17572075 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17572108 homeCount = 16 +17572109 waitCount = 7 +17572109 ripCount = 7 +17572110 locktype1 = 0 +17572110 locktype2 = 2 +17572111 locktype3 = 1 +17572111 goalCount = 7 +17572112 goalTotal = 7 +17572112 otherCount = 6 +~~~ +17572113 CURRENTGOAL IS [8] +~~~ +17576141 UP 8 +17576141 128 255 +~~~ +~~~ +17576167 outer reward +~~~ +17576167 128 8388863 +~~~ +~~~ +17576274 DOWN 8 +17576274 0 8388863 +~~~ +~~~ +17576295 0 8388862 +~~~ +~~~ +17576297 0 8388860 +~~~ +~~~ +17576299 0 8388856 +~~~ +~~~ +17576301 0 8388848 +~~~ +~~~ +17576303 0 8388832 +~~~ +~~~ +17576304 0 8388800 +~~~ +~~~ +17576306 0 8388736 +~~~ +~~~ +17576308 0 8388608 +~~~ +~~~ +17576310 0 8389120 +17576311 homeCount = 16 +17576311 waitCount = 7 +17576333 ripCount = 7 +17576333 locktype1 = 0 +17576334 locktype2 = 2 +17576334 locktype3 = 1 +17576335 goalCount = 8 +17576335 goalTotal = 8 +17576336 otherCount = 6 +~~~ +17576336 128 8389120 +17576457 DOWN 8 +17576457 0 8389120 +17576472 128 8389120 +17576617 128 512 +17576727 DOWN 8 +17576727 0 512 +17576733 128 512 +17576842 DOWN 8 +17576842 0 512 +17576862 128 512 +17576969 DOWN 8 +17576969 0 512 +17576981 128 512 +17577099 DOWN 8 +17577099 0 512 +17577112 128 512 +17577236 DOWN 8 +17577236 0 512 +17577241 128 512 +17582498 DOWN 8 +17582498 0 512 +17586638 UP 10 +17586638 waslock = 0 +17586638 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17586667 512 16777728 +~~~ +17586817 512 512 +17586841 DOWN 10 +17586841 0 512 +~~~ +~~~ +17586860 0 1536 +~~~ +~~~ +17586862 0 1024 +17586863 homeCount = 17 +17586863 waitCount = 7 +17586864 ripCount = 7 +17586864 locktype1 = 0 +17586865 locktype2 = 2 +17586865 locktype3 = 1 +17586866 goalCount = 8 +17586866 goalTotal = 8 +17586867 otherCount = 6 +~~~ +17586888 UP 10 +17586888 waslock = 0 +17586888 512 1024 +~~~ +17591203 DOWN 10 +17591203 0 1024 +~~~ +~~~ +~~~ +~~~ +17591232 homeCount = 17 +17591233 waitCount = 7 +17591233 ripCount = 7 +17591234 locktype1 = 0 +17591234 locktype2 = 2 +17591235 locktype3 = 1 +17591235 goalCount = 8 +17591236 goalTotal = 8 +17591236 otherCount = 6 +~~~ +17591254 UP 10 +17591255 waslock = 0 +17591254 512 1024 +~~~ +17591283 DOWN 10 +17591283 0 1024 +~~~ +~~~ +~~~ +~~~ +17591304 homeCount = 17 +17591305 waitCount = 7 +17591305 ripCount = 7 +17591306 locktype1 = 0 +17591306 locktype2 = 2 +17591307 locktype3 = 1 +17591307 goalCount = 8 +17591308 goalTotal = 8 +17591308 otherCount = 6 +~~~ +17593343 UP 11 +17593343 1024 1024 +17594782 DOWN 11 +17594782 0 1024 +17594806 UP 11 +17594806 1024 1024 +17596343 BEEP1 +17596343 BEEP2 +~~~ +~~~ +~~~ +17596371 1024 33555456 +~~~ +17596521 1024 1024 +17602296 DOWN 11 +17602296 0 1024 +~~~ +~~~ +17602317 0 0 +~~~ +~~~ +17602319 0 1 +~~~ +~~~ +17602321 0 3 +~~~ +~~~ +17602323 0 7 +~~~ +~~~ +17602324 0 15 +~~~ +~~~ +17602326 0 31 +~~~ +~~~ +17602328 0 63 +~~~ +~~~ +17602330 0 127 +~~~ +17602331 UP 11 +17602331 1024 127 +~~~ +17602333 homeCount = 17 +17602333 waitCount = 7 +17602334 ripCount = 8 +17602334 locktype1 = 0 +17602355 locktype2 = 2 +17602356 locktype3 = 1 +17602356 goalCount = 8 +17602357 goalTotal = 8 +17602357 otherCount = 6 +~~~ +17602358 CURRENTGOAL IS [8] +~~~ +17602358 1024 255 +17602389 DOWN 11 +17602389 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17602424 homeCount = 17 +17602424 waitCount = 7 +17602425 ripCount = 8 +17602425 locktype1 = 0 +17602426 locktype2 = 2 +17602426 locktype3 = 1 +17602427 goalCount = 8 +17602427 goalTotal = 8 +17602428 otherCount = 6 +~~~ +17602429 CURRENTGOAL IS [8] +~~~ +17605378 UP 8 +17605378 128 255 +~~~ +~~~ +17605400 outer reward +~~~ +17605401 128 8388863 +~~~ +~~~ +17605620 DOWN 8 +17605620 0 8388863 +~~~ +~~~ +17605639 0 8388862 +~~~ +~~~ +17605641 0 8388860 +~~~ +~~~ +17605643 0 8388856 +~~~ +~~~ +17605644 0 8388848 +~~~ +~~~ +17605646 0 8388832 +~~~ +~~~ +17605648 0 8388800 +~~~ +~~~ +17605650 0 8388736 +~~~ +~~~ +17605652 0 8388608 +~~~ +~~~ +17605654 0 8389120 +17605655 homeCount = 17 +17605655 waitCount = 7 +17605676 ripCount = 8 +17605677 locktype1 = 0 +17605677 locktype2 = 2 +17605678 locktype3 = 1 +17605678 goalCount = 9 +17605679 goalTotal = 9 +17605679 otherCount = 6 +~~~ +17605680 128 8389120 +17605850 128 512 +17606053 DOWN 8 +17606053 0 512 +17606073 128 512 +17606178 DOWN 8 +17606178 0 512 +17606191 128 512 +17606307 DOWN 8 +17606307 0 512 +17606321 128 512 +17606437 DOWN 8 +17606437 0 512 +17606454 128 512 +17606881 DOWN 8 +17606881 0 512 +17606887 128 512 +17611622 DOWN 8 +17611622 0 512 +17611648 128 512 +17611713 DOWN 8 +17611713 0 512 +17616088 UP 10 +17616088 waslock = 0 +17616088 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17616116 512 16777728 +~~~ +17616256 DOWN 10 +17616256 0 16777728 +17616266 0 512 +~~~ +~~~ +17616281 0 1536 +~~~ +~~~ +17616283 0 1024 +17616284 homeCount = 18 +17616285 waitCount = 7 +17616285 ripCount = 8 +17616286 locktype1 = 0 +17616286 locktype2 = 2 +17616286 locktype3 = 1 +17616287 goalCount = 9 +17616287 goalTotal = 9 +17616288 otherCount = 6 +~~~ +17616317 UP 10 +17616318 waslock = 0 +17616317 512 1024 +~~~ +17619930 DOWN 10 +17619930 0 1024 +~~~ +~~~ +~~~ +~~~ +17619958 homeCount = 18 +17619958 waitCount = 7 +17619959 ripCount = 8 +17619959 locktype1 = 0 +17619960 locktype2 = 2 +17619960 locktype3 = 1 +17619961 goalCount = 9 +17619961 goalTotal = 9 +17619962 otherCount = 6 +~~~ +17619966 UP 10 +17619966 waslock = 0 +17619966 512 1024 +~~~ +17620023 DOWN 10 +17620022 0 1024 +~~~ +~~~ +~~~ +~~~ +17620051 homeCount = 18 +17620051 waitCount = 7 +17620052 ripCount = 8 +17620052 locktype1 = 0 +17620053 locktype2 = 2 +17620053 locktype3 = 1 +17620054 goalCount = 9 +17620054 goalTotal = 9 +17620055 otherCount = 6 +~~~ +17622132 UP 11 +17622132 1024 1024 +17623222 DOWN 11 +17623222 0 1024 +17623251 UP 11 +17623251 1024 1024 +17624459 DOWN 11 +17624459 0 1024 +17624483 UP 11 +17624483 1024 1024 +17624883 BEEP1 +17624883 BEEP2 +~~~ +~~~ +~~~ +17624910 1024 33555456 +~~~ +17625060 1024 1024 +17629415 DOWN 11 +17629415 0 1024 +~~~ +~~~ +17629435 0 0 +~~~ +~~~ +17629437 0 1 +~~~ +~~~ +17629439 0 3 +~~~ +~~~ +17629440 0 7 +~~~ +~~~ +17629442 0 15 +~~~ +~~~ +17629444 UP 11 +17629444 1024 31 +~~~ +~~~ +17629446 1024 63 +~~~ +~~~ +17629448 1024 127 +~~~ +~~~ +17629450 1024 255 +17629451 homeCount = 18 +17629451 waitCount = 7 +17629452 ripCount = 9 +17629473 locktype1 = 0 +17629473 locktype2 = 2 +17629474 locktype3 = 1 +17629474 goalCount = 9 +17629475 goalTotal = 9 +17629475 otherCount = 6 +~~~ +17629476 CURRENTGOAL IS [8] +~~~ +17629477 DOWN 11 +17629477 0 255 +17629481 UP 11 +17629481 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17629533 homeCount = 18 +17629533 waitCount = 7 +17629534 ripCount = 9 +17629534 locktype1 = 0 +17629535 locktype2 = 2 +17629535 locktype3 = 1 +17629536 goalCount = 9 +17629536 goalTotal = 9 +17629537 otherCount = 6 +~~~ +17629538 CURRENTGOAL IS [8] +~~~ +17631515 DOWN 11 +17631515 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17631553 homeCount = 18 +17631553 waitCount = 7 +17631554 ripCount = 9 +17631554 locktype1 = 0 +17631555 locktype2 = 2 +17631556 locktype3 = 1 +17631556 goalCount = 9 +17631556 goalTotal = 9 +17631557 otherCount = 6 +~~~ +17631558 CURRENTGOAL IS [8] +~~~ +17634612 UP 8 +17634612 128 255 +~~~ +~~~ +17634638 outer reward +~~~ +17634638 128 8388863 +~~~ +~~~ +17634643 outerreps = 8 +~~~ +~~~ +17634881 DOWN 8 +17634881 0 8388863 +~~~ +~~~ +17634905 0 8388862 +~~~ +~~~ +17634907 0 8388860 +~~~ +~~~ +17634909 0 8388856 +~~~ +~~~ +17634911 0 8388848 +~~~ +~~~ +17634913 0 8388832 +~~~ +~~~ +17634914 0 8388800 +~~~ +~~~ +17634916 0 8388736 +~~~ +~~~ +17634918 0 8388608 +~~~ +~~~ +17634920 0 8389120 +17634921 homeCount = 18 +17634922 waitCount = 7 +17634942 ripCount = 9 +17634943 locktype1 = 0 +17634943 locktype2 = 2 +17634944 locktype3 = 1 +17634944 goalCount = 0 +17634945 goalTotal = 10 +17634945 otherCount = 6 +~~~ +17634946 128 8389120 +17635088 128 512 +17635186 DOWN 8 +17635186 0 512 +17635204 128 512 +17635303 DOWN 8 +17635303 0 512 +17635337 128 512 +17635422 DOWN 8 +17635422 0 512 +17635469 128 512 +17635548 DOWN 8 +17635548 0 512 +17635588 128 512 +17635675 DOWN 8 +17635675 0 512 +17635720 128 512 +17635815 DOWN 8 +17635815 0 512 +17635847 128 512 +17635966 DOWN 8 +17635966 0 512 +17635980 128 512 +17641244 DOWN 8 +17641243 0 512 +17646112 UP 10 +17646112 waslock = 0 +17646112 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17646140 512 16777728 +~~~ +17646290 512 512 +17646421 DOWN 10 +17646421 0 512 +~~~ +~~~ +17646445 0 2560 +~~~ +~~~ +17646447 0 2048 +17646448 homeCount = 19 +17646449 waitCount = 7 +17646449 ripCount = 9 +17646450 locktype1 = 0 +17646450 locktype2 = 2 +17646451 locktype3 = 1 +17646451 goalCount = 0 +17646452 goalTotal = 10 +17646452 otherCount = 6 +~~~ +17646474 UP 10 +17646474 waslock = 0 +17646474 512 2048 +~~~ +17650594 DOWN 10 +17650594 0 2048 +~~~ +~~~ +~~~ +~~~ +17650618 homeCount = 19 +17650619 waitCount = 7 +17650619 ripCount = 9 +17650620 locktype1 = 0 +17650620 locktype2 = 2 +17650621 locktype3 = 1 +17650621 goalCount = 0 +17650621 goalTotal = 10 +17650622 otherCount = 6 +~~~ +17650651 UP 10 +17650651 waslock = 0 +17650651 512 2048 +~~~ +17650683 DOWN 10 +17650683 0 2048 +~~~ +~~~ +~~~ +~~~ +17650701 homeCount = 19 +17650702 waitCount = 7 +17650702 ripCount = 9 +17650703 locktype1 = 0 +17650703 locktype2 = 2 +17650704 locktype3 = 1 +17650704 goalCount = 0 +17650705 goalTotal = 10 +17650705 otherCount = 6 +~~~ +17652063 UP 12 +17652063 2048 2048 +17654813 CLICK1 +17654813 CLICK2 +~~~ +~~~ +~~~ +17654838 2048 67110912 +~~~ +17654988 2048 2048 +17661976 DOWN 12 +17661976 0 2048 +~~~ +~~~ +17661996 0 0 +~~~ +~~~ +17661998 0 1 +~~~ +~~~ +17662000 0 3 +~~~ +~~~ +17662002 0 7 +~~~ +~~~ +17662004 0 15 +~~~ +~~~ +17662005 0 31 +~~~ +~~~ +17662007 0 63 +~~~ +~~~ +17662009 0 127 +~~~ +~~~ +17662011 0 255 +17662012 homeCount = 19 +17662012 waitCount = 8 +17662013 ripCount = 9 +17662014 locktype1 = 0 +17662014 locktype2 = 2 +17662035 locktype3 = 1 +17662035 goalCount = 0 +17662036 goalTotal = 10 +17662036 otherCount = 6 +~~~ +17662037 CURRENTGOAL IS [2] +~~~ +17662039 UP 12 +17662039 2048 255 +17662076 DOWN 12 +17662076 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17662113 homeCount = 19 +17662113 waitCount = 8 +17662114 ripCount = 9 +17662114 locktype1 = 0 +17662115 locktype2 = 2 +17662115 locktype3 = 1 +17662116 goalCount = 0 +17662116 goalTotal = 10 +17662117 otherCount = 6 +~~~ +17662118 CURRENTGOAL IS [2] +~~~ +17666107 UP 8 +17666107 128 255 +~~~ +~~~ +17666295 DOWN 8 +17666295 0 255 +~~~ +~~~ +17666317 0 254 +~~~ +~~~ +17666319 0 252 +~~~ +~~~ +17666321 0 248 +~~~ +~~~ +17666323 0 240 +~~~ +~~~ +17666324 0 224 +~~~ +~~~ +17666326 0 192 +~~~ +~~~ +17666328 0 128 +~~~ +~~~ +17666330 0 0 +~~~ +~~~ +17666332 0 512 +17666333 homeCount = 19 +17666333 waitCount = 8 +17666334 ripCount = 9 +17666334 locktype1 = 0 +17666355 locktype2 = 2 +17666356 locktype3 = 1 +17666356 goalCount = 0 +17666357 goalTotal = 10 +17666357 otherCount = 7 +~~~ +17666359 128 512 +17666796 DOWN 8 +17666796 0 512 +17671204 UP 10 +17671204 waslock = 0 +17671204 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17671234 512 16777728 +~~~ +17671353 DOWN 10 +17671353 0 16777728 +~~~ +~~~ +17671381 0 16779776 +~~~ +~~~ +17671382 0 16779264 +17671383 homeCount = 20 +17671384 waitCount = 8 +17671384 ripCount = 9 +17671385 locktype1 = 0 +17671385 locktype2 = 2 +17671386 locktype3 = 1 +17671386 goalCount = 0 +17671387 goalTotal = 10 +17671387 otherCount = 7 +~~~ +17671408 0 2048 +17671450 UP 10 +17671450 waslock = 0 +17671450 512 2048 +~~~ +17674585 DOWN 10 +17674585 0 2048 +~~~ +~~~ +~~~ +~~~ +17674611 homeCount = 20 +17674611 waitCount = 8 +17674612 ripCount = 9 +17674612 locktype1 = 0 +17674613 locktype2 = 2 +17674613 locktype3 = 1 +17674614 goalCount = 0 +17674614 goalTotal = 10 +17674615 otherCount = 7 +~~~ +17676314 UP 12 +17676314 2048 2048 +17676340 DOWN 12 +17676340 0 2048 +17676358 UP 12 +17676358 2048 2048 +17678656 DOWN 12 +17678656 0 2048 +17678662 UP 12 +17678662 2048 2048 +17681064 CLICK1 +17681064 CLICK2 +~~~ +~~~ +~~~ +17681098 2048 67110912 +~~~ +17681199 DOWN 12 +17681199 0 67110912 +17681207 UP 12 +17681207 2048 67110912 +17681248 2048 2048 +~~~ +~~~ +17681272 2048 0 +~~~ +~~~ +17681273 2048 1 +~~~ +~~~ +17681275 2048 3 +~~~ +~~~ +17681277 2048 7 +~~~ +~~~ +17681279 2048 15 +~~~ +~~~ +17681281 2048 31 +~~~ +~~~ +17681282 2048 63 +~~~ +~~~ +17681284 2048 127 +~~~ +~~~ +17681286 2048 255 +17681287 homeCount = 20 +17681288 waitCount = 9 +17681288 ripCount = 9 +17681309 locktype1 = 0 +17681309 locktype2 = 2 +17681310 locktype3 = 1 +17681310 goalCount = 0 +17681311 goalTotal = 10 +17681311 otherCount = 7 +~~~ +17681313 CURRENTGOAL IS [2] +~~~ +17687455 DOWN 12 +17687455 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17687496 homeCount = 20 +17687497 waitCount = 9 +17687497 ripCount = 9 +17687498 locktype1 = 0 +17687498 locktype2 = 2 +17687499 locktype3 = 1 +17687499 goalCount = 0 +17687500 goalTotal = 10 +17687500 otherCount = 7 +~~~ +17687501 CURRENTGOAL IS [2] +~~~ +17693473 UP 2 +17693473 2 255 +~~~ +~~~ +17693497 outer reward +~~~ +17693498 2 131327 +~~~ +~~~ +17693506 DOWN 2 +17693506 0 131327 +~~~ +~~~ +17693527 0 131326 +~~~ +~~~ +17693529 0 131324 +~~~ +~~~ +17693531 0 131320 +~~~ +~~~ +17693532 0 131312 +~~~ +~~~ +17693534 0 131296 +~~~ +~~~ +17693536 0 131264 +~~~ +~~~ +17693538 0 131200 +~~~ +~~~ +17693540 0 131072 +~~~ +~~~ +17693542 0 131584 +17693543 homeCount = 20 +17693543 waitCount = 9 +17693544 ripCount = 9 +17693565 locktype1 = 0 +17693565 locktype2 = 2 +17693566 locktype3 = 1 +17693566 goalCount = 1 +17693567 goalTotal = 11 +17693567 otherCount = 7 +~~~ +17693568 2 131584 +17693947 2 512 +17699688 DOWN 2 +17699687 0 512 +17699753 2 512 +17699799 DOWN 2 +17699799 0 512 +17705120 UP 10 +17705121 waslock = 0 +17705120 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17705153 512 16777728 +~~~ +17705303 512 512 +17708019 DOWN 10 +17708019 0 512 +~~~ +~~~ +17708036 0 2560 +~~~ +~~~ +17708038 0 2048 +17708039 homeCount = 21 +17708039 waitCount = 9 +17708040 ripCount = 9 +17708040 locktype1 = 0 +17708041 locktype2 = 2 +17708041 locktype3 = 1 +17708042 goalCount = 1 +17708042 goalTotal = 11 +17708043 otherCount = 7 +~~~ +17708064 UP 10 +17708064 waslock = 0 +17708064 512 2048 +~~~ +17708128 DOWN 10 +17708128 0 2048 +~~~ +~~~ +~~~ +~~~ +17708149 homeCount = 21 +17708150 waitCount = 9 +17708150 ripCount = 9 +17708151 locktype1 = 0 +17708151 locktype2 = 2 +17708152 locktype3 = 1 +17708152 goalCount = 1 +17708153 goalTotal = 11 +17708153 otherCount = 7 +~~~ +17710005 UP 12 +17710005 2048 2048 +17710933 DOWN 12 +17710933 0 2048 +17710973 UP 12 +17710973 2048 2048 +17711488 DOWN 12 +17711488 0 2048 +17711505 UP 12 +17711505 2048 2048 +17713006 CLICK1 +17713006 CLICK2 +~~~ +~~~ +~~~ +17713029 2048 67110912 +~~~ +17713179 2048 2048 +17718698 DOWN 12 +17718698 0 2048 +17718711 UP 12 +17718711 2048 2048 +~~~ +~~~ +17718718 2048 0 +~~~ +~~~ +17718719 2048 1 +~~~ +~~~ +17718721 2048 3 +~~~ +~~~ +17718723 2048 7 +~~~ +~~~ +17718725 2048 15 +~~~ +~~~ +17718727 2048 31 +~~~ +~~~ +17718728 2048 63 +~~~ +~~~ +17718730 2048 127 +~~~ +~~~ +17718732 2048 255 +17718733 homeCount = 21 +17718734 waitCount = 10 +17718734 ripCount = 9 +17718755 locktype1 = 0 +17718756 locktype2 = 2 +17718756 locktype3 = 1 +17718757 goalCount = 1 +17718757 goalTotal = 11 +17718758 otherCount = 7 +~~~ +17718759 CURRENTGOAL IS [2] +~~~ +17718770 DOWN 12 +17718770 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17718805 homeCount = 21 +17718805 waitCount = 10 +17718806 ripCount = 9 +17718806 locktype1 = 0 +17718807 locktype2 = 2 +17718807 locktype3 = 1 +17718808 goalCount = 1 +17718808 goalTotal = 11 +17718809 otherCount = 7 +~~~ +17718810 CURRENTGOAL IS [2] +~~~ +17718839 UP 12 +17718839 2048 255 +17719213 DOWN 12 +17719213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17719257 homeCount = 21 +17719258 waitCount = 10 +17719258 ripCount = 9 +17719259 locktype1 = 0 +17719259 locktype2 = 2 +17719260 locktype3 = 1 +17719260 goalCount = 1 +17719261 goalTotal = 11 +17719261 otherCount = 7 +~~~ +17719262 CURRENTGOAL IS [2] +~~~ +17719283 UP 12 +17719283 2048 255 +17719362 DOWN 12 +17719362 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17719398 homeCount = 21 +17719399 waitCount = 10 +17719399 ripCount = 9 +17719400 locktype1 = 0 +17719400 locktype2 = 2 +17719401 locktype3 = 1 +17719401 goalCount = 1 +17719402 goalTotal = 11 +17719402 otherCount = 7 +~~~ +17719403 CURRENTGOAL IS [2] +~~~ +17726146 UP 8 +17726146 128 255 +~~~ +~~~ +17726549 DOWN 8 +17726549 0 255 +~~~ +~~~ +17726574 0 254 +~~~ +~~~ +17726576 0 252 +~~~ +~~~ +17726578 0 248 +~~~ +~~~ +17726580 0 240 +~~~ +~~~ +17726582 0 224 +~~~ +~~~ +17726584 0 192 +~~~ +~~~ +17726585 0 128 +~~~ +~~~ +17726587 0 0 +~~~ +~~~ +17726589 0 512 +17726590 homeCount = 21 +17726591 waitCount = 10 +17726591 ripCount = 9 +17726592 locktype1 = 0 +17726592 locktype2 = 2 +17726613 locktype3 = 1 +17726614 goalCount = 1 +17726614 goalTotal = 11 +17726615 otherCount = 8 +~~~ +17729916 UP 10 +17729917 waslock = 0 +17729916 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17729943 512 16777728 +~~~ +17730093 512 512 +17733254 DOWN 10 +17733254 0 512 +~~~ +~~~ +17733279 0 1536 +~~~ +~~~ +17733281 0 1024 +17733282 homeCount = 22 +17733282 waitCount = 10 +17733283 ripCount = 9 +17733283 locktype1 = 0 +17733284 locktype2 = 2 +17733284 locktype3 = 1 +17733284 goalCount = 1 +17733285 goalTotal = 11 +17733285 otherCount = 8 +~~~ +17733307 UP 10 +17733307 waslock = 0 +17733307 512 1024 +~~~ +17733339 DOWN 10 +17733339 0 1024 +~~~ +~~~ +~~~ +~~~ +17733373 homeCount = 22 +17733373 waitCount = 10 +17733374 ripCount = 9 +17733374 locktype1 = 0 +17733375 locktype2 = 2 +17733375 locktype3 = 1 +17733376 goalCount = 1 +17733376 goalTotal = 11 +17733377 otherCount = 8 +~~~ +17735628 UP 11 +17735628 1024 1024 +17736890 DOWN 11 +17736890 0 1024 +17736924 UP 11 +17736924 1024 1024 +17736932 DOWN 11 +17736931 0 1024 +17736962 UP 11 +17736962 1024 1024 +17739879 BEEP1 +17739879 BEEP2 +~~~ +~~~ +~~~ +17739899 1024 33555456 +~~~ +17740049 1024 1024 +17746662 DOWN 11 +17746662 0 1024 +~~~ +~~~ +17746687 0 0 +~~~ +~~~ +17746689 0 1 +~~~ +~~~ +17746691 0 3 +~~~ +~~~ +17746692 0 7 +~~~ +~~~ +17746694 0 15 +~~~ +~~~ +17746696 0 31 +~~~ +~~~ +17746698 0 63 +~~~ +~~~ +17746700 0 127 +~~~ +~~~ +17746701 0 255 +17746703 homeCount = 22 +17746703 waitCount = 10 +17746704 ripCount = 10 +17746704 locktype1 = 0 +17746705 locktype2 = 2 +17746726 locktype3 = 1 +17746726 goalCount = 1 +17746727 goalTotal = 11 +17746727 otherCount = 8 +~~~ +17746728 CURRENTGOAL IS [2] +~~~ +17751159 UP 6 +17751159 32 255 +~~~ +~~~ +17752137 DOWN 6 +17752137 0 255 +~~~ +~~~ +17752159 0 254 +~~~ +~~~ +17752160 0 252 +~~~ +~~~ +17752162 0 248 +~~~ +~~~ +17752164 0 240 +~~~ +~~~ +17752166 0 224 +~~~ +~~~ +17752168 0 192 +~~~ +~~~ +17752169 0 128 +~~~ +~~~ +17752171 0 0 +~~~ +~~~ +17752173 0 512 +17752174 homeCount = 22 +17752175 waitCount = 10 +17752175 ripCount = 10 +17752176 locktype1 = 0 +17752197 locktype2 = 2 +17752197 locktype3 = 1 +17752198 goalCount = 1 +17752198 goalTotal = 11 +17752199 otherCount = 9 +~~~ +17755821 UP 10 +17755821 waslock = 0 +17755821 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17755853 512 16777728 +~~~ +17756003 512 512 +17756059 DOWN 10 +17756059 0 512 +~~~ +~~~ +17756076 UP 10 +17756076 waslock = 0 +17756076 512 2560 +~~~ +~~~ +17756078 512 2048 +17756079 homeCount = 23 +17756080 waitCount = 10 +17756080 ripCount = 10 +17756081 locktype1 = 0 +17756081 locktype2 = 2 +17756082 locktype3 = 1 +17756082 goalCount = 1 +17756104 goalTotal = 11 +17756104 otherCount = 9 +~~~ +~~~ +17759339 DOWN 10 +17759339 0 2048 +~~~ +~~~ +~~~ +~~~ +17759360 homeCount = 23 +17759361 waitCount = 10 +17759361 ripCount = 10 +17759362 locktype1 = 0 +17759362 locktype2 = 2 +17759363 locktype3 = 1 +17759363 goalCount = 1 +17759364 goalTotal = 11 +17759364 otherCount = 9 +~~~ +17761118 UP 12 +17761118 2048 2048 +17762724 DOWN 12 +17762724 0 2048 +17762734 UP 12 +17762734 2048 2048 +17762739 DOWN 12 +17762739 0 2048 +17762757 UP 12 +17762757 2048 2048 +17763369 CLICK1 +17763369 CLICK2 +~~~ +~~~ +~~~ +17763395 2048 67110912 +~~~ +17763545 2048 2048 +17768970 DOWN 12 +17768970 0 2048 +~~~ +~~~ +17768992 0 0 +~~~ +~~~ +17768994 0 1 +~~~ +~~~ +17768996 0 3 +~~~ +~~~ +17768997 0 7 +~~~ +~~~ +17768999 0 15 +~~~ +~~~ +17769001 0 31 +~~~ +~~~ +17769003 0 63 +~~~ +~~~ +17769005 0 127 +~~~ +~~~ +17769006 0 255 +17769008 homeCount = 23 +17769008 waitCount = 11 +17769009 ripCount = 10 +17769009 locktype1 = 0 +17769010 locktype2 = 2 +17769030 locktype3 = 1 +17769031 goalCount = 1 +17769031 goalTotal = 11 +17769032 otherCount = 9 +~~~ +17769033 CURRENTGOAL IS [2] +~~~ +17772566 UP 1 +17772566 1 255 +~~~ +~~~ +17774132 DOWN 1 +17774132 0 255 +~~~ +~~~ +17774151 0 254 +~~~ +~~~ +17774153 0 252 +~~~ +~~~ +17774155 0 248 +~~~ +~~~ +17774157 0 240 +~~~ +~~~ +17774159 0 224 +~~~ +~~~ +17774161 0 192 +~~~ +~~~ +17774162 0 128 +~~~ +~~~ +17774164 0 0 +~~~ +~~~ +17774166 0 512 +17774167 homeCount = 23 +17774168 waitCount = 11 +17774168 ripCount = 10 +17774169 locktype1 = 0 +17774190 locktype2 = 2 +17774190 locktype3 = 1 +17774191 goalCount = 1 +17774191 goalTotal = 11 +17774192 otherCount = 10 +~~~ +17777742 UP 10 +17777742 waslock = 0 +17777742 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17777769 512 16777728 +~~~ +17777919 512 512 +17777993 DOWN 10 +17777993 0 512 +~~~ +~~~ +17778017 0 1536 +~~~ +~~~ +17778019 0 1024 +17778020 homeCount = 24 +17778020 waitCount = 11 +17778021 ripCount = 10 +17778021 locktype1 = 0 +17778022 locktype2 = 2 +17778022 locktype3 = 1 +17778023 goalCount = 1 +17778023 goalTotal = 11 +17778024 otherCount = 10 +~~~ +17778045 UP 10 +17778045 waslock = 0 +17778045 512 1024 +~~~ +17781684 DOWN 10 +17781684 0 1024 +~~~ +~~~ +~~~ +~~~ +17781705 homeCount = 24 +17781706 waitCount = 11 +17781706 ripCount = 10 +17781707 locktype1 = 0 +17781707 locktype2 = 2 +17781707 locktype3 = 1 +17781708 goalCount = 1 +17781708 goalTotal = 11 +17781709 otherCount = 10 +~~~ +17781741 UP 10 +17781741 waslock = 0 +17781741 512 1024 +~~~ +17781763 DOWN 10 +17781763 0 1024 +~~~ +~~~ +~~~ +~~~ +17781788 homeCount = 24 +17781788 waitCount = 11 +17781789 ripCount = 10 +17781789 locktype1 = 0 +17781790 locktype2 = 2 +17781790 locktype3 = 1 +17781791 goalCount = 1 +17781791 goalTotal = 11 +17781792 otherCount = 10 +~~~ +17783131 UP 11 +17783131 1024 1024 +17786131 BEEP1 +17786131 BEEP2 +~~~ +~~~ +~~~ +17786156 1024 33555456 +~~~ +17786306 1024 1024 +17793507 DOWN 11 +17793507 0 1024 +~~~ +~~~ +17793532 0 0 +~~~ +~~~ +17793534 0 1 +~~~ +~~~ +17793536 0 3 +~~~ +~~~ +17793538 0 7 +~~~ +~~~ +17793540 0 15 +~~~ +~~~ +17793541 0 31 +~~~ +~~~ +17793543 0 63 +~~~ +~~~ +17793545 0 127 +~~~ +~~~ +17793547 0 255 +17793548 homeCount = 24 +17793548 waitCount = 11 +17793549 ripCount = 11 +17793549 locktype1 = 0 +17793550 locktype2 = 2 +17793571 locktype3 = 1 +17793571 goalCount = 1 +17793572 goalTotal = 11 +17793572 otherCount = 10 +~~~ +17793573 CURRENTGOAL IS [2] +~~~ +17799331 UP 7 +17799331 64 255 +~~~ +~~~ +17799555 DOWN 7 +17799555 0 255 +~~~ +~~~ +17799574 0 254 +~~~ +~~~ +17799576 0 252 +~~~ +~~~ +17799578 0 248 +~~~ +~~~ +17799579 0 240 +~~~ +~~~ +17799581 0 224 +~~~ +~~~ +17799583 0 192 +~~~ +~~~ +17799585 0 128 +~~~ +~~~ +17799587 0 0 +~~~ +~~~ +17799588 0 512 +17799589 homeCount = 24 +17799590 waitCount = 11 +17799591 ripCount = 11 +17799591 locktype1 = 0 +17799612 locktype2 = 2 +17799612 locktype3 = 1 +17799613 goalCount = 1 +17799613 goalTotal = 11 +17799614 otherCount = 11 +~~~ +17799621 64 512 +17800053 DOWN 7 +17800053 0 512 +17804037 UP 10 +17804037 waslock = 0 +17804037 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17804064 512 16777728 +~~~ +17804214 512 512 +17804372 DOWN 10 +17804372 0 512 +17804384 UP 10 +17804385 waslock = 0 +17804384 512 512 +~~~ +~~~ +17804404 512 2560 +~~~ +~~~ +17804406 512 2048 +17804407 homeCount = 25 +17804408 waitCount = 11 +17804408 ripCount = 11 +17804409 locktype1 = 0 +17804409 locktype2 = 2 +17804410 locktype3 = 1 +17804410 goalCount = 1 +17804411 goalTotal = 11 +17804411 otherCount = 11 +~~~ +~~~ +17808182 DOWN 10 +17808182 0 2048 +~~~ +~~~ +~~~ +~~~ +17808210 homeCount = 25 +17808211 waitCount = 11 +17808211 ripCount = 11 +17808212 locktype1 = 0 +17808212 locktype2 = 2 +17808213 locktype3 = 1 +17808213 goalCount = 1 +17808214 goalTotal = 11 +17808214 otherCount = 11 +~~~ +17809982 UP 12 +17809982 2048 2048 +17811792 DOWN 12 +17811792 0 2048 +17811817 UP 12 +17811817 2048 2048 +17813483 CLICK1 +17813483 CLICK2 +~~~ +~~~ +~~~ +17813510 2048 67110912 +~~~ +17813658 DOWN 12 +17813658 0 67110912 +17813660 0 2048 +17813687 UP 12 +17813687 2048 2048 +~~~ +~~~ +17813690 2048 0 +~~~ +~~~ +17813692 2048 1 +~~~ +~~~ +17813693 2048 3 +~~~ +~~~ +17813695 2048 7 +~~~ +~~~ +17813697 2048 15 +~~~ +~~~ +17813699 2048 31 +~~~ +~~~ +17813701 2048 63 +~~~ +~~~ +17813703 2048 127 +~~~ +~~~ +17813704 2048 255 +17813706 homeCount = 25 +17813706 waitCount = 12 +17813727 ripCount = 11 +17813727 locktype1 = 0 +17813728 locktype2 = 2 +17813728 locktype3 = 1 +17813729 goalCount = 1 +17813729 goalTotal = 11 +17813730 otherCount = 11 +~~~ +17813731 CURRENTGOAL IS [2] +~~~ +17818291 DOWN 12 +17818291 0 255 +17818296 UP 12 +17818296 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17818326 homeCount = 25 +17818327 waitCount = 12 +17818327 ripCount = 11 +17818328 locktype1 = 0 +17818328 locktype2 = 2 +17818329 locktype3 = 1 +17818329 goalCount = 1 +17818330 goalTotal = 11 +17818330 otherCount = 11 +~~~ +17818331 CURRENTGOAL IS [2] +~~~ +17818368 DOWN 12 +17818368 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17818405 homeCount = 25 +17818406 waitCount = 12 +17818406 ripCount = 11 +17818407 locktype1 = 0 +17818407 locktype2 = 2 +17818408 locktype3 = 1 +17818408 goalCount = 1 +17818409 goalTotal = 11 +17818409 otherCount = 11 +~~~ +17818410 CURRENTGOAL IS [2] +~~~ +17823832 UP 2 +17823832 2 255 +~~~ +~~~ +17823852 outer reward +~~~ +17823852 2 131327 +~~~ +~~~ +17824185 DOWN 2 +17824185 0 131327 +~~~ +17824208 2 131327 +~~~ +17824210 2 131326 +~~~ +~~~ +17824211 2 131324 +~~~ +~~~ +17824213 2 131320 +~~~ +~~~ +17824215 2 131312 +~~~ +~~~ +17824216 2 131296 +~~~ +~~~ +17824218 2 131264 +~~~ +~~~ +17824220 2 131200 +~~~ +~~~ +17824222 2 131072 +~~~ +~~~ +17824224 2 131584 +17824225 homeCount = 25 +17824225 waitCount = 12 +17824247 ripCount = 11 +17824247 locktype1 = 0 +17824248 locktype2 = 2 +17824248 locktype3 = 1 +17824249 goalCount = 2 +17824249 goalTotal = 12 +17824250 otherCount = 11 +~~~ +17824302 2 512 +17824581 DOWN 2 +17824581 0 512 +17824598 2 512 +17824700 DOWN 2 +17824700 0 512 +17824721 2 512 +17824823 DOWN 2 +17824823 0 512 +17824846 2 512 +17824949 DOWN 2 +17824949 0 512 +17824965 2 512 +17829925 DOWN 2 +17829925 0 512 +17829977 2 512 +17830030 DOWN 2 +17830030 0 512 +17830113 2 512 +17830135 DOWN 2 +17830135 0 512 +17835168 UP 10 +17835169 waslock = 0 +17835168 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17835195 512 16777728 +~~~ +17835345 512 512 +17835401 DOWN 10 +17835401 0 512 +~~~ +~~~ +17835421 0 2560 +~~~ +17835422 UP 10 +17835423 waslock = 0 +17835422 512 2560 +~~~ +17835424 homeCount = 26 +17835425 waitCount = 12 +17835425 ripCount = 11 +17835426 locktype1 = 0 +17835426 locktype2 = 2 +17835427 locktype3 = 1 +17835427 goalCount = 2 +17835448 goalTotal = 12 +17835449 otherCount = 11 +~~~ +~~~ +17835450 512 2048 +17839165 DOWN 10 +17839165 0 2048 +~~~ +~~~ +~~~ +~~~ +17839192 homeCount = 26 +17839192 waitCount = 12 +17839193 ripCount = 11 +17839193 locktype1 = 0 +17839194 locktype2 = 2 +17839194 locktype3 = 1 +17839195 goalCount = 2 +17839195 goalTotal = 12 +17839196 otherCount = 11 +~~~ +17839209 UP 10 +17839210 waslock = 0 +17839209 512 2048 +~~~ +17839245 DOWN 10 +17839245 0 2048 +~~~ +~~~ +~~~ +~~~ +17839268 homeCount = 26 +17839268 waitCount = 12 +17839269 ripCount = 11 +17839269 locktype1 = 0 +17839270 locktype2 = 2 +17839270 locktype3 = 1 +17839271 goalCount = 2 +17839271 goalTotal = 12 +17839272 otherCount = 11 +~~~ +17840917 UP 12 +17840917 2048 2048 +17843738 DOWN 12 +17843738 0 2048 +17843774 UP 12 +17843774 2048 2048 +17844418 CLICK1 +17844418 CLICK2 +~~~ +~~~ +~~~ +17844442 2048 67110912 +~~~ +17844592 2048 2048 +17849626 DOWN 12 +17849626 0 2048 +~~~ +~~~ +17849650 0 0 +~~~ +~~~ +17849652 0 1 +~~~ +~~~ +17849653 0 3 +~~~ +~~~ +17849655 0 7 +~~~ +~~~ +17849657 0 15 +~~~ +~~~ +17849659 0 31 +~~~ +~~~ +17849661 0 63 +~~~ +~~~ +17849663 0 127 +~~~ +~~~ +17849664 0 255 +17849665 homeCount = 26 +17849666 waitCount = 13 +17849666 ripCount = 11 +17849667 locktype1 = 0 +17849667 locktype2 = 2 +17849688 locktype3 = 1 +17849689 goalCount = 2 +17849689 goalTotal = 12 +17849690 otherCount = 11 +~~~ +17849691 CURRENTGOAL IS [2] +~~~ +17849708 UP 12 +17849708 2048 255 +17849722 DOWN 12 +17849722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17849759 homeCount = 26 +17849760 waitCount = 13 +17849760 ripCount = 11 +17849761 locktype1 = 0 +17849761 locktype2 = 2 +17849762 locktype3 = 1 +17849762 goalCount = 2 +17849763 goalTotal = 12 +17849763 otherCount = 11 +~~~ +17849764 CURRENTGOAL IS [2] +~~~ +17853717 UP 2 +17853717 2 255 +~~~ +~~~ +17853745 outer reward +~~~ +17853745 2 131327 +~~~ +~~~ +17853940 DOWN 2 +17853940 0 131327 +~~~ +~~~ +17853964 0 131326 +~~~ +~~~ +17853966 0 131324 +~~~ +~~~ +17853967 0 131320 +~~~ +~~~ +17853969 0 131312 +~~~ +~~~ +17853971 0 131296 +~~~ +~~~ +17853973 0 131264 +~~~ +~~~ +17853975 0 131200 +~~~ +~~~ +17853977 0 131072 +~~~ +~~~ +17853978 0 131584 +17853979 homeCount = 26 +17853980 waitCount = 13 +17853981 ripCount = 11 +17854002 locktype1 = 0 +17854002 locktype2 = 2 +17854003 locktype3 = 1 +17854003 goalCount = 3 +17854004 goalTotal = 13 +17854004 otherCount = 11 +~~~ +17854005 2 131584 +17854195 2 512 +17854610 DOWN 2 +17854610 0 512 +17854627 2 512 +17854734 DOWN 2 +17854734 0 512 +17854760 2 512 +17854858 DOWN 2 +17854858 0 512 +17854884 2 512 +17854994 DOWN 2 +17854994 0 512 +17855017 2 512 +17855122 DOWN 2 +17855122 0 512 +17855152 2 512 +17855268 DOWN 2 +17855268 0 512 +17855283 2 512 +17861087 DOWN 2 +17861087 0 512 +17866371 UP 10 +17866371 waslock = 0 +17866371 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17866401 512 16777728 +~~~ +17866500 DOWN 10 +17866500 0 16777728 +17866522 UP 10 +17866522 waslock = 0 +17866522 512 16777728 +~~~ +~~~ +17866529 512 16778752 +~~~ +~~~ +17866531 512 16778240 +17866532 homeCount = 27 +17866532 waitCount = 13 +17866533 ripCount = 11 +17866533 locktype1 = 0 +17866534 locktype2 = 2 +17866534 locktype3 = 1 +17866535 goalCount = 3 +17866535 goalTotal = 13 +17866536 otherCount = 11 +~~~ +17866557 512 1024 +~~~ +17871309 DOWN 10 +17871309 0 1024 +~~~ +~~~ +~~~ +~~~ +17871338 homeCount = 27 +17871338 waitCount = 13 +17871339 ripCount = 11 +17871339 locktype1 = 0 +17871340 locktype2 = 2 +17871340 locktype3 = 1 +17871341 goalCount = 3 +17871341 goalTotal = 13 +17871342 otherCount = 11 +~~~ +17872797 UP 11 +17872797 1024 1024 +17876092 DOWN 11 +17876092 0 1024 +17876102 UP 11 +17876102 1024 1024 +17880683 DOWN 11 +17880683 0 1024 +17880710 UP 11 +17880710 1024 1024 +17880798 BEEP1 +17880798 BEEP2 +~~~ +~~~ +~~~ +17880819 1024 33555456 +~~~ +17880968 1024 1024 +17885726 DOWN 11 +17885726 0 1024 +~~~ +~~~ +17885745 0 0 +~~~ +~~~ +17885747 0 1 +~~~ +~~~ +17885748 0 3 +~~~ +~~~ +17885750 0 7 +~~~ +~~~ +17885752 0 15 +~~~ +~~~ +17885754 0 31 +~~~ +~~~ +17885756 0 63 +~~~ +~~~ +17885757 0 127 +~~~ +~~~ +17885759 0 255 +17885760 homeCount = 27 +17885761 waitCount = 13 +17885761 ripCount = 12 +17885762 locktype1 = 0 +17885783 locktype2 = 2 +17885784 locktype3 = 1 +17885784 goalCount = 3 +17885785 goalTotal = 13 +17885785 otherCount = 11 +~~~ +17885786 CURRENTGOAL IS [2] +~~~ +17885798 UP 11 +17885798 1024 255 +17887457 DOWN 11 +17887457 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887486 UP 11 +17887486 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887492 homeCount = 27 +17887493 waitCount = 13 +17887493 ripCount = 12 +17887494 locktype1 = 0 +17887494 locktype2 = 2 +17887495 locktype3 = 1 +17887495 goalCount = 3 +17887496 goalTotal = 13 +17887496 otherCount = 11 +~~~ +17887497 CURRENTGOAL IS [2] +~~~ +17887540 DOWN 11 +17887540 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887582 homeCount = 27 +17887583 waitCount = 13 +17887583 ripCount = 12 +17887584 locktype1 = 0 +17887584 locktype2 = 2 +17887585 locktype3 = 1 +17887585 goalCount = 3 +17887586 goalTotal = 13 +17887586 otherCount = 11 +~~~ +17887587 CURRENTGOAL IS [2] +~~~ +17891303 UP 2 +17891303 2 255 +~~~ +~~~ +17891329 outer reward +~~~ +17891329 2 131327 +~~~ +~~~ +17891504 DOWN 2 +17891504 0 131327 +~~~ +~~~ +17891528 0 131326 +~~~ +~~~ +17891530 0 131324 +~~~ +~~~ +17891531 0 131320 +~~~ +~~~ +17891533 0 131312 +~~~ +~~~ +17891535 0 131296 +~~~ +~~~ +17891537 0 131264 +~~~ +~~~ +17891539 0 131200 +~~~ +~~~ +17891540 0 131072 +~~~ +~~~ +17891542 0 131584 +17891543 homeCount = 27 +17891544 waitCount = 13 +17891544 ripCount = 12 +17891566 locktype1 = 0 +17891566 locktype2 = 2 +17891567 locktype3 = 1 +17891567 goalCount = 4 +17891568 goalTotal = 14 +17891568 otherCount = 11 +~~~ +17891569 2 131584 +17891779 2 512 +17892060 DOWN 2 +17892060 0 512 +17892075 2 512 +17892185 DOWN 2 +17892185 0 512 +17892200 2 512 +17898873 DOWN 2 +17898873 0 512 +17898936 2 512 +17898969 DOWN 2 +17898969 0 512 +17903622 UP 10 +17903623 waslock = 0 +17903622 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17903655 512 16777728 +~~~ +17903805 512 512 +17907190 DOWN 10 +17907190 0 512 +~~~ +~~~ +17907209 0 1536 +~~~ +~~~ +17907211 0 1024 +17907212 homeCount = 28 +17907212 waitCount = 13 +17907213 ripCount = 12 +17907213 locktype1 = 0 +17907214 locktype2 = 2 +17907214 locktype3 = 1 +17907215 goalCount = 4 +17907215 goalTotal = 14 +17907216 otherCount = 11 +~~~ +17907245 UP 10 +17907245 waslock = 0 +17907245 512 1024 +~~~ +17907292 DOWN 10 +17907292 0 1024 +~~~ +~~~ +~~~ +~~~ +17907315 homeCount = 28 +17907316 waitCount = 13 +17907316 ripCount = 12 +17907317 locktype1 = 0 +17907317 locktype2 = 2 +17907318 locktype3 = 1 +17907318 goalCount = 4 +17907319 goalTotal = 14 +17907319 otherCount = 11 +~~~ +17908743 UP 11 +17908743 1024 1024 +17911424 DOWN 11 +17911424 0 1024 +17911439 UP 11 +17911439 1024 1024 +17914044 DOWN 11 +17914044 0 1024 +17914054 UP 11 +17914054 1024 1024 +17914744 BEEP1 +17914744 BEEP2 +~~~ +~~~ +~~~ +17914764 1024 33555456 +~~~ +17914914 1024 1024 +17920379 DOWN 11 +17920379 0 1024 +17920399 UP 11 +17920399 1024 1024 +~~~ +~~~ +17920402 1024 0 +~~~ +~~~ +17920404 1024 1 +~~~ +~~~ +17920406 1024 3 +~~~ +~~~ +17920408 1024 7 +~~~ +~~~ +17920409 1024 15 +~~~ +~~~ +17920411 1024 31 +~~~ +~~~ +17920413 1024 63 +~~~ +~~~ +17920415 1024 127 +~~~ +~~~ +17920417 1024 255 +17920418 homeCount = 28 +17920418 waitCount = 13 +17920439 ripCount = 13 +17920440 locktype1 = 0 +17920440 locktype2 = 2 +17920441 locktype3 = 1 +17920441 goalCount = 4 +17920442 goalTotal = 14 +17920442 otherCount = 11 +~~~ +17920443 CURRENTGOAL IS [2] +~~~ +17920510 DOWN 11 +17920510 0 255 +17920518 UP 11 +17920517 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17920542 homeCount = 28 +17920543 waitCount = 13 +17920543 ripCount = 13 +17920544 locktype1 = 0 +17920544 locktype2 = 2 +17920545 locktype3 = 1 +17920545 goalCount = 4 +17920546 goalTotal = 14 +17920546 otherCount = 11 +~~~ +17920547 CURRENTGOAL IS [2] +~~~ +17922012 DOWN 11 +17922012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17922052 homeCount = 28 +17922053 waitCount = 13 +17922054 ripCount = 13 +17922054 locktype1 = 0 +17922055 locktype2 = 2 +17922055 locktype3 = 1 +17922055 goalCount = 4 +17922056 goalTotal = 14 +17922056 otherCount = 11 +~~~ +17922058 CURRENTGOAL IS [2] +~~~ +17925749 UP 2 +17925749 2 255 +~~~ +~~~ +17925768 outer reward +~~~ +17925768 2 131327 +~~~ +~~~ +17925771 DOWN 2 +17925771 0 131327 +~~~ +~~~ +17925792 0 131326 +~~~ +~~~ +17925794 0 131324 +~~~ +~~~ +17925796 0 131320 +~~~ +~~~ +17925797 0 131312 +~~~ +~~~ +17925799 0 131296 +~~~ +~~~ +17925801 0 131264 +~~~ +~~~ +17925803 0 131200 +~~~ +17925804 2 131200 +~~~ +~~~ +17925806 2 131072 +~~~ +17925807 2 131584 +17925808 homeCount = 28 +17925809 waitCount = 13 +17925830 ripCount = 13 +17925830 locktype1 = 0 +17925831 locktype2 = 2 +17925831 locktype3 = 1 +17925832 goalCount = 5 +17925832 goalTotal = 15 +17925833 otherCount = 11 +~~~ +17926043 DOWN 2 +17926043 0 131584 +17926080 2 131584 +17926218 2 512 +17926346 DOWN 2 +17926346 0 512 +17926352 2 512 +17926453 DOWN 2 +17926453 0 512 +17926478 2 512 +17926574 DOWN 2 +17926574 0 512 +17926610 2 512 +17926695 DOWN 2 +17926695 0 512 +17926739 2 512 +17926820 DOWN 2 +17926820 0 512 +17926863 2 512 +17926961 DOWN 2 +17926961 0 512 +17926990 2 512 +17927108 DOWN 2 +17927108 0 512 +17927126 2 512 +17932908 DOWN 2 +17932908 0 512 +17937014 UP 10 +17937014 waslock = 0 +17937014 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17937042 512 16777728 +~~~ +17937192 512 512 +17941745 DOWN 10 +17941745 0 512 +~~~ +~~~ +17941767 0 2560 +~~~ +~~~ +17941769 0 2048 +17941770 homeCount = 29 +17941771 waitCount = 13 +17941771 ripCount = 13 +17941772 locktype1 = 0 +17941772 locktype2 = 2 +17941772 locktype3 = 1 +17941773 goalCount = 5 +17941773 goalTotal = 15 +17941774 otherCount = 11 +~~~ +17943411 UP 12 +17943411 2048 2048 +17945337 DOWN 12 +17945337 0 2048 +17945386 UP 12 +17945386 2048 2048 +17951411 CLICK1 +17951411 CLICK2 +~~~ +~~~ +~~~ +17951429 2048 67110912 +~~~ +17951579 2048 2048 +17957761 DOWN 12 +17957761 0 2048 +~~~ +~~~ +17957779 0 0 +~~~ +~~~ +17957781 0 1 +~~~ +~~~ +17957783 0 3 +~~~ +~~~ +17957784 0 7 +~~~ +~~~ +17957786 0 15 +~~~ +~~~ +17957788 0 31 +~~~ +~~~ +17957790 0 63 +~~~ +~~~ +17957792 0 127 +~~~ +~~~ +17957794 0 255 +17957795 homeCount = 29 +17957795 waitCount = 14 +17957796 ripCount = 13 +17957796 locktype1 = 0 +17957797 locktype2 = 2 +17957817 locktype3 = 1 +17957818 goalCount = 5 +17957818 goalTotal = 15 +17957819 otherCount = 11 +~~~ +17957820 CURRENTGOAL IS [2] +~~~ +17957820 UP 12 +17957820 2048 255 +17957860 DOWN 12 +17957860 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17957900 homeCount = 29 +17957900 waitCount = 14 +17957901 ripCount = 13 +17957902 locktype1 = 0 +17957902 locktype2 = 2 +17957903 locktype3 = 1 +17957903 goalCount = 5 +17957903 goalTotal = 15 +17957904 otherCount = 11 +~~~ +17957905 CURRENTGOAL IS [2] +~~~ +17960837 UP 2 +17960837 2 255 +~~~ +~~~ +17960865 outer reward +~~~ +17960866 2 131327 +~~~ +~~~ +17960983 DOWN 2 +17960983 0 131327 +~~~ +~~~ +17961004 0 131326 +~~~ +~~~ +17961006 0 131324 +~~~ +~~~ +17961008 0 131320 +~~~ +~~~ +17961009 0 131312 +~~~ +~~~ +17961011 0 131296 +~~~ +~~~ +17961013 0 131264 +~~~ +~~~ +17961015 0 131200 +~~~ +~~~ +17961017 0 131072 +~~~ +~~~ +17961019 0 131584 +17961020 homeCount = 29 +17961020 waitCount = 14 +17961021 ripCount = 13 +17961042 locktype1 = 0 +17961042 locktype2 = 2 +17961043 locktype3 = 1 +17961043 goalCount = 6 +17961044 goalTotal = 16 +17961044 otherCount = 11 +~~~ +17961051 2 131584 +17961315 2 512 +17961832 DOWN 2 +17961832 0 512 +17961853 2 512 +17961968 DOWN 2 +17961968 0 512 +17961983 2 512 +17962107 DOWN 2 +17962107 0 512 +17962114 2 512 +17962230 DOWN 2 +17962230 0 512 +17962255 2 512 +17969076 DOWN 2 +17969076 0 512 +17969149 2 512 +17969179 DOWN 2 +17969179 0 512 +17973719 UP 10 +17973719 waslock = 0 +17973719 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17973748 512 16777728 +~~~ +17973898 512 512 +17978571 DOWN 10 +17978571 0 512 +~~~ +~~~ +17978594 0 1536 +~~~ +~~~ +17978596 0 1024 +17978597 homeCount = 30 +17978597 waitCount = 14 +17978598 ripCount = 13 +17978598 locktype1 = 0 +17978599 locktype2 = 2 +17978599 locktype3 = 1 +17978600 goalCount = 6 +17978600 goalTotal = 16 +17978601 otherCount = 11 +~~~ +17978622 UP 10 +17978622 waslock = 0 +17978622 512 1024 +~~~ +17978673 DOWN 10 +17978673 0 1024 +~~~ +~~~ +~~~ +~~~ +17978698 homeCount = 30 +17978699 waitCount = 14 +17978699 ripCount = 13 +17978700 locktype1 = 0 +17978700 locktype2 = 2 +17978701 locktype3 = 1 +17978701 goalCount = 6 +17978702 goalTotal = 16 +17978702 otherCount = 11 +~~~ +17980140 UP 11 +17980140 1024 1024 +17982129 DOWN 11 +17982129 0 1024 +17982145 UP 11 +17982145 1024 1024 +17987640 BEEP1 +17987640 BEEP2 +~~~ +~~~ +~~~ +17987665 1024 33555456 +~~~ +17987815 1024 1024 +17995055 DOWN 11 +17995055 0 1024 +~~~ +~~~ +17995073 0 0 +~~~ +~~~ +17995075 0 1 +~~~ +~~~ +17995077 0 3 +~~~ +~~~ +17995079 0 7 +~~~ +~~~ +17995081 0 15 +~~~ +~~~ +17995083 0 31 +~~~ +~~~ +17995084 0 63 +~~~ +~~~ +17995086 0 127 +~~~ +~~~ +17995088 0 255 +17995089 homeCount = 30 +17995090 waitCount = 14 +17995090 ripCount = 14 +17995091 locktype1 = 0 +17995112 locktype2 = 2 +17995112 locktype3 = 1 +17995113 goalCount = 6 +17995113 goalTotal = 16 +17995114 otherCount = 11 +~~~ +17995115 CURRENTGOAL IS [2] +~~~ +17999238 UP 2 +17999238 2 255 +~~~ +~~~ +17999256 outer reward +~~~ +17999256 2 131327 +~~~ +~~~ +17999414 DOWN 2 +17999414 0 131327 +~~~ +~~~ +17999435 0 131326 +~~~ +~~~ +17999437 0 131324 +~~~ +~~~ +17999438 0 131320 +~~~ +~~~ +17999440 0 131312 +~~~ +~~~ +17999442 0 131296 +~~~ +~~~ +17999444 0 131264 +~~~ +~~~ +17999446 0 131200 +~~~ +~~~ +17999448 0 131072 +~~~ +~~~ +17999449 0 131584 +17999451 homeCount = 30 +17999451 waitCount = 14 +17999452 ripCount = 14 +17999472 locktype1 = 0 +17999473 locktype2 = 2 +17999473 locktype3 = 1 +17999474 goalCount = 7 +17999474 goalTotal = 17 +17999475 otherCount = 11 +~~~ +17999475 2 131584 +17999706 2 512 +17999969 DOWN 2 +17999969 0 512 +17999988 2 512 +18000082 DOWN 2 +18000082 0 512 +18000121 2 512 +18000212 DOWN 2 +18000212 0 512 +18000243 2 512 +18000338 DOWN 2 +18000338 0 512 +18000379 2 512 +18000475 DOWN 2 +18000475 0 512 +18000502 2 512 +18001062 DOWN 2 +18001062 0 512 +18001075 2 512 +18006367 DOWN 2 +18006367 0 512 +18006392 2 512 +18006463 DOWN 2 +18006463 0 512 +18011267 UP 10 +18011267 waslock = 0 +18011267 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18011300 512 16777728 +~~~ +18011450 512 512 +18011639 DOWN 10 +18011639 0 512 +18011656 UP 10 +18011656 waslock = 0 +18011656 512 512 +~~~ +~~~ +18011664 512 1536 +~~~ +~~~ +18011666 512 1024 +18011667 homeCount = 31 +18011668 waitCount = 14 +18011668 ripCount = 14 +18011669 locktype1 = 0 +18011669 locktype2 = 2 +18011670 locktype3 = 1 +18011670 goalCount = 7 +18011671 goalTotal = 17 +18011671 otherCount = 11 +~~~ +~~~ +18014768 DOWN 10 +18014768 0 1024 +~~~ +~~~ +~~~ +~~~ +18014787 homeCount = 31 +18014788 waitCount = 14 +18014788 ripCount = 14 +18014789 locktype1 = 0 +18014789 locktype2 = 2 +18014789 locktype3 = 1 +18014790 goalCount = 7 +18014790 goalTotal = 17 +18014791 otherCount = 11 +~~~ +18014805 UP 10 +18014805 waslock = 0 +18014804 512 1024 +~~~ +18014873 DOWN 10 +18014873 0 1024 +~~~ +~~~ +~~~ +~~~ +18014898 homeCount = 31 +18014899 waitCount = 14 +18014899 ripCount = 14 +18014900 locktype1 = 0 +18014900 locktype2 = 2 +18014901 locktype3 = 1 +18014901 goalCount = 7 +18014902 goalTotal = 17 +18014902 otherCount = 11 +~~~ +18016371 UP 11 +18016371 1024 1024 +18019466 DOWN 11 +18019466 0 1024 +18019477 UP 11 +18019477 1024 1024 +18020371 BEEP1 +18020371 BEEP2 +~~~ +~~~ +~~~ +18020397 1024 33555456 +~~~ +18020547 1024 1024 +18025455 DOWN 11 +18025454 0 1024 +18025472 UP 11 +18025472 1024 1024 +~~~ +~~~ +18025475 1024 0 +~~~ +~~~ +18025477 1024 1 +~~~ +~~~ +18025479 1024 3 +~~~ +~~~ +18025480 1024 7 +~~~ +~~~ +18025482 1024 15 +~~~ +~~~ +18025484 1024 31 +~~~ +~~~ +18025486 1024 63 +~~~ +~~~ +18025488 1024 127 +~~~ +~~~ +18025490 1024 255 +18025491 homeCount = 31 +18025491 waitCount = 14 +18025492 ripCount = 15 +18025513 locktype1 = 0 +18025513 locktype2 = 2 +18025514 locktype3 = 1 +18025514 goalCount = 7 +18025514 goalTotal = 17 +18025515 otherCount = 11 +~~~ +18025516 CURRENTGOAL IS [2] +~~~ +18025534 DOWN 11 +18025534 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18025574 homeCount = 31 +18025574 waitCount = 14 +18025575 ripCount = 15 +18025575 locktype1 = 0 +18025576 locktype2 = 2 +18025576 locktype3 = 1 +18025577 goalCount = 7 +18025577 goalTotal = 17 +18025578 otherCount = 11 +~~~ +18025579 CURRENTGOAL IS [2] +~~~ +18025617 UP 11 +18025617 1024 255 +18028361 DOWN 11 +18028361 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18028404 homeCount = 31 +18028404 waitCount = 14 +18028405 ripCount = 15 +18028405 locktype1 = 0 +18028406 locktype2 = 2 +18028406 locktype3 = 1 +18028407 goalCount = 7 +18028407 goalTotal = 17 +18028408 otherCount = 11 +~~~ +18028409 CURRENTGOAL IS [2] +~~~ +18028430 UP 11 +18028430 1024 255 +18028451 DOWN 11 +18028451 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18028494 homeCount = 31 +18028494 waitCount = 14 +18028495 ripCount = 15 +18028495 locktype1 = 0 +18028496 locktype2 = 2 +18028496 locktype3 = 1 +18028497 goalCount = 7 +18028497 goalTotal = 17 +18028498 otherCount = 11 +~~~ +18028499 CURRENTGOAL IS [2] +~~~ +18032808 UP 2 +18032808 2 255 +~~~ +~~~ +18032831 outer reward +~~~ +18032831 2 131327 +~~~ +~~~ +18033013 DOWN 2 +18033013 0 131327 +~~~ +~~~ +18033039 0 131326 +~~~ +~~~ +18033040 0 131324 +~~~ +~~~ +18033042 0 131320 +~~~ +~~~ +18033044 0 131312 +~~~ +~~~ +18033046 0 131296 +~~~ +~~~ +18033048 0 131264 +~~~ +~~~ +18033050 0 131200 +~~~ +~~~ +18033051 0 131072 +~~~ +~~~ +18033053 0 131584 +18033054 homeCount = 31 +18033055 waitCount = 14 +18033055 ripCount = 15 +18033076 locktype1 = 0 +18033077 locktype2 = 2 +18033077 locktype3 = 1 +18033078 goalCount = 8 +18033078 goalTotal = 18 +18033079 otherCount = 11 +~~~ +18033079 2 131584 +18033281 2 512 +18033570 DOWN 2 +18033570 0 512 +18033590 2 512 +18033697 DOWN 2 +18033697 0 512 +18033720 2 512 +18033834 DOWN 2 +18033834 0 512 +18033851 2 512 +18033956 DOWN 2 +18033956 0 512 +18033979 2 512 +18034089 DOWN 2 +18034089 0 512 +18034108 2 512 +18034220 DOWN 2 +18034220 0 512 +18034238 2 512 +18034509 DOWN 2 +18034509 0 512 +18034533 2 512 +18043258 DOWN 2 +18043258 0 512 +18057543 UP 10 +18057543 waslock = 0 +18057543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18057574 512 16777728 +~~~ +18057724 512 512 +18062627 DOWN 10 +18062627 0 512 +~~~ +~~~ +18062649 0 2560 +~~~ +~~~ +18062651 0 2048 +18062652 homeCount = 32 +18062653 waitCount = 14 +18062653 ripCount = 15 +18062654 locktype1 = 0 +18062654 locktype2 = 2 +18062655 locktype3 = 1 +18062655 goalCount = 8 +18062656 goalTotal = 18 +18062656 otherCount = 11 +~~~ +18064275 UP 12 +18064275 2048 2048 +18065776 DOWN 12 +18065776 0 2048 +18065788 UP 12 +18065788 2048 2048 +18066962 DOWN 12 +18066962 0 2048 +18066982 UP 12 +18066982 2048 2048 +18069995 DOWN 12 +18069995 0 2048 +18070016 UP 12 +18070016 2048 2048 +18070275 CLICK1 +18070275 CLICK2 +~~~ +~~~ +~~~ +18070302 2048 67110912 +~~~ +18070452 2048 2048 +18076097 DOWN 12 +18076097 0 2048 +~~~ +~~~ +18076120 0 0 +~~~ +~~~ +18076122 0 1 +~~~ +18076123 UP 12 +18076123 2048 1 +~~~ +~~~ +18076125 2048 3 +~~~ +~~~ +18076127 2048 7 +~~~ +~~~ +18076128 2048 15 +~~~ +18076129 2048 31 +~~~ +~~~ +18076131 2048 63 +~~~ +~~~ +18076132 2048 127 +~~~ +~~~ +18076134 2048 255 +18076135 homeCount = 32 +18076156 waitCount = 15 +18076157 ripCount = 15 +18076157 locktype1 = 0 +18076158 locktype2 = 2 +18076158 locktype3 = 1 +18076159 goalCount = 8 +18076159 goalTotal = 18 +18076160 otherCount = 11 +~~~ +18076161 CURRENTGOAL IS [2] +~~~ +18076417 DOWN 12 +18076417 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076446 UP 12 +18076446 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076455 homeCount = 32 +18076456 waitCount = 15 +18076456 ripCount = 15 +18076457 locktype1 = 0 +18076457 locktype2 = 2 +18076458 locktype3 = 1 +18076458 goalCount = 8 +18076459 goalTotal = 18 +18076459 otherCount = 11 +~~~ +18076460 CURRENTGOAL IS [2] +~~~ +18076482 DOWN 12 +18076481 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076512 homeCount = 32 +18076512 waitCount = 15 +18076513 ripCount = 15 +18076513 locktype1 = 0 +18076514 locktype2 = 2 +18076514 locktype3 = 1 +18076515 goalCount = 8 +18076515 goalTotal = 18 +18076516 otherCount = 11 +~~~ +18076517 CURRENTGOAL IS [2] +~~~ +18076538 UP 12 +18076538 2048 255 +18078783 DOWN 12 +18078783 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078807 UP 12 +18078807 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078818 homeCount = 32 +18078818 waitCount = 15 +18078819 ripCount = 15 +18078819 locktype1 = 0 +18078820 locktype2 = 2 +18078820 locktype3 = 1 +18078821 goalCount = 8 +18078821 goalTotal = 18 +18078822 otherCount = 11 +~~~ +18078823 CURRENTGOAL IS [2] +~~~ +18078844 DOWN 12 +18078844 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078877 homeCount = 32 +18078878 waitCount = 15 +18078878 ripCount = 15 +18078879 locktype1 = 0 +18078879 locktype2 = 2 +18078880 locktype3 = 1 +18078880 goalCount = 8 +18078881 goalTotal = 18 +18078881 otherCount = 11 +~~~ +18078882 CURRENTGOAL IS [2] +~~~ +18082583 UP 2 +18082583 2 255 +~~~ +~~~ +18082608 outer reward +~~~ +18082608 2 131327 +~~~ +~~~ +18082618 DOWN 2 +18082618 0 131327 +~~~ +~~~ +18082642 0 131326 +~~~ +~~~ +18082644 0 131324 +~~~ +~~~ +18082646 0 131320 +~~~ +~~~ +18082647 0 131312 +~~~ +~~~ +18082649 0 131296 +~~~ +~~~ +18082651 0 131264 +~~~ +~~~ +18082653 0 131200 +~~~ +~~~ +18082655 0 131072 +~~~ +~~~ +18082657 0 131584 +18082658 homeCount = 32 +18082658 waitCount = 15 +18082659 ripCount = 15 +18082679 locktype1 = 0 +18082680 locktype2 = 2 +18082680 locktype3 = 1 +18082681 goalCount = 9 +18082681 goalTotal = 19 +18082682 otherCount = 11 +~~~ +18082682 2 131584 +18082895 DOWN 2 +18082895 0 131584 +18082932 2 131584 +18083058 2 512 +18083217 DOWN 2 +18083217 0 512 +18083238 2 512 +18083329 DOWN 2 +18083329 0 512 +18083357 2 512 +18083584 DOWN 2 +18083584 0 512 +18083594 2 512 +18083695 DOWN 2 +18083695 0 512 +18083729 2 512 +18083842 DOWN 2 +18083842 0 512 +18083852 2 512 +18089144 DOWN 2 +18089144 0 512 +18089198 2 512 +18089250 DOWN 2 +18089250 0 512 +18095222 UP 10 +18095222 waslock = 0 +18095222 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18095251 512 16777728 +~~~ +18095401 512 512 +18095403 DOWN 10 +18095403 0 512 +~~~ +~~~ +18095434 0 1536 +~~~ +~~~ +18095436 0 1024 +18095437 homeCount = 33 +18095437 waitCount = 15 +18095438 ripCount = 15 +18095438 locktype1 = 0 +18095439 locktype2 = 2 +18095439 locktype3 = 1 +18095440 goalCount = 9 +18095440 goalTotal = 19 +18095441 otherCount = 11 +~~~ +18095462 UP 10 +18095462 waslock = 0 +18095462 512 1024 +~~~ +18098815 DOWN 10 +18098815 0 1024 +~~~ +~~~ +~~~ +~~~ +18098837 homeCount = 33 +18098837 waitCount = 15 +18098838 ripCount = 15 +18098838 locktype1 = 0 +18098839 locktype2 = 2 +18098839 locktype3 = 1 +18098840 goalCount = 9 +18098840 goalTotal = 19 +18098841 otherCount = 11 +~~~ +18098841 UP 10 +18098842 waslock = 0 +18098841 512 1024 +~~~ +18098941 DOWN 10 +18098941 0 1024 +~~~ +~~~ +~~~ +~~~ +18098969 homeCount = 33 +18098969 waitCount = 15 +18098970 ripCount = 15 +18098970 locktype1 = 0 +18098971 locktype2 = 2 +18098971 locktype3 = 1 +18098972 goalCount = 9 +18098972 goalTotal = 19 +18098973 otherCount = 11 +~~~ +18100646 UP 11 +18100646 1024 1024 +18102966 DOWN 11 +18102966 0 1024 +18102978 UP 11 +18102978 1024 1024 +18104195 DOWN 11 +18104195 0 1024 +18104215 UP 11 +18104215 1024 1024 +18106646 BEEP1 +18106646 BEEP2 +~~~ +~~~ +~~~ +18106667 1024 33555456 +~~~ +18106817 1024 1024 +18106960 DOWN 11 +18106959 0 1024 +18107054 UP 11 +18107054 1024 1024 +~~~ +~~~ +18107351 1024 0 +~~~ +~~~ +18107353 1024 1 +~~~ +~~~ +18107355 1024 3 +~~~ +~~~ +18107357 1024 7 +~~~ +~~~ +18107359 1024 15 +~~~ +~~~ +18107361 1024 31 +~~~ +~~~ +18107362 1024 63 +~~~ +~~~ +18107364 1024 127 +~~~ +~~~ +18107366 1024 255 +18107367 homeCount = 33 +18107368 waitCount = 15 +18107368 ripCount = 16 +18107389 locktype1 = 0 +18107390 locktype2 = 2 +18107390 locktype3 = 1 +18107391 goalCount = 9 +18107391 goalTotal = 19 +18107392 otherCount = 11 +~~~ +18107393 CURRENTGOAL IS [2] +~~~ +18113951 DOWN 11 +18113951 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18113992 homeCount = 33 +18113993 waitCount = 15 +18113993 ripCount = 16 +18113994 locktype1 = 0 +18113994 locktype2 = 2 +18113995 locktype3 = 1 +18113995 goalCount = 9 +18113996 goalTotal = 19 +18113996 otherCount = 11 +~~~ +18113997 CURRENTGOAL IS [2] +~~~ +18114018 UP 11 +18114018 1024 255 +18114037 DOWN 11 +18114037 0 255 +18114051 UP 11 +18114051 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18114071 homeCount = 33 +18114072 waitCount = 15 +18114072 ripCount = 16 +18114073 locktype1 = 0 +18114073 locktype2 = 2 +18114074 locktype3 = 1 +18114074 goalCount = 9 +18114075 goalTotal = 19 +18114075 otherCount = 11 +~~~ +18114076 CURRENTGOAL IS [2] +~~~ +18115869 DOWN 11 +18115869 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18115903 homeCount = 33 +18115904 waitCount = 15 +18115904 ripCount = 16 +18115905 locktype1 = 0 +18115905 locktype2 = 2 +18115906 locktype3 = 1 +18115906 goalCount = 9 +18115907 goalTotal = 19 +18115907 otherCount = 11 +~~~ +18115908 CURRENTGOAL IS [2] +~~~ +18115930 UP 11 +18115929 1024 255 +18115962 DOWN 11 +18115962 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18116001 homeCount = 33 +18116002 waitCount = 15 +18116003 ripCount = 16 +18116003 locktype1 = 0 +18116004 locktype2 = 2 +18116004 locktype3 = 1 +18116005 goalCount = 9 +18116005 goalTotal = 19 +18116005 otherCount = 11 +~~~ +18116007 CURRENTGOAL IS [2] +~~~ +18119662 UP 2 +18119662 2 255 +~~~ +~~~ +18119689 outer reward +~~~ +18119690 2 131327 +~~~ +~~~ +18119694 outerreps = 6 +~~~ +~~~ +18119938 DOWN 2 +18119938 0 131327 +~~~ +~~~ +18119956 0 131326 +~~~ +~~~ +18119958 0 131324 +~~~ +~~~ +18119960 0 131320 +~~~ +~~~ +18119962 0 131312 +~~~ +~~~ +18119964 0 131296 +~~~ +~~~ +18119965 0 131264 +~~~ +~~~ +18119967 0 131200 +~~~ +~~~ +18119969 0 131072 +~~~ +~~~ +18119971 0 131584 +18119972 homeCount = 33 +18119972 waitCount = 15 +18119973 ripCount = 16 +18119994 locktype1 = 0 +18119995 locktype2 = 2 +18119995 locktype3 = 1 +18119996 goalCount = 0 +18119996 goalTotal = 20 +18119997 otherCount = 11 +~~~ +18119997 2 131584 +18120139 2 512 +18120369 DOWN 2 +18120369 0 512 +18120413 2 512 +18120500 DOWN 2 +18120500 0 512 +18120526 2 512 +18120623 DOWN 2 +18120623 0 512 +18120657 2 512 +18120748 DOWN 2 +18120748 0 512 +18120794 2 512 +18120885 DOWN 2 +18120885 0 512 +18120911 2 512 +18121020 DOWN 2 +18121020 0 512 +18121047 2 512 +18121152 DOWN 2 +18121152 0 512 +18121183 2 512 +18122677 DOWN 2 +18122677 0 512 +18122709 2 512 +18125125 DOWN 2 +18125125 0 512 +18125302 2 512 +18125328 DOWN 2 +18125328 0 512 +18125357 2 512 +18128345 DOWN 2 +18128345 0 512 +18128359 2 512 +18128526 DOWN 2 +18128525 0 512 +18128539 2 512 +18128866 DOWN 2 +18128866 0 512 +18133826 UP 10 +18133826 waslock = 0 +18133826 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18133854 512 16777728 +~~~ +18134004 512 512 +18139345 DOWN 10 +18139345 0 512 +~~~ +~~~ +18139368 0 2560 +~~~ +~~~ +18139370 0 2048 +18139371 homeCount = 34 +18139371 waitCount = 15 +18139372 ripCount = 16 +18139372 locktype1 = 0 +18139373 locktype2 = 2 +18139373 locktype3 = 1 +18139374 goalCount = 0 +18139374 goalTotal = 20 +18139375 otherCount = 11 +~~~ +18139396 UP 10 +18139396 waslock = 0 +18139396 512 2048 +~~~ +18139449 DOWN 10 +18139449 0 2048 +~~~ +~~~ +~~~ +~~~ +18139471 homeCount = 34 +18139471 waitCount = 15 +18139472 ripCount = 16 +18139472 locktype1 = 0 +18139473 locktype2 = 2 +18139473 locktype3 = 1 +18139474 goalCount = 0 +18139474 goalTotal = 20 +18139475 otherCount = 11 +~~~ +18141355 UP 12 +18141355 2048 2048 +18143540 DOWN 12 +18143540 0 2048 +18143589 UP 12 +18143589 2048 2048 +18144355 CLICK1 +18144355 CLICK2 +~~~ +~~~ +~~~ +18144383 2048 67110912 +~~~ +18144533 2048 2048 +18149565 DOWN 12 +18149565 0 2048 +18149572 UP 12 +18149572 2048 2048 +~~~ +~~~ +18149589 2048 0 +~~~ +~~~ +18149591 2048 1 +~~~ +~~~ +18149593 2048 3 +~~~ +~~~ +18149595 2048 7 +~~~ +~~~ +18149596 2048 15 +~~~ +~~~ +18149598 2048 31 +~~~ +~~~ +18149600 2048 63 +~~~ +~~~ +18149602 2048 127 +~~~ +~~~ +18149604 2048 255 +18149605 homeCount = 34 +18149605 waitCount = 16 +18149606 ripCount = 16 +18149627 locktype1 = 0 +18149627 locktype2 = 2 +18149628 locktype3 = 1 +18149628 goalCount = 0 +18149629 goalTotal = 20 +18149629 otherCount = 11 +~~~ +18149630 CURRENTGOAL IS [3] +~~~ +18149645 DOWN 12 +18149645 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18149687 homeCount = 34 +18149688 waitCount = 16 +18149688 ripCount = 16 +18149689 locktype1 = 0 +18149689 locktype2 = 2 +18149690 locktype3 = 1 +18149690 goalCount = 0 +18149691 goalTotal = 20 +18149691 otherCount = 11 +~~~ +18149692 CURRENTGOAL IS [3] +~~~ +18149746 UP 12 +18149746 2048 255 +18153121 DOWN 12 +18153121 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18153157 homeCount = 34 +18153158 waitCount = 16 +18153158 ripCount = 16 +18153159 locktype1 = 0 +18153159 locktype2 = 2 +18153160 locktype3 = 1 +18153160 goalCount = 0 +18153161 goalTotal = 20 +18153161 otherCount = 11 +~~~ +18153162 CURRENTGOAL IS [3] +~~~ +18155871 UP 2 +18155871 2 255 +~~~ +~~~ +18156143 DOWN 2 +18156143 0 255 +~~~ +~~~ +18156160 0 254 +~~~ +~~~ +18156162 0 252 +~~~ +~~~ +18156163 0 248 +~~~ +~~~ +18156165 0 240 +~~~ +~~~ +18156167 0 224 +~~~ +~~~ +18156169 0 192 +~~~ +~~~ +18156171 0 128 +~~~ +~~~ +18156172 0 0 +~~~ +~~~ +18156174 0 512 +18156175 homeCount = 34 +18156176 waitCount = 16 +18156176 ripCount = 16 +18156177 locktype1 = 0 +18156198 locktype2 = 2 +18156199 locktype3 = 1 +18156199 goalCount = 0 +18156200 goalTotal = 20 +18156200 otherCount = 12 +~~~ +18156201 2 512 +18156901 DOWN 2 +18156901 0 512 +18163599 UP 10 +18163599 waslock = 0 +18163599 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18163626 512 16777728 +18163628 DOWN 10 +18163628 0 16777728 +~~~ +~~~ +18163651 UP 10 +18163651 waslock = 0 +18163651 512 16777728 +~~~ +~~~ +~~~ +18163654 512 16778240 +18163655 homeCount = 35 +18163655 waitCount = 16 +18163656 ripCount = 16 +18163656 locktype1 = 0 +18163657 locktype2 = 2 +18163657 locktype3 = 1 +18163658 goalCount = 0 +18163679 goalTotal = 20 +18163679 otherCount = 12 +~~~ +~~~ +18163776 512 1024 +18168791 DOWN 10 +18168791 0 1024 +~~~ +~~~ +~~~ +~~~ +18168813 homeCount = 35 +18168814 waitCount = 16 +18168814 ripCount = 16 +18168815 locktype1 = 0 +18168815 locktype2 = 2 +18168816 locktype3 = 1 +18168816 goalCount = 0 +18168817 goalTotal = 20 +18168817 otherCount = 12 +~~~ +18170139 UP 11 +18170139 1024 1024 +18172433 DOWN 11 +18172433 0 1024 +18172442 UP 11 +18172442 1024 1024 +18174140 BEEP1 +18174140 BEEP2 +~~~ +~~~ +~~~ +18174161 1024 33555456 +~~~ +18174311 1024 1024 +18174484 DOWN 11 +18174484 0 1024 +18174503 UP 11 +18174503 1024 1024 +~~~ +~~~ +18174835 1024 0 +~~~ +~~~ +18174837 1024 1 +~~~ +~~~ +18174839 1024 3 +~~~ +~~~ +18174841 1024 7 +~~~ +~~~ +18174842 1024 15 +~~~ +~~~ +18174844 1024 31 +~~~ +~~~ +18174846 1024 63 +~~~ +~~~ +18174848 1024 127 +~~~ +~~~ +18174850 1024 255 +18174851 homeCount = 35 +18174851 waitCount = 16 +18174852 ripCount = 17 +18174873 locktype1 = 0 +18174873 locktype2 = 2 +18174874 locktype3 = 1 +18174874 goalCount = 0 +18174875 goalTotal = 20 +18174875 otherCount = 12 +~~~ +18174876 CURRENTGOAL IS [3] +~~~ +18179712 DOWN 11 +18179712 0 255 +18179726 UP 11 +18179726 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18179746 homeCount = 35 +18179747 waitCount = 16 +18179747 ripCount = 17 +18179748 locktype1 = 0 +18179748 locktype2 = 2 +18179749 locktype3 = 1 +18179749 goalCount = 0 +18179750 goalTotal = 20 +18179750 otherCount = 12 +~~~ +18179751 CURRENTGOAL IS [3] +~~~ +18179980 DOWN 11 +18179980 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18180007 UP 11 +18180007 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18180016 homeCount = 35 +18180017 waitCount = 16 +18180017 ripCount = 17 +18180018 locktype1 = 0 +18180018 locktype2 = 2 +18180019 locktype3 = 1 +18180019 goalCount = 0 +18180020 goalTotal = 20 +18180020 otherCount = 12 +~~~ +18180021 CURRENTGOAL IS [3] +~~~ +18182924 DOWN 11 +18182924 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18182966 homeCount = 35 +18182966 waitCount = 16 +18182967 ripCount = 17 +18182967 locktype1 = 0 +18182968 locktype2 = 2 +18182968 locktype3 = 1 +18182969 goalCount = 0 +18182969 goalTotal = 20 +18182970 otherCount = 12 +~~~ +18182971 CURRENTGOAL IS [3] +~~~ +18185764 UP 8 +18185764 128 255 +~~~ +~~~ +18185790 DOWN 8 +18185790 0 255 +~~~ +~~~ +18185804 0 254 +~~~ +~~~ +18185806 0 252 +~~~ +~~~ +18185808 0 248 +~~~ +~~~ +18185809 0 240 +~~~ +~~~ +18185811 0 224 +~~~ +~~~ +18185813 0 192 +~~~ +~~~ +18185815 0 128 +~~~ +~~~ +18185817 0 0 +~~~ +~~~ +18185819 0 512 +18185820 homeCount = 35 +18185820 waitCount = 16 +18185821 ripCount = 17 +18185821 locktype1 = 0 +18185842 locktype2 = 2 +18185843 locktype3 = 1 +18185843 goalCount = 0 +18185844 goalTotal = 20 +18185844 otherCount = 13 +~~~ +18185900 128 512 +18186287 DOWN 8 +18186287 0 512 +18186568 128 512 +18186592 DOWN 8 +18186592 0 512 +18196202 UP 10 +18196202 waslock = 0 +18196202 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18196229 512 16777728 +~~~ +18196378 512 512 +18200273 DOWN 10 +18200273 0 512 +~~~ +~~~ +18200292 0 1536 +~~~ +~~~ +18200294 0 1024 +18200295 homeCount = 36 +18200296 waitCount = 16 +18200296 ripCount = 17 +18200297 locktype1 = 0 +18200297 locktype2 = 2 +18200298 locktype3 = 1 +18200298 goalCount = 0 +18200299 goalTotal = 20 +18200299 otherCount = 13 +~~~ +18208210 UP 11 +18208210 1024 1024 +18208226 DOWN 11 +18208226 0 1024 +18208284 UP 11 +18208284 1024 1024 +18209774 DOWN 11 +18209774 0 1024 +18209820 UP 11 +18209820 1024 1024 +18210790 DOWN 11 +18210790 0 1024 +18210798 UP 11 +18210798 1024 1024 +18216211 BEEP1 +18216211 BEEP2 +~~~ +~~~ +~~~ +18216234 1024 33555456 +~~~ +18216384 1024 1024 +18223775 DOWN 11 +18223775 0 1024 +~~~ +~~~ +18223793 0 0 +~~~ +~~~ +18223795 0 1 +~~~ +~~~ +18223797 0 3 +~~~ +~~~ +18223798 0 7 +~~~ +~~~ +18223800 0 15 +~~~ +~~~ +18223802 0 31 +~~~ +~~~ +18223804 0 63 +~~~ +~~~ +18223806 0 127 +~~~ +~~~ +18223807 0 255 +18223808 homeCount = 36 +18223809 waitCount = 16 +18223810 ripCount = 18 +18223810 locktype1 = 0 +18223811 locktype2 = 2 +18223831 locktype3 = 1 +18223832 goalCount = 0 +18223832 goalTotal = 20 +18223833 otherCount = 13 +~~~ +18223834 CURRENTGOAL IS [3] +~~~ +18227228 UP 5 +18227228 16 255 +~~~ +18227252 DOWN 5 +18227252 0 255 +~~~ +~~~ +~~~ +18227283 0 254 +~~~ +~~~ +18227284 0 252 +~~~ +~~~ +18227286 0 248 +~~~ +~~~ +18227288 0 240 +~~~ +~~~ +18227290 0 224 +~~~ +~~~ +18227292 0 192 +~~~ +~~~ +18227294 0 128 +~~~ +~~~ +18227295 0 0 +~~~ +~~~ +18227297 0 512 +18227298 homeCount = 36 +18227299 waitCount = 16 +18227299 ripCount = 18 +18227300 locktype1 = 0 +18227321 locktype2 = 2 +18227321 locktype3 = 1 +18227322 goalCount = 0 +18227322 goalTotal = 20 +18227323 otherCount = 14 +~~~ +18227714 16 512 +18228137 DOWN 5 +18228137 0 512 +18235161 UP 10 +18235161 waslock = 0 +18235161 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18235189 512 16777728 +~~~ +18235339 512 512 +18235410 DOWN 10 +18235410 0 512 +18235431 UP 10 +18235431 waslock = 0 +18235431 512 512 +~~~ +~~~ +~~~ +18235434 512 1536 +~~~ +18235435 512 1024 +18235436 homeCount = 37 +18235436 waitCount = 16 +18235437 ripCount = 18 +18235437 locktype1 = 0 +18235438 locktype2 = 2 +18235438 locktype3 = 1 +18235460 goalCount = 0 +18235460 goalTotal = 20 +18235460 otherCount = 14 +~~~ +~~~ +18235511 DOWN 10 +18235511 0 1024 +~~~ +~~~ +~~~ +~~~ +18235536 homeCount = 37 +18235537 waitCount = 16 +18235537 ripCount = 18 +18235538 locktype1 = 0 +18235538 locktype2 = 2 +18235539 locktype3 = 1 +18235539 goalCount = 0 +18235540 goalTotal = 20 +18235540 otherCount = 14 +~~~ +18235607 UP 10 +18235607 waslock = 0 +18235607 512 1024 +~~~ +18239208 DOWN 10 +18239208 0 1024 +18239219 UP 10 +18239220 waslock = 0 +18239219 512 1024 +~~~ +~~~ +~~~ +~~~ +18239239 homeCount = 37 +18239239 waitCount = 16 +18239240 ripCount = 18 +18239240 locktype1 = 0 +18239241 locktype2 = 2 +18239241 locktype3 = 1 +18239242 goalCount = 0 +18239242 goalTotal = 20 +18239243 otherCount = 14 +~~~ +~~~ +18239327 DOWN 10 +18239327 0 1024 +~~~ +~~~ +~~~ +~~~ +18239348 homeCount = 37 +18239348 waitCount = 16 +18239349 ripCount = 18 +18239349 locktype1 = 0 +18239350 locktype2 = 2 +18239350 locktype3 = 1 +18239351 goalCount = 0 +18239351 goalTotal = 20 +18239352 otherCount = 14 +~~~ +18239392 UP 10 +18239393 waslock = 0 +18239392 512 1024 +18239414 DOWN 10 +18239414 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +18239439 homeCount = 37 +18239439 waitCount = 16 +18239440 ripCount = 18 +18239440 locktype1 = 0 +18239441 locktype2 = 2 +18239441 locktype3 = 1 +18239442 goalCount = 0 +18239442 goalTotal = 20 +18239443 otherCount = 14 +~~~ +18242195 UP 11 +18242195 1024 1024 +18242247 DOWN 11 +18242247 0 1024 +18242425 UP 11 +18242425 1024 1024 +18242444 DOWN 11 +18242444 0 1024 +18242544 UP 11 +18242544 1024 1024 +18245225 DOWN 11 +18245225 0 1024 +18245246 UP 11 +18245246 1024 1024 +18246696 BEEP1 +18246696 BEEP2 +~~~ +~~~ +~~~ +18246717 1024 33555456 +~~~ +18246867 1024 1024 +18252109 DOWN 11 +18252109 0 1024 +18252130 UP 11 +18252130 1024 1024 +~~~ +~~~ +18252136 1024 0 +~~~ +~~~ +18252138 1024 1 +~~~ +~~~ +18252140 1024 3 +~~~ +~~~ +18252142 1024 7 +~~~ +~~~ +18252144 1024 15 +~~~ +~~~ +18252145 1024 31 +~~~ +~~~ +18252147 1024 63 +~~~ +~~~ +18252149 1024 127 +~~~ +~~~ +18252151 1024 255 +18252152 homeCount = 37 +18252153 waitCount = 16 +18252153 ripCount = 19 +18252174 locktype1 = 0 +18252175 locktype2 = 2 +18252175 locktype3 = 1 +18252176 goalCount = 0 +18252176 goalTotal = 20 +18252177 otherCount = 14 +~~~ +18252178 CURRENTGOAL IS [3] +~~~ +18254872 DOWN 11 +18254872 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18254913 homeCount = 37 +18254913 waitCount = 16 +18254914 ripCount = 19 +18254914 locktype1 = 0 +18254915 locktype2 = 2 +18254915 locktype3 = 1 +18254916 goalCount = 0 +18254916 goalTotal = 20 +18254917 otherCount = 14 +~~~ +18254918 CURRENTGOAL IS [3] +~~~ +18258249 UP 4 +18258249 8 255 +~~~ +~~~ +18258276 DOWN 4 +18258276 0 255 +~~~ +~~~ +18258294 0 254 +~~~ +~~~ +18258296 0 252 +~~~ +~~~ +18258298 0 248 +~~~ +~~~ +18258300 0 240 +~~~ +~~~ +18258301 0 224 +~~~ +~~~ +18258303 0 192 +~~~ +~~~ +18258305 0 128 +~~~ +~~~ +18258307 0 0 +~~~ +~~~ +18258309 0 512 +18258310 homeCount = 37 +18258310 waitCount = 16 +18258311 ripCount = 19 +18258311 locktype1 = 0 +18258333 locktype2 = 2 +18258333 locktype3 = 1 +18258333 goalCount = 0 +18258334 goalTotal = 20 +18258334 otherCount = 15 +~~~ +18258335 8 512 +18259587 DOWN 4 +18259587 0 512 +18266478 UP 10 +18266478 waslock = 0 +18266477 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18266509 512 16777728 +~~~ +18266659 512 512 +18266771 DOWN 10 +18266771 0 512 +~~~ +~~~ +18266793 0 2560 +~~~ +~~~ +18266795 0 2048 +18266796 homeCount = 38 +18266796 waitCount = 16 +18266797 ripCount = 19 +18266797 locktype1 = 0 +18266798 locktype2 = 2 +18266798 locktype3 = 1 +18266799 goalCount = 0 +18266799 goalTotal = 20 +18266800 otherCount = 15 +~~~ +18266821 UP 10 +18266821 waslock = 0 +18266821 512 2048 +~~~ +18272909 DOWN 10 +18272909 0 2048 +~~~ +~~~ +~~~ +~~~ +18272936 homeCount = 38 +18272936 waitCount = 16 +18272937 ripCount = 19 +18272937 locktype1 = 0 +18272938 locktype2 = 2 +18272938 locktype3 = 1 +18272939 goalCount = 0 +18272939 goalTotal = 20 +18272940 otherCount = 15 +~~~ +18274852 UP 12 +18274852 2048 2048 +18278279 DOWN 12 +18278279 0 2048 +18278286 UP 12 +18278286 2048 2048 +18278290 DOWN 12 +18278290 0 2048 +18278305 UP 12 +18278305 2048 2048 +18281568 DOWN 12 +18281568 0 2048 +18281603 UP 12 +18281603 2048 2048 +18282352 CLICK1 +18282352 CLICK2 +~~~ +~~~ +~~~ +18282379 2048 67110912 +~~~ +18282529 2048 2048 +18288085 DOWN 12 +18288085 0 2048 +~~~ +~~~ +18288103 0 0 +~~~ +~~~ +18288105 0 1 +~~~ +18288106 UP 12 +18288106 2048 1 +~~~ +~~~ +~~~ +18288109 2048 7 +~~~ +~~~ +18288110 2048 15 +~~~ +~~~ +18288112 2048 31 +~~~ +~~~ +18288114 2048 63 +~~~ +~~~ +18288116 2048 127 +~~~ +~~~ +18288118 2048 255 +18288119 homeCount = 38 +18288119 waitCount = 17 +18288140 ripCount = 19 +18288140 locktype1 = 0 +18288141 locktype2 = 2 +18288141 locktype3 = 1 +18288142 goalCount = 0 +18288142 goalTotal = 20 +18288143 otherCount = 15 +~~~ +18288144 CURRENTGOAL IS [3] +~~~ +18288166 DOWN 12 +18288166 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18288203 homeCount = 38 +18288203 waitCount = 17 +18288204 ripCount = 19 +18288204 locktype1 = 0 +18288205 locktype2 = 2 +18288205 locktype3 = 1 +18288206 goalCount = 0 +18288206 goalTotal = 20 +18288207 otherCount = 15 +~~~ +18288208 CURRENTGOAL IS [3] +~~~ +18292311 UP 3 +18292311 4 255 +~~~ +~~~ +18292337 outer reward +~~~ +18292338 4 262399 +~~~ +~~~ +18292624 DOWN 3 +18292624 0 262399 +~~~ +~~~ +18292648 0 262398 +~~~ +~~~ +18292650 0 262396 +~~~ +~~~ +18292651 0 262392 +~~~ +~~~ +18292653 0 262384 +~~~ +~~~ +18292655 0 262368 +~~~ +18292656 4 262368 +~~~ +~~~ +18292658 4 262336 +~~~ +~~~ +18292660 4 262272 +~~~ +18292661 4 262144 +~~~ +~~~ +18292662 4 262656 +18292663 homeCount = 38 +18292684 waitCount = 17 +18292685 ripCount = 19 +18292685 locktype1 = 0 +18292686 locktype2 = 2 +18292686 locktype3 = 1 +18292687 goalCount = 1 +18292687 goalTotal = 21 +18292688 otherCount = 15 +~~~ +18292787 4 512 +18293056 DOWN 3 +18293056 0 512 +18293081 4 512 +18293179 DOWN 3 +18293179 0 512 +18293201 4 512 +18293306 DOWN 3 +18293306 0 512 +18293327 4 512 +18293431 DOWN 3 +18293431 0 512 +18293456 4 512 +18293561 DOWN 3 +18293561 0 512 +18293585 4 512 +18293698 DOWN 3 +18293698 0 512 +18293718 4 512 +18293833 DOWN 3 +18293833 0 512 +18293855 4 512 +18293976 DOWN 3 +18293976 0 512 +18293991 4 512 +18294119 DOWN 3 +18294119 0 512 +18294131 4 512 +18299516 DOWN 3 +18299516 0 512 +18299584 4 512 +18299611 DOWN 3 +18299611 0 512 +18305797 UP 10 +18305797 waslock = 0 +18305797 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18305825 512 16777728 +~~~ +18305975 512 512 +18311404 DOWN 10 +18311404 0 512 +~~~ +~~~ +18311429 0 1536 +~~~ +~~~ +18311431 0 1024 +18311432 homeCount = 39 +18311432 waitCount = 17 +18311433 ripCount = 19 +18311433 locktype1 = 0 +18311434 locktype2 = 2 +18311434 locktype3 = 1 +18311435 goalCount = 1 +18311435 goalTotal = 21 +18311436 otherCount = 15 +~~~ +18311457 UP 10 +18311457 waslock = 0 +18311457 512 1024 +~~~ +18311489 DOWN 10 +18311489 0 1024 +~~~ +~~~ +~~~ +~~~ +18311503 homeCount = 39 +18311503 waitCount = 17 +18311504 ripCount = 19 +18311504 locktype1 = 0 +18311505 locktype2 = 2 +18311505 locktype3 = 1 +18311506 goalCount = 1 +18311506 goalTotal = 21 +18311507 otherCount = 15 +~~~ +18313122 UP 11 +18313122 1024 1024 +18322122 BEEP1 +18322122 BEEP2 +~~~ +~~~ +~~~ +18322144 1024 33555456 +~~~ +18322294 1024 1024 +18326944 DOWN 11 +18326944 0 1024 +18326951 UP 11 +18326951 1024 1024 +~~~ +~~~ +18326969 1024 0 +~~~ +~~~ +18326971 1024 1 +~~~ +~~~ +18326973 1024 3 +~~~ +~~~ +18326975 1024 7 +~~~ +~~~ +18326976 1024 15 +~~~ +~~~ +18326978 1024 31 +~~~ +~~~ +18326980 1024 63 +~~~ +~~~ +18326982 1024 127 +~~~ +~~~ +18326984 1024 255 +18326985 homeCount = 39 +18326985 waitCount = 17 +18326986 ripCount = 20 +18327007 locktype1 = 0 +18327007 locktype2 = 2 +18327008 locktype3 = 1 +18327008 goalCount = 1 +18327009 goalTotal = 21 +18327009 otherCount = 15 +~~~ +18327010 CURRENTGOAL IS [3] +~~~ +18327218 DOWN 11 +18327218 0 255 +~~~ +~~~ +~~~ +18327242 UP 11 +18327242 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18327257 homeCount = 39 +18327257 waitCount = 17 +18327258 ripCount = 20 +18327258 locktype1 = 0 +18327259 locktype2 = 2 +18327259 locktype3 = 1 +18327260 goalCount = 1 +18327260 goalTotal = 21 +18327261 otherCount = 15 +~~~ +18327262 CURRENTGOAL IS [3] +~~~ +18330417 DOWN 11 +18330417 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18330460 homeCount = 39 +18330461 waitCount = 17 +18330461 ripCount = 20 +18330462 locktype1 = 0 +18330462 locktype2 = 2 +18330463 locktype3 = 1 +18330463 goalCount = 1 +18330464 goalTotal = 21 +18330464 otherCount = 15 +~~~ +18330465 CURRENTGOAL IS [3] +~~~ +18335296 UP 2 +18335296 2 255 +~~~ +~~~ +18335330 DOWN 2 +18335330 0 255 +~~~ +18335345 2 255 +~~~ +~~~ +18335347 2 254 +~~~ +~~~ +18335348 2 252 +~~~ +18335350 2 248 +~~~ +~~~ +18335351 2 240 +~~~ +~~~ +18335353 2 224 +~~~ +~~~ +18335355 2 192 +~~~ +~~~ +18335357 2 128 +~~~ +~~~ +18335358 2 0 +~~~ +~~~ +18335360 2 512 +18335361 homeCount = 39 +18335362 waitCount = 17 +18335362 ripCount = 20 +18335384 locktype1 = 0 +18335384 locktype2 = 2 +18335385 locktype3 = 1 +18335385 goalCount = 1 +18335385 goalTotal = 21 +18335386 otherCount = 16 +~~~ +18335768 DOWN 2 +18335768 0 512 +18335780 2 512 +18336120 DOWN 2 +18336120 0 512 +18336346 2 512 +18336362 DOWN 2 +18336362 0 512 +18336949 2 512 +18337029 DOWN 2 +18337029 0 512 +18340544 UP 10 +18340544 waslock = 0 +18340544 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18340570 512 16777728 +~~~ +18340720 512 512 +18344340 DOWN 10 +18344340 0 512 +~~~ +~~~ +18344365 0 2560 +~~~ +~~~ +18344367 0 2048 +18344368 homeCount = 40 +18344368 waitCount = 17 +18344369 ripCount = 20 +18344369 locktype1 = 0 +18344370 locktype2 = 2 +18344370 locktype3 = 1 +18344371 goalCount = 1 +18344371 goalTotal = 21 +18344372 otherCount = 16 +~~~ +18344393 UP 10 +18344393 waslock = 0 +18344393 512 2048 +~~~ +18344426 DOWN 10 +18344426 0 2048 +~~~ +~~~ +~~~ +~~~ +18344451 homeCount = 40 +18344451 waitCount = 17 +18344452 ripCount = 20 +18344452 locktype1 = 0 +18344453 locktype2 = 2 +18344453 locktype3 = 1 +18344454 goalCount = 1 +18344454 goalTotal = 21 +18344455 otherCount = 16 +~~~ +18346034 UP 12 +18346034 2048 2048 +18353034 CLICK1 +18353034 CLICK2 +~~~ +~~~ +~~~ +18353058 2048 67110912 +~~~ +18353208 2048 2048 +18353356 DOWN 12 +18353356 0 2048 +~~~ +~~~ +18353377 0 0 +~~~ +~~~ +18353379 0 1 +~~~ +~~~ +18353381 0 3 +~~~ +~~~ +18353383 0 7 +~~~ +~~~ +18353385 0 15 +~~~ +~~~ +18353387 0 31 +~~~ +~~~ +18353388 0 63 +~~~ +~~~ +18353390 0 127 +~~~ +~~~ +18353392 0 255 +18353393 homeCount = 40 +18353394 waitCount = 18 +18353394 ripCount = 20 +18353395 locktype1 = 0 +18353395 locktype2 = 2 +18353416 locktype3 = 1 +18353417 goalCount = 1 +18353417 goalTotal = 21 +18353418 otherCount = 16 +~~~ +18353419 CURRENTGOAL IS [3] +~~~ +18353419 UP 12 +18353419 2048 255 +18359231 DOWN 12 +18359231 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18359273 homeCount = 40 +18359274 waitCount = 18 +18359274 ripCount = 20 +18359275 locktype1 = 0 +18359276 locktype2 = 2 +18359276 locktype3 = 1 +18359276 goalCount = 1 +18359277 goalTotal = 21 +18359277 otherCount = 16 +~~~ +18359279 CURRENTGOAL IS [3] +~~~ +18359318 UP 12 +18359318 2048 255 +18359326 DOWN 12 +18359326 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18359353 homeCount = 40 +18359354 waitCount = 18 +18359354 ripCount = 20 +18359355 locktype1 = 0 +18359355 locktype2 = 2 +18359356 locktype3 = 1 +18359356 goalCount = 1 +18359357 goalTotal = 21 +18359357 otherCount = 16 +~~~ +18359358 CURRENTGOAL IS [3] +~~~ +18367152 UP 10 +18367152 waslock = 0 +18367152 512 255 +~~~ +18367170 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18367178 512 254 +~~~ +~~~ +18367180 512 252 +~~~ +~~~ +18367181 512 248 +~~~ +~~~ +18367183 512 240 +~~~ +~~~ +18367185 512 224 +~~~ +~~~ +18367187 512 192 +~~~ +~~~ +18367189 512 128 +~~~ +~~~ +18367191 512 0 +~~~ +~~~ +~~~ +18367431 0 0 +18367494 512 0 +18368467 0 0 +18370070 512 0 +18370115 0 0 +18390750 512 0 +18390835 0 0 +18390853 512 0 +18391792 0 0 +18391867 512 0 +18392170 LOCKEND +~~~ +~~~ +~~~ +18392191 512 512 +18392406 DOWN 10 +18392406 0 512 +18392474 UP 10 +18392474 waslock = 0 +18392474 512 512 +18392493 DOWN 10 +18392493 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18392519 0 16777728 +~~~ +~~~ +~~~ +18392522 0 16778752 +~~~ +~~~ +18392524 0 16778240 +18392525 homeCount = 41 +18392525 waitCount = 18 +18392526 ripCount = 20 +18392526 locktype1 = 0 +18392527 locktype2 = 3 +18392527 locktype3 = 1 +18392528 goalCount = 1 +18392528 goalTotal = 21 +18392529 otherCount = 16 +~~~ +18392654 UP 10 +18392654 waslock = 0 +18392654 512 16778240 +18392669 512 1024 +~~~ +18392693 DOWN 10 +18392693 0 1024 +~~~ +~~~ +~~~ +~~~ +18392714 homeCount = 41 +18392715 waitCount = 18 +18392715 ripCount = 20 +18392716 locktype1 = 0 +18392716 locktype2 = 3 +18392717 locktype3 = 1 +18392717 goalCount = 1 +18392718 goalTotal = 21 +18392718 otherCount = 16 +~~~ +18392893 UP 10 +18392894 waslock = 0 +18392893 512 1024 +~~~ +18399200 DOWN 10 +18399200 0 1024 +~~~ +~~~ +~~~ +~~~ +18399223 homeCount = 41 +18399224 waitCount = 18 +18399224 ripCount = 20 +18399225 locktype1 = 0 +18399225 locktype2 = 3 +18399226 locktype3 = 1 +18399226 goalCount = 1 +18399227 goalTotal = 21 +18399227 otherCount = 16 +~~~ +18399231 UP 10 +18399231 waslock = 0 +18399231 512 1024 +~~~ +18399278 DOWN 10 +18399278 0 1024 +~~~ +~~~ +~~~ +~~~ +18399297 homeCount = 41 +18399297 waitCount = 18 +18399298 ripCount = 20 +18399298 locktype1 = 0 +18399299 locktype2 = 3 +18399299 locktype3 = 1 +18399300 goalCount = 1 +18399300 goalTotal = 21 +18399301 otherCount = 16 +~~~ +18402849 UP 11 +18402849 1024 1024 +18403841 DOWN 11 +18403841 0 1024 +18403876 UP 11 +18403876 1024 1024 +18404665 DOWN 11 +18404665 0 1024 +18404719 UP 11 +18404719 1024 1024 +18405850 BEEP1 +18405850 BEEP2 +~~~ +~~~ +~~~ +18405873 1024 33555456 +~~~ +18406023 1024 1024 +18411287 DOWN 11 +18411286 0 1024 +~~~ +~~~ +18411311 0 0 +~~~ +~~~ +18411313 0 1 +~~~ +~~~ +18411315 0 3 +~~~ +~~~ +18411317 UP 11 +18411317 1024 7 +~~~ +~~~ +18411319 1024 15 +~~~ +~~~ +18411320 1024 31 +~~~ +~~~ +18411322 1024 63 +~~~ +~~~ +18411324 1024 127 +~~~ +~~~ +18411326 1024 255 +18411327 homeCount = 41 +18411327 waitCount = 18 +18411349 ripCount = 21 +18411349 locktype1 = 0 +18411349 locktype2 = 3 +18411350 locktype3 = 1 +18411350 goalCount = 1 +18411351 goalTotal = 21 +18411352 otherCount = 16 +~~~ +18411353 CURRENTGOAL IS [3] +~~~ +18411418 DOWN 11 +18411418 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18411461 homeCount = 41 +18411461 waitCount = 18 +18411462 ripCount = 21 +18411462 locktype1 = 0 +18411463 locktype2 = 3 +18411463 locktype3 = 1 +18411464 goalCount = 1 +18411464 goalTotal = 21 +18411465 otherCount = 16 +~~~ +18411466 CURRENTGOAL IS [3] +~~~ +18411487 UP 11 +18411487 1024 255 +18411552 DOWN 11 +18411552 0 255 +18411570 UP 11 +18411570 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18411606 homeCount = 41 +18411606 waitCount = 18 +18411607 ripCount = 21 +18411607 locktype1 = 0 +18411608 locktype2 = 3 +18411608 locktype3 = 1 +18411609 goalCount = 1 +18411609 goalTotal = 21 +18411610 otherCount = 16 +~~~ +18411611 CURRENTGOAL IS [3] +~~~ +18413548 DOWN 11 +18413548 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18413589 homeCount = 41 +18413590 waitCount = 18 +18413590 ripCount = 21 +18413591 locktype1 = 0 +18413591 locktype2 = 3 +18413592 locktype3 = 1 +18413592 goalCount = 1 +18413593 goalTotal = 21 +18413593 otherCount = 16 +~~~ +18413594 CURRENTGOAL IS [3] +~~~ +18413618 UP 11 +18413618 1024 255 +18413653 DOWN 11 +18413653 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18413689 homeCount = 41 +18413690 waitCount = 18 +18413691 ripCount = 21 +18413691 locktype1 = 0 +18413692 locktype2 = 3 +18413692 locktype3 = 1 +18413693 goalCount = 1 +18413693 goalTotal = 21 +18413694 otherCount = 16 +~~~ +18413695 CURRENTGOAL IS [3] +~~~ +18427752 UP 3 +18427752 4 255 +~~~ +~~~ +18427780 outer reward +~~~ +18427781 4 262399 +~~~ +~~~ +18428037 DOWN 3 +18428037 0 262399 +~~~ +~~~ +18428056 0 262398 +~~~ +~~~ +18428057 0 262396 +~~~ +~~~ +18428059 0 262392 +~~~ +~~~ +18428061 0 262384 +~~~ +~~~ +18428063 0 262368 +~~~ +~~~ +18428065 0 262336 +~~~ +~~~ +18428067 0 262272 +~~~ +~~~ +18428068 0 262144 +~~~ +~~~ +18428070 0 262656 +18428071 homeCount = 41 +18428072 waitCount = 18 +18428072 ripCount = 21 +18428093 locktype1 = 0 +18428094 locktype2 = 3 +18428094 locktype3 = 1 +18428095 goalCount = 2 +18428095 goalTotal = 22 +18428096 otherCount = 16 +~~~ +18428096 4 262656 +18428230 4 512 +18428443 DOWN 3 +18428443 0 512 +18428476 4 512 +18428561 DOWN 3 +18428561 0 512 +18428599 4 512 +18428685 DOWN 3 +18428685 0 512 +18428724 4 512 +18428808 DOWN 3 +18428808 0 512 +18428850 4 512 +18428934 DOWN 3 +18428934 0 512 +18428970 4 512 +18429072 DOWN 3 +18429072 0 512 +18429100 4 512 +18429211 DOWN 3 +18429211 0 512 +18429239 4 512 +18429351 DOWN 3 +18429351 0 512 +18429374 4 512 +18429495 DOWN 3 +18429495 0 512 +18429514 4 512 +18429638 DOWN 3 +18429638 0 512 +18429655 4 512 +18435540 DOWN 3 +18435540 0 512 +18435579 4 512 +18435628 DOWN 3 +18435628 0 512 +18441200 UP 10 +18441200 waslock = 0 +18441200 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18441225 512 16777728 +~~~ +18441375 512 512 +18446646 DOWN 10 +18446646 0 512 +18446663 UP 10 +18446663 waslock = 0 +18446663 512 512 +~~~ +~~~ +18446669 512 1536 +~~~ +~~~ +18446671 512 1024 +18446672 homeCount = 42 +18446673 waitCount = 18 +18446673 ripCount = 21 +18446674 locktype1 = 0 +18446674 locktype2 = 3 +18446675 locktype3 = 1 +18446675 goalCount = 2 +18446676 goalTotal = 22 +18446676 otherCount = 16 +~~~ +~~~ +18446731 DOWN 10 +18446731 0 1024 +~~~ +~~~ +~~~ +~~~ +18446752 homeCount = 42 +18446752 waitCount = 18 +18446753 ripCount = 21 +18446753 locktype1 = 0 +18446754 locktype2 = 3 +18446754 locktype3 = 1 +18446755 goalCount = 2 +18446755 goalTotal = 22 +18446756 otherCount = 16 +~~~ +18449519 UP 11 +18449519 1024 1024 +18449878 DOWN 11 +18449878 0 1024 +18450078 LOCKOUT 3 +~~~ +18450101 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +18450105 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18463180 UP 1 +18463180 1 0 +18465562 DOWN 1 +18465562 0 0 +18465583 1 0 +18465670 DOWN 1 +18465670 0 0 +18465744 1 0 +18465767 DOWN 1 +18465767 0 0 +18475101 LOCKEND +~~~ +~~~ +~~~ +18475120 0 512 +18476607 UP 10 +18476608 waslock = 0 +18476607 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18476638 512 16777728 +~~~ +18476788 512 512 +18476832 DOWN 10 +18476832 0 512 +18476847 UP 10 +18476848 waslock = 0 +18476847 512 512 +~~~ +~~~ +18476852 512 2560 +~~~ +~~~ +18476854 512 2048 +18476855 homeCount = 43 +18476855 waitCount = 18 +18476856 ripCount = 21 +18476856 locktype1 = 0 +18476857 locktype2 = 3 +18476857 locktype3 = 2 +18476858 goalCount = 2 +18476858 goalTotal = 22 +18476859 otherCount = 16 +~~~ +~~~ +18477271 DOWN 10 +18477271 0 2048 +~~~ +~~~ +~~~ +~~~ +18477297 homeCount = 43 +18477297 waitCount = 18 +18477298 ripCount = 21 +18477298 locktype1 = 0 +18477299 locktype2 = 3 +18477299 locktype3 = 2 +18477299 goalCount = 2 +18477300 goalTotal = 22 +18477300 otherCount = 16 +~~~ +18477304 UP 10 +18477305 waslock = 0 +18477304 512 2048 +~~~ +18480504 DOWN 10 +18480503 0 2048 +~~~ +~~~ +~~~ +~~~ +18480533 homeCount = 43 +18480533 waitCount = 18 +18480534 ripCount = 21 +18480534 locktype1 = 0 +18480535 locktype2 = 3 +18480535 locktype3 = 2 +18480535 goalCount = 2 +18480536 goalTotal = 22 +18480536 otherCount = 16 +~~~ +18486382 UP 12 +18486382 2048 2048 +18489050 DOWN 12 +18489050 0 2048 +18489054 UP 12 +18489054 2048 2048 +18489417 DOWN 12 +18489417 0 2048 +18489429 UP 12 +18489429 2048 2048 +18492382 CLICK1 +18492382 CLICK2 +~~~ +~~~ +~~~ +18492402 2048 67110912 +~~~ +18492552 2048 2048 +18499697 DOWN 12 +18499697 0 2048 +~~~ +~~~ +18499721 0 0 +~~~ +~~~ +18499722 0 1 +~~~ +~~~ +18499724 0 3 +~~~ +~~~ +18499726 0 7 +~~~ +~~~ +18499728 0 15 +~~~ +~~~ +18499730 0 31 +~~~ +~~~ +18499731 0 63 +~~~ +~~~ +18499733 0 127 +~~~ +~~~ +18499735 0 255 +18499736 homeCount = 43 +18499737 waitCount = 19 +18499737 ripCount = 21 +18499738 locktype1 = 0 +18499738 locktype2 = 3 +18499759 locktype3 = 2 +18499759 goalCount = 2 +18499760 goalTotal = 22 +18499760 otherCount = 16 +~~~ +18499761 CURRENTGOAL IS [3] +~~~ +18499762 UP 12 +18499762 2048 255 +18499791 DOWN 12 +18499791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18499824 homeCount = 43 +18499824 waitCount = 19 +18499825 ripCount = 21 +18499825 locktype1 = 0 +18499826 locktype2 = 3 +18499826 locktype3 = 2 +18499827 goalCount = 2 +18499827 goalTotal = 22 +18499828 otherCount = 16 +~~~ +18499829 CURRENTGOAL IS [3] +~~~ +18503006 UP 3 +18503006 4 255 +~~~ +~~~ +18503026 outer reward +~~~ +18503026 4 262399 +~~~ +~~~ +18503213 DOWN 3 +18503213 0 262399 +~~~ +~~~ +18503234 0 262398 +~~~ +~~~ +18503236 0 262396 +~~~ +~~~ +18503238 0 262392 +~~~ +~~~ +18503240 0 262384 +~~~ +~~~ +18503242 0 262368 +~~~ +~~~ +18503243 0 262336 +~~~ +~~~ +18503245 0 262272 +~~~ +~~~ +18503247 0 262144 +~~~ +~~~ +18503249 0 262656 +18503250 homeCount = 43 +18503250 waitCount = 19 +18503251 ripCount = 21 +18503272 locktype1 = 0 +18503273 locktype2 = 3 +18503273 locktype3 = 2 +18503274 goalCount = 3 +18503274 goalTotal = 23 +18503275 otherCount = 16 +~~~ +18503279 4 262656 +18503402 DOWN 3 +18503402 0 262656 +18503448 4 262656 +18503476 4 512 +18503554 DOWN 3 +18503554 0 512 +18503589 4 512 +18504212 DOWN 3 +18504212 0 512 +18504219 4 512 +18504339 DOWN 3 +18504339 0 512 +18504353 4 512 +18504473 DOWN 3 +18504473 0 512 +18504487 4 512 +18504613 DOWN 3 +18504613 0 512 +18504623 4 512 +18511674 DOWN 3 +18511674 0 512 +18516945 UP 10 +18516945 waslock = 0 +18516944 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18516972 512 16777728 +~~~ +18517021 DOWN 10 +18517021 0 16777728 +~~~ +~~~ +18517045 0 16779776 +~~~ +~~~ +18517047 0 16779264 +18517048 homeCount = 44 +18517049 waitCount = 19 +18517049 ripCount = 21 +18517050 locktype1 = 0 +18517050 locktype2 = 3 +18517051 locktype3 = 2 +18517051 goalCount = 3 +18517052 goalTotal = 23 +18517052 otherCount = 16 +~~~ +18517073 UP 10 +18517073 waslock = 0 +18517073 512 16779264 +~~~ +18517122 512 2048 +18517244 DOWN 10 +18517244 0 2048 +~~~ +~~~ +~~~ +~~~ +18517267 homeCount = 44 +18517268 waitCount = 19 +18517268 ripCount = 21 +18517269 locktype1 = 0 +18517269 locktype2 = 3 +18517270 locktype3 = 2 +18517270 goalCount = 3 +18517271 goalTotal = 23 +18517271 otherCount = 16 +~~~ +18517332 UP 10 +18517332 waslock = 0 +18517332 512 2048 +~~~ +18523840 DOWN 10 +18523840 0 2048 +~~~ +~~~ +~~~ +~~~ +18523866 homeCount = 44 +18523867 waitCount = 19 +18523867 ripCount = 21 +18523868 locktype1 = 0 +18523868 locktype2 = 3 +18523869 locktype3 = 2 +18523869 goalCount = 3 +18523870 goalTotal = 23 +18523870 otherCount = 16 +~~~ +18523918 UP 10 +18523918 waslock = 0 +18523918 512 2048 +~~~ +18523968 DOWN 10 +18523968 0 2048 +~~~ +~~~ +~~~ +~~~ +18524000 homeCount = 44 +18524000 waitCount = 19 +18524001 ripCount = 21 +18524001 locktype1 = 0 +18524002 locktype2 = 3 +18524002 locktype3 = 2 +18524003 goalCount = 3 +18524003 goalTotal = 23 +18524004 otherCount = 16 +~~~ +18526588 UP 12 +18526588 2048 2048 +18528844 DOWN 12 +18528844 0 2048 +18528979 UP 12 +18528979 2048 2048 +18530361 DOWN 12 +18530361 0 2048 +18530370 UP 12 +18530370 2048 2048 +18533589 CLICK1 +18533589 CLICK2 +~~~ +~~~ +~~~ +18533616 2048 67110912 +~~~ +18533766 2048 2048 +18539900 DOWN 12 +18539900 0 2048 +18539915 UP 12 +18539915 2048 2048 +~~~ +~~~ +18539936 2048 0 +~~~ +~~~ +18539938 2048 1 +~~~ +~~~ +18539940 2048 3 +~~~ +~~~ +18539942 2048 7 +~~~ +~~~ +18539944 2048 15 +~~~ +~~~ +18539945 2048 31 +~~~ +~~~ +18539947 2048 63 +~~~ +~~~ +18539949 2048 127 +~~~ +~~~ +18539951 2048 255 +18539952 homeCount = 44 +18539952 waitCount = 20 +18539953 ripCount = 21 +18539974 locktype1 = 0 +18539974 locktype2 = 3 +18539975 locktype3 = 2 +18539975 goalCount = 3 +18539976 goalTotal = 23 +18539976 otherCount = 16 +~~~ +18539978 CURRENTGOAL IS [3] +~~~ +18539978 DOWN 12 +18539978 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18540031 homeCount = 44 +18540031 waitCount = 20 +18540032 ripCount = 21 +18540032 locktype1 = 0 +18540033 locktype2 = 3 +18540033 locktype3 = 2 +18540034 goalCount = 3 +18540034 goalTotal = 23 +18540035 otherCount = 16 +~~~ +18540036 CURRENTGOAL IS [3] +~~~ +18540070 UP 12 +18540070 2048 255 +18541775 DOWN 12 +18541775 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18541811 homeCount = 44 +18541811 waitCount = 20 +18541812 ripCount = 21 +18541812 locktype1 = 0 +18541813 locktype2 = 3 +18541813 locktype3 = 2 +18541814 goalCount = 3 +18541814 goalTotal = 23 +18541815 otherCount = 16 +~~~ +18541816 CURRENTGOAL IS [3] +~~~ +18546659 UP 3 +18546659 4 255 +18546682 DOWN 3 +18546682 0 255 +~~~ +~~~ +18546687 outer reward +~~~ +18546687 0 262399 +~~~ +~~~ +~~~ +~~~ +18546705 0 262398 +~~~ +~~~ +18546707 0 262396 +~~~ +~~~ +18546708 0 262392 +~~~ +~~~ +18546710 0 262384 +~~~ +~~~ +18546712 0 262368 +~~~ +~~~ +18546714 0 262336 +~~~ +~~~ +18546716 0 262272 +~~~ +~~~ +18546718 0 262144 +~~~ +~~~ +18546720 0 262656 +18546721 homeCount = 44 +18546721 waitCount = 20 +18546722 ripCount = 21 +18546743 locktype1 = 0 +18546743 locktype2 = 3 +18546744 locktype3 = 2 +18546744 goalCount = 4 +18546745 goalTotal = 24 +18546745 otherCount = 16 +~~~ +18546749 4 262656 +18546765 DOWN 3 +18546765 0 262656 +18546772 4 262656 +18547009 DOWN 3 +18547009 0 262656 +18547054 4 262656 +18547137 4 512 +18547322 DOWN 3 +18547322 0 512 +18547332 4 512 +18547439 DOWN 3 +18547439 0 512 +18547461 4 512 +18547566 DOWN 3 +18547566 0 512 +18547594 4 512 +18547707 DOWN 3 +18547707 0 512 +18547728 4 512 +18547850 DOWN 3 +18547850 0 512 +18547867 4 512 +18547995 DOWN 3 +18547995 0 512 +18548006 4 512 +18548140 DOWN 3 +18548140 0 512 +18548148 4 512 +18554299 DOWN 3 +18554299 0 512 +18554342 4 512 +18554410 DOWN 3 +18554410 0 512 +18559726 UP 10 +18559727 waslock = 0 +18559726 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18559752 512 16777728 +~~~ +18559902 512 512 +18559951 DOWN 10 +18559951 0 512 +18559967 UP 10 +18559967 waslock = 0 +18559967 512 512 +~~~ +~~~ +18559990 512 2560 +~~~ +~~~ +18559992 512 2048 +18559993 homeCount = 45 +18559994 waitCount = 20 +18559994 ripCount = 21 +18559995 locktype1 = 0 +18559995 locktype2 = 3 +18559996 locktype3 = 2 +18559996 goalCount = 4 +18559997 goalTotal = 24 +18559997 otherCount = 16 +~~~ +~~~ +18564270 DOWN 10 +18564270 0 2048 +~~~ +~~~ +~~~ +~~~ +18564299 homeCount = 45 +18564299 waitCount = 20 +18564300 ripCount = 21 +18564300 locktype1 = 0 +18564301 locktype2 = 3 +18564301 locktype3 = 2 +18564302 goalCount = 4 +18564302 goalTotal = 24 +18564303 otherCount = 16 +~~~ +18564342 UP 10 +18564343 waslock = 0 +18564342 512 2048 +18564366 DOWN 10 +18564366 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +18564389 homeCount = 45 +18564389 waitCount = 20 +18564390 ripCount = 21 +18564390 locktype1 = 0 +18564391 locktype2 = 3 +18564391 locktype3 = 2 +18564392 goalCount = 4 +18564392 goalTotal = 24 +18564393 otherCount = 16 +~~~ +18567704 UP 12 +18567704 2048 2048 +18569618 DOWN 12 +18569618 0 2048 +18569670 UP 12 +18569670 2048 2048 +18570808 DOWN 12 +18570808 0 2048 +18570818 UP 12 +18570818 2048 2048 +18572697 DOWN 12 +18572697 0 2048 +18572719 UP 12 +18572719 2048 2048 +18576704 CLICK1 +18576704 CLICK2 +~~~ +~~~ +~~~ +18576729 2048 67110912 +~~~ +18576879 2048 2048 +18583757 DOWN 12 +18583757 0 2048 +~~~ +~~~ +18583777 0 0 +~~~ +~~~ +18583779 0 1 +~~~ +~~~ +18583781 0 3 +~~~ +~~~ +18583783 0 7 +~~~ +~~~ +18583785 0 15 +~~~ +~~~ +18583786 0 31 +~~~ +~~~ +18583788 0 63 +~~~ +~~~ +18583790 0 127 +~~~ +~~~ +18583792 0 255 +18583793 homeCount = 45 +18583793 waitCount = 21 +18583794 ripCount = 21 +18583794 locktype1 = 0 +18583815 locktype2 = 3 +18583816 locktype3 = 2 +18583816 goalCount = 4 +18583817 goalTotal = 24 +18583817 otherCount = 16 +~~~ +18583819 CURRENTGOAL IS [3] +~~~ +18587416 UP 3 +18587416 4 255 +~~~ +~~~ +18587438 outer reward +~~~ +18587438 4 262399 +~~~ +~~~ +18587710 DOWN 3 +18587710 0 262399 +~~~ +~~~ +18587736 0 262398 +~~~ +~~~ +18587738 0 262396 +~~~ +~~~ +18587739 0 262392 +~~~ +~~~ +18587741 0 262384 +~~~ +~~~ +18587743 0 262368 +~~~ +~~~ +18587745 0 262336 +~~~ +~~~ +18587747 0 262272 +~~~ +~~~ +18587748 0 262144 +~~~ +~~~ +18587750 0 262656 +18587752 homeCount = 45 +18587752 waitCount = 21 +18587753 ripCount = 21 +18587774 locktype1 = 0 +18587774 locktype2 = 3 +18587775 locktype3 = 2 +18587775 goalCount = 5 +18587776 goalTotal = 25 +18587776 otherCount = 16 +~~~ +18587777 4 262656 +18587888 4 512 +18588129 DOWN 3 +18588129 0 512 +18588142 4 512 +18588388 DOWN 3 +18588388 0 512 +18588399 4 512 +18588514 DOWN 3 +18588514 0 512 +18588530 4 512 +18588647 DOWN 3 +18588647 0 512 +18588665 4 512 +18588781 DOWN 3 +18588781 0 512 +18588798 4 512 +18593276 DOWN 3 +18593276 0 512 +18593288 4 512 +18596652 DOWN 3 +18596652 0 512 +18602809 UP 10 +18602809 waslock = 0 +18602809 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18602835 512 16777728 +~~~ +18602985 512 512 +18606263 DOWN 10 +18606263 0 512 +~~~ +~~~ +18606286 0 2560 +~~~ +~~~ +18606288 0 2048 +18606289 homeCount = 46 +18606290 waitCount = 21 +18606290 ripCount = 21 +18606291 locktype1 = 0 +18606291 locktype2 = 3 +18606292 locktype3 = 2 +18606292 goalCount = 5 +18606293 goalTotal = 25 +18606293 otherCount = 16 +~~~ +18608915 UP 12 +18608915 2048 2048 +18610847 DOWN 12 +18610847 0 2048 +18610865 UP 12 +18610865 2048 2048 +18616415 CLICK1 +18616415 CLICK2 +~~~ +~~~ +~~~ +18616441 2048 67110912 +~~~ +18616590 2048 2048 +18621494 DOWN 12 +18621494 0 2048 +~~~ +~~~ +18621517 0 0 +~~~ +~~~ +18621519 0 1 +~~~ +~~~ +18621521 0 3 +~~~ +~~~ +18621522 0 7 +~~~ +~~~ +18621524 0 15 +~~~ +~~~ +18621526 0 31 +~~~ +~~~ +18621528 0 63 +~~~ +~~~ +18621530 0 127 +~~~ +~~~ +18621532 0 255 +18621533 homeCount = 46 +18621533 waitCount = 22 +18621534 ripCount = 21 +18621534 locktype1 = 0 +18621535 locktype2 = 3 +18621556 locktype3 = 2 +18621556 goalCount = 5 +18621557 goalTotal = 25 +18621557 otherCount = 16 +~~~ +18621558 CURRENTGOAL IS [3] +~~~ +18621560 UP 12 +18621560 2048 255 +18621597 DOWN 12 +18621597 0 255 +18621612 UP 12 +18621612 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18621629 DOWN 12 +18621629 0 255 +~~~ +~~~ +18621631 homeCount = 46 +18621632 waitCount = 22 +18621632 ripCount = 21 +18621633 locktype1 = 0 +18621633 locktype2 = 3 +18621634 locktype3 = 2 +18621634 goalCount = 5 +18621635 goalTotal = 25 +18621635 otherCount = 16 +~~~ +18621657 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18621682 homeCount = 46 +18621682 waitCount = 22 +18621683 ripCount = 21 +18621683 locktype1 = 0 +18621684 locktype2 = 3 +18621684 locktype3 = 2 +18621685 goalCount = 5 +18621685 goalTotal = 25 +18621686 otherCount = 16 +~~~ +18621687 CURRENTGOAL IS [3] +~~~ +18624994 UP 3 +18624994 4 255 +~~~ +~~~ +18625017 outer reward +~~~ +18625018 4 262399 +~~~ +~~~ +18625215 DOWN 3 +18625215 0 262399 +~~~ +~~~ +18625239 0 262398 +~~~ +~~~ +18625241 0 262396 +~~~ +~~~ +18625243 0 262392 +~~~ +~~~ +18625244 0 262384 +~~~ +~~~ +18625246 0 262368 +~~~ +~~~ +18625248 0 262336 +~~~ +~~~ +18625250 0 262272 +~~~ +~~~ +18625252 0 262144 +~~~ +~~~ +18625254 0 262656 +18625255 homeCount = 46 +18625255 waitCount = 22 +18625256 ripCount = 21 +18625277 locktype1 = 0 +18625277 locktype2 = 3 +18625278 locktype3 = 2 +18625278 goalCount = 6 +18625279 goalTotal = 26 +18625279 otherCount = 16 +~~~ +18625280 4 262656 +18625467 4 512 +18625771 DOWN 3 +18625771 0 512 +18625792 4 512 +18625894 DOWN 3 +18625894 0 512 +18625916 4 512 +18626018 DOWN 3 +18626018 0 512 +18626045 4 512 +18626149 DOWN 3 +18626149 0 512 +18626175 4 512 +18626293 DOWN 3 +18626293 0 512 +18626309 4 512 +18626446 DOWN 3 +18626446 0 512 +18626455 4 512 +18626598 DOWN 3 +18626598 0 512 +18626604 4 512 +18628358 DOWN 3 +18628358 0 512 +18628374 4 512 +18633219 DOWN 3 +18633219 0 512 +18633229 4 512 +18633558 DOWN 3 +18633558 0 512 +18640894 UP 10 +18640895 waslock = 0 +18640894 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18640921 512 16777728 +~~~ +18641071 512 512 +18641125 DOWN 10 +18641125 0 512 +~~~ +~~~ +18641147 0 1536 +~~~ +~~~ +18641149 0 1024 +18641150 homeCount = 47 +18641151 waitCount = 22 +18641151 ripCount = 21 +18641152 locktype1 = 0 +18641152 locktype2 = 3 +18641152 locktype3 = 2 +18641153 goalCount = 6 +18641153 goalTotal = 26 +18641154 otherCount = 16 +~~~ +18641175 UP 10 +18641175 waslock = 0 +18641175 512 1024 +~~~ +18644766 DOWN 10 +18644766 0 1024 +~~~ +~~~ +~~~ +~~~ +18644789 homeCount = 47 +18644790 waitCount = 22 +18644790 ripCount = 21 +18644791 locktype1 = 0 +18644791 locktype2 = 3 +18644792 locktype3 = 2 +18644792 goalCount = 6 +18644793 goalTotal = 26 +18644793 otherCount = 16 +~~~ +18644817 UP 10 +18644817 waslock = 0 +18644817 512 1024 +~~~ +18644873 DOWN 10 +18644873 0 1024 +~~~ +~~~ +~~~ +~~~ +18644899 homeCount = 47 +18644900 waitCount = 22 +18644900 ripCount = 21 +18644901 locktype1 = 0 +18644901 locktype2 = 3 +18644902 locktype3 = 2 +18644902 goalCount = 6 +18644903 goalTotal = 26 +18644903 otherCount = 16 +~~~ +18647367 UP 11 +18647367 1024 1024 +18647805 DOWN 11 +18647805 0 1024 +18647964 UP 11 +18647964 1024 1024 +18648007 DOWN 11 +18648007 0 1024 +18648039 UP 11 +18648039 1024 1024 +18649073 DOWN 11 +18649073 0 1024 +18649104 UP 11 +18649104 1024 1024 +18650368 BEEP1 +18650368 BEEP2 +~~~ +~~~ +~~~ +18650388 1024 33555456 +~~~ +18650538 1024 1024 +18658120 DOWN 11 +18658120 0 1024 +~~~ +~~~ +18658145 0 0 +~~~ +~~~ +18658147 0 1 +~~~ +~~~ +18658149 0 3 +~~~ +~~~ +18658150 0 7 +~~~ +~~~ +18658152 0 15 +~~~ +~~~ +18658154 0 31 +~~~ +18658155 UP 11 +18658155 1024 31 +~~~ +~~~ +18658157 1024 63 +~~~ +~~~ +18658159 1024 127 +~~~ +18658160 1024 255 +18658161 homeCount = 47 +18658162 waitCount = 22 +18658183 ripCount = 22 +18658183 locktype1 = 0 +18658184 locktype2 = 3 +18658184 locktype3 = 2 +18658185 goalCount = 6 +18658185 goalTotal = 26 +18658186 otherCount = 16 +~~~ +18658187 CURRENTGOAL IS [3] +~~~ +18658213 DOWN 11 +18658213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +18658239 UP 11 +18658239 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18658251 DOWN 11 +18658250 0 255 +18658252 homeCount = 47 +18658252 waitCount = 22 +18658253 ripCount = 22 +18658253 locktype1 = 0 +18658254 locktype2 = 3 +18658254 locktype3 = 2 +18658255 goalCount = 6 +18658255 goalTotal = 26 +18658256 otherCount = 16 +~~~ +18658278 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18658306 homeCount = 47 +18658307 waitCount = 22 +18658307 ripCount = 22 +18658308 locktype1 = 0 +18658308 locktype2 = 3 +18658309 locktype3 = 2 +18658309 goalCount = 6 +18658310 goalTotal = 26 +18658310 otherCount = 16 +~~~ +18658311 CURRENTGOAL IS [3] +~~~ +18658333 UP 11 +18658332 1024 255 +18660179 DOWN 11 +18660179 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18660213 homeCount = 47 +18660214 waitCount = 22 +18660214 ripCount = 22 +18660215 locktype1 = 0 +18660215 locktype2 = 3 +18660216 locktype3 = 2 +18660216 goalCount = 6 +18660217 goalTotal = 26 +18660217 otherCount = 16 +~~~ +18660218 CURRENTGOAL IS [3] +~~~ +18669161 UP 4 +18669161 8 255 +~~~ +~~~ +18669847 DOWN 4 +18669847 0 255 +~~~ +~~~ +18669867 0 254 +~~~ +~~~ +18669869 0 252 +~~~ +~~~ +18669871 0 248 +~~~ +~~~ +18669873 0 240 +~~~ +~~~ +18669874 0 224 +~~~ +~~~ +18669876 0 192 +~~~ +~~~ +18669878 0 128 +~~~ +~~~ +18669880 0 0 +~~~ +~~~ +18669882 0 512 +18669883 homeCount = 47 +18669883 waitCount = 22 +18669884 ripCount = 22 +18669884 locktype1 = 0 +18669906 locktype2 = 3 +18669906 locktype3 = 2 +18669907 goalCount = 6 +18669907 goalTotal = 26 +18669907 otherCount = 17 +~~~ +18675216 UP 10 +18675217 waslock = 0 +18675216 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18675244 512 16777728 +~~~ +18675394 512 512 +18675464 DOWN 10 +18675464 0 512 +~~~ +~~~ +18675487 0 1536 +~~~ +~~~ +18675489 0 1024 +18675490 homeCount = 48 +18675491 waitCount = 22 +18675491 ripCount = 22 +18675492 locktype1 = 0 +18675492 locktype2 = 3 +18675493 locktype3 = 2 +18675493 goalCount = 6 +18675494 goalTotal = 26 +18675494 otherCount = 17 +~~~ +18675516 UP 10 +18675516 waslock = 0 +18675516 512 1024 +~~~ +18678929 DOWN 10 +18678929 0 1024 +~~~ +~~~ +~~~ +~~~ +18678952 homeCount = 48 +18678953 waitCount = 22 +18678953 ripCount = 22 +18678954 locktype1 = 0 +18678954 locktype2 = 3 +18678955 locktype3 = 2 +18678955 goalCount = 6 +18678956 goalTotal = 26 +18678956 otherCount = 17 +~~~ +18680811 UP 11 +18680810 1024 1024 +18683346 DOWN 11 +18683346 0 1024 +18683354 UP 11 +18683354 1024 1024 +18683811 BEEP1 +18683811 BEEP2 +~~~ +~~~ +~~~ +18683831 1024 33555456 +~~~ +18683981 1024 1024 +18690848 DOWN 11 +18690848 0 1024 +~~~ +~~~ +18690870 0 0 +~~~ +~~~ +18690872 0 1 +~~~ +~~~ +18690874 0 3 +~~~ +~~~ +18690876 0 7 +~~~ +~~~ +18690878 0 15 +~~~ +~~~ +18690879 0 31 +~~~ +~~~ +18690881 0 63 +~~~ +~~~ +18690883 0 127 +~~~ +~~~ +18690885 0 255 +18690886 homeCount = 48 +18690886 waitCount = 22 +18690887 ripCount = 23 +18690888 locktype1 = 0 +18690888 locktype2 = 3 +18690909 locktype3 = 2 +18690909 goalCount = 6 +18690910 goalTotal = 26 +18690910 otherCount = 17 +~~~ +18690911 CURRENTGOAL IS [3] +~~~ +18690912 UP 11 +18690912 1024 255 +18690951 DOWN 11 +18690951 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18690988 homeCount = 48 +18690989 waitCount = 22 +18690989 ripCount = 23 +18690990 locktype1 = 0 +18690990 locktype2 = 3 +18690991 locktype3 = 2 +18690991 goalCount = 6 +18690992 goalTotal = 26 +18690992 otherCount = 17 +~~~ +18690993 CURRENTGOAL IS [3] +~~~ +18691033 UP 11 +18691033 1024 255 +18693082 DOWN 11 +18693082 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18693117 homeCount = 48 +18693118 waitCount = 22 +18693118 ripCount = 23 +18693119 locktype1 = 0 +18693119 locktype2 = 3 +18693120 locktype3 = 2 +18693120 goalCount = 6 +18693121 goalTotal = 26 +18693121 otherCount = 17 +~~~ +18693123 CURRENTGOAL IS [3] +~~~ +18698599 UP 2 +18698599 2 255 +~~~ +~~~ +18699845 DOWN 2 +18699845 0 255 +~~~ +~~~ +18699870 0 254 +~~~ +~~~ +18699872 0 252 +~~~ +~~~ +18699874 0 248 +~~~ +~~~ +18699876 0 240 +~~~ +~~~ +18699877 0 224 +~~~ +~~~ +18699879 0 192 +~~~ +~~~ +18699881 0 128 +~~~ +~~~ +18699883 0 0 +~~~ +~~~ +18699885 0 512 +18699886 homeCount = 48 +18699886 waitCount = 22 +18699887 ripCount = 23 +18699887 locktype1 = 0 +18699908 locktype2 = 3 +18699908 locktype3 = 2 +18699909 goalCount = 6 +18699909 goalTotal = 26 +18699910 otherCount = 18 +~~~ +18699963 2 512 +18700182 DOWN 2 +18700182 0 512 +18700384 2 512 +18700951 DOWN 2 +18700951 0 512 +18704490 UP 10 +18704491 waslock = 0 +18704490 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18704517 512 16777728 +~~~ +18704667 512 512 +18704708 DOWN 10 +18704708 0 512 +~~~ +~~~ +18704735 0 2560 +~~~ +~~~ +18704737 0 2048 +18704738 homeCount = 49 +18704738 waitCount = 22 +18704739 ripCount = 23 +18704739 locktype1 = 0 +18704740 locktype2 = 3 +18704740 locktype3 = 2 +18704741 goalCount = 6 +18704741 goalTotal = 26 +18704741 otherCount = 18 +~~~ +18704814 UP 10 +18704814 waslock = 0 +18704814 512 2048 +~~~ +18710733 DOWN 10 +18710733 0 2048 +18710750 UP 10 +18710750 waslock = 0 +18710750 512 2048 +~~~ +~~~ +~~~ +~~~ +18710758 homeCount = 49 +18710759 waitCount = 22 +18710759 ripCount = 23 +18710760 locktype1 = 0 +18710760 locktype2 = 3 +18710761 locktype3 = 2 +18710761 goalCount = 6 +18710762 goalTotal = 26 +18710762 otherCount = 18 +~~~ +~~~ +18710824 DOWN 10 +18710824 0 2048 +~~~ +~~~ +~~~ +~~~ +18710848 homeCount = 49 +18710848 waitCount = 22 +18710849 ripCount = 23 +18710849 locktype1 = 0 +18710850 locktype2 = 3 +18710850 locktype3 = 2 +18710851 goalCount = 6 +18710851 goalTotal = 26 +18710852 otherCount = 18 +~~~ +18712891 UP 12 +18712891 2048 2048 +18714448 DOWN 12 +18714448 0 2048 +18714495 UP 12 +18714495 2048 2048 +18719953 DOWN 12 +18719953 0 2048 +18719966 UP 12 +18719966 2048 2048 +18721892 CLICK1 +18721892 CLICK2 +~~~ +~~~ +~~~ +18721916 2048 67110912 +~~~ +18722066 2048 2048 +18727895 DOWN 12 +18727895 0 2048 +~~~ +~~~ +18727917 0 0 +~~~ +~~~ +18727919 0 1 +~~~ +~~~ +18727921 0 3 +~~~ +~~~ +18727923 0 7 +~~~ +~~~ +18727925 0 15 +~~~ +~~~ +18727926 0 31 +~~~ +~~~ +18727928 0 63 +~~~ +~~~ +18727930 0 127 +~~~ +~~~ +18727932 0 255 +18727933 homeCount = 49 +18727933 waitCount = 23 +18727934 ripCount = 23 +18727934 locktype1 = 0 +18727935 locktype2 = 3 +18727956 locktype3 = 2 +18727956 goalCount = 6 +18727957 goalTotal = 26 +18727957 otherCount = 18 +~~~ +18727958 CURRENTGOAL IS [3] +~~~ +18727959 UP 12 +18727959 2048 255 +18727992 DOWN 12 +18727992 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18728034 homeCount = 49 +18728035 waitCount = 23 +18728035 ripCount = 23 +18728036 locktype1 = 0 +18728036 locktype2 = 3 +18728037 locktype3 = 2 +18728037 goalCount = 6 +18728038 goalTotal = 26 +18728038 otherCount = 18 +~~~ +18728039 CURRENTGOAL IS [3] +~~~ +18755525 UP 10 +18755525 waslock = 0 +18755525 512 255 +~~~ +18755550 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18755557 512 254 +~~~ +~~~ +18755559 512 252 +~~~ +~~~ +18755561 512 248 +~~~ +~~~ +18755563 512 240 +~~~ +~~~ +18755565 512 224 +~~~ +~~~ +18755566 512 192 +~~~ +~~~ +18755568 512 128 +~~~ +~~~ +18755570 512 0 +~~~ +~~~ +~~~ +18755790 0 0 +18755827 512 0 +18756881 0 0 +18756920 512 0 +18756992 0 0 +18757067 512 0 +18757128 0 0 +18757165 512 0 +18757749 0 0 +18757778 512 0 +18757848 0 0 +18779443 UP 2 +18779443 2 0 +18779457 DOWN 2 +18779457 0 0 +18779539 2 0 +18779749 DOWN 2 +18779749 0 0 +18780550 LOCKEND +~~~ +~~~ +~~~ +18780570 0 512 +18787322 UP 10 +18787322 waslock = 0 +18787322 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18787355 512 16777728 +~~~ +18787505 512 512 +18787570 DOWN 10 +18787570 0 512 +~~~ +~~~ +18787590 0 2560 +~~~ +~~~ +18787592 0 2048 +18787593 homeCount = 50 +18787593 waitCount = 23 +18787594 ripCount = 23 +18787594 locktype1 = 0 +18787595 locktype2 = 4 +18787595 locktype3 = 2 +18787596 goalCount = 6 +18787596 goalTotal = 26 +18787597 otherCount = 18 +~~~ +18787721 UP 10 +18787721 waslock = 0 +18787721 512 2048 +~~~ +18788131 DOWN 10 +18788130 0 2048 +~~~ +~~~ +~~~ +~~~ +18788152 homeCount = 50 +18788153 waitCount = 23 +18788153 ripCount = 23 +18788154 locktype1 = 0 +18788155 locktype2 = 4 +18788155 locktype3 = 2 +18788156 goalCount = 6 +18788156 goalTotal = 26 +18788156 otherCount = 18 +~~~ +18788200 UP 10 +18788200 waslock = 0 +18788200 512 2048 +~~~ +18788239 DOWN 10 +18788239 0 2048 +~~~ +~~~ +~~~ +~~~ +18788265 homeCount = 50 +18788265 waitCount = 23 +18788266 ripCount = 23 +18788266 locktype1 = 0 +18788267 locktype2 = 4 +18788267 locktype3 = 2 +18788268 goalCount = 6 +18788268 goalTotal = 26 +18788269 otherCount = 18 +~~~ +18788360 UP 10 +18788360 waslock = 0 +18788360 512 2048 +~~~ +18788394 DOWN 10 +18788394 0 2048 +~~~ +~~~ +~~~ +~~~ +18788420 homeCount = 50 +18788420 waitCount = 23 +18788421 ripCount = 23 +18788421 locktype1 = 0 +18788422 locktype2 = 4 +18788422 locktype3 = 2 +18788423 goalCount = 6 +18788423 goalTotal = 26 +18788424 otherCount = 18 +~~~ +18788497 UP 10 +18788497 waslock = 0 +18788497 512 2048 +~~~ +18792370 DOWN 10 +18792370 0 2048 +~~~ +~~~ +~~~ +~~~ +18792392 homeCount = 50 +18792393 waitCount = 23 +18792393 ripCount = 23 +18792394 locktype1 = 0 +18792394 locktype2 = 4 +18792395 locktype3 = 2 +18792395 goalCount = 6 +18792396 goalTotal = 26 +18792396 otherCount = 18 +~~~ +18794314 UP 12 +18794314 2048 2048 +18798314 CLICK1 +18798314 CLICK2 +~~~ +~~~ +~~~ +18798335 2048 67110912 +~~~ +18798485 2048 2048 +18798830 DOWN 12 +18798830 0 2048 +~~~ +~~~ +18798852 0 0 +~~~ +~~~ +18798854 0 1 +~~~ +~~~ +18798856 0 3 +~~~ +~~~ +18798858 0 7 +~~~ +~~~ +18798860 0 15 +~~~ +~~~ +18798861 0 31 +~~~ +~~~ +18798863 0 63 +~~~ +~~~ +18798865 0 127 +~~~ +~~~ +18798867 0 255 +18798868 homeCount = 50 +18798868 waitCount = 24 +18798869 ripCount = 23 +18798869 locktype1 = 0 +18798870 locktype2 = 4 +18798891 locktype3 = 2 +18798891 goalCount = 6 +18798892 goalTotal = 26 +18798892 otherCount = 18 +~~~ +18798893 CURRENTGOAL IS [3] +~~~ +18799141 UP 12 +18799141 2048 255 +18805238 DOWN 12 +18805238 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18805280 homeCount = 50 +18805281 waitCount = 24 +18805281 ripCount = 23 +18805282 locktype1 = 0 +18805282 locktype2 = 4 +18805283 locktype3 = 2 +18805283 goalCount = 6 +18805284 goalTotal = 26 +18805284 otherCount = 18 +~~~ +18805285 CURRENTGOAL IS [3] +~~~ +18816138 UP 3 +18816138 4 255 +~~~ +~~~ +18816163 outer reward +~~~ +18816164 4 262399 +~~~ +~~~ +18816446 DOWN 3 +18816446 0 262399 +~~~ +~~~ +18816472 0 262398 +~~~ +~~~ +18816474 0 262396 +~~~ +~~~ +18816476 0 262392 +~~~ +~~~ +18816477 0 262384 +~~~ +~~~ +18816479 0 262368 +~~~ +~~~ +18816481 0 262336 +~~~ +~~~ +18816483 0 262272 +~~~ +~~~ +18816485 0 262144 +~~~ +~~~ +18816487 0 262656 +18816488 homeCount = 50 +18816488 waitCount = 24 +18816489 ripCount = 23 +18816510 locktype1 = 0 +18816510 locktype2 = 4 +18816511 locktype3 = 2 +18816511 goalCount = 7 +18816512 goalTotal = 27 +18816512 otherCount = 18 +~~~ +18816513 4 262656 +18816613 4 512 +18816865 DOWN 3 +18816865 0 512 +18816894 4 512 +18816982 DOWN 3 +18816982 0 512 +18817017 4 512 +18817107 DOWN 3 +18817107 0 512 +18817140 4 512 +18817244 DOWN 3 +18817244 0 512 +18817270 4 512 +18817376 DOWN 3 +18817376 0 512 +18817404 4 512 +18817518 DOWN 3 +18817518 0 512 +18817544 4 512 +18817665 DOWN 3 +18817665 0 512 +18817685 4 512 +18817810 DOWN 3 +18817810 0 512 +18817828 4 512 +18817959 DOWN 3 +18817959 0 512 +18817972 4 512 +18818112 DOWN 3 +18818112 0 512 +18818118 4 512 +18824909 DOWN 3 +18824909 0 512 +18824934 4 512 +18825030 DOWN 3 +18825030 0 512 +18825078 4 512 +18825125 DOWN 3 +18825125 0 512 +18830803 UP 10 +18830803 waslock = 0 +18830803 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18830828 512 16777728 +~~~ +18830978 512 512 +18831044 DOWN 10 +18831044 0 512 +~~~ +~~~ +18831064 0 1536 +~~~ +~~~ +18831066 0 1024 +18831067 homeCount = 51 +18831068 waitCount = 24 +18831068 ripCount = 23 +18831069 locktype1 = 0 +18831069 locktype2 = 4 +18831070 locktype3 = 2 +18831070 goalCount = 7 +18831071 goalTotal = 27 +18831071 otherCount = 18 +~~~ +18831092 UP 10 +18831093 waslock = 0 +18831092 512 1024 +~~~ +18838139 DOWN 10 +18838139 0 1024 +~~~ +~~~ +~~~ +~~~ +18838168 homeCount = 51 +18838169 waitCount = 24 +18838169 ripCount = 23 +18838170 locktype1 = 0 +18838170 locktype2 = 4 +18838171 locktype3 = 2 +18838171 goalCount = 7 +18838172 goalTotal = 27 +18838172 otherCount = 18 +~~~ +18840028 UP 11 +18840028 1024 1024 +18843430 DOWN 11 +18843430 0 1024 +18843441 UP 11 +18843441 1024 1024 +18844015 DOWN 11 +18844015 0 1024 +18844035 UP 11 +18844035 1024 1024 +18844730 DOWN 11 +18844730 0 1024 +18844737 UP 11 +18844737 1024 1024 +18844739 DOWN 11 +18844739 0 1024 +18844762 UP 11 +18844762 1024 1024 +18846028 BEEP1 +18846028 BEEP2 +~~~ +~~~ +~~~ +18846047 1024 33555456 +~~~ +18846197 1024 1024 +18851283 DOWN 11 +18851283 0 1024 +~~~ +~~~ +18851304 0 0 +~~~ +18851305 UP 11 +18851305 1024 0 +~~~ +~~~ +18851307 1024 1 +~~~ +~~~ +18851308 1024 3 +~~~ +~~~ +18851310 1024 7 +~~~ +18851311 1024 15 +~~~ +~~~ +18851313 1024 31 +~~~ +~~~ +18851314 1024 63 +~~~ +~~~ +18851316 1024 127 +~~~ +~~~ +18851318 1024 255 +18851319 homeCount = 51 +18851340 waitCount = 24 +18851341 ripCount = 24 +18851341 locktype1 = 0 +18851342 locktype2 = 4 +18851342 locktype3 = 2 +18851342 goalCount = 7 +18851343 goalTotal = 27 +18851343 otherCount = 18 +~~~ +18851345 CURRENTGOAL IS [3] +~~~ +18851424 DOWN 11 +18851424 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851453 UP 11 +18851453 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851460 homeCount = 51 +18851460 waitCount = 24 +18851461 ripCount = 24 +18851461 locktype1 = 0 +18851462 locktype2 = 4 +18851462 locktype3 = 2 +18851463 goalCount = 7 +18851463 goalTotal = 27 +18851464 otherCount = 18 +~~~ +18851465 CURRENTGOAL IS [3] +~~~ +18851571 DOWN 11 +18851571 0 255 +18851591 UP 11 +18851591 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851623 homeCount = 51 +18851624 waitCount = 24 +18851624 ripCount = 24 +18851625 locktype1 = 0 +18851625 locktype2 = 4 +18851626 locktype3 = 2 +18851626 goalCount = 7 +18851627 goalTotal = 27 +18851627 otherCount = 18 +~~~ +18851628 CURRENTGOAL IS [3] +~~~ +18854817 DOWN 11 +18854817 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18854855 homeCount = 51 +18854856 waitCount = 24 +18854856 ripCount = 24 +18854857 locktype1 = 0 +18854857 locktype2 = 4 +18854858 locktype3 = 2 +18854858 goalCount = 7 +18854859 goalTotal = 27 +18854859 otherCount = 18 +~~~ +18854860 CURRENTGOAL IS [3] +~~~ +18859075 UP 7 +18859075 64 255 +~~~ +~~~ +18860364 DOWN 7 +18860364 0 255 +~~~ +~~~ +18860388 0 254 +~~~ +~~~ +18860390 0 252 +~~~ +~~~ +18860392 0 248 +~~~ +~~~ +18860394 0 240 +~~~ +~~~ +18860396 0 224 +~~~ +~~~ +18860397 0 192 +~~~ +~~~ +18860399 0 128 +~~~ +~~~ +18860401 0 0 +~~~ +~~~ +18860403 0 512 +18860404 homeCount = 51 +18860404 waitCount = 24 +18860405 ripCount = 24 +18860405 locktype1 = 0 +18860426 locktype2 = 4 +18860426 locktype3 = 2 +18860427 goalCount = 7 +18860427 goalTotal = 27 +18860428 otherCount = 19 +~~~ +18866353 UP 10 +18866353 waslock = 0 +18866353 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18866384 512 16777728 +~~~ +18866534 512 512 +18866683 DOWN 10 +18866683 0 512 +18866707 UP 10 +18866707 waslock = 0 +18866707 512 512 +~~~ +~~~ +18866712 512 1536 +~~~ +~~~ +18866713 512 1024 +18866715 homeCount = 52 +18866715 waitCount = 24 +18866716 ripCount = 24 +18866716 locktype1 = 0 +18866716 locktype2 = 4 +18866717 locktype3 = 2 +18866717 goalCount = 7 +18866718 goalTotal = 27 +18866718 otherCount = 19 +~~~ +~~~ +18872118 DOWN 10 +18872118 0 1024 +18872136 UP 10 +18872136 waslock = 0 +18872136 512 1024 +~~~ +~~~ +~~~ +~~~ +18872142 homeCount = 52 +18872143 waitCount = 24 +18872143 ripCount = 24 +18872144 locktype1 = 0 +18872144 locktype2 = 4 +18872145 locktype3 = 2 +18872145 goalCount = 7 +18872146 goalTotal = 27 +18872146 otherCount = 19 +~~~ +~~~ +18872215 DOWN 10 +18872215 0 1024 +~~~ +~~~ +~~~ +~~~ +18872244 homeCount = 52 +18872245 waitCount = 24 +18872245 ripCount = 24 +18872246 locktype1 = 0 +18872246 locktype2 = 4 +18872247 locktype3 = 2 +18872247 goalCount = 7 +18872248 goalTotal = 27 +18872248 otherCount = 19 +~~~ +18876242 UP 11 +18876242 1024 1024 +18880510 DOWN 11 +18880510 0 1024 +18880546 UP 11 +18880546 1024 1024 +18883742 BEEP1 +18883742 BEEP2 +~~~ +~~~ +~~~ +18883760 1024 33555456 +~~~ +18883910 1024 1024 +18890371 DOWN 11 +18890371 0 1024 +~~~ +~~~ +18890388 0 0 +~~~ +~~~ +18890390 0 1 +~~~ +~~~ +18890392 0 3 +~~~ +~~~ +18890394 0 7 +~~~ +~~~ +18890396 0 15 +~~~ +~~~ +18890397 0 31 +~~~ +~~~ +18890399 0 63 +~~~ +~~~ +18890401 0 127 +~~~ +~~~ +18890403 0 255 +18890404 homeCount = 52 +18890404 waitCount = 24 +18890405 ripCount = 25 +18890405 locktype1 = 0 +18890427 locktype2 = 4 +18890427 locktype3 = 2 +18890428 goalCount = 7 +18890428 goalTotal = 27 +18890429 otherCount = 19 +~~~ +18890430 CURRENTGOAL IS [3] +~~~ +18890451 UP 11 +18890451 1024 255 +18893254 DOWN 11 +18893254 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18893297 homeCount = 52 +18893297 waitCount = 24 +18893298 ripCount = 25 +18893298 locktype1 = 0 +18893299 locktype2 = 4 +18893299 locktype3 = 2 +18893300 goalCount = 7 +18893300 goalTotal = 27 +18893301 otherCount = 19 +~~~ +18893302 CURRENTGOAL IS [3] +~~~ +18900482 UP 3 +18900482 4 255 +~~~ +~~~ +18900502 outer reward +~~~ +18900502 4 262399 +~~~ +~~~ +18900730 DOWN 3 +18900730 0 262399 +~~~ +~~~ +18900753 0 262398 +~~~ +~~~ +18900755 0 262396 +~~~ +~~~ +18900756 0 262392 +~~~ +~~~ +18900758 0 262384 +~~~ +~~~ +18900760 0 262368 +~~~ +~~~ +18900762 0 262336 +~~~ +~~~ +18900764 0 262272 +~~~ +~~~ +18900765 0 262144 +~~~ +~~~ +18900767 0 262656 +18900768 homeCount = 52 +18900769 waitCount = 24 +18900769 ripCount = 25 +18900791 locktype1 = 0 +18900791 locktype2 = 4 +18900792 locktype3 = 2 +18900792 goalCount = 8 +18900793 goalTotal = 28 +18900793 otherCount = 19 +~~~ +18900794 4 262656 +18900903 DOWN 3 +18900903 0 262656 +18900920 4 262656 +18900952 4 512 +18901039 DOWN 3 +18901039 0 512 +18901060 4 512 +18901156 DOWN 3 +18901156 0 512 +18901187 4 512 +18901292 DOWN 3 +18901292 0 512 +18901310 4 512 +18901420 DOWN 3 +18901420 0 512 +18901440 4 512 +18901546 DOWN 3 +18901546 0 512 +18901573 4 512 +18901676 DOWN 3 +18901676 0 512 +18901702 4 512 +18901804 DOWN 3 +18901804 0 512 +18901832 4 512 +18901936 DOWN 3 +18901936 0 512 +18901964 4 512 +18902072 DOWN 3 +18902072 0 512 +18902098 4 512 +18902211 DOWN 3 +18902211 0 512 +18902233 4 512 +18902355 DOWN 3 +18902355 0 512 +18902378 4 512 +18909942 DOWN 3 +18909942 0 512 +18922266 UP 10 +18922267 waslock = 0 +18922266 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18922297 512 16777728 +~~~ +18922447 512 512 +18929052 DOWN 10 +18929052 0 512 +~~~ +~~~ +18929069 0 1536 +~~~ +~~~ +18929071 0 1024 +18929072 homeCount = 53 +18929073 waitCount = 24 +18929073 ripCount = 25 +18929074 locktype1 = 0 +18929074 locktype2 = 4 +18929075 locktype3 = 2 +18929075 goalCount = 8 +18929076 goalTotal = 28 +18929076 otherCount = 19 +~~~ +18929098 UP 10 +18929098 waslock = 0 +18929097 512 1024 +~~~ +18929166 DOWN 10 +18929166 0 1024 +~~~ +~~~ +~~~ +~~~ +18929193 homeCount = 53 +18929194 waitCount = 24 +18929194 ripCount = 25 +18929194 locktype1 = 0 +18929195 locktype2 = 4 +18929195 locktype3 = 2 +18929196 goalCount = 8 +18929196 goalTotal = 28 +18929197 otherCount = 19 +~~~ +18934312 UP 11 +18934312 1024 1024 +18935944 DOWN 11 +18935944 0 1024 +18935995 UP 11 +18935995 1024 1024 +18937812 BEEP1 +18937812 BEEP2 +~~~ +~~~ +~~~ +18937832 1024 33555456 +~~~ +18937982 1024 1024 +18944487 DOWN 11 +18944487 0 1024 +18944496 UP 11 +18944496 1024 1024 +~~~ +~~~ +18944510 1024 0 +~~~ +~~~ +18944512 1024 1 +~~~ +~~~ +18944513 1024 3 +~~~ +~~~ +18944515 1024 7 +~~~ +~~~ +18944517 1024 15 +~~~ +~~~ +18944519 1024 31 +~~~ +~~~ +18944521 1024 63 +~~~ +~~~ +18944523 1024 127 +~~~ +~~~ +18944524 1024 255 +18944525 homeCount = 53 +18944526 waitCount = 24 +18944526 ripCount = 26 +18944548 locktype1 = 0 +18944548 locktype2 = 4 +18944548 locktype3 = 2 +18944549 goalCount = 8 +18944549 goalTotal = 28 +18944550 otherCount = 19 +~~~ +18944551 CURRENTGOAL IS [3] +~~~ +18944560 DOWN 11 +18944560 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18944597 UP 11 +18944597 1024 255 +18944599 homeCount = 53 +18944599 waitCount = 24 +18944600 ripCount = 26 +18944600 locktype1 = 0 +18944601 locktype2 = 4 +18944601 locktype3 = 2 +18944602 goalCount = 8 +18944602 goalTotal = 28 +18944603 otherCount = 19 +~~~ +18944625 CURRENTGOAL IS [3] +~~~ +18947334 DOWN 11 +18947334 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18947369 homeCount = 53 +18947369 waitCount = 24 +18947370 ripCount = 26 +18947370 locktype1 = 0 +18947371 locktype2 = 4 +18947371 locktype3 = 2 +18947372 goalCount = 8 +18947372 goalTotal = 28 +18947373 otherCount = 19 +~~~ +18947374 CURRENTGOAL IS [3] +~~~ +18958627 UP 3 +18958627 4 255 +~~~ +~~~ +18958649 outer reward +~~~ +18958650 4 262399 +~~~ +~~~ +18958918 DOWN 3 +18958918 0 262399 +~~~ +~~~ +18958945 0 262398 +~~~ +~~~ +18958947 0 262396 +~~~ +~~~ +18958948 0 262392 +~~~ +~~~ +18958950 0 262384 +~~~ +~~~ +18958952 0 262368 +~~~ +~~~ +18958954 0 262336 +~~~ +~~~ +18958956 0 262272 +~~~ +~~~ +18958958 0 262144 +~~~ +~~~ +18958959 0 262656 +18958960 homeCount = 53 +18958961 waitCount = 24 +18958961 ripCount = 26 +18958983 locktype1 = 0 +18958983 locktype2 = 4 +18958984 locktype3 = 2 +18958984 goalCount = 9 +18958985 goalTotal = 29 +18958985 otherCount = 19 +~~~ +18958986 4 262656 +18959099 4 512 +18959236 DOWN 3 +18959236 0 512 +18959257 4 512 +18959354 DOWN 3 +18959354 0 512 +18959373 4 512 +18959476 DOWN 3 +18959476 0 512 +18959502 4 512 +18959605 DOWN 3 +18959605 0 512 +18959631 4 512 +18959734 DOWN 3 +18959734 0 512 +18959764 4 512 +18959869 DOWN 3 +18959869 0 512 +18959901 4 512 +18960009 DOWN 3 +18960009 0 512 +18960036 4 512 +18960155 DOWN 3 +18960155 0 512 +18960176 4 512 +18960303 DOWN 3 +18960303 0 512 +18960314 4 512 +18964481 DOWN 3 +18964481 0 512 +18964498 4 512 +18967799 DOWN 3 +18967799 0 512 +18967877 4 512 +18967898 DOWN 3 +18967898 0 512 + + description: Statescript log r2 + task_epochs: 4, +, Statescript3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140181332891728 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +# +#import math +#import struct +#import re +#import time +#import random +#import numpy as np +#import pyaudio +#import wave +#from statistics import mean +## V8pre_forage +## visits to incorrect wells cause 5s lockout +## exception is repeat visit to prior well (is ok, no lockout) +## can go to any outer well, any number of times +## lockout from getting rip/wait wells wrong is also 5s +# +# +## decide what type of up trigger was just recieved; act accordingly +#def pokeIn(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# doHome() +# +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# doOuter(num) +# +## decide what type of down trigger was just recieved; act accordingly +#def pokeOut(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# global lastWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# endHome() +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# endWait() +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# endOuter() +# lastWell = currWell +# +##home poke: decide trial type and upcoming wait length; turn on lights accordingly +#def doHome(): +# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout +# global homePump +# global lastWell +# global currWell +# #global waitdist +# +# if trialtype == 0: +# opts = [1, 2] +# randnum = np.random.randint(0,2) #-1 +# trialtype = opts[randnum] +# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #randnum = np.random.randint(0,8) +# delaytime = chooseDelay() +# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") +# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime +# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC +# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") +# print("SCQTMESSAGE: trigger(1);\n") # deliver reward +# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: +# lockout([2,2]) +# +#def chooseDelay(): +# global trialtype +# global RWcount +# global waitdist +# global startwaitdist +# +# print(RWcount) +# +# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short +# return startwaitdist[RWcount[trialtype-1]] +# +# else: +# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist +# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) +# +# else: +# return int(np.random.choice(waitdist,1)) +# +# +#def endHome(): +# global trialtype +# global lastWell +# global homeWell +# global waitWells +# +# if trialtype == 1 or trialtype == 2: +# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +# +#def click(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# +# #generate_click() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC +# +#def beep(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# #generate_beep() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC +# +#def endWait(): +# global trialtype +# global goalWell +# global currWell +# global outerWells +# +# if trialtype == 3: # wait complete +# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): # turn on outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") +# +# +#def doOuter(val): +# global outerPumps +# global trialtype +# global allGoal +# global thisGoal +# global goalWell +# global outerReps +# global currWell +# global lastWell +# global homeWell +# global numgoals +# global validOuterWells +# global waslock +# +# if trialtype == 3: +# trialtype = 0 # outer satisfied, head home next +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# if currWell in goalWell : # repeated; reward +# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") +# print("SCQTMESSAGE: trigger(2);\n") # deliver reward +# allGoal+=1 +# thisGoal+=1 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC +# +# if thisGoal >= outerReps: #maxed repeats reached, time to switch +# print("time to choose new goalS!") +# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats +# chooseGoal() +# else: +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection +# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection +# print(goalWell) +# +# thisGoal = 0 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# +# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) +# goalWell = [currWell] +# +# else: # wrong well; add to forage record if newly visited +# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC +# +# elif trialtype < 3 and waslock<1: +# lockout([2,2]) +# +#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal +# global goalWell +# global oldGoals +# global numgoals +# global outerWells +# global forageNum +# #global outerReps +# +# oldGoals.append(goalWell) +# print(oldGoals) +# +# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms +# forageNum = 1 +# +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# if len(oldGoals)>7: # if all outers have been goal, reset +# print("resetting oldgoals") +# oldGoals = [None] +# +# while any(i in goalWell for i in oldGoals): #if any common elements +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# print(goalWell) +# +# outerReps = np.random.randint(4,13) +# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# print("new goal is "+str(goalWell)+"\n") +# +#def endOuter(): +# global trialtype +# global outerWells +# global homeWell +# global lastWell +# global currWell +# +# if trialtype == 0 and lastWell != currWell: # outer satisfied +# for num in range(len(outerWells)): # turn off outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +#def lockout(val): # turn off all lights for certain amount of time +# global waitWells +# global outerWells +# global lastWell +# global trialtype +# global waslock +# +# locktype = int(val[1]) +# trialtype = 4 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE +# #turn off all lights +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(waitWells)): #turn off all wait and outer well lights +# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# waslock=1 +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well +# if locktype == 1: +# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well +# if locktype == 2: +# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC +# if locktype == 3: +# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors +# +# +#def lockend(): +# global trialtype +# global homeWell +# +# trialtype = 0 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well +# print("SCQTMESSAGE: trigger(3);\n") +# +#def updateWaslock(val): +# global waslock +# +# waslock = int(val[1]) +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") +# +## Function: generate click sound +#def generate_click(): +# +# File='ZippoClick_short.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +## Function: generate cowbell sound +#def generate_beep(): +# +# File='Beep.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +#def makewhitenoise(): #play white noise for duration of lockout +# global locksoundlength +# +# soundlength = int(44100*locksoundlength/1000) +# p = pyaudio.PyAudio() +# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) +# whitenoise = np.random.randint(700,size = soundlength) +# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) +# stream.write(data) +# stream.close() +# p.terminate() +# +# +## This is the custom callback function. When events occur, addScQtEvent will +## call this function. This function MUST BE NAMED 'callback'!!!! +#def callback(line): +# +# global waslock +# +# if line.find("UP") >= 0: #input triggered +# pokeIn(re.findall(r'\d+',line)) +# if line.find("DOWN") >= 0: #input triggered +# pokeOut(re.findall(r'\d+',line)) +# if line.find("BEEP1") >= 0: # make a beep and deliver reward +# beep() +# if line.find("BEEP2") >= 0: # make a beep and deliver reward +# generate_beep() +# if line.find("CLICK1") >= 0: # make a click and deliver reward +# click() +# if line.find("CLICK2") >= 0: # make a click and deliver reward +# generate_click() +# if line.find("LOCKOUT") >= 0: # lockout procedure +# lockout(re.findall(r'\d+',line)) +# if line.find("LOCKEND") >= 0: # reset trialtype to 0 +# lockend() +# if line.find("WHITENOISE") >= 0: # make noise during lockout +# makewhitenoise() +# if line.find("waslock") >= 0: #update waslock value +# updateWaslock(re.findall(r'\d+',line)) +# +# +## define wells +#homeWell = 10 +#waitWells = [11,12] +#outerWells = [1,2,3,4,5,6,7,8] +##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num +## define pumps +#homePump = 25 +#waitPumps = [26, 27] +#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] +# +##global variables +#lastWell = -1 +#currWell = -1 +#trialtype = 0 +#outerReps = 10 +##outerReps = np.random.randint(4,13) #10 +#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# +#allGoal = 0 +#thisGoal = 0 +#numgoals = 1 # number of outer arms rewarded +#forageNum = 1 +#if numgoals == 1: +# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells +#else: +# goalWell = np.random.choice(outerWells,numgoals,replace=False) +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) +# +#oldGoals = [] #initialize with any wells to exclude from being goal +##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] +#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] +# +#startwaitdist = [1000, 1500, 2000] +# +#locksoundlength = 1000 +#print(goalWell) +#waslock=0 +#RWcount = [0,0 +# +24056604 UP 10 +24056604 waslock = 0 +24056604 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24056628 512 16777728 +~~~ +24056778 512 512 +24056821 DOWN 10 +24056821 0 512 +~~~ +~~~ +24056843 0 1536 +~~~ +~~~ +24056845 0 1024 +24056846 homeCount = 1 +24056846 waitCount = 0 +24056847 ripCount = 0 +24056847 locktype1 = 0 +24056848 locktype2 = 0 +24056848 locktype3 = 0 +24056849 goalCount = 0 +24056849 goalTotal = 0 +24056850 otherCount = 0 +~~~ +24057124 UP 10 +24057124 waslock = 0 +24057124 512 1024 +24057128 DOWN 10 +24057128 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057147 homeCount = 1 +24057147 waitCount = 0 +24057148 ripCount = 0 +24057148 locktype1 = 0 +24057149 locktype2 = 0 +24057149 locktype3 = 0 +24057150 goalCount = 0 +24057150 goalTotal = 0 +24057151 otherCount = 0 +~~~ +24057247 UP 10 +24057247 waslock = 0 +24057247 512 1024 +24057257 DOWN 10 +24057256 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057278 homeCount = 1 +24057279 waitCount = 0 +24057280 ripCount = 0 +24057280 locktype1 = 0 +24057281 locktype2 = 0 +24057281 locktype3 = 0 +24057281 goalCount = 0 +24057282 goalTotal = 0 +24057282 otherCount = 0 +~~~ +24057380 UP 10 +24057380 waslock = 0 +24057379 512 1024 +24057390 DOWN 10 +24057390 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057406 homeCount = 1 +24057407 waitCount = 0 +24057407 ripCount = 0 +24057408 locktype1 = 0 +24057408 locktype2 = 0 +24057409 locktype3 = 0 +24057409 goalCount = 0 +24057410 goalTotal = 0 +24057410 otherCount = 0 +~~~ +24057508 UP 10 +24057508 waslock = 0 +24057508 512 1024 +24057525 DOWN 10 +24057525 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057549 homeCount = 1 +24057549 waitCount = 0 +24057550 ripCount = 0 +24057550 locktype1 = 0 +24057551 locktype2 = 0 +24057551 locktype3 = 0 +24057552 goalCount = 0 +24057552 goalTotal = 0 +24057553 otherCount = 0 +~~~ +24057634 UP 10 +24057634 waslock = 0 +24057634 512 1024 +~~~ +24057659 DOWN 10 +24057659 0 1024 +~~~ +~~~ +~~~ +~~~ +24057678 homeCount = 1 +24057679 waitCount = 0 +24057679 ripCount = 0 +24057680 locktype1 = 0 +24057680 locktype2 = 0 +24057681 locktype3 = 0 +24057681 goalCount = 0 +24057682 goalTotal = 0 +24057682 otherCount = 0 +~~~ +24057752 UP 10 +24057752 waslock = 0 +24057752 512 1024 +~~~ +24057792 DOWN 10 +24057792 0 1024 +~~~ +~~~ +~~~ +~~~ +24057817 homeCount = 1 +24057818 waitCount = 0 +24057818 ripCount = 0 +24057819 locktype1 = 0 +24057819 locktype2 = 0 +24057820 locktype3 = 0 +24057820 goalCount = 0 +24057821 goalTotal = 0 +24057821 otherCount = 0 +~~~ +24057884 UP 10 +24057884 waslock = 0 +24057884 512 1024 +~~~ +24057931 DOWN 10 +24057931 0 1024 +~~~ +~~~ +~~~ +~~~ +24057955 homeCount = 1 +24057956 waitCount = 0 +24057956 ripCount = 0 +24057957 locktype1 = 0 +24057957 locktype2 = 0 +24057958 locktype3 = 0 +24057958 goalCount = 0 +24057959 goalTotal = 0 +24057959 otherCount = 0 +~~~ +24058025 UP 10 +24058025 waslock = 0 +24058025 512 1024 +~~~ +24058092 DOWN 10 +24058092 0 1024 +~~~ +~~~ +~~~ +~~~ +24058115 homeCount = 1 +24058115 waitCount = 0 +24058116 ripCount = 0 +24058116 locktype1 = 0 +24058117 locktype2 = 0 +24058117 locktype3 = 0 +24058118 goalCount = 0 +24058118 goalTotal = 0 +24058119 otherCount = 0 +~~~ +24058171 UP 10 +24058172 waslock = 0 +24058171 512 1024 +~~~ +24058243 DOWN 10 +24058243 0 1024 +24058250 UP 10 +24058251 waslock = 0 +24058250 512 1024 +24058271 DOWN 10 +24058271 0 1024 +~~~ +~~~ +~~~ +~~~ +24058277 homeCount = 1 +24058278 waitCount = 0 +24058278 ripCount = 0 +24058279 locktype1 = 0 +24058279 locktype2 = 0 +24058280 locktype3 = 0 +24058280 goalCount = 0 +24058281 goalTotal = 0 +24058281 otherCount = 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24058307 homeCount = 1 +24058307 waitCount = 0 +24058308 ripCount = 0 +24058308 locktype1 = 0 +24058309 locktype2 = 0 +24058309 locktype3 = 0 +24058310 goalCount = 0 +24058310 goalTotal = 0 +24058311 otherCount = 0 +~~~ +24058325 UP 10 +24058325 waslock = 0 +24058325 512 1024 +~~~ +24058429 DOWN 10 +24058429 0 1024 +24058443 UP 10 +24058443 waslock = 0 +24058443 512 1024 +~~~ +~~~ +~~~ +~~~ +24058462 homeCount = 1 +24058463 waitCount = 0 +24058463 ripCount = 0 +24058464 locktype1 = 0 +24058464 locktype2 = 0 +24058465 locktype3 = 0 +24058465 goalCount = 0 +24058466 goalTotal = 0 +24058466 otherCount = 0 +~~~ +~~~ +24058585 DOWN 10 +24058585 0 1024 +24058597 UP 10 +24058597 waslock = 0 +24058597 512 1024 +~~~ +~~~ +~~~ +~~~ +24058624 homeCount = 1 +24058625 waitCount = 0 +24058625 ripCount = 0 +24058626 locktype1 = 0 +24058626 locktype2 = 0 +24058627 locktype3 = 0 +24058627 goalCount = 0 +24058628 goalTotal = 0 +24058628 otherCount = 0 +~~~ +~~~ +24058732 DOWN 10 +24058732 0 1024 +24058752 UP 10 +24058752 waslock = 0 +24058752 512 1024 +~~~ +~~~ +~~~ +~~~ +24058759 homeCount = 1 +24058759 waitCount = 0 +24058760 ripCount = 0 +24058760 locktype1 = 0 +24058761 locktype2 = 0 +24058761 locktype3 = 0 +24058762 goalCount = 0 +24058762 goalTotal = 0 +24058763 otherCount = 0 +~~~ +~~~ +24059043 DOWN 10 +24059043 0 1024 +~~~ +24059062 UP 10 +24059063 waslock = 0 +24059062 512 1024 +~~~ +~~~ +~~~ +24059066 homeCount = 1 +24059067 waitCount = 0 +24059067 ripCount = 0 +24059068 locktype1 = 0 +24059068 locktype2 = 0 +24059069 locktype3 = 0 +24059069 goalCount = 0 +24059070 goalTotal = 0 +24059070 otherCount = 0 +~~~ +~~~ +24059196 DOWN 10 +24059196 0 1024 +~~~ +~~~ +~~~ +~~~ +24059218 homeCount = 1 +24059218 waitCount = 0 +24059219 ripCount = 0 +24059219 locktype1 = 0 +24059220 locktype2 = 0 +24059220 locktype3 = 0 +24059221 goalCount = 0 +24059221 goalTotal = 0 +24059222 otherCount = 0 +~~~ +24059223 UP 10 +24059223 waslock = 0 +24059223 512 1024 +~~~ +24059360 DOWN 10 +24059360 0 1024 +24059385 UP 10 +24059385 waslock = 0 +24059385 512 1024 +~~~ +~~~ +~~~ +~~~ +24059399 homeCount = 1 +24059399 waitCount = 0 +24059400 ripCount = 0 +24059400 locktype1 = 0 +24059401 locktype2 = 0 +24059401 locktype3 = 0 +24059402 goalCount = 0 +24059402 goalTotal = 0 +24059403 otherCount = 0 +~~~ +~~~ +24059519 DOWN 10 +24059519 0 1024 +~~~ +~~~ +~~~ +~~~ +24059539 homeCount = 1 +24059539 waitCount = 0 +24059540 ripCount = 0 +24059540 locktype1 = 0 +24059541 locktype2 = 0 +24059541 locktype3 = 0 +24059542 goalCount = 0 +24059542 goalTotal = 0 +24059543 otherCount = 0 +~~~ +24059548 UP 10 +24059548 waslock = 0 +24059547 512 1024 +~~~ +24059681 DOWN 10 +24059681 0 1024 +~~~ +~~~ +~~~ +~~~ +24059713 homeCount = 1 +24059713 waitCount = 0 +24059714 ripCount = 0 +24059714 locktype1 = 0 +24059715 locktype2 = 0 +24059715 locktype3 = 0 +24059716 goalCount = 0 +24059716 goalTotal = 0 +24059717 otherCount = 0 +~~~ +24059717 UP 10 +24059718 waslock = 0 +24059717 512 1024 +~~~ +24059856 DOWN 10 +24059856 0 1024 +~~~ +~~~ +~~~ +~~~ +24059881 homeCount = 1 +24059882 waitCount = 0 +24059882 ripCount = 0 +24059883 locktype1 = 0 +24059883 locktype2 = 0 +24059884 locktype3 = 0 +24059884 goalCount = 0 +24059885 goalTotal = 0 +24059885 otherCount = 0 +~~~ +24059888 UP 10 +24059889 waslock = 0 +24059888 512 1024 +~~~ +24060002 DOWN 10 +24060002 0 1024 +~~~ +~~~ +~~~ +~~~ +24060036 homeCount = 1 +24060037 waitCount = 0 +24060037 ripCount = 0 +24060038 locktype1 = 0 +24060038 locktype2 = 0 +24060039 locktype3 = 0 +24060039 goalCount = 0 +24060040 goalTotal = 0 +24060040 otherCount = 0 +~~~ +24060057 UP 10 +24060058 waslock = 0 +24060057 512 1024 +~~~ +24060155 DOWN 10 +24060155 0 1024 +~~~ +~~~ +~~~ +~~~ +24060183 homeCount = 1 +24060184 waitCount = 0 +24060184 ripCount = 0 +24060185 locktype1 = 0 +24060185 locktype2 = 0 +24060186 locktype3 = 0 +24060186 goalCount = 0 +24060187 goalTotal = 0 +24060187 otherCount = 0 +~~~ +24060218 UP 10 +24060219 waslock = 0 +24060218 512 1024 +~~~ +24060311 DOWN 10 +24060311 0 1024 +~~~ +~~~ +~~~ +~~~ +24060333 homeCount = 1 +24060333 waitCount = 0 +24060334 ripCount = 0 +24060334 locktype1 = 0 +24060335 locktype2 = 0 +24060335 locktype3 = 0 +24060336 goalCount = 0 +24060336 goalTotal = 0 +24060337 otherCount = 0 +~~~ +24060384 UP 10 +24060384 waslock = 0 +24060383 512 1024 +~~~ +24060470 DOWN 10 +24060470 0 1024 +~~~ +~~~ +~~~ +~~~ +24060494 homeCount = 1 +24060494 waitCount = 0 +24060495 ripCount = 0 +24060495 locktype1 = 0 +24060496 locktype2 = 0 +24060496 locktype3 = 0 +24060497 goalCount = 0 +24060497 goalTotal = 0 +24060498 otherCount = 0 +~~~ +24060541 UP 10 +24060542 waslock = 0 +24060541 512 1024 +~~~ +24060656 DOWN 10 +24060656 0 1024 +~~~ +~~~ +~~~ +~~~ +24060683 homeCount = 1 +24060683 waitCount = 0 +24060684 ripCount = 0 +24060684 locktype1 = 0 +24060685 locktype2 = 0 +24060685 locktype3 = 0 +24060686 goalCount = 0 +24060686 goalTotal = 0 +24060687 otherCount = 0 +~~~ +24060718 UP 10 +24060718 waslock = 0 +24060718 512 1024 +~~~ +24060821 DOWN 10 +24060821 0 1024 +~~~ +~~~ +~~~ +~~~ +24060844 homeCount = 1 +24060844 waitCount = 0 +24060845 ripCount = 0 +24060845 locktype1 = 0 +24060846 locktype2 = 0 +24060846 locktype3 = 0 +24060847 goalCount = 0 +24060847 goalTotal = 0 +24060848 otherCount = 0 +~~~ +24060875 UP 10 +24060875 waslock = 0 +24060875 512 1024 +~~~ +24061011 DOWN 10 +24061011 0 1024 +~~~ +~~~ +~~~ +~~~ +24061035 homeCount = 1 +24061035 waitCount = 0 +24061036 ripCount = 0 +24061036 locktype1 = 0 +24061037 locktype2 = 0 +24061037 locktype3 = 0 +24061038 goalCount = 0 +24061038 goalTotal = 0 +24061039 otherCount = 0 +~~~ +24061064 UP 10 +24061065 waslock = 0 +24061064 512 1024 +~~~ +24061209 DOWN 10 +24061209 0 1024 +24061222 UP 10 +24061223 waslock = 0 +24061222 512 1024 +~~~ +~~~ +~~~ +~~~ +24061246 homeCount = 1 +24061247 waitCount = 0 +24061247 ripCount = 0 +24061248 locktype1 = 0 +24061248 locktype2 = 0 +24061249 locktype3 = 0 +24061249 goalCount = 0 +24061250 goalTotal = 0 +24061250 otherCount = 0 +~~~ +~~~ +24061545 DOWN 10 +24061545 0 1024 +24061560 UP 10 +24061560 waslock = 0 +24061560 512 1024 +~~~ +~~~ +~~~ +~~~ +24061597 homeCount = 1 +24061598 waitCount = 0 +24061598 ripCount = 0 +24061599 locktype1 = 0 +24061599 locktype2 = 0 +24061600 locktype3 = 0 +24061600 goalCount = 0 +24061601 goalTotal = 0 +24061601 otherCount = 0 +~~~ +~~~ +24063988 DOWN 10 +24063988 0 1024 +24064005 UP 10 +24064006 waslock = 0 +24064005 512 1024 +~~~ +~~~ +~~~ +~~~ +24064014 homeCount = 1 +24064014 waitCount = 0 +24064015 ripCount = 0 +24064015 locktype1 = 0 +24064016 locktype2 = 0 +24064016 locktype3 = 0 +24064017 goalCount = 0 +24064017 goalTotal = 0 +24064018 otherCount = 0 +~~~ +~~~ +24064723 DOWN 10 +24064723 0 1024 +~~~ +~~~ +24064751 UP 10 +24064751 waslock = 0 +24064751 512 1024 +~~~ +~~~ +24064754 homeCount = 1 +24064754 waitCount = 0 +24064755 ripCount = 0 +24064755 locktype1 = 0 +24064756 locktype2 = 0 +24064756 locktype3 = 0 +24064757 goalCount = 0 +24064757 goalTotal = 0 +24064778 otherCount = 0 +~~~ +~~~ +24065124 DOWN 10 +24065124 0 1024 +24065130 UP 10 +24065130 waslock = 0 +24065130 512 1024 +~~~ +~~~ +~~~ +~~~ +24065153 homeCount = 1 +24065153 waitCount = 0 +24065154 ripCount = 0 +24065154 locktype1 = 0 +24065155 locktype2 = 0 +24065155 locktype3 = 0 +24065156 goalCount = 0 +24065156 goalTotal = 0 +24065157 otherCount = 0 +~~~ +~~~ +24065460 DOWN 10 +24065460 0 1024 +~~~ +~~~ +~~~ +~~~ +24065484 homeCount = 1 +24065484 waitCount = 0 +24065485 ripCount = 0 +24065485 locktype1 = 0 +24065486 locktype2 = 0 +24065486 locktype3 = 0 +24065487 goalCount = 0 +24065487 goalTotal = 0 +24065488 otherCount = 0 +~~~ +24065532 UP 10 +24065532 waslock = 0 +24065531 512 1024 +~~~ +24065573 DOWN 10 +24065573 0 1024 +~~~ +~~~ +~~~ +~~~ +24065598 homeCount = 1 +24065598 waitCount = 0 +24065599 ripCount = 0 +24065599 locktype1 = 0 +24065600 locktype2 = 0 +24065600 locktype3 = 0 +24065601 goalCount = 0 +24065601 goalTotal = 0 +24065602 otherCount = 0 +~~~ +24065685 UP 10 +24065685 waslock = 0 +24065685 512 1024 +24065713 DOWN 10 +24065713 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24065736 homeCount = 1 +24065737 waitCount = 0 +24065737 ripCount = 0 +24065738 locktype1 = 0 +24065738 locktype2 = 0 +24065739 locktype3 = 0 +24065739 goalCount = 0 +24065740 goalTotal = 0 +24065740 otherCount = 0 +~~~ +24067490 UP 12 +24067490 LOCKOUT 1 +24067490 2048 1024 +~~~ +24067512 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +24067516 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24067665 DOWN 12 +24067665 0 0 +24067738 UP 12 +24067738 2048 0 +24067825 DOWN 12 +24067825 0 0 +24067873 UP 12 +24067873 2048 0 +24067961 DOWN 12 +24067961 0 0 +24068038 UP 12 +24068038 2048 0 +24068088 DOWN 12 +24068088 0 0 +24068334 UP 12 +24068334 2048 0 +24068564 DOWN 12 +24068564 0 0 +24068910 UP 12 +24068910 2048 0 +24068985 DOWN 12 +24068985 0 0 +24069745 UP 12 +24069745 2048 0 +24069769 DOWN 12 +24069769 0 0 +24070207 UP 12 +24070207 2048 0 +24070211 DOWN 12 +24070211 0 0 +24070465 UP 12 +24070465 2048 0 +24070485 DOWN 12 +24070485 0 0 +24070493 UP 12 +24070493 2048 0 +24070500 DOWN 12 +24070500 0 0 +24070608 UP 12 +24070608 2048 0 +24070632 DOWN 12 +24070632 0 0 +24070641 UP 12 +24070641 2048 0 +24070650 DOWN 12 +24070650 0 0 +24070709 UP 12 +24070709 2048 0 +24070737 DOWN 12 +24070737 0 0 +24070752 UP 12 +24070752 2048 0 +24070796 DOWN 12 +24070796 0 0 +24070859 UP 12 +24070859 2048 0 +24070876 DOWN 12 +24070876 0 0 +24070898 UP 12 +24070898 2048 0 +24070949 DOWN 12 +24070949 0 0 +24071006 UP 12 +24071006 2048 0 +24071024 DOWN 12 +24071024 0 0 +24071048 UP 12 +24071048 2048 0 +24071100 DOWN 12 +24071100 0 0 +24071199 UP 12 +24071199 2048 0 +24071254 DOWN 12 +24071254 0 0 +24071325 UP 12 +24071325 2048 0 +24071406 DOWN 12 +24071406 0 0 +24071413 UP 12 +24071413 2048 0 +24071565 DOWN 12 +24071565 0 0 +24071569 UP 12 +24071569 2048 0 +24072422 DOWN 12 +24072422 0 0 +24072431 UP 12 +24072430 2048 0 +24072582 DOWN 12 +24072582 0 0 +24072603 UP 12 +24072603 2048 0 +24072753 DOWN 12 +24072753 0 0 +24072770 UP 12 +24072770 2048 0 +24072935 DOWN 12 +24072935 0 0 +24072956 UP 12 +24072956 2048 0 +24073295 DOWN 12 +24073295 0 0 +24073309 UP 12 +24073309 2048 0 +24073471 DOWN 12 +24073471 0 0 +24073494 UP 12 +24073494 2048 0 +24073657 DOWN 12 +24073657 0 0 +24073677 UP 12 +24073677 2048 0 +24073837 DOWN 12 +24073837 0 0 +24073859 UP 12 +24073859 2048 0 +24076260 DOWN 12 +24076260 0 0 +24076298 UP 12 +24076298 2048 0 +24076357 DOWN 12 +24076357 0 0 +24078484 UP 11 +24078484 1024 0 +24078510 DOWN 11 +24078510 0 0 +24078583 UP 11 +24078583 1024 0 +24078838 DOWN 11 +24078838 0 0 +24078872 UP 11 +24078872 1024 0 +24078960 DOWN 11 +24078960 0 0 +24081253 UP 11 +24081253 1024 0 +24081256 DOWN 11 +24081256 0 0 +24081403 UP 11 +24081403 1024 0 +24081408 DOWN 11 +24081408 0 0 +24081555 UP 11 +24081555 1024 0 +24081559 DOWN 11 +24081559 0 0 +24081780 UP 11 +24081780 1024 0 +24081797 DOWN 11 +24081797 0 0 +24081990 UP 11 +24081990 1024 0 +24081998 DOWN 11 +24081998 0 0 +24082137 UP 11 +24082137 1024 0 +24082165 DOWN 11 +24082165 0 0 +24082275 UP 11 +24082275 1024 0 +24082334 DOWN 11 +24082334 0 0 +24082411 UP 11 +24082411 1024 0 +24082495 DOWN 11 +24082495 0 0 +24082530 UP 11 +24082530 1024 0 +24082553 DOWN 11 +24082553 0 0 +24082562 UP 11 +24082562 1024 0 +24082667 DOWN 11 +24082667 0 0 +24082693 UP 11 +24082693 1024 0 +24082844 DOWN 11 +24082844 0 0 +24082860 UP 11 +24082860 1024 0 +24083018 DOWN 11 +24083018 0 0 +24083043 UP 11 +24083043 1024 0 +24083092 DOWN 11 +24083092 0 0 +24083101 UP 11 +24083101 1024 0 +24083201 DOWN 11 +24083201 0 0 +24083211 UP 11 +24083211 1024 0 +24083378 DOWN 11 +24083378 0 0 +24083382 UP 11 +24083382 1024 0 +24083552 DOWN 11 +24083552 0 0 +24083557 UP 11 +24083557 1024 0 +24083729 DOWN 11 +24083729 0 0 +24083743 UP 11 +24083743 1024 0 +24083912 DOWN 11 +24083912 0 0 +24083936 UP 11 +24083936 1024 0 +24084098 DOWN 11 +24084098 0 0 +24084109 UP 11 +24084108 1024 0 +24086825 DOWN 11 +24086825 0 0 +24086849 UP 11 +24086849 1024 0 +24086884 DOWN 11 +24086884 0 0 +24086917 UP 11 +24086917 1024 0 +24086937 DOWN 11 +24086937 0 0 +24086949 UP 11 +24086949 1024 0 +24087030 DOWN 11 +24087030 0 0 +24087064 UP 11 +24087064 1024 0 +24087088 DOWN 11 +24087088 0 0 +24087108 UP 11 +24087108 1024 0 +24087213 DOWN 11 +24087213 0 0 +24087245 UP 11 +24087245 1024 0 +24087271 DOWN 11 +24087271 0 0 +24087277 UP 11 +24087277 1024 0 +24087389 DOWN 11 +24087389 0 0 +24087403 UP 11 +24087403 1024 0 +24087574 DOWN 11 +24087574 0 0 +24087584 UP 11 +24087584 1024 0 +24088308 DOWN 11 +24088308 0 0 +24088330 UP 11 +24088330 1024 0 +24088411 DOWN 11 +24088411 0 0 +24088480 UP 11 +24088480 1024 0 +24088557 DOWN 11 +24088557 0 0 +24088788 UP 11 +24088788 1024 0 +24089081 DOWN 11 +24089081 0 0 +24092512 LOCKEND +~~~ +~~~ +~~~ +24092533 0 512 +24094091 UP 7 +24094091 64 512 +24094400 DOWN 7 +24094399 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24094430 64 512 +~~~ +~~~ +~~~ +24094434 homeCount = 1 +24094434 waitCount = 0 +24094435 ripCount = 0 +24094435 locktype1 = 1 +24094436 locktype2 = 0 +24094436 locktype3 = 0 +24094437 goalCount = 0 +24094437 goalTotal = 0 +24094438 otherCount = 0 +~~~ +24095843 DOWN 7 +24095843 0 512 +24100125 UP 10 +24100125 waslock = 0 +24100125 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24100155 512 16777728 +~~~ +24100304 512 512 +24100517 DOWN 10 +24100517 0 512 +~~~ +~~~ +24100541 0 2560 +~~~ +~~~ +24100543 0 2048 +24100544 homeCount = 2 +24100545 waitCount = 0 +24100545 ripCount = 0 +24100546 locktype1 = 1 +24100546 locktype2 = 0 +24100547 locktype3 = 0 +24100547 goalCount = 0 +24100548 goalTotal = 0 +24100548 otherCount = 0 +~~~ +24100569 UP 10 +24100570 waslock = 0 +24100569 512 2048 +~~~ +24100616 DOWN 10 +24100616 0 2048 +~~~ +~~~ +~~~ +~~~ +24100646 homeCount = 2 +24100646 waitCount = 0 +24100647 ripCount = 0 +24100647 locktype1 = 1 +24100648 locktype2 = 0 +24100648 locktype3 = 0 +24100649 goalCount = 0 +24100649 goalTotal = 0 +24100650 otherCount = 0 +~~~ +24100783 UP 10 +24100783 waslock = 0 +24100783 512 2048 +~~~ +24100815 DOWN 10 +24100815 0 2048 +~~~ +~~~ +~~~ +~~~ +24100843 homeCount = 2 +24100843 waitCount = 0 +24100844 ripCount = 0 +24100844 locktype1 = 1 +24100845 locktype2 = 0 +24100845 locktype3 = 0 +24100846 goalCount = 0 +24100846 goalTotal = 0 +24100847 otherCount = 0 +~~~ +24100909 UP 10 +24100909 waslock = 0 +24100909 512 2048 +~~~ +24100989 DOWN 10 +24100989 0 2048 +~~~ +~~~ +~~~ +~~~ +24101013 homeCount = 2 +24101013 waitCount = 0 +24101014 ripCount = 0 +24101014 locktype1 = 1 +24101015 locktype2 = 0 +24101015 locktype3 = 0 +24101016 goalCount = 0 +24101016 goalTotal = 0 +24101017 otherCount = 0 +~~~ +24101018 UP 10 +24101018 waslock = 0 +24101018 512 2048 +~~~ +24101542 DOWN 10 +24101542 0 2048 +24101568 UP 10 +24101569 waslock = 0 +24101568 512 2048 +~~~ +~~~ +~~~ +~~~ +24101575 homeCount = 2 +24101575 waitCount = 0 +24101576 ripCount = 0 +24101576 locktype1 = 1 +24101577 locktype2 = 0 +24101577 locktype3 = 0 +24101578 goalCount = 0 +24101578 goalTotal = 0 +24101579 otherCount = 0 +~~~ +~~~ +24101712 DOWN 10 +24101712 0 2048 +~~~ +24101739 UP 10 +24101739 waslock = 0 +24101739 512 2048 +~~~ +~~~ +~~~ +24101742 homeCount = 2 +24101743 waitCount = 0 +24101743 ripCount = 0 +24101744 locktype1 = 1 +24101744 locktype2 = 0 +24101745 locktype3 = 0 +24101745 goalCount = 0 +24101746 goalTotal = 0 +24101746 otherCount = 0 +~~~ +~~~ +24101900 DOWN 10 +24101900 0 2048 +24101911 UP 10 +24101911 waslock = 0 +24101911 512 2048 +~~~ +~~~ +~~~ +~~~ +24101935 homeCount = 2 +24101935 waitCount = 0 +24101936 ripCount = 0 +24101936 locktype1 = 1 +24101937 locktype2 = 0 +24101937 locktype3 = 0 +24101938 goalCount = 0 +24101938 goalTotal = 0 +24101939 otherCount = 0 +~~~ +~~~ +24102072 DOWN 10 +24102071 0 2048 +24102086 UP 10 +24102086 waslock = 0 +24102086 512 2048 +~~~ +~~~ +~~~ +~~~ +24102094 homeCount = 2 +24102095 waitCount = 0 +24102095 ripCount = 0 +24102096 locktype1 = 1 +24102096 locktype2 = 0 +24102097 locktype3 = 0 +24102097 goalCount = 0 +24102098 goalTotal = 0 +24102098 otherCount = 0 +~~~ +~~~ +24103807 DOWN 10 +24103807 0 2048 +24103823 UP 10 +24103823 waslock = 0 +24103823 512 2048 +~~~ +~~~ +~~~ +~~~ +24103831 homeCount = 2 +24103831 waitCount = 0 +24103832 ripCount = 0 +24103832 locktype1 = 1 +24103833 locktype2 = 0 +24103833 locktype3 = 0 +24103834 goalCount = 0 +24103834 goalTotal = 0 +24103835 otherCount = 0 +~~~ +~~~ +24103981 DOWN 10 +24103981 0 2048 +~~~ +~~~ +~~~ +~~~ +24104009 homeCount = 2 +24104010 waitCount = 0 +24104010 ripCount = 0 +24104011 locktype1 = 1 +24104011 locktype2 = 0 +24104012 locktype3 = 0 +24104012 goalCount = 0 +24104013 goalTotal = 0 +24104013 otherCount = 0 +~~~ +24104014 UP 10 +24104014 waslock = 0 +24104014 512 2048 +~~~ +24104173 DOWN 10 +24104173 0 2048 +~~~ +~~~ +~~~ +~~~ +24104198 homeCount = 2 +24104199 waitCount = 0 +24104199 ripCount = 0 +24104200 locktype1 = 1 +24104200 locktype2 = 0 +24104201 locktype3 = 0 +24104201 goalCount = 0 +24104202 goalTotal = 0 +24104202 otherCount = 0 +~~~ +24116229 UP 12 +24116229 2048 2048 +24116292 DOWN 12 +24116292 0 2048 +24116492 LOCKOUT 3 +~~~ +24116519 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24116525 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24116631 UP 12 +24116631 2048 0 +24116733 DOWN 12 +24116732 0 0 +24116782 UP 12 +24116782 2048 0 +24116880 DOWN 12 +24116880 0 0 +24116947 UP 12 +24116947 2048 0 +24117083 DOWN 12 +24117083 0 0 +24117145 UP 12 +24117145 2048 0 +24117245 DOWN 12 +24117245 0 0 +24120977 UP 3 +24120976 4 0 +24121186 DOWN 3 +24121186 0 0 +24121258 4 0 +24121715 DOWN 3 +24121715 0 0 +24121728 4 0 +24121872 DOWN 3 +24121872 0 0 +24121886 4 0 +24122597 DOWN 3 +24122597 0 0 +24122606 4 0 +24123130 DOWN 3 +24123130 0 0 +24123149 4 0 +24124151 DOWN 3 +24124151 0 0 +24124156 4 0 +24124181 DOWN 3 +24124181 0 0 +24133999 512 0 +24134020 0 0 +24134058 512 0 +24134337 0 0 +24134372 512 0 +24134413 0 0 +24134490 512 0 +24134977 0 0 +24134997 512 0 +24135340 0 0 +24135350 512 0 +24135514 0 0 +24135570 512 0 +24135615 0 0 +24139773 UP 8 +24139773 128 0 +24139806 DOWN 8 +24139806 0 0 +24139876 128 0 +24140057 DOWN 8 +24140057 0 0 +24140110 128 0 +24140388 DOWN 8 +24140388 0 0 +24140409 128 0 +24140533 DOWN 8 +24140533 0 0 +24140560 128 0 +24140693 DOWN 8 +24140693 0 0 +24140720 128 0 +24140869 DOWN 8 +24140869 0 0 +24140886 128 0 +24141045 DOWN 8 +24141045 0 0 +24141064 128 0 +24141211 DOWN 8 +24141211 0 0 +24141242 128 0 +24141397 DOWN 8 +24141397 0 0 +24141423 128 0 +24141519 LOCKEND +~~~ +~~~ +~~~ +24141542 128 512 +24141565 DOWN 8 +24141565 0 512 +24141596 128 512 +24141750 DOWN 8 +24141750 0 512 +24141766 128 512 +24142090 DOWN 8 +24142090 0 512 +24142106 128 512 +24143455 DOWN 8 +24143455 0 512 +24149708 UP 10 +24149708 waslock = 0 +24149708 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24149735 512 16777728 +~~~ +24149823 DOWN 10 +24149823 0 16777728 +24149841 UP 10 +24149842 waslock = 0 +24149841 512 16777728 +~~~ +~~~ +24149848 512 16779776 +~~~ +~~~ +24149850 512 16779264 +24149851 homeCount = 3 +24149852 waitCount = 0 +24149852 ripCount = 0 +24149853 locktype1 = 1 +24149853 locktype2 = 0 +24149854 locktype3 = 1 +24149854 goalCount = 0 +24149855 goalTotal = 0 +24149855 otherCount = 0 +~~~ +~~~ +24149885 512 2048 +24150195 DOWN 10 +24150195 0 2048 +~~~ +~~~ +~~~ +~~~ +24150224 homeCount = 3 +24150224 waitCount = 0 +24150225 ripCount = 0 +24150225 locktype1 = 1 +24150226 locktype2 = 0 +24150226 locktype3 = 1 +24150227 goalCount = 0 +24150227 goalTotal = 0 +24150228 otherCount = 0 +~~~ +24150237 UP 10 +24150237 waslock = 0 +24150236 512 2048 +~~~ +24150377 DOWN 10 +24150377 0 2048 +~~~ +~~~ +~~~ +~~~ +24150405 homeCount = 3 +24150405 waitCount = 0 +24150406 ripCount = 0 +24150406 locktype1 = 1 +24150407 locktype2 = 0 +24150407 locktype3 = 1 +24150408 goalCount = 0 +24150408 goalTotal = 0 +24150409 otherCount = 0 +~~~ +24150410 UP 10 +24150410 waslock = 0 +24150410 512 2048 +~~~ +24150548 DOWN 10 +24150547 0 2048 +~~~ +~~~ +~~~ +~~~ +24150574 homeCount = 3 +24150574 waitCount = 0 +24150575 ripCount = 0 +24150575 locktype1 = 1 +24150576 locktype2 = 0 +24150576 locktype3 = 1 +24150577 goalCount = 0 +24150577 goalTotal = 0 +24150578 otherCount = 0 +~~~ +24150582 UP 10 +24150582 waslock = 0 +24150582 512 2048 +~~~ +24150712 DOWN 10 +24150712 0 2048 +~~~ +~~~ +~~~ +~~~ +24150732 homeCount = 3 +24150732 waitCount = 0 +24150733 ripCount = 0 +24150733 locktype1 = 1 +24150734 locktype2 = 0 +24150734 locktype3 = 1 +24150735 goalCount = 0 +24150735 goalTotal = 0 +24150736 otherCount = 0 +~~~ +24150746 UP 10 +24150747 waslock = 0 +24150746 512 2048 +~~~ +24150885 DOWN 10 +24150885 0 2048 +~~~ +~~~ +~~~ +~~~ +24150911 homeCount = 3 +24150912 waitCount = 0 +24150912 ripCount = 0 +24150913 locktype1 = 1 +24150913 locktype2 = 0 +24150914 locktype3 = 1 +24150914 goalCount = 0 +24150915 goalTotal = 0 +24150915 otherCount = 0 +~~~ +24150922 UP 10 +24150922 waslock = 0 +24150922 512 2048 +~~~ +24151063 DOWN 10 +24151063 0 2048 +~~~ +~~~ +~~~ +~~~ +24151091 homeCount = 3 +24151092 waitCount = 0 +24151092 ripCount = 0 +24151093 locktype1 = 1 +24151093 locktype2 = 0 +24151094 locktype3 = 1 +24151094 goalCount = 0 +24151095 goalTotal = 0 +24151095 otherCount = 0 +~~~ +24151096 UP 10 +24151096 waslock = 0 +24151096 512 2048 +~~~ +24151239 DOWN 10 +24151239 0 2048 +~~~ +~~~ +~~~ +~~~ +24151264 homeCount = 3 +24151264 waitCount = 0 +24151265 ripCount = 0 +24151265 locktype1 = 1 +24151266 locktype2 = 0 +24151266 locktype3 = 1 +24151267 goalCount = 0 +24151267 goalTotal = 0 +24151268 otherCount = 0 +~~~ +24151272 UP 10 +24151273 waslock = 0 +24151272 512 2048 +~~~ +24151430 DOWN 10 +24151430 0 2048 +~~~ +~~~ +~~~ +~~~ +24151453 homeCount = 3 +24151454 waitCount = 0 +24151454 ripCount = 0 +24151455 locktype1 = 1 +24151455 locktype2 = 0 +24151456 locktype3 = 1 +24151456 goalCount = 0 +24151457 goalTotal = 0 +24151457 otherCount = 0 +~~~ +24151458 UP 10 +24151458 waslock = 0 +24151458 512 2048 +~~~ +24151611 DOWN 10 +24151610 0 2048 +~~~ +~~~ +~~~ +~~~ +24151634 homeCount = 3 +24151635 waitCount = 0 +24151635 ripCount = 0 +24151636 locktype1 = 1 +24151636 locktype2 = 0 +24151637 locktype3 = 1 +24151637 goalCount = 0 +24151638 goalTotal = 0 +24151638 otherCount = 0 +~~~ +24151641 UP 10 +24151642 waslock = 0 +24151641 512 2048 +~~~ +24151782 DOWN 10 +24151782 0 2048 +~~~ +~~~ +~~~ +~~~ +24151805 homeCount = 3 +24151805 waitCount = 0 +24151806 ripCount = 0 +24151806 locktype1 = 1 +24151807 locktype2 = 0 +24151807 locktype3 = 1 +24151808 goalCount = 0 +24151808 goalTotal = 0 +24151809 otherCount = 0 +~~~ +24151823 UP 10 +24151824 waslock = 0 +24151823 512 2048 +~~~ +24151978 DOWN 10 +24151978 0 2048 +24152002 UP 10 +24152003 waslock = 0 +24152002 512 2048 +~~~ +~~~ +~~~ +~~~ +24152007 homeCount = 3 +24152007 waitCount = 0 +24152008 ripCount = 0 +24152008 locktype1 = 1 +24152009 locktype2 = 0 +24152009 locktype3 = 1 +24152010 goalCount = 0 +24152010 goalTotal = 0 +24152011 otherCount = 0 +~~~ +~~~ +24152184 DOWN 10 +24152184 0 2048 +24152194 UP 10 +24152195 waslock = 0 +24152194 512 2048 +~~~ +~~~ +~~~ +~~~ +24152213 homeCount = 3 +24152213 waitCount = 0 +24152214 ripCount = 0 +24152214 locktype1 = 1 +24152215 locktype2 = 0 +24152215 locktype3 = 1 +24152216 goalCount = 0 +24152216 goalTotal = 0 +24152217 otherCount = 0 +~~~ +~~~ +24152367 DOWN 10 +24152367 0 2048 +~~~ +~~~ +~~~ +~~~ +24152395 homeCount = 3 +24152395 waitCount = 0 +24152396 ripCount = 0 +24152396 locktype1 = 1 +24152397 locktype2 = 0 +24152397 locktype3 = 1 +24152398 goalCount = 0 +24152398 goalTotal = 0 +24152399 otherCount = 0 +~~~ +24152402 UP 10 +24152403 waslock = 0 +24152402 512 2048 +~~~ +24152539 DOWN 10 +24152539 0 2048 +~~~ +~~~ +~~~ +~~~ +24152564 homeCount = 3 +24152564 waitCount = 0 +24152565 ripCount = 0 +24152565 locktype1 = 1 +24152566 locktype2 = 0 +24152566 locktype3 = 1 +24152567 goalCount = 0 +24152567 goalTotal = 0 +24152568 otherCount = 0 +~~~ +24152572 UP 10 +24152573 waslock = 0 +24152572 512 2048 +~~~ +24152741 DOWN 10 +24152741 0 2048 +24152759 UP 10 +24152760 waslock = 0 +24152759 512 2048 +~~~ +~~~ +~~~ +~~~ +24152763 homeCount = 3 +24152764 waitCount = 0 +24152764 ripCount = 0 +24152765 locktype1 = 1 +24152765 locktype2 = 0 +24152766 locktype3 = 1 +24152766 goalCount = 0 +24152767 goalTotal = 0 +24152767 otherCount = 0 +~~~ +~~~ +24153497 DOWN 10 +24153497 0 2048 +~~~ +~~~ +~~~ +~~~ +24153532 homeCount = 3 +24153532 waitCount = 0 +24153533 ripCount = 0 +24153533 locktype1 = 1 +24153534 locktype2 = 0 +24153534 locktype3 = 1 +24153535 goalCount = 0 +24153535 goalTotal = 0 +24153536 otherCount = 0 +~~~ +24153539 UP 10 +24153539 waslock = 0 +24153539 512 2048 +~~~ +24153665 DOWN 10 +24153665 0 2048 +~~~ +~~~ +24153684 UP 10 +24153684 waslock = 0 +24153684 512 2048 +~~~ +~~~ +24153686 homeCount = 3 +24153687 waitCount = 0 +24153687 ripCount = 0 +24153688 locktype1 = 1 +24153688 locktype2 = 0 +24153689 locktype3 = 1 +24153689 goalCount = 0 +24153690 goalTotal = 0 +24153711 otherCount = 0 +~~~ +~~~ +24153879 DOWN 10 +24153879 0 2048 +~~~ +~~~ +~~~ +~~~ +24153906 UP 10 +24153906 waslock = 0 +24153906 512 2048 +24153907 homeCount = 3 +24153908 waitCount = 0 +24153908 ripCount = 0 +24153909 locktype1 = 1 +24153909 locktype2 = 0 +24153910 locktype3 = 1 +24153910 goalCount = 0 +24153911 goalTotal = 0 +24153911 otherCount = 0 +~~~ +~~~ +24154063 DOWN 10 +24154063 0 2048 +~~~ +~~~ +24154084 UP 10 +24154084 waslock = 0 +24154084 512 2048 +~~~ +~~~ +24154087 homeCount = 3 +24154087 waitCount = 0 +24154088 ripCount = 0 +24154088 locktype1 = 1 +24154089 locktype2 = 0 +24154089 locktype3 = 1 +24154090 goalCount = 0 +24154090 goalTotal = 0 +24154111 otherCount = 0 +~~~ +~~~ +24154734 DOWN 10 +24154734 0 2048 +~~~ +24154753 UP 10 +24154753 waslock = 0 +24154753 512 2048 +~~~ +~~~ +~~~ +24154757 homeCount = 3 +24154757 waitCount = 0 +24154758 ripCount = 0 +24154758 locktype1 = 1 +24154759 locktype2 = 0 +24154759 locktype3 = 1 +24154760 goalCount = 0 +24154760 goalTotal = 0 +24154761 otherCount = 0 +~~~ +~~~ +24155139 DOWN 10 +24155139 0 2048 +24155152 UP 10 +24155152 waslock = 0 +24155152 512 2048 +~~~ +~~~ +~~~ +~~~ +24155162 homeCount = 3 +24155163 waitCount = 0 +24155163 ripCount = 0 +24155163 locktype1 = 1 +24155164 locktype2 = 0 +24155164 locktype3 = 1 +24155165 goalCount = 0 +24155165 goalTotal = 0 +24155166 otherCount = 0 +~~~ +~~~ +24155249 DOWN 10 +24155249 0 2048 +~~~ +~~~ +~~~ +~~~ +24155276 homeCount = 3 +24155276 waitCount = 0 +24155277 ripCount = 0 +24155277 locktype1 = 1 +24155278 locktype2 = 0 +24155278 locktype3 = 1 +24155279 goalCount = 0 +24155279 goalTotal = 0 +24155280 otherCount = 0 +~~~ +24155317 UP 10 +24155317 waslock = 0 +24155317 512 2048 +~~~ +24155370 DOWN 10 +24155370 0 2048 +~~~ +~~~ +~~~ +~~~ +24155391 homeCount = 3 +24155392 waitCount = 0 +24155392 ripCount = 0 +24155393 locktype1 = 1 +24155393 locktype2 = 0 +24155394 locktype3 = 1 +24155394 goalCount = 0 +24155395 goalTotal = 0 +24155395 otherCount = 0 +~~~ +24157118 UP 12 +24157118 2048 2048 +24158118 CLICK1 +24158118 CLICK2 +~~~ +~~~ +~~~ +24158143 2048 67110912 +~~~ +24158293 2048 2048 +24162037 DOWN 12 +24162037 0 2048 +24162046 UP 12 +24162046 2048 2048 +~~~ +~~~ +24162059 2048 0 +~~~ +~~~ +24162061 2048 1 +~~~ +~~~ +24162063 2048 3 +~~~ +~~~ +24162065 2048 7 +~~~ +~~~ +24162066 2048 15 +~~~ +~~~ +24162068 2048 31 +~~~ +~~~ +24162070 2048 63 +~~~ +~~~ +24162072 2048 127 +~~~ +~~~ +24162074 2048 255 +24162075 homeCount = 3 +24162075 waitCount = 1 +24162076 ripCount = 0 +24162076 locktype1 = 1 +24162097 locktype2 = 0 +24162098 locktype3 = 1 +24162098 goalCount = 0 +24162099 goalTotal = 0 +24162099 otherCount = 0 +~~~ +24162100 CURRENTGOAL IS [2] +~~~ +24164104 DOWN 12 +24164104 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24164146 homeCount = 3 +24164147 waitCount = 1 +24164147 ripCount = 0 +24164148 locktype1 = 1 +24164148 locktype2 = 0 +24164149 locktype3 = 1 +24164149 goalCount = 0 +24164150 goalTotal = 0 +24164150 otherCount = 0 +~~~ +24164151 CURRENTGOAL IS [2] +~~~ +24166882 UP 3 +24166882 4 255 +~~~ +~~~ +24167174 DOWN 3 +24167174 0 255 +~~~ +~~~ +24167201 0 254 +~~~ +~~~ +24167203 0 252 +~~~ +~~~ +24167205 0 248 +~~~ +~~~ +24167207 0 240 +~~~ +~~~ +24167209 0 224 +~~~ +~~~ +24167211 0 192 +~~~ +~~~ +24167212 0 128 +~~~ +~~~ +24167214 0 0 +~~~ +~~~ +24167216 0 512 +24167217 homeCount = 3 +24167218 waitCount = 1 +24167218 ripCount = 0 +24167219 locktype1 = 1 +24167219 locktype2 = 0 +24167240 locktype3 = 1 +24167240 goalCount = 0 +24167241 goalTotal = 0 +24167241 otherCount = 1 +~~~ +24167242 4 512 +24167909 DOWN 3 +24167909 0 512 +24167987 4 512 +24167998 DOWN 3 +24167998 0 512 +24171196 UP 10 +24171196 waslock = 0 +24171196 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24171228 512 16777728 +~~~ +24171232 DOWN 10 +24171232 0 16777728 +~~~ +~~~ +24171244 0 16778752 +~~~ +~~~ +24171246 0 16778240 +24171247 homeCount = 4 +24171247 waitCount = 1 +24171248 ripCount = 0 +24171248 locktype1 = 1 +24171249 locktype2 = 0 +24171249 locktype3 = 1 +24171250 goalCount = 0 +24171250 goalTotal = 0 +24171251 otherCount = 1 +~~~ +24171296 UP 10 +24171296 waslock = 0 +24171296 512 16778240 +~~~ +24171323 DOWN 10 +24171323 0 16778240 +~~~ +~~~ +~~~ +~~~ +24171346 homeCount = 4 +24171346 waitCount = 1 +24171347 ripCount = 0 +24171347 locktype1 = 1 +24171348 locktype2 = 0 +24171348 locktype3 = 1 +24171349 goalCount = 0 +24171349 goalTotal = 0 +24171350 otherCount = 1 +~~~ +24171378 0 1024 +24171850 UP 10 +24171850 waslock = 0 +24171850 512 1024 +~~~ +24172122 DOWN 10 +24172122 0 1024 +~~~ +~~~ +~~~ +~~~ +24172155 homeCount = 4 +24172156 waitCount = 1 +24172156 ripCount = 0 +24172157 locktype1 = 1 +24172157 locktype2 = 0 +24172158 locktype3 = 1 +24172158 goalCount = 0 +24172159 goalTotal = 0 +24172159 otherCount = 1 +~~~ +24172177 UP 10 +24172177 waslock = 0 +24172177 512 1024 +24172206 DOWN 10 +24172206 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24172253 homeCount = 4 +24172254 waitCount = 1 +24172254 ripCount = 0 +24172255 locktype1 = 1 +24172255 locktype2 = 0 +24172256 locktype3 = 1 +24172256 goalCount = 0 +24172257 goalTotal = 0 +24172257 otherCount = 1 +~~~ +24172303 UP 10 +24172303 waslock = 0 +24172303 512 1024 +~~~ +24172431 DOWN 10 +24172431 0 1024 +24172454 UP 10 +24172454 waslock = 0 +24172454 512 1024 +~~~ +~~~ +~~~ +~~~ +24172460 homeCount = 4 +24172461 waitCount = 1 +24172461 ripCount = 0 +24172462 locktype1 = 1 +24172462 locktype2 = 0 +24172463 locktype3 = 1 +24172463 goalCount = 0 +24172464 goalTotal = 0 +24172464 otherCount = 1 +~~~ +~~~ +24176002 DOWN 10 +24176002 0 1024 +~~~ +~~~ +~~~ +~~~ +24176021 homeCount = 4 +24176022 waitCount = 1 +24176022 ripCount = 0 +24176023 locktype1 = 1 +24176023 locktype2 = 0 +24176024 locktype3 = 1 +24176024 goalCount = 0 +24176025 goalTotal = 0 +24176025 otherCount = 1 +~~~ +24176057 UP 10 +24176057 waslock = 0 +24176057 512 1024 +~~~ +24176101 DOWN 10 +24176101 0 1024 +~~~ +~~~ +~~~ +~~~ +24176131 homeCount = 4 +24176131 waitCount = 1 +24176132 ripCount = 0 +24176132 locktype1 = 1 +24176133 locktype2 = 0 +24176133 locktype3 = 1 +24176134 goalCount = 0 +24176134 goalTotal = 0 +24176135 otherCount = 1 +~~~ +24177410 UP 11 +24177410 1024 1024 +24177464 DOWN 11 +24177464 0 1024 +24177493 UP 11 +24177493 1024 1024 +24178180 DOWN 11 +24178180 0 1024 +24178233 UP 11 +24178233 1024 1024 +24178411 BEEP1 +24178411 BEEP2 +~~~ +~~~ +~~~ +24178442 1024 33555456 +~~~ +24178528 DOWN 11 +24178528 0 33555456 +24178550 UP 11 +24178550 1024 33555456 +24178592 1024 1024 +~~~ +~~~ +24179111 1024 0 +~~~ +~~~ +24179113 1024 1 +~~~ +~~~ +24179115 1024 3 +~~~ +~~~ +24179116 1024 7 +~~~ +~~~ +24179118 1024 15 +~~~ +~~~ +24179120 1024 31 +~~~ +24179121 DOWN 11 +24179121 0 31 +~~~ +~~~ +24179123 0 63 +~~~ +~~~ +24179125 0 127 +~~~ +24179126 0 255 +24179127 homeCount = 4 +24179128 waitCount = 1 +24179149 ripCount = 1 +24179149 locktype1 = 1 +24179150 locktype2 = 0 +24179150 locktype3 = 1 +24179151 goalCount = 0 +24179151 goalTotal = 0 +24179152 otherCount = 1 +~~~ +24179153 CURRENTGOAL IS [2] +~~~ +24179153 UP 11 +24179153 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24179182 homeCount = 4 +24179183 waitCount = 1 +24179183 ripCount = 1 +24179184 locktype1 = 1 +24179184 locktype2 = 0 +24179185 locktype3 = 1 +24179185 goalCount = 0 +24179206 goalTotal = 0 +24179207 otherCount = 1 +~~~ +24179208 CURRENTGOAL IS [2] +~~~ +24183586 DOWN 11 +24183586 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24183630 homeCount = 4 +24183630 waitCount = 1 +24183631 ripCount = 1 +24183631 locktype1 = 1 +24183632 locktype2 = 0 +24183632 locktype3 = 1 +24183633 goalCount = 0 +24183633 goalTotal = 0 +24183634 otherCount = 1 +~~~ +24183635 CURRENTGOAL IS [2] +~~~ +24186519 UP 7 +24186519 64 255 +24186539 DOWN 7 +24186539 0 255 +~~~ +~~~ +~~~ +~~~ +24186563 0 254 +~~~ +~~~ +24186565 0 252 +~~~ +~~~ +24186567 0 248 +~~~ +~~~ +24186569 0 240 +~~~ +~~~ +24186571 0 224 +~~~ +~~~ +24186573 0 192 +~~~ +~~~ +24186574 0 128 +~~~ +~~~ +24186576 0 0 +~~~ +~~~ +24186578 0 512 +24186579 homeCount = 4 +24186580 waitCount = 1 +24186580 ripCount = 1 +24186581 locktype1 = 1 +24186581 locktype2 = 0 +24186602 locktype3 = 1 +24186602 goalCount = 0 +24186603 goalTotal = 0 +24186603 otherCount = 2 +~~~ +24186624 64 512 +24186990 DOWN 7 +24186990 0 512 +24187012 64 512 +24189589 DOWN 7 +24189589 0 512 +24189637 64 512 +24189704 DOWN 7 +24189704 0 512 +24196352 UP 10 +24196352 waslock = 0 +24196352 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24196378 512 16777728 +~~~ +24196528 512 512 +24196681 DOWN 10 +24196680 0 512 +~~~ +~~~ +24196702 0 1536 +~~~ +~~~ +24196704 0 1024 +24196705 homeCount = 5 +24196706 waitCount = 1 +24196706 ripCount = 1 +24196707 locktype1 = 1 +24196707 locktype2 = 0 +24196708 locktype3 = 1 +24196708 goalCount = 0 +24196709 goalTotal = 0 +24196709 otherCount = 2 +~~~ +24196730 UP 10 +24196731 waslock = 0 +24196730 512 1024 +~~~ +24200930 DOWN 10 +24200930 0 1024 +~~~ +~~~ +~~~ +~~~ +24200956 homeCount = 5 +24200957 waitCount = 1 +24200957 ripCount = 1 +24200958 locktype1 = 1 +24200958 locktype2 = 0 +24200959 locktype3 = 1 +24200960 goalCount = 0 +24200960 goalTotal = 0 +24200960 otherCount = 2 +~~~ +24200961 UP 10 +24200961 waslock = 0 +24200961 512 1024 +~~~ +24201037 DOWN 10 +24201037 0 1024 +~~~ +~~~ +~~~ +~~~ +24201065 homeCount = 5 +24201065 waitCount = 1 +24201066 ripCount = 1 +24201066 locktype1 = 1 +24201067 locktype2 = 0 +24201067 locktype3 = 1 +24201068 goalCount = 0 +24201068 goalTotal = 0 +24201069 otherCount = 2 +~~~ +24203157 UP 11 +24203157 1024 1024 +24203186 DOWN 11 +24203186 0 1024 +24203242 UP 11 +24203242 1024 1024 +24204343 DOWN 11 +24204343 0 1024 +24204378 UP 11 +24204378 1024 1024 +24204450 DOWN 11 +24204450 0 1024 +24204510 UP 11 +24204510 1024 1024 +24204657 BEEP1 +24204657 BEEP2 +~~~ +~~~ +~~~ +24204685 1024 33555456 +~~~ +24204835 1024 1024 +24208431 DOWN 11 +24208431 0 1024 +24208433 UP 11 +24208433 1024 1024 +~~~ +~~~ +24208455 1024 0 +~~~ +~~~ +24208457 1024 1 +~~~ +~~~ +24208459 1024 3 +~~~ +~~~ +24208460 1024 7 +~~~ +~~~ +24208462 1024 15 +~~~ +~~~ +24208464 1024 31 +~~~ +~~~ +24208466 1024 63 +~~~ +~~~ +24208468 1024 127 +~~~ +~~~ +24208469 1024 255 +24208470 homeCount = 5 +24208471 waitCount = 1 +24208472 ripCount = 2 +24208472 locktype1 = 1 +24208493 locktype2 = 0 +24208493 locktype3 = 1 +24208494 goalCount = 0 +24208494 goalTotal = 0 +24208495 otherCount = 2 +~~~ +24208496 CURRENTGOAL IS [2] +~~~ +24208558 DOWN 11 +24208558 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208599 UP 11 +24208599 1024 255 +24208600 homeCount = 5 +24208601 waitCount = 1 +24208601 ripCount = 2 +24208602 locktype1 = 1 +24208602 locktype2 = 0 +24208603 locktype3 = 1 +24208603 goalCount = 0 +24208604 goalTotal = 0 +24208604 otherCount = 2 +~~~ +24208626 CURRENTGOAL IS [2] +~~~ +24208626 DOWN 11 +24208626 0 255 +24208640 UP 11 +24208640 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208681 homeCount = 5 +24208682 waitCount = 1 +24208682 ripCount = 2 +24208683 locktype1 = 1 +24208684 locktype2 = 0 +24208684 locktype3 = 1 +24208685 goalCount = 0 +24208685 goalTotal = 0 +24208686 otherCount = 2 +~~~ +24208687 CURRENTGOAL IS [2] +~~~ +24208711 DOWN 11 +24208711 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208740 homeCount = 5 +24208741 waitCount = 1 +24208741 ripCount = 2 +24208742 locktype1 = 1 +24208742 locktype2 = 0 +24208743 locktype3 = 1 +24208743 goalCount = 0 +24208744 goalTotal = 0 +24208744 otherCount = 2 +~~~ +24208745 CURRENTGOAL IS [2] +~~~ +24208812 UP 11 +24208812 1024 255 +24208850 DOWN 11 +24208850 0 255 +24208860 UP 11 +24208860 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208893 homeCount = 5 +24208893 waitCount = 1 +24208894 ripCount = 2 +24208894 locktype1 = 1 +24208895 locktype2 = 0 +24208895 locktype3 = 1 +24208896 goalCount = 0 +24208896 goalTotal = 0 +24208897 otherCount = 2 +~~~ +24208898 CURRENTGOAL IS [2] +~~~ +24209074 DOWN 11 +24209074 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209106 UP 11 +24209106 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +24209112 homeCount = 5 +24209112 waitCount = 1 +24209113 ripCount = 2 +24209113 locktype1 = 1 +24209114 locktype2 = 0 +24209114 locktype3 = 1 +24209115 goalCount = 0 +24209115 goalTotal = 0 +24209116 otherCount = 2 +~~~ +24209117 CURRENTGOAL IS [2] +~~~ +24209145 DOWN 11 +24209145 0 255 +24209163 UP 11 +24209163 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209187 homeCount = 5 +24209188 waitCount = 1 +24209188 ripCount = 2 +24209189 locktype1 = 1 +24209189 locktype2 = 0 +24209190 locktype3 = 1 +24209190 goalCount = 0 +24209191 goalTotal = 0 +24209191 otherCount = 2 +~~~ +24209192 CURRENTGOAL IS [2] +~~~ +24209289 DOWN 11 +24209289 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209331 homeCount = 5 +24209332 waitCount = 1 +24209332 ripCount = 2 +24209333 locktype1 = 1 +24209333 locktype2 = 0 +24209334 locktype3 = 1 +24209334 goalCount = 0 +24209335 goalTotal = 0 +24209335 otherCount = 2 +~~~ +24209337 CURRENTGOAL IS [2] +~~~ +24212126 UP 5 +24212126 16 255 +~~~ +24212146 DOWN 5 +24212146 0 255 +~~~ +~~~ +~~~ +24212177 0 254 +~~~ +~~~ +24212178 0 252 +~~~ +~~~ +24212180 0 248 +~~~ +~~~ +24212182 0 240 +~~~ +~~~ +24212184 0 224 +~~~ +~~~ +24212186 0 192 +~~~ +~~~ +24212187 0 128 +~~~ +~~~ +24212189 0 0 +~~~ +~~~ +24212191 0 512 +24212192 homeCount = 5 +24212193 waitCount = 1 +24212193 ripCount = 2 +24212194 locktype1 = 1 +24212194 locktype2 = 0 +24212215 locktype3 = 1 +24212215 goalCount = 0 +24212216 goalTotal = 0 +24212216 otherCount = 3 +~~~ +24212469 16 512 +24212756 DOWN 5 +24212756 0 512 +24212762 16 512 +24213578 DOWN 5 +24213578 0 512 +24213590 16 512 +24213754 DOWN 5 +24213754 0 512 +24213774 16 512 +24214290 DOWN 5 +24214290 0 512 +24214316 16 512 +24214469 DOWN 5 +24214469 0 512 +24214501 16 512 +24214663 DOWN 5 +24214663 0 512 +24214680 16 512 +24214843 DOWN 5 +24214843 0 512 +24214884 16 512 +24215375 DOWN 5 +24215375 0 512 +24215398 16 512 +24215554 DOWN 5 +24215554 0 512 +24215575 16 512 +24216148 DOWN 5 +24216148 0 512 +24216172 16 512 +24216867 DOWN 5 +24216867 0 512 +24216888 16 512 +24216954 DOWN 5 +24216954 0 512 +24216960 16 512 +24217048 DOWN 5 +24217048 0 512 +24217080 16 512 +24217982 DOWN 5 +24217982 0 512 +24218106 16 512 +24218201 DOWN 5 +24218201 0 512 +24218225 16 512 +24218393 DOWN 5 +24218393 0 512 +24218402 16 512 +24218595 DOWN 5 +24218595 0 512 +24218607 16 512 +24218777 DOWN 5 +24218777 0 512 +24218799 16 512 +24218818 DOWN 5 +24218818 0 512 +24218852 16 512 +24218964 DOWN 5 +24218964 0 512 +24218986 16 512 +24219001 DOWN 5 +24219001 0 512 +24219056 16 512 +24219074 DOWN 5 +24219074 0 512 +24233913 UP 10 +24233913 waslock = 0 +24233913 512 512 +24233926 DOWN 10 +24233926 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24233953 0 16777728 +~~~ +~~~ +~~~ +24233956 0 16779776 +~~~ +~~~ +24233958 0 16779264 +24233959 homeCount = 6 +24233959 waitCount = 1 +24233960 ripCount = 2 +24233960 locktype1 = 1 +24233961 locktype2 = 0 +24233961 locktype3 = 1 +24233962 goalCount = 0 +24233962 goalTotal = 0 +24233963 otherCount = 3 +~~~ +24234035 UP 10 +24234035 waslock = 0 +24234035 512 16779264 +~~~ +24234103 512 2048 +24234151 DOWN 10 +24234151 0 2048 +~~~ +~~~ +~~~ +~~~ +24234174 homeCount = 6 +24234175 waitCount = 1 +24234175 ripCount = 2 +24234176 locktype1 = 1 +24234176 locktype2 = 0 +24234177 locktype3 = 1 +24234177 goalCount = 0 +24234178 goalTotal = 0 +24234178 otherCount = 3 +~~~ +24234246 UP 10 +24234246 waslock = 0 +24234246 512 2048 +~~~ +24234719 DOWN 10 +24234719 0 2048 +24234733 UP 10 +24234733 waslock = 0 +24234733 512 2048 +~~~ +~~~ +~~~ +~~~ +24234756 homeCount = 6 +24234757 waitCount = 1 +24234757 ripCount = 2 +24234758 locktype1 = 1 +24234758 locktype2 = 0 +24234759 locktype3 = 1 +24234759 goalCount = 0 +24234760 goalTotal = 0 +24234760 otherCount = 3 +~~~ +~~~ +24234879 DOWN 10 +24234879 0 2048 +24234898 UP 10 +24234899 waslock = 0 +24234898 512 2048 +~~~ +~~~ +~~~ +~~~ +24234904 homeCount = 6 +24234904 waitCount = 1 +24234905 ripCount = 2 +24234905 locktype1 = 1 +24234906 locktype2 = 0 +24234906 locktype3 = 1 +24234907 goalCount = 0 +24234907 goalTotal = 0 +24234908 otherCount = 3 +~~~ +~~~ +24235038 DOWN 10 +24235038 0 2048 +24235063 UP 10 +24235064 waslock = 0 +24235063 512 2048 +~~~ +~~~ +~~~ +~~~ +24235074 homeCount = 6 +24235074 waitCount = 1 +24235075 ripCount = 2 +24235075 locktype1 = 1 +24235076 locktype2 = 0 +24235076 locktype3 = 1 +24235077 goalCount = 0 +24235077 goalTotal = 0 +24235078 otherCount = 3 +~~~ +~~~ +24238546 DOWN 10 +24238546 0 2048 +24238564 UP 10 +24238564 waslock = 0 +24238564 512 2048 +~~~ +~~~ +~~~ +~~~ +24238587 homeCount = 6 +24238588 waitCount = 1 +24238588 ripCount = 2 +24238589 locktype1 = 1 +24238589 locktype2 = 0 +24238590 locktype3 = 1 +24238590 goalCount = 0 +24238591 goalTotal = 0 +24238591 otherCount = 3 +~~~ +~~~ +24238665 DOWN 10 +24238665 0 2048 +~~~ +~~~ +~~~ +~~~ +24238694 homeCount = 6 +24238694 waitCount = 1 +24238695 ripCount = 2 +24238695 locktype1 = 1 +24238696 locktype2 = 0 +24238696 locktype3 = 1 +24238697 goalCount = 0 +24238697 goalTotal = 0 +24238698 otherCount = 3 +~~~ +24238715 UP 10 +24238715 waslock = 0 +24238715 512 2048 +~~~ +24238760 DOWN 10 +24238760 0 2048 +~~~ +~~~ +~~~ +~~~ +24238786 homeCount = 6 +24238787 waitCount = 1 +24238787 ripCount = 2 +24238788 locktype1 = 1 +24238788 locktype2 = 0 +24238789 locktype3 = 1 +24238789 goalCount = 0 +24238790 goalTotal = 0 +24238790 otherCount = 3 +~~~ +24240420 UP 12 +24240420 2048 2048 +24241195 DOWN 12 +24241195 0 2048 +24241237 UP 12 +24241237 2048 2048 +24241466 DOWN 12 +24241466 0 2048 +24241603 UP 12 +24241603 2048 2048 +24241920 CLICK1 +24241920 CLICK2 +~~~ +~~~ +~~~ +24241942 2048 67110912 +~~~ +24242092 2048 2048 +24248498 DOWN 12 +24248498 0 2048 +~~~ +~~~ +24248521 0 0 +~~~ +~~~ +24248523 UP 12 +24248523 2048 1 +~~~ +~~~ +24248525 2048 3 +~~~ +~~~ +24248526 2048 7 +~~~ +~~~ +24248528 2048 15 +~~~ +~~~ +24248530 2048 31 +~~~ +~~~ +24248532 2048 63 +~~~ +~~~ +24248533 2048 127 +~~~ +~~~ +24248535 2048 255 +24248536 homeCount = 6 +24248537 waitCount = 2 +24248537 ripCount = 2 +24248559 locktype1 = 1 +24248559 locktype2 = 0 +24248560 locktype3 = 1 +24248560 goalCount = 0 +24248561 goalTotal = 0 +24248561 otherCount = 3 +~~~ +24248562 CURRENTGOAL IS [2] +~~~ +24248563 DOWN 12 +24248563 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24248619 homeCount = 6 +24248619 waitCount = 2 +24248620 ripCount = 2 +24248620 locktype1 = 1 +24248621 locktype2 = 0 +24248621 locktype3 = 1 +24248622 goalCount = 0 +24248622 goalTotal = 0 +24248623 otherCount = 3 +~~~ +24248624 CURRENTGOAL IS [2] +~~~ +24251525 UP 1 +24251524 1 255 +~~~ +~~~ +24252734 DOWN 1 +24252734 0 255 +24252741 1 255 +~~~ +~~~ +24252757 1 254 +~~~ +~~~ +24252759 1 252 +~~~ +~~~ +24252760 1 248 +~~~ +~~~ +24252762 1 240 +~~~ +~~~ +24252764 1 224 +~~~ +~~~ +24252766 1 192 +~~~ +~~~ +24252768 1 128 +~~~ +~~~ +24252769 1 0 +~~~ +~~~ +24252771 1 512 +24252772 homeCount = 6 +24252773 waitCount = 2 +24252773 ripCount = 2 +24252774 locktype1 = 1 +24252774 locktype2 = 0 +24252795 locktype3 = 1 +24252796 goalCount = 0 +24252796 goalTotal = 0 +24252797 otherCount = 4 +~~~ +24253082 DOWN 1 +24253082 0 512 +24253096 1 512 +24253270 DOWN 1 +24253270 0 512 +24253278 1 512 +24253999 DOWN 1 +24253999 0 512 +24254012 1 512 +24254185 DOWN 1 +24254185 0 512 +24254197 1 512 +24254296 DOWN 1 +24254296 0 512 +24254647 1 512 +24254672 DOWN 1 +24254672 0 512 +24262772 UP 10 +24262773 waslock = 0 +24262772 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24262798 512 16777728 +~~~ +24262832 DOWN 10 +24262832 0 16777728 +~~~ +~~~ +24262851 0 16778752 +~~~ +~~~ +24262853 0 16778240 +24262854 homeCount = 7 +24262855 waitCount = 2 +24262855 ripCount = 2 +24262856 locktype1 = 1 +24262856 locktype2 = 0 +24262857 locktype3 = 1 +24262857 goalCount = 0 +24262858 goalTotal = 0 +24262858 otherCount = 4 +~~~ +24262879 UP 10 +24262879 waslock = 0 +24262879 512 16778240 +~~~ +24262948 512 1024 +24262970 DOWN 10 +24262970 0 1024 +~~~ +~~~ +~~~ +~~~ +24262994 homeCount = 7 +24262995 waitCount = 2 +24262995 ripCount = 2 +24262996 locktype1 = 1 +24262996 locktype2 = 0 +24262997 locktype3 = 1 +24262997 goalCount = 0 +24262998 goalTotal = 0 +24262998 otherCount = 4 +~~~ +24263099 UP 10 +24263099 waslock = 0 +24263099 512 1024 +~~~ +24263849 DOWN 10 +24263849 0 1024 +24263863 UP 10 +24263863 waslock = 0 +24263863 512 1024 +~~~ +~~~ +~~~ +~~~ +24263874 homeCount = 7 +24263874 waitCount = 2 +24263875 ripCount = 2 +24263875 locktype1 = 1 +24263876 locktype2 = 0 +24263876 locktype3 = 1 +24263877 goalCount = 0 +24263877 goalTotal = 0 +24263878 otherCount = 4 +~~~ +~~~ +24266888 DOWN 10 +24266888 0 1024 +~~~ +~~~ +~~~ +~~~ +24266911 homeCount = 7 +24266912 waitCount = 2 +24266912 ripCount = 2 +24266913 locktype1 = 1 +24266913 locktype2 = 0 +24266914 locktype3 = 1 +24266914 goalCount = 0 +24266915 goalTotal = 0 +24266915 otherCount = 4 +~~~ +24266933 UP 10 +24266933 waslock = 0 +24266933 512 1024 +~~~ +24266988 DOWN 10 +24266988 0 1024 +~~~ +~~~ +~~~ +~~~ +24267015 homeCount = 7 +24267016 waitCount = 2 +24267016 ripCount = 2 +24267017 locktype1 = 1 +24267017 locktype2 = 0 +24267018 locktype3 = 1 +24267018 goalCount = 0 +24267019 goalTotal = 0 +24267019 otherCount = 4 +~~~ +24271770 UP 11 +24271770 1024 1024 +24273771 BEEP1 +24273771 BEEP2 +~~~ +~~~ +~~~ +24273793 1024 33555456 +~~~ +24273943 1024 1024 +24277448 DOWN 11 +24277448 0 1024 +~~~ +~~~ +24277475 0 0 +~~~ +~~~ +24277476 0 1 +~~~ +~~~ +24277478 0 3 +~~~ +~~~ +24277480 0 7 +~~~ +~~~ +24277482 0 15 +~~~ +~~~ +24277484 0 31 +~~~ +24277485 UP 11 +24277485 1024 31 +~~~ +~~~ +24277487 1024 63 +~~~ +~~~ +24277489 1024 127 +~~~ +24277490 1024 255 +24277491 homeCount = 7 +24277491 waitCount = 2 +24277512 ripCount = 3 +24277513 locktype1 = 1 +24277513 locktype2 = 0 +24277514 locktype3 = 1 +24277514 goalCount = 0 +24277515 goalTotal = 0 +24277515 otherCount = 4 +~~~ +24277517 CURRENTGOAL IS [2] +~~~ +24277552 DOWN 11 +24277552 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24277592 homeCount = 7 +24277593 waitCount = 2 +24277593 ripCount = 3 +24277594 locktype1 = 1 +24277594 locktype2 = 0 +24277595 locktype3 = 1 +24277596 goalCount = 0 +24277596 goalTotal = 0 +24277597 otherCount = 4 +~~~ +24277598 CURRENTGOAL IS [2] +~~~ +24281549 UP 8 +24281549 128 255 +~~~ +~~~ +24281853 DOWN 8 +24281853 0 255 +~~~ +~~~ +24281878 0 254 +~~~ +~~~ +24281880 0 252 +~~~ +~~~ +24281882 0 248 +~~~ +~~~ +24281883 0 240 +~~~ +~~~ +24281885 0 224 +~~~ +~~~ +24281887 0 192 +~~~ +~~~ +24281889 0 128 +~~~ +~~~ +24281891 0 0 +~~~ +~~~ +24281893 0 512 +24281893 homeCount = 7 +24281894 waitCount = 2 +24281895 ripCount = 3 +24281895 locktype1 = 1 +24281895 locktype2 = 0 +24281916 locktype3 = 1 +24281917 goalCount = 0 +24281917 goalTotal = 0 +24281918 otherCount = 5 +~~~ +24281918 128 512 +24282421 DOWN 8 +24282421 0 512 +24286521 UP 10 +24286521 waslock = 0 +24286521 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24286555 512 16777728 +~~~ +24286705 512 512 +24286795 DOWN 10 +24286795 0 512 +~~~ +~~~ +24286820 0 2560 +~~~ +~~~ +24286822 0 2048 +24286823 homeCount = 8 +24286823 waitCount = 2 +24286824 ripCount = 3 +24286824 locktype1 = 1 +24286825 locktype2 = 0 +24286825 locktype3 = 1 +24286826 goalCount = 0 +24286826 goalTotal = 0 +24286827 otherCount = 5 +~~~ +24286920 UP 10 +24286920 waslock = 0 +24286920 512 2048 +~~~ +24287572 DOWN 10 +24287572 0 2048 +24287592 UP 10 +24287592 waslock = 0 +24287592 512 2048 +~~~ +~~~ +~~~ +~~~ +24287596 homeCount = 8 +24287597 waitCount = 2 +24287597 ripCount = 3 +24287598 locktype1 = 1 +24287598 locktype2 = 0 +24287599 locktype3 = 1 +24287599 goalCount = 0 +24287600 goalTotal = 0 +24287600 otherCount = 5 +~~~ +~~~ +24291624 DOWN 10 +24291624 0 2048 +~~~ +~~~ +~~~ +~~~ +24291653 homeCount = 8 +24291653 waitCount = 2 +24291654 ripCount = 3 +24291654 locktype1 = 1 +24291655 locktype2 = 0 +24291655 locktype3 = 1 +24291656 goalCount = 0 +24291656 goalTotal = 0 +24291657 otherCount = 5 +~~~ +24291697 UP 10 +24291698 waslock = 0 +24291697 512 2048 +24291715 DOWN 10 +24291715 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +24291743 homeCount = 8 +24291743 waitCount = 2 +24291744 ripCount = 3 +24291744 locktype1 = 1 +24291745 locktype2 = 0 +24291745 locktype3 = 1 +24291746 goalCount = 0 +24291746 goalTotal = 0 +24291746 otherCount = 5 +~~~ +24293130 UP 12 +24293130 2048 2048 +24293155 DOWN 12 +24293155 0 2048 +24293209 UP 12 +24293209 2048 2048 +24294378 DOWN 12 +24294378 0 2048 +24294428 UP 12 +24294428 2048 2048 +24295131 CLICK1 +24295131 CLICK2 +~~~ +~~~ +~~~ +24295153 2048 67110912 +~~~ +24295303 2048 2048 +24300097 DOWN 12 +24300097 0 2048 +~~~ +~~~ +24300119 0 0 +~~~ +~~~ +24300121 0 1 +~~~ +~~~ +24300123 0 3 +~~~ +~~~ +24300125 0 7 +~~~ +~~~ +24300127 0 15 +~~~ +~~~ +24300129 0 31 +~~~ +~~~ +24300130 0 63 +~~~ +~~~ +24300132 0 127 +~~~ +~~~ +24300134 0 255 +24300135 homeCount = 8 +24300136 waitCount = 3 +24300136 ripCount = 3 +24300137 locktype1 = 1 +24300137 locktype2 = 0 +24300158 locktype3 = 1 +24300158 goalCount = 0 +24300159 goalTotal = 0 +24300159 otherCount = 5 +~~~ +24300160 CURRENTGOAL IS [2] +~~~ +24303861 UP 3 +24303861 4 255 +~~~ +~~~ +24304128 DOWN 3 +24304128 0 255 +~~~ +~~~ +24304149 0 254 +~~~ +~~~ +24304151 0 252 +~~~ +~~~ +24304153 0 248 +~~~ +~~~ +24304155 0 240 +~~~ +~~~ +24304157 0 224 +~~~ +~~~ +24304158 0 192 +~~~ +~~~ +24304160 0 128 +~~~ +~~~ +24304162 0 0 +~~~ +~~~ +24304164 0 512 +24304165 homeCount = 8 +24304165 waitCount = 3 +24304166 ripCount = 3 +24304166 locktype1 = 1 +24304188 locktype2 = 0 +24304188 locktype3 = 1 +24304189 goalCount = 0 +24304189 goalTotal = 0 +24304190 otherCount = 6 +~~~ +24305317 4 512 +24305742 DOWN 3 +24305742 0 512 +24309794 UP 10 +24309795 waslock = 0 +24309794 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24309826 512 16777728 +~~~ +24309976 512 512 +24310016 DOWN 10 +24310016 0 512 +~~~ +~~~ +24310043 0 1536 +~~~ +~~~ +24310045 0 1024 +24310046 homeCount = 9 +24310047 waitCount = 3 +24310047 ripCount = 3 +24310048 locktype1 = 1 +24310048 locktype2 = 0 +24310049 locktype3 = 1 +24310049 goalCount = 0 +24310050 goalTotal = 0 +24310050 otherCount = 6 +~~~ +24310071 UP 10 +24310072 waslock = 0 +24310071 512 1024 +~~~ +24316271 DOWN 10 +24316271 0 1024 +~~~ +~~~ +~~~ +~~~ +24316293 homeCount = 9 +24316294 waitCount = 3 +24316294 ripCount = 3 +24316295 locktype1 = 1 +24316295 locktype2 = 0 +24316296 locktype3 = 1 +24316296 goalCount = 0 +24316297 goalTotal = 0 +24316297 otherCount = 6 +~~~ +24316327 UP 10 +24316327 waslock = 0 +24316327 512 1024 +~~~ +24316347 DOWN 10 +24316347 0 1024 +~~~ +~~~ +~~~ +~~~ +24316382 homeCount = 9 +24316383 waitCount = 3 +24316383 ripCount = 3 +24316384 locktype1 = 1 +24316384 locktype2 = 0 +24316385 locktype3 = 1 +24316385 goalCount = 0 +24316386 goalTotal = 0 +24316386 otherCount = 6 +~~~ +24317934 UP 11 +24317934 1024 1024 +24319937 DOWN 11 +24319937 0 1024 +24319996 UP 11 +24319996 1024 1024 +24321434 BEEP1 +24321434 BEEP2 +~~~ +~~~ +~~~ +24321456 1024 33555456 +~~~ +24321606 1024 1024 +24325737 DOWN 11 +24325737 0 1024 +~~~ +~~~ +24325761 0 0 +~~~ +~~~ +24325762 0 1 +~~~ +~~~ +24325764 0 3 +~~~ +~~~ +24325766 0 7 +~~~ +24325767 UP 11 +24325767 1024 7 +~~~ +~~~ +24325769 1024 15 +~~~ +~~~ +24325771 1024 31 +~~~ +~~~ +24325773 1024 63 +~~~ +24325774 1024 127 +~~~ +~~~ +24325775 1024 255 +24325776 homeCount = 9 +24325777 waitCount = 3 +24325798 ripCount = 4 +24325799 locktype1 = 1 +24325799 locktype2 = 0 +24325800 locktype3 = 1 +24325800 goalCount = 0 +24325801 goalTotal = 0 +24325801 otherCount = 6 +~~~ +24325802 CURRENTGOAL IS [2] +~~~ +24325834 DOWN 11 +24325834 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24325867 homeCount = 9 +24325867 waitCount = 3 +24325868 ripCount = 4 +24325868 locktype1 = 1 +24325869 locktype2 = 0 +24325870 locktype3 = 1 +24325870 goalCount = 0 +24325871 goalTotal = 0 +24325871 otherCount = 6 +~~~ +24325872 CURRENTGOAL IS [2] +~~~ +24328994 UP 7 +24328994 64 255 +~~~ +~~~ +24329409 DOWN 7 +24329409 0 255 +~~~ +~~~ +24329431 0 254 +~~~ +~~~ +24329433 0 252 +~~~ +~~~ +24329434 0 248 +~~~ +~~~ +24329436 0 240 +~~~ +~~~ +24329438 0 224 +~~~ +~~~ +24329440 0 192 +~~~ +~~~ +24329442 0 128 +~~~ +~~~ +24329444 0 0 +~~~ +~~~ +24329445 0 512 +24329446 homeCount = 9 +24329447 waitCount = 3 +24329447 ripCount = 4 +24329448 locktype1 = 1 +24329448 locktype2 = 0 +24329470 locktype3 = 1 +24329470 goalCount = 0 +24329471 goalTotal = 0 +24329471 otherCount = 7 +~~~ +24329556 64 512 +24330105 DOWN 7 +24330105 0 512 +24330111 64 512 +24330227 DOWN 7 +24330227 0 512 +24330263 64 512 +24330369 DOWN 7 +24330369 0 512 +24334809 UP 10 +24334810 waslock = 0 +24334809 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24334837 512 16777728 +~~~ +24334987 512 512 +24335207 DOWN 10 +24335207 0 512 +~~~ +~~~ +24335235 0 2560 +~~~ +~~~ +24335237 0 2048 +24335238 homeCount = 10 +24335238 waitCount = 3 +24335239 ripCount = 4 +24335239 locktype1 = 1 +24335240 locktype2 = 0 +24335240 locktype3 = 1 +24335241 goalCount = 0 +24335241 goalTotal = 0 +24335242 otherCount = 7 +~~~ +24335265 UP 10 +24335265 waslock = 0 +24335265 512 2048 +~~~ +24338650 DOWN 10 +24338650 0 2048 +~~~ +~~~ +~~~ +~~~ +24338675 homeCount = 10 +24338675 waitCount = 3 +24338676 ripCount = 4 +24338676 locktype1 = 1 +24338677 locktype2 = 0 +24338677 locktype3 = 1 +24338678 goalCount = 0 +24338678 goalTotal = 0 +24338679 otherCount = 7 +~~~ +24340261 UP 12 +24340261 2048 2048 +24342412 DOWN 12 +24342411 0 2048 +24342434 UP 12 +24342434 2048 2048 +24343011 CLICK1 +24343011 CLICK2 +~~~ +~~~ +~~~ +24343038 2048 67110912 +~~~ +24343188 2048 2048 +24349505 DOWN 12 +24349505 0 2048 +~~~ +~~~ +24349532 0 0 +~~~ +~~~ +24349534 0 1 +~~~ +~~~ +24349536 0 3 +~~~ +~~~ +24349538 0 7 +~~~ +~~~ +24349540 0 15 +~~~ +~~~ +24349541 0 31 +~~~ +~~~ +24349543 0 63 +~~~ +~~~ +24349545 0 127 +~~~ +~~~ +24349547 0 255 +24349548 homeCount = 10 +24349548 waitCount = 4 +24349549 ripCount = 4 +24349549 locktype1 = 1 +24349550 locktype2 = 0 +24349571 locktype3 = 1 +24349571 goalCount = 0 +24349572 goalTotal = 0 +24349572 otherCount = 7 +~~~ +24349573 CURRENTGOAL IS [2] +~~~ +24349574 UP 12 +24349574 2048 255 +24349612 DOWN 12 +24349612 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24349653 homeCount = 10 +24349653 waitCount = 4 +24349654 ripCount = 4 +24349654 locktype1 = 1 +24349655 locktype2 = 0 +24349655 locktype3 = 1 +24349656 goalCount = 0 +24349656 goalTotal = 0 +24349657 otherCount = 7 +~~~ +24349658 CURRENTGOAL IS [2] +~~~ +24357745 UP 4 +24357745 8 255 +~~~ +~~~ +24358074 DOWN 4 +24358074 0 255 +~~~ +~~~ +24358096 0 254 +~~~ +~~~ +24358098 0 252 +~~~ +24358099 8 252 +~~~ +~~~ +24358101 8 248 +~~~ +24358102 8 240 +~~~ +~~~ +24358104 8 224 +~~~ +~~~ +24358105 8 192 +~~~ +~~~ +24358107 8 128 +~~~ +~~~ +24358109 8 0 +~~~ +~~~ +24358111 8 512 +24358112 homeCount = 10 +24358112 waitCount = 4 +24358113 ripCount = 4 +24358134 locktype1 = 1 +24358135 locktype2 = 0 +24358135 locktype3 = 1 +24358136 goalCount = 0 +24358136 goalTotal = 0 +24358137 otherCount = 8 +~~~ +24361306 DOWN 4 +24361306 0 512 +24361341 8 512 +24361402 DOWN 4 +24361402 0 512 +24368998 UP 10 +24368998 waslock = 0 +24368998 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24369024 512 16777728 +~~~ +24369174 512 512 +24369202 DOWN 10 +24369202 0 512 +~~~ +~~~ +24369219 0 2560 +~~~ +~~~ +24369221 0 2048 +24369222 homeCount = 11 +24369222 waitCount = 4 +24369223 ripCount = 4 +24369223 locktype1 = 1 +24369224 locktype2 = 0 +24369224 locktype3 = 1 +24369225 goalCount = 0 +24369225 goalTotal = 0 +24369226 otherCount = 8 +~~~ +24369297 UP 10 +24369297 waslock = 0 +24369297 512 2048 +~~~ +24369593 DOWN 10 +24369593 0 2048 +24369603 UP 10 +24369604 waslock = 0 +24369603 512 2048 +~~~ +~~~ +~~~ +~~~ +24369622 homeCount = 11 +24369622 waitCount = 4 +24369623 ripCount = 4 +24369623 locktype1 = 1 +24369624 locktype2 = 0 +24369624 locktype3 = 1 +24369625 goalCount = 0 +24369625 goalTotal = 0 +24369626 otherCount = 8 +~~~ +~~~ +24373779 DOWN 10 +24373779 0 2048 +24373792 UP 10 +24373793 waslock = 0 +24373792 512 2048 +~~~ +~~~ +~~~ +~~~ +24373815 homeCount = 11 +24373816 waitCount = 4 +24373816 ripCount = 4 +24373817 locktype1 = 1 +24373817 locktype2 = 0 +24373818 locktype3 = 1 +24373818 goalCount = 0 +24373819 goalTotal = 0 +24373819 otherCount = 8 +~~~ +~~~ +24373870 DOWN 10 +24373870 0 2048 +~~~ +~~~ +~~~ +~~~ +24373899 homeCount = 11 +24373899 waitCount = 4 +24373900 ripCount = 4 +24373900 locktype1 = 1 +24373901 locktype2 = 0 +24373901 locktype3 = 1 +24373902 goalCount = 0 +24373902 goalTotal = 0 +24373903 otherCount = 8 +~~~ +24375836 UP 12 +24375835 2048 2048 +24378836 CLICK1 +24378836 CLICK2 +~~~ +~~~ +~~~ +24378857 2048 67110912 +~~~ +24379007 2048 2048 +24384231 DOWN 12 +24384231 0 2048 +~~~ +~~~ +24384256 0 0 +~~~ +~~~ +24384258 0 1 +~~~ +~~~ +24384260 0 3 +~~~ +~~~ +24384262 0 7 +~~~ +~~~ +24384263 0 15 +~~~ +~~~ +24384265 0 31 +~~~ +~~~ +24384267 0 63 +~~~ +~~~ +24384269 0 127 +~~~ +~~~ +24384271 0 255 +24384272 homeCount = 11 +24384272 waitCount = 5 +24384273 ripCount = 4 +24384273 locktype1 = 1 +24384274 locktype2 = 0 +24384295 locktype3 = 1 +24384296 goalCount = 0 +24384296 goalTotal = 0 +24384297 otherCount = 8 +~~~ +24384298 CURRENTGOAL IS [2] +~~~ +24384298 UP 12 +24384298 2048 255 +24384325 DOWN 12 +24384325 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24384360 homeCount = 11 +24384361 waitCount = 5 +24384361 ripCount = 4 +24384362 locktype1 = 1 +24384362 locktype2 = 0 +24384363 locktype3 = 1 +24384363 goalCount = 0 +24384364 goalTotal = 0 +24384364 otherCount = 8 +~~~ +24384365 CURRENTGOAL IS [2] +~~~ +24389237 UP 6 +24389236 32 255 +~~~ +~~~ +24389519 DOWN 6 +24389519 0 255 +24389542 32 255 +~~~ +~~~ +24389544 32 254 +~~~ +~~~ +24389546 32 252 +~~~ +~~~ +24389548 32 248 +~~~ +~~~ +24389549 32 240 +~~~ +~~~ +24389551 32 224 +~~~ +~~~ +24389553 32 192 +~~~ +~~~ +24389555 32 128 +~~~ +~~~ +24389557 32 0 +~~~ +~~~ +24389559 32 512 +24389560 homeCount = 11 +24389560 waitCount = 5 +24389561 ripCount = 4 +24389582 locktype1 = 1 +24389582 locktype2 = 0 +24389583 locktype3 = 1 +24389583 goalCount = 0 +24389584 goalTotal = 0 +24389584 otherCount = 9 +~~~ +24392219 DOWN 6 +24392219 0 512 +24392230 32 512 +24393458 DOWN 6 +24393458 0 512 +24393466 32 512 +24393642 DOWN 6 +24393642 0 512 +24393651 32 512 +24393817 DOWN 6 +24393817 0 512 +24393821 32 512 +24393825 DOWN 6 +24393825 0 512 +24393836 32 512 +24394208 DOWN 6 +24394207 0 512 +24394217 32 512 +24394415 DOWN 6 +24394415 0 512 +24394427 32 512 +24394798 DOWN 6 +24394798 0 512 +24394811 32 512 +24394998 DOWN 6 +24394998 0 512 +24395017 32 512 +24395073 DOWN 6 +24395073 0 512 +24395092 32 512 +24395192 DOWN 6 +24395192 0 512 +24395196 32 512 +24395200 DOWN 6 +24395200 0 512 +24395237 32 512 +24395252 DOWN 6 +24395252 0 512 +24395263 32 512 +24395284 DOWN 6 +24395284 0 512 +24395295 32 512 +24395361 DOWN 6 +24395361 0 512 +24395449 32 512 +24395489 DOWN 6 +24395489 0 512 +24402448 UP 10 +24402449 waslock = 0 +24402448 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24402483 512 16777728 +~~~ +24402602 DOWN 10 +24402602 0 16777728 +~~~ +~~~ +24402626 0 16778752 +~~~ +~~~ +24402628 0 16778240 +24402629 homeCount = 12 +24402630 waitCount = 5 +24402630 ripCount = 4 +24402631 locktype1 = 1 +24402631 locktype2 = 0 +24402632 locktype3 = 1 +24402632 goalCount = 0 +24402633 goalTotal = 0 +24402633 otherCount = 9 +~~~ +24402654 0 1024 +24402740 UP 10 +24402740 waslock = 0 +24402740 512 1024 +~~~ +24408234 DOWN 10 +24408234 0 1024 +~~~ +~~~ +~~~ +~~~ +24408258 homeCount = 12 +24408259 waitCount = 5 +24408259 ripCount = 4 +24408260 locktype1 = 1 +24408260 locktype2 = 0 +24408261 locktype3 = 1 +24408261 goalCount = 0 +24408262 goalTotal = 0 +24408262 otherCount = 9 +~~~ +24408263 UP 10 +24408263 waslock = 0 +24408263 512 1024 +~~~ +24408328 DOWN 10 +24408328 0 1024 +~~~ +~~~ +~~~ +~~~ +24408348 homeCount = 12 +24408349 waitCount = 5 +24408349 ripCount = 4 +24408350 locktype1 = 1 +24408350 locktype2 = 0 +24408351 locktype3 = 1 +24408351 goalCount = 0 +24408352 goalTotal = 0 +24408352 otherCount = 9 +~~~ +24410668 UP 11 +24410668 1024 1024 +24411491 DOWN 11 +24411491 0 1024 +24411562 UP 11 +24411562 1024 1024 +24412763 DOWN 11 +24412763 0 1024 +24412794 UP 11 +24412794 1024 1024 +24415418 BEEP1 +24415418 BEEP2 +~~~ +~~~ +~~~ +24415438 1024 33555456 +~~~ +24415588 1024 1024 +24420194 DOWN 11 +24420194 0 1024 +~~~ +~~~ +24420218 0 0 +~~~ +~~~ +24420220 0 1 +~~~ +~~~ +24420222 0 3 +~~~ +~~~ +24420223 0 7 +~~~ +~~~ +24420225 0 15 +~~~ +24420227 UP 11 +24420227 1024 15 +~~~ +~~~ +24420229 1024 31 +~~~ +~~~ +24420230 1024 63 +~~~ +~~~ +24420232 1024 127 +~~~ +24420233 1024 255 +24420234 homeCount = 12 +24420235 waitCount = 5 +24420256 ripCount = 5 +24420256 locktype1 = 1 +24420257 locktype2 = 0 +24420257 locktype3 = 1 +24420258 goalCount = 0 +24420258 goalTotal = 0 +24420259 otherCount = 9 +~~~ +24420260 CURRENTGOAL IS [2] +~~~ +24420296 DOWN 11 +24420296 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24420332 homeCount = 12 +24420332 waitCount = 5 +24420333 ripCount = 5 +24420333 locktype1 = 1 +24420334 locktype2 = 0 +24420334 locktype3 = 1 +24420335 goalCount = 0 +24420335 goalTotal = 0 +24420336 otherCount = 9 +~~~ +24420337 CURRENTGOAL IS [2] +~~~ +24426866 UP 5 +24426866 16 255 +~~~ +~~~ +24426890 DOWN 5 +24426890 0 255 +~~~ +~~~ +24426907 0 254 +~~~ +~~~ +24426909 0 252 +~~~ +~~~ +24426911 0 248 +~~~ +~~~ +24426913 0 240 +~~~ +~~~ +24426915 0 224 +~~~ +~~~ +24426917 0 192 +~~~ +~~~ +24426918 0 128 +~~~ +~~~ +24426920 0 0 +~~~ +~~~ +24426922 0 512 +24426923 homeCount = 12 +24426924 waitCount = 5 +24426924 ripCount = 5 +24426925 locktype1 = 1 +24426925 locktype2 = 0 +24426946 locktype3 = 1 +24426946 goalCount = 0 +24426947 goalTotal = 0 +24426947 otherCount = 10 +~~~ +24426979 16 512 +24427073 DOWN 5 +24427072 0 512 +24427218 16 512 +24429575 DOWN 5 +24429575 0 512 +24434372 UP 10 +24434372 waslock = 0 +24434372 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24434403 512 16777728 +~~~ +24434419 DOWN 10 +24434419 0 16777728 +~~~ +~~~ +24434438 0 16778752 +~~~ +~~~ +24434440 0 16778240 +24434441 homeCount = 13 +24434441 waitCount = 5 +24434442 ripCount = 5 +24434442 locktype1 = 1 +24434443 locktype2 = 0 +24434443 locktype3 = 1 +24434444 goalCount = 0 +24434444 goalTotal = 0 +24434445 otherCount = 10 +~~~ +24434477 UP 10 +24434477 waslock = 0 +24434477 512 16778240 +~~~ +24434553 512 1024 +24434651 DOWN 10 +24434651 0 1024 +~~~ +~~~ +~~~ +~~~ +24434677 homeCount = 13 +24434677 waitCount = 5 +24434678 ripCount = 5 +24434678 locktype1 = 1 +24434679 locktype2 = 0 +24434679 locktype3 = 1 +24434680 goalCount = 0 +24434680 goalTotal = 0 +24434681 otherCount = 10 +~~~ +24434692 UP 10 +24434692 waslock = 0 +24434692 512 1024 +~~~ +24438070 DOWN 10 +24438070 0 1024 +~~~ +~~~ +~~~ +~~~ +24438094 homeCount = 13 +24438095 waitCount = 5 +24438096 ripCount = 5 +24438096 locktype1 = 1 +24438096 locktype2 = 0 +24438097 locktype3 = 1 +24438097 goalCount = 0 +24438098 goalTotal = 0 +24438098 otherCount = 10 +~~~ +24438103 UP 10 +24438103 waslock = 0 +24438103 512 1024 +~~~ +24438161 DOWN 10 +24438161 0 1024 +~~~ +~~~ +~~~ +~~~ +24438185 homeCount = 13 +24438186 waitCount = 5 +24438186 ripCount = 5 +24438187 locktype1 = 1 +24438187 locktype2 = 0 +24438188 locktype3 = 1 +24438188 goalCount = 0 +24438189 goalTotal = 0 +24438189 otherCount = 10 +~~~ +24440662 UP 11 +24440662 1024 1024 +24442855 DOWN 11 +24442855 0 1024 +24442904 UP 11 +24442904 1024 1024 +24443662 BEEP1 +24443662 BEEP2 +~~~ +~~~ +~~~ +24443685 1024 33555456 +~~~ +24443834 1024 1024 +24451080 DOWN 11 +24451079 0 1024 +~~~ +~~~ +24451102 0 0 +~~~ +~~~ +24451104 0 1 +~~~ +~~~ +24451106 0 3 +~~~ +~~~ +24451108 0 7 +~~~ +~~~ +24451109 0 15 +~~~ +~~~ +24451111 0 31 +~~~ +~~~ +24451113 0 63 +~~~ +~~~ +24451115 0 127 +~~~ +~~~ +24451117 0 255 +24451118 homeCount = 13 +24451118 waitCount = 5 +24451119 ripCount = 6 +24451119 locktype1 = 1 +24451120 locktype2 = 0 +24451141 locktype3 = 1 +24451141 goalCount = 0 +24451142 goalTotal = 0 +24451142 otherCount = 10 +~~~ +24451143 CURRENTGOAL IS [2] +~~~ +24460605 UP 3 +24460605 4 255 +~~~ +~~~ +24461083 DOWN 3 +24461083 0 255 +~~~ +~~~ +24461101 0 254 +~~~ +~~~ +24461102 0 252 +~~~ +~~~ +24461104 0 248 +~~~ +~~~ +24461106 0 240 +~~~ +~~~ +24461108 0 224 +~~~ +~~~ +24461110 0 192 +~~~ +~~~ +24461112 0 128 +~~~ +~~~ +24461113 0 0 +~~~ +~~~ +24461115 0 512 +24461116 homeCount = 13 +24461117 waitCount = 5 +24461117 ripCount = 6 +24461118 locktype1 = 1 +24461118 locktype2 = 0 +24461139 locktype3 = 1 +24461139 goalCount = 0 +24461140 goalTotal = 0 +24461140 otherCount = 11 +~~~ +24470566 UP 10 +24470566 waslock = 0 +24470566 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24470600 512 16777728 +~~~ +24470618 DOWN 10 +24470618 0 16777728 +~~~ +~~~ +24470642 0 16779776 +~~~ +~~~ +24470644 0 16779264 +24470645 homeCount = 14 +24470646 waitCount = 5 +24470646 ripCount = 6 +24470647 locktype1 = 1 +24470647 locktype2 = 0 +24470648 locktype3 = 1 +24470648 goalCount = 0 +24470649 goalTotal = 0 +24470649 otherCount = 11 +~~~ +24470750 0 2048 +24470776 UP 10 +24470777 waslock = 0 +24470776 512 2048 +~~~ +24471246 DOWN 10 +24471246 0 2048 +~~~ +~~~ +~~~ +~~~ +24471267 homeCount = 14 +24471268 waitCount = 5 +24471268 ripCount = 6 +24471269 locktype1 = 1 +24471269 locktype2 = 0 +24471270 locktype3 = 1 +24471270 goalCount = 0 +24471271 goalTotal = 0 +24471271 otherCount = 11 +~~~ +24471304 UP 10 +24471304 waslock = 0 +24471304 512 2048 +~~~ +24474135 DOWN 10 +24474135 0 2048 +~~~ +~~~ +~~~ +~~~ +24474157 homeCount = 14 +24474158 waitCount = 5 +24474158 ripCount = 6 +24474159 locktype1 = 1 +24474159 locktype2 = 0 +24474160 locktype3 = 1 +24474160 goalCount = 0 +24474161 goalTotal = 0 +24474161 otherCount = 11 +~~~ +24474162 UP 10 +24474162 waslock = 0 +24474162 512 2048 +~~~ +24474229 DOWN 10 +24474229 0 2048 +~~~ +~~~ +~~~ +~~~ +24474257 homeCount = 14 +24474257 waitCount = 5 +24474258 ripCount = 6 +24474258 locktype1 = 1 +24474259 locktype2 = 0 +24474259 locktype3 = 1 +24474260 goalCount = 0 +24474260 goalTotal = 0 +24474261 otherCount = 11 +~~~ +24476866 UP 12 +24476866 2048 2048 +24478171 DOWN 12 +24478171 0 2048 +24478314 UP 12 +24478314 2048 2048 +24478478 DOWN 12 +24478478 0 2048 +24478534 UP 12 +24478534 2048 2048 +24479866 CLICK1 +24479866 CLICK2 +~~~ +~~~ +~~~ +24479885 2048 67110912 +~~~ +24480035 2048 2048 +24480170 DOWN 12 +24480169 0 2048 +24480191 UP 12 +24480191 2048 2048 +~~~ +~~~ +24480194 2048 0 +~~~ +~~~ +24480196 2048 1 +~~~ +~~~ +24480198 2048 3 +~~~ +~~~ +24480200 2048 7 +~~~ +~~~ +24480201 2048 15 +~~~ +~~~ +24480203 2048 31 +~~~ +~~~ +24480205 2048 63 +~~~ +~~~ +24480207 2048 127 +~~~ +~~~ +24480209 2048 255 +24480210 homeCount = 14 +24480210 waitCount = 6 +24480211 ripCount = 6 +24480211 locktype1 = 1 +24480232 locktype2 = 0 +24480233 locktype3 = 1 +24480233 goalCount = 0 +24480234 goalTotal = 0 +24480234 otherCount = 11 +~~~ +24480235 CURRENTGOAL IS [2] +~~~ +24480236 DOWN 12 +24480236 0 255 +24480241 UP 12 +24480241 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24480291 homeCount = 14 +24480292 waitCount = 6 +24480292 ripCount = 6 +24480293 locktype1 = 1 +24480293 locktype2 = 0 +24480294 locktype3 = 1 +24480294 goalCount = 0 +24480295 goalTotal = 0 +24480295 otherCount = 11 +~~~ +24480296 CURRENTGOAL IS [2] +~~~ +24486384 DOWN 12 +24486384 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24486422 homeCount = 14 +24486423 waitCount = 6 +24486423 ripCount = 6 +24486424 locktype1 = 1 +24486424 locktype2 = 0 +24486425 locktype3 = 1 +24486425 goalCount = 0 +24486426 goalTotal = 0 +24486426 otherCount = 11 +~~~ +24486427 CURRENTGOAL IS [2] +~~~ +24486451 UP 12 +24486451 2048 255 +24486485 DOWN 12 +24486485 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24486522 homeCount = 14 +24486523 waitCount = 6 +24486523 ripCount = 6 +24486524 locktype1 = 1 +24486524 locktype2 = 0 +24486525 locktype3 = 1 +24486525 goalCount = 0 +24486526 goalTotal = 0 +24486526 otherCount = 11 +~~~ +24486528 CURRENTGOAL IS [2] +~~~ +24495698 UP 10 +24495698 waslock = 0 +24495698 512 255 +~~~ +24495716 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24495724 512 254 +~~~ +~~~ +24495726 512 252 +~~~ +~~~ +24495728 512 248 +~~~ +~~~ +24495730 512 240 +~~~ +~~~ +24495731 512 224 +~~~ +~~~ +24495733 512 192 +~~~ +~~~ +24495735 512 128 +~~~ +~~~ +24495737 512 0 +~~~ +~~~ +~~~ +24495945 0 0 +24495963 512 0 +24496559 0 0 +24506369 UP 4 +24506369 8 0 +24506413 DOWN 4 +24506413 0 0 +24506422 8 0 +24506707 DOWN 4 +24506707 0 0 +24506736 8 0 +24507337 DOWN 4 +24507337 0 0 +24507431 8 0 +24507448 DOWN 4 +24507448 0 0 +24516898 512 0 +24517038 0 0 +24517058 512 0 +24517301 0 0 +24517347 512 0 +24517934 0 0 +24518002 512 0 +24518042 0 0 +24518118 512 0 +24518339 0 0 +24518366 512 0 +24518604 0 0 +24520716 LOCKEND +~~~ +~~~ +~~~ +24520736 0 512 +24521787 UP 10 +24521788 waslock = 0 +24521787 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24521813 512 16777728 +~~~ +24521815 DOWN 10 +24521815 0 16777728 +~~~ +~~~ +24521838 0 16778752 +~~~ +~~~ +24521840 0 16778240 +24521841 homeCount = 15 +24521842 waitCount = 6 +24521842 ripCount = 6 +24521843 locktype1 = 1 +24521843 locktype2 = 1 +24521844 locktype3 = 1 +24521844 goalCount = 0 +24521845 goalTotal = 0 +24521845 otherCount = 11 +~~~ +24521869 UP 10 +24521869 waslock = 0 +24521869 512 16778240 +~~~ +24521963 512 1024 +24521981 DOWN 10 +24521981 0 1024 +~~~ +24522000 UP 10 +24522000 waslock = 0 +24522000 512 1024 +~~~ +~~~ +~~~ +24522004 homeCount = 15 +24522004 waitCount = 6 +24522005 ripCount = 6 +24522005 locktype1 = 1 +24522006 locktype2 = 1 +24522006 locktype3 = 1 +24522007 goalCount = 0 +24522007 goalTotal = 0 +24522008 otherCount = 11 +~~~ +~~~ +24522130 DOWN 10 +24522130 0 1024 +24522156 UP 10 +24522156 waslock = 0 +24522156 512 1024 +~~~ +~~~ +~~~ +~~~ +24522160 homeCount = 15 +24522161 waitCount = 6 +24522161 ripCount = 6 +24522162 locktype1 = 1 +24522162 locktype2 = 1 +24522163 locktype3 = 1 +24522163 goalCount = 0 +24522164 goalTotal = 0 +24522164 otherCount = 11 +~~~ +~~~ +24522270 DOWN 10 +24522270 0 1024 +24522292 UP 10 +24522292 waslock = 0 +24522292 512 1024 +~~~ +~~~ +~~~ +~~~ +24522296 homeCount = 15 +24522297 waitCount = 6 +24522298 ripCount = 6 +24522298 locktype1 = 1 +24522299 locktype2 = 1 +24522299 locktype3 = 1 +24522300 goalCount = 0 +24522300 goalTotal = 0 +24522301 otherCount = 11 +~~~ +~~~ +24526070 DOWN 10 +24526069 0 1024 +~~~ +~~~ +~~~ +~~~ +24526094 homeCount = 15 +24526094 waitCount = 6 +24526095 ripCount = 6 +24526095 locktype1 = 1 +24526096 locktype2 = 1 +24526096 locktype3 = 1 +24526097 goalCount = 0 +24526097 goalTotal = 0 +24526098 otherCount = 11 +~~~ +24526110 UP 10 +24526110 waslock = 0 +24526110 512 1024 +~~~ +24526164 DOWN 10 +24526164 0 1024 +~~~ +~~~ +~~~ +~~~ +24526194 homeCount = 15 +24526194 waitCount = 6 +24526195 ripCount = 6 +24526195 locktype1 = 1 +24526196 locktype2 = 1 +24526196 locktype3 = 1 +24526197 goalCount = 0 +24526197 goalTotal = 0 +24526198 otherCount = 11 +~~~ +24528059 UP 11 +24528059 1024 1024 +24529285 DOWN 11 +24529285 0 1024 +24529326 UP 11 +24529326 1024 1024 +24530226 DOWN 11 +24530226 0 1024 +24530258 UP 11 +24530258 1024 1024 +24530559 BEEP1 +24530559 BEEP2 +~~~ +~~~ +~~~ +24530584 1024 33555456 +~~~ +24530734 1024 1024 +24535727 DOWN 11 +24535727 0 1024 +~~~ +~~~ +24535750 0 0 +~~~ +~~~ +24535752 0 1 +~~~ +~~~ +24535754 0 3 +~~~ +~~~ +24535756 0 7 +~~~ +~~~ +24535757 0 15 +~~~ +~~~ +24535759 0 31 +~~~ +~~~ +24535761 0 63 +~~~ +~~~ +24535763 0 127 +~~~ +~~~ +24535765 0 255 +24535766 homeCount = 15 +24535766 waitCount = 6 +24535767 ripCount = 7 +24535767 locktype1 = 1 +24535768 locktype2 = 1 +24535789 locktype3 = 1 +24535789 goalCount = 0 +24535790 goalTotal = 0 +24535790 otherCount = 11 +~~~ +24535791 CURRENTGOAL IS [2] +~~~ +24535792 UP 11 +24535792 1024 255 +24535865 DOWN 11 +24535865 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24535907 homeCount = 15 +24535907 waitCount = 6 +24535908 ripCount = 7 +24535909 locktype1 = 1 +24535909 locktype2 = 1 +24535910 locktype3 = 1 +24535910 goalCount = 0 +24535911 goalTotal = 0 +24535911 otherCount = 11 +~~~ +24535912 CURRENTGOAL IS [2] +~~~ +24535936 UP 11 +24535936 1024 255 +24535954 DOWN 11 +24535954 0 255 +24535969 UP 11 +24535969 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24535990 homeCount = 15 +24535990 waitCount = 6 +24535991 ripCount = 7 +24535991 locktype1 = 1 +24535992 locktype2 = 1 +24535992 locktype3 = 1 +24535993 goalCount = 0 +24535993 goalTotal = 0 +24535994 otherCount = 11 +~~~ +24535995 CURRENTGOAL IS [2] +~~~ +24536278 DOWN 11 +24536278 0 255 +24536289 UP 11 +24536289 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24536318 homeCount = 15 +24536318 waitCount = 6 +24536319 ripCount = 7 +24536319 locktype1 = 1 +24536320 locktype2 = 1 +24536320 locktype3 = 1 +24536321 goalCount = 0 +24536321 goalTotal = 0 +24536322 otherCount = 11 +~~~ +24536323 CURRENTGOAL IS [2] +~~~ +24536680 DOWN 11 +24536680 0 255 +24536699 UP 11 +24536699 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24536718 homeCount = 15 +24536718 waitCount = 6 +24536719 ripCount = 7 +24536719 locktype1 = 1 +24536720 locktype2 = 1 +24536720 locktype3 = 1 +24536721 goalCount = 0 +24536721 goalTotal = 0 +24536722 otherCount = 11 +~~~ +24536723 CURRENTGOAL IS [2] +~~~ +24539066 DOWN 11 +24539066 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24539109 homeCount = 15 +24539110 waitCount = 6 +24539110 ripCount = 7 +24539111 locktype1 = 1 +24539111 locktype2 = 1 +24539112 locktype3 = 1 +24539112 goalCount = 0 +24539113 goalTotal = 0 +24539113 otherCount = 11 +~~~ +24539114 CURRENTGOAL IS [2] +~~~ +24545155 UP 8 +24545155 128 255 +~~~ +~~~ +24545193 DOWN 8 +24545193 0 255 +~~~ +~~~ +24545213 0 254 +~~~ +~~~ +24545215 0 252 +~~~ +~~~ +24545217 0 248 +~~~ +~~~ +24545219 0 240 +~~~ +~~~ +24545220 0 224 +~~~ +~~~ +24545222 0 192 +~~~ +~~~ +24545224 0 128 +~~~ +~~~ +24545226 0 0 +~~~ +~~~ +24545228 0 512 +24545229 homeCount = 15 +24545229 waitCount = 6 +24545230 ripCount = 7 +24545230 locktype1 = 1 +24545231 locktype2 = 1 +24545252 locktype3 = 1 +24545252 goalCount = 0 +24545253 goalTotal = 0 +24545253 otherCount = 12 +~~~ +24545254 128 512 +24545775 DOWN 8 +24545775 0 512 +24549428 UP 10 +24549428 waslock = 0 +24549428 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24549451 512 16777728 +~~~ +24549601 512 512 +24549640 DOWN 10 +24549640 0 512 +~~~ +~~~ +24549668 0 2560 +~~~ +~~~ +24549670 0 2048 +24549671 homeCount = 16 +24549672 waitCount = 6 +24549672 ripCount = 7 +24549673 locktype1 = 1 +24549673 locktype2 = 1 +24549674 locktype3 = 1 +24549674 goalCount = 0 +24549675 goalTotal = 0 +24549675 otherCount = 12 +~~~ +24549810 UP 10 +24549810 waslock = 0 +24549810 512 2048 +~~~ +24553189 DOWN 10 +24553189 0 2048 +~~~ +~~~ +~~~ +~~~ +24553217 homeCount = 16 +24553218 waitCount = 6 +24553218 ripCount = 7 +24553219 locktype1 = 1 +24553219 locktype2 = 1 +24553220 locktype3 = 1 +24553220 goalCount = 0 +24553221 goalTotal = 0 +24553221 otherCount = 12 +~~~ +24553222 UP 10 +24553222 waslock = 0 +24553222 512 2048 +~~~ +24553263 DOWN 10 +24553263 0 2048 +~~~ +~~~ +~~~ +~~~ +24553290 homeCount = 16 +24553291 waitCount = 6 +24553291 ripCount = 7 +24553292 locktype1 = 1 +24553292 locktype2 = 1 +24553293 locktype3 = 1 +24553293 goalCount = 0 +24553294 goalTotal = 0 +24553294 otherCount = 12 +~~~ +24561352 UP 12 +24561352 2048 2048 +24562969 DOWN 12 +24562969 0 2048 +24563044 UP 12 +24563044 2048 2048 +24565353 CLICK1 +24565353 CLICK2 +~~~ +~~~ +~~~ +24565378 2048 67110912 +~~~ +24565527 2048 2048 +24569179 DOWN 12 +24569179 0 2048 +~~~ +~~~ +24569206 0 0 +~~~ +~~~ +24569208 0 1 +~~~ +~~~ +24569210 0 3 +~~~ +~~~ +24569212 0 7 +~~~ +~~~ +24569214 0 15 +~~~ +~~~ +24569215 0 31 +~~~ +~~~ +24569217 0 63 +~~~ +~~~ +24569219 0 127 +~~~ +24569220 UP 12 +24569220 2048 127 +~~~ +24569222 homeCount = 16 +24569223 waitCount = 7 +24569223 ripCount = 7 +24569224 locktype1 = 1 +24569245 locktype2 = 1 +24569245 locktype3 = 1 +24569246 goalCount = 0 +24569246 goalTotal = 0 +24569247 otherCount = 12 +~~~ +24569248 CURRENTGOAL IS [2] +~~~ +24569248 DOWN 12 +24569248 0 255 +24569257 UP 12 +24569256 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569303 homeCount = 16 +24569304 waitCount = 7 +24569304 ripCount = 7 +24569305 locktype1 = 1 +24569305 locktype2 = 1 +24569306 locktype3 = 1 +24569306 goalCount = 0 +24569307 goalTotal = 0 +24569307 otherCount = 12 +~~~ +24569308 CURRENTGOAL IS [2] +~~~ +24569329 DOWN 12 +24569329 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569365 homeCount = 16 +24569366 waitCount = 7 +24569366 ripCount = 7 +24569367 locktype1 = 1 +24569367 locktype2 = 1 +24569368 locktype3 = 1 +24569368 goalCount = 0 +24569369 goalTotal = 0 +24569369 otherCount = 12 +~~~ +24569370 CURRENTGOAL IS [2] +~~~ +24569392 UP 12 +24569392 2048 255 +24569399 DOWN 12 +24569399 0 255 +24569404 UP 12 +24569404 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569430 DOWN 12 +24569430 0 255 +~~~ +~~~ +~~~ +24569434 homeCount = 16 +24569434 waitCount = 7 +24569435 ripCount = 7 +24569435 locktype1 = 1 +24569436 locktype2 = 1 +24569436 locktype3 = 1 +24569437 goalCount = 0 +24569437 goalTotal = 0 +24569438 otherCount = 12 +~~~ +24569439 CURRENTGOAL IS [2] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569466 homeCount = 16 +24569467 waitCount = 7 +24569467 ripCount = 7 +24569468 locktype1 = 1 +24569468 locktype2 = 1 +24569469 locktype3 = 1 +24569490 goalCount = 0 +24569491 goalTotal = 0 +24569491 otherCount = 12 +~~~ +24569492 CURRENTGOAL IS [2] +~~~ +24569541 UP 12 +24569541 2048 255 +24569575 DOWN 12 +24569575 0 255 +24569590 UP 12 +24569590 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569628 homeCount = 16 +24569629 waitCount = 7 +24569630 ripCount = 7 +24569630 locktype1 = 1 +24569631 locktype2 = 1 +24569631 locktype3 = 1 +24569632 goalCount = 0 +24569632 goalTotal = 0 +24569633 otherCount = 12 +~~~ +24569634 CURRENTGOAL IS [2] +~~~ +24569745 DOWN 12 +24569745 0 255 +24569762 UP 12 +24569762 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569779 homeCount = 16 +24569780 waitCount = 7 +24569781 ripCount = 7 +24569781 locktype1 = 1 +24569782 locktype2 = 1 +24569782 locktype3 = 1 +24569783 goalCount = 0 +24569783 goalTotal = 0 +24569784 otherCount = 12 +~~~ +24569785 CURRENTGOAL IS [2] +~~~ +24571050 DOWN 12 +24571050 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24571089 homeCount = 16 +24571090 waitCount = 7 +24571091 ripCount = 7 +24571091 locktype1 = 1 +24571092 locktype2 = 1 +24571092 locktype3 = 1 +24571093 goalCount = 0 +24571093 goalTotal = 0 +24571094 otherCount = 12 +~~~ +24571095 CURRENTGOAL IS [2] +~~~ +24581925 UP 5 +24581925 16 255 +~~~ +~~~ +24582431 DOWN 5 +24582431 0 255 +~~~ +~~~ +24582453 0 254 +~~~ +~~~ +24582454 0 252 +~~~ +~~~ +24582456 0 248 +~~~ +~~~ +24582458 0 240 +~~~ +~~~ +24582460 0 224 +~~~ +~~~ +24582462 0 192 +~~~ +~~~ +24582463 0 128 +~~~ +~~~ +24582465 0 0 +~~~ +~~~ +24582467 0 512 +24582468 homeCount = 16 +24582469 waitCount = 7 +24582469 ripCount = 7 +24582470 locktype1 = 1 +24582491 locktype2 = 1 +24582491 locktype3 = 1 +24582492 goalCount = 0 +24582492 goalTotal = 0 +24582493 otherCount = 13 +~~~ +24587390 UP 10 +24587390 waslock = 0 +24587390 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24587414 512 16777728 +~~~ +24587539 DOWN 10 +24587539 0 16777728 +24587564 0 512 +~~~ +~~~ +24587570 0 2560 +~~~ +~~~ +24587572 0 2048 +24587573 homeCount = 17 +24587574 waitCount = 7 +24587574 ripCount = 7 +24587575 locktype1 = 1 +24587575 locktype2 = 1 +24587576 locktype3 = 1 +24587576 goalCount = 0 +24587577 goalTotal = 0 +24587577 otherCount = 13 +~~~ +24587616 UP 10 +24587617 waslock = 0 +24587616 512 2048 +~~~ +24592258 DOWN 10 +24592258 0 2048 +24592272 UP 10 +24592273 waslock = 0 +24592272 512 2048 +~~~ +~~~ +~~~ +~~~ +24592280 homeCount = 17 +24592280 waitCount = 7 +24592281 ripCount = 7 +24592281 locktype1 = 1 +24592282 locktype2 = 1 +24592282 locktype3 = 1 +24592283 goalCount = 0 +24592283 goalTotal = 0 +24592284 otherCount = 13 +~~~ +~~~ +24592358 DOWN 10 +24592358 0 2048 +~~~ +~~~ +~~~ +~~~ +24592383 homeCount = 17 +24592383 waitCount = 7 +24592384 ripCount = 7 +24592384 locktype1 = 1 +24592385 locktype2 = 1 +24592385 locktype3 = 1 +24592386 goalCount = 0 +24592386 goalTotal = 0 +24592387 otherCount = 13 +~~~ +24616551 UP 12 +24616551 2048 2048 +24617583 DOWN 12 +24617583 0 2048 +24617639 UP 12 +24617639 2048 2048 +24617756 DOWN 12 +24617756 0 2048 +24617784 UP 12 +24617784 2048 2048 +24618319 DOWN 12 +24618319 0 2048 +24618357 UP 12 +24618357 2048 2048 +24618387 DOWN 12 +24618386 0 2048 +24618449 UP 12 +24618449 2048 2048 +24620577 DOWN 12 +24620577 0 2048 +24620632 UP 12 +24620632 2048 2048 +24621302 CLICK1 +24621302 CLICK2 +~~~ +~~~ +~~~ +24621333 2048 67110912 +~~~ +24621483 2048 2048 +24625570 DOWN 12 +24625570 0 2048 +~~~ +~~~ +24625587 0 0 +~~~ +~~~ +24625589 0 1 +~~~ +~~~ +24625591 0 3 +~~~ +~~~ +24625593 0 7 +~~~ +~~~ +24625595 0 15 +~~~ +~~~ +24625596 0 31 +~~~ +~~~ +24625598 0 63 +~~~ +~~~ +24625600 0 127 +~~~ +~~~ +24625602 0 255 +24625603 homeCount = 17 +24625603 waitCount = 8 +24625604 ripCount = 7 +24625604 locktype1 = 1 +24625605 locktype2 = 1 +24625626 locktype3 = 1 +24625627 goalCount = 0 +24625627 goalTotal = 0 +24625628 otherCount = 13 +~~~ +24625629 CURRENTGOAL IS [2] +~~~ +24625629 UP 12 +24625629 2048 255 +24625651 DOWN 12 +24625651 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24625689 homeCount = 17 +24625689 waitCount = 8 +24625690 ripCount = 7 +24625690 locktype1 = 1 +24625691 locktype2 = 1 +24625691 locktype3 = 1 +24625692 goalCount = 0 +24625692 goalTotal = 0 +24625693 otherCount = 13 +~~~ +24625694 CURRENTGOAL IS [2] +~~~ +24642952 UP 1 +24642952 1 255 +~~~ +~~~ +24645925 DOWN 1 +24645925 0 255 +~~~ +~~~ +24645946 0 254 +~~~ +~~~ +24645948 0 252 +~~~ +~~~ +24645949 0 248 +~~~ +~~~ +24645951 0 240 +~~~ +~~~ +24645953 0 224 +~~~ +~~~ +24645955 0 192 +~~~ +~~~ +24645957 0 128 +~~~ +~~~ +24645959 0 0 +~~~ +~~~ +24645960 0 512 +24645961 homeCount = 17 +24645962 waitCount = 8 +24645963 ripCount = 7 +24645963 locktype1 = 1 +24645964 locktype2 = 1 +24645984 locktype3 = 1 +24645985 goalCount = 0 +24645985 goalTotal = 0 +24645986 otherCount = 14 +~~~ +24651763 UP 10 +24651763 waslock = 0 +24651763 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24651793 512 16777728 +~~~ +24651860 DOWN 10 +24651860 0 16777728 +~~~ +~~~ +24651887 0 16778752 +~~~ +~~~ +24651889 0 16778240 +24651890 homeCount = 18 +24651890 waitCount = 8 +24651891 ripCount = 7 +24651891 locktype1 = 1 +24651892 locktype2 = 1 +24651892 locktype3 = 1 +24651893 goalCount = 0 +24651893 goalTotal = 0 +24651894 otherCount = 14 +~~~ +24651915 UP 10 +24651915 waslock = 0 +24651915 512 16778240 +~~~ +24651942 512 1024 +24652117 DOWN 10 +24652117 0 1024 +~~~ +~~~ +~~~ +~~~ +24652140 homeCount = 18 +24652141 waitCount = 8 +24652141 ripCount = 7 +24652142 locktype1 = 1 +24652142 locktype2 = 1 +24652143 locktype3 = 1 +24652143 goalCount = 0 +24652144 goalTotal = 0 +24652144 otherCount = 14 +~~~ +24652150 UP 10 +24652150 waslock = 0 +24652150 512 1024 +~~~ +24655008 DOWN 10 +24655008 0 1024 +~~~ +~~~ +~~~ +~~~ +24655031 homeCount = 18 +24655032 waitCount = 8 +24655032 ripCount = 7 +24655033 locktype1 = 1 +24655033 locktype2 = 1 +24655034 locktype3 = 1 +24655034 goalCount = 0 +24655035 goalTotal = 0 +24655035 otherCount = 14 +~~~ +24655066 UP 10 +24655066 waslock = 0 +24655066 512 1024 +~~~ +24655104 DOWN 10 +24655104 0 1024 +~~~ +~~~ +~~~ +~~~ +24655122 homeCount = 18 +24655122 waitCount = 8 +24655123 ripCount = 7 +24655123 locktype1 = 1 +24655124 locktype2 = 1 +24655124 locktype3 = 1 +24655125 goalCount = 0 +24655125 goalTotal = 0 +24655126 otherCount = 14 +~~~ +24657381 UP 11 +24657381 1024 1024 +24658427 DOWN 11 +24658427 0 1024 +24658437 UP 11 +24658437 1024 1024 +24661881 BEEP1 +24661881 BEEP2 +~~~ +~~~ +~~~ +24661900 1024 33555456 +~~~ +24662050 1024 1024 +24667500 DOWN 11 +24667500 0 1024 +~~~ +~~~ +24667519 0 0 +~~~ +~~~ +24667520 0 1 +~~~ +~~~ +24667522 0 3 +~~~ +~~~ +24667524 0 7 +~~~ +~~~ +24667526 0 15 +~~~ +~~~ +24667528 0 31 +~~~ +~~~ +24667529 0 63 +~~~ +~~~ +24667531 0 127 +~~~ +~~~ +24667533 0 255 +24667534 homeCount = 18 +24667535 waitCount = 8 +24667535 ripCount = 8 +24667536 locktype1 = 1 +24667536 locktype2 = 1 +24667557 locktype3 = 1 +24667557 goalCount = 0 +24667558 goalTotal = 0 +24667558 otherCount = 14 +~~~ +24667559 CURRENTGOAL IS [2] +~~~ +24731227 UP 11 +24731227 1024 255 +24732218 DOWN 11 +24732218 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24732257 homeCount = 18 +24732258 waitCount = 8 +24732258 ripCount = 8 +24732259 locktype1 = 1 +24732259 locktype2 = 1 +24732260 locktype3 = 1 +24732260 goalCount = 0 +24732261 goalTotal = 0 +24732261 otherCount = 14 +~~~ +24732262 CURRENTGOAL IS [2] +~~~ +24744749 UP 4 +24744749 8 255 +~~~ +~~~ +24745153 DOWN 4 +24745153 0 255 +~~~ +~~~ +24745173 0 254 +~~~ +~~~ +24745175 0 252 +~~~ +~~~ +24745177 0 248 +~~~ +~~~ +24745178 0 240 +~~~ +~~~ +24745180 0 224 +~~~ +~~~ +24745182 0 192 +~~~ +24745183 8 192 +~~~ +~~~ +24745185 8 128 +~~~ +24745186 8 0 +~~~ +~~~ +24745188 8 512 +24745189 homeCount = 18 +24745189 waitCount = 8 +24745190 ripCount = 8 +24745211 locktype1 = 1 +24745211 locktype2 = 1 +24745212 locktype3 = 1 +24745212 goalCount = 0 +24745213 goalTotal = 0 +24745213 otherCount = 15 +~~~ +24746821 DOWN 4 +24746821 0 512 +24746860 8 512 +24746902 DOWN 4 +24746901 0 512 +24752241 UP 10 +24752241 waslock = 0 +24752241 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24752270 512 16777728 +~~~ +24752379 DOWN 10 +24752379 0 16777728 +~~~ +~~~ +24752404 0 16779776 +~~~ +~~~ +24752406 0 16779264 +24752407 homeCount = 19 +24752407 waitCount = 8 +24752408 ripCount = 8 +24752408 locktype1 = 1 +24752409 locktype2 = 1 +24752409 locktype3 = 1 +24752410 goalCount = 0 +24752410 goalTotal = 0 +24752411 otherCount = 15 +~~~ +24752431 0 2048 +24752545 UP 10 +24752545 waslock = 0 +24752545 512 2048 +~~~ +24753086 DOWN 10 +24753086 0 2048 +24753096 UP 10 +24753096 waslock = 0 +24753096 512 2048 +~~~ +~~~ +~~~ +~~~ +24753119 homeCount = 19 +24753119 waitCount = 8 +24753120 ripCount = 8 +24753120 locktype1 = 1 +24753121 locktype2 = 1 +24753121 locktype3 = 1 +24753122 goalCount = 0 +24753122 goalTotal = 0 +24753123 otherCount = 15 +~~~ +~~~ +24758163 DOWN 10 +24758163 0 2048 +~~~ +~~~ +~~~ +~~~ +24758187 homeCount = 19 +24758187 waitCount = 8 +24758188 ripCount = 8 +24758188 locktype1 = 1 +24758189 locktype2 = 1 +24758189 locktype3 = 1 +24758190 goalCount = 0 +24758190 goalTotal = 0 +24758191 otherCount = 15 +~~~ +24760831 UP 12 +24760831 2048 2048 +24761455 DOWN 12 +24761455 0 2048 +24761656 LOCKOUT 3 +~~~ +24761677 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24761683 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24762044 UP 12 +24762044 2048 0 +24762069 DOWN 12 +24762069 0 0 +24762110 UP 12 +24762110 2048 0 +24762804 DOWN 12 +24762804 0 0 +24786677 LOCKEND +~~~ +~~~ +~~~ +24786697 0 512 +24787613 UP 10 +24787613 waslock = 0 +24787613 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24787645 512 16777728 +~~~ +24787699 DOWN 10 +24787699 0 16777728 +24787723 UP 10 +24787723 waslock = 0 +24787723 512 16777728 +~~~ +~~~ +24787726 512 16779776 +~~~ +~~~ +24787728 512 16779264 +24787729 homeCount = 20 +24787730 waitCount = 8 +24787730 ripCount = 8 +24787731 locktype1 = 1 +24787731 locktype2 = 1 +24787732 locktype3 = 2 +24787732 goalCount = 0 +24787733 goalTotal = 0 +24787754 otherCount = 15 +~~~ +~~~ +24787795 512 2048 +24788471 DOWN 10 +24788471 0 2048 +~~~ +~~~ +~~~ +~~~ +24788500 homeCount = 20 +24788500 waitCount = 8 +24788501 ripCount = 8 +24788501 locktype1 = 1 +24788502 locktype2 = 1 +24788502 locktype3 = 2 +24788503 goalCount = 0 +24788503 goalTotal = 0 +24788504 otherCount = 15 +~~~ +24788523 UP 10 +24788523 waslock = 0 +24788523 512 2048 +~~~ +24793994 DOWN 10 +24793994 0 2048 +~~~ +~~~ +~~~ +~~~ +24794018 homeCount = 20 +24794019 waitCount = 8 +24794019 ripCount = 8 +24794020 locktype1 = 1 +24794020 locktype2 = 1 +24794021 locktype3 = 2 +24794021 goalCount = 0 +24794022 goalTotal = 0 +24794022 otherCount = 15 +~~~ +24833942 UP 12 +24833942 2048 2048 +24834649 DOWN 12 +24834649 0 2048 +24834690 UP 12 +24834690 2048 2048 +24835479 DOWN 12 +24835479 0 2048 +24835513 UP 12 +24835513 2048 2048 +24835759 DOWN 12 +24835759 0 2048 +24835877 UP 12 +24835877 2048 2048 +24835927 DOWN 12 +24835927 0 2048 +24835951 UP 12 +24835951 2048 2048 +24836281 DOWN 12 +24836281 0 2048 +24836323 UP 12 +24836323 2048 2048 +24836439 DOWN 12 +24836439 0 2048 +24836452 UP 12 +24836452 2048 2048 +24836649 DOWN 12 +24836649 0 2048 +24836676 UP 12 +24836676 2048 2048 +24836942 CLICK1 +24836942 CLICK2 +~~~ +~~~ +~~~ +24836972 2048 67110912 +~~~ +24837059 DOWN 12 +24837059 0 67110912 +24837122 0 2048 +24837133 UP 12 +24837133 2048 2048 +~~~ +~~~ +24837144 2048 0 +~~~ +~~~ +24837146 2048 1 +~~~ +~~~ +24837148 2048 3 +~~~ +~~~ +24837150 2048 7 +~~~ +~~~ +24837152 2048 15 +~~~ +~~~ +24837153 2048 31 +~~~ +~~~ +24837155 2048 63 +~~~ +~~~ +24837157 2048 127 +~~~ +~~~ +24837159 2048 255 +24837160 homeCount = 20 +24837160 waitCount = 9 +24837161 ripCount = 8 +24837182 locktype1 = 1 +24837183 locktype2 = 1 +24837183 locktype3 = 2 +24837184 goalCount = 0 +24837184 goalTotal = 0 +24837185 otherCount = 15 +~~~ +24837186 CURRENTGOAL IS [2] +~~~ +24837229 DOWN 12 +24837229 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24837272 homeCount = 20 +24837272 waitCount = 9 +24837273 ripCount = 8 +24837273 locktype1 = 1 +24837274 locktype2 = 1 +24837274 locktype3 = 2 +24837275 goalCount = 0 +24837275 goalTotal = 0 +24837276 otherCount = 15 +~~~ +24837277 CURRENTGOAL IS [2] +~~~ +24837298 UP 12 +24837298 2048 255 +24842976 DOWN 12 +24842976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24843011 homeCount = 20 +24843011 waitCount = 9 +24843012 ripCount = 8 +24843012 locktype1 = 1 +24843013 locktype2 = 1 +24843013 locktype3 = 2 +24843014 goalCount = 0 +24843014 goalTotal = 0 +24843015 otherCount = 15 +~~~ +24843016 CURRENTGOAL IS [2] +~~~ +24848553 UP 4 +24848553 8 255 +~~~ +~~~ +24848589 DOWN 4 +24848589 0 255 +~~~ +~~~ +24848608 0 254 +~~~ +~~~ +24848610 0 252 +~~~ +~~~ +24848612 0 248 +~~~ +~~~ +24848613 0 240 +~~~ +~~~ +24848615 0 224 +~~~ +~~~ +24848617 0 192 +~~~ +~~~ +24848619 0 128 +~~~ +~~~ +24848621 0 0 +~~~ +~~~ +24848623 0 512 +24848624 homeCount = 20 +24848624 waitCount = 9 +24848625 ripCount = 8 +24848625 locktype1 = 1 +24848646 locktype2 = 1 +24848647 locktype3 = 2 +24848647 goalCount = 0 +24848648 goalTotal = 0 +24848648 otherCount = 16 +~~~ +24848649 8 512 +24848856 DOWN 4 +24848856 0 512 +24857480 UP 10 +24857481 waslock = 0 +24857480 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24857509 512 16777728 +~~~ +24857659 512 512 +24858225 DOWN 10 +24858225 0 512 +~~~ +24858250 UP 10 +24858251 waslock = 0 +24858250 512 512 +~~~ +~~~ +~~~ +24858253 512 2048 +24858254 homeCount = 21 +24858255 waitCount = 9 +24858255 ripCount = 8 +24858256 locktype1 = 1 +24858256 locktype2 = 1 +24858257 locktype3 = 2 +24858257 goalCount = 0 +24858278 goalTotal = 0 +24858279 otherCount = 16 +~~~ +~~~ +24862400 DOWN 10 +24862400 0 2048 +24862418 UP 10 +24862419 waslock = 0 +24862418 512 2048 +~~~ +~~~ +~~~ +~~~ +24862426 homeCount = 21 +24862426 waitCount = 9 +24862427 ripCount = 8 +24862427 locktype1 = 1 +24862428 locktype2 = 1 +24862428 locktype3 = 2 +24862429 goalCount = 0 +24862429 goalTotal = 0 +24862430 otherCount = 16 +~~~ +~~~ +24862493 DOWN 10 +24862493 0 2048 +~~~ +~~~ +~~~ +~~~ +24862522 homeCount = 21 +24862523 waitCount = 9 +24862523 ripCount = 8 +24862524 locktype1 = 1 +24862524 locktype2 = 1 +24862525 locktype3 = 2 +24862525 goalCount = 0 +24862526 goalTotal = 0 +24862526 otherCount = 16 +~~~ +24930514 UP 10 +24930515 waslock = 0 +24930514 512 2048 +~~~ +24930785 DOWN 10 +24930785 0 2048 +~~~ +~~~ +~~~ +~~~ +24930806 homeCount = 21 +24930806 waitCount = 9 +24930807 ripCount = 8 +24930807 locktype1 = 1 +24930808 locktype2 = 1 +24930808 locktype3 = 2 +24930809 goalCount = 0 +24930809 goalTotal = 0 +24930810 otherCount = 16 +~~~ +24930873 UP 10 +24930874 waslock = 0 +24930873 512 2048 +~~~ +24931398 DOWN 10 +24931398 0 2048 +~~~ +~~~ +~~~ +~~~ +24931425 homeCount = 21 +24931426 waitCount = 9 +24931426 ripCount = 8 +24931427 locktype1 = 1 +24931427 locktype2 = 1 +24931428 locktype3 = 2 +24931428 goalCount = 0 +24931429 goalTotal = 0 +24931429 otherCount = 16 +~~~ +24931444 UP 10 +24931445 waslock = 0 +24931444 512 2048 +~~~ +24932304 DOWN 10 +24932304 0 2048 +24932319 UP 10 +24932320 waslock = 0 +24932319 512 2048 +~~~ +~~~ +~~~ +~~~ +24932326 homeCount = 21 +24932327 waitCount = 9 +24932327 ripCount = 8 +24932328 locktype1 = 1 +24932328 locktype2 = 1 +24932329 locktype3 = 2 +24932329 goalCount = 0 +24932330 goalTotal = 0 +24932330 otherCount = 16 +~~~ +~~~ +24933504 DOWN 10 +24933504 0 2048 +~~~ +~~~ +~~~ +~~~ +24933528 homeCount = 21 +24933529 waitCount = 9 +24933529 ripCount = 8 +24933530 locktype1 = 1 +24933530 locktype2 = 1 +24933531 locktype3 = 2 +24933531 goalCount = 0 +24933532 goalTotal = 0 +24933532 otherCount = 16 +~~~ +24933557 UP 10 +24933558 waslock = 0 +24933557 512 2048 +~~~ +24933598 DOWN 10 +24933598 0 2048 +~~~ +~~~ +~~~ +~~~ +24933626 homeCount = 21 +24933627 waitCount = 9 +24933627 ripCount = 8 +24933628 locktype1 = 1 +24933628 locktype2 = 1 +24933629 locktype3 = 2 +24933629 goalCount = 0 +24933630 goalTotal = 0 +24933630 otherCount = 16 +~~~ +24937095 UP 12 +24937095 2048 2048 +24939013 DOWN 12 +24939013 0 2048 +24939059 UP 12 +24939059 2048 2048 +24940772 DOWN 12 +24940772 0 2048 +24940815 UP 12 +24940815 2048 2048 +24940959 DOWN 12 +24940959 0 2048 +24940980 UP 12 +24940980 2048 2048 +24941345 CLICK1 +24941345 CLICK2 +~~~ +~~~ +~~~ +24941365 2048 67110912 +~~~ +24941515 2048 2048 +24946106 DOWN 12 +24946105 0 2048 +~~~ +~~~ +24946124 0 0 +~~~ +~~~ +24946126 0 1 +~~~ +~~~ +24946128 0 3 +~~~ +~~~ +24946130 0 7 +~~~ +~~~ +24946132 0 15 +~~~ +~~~ +24946133 0 31 +~~~ +~~~ +24946135 0 63 +~~~ +~~~ +24946137 0 127 +~~~ +~~~ +24946139 0 255 +24946140 homeCount = 21 +24946140 waitCount = 10 +24946141 ripCount = 8 +24946141 locktype1 = 1 +24946142 locktype2 = 1 +24946163 locktype3 = 2 +24946163 goalCount = 0 +24946164 goalTotal = 0 +24946164 otherCount = 16 +~~~ +24946165 CURRENTGOAL IS [2] +~~~ +24946181 UP 12 +24946181 2048 255 +24946208 DOWN 12 +24946208 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24946241 homeCount = 21 +24946241 waitCount = 10 +24946242 ripCount = 8 +24946242 locktype1 = 1 +24946243 locktype2 = 1 +24946243 locktype3 = 2 +24946244 goalCount = 0 +24946244 goalTotal = 0 +24946245 otherCount = 16 +~~~ +24946246 CURRENTGOAL IS [2] +~~~ +24950351 UP 1 +24950351 1 255 +~~~ +~~~ +24951379 DOWN 1 +24951379 0 255 +~~~ +~~~ +24951405 0 254 +~~~ +~~~ +24951406 0 252 +~~~ +~~~ +24951408 0 248 +~~~ +~~~ +24951410 0 240 +~~~ +~~~ +24951412 0 224 +~~~ +~~~ +24951414 0 192 +~~~ +~~~ +24951415 0 128 +~~~ +~~~ +24951417 0 0 +~~~ +~~~ +24951419 0 512 +24951420 homeCount = 21 +24951421 waitCount = 10 +24951421 ripCount = 8 +24951422 locktype1 = 1 +24951422 locktype2 = 1 +24951443 locktype3 = 2 +24951443 goalCount = 0 +24951444 goalTotal = 0 +24951444 otherCount = 17 +~~~ +24955122 UP 10 +24955122 waslock = 0 +24955122 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24955153 512 16777728 +~~~ +24955284 DOWN 10 +24955284 0 16777728 +24955303 0 512 +24955318 UP 10 +24955319 waslock = 0 +24955318 512 512 +~~~ +~~~ +24955321 512 1536 +~~~ +~~~ +24955323 512 1024 +24955324 homeCount = 22 +24955324 waitCount = 10 +24955325 ripCount = 8 +24955325 locktype1 = 1 +24955326 locktype2 = 1 +24955326 locktype3 = 2 +24955327 goalCount = 0 +24955348 goalTotal = 0 +24955348 otherCount = 17 +~~~ +~~~ +24955745 DOWN 10 +24955745 0 1024 +~~~ +~~~ +~~~ +24955771 UP 10 +24955771 waslock = 0 +24955771 512 1024 +~~~ +24955773 homeCount = 22 +24955774 waitCount = 10 +24955774 ripCount = 8 +24955775 locktype1 = 1 +24955775 locktype2 = 1 +24955776 locktype3 = 2 +24955776 goalCount = 0 +24955777 goalTotal = 0 +24955798 otherCount = 17 +~~~ +~~~ +24958679 DOWN 10 +24958679 0 1024 +~~~ +~~~ +~~~ +~~~ +24958701 homeCount = 22 +24958702 waitCount = 10 +24958702 ripCount = 8 +24958703 locktype1 = 1 +24958703 locktype2 = 1 +24958704 locktype3 = 2 +24958704 goalCount = 0 +24958705 goalTotal = 0 +24958705 otherCount = 17 +~~~ +24958730 UP 10 +24958730 waslock = 0 +24958730 512 1024 +24958749 DOWN 10 +24958749 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24958773 homeCount = 22 +24958773 waitCount = 10 +24958774 ripCount = 8 +24958774 locktype1 = 1 +24958775 locktype2 = 1 +24958775 locktype3 = 2 +24958776 goalCount = 0 +24958776 goalTotal = 0 +24958777 otherCount = 17 +~~~ +24960062 UP 11 +24960062 1024 1024 +24961852 DOWN 11 +24961852 0 1024 +24961864 UP 11 +24961864 1024 1024 +24962813 BEEP1 +24962813 BEEP2 +~~~ +~~~ +~~~ +24962837 1024 33555456 +~~~ +24962987 1024 1024 +24963064 DOWN 11 +24963064 0 1024 +24963077 UP 11 +24963077 1024 1024 +~~~ +~~~ +24963504 1024 0 +~~~ +~~~ +24963505 1024 1 +~~~ +~~~ +24963507 1024 3 +~~~ +~~~ +24963509 1024 7 +~~~ +~~~ +24963511 1024 15 +~~~ +~~~ +24963513 1024 31 +~~~ +~~~ +24963514 1024 63 +~~~ +~~~ +24963516 1024 127 +~~~ +~~~ +24963518 1024 255 +24963519 homeCount = 22 +24963520 waitCount = 10 +24963520 ripCount = 9 +24963521 locktype1 = 1 +24963542 locktype2 = 1 +24963542 locktype3 = 2 +24963543 goalCount = 0 +24963543 goalTotal = 0 +24963544 otherCount = 17 +~~~ +24963545 CURRENTGOAL IS [2] +~~~ +24968316 DOWN 11 +24968316 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24968356 homeCount = 22 +24968357 waitCount = 10 +24968357 ripCount = 9 +24968358 locktype1 = 1 +24968358 locktype2 = 1 +24968359 locktype3 = 2 +24968359 goalCount = 0 +24968360 goalTotal = 0 +24968360 otherCount = 17 +~~~ +24968361 CURRENTGOAL IS [2] +~~~ +24968382 UP 11 +24968382 1024 255 +24968404 DOWN 11 +24968404 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24968438 homeCount = 22 +24968439 waitCount = 10 +24968439 ripCount = 9 +24968440 locktype1 = 1 +24968441 locktype2 = 1 +24968441 locktype3 = 2 +24968442 goalCount = 0 +24968442 goalTotal = 0 +24968443 otherCount = 17 +~~~ +24968444 CURRENTGOAL IS [2] +~~~ +24971124 UP 7 +24971124 64 255 +~~~ +~~~ +24971481 DOWN 7 +24971481 0 255 +~~~ +~~~ +24971503 0 254 +~~~ +~~~ +24971505 0 252 +~~~ +~~~ +24971506 0 248 +~~~ +~~~ +24971508 0 240 +~~~ +~~~ +24971510 0 224 +~~~ +~~~ +24971512 0 192 +~~~ +~~~ +24971514 64 128 +~~~ +~~~ +24971515 64 0 +~~~ +~~~ +24971517 64 512 +24971518 homeCount = 22 +24971519 waitCount = 10 +24971519 ripCount = 9 +24971520 locktype1 = 1 +24971541 locktype2 = 1 +24971542 locktype3 = 2 +24971542 goalCount = 0 +24971543 goalTotal = 0 +24971543 otherCount = 18 +~~~ +24972028 DOWN 7 +24972028 0 512 +24972049 64 512 +24972113 DOWN 7 +24972113 0 512 +24978577 UP 10 +24978578 waslock = 0 +24978577 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24978604 512 16777728 +~~~ +24978753 512 512 +24978766 DOWN 10 +24978766 0 512 +~~~ +~~~ +24978786 0 1536 +~~~ +~~~ +24978788 0 1024 +24978789 homeCount = 23 +24978789 waitCount = 10 +24978790 ripCount = 9 +24978790 locktype1 = 1 +24978791 locktype2 = 1 +24978791 locktype3 = 2 +24978792 goalCount = 0 +24978792 goalTotal = 0 +24978793 otherCount = 18 +~~~ +24978850 UP 10 +24978851 waslock = 0 +24978850 512 1024 +~~~ +24978958 DOWN 10 +24978958 0 1024 +24978966 UP 10 +24978966 waslock = 0 +24978966 512 1024 +~~~ +~~~ +~~~ +~~~ +24978988 homeCount = 23 +24978989 waitCount = 10 +24978989 ripCount = 9 +24978990 locktype1 = 1 +24978990 locktype2 = 1 +24978991 locktype3 = 2 +24978991 goalCount = 0 +24978992 goalTotal = 0 +24978992 otherCount = 18 +~~~ +~~~ +24978997 DOWN 10 +24978997 0 1024 +~~~ +~~~ +~~~ +~~~ +24979033 homeCount = 23 +24979034 waitCount = 10 +24979034 ripCount = 9 +24979035 locktype1 = 1 +24979035 locktype2 = 1 +24979036 locktype3 = 2 +24979036 goalCount = 0 +24979037 goalTotal = 0 +24979037 otherCount = 18 +~~~ +24979055 UP 10 +24979055 waslock = 0 +24979055 512 1024 +~~~ +24983166 DOWN 10 +24983166 0 1024 +~~~ +~~~ +~~~ +~~~ +24983190 homeCount = 23 +24983190 waitCount = 10 +24983191 ripCount = 9 +24983191 locktype1 = 1 +24983192 locktype2 = 1 +24983192 locktype3 = 2 +24983193 goalCount = 0 +24983193 goalTotal = 0 +24983194 otherCount = 18 +~~~ +24983202 UP 10 +24983202 waslock = 0 +24983202 512 1024 +~~~ +24983259 DOWN 10 +24983259 0 1024 +~~~ +~~~ +~~~ +~~~ +24983280 homeCount = 23 +24983281 waitCount = 10 +24983281 ripCount = 9 +24983282 locktype1 = 1 +24983282 locktype2 = 1 +24983283 locktype3 = 2 +24983283 goalCount = 0 +24983284 goalTotal = 0 +24983284 otherCount = 18 +~~~ +24992949 UP 10 +24992949 waslock = 0 +24992948 512 1024 +~~~ +24993619 DOWN 10 +24993619 0 1024 +~~~ +~~~ +~~~ +~~~ +24993640 homeCount = 23 +24993641 waitCount = 10 +24993641 ripCount = 9 +24993642 locktype1 = 1 +24993642 locktype2 = 1 +24993643 locktype3 = 2 +24993643 goalCount = 0 +24993644 goalTotal = 0 +24993644 otherCount = 18 +~~~ +24993658 UP 10 +24993658 waslock = 0 +24993658 512 1024 +~~~ +24993819 DOWN 10 +24993819 0 1024 +~~~ +~~~ +~~~ +~~~ +24993845 homeCount = 23 +24993845 waitCount = 10 +24993846 ripCount = 9 +24993846 locktype1 = 1 +24993847 locktype2 = 1 +24993847 locktype3 = 2 +24993848 goalCount = 0 +24993848 goalTotal = 0 +24993849 otherCount = 18 +~~~ +24993855 UP 10 +24993855 waslock = 0 +24993855 512 1024 +~~~ +24994083 DOWN 10 +24994083 0 1024 +~~~ +~~~ +~~~ +~~~ +24994116 homeCount = 23 +24994117 waitCount = 10 +24994117 ripCount = 9 +24994118 locktype1 = 1 +24994118 locktype2 = 1 +24994119 locktype3 = 2 +24994119 goalCount = 0 +24994120 goalTotal = 0 +24994120 otherCount = 18 +~~~ +25014055 UP 10 +25014055 waslock = 0 +25014055 512 1024 +~~~ +25014332 DOWN 10 +25014332 0 1024 +~~~ +~~~ +~~~ +~~~ +25014361 homeCount = 23 +25014361 waitCount = 10 +25014362 ripCount = 9 +25014362 locktype1 = 1 +25014363 locktype2 = 1 +25014363 locktype3 = 2 +25014364 goalCount = 0 +25014364 goalTotal = 0 +25014365 otherCount = 18 +~~~ +25014825 UP 10 +25014825 waslock = 0 +25014825 512 1024 +~~~ +25015812 DOWN 10 +25015812 0 1024 +~~~ +~~~ +~~~ +~~~ +25015841 homeCount = 23 +25015841 waitCount = 10 +25015842 ripCount = 9 +25015842 locktype1 = 1 +25015843 locktype2 = 1 +25015843 locktype3 = 2 +25015844 goalCount = 0 +25015844 goalTotal = 0 +25015845 otherCount = 18 +~~~ +25015866 UP 10 +25015866 waslock = 0 +25015866 512 1024 +~~~ +25015908 DOWN 10 +25015908 0 1024 +~~~ +~~~ +~~~ +~~~ +25015937 homeCount = 23 +25015938 waitCount = 10 +25015938 ripCount = 9 +25015939 locktype1 = 1 +25015940 locktype2 = 1 +25015940 locktype3 = 2 +25015941 goalCount = 0 +25015941 goalTotal = 0 +25015942 otherCount = 18 +~~~ +25026289 UP 11 +25026289 1024 1024 +25027542 DOWN 11 +25027542 0 1024 +25027560 UP 11 +25027560 1024 1024 +25027600 DOWN 11 +25027600 0 1024 +25027621 UP 11 +25027621 1024 1024 +25028239 DOWN 11 +25028239 0 1024 +25028248 UP 11 +25028248 1024 1024 +25028279 DOWN 11 +25028279 0 1024 +25028295 UP 11 +25028295 1024 1024 +25029519 DOWN 11 +25029519 0 1024 +25029539 UP 11 +25029539 1024 1024 +25031039 BEEP1 +25031039 BEEP2 +~~~ +~~~ +~~~ +25031065 1024 33555456 +~~~ +25031215 1024 1024 +25034863 DOWN 11 +25034863 0 1024 +~~~ +~~~ +25034883 0 0 +~~~ +~~~ +25034884 0 1 +~~~ +~~~ +25034886 0 3 +~~~ +~~~ +25034888 0 7 +~~~ +~~~ +25034890 0 15 +~~~ +~~~ +25034892 0 31 +~~~ +~~~ +25034893 0 63 +~~~ +~~~ +25034895 0 127 +~~~ +~~~ +25034897 0 255 +25034898 homeCount = 23 +25034899 waitCount = 10 +25034899 ripCount = 10 +25034900 locktype1 = 1 +25034900 locktype2 = 1 +25034921 locktype3 = 2 +25034922 goalCount = 0 +25034922 goalTotal = 0 +25034923 otherCount = 18 +~~~ +25034924 CURRENTGOAL IS [2] +~~~ +25034924 UP 11 +25034924 1024 255 +25034974 DOWN 11 +25034974 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25035007 homeCount = 23 +25035008 waitCount = 10 +25035008 ripCount = 10 +25035009 locktype1 = 1 +25035010 locktype2 = 1 +25035010 locktype3 = 2 +25035011 goalCount = 0 +25035011 goalTotal = 0 +25035012 otherCount = 18 +~~~ +25035013 CURRENTGOAL IS [2] +~~~ +25037912 UP 8 +25037912 128 255 +~~~ +~~~ +25038494 DOWN 8 +25038494 0 255 +~~~ +~~~ +25038511 0 254 +~~~ +~~~ +25038513 0 252 +~~~ +~~~ +25038514 0 248 +~~~ +~~~ +25038516 0 240 +~~~ +~~~ +25038518 0 224 +~~~ +~~~ +25038520 0 192 +~~~ +~~~ +25038522 0 128 +~~~ +~~~ +25038524 0 0 +~~~ +~~~ +25038525 0 512 +25038526 homeCount = 23 +25038527 waitCount = 10 +25038527 ripCount = 10 +25038528 locktype1 = 1 +25038528 locktype2 = 1 +25038549 locktype3 = 2 +25038550 goalCount = 0 +25038550 goalTotal = 0 +25038551 otherCount = 19 +~~~ +25043144 UP 10 +25043144 waslock = 0 +25043144 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25043167 512 16777728 +~~~ +25043317 512 512 +25043535 DOWN 10 +25043535 0 512 +~~~ +~~~ +25043565 0 2560 +~~~ +~~~ +25043567 0 2048 +25043568 homeCount = 24 +25043568 waitCount = 10 +25043569 ripCount = 10 +25043569 locktype1 = 1 +25043570 locktype2 = 1 +25043570 locktype3 = 2 +25043571 goalCount = 0 +25043571 goalTotal = 0 +25043572 otherCount = 19 +~~~ +25043738 UP 10 +25043738 waslock = 0 +25043738 512 2048 +~~~ +25047500 DOWN 10 +25047500 0 2048 +~~~ +~~~ +25047525 UP 10 +25047526 waslock = 0 +25047525 512 2048 +~~~ +~~~ +25047528 homeCount = 24 +25047528 waitCount = 10 +25047529 ripCount = 10 +25047529 locktype1 = 1 +25047530 locktype2 = 1 +25047530 locktype3 = 2 +25047531 goalCount = 0 +25047531 goalTotal = 0 +25047552 otherCount = 19 +~~~ +~~~ +25047584 DOWN 10 +25047584 0 2048 +~~~ +~~~ +~~~ +~~~ +25047608 homeCount = 24 +25047608 waitCount = 10 +25047609 ripCount = 10 +25047609 locktype1 = 1 +25047610 locktype2 = 1 +25047610 locktype3 = 2 +25047611 goalCount = 0 +25047611 goalTotal = 0 +25047612 otherCount = 19 +~~~ +25052125 UP 12 +25052125 2048 2048 +25054402 DOWN 12 +25054401 0 2048 +25054425 UP 12 +25054425 2048 2048 +25054523 DOWN 12 +25054523 0 2048 +25054564 UP 12 +25054564 2048 2048 +25054625 CLICK1 +25054625 CLICK2 +~~~ +~~~ +~~~ +25054647 2048 67110912 +~~~ +25054797 2048 2048 +25060172 DOWN 12 +25060172 0 2048 +25060192 UP 12 +25060192 2048 2048 +~~~ +~~~ +25060196 2048 0 +~~~ +~~~ +25060198 2048 1 +~~~ +~~~ +25060199 2048 3 +~~~ +~~~ +25060201 2048 7 +~~~ +~~~ +25060203 2048 15 +~~~ +~~~ +25060205 2048 31 +~~~ +~~~ +25060207 2048 63 +~~~ +~~~ +25060209 2048 127 +~~~ +~~~ +25060210 2048 255 +25060211 homeCount = 24 +25060212 waitCount = 11 +25060213 ripCount = 10 +25060213 locktype1 = 1 +25060234 locktype2 = 1 +25060235 locktype3 = 2 +25060235 goalCount = 0 +25060236 goalTotal = 0 +25060236 otherCount = 19 +~~~ +25060237 CURRENTGOAL IS [2] +~~~ +25060249 DOWN 12 +25060249 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25060289 homeCount = 24 +25060289 waitCount = 11 +25060290 ripCount = 10 +25060290 locktype1 = 1 +25060291 locktype2 = 1 +25060291 locktype3 = 2 +25060292 goalCount = 0 +25060292 goalTotal = 0 +25060293 otherCount = 19 +~~~ +25060294 CURRENTGOAL IS [2] +~~~ +25063141 UP 3 +25063141 4 255 +~~~ +~~~ +25063547 DOWN 3 +25063547 0 255 +~~~ +~~~ +25063565 0 254 +~~~ +~~~ +25063567 0 252 +~~~ +~~~ +25063569 0 248 +~~~ +~~~ +25063570 0 240 +~~~ +~~~ +25063572 0 224 +~~~ +~~~ +25063574 0 192 +~~~ +~~~ +25063576 0 128 +~~~ +~~~ +25063578 0 0 +~~~ +~~~ +25063580 0 512 +25063581 homeCount = 24 +25063581 waitCount = 11 +25063582 ripCount = 10 +25063582 locktype1 = 1 +25063603 locktype2 = 1 +25063604 locktype3 = 2 +25063604 goalCount = 0 +25063605 goalTotal = 0 +25063605 otherCount = 20 +~~~ +25067425 UP 10 +25067425 waslock = 0 +25067425 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25067452 512 16777728 +~~~ +25067602 512 512 +25067687 DOWN 10 +25067687 0 512 +~~~ +~~~ +25067706 0 1536 +~~~ +~~~ +25067708 0 1024 +25067709 homeCount = 25 +25067710 waitCount = 11 +25067710 ripCount = 10 +25067711 locktype1 = 1 +25067711 locktype2 = 1 +25067712 locktype3 = 2 +25067712 goalCount = 0 +25067713 goalTotal = 0 +25067713 otherCount = 20 +~~~ +25067735 UP 10 +25067735 waslock = 0 +25067735 512 1024 +~~~ +25071823 DOWN 10 +25071823 0 1024 +~~~ +~~~ +~~~ +~~~ +25071852 homeCount = 25 +25071853 waitCount = 11 +25071853 ripCount = 10 +25071854 locktype1 = 1 +25071854 locktype2 = 1 +25071855 locktype3 = 2 +25071855 goalCount = 0 +25071856 goalTotal = 0 +25071856 otherCount = 20 +~~~ +25073297 UP 11 +25073297 1024 1024 +25075903 DOWN 11 +25075903 0 1024 +25075949 UP 11 +25075949 1024 1024 +25076047 BEEP1 +25076047 BEEP2 +~~~ +~~~ +~~~ +25076076 1024 33555456 +~~~ +25076226 1024 1024 +25080864 DOWN 11 +25080864 0 1024 +25080887 UP 11 +25080887 1024 1024 +~~~ +~~~ +25080891 1024 0 +~~~ +~~~ +25080892 1024 1 +~~~ +~~~ +25080894 1024 3 +~~~ +~~~ +25080896 1024 7 +~~~ +~~~ +25080898 1024 15 +~~~ +~~~ +25080900 1024 31 +~~~ +~~~ +25080901 1024 63 +~~~ +~~~ +25080903 1024 127 +~~~ +~~~ +25080905 1024 255 +25080906 homeCount = 25 +25080907 waitCount = 11 +25080907 ripCount = 11 +25080928 locktype1 = 1 +25080929 locktype2 = 1 +25080929 locktype3 = 2 +25080930 goalCount = 0 +25080930 goalTotal = 0 +25080931 otherCount = 20 +~~~ +25080932 CURRENTGOAL IS [2] +~~~ +25080976 DOWN 11 +25080976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25081015 homeCount = 25 +25081015 waitCount = 11 +25081016 ripCount = 11 +25081016 locktype1 = 1 +25081017 locktype2 = 1 +25081018 locktype3 = 2 +25081018 goalCount = 0 +25081018 goalTotal = 0 +25081019 otherCount = 20 +~~~ +25081020 CURRENTGOAL IS [2] +~~~ +25084278 UP 6 +25084278 32 255 +~~~ +~~~ +25085001 DOWN 6 +25085001 0 255 +25085013 32 255 +~~~ +~~~ +25085032 32 254 +~~~ +~~~ +25085034 32 252 +~~~ +~~~ +25085036 32 248 +~~~ +~~~ +25085037 32 240 +~~~ +~~~ +25085039 32 224 +~~~ +~~~ +25085041 32 192 +~~~ +~~~ +25085043 32 128 +~~~ +~~~ +25085045 32 0 +~~~ +~~~ +25085047 32 512 +25085048 homeCount = 25 +25085048 waitCount = 11 +25085049 ripCount = 11 +25085049 locktype1 = 1 +25085070 locktype2 = 1 +25085070 locktype3 = 2 +25085071 goalCount = 0 +25085071 goalTotal = 0 +25085072 otherCount = 21 +~~~ +25085490 DOWN 6 +25085490 0 512 +25089559 UP 10 +25089560 waslock = 0 +25089559 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25089592 512 16777728 +~~~ +25089594 DOWN 10 +25089594 0 16777728 +~~~ +~~~ +25089613 0 16779776 +~~~ +~~~ +25089615 0 16779264 +25089616 homeCount = 26 +25089616 waitCount = 11 +25089617 ripCount = 11 +25089617 locktype1 = 1 +25089618 locktype2 = 1 +25089618 locktype3 = 2 +25089619 goalCount = 0 +25089619 goalTotal = 0 +25089620 otherCount = 21 +~~~ +25089742 0 2048 +25089753 UP 10 +25089753 waslock = 0 +25089753 512 2048 +~~~ +25090106 DOWN 10 +25090106 0 2048 +~~~ +~~~ +~~~ +~~~ +25090129 homeCount = 26 +25090129 waitCount = 11 +25090130 ripCount = 11 +25090130 locktype1 = 1 +25090131 locktype2 = 1 +25090131 locktype3 = 2 +25090132 goalCount = 0 +25090132 goalTotal = 0 +25090133 otherCount = 21 +~~~ +25090343 UP 10 +25090344 waslock = 0 +25090343 512 2048 +~~~ +25093735 DOWN 10 +25093735 0 2048 +~~~ +~~~ +~~~ +25093757 UP 10 +25093757 waslock = 0 +25093757 512 2048 +~~~ +25093759 homeCount = 26 +25093759 waitCount = 11 +25093760 ripCount = 11 +25093760 locktype1 = 1 +25093761 locktype2 = 1 +25093761 locktype3 = 2 +25093762 goalCount = 0 +25093762 goalTotal = 0 +25093763 otherCount = 21 +~~~ +~~~ +25093831 DOWN 10 +25093831 0 2048 +~~~ +~~~ +~~~ +~~~ +25093859 homeCount = 26 +25093859 waitCount = 11 +25093860 ripCount = 11 +25093860 locktype1 = 1 +25093861 locktype2 = 1 +25093861 locktype3 = 2 +25093862 goalCount = 0 +25093862 goalTotal = 0 +25093863 otherCount = 21 +~~~ +25095923 UP 12 +25095923 2048 2048 +25099423 CLICK1 +25099423 CLICK2 +~~~ +~~~ +~~~ +25099447 2048 67110912 +~~~ +25099548 DOWN 12 +25099548 0 67110912 +25099570 UP 12 +25099570 2048 67110912 +25099596 2048 2048 +~~~ +~~~ +25099615 2048 0 +~~~ +~~~ +25099616 2048 1 +~~~ +~~~ +25099618 2048 3 +~~~ +~~~ +25099620 2048 7 +~~~ +~~~ +25099622 2048 15 +~~~ +~~~ +25099624 2048 31 +~~~ +~~~ +25099625 2048 63 +~~~ +~~~ +25099627 2048 127 +~~~ +~~~ +25099629 2048 255 +25099630 homeCount = 26 +25099631 waitCount = 12 +25099631 ripCount = 11 +25099652 locktype1 = 1 +25099653 locktype2 = 1 +25099653 locktype3 = 2 +25099654 goalCount = 0 +25099654 goalTotal = 0 +25099655 otherCount = 21 +~~~ +25099656 CURRENTGOAL IS [2] +~~~ +25103441 DOWN 12 +25103441 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25103483 homeCount = 26 +25103484 waitCount = 12 +25103484 ripCount = 11 +25103485 locktype1 = 1 +25103485 locktype2 = 1 +25103486 locktype3 = 2 +25103486 goalCount = 0 +25103487 goalTotal = 0 +25103487 otherCount = 21 +~~~ +25103488 CURRENTGOAL IS [2] +~~~ +25107617 UP 2 +25107617 2 255 +~~~ +~~~ +25107640 outer reward +~~~ +25107640 2 131327 +~~~ +~~~ +25108090 2 255 +25108090 DOWN 2 +25108090 0 255 +~~~ +~~~ +25108124 0 254 +~~~ +~~~ +25108126 0 252 +~~~ +~~~ +25108128 0 248 +~~~ +~~~ +25108129 0 240 +~~~ +~~~ +25108131 0 224 +~~~ +~~~ +25108133 0 192 +~~~ +~~~ +25108135 0 128 +~~~ +~~~ +25108137 0 0 +~~~ +~~~ +25108139 0 512 +25108139 homeCount = 26 +25108140 waitCount = 12 +25108141 ripCount = 11 +25108141 locktype1 = 1 +25108162 locktype2 = 1 +25108163 locktype3 = 2 +25108163 goalCount = 1 +25108164 goalTotal = 1 +25108164 otherCount = 21 +~~~ +25108165 2 512 +25108303 DOWN 2 +25108303 0 512 +25108337 2 512 +25108404 DOWN 2 +25108404 0 512 +25108444 2 512 +25108534 DOWN 2 +25108534 0 512 +25108561 2 512 +25108675 DOWN 2 +25108675 0 512 +25108681 2 512 +25108797 DOWN 2 +25108797 0 512 +25108808 2 512 +25108923 DOWN 2 +25108923 0 512 +25108940 2 512 +25109063 DOWN 2 +25109063 0 512 +25109079 2 512 +25109213 DOWN 2 +25109213 0 512 +25109221 2 512 +25111989 DOWN 2 +25111989 0 512 +25111997 2 512 +25112095 DOWN 2 +25112095 0 512 +25112143 2 512 +25112170 DOWN 2 +25112170 0 512 +25112175 2 512 +25112334 DOWN 2 +25112334 0 512 +25112350 2 512 +25112437 DOWN 2 +25112437 0 512 +25112458 2 512 +25112510 DOWN 2 +25112510 0 512 +25112516 2 512 +25112519 DOWN 2 +25112519 0 512 +25112525 2 512 +25112616 DOWN 2 +25112616 0 512 +25112644 2 512 +25112863 DOWN 2 +25112863 0 512 +25112875 2 512 +25112908 DOWN 2 +25112908 0 512 +25112924 2 512 +25112973 DOWN 2 +25112973 0 512 +25112985 2 512 +25113064 DOWN 2 +25113064 0 512 +25113068 2 512 +25113165 DOWN 2 +25113165 0 512 +25113182 2 512 +25113240 DOWN 2 +25113240 0 512 +25113268 2 512 +25113362 DOWN 2 +25113362 0 512 +25113405 2 512 +25113427 DOWN 2 +25113427 0 512 +25113453 2 512 +25113486 DOWN 2 +25113486 0 512 +25113492 2 512 +25113607 DOWN 2 +25113607 0 512 +25113626 2 512 +25114161 DOWN 2 +25114161 0 512 +25114185 2 512 +25114363 DOWN 2 +25114363 0 512 +25114372 2 512 +25114757 DOWN 2 +25114757 0 512 +25114769 2 512 +25114897 DOWN 2 +25114897 0 512 +25114923 2 512 +25115469 DOWN 2 +25115469 0 512 +25115493 2 512 +25115664 DOWN 2 +25115664 0 512 +25115679 2 512 +25118445 DOWN 2 +25118445 0 512 +25118505 2 512 +25118523 DOWN 2 +25118523 0 512 +25123502 UP 10 +25123502 waslock = 0 +25123502 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25123535 512 16777728 +~~~ +25123685 512 512 +25123787 DOWN 10 +25123787 0 512 +~~~ +~~~ +25123809 0 2560 +~~~ +~~~ +25123811 0 2048 +25123812 homeCount = 27 +25123812 waitCount = 12 +25123813 ripCount = 11 +25123813 locktype1 = 1 +25123814 locktype2 = 1 +25123814 locktype3 = 2 +25123815 goalCount = 1 +25123815 goalTotal = 1 +25123816 otherCount = 21 +~~~ +25123946 UP 10 +25123946 waslock = 0 +25123946 512 2048 +~~~ +25128830 DOWN 10 +25128830 0 2048 +~~~ +~~~ +~~~ +~~~ +25128851 homeCount = 27 +25128852 waitCount = 12 +25128852 ripCount = 11 +25128853 locktype1 = 1 +25128853 locktype2 = 1 +25128854 locktype3 = 2 +25128854 goalCount = 1 +25128855 goalTotal = 1 +25128855 otherCount = 21 +~~~ +25130706 UP 12 +25130706 2048 2048 +25132114 DOWN 12 +25132114 0 2048 +25132126 UP 12 +25132126 2048 2048 +25133707 CLICK1 +25133707 CLICK2 +~~~ +~~~ +~~~ +25133732 2048 67110912 +~~~ +25133881 2048 2048 +25138417 DOWN 12 +25138417 0 2048 +~~~ +~~~ +25138438 0 0 +~~~ +~~~ +25138440 0 1 +~~~ +~~~ +25138441 0 3 +~~~ +~~~ +25138443 0 7 +~~~ +~~~ +25138445 0 15 +~~~ +~~~ +25138447 0 31 +~~~ +~~~ +25138449 0 63 +~~~ +~~~ +25138451 0 127 +~~~ +~~~ +25138452 0 255 +25138453 homeCount = 27 +25138454 waitCount = 13 +25138454 ripCount = 11 +25138455 locktype1 = 1 +25138456 locktype2 = 1 +25138476 locktype3 = 2 +25138477 goalCount = 1 +25138477 goalTotal = 1 +25138478 otherCount = 21 +~~~ +25138479 CURRENTGOAL IS [2] +~~~ +25138480 UP 12 +25138479 2048 255 +25138526 DOWN 12 +25138526 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25138567 homeCount = 27 +25138567 waitCount = 13 +25138568 ripCount = 11 +25138568 locktype1 = 1 +25138569 locktype2 = 1 +25138569 locktype3 = 2 +25138570 goalCount = 1 +25138570 goalTotal = 1 +25138571 otherCount = 21 +~~~ +25138572 CURRENTGOAL IS [2] +~~~ +25142186 UP 2 +25142186 2 255 +~~~ +~~~ +25142212 outer reward +~~~ +25142212 2 131327 +~~~ +~~~ +25142409 DOWN 2 +25142409 0 131327 +~~~ +~~~ +25142429 0 131326 +~~~ +~~~ +25142431 0 131324 +~~~ +~~~ +25142433 0 131320 +~~~ +~~~ +25142435 0 131312 +~~~ +~~~ +25142437 0 131296 +~~~ +~~~ +25142438 0 131264 +~~~ +~~~ +25142440 0 131200 +~~~ +~~~ +25142442 0 131072 +~~~ +~~~ +25142444 0 131584 +25142445 homeCount = 27 +25142445 waitCount = 13 +25142446 ripCount = 11 +25142467 locktype1 = 1 +25142467 locktype2 = 1 +25142468 locktype3 = 2 +25142468 goalCount = 2 +25142469 goalTotal = 2 +25142469 otherCount = 21 +~~~ +25142514 2 131584 +25142662 2 512 +25142890 DOWN 2 +25142890 0 512 +25142916 2 512 +25143005 DOWN 2 +25143005 0 512 +25143054 2 512 +25143131 DOWN 2 +25143131 0 512 +25143167 2 512 +25143275 DOWN 2 +25143275 0 512 +25143289 2 512 +25143415 DOWN 2 +25143415 0 512 +25143426 2 512 +25143556 DOWN 2 +25143556 0 512 +25143574 2 512 +25143700 DOWN 2 +25143700 0 512 +25143717 2 512 +25143855 DOWN 2 +25143855 0 512 +25143873 2 512 +25145835 DOWN 2 +25145835 0 512 +25145862 2 512 +25146013 DOWN 2 +25146013 0 512 +25146025 2 512 +25146180 DOWN 2 +25146180 0 512 +25146196 2 512 +25146245 DOWN 2 +25146245 0 512 +25146262 2 512 +25146416 DOWN 2 +25146416 0 512 +25146444 2 512 +25146594 DOWN 2 +25146594 0 512 +25146604 2 512 +25146772 DOWN 2 +25146772 0 512 +25146776 2 512 +25146903 DOWN 2 +25146903 0 512 +25146914 2 512 +25147108 DOWN 2 +25147108 0 512 +25147157 2 512 +25147264 DOWN 2 +25147264 0 512 +25147283 2 512 +25147322 DOWN 2 +25147322 0 512 +25147326 2 512 +25147510 DOWN 2 +25147510 0 512 +25147517 2 512 +25149784 DOWN 2 +25149784 0 512 +25149798 2 512 +25149902 DOWN 2 +25149902 0 512 +25154660 UP 10 +25154660 waslock = 0 +25154660 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25154687 512 16777728 +~~~ +25154837 512 512 +25154873 DOWN 10 +25154873 0 512 +~~~ +~~~ +25154890 0 1536 +~~~ +~~~ +25154892 0 1024 +25154893 homeCount = 28 +25154893 waitCount = 13 +25154894 ripCount = 11 +25154894 locktype1 = 1 +25154895 locktype2 = 1 +25154895 locktype3 = 2 +25154896 goalCount = 2 +25154896 goalTotal = 2 +25154897 otherCount = 21 +~~~ +25154918 UP 10 +25154919 waslock = 0 +25154918 512 1024 +~~~ +25159969 DOWN 10 +25159969 0 1024 +~~~ +~~~ +~~~ +~~~ +25159992 homeCount = 28 +25159992 waitCount = 13 +25159993 ripCount = 11 +25159993 locktype1 = 1 +25159994 locktype2 = 1 +25159994 locktype3 = 2 +25159995 goalCount = 2 +25159995 goalTotal = 2 +25159996 otherCount = 21 +~~~ +25161799 UP 11 +25161799 1024 1024 +25164091 DOWN 11 +25164091 0 1024 +25164144 UP 11 +25164144 1024 1024 +25164160 DOWN 11 +25164160 0 1024 +25164179 UP 11 +25164179 1024 1024 +25164800 BEEP1 +25164800 BEEP2 +~~~ +~~~ +~~~ +25164824 1024 33555456 +~~~ +25164974 1024 1024 +25169371 DOWN 11 +25169371 0 1024 +~~~ +~~~ +25169390 0 0 +~~~ +~~~ +25169392 0 1 +~~~ +~~~ +25169394 0 3 +~~~ +~~~ +25169396 0 7 +~~~ +~~~ +25169398 0 15 +~~~ +~~~ +25169400 0 31 +~~~ +~~~ +25169401 0 63 +~~~ +~~~ +25169403 0 127 +~~~ +~~~ +25169405 0 255 +25169406 homeCount = 28 +25169407 waitCount = 13 +25169407 ripCount = 12 +25169408 locktype1 = 1 +25169408 locktype2 = 1 +25169429 locktype3 = 2 +25169430 goalCount = 2 +25169430 goalTotal = 2 +25169431 otherCount = 21 +~~~ +25169432 CURRENTGOAL IS [2] +~~~ +25169432 UP 11 +25169432 1024 255 +25171560 DOWN 11 +25171560 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25171599 homeCount = 28 +25171599 waitCount = 13 +25171600 ripCount = 12 +25171600 locktype1 = 1 +25171601 locktype2 = 1 +25171601 locktype3 = 2 +25171602 goalCount = 2 +25171602 goalTotal = 2 +25171603 otherCount = 21 +~~~ +25171604 CURRENTGOAL IS [2] +~~~ +25175596 UP 2 +25175596 2 255 +~~~ +~~~ +25175623 outer reward +~~~ +25175624 2 131327 +~~~ +~~~ +25175843 DOWN 2 +25175843 0 131327 +~~~ +~~~ +25175862 0 131326 +~~~ +~~~ +25175863 0 131324 +~~~ +~~~ +25175865 0 131320 +~~~ +~~~ +25175867 0 131312 +~~~ +~~~ +25175869 0 131296 +~~~ +~~~ +25175871 0 131264 +~~~ +~~~ +25175872 0 131200 +~~~ +~~~ +25175874 0 131072 +~~~ +~~~ +25175876 0 131584 +25175877 homeCount = 28 +25175878 waitCount = 13 +25175878 ripCount = 12 +25175899 locktype1 = 1 +25175899 locktype2 = 1 +25175900 locktype3 = 2 +25175900 goalCount = 3 +25175901 goalTotal = 3 +25175901 otherCount = 21 +~~~ +25175912 2 131584 +25176073 2 512 +25176303 DOWN 2 +25176303 0 512 +25176332 2 512 +25176429 DOWN 2 +25176428 0 512 +25176458 2 512 +25176562 DOWN 2 +25176562 0 512 +25176589 2 512 +25176708 DOWN 2 +25176707 0 512 +25176725 2 512 +25176848 DOWN 2 +25176848 0 512 +25176866 2 512 +25176998 DOWN 2 +25176998 0 512 +25177012 2 512 +25177155 DOWN 2 +25177155 0 512 +25177160 2 512 +25179505 DOWN 2 +25179505 0 512 +25179517 2 512 +25179928 DOWN 2 +25179928 0 512 +25179960 2 512 +25180105 DOWN 2 +25180105 0 512 +25180114 2 512 +25180168 DOWN 2 +25180168 0 512 +25180175 2 512 +25180180 DOWN 2 +25180180 0 512 +25180183 2 512 +25180269 DOWN 2 +25180269 0 512 +25180276 2 512 +25180707 DOWN 2 +25180707 0 512 +25180712 2 512 +25180718 DOWN 2 +25180718 0 512 +25180730 2 512 +25180907 DOWN 2 +25180907 0 512 +25180911 2 512 +25180916 DOWN 2 +25180916 0 512 +25180927 2 512 +25181086 DOWN 2 +25181086 0 512 +25181088 2 512 +25181094 DOWN 2 +25181094 0 512 +25181102 2 512 +25182687 DOWN 2 +25182687 0 512 +25182694 2 512 +25182785 DOWN 2 +25182785 0 512 +25188753 UP 10 +25188754 waslock = 0 +25188753 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25188782 512 16777728 +~~~ +25188784 DOWN 10 +25188784 0 16777728 +~~~ +~~~ +25188799 0 16779776 +~~~ +~~~ +25188801 0 16779264 +25188802 homeCount = 29 +25188803 waitCount = 13 +25188803 ripCount = 12 +25188804 locktype1 = 1 +25188804 locktype2 = 1 +25188805 locktype3 = 2 +25188805 goalCount = 3 +25188806 goalTotal = 3 +25188806 otherCount = 21 +~~~ +25188827 UP 10 +25188827 waslock = 0 +25188827 512 16779264 +~~~ +25188932 512 2048 +25188960 DOWN 10 +25188960 0 2048 +25188979 UP 10 +25188980 waslock = 0 +25188979 512 2048 +~~~ +~~~ +~~~ +~~~ +25188986 homeCount = 29 +25188987 waitCount = 13 +25188987 ripCount = 12 +25188988 locktype1 = 1 +25188988 locktype2 = 1 +25188989 locktype3 = 2 +25188989 goalCount = 3 +25188990 goalTotal = 3 +25188990 otherCount = 21 +~~~ +~~~ +25193421 DOWN 10 +25193421 0 2048 +~~~ +~~~ +~~~ +~~~ +25193442 homeCount = 29 +25193442 waitCount = 13 +25193443 ripCount = 12 +25193443 locktype1 = 1 +25193444 locktype2 = 1 +25193444 locktype3 = 2 +25193445 goalCount = 3 +25193445 goalTotal = 3 +25193446 otherCount = 21 +~~~ +25195698 UP 12 +25195698 2048 2048 +25198392 DOWN 12 +25198392 0 2048 +25198421 UP 12 +25198421 2048 2048 +25198445 DOWN 12 +25198445 0 2048 +25198456 UP 12 +25198456 2048 2048 +25198532 DOWN 12 +25198532 0 2048 +25198548 UP 12 +25198548 2048 2048 +25201743 DOWN 12 +25201743 0 2048 +25201782 UP 12 +25201782 2048 2048 +25203699 CLICK1 +25203699 CLICK2 +~~~ +~~~ +~~~ +25203727 2048 67110912 +~~~ +25203877 2048 2048 +25209218 DOWN 12 +25209218 0 2048 +~~~ +~~~ +25209234 0 0 +~~~ +~~~ +25209236 0 1 +~~~ +~~~ +25209238 0 3 +~~~ +~~~ +25209240 0 7 +~~~ +~~~ +25209241 0 15 +~~~ +~~~ +25209243 0 31 +~~~ +~~~ +25209245 0 63 +~~~ +~~~ +25209247 0 127 +~~~ +~~~ +25209249 0 255 +25209250 homeCount = 29 +25209250 waitCount = 14 +25209251 ripCount = 12 +25209251 locktype1 = 1 +25209252 locktype2 = 1 +25209273 locktype3 = 2 +25209273 goalCount = 3 +25209274 goalTotal = 3 +25209274 otherCount = 21 +~~~ +25209275 CURRENTGOAL IS [2] +~~~ +25209277 UP 12 +25209277 2048 255 +25209310 DOWN 12 +25209310 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25209342 homeCount = 29 +25209342 waitCount = 14 +25209343 ripCount = 12 +25209343 locktype1 = 1 +25209344 locktype2 = 1 +25209344 locktype3 = 2 +25209345 goalCount = 3 +25209345 goalTotal = 3 +25209346 otherCount = 21 +~~~ +25209347 CURRENTGOAL IS [2] +~~~ +25224023 UP 2 +25224023 2 255 +~~~ +~~~ +25224050 outer reward +~~~ +25224051 2 131327 +~~~ +~~~ +25224076 DOWN 2 +25224076 0 131327 +~~~ +~~~ +25224097 0 131326 +~~~ +~~~ +25224098 0 131324 +~~~ +~~~ +25224100 0 131320 +~~~ +~~~ +25224102 0 131312 +~~~ +~~~ +25224104 0 131296 +~~~ +~~~ +25224106 0 131264 +~~~ +~~~ +25224107 0 131200 +~~~ +~~~ +25224109 0 131072 +~~~ +~~~ +25224111 0 131584 +25224112 homeCount = 29 +25224113 waitCount = 14 +25224113 ripCount = 12 +25224134 locktype1 = 1 +25224134 locktype2 = 1 +25224135 locktype3 = 2 +25224135 goalCount = 4 +25224136 goalTotal = 4 +25224136 otherCount = 21 +~~~ +25224137 2 131584 +25224348 DOWN 2 +25224348 0 131584 +25224404 2 131584 +25224500 2 512 +25224662 DOWN 2 +25224662 0 512 +25224678 2 512 +25224773 DOWN 2 +25224773 0 512 +25224805 2 512 +25224898 DOWN 2 +25224898 0 512 +25224928 2 512 +25225017 DOWN 2 +25225017 0 512 +25225059 2 512 +25225149 DOWN 2 +25225149 0 512 +25225185 2 512 +25225285 DOWN 2 +25225285 0 512 +25225318 2 512 +25225427 DOWN 2 +25225427 0 512 +25225455 2 512 +25225579 DOWN 2 +25225579 0 512 +25225598 2 512 +25225730 DOWN 2 +25225730 0 512 +25225749 2 512 +25226040 DOWN 2 +25226040 0 512 +25226046 2 512 +25228169 DOWN 2 +25228169 0 512 +25228174 2 512 +25228345 DOWN 2 +25228345 0 512 +25228356 2 512 +25228509 DOWN 2 +25228509 0 512 +25228532 2 512 +25230264 DOWN 2 +25230264 0 512 +25230289 2 512 +25230334 DOWN 2 +25230334 0 512 +25234295 UP 10 +25234295 waslock = 0 +25234295 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25234324 512 16777728 +~~~ +25234474 512 512 +25234489 DOWN 10 +25234488 0 512 +25234502 UP 10 +25234503 waslock = 0 +25234502 512 512 +~~~ +~~~ +25234510 512 2560 +~~~ +~~~ +25234511 512 2048 +25234512 homeCount = 30 +25234513 waitCount = 14 +25234514 ripCount = 12 +25234514 locktype1 = 1 +25234515 locktype2 = 1 +25234515 locktype3 = 2 +25234516 goalCount = 4 +25234516 goalTotal = 4 +25234517 otherCount = 21 +~~~ +~~~ +25238280 DOWN 10 +25238280 0 2048 +~~~ +~~~ +~~~ +~~~ +25238301 homeCount = 30 +25238301 waitCount = 14 +25238302 ripCount = 12 +25238302 locktype1 = 1 +25238303 locktype2 = 1 +25238303 locktype3 = 2 +25238304 goalCount = 4 +25238304 goalTotal = 4 +25238305 otherCount = 21 +~~~ +25239988 UP 12 +25239988 2048 2048 +25248189 DOWN 12 +25248189 0 2048 +25248207 UP 12 +25248207 2048 2048 +25248906 DOWN 12 +25248906 0 2048 +25248913 UP 12 +25248913 2048 2048 +25248988 CLICK1 +25248988 CLICK2 +~~~ +~~~ +~~~ +25249009 2048 67110912 +~~~ +25249159 2048 2048 +25254041 DOWN 12 +25254041 0 2048 +~~~ +~~~ +25254067 0 0 +~~~ +~~~ +25254068 0 1 +~~~ +~~~ +25254070 0 3 +~~~ +~~~ +25254072 0 7 +~~~ +~~~ +25254074 0 15 +~~~ +~~~ +25254076 0 31 +~~~ +~~~ +25254077 0 63 +~~~ +~~~ +25254079 0 127 +~~~ +~~~ +25254081 0 255 +25254082 homeCount = 30 +25254083 waitCount = 15 +25254083 ripCount = 12 +25254084 locktype1 = 1 +25254084 locktype2 = 1 +25254105 locktype3 = 2 +25254106 goalCount = 4 +25254106 goalTotal = 4 +25254107 otherCount = 21 +~~~ +25254108 CURRENTGOAL IS [2] +~~~ +25254108 UP 12 +25254108 2048 255 +25254169 DOWN 12 +25254169 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25254205 homeCount = 30 +25254206 waitCount = 15 +25254206 ripCount = 12 +25254207 locktype1 = 1 +25254207 locktype2 = 1 +25254208 locktype3 = 2 +25254208 goalCount = 4 +25254209 goalTotal = 4 +25254209 otherCount = 21 +~~~ +25254211 CURRENTGOAL IS [2] +~~~ +25258239 UP 2 +25258239 2 255 +~~~ +~~~ +25258262 outer reward +~~~ +25258263 2 131327 +~~~ +~~~ +25258296 DOWN 2 +25258296 0 131327 +~~~ +~~~ +25258319 0 131326 +~~~ +~~~ +25258321 0 131324 +~~~ +~~~ +25258323 0 131320 +~~~ +~~~ +25258325 0 131312 +~~~ +~~~ +25258326 0 131296 +~~~ +~~~ +25258328 0 131264 +~~~ +~~~ +25258330 2 131200 +~~~ +~~~ +25258332 2 131072 +~~~ +~~~ +25258334 2 131584 +25258335 homeCount = 30 +25258335 waitCount = 15 +25258336 ripCount = 12 +25258357 locktype1 = 1 +25258357 locktype2 = 1 +25258358 locktype3 = 2 +25258358 goalCount = 5 +25258359 goalTotal = 5 +25258359 otherCount = 21 +~~~ +25258494 DOWN 2 +25258494 0 131584 +25258540 2 131584 +25258712 2 512 +25258902 DOWN 2 +25258902 0 512 +25258920 2 512 +25259017 DOWN 2 +25259017 0 512 +25259045 2 512 +25259135 DOWN 2 +25259135 0 512 +25259172 2 512 +25259262 DOWN 2 +25259262 0 512 +25259297 2 512 +25259389 DOWN 2 +25259389 0 512 +25259433 2 512 +25259522 DOWN 2 +25259522 0 512 +25259562 2 512 +25259655 DOWN 2 +25259655 0 512 +25259693 2 512 +25259792 DOWN 2 +25259792 0 512 +25259825 2 512 +25259938 DOWN 2 +25259938 0 512 +25259963 2 512 +25260096 DOWN 2 +25260096 0 512 +25260109 2 512 +25260255 DOWN 2 +25260255 0 512 +25260267 2 512 +25260407 DOWN 2 +25260407 0 512 +25260417 2 512 +25260562 DOWN 2 +25260562 0 512 +25260572 2 512 +25264430 DOWN 2 +25264430 0 512 +25264465 2 512 +25264520 DOWN 2 +25264520 0 512 +25268595 UP 10 +25268595 waslock = 0 +25268595 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25268618 512 16777728 +~~~ +25268768 512 512 +25268819 DOWN 10 +25268819 0 512 +25268840 UP 10 +25268840 waslock = 0 +25268839 512 512 +~~~ +~~~ +25268846 512 1536 +~~~ +~~~ +25268848 512 1024 +25268849 homeCount = 31 +25268850 waitCount = 15 +25268850 ripCount = 12 +25268851 locktype1 = 1 +25268851 locktype2 = 1 +25268852 locktype3 = 2 +25268852 goalCount = 5 +25268853 goalTotal = 5 +25268853 otherCount = 21 +~~~ +~~~ +25271996 DOWN 10 +25271996 0 1024 +~~~ +~~~ +~~~ +~~~ +25272015 homeCount = 31 +25272015 waitCount = 15 +25272016 ripCount = 12 +25272016 locktype1 = 1 +25272017 locktype2 = 1 +25272017 locktype3 = 2 +25272018 goalCount = 5 +25272018 goalTotal = 5 +25272019 otherCount = 21 +~~~ +25273511 UP 11 +25273511 1024 1024 +25275924 DOWN 11 +25275924 0 1024 +25275938 UP 11 +25275938 1024 1024 +25277719 DOWN 11 +25277719 0 1024 +25277728 UP 11 +25277728 1024 1024 +25280511 BEEP1 +25280511 BEEP2 +~~~ +~~~ +~~~ +25280536 1024 33555456 +~~~ +25280686 1024 1024 +25285951 DOWN 11 +25285951 0 1024 +~~~ +~~~ +25285973 0 0 +~~~ +~~~ +25285975 0 1 +~~~ +~~~ +25285976 0 3 +~~~ +~~~ +25285978 0 7 +~~~ +~~~ +25285980 0 15 +~~~ +~~~ +25285982 0 31 +~~~ +~~~ +25285984 0 63 +~~~ +~~~ +25285986 0 127 +~~~ +~~~ +25285987 0 255 +25285988 homeCount = 31 +25285989 waitCount = 15 +25285990 ripCount = 13 +25285990 locktype1 = 1 +25285991 locktype2 = 1 +25286011 locktype3 = 2 +25286012 goalCount = 5 +25286012 goalTotal = 5 +25286013 otherCount = 21 +~~~ +25286014 CURRENTGOAL IS [2] +~~~ +25286014 UP 11 +25286014 1024 255 +25288352 DOWN 11 +25288352 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288383 UP 11 +25288383 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288393 homeCount = 31 +25288394 waitCount = 15 +25288394 ripCount = 13 +25288395 locktype1 = 1 +25288395 locktype2 = 1 +25288396 locktype3 = 2 +25288396 goalCount = 5 +25288397 goalTotal = 5 +25288397 otherCount = 21 +~~~ +25288398 CURRENTGOAL IS [2] +~~~ +25288446 DOWN 11 +25288446 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288484 homeCount = 31 +25288485 waitCount = 15 +25288485 ripCount = 13 +25288486 locktype1 = 1 +25288486 locktype2 = 1 +25288487 locktype3 = 2 +25288487 goalCount = 5 +25288488 goalTotal = 5 +25288488 otherCount = 21 +~~~ +25288489 CURRENTGOAL IS [2] +~~~ +25292276 UP 2 +25292276 2 255 +~~~ +~~~ +25292299 outer reward +~~~ +25292300 2 131327 +~~~ +~~~ +25292481 DOWN 2 +25292481 0 131327 +~~~ +~~~ +25292508 0 131326 +~~~ +~~~ +25292510 0 131324 +~~~ +~~~ +25292511 0 131320 +~~~ +~~~ +25292513 0 131312 +~~~ +~~~ +25292515 0 131296 +~~~ +~~~ +25292517 0 131264 +~~~ +~~~ +25292519 0 131200 +~~~ +~~~ +25292521 0 131072 +~~~ +~~~ +25292522 0 131584 +25292523 homeCount = 31 +25292524 waitCount = 15 +25292525 ripCount = 13 +25292545 locktype1 = 1 +25292546 locktype2 = 1 +25292546 locktype3 = 2 +25292547 goalCount = 6 +25292547 goalTotal = 6 +25292548 otherCount = 21 +~~~ +25292548 2 131584 +25292749 2 512 +25292894 DOWN 2 +25292894 0 512 +25292922 2 512 +25293016 DOWN 2 +25293016 0 512 +25293052 2 512 +25293153 DOWN 2 +25293153 0 512 +25293173 2 512 +25294024 DOWN 2 +25294024 0 512 +25294050 2 512 +25299590 DOWN 2 +25299590 0 512 +25303635 UP 10 +25303636 waslock = 0 +25303635 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25303667 512 16777728 +~~~ +25303817 512 512 +25307585 DOWN 10 +25307585 0 512 +~~~ +~~~ +25307608 0 1536 +~~~ +~~~ +25307610 0 1024 +25307611 homeCount = 32 +25307611 waitCount = 15 +25307612 ripCount = 13 +25307613 locktype1 = 1 +25307613 locktype2 = 1 +25307614 locktype3 = 2 +25307614 goalCount = 6 +25307615 goalTotal = 6 +25307615 otherCount = 21 +~~~ +25309251 UP 11 +25309251 1024 1024 +25311815 DOWN 11 +25311815 0 1024 +25311837 UP 11 +25311837 1024 1024 +25313752 BEEP1 +25313752 BEEP2 +~~~ +~~~ +~~~ +25313771 1024 33555456 +~~~ +25313921 1024 1024 +25318968 DOWN 11 +25318968 0 1024 +~~~ +~~~ +25318989 0 0 +~~~ +~~~ +25318991 0 1 +~~~ +~~~ +25318993 0 3 +~~~ +~~~ +25318995 0 7 +~~~ +~~~ +25318997 0 15 +~~~ +~~~ +25318998 0 31 +~~~ +~~~ +25319000 0 63 +~~~ +~~~ +25319002 0 127 +~~~ +~~~ +25319004 0 255 +25319005 homeCount = 32 +25319005 waitCount = 15 +25319006 ripCount = 14 +25319007 locktype1 = 1 +25319007 locktype2 = 1 +25319028 locktype3 = 2 +25319028 goalCount = 6 +25319029 goalTotal = 6 +25319029 otherCount = 21 +~~~ +25319031 CURRENTGOAL IS [2] +~~~ +25319045 UP 11 +25319045 1024 255 +25319211 DOWN 11 +25319211 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25319245 homeCount = 32 +25319246 waitCount = 15 +25319246 ripCount = 14 +25319247 locktype1 = 1 +25319247 locktype2 = 1 +25319248 locktype3 = 2 +25319248 goalCount = 6 +25319249 goalTotal = 6 +25319249 otherCount = 21 +~~~ +25319251 CURRENTGOAL IS [2] +~~~ +25319272 UP 11 +25319272 1024 255 +25321213 DOWN 11 +25321213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25321245 homeCount = 32 +25321246 waitCount = 15 +25321246 ripCount = 14 +25321247 locktype1 = 1 +25321247 locktype2 = 1 +25321248 locktype3 = 2 +25321248 goalCount = 6 +25321249 goalTotal = 6 +25321249 otherCount = 21 +~~~ +25321250 CURRENTGOAL IS [2] +~~~ +25324835 UP 2 +25324835 2 255 +~~~ +~~~ +25324860 outer reward +~~~ +25324861 2 131327 +~~~ +~~~ +25325077 DOWN 2 +25325077 0 131327 +~~~ +~~~ +25325099 0 131326 +~~~ +~~~ +25325101 0 131324 +~~~ +~~~ +25325103 0 131320 +~~~ +~~~ +25325105 0 131312 +~~~ +~~~ +25325106 0 131296 +~~~ +~~~ +25325108 0 131264 +~~~ +~~~ +25325110 0 131200 +~~~ +~~~ +25325112 0 131072 +~~~ +~~~ +25325114 0 131584 +25325115 homeCount = 32 +25325115 waitCount = 15 +25325116 ripCount = 14 +25325136 locktype1 = 1 +25325137 locktype2 = 1 +25325137 locktype3 = 2 +25325138 goalCount = 7 +25325138 goalTotal = 7 +25325139 otherCount = 21 +~~~ +25325141 2 131584 +25325310 2 512 +25325492 DOWN 2 +25325492 0 512 +25325540 2 512 +25325616 DOWN 2 +25325616 0 512 +25325662 2 512 +25325755 DOWN 2 +25325754 0 512 +25325776 2 512 +25326611 DOWN 2 +25326611 0 512 +25326629 2 512 +25329406 DOWN 2 +25329406 0 512 +25329419 2 512 +25329757 DOWN 2 +25329757 0 512 +25329760 2 512 +25329762 DOWN 2 +25329762 0 512 +25329781 2 512 +25329935 DOWN 2 +25329935 0 512 +25329937 2 512 +25329945 DOWN 2 +25329945 0 512 +25329953 2 512 +25331774 DOWN 2 +25331774 0 512 +25331786 2 512 +25331865 DOWN 2 +25331865 0 512 +25335687 UP 10 +25335687 waslock = 0 +25335687 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25335716 512 16777728 +~~~ +25335866 512 512 +25339372 DOWN 10 +25339372 0 512 +~~~ +~~~ +25339390 0 1536 +~~~ +~~~ +25339392 0 1024 +25339393 homeCount = 33 +25339394 waitCount = 15 +25339394 ripCount = 14 +25339395 locktype1 = 1 +25339395 locktype2 = 1 +25339396 locktype3 = 2 +25339396 goalCount = 7 +25339397 goalTotal = 7 +25339397 otherCount = 21 +~~~ +25339425 UP 10 +25339425 waslock = 0 +25339425 512 1024 +25339438 DOWN 10 +25339438 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25339466 homeCount = 33 +25339466 waitCount = 15 +25339467 ripCount = 14 +25339467 locktype1 = 1 +25339468 locktype2 = 1 +25339468 locktype3 = 2 +25339469 goalCount = 7 +25339469 goalTotal = 7 +25339470 otherCount = 21 +~~~ +25341420 UP 11 +25341420 1024 1024 +25341496 DOWN 11 +25341496 0 1024 +25341560 UP 11 +25341560 1024 1024 +25343328 DOWN 11 +25343328 0 1024 +25343349 UP 11 +25343349 1024 1024 +25349420 BEEP1 +25349420 BEEP2 +~~~ +~~~ +~~~ +25349444 1024 33555456 +~~~ +25349594 1024 1024 +25355080 DOWN 11 +25355080 0 1024 +~~~ +~~~ +25355104 0 0 +~~~ +~~~ +25355105 0 1 +~~~ +~~~ +25355107 0 3 +~~~ +25355109 UP 11 +25355108 1024 3 +~~~ +~~~ +25355110 1024 7 +~~~ +~~~ +25355112 1024 15 +~~~ +~~~ +25355114 1024 31 +~~~ +25355115 1024 63 +~~~ +~~~ +25355116 1024 127 +~~~ +~~~ +25355118 1024 255 +25355119 homeCount = 33 +25355140 waitCount = 15 +25355141 ripCount = 15 +25355141 locktype1 = 1 +25355142 locktype2 = 1 +25355142 locktype3 = 2 +25355143 goalCount = 7 +25355143 goalTotal = 7 +25355144 otherCount = 21 +~~~ +25355145 CURRENTGOAL IS [2] +~~~ +25357469 DOWN 11 +25357469 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25357509 homeCount = 33 +25357510 waitCount = 15 +25357510 ripCount = 15 +25357511 locktype1 = 1 +25357511 locktype2 = 1 +25357512 locktype3 = 2 +25357512 goalCount = 7 +25357513 goalTotal = 7 +25357513 otherCount = 21 +~~~ +25357514 CURRENTGOAL IS [2] +~~~ +25361464 UP 2 +25361464 2 255 +~~~ +~~~ +25361487 outer reward +~~~ +25361487 2 131327 +~~~ +~~~ +25361745 DOWN 2 +25361745 0 131327 +~~~ +~~~ +25361763 0 131326 +~~~ +~~~ +25361765 0 131324 +~~~ +~~~ +25361766 0 131320 +~~~ +~~~ +25361768 0 131312 +~~~ +~~~ +25361770 0 131296 +~~~ +~~~ +25361772 0 131264 +~~~ +~~~ +25361774 0 131200 +~~~ +~~~ +25361776 0 131072 +~~~ +~~~ +25361778 0 131584 +25361779 homeCount = 33 +25361779 waitCount = 15 +25361780 ripCount = 15 +25361800 locktype1 = 1 +25361801 locktype2 = 1 +25361801 locktype3 = 2 +25361802 goalCount = 8 +25361802 goalTotal = 8 +25361803 otherCount = 21 +~~~ +25361803 2 131584 +25361937 2 512 +25362139 DOWN 2 +25362139 0 512 +25362176 2 512 +25362263 DOWN 2 +25362263 0 512 +25362291 2 512 +25362386 DOWN 2 +25362386 0 512 +25362422 2 512 +25362510 DOWN 2 +25362510 0 512 +25362553 2 512 +25362641 DOWN 2 +25362641 0 512 +25362682 2 512 +25362795 DOWN 2 +25362795 0 512 +25362813 2 512 +25362939 DOWN 2 +25362939 0 512 +25362959 2 512 +25363093 DOWN 2 +25363093 0 512 +25363099 2 512 +25363241 DOWN 2 +25363241 0 512 +25363246 2 512 +25363391 DOWN 2 +25363391 0 512 +25363399 2 512 +25366031 DOWN 2 +25366031 0 512 +25366037 2 512 +25366210 DOWN 2 +25366210 0 512 +25366218 2 512 +25368328 DOWN 2 +25368328 0 512 +25368391 2 512 +25368427 DOWN 2 +25368427 0 512 +25371877 UP 10 +25371877 waslock = 0 +25371877 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25371903 512 16777728 +~~~ +25372053 512 512 +25379887 DOWN 10 +25379887 0 512 +~~~ +~~~ +25379906 0 1536 +~~~ +~~~ +25379908 0 1024 +25379909 homeCount = 34 +25379909 waitCount = 15 +25379910 ripCount = 15 +25379910 locktype1 = 1 +25379911 locktype2 = 1 +25379911 locktype3 = 2 +25379912 goalCount = 8 +25379912 goalTotal = 8 +25379913 otherCount = 21 +~~~ +25379964 UP 10 +25379964 waslock = 0 +25379964 512 1024 +~~~ +25380013 DOWN 10 +25380013 0 1024 +~~~ +~~~ +~~~ +~~~ +25380044 homeCount = 34 +25380044 waitCount = 15 +25380045 ripCount = 15 +25380045 locktype1 = 1 +25380046 locktype2 = 1 +25380046 locktype3 = 2 +25380047 goalCount = 8 +25380047 goalTotal = 8 +25380048 otherCount = 21 +~~~ +25381643 UP 10 +25381644 waslock = 0 +25381643 512 1024 +25381658 DOWN 10 +25381658 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25381684 homeCount = 34 +25381685 waitCount = 15 +25381685 ripCount = 15 +25381686 locktype1 = 1 +25381686 locktype2 = 1 +25381687 locktype3 = 2 +25381687 goalCount = 8 +25381688 goalTotal = 8 +25381688 otherCount = 21 +~~~ +25383621 UP 11 +25383621 1024 1024 +25388121 BEEP1 +25388121 BEEP2 +~~~ +~~~ +~~~ +25388149 1024 33555456 +~~~ +25388299 1024 1024 +25394043 DOWN 11 +25394043 0 1024 +~~~ +~~~ +25394066 0 0 +~~~ +~~~ +25394068 0 1 +~~~ +~~~ +25394070 0 3 +~~~ +~~~ +25394072 0 7 +~~~ +~~~ +25394074 UP 11 +25394073 1024 15 +~~~ +~~~ +25394076 1024 31 +~~~ +~~~ +25394077 1024 63 +~~~ +~~~ +25394079 1024 127 +~~~ +~~~ +25394081 1024 255 +25394082 homeCount = 34 +25394082 waitCount = 15 +25394083 ripCount = 16 +25394104 locktype1 = 1 +25394104 locktype2 = 1 +25394105 locktype3 = 2 +25394105 goalCount = 8 +25394106 goalTotal = 8 +25394106 otherCount = 21 +~~~ +25394108 CURRENTGOAL IS [2] +~~~ +25394133 DOWN 11 +25394133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25394169 homeCount = 34 +25394170 waitCount = 15 +25394170 ripCount = 16 +25394171 locktype1 = 1 +25394171 locktype2 = 1 +25394172 locktype3 = 2 +25394172 goalCount = 8 +25394173 goalTotal = 8 +25394173 otherCount = 21 +~~~ +25394174 CURRENTGOAL IS [2] +~~~ +25394253 UP 11 +25394253 1024 255 +25394289 DOWN 11 +25394289 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25394325 homeCount = 34 +25394325 waitCount = 15 +25394326 ripCount = 16 +25394326 locktype1 = 1 +25394327 locktype2 = 1 +25394327 locktype3 = 2 +25394328 goalCount = 8 +25394328 goalTotal = 8 +25394329 otherCount = 21 +~~~ +25394330 CURRENTGOAL IS [2] +~~~ +25394940 UP 11 +25394940 1024 255 +25394971 DOWN 11 +25394971 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25395007 UP 11 +25395007 1024 255 +25395008 homeCount = 34 +25395009 waitCount = 15 +25395009 ripCount = 16 +25395010 locktype1 = 1 +25395010 locktype2 = 1 +25395011 locktype3 = 2 +25395011 goalCount = 8 +25395012 goalTotal = 8 +25395012 otherCount = 21 +~~~ +25395034 CURRENTGOAL IS [2] +~~~ +25398455 DOWN 11 +25398455 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25398496 homeCount = 34 +25398496 waitCount = 15 +25398497 ripCount = 16 +25398497 locktype1 = 1 +25398498 locktype2 = 1 +25398498 locktype3 = 2 +25398499 goalCount = 8 +25398499 goalTotal = 8 +25398500 otherCount = 21 +~~~ +25398501 CURRENTGOAL IS [2] +~~~ +25411077 UP 8 +25411077 128 255 +~~~ +~~~ +25411117 DOWN 8 +25411117 0 255 +~~~ +~~~ +25411143 0 254 +~~~ +~~~ +25411145 0 252 +~~~ +~~~ +25411147 0 248 +~~~ +~~~ +25411149 0 240 +~~~ +~~~ +25411151 0 224 +~~~ +~~~ +25411152 0 192 +~~~ +~~~ +25411154 0 128 +~~~ +~~~ +25411156 0 0 +~~~ +~~~ +25411158 0 512 +25411159 homeCount = 34 +25411160 waitCount = 15 +25411160 ripCount = 16 +25411161 locktype1 = 1 +25411161 locktype2 = 1 +25411182 locktype3 = 2 +25411182 goalCount = 8 +25411183 goalTotal = 8 +25411183 otherCount = 22 +~~~ +25411186 128 512 +25411487 DOWN 8 +25411487 0 512 +25415389 UP 10 +25415390 waslock = 0 +25415389 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25415415 512 16777728 +~~~ +25415564 DOWN 10 +25415564 0 16777728 +25415565 0 512 +~~~ +~~~ +25415591 0 1536 +~~~ +~~~ +25415593 0 1024 +25415594 homeCount = 35 +25415595 waitCount = 15 +25415595 ripCount = 16 +25415596 locktype1 = 1 +25415596 locktype2 = 1 +25415597 locktype3 = 2 +25415597 goalCount = 8 +25415598 goalTotal = 8 +25415598 otherCount = 22 +~~~ +25415732 UP 10 +25415732 waslock = 0 +25415732 512 1024 +~~~ +25421067 DOWN 10 +25421067 0 1024 +~~~ +~~~ +~~~ +~~~ +25421092 homeCount = 35 +25421093 waitCount = 15 +25421093 ripCount = 16 +25421094 locktype1 = 1 +25421094 locktype2 = 1 +25421095 locktype3 = 2 +25421095 goalCount = 8 +25421096 goalTotal = 8 +25421096 otherCount = 22 +~~~ +25421137 UP 10 +25421137 waslock = 0 +25421137 512 1024 +25421143 DOWN 10 +25421143 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25421169 homeCount = 35 +25421169 waitCount = 15 +25421170 ripCount = 16 +25421170 locktype1 = 1 +25421171 locktype2 = 1 +25421171 locktype3 = 2 +25421172 goalCount = 8 +25421172 goalTotal = 8 +25421173 otherCount = 22 +~~~ +25424199 UP 11 +25424199 1024 1024 +25431199 BEEP1 +25431199 BEEP2 +~~~ +~~~ +~~~ +25431220 1024 33555456 +~~~ +25431370 1024 1024 +25436615 DOWN 11 +25436615 0 1024 +~~~ +~~~ +25436639 0 0 +~~~ +~~~ +25436641 0 1 +~~~ +~~~ +25436643 0 3 +~~~ +~~~ +25436645 0 7 +~~~ +~~~ +25436646 0 15 +~~~ +25436648 UP 11 +25436648 1024 15 +~~~ +~~~ +25436650 1024 31 +~~~ +~~~ +25436651 1024 63 +~~~ +~~~ +25436653 1024 127 +~~~ +25436654 1024 255 +25436655 homeCount = 35 +25436656 waitCount = 15 +25436677 ripCount = 17 +25436677 locktype1 = 1 +25436678 locktype2 = 1 +25436678 locktype3 = 2 +25436679 goalCount = 8 +25436679 goalTotal = 8 +25436680 otherCount = 22 +~~~ +25436681 CURRENTGOAL IS [2] +~~~ +25436836 DOWN 11 +25436836 0 255 +25436857 UP 11 +25436857 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25436874 homeCount = 35 +25436875 waitCount = 15 +25436875 ripCount = 17 +25436876 locktype1 = 1 +25436876 locktype2 = 1 +25436877 locktype3 = 2 +25436877 goalCount = 8 +25436878 goalTotal = 8 +25436878 otherCount = 22 +~~~ +25436880 CURRENTGOAL IS [2] +~~~ +25436901 DOWN 11 +25436901 0 255 +25436910 UP 11 +25436910 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25436946 homeCount = 35 +25436947 waitCount = 15 +25436947 ripCount = 17 +25436948 locktype1 = 1 +25436948 locktype2 = 1 +25436949 locktype3 = 2 +25436949 goalCount = 8 +25436950 goalTotal = 8 +25436950 otherCount = 22 +~~~ +25436951 CURRENTGOAL IS [2] +~~~ +25438811 DOWN 11 +25438811 0 255 +25438829 UP 11 +25438829 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25438864 homeCount = 35 +25438864 waitCount = 15 +25438865 ripCount = 17 +25438866 locktype1 = 1 +25438866 locktype2 = 1 +25438867 locktype3 = 2 +25438867 goalCount = 8 +25438868 goalTotal = 8 +25438868 otherCount = 22 +~~~ +25438869 CURRENTGOAL IS [2] +~~~ +25438892 DOWN 11 +25438892 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25438927 homeCount = 35 +25438927 waitCount = 15 +25438928 ripCount = 17 +25438928 locktype1 = 1 +25438929 locktype2 = 1 +25438929 locktype3 = 2 +25438930 goalCount = 8 +25438930 goalTotal = 8 +25438931 otherCount = 22 +~~~ +25438932 CURRENTGOAL IS [2] +~~~ +25443046 UP 2 +25443046 2 255 +~~~ +~~~ +25443074 outer reward +~~~ +25443075 2 131327 +~~~ +~~~ +25443261 DOWN 2 +25443261 0 131327 +~~~ +~~~ +25443281 0 131326 +~~~ +~~~ +25443283 0 131324 +~~~ +~~~ +25443285 0 131320 +~~~ +~~~ +25443287 0 131312 +~~~ +~~~ +25443288 0 131296 +~~~ +~~~ +25443290 0 131264 +~~~ +~~~ +25443292 0 131200 +~~~ +~~~ +25443294 0 131072 +~~~ +~~~ +25443296 0 131584 +25443297 homeCount = 35 +25443297 waitCount = 15 +25443298 ripCount = 17 +25443319 locktype1 = 1 +25443319 locktype2 = 1 +25443320 locktype3 = 2 +25443320 goalCount = 9 +25443321 goalTotal = 9 +25443321 otherCount = 22 +~~~ +25443322 2 131584 +25443524 2 512 +25443802 DOWN 2 +25443802 0 512 +25443828 2 512 +25443922 DOWN 2 +25443922 0 512 +25443955 2 512 +25444050 DOWN 2 +25444050 0 512 +25444072 2 512 +25444174 DOWN 2 +25444174 0 512 +25444198 2 512 +25444307 DOWN 2 +25444307 0 512 +25444329 2 512 +25444444 DOWN 2 +25444444 0 512 +25444465 2 512 +25444596 DOWN 2 +25444596 0 512 +25444605 2 512 +25445036 DOWN 2 +25445036 0 512 +25445047 2 512 +25448195 DOWN 2 +25448195 0 512 +25448235 2 512 +25450273 DOWN 2 +25450273 0 512 +25450339 2 512 +25450371 DOWN 2 +25450371 0 512 +25454316 UP 10 +25454317 waslock = 0 +25454316 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25454349 512 16777728 +~~~ +25454499 512 512 +25457148 DOWN 10 +25457148 0 512 +~~~ +~~~ +25457174 0 2560 +~~~ +~~~ +25457176 0 2048 +25457177 homeCount = 36 +25457178 waitCount = 15 +25457178 ripCount = 17 +25457179 locktype1 = 1 +25457179 locktype2 = 1 +25457180 locktype3 = 2 +25457180 goalCount = 9 +25457181 goalTotal = 9 +25457181 otherCount = 22 +~~~ +25459795 UP 12 +25459795 2048 2048 +25463795 CLICK1 +25463795 CLICK2 +~~~ +~~~ +~~~ +25463815 2048 67110912 +~~~ +25463965 2048 2048 +25469814 DOWN 12 +25469814 0 2048 +~~~ +~~~ +25469833 0 0 +~~~ +~~~ +25469835 0 1 +~~~ +~~~ +25469837 0 3 +~~~ +~~~ +25469838 0 7 +~~~ +~~~ +25469840 0 15 +~~~ +~~~ +25469842 0 31 +~~~ +~~~ +25469844 0 63 +~~~ +~~~ +25469846 0 127 +~~~ +~~~ +25469848 0 255 +25469849 homeCount = 36 +25469849 waitCount = 16 +25469850 ripCount = 17 +25469850 locktype1 = 1 +25469851 locktype2 = 1 +25469872 locktype3 = 2 +25469872 goalCount = 9 +25469873 goalTotal = 9 +25469873 otherCount = 22 +~~~ +25469874 CURRENTGOAL IS [2] +~~~ +25469921 UP 12 +25469921 2048 255 +25469955 DOWN 12 +25469955 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25469988 homeCount = 36 +25469989 waitCount = 16 +25469990 ripCount = 17 +25469990 locktype1 = 1 +25469991 locktype2 = 1 +25469991 locktype3 = 2 +25469992 goalCount = 9 +25469992 goalTotal = 9 +25469993 otherCount = 22 +~~~ +25469994 CURRENTGOAL IS [2] +~~~ +25470055 UP 12 +25470055 2048 255 +25471638 DOWN 12 +25471638 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25471678 homeCount = 36 +25471679 waitCount = 16 +25471680 ripCount = 17 +25471680 locktype1 = 1 +25471681 locktype2 = 1 +25471681 locktype3 = 2 +25471682 goalCount = 9 +25471682 goalTotal = 9 +25471683 otherCount = 22 +~~~ +25471684 CURRENTGOAL IS [2] +~~~ +25474558 UP 2 +25474558 2 255 +~~~ +~~~ +25474587 outer reward +~~~ +25474588 2 131327 +~~~ +~~~ +25474593 outerreps = 7 +~~~ +~~~ +25474839 DOWN 2 +25474839 0 131327 +~~~ +~~~ +25474864 0 131326 +~~~ +~~~ +25474866 0 131324 +~~~ +~~~ +25474868 0 131320 +~~~ +~~~ +25474869 0 131312 +~~~ +~~~ +25474871 0 131296 +~~~ +~~~ +25474873 0 131264 +~~~ +~~~ +25474875 0 131200 +~~~ +~~~ +25474877 0 131072 +~~~ +~~~ +25474879 0 131584 +25474880 homeCount = 36 +25474880 waitCount = 16 +25474881 ripCount = 17 +25474901 locktype1 = 1 +25474902 locktype2 = 1 +25474902 locktype3 = 2 +25474903 goalCount = 0 +25474903 goalTotal = 10 +25474904 otherCount = 22 +~~~ +25474904 2 131584 +25475037 2 512 +25475141 DOWN 2 +25475141 0 512 +25475149 2 512 +25475254 DOWN 2 +25475254 0 512 +25475276 2 512 +25475378 DOWN 2 +25475378 0 512 +25475399 2 512 +25475501 DOWN 2 +25475501 0 512 +25475524 2 512 +25475623 DOWN 2 +25475623 0 512 +25475660 2 512 +25480617 DOWN 2 +25480617 0 512 +25480646 2 512 +25480707 DOWN 2 +25480707 0 512 +25484920 UP 10 +25484920 waslock = 0 +25484920 512 512 +~~~ +~~~ +~~~ +25484949 DOWN 10 +25484949 0 512 +~~~ +~~~ +25484951 0 16777728 +~~~ +~~~ +~~~ +25484971 0 16779776 +~~~ +~~~ +25484973 0 16779264 +25484974 homeCount = 37 +25484974 waitCount = 16 +25484975 ripCount = 17 +25484975 locktype1 = 1 +25484976 locktype2 = 1 +25484976 locktype3 = 2 +25484977 goalCount = 0 +25484977 goalTotal = 10 +25484978 otherCount = 22 +~~~ +25484999 UP 10 +25484999 waslock = 0 +25484999 512 16779264 +~~~ +25485101 DOWN 10 +25485101 0 16779264 +25485102 0 2048 +~~~ +~~~ +~~~ +25485124 UP 10 +25485125 waslock = 0 +25485124 512 2048 +~~~ +25485126 homeCount = 37 +25485127 waitCount = 16 +25485127 ripCount = 17 +25485128 locktype1 = 1 +25485128 locktype2 = 1 +25485129 locktype3 = 2 +25485129 goalCount = 0 +25485130 goalTotal = 10 +25485151 otherCount = 22 +~~~ +~~~ +25490231 DOWN 10 +25490231 0 2048 +~~~ +~~~ +~~~ +~~~ +25490257 homeCount = 37 +25490257 waitCount = 16 +25490258 ripCount = 17 +25490258 locktype1 = 1 +25490259 locktype2 = 1 +25490259 locktype3 = 2 +25490260 goalCount = 0 +25490260 goalTotal = 10 +25490261 otherCount = 22 +~~~ +25492166 UP 12 +25492166 2048 2048 +25496488 DOWN 12 +25496488 0 2048 +25496519 UP 12 +25496519 2048 2048 +25498167 CLICK1 +25498167 CLICK2 +~~~ +~~~ +~~~ +25498195 2048 67110912 +~~~ +25498345 2048 2048 +25504762 DOWN 12 +25504762 0 2048 +~~~ +~~~ +25504784 0 0 +~~~ +~~~ +25504786 0 1 +~~~ +~~~ +25504788 0 3 +~~~ +~~~ +25504790 0 7 +~~~ +~~~ +25504791 0 15 +~~~ +~~~ +25504793 0 31 +~~~ +~~~ +25504795 0 63 +~~~ +~~~ +25504797 0 127 +~~~ +~~~ +25504799 0 255 +25504800 homeCount = 37 +25504800 waitCount = 17 +25504801 ripCount = 17 +25504801 locktype1 = 1 +25504802 locktype2 = 1 +25504823 locktype3 = 2 +25504823 goalCount = 0 +25504824 goalTotal = 10 +25504824 otherCount = 22 +~~~ +25504825 CURRENTGOAL IS [3] +~~~ +25504829 UP 12 +25504829 2048 255 +25504904 DOWN 12 +25504904 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25504941 homeCount = 37 +25504941 waitCount = 17 +25504942 ripCount = 17 +25504942 locktype1 = 1 +25504943 locktype2 = 1 +25504943 locktype3 = 2 +25504944 goalCount = 0 +25504944 goalTotal = 10 +25504945 otherCount = 22 +~~~ +25504946 CURRENTGOAL IS [3] +~~~ +25504979 UP 12 +25504979 2048 255 +25505014 DOWN 12 +25505014 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25505051 homeCount = 37 +25505051 waitCount = 17 +25505052 ripCount = 17 +25505052 locktype1 = 1 +25505053 locktype2 = 1 +25505053 locktype3 = 2 +25505054 goalCount = 0 +25505054 goalTotal = 10 +25505055 otherCount = 22 +~~~ +25505056 CURRENTGOAL IS [3] +~~~ +25505126 UP 12 +25505126 2048 255 +25505144 DOWN 12 +25505144 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25505183 homeCount = 37 +25505184 waitCount = 17 +25505184 ripCount = 17 +25505185 locktype1 = 1 +25505186 locktype2 = 1 +25505186 locktype3 = 2 +25505187 goalCount = 0 +25505187 goalTotal = 10 +25505188 otherCount = 22 +~~~ +25505189 CURRENTGOAL IS [3] +~~~ +25505306 UP 12 +25505306 2048 255 +25506646 DOWN 12 +25506646 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25506682 homeCount = 37 +25506683 waitCount = 17 +25506683 ripCount = 17 +25506684 locktype1 = 1 +25506684 locktype2 = 1 +25506685 locktype3 = 2 +25506685 goalCount = 0 +25506686 goalTotal = 10 +25506686 otherCount = 22 +~~~ +25506687 CURRENTGOAL IS [3] +~~~ +25509308 UP 2 +25509308 2 255 +25509319 DOWN 2 +25509319 0 255 +~~~ +~~~ +~~~ +~~~ +25509347 0 254 +~~~ +~~~ +25509349 0 252 +~~~ +~~~ +25509351 0 248 +~~~ +~~~ +25509353 0 240 +~~~ +~~~ +25509354 0 224 +~~~ +~~~ +25509356 0 192 +~~~ +~~~ +25509358 0 128 +~~~ +~~~ +25509360 0 0 +~~~ +~~~ +25509362 0 512 +25509363 homeCount = 37 +25509363 waitCount = 17 +25509364 ripCount = 17 +25509364 locktype1 = 1 +25509386 locktype2 = 1 +25509386 locktype3 = 2 +25509387 goalCount = 0 +25509387 goalTotal = 10 +25509388 otherCount = 23 +~~~ +25509398 2 512 +25509552 DOWN 2 +25509552 0 512 +25509607 2 512 +25510174 DOWN 2 +25510174 0 512 +25513834 UP 10 +25513835 waslock = 0 +25513834 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25513865 512 16777728 +~~~ +25514015 512 512 +25517951 DOWN 10 +25517951 0 512 +~~~ +~~~ +25517967 0 1536 +~~~ +~~~ +25517969 0 1024 +25517970 homeCount = 38 +25517971 waitCount = 17 +25517971 ripCount = 17 +25517972 locktype1 = 1 +25517972 locktype2 = 1 +25517973 locktype3 = 2 +25517973 goalCount = 0 +25517974 goalTotal = 10 +25517974 otherCount = 23 +~~~ +25520064 UP 11 +25520064 1024 1024 +25521046 DOWN 11 +25521046 0 1024 +25521134 UP 11 +25521134 1024 1024 +25521986 DOWN 11 +25521986 0 1024 +25522013 UP 11 +25522013 1024 1024 +25527064 BEEP1 +25527064 BEEP2 +~~~ +~~~ +~~~ +25527092 1024 33555456 +~~~ +25527242 1024 1024 +25534001 DOWN 11 +25534001 0 1024 +~~~ +~~~ +25534020 0 0 +~~~ +~~~ +25534021 0 1 +~~~ +~~~ +25534023 0 3 +~~~ +~~~ +25534025 0 7 +~~~ +~~~ +25534027 0 15 +~~~ +~~~ +25534029 0 31 +~~~ +~~~ +25534030 0 63 +~~~ +~~~ +25534032 0 127 +~~~ +~~~ +25534034 0 255 +25534035 homeCount = 38 +25534036 waitCount = 17 +25534036 ripCount = 18 +25534037 locktype1 = 1 +25534037 locktype2 = 1 +25534058 locktype3 = 2 +25534059 goalCount = 0 +25534059 goalTotal = 10 +25534060 otherCount = 23 +~~~ +25534061 CURRENTGOAL IS [3] +~~~ +25536586 UP 6 +25536586 32 255 +~~~ +~~~ +25537282 DOWN 6 +25537282 0 255 +~~~ +~~~ +25537299 0 254 +~~~ +~~~ +25537301 0 252 +~~~ +~~~ +25537303 0 248 +~~~ +~~~ +25537305 0 240 +~~~ +~~~ +25537307 0 224 +~~~ +~~~ +25537308 0 192 +~~~ +~~~ +25537310 0 128 +~~~ +~~~ +25537312 0 0 +~~~ +~~~ +25537314 0 512 +25537315 homeCount = 38 +25537316 waitCount = 17 +25537316 ripCount = 18 +25537317 locktype1 = 1 +25537338 locktype2 = 1 +25537338 locktype3 = 2 +25537339 goalCount = 0 +25537339 goalTotal = 10 +25537340 otherCount = 24 +~~~ +25542032 UP 10 +25542033 waslock = 0 +25542032 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25542057 512 16777728 +~~~ +25542207 512 512 +25542256 DOWN 10 +25542256 0 512 +25542264 UP 10 +25542265 waslock = 0 +25542264 512 512 +~~~ +~~~ +25542284 512 1536 +~~~ +~~~ +25542286 512 1024 +25542287 homeCount = 39 +25542287 waitCount = 17 +25542288 ripCount = 18 +25542288 locktype1 = 1 +25542289 locktype2 = 1 +25542289 locktype3 = 2 +25542290 goalCount = 0 +25542290 goalTotal = 10 +25542291 otherCount = 24 +~~~ +~~~ +25545602 DOWN 10 +25545602 0 1024 +~~~ +~~~ +~~~ +~~~ +25545626 homeCount = 39 +25545626 waitCount = 17 +25545627 ripCount = 18 +25545627 locktype1 = 1 +25545628 locktype2 = 1 +25545628 locktype3 = 2 +25545629 goalCount = 0 +25545629 goalTotal = 10 +25545630 otherCount = 24 +~~~ +25545632 UP 10 +25545632 waslock = 0 +25545632 512 1024 +~~~ +25545696 DOWN 10 +25545696 0 1024 +~~~ +~~~ +~~~ +~~~ +25545720 homeCount = 39 +25545721 waitCount = 17 +25545721 ripCount = 18 +25545722 locktype1 = 1 +25545722 locktype2 = 1 +25545723 locktype3 = 2 +25545723 goalCount = 0 +25545724 goalTotal = 10 +25545724 otherCount = 24 +~~~ +25549079 UP 11 +25549079 1024 1024 +25549392 DOWN 11 +25549392 0 1024 +25549592 LOCKOUT 3 +~~~ +25549617 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +25549620 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25549678 UP 11 +25549678 1024 0 +25549870 DOWN 11 +25549870 0 0 +25557733 UP 1 +25557733 1 0 +25558031 DOWN 1 +25558031 0 0 +25560934 1 0 +25560938 DOWN 1 +25560938 0 0 +25569322 512 0 +25569441 0 0 +25571157 512 0 +25571190 0 0 +25574617 LOCKEND +~~~ +~~~ +~~~ +25574638 0 512 +25577445 UP 3 +25577445 4 512 +25577923 DOWN 3 +25577923 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25577963 homeCount = 39 +25577963 waitCount = 17 +25577964 ripCount = 18 +25577964 locktype1 = 1 +25577965 locktype2 = 1 +25577965 locktype3 = 3 +25577966 goalCount = 0 +25577966 goalTotal = 10 +25577967 otherCount = 24 +~~~ +25578067 4 512 +25578092 DOWN 3 +25578092 0 512 +25585413 UP 10 +25585413 waslock = 0 +25585413 512 512 +~~~ +~~~ +25585438 DOWN 10 +25585438 0 512 +~~~ +~~~ +~~~ +25585443 0 16777728 +~~~ +~~~ +~~~ +25585465 0 16778752 +~~~ +~~~ +25585467 0 16778240 +25585468 homeCount = 40 +25585468 waitCount = 17 +25585469 ripCount = 18 +25585469 locktype1 = 1 +25585470 locktype2 = 1 +25585470 locktype3 = 3 +25585471 goalCount = 0 +25585471 goalTotal = 10 +25585472 otherCount = 24 +~~~ +25585592 0 1024 +25585685 UP 10 +25585686 waslock = 0 +25585685 512 1024 +~~~ +25590182 DOWN 10 +25590182 0 1024 +~~~ +~~~ +~~~ +~~~ +25590209 homeCount = 40 +25590210 waitCount = 17 +25590210 ripCount = 18 +25590211 locktype1 = 1 +25590211 locktype2 = 1 +25590212 locktype3 = 3 +25590212 goalCount = 0 +25590213 goalTotal = 10 +25590213 otherCount = 24 +~~~ +25609245 UP 8 +25609245 128 1024 +25609250 DOWN 8 +25609250 0 1024 +~~~ +25609266 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +25609270 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25615729 128 0 +25617512 DOWN 8 +25617512 0 0 +25618844 128 0 +25619296 DOWN 8 +25619296 0 0 +25625955 512 0 +25626331 0 0 +25626436 512 0 +25626571 0 0 +25626586 512 0 +25626882 0 0 +25627022 512 0 +25627063 0 0 +25627287 512 0 +25627295 0 0 +25627379 512 0 +25627437 0 0 +25630940 512 0 +25631248 0 0 +25634266 LOCKEND +~~~ +~~~ +~~~ +25634286 0 512 +25659806 UP 10 +25659806 waslock = 0 +25659806 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25659833 512 16777728 +~~~ +25659979 DOWN 10 +25659979 0 16777728 +25659983 0 512 +~~~ +~~~ +25660007 0 2560 +~~~ +~~~ +25660009 0 2048 +25660010 homeCount = 41 +25660010 waitCount = 17 +25660011 ripCount = 18 +25660011 locktype1 = 1 +25660012 locktype2 = 2 +25660012 locktype3 = 3 +25660013 goalCount = 0 +25660013 goalTotal = 10 +25660014 otherCount = 24 +~~~ +25660095 UP 10 +25660096 waslock = 0 +25660095 512 2048 +~~~ +25660160 DOWN 10 +25660160 0 2048 +~~~ +~~~ +~~~ +~~~ +25660189 homeCount = 41 +25660190 waitCount = 17 +25660190 ripCount = 18 +25660191 locktype1 = 1 +25660191 locktype2 = 2 +25660192 locktype3 = 3 +25660192 goalCount = 0 +25660193 goalTotal = 10 +25660193 otherCount = 24 +~~~ +25660261 UP 10 +25660261 waslock = 0 +25660261 512 2048 +~~~ +25660934 DOWN 10 +25660934 0 2048 +25660947 UP 10 +25660947 waslock = 0 +25660947 512 2048 +~~~ +~~~ +~~~ +~~~ +25660969 homeCount = 41 +25660970 waitCount = 17 +25660970 ripCount = 18 +25660971 locktype1 = 1 +25660971 locktype2 = 2 +25660972 locktype3 = 3 +25660972 goalCount = 0 +25660973 goalTotal = 10 +25660973 otherCount = 24 +~~~ +~~~ +25666236 DOWN 10 +25666236 0 2048 +~~~ +~~~ +~~~ +~~~ +25666259 homeCount = 41 +25666259 waitCount = 17 +25666260 ripCount = 18 +25666260 locktype1 = 1 +25666261 locktype2 = 2 +25666261 locktype3 = 3 +25666262 goalCount = 0 +25666262 goalTotal = 10 +25666263 otherCount = 24 +~~~ +25666276 UP 10 +25666277 waslock = 0 +25666276 512 2048 +~~~ +25666339 DOWN 10 +25666339 0 2048 +~~~ +~~~ +~~~ +~~~ +25666369 homeCount = 41 +25666370 waitCount = 17 +25666370 ripCount = 18 +25666371 locktype1 = 1 +25666371 locktype2 = 2 +25666372 locktype3 = 3 +25666372 goalCount = 0 +25666373 goalTotal = 10 +25666373 otherCount = 24 +~~~ +25685376 UP 12 +25685376 2048 2048 +25686651 DOWN 12 +25686651 0 2048 +25686705 UP 12 +25686705 2048 2048 +25686732 DOWN 12 +25686732 0 2048 +25686786 UP 12 +25686786 2048 2048 +25688376 CLICK1 +25688376 CLICK2 +~~~ +~~~ +~~~ +25688399 2048 67110912 +~~~ +25688549 2048 2048 +25694671 DOWN 12 +25694671 0 2048 +~~~ +~~~ +25694697 0 0 +~~~ +~~~ +25694699 0 1 +~~~ +~~~ +25694701 0 3 +~~~ +~~~ +25694703 0 7 +~~~ +~~~ +25694705 0 15 +~~~ +~~~ +25694706 0 31 +~~~ +~~~ +25694708 0 63 +~~~ +~~~ +25694710 0 127 +~~~ +~~~ +25694712 0 255 +25694713 homeCount = 41 +25694713 waitCount = 18 +25694714 ripCount = 18 +25694714 locktype1 = 1 +25694715 locktype2 = 2 +25694736 locktype3 = 3 +25694736 goalCount = 0 +25694737 goalTotal = 10 +25694737 otherCount = 24 +~~~ +25694738 CURRENTGOAL IS [3] +~~~ +25698435 UP 2 +25698435 2 255 +~~~ +~~~ +25698854 DOWN 2 +25698854 0 255 +~~~ +~~~ +25698879 0 254 +~~~ +~~~ +25698881 0 252 +~~~ +~~~ +25698882 0 248 +~~~ +~~~ +25698884 0 240 +~~~ +~~~ +25698886 0 224 +~~~ +~~~ +25698888 0 192 +~~~ +~~~ +25698890 0 128 +~~~ +~~~ +25698891 0 0 +~~~ +~~~ +25698893 0 512 +25698894 homeCount = 41 +25698895 waitCount = 18 +25698895 ripCount = 18 +25698896 locktype1 = 1 +25698917 locktype2 = 2 +25698918 locktype3 = 3 +25698918 goalCount = 0 +25698919 goalTotal = 10 +25698919 otherCount = 25 +~~~ +25698948 2 512 +25699154 DOWN 2 +25699154 0 512 +25703394 UP 10 +25703394 waslock = 0 +25703394 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25703424 512 16777728 +~~~ +25703574 512 512 +25708617 DOWN 10 +25708617 0 512 +~~~ +~~~ +25708639 0 2560 +~~~ +~~~ +25708641 0 2048 +25708642 homeCount = 42 +25708642 waitCount = 18 +25708643 ripCount = 18 +25708643 locktype1 = 1 +25708644 locktype2 = 2 +25708644 locktype3 = 3 +25708645 goalCount = 0 +25708645 goalTotal = 10 +25708646 otherCount = 25 +~~~ +25708690 UP 10 +25708690 waslock = 0 +25708690 512 2048 +25708696 DOWN 10 +25708696 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +25708728 homeCount = 42 +25708728 waitCount = 18 +25708729 ripCount = 18 +25708729 locktype1 = 1 +25708730 locktype2 = 2 +25708730 locktype3 = 3 +25708731 goalCount = 0 +25708731 goalTotal = 10 +25708732 otherCount = 25 +~~~ +25711186 UP 12 +25711186 2048 2048 +25712394 DOWN 12 +25712394 0 2048 +25712398 UP 12 +25712398 2048 2048 +25713214 DOWN 12 +25713214 0 2048 +25713244 UP 12 +25713244 2048 2048 +25715186 CLICK1 +25715186 CLICK2 +~~~ +~~~ +~~~ +25715209 2048 67110912 +~~~ +25715359 2048 2048 +25721807 DOWN 12 +25721807 0 2048 +~~~ +~~~ +25721829 0 0 +~~~ +~~~ +25721830 0 1 +~~~ +~~~ +25721832 0 3 +~~~ +~~~ +25721834 0 7 +~~~ +~~~ +25721836 0 15 +~~~ +~~~ +25721838 0 31 +~~~ +~~~ +25721840 0 63 +~~~ +~~~ +25721841 0 127 +~~~ +~~~ +25721843 0 255 +25721844 homeCount = 42 +25721845 waitCount = 19 +25721845 ripCount = 18 +25721846 locktype1 = 1 +25721846 locktype2 = 2 +25721867 locktype3 = 3 +25721868 goalCount = 0 +25721868 goalTotal = 10 +25721869 otherCount = 25 +~~~ +25721870 CURRENTGOAL IS [3] +~~~ +25726763 UP 3 +25726762 4 255 +~~~ +~~~ +25726783 outer reward +~~~ +25726783 4 262399 +~~~ +~~~ +25727233 4 255 +25734068 DOWN 3 +25734068 0 255 +~~~ +~~~ +25734091 0 254 +~~~ +~~~ +25734093 0 252 +~~~ +~~~ +25734094 0 248 +~~~ +~~~ +25734096 0 240 +~~~ +~~~ +25734098 0 224 +~~~ +~~~ +25734100 0 192 +~~~ +~~~ +25734102 0 128 +~~~ +~~~ +25734104 0 0 +~~~ +~~~ +25734105 0 512 +25734106 homeCount = 42 +25734107 waitCount = 19 +25734107 ripCount = 18 +25734108 locktype1 = 1 +25734108 locktype2 = 2 +25734129 locktype3 = 3 +25734130 goalCount = 1 +25734130 goalTotal = 11 +25734131 otherCount = 25 +~~~ +25738531 UP 10 +25738531 waslock = 0 +25738531 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25738557 512 16777728 +~~~ +25738707 512 512 +25738767 DOWN 10 +25738767 0 512 +25738784 UP 10 +25738784 waslock = 0 +25738784 512 512 +~~~ +~~~ +25738803 512 1536 +~~~ +~~~ +25738805 512 1024 +25738806 homeCount = 43 +25738806 waitCount = 19 +25738807 ripCount = 18 +25738807 locktype1 = 1 +25738808 locktype2 = 2 +25738808 locktype3 = 3 +25738809 goalCount = 1 +25738809 goalTotal = 11 +25738810 otherCount = 25 +~~~ +~~~ +25742304 DOWN 10 +25742304 0 1024 +~~~ +~~~ +~~~ +~~~ +25742326 homeCount = 43 +25742327 waitCount = 19 +25742327 ripCount = 18 +25742328 locktype1 = 1 +25742328 locktype2 = 2 +25742329 locktype3 = 3 +25742329 goalCount = 1 +25742330 goalTotal = 11 +25742330 otherCount = 25 +~~~ +25744264 UP 11 +25744264 1024 1024 +25746728 DOWN 11 +25746728 0 1024 +25746745 UP 11 +25746745 1024 1024 +25748072 DOWN 11 +25748072 0 1024 +25748099 UP 11 +25748099 1024 1024 +25748764 BEEP1 +25748764 BEEP2 +~~~ +~~~ +~~~ +25748784 1024 33555456 +~~~ +25748934 1024 1024 +25755625 DOWN 11 +25755625 0 1024 +~~~ +~~~ +25755651 0 0 +~~~ +~~~ +25755653 0 1 +~~~ +25755654 UP 11 +25755654 1024 1 +~~~ +~~~ +25755656 1024 3 +~~~ +~~~ +25755657 1024 7 +~~~ +25755658 1024 15 +~~~ +~~~ +25755660 1024 31 +~~~ +~~~ +25755662 1024 63 +~~~ +~~~ +25755663 1024 127 +~~~ +~~~ +25755665 1024 255 +25755666 homeCount = 43 +25755688 waitCount = 19 +25755688 ripCount = 19 +25755689 locktype1 = 1 +25755689 locktype2 = 2 +25755690 locktype3 = 3 +25755690 goalCount = 1 +25755691 goalTotal = 11 +25755691 otherCount = 25 +~~~ +25755692 CURRENTGOAL IS [3] +~~~ +25755708 DOWN 11 +25755708 0 255 +25755722 UP 11 +25755722 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25755751 homeCount = 43 +25755751 waitCount = 19 +25755752 ripCount = 19 +25755753 locktype1 = 1 +25755753 locktype2 = 2 +25755754 locktype3 = 3 +25755754 goalCount = 1 +25755755 goalTotal = 11 +25755755 otherCount = 25 +~~~ +25755756 CURRENTGOAL IS [3] +~~~ +25758703 DOWN 11 +25758703 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25758737 homeCount = 43 +25758737 waitCount = 19 +25758738 ripCount = 19 +25758738 locktype1 = 1 +25758739 locktype2 = 2 +25758739 locktype3 = 3 +25758740 goalCount = 1 +25758740 goalTotal = 11 +25758741 otherCount = 25 +~~~ +25758742 CURRENTGOAL IS [3] +~~~ +25762427 UP 2 +25762427 2 255 +~~~ +~~~ +25763276 DOWN 2 +25763276 0 255 +~~~ +~~~ +25763302 0 254 +~~~ +~~~ +25763304 0 252 +~~~ +~~~ +25763306 0 248 +~~~ +~~~ +25763307 0 240 +~~~ +~~~ +25763309 0 224 +~~~ +~~~ +25763311 0 192 +~~~ +~~~ +25763313 0 128 +~~~ +~~~ +25763315 0 0 +~~~ +~~~ +25763317 0 512 +25763318 homeCount = 43 +25763318 waitCount = 19 +25763319 ripCount = 19 +25763319 locktype1 = 1 +25763320 locktype2 = 2 +25763341 locktype3 = 3 +25763341 goalCount = 1 +25763342 goalTotal = 11 +25763342 otherCount = 26 +~~~ +25763466 2 512 +25763664 DOWN 2 +25763664 0 512 +25768061 UP 10 +25768061 waslock = 0 +25768061 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25768092 512 16777728 +~~~ +25768220 DOWN 10 +25768220 0 16777728 +~~~ +25768242 0 512 +~~~ +25768243 0 1536 +~~~ +~~~ +25768244 0 1024 +25768245 homeCount = 44 +25768246 waitCount = 19 +25768246 ripCount = 19 +25768247 locktype1 = 1 +25768247 locktype2 = 2 +25768248 locktype3 = 3 +25768248 goalCount = 1 +25768249 goalTotal = 11 +25768270 otherCount = 26 +~~~ +25768271 UP 10 +25768271 waslock = 0 +25768271 512 1024 +~~~ +25771738 DOWN 10 +25771738 0 1024 +~~~ +~~~ +~~~ +~~~ +25771767 homeCount = 44 +25771768 waitCount = 19 +25771768 ripCount = 19 +25771769 locktype1 = 1 +25771769 locktype2 = 2 +25771770 locktype3 = 3 +25771770 goalCount = 1 +25771771 goalTotal = 11 +25771771 otherCount = 26 +~~~ +25773584 UP 11 +25773584 1024 1024 +25778369 DOWN 11 +25778369 0 1024 +25778378 UP 11 +25778378 1024 1024 +25781584 BEEP1 +25781584 BEEP2 +~~~ +~~~ +~~~ +25781606 1024 33555456 +~~~ +25781756 1024 1024 +25787347 DOWN 11 +25787347 0 1024 +~~~ +~~~ +25787363 0 0 +~~~ +~~~ +25787365 0 1 +~~~ +~~~ +25787367 0 3 +~~~ +~~~ +25787369 0 7 +~~~ +~~~ +25787370 0 15 +~~~ +~~~ +25787372 0 31 +~~~ +~~~ +25787374 0 63 +~~~ +~~~ +25787376 0 127 +~~~ +~~~ +25787378 0 255 +25787379 homeCount = 44 +25787379 waitCount = 19 +25787380 ripCount = 20 +25787380 locktype1 = 1 +25787381 locktype2 = 2 +25787402 locktype3 = 3 +25787402 goalCount = 1 +25787403 goalTotal = 11 +25787403 otherCount = 26 +~~~ +25787404 CURRENTGOAL IS [3] +~~~ +25790514 UP 6 +25790514 32 255 +~~~ +~~~ +25791449 DOWN 6 +25791449 0 255 +~~~ +~~~ +25791474 0 254 +~~~ +~~~ +25791476 0 252 +~~~ +~~~ +25791477 0 248 +~~~ +~~~ +25791479 0 240 +~~~ +~~~ +25791481 0 224 +~~~ +~~~ +25791483 0 192 +~~~ +~~~ +25791485 0 128 +~~~ +~~~ +25791486 0 0 +~~~ +~~~ +25791488 0 512 +25791489 homeCount = 44 +25791490 waitCount = 19 +25791490 ripCount = 20 +25791491 locktype1 = 1 +25791491 locktype2 = 2 +25791512 locktype3 = 3 +25791513 goalCount = 1 +25791513 goalTotal = 11 +25791514 otherCount = 27 +~~~ +25795603 UP 10 +25795603 waslock = 0 +25795603 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25795630 512 16777728 +~~~ +25795780 512 512 +25795823 DOWN 10 +25795823 0 512 +~~~ +~~~ +25795843 0 2560 +~~~ +~~~ +25795845 0 2048 +25795846 homeCount = 45 +25795846 waitCount = 19 +25795847 ripCount = 20 +25795847 locktype1 = 1 +25795848 locktype2 = 2 +25795848 locktype3 = 3 +25795849 goalCount = 1 +25795849 goalTotal = 11 +25795850 otherCount = 27 +~~~ +25796003 UP 10 +25796003 waslock = 0 +25796003 512 2048 +~~~ +25801292 DOWN 10 +25801292 0 2048 +~~~ +~~~ +~~~ +~~~ +25801318 homeCount = 45 +25801318 waitCount = 19 +25801319 ripCount = 20 +25801319 locktype1 = 1 +25801320 locktype2 = 2 +25801320 locktype3 = 3 +25801321 goalCount = 1 +25801321 goalTotal = 11 +25801322 otherCount = 27 +~~~ +25803540 UP 12 +25803540 2048 2048 +25805479 DOWN 12 +25805479 0 2048 +25805510 UP 12 +25805510 2048 2048 +25805675 DOWN 12 +25805675 0 2048 +25805730 UP 12 +25805730 2048 2048 +25806962 DOWN 12 +25806962 0 2048 +25806974 UP 12 +25806974 2048 2048 +25807043 DOWN 12 +25807043 0 2048 +25807214 UP 12 +25807214 2048 2048 +25807283 DOWN 12 +25807283 0 2048 +25807346 UP 12 +25807346 2048 2048 +25809540 CLICK1 +25809540 CLICK2 +~~~ +~~~ +~~~ +25809566 2048 67110912 +~~~ +25809716 2048 2048 +25815767 DOWN 12 +25815767 0 2048 +~~~ +~~~ +25815784 0 0 +~~~ +~~~ +25815786 0 1 +~~~ +~~~ +25815788 0 3 +~~~ +~~~ +25815789 0 7 +~~~ +25815791 UP 12 +25815791 2048 7 +~~~ +~~~ +25815793 2048 15 +~~~ +~~~ +25815794 2048 31 +~~~ +25815795 2048 63 +~~~ +~~~ +25815797 2048 127 +~~~ +~~~ +25815798 2048 255 +25815800 homeCount = 45 +25815821 waitCount = 20 +25815821 ripCount = 20 +25815822 locktype1 = 1 +25815822 locktype2 = 2 +25815823 locktype3 = 3 +25815823 goalCount = 1 +25815824 goalTotal = 11 +25815824 otherCount = 27 +~~~ +25815825 CURRENTGOAL IS [3] +~~~ +25815864 DOWN 12 +25815864 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25815903 homeCount = 45 +25815903 waitCount = 20 +25815904 ripCount = 20 +25815904 locktype1 = 1 +25815905 locktype2 = 2 +25815905 locktype3 = 3 +25815906 goalCount = 1 +25815906 goalTotal = 11 +25815907 otherCount = 27 +~~~ +25815908 CURRENTGOAL IS [3] +~~~ +25819190 UP 2 +25819190 2 255 +~~~ +~~~ +25820057 DOWN 2 +25820057 0 255 +~~~ +~~~ +25820079 0 254 +~~~ +~~~ +25820081 0 252 +~~~ +~~~ +25820083 0 248 +~~~ +~~~ +25820084 0 240 +~~~ +~~~ +25820086 0 224 +~~~ +~~~ +25820088 0 192 +~~~ +~~~ +25820090 0 128 +~~~ +~~~ +25820092 0 0 +~~~ +~~~ +25820094 0 512 +25820095 homeCount = 45 +25820095 waitCount = 20 +25820096 ripCount = 20 +25820096 locktype1 = 1 +25820097 locktype2 = 2 +25820118 locktype3 = 3 +25820118 goalCount = 1 +25820119 goalTotal = 11 +25820119 otherCount = 28 +~~~ +25820242 2 512 +25820365 DOWN 2 +25820365 0 512 +25823770 UP 10 +25823770 waslock = 0 +25823769 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25823798 512 16777728 +~~~ +25823948 512 512 +25823994 DOWN 10 +25823994 0 512 +~~~ +~~~ +25824011 0 2560 +~~~ +~~~ +25824013 0 2048 +25824014 homeCount = 46 +25824015 waitCount = 20 +25824015 ripCount = 20 +25824016 locktype1 = 1 +25824016 locktype2 = 2 +25824017 locktype3 = 3 +25824017 goalCount = 1 +25824018 goalTotal = 11 +25824018 otherCount = 28 +~~~ +25824040 UP 10 +25824040 waslock = 0 +25824040 512 2048 +~~~ +25829907 DOWN 10 +25829907 0 2048 +~~~ +~~~ +~~~ +~~~ +25829936 homeCount = 46 +25829936 waitCount = 20 +25829937 ripCount = 20 +25829937 locktype1 = 1 +25829938 locktype2 = 2 +25829938 locktype3 = 3 +25829939 goalCount = 1 +25829939 goalTotal = 11 +25829940 otherCount = 28 +~~~ +25831818 UP 12 +25831818 2048 2048 +25834819 CLICK1 +25834819 CLICK2 +~~~ +~~~ +~~~ +25834844 2048 67110912 +~~~ +25834994 2048 2048 +25840649 DOWN 12 +25840649 0 2048 +~~~ +~~~ +25840671 0 0 +~~~ +~~~ +25840673 0 1 +~~~ +~~~ +25840675 0 3 +~~~ +~~~ +25840677 0 7 +~~~ +~~~ +25840678 0 15 +~~~ +~~~ +25840680 0 31 +~~~ +~~~ +25840682 0 63 +~~~ +~~~ +25840684 0 127 +~~~ +~~~ +25840686 0 255 +25840687 homeCount = 46 +25840687 waitCount = 21 +25840688 ripCount = 20 +25840688 locktype1 = 1 +25840689 locktype2 = 2 +25840709 locktype3 = 3 +25840710 goalCount = 1 +25840710 goalTotal = 11 +25840711 otherCount = 28 +~~~ +25840712 CURRENTGOAL IS [3] +~~~ +25840713 UP 12 +25840712 2048 255 +25840753 DOWN 12 +25840753 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25840790 homeCount = 46 +25840791 waitCount = 21 +25840791 ripCount = 20 +25840792 locktype1 = 1 +25840792 locktype2 = 2 +25840793 locktype3 = 3 +25840793 goalCount = 1 +25840794 goalTotal = 11 +25840794 otherCount = 28 +~~~ +25840795 CURRENTGOAL IS [3] +~~~ +25846229 UP 3 +25846229 4 255 +~~~ +~~~ +25846247 outer reward +~~~ +25846248 4 262399 +~~~ +~~~ +25846289 DOWN 3 +25846289 0 262399 +25846303 4 262399 +~~~ +~~~ +25846306 4 262398 +~~~ +~~~ +25846308 4 262396 +~~~ +~~~ +25846310 4 262392 +~~~ +~~~ +25846311 4 262384 +~~~ +~~~ +25846313 4 262368 +~~~ +~~~ +25846315 4 262336 +~~~ +~~~ +25846317 4 262272 +~~~ +~~~ +25846319 4 262144 +~~~ +~~~ +25846321 4 262656 +25846322 homeCount = 46 +25846322 waitCount = 21 +25846323 ripCount = 20 +25846343 locktype1 = 1 +25846344 locktype2 = 2 +25846344 locktype3 = 3 +25846345 goalCount = 2 +25846345 goalTotal = 12 +25846346 otherCount = 28 +~~~ +25846482 DOWN 3 +25846482 0 262656 +25846517 4 262656 +25846697 4 512 +25846875 DOWN 3 +25846875 0 512 +25846903 4 512 +25846998 DOWN 3 +25846998 0 512 +25847030 4 512 +25847129 DOWN 3 +25847129 0 512 +25847156 4 512 +25847253 DOWN 3 +25847253 0 512 +25847287 4 512 +25847385 DOWN 3 +25847385 0 512 +25847417 4 512 +25847522 DOWN 3 +25847522 0 512 +25847548 4 512 +25847656 DOWN 3 +25847656 0 512 +25847682 4 512 +25847794 DOWN 3 +25847794 0 512 +25847816 4 512 +25847942 DOWN 3 +25847942 0 512 +25847958 4 512 +25848087 DOWN 3 +25848087 0 512 +25848099 4 512 +25853342 DOWN 3 +25853342 0 512 +25853409 4 512 +25853445 DOWN 3 +25853445 0 512 +25911695 UP 10 +25911695 waslock = 0 +25911695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25911722 512 16777728 +~~~ +25911797 DOWN 10 +25911797 0 16777728 +~~~ +~~~ +25911816 0 16779776 +~~~ +~~~ +25911818 0 16779264 +25911819 homeCount = 47 +25911820 waitCount = 21 +25911820 ripCount = 20 +25911821 locktype1 = 1 +25911821 locktype2 = 2 +25911822 locktype3 = 3 +25911822 goalCount = 2 +25911823 goalTotal = 12 +25911823 otherCount = 28 +~~~ +25911872 0 2048 +25911895 UP 10 +25911895 waslock = 0 +25911895 512 2048 +~~~ +25915776 DOWN 10 +25915776 0 2048 +~~~ +~~~ +~~~ +~~~ +25915802 homeCount = 47 +25915802 waitCount = 21 +25915803 ripCount = 20 +25915803 locktype1 = 1 +25915804 locktype2 = 2 +25915804 locktype3 = 3 +25915805 goalCount = 2 +25915805 goalTotal = 12 +25915806 otherCount = 28 +~~~ +25915830 UP 10 +25915830 waslock = 0 +25915830 512 2048 +25915843 DOWN 10 +25915843 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +25915863 homeCount = 47 +25915864 waitCount = 21 +25915864 ripCount = 20 +25915865 locktype1 = 1 +25915865 locktype2 = 2 +25915866 locktype3 = 3 +25915866 goalCount = 2 +25915867 goalTotal = 12 +25915867 otherCount = 28 +~~~ +25917690 UP 12 +25917690 2048 2048 +25918023 DOWN 12 +25918023 0 2048 +25918224 LOCKOUT 3 +~~~ +25918241 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25918247 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25929828 UP 3 +25929828 4 0 +25930022 DOWN 3 +25930022 0 0 +25930052 4 0 +25930295 DOWN 3 +25930295 0 0 +25930361 4 0 +25930673 DOWN 3 +25930673 0 0 +25930706 4 0 +25930744 DOWN 3 +25930744 0 0 +25942332 UP 5 +25942332 16 0 +25942648 DOWN 5 +25942648 0 0 +25942755 16 0 +25943167 DOWN 5 +25943166 0 0 +25943232 16 0 +25943241 LOCKEND +25943251 DOWN 5 +25943251 0 0 +~~~ +~~~ +~~~ +25943255 0 512 +26002769 UP 10 +26002770 waslock = 0 +26002769 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26002799 512 16777728 +~~~ +26002899 DOWN 10 +26002899 0 16777728 +26002914 UP 10 +26002914 waslock = 0 +26002914 512 16777728 +~~~ +~~~ +26002925 512 16778752 +~~~ +~~~ +26002927 512 16778240 +26002928 homeCount = 48 +26002928 waitCount = 21 +26002929 ripCount = 20 +26002929 locktype1 = 1 +26002930 locktype2 = 2 +26002930 locktype3 = 4 +26002931 goalCount = 2 +26002931 goalTotal = 12 +26002932 otherCount = 28 +~~~ +~~~ +26002954 512 1024 +26003187 DOWN 10 +26003187 0 1024 +~~~ +~~~ +~~~ +~~~ +26003216 homeCount = 48 +26003216 waitCount = 21 +26003217 ripCount = 20 +26003217 locktype1 = 1 +26003218 locktype2 = 2 +26003218 locktype3 = 4 +26003219 goalCount = 2 +26003219 goalTotal = 12 +26003220 otherCount = 28 +~~~ +26003230 UP 10 +26003230 waslock = 0 +26003230 512 1024 +~~~ +26003679 DOWN 10 +26003679 0 1024 +26003691 UP 10 +26003691 waslock = 0 +26003691 512 1024 +~~~ +~~~ +~~~ +~~~ +26003719 homeCount = 48 +26003719 waitCount = 21 +26003720 ripCount = 20 +26003721 locktype1 = 1 +26003721 locktype2 = 2 +26003722 locktype3 = 4 +26003722 goalCount = 2 +26003723 goalTotal = 12 +26003723 otherCount = 28 +~~~ +~~~ +26003834 DOWN 10 +26003834 0 1024 +26003848 UP 10 +26003848 waslock = 0 +26003848 512 1024 +~~~ +~~~ +~~~ +~~~ +26003862 homeCount = 48 +26003863 waitCount = 21 +26003863 ripCount = 20 +26003864 locktype1 = 1 +26003864 locktype2 = 2 +26003865 locktype3 = 4 +26003865 goalCount = 2 +26003866 goalTotal = 12 +26003866 otherCount = 28 +~~~ +~~~ +26003992 DOWN 10 +26003992 0 1024 +26004002 UP 10 +26004003 waslock = 0 +26004002 512 1024 +~~~ +~~~ +~~~ +~~~ +26004018 homeCount = 48 +26004018 waitCount = 21 +26004019 ripCount = 20 +26004020 locktype1 = 1 +26004020 locktype2 = 2 +26004021 locktype3 = 4 +26004021 goalCount = 2 +26004022 goalTotal = 12 +26004022 otherCount = 28 +~~~ +~~~ +26007545 DOWN 10 +26007545 0 1024 +26007568 UP 10 +26007568 waslock = 0 +26007568 512 1024 +~~~ +~~~ +~~~ +~~~ +26007576 homeCount = 48 +26007576 waitCount = 21 +26007577 ripCount = 20 +26007577 locktype1 = 1 +26007578 locktype2 = 2 +26007578 locktype3 = 4 +26007579 goalCount = 2 +26007579 goalTotal = 12 +26007580 otherCount = 28 +~~~ +~~~ +26007655 DOWN 10 +26007655 0 1024 +~~~ +~~~ +~~~ +~~~ +26007677 homeCount = 48 +26007677 waitCount = 21 +26007678 ripCount = 20 +26007679 locktype1 = 1 +26007679 locktype2 = 2 +26007680 locktype3 = 4 +26007680 goalCount = 2 +26007681 goalTotal = 12 +26007681 otherCount = 28 +~~~ +26043997 UP 10 +26043997 waslock = 0 +26043997 512 1024 +~~~ +26044753 DOWN 10 +26044753 0 1024 +~~~ +~~~ +~~~ +~~~ +26044775 homeCount = 48 +26044776 waitCount = 21 +26044776 ripCount = 20 +26044777 locktype1 = 1 +26044777 locktype2 = 2 +26044778 locktype3 = 4 +26044778 goalCount = 2 +26044779 goalTotal = 12 +26044779 otherCount = 28 +~~~ +26046836 UP 11 +26046836 1024 1024 +26047796 DOWN 11 +26047796 0 1024 +26047996 LOCKOUT 3 +~~~ +26048015 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26048019 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26048033 UP 11 +26048033 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +26048065 DOWN 11 +26048065 0 0 +26048110 UP 11 +26048110 1024 0 +26048521 DOWN 11 +26048521 0 0 +26048580 UP 11 +26048580 1024 0 +26050905 DOWN 11 +26050905 0 0 +26050915 UP 11 +26050915 1024 0 +26054064 DOWN 11 +26054064 0 0 +26054111 UP 11 +26054111 1024 0 +26055170 DOWN 11 +26055170 0 0 +26055174 UP 11 +26055174 1024 0 +26060757 DOWN 11 +26060757 0 0 +26065042 UP 8 +26065042 128 0 +26065099 DOWN 8 +26065099 0 0 +26065152 128 0 +26065553 DOWN 8 +26065553 0 0 +26073015 LOCKEND +~~~ +~~~ +~~~ +26073040 0 512 +26074095 UP 10 +26074095 waslock = 0 +26074095 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26074124 512 16777728 +~~~ +26074274 512 512 +26074286 DOWN 10 +26074286 0 512 +~~~ +~~~ +26074307 0 1536 +~~~ +~~~ +26074309 0 1024 +26074310 homeCount = 49 +26074311 waitCount = 21 +26074311 ripCount = 20 +26074312 locktype1 = 1 +26074312 locktype2 = 2 +26074313 locktype3 = 5 +26074313 goalCount = 2 +26074314 goalTotal = 12 +26074314 otherCount = 28 +~~~ +26074335 UP 10 +26074336 waslock = 0 +26074335 512 1024 +~~~ +26079241 DOWN 10 +26079241 0 1024 +26079255 UP 10 +26079255 waslock = 0 +26079255 512 1024 +~~~ +~~~ +~~~ +~~~ +26079262 homeCount = 49 +26079262 waitCount = 21 +26079263 ripCount = 20 +26079263 locktype1 = 1 +26079264 locktype2 = 2 +26079264 locktype3 = 5 +26079265 goalCount = 2 +26079265 goalTotal = 12 +26079266 otherCount = 28 +~~~ +~~~ +26079356 DOWN 10 +26079356 0 1024 +~~~ +~~~ +~~~ +~~~ +26079382 homeCount = 49 +26079382 waitCount = 21 +26079383 ripCount = 20 +26079383 locktype1 = 1 +26079384 locktype2 = 2 +26079384 locktype3 = 5 +26079385 goalCount = 2 +26079385 goalTotal = 12 +26079386 otherCount = 28 +~~~ +26079397 UP 10 +26079398 waslock = 0 +26079397 512 1024 +~~~ +26079458 DOWN 10 +26079458 0 1024 +~~~ +~~~ +~~~ +~~~ +26079482 homeCount = 49 +26079482 waitCount = 21 +26079483 ripCount = 20 +26079483 locktype1 = 1 +26079484 locktype2 = 2 +26079484 locktype3 = 5 +26079485 goalCount = 2 +26079485 goalTotal = 12 +26079486 otherCount = 28 +~~~ +26082385 UP 11 +26082384 1024 1024 +26086385 BEEP1 +26086385 BEEP2 +~~~ +~~~ +~~~ +26086410 1024 33555456 +~~~ +26086560 1024 1024 +26093563 DOWN 11 +26093563 0 1024 +~~~ +~~~ +26093584 0 0 +~~~ +~~~ +26093585 0 1 +~~~ +~~~ +26093587 0 3 +~~~ +~~~ +26093589 0 7 +~~~ +~~~ +26093591 0 15 +~~~ +~~~ +26093593 0 31 +~~~ +26093594 UP 11 +26093594 1024 31 +~~~ +~~~ +26093596 1024 63 +~~~ +~~~ +26093598 1024 127 +~~~ +26093599 1024 255 +26093600 homeCount = 49 +26093600 waitCount = 21 +26093622 ripCount = 21 +26093622 locktype1 = 1 +26093623 locktype2 = 2 +26093623 locktype3 = 5 +26093624 goalCount = 2 +26093624 goalTotal = 12 +26093625 otherCount = 28 +~~~ +26093626 CURRENTGOAL IS [3] +~~~ +26093680 DOWN 11 +26093680 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26093719 homeCount = 49 +26093720 waitCount = 21 +26093721 ripCount = 21 +26093721 locktype1 = 1 +26093722 locktype2 = 2 +26093722 locktype3 = 5 +26093723 goalCount = 2 +26093723 goalTotal = 12 +26093724 otherCount = 28 +~~~ +26093725 CURRENTGOAL IS [3] +~~~ +26093746 UP 11 +26093746 1024 255 +26093773 DOWN 11 +26093773 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26093808 homeCount = 49 +26093808 waitCount = 21 +26093809 ripCount = 21 +26093809 locktype1 = 1 +26093810 locktype2 = 2 +26093810 locktype3 = 5 +26093811 goalCount = 2 +26093811 goalTotal = 12 +26093812 otherCount = 28 +~~~ +26093813 CURRENTGOAL IS [3] +~~~ +26096717 UP 6 +26096717 32 255 +~~~ +~~~ +26097351 DOWN 6 +26097351 0 255 +~~~ +~~~ +26097373 0 254 +~~~ +~~~ +26097375 0 252 +~~~ +~~~ +26097377 0 248 +~~~ +~~~ +26097379 0 240 +~~~ +~~~ +26097380 0 224 +~~~ +~~~ +26097382 0 192 +~~~ +~~~ +26097384 0 128 +~~~ +~~~ +26097386 0 0 +~~~ +~~~ +26097388 0 512 +26097389 homeCount = 49 +26097389 waitCount = 21 +26097390 ripCount = 21 +26097390 locktype1 = 1 +26097391 locktype2 = 2 +26097412 locktype3 = 5 +26097412 goalCount = 2 +26097413 goalTotal = 12 +26097413 otherCount = 29 +~~~ +26104495 UP 10 +26104495 waslock = 0 +26104495 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26104524 512 16777728 +~~~ +26104673 512 512 +26104700 DOWN 10 +26104700 0 512 +~~~ +~~~ +26104727 0 2560 +~~~ +~~~ +26104729 0 2048 +26104730 homeCount = 50 +26104730 waitCount = 21 +26104731 ripCount = 21 +26104731 locktype1 = 1 +26104732 locktype2 = 2 +26104732 locktype3 = 5 +26104733 goalCount = 2 +26104733 goalTotal = 12 +26104734 otherCount = 29 +~~~ +26104857 UP 10 +26104858 waslock = 0 +26104857 512 2048 +~~~ +26109785 DOWN 10 +26109785 0 2048 +~~~ +~~~ +~~~ +~~~ +26109809 homeCount = 50 +26109809 waitCount = 21 +26109810 ripCount = 21 +26109810 locktype1 = 1 +26109811 locktype2 = 2 +26109811 locktype3 = 5 +26109812 goalCount = 2 +26109812 goalTotal = 12 +26109813 otherCount = 29 +~~~ +26109830 UP 10 +26109830 waslock = 0 +26109830 512 2048 +~~~ +26109886 DOWN 10 +26109886 0 2048 +~~~ +~~~ +~~~ +~~~ +26109910 homeCount = 50 +26109910 waitCount = 21 +26109911 ripCount = 21 +26109911 locktype1 = 1 +26109912 locktype2 = 2 +26109912 locktype3 = 5 +26109913 goalCount = 2 +26109913 goalTotal = 12 +26109914 otherCount = 29 +~~~ +26112362 UP 12 +26112362 2048 2048 +26113374 DOWN 12 +26113374 0 2048 +26113418 UP 12 +26113418 2048 2048 +26113943 DOWN 12 +26113943 0 2048 +26114024 UP 12 +26114024 2048 2048 +26115863 CLICK1 +26115863 CLICK2 +~~~ +~~~ +~~~ +26115889 2048 67110912 +~~~ +26116039 2048 2048 +26122109 DOWN 12 +26122109 0 2048 +~~~ +~~~ +26122129 0 0 +~~~ +~~~ +26122131 0 1 +~~~ +~~~ +26122132 0 3 +~~~ +~~~ +26122134 0 7 +~~~ +~~~ +26122136 0 15 +~~~ +~~~ +26122138 0 31 +~~~ +~~~ +26122140 0 63 +~~~ +~~~ +26122142 0 127 +~~~ +~~~ +26122143 0 255 +26122145 homeCount = 50 +26122145 waitCount = 22 +26122146 ripCount = 21 +26122146 locktype1 = 1 +26122147 locktype2 = 2 +26122167 locktype3 = 5 +26122168 goalCount = 2 +26122168 goalTotal = 12 +26122169 otherCount = 29 +~~~ +26122170 CURRENTGOAL IS [3] +~~~ +26126211 UP 3 +26126210 4 255 +26126231 DOWN 3 +26126231 0 255 +~~~ +~~~ +26126237 outer reward +~~~ +26126238 0 262399 +~~~ +~~~ +26126244 4 262399 +~~~ +~~~ +26126256 4 262398 +~~~ +~~~ +26126257 4 262396 +~~~ +~~~ +26126259 4 262392 +~~~ +~~~ +26126261 4 262384 +~~~ +~~~ +26126263 4 262368 +~~~ +~~~ +26126265 4 262336 +~~~ +~~~ +26126267 4 262272 +~~~ +~~~ +26126268 4 262144 +~~~ +~~~ +26126270 4 262656 +26126271 homeCount = 50 +26126272 waitCount = 22 +26126272 ripCount = 21 +26126293 locktype1 = 1 +26126294 locktype2 = 2 +26126294 locktype3 = 5 +26126295 goalCount = 3 +26126295 goalTotal = 13 +26126296 otherCount = 29 +~~~ +26126454 DOWN 3 +26126453 0 262656 +26126503 4 262656 +26126687 4 512 +26126888 DOWN 3 +26126888 0 512 +26126906 4 512 +26127010 DOWN 3 +26127010 0 512 +26127033 4 512 +26127136 DOWN 3 +26127136 0 512 +26127161 4 512 +26127269 DOWN 3 +26127269 0 512 +26127292 4 512 +26127399 DOWN 3 +26127399 0 512 +26127422 4 512 +26127527 DOWN 3 +26127527 0 512 +26127551 4 512 +26127663 DOWN 3 +26127662 0 512 +26127684 4 512 +26127810 DOWN 3 +26127810 0 512 +26127825 4 512 +26127960 DOWN 3 +26127960 0 512 +26127966 4 512 +26132825 DOWN 3 +26132825 0 512 +26132840 4 512 +26132983 DOWN 3 +26132983 0 512 +26132987 4 512 +26133827 DOWN 3 +26133827 0 512 +26133837 4 512 +26134015 DOWN 3 +26134015 0 512 +26134023 4 512 +26135949 DOWN 3 +26135949 0 512 +26140435 UP 10 +26140435 waslock = 0 +26140435 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26140463 512 16777728 +~~~ +26140613 512 512 +26140699 DOWN 10 +26140698 0 512 +~~~ +~~~ +26140719 0 1536 +~~~ +~~~ +26140720 0 1024 +26140722 homeCount = 51 +26140722 waitCount = 22 +26140723 ripCount = 21 +26140723 locktype1 = 1 +26140724 locktype2 = 2 +26140724 locktype3 = 5 +26140725 goalCount = 3 +26140725 goalTotal = 13 +26140726 otherCount = 29 +~~~ +26140747 UP 10 +26140747 waslock = 0 +26140747 512 1024 +~~~ +26144504 DOWN 10 +26144504 0 1024 +~~~ +~~~ +~~~ +~~~ +26144530 homeCount = 51 +26144531 waitCount = 22 +26144531 ripCount = 21 +26144532 locktype1 = 1 +26144532 locktype2 = 2 +26144533 locktype3 = 5 +26144533 goalCount = 3 +26144534 goalTotal = 13 +26144534 otherCount = 29 +~~~ +26144553 UP 10 +26144553 waslock = 0 +26144552 512 1024 +~~~ +26144607 DOWN 10 +26144607 0 1024 +~~~ +~~~ +~~~ +~~~ +26144630 homeCount = 51 +26144631 waitCount = 22 +26144631 ripCount = 21 +26144632 locktype1 = 1 +26144632 locktype2 = 2 +26144633 locktype3 = 5 +26144633 goalCount = 3 +26144634 goalTotal = 13 +26144634 otherCount = 29 +~~~ +26146769 UP 11 +26146769 1024 1024 +26151953 DOWN 11 +26151953 0 1024 +26151979 UP 11 +26151979 1024 1024 +26154269 BEEP1 +26154269 BEEP2 +~~~ +~~~ +~~~ +26154291 1024 33555456 +~~~ +26154441 1024 1024 +26160782 DOWN 11 +26160782 0 1024 +26160794 UP 11 +26160794 1024 1024 +~~~ +~~~ +26160806 1024 0 +~~~ +~~~ +26160808 1024 1 +~~~ +~~~ +26160810 1024 3 +~~~ +~~~ +26160812 1024 7 +~~~ +~~~ +26160814 1024 15 +~~~ +~~~ +26160815 1024 31 +~~~ +~~~ +26160817 1024 63 +~~~ +~~~ +26160819 1024 127 +~~~ +~~~ +26160821 1024 255 +26160822 homeCount = 51 +26160822 waitCount = 22 +26160823 ripCount = 22 +26160844 locktype1 = 1 +26160845 locktype2 = 2 +26160845 locktype3 = 5 +26160846 goalCount = 3 +26160846 goalTotal = 13 +26160847 otherCount = 29 +~~~ +26160848 CURRENTGOAL IS [3] +~~~ +26160904 DOWN 11 +26160904 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26160942 homeCount = 51 +26160943 waitCount = 22 +26160943 ripCount = 22 +26160944 locktype1 = 1 +26160945 locktype2 = 2 +26160945 locktype3 = 5 +26160946 goalCount = 3 +26160946 goalTotal = 13 +26160947 otherCount = 29 +~~~ +26160948 CURRENTGOAL IS [3] +~~~ +26160969 UP 11 +26160969 1024 255 +26160984 DOWN 11 +26160984 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26161023 homeCount = 51 +26161023 waitCount = 22 +26161024 ripCount = 22 +26161024 locktype1 = 1 +26161025 locktype2 = 2 +26161025 locktype3 = 5 +26161026 goalCount = 3 +26161026 goalTotal = 13 +26161027 otherCount = 29 +~~~ +26161028 CURRENTGOAL IS [3] +~~~ +26161049 UP 11 +26161049 1024 255 +26163216 DOWN 11 +26163216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26163255 homeCount = 51 +26163255 waitCount = 22 +26163256 ripCount = 22 +26163256 locktype1 = 1 +26163257 locktype2 = 2 +26163257 locktype3 = 5 +26163258 goalCount = 3 +26163258 goalTotal = 13 +26163259 otherCount = 29 +~~~ +26163260 CURRENTGOAL IS [3] +~~~ +26176641 UP 4 +26176641 8 255 +~~~ +~~~ +26177975 DOWN 4 +26177975 0 255 +~~~ +~~~ +26178001 0 254 +~~~ +~~~ +26178003 0 252 +~~~ +~~~ +26178005 0 248 +~~~ +~~~ +26178006 0 240 +~~~ +~~~ +26178008 0 224 +~~~ +~~~ +26178010 0 192 +~~~ +~~~ +26178012 0 128 +~~~ +~~~ +26178014 0 0 +~~~ +~~~ +26178016 0 512 +26178017 homeCount = 51 +26178017 waitCount = 22 +26178018 ripCount = 22 +26178018 locktype1 = 1 +26178019 locktype2 = 2 +26178040 locktype3 = 5 +26178040 goalCount = 3 +26178041 goalTotal = 13 +26178041 otherCount = 30 +~~~ +26183987 UP 10 +26183987 waslock = 0 +26183986 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26184016 512 16777728 +~~~ +26184166 512 512 +26184227 DOWN 10 +26184227 0 512 +~~~ +26184253 UP 10 +26184253 waslock = 0 +26184253 512 512 +~~~ +~~~ +~~~ +26184256 512 2048 +26184257 homeCount = 52 +26184257 waitCount = 22 +26184258 ripCount = 22 +26184258 locktype1 = 1 +26184259 locktype2 = 2 +26184259 locktype3 = 5 +26184260 goalCount = 3 +26184280 goalTotal = 13 +26184281 otherCount = 30 +~~~ +~~~ +26190484 DOWN 10 +26190484 0 2048 +26190501 UP 10 +26190501 waslock = 0 +26190501 512 2048 +~~~ +~~~ +~~~ +~~~ +26190525 homeCount = 52 +26190525 waitCount = 22 +26190526 ripCount = 22 +26190526 locktype1 = 1 +26190527 locktype2 = 2 +26190527 locktype3 = 5 +26190528 goalCount = 3 +26190528 goalTotal = 13 +26190529 otherCount = 30 +~~~ +~~~ +26190590 DOWN 10 +26190590 0 2048 +~~~ +~~~ +~~~ +~~~ +26190618 homeCount = 52 +26190619 waitCount = 22 +26190619 ripCount = 22 +26190620 locktype1 = 1 +26190620 locktype2 = 2 +26190621 locktype3 = 5 +26190621 goalCount = 3 +26190622 goalTotal = 13 +26190622 otherCount = 30 +~~~ +26192739 UP 12 +26192739 2048 2048 +26197344 DOWN 12 +26197344 0 2048 +26197364 UP 12 +26197364 2048 2048 +26200239 CLICK1 +26200239 CLICK2 +~~~ +~~~ +~~~ +26200261 2048 67110912 +~~~ +26200411 2048 2048 +26205923 DOWN 12 +26205923 0 2048 +~~~ +~~~ +26205949 0 0 +~~~ +~~~ +26205951 0 1 +~~~ +~~~ +26205953 0 3 +~~~ +~~~ +26205955 0 7 +~~~ +~~~ +26205957 0 15 +~~~ +~~~ +26205959 0 31 +~~~ +~~~ +26205960 0 63 +~~~ +~~~ +26205962 0 127 +~~~ +~~~ +26205964 0 255 +26205965 homeCount = 52 +26205966 waitCount = 23 +26205966 ripCount = 22 +26205967 locktype1 = 1 +26205967 locktype2 = 2 +26205988 locktype3 = 5 +26205989 goalCount = 3 +26205989 goalTotal = 13 +26205990 otherCount = 30 +~~~ +26205991 CURRENTGOAL IS [3] +~~~ +26205991 UP 12 +26205991 2048 255 +26206044 DOWN 12 +26206044 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26206086 homeCount = 52 +26206087 waitCount = 23 +26206088 ripCount = 22 +26206088 locktype1 = 1 +26206089 locktype2 = 2 +26206089 locktype3 = 5 +26206090 goalCount = 3 +26206090 goalTotal = 13 +26206091 otherCount = 30 +~~~ +26206092 CURRENTGOAL IS [3] +~~~ +26211547 UP 3 +26211547 4 255 +~~~ +~~~ +26211574 outer reward +~~~ +26211574 4 262399 +~~~ +~~~ +26211584 DOWN 3 +26211584 0 262399 +26211594 4 262399 +~~~ +~~~ +26211604 4 262398 +~~~ +~~~ +26211605 4 262396 +~~~ +~~~ +26211607 4 262392 +~~~ +~~~ +26211609 4 262384 +~~~ +~~~ +26211611 4 262368 +~~~ +~~~ +26211613 4 262336 +~~~ +~~~ +26211614 4 262272 +~~~ +~~~ +26211616 4 262144 +~~~ +~~~ +26211618 4 262656 +26211619 homeCount = 52 +26211620 waitCount = 23 +26211620 ripCount = 22 +26211641 locktype1 = 1 +26211641 locktype2 = 2 +26211642 locktype3 = 5 +26211642 goalCount = 4 +26211643 goalTotal = 14 +26211643 otherCount = 30 +~~~ +26211753 DOWN 3 +26211753 0 262656 +26211803 4 262656 +26212024 4 512 +26212186 DOWN 3 +26212186 0 512 +26212197 4 512 +26212288 DOWN 3 +26212288 0 512 +26212324 4 512 +26212415 DOWN 3 +26212415 0 512 +26212448 4 512 +26212545 DOWN 3 +26212545 0 512 +26212578 4 512 +26212679 DOWN 3 +26212679 0 512 +26212713 4 512 +26212817 DOWN 3 +26212817 0 512 +26212848 4 512 +26212954 DOWN 3 +26212954 0 512 +26212985 4 512 +26213104 DOWN 3 +26213103 0 512 +26213127 4 512 +26213255 DOWN 3 +26213255 0 512 +26213277 4 512 +26213411 DOWN 3 +26213411 0 512 +26213421 4 512 +26213565 DOWN 3 +26213565 0 512 +26213573 4 512 +26213710 DOWN 3 +26213710 0 512 +26213718 4 512 +26219060 DOWN 3 +26219060 0 512 +26219068 4 512 +26221652 DOWN 3 +26221652 0 512 +26229831 UP 10 +26229831 waslock = 0 +26229831 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26229859 512 16777728 +~~~ +26229926 DOWN 10 +26229926 0 16777728 +26229942 UP 10 +26229942 waslock = 0 +26229942 512 16777728 +~~~ +~~~ +26229952 512 16778752 +~~~ +~~~ +26229954 512 16778240 +26229955 homeCount = 53 +26229956 waitCount = 23 +26229957 ripCount = 22 +26229957 locktype1 = 1 +26229958 locktype2 = 2 +26229958 locktype3 = 5 +26229959 goalCount = 4 +26229959 goalTotal = 14 +26229960 otherCount = 30 +~~~ +~~~ +26230009 512 1024 +26230077 DOWN 10 +26230077 0 1024 +~~~ +~~~ +~~~ +~~~ +26230108 homeCount = 53 +26230109 waitCount = 23 +26230109 ripCount = 22 +26230110 locktype1 = 1 +26230110 locktype2 = 2 +26230111 locktype3 = 5 +26230111 goalCount = 4 +26230112 goalTotal = 14 +26230112 otherCount = 30 +~~~ +26230121 UP 10 +26230122 waslock = 0 +26230121 512 1024 +~~~ +26233087 DOWN 10 +26233087 0 1024 +~~~ +~~~ +~~~ +~~~ +26233108 homeCount = 53 +26233108 waitCount = 23 +26233109 ripCount = 22 +26233109 locktype1 = 1 +26233110 locktype2 = 2 +26233110 locktype3 = 5 +26233111 goalCount = 4 +26233111 goalTotal = 14 +26233112 otherCount = 30 +~~~ +26233148 UP 10 +26233148 waslock = 0 +26233148 512 1024 +26233177 DOWN 10 +26233177 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +26233199 homeCount = 53 +26233200 waitCount = 23 +26233200 ripCount = 22 +26233201 locktype1 = 1 +26233201 locktype2 = 2 +26233202 locktype3 = 5 +26233202 goalCount = 4 +26233203 goalTotal = 14 +26233203 otherCount = 30 +~~~ +26247738 UP 11 +26247738 1024 1024 +26248518 DOWN 11 +26248518 0 1024 +26248528 UP 11 +26248528 1024 1024 +26248828 DOWN 11 +26248828 0 1024 +26248837 UP 11 +26248837 1024 1024 +26255739 BEEP1 +26255739 BEEP2 +~~~ +~~~ +~~~ +26255767 1024 33555456 +~~~ +26255917 1024 1024 +26262091 DOWN 11 +26262091 0 1024 +~~~ +~~~ +26262114 0 0 +~~~ +~~~ +26262116 0 1 +~~~ +~~~ +26262118 0 3 +~~~ +~~~ +26262120 0 7 +~~~ +~~~ +26262122 0 15 +~~~ +~~~ +26262123 0 31 +~~~ +~~~ +26262125 0 63 +~~~ +~~~ +26262127 0 127 +~~~ +~~~ +26262129 0 255 +26262130 homeCount = 53 +26262130 waitCount = 23 +26262131 ripCount = 23 +26262131 locktype1 = 1 +26262132 locktype2 = 2 +26262153 locktype3 = 5 +26262153 goalCount = 4 +26262154 goalTotal = 14 +26262154 otherCount = 30 +~~~ +26262156 CURRENTGOAL IS [3] +~~~ +26266855 UP 2 +26266855 2 255 +~~~ +~~~ +26267703 DOWN 2 +26267703 0 255 +~~~ +~~~ +26267724 0 254 +~~~ +~~~ +26267726 0 252 +~~~ +~~~ +26267727 0 248 +~~~ +~~~ +26267729 0 240 +~~~ +~~~ +26267731 0 224 +~~~ +~~~ +26267733 0 192 +~~~ +~~~ +26267735 0 128 +~~~ +~~~ +26267737 0 0 +~~~ +~~~ +26267738 0 512 +26267739 homeCount = 53 +26267740 waitCount = 23 +26267740 ripCount = 23 +26267741 locktype1 = 1 +26267742 locktype2 = 2 +26267762 locktype3 = 5 +26267763 goalCount = 4 +26267763 goalTotal = 14 +26267764 otherCount = 31 +~~~ +26271543 UP 10 +26271543 waslock = 0 +26271543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26271574 512 16777728 +~~~ +26271724 512 512 +26271742 DOWN 10 +26271742 0 512 +~~~ +26271766 UP 10 +26271767 waslock = 0 +26271766 512 512 +~~~ +~~~ +~~~ +26271769 512 1024 +26271770 homeCount = 54 +26271770 waitCount = 23 +26271771 ripCount = 23 +26271771 locktype1 = 1 +26271772 locktype2 = 2 +26271772 locktype3 = 5 +26271773 goalCount = 4 +26271794 goalTotal = 14 +26271794 otherCount = 31 +~~~ +~~~ +26276322 DOWN 10 +26276322 0 1024 +~~~ +~~~ +~~~ +26276348 UP 10 +26276348 waslock = 0 +26276348 512 1024 +~~~ +26276350 homeCount = 54 +26276351 waitCount = 23 +26276351 ripCount = 23 +26276352 locktype1 = 1 +26276352 locktype2 = 2 +26276353 locktype3 = 5 +26276353 goalCount = 4 +26276354 goalTotal = 14 +26276354 otherCount = 31 +~~~ +~~~ +26276422 DOWN 10 +26276422 0 1024 +~~~ +~~~ +~~~ +~~~ +26276450 homeCount = 54 +26276451 waitCount = 23 +26276451 ripCount = 23 +26276452 locktype1 = 1 +26276452 locktype2 = 2 +26276453 locktype3 = 5 +26276453 goalCount = 4 +26276454 goalTotal = 14 +26276454 otherCount = 31 +~~~ +26278218 UP 11 +26278218 1024 1024 +26278776 DOWN 11 +26278776 0 1024 +26278976 LOCKOUT 3 +~~~ +26278999 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26279003 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26279119 UP 11 +26279119 1024 0 +26280486 DOWN 11 +26280486 0 0 +26280724 UP 11 +26280724 1024 0 +26281454 DOWN 11 +26281454 0 0 +26281479 UP 11 +26281479 1024 0 +26283087 DOWN 11 +26283087 0 0 +26287949 UP 7 +26287949 64 0 +26288421 DOWN 7 +26288421 0 0 +26288485 64 0 +26289335 DOWN 7 +26289335 0 0 +26299747 512 0 +26300083 0 0 +26303999 LOCKEND +~~~ +~~~ +~~~ +26304019 0 512 +26306470 UP 10 +26306471 waslock = 0 +26306470 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26306503 512 16777728 +~~~ +26306653 512 512 +26306805 DOWN 10 +26306805 0 512 +~~~ +~~~ +26306827 0 1536 +~~~ +~~~ +26306829 0 1024 +26306830 homeCount = 55 +26306831 waitCount = 23 +26306831 ripCount = 23 +26306832 locktype1 = 1 +26306832 locktype2 = 2 +26306833 locktype3 = 6 +26306833 goalCount = 4 +26306834 goalTotal = 14 +26306834 otherCount = 31 +~~~ +26307269 UP 10 +26307269 waslock = 0 +26307269 512 1024 +~~~ +26311394 DOWN 10 +26311394 0 1024 +~~~ +~~~ +~~~ +~~~ +26311414 homeCount = 55 +26311415 waitCount = 23 +26311415 ripCount = 23 +26311416 locktype1 = 1 +26311416 locktype2 = 2 +26311417 locktype3 = 6 +26311417 goalCount = 4 +26311418 goalTotal = 14 +26311418 otherCount = 31 +~~~ +26351737 UP 10 +26351737 waslock = 0 +26351737 512 1024 +26351742 DOWN 10 +26351742 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +26351768 homeCount = 55 +26351768 waitCount = 23 +26351769 ripCount = 23 +26351769 locktype1 = 1 +26351770 locktype2 = 2 +26351770 locktype3 = 6 +26351771 goalCount = 4 +26351771 goalTotal = 14 +26351772 otherCount = 31 +~~~ +26372865 UP 1 +26372865 1 1024 +~~~ +26372883 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26372886 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26375957 DOWN 1 +26375957 0 0 +26385649 512 0 +26385845 0 0 +26386178 512 0 +26386431 0 0 +26386459 512 0 +26386675 0 0 +26386743 512 0 +26386792 0 0 +26386863 512 0 +26386871 0 0 +26392652 UP 12 +26392652 2048 0 +26393059 DOWN 12 +26393059 0 0 +26397883 LOCKEND +~~~ +~~~ +~~~ +26397903 0 512 +26399587 UP 12 +26399587 2048 512 +26399913 DOWN 12 +26399913 0 512 +26400043 UP 12 +26400043 2048 512 +26400088 DOWN 12 +26400088 0 512 +26400350 UP 12 +26400350 2048 512 +26400466 DOWN 12 +26400466 0 512 +26400557 UP 12 +26400557 2048 512 +26401146 DOWN 12 +26401146 0 512 +26401657 UP 12 +26401657 2048 512 +26401745 DOWN 12 +26401745 0 512 +26401786 UP 12 +26401785 2048 512 +26402161 DOWN 12 +26402161 0 512 +26412119 UP 10 +26412120 waslock = 0 +26412119 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26412148 512 16777728 +~~~ +26412157 DOWN 10 +26412157 0 16777728 +~~~ +~~~ +26412181 0 16778752 +~~~ +~~~ +26412183 0 16778240 +26412184 homeCount = 56 +26412185 waitCount = 23 +26412185 ripCount = 23 +26412186 locktype1 = 1 +26412186 locktype2 = 3 +26412187 locktype3 = 6 +26412187 goalCount = 4 +26412188 goalTotal = 14 +26412188 otherCount = 31 +~~~ +26412209 UP 10 +26412209 waslock = 0 +26412209 512 16778240 +~~~ +26412298 512 1024 +26412306 DOWN 10 +26412306 0 1024 +~~~ +~~~ +~~~ +~~~ +26412325 homeCount = 56 +26412326 waitCount = 23 +26412326 ripCount = 23 +26412327 locktype1 = 1 +26412327 locktype2 = 3 +26412328 locktype3 = 6 +26412328 goalCount = 4 +26412329 goalTotal = 14 +26412329 otherCount = 31 +~~~ +26412346 UP 10 +26412346 waslock = 0 +26412346 512 1024 +~~~ +26412417 DOWN 10 +26412417 0 1024 +~~~ +~~~ +~~~ +~~~ +26412448 homeCount = 56 +26412448 waitCount = 23 +26412449 ripCount = 23 +26412449 locktype1 = 1 +26412450 locktype2 = 3 +26412450 locktype3 = 6 +26412451 goalCount = 4 +26412451 goalTotal = 14 +26412452 otherCount = 31 +~~~ +26412489 UP 10 +26412489 waslock = 0 +26412489 512 1024 +~~~ +26412539 DOWN 10 +26412539 0 1024 +~~~ +~~~ +~~~ +~~~ +26412565 homeCount = 56 +26412566 waitCount = 23 +26412566 ripCount = 23 +26412567 locktype1 = 1 +26412567 locktype2 = 3 +26412568 locktype3 = 6 +26412568 goalCount = 4 +26412569 goalTotal = 14 +26412569 otherCount = 31 +~~~ +26412617 UP 10 +26412618 waslock = 0 +26412617 512 1024 +~~~ +26418530 DOWN 10 +26418530 0 1024 +~~~ +~~~ +~~~ +~~~ +26418559 homeCount = 56 +26418559 waitCount = 23 +26418560 ripCount = 23 +26418560 locktype1 = 1 +26418561 locktype2 = 3 +26418561 locktype3 = 6 +26418562 goalCount = 4 +26418562 goalTotal = 14 +26418563 otherCount = 31 +~~~ +26430877 UP 2 +26430877 2 1024 +~~~ +26430896 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26430900 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26431379 DOWN 2 +26431379 0 0 +26445486 512 0 +26445500 0 0 +26446355 512 0 +26446424 0 0 +26446456 512 0 +26446528 0 0 +26451352 UP 1 +26451352 1 0 +26451385 DOWN 1 +26451385 0 0 +26451422 1 0 +26452043 DOWN 1 +26452043 0 0 +26452263 1 0 +26452275 DOWN 1 +26452275 0 0 +26455896 LOCKEND +~~~ +~~~ +~~~ +26455917 0 512 +26474835 UP 10 +26474835 waslock = 0 +26474835 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26474862 512 16777728 +~~~ +26474896 DOWN 10 +26474896 0 16777728 +~~~ +~~~ +26474916 0 16778752 +~~~ +~~~ +26474918 0 16778240 +26474919 homeCount = 57 +26474920 waitCount = 23 +26474920 ripCount = 23 +26474921 locktype1 = 1 +26474921 locktype2 = 4 +26474922 locktype3 = 6 +26474922 goalCount = 4 +26474923 goalTotal = 14 +26474923 otherCount = 31 +~~~ +26474944 UP 10 +26474944 waslock = 0 +26474944 512 16778240 +~~~ +26475012 512 1024 +26475064 DOWN 10 +26475064 0 1024 +~~~ +~~~ +~~~ +~~~ +26475094 homeCount = 57 +26475095 waitCount = 23 +26475095 ripCount = 23 +26475096 locktype1 = 1 +26475096 locktype2 = 4 +26475097 locktype3 = 6 +26475097 goalCount = 4 +26475098 goalTotal = 14 +26475098 otherCount = 31 +~~~ +26475180 UP 10 +26475180 waslock = 0 +26475180 512 1024 +~~~ +26475308 DOWN 10 +26475308 0 1024 +~~~ +~~~ +~~~ +~~~ +26475331 homeCount = 57 +26475331 waitCount = 23 +26475332 ripCount = 23 +26475332 locktype1 = 1 +26475333 locktype2 = 4 +26475333 locktype3 = 6 +26475334 goalCount = 4 +26475334 goalTotal = 14 +26475335 otherCount = 31 +~~~ +26475336 UP 10 +26475336 waslock = 0 +26475335 512 1024 +~~~ +26480573 DOWN 10 +26480573 0 1024 +~~~ +~~~ +~~~ +~~~ +26480600 homeCount = 57 +26480600 waitCount = 23 +26480601 ripCount = 23 +26480601 locktype1 = 1 +26480602 locktype2 = 4 +26480602 locktype3 = 6 +26480603 goalCount = 4 +26480603 goalTotal = 14 +26480604 otherCount = 31 +~~~ +26482063 UP 11 +26482063 1024 1024 +26482260 DOWN 11 +26482260 0 1024 +26482460 LOCKOUT 3 +~~~ +26482478 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26482482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26486116 UP 7 +26486116 64 0 +26486575 DOWN 7 +26486575 0 0 +26502358 512 0 +26502527 0 0 +26507478 LOCKEND +~~~ +~~~ +~~~ +26507497 0 512 +26610111 UP 10 +26610111 waslock = 0 +26610111 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26610142 512 16777728 +~~~ +26610292 512 512 +26610742 DOWN 10 +26610742 0 512 +~~~ +~~~ +26610767 0 1536 +~~~ +~~~ +26610769 0 1024 +26610770 homeCount = 58 +26610771 waitCount = 23 +26610771 ripCount = 23 +26610772 locktype1 = 1 +26610772 locktype2 = 4 +26610773 locktype3 = 7 +26610773 goalCount = 4 +26610774 goalTotal = 14 +26610774 otherCount = 31 +~~~ +26610795 UP 10 +26610796 waslock = 0 +26610795 512 1024 +~~~ +26611050 DOWN 10 +26611050 0 1024 +26611074 UP 10 +26611075 waslock = 0 +26611074 512 1024 +~~~ +~~~ +~~~ +~~~ +26611083 homeCount = 58 +26611083 waitCount = 23 +26611084 ripCount = 23 +26611084 locktype1 = 1 +26611085 locktype2 = 4 +26611085 locktype3 = 7 +26611086 goalCount = 4 +26611086 goalTotal = 14 +26611087 otherCount = 31 +~~~ +~~~ +26611219 DOWN 10 +26611219 0 1024 +~~~ +~~~ +~~~ +~~~ +26611240 homeCount = 58 +26611240 waitCount = 23 +26611241 ripCount = 23 +26611241 locktype1 = 1 +26611242 locktype2 = 4 +26611242 locktype3 = 7 +26611243 goalCount = 4 +26611243 goalTotal = 14 +26611244 otherCount = 31 +~~~ +26611244 UP 10 +26611245 waslock = 0 +26611244 512 1024 +~~~ +26611380 DOWN 10 +26611380 0 1024 +~~~ +26611412 UP 10 +26611412 waslock = 0 +26611412 512 1024 +~~~ +~~~ +~~~ +26611415 homeCount = 58 +26611416 waitCount = 23 +26611416 ripCount = 23 +26611417 locktype1 = 1 +26611417 locktype2 = 4 +26611418 locktype3 = 7 +26611418 goalCount = 4 +26611419 goalTotal = 14 +26611419 otherCount = 31 +~~~ +~~~ +26611544 DOWN 10 +26611544 0 1024 +26611573 UP 10 +26611573 waslock = 0 +26611573 512 1024 +~~~ +~~~ +~~~ +~~~ +26611579 homeCount = 58 +26611579 waitCount = 23 +26611580 ripCount = 23 +26611580 locktype1 = 1 +26611581 locktype2 = 4 +26611581 locktype3 = 7 +26611582 goalCount = 4 +26611582 goalTotal = 14 +26611583 otherCount = 31 +~~~ +~~~ +26611731 DOWN 10 +26611731 0 1024 +~~~ +~~~ +~~~ +~~~ +26611755 homeCount = 58 +26611756 waitCount = 23 +26611756 ripCount = 23 +26611757 locktype1 = 1 +26611757 locktype2 = 4 +26611758 locktype3 = 7 +26611758 goalCount = 4 +26611759 goalTotal = 14 +26611759 otherCount = 31 +~~~ +26611760 UP 10 +26611760 waslock = 0 +26611760 512 1024 +~~~ +26611907 DOWN 10 +26611907 0 1024 +~~~ +~~~ +~~~ +~~~ +26611935 homeCount = 58 +26611935 waitCount = 23 +26611936 ripCount = 23 +26611936 locktype1 = 1 +26611937 locktype2 = 4 +26611937 locktype3 = 7 +26611938 goalCount = 4 +26611938 goalTotal = 14 +26611939 otherCount = 31 +~~~ +26611943 UP 10 +26611943 waslock = 0 +26611943 512 1024 +~~~ +26612078 DOWN 10 +26612078 0 1024 +26612098 UP 10 +26612098 waslock = 0 +26612098 512 1024 +~~~ +~~~ +~~~ +~~~ +26612110 homeCount = 58 +26612111 waitCount = 23 +26612111 ripCount = 23 +26612112 locktype1 = 1 +26612112 locktype2 = 4 +26612113 locktype3 = 7 +26612113 goalCount = 4 +26612114 goalTotal = 14 +26612114 otherCount = 31 +~~~ +~~~ +26613140 DOWN 10 +26613140 0 1024 +26613146 UP 10 +26613146 waslock = 0 +26613146 512 1024 +~~~ +~~~ +~~~ +~~~ +26613168 homeCount = 58 +26613169 waitCount = 23 +26613169 ripCount = 23 +26613170 locktype1 = 1 +26613170 locktype2 = 4 +26613171 locktype3 = 7 +26613171 goalCount = 4 +26613172 goalTotal = 14 +26613172 otherCount = 31 +~~~ +~~~ +26613312 DOWN 10 +26613312 0 1024 +26613330 UP 10 +26613330 waslock = 0 +26613330 512 1024 +~~~ +~~~ +~~~ +~~~ +26613338 homeCount = 58 +26613339 waitCount = 23 +26613339 ripCount = 23 +26613340 locktype1 = 1 +26613340 locktype2 = 4 +26613341 locktype3 = 7 +26613341 goalCount = 4 +26613342 goalTotal = 14 +26613342 otherCount = 31 +~~~ +~~~ +26613483 DOWN 10 +26613483 0 1024 +~~~ +~~~ +~~~ +~~~ +26613506 homeCount = 58 +26613507 waitCount = 23 +26613508 ripCount = 23 +26613508 locktype1 = 1 +26613509 locktype2 = 4 +26613509 locktype3 = 7 +26613510 goalCount = 4 +26613510 goalTotal = 14 +26613511 otherCount = 31 +~~~ +26613513 UP 10 +26613514 waslock = 0 +26613513 512 1024 +~~~ +26614355 DOWN 10 +26614355 0 1024 +26614372 UP 10 +26614373 waslock = 0 +26614372 512 1024 +~~~ +~~~ +~~~ +~~~ +26614377 homeCount = 58 +26614378 waitCount = 23 +26614378 ripCount = 23 +26614379 locktype1 = 1 +26614379 locktype2 = 4 +26614380 locktype3 = 7 +26614380 goalCount = 4 +26614381 goalTotal = 14 +26614381 otherCount = 31 +~~~ +~~~ +26614729 DOWN 10 +26614729 0 1024 +26614735 UP 10 +26614735 waslock = 0 +26614735 512 1024 +~~~ +~~~ +~~~ +~~~ +26614757 homeCount = 58 +26614758 waitCount = 23 +26614758 ripCount = 23 +26614759 locktype1 = 1 +26614759 locktype2 = 4 +26614760 locktype3 = 7 +26614760 goalCount = 4 +26614761 goalTotal = 14 +26614761 otherCount = 31 +~~~ +~~~ +26614892 DOWN 10 +26614892 0 1024 +~~~ +26614914 UP 10 +26614914 waslock = 0 +26614914 512 1024 +~~~ +~~~ +~~~ +26614917 homeCount = 58 +26614918 waitCount = 23 +26614918 ripCount = 23 +26614919 locktype1 = 1 +26614919 locktype2 = 4 +26614920 locktype3 = 7 +26614920 goalCount = 4 +26614921 goalTotal = 14 +26614921 otherCount = 31 +~~~ +~~~ +26615008 DOWN 10 +26615008 0 1024 +~~~ +~~~ +~~~ +~~~ +26615036 homeCount = 58 +26615037 waitCount = 23 +26615038 ripCount = 23 +26615038 locktype1 = 1 +26615039 locktype2 = 4 +26615039 locktype3 = 7 +26615040 goalCount = 4 +26615040 goalTotal = 14 +26615041 otherCount = 31 +~~~ +26638056 UP 5 +26638056 16 1024 +~~~ +26638084 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26638088 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26638140 DOWN 5 +26638140 0 0 +26638216 16 0 +26638335 DOWN 5 +26638335 0 0 +26638492 16 0 +26638740 DOWN 5 +26638740 0 0 +26663084 LOCKEND +~~~ +~~~ +~~~ +26663104 0 512 +26828055 UP 10 +26828055 waslock = 0 +26828055 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26828081 512 16777728 +~~~ +26828231 512 512 +26828398 DOWN 10 +26828398 0 512 +~~~ +~~~ +26828424 0 1536 +~~~ +~~~ +26828426 0 1024 +26828427 homeCount = 59 +26828427 waitCount = 23 +26828428 ripCount = 23 +26828428 locktype1 = 1 +26828429 locktype2 = 5 +26828429 locktype3 = 7 +26828430 goalCount = 4 +26828430 goalTotal = 14 +26828431 otherCount = 31 +~~~ +26828487 UP 10 +26828488 waslock = 0 +26828487 512 1024 +~~~ +26828917 DOWN 10 +26828917 0 1024 +~~~ +~~~ +~~~ +26828938 UP 10 +26828938 waslock = 0 +26828938 512 1024 +~~~ +26828940 homeCount = 59 +26828940 waitCount = 23 +26828941 ripCount = 23 +26828941 locktype1 = 1 +26828942 locktype2 = 5 +26828942 locktype3 = 7 +26828943 goalCount = 4 +26828943 goalTotal = 14 +26828944 otherCount = 31 +~~~ +~~~ +26829068 DOWN 10 +26829068 0 1024 +26829088 UP 10 +26829088 waslock = 0 +26829088 512 1024 +~~~ +~~~ +~~~ +~~~ +26829100 homeCount = 59 +26829100 waitCount = 23 +26829101 ripCount = 23 +26829101 locktype1 = 1 +26829102 locktype2 = 5 +26829102 locktype3 = 7 +26829103 goalCount = 4 +26829103 goalTotal = 14 +26829104 otherCount = 31 +~~~ +~~~ +26829218 DOWN 10 +26829218 0 1024 +26829240 UP 10 +26829240 waslock = 0 +26829240 512 1024 +~~~ +~~~ +~~~ +~~~ +26829251 homeCount = 59 +26829252 waitCount = 23 +26829252 ripCount = 23 +26829253 locktype1 = 1 +26829253 locktype2 = 5 +26829254 locktype3 = 7 +26829254 goalCount = 4 +26829255 goalTotal = 14 +26829256 otherCount = 31 +~~~ +~~~ +26829378 DOWN 10 +26829378 0 1024 +26829396 UP 10 +26829397 waslock = 0 +26829396 512 1024 +~~~ +~~~ +~~~ +~~~ +26829421 homeCount = 59 +26829422 waitCount = 23 +26829422 ripCount = 23 +26829423 locktype1 = 1 +26829423 locktype2 = 5 +26829424 locktype3 = 7 +26829424 goalCount = 4 +26829425 goalTotal = 14 +26829425 otherCount = 31 +~~~ +~~~ +26829533 DOWN 10 +26829533 0 1024 +26829546 UP 10 +26829546 waslock = 0 +26829546 512 1024 +~~~ +~~~ +~~~ +~~~ +26829570 homeCount = 59 +26829571 waitCount = 23 +26829571 ripCount = 23 +26829572 locktype1 = 1 +26829572 locktype2 = 5 +26829573 locktype3 = 7 +26829573 goalCount = 4 +26829574 goalTotal = 14 +26829574 otherCount = 31 +~~~ +~~~ +26836773 DOWN 10 +26836773 0 1024 +~~~ +~~~ +~~~ +~~~ +26836797 homeCount = 59 +26836798 waitCount = 23 +26836798 ripCount = 23 +26836799 locktype1 = 1 +26836799 locktype2 = 5 +26836800 locktype3 = 7 +26836800 goalCount = 4 +26836801 goalTotal = 14 +26836801 otherCount = 31 +~~~ +26836807 UP 10 +26836807 waslock = 0 +26836807 512 1024 +~~~ +26836875 DOWN 10 +26836875 0 1024 +~~~ +~~~ +~~~ +~~~ +26836898 homeCount = 59 +26836899 waitCount = 23 +26836899 ripCount = 23 +26836900 locktype1 = 1 +26836900 locktype2 = 5 +26836901 locktype3 = 7 +26836901 goalCount = 4 +26836902 goalTotal = 14 +26836902 otherCount = 31 +~~~ +26840595 UP 11 +26840595 1024 1024 +26841373 DOWN 11 +26841373 0 1024 +26841547 UP 11 +26841547 1024 1024 +26842677 DOWN 11 +26842677 0 1024 +26842764 UP 11 +26842764 1024 1024 +26844956 DOWN 11 +26844956 0 1024 +26845156 LOCKOUT 3 +~~~ +26845172 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26845176 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26845183 UP 11 +26845183 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26845256 DOWN 11 +26845256 0 0 +26845365 UP 11 +26845365 1024 0 +26845641 DOWN 11 +26845641 0 0 +26846066 UP 11 +26846066 1024 0 +26846157 DOWN 11 +26846157 0 0 +26866622 UP 8 +26866622 128 0 +26866677 DOWN 8 +26866677 0 0 +26866696 128 0 +26867041 DOWN 8 +26867041 0 0 +26867078 128 0 +26867109 DOWN 8 +26867109 0 0 +26870172 LOCKEND +~~~ +~~~ +~~~ +26870193 0 512 +26877037 UP 10 +26877037 waslock = 0 +26877037 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26877067 512 16777728 +~~~ +26877073 DOWN 10 +26877073 0 16777728 +~~~ +~~~ +26877082 0 16778752 +~~~ +~~~ +26877084 0 16778240 +26877085 homeCount = 60 +26877085 waitCount = 23 +26877086 ripCount = 23 +26877086 locktype1 = 1 +26877087 locktype2 = 5 +26877087 locktype3 = 8 +26877088 goalCount = 4 +26877088 goalTotal = 14 +26877089 otherCount = 31 +~~~ +26877151 UP 10 +26877151 waslock = 0 +26877151 512 16778240 +~~~ +26877201 DOWN 10 +26877201 0 16778240 +26877217 0 1024 +~~~ +~~~ +~~~ +~~~ +26877224 homeCount = 60 +26877225 waitCount = 23 +26877225 ripCount = 23 +26877226 locktype1 = 1 +26877226 locktype2 = 5 +26877227 locktype3 = 8 +26877227 goalCount = 4 +26877228 goalTotal = 14 +26877228 otherCount = 31 +~~~ +26877534 UP 10 +26877535 waslock = 0 +26877534 512 1024 +~~~ +26877694 DOWN 10 +26877694 0 1024 +~~~ +~~~ +~~~ +26877715 UP 10 +26877715 waslock = 0 +26877715 512 1024 +~~~ +26877717 homeCount = 60 +26877718 waitCount = 23 +26877718 ripCount = 23 +26877719 locktype1 = 1 +26877719 locktype2 = 5 +26877720 locktype3 = 8 +26877720 goalCount = 4 +26877721 goalTotal = 14 +26877742 otherCount = 31 +~~~ +~~~ +26877844 DOWN 10 +26877844 0 1024 +~~~ +~~~ +~~~ +~~~ +26877866 homeCount = 60 +26877866 waitCount = 23 +26877867 ripCount = 23 +26877867 locktype1 = 1 +26877868 locktype2 = 5 +26877868 locktype3 = 8 +26877869 goalCount = 4 +26877869 goalTotal = 14 +26877870 otherCount = 31 +~~~ +26877872 UP 10 +26877873 waslock = 0 +26877872 512 1024 +~~~ +26877995 DOWN 10 +26877994 0 1024 +~~~ +~~~ +~~~ +~~~ +26878015 homeCount = 60 +26878016 waitCount = 23 +26878016 ripCount = 23 +26878017 locktype1 = 1 +26878017 locktype2 = 5 +26878018 locktype3 = 8 +26878018 goalCount = 4 +26878019 goalTotal = 14 +26878019 otherCount = 31 +~~~ +26878027 UP 10 +26878027 waslock = 0 +26878027 512 1024 +~~~ +26878159 DOWN 10 +26878159 0 1024 +26878173 UP 10 +26878174 waslock = 0 +26878173 512 1024 +~~~ +~~~ +~~~ +~~~ +26878196 homeCount = 60 +26878196 waitCount = 23 +26878197 ripCount = 23 +26878197 locktype1 = 1 +26878198 locktype2 = 5 +26878198 locktype3 = 8 +26878199 goalCount = 4 +26878199 goalTotal = 14 +26878200 otherCount = 31 +~~~ +~~~ +26878498 DOWN 10 +26878498 0 1024 +26878503 UP 10 +26878503 waslock = 0 +26878503 512 1024 +~~~ +~~~ +~~~ +~~~ +26878527 homeCount = 60 +26878528 waitCount = 23 +26878528 ripCount = 23 +26878529 locktype1 = 1 +26878529 locktype2 = 5 +26878530 locktype3 = 8 +26878530 goalCount = 4 +26878531 goalTotal = 14 +26878531 otherCount = 31 +~~~ +~~~ +26882217 DOWN 10 +26882217 0 1024 +26882229 UP 10 +26882229 waslock = 0 +26882229 512 1024 +~~~ +~~~ +~~~ +~~~ +26882244 homeCount = 60 +26882245 waitCount = 23 +26882245 ripCount = 23 +26882246 locktype1 = 1 +26882246 locktype2 = 5 +26882247 locktype3 = 8 +26882247 goalCount = 4 +26882248 goalTotal = 14 +26882248 otherCount = 31 +~~~ +~~~ +26882330 DOWN 10 +26882330 0 1024 +~~~ +~~~ +~~~ +~~~ +26882359 homeCount = 60 +26882360 waitCount = 23 +26882360 ripCount = 23 +26882361 locktype1 = 1 +26882361 locktype2 = 5 +26882362 locktype3 = 8 +26882362 goalCount = 4 +26882363 goalTotal = 14 +26882363 otherCount = 31 +~~~ +26882377 UP 10 +26882378 waslock = 0 +26882377 512 1024 +~~~ +26882442 DOWN 10 +26882442 0 1024 +~~~ +~~~ +~~~ +~~~ +26882465 homeCount = 60 +26882465 waitCount = 23 +26882466 ripCount = 23 +26882466 locktype1 = 1 +26882467 locktype2 = 5 +26882467 locktype3 = 8 +26882468 goalCount = 4 +26882468 goalTotal = 14 +26882469 otherCount = 31 +~~~ +26885557 UP 11 +26885557 1024 1024 +26886036 DOWN 11 +26886036 0 1024 +26886087 UP 11 +26886087 1024 1024 +26888031 DOWN 11 +26888031 0 1024 +26888091 UP 11 +26888091 1024 1024 +26889084 DOWN 11 +26889084 0 1024 +26889112 UP 11 +26889112 1024 1024 +26889129 DOWN 11 +26889129 0 1024 +26889167 UP 11 +26889167 1024 1024 +26892557 BEEP1 +26892557 BEEP2 +~~~ +~~~ +~~~ +26892586 1024 33555456 +~~~ +26892736 1024 1024 +26899793 DOWN 11 +26899793 0 1024 +~~~ +~~~ +26899812 0 0 +~~~ +~~~ +26899814 0 1 +~~~ +~~~ +26899816 0 3 +~~~ +~~~ +26899818 0 7 +~~~ +~~~ +26899820 0 15 +~~~ +~~~ +26899821 0 31 +~~~ +~~~ +26899823 0 63 +~~~ +~~~ +26899825 0 127 +~~~ +~~~ +26899827 0 255 +26899828 homeCount = 60 +26899828 waitCount = 23 +26899829 ripCount = 24 +26899830 locktype1 = 1 +26899830 locktype2 = 5 +26899851 locktype3 = 8 +26899852 goalCount = 4 +26899852 goalTotal = 14 +26899853 otherCount = 31 +~~~ +26899854 CURRENTGOAL IS [3] +~~~ +26899854 UP 11 +26899854 1024 255 +26899916 DOWN 11 +26899916 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26899951 homeCount = 60 +26899951 waitCount = 23 +26899952 ripCount = 24 +26899952 locktype1 = 1 +26899953 locktype2 = 5 +26899953 locktype3 = 8 +26899954 goalCount = 4 +26899954 goalTotal = 14 +26899955 otherCount = 31 +~~~ +26899956 CURRENTGOAL IS [3] +~~~ +26903241 UP 6 +26903241 32 255 +~~~ +~~~ +26903783 DOWN 6 +26903783 0 255 +~~~ +~~~ +26903805 0 254 +~~~ +~~~ +26903807 0 252 +~~~ +~~~ +26903809 0 248 +~~~ +~~~ +26903810 0 240 +~~~ +~~~ +26903812 0 224 +~~~ +~~~ +26903814 0 192 +~~~ +~~~ +26903816 0 128 +~~~ +~~~ +26903818 0 0 +~~~ +~~~ +26903820 0 512 +26903821 homeCount = 60 +26903821 waitCount = 23 +26903822 ripCount = 24 +26903822 locktype1 = 1 +26903823 locktype2 = 5 +26903844 locktype3 = 8 +26903844 goalCount = 4 +26903845 goalTotal = 14 +26903845 otherCount = 32 +~~~ +26911555 UP 10 +26911555 waslock = 0 +26911555 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26911582 512 16777728 +~~~ +26911731 512 512 +26912233 DOWN 10 +26912233 0 512 +~~~ +~~~ +26912255 0 2560 +~~~ +~~~ +26912257 0 2048 +26912258 homeCount = 61 +26912259 waitCount = 23 +26912259 ripCount = 24 +26912260 locktype1 = 1 +26912260 locktype2 = 5 +26912261 locktype3 = 8 +26912261 goalCount = 4 +26912262 goalTotal = 14 +26912262 otherCount = 32 +~~~ +26912287 UP 10 +26912287 waslock = 0 +26912287 512 2048 +~~~ +26920292 DOWN 10 +26920292 0 2048 +~~~ +~~~ +~~~ +~~~ +26920320 homeCount = 61 +26920320 waitCount = 23 +26920321 ripCount = 24 +26920321 locktype1 = 1 +26920322 locktype2 = 5 +26920322 locktype3 = 8 +26920323 goalCount = 4 +26920323 goalTotal = 14 +26920324 otherCount = 32 +~~~ +26920339 UP 10 +26920340 waslock = 0 +26920339 512 2048 +~~~ +26920386 DOWN 10 +26920386 0 2048 +~~~ +~~~ +~~~ +~~~ +26920410 homeCount = 61 +26920411 waitCount = 23 +26920411 ripCount = 24 +26920412 locktype1 = 1 +26920412 locktype2 = 5 +26920413 locktype3 = 8 +26920413 goalCount = 4 +26920414 goalTotal = 14 +26920414 otherCount = 32 +~~~ +26923784 UP 12 +26923784 2048 2048 +26925861 DOWN 12 +26925861 0 2048 +26925884 UP 12 +26925884 2048 2048 +26925973 DOWN 12 +26925973 0 2048 +26926052 UP 12 +26926052 2048 2048 +26926816 DOWN 12 +26926816 0 2048 +26926864 UP 12 +26926864 2048 2048 +26926874 DOWN 12 +26926874 0 2048 +26926909 UP 12 +26926909 2048 2048 +26926925 DOWN 12 +26926925 0 2048 +26926989 UP 12 +26926989 2048 2048 +26926999 DOWN 12 +26926999 0 2048 +26927041 UP 12 +26927041 2048 2048 +26927325 DOWN 12 +26927325 0 2048 +26927356 UP 12 +26927356 2048 2048 +26927785 CLICK1 +26927785 CLICK2 +~~~ +~~~ +~~~ +26927811 2048 67110912 +~~~ +26927961 2048 2048 +26928178 DOWN 12 +26928178 0 2048 +26928199 UP 12 +26928199 2048 2048 +~~~ +~~~ +26928218 2048 0 +~~~ +~~~ +26928220 2048 1 +~~~ +~~~ +26928222 2048 3 +~~~ +~~~ +26928224 2048 7 +~~~ +~~~ +26928226 2048 15 +~~~ +~~~ +26928227 2048 31 +~~~ +~~~ +26928229 2048 63 +~~~ +~~~ +26928231 2048 127 +~~~ +~~~ +26928233 2048 255 +26928234 homeCount = 61 +26928234 waitCount = 24 +26928235 ripCount = 24 +26928256 locktype1 = 1 +26928256 locktype2 = 5 +26928257 locktype3 = 8 +26928257 goalCount = 4 +26928258 goalTotal = 14 +26928258 otherCount = 32 +~~~ +26928259 CURRENTGOAL IS [3] +~~~ +26933900 DOWN 12 +26933900 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26933935 homeCount = 61 +26933936 waitCount = 24 +26933937 ripCount = 24 +26933937 locktype1 = 1 +26933938 locktype2 = 5 +26933938 locktype3 = 8 +26933939 goalCount = 4 +26933939 goalTotal = 14 +26933940 otherCount = 32 +~~~ +26933941 CURRENTGOAL IS [3] +~~~ +26933962 UP 12 +26933962 2048 255 +26933994 DOWN 12 +26933994 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26934035 homeCount = 61 +26934036 waitCount = 24 +26934036 ripCount = 24 +26934037 locktype1 = 1 +26934037 locktype2 = 5 +26934038 locktype3 = 8 +26934038 goalCount = 4 +26934039 goalTotal = 14 +26934039 otherCount = 32 +~~~ +26934040 CURRENTGOAL IS [3] +~~~ +26937185 UP 3 +26937185 4 255 +~~~ +~~~ +26937210 outer reward +~~~ +26937210 4 262399 +~~~ +~~~ +26937426 DOWN 3 +26937426 0 262399 +~~~ +~~~ +26937450 0 262398 +~~~ +~~~ +26937452 0 262396 +~~~ +~~~ +26937453 0 262392 +~~~ +~~~ +26937455 0 262384 +~~~ +~~~ +26937457 0 262368 +~~~ +~~~ +26937459 0 262336 +~~~ +~~~ +26937461 0 262272 +~~~ +~~~ +26937463 0 262144 +~~~ +~~~ +26937464 0 262656 +26937465 homeCount = 61 +26937466 waitCount = 24 +26937466 ripCount = 24 +26937487 locktype1 = 1 +26937488 locktype2 = 5 +26937488 locktype3 = 8 +26937489 goalCount = 5 +26937489 goalTotal = 15 +26937490 otherCount = 32 +~~~ +26937490 4 262656 +26937660 4 512 +26937920 DOWN 3 +26937920 0 512 +26937928 4 512 +26938037 DOWN 3 +26938037 0 512 +26938051 4 512 +26938169 DOWN 3 +26938169 0 512 +26938180 4 512 +26938303 DOWN 3 +26938303 0 512 +26938316 4 512 +26938445 DOWN 3 +26938445 0 512 +26938449 4 512 +26947063 DOWN 3 +26947063 0 512 +26947088 4 512 +26947159 DOWN 3 +26947159 0 512 +26953706 UP 10 +26953707 waslock = 0 +26953706 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26953737 512 16777728 +~~~ +26953887 512 512 +26957615 DOWN 10 +26957615 0 512 +~~~ +~~~ +26957638 0 2560 +~~~ +~~~ +26957640 0 2048 +26957641 homeCount = 62 +26957641 waitCount = 24 +26957642 ripCount = 24 +26957642 locktype1 = 1 +26957643 locktype2 = 5 +26957643 locktype3 = 8 +26957644 goalCount = 5 +26957644 goalTotal = 15 +26957645 otherCount = 32 +~~~ +26957681 UP 10 +26957681 waslock = 0 +26957681 512 2048 +26957700 DOWN 10 +26957700 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +26957724 homeCount = 62 +26957724 waitCount = 24 +26957725 ripCount = 24 +26957725 locktype1 = 1 +26957726 locktype2 = 5 +26957726 locktype3 = 8 +26957727 goalCount = 5 +26957727 goalTotal = 15 +26957728 otherCount = 32 +~~~ +26962052 UP 12 +26962052 2048 2048 +26964338 DOWN 12 +26964338 0 2048 +26964404 UP 12 +26964404 2048 2048 +26964424 DOWN 12 +26964424 0 2048 +26964540 UP 12 +26964540 2048 2048 +26965052 CLICK1 +26965052 CLICK2 +~~~ +~~~ +~~~ +26965081 2048 67110912 +~~~ +26965231 2048 2048 +26973280 DOWN 12 +26973280 0 2048 +~~~ +~~~ +26973298 0 0 +~~~ +~~~ +26973300 0 1 +~~~ +~~~ +26973302 0 3 +~~~ +~~~ +26973303 0 7 +~~~ +~~~ +26973305 0 15 +~~~ +~~~ +26973307 0 31 +~~~ +~~~ +26973309 0 63 +~~~ +~~~ +26973311 0 127 +~~~ +~~~ +26973312 0 255 +26973314 homeCount = 62 +26973314 waitCount = 25 +26973315 ripCount = 24 +26973315 locktype1 = 1 +26973316 locktype2 = 5 +26973337 locktype3 = 8 +26973337 goalCount = 5 +26973338 goalTotal = 15 +26973338 otherCount = 32 +~~~ +26973339 CURRENTGOAL IS [3] +~~~ +26977815 UP 3 +26977815 4 255 +~~~ +~~~ +26977840 DOWN 3 +26977840 0 255 +26977841 outer reward +~~~ +~~~ +26977843 0 262399 +~~~ +~~~ +~~~ +26977869 0 262398 +~~~ +~~~ +26977871 0 262396 +~~~ +~~~ +26977873 0 262392 +~~~ +~~~ +26977875 0 262384 +~~~ +~~~ +26977876 0 262368 +~~~ +~~~ +26977878 0 262336 +~~~ +~~~ +26977880 0 262272 +~~~ +~~~ +26977882 0 262144 +~~~ +~~~ +26977884 0 262656 +26977885 homeCount = 62 +26977885 waitCount = 25 +26977886 ripCount = 24 +26977907 locktype1 = 1 +26977907 locktype2 = 5 +26977908 locktype3 = 8 +26977908 goalCount = 6 +26977909 goalTotal = 16 +26977909 otherCount = 32 +~~~ +26977915 4 262656 +26978097 DOWN 3 +26978097 0 262656 +26978154 4 262656 +26978291 4 512 +26978403 DOWN 3 +26978403 0 512 +26978408 4 512 +26978514 DOWN 3 +26978514 0 512 +26978539 4 512 +26978642 DOWN 3 +26978642 0 512 +26978666 4 512 +26978769 DOWN 3 +26978769 0 512 +26978798 4 512 +26978909 DOWN 3 +26978909 0 512 +26978930 4 512 +26979051 DOWN 3 +26979051 0 512 +26979070 4 512 +26979189 DOWN 3 +26979189 0 512 +26979206 4 512 +26979331 DOWN 3 +26979331 0 512 +26979347 4 512 +26979473 DOWN 3 +26979473 0 512 +26979486 4 512 +26986107 DOWN 3 +26986107 0 512 +26986116 4 512 +26986209 DOWN 3 +26986209 0 512 +26996165 UP 10 +26996165 waslock = 0 +26996165 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26996194 512 16777728 +~~~ +26996209 DOWN 10 +26996209 0 16777728 +~~~ +~~~ +26996229 0 16778752 +~~~ +~~~ +26996231 0 16778240 +26996232 homeCount = 63 +26996233 waitCount = 25 +26996233 ripCount = 24 +26996234 locktype1 = 1 +26996234 locktype2 = 5 +26996235 locktype3 = 8 +26996235 goalCount = 6 +26996236 goalTotal = 16 +26996236 otherCount = 32 +~~~ +26996334 UP 10 +26996335 waslock = 0 +26996334 512 16778240 +26996344 512 1024 +~~~ +26999145 DOWN 10 +26999145 0 1024 +~~~ +~~~ +~~~ +~~~ +26999172 homeCount = 63 +26999173 waitCount = 25 +26999173 ripCount = 24 +26999174 locktype1 = 1 +26999174 locktype2 = 5 +26999175 locktype3 = 8 +26999175 goalCount = 6 +26999176 goalTotal = 16 +26999176 otherCount = 32 +~~~ +26999205 UP 10 +26999205 waslock = 0 +26999205 512 1024 +~~~ +26999233 DOWN 10 +26999233 0 1024 +~~~ +~~~ +~~~ +~~~ +26999253 homeCount = 63 +26999254 waitCount = 25 +26999255 ripCount = 24 +26999255 locktype1 = 1 +26999256 locktype2 = 5 +26999256 locktype3 = 8 +26999257 goalCount = 6 +26999257 goalTotal = 16 +26999258 otherCount = 32 +~~~ +27001162 UP 11 +27001162 1024 1024 +27001306 DOWN 11 +27001306 0 1024 +27001401 UP 11 +27001401 1024 1024 +27003166 DOWN 11 +27003166 0 1024 +27003171 UP 11 +27003171 1024 1024 +27004049 DOWN 11 +27004049 0 1024 +27004086 UP 11 +27004086 1024 1024 +27007946 DOWN 11 +27007946 0 1024 +27008003 UP 11 +27008003 1024 1024 +27008162 BEEP1 +27008162 BEEP2 +~~~ +~~~ +~~~ +27008181 1024 33555456 +~~~ +27008331 1024 1024 +27014589 DOWN 11 +27014589 0 1024 +27014597 UP 11 +27014597 1024 1024 +~~~ +~~~ +27014609 1024 0 +~~~ +~~~ +27014611 1024 1 +~~~ +~~~ +27014613 1024 3 +~~~ +~~~ +27014615 1024 7 +~~~ +~~~ +27014617 1024 15 +~~~ +~~~ +27014618 1024 31 +~~~ +~~~ +27014620 1024 63 +~~~ +~~~ +27014622 1024 127 +~~~ +~~~ +27014624 1024 255 +27014625 homeCount = 63 +27014625 waitCount = 25 +27014626 ripCount = 25 +27014626 locktype1 = 1 +27014648 locktype2 = 5 +27014648 locktype3 = 8 +27014649 goalCount = 6 +27014649 goalTotal = 16 +27014650 otherCount = 32 +~~~ +27014651 CURRENTGOAL IS [3] +~~~ +27014657 DOWN 11 +27014657 0 255 +27014686 UP 11 +27014686 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27014706 homeCount = 63 +27014707 waitCount = 25 +27014707 ripCount = 25 +27014708 locktype1 = 1 +27014708 locktype2 = 5 +27014709 locktype3 = 8 +27014709 goalCount = 6 +27014710 goalTotal = 16 +27014710 otherCount = 32 +~~~ +27014712 CURRENTGOAL IS [3] +~~~ +27017012 DOWN 11 +27017012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27017052 homeCount = 63 +27017052 waitCount = 25 +27017053 ripCount = 25 +27017053 locktype1 = 1 +27017054 locktype2 = 5 +27017054 locktype3 = 8 +27017055 goalCount = 6 +27017055 goalTotal = 16 +27017056 otherCount = 32 +~~~ +27017057 CURRENTGOAL IS [3] +~~~ +27021381 UP 3 +27021381 4 255 +~~~ +27021406 DOWN 3 +27021406 0 255 +~~~ +27021408 outer reward +~~~ +27021408 0 262399 +~~~ +~~~ +~~~ +~~~ +27021428 0 262398 +~~~ +~~~ +27021429 0 262396 +~~~ +~~~ +27021431 0 262392 +~~~ +~~~ +27021433 0 262384 +~~~ +~~~ +27021435 0 262368 +~~~ +~~~ +27021437 0 262336 +~~~ +~~~ +27021439 0 262272 +~~~ +~~~ +27021440 0 262144 +~~~ +~~~ +27021442 0 262656 +27021443 homeCount = 63 +27021444 waitCount = 25 +27021444 ripCount = 25 +27021465 locktype1 = 1 +27021466 locktype2 = 5 +27021466 locktype3 = 8 +27021467 goalCount = 7 +27021467 goalTotal = 17 +27021468 otherCount = 32 +~~~ +27021468 4 262656 +27021652 DOWN 3 +27021652 0 262656 +27021699 4 262656 +27021858 4 512 +27021932 DOWN 3 +27021932 0 512 +27021941 4 512 +27022042 DOWN 3 +27022042 0 512 +27022076 4 512 +27022167 DOWN 3 +27022167 0 512 +27022203 4 512 +27022292 DOWN 3 +27022292 0 512 +27022330 4 512 +27022423 DOWN 3 +27022423 0 512 +27022459 4 512 +27022563 DOWN 3 +27022563 0 512 +27022595 4 512 +27022716 DOWN 3 +27022716 0 512 +27022736 4 512 +27022857 DOWN 3 +27022857 0 512 +27022878 4 512 +27023007 DOWN 3 +27023007 0 512 +27023021 4 512 +27023155 DOWN 3 +27023155 0 512 +27023169 4 512 +27023313 DOWN 3 +27023313 0 512 +27023320 4 512 +27023931 DOWN 3 +27023931 0 512 +27023939 4 512 +27030753 DOWN 3 +27030753 0 512 +27036671 UP 10 +27036671 waslock = 0 +27036671 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27036703 512 16777728 +~~~ +27036738 DOWN 10 +27036738 0 16777728 +~~~ +~~~ +27036757 0 16778752 +~~~ +~~~ +27036759 0 16778240 +27036760 homeCount = 64 +27036761 waitCount = 25 +27036761 ripCount = 25 +27036762 locktype1 = 1 +27036762 locktype2 = 5 +27036763 locktype3 = 8 +27036763 goalCount = 7 +27036764 goalTotal = 17 +27036764 otherCount = 32 +~~~ +27036785 UP 10 +27036786 waslock = 0 +27036785 512 16778240 +~~~ +27036853 512 1024 +27036868 DOWN 10 +27036868 0 1024 +~~~ +~~~ +~~~ +~~~ +27036891 homeCount = 64 +27036892 waitCount = 25 +27036892 ripCount = 25 +27036893 locktype1 = 1 +27036893 locktype2 = 5 +27036894 locktype3 = 8 +27036894 goalCount = 7 +27036895 goalTotal = 17 +27036895 otherCount = 32 +~~~ +27036905 UP 10 +27036905 waslock = 0 +27036905 512 1024 +~~~ +27041635 DOWN 10 +27041635 0 1024 +~~~ +~~~ +~~~ +~~~ +27041661 homeCount = 64 +27041661 waitCount = 25 +27041662 ripCount = 25 +27041662 locktype1 = 1 +27041663 locktype2 = 5 +27041663 locktype3 = 8 +27041664 goalCount = 7 +27041664 goalTotal = 17 +27041665 otherCount = 32 +~~~ +27043061 UP 11 +27043061 1024 1024 +27046061 BEEP1 +27046061 BEEP2 +~~~ +~~~ +~~~ +27046079 1024 33555456 +~~~ +27046120 DOWN 11 +27046120 0 33555456 +27046136 UP 11 +27046136 1024 33555456 +27046229 1024 1024 +~~~ +~~~ +27046756 1024 0 +~~~ +~~~ +27046758 1024 1 +~~~ +~~~ +27046760 1024 3 +~~~ +~~~ +27046762 1024 7 +~~~ +~~~ +27046764 1024 15 +~~~ +~~~ +27046765 1024 31 +~~~ +~~~ +27046767 1024 63 +~~~ +~~~ +27046769 1024 127 +~~~ +~~~ +27046771 1024 255 +27046772 homeCount = 64 +27046773 waitCount = 25 +27046773 ripCount = 26 +27046774 locktype1 = 1 +27046795 locktype2 = 5 +27046795 locktype3 = 8 +27046796 goalCount = 7 +27046796 goalTotal = 17 +27046797 otherCount = 32 +~~~ +27046798 CURRENTGOAL IS [3] +~~~ +27053631 DOWN 11 +27053631 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27053669 UP 11 +27053669 1024 255 +~~~ +~~~ +~~~ +~~~ +27053674 homeCount = 64 +27053674 waitCount = 25 +27053675 ripCount = 26 +27053675 locktype1 = 1 +27053676 locktype2 = 5 +27053676 locktype3 = 8 +27053677 goalCount = 7 +27053677 goalTotal = 17 +27053678 otherCount = 32 +~~~ +27053679 CURRENTGOAL IS [3] +~~~ +27053700 DOWN 11 +27053700 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27053736 homeCount = 64 +27053736 waitCount = 25 +27053737 ripCount = 26 +27053737 locktype1 = 1 +27053738 locktype2 = 5 +27053739 locktype3 = 8 +27053739 goalCount = 7 +27053740 goalTotal = 17 +27053740 otherCount = 32 +~~~ +27053741 CURRENTGOAL IS [3] +~~~ +27053762 UP 11 +27053762 1024 255 +27056774 DOWN 11 +27056774 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27056816 homeCount = 64 +27056816 waitCount = 25 +27056817 ripCount = 26 +27056817 locktype1 = 1 +27056818 locktype2 = 5 +27056818 locktype3 = 8 +27056819 goalCount = 7 +27056819 goalTotal = 17 +27056820 otherCount = 32 +~~~ +27056821 CURRENTGOAL IS [3] +~~~ +27062933 UP 3 +27062933 4 255 +~~~ +~~~ +27062952 outer reward +~~~ +27062952 4 262399 +~~~ +~~~ +27063104 DOWN 3 +27063104 0 262399 +~~~ +~~~ +27063129 0 262398 +~~~ +~~~ +27063131 0 262396 +~~~ +~~~ +27063133 0 262392 +~~~ +~~~ +27063134 0 262384 +~~~ +~~~ +27063136 0 262368 +~~~ +~~~ +27063138 0 262336 +~~~ +~~~ +27063140 0 262272 +~~~ +~~~ +27063142 0 262144 +~~~ +~~~ +27063144 0 262656 +27063145 homeCount = 64 +27063145 waitCount = 25 +27063146 ripCount = 26 +27063167 locktype1 = 1 +27063167 locktype2 = 5 +27063168 locktype3 = 8 +27063168 goalCount = 8 +27063169 goalTotal = 18 +27063169 otherCount = 32 +~~~ +27063170 4 262656 +27063263 DOWN 3 +27063263 0 262656 +27063290 4 262656 +27063402 4 512 +27063542 DOWN 3 +27063542 0 512 +27063554 4 512 +27063660 DOWN 3 +27063660 0 512 +27063683 4 512 +27063784 DOWN 3 +27063784 0 512 +27063813 4 512 +27063917 DOWN 3 +27063917 0 512 +27063947 4 512 +27064050 DOWN 3 +27064050 0 512 +27064081 4 512 +27064190 DOWN 3 +27064190 0 512 +27064217 4 512 +27064327 DOWN 3 +27064327 0 512 +27064350 4 512 +27064474 DOWN 3 +27064474 0 512 +27064492 4 512 +27064630 DOWN 3 +27064630 0 512 +27064639 4 512 +27064937 DOWN 3 +27064937 0 512 +27064946 4 512 +27071303 DOWN 3 +27071303 0 512 +27071339 4 512 +27071394 DOWN 3 +27071394 0 512 +27082226 UP 10 +27082226 waslock = 0 +27082226 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27082258 512 16777728 +~~~ +27082277 DOWN 10 +27082277 0 16777728 +~~~ +~~~ +27082306 0 16779776 +~~~ +~~~ +27082308 0 16779264 +27082309 homeCount = 65 +27082310 waitCount = 25 +27082310 ripCount = 26 +27082311 locktype1 = 1 +27082311 locktype2 = 5 +27082312 locktype3 = 8 +27082312 goalCount = 8 +27082313 goalTotal = 18 +27082313 otherCount = 32 +~~~ +27082334 UP 10 +27082335 waslock = 0 +27082334 512 16779264 +~~~ +27082408 512 2048 +27082466 DOWN 10 +27082466 0 2048 +~~~ +~~~ +~~~ +~~~ +27082492 homeCount = 65 +27082493 waitCount = 25 +27082493 ripCount = 26 +27082494 locktype1 = 1 +27082494 locktype2 = 5 +27082495 locktype3 = 8 +27082495 goalCount = 8 +27082496 goalTotal = 18 +27082496 otherCount = 32 +~~~ +27082497 UP 10 +27082497 waslock = 0 +27082497 512 2048 +~~~ +27087311 DOWN 10 +27087311 0 2048 +~~~ +~~~ +~~~ +~~~ +27087333 homeCount = 65 +27087334 waitCount = 25 +27087334 ripCount = 26 +27087335 locktype1 = 1 +27087335 locktype2 = 5 +27087336 locktype3 = 8 +27087336 goalCount = 8 +27087337 goalTotal = 18 +27087337 otherCount = 32 +~~~ +27089424 UP 12 +27089424 2048 2048 +27090682 DOWN 12 +27090682 0 2048 +27090773 UP 12 +27090773 2048 2048 +27091335 DOWN 12 +27091335 0 2048 +27091389 UP 12 +27091389 2048 2048 +27091472 DOWN 12 +27091472 0 2048 +27091539 UP 12 +27091539 2048 2048 +27094269 DOWN 12 +27094268 0 2048 +27094323 UP 12 +27094323 2048 2048 +27094359 DOWN 12 +27094359 0 2048 +27094535 UP 12 +27094535 2048 2048 +27097424 CLICK1 +27097424 CLICK2 +~~~ +~~~ +~~~ +27097442 2048 67110912 +~~~ +27097592 2048 2048 +27103685 DOWN 12 +27103685 0 2048 +~~~ +~~~ +27103710 0 0 +~~~ +~~~ +27103712 0 1 +~~~ +~~~ +27103714 0 3 +~~~ +~~~ +27103715 0 7 +~~~ +~~~ +27103717 0 15 +~~~ +~~~ +27103719 0 31 +~~~ +~~~ +27103721 0 63 +~~~ +~~~ +27103723 0 127 +~~~ +~~~ +27103725 0 255 +27103726 homeCount = 65 +27103726 waitCount = 26 +27103727 ripCount = 26 +27103727 locktype1 = 1 +27103728 locktype2 = 5 +27103749 locktype3 = 8 +27103749 goalCount = 8 +27103750 goalTotal = 18 +27103750 otherCount = 32 +~~~ +27103751 CURRENTGOAL IS [3] +~~~ +27103752 UP 12 +27103752 2048 255 +27103785 DOWN 12 +27103785 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27103821 homeCount = 65 +27103822 waitCount = 26 +27103822 ripCount = 26 +27103823 locktype1 = 1 +27103824 locktype2 = 5 +27103824 locktype3 = 8 +27103825 goalCount = 8 +27103825 goalTotal = 18 +27103826 otherCount = 32 +~~~ +27103827 CURRENTGOAL IS [3] +~~~ +27108255 UP 2 +27108255 2 255 +27108270 DOWN 2 +27108270 0 255 +~~~ +~~~ +~~~ +~~~ +27108294 0 254 +~~~ +~~~ +27108296 0 252 +~~~ +~~~ +27108298 0 248 +~~~ +~~~ +27108300 0 240 +~~~ +~~~ +27108302 0 224 +~~~ +~~~ +27108303 0 192 +~~~ +~~~ +27108305 0 128 +~~~ +~~~ +27108307 0 0 +~~~ +~~~ +27108309 0 512 +27108310 homeCount = 65 +27108310 waitCount = 26 +27108311 ripCount = 26 +27108311 locktype1 = 1 +27108332 locktype2 = 5 +27108333 locktype3 = 8 +27108333 goalCount = 8 +27108334 goalTotal = 18 +27108334 otherCount = 33 +~~~ +27108335 2 512 +27109045 DOWN 2 +27109045 0 512 +27109118 2 512 +27109129 DOWN 2 +27109129 0 512 +27114052 UP 10 +27114052 waslock = 0 +27114052 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27114082 512 16777728 +~~~ +27114122 DOWN 10 +27114122 0 16777728 +~~~ +~~~ +27114145 0 16779776 +~~~ +~~~ +27114147 0 16779264 +27114148 homeCount = 66 +27114149 waitCount = 26 +27114149 ripCount = 26 +27114150 locktype1 = 1 +27114150 locktype2 = 5 +27114152 locktype3 = 8 +27114152 goalCount = 8 +27114152 goalTotal = 18 +27114152 otherCount = 33 +~~~ +27114173 UP 10 +27114173 waslock = 0 +27114173 512 16779264 +~~~ +27114232 512 2048 +27114292 DOWN 10 +27114292 0 2048 +~~~ +~~~ +27114320 UP 10 +27114320 waslock = 0 +27114320 512 2048 +~~~ +~~~ +27114323 homeCount = 66 +27114323 waitCount = 26 +27114324 ripCount = 26 +27114324 locktype1 = 1 +27114325 locktype2 = 5 +27114325 locktype3 = 8 +27114326 goalCount = 8 +27114326 goalTotal = 18 +27114347 otherCount = 33 +~~~ +~~~ +27117113 DOWN 10 +27117113 0 2048 +~~~ +~~~ +~~~ +~~~ +27117139 homeCount = 66 +27117140 waitCount = 26 +27117140 ripCount = 26 +27117141 locktype1 = 1 +27117141 locktype2 = 5 +27117142 locktype3 = 8 +27117142 goalCount = 8 +27117143 goalTotal = 18 +27117143 otherCount = 33 +~~~ +27117158 UP 10 +27117159 waslock = 0 +27117158 512 2048 +~~~ +27117200 DOWN 10 +27117200 0 2048 +~~~ +~~~ +~~~ +~~~ +27117221 homeCount = 66 +27117222 waitCount = 26 +27117222 ripCount = 26 +27117223 locktype1 = 1 +27117223 locktype2 = 5 +27117224 locktype3 = 8 +27117224 goalCount = 8 +27117225 goalTotal = 18 +27117225 otherCount = 33 +~~~ +27119113 UP 12 +27119113 2048 2048 +27121174 DOWN 12 +27121174 0 2048 +27121261 UP 12 +27121261 2048 2048 +27121838 DOWN 12 +27121838 0 2048 +27121887 UP 12 +27121887 2048 2048 +27121905 DOWN 12 +27121905 0 2048 +27121986 UP 12 +27121986 2048 2048 +27122114 CLICK1 +27122114 CLICK2 +~~~ +~~~ +~~~ +27122139 2048 67110912 +~~~ +27122289 2048 2048 +27127218 DOWN 12 +27127218 0 2048 +~~~ +~~~ +27127238 0 0 +~~~ +~~~ +27127239 0 1 +~~~ +~~~ +27127241 0 3 +~~~ +~~~ +27127243 0 7 +~~~ +~~~ +27127245 0 15 +~~~ +~~~ +27127247 0 31 +~~~ +~~~ +27127248 0 63 +~~~ +~~~ +27127250 0 127 +~~~ +~~~ +27127252 0 255 +27127253 homeCount = 66 +27127254 waitCount = 27 +27127254 ripCount = 26 +27127255 locktype1 = 1 +27127255 locktype2 = 5 +27127276 locktype3 = 8 +27127277 goalCount = 8 +27127277 goalTotal = 18 +27127278 otherCount = 33 +~~~ +27127279 CURRENTGOAL IS [3] +~~~ +27130040 UP 3 +27130040 4 255 +~~~ +~~~ +27130059 outer reward +~~~ +27130059 4 262399 +~~~ +~~~ +27130264 DOWN 3 +27130264 0 262399 +~~~ +~~~ +27130288 0 262398 +~~~ +~~~ +27130289 0 262396 +~~~ +~~~ +27130291 0 262392 +~~~ +~~~ +27130293 0 262384 +~~~ +~~~ +27130295 0 262368 +~~~ +~~~ +27130297 0 262336 +~~~ +~~~ +27130299 0 262272 +~~~ +~~~ +27130300 0 262144 +~~~ +~~~ +27130302 0 262656 +27130303 homeCount = 66 +27130304 waitCount = 27 +27130304 ripCount = 26 +27130325 locktype1 = 1 +27130325 locktype2 = 5 +27130326 locktype3 = 8 +27130326 goalCount = 9 +27130327 goalTotal = 19 +27130327 otherCount = 33 +~~~ +27130328 4 262656 +27130509 4 512 +27130691 DOWN 3 +27130691 0 512 +27130708 4 512 +27130810 DOWN 3 +27130810 0 512 +27130833 4 512 +27130933 DOWN 3 +27130933 0 512 +27130961 4 512 +27131066 DOWN 3 +27131066 0 512 +27131090 4 512 +27131199 DOWN 3 +27131199 0 512 +27131228 4 512 +27131361 DOWN 3 +27131361 0 512 +27131369 4 512 +27131503 DOWN 3 +27131503 0 512 +27131514 4 512 +27131656 DOWN 3 +27131656 0 512 +27131664 4 512 +27137144 DOWN 3 +27137144 0 512 +27137148 4 512 +27137802 DOWN 3 +27137802 0 512 +27137820 4 512 +27137905 DOWN 3 +27137905 0 512 +27144403 UP 10 +27144403 waslock = 0 +27144403 512 512 +27144418 DOWN 10 +27144418 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27144434 0 16777728 +~~~ +~~~ +~~~ +27144437 0 16779776 +~~~ +~~~ +27144439 0 16779264 +27144440 homeCount = 67 +27144441 waitCount = 27 +27144441 ripCount = 26 +27144442 locktype1 = 1 +27144442 locktype2 = 5 +27144443 locktype3 = 8 +27144443 goalCount = 9 +27144444 goalTotal = 19 +27144465 otherCount = 33 +~~~ +27144570 UP 10 +27144570 waslock = 0 +27144569 512 16779264 +27144584 512 2048 +~~~ +27147490 DOWN 10 +27147489 0 2048 +~~~ +~~~ +~~~ +~~~ +27147518 homeCount = 67 +27147519 waitCount = 27 +27147519 ripCount = 26 +27147520 locktype1 = 1 +27147520 locktype2 = 5 +27147521 locktype3 = 8 +27147521 goalCount = 9 +27147522 goalTotal = 19 +27147522 otherCount = 33 +~~~ +27149811 UP 12 +27149811 2048 2048 +27150616 DOWN 12 +27150616 0 2048 +27150637 UP 12 +27150637 2048 2048 +27150660 DOWN 12 +27150660 0 2048 +27150819 UP 12 +27150819 2048 2048 +27153312 CLICK1 +27153312 CLICK2 +~~~ +~~~ +~~~ +27153335 2048 67110912 +~~~ +27153484 2048 2048 +27157877 DOWN 12 +27157877 0 2048 +~~~ +~~~ +27157896 0 0 +~~~ +~~~ +27157897 0 1 +~~~ +~~~ +27157899 0 3 +~~~ +~~~ +27157901 0 7 +~~~ +~~~ +27157903 0 15 +~~~ +~~~ +27157905 0 31 +~~~ +~~~ +27157906 0 63 +~~~ +~~~ +27157908 0 127 +~~~ +~~~ +27157910 0 255 +27157911 homeCount = 67 +27157912 waitCount = 28 +27157912 ripCount = 26 +27157913 locktype1 = 1 +27157913 locktype2 = 5 +27157934 locktype3 = 8 +27157935 goalCount = 9 +27157935 goalTotal = 19 +27157936 otherCount = 33 +~~~ +27157937 CURRENTGOAL IS [3] +~~~ +27157937 UP 12 +27157937 2048 255 +27157959 DOWN 12 +27157959 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27157999 homeCount = 67 +27157999 waitCount = 28 +27158000 ripCount = 26 +27158000 locktype1 = 1 +27158001 locktype2 = 5 +27158001 locktype3 = 8 +27158002 goalCount = 9 +27158002 goalTotal = 19 +27158003 otherCount = 33 +~~~ +27158004 CURRENTGOAL IS [3] +~~~ +27158025 UP 12 +27158025 2048 255 +27158102 DOWN 12 +27158102 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158130 UP 12 +27158130 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158138 DOWN 12 +27158138 0 255 +~~~ +~~~ +~~~ +27158142 homeCount = 67 +27158142 waitCount = 28 +27158143 ripCount = 26 +27158143 locktype1 = 1 +27158144 locktype2 = 5 +27158145 locktype3 = 8 +27158145 goalCount = 9 +27158146 goalTotal = 19 +27158146 otherCount = 33 +~~~ +27158147 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158175 homeCount = 67 +27158176 waitCount = 28 +27158176 ripCount = 26 +27158177 locktype1 = 1 +27158177 locktype2 = 5 +27158178 locktype3 = 8 +27158199 goalCount = 9 +27158199 goalTotal = 19 +27158200 otherCount = 33 +~~~ +27158201 CURRENTGOAL IS [3] +~~~ +27158201 UP 12 +27158201 2048 255 +27158224 DOWN 12 +27158223 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158250 homeCount = 67 +27158251 waitCount = 28 +27158251 ripCount = 26 +27158252 locktype1 = 1 +27158252 locktype2 = 5 +27158253 locktype3 = 8 +27158253 goalCount = 9 +27158254 goalTotal = 19 +27158254 otherCount = 33 +~~~ +27158255 CURRENTGOAL IS [3] +~~~ +27158327 UP 12 +27158327 2048 255 +27158356 DOWN 12 +27158356 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158391 homeCount = 67 +27158392 waitCount = 28 +27158392 ripCount = 26 +27158393 locktype1 = 1 +27158393 locktype2 = 5 +27158394 locktype3 = 8 +27158394 goalCount = 9 +27158395 goalTotal = 19 +27158395 otherCount = 33 +~~~ +27158396 CURRENTGOAL IS [3] +~~~ +27158417 UP 12 +27158417 2048 255 +27158500 DOWN 12 +27158500 0 255 +27158522 UP 12 +27158522 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158542 homeCount = 67 +27158543 waitCount = 28 +27158543 ripCount = 26 +27158544 locktype1 = 1 +27158544 locktype2 = 5 +27158545 locktype3 = 8 +27158545 goalCount = 9 +27158546 goalTotal = 19 +27158546 otherCount = 33 +~~~ +27158548 CURRENTGOAL IS [3] +~~~ +27160569 DOWN 12 +27160569 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27160604 homeCount = 67 +27160605 waitCount = 28 +27160606 ripCount = 26 +27160606 locktype1 = 1 +27160607 locktype2 = 5 +27160607 locktype3 = 8 +27160608 goalCount = 9 +27160608 goalTotal = 19 +27160609 otherCount = 33 +~~~ +27160610 CURRENTGOAL IS [3] +~~~ +27160631 UP 12 +27160631 2048 255 +27160668 DOWN 12 +27160668 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27160706 homeCount = 67 +27160707 waitCount = 28 +27160707 ripCount = 26 +27160708 locktype1 = 1 +27160708 locktype2 = 5 +27160709 locktype3 = 8 +27160709 goalCount = 9 +27160710 goalTotal = 19 +27160710 otherCount = 33 +~~~ +27160711 CURRENTGOAL IS [3] +~~~ +27163334 UP 3 +27163334 4 255 +27163351 DOWN 3 +27163351 0 255 +~~~ +~~~ +27163374 outer reward +~~~ +27163375 0 262399 +~~~ +~~~ +27163379 outerreps = 8 +~~~ +~~~ +~~~ +~~~ +27163382 0 262398 +~~~ +~~~ +27163384 0 262396 +~~~ +~~~ +27163386 0 262392 +~~~ +~~~ +27163388 0 262384 +~~~ +~~~ +27163389 0 262368 +~~~ +~~~ +27163391 0 262336 +~~~ +~~~ +27163393 0 262272 +~~~ +~~~ +27163395 0 262144 +~~~ +~~~ +27163397 0 262656 +27163398 homeCount = 67 +27163398 waitCount = 28 +27163420 ripCount = 26 +27163420 locktype1 = 1 +27163421 locktype2 = 5 +27163421 locktype3 = 8 +27163422 goalCount = 0 +27163422 goalTotal = 20 +27163423 otherCount = 33 +~~~ +27163423 4 262656 +27163560 DOWN 3 +27163560 0 262656 +27163618 4 262656 +27163824 4 512 +27163981 DOWN 3 +27163981 0 512 +27164002 4 512 +27164107 DOWN 3 +27164107 0 512 +27164122 4 512 +27164237 DOWN 3 +27164237 0 512 +27164261 4 512 +27164373 DOWN 3 +27164373 0 512 +27164398 4 512 +27164523 DOWN 3 +27164523 0 512 +27164537 4 512 +27164678 DOWN 3 +27164677 0 512 +27164687 4 512 +27164824 DOWN 3 +27164824 0 512 +27164832 4 512 +27164973 DOWN 3 +27164973 0 512 +27164981 4 512 +27165435 DOWN 3 +27165435 0 512 +27165447 4 512 +27168176 DOWN 3 +27168176 0 512 +27168182 4 512 +27168186 DOWN 3 +27168186 0 512 +27168193 4 512 +27171704 DOWN 3 +27171704 0 512 +27171738 4 512 +27171814 DOWN 3 +27171814 0 512 +27176949 UP 10 +27176949 waslock = 0 +27176949 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27176979 512 16777728 +~~~ +27177102 DOWN 10 +27177102 0 16777728 +~~~ +~~~ +27177125 0 16778752 +~~~ +~~~ +27177127 0 16778240 +27177128 homeCount = 68 +27177129 waitCount = 28 +27177129 ripCount = 26 +27177130 locktype1 = 1 +27177130 locktype2 = 5 +27177131 locktype3 = 8 +27177131 goalCount = 0 +27177132 goalTotal = 20 +27177132 otherCount = 33 +~~~ +27177153 UP 10 +27177153 waslock = 0 +27177153 512 16778240 +27177155 512 1024 +~~~ +27183894 DOWN 10 +27183894 0 1024 +~~~ +~~~ +~~~ +~~~ +27183916 homeCount = 68 +27183917 waitCount = 28 +27183917 ripCount = 26 +27183918 locktype1 = 1 +27183918 locktype2 = 5 +27183919 locktype3 = 8 +27183919 goalCount = 0 +27183920 goalTotal = 20 +27183920 otherCount = 33 +~~~ +27186228 UP 11 +27186228 1024 1024 +27187560 DOWN 11 +27187560 0 1024 +27187573 UP 11 +27187573 1024 1024 +27187589 DOWN 11 +27187589 0 1024 +27187640 UP 11 +27187640 1024 1024 +27192229 BEEP1 +27192229 BEEP2 +~~~ +~~~ +~~~ +27192256 1024 33555456 +~~~ +27192406 1024 1024 +27198684 DOWN 11 +27198684 0 1024 +~~~ +~~~ +27198705 0 0 +~~~ +~~~ +27198707 0 1 +~~~ +~~~ +27198709 0 3 +~~~ +~~~ +27198711 0 7 +~~~ +~~~ +27198712 0 15 +~~~ +~~~ +27198714 0 31 +~~~ +~~~ +27198716 0 63 +~~~ +~~~ +27198718 0 127 +~~~ +~~~ +27198720 0 255 +27198721 homeCount = 68 +27198721 waitCount = 28 +27198722 ripCount = 27 +27198722 locktype1 = 1 +27198723 locktype2 = 5 +27198744 locktype3 = 8 +27198744 goalCount = 0 +27198745 goalTotal = 20 +27198745 otherCount = 33 +~~~ +27198746 CURRENTGOAL IS [1] +~~~ +27198766 UP 11 +27198766 1024 255 +27200991 DOWN 11 +27200991 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27201031 homeCount = 68 +27201031 waitCount = 28 +27201032 ripCount = 27 +27201032 locktype1 = 1 +27201033 locktype2 = 5 +27201033 locktype3 = 8 +27201034 goalCount = 0 +27201034 goalTotal = 20 +27201035 otherCount = 33 +~~~ +27201036 CURRENTGOAL IS [1] +~~~ +27201067 UP 11 +27201067 1024 255 +27201082 DOWN 11 +27201082 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27201121 homeCount = 68 +27201122 waitCount = 28 +27201122 ripCount = 27 +27201123 locktype1 = 1 +27201123 locktype2 = 5 +27201124 locktype3 = 8 +27201124 goalCount = 0 +27201125 goalTotal = 20 +27201125 otherCount = 33 +~~~ +27201127 CURRENTGOAL IS [1] +~~~ +27206452 UP 2 +27206452 2 255 +27206462 DOWN 2 +27206462 0 255 +~~~ +~~~ +~~~ +~~~ +27206480 0 254 +~~~ +~~~ +27206482 0 252 +~~~ +~~~ +27206484 0 248 +~~~ +~~~ +27206486 0 240 +~~~ +~~~ +27206487 0 224 +~~~ +~~~ +27206489 0 192 +~~~ +~~~ +27206491 0 128 +~~~ +~~~ +27206493 0 0 +~~~ +~~~ +27206495 0 512 +27206496 homeCount = 68 +27206496 waitCount = 28 +27206497 ripCount = 27 +27206497 locktype1 = 1 +27206519 locktype2 = 5 +27206519 locktype3 = 8 +27206520 goalCount = 0 +27206520 goalTotal = 20 +27206521 otherCount = 34 +~~~ +27206534 2 512 +27207052 DOWN 2 +27207052 0 512 +27212399 UP 10 +27212399 waslock = 0 +27212399 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27212427 512 16777728 +~~~ +27212435 DOWN 10 +27212435 0 16777728 +~~~ +~~~ +27212452 0 16778752 +~~~ +27212453 UP 10 +27212453 waslock = 0 +27212453 512 16778752 +~~~ +27212455 homeCount = 69 +27212456 waitCount = 28 +27212456 ripCount = 27 +27212457 locktype1 = 1 +27212457 locktype2 = 5 +27212458 locktype3 = 8 +27212458 goalCount = 0 +27212479 goalTotal = 20 +27212480 otherCount = 34 +~~~ +27212480 512 16778240 +~~~ +27212557 DOWN 10 +27212557 0 16778240 +27212577 0 1024 +27212591 UP 10 +27212591 waslock = 0 +27212591 512 1024 +~~~ +~~~ +~~~ +~~~ +27212598 homeCount = 69 +27212598 waitCount = 28 +27212599 ripCount = 27 +27212599 locktype1 = 1 +27212600 locktype2 = 5 +27212600 locktype3 = 8 +27212601 goalCount = 0 +27212601 goalTotal = 20 +27212602 otherCount = 34 +~~~ +~~~ +27216740 DOWN 10 +27216740 0 1024 +~~~ +~~~ +~~~ +~~~ +27216765 homeCount = 69 +27216765 waitCount = 28 +27216766 ripCount = 27 +27216766 locktype1 = 1 +27216767 locktype2 = 5 +27216767 locktype3 = 8 +27216768 goalCount = 0 +27216768 goalTotal = 20 +27216769 otherCount = 34 +~~~ +27221107 UP 11 +27221107 1024 1024 +27230108 BEEP1 +27230108 BEEP2 +~~~ +~~~ +~~~ +27230134 1024 33555456 +~~~ +27230284 1024 1024 +27237176 DOWN 11 +27237176 0 1024 +~~~ +~~~ +27237202 0 0 +~~~ +~~~ +27237203 0 1 +~~~ +~~~ +27237205 0 3 +~~~ +~~~ +27237207 0 7 +~~~ +~~~ +27237209 0 15 +~~~ +~~~ +27237211 0 31 +~~~ +~~~ +27237213 0 63 +~~~ +~~~ +27237214 0 127 +~~~ +~~~ +27237216 0 255 +27237217 homeCount = 69 +27237218 waitCount = 28 +27237218 ripCount = 28 +27237219 locktype1 = 1 +27237219 locktype2 = 5 +27237240 locktype3 = 8 +27237241 goalCount = 0 +27237241 goalTotal = 20 +27237242 otherCount = 34 +~~~ +27237243 CURRENTGOAL IS [1] +~~~ +27237243 UP 11 +27237243 1024 255 +27237293 DOWN 11 +27237293 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27237330 homeCount = 69 +27237330 waitCount = 28 +27237331 ripCount = 28 +27237331 locktype1 = 1 +27237332 locktype2 = 5 +27237332 locktype3 = 8 +27237333 goalCount = 0 +27237333 goalTotal = 20 +27237334 otherCount = 34 +~~~ +27237335 CURRENTGOAL IS [1] +~~~ +27244806 UP 3 +27244806 4 255 +27244824 DOWN 3 +27244824 0 255 +~~~ +~~~ +~~~ +~~~ +27244845 0 254 +~~~ +~~~ +27244846 0 252 +~~~ +~~~ +27244848 0 248 +~~~ +~~~ +27244850 0 240 +~~~ +~~~ +27244852 0 224 +~~~ +~~~ +27244854 0 192 +~~~ +~~~ +27244856 0 128 +~~~ +~~~ +27244857 0 0 +~~~ +~~~ +27244859 0 512 +27244860 homeCount = 69 +27244861 waitCount = 28 +27244861 ripCount = 28 +27244862 locktype1 = 1 +27244883 locktype2 = 5 +27244884 locktype3 = 8 +27244884 goalCount = 0 +27244885 goalTotal = 20 +27244885 otherCount = 35 +~~~ +27244896 4 512 +27245112 DOWN 3 +27245112 0 512 +27245162 4 512 +27245949 DOWN 3 +27245949 0 512 +27246153 4 512 +27247409 DOWN 3 +27247409 0 512 +27252323 UP 10 +27252323 waslock = 0 +27252323 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27252354 512 16777728 +~~~ +27252487 DOWN 10 +27252487 0 16777728 +27252504 0 512 +~~~ +~~~ +27252509 0 2560 +~~~ +~~~ +27252511 0 2048 +27252512 homeCount = 70 +27252513 waitCount = 28 +27252513 ripCount = 28 +27252514 locktype1 = 1 +27252514 locktype2 = 5 +27252515 locktype3 = 8 +27252515 goalCount = 0 +27252516 goalTotal = 20 +27252516 otherCount = 35 +~~~ +27252537 UP 10 +27252538 waslock = 0 +27252537 512 2048 +~~~ +27257198 DOWN 10 +27257198 0 2048 +~~~ +~~~ +~~~ +~~~ +27257221 homeCount = 70 +27257221 waitCount = 28 +27257222 ripCount = 28 +27257222 locktype1 = 1 +27257223 locktype2 = 5 +27257223 locktype3 = 8 +27257224 goalCount = 0 +27257224 goalTotal = 20 +27257225 otherCount = 35 +~~~ +27257233 UP 10 +27257233 waslock = 0 +27257233 512 2048 +~~~ +27257298 DOWN 10 +27257298 0 2048 +~~~ +~~~ +~~~ +~~~ +27257321 homeCount = 70 +27257322 waitCount = 28 +27257322 ripCount = 28 +27257323 locktype1 = 1 +27257323 locktype2 = 5 +27257324 locktype3 = 8 +27257324 goalCount = 0 +27257325 goalTotal = 20 +27257325 otherCount = 35 +~~~ +27259477 UP 12 +27259477 2048 2048 +27262833 DOWN 12 +27262833 0 2048 +27262866 UP 12 +27262866 2048 2048 +27262907 DOWN 12 +27262907 0 2048 +27262994 UP 12 +27262994 2048 2048 +27263034 DOWN 12 +27263034 0 2048 +27263046 UP 12 +27263046 2048 2048 +27267477 CLICK1 +27267477 CLICK2 +~~~ +~~~ +~~~ +27267503 2048 67110912 +~~~ +27267653 2048 2048 +27274654 DOWN 12 +27274654 0 2048 +~~~ +~~~ +27274672 0 0 +~~~ +~~~ +27274674 0 1 +~~~ +~~~ +27274676 0 3 +~~~ +~~~ +27274677 0 7 +~~~ +~~~ +27274679 0 15 +~~~ +~~~ +27274681 0 31 +~~~ +~~~ +27274683 0 63 +~~~ +~~~ +27274685 0 127 +~~~ +~~~ +27274686 0 255 +27274687 homeCount = 70 +27274688 waitCount = 29 +27274689 ripCount = 28 +27274689 locktype1 = 1 +27274690 locktype2 = 5 +27274710 locktype3 = 8 +27274711 goalCount = 0 +27274711 goalTotal = 20 +27274712 otherCount = 35 +~~~ +27274713 CURRENTGOAL IS [1] +~~~ +27278587 UP 3 +27278587 4 255 +~~~ +~~~ +27278893 DOWN 3 +27278893 0 255 +~~~ +~~~ +27278912 0 254 +~~~ +~~~ +27278914 0 252 +~~~ +~~~ +27278916 0 248 +~~~ +~~~ +27278917 0 240 +~~~ +~~~ +27278919 0 224 +~~~ +~~~ +27278921 0 192 +~~~ +~~~ +27278923 0 128 +~~~ +~~~ +27278925 0 0 +~~~ +~~~ +27278927 0 512 +27278928 homeCount = 70 +27278928 waitCount = 29 +27278929 ripCount = 28 +27278929 locktype1 = 1 +27278930 locktype2 = 5 +27278951 locktype3 = 8 +27278951 goalCount = 0 +27278952 goalTotal = 20 +27278952 otherCount = 36 +~~~ +27278953 4 512 +27279428 DOWN 3 +27279428 0 512 +27279473 4 512 +27279495 DOWN 3 +27279495 0 512 +27283748 UP 10 +27283748 waslock = 0 +27283748 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27283772 512 16777728 +~~~ +27283922 512 512 +27288098 DOWN 10 +27288098 0 512 +~~~ +~~~ +27288117 0 1536 +~~~ +~~~ +27288119 0 1024 +27288120 homeCount = 71 +27288120 waitCount = 29 +27288121 ripCount = 28 +27288121 locktype1 = 1 +27288122 locktype2 = 5 +27288122 locktype3 = 8 +27288123 goalCount = 0 +27288123 goalTotal = 20 +27288124 otherCount = 36 +~~~ +27288158 UP 10 +27288158 waslock = 0 +27288158 512 1024 +~~~ +27288186 DOWN 10 +27288186 0 1024 +~~~ +~~~ +~~~ +~~~ +27288215 homeCount = 71 +27288215 waitCount = 29 +27288216 ripCount = 28 +27288216 locktype1 = 1 +27288217 locktype2 = 5 +27288217 locktype3 = 8 +27288218 goalCount = 0 +27288218 goalTotal = 20 +27288219 otherCount = 36 +~~~ +27303216 UP 4 +27303216 8 1024 +~~~ +27303239 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +27303243 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27304347 DOWN 4 +27304347 0 0 +27321209 512 0 +27321279 0 0 +27328239 LOCKEND +~~~ +~~~ +~~~ +27328258 0 512 +27338600 UP 5 +27338600 16 512 +27338629 DOWN 5 +27338629 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27338662 homeCount = 71 +27338663 waitCount = 29 +27338663 ripCount = 28 +27338664 locktype1 = 1 +27338664 locktype2 = 6 +27338665 locktype3 = 8 +27338665 goalCount = 0 +27338666 goalTotal = 20 +27338666 otherCount = 36 +~~~ +27338727 16 512 +27338920 DOWN 5 +27338920 0 512 +27339036 16 512 +27339061 DOWN 5 +27339061 0 512 +27339130 16 512 +27339491 DOWN 5 +27339491 0 512 +27349519 UP 10 +27349520 waslock = 0 +27349519 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27349543 512 16777728 +~~~ +27349693 512 512 +27349747 DOWN 10 +27349747 0 512 +~~~ +~~~ +27349772 0 2560 +~~~ +~~~ +27349774 0 2048 +27349775 homeCount = 72 +27349776 waitCount = 29 +27349776 ripCount = 28 +27349777 locktype1 = 1 +27349777 locktype2 = 6 +27349778 locktype3 = 8 +27349778 goalCount = 0 +27349779 goalTotal = 20 +27349779 otherCount = 36 +~~~ +27349887 UP 10 +27349888 waslock = 0 +27349887 512 2048 +~~~ +27355800 DOWN 10 +27355800 0 2048 +~~~ +~~~ +~~~ +~~~ +27355821 homeCount = 72 +27355821 waitCount = 29 +27355822 ripCount = 28 +27355822 locktype1 = 1 +27355823 locktype2 = 6 +27355823 locktype3 = 8 +27355824 goalCount = 0 +27355824 goalTotal = 20 +27355825 otherCount = 36 +~~~ +27355830 UP 10 +27355831 waslock = 0 +27355830 512 2048 +~~~ +27355896 DOWN 10 +27355896 0 2048 +~~~ +~~~ +~~~ +~~~ +27355921 homeCount = 72 +27355921 waitCount = 29 +27355922 ripCount = 28 +27355922 locktype1 = 1 +27355923 locktype2 = 6 +27355923 locktype3 = 8 +27355924 goalCount = 0 +27355924 goalTotal = 20 +27355925 otherCount = 36 +~~~ +27359955 UP 12 +27359955 2048 2048 +27361229 DOWN 12 +27361229 0 2048 +27361429 LOCKOUT 3 +~~~ +27361449 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27361455 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27361545 UP 12 +27361545 2048 0 +27363005 DOWN 12 +27363005 0 0 +27363061 UP 12 +27363061 2048 0 +27363086 DOWN 12 +27363086 0 0 +27363176 UP 12 +27363176 2048 0 +27363450 DOWN 12 +27363450 0 0 +27363499 UP 12 +27363498 2048 0 +27363784 DOWN 12 +27363784 0 0 +27363793 UP 12 +27363792 2048 0 +27367425 DOWN 12 +27367425 0 0 +27367513 UP 12 +27367513 2048 0 +27367580 DOWN 12 +27367580 0 0 +27367680 UP 12 +27367680 2048 0 +27373426 DOWN 12 +27373426 0 0 +27373444 UP 12 +27373444 2048 0 +27373471 DOWN 12 +27373471 0 0 +27373514 UP 12 +27373514 2048 0 +27373617 DOWN 12 +27373617 0 0 +27373720 UP 12 +27373720 2048 0 +27375640 DOWN 12 +27375640 0 0 +27386449 LOCKEND +~~~ +~~~ +~~~ +27386471 0 512 +27392770 UP 10 +27392770 waslock = 0 +27392770 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27392793 512 16777728 +~~~ +27392943 512 512 +27392954 DOWN 10 +27392954 0 512 +~~~ +~~~ +27392972 0 1536 +~~~ +~~~ +27392974 0 1024 +27392975 homeCount = 73 +27392976 waitCount = 29 +27392976 ripCount = 28 +27392977 locktype1 = 1 +27392977 locktype2 = 6 +27392978 locktype3 = 9 +27392978 goalCount = 0 +27392979 goalTotal = 20 +27392979 otherCount = 36 +~~~ +27393151 UP 10 +27393152 waslock = 0 +27393151 512 1024 +~~~ +27393293 DOWN 10 +27393293 0 1024 +~~~ +~~~ +27393320 UP 10 +27393320 waslock = 0 +27393320 512 1024 +~~~ +~~~ +27393323 homeCount = 73 +27393323 waitCount = 29 +27393324 ripCount = 28 +27393324 locktype1 = 1 +27393325 locktype2 = 6 +27393325 locktype3 = 9 +27393326 goalCount = 0 +27393326 goalTotal = 20 +27393347 otherCount = 36 +~~~ +~~~ +27393593 DOWN 10 +27393593 0 1024 +27393607 UP 10 +27393607 waslock = 0 +27393607 512 1024 +~~~ +~~~ +~~~ +~~~ +27393623 homeCount = 73 +27393623 waitCount = 29 +27393624 ripCount = 28 +27393624 locktype1 = 1 +27393625 locktype2 = 6 +27393625 locktype3 = 9 +27393626 goalCount = 0 +27393626 goalTotal = 20 +27393627 otherCount = 36 +~~~ +~~~ +27393753 DOWN 10 +27393753 0 1024 +27393770 UP 10 +27393770 waslock = 0 +27393770 512 1024 +~~~ +~~~ +~~~ +~~~ +27393782 homeCount = 73 +27393782 waitCount = 29 +27393783 ripCount = 28 +27393783 locktype1 = 1 +27393784 locktype2 = 6 +27393784 locktype3 = 9 +27393785 goalCount = 0 +27393785 goalTotal = 20 +27393786 otherCount = 36 +~~~ +~~~ +27393918 DOWN 10 +27393918 0 1024 +~~~ +~~~ +~~~ +27393940 UP 10 +27393940 waslock = 0 +27393940 512 1024 +~~~ +27393942 homeCount = 73 +27393942 waitCount = 29 +27393943 ripCount = 28 +27393943 locktype1 = 1 +27393944 locktype2 = 6 +27393944 locktype3 = 9 +27393945 goalCount = 0 +27393945 goalTotal = 20 +27393946 otherCount = 36 +~~~ +~~~ +27397740 DOWN 10 +27397740 0 1024 +~~~ +~~~ +~~~ +~~~ +27397761 homeCount = 73 +27397761 waitCount = 29 +27397762 ripCount = 28 +27397762 locktype1 = 1 +27397763 locktype2 = 6 +27397763 locktype3 = 9 +27397764 goalCount = 0 +27397764 goalTotal = 20 +27397765 otherCount = 36 +~~~ +27397767 UP 10 +27397767 waslock = 0 +27397767 512 1024 +~~~ +27397836 DOWN 10 +27397836 0 1024 +~~~ +~~~ +~~~ +~~~ +27397863 homeCount = 73 +27397863 waitCount = 29 +27397864 ripCount = 28 +27397865 locktype1 = 1 +27397865 locktype2 = 6 +27397866 locktype3 = 9 +27397866 goalCount = 0 +27397867 goalTotal = 20 +27397867 otherCount = 36 +~~~ +27401205 UP 11 +27401205 1024 1024 +27405837 DOWN 11 +27405837 0 1024 +27405869 UP 11 +27405869 1024 1024 +27405991 DOWN 11 +27405991 0 1024 +27406002 UP 11 +27406002 1024 1024 +27408205 BEEP1 +27408205 BEEP2 +~~~ +~~~ +~~~ +27408231 1024 33555456 +~~~ +27408381 1024 1024 +27415414 DOWN 11 +27415414 0 1024 +27415427 UP 11 +27415427 1024 1024 +27415439 DOWN 11 +27415439 0 1024 +~~~ +~~~ +27415441 0 0 +~~~ +~~~ +27415442 0 1 +~~~ +~~~ +27415444 0 3 +~~~ +~~~ +27415446 0 7 +~~~ +~~~ +27415447 0 15 +~~~ +~~~ +27415449 0 31 +~~~ +~~~ +27415451 0 63 +~~~ +~~~ +27415453 0 127 +~~~ +~~~ +27415455 0 255 +27415456 homeCount = 73 +27415456 waitCount = 29 +27415457 ripCount = 29 +27415478 locktype1 = 1 +27415478 locktype2 = 6 +27415479 locktype3 = 9 +27415479 goalCount = 0 +27415480 goalTotal = 20 +27415480 otherCount = 36 +~~~ +27415481 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27415509 homeCount = 73 +27415509 waitCount = 29 +27415510 ripCount = 29 +27415510 locktype1 = 1 +27415511 locktype2 = 6 +27415511 locktype3 = 9 +27415512 goalCount = 0 +27415512 goalTotal = 20 +27415513 otherCount = 36 +~~~ +27415534 CURRENTGOAL IS [1] +~~~ +27415535 UP 11 +27415535 1024 255 +27417762 DOWN 11 +27417762 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27417797 homeCount = 73 +27417798 waitCount = 29 +27417798 ripCount = 29 +27417799 locktype1 = 1 +27417799 locktype2 = 6 +27417800 locktype3 = 9 +27417800 goalCount = 0 +27417801 goalTotal = 20 +27417801 otherCount = 36 +~~~ +27417802 CURRENTGOAL IS [1] +~~~ +27420577 UP 6 +27420577 32 255 +~~~ +~~~ +27421351 DOWN 6 +27421351 0 255 +~~~ +~~~ +27421370 0 254 +~~~ +~~~ +27421372 0 252 +~~~ +~~~ +27421374 0 248 +~~~ +~~~ +27421376 0 240 +~~~ +~~~ +27421377 0 224 +~~~ +~~~ +27421379 0 192 +~~~ +~~~ +27421381 0 128 +~~~ +~~~ +27421383 0 0 +~~~ +~~~ +27421385 0 512 +27421386 homeCount = 73 +27421386 waitCount = 29 +27421387 ripCount = 29 +27421387 locktype1 = 1 +27421388 locktype2 = 6 +27421409 locktype3 = 9 +27421409 goalCount = 0 +27421410 goalTotal = 20 +27421410 otherCount = 37 +~~~ +27426117 UP 10 +27426118 waslock = 0 +27426117 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27426143 512 16777728 +~~~ +27426293 512 512 +27426356 DOWN 10 +27426355 0 512 +~~~ +~~~ +27426378 0 2560 +~~~ +~~~ +27426380 0 2048 +27426381 homeCount = 74 +27426381 waitCount = 29 +27426382 ripCount = 29 +27426382 locktype1 = 1 +27426383 locktype2 = 6 +27426383 locktype3 = 9 +27426384 goalCount = 0 +27426384 goalTotal = 20 +27426385 otherCount = 37 +~~~ +27426406 UP 10 +27426406 waslock = 0 +27426406 512 2048 +~~~ +27431666 DOWN 10 +27431666 0 2048 +~~~ +~~~ +~~~ +~~~ +27431691 homeCount = 74 +27431691 waitCount = 29 +27431692 ripCount = 29 +27431692 locktype1 = 1 +27431693 locktype2 = 6 +27431693 locktype3 = 9 +27431694 goalCount = 0 +27431694 goalTotal = 20 +27431695 otherCount = 37 +~~~ +27431705 UP 10 +27431705 waslock = 0 +27431704 512 2048 +~~~ +27431767 DOWN 10 +27431767 0 2048 +~~~ +~~~ +~~~ +~~~ +27431791 homeCount = 74 +27431792 waitCount = 29 +27431792 ripCount = 29 +27431793 locktype1 = 1 +27431793 locktype2 = 6 +27431794 locktype3 = 9 +27431794 goalCount = 0 +27431795 goalTotal = 20 +27431795 otherCount = 37 +~~~ +27434661 UP 12 +27434661 2048 2048 +27435489 DOWN 12 +27435489 0 2048 +27435670 UP 12 +27435670 2048 2048 +27437661 CLICK1 +27437661 CLICK2 +~~~ +~~~ +~~~ +27437680 2048 67110912 +~~~ +27437830 2048 2048 +27446647 DOWN 12 +27446647 0 2048 +~~~ +~~~ +27446668 0 0 +~~~ +~~~ +27446670 0 1 +~~~ +~~~ +27446672 0 3 +~~~ +~~~ +27446673 0 7 +~~~ +~~~ +27446675 0 15 +~~~ +~~~ +27446677 0 31 +~~~ +~~~ +27446679 0 63 +~~~ +~~~ +27446681 0 127 +~~~ +~~~ +27446683 0 255 +27446684 homeCount = 74 +27446684 waitCount = 30 +27446685 ripCount = 29 +27446685 locktype1 = 1 +27446686 locktype2 = 6 +27446706 locktype3 = 9 +27446707 goalCount = 0 +27446707 goalTotal = 20 +27446708 otherCount = 37 +~~~ +27446709 CURRENTGOAL IS [1] +~~~ +27449877 UP 3 +27449877 4 255 +~~~ +~~~ +27450268 DOWN 3 +27450268 0 255 +~~~ +~~~ +27450290 0 254 +~~~ +~~~ +27450292 0 252 +~~~ +~~~ +27450294 0 248 +~~~ +~~~ +27450296 0 240 +~~~ +~~~ +27450298 0 224 +~~~ +~~~ +27450299 0 192 +~~~ +~~~ +27450301 0 128 +~~~ +~~~ +27450303 0 0 +~~~ +~~~ +27450305 0 512 +27450306 homeCount = 74 +27450306 waitCount = 30 +27450307 ripCount = 29 +27450307 locktype1 = 1 +27450329 locktype2 = 6 +27450329 locktype3 = 9 +27450330 goalCount = 0 +27450330 goalTotal = 20 +27450331 otherCount = 38 +~~~ +27454527 UP 10 +27454527 waslock = 0 +27454527 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27454559 512 16777728 +~~~ +27454581 DOWN 10 +27454581 0 16777728 +~~~ +~~~ +27454604 0 16779776 +~~~ +~~~ +27454606 0 16779264 +27454607 homeCount = 75 +27454607 waitCount = 30 +27454608 ripCount = 29 +27454608 locktype1 = 1 +27454609 locktype2 = 6 +27454609 locktype3 = 9 +27454610 goalCount = 0 +27454610 goalTotal = 20 +27454611 otherCount = 38 +~~~ +27454632 UP 10 +27454633 waslock = 0 +27454632 512 16779264 +~~~ +27454709 512 2048 +27454756 DOWN 10 +27454756 0 2048 +~~~ +~~~ +~~~ +~~~ +27454777 homeCount = 75 +27454777 waitCount = 30 +27454778 ripCount = 29 +27454778 locktype1 = 1 +27454779 locktype2 = 6 +27454779 locktype3 = 9 +27454780 goalCount = 0 +27454780 goalTotal = 20 +27454781 otherCount = 38 +~~~ +27454826 UP 10 +27454826 waslock = 0 +27454826 512 2048 +~~~ +27458766 DOWN 10 +27458766 0 2048 +~~~ +~~~ +~~~ +~~~ +27458789 homeCount = 75 +27458789 waitCount = 30 +27458790 ripCount = 29 +27458790 locktype1 = 1 +27458791 locktype2 = 6 +27458791 locktype3 = 9 +27458792 goalCount = 0 +27458792 goalTotal = 20 +27458793 otherCount = 38 +~~~ +27460839 UP 12 +27460839 2048 2048 +27460866 DOWN 12 +27460866 0 2048 +27460888 UP 12 +27460888 2048 2048 +27465667 DOWN 12 +27465667 0 2048 +27465757 UP 12 +27465757 2048 2048 +27468839 CLICK1 +27468839 CLICK2 +~~~ +~~~ +~~~ +27468867 2048 67110912 +~~~ +27469017 2048 2048 +27475004 DOWN 12 +27475004 0 2048 +~~~ +~~~ +27475026 0 0 +~~~ +~~~ +27475027 0 1 +~~~ +~~~ +27475029 0 3 +~~~ +~~~ +27475031 0 7 +~~~ +~~~ +27475033 0 15 +~~~ +~~~ +27475035 0 31 +~~~ +~~~ +27475037 0 63 +~~~ +~~~ +27475038 0 127 +~~~ +~~~ +27475040 0 255 +27475041 homeCount = 75 +27475042 waitCount = 31 +27475042 ripCount = 29 +27475043 locktype1 = 1 +27475043 locktype2 = 6 +27475064 locktype3 = 9 +27475065 goalCount = 0 +27475065 goalTotal = 20 +27475066 otherCount = 38 +~~~ +27475067 CURRENTGOAL IS [1] +~~~ +27475072 UP 12 +27475072 2048 255 +27475103 DOWN 12 +27475103 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27475142 homeCount = 75 +27475143 waitCount = 31 +27475143 ripCount = 29 +27475144 locktype1 = 1 +27475144 locktype2 = 6 +27475145 locktype3 = 9 +27475145 goalCount = 0 +27475146 goalTotal = 20 +27475147 otherCount = 38 +~~~ +27475148 CURRENTGOAL IS [1] +~~~ +27482092 UP 2 +27482092 2 255 +~~~ +~~~ +27482690 DOWN 2 +27482690 0 255 +~~~ +~~~ +27482709 0 254 +~~~ +~~~ +27482711 0 252 +~~~ +~~~ +27482712 0 248 +~~~ +~~~ +27482714 0 240 +~~~ +~~~ +27482716 0 224 +~~~ +~~~ +27482718 0 192 +~~~ +~~~ +27482720 0 128 +~~~ +~~~ +27482722 0 0 +~~~ +~~~ +27482723 0 512 +27482724 homeCount = 75 +27482725 waitCount = 31 +27482725 ripCount = 29 +27482726 locktype1 = 1 +27482747 locktype2 = 6 +27482748 locktype3 = 9 +27482748 goalCount = 0 +27482749 goalTotal = 20 +27482749 otherCount = 39 +~~~ +27487605 UP 10 +27487606 waslock = 0 +27487605 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27487635 512 16777728 +~~~ +27487754 DOWN 10 +27487754 0 16777728 +~~~ +~~~ +27487779 0 16778752 +~~~ +~~~ +27487781 0 16778240 +27487782 homeCount = 76 +27487782 waitCount = 31 +27487783 ripCount = 29 +27487783 locktype1 = 1 +27487784 locktype2 = 6 +27487784 locktype3 = 9 +27487785 goalCount = 0 +27487785 goalTotal = 20 +27487786 otherCount = 39 +~~~ +27487807 0 1024 +27487838 UP 10 +27487838 waslock = 0 +27487838 512 1024 +~~~ +27487993 DOWN 10 +27487993 0 1024 +27488009 UP 10 +27488009 waslock = 0 +27488009 512 1024 +~~~ +~~~ +~~~ +~~~ +27488022 homeCount = 76 +27488022 waitCount = 31 +27488023 ripCount = 29 +27488023 locktype1 = 1 +27488024 locktype2 = 6 +27488024 locktype3 = 9 +27488025 goalCount = 0 +27488025 goalTotal = 20 +27488026 otherCount = 39 +~~~ +~~~ +27492613 DOWN 10 +27492613 0 1024 +~~~ +~~~ +~~~ +~~~ +27492643 homeCount = 76 +27492644 waitCount = 31 +27492644 ripCount = 29 +27492645 locktype1 = 1 +27492645 locktype2 = 6 +27492646 locktype3 = 9 +27492646 goalCount = 0 +27492647 goalTotal = 20 +27492647 otherCount = 39 +~~~ +27492656 UP 10 +27492656 waslock = 0 +27492656 512 1024 +~~~ +27492718 DOWN 10 +27492718 0 1024 +~~~ +~~~ +~~~ +~~~ +27492751 homeCount = 76 +27492752 waitCount = 31 +27492752 ripCount = 29 +27492753 locktype1 = 1 +27492753 locktype2 = 6 +27492754 locktype3 = 9 +27492754 goalCount = 0 +27492755 goalTotal = 20 +27492755 otherCount = 39 +~~~ +27495022 UP 11 +27495022 1024 1024 +27497784 DOWN 11 +27497784 0 1024 +27497812 UP 11 +27497812 1024 1024 +27498522 BEEP1 +27498522 BEEP2 +~~~ +~~~ +~~~ +27498543 1024 33555456 +~~~ +27498693 1024 1024 +27505621 DOWN 11 +27505621 0 1024 +~~~ +~~~ +27505642 0 0 +~~~ +~~~ +27505644 0 1 +~~~ +~~~ +27505646 0 3 +~~~ +~~~ +27505647 0 7 +~~~ +~~~ +27505649 0 15 +~~~ +~~~ +27505651 0 31 +~~~ +~~~ +27505653 0 63 +~~~ +~~~ +27505655 0 127 +~~~ +~~~ +27505657 0 255 +27505658 homeCount = 76 +27505658 waitCount = 31 +27505659 ripCount = 30 +27505659 locktype1 = 1 +27505660 locktype2 = 6 +27505681 locktype3 = 9 +27505681 goalCount = 0 +27505682 goalTotal = 20 +27505682 otherCount = 39 +~~~ +27505683 CURRENTGOAL IS [1] +~~~ +27509309 UP 7 +27509309 64 255 +27509329 DOWN 7 +27509329 0 255 +~~~ +~~~ +~~~ +~~~ +27509353 0 254 +~~~ +~~~ +27509355 0 252 +~~~ +~~~ +27509356 0 248 +~~~ +~~~ +27509358 0 240 +~~~ +~~~ +27509360 0 224 +~~~ +~~~ +27509362 0 192 +~~~ +~~~ +27509364 0 128 +~~~ +~~~ +27509366 0 0 +~~~ +~~~ +27509367 0 512 +27509368 homeCount = 76 +27509369 waitCount = 31 +27509369 ripCount = 30 +27509370 locktype1 = 1 +27509370 locktype2 = 6 +27509391 locktype3 = 9 +27509392 goalCount = 0 +27509392 goalTotal = 20 +27509393 otherCount = 40 +~~~ +27509408 64 512 +27510460 DOWN 7 +27510460 0 512 +27515208 UP 10 +27515208 waslock = 0 +27515208 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27515238 512 16777728 +~~~ +27515387 512 512 +27515447 DOWN 10 +27515447 0 512 +~~~ +~~~ +27515474 0 1536 +~~~ +~~~ +27515476 0 1024 +27515477 homeCount = 77 +27515477 waitCount = 31 +27515478 ripCount = 30 +27515478 locktype1 = 1 +27515479 locktype2 = 6 +27515479 locktype3 = 9 +27515480 goalCount = 0 +27515480 goalTotal = 20 +27515481 otherCount = 40 +~~~ +27515502 UP 10 +27515502 waslock = 0 +27515502 512 1024 +~~~ +27519901 DOWN 10 +27519901 0 1024 +27519912 UP 10 +27519912 waslock = 0 +27519912 512 1024 +~~~ +~~~ +~~~ +~~~ +27519937 homeCount = 77 +27519937 waitCount = 31 +27519938 ripCount = 30 +27519938 locktype1 = 1 +27519939 locktype2 = 6 +27519939 locktype3 = 9 +27519940 goalCount = 0 +27519940 goalTotal = 20 +27519941 otherCount = 40 +~~~ +~~~ +27520005 DOWN 10 +27520005 0 1024 +~~~ +~~~ +~~~ +~~~ +27520037 homeCount = 77 +27520037 waitCount = 31 +27520038 ripCount = 30 +27520038 locktype1 = 1 +27520039 locktype2 = 6 +27520039 locktype3 = 9 +27520040 goalCount = 0 +27520040 goalTotal = 20 +27520041 otherCount = 40 +~~~ +27522612 UP 11 +27522612 1024 1024 +27526612 BEEP1 +27526612 BEEP2 +~~~ +~~~ +~~~ +27526634 1024 33555456 +~~~ +27526784 1024 1024 +27534399 DOWN 11 +27534399 0 1024 +~~~ +~~~ +27534424 0 0 +~~~ +~~~ +27534425 0 1 +~~~ +~~~ +27534427 0 3 +~~~ +~~~ +27534429 0 7 +~~~ +~~~ +27534431 0 15 +~~~ +~~~ +27534433 0 31 +~~~ +~~~ +27534435 0 63 +~~~ +~~~ +27534436 0 127 +~~~ +~~~ +27534438 0 255 +27534439 homeCount = 77 +27534440 waitCount = 31 +27534440 ripCount = 31 +27534441 locktype1 = 1 +27534441 locktype2 = 6 +27534462 locktype3 = 9 +27534463 goalCount = 0 +27534463 goalTotal = 20 +27534464 otherCount = 40 +~~~ +27534465 CURRENTGOAL IS [1] +~~~ +27539259 UP 5 +27539259 16 255 +~~~ +~~~ +27539345 DOWN 5 +27539345 0 255 +~~~ +~~~ +27539365 0 254 +~~~ +~~~ +27539366 0 252 +~~~ +~~~ +27539368 0 248 +~~~ +~~~ +27539370 0 240 +~~~ +~~~ +27539372 0 224 +~~~ +~~~ +27539374 0 192 +~~~ +~~~ +27539375 0 128 +~~~ +~~~ +27539377 0 0 +~~~ +~~~ +27539379 0 512 +27539380 homeCount = 77 +27539381 waitCount = 31 +27539381 ripCount = 31 +27539382 locktype1 = 1 +27539382 locktype2 = 6 +27539403 locktype3 = 9 +27539404 goalCount = 0 +27539404 goalTotal = 20 +27539405 otherCount = 41 +~~~ +27539853 16 512 +27540465 DOWN 5 +27540465 0 512 +27540535 16 512 +27540559 DOWN 5 +27540559 0 512 +27545443 UP 10 +27545443 waslock = 0 +27545442 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27545472 512 16777728 +~~~ +27545622 512 512 +27545710 DOWN 10 +27545710 0 512 +~~~ +~~~ +27545737 0 1536 +~~~ +~~~ +27545739 0 1024 +27545740 homeCount = 78 +27545741 waitCount = 31 +27545741 ripCount = 31 +27545742 locktype1 = 1 +27545742 locktype2 = 6 +27545743 locktype3 = 9 +27545743 goalCount = 0 +27545744 goalTotal = 20 +27545744 otherCount = 41 +~~~ +27545765 UP 10 +27545766 waslock = 0 +27545765 512 1024 +~~~ +27552068 DOWN 10 +27552068 0 1024 +~~~ +~~~ +~~~ +~~~ +27552094 homeCount = 78 +27552095 waitCount = 31 +27552095 ripCount = 31 +27552096 locktype1 = 1 +27552096 locktype2 = 6 +27552097 locktype3 = 9 +27552097 goalCount = 0 +27552098 goalTotal = 20 +27552098 otherCount = 41 +~~~ +27552127 UP 10 +27552127 waslock = 0 +27552127 512 1024 +~~~ +27552162 DOWN 10 +27552162 0 1024 +~~~ +~~~ +~~~ +~~~ +27552191 homeCount = 78 +27552191 waitCount = 31 +27552192 ripCount = 31 +27552192 locktype1 = 1 +27552193 locktype2 = 6 +27552193 locktype3 = 9 +27552194 goalCount = 0 +27552194 goalTotal = 20 +27552195 otherCount = 41 +~~~ +27555522 UP 11 +27555522 1024 1024 +27555840 DOWN 11 +27555840 0 1024 +27555878 UP 11 +27555878 1024 1024 +27555985 DOWN 11 +27555985 0 1024 +27556185 LOCKOUT 3 +~~~ +27556203 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +27556206 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27561528 UP 11 +27561528 1024 0 +27561696 DOWN 11 +27561696 0 0 +27569980 UP 1 +27569980 1 0 +27570625 DOWN 1 +27570625 0 0 +27570643 1 0 +27570978 DOWN 1 +27570978 0 0 +27579623 512 0 +27579824 0 0 +27581203 LOCKEND +~~~ +~~~ +~~~ +27581224 0 512 +27582044 UP 10 +27582044 waslock = 0 +27582044 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27582081 512 16777728 +~~~ +27582231 512 512 +27582274 DOWN 10 +27582274 0 512 +~~~ +~~~ +27582292 0 2560 +~~~ +~~~ +27582294 0 2048 +27582295 homeCount = 79 +27582295 waitCount = 31 +27582296 ripCount = 31 +27582296 locktype1 = 1 +27582297 locktype2 = 6 +27582297 locktype3 = 10 +27582298 goalCount = 0 +27582298 goalTotal = 20 +27582299 otherCount = 41 +~~~ +27582320 UP 10 +27582321 waslock = 0 +27582320 512 2048 +~~~ +27582472 DOWN 10 +27582472 0 2048 +~~~ +~~~ +~~~ +~~~ +27582495 homeCount = 79 +27582495 waitCount = 31 +27582496 ripCount = 31 +27582496 locktype1 = 1 +27582497 locktype2 = 6 +27582497 locktype3 = 10 +27582498 goalCount = 0 +27582498 goalTotal = 20 +27582499 otherCount = 41 +~~~ +27582502 UP 10 +27582503 waslock = 0 +27582502 512 2048 +~~~ +27587012 DOWN 10 +27587012 0 2048 +27587023 UP 10 +27587024 waslock = 0 +27587023 512 2048 +~~~ +~~~ +~~~ +~~~ +27587035 homeCount = 79 +27587035 waitCount = 31 +27587036 ripCount = 31 +27587036 locktype1 = 1 +27587037 locktype2 = 6 +27587037 locktype3 = 10 +27587038 goalCount = 0 +27587038 goalTotal = 20 +27587039 otherCount = 41 +~~~ +~~~ +27587107 DOWN 10 +27587107 0 2048 +~~~ +~~~ +~~~ +~~~ +27587134 homeCount = 79 +27587135 waitCount = 31 +27587135 ripCount = 31 +27587136 locktype1 = 1 +27587136 locktype2 = 6 +27587137 locktype3 = 10 +27587137 goalCount = 0 +27587138 goalTotal = 20 +27587139 otherCount = 41 +~~~ +27589509 UP 12 +27589509 2048 2048 +27591426 DOWN 12 +27591426 0 2048 +27591493 UP 12 +27591493 2048 2048 +27595563 DOWN 12 +27595563 0 2048 +27595758 UP 12 +27595758 2048 2048 +27597010 CLICK1 +27597010 CLICK2 +~~~ +~~~ +~~~ +27597035 2048 67110912 +~~~ +27597185 2048 2048 +27603647 DOWN 12 +27603647 0 2048 +~~~ +~~~ +27603673 0 0 +~~~ +~~~ +27603675 0 1 +~~~ +~~~ +27603677 0 3 +~~~ +~~~ +27603679 0 7 +~~~ +~~~ +27603680 0 15 +~~~ +~~~ +27603682 0 31 +~~~ +~~~ +27603684 0 63 +~~~ +~~~ +27603686 0 127 +~~~ +~~~ +27603688 0 255 +27603689 homeCount = 79 +27603689 waitCount = 32 +27603690 ripCount = 31 +27603690 locktype1 = 1 +27603691 locktype2 = 6 +27603712 locktype3 = 10 +27603712 goalCount = 0 +27603713 goalTotal = 20 +27603713 otherCount = 41 +~~~ +27603715 CURRENTGOAL IS [1] +~~~ +27607433 UP 4 +27607433 8 255 +~~~ +~~~ +27608146 DOWN 4 +27608146 0 255 +~~~ +~~~ +27608171 0 254 +~~~ +~~~ +27608173 0 252 +~~~ +~~~ +27608174 0 248 +~~~ +~~~ +27608176 0 240 +~~~ +~~~ +27608178 0 224 +~~~ +~~~ +27608180 0 192 +~~~ +~~~ +27608182 0 128 +~~~ +~~~ +27608184 0 0 +~~~ +~~~ +27608186 0 512 +27608186 homeCount = 79 +27608187 waitCount = 32 +27608188 ripCount = 31 +27608188 locktype1 = 1 +27608209 locktype2 = 6 +27608210 locktype3 = 10 +27608210 goalCount = 0 +27608211 goalTotal = 20 +27608211 otherCount = 42 +~~~ +27613875 UP 10 +27613875 waslock = 0 +27613875 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27613908 512 16777728 +~~~ +27613925 DOWN 10 +27613925 0 16777728 +~~~ +~~~ +27613944 0 16779776 +~~~ +~~~ +27613946 0 16779264 +27613947 homeCount = 80 +27613948 waitCount = 32 +27613948 ripCount = 31 +27613949 locktype1 = 1 +27613949 locktype2 = 6 +27613950 locktype3 = 10 +27613950 goalCount = 0 +27613951 goalTotal = 20 +27613951 otherCount = 42 +~~~ +27613972 UP 10 +27613973 waslock = 0 +27613972 512 16779264 +~~~ +27614058 512 2048 +27614058 DOWN 10 +27614058 0 2048 +~~~ +~~~ +~~~ +~~~ +27614087 homeCount = 80 +27614087 waitCount = 32 +27614088 ripCount = 31 +27614088 locktype1 = 1 +27614089 locktype2 = 6 +27614089 locktype3 = 10 +27614090 goalCount = 0 +27614090 goalTotal = 20 +27614091 otherCount = 42 +~~~ +27614158 UP 10 +27614158 waslock = 0 +27614158 512 2048 +~~~ +27620143 DOWN 10 +27620143 0 2048 +~~~ +~~~ +~~~ +~~~ +27620166 homeCount = 80 +27620166 waitCount = 32 +27620167 ripCount = 31 +27620167 locktype1 = 1 +27620168 locktype2 = 6 +27620168 locktype3 = 10 +27620169 goalCount = 0 +27620169 goalTotal = 20 +27620170 otherCount = 42 +~~~ +27623236 UP 12 +27623236 2048 2048 +27625528 DOWN 12 +27625527 0 2048 +27625543 UP 12 +27625543 2048 2048 +27625606 DOWN 12 +27625606 0 2048 +27625661 UP 12 +27625661 2048 2048 +27626237 CLICK1 +27626237 CLICK2 +~~~ +~~~ +~~~ +27626266 2048 67110912 +~~~ +27626416 2048 2048 +27631910 DOWN 12 +27631910 0 2048 +~~~ +27631934 UP 12 +27631934 2048 2048 +~~~ +~~~ +27631936 2048 0 +~~~ +~~~ +27631937 2048 1 +~~~ +27631938 2048 3 +~~~ +~~~ +27631940 2048 7 +~~~ +~~~ +27631942 2048 15 +~~~ +~~~ +27631943 2048 31 +~~~ +~~~ +27631945 2048 63 +~~~ +~~~ +27631947 2048 127 +~~~ +~~~ +27631949 2048 255 +27631950 homeCount = 80 +27631971 waitCount = 33 +27631971 ripCount = 31 +27631972 locktype1 = 1 +27631972 locktype2 = 6 +27631973 locktype3 = 10 +27631973 goalCount = 0 +27631974 goalTotal = 20 +27631974 otherCount = 42 +~~~ +27631975 CURRENTGOAL IS [1] +~~~ +27632012 DOWN 12 +27632012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27632045 homeCount = 80 +27632045 waitCount = 33 +27632046 ripCount = 31 +27632047 locktype1 = 1 +27632047 locktype2 = 6 +27632048 locktype3 = 10 +27632048 goalCount = 0 +27632049 goalTotal = 20 +27632049 otherCount = 42 +~~~ +27632050 CURRENTGOAL IS [1] +~~~ +27632101 UP 12 +27632101 2048 255 +27632109 DOWN 12 +27632109 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27632148 homeCount = 80 +27632149 waitCount = 33 +27632150 ripCount = 31 +27632150 locktype1 = 1 +27632151 locktype2 = 6 +27632151 locktype3 = 10 +27632152 goalCount = 0 +27632152 goalTotal = 20 +27632153 otherCount = 42 +~~~ +27632154 CURRENTGOAL IS [1] +~~~ +27635610 UP 3 +27635610 4 255 +~~~ +~~~ +27636256 DOWN 3 +27636256 0 255 +~~~ +~~~ +27636278 0 254 +~~~ +~~~ +27636280 0 252 +~~~ +~~~ +27636282 0 248 +~~~ +~~~ +27636284 0 240 +~~~ +~~~ +27636286 0 224 +~~~ +~~~ +27636287 0 192 +~~~ +~~~ +27636289 0 128 +~~~ +~~~ +27636291 0 0 +~~~ +~~~ +27636293 0 512 +27636294 homeCount = 80 +27636294 waitCount = 33 +27636295 ripCount = 31 +27636295 locktype1 = 1 +27636317 locktype2 = 6 +27636317 locktype3 = 10 +27636318 goalCount = 0 +27636318 goalTotal = 20 +27636319 otherCount = 43 +~~~ +27639801 UP 10 +27639801 waslock = 0 +27639801 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27639826 512 16777728 +~~~ +27639833 DOWN 10 +27639833 0 16777728 +~~~ +~~~ +27639856 0 16779776 +~~~ +~~~ +27639858 0 16779264 +27639859 homeCount = 81 +27639860 waitCount = 33 +27639860 ripCount = 31 +27639861 locktype1 = 1 +27639861 locktype2 = 6 +27639862 locktype3 = 10 +27639862 goalCount = 0 +27639863 goalTotal = 20 +27639863 otherCount = 43 +~~~ +27639884 UP 10 +27639884 waslock = 0 +27639884 512 16779264 +~~~ +27639976 512 2048 +27640009 DOWN 10 +27640009 0 2048 +27640033 UP 10 +27640033 waslock = 0 +27640033 512 2048 +~~~ +~~~ +~~~ +~~~ +27640042 homeCount = 81 +27640042 waitCount = 33 +27640043 ripCount = 31 +27640043 locktype1 = 1 +27640044 locktype2 = 6 +27640044 locktype3 = 10 +27640045 goalCount = 0 +27640045 goalTotal = 20 +27640046 otherCount = 43 +~~~ +~~~ +27644807 DOWN 10 +27644807 0 2048 +~~~ +~~~ +~~~ +~~~ +27644834 homeCount = 81 +27644834 waitCount = 33 +27644835 ripCount = 31 +27644835 locktype1 = 1 +27644836 locktype2 = 6 +27644836 locktype3 = 10 +27644837 goalCount = 0 +27644837 goalTotal = 20 +27644838 otherCount = 43 +~~~ +27646984 UP 12 +27646984 2048 2048 +27651484 CLICK1 +27651484 CLICK2 +~~~ +~~~ +~~~ +27651502 2048 67110912 +~~~ +27651652 2048 2048 +27656240 DOWN 12 +27656240 0 2048 +27656249 UP 12 +27656249 2048 2048 +~~~ +~~~ +27656262 2048 0 +~~~ +~~~ +27656264 2048 1 +~~~ +~~~ +27656266 2048 3 +~~~ +~~~ +27656268 2048 7 +~~~ +~~~ +27656270 2048 15 +~~~ +~~~ +27656271 2048 31 +~~~ +~~~ +27656273 2048 63 +~~~ +~~~ +27656275 2048 127 +~~~ +~~~ +27656277 2048 255 +27656278 homeCount = 81 +27656278 waitCount = 34 +27656279 ripCount = 31 +27656280 locktype1 = 1 +27656301 locktype2 = 6 +27656301 locktype3 = 10 +27656302 goalCount = 0 +27656302 goalTotal = 20 +27656303 otherCount = 43 +~~~ +27656304 CURRENTGOAL IS [1] +~~~ +27656327 DOWN 12 +27656327 0 255 +27656335 UP 12 +27656335 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656365 DOWN 12 +27656365 0 255 +~~~ +~~~ +~~~ +27656369 homeCount = 81 +27656369 waitCount = 34 +27656370 ripCount = 31 +27656371 locktype1 = 1 +27656371 locktype2 = 6 +27656372 locktype3 = 10 +27656372 goalCount = 0 +27656373 goalTotal = 20 +27656373 otherCount = 43 +~~~ +27656374 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656412 homeCount = 81 +27656413 waitCount = 34 +27656413 ripCount = 31 +27656414 locktype1 = 1 +27656414 locktype2 = 6 +27656415 locktype3 = 10 +27656415 goalCount = 0 +27656416 goalTotal = 20 +27656416 otherCount = 43 +~~~ +27656417 CURRENTGOAL IS [1] +~~~ +27656456 UP 12 +27656456 2048 255 +27656502 DOWN 12 +27656502 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656539 homeCount = 81 +27656540 waitCount = 34 +27656540 ripCount = 31 +27656541 locktype1 = 1 +27656541 locktype2 = 6 +27656542 locktype3 = 10 +27656542 goalCount = 0 +27656543 goalTotal = 20 +27656543 otherCount = 43 +~~~ +27656544 CURRENTGOAL IS [1] +~~~ +27656604 UP 12 +27656604 2048 255 +27656632 DOWN 12 +27656632 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656669 homeCount = 81 +27656670 waitCount = 34 +27656670 ripCount = 31 +27656671 locktype1 = 1 +27656671 locktype2 = 6 +27656672 locktype3 = 10 +27656672 goalCount = 0 +27656673 goalTotal = 20 +27656673 otherCount = 43 +~~~ +27656674 CURRENTGOAL IS [1] +~~~ +27656745 UP 12 +27656745 2048 255 +27656777 DOWN 12 +27656776 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656824 homeCount = 81 +27656825 waitCount = 34 +27656825 ripCount = 31 +27656826 locktype1 = 1 +27656826 locktype2 = 6 +27656827 locktype3 = 10 +27656827 goalCount = 0 +27656828 goalTotal = 20 +27656828 otherCount = 43 +~~~ +27656829 CURRENTGOAL IS [1] +~~~ +27656904 UP 12 +27656904 2048 255 +27656933 DOWN 12 +27656933 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656975 homeCount = 81 +27656975 waitCount = 34 +27656976 ripCount = 31 +27656976 locktype1 = 1 +27656977 locktype2 = 6 +27656977 locktype3 = 10 +27656978 goalCount = 0 +27656978 goalTotal = 20 +27656979 otherCount = 43 +~~~ +27656980 CURRENTGOAL IS [1] +~~~ +27657042 UP 12 +27657042 2048 255 +27657070 DOWN 12 +27657070 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657106 homeCount = 81 +27657106 waitCount = 34 +27657107 ripCount = 31 +27657107 locktype1 = 1 +27657108 locktype2 = 6 +27657108 locktype3 = 10 +27657109 goalCount = 0 +27657109 goalTotal = 20 +27657110 otherCount = 43 +~~~ +27657111 CURRENTGOAL IS [1] +~~~ +27657177 UP 12 +27657177 2048 255 +27657218 DOWN 12 +27657217 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657256 homeCount = 81 +27657256 waitCount = 34 +27657257 ripCount = 31 +27657257 locktype1 = 1 +27657258 locktype2 = 6 +27657258 locktype3 = 10 +27657259 goalCount = 0 +27657259 goalTotal = 20 +27657260 otherCount = 43 +~~~ +27657261 CURRENTGOAL IS [1] +~~~ +27657282 UP 12 +27657282 2048 255 +27657301 DOWN 12 +27657301 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657335 homeCount = 81 +27657335 waitCount = 34 +27657336 ripCount = 31 +27657337 locktype1 = 1 +27657337 locktype2 = 6 +27657338 locktype3 = 10 +27657338 goalCount = 0 +27657339 goalTotal = 20 +27657339 otherCount = 43 +~~~ +27657340 CURRENTGOAL IS [1] +~~~ +27657361 UP 12 +27657361 2048 255 +27657380 DOWN 12 +27657380 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657415 homeCount = 81 +27657415 waitCount = 34 +27657416 ripCount = 31 +27657416 locktype1 = 1 +27657417 locktype2 = 6 +27657417 locktype3 = 10 +27657418 goalCount = 0 +27657418 goalTotal = 20 +27657419 otherCount = 43 +~~~ +27657420 CURRENTGOAL IS [1] +~~~ +27657492 UP 12 +27657492 2048 255 +27657528 DOWN 12 +27657528 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657567 homeCount = 81 +27657568 waitCount = 34 +27657568 ripCount = 31 +27657569 locktype1 = 1 +27657569 locktype2 = 6 +27657570 locktype3 = 10 +27657570 goalCount = 0 +27657571 goalTotal = 20 +27657571 otherCount = 43 +~~~ +27657572 CURRENTGOAL IS [1] +~~~ +27657594 UP 12 +27657593 2048 255 +27659986 DOWN 12 +27659986 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27660019 homeCount = 81 +27660019 waitCount = 34 +27660020 ripCount = 31 +27660020 locktype1 = 1 +27660021 locktype2 = 6 +27660021 locktype3 = 10 +27660022 goalCount = 0 +27660022 goalTotal = 20 +27660023 otherCount = 43 +~~~ +27660024 CURRENTGOAL IS [1] +~~~ +27660045 UP 12 +27660045 2048 255 +27660067 DOWN 12 +27660067 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27660108 homeCount = 81 +27660108 waitCount = 34 +27660109 ripCount = 31 +27660109 locktype1 = 1 +27660110 locktype2 = 6 +27660110 locktype3 = 10 +27660111 goalCount = 0 +27660111 goalTotal = 20 +27660112 otherCount = 43 +~~~ +27660113 CURRENTGOAL IS [1] +~~~ +27663773 UP 1 +27663773 1 255 +~~~ +~~~ +27663794 outer reward +~~~ +27663794 1 65791 +~~~ +~~~ +27664244 1 255 +27674160 DOWN 1 +27674160 0 255 +~~~ +~~~ +27674180 0 254 +~~~ +~~~ +27674182 0 252 +~~~ +~~~ +27674184 0 248 +~~~ +~~~ +27674186 0 240 +~~~ +~~~ +27674188 0 224 +~~~ +~~~ +27674189 0 192 +~~~ +~~~ +27674191 0 128 +~~~ +~~~ +27674193 0 0 +~~~ +~~~ +27674195 0 512 +27674196 homeCount = 81 +27674196 waitCount = 34 +27674197 ripCount = 31 +27674197 locktype1 = 1 +27674198 locktype2 = 6 +27674219 locktype3 = 10 +27674220 goalCount = 1 +27674220 goalTotal = 21 +27674221 otherCount = 43 +~~~ +27674221 1 512 +27674272 DOWN 1 +27674272 0 512 +27678680 UP 10 +27678680 waslock = 0 +27678679 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27678707 512 16777728 +~~~ +27678857 512 512 +27682040 DOWN 10 +27682040 0 512 +~~~ +~~~ +27682061 0 1536 +~~~ +~~~ +27682062 0 1024 +27682063 homeCount = 82 +27682064 waitCount = 34 +27682065 ripCount = 31 +27682065 locktype1 = 1 +27682066 locktype2 = 6 +27682066 locktype3 = 10 +27682067 goalCount = 1 +27682067 goalTotal = 21 +27682068 otherCount = 43 +~~~ +27682089 UP 10 +27682089 waslock = 0 +27682089 512 1024 +~~~ +27682132 DOWN 10 +27682132 0 1024 +~~~ +~~~ +~~~ +~~~ +27682163 homeCount = 82 +27682164 waitCount = 34 +27682164 ripCount = 31 +27682165 locktype1 = 1 +27682165 locktype2 = 6 +27682166 locktype3 = 10 +27682166 goalCount = 1 +27682167 goalTotal = 21 +27682167 otherCount = 43 +~~~ +27684669 UP 11 +27684669 1024 1024 +27684805 DOWN 11 +27684805 0 1024 +27684823 UP 11 +27684823 1024 1024 +27692669 BEEP1 +27692669 BEEP2 +~~~ +~~~ +~~~ +27692694 1024 33555456 +~~~ +27692843 1024 1024 +27699461 DOWN 11 +27699461 0 1024 +~~~ +~~~ +27699484 0 0 +~~~ +~~~ +27699486 0 1 +~~~ +~~~ +27699488 0 3 +~~~ +~~~ +27699489 0 7 +~~~ +~~~ +27699491 0 15 +~~~ +~~~ +27699493 0 31 +~~~ +~~~ +27699495 0 63 +~~~ +~~~ +27699497 0 127 +~~~ +~~~ +27699498 0 255 +27699499 homeCount = 82 +27699500 waitCount = 34 +27699501 ripCount = 32 +27699501 locktype1 = 1 +27699502 locktype2 = 6 +27699523 locktype3 = 10 +27699523 goalCount = 1 +27699524 goalTotal = 21 +27699524 otherCount = 43 +~~~ +27699525 CURRENTGOAL IS [1] +~~~ +27699526 UP 11 +27699526 1024 255 +27699618 DOWN 11 +27699618 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27699659 homeCount = 82 +27699659 waitCount = 34 +27699660 ripCount = 32 +27699660 locktype1 = 1 +27699661 locktype2 = 6 +27699661 locktype3 = 10 +27699662 goalCount = 1 +27699662 goalTotal = 21 +27699663 otherCount = 43 +~~~ +27699664 CURRENTGOAL IS [1] +~~~ +27699703 UP 11 +27699703 1024 255 +27701657 DOWN 11 +27701657 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27701692 homeCount = 82 +27701692 waitCount = 34 +27701693 ripCount = 32 +27701693 locktype1 = 1 +27701694 locktype2 = 6 +27701694 locktype3 = 10 +27701695 goalCount = 1 +27701695 goalTotal = 21 +27701696 otherCount = 43 +~~~ +27701697 CURRENTGOAL IS [1] +~~~ +27704975 UP 7 +27704975 64 255 +~~~ +~~~ +27705020 DOWN 7 +27705020 0 255 +~~~ +~~~ +27705045 0 254 +~~~ +~~~ +27705047 0 252 +~~~ +~~~ +27705049 0 248 +~~~ +~~~ +27705051 0 240 +~~~ +~~~ +27705053 0 224 +~~~ +~~~ +27705054 0 192 +~~~ +~~~ +27705056 0 128 +~~~ +~~~ +27705058 0 0 +~~~ +~~~ +27705060 0 512 +27705061 homeCount = 82 +27705062 waitCount = 34 +27705062 ripCount = 32 +27705063 locktype1 = 1 +27705063 locktype2 = 6 +27705084 locktype3 = 10 +27705084 goalCount = 1 +27705085 goalTotal = 21 +27705085 otherCount = 44 +~~~ +27705086 64 512 +27705608 DOWN 7 +27705608 0 512 +27709885 UP 10 +27709885 waslock = 0 +27709884 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27709910 512 16777728 +~~~ +27710060 512 512 +27710125 DOWN 10 +27710125 0 512 +27710138 UP 10 +27710139 waslock = 0 +27710138 512 512 +~~~ +~~~ +27710156 512 1536 +~~~ +~~~ +27710158 512 1024 +27710159 homeCount = 83 +27710160 waitCount = 34 +27710160 ripCount = 32 +27710161 locktype1 = 1 +27710161 locktype2 = 6 +27710162 locktype3 = 10 +27710162 goalCount = 1 +27710163 goalTotal = 21 +27710163 otherCount = 44 +~~~ +~~~ +27715361 DOWN 10 +27715361 0 1024 +~~~ +~~~ +~~~ +~~~ +27715381 homeCount = 83 +27715382 waitCount = 34 +27715382 ripCount = 32 +27715383 locktype1 = 1 +27715383 locktype2 = 6 +27715384 locktype3 = 10 +27715384 goalCount = 1 +27715385 goalTotal = 21 +27715385 otherCount = 44 +~~~ +27715396 UP 10 +27715396 waslock = 0 +27715396 512 1024 +~~~ +27715460 DOWN 10 +27715460 0 1024 +~~~ +~~~ +~~~ +~~~ +27715482 homeCount = 83 +27715483 waitCount = 34 +27715483 ripCount = 32 +27715484 locktype1 = 1 +27715484 locktype2 = 6 +27715485 locktype3 = 10 +27715485 goalCount = 1 +27715486 goalTotal = 21 +27715486 otherCount = 44 +~~~ +27718462 UP 11 +27718462 1024 1024 +27725622 DOWN 11 +27725622 0 1024 +27725640 UP 11 +27725639 1024 1024 +27725962 BEEP1 +27725962 BEEP2 +~~~ +~~~ +~~~ +27725991 1024 33555456 +~~~ +27726141 1024 1024 +27732734 DOWN 11 +27732734 0 1024 +~~~ +~~~ +27732758 0 0 +~~~ +~~~ +27732760 0 1 +~~~ +~~~ +27732761 0 3 +~~~ +~~~ +27732763 0 7 +~~~ +~~~ +27732765 0 15 +~~~ +~~~ +27732767 0 31 +~~~ +~~~ +27732769 0 63 +~~~ +~~~ +27732771 0 127 +~~~ +~~~ +27732772 0 255 +27732773 homeCount = 83 +27732774 waitCount = 34 +27732774 ripCount = 33 +27732775 locktype1 = 1 +27732775 locktype2 = 6 +27732796 locktype3 = 10 +27732797 goalCount = 1 +27732797 goalTotal = 21 +27732798 otherCount = 44 +~~~ +27732799 CURRENTGOAL IS [1] +~~~ +27732799 UP 11 +27732799 1024 255 +27732846 DOWN 11 +27732846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27732883 homeCount = 83 +27732883 waitCount = 34 +27732884 ripCount = 33 +27732884 locktype1 = 1 +27732885 locktype2 = 6 +27732885 locktype3 = 10 +27732886 goalCount = 1 +27732886 goalTotal = 21 +27732887 otherCount = 44 +~~~ +27732888 CURRENTGOAL IS [1] +~~~ +27732921 UP 11 +27732921 1024 255 +27732964 DOWN 11 +27732964 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27733006 homeCount = 83 +27733006 waitCount = 34 +27733007 ripCount = 33 +27733007 locktype1 = 1 +27733008 locktype2 = 6 +27733008 locktype3 = 10 +27733009 goalCount = 1 +27733009 goalTotal = 21 +27733010 otherCount = 44 +~~~ +27733011 CURRENTGOAL IS [1] +~~~ +27740748 UP 1 +27740748 1 255 +~~~ +~~~ +27740772 outer reward +~~~ +27740772 1 65791 +~~~ +~~~ +27741222 1 255 +27751154 DOWN 1 +27751154 0 255 +~~~ +~~~ +27751180 0 254 +~~~ +~~~ +27751182 0 252 +~~~ +~~~ +27751184 0 248 +~~~ +~~~ +27751186 0 240 +~~~ +~~~ +27751188 0 224 +~~~ +~~~ +27751189 0 192 +~~~ +~~~ +27751191 0 128 +~~~ +~~~ +27751193 0 0 +~~~ +~~~ +27751195 0 512 +27751196 homeCount = 83 +27751196 waitCount = 34 +27751197 ripCount = 33 +27751197 locktype1 = 1 +27751219 locktype2 = 6 +27751219 locktype3 = 10 +27751220 goalCount = 2 +27751220 goalTotal = 22 +27751221 otherCount = 44 +~~~ +27755454 UP 10 +27755454 waslock = 0 +27755454 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27755488 512 16777728 +~~~ +27755637 512 512 +27760423 DOWN 10 +27760423 0 512 +~~~ +~~~ +27760440 0 2560 +~~~ +~~~ +27760442 0 2048 +27760443 homeCount = 84 +27760444 waitCount = 34 +27760444 ripCount = 33 +27760445 locktype1 = 1 +27760445 locktype2 = 6 +27760446 locktype3 = 10 +27760446 goalCount = 2 +27760447 goalTotal = 22 +27760447 otherCount = 44 +~~~ +27760475 UP 10 +27760475 waslock = 0 +27760475 512 2048 +~~~ +27760523 DOWN 10 +27760523 0 2048 +~~~ +~~~ +~~~ +~~~ +27760554 homeCount = 84 +27760555 waitCount = 34 +27760555 ripCount = 33 +27760556 locktype1 = 1 +27760556 locktype2 = 6 +27760557 locktype3 = 10 +27760557 goalCount = 2 +27760558 goalTotal = 22 +27760559 otherCount = 44 +~~~ +27765567 UP 12 +27765567 2048 2048 +27768756 DOWN 12 +27768756 0 2048 +27768842 UP 12 +27768842 2048 2048 +27768908 DOWN 12 +27768908 0 2048 +27769091 UP 12 +27769091 2048 2048 +27769107 DOWN 12 +27769107 0 2048 +27769128 UP 12 +27769128 2048 2048 +27771567 CLICK1 +27771567 CLICK2 +~~~ +~~~ +~~~ +27771592 2048 67110912 +~~~ +27771742 2048 2048 +27776734 DOWN 12 +27776734 0 2048 +~~~ +~~~ +27776751 0 0 +~~~ +~~~ +27776753 0 1 +~~~ +~~~ +27776754 0 3 +~~~ +~~~ +27776756 0 7 +~~~ +~~~ +27776758 0 15 +~~~ +~~~ +27776760 0 31 +~~~ +~~~ +27776762 0 63 +~~~ +~~~ +27776764 0 127 +~~~ +~~~ +27776765 UP 12 +27776765 2048 255 +27776767 homeCount = 84 +27776767 waitCount = 35 +27776768 ripCount = 33 +27776768 locktype1 = 1 +27776789 locktype2 = 6 +27776790 locktype3 = 10 +27776790 goalCount = 2 +27776791 goalTotal = 22 +27776791 otherCount = 44 +~~~ +27776792 CURRENTGOAL IS [1] +~~~ +27776832 DOWN 12 +27776832 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27776867 homeCount = 84 +27776868 waitCount = 35 +27776869 ripCount = 33 +27776869 locktype1 = 1 +27776870 locktype2 = 6 +27776870 locktype3 = 10 +27776871 goalCount = 2 +27776871 goalTotal = 22 +27776872 otherCount = 44 +~~~ +27776873 CURRENTGOAL IS [1] +~~~ +27789324 UP 1 +27789324 1 255 +~~~ +~~~ +27789343 outer reward +~~~ +27789344 1 65791 +~~~ +~~~ +27789793 1 255 +27798609 DOWN 1 +27798609 0 255 +~~~ +~~~ +27798631 0 254 +~~~ +~~~ +27798633 0 252 +~~~ +~~~ +27798635 0 248 +~~~ +~~~ +27798637 0 240 +~~~ +~~~ +27798638 0 224 +~~~ +~~~ +27798640 0 192 +~~~ +~~~ +27798642 0 128 +~~~ +~~~ +27798644 0 0 +~~~ +~~~ +27798646 0 512 +27798647 homeCount = 84 +27798647 waitCount = 35 +27798648 ripCount = 33 +27798648 locktype1 = 1 +27798649 locktype2 = 6 +27798670 locktype3 = 10 +27798670 goalCount = 3 +27798671 goalTotal = 23 +27798671 otherCount = 44 +~~~ +27805587 UP 10 +27805587 waslock = 0 +27805587 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27805621 512 16777728 +~~~ +27805771 512 512 +27805806 DOWN 10 +27805806 0 512 +~~~ +27805822 UP 10 +27805822 waslock = 0 +27805822 512 512 +~~~ +~~~ +~~~ +27805825 512 2048 +27805826 homeCount = 85 +27805826 waitCount = 35 +27805827 ripCount = 33 +27805827 locktype1 = 1 +27805828 locktype2 = 6 +27805828 locktype3 = 10 +27805829 goalCount = 3 +27805849 goalTotal = 23 +27805850 otherCount = 44 +~~~ +~~~ +27811079 DOWN 10 +27811078 0 2048 +~~~ +~~~ +~~~ +~~~ +27811106 homeCount = 85 +27811107 waitCount = 35 +27811107 ripCount = 33 +27811108 locktype1 = 1 +27811108 locktype2 = 6 +27811109 locktype3 = 10 +27811109 goalCount = 3 +27811110 goalTotal = 23 +27811110 otherCount = 44 +~~~ +27811131 UP 10 +27811132 waslock = 0 +27811131 512 2048 +~~~ +27811175 DOWN 10 +27811175 0 2048 +~~~ +~~~ +~~~ +~~~ +27811202 homeCount = 85 +27811202 waitCount = 35 +27811203 ripCount = 33 +27811203 locktype1 = 1 +27811204 locktype2 = 6 +27811204 locktype3 = 10 +27811205 goalCount = 3 +27811205 goalTotal = 23 +27811206 otherCount = 44 +~~~ +27813456 UP 12 +27813456 2048 2048 +27815579 DOWN 12 +27815579 0 2048 +27815618 UP 12 +27815618 2048 2048 +27818639 DOWN 12 +27818639 0 2048 +27818723 UP 12 +27818723 2048 2048 +27821456 CLICK1 +27821456 CLICK2 +~~~ +~~~ +~~~ +27821480 2048 67110912 +~~~ +27821630 2048 2048 +27830770 DOWN 12 +27830770 0 2048 +~~~ +~~~ +27830788 0 0 +~~~ +~~~ +27830790 0 1 +~~~ +~~~ +27830792 0 3 +~~~ +~~~ +27830794 0 7 +~~~ +~~~ +27830796 0 15 +~~~ +~~~ +27830797 0 31 +~~~ +~~~ +27830799 0 63 +~~~ +~~~ +27830801 0 127 +~~~ +~~~ +27830803 0 255 +27830804 homeCount = 85 +27830805 waitCount = 36 +27830805 ripCount = 33 +27830806 locktype1 = 1 +27830806 locktype2 = 6 +27830827 locktype3 = 10 +27830828 goalCount = 3 +27830828 goalTotal = 23 +27830829 otherCount = 44 +~~~ +27830830 CURRENTGOAL IS [1] +~~~ +27836086 UP 1 +27836086 1 255 +~~~ +~~~ +27836109 outer reward +~~~ +27836110 1 65791 +~~~ +~~~ +27836346 DOWN 1 +27836346 0 65791 +~~~ +~~~ +27836368 0 65790 +~~~ +~~~ +27836369 0 65788 +~~~ +~~~ +27836371 0 65784 +~~~ +~~~ +27836373 0 65776 +~~~ +~~~ +27836375 0 65760 +~~~ +27836376 1 65760 +~~~ +~~~ +27836378 1 65728 +~~~ +27836379 1 65664 +~~~ +~~~ +27836381 1 65536 +~~~ +~~~ +27836382 1 66048 +27836383 homeCount = 85 +27836384 waitCount = 36 +27836405 ripCount = 33 +27836405 locktype1 = 1 +27836406 locktype2 = 6 +27836406 locktype3 = 10 +27836407 goalCount = 4 +27836407 goalTotal = 24 +27836408 otherCount = 44 +~~~ +27836559 1 512 +27845893 DOWN 1 +27845893 0 512 +27845965 1 512 +27846024 DOWN 1 +27846024 0 512 +27846085 1 512 +27846137 DOWN 1 +27846137 0 512 +27850834 UP 10 +27850834 waslock = 0 +27850834 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27850864 512 16777728 +~~~ +27851011 DOWN 10 +27851010 0 16777728 +27851014 0 512 +~~~ +~~~ +27851029 0 1536 +~~~ +~~~ +27851031 0 1024 +27851032 homeCount = 86 +27851033 waitCount = 36 +27851033 ripCount = 33 +27851034 locktype1 = 1 +27851034 locktype2 = 6 +27851035 locktype3 = 10 +27851035 goalCount = 4 +27851036 goalTotal = 24 +27851036 otherCount = 44 +~~~ +27851057 UP 10 +27851058 waslock = 0 +27851057 512 1024 +~~~ +27853817 DOWN 10 +27853817 0 1024 +~~~ +~~~ +~~~ +~~~ +27853841 homeCount = 86 +27853841 waitCount = 36 +27853842 ripCount = 33 +27853842 locktype1 = 1 +27853843 locktype2 = 6 +27853843 locktype3 = 10 +27853844 goalCount = 4 +27853844 goalTotal = 24 +27853845 otherCount = 44 +~~~ +27856740 UP 11 +27856740 1024 1024 +27860921 DOWN 11 +27860921 0 1024 +27860925 UP 11 +27860925 1024 1024 +27864241 BEEP1 +27864241 BEEP2 +~~~ +~~~ +~~~ +27864260 1024 33555456 +~~~ +27864410 1024 1024 +27870387 DOWN 11 +27870387 0 1024 +27870394 UP 11 +27870394 1024 1024 +~~~ +~~~ +27870408 1024 0 +~~~ +~~~ +27870410 1024 1 +~~~ +~~~ +27870412 1024 3 +~~~ +~~~ +27870413 1024 7 +~~~ +~~~ +27870415 1024 15 +~~~ +~~~ +27870417 1024 31 +~~~ +~~~ +27870419 1024 63 +~~~ +~~~ +27870421 1024 127 +~~~ +~~~ +27870423 1024 255 +27870424 homeCount = 86 +27870424 waitCount = 36 +27870425 ripCount = 34 +27870425 locktype1 = 1 +27870446 locktype2 = 6 +27870447 locktype3 = 10 +27870447 goalCount = 4 +27870448 goalTotal = 24 +27870448 otherCount = 44 +~~~ +27870450 CURRENTGOAL IS [1] +~~~ +27872522 DOWN 11 +27872522 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872551 UP 11 +27872551 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872557 homeCount = 86 +27872557 waitCount = 36 +27872558 ripCount = 34 +27872559 locktype1 = 1 +27872559 locktype2 = 6 +27872560 locktype3 = 10 +27872560 goalCount = 4 +27872561 goalTotal = 24 +27872561 otherCount = 44 +~~~ +27872562 CURRENTGOAL IS [1] +~~~ +27872619 DOWN 11 +27872619 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872660 homeCount = 86 +27872661 waitCount = 36 +27872661 ripCount = 34 +27872662 locktype1 = 1 +27872662 locktype2 = 6 +27872663 locktype3 = 10 +27872663 goalCount = 4 +27872664 goalTotal = 24 +27872664 otherCount = 44 +~~~ +27872666 CURRENTGOAL IS [1] +~~~ +27877231 UP 1 +27877231 1 255 +~~~ +~~~ +27877255 outer reward +~~~ +27877255 1 65791 +~~~ +~~~ +27877705 1 255 +27886848 DOWN 1 +27886848 0 255 +~~~ +~~~ +27886873 0 254 +~~~ +~~~ +27886875 0 252 +~~~ +~~~ +27886877 0 248 +~~~ +~~~ +27886879 0 240 +~~~ +~~~ +27886880 0 224 +~~~ +~~~ +27886882 0 192 +~~~ +~~~ +27886884 0 128 +~~~ +~~~ +27886886 0 0 +~~~ +~~~ +27886888 0 512 +27886889 homeCount = 86 +27886889 waitCount = 36 +27886890 ripCount = 34 +27886890 locktype1 = 1 +27886911 locktype2 = 6 +27886912 locktype3 = 10 +27886912 goalCount = 5 +27886913 goalTotal = 25 +27886913 otherCount = 44 +~~~ +27886914 1 512 +27888622 DOWN 1 +27888622 0 512 +27888710 1 512 +27888740 DOWN 1 +27888740 0 512 +27893642 UP 10 +27893642 waslock = 0 +27893642 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27893669 512 16777728 +~~~ +27893815 DOWN 10 +27893815 0 16777728 +27893819 0 512 +~~~ +~~~ +27893834 0 1536 +~~~ +~~~ +27893836 0 1024 +27893837 homeCount = 87 +27893837 waitCount = 36 +27893838 ripCount = 34 +27893838 locktype1 = 1 +27893839 locktype2 = 6 +27893839 locktype3 = 10 +27893840 goalCount = 5 +27893840 goalTotal = 25 +27893841 otherCount = 44 +~~~ +27893862 UP 10 +27893862 waslock = 0 +27893862 512 1024 +~~~ +27899216 DOWN 10 +27899216 0 1024 +~~~ +~~~ +~~~ +~~~ +27899236 homeCount = 87 +27899237 waitCount = 36 +27899238 ripCount = 34 +27899238 locktype1 = 1 +27899239 locktype2 = 6 +27899239 locktype3 = 10 +27899240 goalCount = 5 +27899240 goalTotal = 25 +27899241 otherCount = 44 +~~~ +27899293 UP 10 +27899294 waslock = 0 +27899293 512 1024 +~~~ +27899323 DOWN 10 +27899323 0 1024 +~~~ +~~~ +~~~ +~~~ +27899339 homeCount = 87 +27899340 waitCount = 36 +27899340 ripCount = 34 +27899341 locktype1 = 1 +27899341 locktype2 = 6 +27899342 locktype3 = 10 +27899342 goalCount = 5 +27899343 goalTotal = 25 +27899343 otherCount = 44 +~~~ +27902072 UP 11 +27902072 1024 1024 +27905909 DOWN 11 +27905909 0 1024 +27905926 UP 11 +27905926 1024 1024 +27911073 BEEP1 +27911073 BEEP2 +~~~ +~~~ +~~~ +27911096 1024 33555456 +~~~ +27911190 DOWN 11 +27911190 0 33555456 +27911215 UP 11 +27911215 1024 33555456 +27911245 1024 1024 +~~~ +~~~ +27911764 1024 0 +~~~ +~~~ +27911766 1024 1 +~~~ +~~~ +27911768 1024 3 +~~~ +~~~ +27911770 1024 7 +~~~ +~~~ +27911771 1024 15 +~~~ +~~~ +27911773 1024 31 +~~~ +~~~ +27911775 1024 63 +~~~ +~~~ +27911777 1024 127 +~~~ +~~~ +27911779 1024 255 +27911780 homeCount = 87 +27911780 waitCount = 36 +27911781 ripCount = 35 +27911781 locktype1 = 1 +27911803 locktype2 = 6 +27911803 locktype3 = 10 +27911804 goalCount = 5 +27911804 goalTotal = 25 +27911805 otherCount = 44 +~~~ +27911806 CURRENTGOAL IS [1] +~~~ +27918132 DOWN 11 +27918132 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27918170 homeCount = 87 +27918171 waitCount = 36 +27918171 ripCount = 35 +27918172 locktype1 = 1 +27918172 locktype2 = 6 +27918173 locktype3 = 10 +27918173 goalCount = 5 +27918174 goalTotal = 25 +27918174 otherCount = 44 +~~~ +27918175 CURRENTGOAL IS [1] +~~~ +27918197 UP 11 +27918197 1024 255 +27920410 DOWN 11 +27920410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27920453 homeCount = 87 +27920453 waitCount = 36 +27920454 ripCount = 35 +27920454 locktype1 = 1 +27920455 locktype2 = 6 +27920455 locktype3 = 10 +27920456 goalCount = 5 +27920456 goalTotal = 25 +27920457 otherCount = 44 +~~~ +27920458 CURRENTGOAL IS [1] +~~~ +27920480 UP 11 +27920479 1024 255 +27920515 DOWN 11 +27920515 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27920551 homeCount = 87 +27920552 waitCount = 36 +27920552 ripCount = 35 +27920553 locktype1 = 1 +27920553 locktype2 = 6 +27920554 locktype3 = 10 +27920554 goalCount = 5 +27920555 goalTotal = 25 +27920555 otherCount = 44 +~~~ +27920556 CURRENTGOAL IS [1] +~~~ +27925246 UP 1 +27925246 1 255 +~~~ +~~~ +27925268 outer reward +~~~ +27925268 1 65791 +~~~ +~~~ +27925717 1 255 +27936444 DOWN 1 +27936444 0 255 +~~~ +~~~ +27936465 0 254 +~~~ +~~~ +27936467 0 252 +~~~ +~~~ +27936469 0 248 +~~~ +~~~ +27936471 0 240 +~~~ +~~~ +27936472 0 224 +~~~ +~~~ +27936474 0 192 +~~~ +~~~ +27936476 0 128 +~~~ +~~~ +27936478 0 0 +~~~ +~~~ +27936480 0 512 +27936481 homeCount = 87 +27936481 waitCount = 36 +27936482 ripCount = 35 +27936482 locktype1 = 1 +27936503 locktype2 = 6 +27936504 locktype3 = 10 +27936504 goalCount = 6 +27936505 goalTotal = 26 +27936505 otherCount = 44 +~~~ +27936515 1 512 +27936544 DOWN 1 +27936544 0 512 +27942299 UP 10 +27942299 waslock = 0 +27942299 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27942333 512 16777728 +~~~ +27942483 512 512 +27942510 DOWN 10 +27942510 0 512 +~~~ +~~~ +27942536 0 1536 +~~~ +~~~ +27942538 0 1024 +27942539 homeCount = 88 +27942540 waitCount = 36 +27942540 ripCount = 35 +27942541 locktype1 = 1 +27942541 locktype2 = 6 +27942542 locktype3 = 10 +27942542 goalCount = 6 +27942543 goalTotal = 26 +27942543 otherCount = 44 +~~~ +27942565 UP 10 +27942565 waslock = 0 +27942565 512 1024 +~~~ +27945190 DOWN 10 +27945190 0 1024 +~~~ +~~~ +~~~ +~~~ +27945220 homeCount = 88 +27945221 waitCount = 36 +27945221 ripCount = 35 +27945222 locktype1 = 1 +27945222 locktype2 = 6 +27945223 locktype3 = 10 +27945223 goalCount = 6 +27945224 goalTotal = 26 +27945224 otherCount = 44 +~~~ +27945226 UP 10 +27945226 waslock = 0 +27945226 512 1024 +~~~ +27945285 DOWN 10 +27945285 0 1024 +~~~ +~~~ +~~~ +~~~ +27945311 homeCount = 88 +27945311 waitCount = 36 +27945312 ripCount = 35 +27945312 locktype1 = 1 +27945313 locktype2 = 6 +27945313 locktype3 = 10 +27945314 goalCount = 6 +27945314 goalTotal = 26 +27945315 otherCount = 44 +~~~ +27947700 UP 11 +27947700 1024 1024 +27951200 BEEP1 +27951200 BEEP2 +~~~ +~~~ +~~~ +27951222 1024 33555456 +~~~ +27951371 1024 1024 +27957662 DOWN 11 +27957662 0 1024 +27957672 UP 11 +27957672 1024 1024 +~~~ +~~~ +27957680 1024 0 +~~~ +~~~ +27957681 1024 1 +~~~ +~~~ +27957683 1024 3 +~~~ +~~~ +27957685 1024 7 +~~~ +~~~ +27957687 1024 15 +~~~ +~~~ +27957689 1024 31 +~~~ +~~~ +27957691 1024 63 +~~~ +~~~ +27957692 1024 127 +~~~ +~~~ +27957694 1024 255 +27957695 homeCount = 88 +27957696 waitCount = 36 +27957696 ripCount = 36 +27957718 locktype1 = 1 +27957718 locktype2 = 6 +27957719 locktype3 = 10 +27957719 goalCount = 6 +27957720 goalTotal = 26 +27957720 otherCount = 44 +~~~ +27957721 CURRENTGOAL IS [1] +~~~ +27957739 DOWN 11 +27957739 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27957767 UP 11 +27957767 1024 255 +~~~ +27957769 homeCount = 88 +27957769 waitCount = 36 +27957770 ripCount = 36 +27957770 locktype1 = 1 +27957771 locktype2 = 6 +27957771 locktype3 = 10 +27957772 goalCount = 6 +27957772 goalTotal = 26 +27957773 otherCount = 44 +~~~ +27957795 CURRENTGOAL IS [1] +~~~ +27959629 DOWN 11 +27959629 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27959667 homeCount = 88 +27959667 waitCount = 36 +27959668 ripCount = 36 +27959669 locktype1 = 1 +27959669 locktype2 = 6 +27959670 locktype3 = 10 +27959670 goalCount = 6 +27959671 goalTotal = 26 +27959671 otherCount = 44 +~~~ +27959672 CURRENTGOAL IS [1] +~~~ +27963580 UP 1 +27963580 1 255 +~~~ +~~~ +27963607 outer reward +~~~ +27963607 1 65791 +~~~ +~~~ +27964057 1 255 +27975016 DOWN 1 +27975016 0 255 +~~~ +~~~ +27975037 0 254 +~~~ +~~~ +27975039 0 252 +~~~ +~~~ +27975041 0 248 +~~~ +~~~ +27975043 0 240 +~~~ +~~~ +27975045 0 224 +~~~ +~~~ +27975046 0 192 +~~~ +~~~ +27975048 0 128 +~~~ +~~~ +27975050 0 0 +~~~ +~~~ +27975052 0 512 +27975053 homeCount = 88 +27975053 waitCount = 36 +27975054 ripCount = 36 +27975054 locktype1 = 1 +27975055 locktype2 = 6 +27975076 locktype3 = 10 +27975076 goalCount = 7 +27975077 goalTotal = 27 +27975077 otherCount = 44 +~~~ +27975084 1 512 +27975144 DOWN 1 +27975144 0 512 +27980896 UP 10 +27980896 waslock = 0 +27980896 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27980921 512 16777728 +~~~ +27980997 DOWN 10 +27980997 0 16777728 +~~~ +~~~ +27981015 0 16778752 +~~~ +~~~ +27981017 0 16778240 +27981018 homeCount = 89 +27981018 waitCount = 36 +27981019 ripCount = 36 +27981019 locktype1 = 1 +27981020 locktype2 = 6 +27981020 locktype3 = 10 +27981021 goalCount = 7 +27981021 goalTotal = 27 +27981022 otherCount = 44 +~~~ +27981043 UP 10 +27981043 waslock = 0 +27981043 512 16778240 +~~~ +27981071 512 1024 +27987553 DOWN 10 +27987553 0 1024 +~~~ +~~~ +~~~ +~~~ +27987580 homeCount = 89 +27987580 waitCount = 36 +27987581 ripCount = 36 +27987581 locktype1 = 1 +27987582 locktype2 = 6 +27987582 locktype3 = 10 +27987583 goalCount = 7 +27987583 goalTotal = 27 +27987584 otherCount = 44 +~~~ +27989439 UP 11 +27989439 1024 1024 +27992292 DOWN 11 +27992292 0 1024 +27992302 UP 11 +27992302 1024 1024 +27997439 BEEP1 +27997439 BEEP2 +~~~ +~~~ +~~~ +27997459 1024 33555456 +~~~ +27997609 1024 1024 +28004157 DOWN 11 +28004157 0 1024 +~~~ +~~~ +28004178 0 0 +~~~ +~~~ +28004180 0 1 +~~~ +~~~ +28004182 0 3 +~~~ +~~~ +28004184 0 7 +~~~ +~~~ +28004185 0 15 +~~~ +~~~ +28004187 0 31 +~~~ +~~~ +28004189 0 63 +~~~ +~~~ +28004191 0 127 +~~~ +~~~ +28004193 0 255 +28004194 homeCount = 89 +28004194 waitCount = 36 +28004195 ripCount = 37 +28004195 locktype1 = 1 +28004196 locktype2 = 6 +28004217 locktype3 = 10 +28004218 goalCount = 7 +28004218 goalTotal = 27 +28004219 otherCount = 44 +~~~ +28004220 CURRENTGOAL IS [1] +~~~ +28008115 UP 1 +28008115 1 255 +~~~ +~~~ +28008134 outer reward +~~~ +28008134 1 65791 +~~~ +~~~ +28008353 DOWN 1 +28008353 0 65791 +28008370 1 65791 +~~~ +~~~ +28008372 1 65790 +~~~ +~~~ +28008374 1 65788 +~~~ +~~~ +28008376 1 65784 +~~~ +~~~ +28008378 1 65776 +~~~ +~~~ +28008380 1 65760 +~~~ +~~~ +28008382 1 65728 +~~~ +~~~ +28008383 1 65664 +~~~ +~~~ +28008385 1 65536 +~~~ +~~~ +28008387 1 66048 +28008388 homeCount = 89 +28008389 waitCount = 36 +28008389 ripCount = 37 +28008410 locktype1 = 1 +28008410 locktype2 = 6 +28008411 locktype3 = 10 +28008411 goalCount = 8 +28008412 goalTotal = 28 +28008412 otherCount = 44 +~~~ +28008584 1 512 +28018306 DOWN 1 +28018306 0 512 +28018329 1 512 +28018420 DOWN 1 +28018420 0 512 +28018472 1 512 +28019511 DOWN 1 +28019511 0 512 +28019538 1 512 +28019606 DOWN 1 +28019606 0 512 +28026274 UP 10 +28026274 waslock = 0 +28026274 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28026301 512 16777728 +~~~ +28026429 DOWN 10 +28026429 0 16777728 +28026451 0 512 +~~~ +~~~ +28026456 0 1536 +~~~ +~~~ +28026457 0 1024 +28026458 homeCount = 90 +28026459 waitCount = 36 +28026460 ripCount = 37 +28026460 locktype1 = 1 +28026461 locktype2 = 6 +28026461 locktype3 = 10 +28026462 goalCount = 8 +28026462 goalTotal = 28 +28026463 otherCount = 44 +~~~ +28026642 UP 10 +28026643 waslock = 0 +28026642 512 1024 +~~~ +28026762 DOWN 10 +28026762 0 1024 +28026776 UP 10 +28026777 waslock = 0 +28026776 512 1024 +~~~ +~~~ +~~~ +~~~ +28026799 homeCount = 90 +28026799 waitCount = 36 +28026800 ripCount = 37 +28026800 locktype1 = 1 +28026801 locktype2 = 6 +28026801 locktype3 = 10 +28026802 goalCount = 8 +28026802 goalTotal = 28 +28026803 otherCount = 44 +~~~ +~~~ +28031965 DOWN 10 +28031965 0 1024 +~~~ +~~~ +~~~ +~~~ +28031988 homeCount = 90 +28031988 waitCount = 36 +28031989 ripCount = 37 +28031989 locktype1 = 1 +28031990 locktype2 = 6 +28031990 locktype3 = 10 +28031991 goalCount = 8 +28031991 goalTotal = 28 +28031992 otherCount = 44 +~~~ +28033822 UP 11 +28033822 1024 1024 +28036822 BEEP1 +28036822 BEEP2 +~~~ +~~~ +~~~ +28036845 1024 33555456 +~~~ +28036995 1024 1024 +28042883 DOWN 11 +28042883 0 1024 +~~~ +~~~ +28042903 0 0 +~~~ +~~~ +28042905 0 1 +~~~ +28042907 UP 11 +28042907 1024 1 +~~~ +~~~ +28042909 1024 3 +~~~ +~~~ +28042910 1024 7 +~~~ +~~~ +28042912 1024 15 +~~~ +28042913 1024 31 +~~~ +~~~ +28042914 1024 63 +~~~ +~~~ +28042916 1024 127 +~~~ +~~~ +28042918 1024 255 +28042919 homeCount = 90 +28042940 waitCount = 36 +28042941 ripCount = 38 +28042941 locktype1 = 1 +28042942 locktype2 = 6 +28042942 locktype3 = 10 +28042943 goalCount = 8 +28042943 goalTotal = 28 +28042944 otherCount = 44 +~~~ +28042945 CURRENTGOAL IS [1] +~~~ +28046203 DOWN 11 +28046203 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28046238 homeCount = 90 +28046239 waitCount = 36 +28046239 ripCount = 38 +28046240 locktype1 = 1 +28046240 locktype2 = 6 +28046241 locktype3 = 10 +28046241 goalCount = 8 +28046242 goalTotal = 28 +28046242 otherCount = 44 +~~~ +28046243 CURRENTGOAL IS [1] +~~~ +28050087 UP 1 +28050087 1 255 +~~~ +~~~ +28050115 outer reward +~~~ +28050116 1 65791 +~~~ +~~~ +28050301 DOWN 1 +28050301 0 65791 +~~~ +~~~ +28050323 0 65790 +~~~ +~~~ +28050325 0 65788 +~~~ +~~~ +28050326 0 65784 +~~~ +~~~ +28050328 0 65776 +~~~ +~~~ +28050330 0 65760 +~~~ +~~~ +28050332 0 65728 +~~~ +~~~ +28050334 0 65664 +~~~ +28050335 1 65664 +~~~ +~~~ +28050337 1 65536 +~~~ +28050338 1 66048 +28050339 homeCount = 90 +28050340 waitCount = 36 +28050361 ripCount = 38 +28050361 locktype1 = 1 +28050362 locktype2 = 6 +28050362 locktype3 = 10 +28050363 goalCount = 9 +28050363 goalTotal = 29 +28050364 otherCount = 44 +~~~ +28050565 1 512 +28059860 DOWN 1 +28059860 0 512 +28064424 UP 10 +28064425 waslock = 0 +28064424 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28064452 512 16777728 +~~~ +28064602 512 512 +28068806 DOWN 10 +28068806 0 512 +~~~ +~~~ +28068826 0 2560 +~~~ +~~~ +28068828 0 2048 +28068829 homeCount = 91 +28068829 waitCount = 36 +28068830 ripCount = 38 +28068830 locktype1 = 1 +28068831 locktype2 = 6 +28068831 locktype3 = 10 +28068832 goalCount = 9 +28068832 goalTotal = 29 +28068833 otherCount = 44 +~~~ +28068854 UP 10 +28068854 waslock = 0 +28068853 512 2048 +28068875 DOWN 10 +28068875 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28068899 homeCount = 91 +28068899 waitCount = 36 +28068900 ripCount = 38 +28068900 locktype1 = 1 +28068901 locktype2 = 6 +28068901 locktype3 = 10 +28068902 goalCount = 9 +28068902 goalTotal = 29 +28068903 otherCount = 44 +~~~ +28071033 UP 12 +28071033 2048 2048 +28071048 DOWN 12 +28071048 0 2048 +28071231 UP 12 +28071231 2048 2048 +28071271 DOWN 12 +28071271 0 2048 +28071314 UP 12 +28071314 2048 2048 +28074234 DOWN 12 +28074234 0 2048 +28074316 UP 12 +28074316 2048 2048 +28078155 DOWN 12 +28078155 0 2048 +28078237 UP 12 +28078237 2048 2048 +28079033 CLICK1 +28079033 CLICK2 +~~~ +~~~ +~~~ +28079058 2048 67110912 +~~~ +28079208 2048 2048 +28086231 DOWN 12 +28086231 0 2048 +~~~ +~~~ +28086256 0 0 +~~~ +~~~ +28086258 0 1 +~~~ +28086259 UP 12 +28086259 2048 1 +~~~ +~~~ +28086261 2048 3 +~~~ +~~~ +28086262 2048 7 +~~~ +28086263 2048 15 +~~~ +~~~ +28086265 2048 31 +~~~ +~~~ +28086267 2048 63 +~~~ +~~~ +28086268 2048 127 +~~~ +~~~ +28086270 2048 255 +28086271 homeCount = 91 +28086292 waitCount = 37 +28086293 ripCount = 38 +28086293 locktype1 = 1 +28086294 locktype2 = 6 +28086294 locktype3 = 10 +28086295 goalCount = 9 +28086295 goalTotal = 29 +28086296 otherCount = 44 +~~~ +28086297 CURRENTGOAL IS [1] +~~~ +28086333 DOWN 12 +28086333 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28086372 homeCount = 91 +28086372 waitCount = 37 +28086373 ripCount = 38 +28086374 locktype1 = 1 +28086374 locktype2 = 6 +28086375 locktype3 = 10 +28086375 goalCount = 9 +28086376 goalTotal = 29 +28086376 otherCount = 44 +~~~ +28086377 CURRENTGOAL IS [1] +~~~ +28089464 UP 1 +28089464 1 255 +~~~ +~~~ +28089492 outer reward +~~~ +28089492 1 65791 +~~~ +~~~ +28089497 outerreps = 4 +~~~ +~~~ +28089754 DOWN 1 +28089754 0 65791 +~~~ +~~~ +28089778 0 65790 +~~~ +~~~ +28089780 0 65788 +~~~ +~~~ +28089782 0 65784 +~~~ +~~~ +28089784 0 65776 +~~~ +28089785 1 65776 +~~~ +~~~ +28089787 1 65760 +~~~ +28089788 1 65728 +~~~ +~~~ +28089789 1 65664 +~~~ +~~~ +28089791 1 65536 +~~~ +~~~ +28089793 1 66048 +28089794 homeCount = 91 +28089794 waitCount = 37 +28089815 ripCount = 38 +28089815 locktype1 = 1 +28089816 locktype2 = 6 +28089816 locktype3 = 10 +28089817 goalCount = 0 +28089817 goalTotal = 30 +28089818 otherCount = 44 +~~~ +28089942 1 512 +28099533 DOWN 1 +28099533 0 512 +28099580 1 512 +28099664 DOWN 1 +28099664 0 512 +28103844 UP 10 +28103844 waslock = 0 +28103844 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28103875 512 16777728 +~~~ +28104025 512 512 +28104040 DOWN 10 +28104040 0 512 +28104053 UP 10 +28104053 waslock = 0 +28104053 512 512 +~~~ +~~~ +28104060 512 1536 +~~~ +~~~ +28104062 512 1024 +28104063 homeCount = 92 +28104063 waitCount = 37 +28104064 ripCount = 38 +28104064 locktype1 = 1 +28104065 locktype2 = 6 +28104065 locktype3 = 10 +28104066 goalCount = 0 +28104066 goalTotal = 30 +28104067 otherCount = 44 +~~~ +~~~ +28104223 DOWN 10 +28104223 0 1024 +28104230 UP 10 +28104231 waslock = 0 +28104230 512 1024 +~~~ +~~~ +~~~ +~~~ +28104246 homeCount = 92 +28104246 waitCount = 37 +28104247 ripCount = 38 +28104247 locktype1 = 1 +28104248 locktype2 = 6 +28104249 locktype3 = 10 +28104249 goalCount = 0 +28104250 goalTotal = 30 +28104250 otherCount = 44 +~~~ +~~~ +28107687 DOWN 10 +28107687 0 1024 +~~~ +~~~ +~~~ +~~~ +28107717 homeCount = 92 +28107718 waitCount = 37 +28107718 ripCount = 38 +28107719 locktype1 = 1 +28107719 locktype2 = 6 +28107720 locktype3 = 10 +28107720 goalCount = 0 +28107721 goalTotal = 30 +28107721 otherCount = 44 +~~~ +28107757 UP 10 +28107757 waslock = 0 +28107757 512 1024 +28107772 DOWN 10 +28107772 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28107791 homeCount = 92 +28107792 waitCount = 37 +28107793 ripCount = 38 +28107793 locktype1 = 1 +28107794 locktype2 = 6 +28107794 locktype3 = 10 +28107795 goalCount = 0 +28107795 goalTotal = 30 +28107796 otherCount = 44 +~~~ +28110492 UP 11 +28110492 1024 1024 +28113993 BEEP1 +28113993 BEEP2 +~~~ +~~~ +~~~ +28114015 1024 33555456 +~~~ +28114165 1024 1024 +28114440 DOWN 11 +28114440 0 1024 +28114465 UP 11 +28114465 1024 1024 +~~~ +~~~ +28114682 1024 0 +~~~ +~~~ +28114684 1024 1 +~~~ +~~~ +28114686 1024 3 +~~~ +~~~ +28114688 1024 7 +~~~ +~~~ +28114689 1024 15 +~~~ +~~~ +28114691 1024 31 +~~~ +~~~ +28114693 1024 63 +~~~ +~~~ +28114695 1024 127 +~~~ +~~~ +28114697 1024 255 +28114698 homeCount = 92 +28114698 waitCount = 37 +28114699 ripCount = 39 +28114720 locktype1 = 1 +28114721 locktype2 = 6 +28114721 locktype3 = 10 +28114722 goalCount = 0 +28114722 goalTotal = 30 +28114723 otherCount = 44 +~~~ +28114724 CURRENTGOAL IS [7] +~~~ +28123147 DOWN 11 +28123147 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28123189 homeCount = 92 +28123189 waitCount = 37 +28123190 ripCount = 39 +28123191 locktype1 = 1 +28123191 locktype2 = 6 +28123192 locktype3 = 10 +28123192 goalCount = 0 +28123193 goalTotal = 30 +28123193 otherCount = 44 +~~~ +28123194 CURRENTGOAL IS [7] +~~~ +28123265 UP 11 +28123265 1024 255 +28123279 DOWN 11 +28123279 0 255 +28123296 UP 11 +28123296 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28123312 homeCount = 92 +28123313 waitCount = 37 +28123313 ripCount = 39 +28123314 locktype1 = 1 +28123315 locktype2 = 6 +28123315 locktype3 = 10 +28123316 goalCount = 0 +28123316 goalTotal = 30 +28123317 otherCount = 44 +~~~ +28123318 CURRENTGOAL IS [7] +~~~ +28125461 DOWN 11 +28125461 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28125501 homeCount = 92 +28125502 waitCount = 37 +28125502 ripCount = 39 +28125503 locktype1 = 1 +28125503 locktype2 = 6 +28125504 locktype3 = 10 +28125504 goalCount = 0 +28125505 goalTotal = 30 +28125505 otherCount = 44 +~~~ +28125506 CURRENTGOAL IS [7] +~~~ +28129280 UP 1 +28129280 1 255 +~~~ +~~~ +28129542 DOWN 1 +28129542 0 255 +~~~ +~~~ +28129565 0 254 +~~~ +~~~ +28129567 0 252 +~~~ +28129569 1 252 +~~~ +~~~ +28129570 1 248 +~~~ +28129571 1 240 +~~~ +~~~ +28129573 1 224 +~~~ +~~~ +28129575 1 192 +~~~ +~~~ +28129576 1 128 +~~~ +~~~ +28129578 1 0 +~~~ +~~~ +28129580 1 512 +28129581 homeCount = 92 +28129582 waitCount = 37 +28129582 ripCount = 39 +28129603 locktype1 = 1 +28129604 locktype2 = 6 +28129604 locktype3 = 10 +28129605 goalCount = 0 +28129605 goalTotal = 30 +28129606 otherCount = 45 +~~~ +28132434 DOWN 1 +28132434 0 512 +28135996 UP 10 +28135996 waslock = 0 +28135996 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28136023 512 16777728 +~~~ +28136173 512 512 +28136193 DOWN 10 +28136193 0 512 +~~~ +~~~ +28136216 0 1536 +~~~ +~~~ +28136218 0 1024 +28136219 homeCount = 93 +28136220 waitCount = 37 +28136220 ripCount = 39 +28136221 locktype1 = 1 +28136221 locktype2 = 6 +28136222 locktype3 = 10 +28136222 goalCount = 0 +28136223 goalTotal = 30 +28136223 otherCount = 45 +~~~ +28136245 UP 10 +28136245 waslock = 0 +28136245 512 1024 +~~~ +28138668 DOWN 10 +28138668 0 1024 +~~~ +~~~ +~~~ +~~~ +28138688 homeCount = 93 +28138688 waitCount = 37 +28138689 ripCount = 39 +28138689 locktype1 = 1 +28138690 locktype2 = 6 +28138690 locktype3 = 10 +28138691 goalCount = 0 +28138691 goalTotal = 30 +28138692 otherCount = 45 +~~~ +28138714 UP 10 +28138714 waslock = 0 +28138714 512 1024 +~~~ +28138749 DOWN 10 +28138748 0 1024 +~~~ +~~~ +~~~ +~~~ +28138770 homeCount = 93 +28138770 waitCount = 37 +28138771 ripCount = 39 +28138771 locktype1 = 1 +28138772 locktype2 = 6 +28138772 locktype3 = 10 +28138773 goalCount = 0 +28138773 goalTotal = 30 +28138774 otherCount = 45 +~~~ +28140396 UP 11 +28140396 1024 1024 +28143396 BEEP1 +28143396 BEEP2 +~~~ +~~~ +~~~ +28143421 1024 33555456 +~~~ +28143571 1024 1024 +28150234 DOWN 11 +28150234 0 1024 +~~~ +~~~ +28150260 0 0 +~~~ +~~~ +28150262 0 1 +~~~ +~~~ +28150264 0 3 +~~~ +~~~ +28150265 0 7 +~~~ +~~~ +28150267 0 15 +~~~ +~~~ +28150269 0 31 +~~~ +~~~ +28150271 0 63 +~~~ +~~~ +28150273 0 127 +~~~ +~~~ +28150275 0 255 +28150276 homeCount = 93 +28150276 waitCount = 37 +28150277 ripCount = 40 +28150277 locktype1 = 1 +28150278 locktype2 = 6 +28150299 locktype3 = 10 +28150299 goalCount = 0 +28150300 goalTotal = 30 +28150300 otherCount = 45 +~~~ +28150301 CURRENTGOAL IS [7] +~~~ +28150330 UP 11 +28150330 1024 255 +28150374 DOWN 11 +28150374 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28150408 homeCount = 93 +28150409 waitCount = 37 +28150410 ripCount = 40 +28150410 locktype1 = 1 +28150411 locktype2 = 6 +28150411 locktype3 = 10 +28150412 goalCount = 0 +28150412 goalTotal = 30 +28150413 otherCount = 45 +~~~ +28150414 CURRENTGOAL IS [7] +~~~ +28150482 UP 11 +28150482 1024 255 +28150504 DOWN 11 +28150504 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28150538 homeCount = 93 +28150539 waitCount = 37 +28150539 ripCount = 40 +28150540 locktype1 = 1 +28150541 locktype2 = 6 +28150541 locktype3 = 10 +28150542 goalCount = 0 +28150542 goalTotal = 30 +28150543 otherCount = 45 +~~~ +28150544 CURRENTGOAL IS [7] +~~~ +28150614 UP 11 +28150614 1024 255 +28152416 DOWN 11 +28152416 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28152462 homeCount = 93 +28152462 waitCount = 37 +28152463 ripCount = 40 +28152463 locktype1 = 1 +28152464 locktype2 = 6 +28152464 locktype3 = 10 +28152465 goalCount = 0 +28152465 goalTotal = 30 +28152466 otherCount = 45 +~~~ +28152467 CURRENTGOAL IS [7] +~~~ +28155346 UP 7 +28155346 64 255 +~~~ +~~~ +28155366 outer reward +~~~ +28155367 64 4194559 +~~~ +~~~ +28155389 DOWN 7 +28155389 0 4194559 +~~~ +~~~ +28155414 0 4194558 +~~~ +~~~ +28155416 0 4194556 +~~~ +~~~ +28155417 0 4194552 +~~~ +~~~ +28155419 0 4194544 +~~~ +~~~ +28155421 0 4194528 +~~~ +~~~ +28155423 0 4194496 +~~~ +~~~ +28155425 0 4194432 +~~~ +~~~ +28155426 0 4194304 +~~~ +~~~ +28155428 0 4194816 +28155429 homeCount = 93 +28155430 waitCount = 37 +28155430 ripCount = 40 +28155451 locktype1 = 1 +28155452 locktype2 = 6 +28155452 locktype3 = 10 +28155453 goalCount = 1 +28155453 goalTotal = 31 +28155454 otherCount = 45 +~~~ +28155455 64 4194816 +28155816 64 512 +28162953 DOWN 7 +28162953 0 512 +28162983 64 512 +28163080 DOWN 7 +28163080 0 512 +28163122 64 512 +28163206 DOWN 7 +28163206 0 512 +28163287 64 512 +28163352 DOWN 7 +28163352 0 512 +28171612 UP 10 +28171613 waslock = 0 +28171612 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28171642 512 16777728 +~~~ +28171792 512 512 +28171878 DOWN 10 +28171878 0 512 +~~~ +~~~ +28171904 0 2560 +~~~ +~~~ +28171906 0 2048 +28171907 homeCount = 94 +28171908 waitCount = 37 +28171908 ripCount = 40 +28171909 locktype1 = 1 +28171909 locktype2 = 6 +28171910 locktype3 = 10 +28171910 goalCount = 1 +28171911 goalTotal = 31 +28171911 otherCount = 45 +~~~ +28173078 UP 10 +28173078 waslock = 0 +28173078 512 2048 +~~~ +28177126 DOWN 10 +28177126 0 2048 +~~~ +~~~ +~~~ +~~~ +28177147 homeCount = 94 +28177147 waitCount = 37 +28177148 ripCount = 40 +28177148 locktype1 = 1 +28177149 locktype2 = 6 +28177149 locktype3 = 10 +28177150 goalCount = 1 +28177150 goalTotal = 31 +28177151 otherCount = 45 +~~~ +28177189 UP 10 +28177189 waslock = 0 +28177189 512 2048 +~~~ +28177225 DOWN 10 +28177225 0 2048 +~~~ +~~~ +~~~ +~~~ +28177251 homeCount = 94 +28177252 waitCount = 37 +28177252 ripCount = 40 +28177253 locktype1 = 1 +28177253 locktype2 = 6 +28177254 locktype3 = 10 +28177254 goalCount = 1 +28177255 goalTotal = 31 +28177255 otherCount = 45 +~~~ +28179849 UP 12 +28179849 2048 2048 +28182849 CLICK1 +28182849 CLICK2 +~~~ +~~~ +~~~ +28182876 2048 67110912 +~~~ +28183026 2048 2048 +28183159 DOWN 12 +28183159 0 2048 +~~~ +~~~ +28183186 0 0 +~~~ +~~~ +28183188 0 1 +~~~ +~~~ +28183190 0 3 +~~~ +~~~ +28183192 0 7 +~~~ +~~~ +28183194 0 15 +~~~ +~~~ +28183195 0 31 +~~~ +~~~ +28183197 0 63 +~~~ +~~~ +28183199 0 127 +~~~ +~~~ +28183201 0 255 +28183202 homeCount = 94 +28183202 waitCount = 38 +28183203 ripCount = 40 +28183204 locktype1 = 1 +28183204 locktype2 = 6 +28183225 locktype3 = 10 +28183225 goalCount = 1 +28183226 goalTotal = 31 +28183226 otherCount = 45 +~~~ +28183228 CURRENTGOAL IS [7] +~~~ +28183266 UP 12 +28183266 2048 255 +28183306 DOWN 12 +28183306 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28183343 UP 12 +28183343 2048 255 +~~~ +28183344 homeCount = 94 +28183345 waitCount = 38 +28183345 ripCount = 40 +28183346 locktype1 = 1 +28183346 locktype2 = 6 +28183347 locktype3 = 10 +28183347 goalCount = 1 +28183348 goalTotal = 31 +28183349 otherCount = 45 +~~~ +28183370 CURRENTGOAL IS [7] +~~~ +28190586 DOWN 12 +28190586 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28190625 homeCount = 94 +28190626 waitCount = 38 +28190626 ripCount = 40 +28190627 locktype1 = 1 +28190627 locktype2 = 6 +28190628 locktype3 = 10 +28190628 goalCount = 1 +28190629 goalTotal = 31 +28190629 otherCount = 45 +~~~ +28190630 CURRENTGOAL IS [7] +~~~ +28196854 UP 8 +28196854 128 255 +~~~ +~~~ +28197377 DOWN 8 +28197377 0 255 +~~~ +~~~ +28197398 0 254 +~~~ +~~~ +28197400 0 252 +~~~ +~~~ +28197402 0 248 +~~~ +~~~ +28197404 0 240 +~~~ +~~~ +28197405 0 224 +~~~ +~~~ +28197407 0 192 +~~~ +~~~ +28197409 0 128 +~~~ +~~~ +28197411 0 0 +~~~ +~~~ +28197413 0 512 +28197414 homeCount = 94 +28197414 waitCount = 38 +28197415 ripCount = 40 +28197415 locktype1 = 1 +28197416 locktype2 = 6 +28197437 locktype3 = 10 +28197437 goalCount = 1 +28197438 goalTotal = 31 +28197438 otherCount = 46 +~~~ +28197589 128 512 +28197873 DOWN 8 +28197873 0 512 +28201996 UP 10 +28201996 waslock = 0 +28201996 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28202028 512 16777728 +~~~ +28202178 512 512 +28202268 DOWN 10 +28202268 0 512 +~~~ +~~~ +28202293 0 2560 +~~~ +~~~ +28202295 0 2048 +28202296 homeCount = 95 +28202297 waitCount = 38 +28202297 ripCount = 40 +28202298 locktype1 = 1 +28202298 locktype2 = 6 +28202299 locktype3 = 10 +28202299 goalCount = 1 +28202300 goalTotal = 31 +28202300 otherCount = 46 +~~~ +28202321 UP 10 +28202321 waslock = 0 +28202321 512 2048 +~~~ +28208913 DOWN 10 +28208913 0 2048 +~~~ +~~~ +~~~ +~~~ +28208936 homeCount = 95 +28208936 waitCount = 38 +28208937 ripCount = 40 +28208937 locktype1 = 1 +28208938 locktype2 = 6 +28208938 locktype3 = 10 +28208939 goalCount = 1 +28208939 goalTotal = 31 +28208940 otherCount = 46 +~~~ +28208955 UP 10 +28208955 waslock = 0 +28208955 512 2048 +~~~ +28209014 DOWN 10 +28209014 0 2048 +~~~ +~~~ +~~~ +~~~ +28209035 homeCount = 95 +28209036 waitCount = 38 +28209036 ripCount = 40 +28209037 locktype1 = 1 +28209037 locktype2 = 6 +28209038 locktype3 = 10 +28209038 goalCount = 1 +28209039 goalTotal = 31 +28209039 otherCount = 46 +~~~ +28210982 UP 12 +28210982 2048 2048 +28215482 CLICK1 +28215482 CLICK2 +~~~ +~~~ +~~~ +28215506 2048 67110912 +~~~ +28215656 2048 2048 +28223085 DOWN 12 +28223084 0 2048 +~~~ +~~~ +28223104 0 0 +~~~ +~~~ +28223106 0 1 +~~~ +~~~ +28223108 0 3 +~~~ +~~~ +28223110 0 7 +~~~ +~~~ +28223111 0 15 +~~~ +~~~ +28223113 0 31 +~~~ +~~~ +28223115 0 63 +~~~ +~~~ +28223117 0 127 +~~~ +~~~ +28223119 0 255 +28223120 homeCount = 95 +28223120 waitCount = 39 +28223121 ripCount = 40 +28223121 locktype1 = 1 +28223122 locktype2 = 6 +28223142 locktype3 = 10 +28223143 goalCount = 1 +28223143 goalTotal = 31 +28223144 otherCount = 46 +~~~ +28223145 CURRENTGOAL IS [7] +~~~ +28223146 UP 12 +28223146 2048 255 +28223185 DOWN 12 +28223185 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28223222 homeCount = 95 +28223222 waitCount = 39 +28223223 ripCount = 40 +28223223 locktype1 = 1 +28223224 locktype2 = 6 +28223224 locktype3 = 10 +28223225 goalCount = 1 +28223225 goalTotal = 31 +28223226 otherCount = 46 +~~~ +28223227 CURRENTGOAL IS [7] +~~~ +28233647 UP 7 +28233647 64 255 +~~~ +~~~ +28233670 outer reward +~~~ +28233670 64 4194559 +~~~ +~~~ +28233821 DOWN 7 +28233821 0 4194559 +~~~ +~~~ +28233837 0 4194558 +~~~ +~~~ +28233839 0 4194556 +~~~ +~~~ +28233841 0 4194552 +~~~ +~~~ +28233843 0 4194544 +~~~ +~~~ +28233845 0 4194528 +~~~ +~~~ +28233847 0 4194496 +~~~ +~~~ +28233848 0 4194432 +~~~ +~~~ +28233850 0 4194304 +~~~ +~~~ +28233852 0 4194816 +28233853 homeCount = 95 +28233854 waitCount = 39 +28233854 ripCount = 40 +28233875 locktype1 = 1 +28233876 locktype2 = 6 +28233876 locktype3 = 10 +28233877 goalCount = 2 +28233877 goalTotal = 32 +28233878 otherCount = 46 +~~~ +28233878 64 4194816 +28234120 64 512 +28243031 DOWN 7 +28243031 0 512 +28243057 64 512 +28243146 DOWN 7 +28243146 0 512 +28248129 UP 10 +28248129 waslock = 0 +28248129 512 512 +~~~ +~~~ +~~~ +~~~ +28248154 DOWN 10 +28248154 0 512 +~~~ +28248156 0 16777728 +~~~ +~~~ +~~~ +28248171 0 16779776 +~~~ +~~~ +28248172 0 16779264 +28248173 homeCount = 96 +28248174 waitCount = 39 +28248174 ripCount = 40 +28248175 locktype1 = 1 +28248175 locktype2 = 6 +28248176 locktype3 = 10 +28248176 goalCount = 2 +28248177 goalTotal = 32 +28248178 otherCount = 46 +~~~ +28248236 UP 10 +28248236 waslock = 0 +28248236 512 16779264 +~~~ +28248306 512 2048 +28248640 DOWN 10 +28248640 0 2048 +28248654 UP 10 +28248654 waslock = 0 +28248654 512 2048 +~~~ +~~~ +~~~ +~~~ +28248674 homeCount = 96 +28248675 waitCount = 39 +28248675 ripCount = 40 +28248676 locktype1 = 1 +28248676 locktype2 = 6 +28248677 locktype3 = 10 +28248677 goalCount = 2 +28248678 goalTotal = 32 +28248678 otherCount = 46 +~~~ +~~~ +28252124 DOWN 10 +28252124 0 2048 +28252140 UP 10 +28252141 waslock = 0 +28252140 512 2048 +~~~ +~~~ +~~~ +~~~ +28252165 homeCount = 96 +28252166 waitCount = 39 +28252166 ripCount = 40 +28252167 locktype1 = 1 +28252167 locktype2 = 6 +28252168 locktype3 = 10 +28252168 goalCount = 2 +28252169 goalTotal = 32 +28252169 otherCount = 46 +~~~ +~~~ +28252230 DOWN 10 +28252230 0 2048 +~~~ +~~~ +~~~ +~~~ +28252253 homeCount = 96 +28252254 waitCount = 39 +28252254 ripCount = 40 +28252255 locktype1 = 1 +28252255 locktype2 = 6 +28252256 locktype3 = 10 +28252256 goalCount = 2 +28252257 goalTotal = 32 +28252257 otherCount = 46 +~~~ +28252286 UP 10 +28252286 waslock = 0 +28252286 512 2048 +~~~ +28252324 DOWN 10 +28252324 0 2048 +~~~ +~~~ +~~~ +~~~ +28252352 homeCount = 96 +28252352 waitCount = 39 +28252353 ripCount = 40 +28252353 locktype1 = 1 +28252354 locktype2 = 6 +28252354 locktype3 = 10 +28252355 goalCount = 2 +28252355 goalTotal = 32 +28252356 otherCount = 46 +~~~ +28254088 UP 12 +28254088 2048 2048 +28259672 DOWN 12 +28259672 0 2048 +28259689 UP 12 +28259689 2048 2048 +28259725 DOWN 12 +28259725 0 2048 +28259759 UP 12 +28259759 2048 2048 +28259931 DOWN 12 +28259930 0 2048 +28259941 UP 12 +28259941 2048 2048 +28260607 DOWN 12 +28260607 0 2048 +28260622 UP 12 +28260621 2048 2048 +28263088 CLICK1 +28263088 CLICK2 +~~~ +~~~ +~~~ +28263111 2048 67110912 +~~~ +28263261 2048 2048 +28269902 DOWN 12 +28269902 0 2048 +28269928 UP 12 +28269928 2048 2048 +~~~ +~~~ +28269931 2048 0 +~~~ +~~~ +28269932 2048 1 +~~~ +~~~ +28269934 2048 3 +~~~ +~~~ +28269936 2048 7 +~~~ +~~~ +28269938 2048 15 +~~~ +~~~ +28269940 2048 31 +~~~ +~~~ +28269942 2048 63 +~~~ +~~~ +28269943 2048 127 +~~~ +~~~ +28269945 2048 255 +28269946 homeCount = 96 +28269947 waitCount = 40 +28269968 ripCount = 40 +28269969 locktype1 = 1 +28269969 locktype2 = 6 +28269970 locktype3 = 10 +28269970 goalCount = 2 +28269971 goalTotal = 32 +28269971 otherCount = 46 +~~~ +28269972 CURRENTGOAL IS [7] +~~~ +28269986 DOWN 12 +28269986 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28270027 homeCount = 96 +28270027 waitCount = 40 +28270028 ripCount = 40 +28270028 locktype1 = 1 +28270029 locktype2 = 6 +28270029 locktype3 = 10 +28270030 goalCount = 2 +28270030 goalTotal = 32 +28270031 otherCount = 46 +~~~ +28270032 CURRENTGOAL IS [7] +~~~ +28276085 UP 7 +28276085 64 255 +~~~ +~~~ +28276113 outer reward +~~~ +28276113 64 4194559 +~~~ +~~~ +28276119 DOWN 7 +28276118 0 4194559 +~~~ +~~~ +28276132 0 4194558 +~~~ +~~~ +28276133 0 4194556 +~~~ +~~~ +28276135 0 4194552 +~~~ +~~~ +28276137 0 4194544 +~~~ +~~~ +28276139 0 4194528 +~~~ +~~~ +28276141 0 4194496 +~~~ +~~~ +28276142 0 4194432 +~~~ +~~~ +28276144 0 4194304 +~~~ +~~~ +28276146 0 4194816 +28276147 homeCount = 96 +28276148 waitCount = 40 +28276148 ripCount = 40 +28276169 locktype1 = 1 +28276170 locktype2 = 6 +28276170 locktype3 = 10 +28276171 goalCount = 3 +28276171 goalTotal = 33 +28276172 otherCount = 46 +~~~ +28276172 64 4194816 +28276185 DOWN 7 +28276185 0 4194816 +28276189 64 4194816 +28276301 DOWN 7 +28276301 0 4194816 +28276362 64 4194816 +28276473 DOWN 7 +28276473 0 4194816 +28276504 64 4194816 +28276563 64 512 +28276768 DOWN 7 +28276768 0 512 +28276782 64 512 +28277032 DOWN 7 +28277032 0 512 +28277039 64 512 +28285770 DOWN 7 +28285770 0 512 +28290802 UP 10 +28290802 waslock = 0 +28290802 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28290828 512 16777728 +~~~ +28290978 512 512 +28291074 DOWN 10 +28291074 0 512 +~~~ +~~~ +28291097 0 2560 +~~~ +~~~ +28291099 0 2048 +28291100 homeCount = 97 +28291101 waitCount = 40 +28291101 ripCount = 40 +28291102 locktype1 = 1 +28291102 locktype2 = 6 +28291103 locktype3 = 10 +28291103 goalCount = 3 +28291104 goalTotal = 33 +28291104 otherCount = 46 +~~~ +28291157 UP 10 +28291157 waslock = 0 +28291157 512 2048 +~~~ +28298203 DOWN 10 +28298203 0 2048 +~~~ +~~~ +28298222 UP 10 +28298222 waslock = 0 +28298222 512 2048 +~~~ +~~~ +28298224 homeCount = 97 +28298225 waitCount = 40 +28298225 ripCount = 40 +28298226 locktype1 = 1 +28298226 locktype2 = 6 +28298227 locktype3 = 10 +28298227 goalCount = 3 +28298228 goalTotal = 33 +28298249 otherCount = 46 +~~~ +~~~ +28298313 DOWN 10 +28298313 0 2048 +~~~ +~~~ +~~~ +~~~ +28298336 homeCount = 97 +28298336 waitCount = 40 +28298337 ripCount = 40 +28298337 locktype1 = 1 +28298338 locktype2 = 6 +28298338 locktype3 = 10 +28298339 goalCount = 3 +28298339 goalTotal = 33 +28298340 otherCount = 46 +~~~ +28298386 UP 10 +28298386 waslock = 0 +28298386 512 2048 +28298408 DOWN 10 +28298408 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28298435 homeCount = 97 +28298436 waitCount = 40 +28298436 ripCount = 40 +28298437 locktype1 = 1 +28298437 locktype2 = 6 +28298438 locktype3 = 10 +28298438 goalCount = 3 +28298439 goalTotal = 33 +28298439 otherCount = 46 +~~~ +28300760 UP 12 +28300760 2048 2048 +28302267 DOWN 12 +28302267 0 2048 +28302282 UP 12 +28302282 2048 2048 +28303163 DOWN 12 +28303163 0 2048 +28303230 UP 12 +28303230 2048 2048 +28303340 DOWN 12 +28303340 0 2048 +28303346 UP 12 +28303346 2048 2048 +28303760 CLICK1 +28303760 CLICK2 +~~~ +~~~ +~~~ +28303783 2048 67110912 +~~~ +28303933 2048 2048 +28304129 DOWN 12 +28304129 0 2048 +28304147 UP 12 +28304147 2048 2048 +~~~ +~~~ +28304150 2048 0 +~~~ +~~~ +28304152 2048 1 +~~~ +~~~ +28304154 2048 3 +~~~ +~~~ +28304156 2048 7 +~~~ +~~~ +28304158 2048 15 +~~~ +~~~ +28304159 2048 31 +~~~ +~~~ +28304161 2048 63 +~~~ +~~~ +28304163 2048 127 +~~~ +~~~ +28304165 2048 255 +28304166 homeCount = 97 +28304167 waitCount = 41 +28304167 ripCount = 40 +28304188 locktype1 = 1 +28304188 locktype2 = 6 +28304189 locktype3 = 10 +28304189 goalCount = 3 +28304190 goalTotal = 33 +28304190 otherCount = 46 +~~~ +28304192 CURRENTGOAL IS [7] +~~~ +28311063 DOWN 12 +28311063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28311100 homeCount = 97 +28311101 waitCount = 41 +28311102 ripCount = 40 +28311102 locktype1 = 1 +28311103 locktype2 = 6 +28311103 locktype3 = 10 +28311104 goalCount = 3 +28311104 goalTotal = 33 +28311105 otherCount = 46 +~~~ +28311106 CURRENTGOAL IS [7] +~~~ +28311127 UP 12 +28311127 2048 255 +28311173 DOWN 12 +28311173 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28311212 homeCount = 97 +28311213 waitCount = 41 +28311213 ripCount = 40 +28311214 locktype1 = 1 +28311214 locktype2 = 6 +28311215 locktype3 = 10 +28311215 goalCount = 3 +28311216 goalTotal = 33 +28311216 otherCount = 46 +~~~ +28311217 CURRENTGOAL IS [7] +~~~ +28311282 UP 12 +28311282 2048 255 +28313151 DOWN 12 +28313151 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28313192 homeCount = 97 +28313193 waitCount = 41 +28313193 ripCount = 40 +28313194 locktype1 = 1 +28313194 locktype2 = 6 +28313195 locktype3 = 10 +28313195 goalCount = 3 +28313196 goalTotal = 33 +28313196 otherCount = 46 +~~~ +28313197 CURRENTGOAL IS [7] +~~~ +28318089 UP 7 +28318089 64 255 +~~~ +~~~ +28318108 outer reward +~~~ +28318108 64 4194559 +~~~ +~~~ +28318332 DOWN 7 +28318332 0 4194559 +~~~ +~~~ +28318355 0 4194558 +~~~ +~~~ +28318357 0 4194556 +~~~ +~~~ +28318359 0 4194552 +~~~ +~~~ +28318361 0 4194544 +~~~ +~~~ +28318362 0 4194528 +~~~ +~~~ +28318364 0 4194496 +~~~ +~~~ +28318366 0 4194432 +~~~ +~~~ +28318368 0 4194304 +~~~ +~~~ +28318370 0 4194816 +28318371 homeCount = 97 +28318371 waitCount = 41 +28318372 ripCount = 40 +28318393 locktype1 = 1 +28318393 locktype2 = 6 +28318394 locktype3 = 10 +28318394 goalCount = 4 +28318395 goalTotal = 34 +28318395 otherCount = 46 +~~~ +28318396 64 4194816 +28318558 64 512 +28318784 DOWN 7 +28318784 0 512 +28318799 64 512 +28326513 DOWN 7 +28326513 0 512 +28326537 64 512 +28326605 DOWN 7 +28326605 0 512 +28331412 UP 10 +28331413 waslock = 0 +28331412 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28331443 512 16777728 +~~~ +28331593 512 512 +28331648 DOWN 10 +28331648 0 512 +~~~ +~~~ +28331669 0 2560 +~~~ +~~~ +28331671 0 2048 +28331672 homeCount = 98 +28331672 waitCount = 41 +28331673 ripCount = 40 +28331673 locktype1 = 1 +28331674 locktype2 = 6 +28331674 locktype3 = 10 +28331675 goalCount = 4 +28331675 goalTotal = 34 +28331676 otherCount = 46 +~~~ +28331697 UP 10 +28331697 waslock = 0 +28331697 512 2048 +~~~ +28334733 DOWN 10 +28334733 0 2048 +~~~ +~~~ +~~~ +~~~ +28334758 homeCount = 98 +28334759 waitCount = 41 +28334759 ripCount = 40 +28334760 locktype1 = 1 +28334760 locktype2 = 6 +28334761 locktype3 = 10 +28334761 goalCount = 4 +28334762 goalTotal = 34 +28334762 otherCount = 46 +~~~ +28334797 UP 10 +28334797 waslock = 0 +28334797 512 2048 +~~~ +28334845 DOWN 10 +28334845 0 2048 +~~~ +~~~ +~~~ +~~~ +28334877 homeCount = 98 +28334877 waitCount = 41 +28334878 ripCount = 40 +28334878 locktype1 = 1 +28334879 locktype2 = 6 +28334879 locktype3 = 10 +28334880 goalCount = 4 +28334880 goalTotal = 34 +28334881 otherCount = 46 +~~~ +28336994 UP 12 +28336994 2048 2048 +28339137 DOWN 12 +28339137 0 2048 +28339153 UP 12 +28339152 2048 2048 +28339517 DOWN 12 +28339517 0 2048 +28339545 UP 12 +28339545 2048 2048 +28340452 DOWN 12 +28340452 0 2048 +28340540 UP 12 +28340540 2048 2048 +28340551 DOWN 12 +28340551 0 2048 +28340555 UP 12 +28340555 2048 2048 +28340569 DOWN 12 +28340569 0 2048 +28340589 UP 12 +28340589 2048 2048 +28340861 DOWN 12 +28340861 0 2048 +28340868 UP 12 +28340868 2048 2048 +28342994 CLICK1 +28342994 CLICK2 +~~~ +~~~ +~~~ +28343019 2048 67110912 +~~~ +28343169 2048 2048 +28347975 DOWN 12 +28347975 0 2048 +28347979 UP 12 +28347979 2048 2048 +~~~ +~~~ +28348001 2048 0 +~~~ +~~~ +28348003 2048 1 +~~~ +~~~ +28348004 2048 3 +~~~ +~~~ +28348006 2048 7 +~~~ +~~~ +28348008 2048 15 +~~~ +~~~ +28348010 2048 31 +~~~ +~~~ +28348012 2048 63 +~~~ +~~~ +28348014 DOWN 12 +28348013 0 127 +~~~ +~~~ +28348015 0 255 +28348016 homeCount = 98 +28348017 waitCount = 42 +28348018 ripCount = 40 +28348039 locktype1 = 1 +28348039 locktype2 = 6 +28348040 locktype3 = 10 +28348040 goalCount = 4 +28348041 goalTotal = 34 +28348041 otherCount = 46 +~~~ +28348042 CURRENTGOAL IS [7] +~~~ +28348046 UP 12 +28348046 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28348075 homeCount = 98 +28348075 waitCount = 42 +28348076 ripCount = 40 +28348076 locktype1 = 1 +28348077 locktype2 = 6 +28348077 locktype3 = 10 +28348078 goalCount = 4 +28348078 goalTotal = 34 +28348079 otherCount = 46 +~~~ +28348080 CURRENTGOAL IS [7] +~~~ +28348143 DOWN 12 +28348143 0 255 +28348159 UP 12 +28348159 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28348186 homeCount = 98 +28348186 waitCount = 42 +28348187 ripCount = 40 +28348187 locktype1 = 1 +28348188 locktype2 = 6 +28348188 locktype3 = 10 +28348189 goalCount = 4 +28348189 goalTotal = 34 +28348190 otherCount = 46 +~~~ +28348191 CURRENTGOAL IS [7] +~~~ +28350762 DOWN 12 +28350762 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28350795 homeCount = 98 +28350796 waitCount = 42 +28350796 ripCount = 40 +28350797 locktype1 = 1 +28350797 locktype2 = 6 +28350798 locktype3 = 10 +28350798 goalCount = 4 +28350799 goalTotal = 34 +28350799 otherCount = 46 +~~~ +28350800 CURRENTGOAL IS [7] +~~~ +28354630 UP 7 +28354630 64 255 +~~~ +~~~ +28354651 outer reward +~~~ +28354651 64 4194559 +~~~ +~~~ +28354678 DOWN 7 +28354678 0 4194559 +~~~ +~~~ +28354698 0 4194558 +~~~ +~~~ +28354700 0 4194556 +~~~ +~~~ +28354702 0 4194552 +~~~ +~~~ +28354704 0 4194544 +~~~ +~~~ +28354706 0 4194528 +~~~ +28354707 64 4194528 +~~~ +~~~ +28354709 64 4194496 +~~~ +~~~ +28354710 64 4194432 +~~~ +28354711 64 4194304 +~~~ +~~~ +28354713 64 4194816 +28354714 homeCount = 98 +28354735 waitCount = 42 +28354736 ripCount = 40 +28354736 locktype1 = 1 +28354737 locktype2 = 6 +28354737 locktype3 = 10 +28354738 goalCount = 5 +28354738 goalTotal = 35 +28354739 otherCount = 46 +~~~ +28354868 DOWN 7 +28354868 0 4194816 +28354919 64 4194816 +28355101 64 512 +28363140 DOWN 7 +28363140 0 512 +28363188 64 512 +28363237 DOWN 7 +28363237 0 512 +28367403 UP 10 +28367403 waslock = 0 +28367403 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28367436 512 16777728 +~~~ +28367557 DOWN 10 +28367557 0 16777728 +~~~ +~~~ +28367580 0 16778752 +~~~ +~~~ +28367581 0 16778240 +28367583 homeCount = 99 +28367583 waitCount = 42 +28367584 ripCount = 40 +28367584 locktype1 = 1 +28367585 locktype2 = 6 +28367585 locktype3 = 10 +28367586 goalCount = 5 +28367586 goalTotal = 35 +28367587 otherCount = 46 +~~~ +28367608 UP 10 +28367608 waslock = 0 +28367608 512 16778240 +28367609 512 1024 +~~~ +28367951 DOWN 10 +28367951 0 1024 +~~~ +~~~ +~~~ +~~~ +28367974 homeCount = 99 +28367975 waitCount = 42 +28367975 ripCount = 40 +28367976 locktype1 = 1 +28367976 locktype2 = 6 +28367977 locktype3 = 10 +28367977 goalCount = 5 +28367978 goalTotal = 35 +28367978 otherCount = 46 +~~~ +28368002 UP 10 +28368003 waslock = 0 +28368002 512 1024 +~~~ +28371913 DOWN 10 +28371913 0 1024 +~~~ +~~~ +~~~ +~~~ +28371933 homeCount = 99 +28371934 waitCount = 42 +28371934 ripCount = 40 +28371935 locktype1 = 1 +28371935 locktype2 = 6 +28371936 locktype3 = 10 +28371936 goalCount = 5 +28371937 goalTotal = 35 +28371937 otherCount = 46 +~~~ +28371983 UP 10 +28371983 waslock = 0 +28371983 512 1024 +~~~ +28372017 DOWN 10 +28372017 0 1024 +~~~ +~~~ +~~~ +~~~ +28372043 homeCount = 99 +28372044 waitCount = 42 +28372044 ripCount = 40 +28372045 locktype1 = 1 +28372045 locktype2 = 6 +28372046 locktype3 = 10 +28372046 goalCount = 5 +28372047 goalTotal = 35 +28372047 otherCount = 46 +~~~ +28374860 UP 11 +28374860 1024 1024 +28375214 DOWN 11 +28375214 0 1024 +28375405 UP 11 +28375405 1024 1024 +28375439 DOWN 11 +28375439 0 1024 +28375489 UP 11 +28375489 1024 1024 +28377737 DOWN 11 +28377737 0 1024 +28377747 UP 11 +28377746 1024 1024 +28378861 BEEP1 +28378861 BEEP2 +~~~ +~~~ +~~~ +28378886 1024 33555456 +~~~ +28379036 1024 1024 +28385014 DOWN 11 +28385013 0 1024 +28385028 UP 11 +28385028 1024 1024 +~~~ +~~~ +28385030 1024 0 +~~~ +~~~ +28385032 1024 1 +~~~ +~~~ +28385034 1024 3 +~~~ +~~~ +28385035 1024 7 +~~~ +~~~ +28385037 1024 15 +~~~ +~~~ +28385039 1024 31 +~~~ +~~~ +28385041 1024 63 +~~~ +~~~ +28385043 1024 127 +~~~ +~~~ +28385045 1024 255 +28385046 homeCount = 99 +28385046 waitCount = 42 +28385067 ripCount = 41 +28385067 locktype1 = 1 +28385068 locktype2 = 6 +28385068 locktype3 = 10 +28385069 goalCount = 5 +28385069 goalTotal = 35 +28385070 otherCount = 46 +~~~ +28385071 CURRENTGOAL IS [7] +~~~ +28388281 DOWN 11 +28388281 0 255 +28388298 UP 11 +28388298 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28388317 homeCount = 99 +28388317 waitCount = 42 +28388318 ripCount = 41 +28388318 locktype1 = 1 +28388319 locktype2 = 6 +28388319 locktype3 = 10 +28388320 goalCount = 5 +28388320 goalTotal = 35 +28388321 otherCount = 46 +~~~ +28388322 CURRENTGOAL IS [7] +~~~ +28388394 DOWN 11 +28388394 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28388438 homeCount = 99 +28388438 waitCount = 42 +28388439 ripCount = 41 +28388439 locktype1 = 1 +28388440 locktype2 = 6 +28388440 locktype3 = 10 +28388441 goalCount = 5 +28388441 goalTotal = 35 +28388442 otherCount = 46 +~~~ +28388443 CURRENTGOAL IS [7] +~~~ +28391127 UP 7 +28391127 64 255 +~~~ +28391152 DOWN 7 +28391152 0 255 +~~~ +28391154 outer reward +~~~ +28391154 0 4194559 +~~~ +~~~ +~~~ +~~~ +28391173 0 4194558 +~~~ +28391175 64 4194558 +~~~ +~~~ +28391176 64 4194556 +~~~ +~~~ +28391178 64 4194552 +~~~ +28391179 64 4194544 +~~~ +~~~ +28391181 64 4194528 +~~~ +~~~ +28391182 64 4194496 +~~~ +~~~ +28391184 64 4194432 +~~~ +~~~ +28391186 64 4194304 +~~~ +~~~ +28391188 64 4194816 +28391210 homeCount = 99 +28391210 waitCount = 42 +28391211 ripCount = 41 +28391211 locktype1 = 1 +28391212 locktype2 = 6 +28391212 locktype3 = 10 +28391213 goalCount = 6 +28391213 goalTotal = 36 +28391214 otherCount = 46 +~~~ +28391352 DOWN 7 +28391352 0 4194816 +28391410 64 4194816 +28391604 64 512 +28401070 DOWN 7 +28401070 0 512 +28405631 UP 10 +28405631 waslock = 0 +28405631 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28405662 512 16777728 +~~~ +28405812 512 512 +28405858 DOWN 10 +28405858 0 512 +28405879 UP 10 +28405880 waslock = 0 +28405879 512 512 +~~~ +~~~ +28405884 512 1536 +~~~ +~~~ +28405886 512 1024 +28405887 homeCount = 100 +28405887 waitCount = 42 +28405888 ripCount = 41 +28405888 locktype1 = 1 +28405889 locktype2 = 6 +28405889 locktype3 = 10 +28405890 goalCount = 6 +28405890 goalTotal = 36 +28405891 otherCount = 46 +~~~ +~~~ +28411150 DOWN 10 +28411150 0 1024 +~~~ +~~~ +~~~ +~~~ +28411176 homeCount = 100 +28411177 waitCount = 42 +28411177 ripCount = 41 +28411178 locktype1 = 1 +28411178 locktype2 = 6 +28411179 locktype3 = 10 +28411179 goalCount = 6 +28411180 goalTotal = 36 +28411180 otherCount = 46 +~~~ +28411204 UP 10 +28411205 waslock = 0 +28411204 512 1024 +~~~ +28411240 DOWN 10 +28411240 0 1024 +~~~ +~~~ +~~~ +~~~ +28411267 homeCount = 100 +28411268 waitCount = 42 +28411268 ripCount = 41 +28411269 locktype1 = 1 +28411269 locktype2 = 6 +28411270 locktype3 = 10 +28411270 goalCount = 6 +28411271 goalTotal = 36 +28411271 otherCount = 46 +~~~ +28413812 UP 11 +28413812 1024 1024 +28415393 DOWN 11 +28415393 0 1024 +28415594 LOCKOUT 3 +~~~ +28415615 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +28415619 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28416951 UP 11 +28416951 1024 0 +28434365 DOWN 11 +28434365 0 0 +28440615 LOCKEND +~~~ +~~~ +~~~ +28440635 0 512 +28442032 UP 7 +28442032 64 512 +28442581 DOWN 7 +28442581 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28442619 homeCount = 100 +28442620 waitCount = 42 +28442620 ripCount = 41 +28442621 locktype1 = 1 +28442621 locktype2 = 6 +28442622 locktype3 = 11 +28442622 goalCount = 6 +28442623 goalTotal = 36 +28442623 otherCount = 46 +~~~ +28447649 UP 10 +28447649 waslock = 0 +28447649 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28447681 512 16777728 +~~~ +28447831 512 512 +28451216 DOWN 10 +28451216 0 512 +~~~ +~~~ +28451236 0 2560 +~~~ +~~~ +28451238 0 2048 +28451239 homeCount = 101 +28451239 waitCount = 42 +28451240 ripCount = 41 +28451240 locktype1 = 1 +28451241 locktype2 = 6 +28451241 locktype3 = 11 +28451242 goalCount = 6 +28451242 goalTotal = 36 +28451243 otherCount = 46 +~~~ +28451279 UP 10 +28451279 waslock = 0 +28451279 512 2048 +~~~ +28451321 DOWN 10 +28451321 0 2048 +~~~ +~~~ +~~~ +~~~ +28451352 homeCount = 101 +28451352 waitCount = 42 +28451353 ripCount = 41 +28451353 locktype1 = 1 +28451354 locktype2 = 6 +28451354 locktype3 = 11 +28451355 goalCount = 6 +28451355 goalTotal = 36 +28451356 otherCount = 46 +~~~ +28454622 UP 12 +28454622 2048 2048 +28455640 DOWN 12 +28455640 0 2048 +28455828 UP 12 +28455828 2048 2048 +28457622 CLICK1 +28457622 CLICK2 +~~~ +~~~ +~~~ +28457646 2048 67110912 +~~~ +28457700 DOWN 12 +28457700 0 67110912 +28457745 UP 12 +28457745 2048 67110912 +28457796 2048 2048 +~~~ +~~~ +28457831 2048 0 +~~~ +~~~ +28457833 2048 1 +~~~ +~~~ +28457835 2048 3 +~~~ +~~~ +28457837 2048 7 +~~~ +~~~ +28457839 2048 15 +~~~ +~~~ +28457841 2048 31 +~~~ +~~~ +28457842 2048 63 +~~~ +~~~ +28457844 2048 127 +~~~ +~~~ +28457846 2048 255 +28457847 homeCount = 101 +28457848 waitCount = 43 +28457848 ripCount = 41 +28457869 locktype1 = 1 +28457869 locktype2 = 6 +28457870 locktype3 = 11 +28457870 goalCount = 6 +28457871 goalTotal = 36 +28457871 otherCount = 46 +~~~ +28457872 CURRENTGOAL IS [7] +~~~ +28457923 DOWN 12 +28457923 0 255 +28457931 UP 12 +28457931 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28457961 homeCount = 101 +28457962 waitCount = 43 +28457962 ripCount = 41 +28457963 locktype1 = 1 +28457963 locktype2 = 6 +28457964 locktype3 = 11 +28457964 goalCount = 6 +28457965 goalTotal = 36 +28457965 otherCount = 46 +~~~ +28457966 CURRENTGOAL IS [7] +~~~ +28458047 DOWN 12 +28458046 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28458081 homeCount = 101 +28458081 waitCount = 43 +28458082 ripCount = 41 +28458082 locktype1 = 1 +28458083 locktype2 = 6 +28458083 locktype3 = 11 +28458084 goalCount = 6 +28458084 goalTotal = 36 +28458085 otherCount = 46 +~~~ +28458086 CURRENTGOAL IS [7] +~~~ +28458107 UP 12 +28458107 2048 255 +28458209 DOWN 12 +28458209 0 255 +28458222 UP 12 +28458222 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28458251 homeCount = 101 +28458252 waitCount = 43 +28458252 ripCount = 41 +28458253 locktype1 = 1 +28458253 locktype2 = 6 +28458254 locktype3 = 11 +28458254 goalCount = 6 +28458255 goalTotal = 36 +28458255 otherCount = 46 +~~~ +28458257 CURRENTGOAL IS [7] +~~~ +28464145 DOWN 12 +28464145 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464183 homeCount = 101 +28464183 waitCount = 43 +28464184 ripCount = 41 +28464184 locktype1 = 1 +28464185 locktype2 = 6 +28464185 locktype3 = 11 +28464186 goalCount = 6 +28464186 goalTotal = 36 +28464187 otherCount = 46 +~~~ +28464188 CURRENTGOAL IS [7] +~~~ +28464211 UP 12 +28464211 2048 255 +28464279 DOWN 12 +28464279 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464314 homeCount = 101 +28464314 waitCount = 43 +28464315 ripCount = 41 +28464315 locktype1 = 1 +28464316 locktype2 = 6 +28464316 locktype3 = 11 +28464317 goalCount = 6 +28464317 goalTotal = 36 +28464318 otherCount = 46 +~~~ +28464319 CURRENTGOAL IS [7] +~~~ +28464343 UP 12 +28464343 2048 255 +28464552 DOWN 12 +28464552 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464592 homeCount = 101 +28464593 waitCount = 43 +28464594 ripCount = 41 +28464594 locktype1 = 1 +28464595 locktype2 = 6 +28464595 locktype3 = 11 +28464596 goalCount = 6 +28464596 goalTotal = 36 +28464597 otherCount = 46 +~~~ +28464598 CURRENTGOAL IS [7] +~~~ +28464678 UP 12 +28464678 2048 255 +28464954 DOWN 12 +28464954 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464994 homeCount = 101 +28464994 waitCount = 43 +28464995 ripCount = 41 +28464995 locktype1 = 1 +28464996 locktype2 = 6 +28464997 locktype3 = 11 +28464997 goalCount = 6 +28464998 goalTotal = 36 +28464998 otherCount = 46 +~~~ +28464999 CURRENTGOAL IS [7] +~~~ +28465040 UP 12 +28465040 2048 255 +28466476 DOWN 12 +28466476 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28466513 homeCount = 101 +28466514 waitCount = 43 +28466514 ripCount = 41 +28466515 locktype1 = 1 +28466515 locktype2 = 6 +28466516 locktype3 = 11 +28466516 goalCount = 6 +28466517 goalTotal = 36 +28466517 otherCount = 46 +~~~ +28466518 CURRENTGOAL IS [7] +~~~ +28466540 UP 12 +28466540 2048 255 +28466558 DOWN 12 +28466558 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28466594 homeCount = 101 +28466594 waitCount = 43 +28466595 ripCount = 41 +28466596 locktype1 = 1 +28466596 locktype2 = 6 +28466597 locktype3 = 11 +28466597 goalCount = 6 +28466598 goalTotal = 36 +28466598 otherCount = 46 +~~~ +28466599 CURRENTGOAL IS [7] +~~~ +28473374 UP 3 +28473374 4 255 +~~~ +~~~ +28474863 DOWN 3 +28474863 0 255 +~~~ +~~~ +28474888 0 254 +~~~ +~~~ +28474890 0 252 +~~~ +~~~ +28474892 0 248 +~~~ +~~~ +28474894 0 240 +~~~ +~~~ +28474896 0 224 +~~~ +~~~ +28474897 0 192 +~~~ +~~~ +28474899 0 128 +~~~ +~~~ +28474901 0 0 +~~~ +~~~ +28474903 0 512 +28474904 homeCount = 101 +28474904 waitCount = 43 +28474905 ripCount = 41 +28474905 locktype1 = 1 +28474906 locktype2 = 6 +28474927 locktype3 = 11 +28474928 goalCount = 6 +28474928 goalTotal = 36 +28474929 otherCount = 47 +~~~ +28474947 4 512 +28474978 DOWN 3 +28474978 0 512 +28479683 UP 10 +28479683 waslock = 0 +28479683 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28479707 512 16777728 +~~~ +28479857 512 512 +28479857 DOWN 10 +28479857 0 512 +~~~ +~~~ +28479883 0 2560 +~~~ +~~~ +28479885 0 2048 +28479886 homeCount = 102 +28479886 waitCount = 43 +28479887 ripCount = 41 +28479887 locktype1 = 1 +28479888 locktype2 = 6 +28479888 locktype3 = 11 +28479889 goalCount = 6 +28479889 goalTotal = 36 +28479890 otherCount = 47 +~~~ +28479911 UP 10 +28479911 waslock = 0 +28479911 512 2048 +~~~ +28485096 DOWN 10 +28485096 0 2048 +~~~ +~~~ +~~~ +~~~ +28485121 UP 10 +28485121 waslock = 0 +28485121 512 2048 +28485123 homeCount = 102 +28485123 waitCount = 43 +28485124 ripCount = 41 +28485124 locktype1 = 1 +28485125 locktype2 = 6 +28485125 locktype3 = 11 +28485126 goalCount = 6 +28485126 goalTotal = 36 +28485127 otherCount = 47 +~~~ +~~~ +28485197 DOWN 10 +28485197 0 2048 +~~~ +~~~ +~~~ +~~~ +28485222 homeCount = 102 +28485222 waitCount = 43 +28485223 ripCount = 41 +28485223 locktype1 = 1 +28485224 locktype2 = 6 +28485224 locktype3 = 11 +28485225 goalCount = 6 +28485225 goalTotal = 36 +28485226 otherCount = 47 +~~~ +28487348 UP 12 +28487348 2048 2048 +28489141 DOWN 12 +28489141 0 2048 +28489173 UP 12 +28489173 2048 2048 +28489765 DOWN 12 +28489765 0 2048 +28489810 UP 12 +28489810 2048 2048 +28490348 CLICK1 +28490348 CLICK2 +~~~ +~~~ +~~~ +28490373 2048 67110912 +~~~ +28490523 2048 2048 +28490662 DOWN 12 +28490662 0 2048 +28490664 UP 12 +28490664 2048 2048 +~~~ +~~~ +28490680 2048 0 +~~~ +~~~ +28490682 2048 1 +~~~ +~~~ +28490684 2048 3 +~~~ +~~~ +28490686 2048 7 +~~~ +~~~ +28490688 2048 15 +~~~ +~~~ +28490689 2048 31 +~~~ +~~~ +28490691 2048 63 +~~~ +~~~ +28490693 2048 127 +~~~ +~~~ +28490695 2048 255 +28490696 homeCount = 102 +28490696 waitCount = 44 +28490697 ripCount = 41 +28490718 locktype1 = 1 +28490719 locktype2 = 6 +28490719 locktype3 = 11 +28490720 goalCount = 6 +28490720 goalTotal = 36 +28490721 otherCount = 47 +~~~ +28490722 CURRENTGOAL IS [7] +~~~ +28490802 DOWN 12 +28490802 0 255 +28490812 UP 12 +28490812 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28490850 homeCount = 102 +28490850 waitCount = 44 +28490851 ripCount = 41 +28490851 locktype1 = 1 +28490852 locktype2 = 6 +28490853 locktype3 = 11 +28490853 goalCount = 6 +28490854 goalTotal = 36 +28490854 otherCount = 47 +~~~ +28490855 CURRENTGOAL IS [7] +~~~ +28499180 DOWN 12 +28499180 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28499217 homeCount = 102 +28499218 waitCount = 44 +28499218 ripCount = 41 +28499219 locktype1 = 1 +28499220 locktype2 = 6 +28499220 locktype3 = 11 +28499221 goalCount = 6 +28499221 goalTotal = 36 +28499222 otherCount = 47 +~~~ +28499223 CURRENTGOAL IS [7] +~~~ +28502930 UP 4 +28502930 8 255 +~~~ +~~~ +28504240 DOWN 4 +28504240 0 255 +~~~ +~~~ +28504264 0 254 +~~~ +~~~ +28504266 0 252 +~~~ +~~~ +28504268 0 248 +~~~ +~~~ +28504269 0 240 +~~~ +~~~ +28504271 0 224 +~~~ +~~~ +28504273 0 192 +~~~ +~~~ +28504275 0 128 +~~~ +~~~ +28504277 0 0 +~~~ +~~~ +28504279 0 512 +28504280 homeCount = 102 +28504280 waitCount = 44 +28504281 ripCount = 41 +28504281 locktype1 = 1 +28504282 locktype2 = 6 +28504303 locktype3 = 11 +28504303 goalCount = 6 +28504304 goalTotal = 36 +28504304 otherCount = 48 +~~~ +28510764 UP 10 +28510764 waslock = 0 +28510764 512 512 +~~~ +~~~ +28510787 DOWN 10 +28510786 0 512 +~~~ +~~~ +~~~ +28510790 0 16777728 +~~~ +28510807 UP 10 +28510807 waslock = 0 +28510807 512 16777728 +~~~ +~~~ +~~~ +28510810 512 16778752 +~~~ +28510811 512 16778240 +28510812 homeCount = 103 +28510812 waitCount = 44 +28510813 ripCount = 41 +28510813 locktype1 = 1 +28510814 locktype2 = 6 +28510814 locktype3 = 11 +28510836 goalCount = 6 +28510836 goalTotal = 36 +28510837 otherCount = 48 +~~~ +~~~ +28510940 512 1024 +28511036 DOWN 10 +28511036 0 1024 +~~~ +~~~ +~~~ +~~~ +28511057 homeCount = 103 +28511058 waitCount = 44 +28511058 ripCount = 41 +28511059 locktype1 = 1 +28511059 locktype2 = 6 +28511060 locktype3 = 11 +28511060 goalCount = 6 +28511061 goalTotal = 36 +28511061 otherCount = 48 +~~~ +28511079 UP 10 +28511079 waslock = 0 +28511079 512 1024 +~~~ +28516182 DOWN 10 +28516182 0 1024 +~~~ +~~~ +~~~ +~~~ +28516207 homeCount = 103 +28516207 waitCount = 44 +28516208 ripCount = 41 +28516208 locktype1 = 1 +28516209 locktype2 = 6 +28516209 locktype3 = 11 +28516210 goalCount = 6 +28516210 goalTotal = 36 +28516211 otherCount = 48 +~~~ +28516242 UP 10 +28516242 waslock = 0 +28516242 512 1024 +28516260 DOWN 10 +28516260 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28516286 homeCount = 103 +28516287 waitCount = 44 +28516287 ripCount = 41 +28516288 locktype1 = 1 +28516288 locktype2 = 6 +28516289 locktype3 = 11 +28516289 goalCount = 6 +28516290 goalTotal = 36 +28516290 otherCount = 48 +~~~ +28518090 UP 11 +28518090 1024 1024 +28522590 BEEP1 +28522590 BEEP2 +~~~ +~~~ +~~~ +28522616 1024 33555456 +~~~ +28522635 DOWN 11 +28522635 0 33555456 +28522652 UP 11 +28522652 1024 33555456 +28522766 1024 1024 +28522899 DOWN 11 +28522899 0 1024 +28522967 UP 11 +28522967 1024 1024 +28523180 DOWN 11 +28523180 0 1024 +28523192 UP 11 +28523192 1024 1024 +~~~ +~~~ +28523290 1024 0 +~~~ +~~~ +28523292 1024 1 +~~~ +~~~ +28523293 1024 3 +~~~ +~~~ +28523295 1024 7 +~~~ +~~~ +28523297 1024 15 +~~~ +~~~ +28523299 1024 31 +~~~ +~~~ +28523301 1024 63 +~~~ +~~~ +28523302 1024 127 +~~~ +~~~ +28523304 1024 255 +28523305 homeCount = 103 +28523306 waitCount = 44 +28523306 ripCount = 42 +28523327 locktype1 = 1 +28523328 locktype2 = 6 +28523329 locktype3 = 11 +28523329 goalCount = 6 +28523330 goalTotal = 36 +28523330 otherCount = 48 +~~~ +28523331 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28523359 homeCount = 103 +28523360 waitCount = 44 +28523360 ripCount = 42 +28523361 locktype1 = 1 +28523361 locktype2 = 6 +28523362 locktype3 = 11 +28523362 goalCount = 6 +28523363 goalTotal = 36 +28523363 otherCount = 48 +~~~ +28523385 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28523392 homeCount = 103 +28523392 waitCount = 44 +28523393 ripCount = 42 +28523393 locktype1 = 1 +28523394 locktype2 = 6 +28523394 locktype3 = 11 +28523415 goalCount = 6 +28523416 goalTotal = 36 +28523416 otherCount = 48 +~~~ +28523417 CURRENTGOAL IS [7] +~~~ +28529119 DOWN 11 +28529119 0 255 +~~~ +~~~ +28529139 UP 11 +28529139 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529154 homeCount = 103 +28529155 waitCount = 44 +28529155 ripCount = 42 +28529156 locktype1 = 1 +28529157 locktype2 = 6 +28529157 locktype3 = 11 +28529158 goalCount = 6 +28529158 goalTotal = 36 +28529159 otherCount = 48 +~~~ +28529160 CURRENTGOAL IS [7] +~~~ +28529243 DOWN 11 +28529243 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529278 UP 11 +28529278 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529285 homeCount = 103 +28529286 waitCount = 44 +28529286 ripCount = 42 +28529287 locktype1 = 1 +28529287 locktype2 = 6 +28529288 locktype3 = 11 +28529288 goalCount = 6 +28529289 goalTotal = 36 +28529289 otherCount = 48 +~~~ +28529291 CURRENTGOAL IS [7] +~~~ +28529377 DOWN 11 +28529377 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529405 UP 11 +28529405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529413 homeCount = 103 +28529413 waitCount = 44 +28529414 ripCount = 42 +28529415 locktype1 = 1 +28529415 locktype2 = 6 +28529416 locktype3 = 11 +28529416 goalCount = 6 +28529417 goalTotal = 36 +28529417 otherCount = 48 +~~~ +28529418 CURRENTGOAL IS [7] +~~~ +28531283 DOWN 11 +28531283 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28531322 homeCount = 103 +28531323 waitCount = 44 +28531323 ripCount = 42 +28531324 locktype1 = 1 +28531324 locktype2 = 6 +28531325 locktype3 = 11 +28531325 goalCount = 6 +28531326 goalTotal = 36 +28531326 otherCount = 48 +~~~ +28531327 CURRENTGOAL IS [7] +~~~ +28535334 UP 7 +28535334 64 255 +~~~ +~~~ +28535359 outer reward +~~~ +28535359 64 4194559 +~~~ +~~~ +28535740 DOWN 7 +28535740 0 4194559 +~~~ +~~~ +28535756 0 4194558 +~~~ +~~~ +28535758 0 4194556 +~~~ +~~~ +28535760 0 4194552 +~~~ +~~~ +28535762 0 4194544 +~~~ +~~~ +28535764 0 4194528 +~~~ +~~~ +28535765 0 4194496 +~~~ +~~~ +28535767 0 4194432 +~~~ +~~~ +28535769 0 4194304 +~~~ +28535770 64 4194304 +~~~ +28535772 64 4194816 +28535773 homeCount = 103 +28535793 waitCount = 44 +28535794 ripCount = 42 +28535794 locktype1 = 1 +28535795 locktype2 = 6 +28535795 locktype3 = 11 +28535796 goalCount = 7 +28535796 goalTotal = 37 +28535797 otherCount = 48 +~~~ +28535809 64 512 +28543837 DOWN 7 +28543837 0 512 +28548438 UP 10 +28548438 waslock = 0 +28548438 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28548463 512 16777728 +~~~ +28548613 512 512 +28548656 DOWN 10 +28548656 0 512 +28548677 UP 10 +28548678 waslock = 0 +28548677 512 512 +~~~ +~~~ +~~~ +28548680 512 1536 +~~~ +28548682 homeCount = 104 +28548682 waitCount = 44 +28548683 ripCount = 42 +28548683 locktype1 = 1 +28548684 locktype2 = 6 +28548684 locktype3 = 11 +28548685 goalCount = 7 +28548705 goalTotal = 37 +28548706 otherCount = 48 +~~~ +~~~ +28548707 512 1024 +28553037 DOWN 10 +28553037 0 1024 +~~~ +~~~ +~~~ +~~~ +28553060 homeCount = 104 +28553061 waitCount = 44 +28553061 ripCount = 42 +28553062 locktype1 = 1 +28553063 locktype2 = 6 +28553063 locktype3 = 11 +28553064 goalCount = 7 +28553064 goalTotal = 37 +28553065 otherCount = 48 +~~~ +28555797 UP 11 +28555797 1024 1024 +28558797 BEEP1 +28558797 BEEP2 +~~~ +~~~ +~~~ +28558819 1024 33555456 +~~~ +28558969 1024 1024 +28566484 DOWN 11 +28566484 0 1024 +28566489 UP 11 +28566489 1024 1024 +~~~ +~~~ +28566507 1024 0 +~~~ +~~~ +28566509 1024 1 +~~~ +~~~ +28566511 1024 3 +~~~ +~~~ +28566513 1024 7 +~~~ +~~~ +28566515 1024 15 +~~~ +~~~ +28566516 1024 31 +~~~ +~~~ +28566518 1024 63 +~~~ +~~~ +28566520 1024 127 +~~~ +~~~ +28566522 1024 255 +28566523 homeCount = 104 +28566524 waitCount = 44 +28566524 ripCount = 43 +28566525 locktype1 = 1 +28566546 locktype2 = 6 +28566546 locktype3 = 11 +28566547 goalCount = 7 +28566547 goalTotal = 37 +28566548 otherCount = 48 +~~~ +28566549 CURRENTGOAL IS [7] +~~~ +28568685 DOWN 11 +28568685 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28568725 homeCount = 104 +28568726 waitCount = 44 +28568726 ripCount = 43 +28568727 locktype1 = 1 +28568728 locktype2 = 6 +28568728 locktype3 = 11 +28568729 goalCount = 7 +28568729 goalTotal = 37 +28568730 otherCount = 48 +~~~ +28568731 CURRENTGOAL IS [7] +~~~ +28571533 UP 7 +28571533 64 255 +28571553 DOWN 7 +28571553 0 255 +~~~ +~~~ +28571574 outer reward +~~~ +28571574 0 4194559 +~~~ +~~~ +~~~ +~~~ +28571578 0 4194558 +~~~ +~~~ +28571580 0 4194556 +~~~ +~~~ +28571582 0 4194552 +~~~ +~~~ +28571584 0 4194544 +~~~ +~~~ +28571585 0 4194528 +~~~ +~~~ +28571587 0 4194496 +~~~ +~~~ +28571589 0 4194432 +~~~ +~~~ +28571591 0 4194304 +~~~ +~~~ +28571593 0 4194816 +28571594 homeCount = 104 +28571615 waitCount = 44 +28571615 ripCount = 43 +28571616 locktype1 = 1 +28571616 locktype2 = 6 +28571617 locktype3 = 11 +28571617 goalCount = 8 +28571618 goalTotal = 38 +28571618 otherCount = 48 +~~~ +28571624 64 4194816 +28571719 DOWN 7 +28571719 0 4194816 +28571813 64 4194816 +28572024 64 512 +28581184 DOWN 7 +28581184 0 512 +28585695 UP 10 +28585696 waslock = 0 +28585695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28585719 512 16777728 +~~~ +28585869 512 512 +28585923 DOWN 10 +28585923 0 512 +~~~ +~~~ +28585947 0 2560 +~~~ +~~~ +28585948 0 2048 +28585949 homeCount = 105 +28585950 waitCount = 44 +28585950 ripCount = 43 +28585951 locktype1 = 1 +28585951 locktype2 = 6 +28585952 locktype3 = 11 +28585952 goalCount = 8 +28585953 goalTotal = 38 +28585954 otherCount = 48 +~~~ +28585975 UP 10 +28585975 waslock = 0 +28585975 512 2048 +~~~ +28589699 DOWN 10 +28589699 0 2048 +~~~ +~~~ +~~~ +~~~ +28589726 homeCount = 105 +28589726 waitCount = 44 +28589727 ripCount = 43 +28589727 locktype1 = 1 +28589728 locktype2 = 6 +28589728 locktype3 = 11 +28589729 goalCount = 8 +28589729 goalTotal = 38 +28589730 otherCount = 48 +~~~ +28589736 UP 10 +28589737 waslock = 0 +28589736 512 2048 +~~~ +28589793 DOWN 10 +28589793 0 2048 +~~~ +~~~ +~~~ +~~~ +28589817 homeCount = 105 +28589818 waitCount = 44 +28589818 ripCount = 43 +28589819 locktype1 = 1 +28589819 locktype2 = 6 +28589820 locktype3 = 11 +28589820 goalCount = 8 +28589821 goalTotal = 38 +28589821 otherCount = 48 +~~~ +28591883 UP 12 +28591883 2048 2048 +28594999 DOWN 12 +28594999 0 2048 +28595008 UP 12 +28595008 2048 2048 +28596384 CLICK1 +28596384 CLICK2 +~~~ +~~~ +~~~ +28596405 2048 67110912 +~~~ +28596555 2048 2048 +28602879 DOWN 12 +28602879 0 2048 +~~~ +~~~ +28602904 0 0 +~~~ +~~~ +28602906 0 1 +~~~ +~~~ +28602908 0 3 +~~~ +~~~ +28602910 0 7 +~~~ +~~~ +28602912 0 15 +~~~ +~~~ +28602913 0 31 +~~~ +~~~ +28602915 0 63 +~~~ +~~~ +28602917 0 127 +~~~ +~~~ +28602919 0 255 +28602920 homeCount = 105 +28602920 waitCount = 45 +28602921 ripCount = 43 +28602921 locktype1 = 1 +28602922 locktype2 = 6 +28602943 locktype3 = 11 +28602944 goalCount = 8 +28602944 goalTotal = 38 +28602945 otherCount = 48 +~~~ +28602946 CURRENTGOAL IS [7] +~~~ +28602948 UP 12 +28602948 2048 255 +28602980 DOWN 12 +28602980 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603008 UP 12 +28603008 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603014 homeCount = 105 +28603015 waitCount = 45 +28603015 ripCount = 43 +28603016 locktype1 = 1 +28603016 locktype2 = 6 +28603017 locktype3 = 11 +28603017 goalCount = 8 +28603018 goalTotal = 38 +28603018 otherCount = 48 +~~~ +28603020 CURRENTGOAL IS [7] +~~~ +28603548 DOWN 12 +28603548 0 255 +28603564 UP 12 +28603564 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603599 homeCount = 105 +28603599 waitCount = 45 +28603600 ripCount = 43 +28603601 locktype1 = 1 +28603601 locktype2 = 6 +28603602 locktype3 = 11 +28603602 goalCount = 8 +28603603 goalTotal = 38 +28603603 otherCount = 48 +~~~ +28603604 CURRENTGOAL IS [7] +~~~ +28605256 DOWN 12 +28605256 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28605289 homeCount = 105 +28605290 waitCount = 45 +28605290 ripCount = 43 +28605291 locktype1 = 1 +28605291 locktype2 = 6 +28605292 locktype3 = 11 +28605292 goalCount = 8 +28605293 goalTotal = 38 +28605293 otherCount = 48 +~~~ +28605295 CURRENTGOAL IS [7] +~~~ +28605316 UP 12 +28605316 2048 255 +28605340 DOWN 12 +28605340 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28605382 homeCount = 105 +28605382 waitCount = 45 +28605383 ripCount = 43 +28605383 locktype1 = 1 +28605384 locktype2 = 6 +28605384 locktype3 = 11 +28605385 goalCount = 8 +28605385 goalTotal = 38 +28605386 otherCount = 48 +~~~ +28605387 CURRENTGOAL IS [7] +~~~ +28610041 UP 7 +28610041 64 255 +~~~ +~~~ +28610066 outer reward +~~~ +28610066 64 4194559 +~~~ +~~~ +28610080 DOWN 7 +28610080 0 4194559 +~~~ +~~~ +28610104 0 4194558 +~~~ +~~~ +28610106 0 4194556 +~~~ +~~~ +28610108 0 4194552 +~~~ +~~~ +28610110 0 4194544 +~~~ +~~~ +28610112 0 4194528 +~~~ +~~~ +28610113 0 4194496 +~~~ +~~~ +28610115 0 4194432 +~~~ +~~~ +28610117 0 4194304 +~~~ +~~~ +28610119 0 4194816 +28610120 homeCount = 105 +28610120 waitCount = 45 +28610121 ripCount = 43 +28610142 locktype1 = 1 +28610143 locktype2 = 6 +28610143 locktype3 = 11 +28610144 goalCount = 9 +28610144 goalTotal = 39 +28610145 otherCount = 48 +~~~ +28610145 64 4194816 +28610263 DOWN 7 +28610263 0 4194816 +28610325 64 4194816 +28610516 64 512 +28610711 DOWN 7 +28610711 0 512 +28610728 64 512 +28618901 DOWN 7 +28618901 0 512 +28624410 UP 10 +28624410 waslock = 0 +28624410 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28624433 512 16777728 +~~~ +28624583 512 512 +28629207 DOWN 10 +28629207 0 512 +~~~ +~~~ +28629227 0 1536 +~~~ +~~~ +28629229 0 1024 +28629230 homeCount = 106 +28629230 waitCount = 45 +28629231 ripCount = 43 +28629231 locktype1 = 1 +28629232 locktype2 = 6 +28629232 locktype3 = 11 +28629233 goalCount = 9 +28629233 goalTotal = 39 +28629234 otherCount = 48 +~~~ +28629267 UP 10 +28629268 waslock = 0 +28629267 512 1024 +28629281 DOWN 10 +28629281 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28629317 homeCount = 106 +28629318 waitCount = 45 +28629318 ripCount = 43 +28629319 locktype1 = 1 +28629319 locktype2 = 6 +28629320 locktype3 = 11 +28629320 goalCount = 9 +28629321 goalTotal = 39 +28629321 otherCount = 48 +~~~ +28631683 UP 11 +28631683 1024 1024 +28635339 DOWN 11 +28635339 0 1024 +28635349 UP 11 +28635349 1024 1024 +28635683 BEEP1 +28635683 BEEP2 +~~~ +~~~ +~~~ +28635709 1024 33555456 +~~~ +28635859 1024 1024 +28642049 DOWN 11 +28642048 0 1024 +~~~ +~~~ +28642066 0 0 +~~~ +28642067 UP 11 +28642067 1024 0 +~~~ +~~~ +28642069 1024 1 +~~~ +~~~ +28642071 1024 3 +~~~ +~~~ +28642072 1024 7 +~~~ +28642073 1024 15 +~~~ +~~~ +28642075 1024 31 +~~~ +~~~ +28642076 1024 63 +~~~ +~~~ +28642078 1024 127 +~~~ +~~~ +28642080 1024 255 +28642081 homeCount = 106 +28642102 waitCount = 45 +28642102 ripCount = 44 +28642103 locktype1 = 1 +28642103 locktype2 = 6 +28642104 locktype3 = 11 +28642104 goalCount = 9 +28642105 goalTotal = 39 +28642105 otherCount = 48 +~~~ +28642107 CURRENTGOAL IS [7] +~~~ +28642132 DOWN 11 +28642132 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642162 homeCount = 106 +28642162 waitCount = 45 +28642163 ripCount = 44 +28642163 locktype1 = 1 +28642164 locktype2 = 6 +28642164 locktype3 = 11 +28642165 goalCount = 9 +28642165 goalTotal = 39 +28642166 otherCount = 48 +~~~ +28642167 CURRENTGOAL IS [7] +~~~ +28642188 UP 11 +28642188 1024 255 +28642197 DOWN 11 +28642197 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642220 UP 11 +28642220 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642227 homeCount = 106 +28642228 waitCount = 45 +28642228 ripCount = 44 +28642229 locktype1 = 1 +28642229 locktype2 = 6 +28642230 locktype3 = 11 +28642230 goalCount = 9 +28642231 goalTotal = 39 +28642231 otherCount = 48 +~~~ +28642232 CURRENTGOAL IS [7] +~~~ +28642272 DOWN 11 +28642272 0 255 +28642296 UP 11 +28642296 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642313 homeCount = 106 +28642314 waitCount = 45 +28642314 ripCount = 44 +28642315 locktype1 = 1 +28642315 locktype2 = 6 +28642316 locktype3 = 11 +28642316 goalCount = 9 +28642317 goalTotal = 39 +28642317 otherCount = 48 +~~~ +28642318 CURRENTGOAL IS [7] +~~~ +28643982 DOWN 11 +28643982 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28644022 homeCount = 106 +28644022 waitCount = 45 +28644023 ripCount = 44 +28644023 locktype1 = 1 +28644024 locktype2 = 6 +28644024 locktype3 = 11 +28644025 goalCount = 9 +28644025 goalTotal = 39 +28644026 otherCount = 48 +~~~ +28644027 CURRENTGOAL IS [7] +~~~ +28644048 UP 11 +28644048 1024 255 +28644071 DOWN 11 +28644071 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28644112 homeCount = 106 +28644113 waitCount = 45 +28644113 ripCount = 44 +28644114 locktype1 = 1 +28644114 locktype2 = 6 +28644115 locktype3 = 11 +28644115 goalCount = 9 +28644116 goalTotal = 39 +28644116 otherCount = 48 +~~~ +28644118 CURRENTGOAL IS [7] +~~~ +28646624 UP 7 +28646624 64 255 +~~~ +~~~ +28646652 outer reward +~~~ +28646652 64 4194559 +~~~ +~~~ +28646657 outerreps = 6 +~~~ +~~~ +28646820 DOWN 7 +28646820 0 4194559 +~~~ +~~~ +28646837 0 4194558 +~~~ +~~~ +28646838 0 4194556 +~~~ +~~~ +28646840 0 4194552 +~~~ +~~~ +28646842 0 4194544 +~~~ +~~~ +28646844 0 4194528 +~~~ +~~~ +28646846 0 4194496 +~~~ +~~~ +28646848 0 4194432 +~~~ +~~~ +28646849 0 4194304 +~~~ +~~~ +28646851 0 4194816 +28646852 homeCount = 106 +28646853 waitCount = 45 +28646874 ripCount = 44 +28646875 locktype1 = 1 +28646875 locktype2 = 6 +28646876 locktype3 = 11 +28646876 goalCount = 0 +28646877 goalTotal = 40 +28646877 otherCount = 48 +~~~ +28646881 64 4194816 +28647102 64 512 +28654098 DOWN 7 +28654098 0 512 +28654128 64 512 +28655573 DOWN 7 +28655573 0 512 +28659979 UP 10 +28659979 waslock = 0 +28659979 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28660003 512 16777728 +~~~ +28660153 512 512 +28660172 DOWN 10 +28660172 0 512 +~~~ +~~~ +28660192 0 2560 +~~~ +~~~ +28660194 0 2048 +28660195 homeCount = 107 +28660196 waitCount = 45 +28660196 ripCount = 44 +28660197 locktype1 = 1 +28660197 locktype2 = 6 +28660198 locktype3 = 11 +28660198 goalCount = 0 +28660199 goalTotal = 40 +28660199 otherCount = 48 +~~~ +28660221 UP 10 +28660221 waslock = 0 +28660221 512 2048 +~~~ +28664181 DOWN 10 +28664181 0 2048 +~~~ +~~~ +~~~ +~~~ +28664200 homeCount = 107 +28664201 waitCount = 45 +28664201 ripCount = 44 +28664202 locktype1 = 1 +28664202 locktype2 = 6 +28664203 locktype3 = 11 +28664203 goalCount = 0 +28664204 goalTotal = 40 +28664204 otherCount = 48 +~~~ +28664242 UP 10 +28664242 waslock = 0 +28664242 512 2048 +~~~ +28664282 DOWN 10 +28664282 0 2048 +~~~ +~~~ +~~~ +~~~ +28664301 homeCount = 107 +28664301 waitCount = 45 +28664302 ripCount = 44 +28664302 locktype1 = 1 +28664303 locktype2 = 6 +28664303 locktype3 = 11 +28664304 goalCount = 0 +28664304 goalTotal = 40 +28664305 otherCount = 48 +~~~ +28666679 UP 12 +28666679 2048 2048 +28669418 DOWN 12 +28669418 0 2048 +28669421 UP 12 +28669421 2048 2048 +28670180 CLICK1 +28670180 CLICK2 +~~~ +~~~ +~~~ +28670200 2048 67110912 +~~~ +28670350 2048 2048 +28675738 DOWN 12 +28675738 0 2048 +28675753 UP 12 +28675753 2048 2048 +~~~ +~~~ +28675758 2048 0 +~~~ +~~~ +28675760 2048 1 +~~~ +~~~ +28675761 2048 3 +~~~ +~~~ +28675763 2048 7 +~~~ +~~~ +28675765 2048 15 +~~~ +~~~ +28675767 2048 31 +~~~ +~~~ +28675769 2048 63 +~~~ +~~~ +28675771 2048 127 +~~~ +~~~ +28675772 2048 255 +28675773 homeCount = 107 +28675774 waitCount = 46 +28675775 ripCount = 44 +28675796 locktype1 = 1 +28675796 locktype2 = 6 +28675797 locktype3 = 11 +28675797 goalCount = 0 +28675798 goalTotal = 40 +28675798 otherCount = 48 +~~~ +28675799 CURRENTGOAL IS [8] +~~~ +28675955 DOWN 12 +28675955 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28675995 homeCount = 107 +28675996 waitCount = 46 +28675996 ripCount = 44 +28675997 locktype1 = 1 +28675997 locktype2 = 6 +28675998 locktype3 = 11 +28675998 goalCount = 0 +28675999 goalTotal = 40 +28675999 otherCount = 48 +~~~ +28676000 CURRENTGOAL IS [8] +~~~ +28676059 UP 12 +28676058 2048 255 +28676099 DOWN 12 +28676099 0 255 +28676107 UP 12 +28676107 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676134 homeCount = 107 +28676135 waitCount = 46 +28676135 ripCount = 44 +28676136 locktype1 = 1 +28676136 locktype2 = 6 +28676137 locktype3 = 11 +28676137 goalCount = 0 +28676138 goalTotal = 40 +28676138 otherCount = 48 +~~~ +28676139 CURRENTGOAL IS [8] +~~~ +28676193 DOWN 12 +28676193 0 255 +~~~ +~~~ +~~~ +28676221 UP 12 +28676221 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676236 homeCount = 107 +28676236 waitCount = 46 +28676237 ripCount = 44 +28676238 locktype1 = 1 +28676238 locktype2 = 6 +28676239 locktype3 = 11 +28676239 goalCount = 0 +28676240 goalTotal = 40 +28676240 otherCount = 48 +~~~ +28676241 CURRENTGOAL IS [8] +~~~ +28676262 DOWN 12 +28676262 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676294 homeCount = 107 +28676294 waitCount = 46 +28676295 ripCount = 44 +28676296 locktype1 = 1 +28676296 locktype2 = 6 +28676297 locktype3 = 11 +28676297 goalCount = 0 +28676298 goalTotal = 40 +28676298 otherCount = 48 +~~~ +28676299 CURRENTGOAL IS [8] +~~~ +28676341 UP 12 +28676341 2048 255 +28676567 DOWN 12 +28676567 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676604 homeCount = 107 +28676605 waitCount = 46 +28676606 ripCount = 44 +28676606 locktype1 = 1 +28676607 locktype2 = 6 +28676607 locktype3 = 11 +28676608 goalCount = 0 +28676608 goalTotal = 40 +28676609 otherCount = 48 +~~~ +28676610 CURRENTGOAL IS [8] +~~~ +28676631 UP 12 +28676631 2048 255 +28676674 DOWN 12 +28676674 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676715 homeCount = 107 +28676716 waitCount = 46 +28676717 ripCount = 44 +28676717 locktype1 = 1 +28676718 locktype2 = 6 +28676718 locktype3 = 11 +28676719 goalCount = 0 +28676719 goalTotal = 40 +28676720 otherCount = 48 +~~~ +28676721 CURRENTGOAL IS [8] +~~~ +28676794 UP 12 +28676794 2048 255 +28676813 DOWN 12 +28676813 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676847 homeCount = 107 +28676848 waitCount = 46 +28676848 ripCount = 44 +28676849 locktype1 = 1 +28676849 locktype2 = 6 +28676850 locktype3 = 11 +28676850 goalCount = 0 +28676851 goalTotal = 40 +28676851 otherCount = 48 +~~~ +28676853 CURRENTGOAL IS [8] +~~~ +28681987 UP 7 +28681987 64 255 +~~~ +~~~ +28682178 DOWN 7 +28682178 0 255 +~~~ +~~~ +28682199 0 254 +~~~ +~~~ +28682201 0 252 +~~~ +~~~ +28682203 0 248 +~~~ +~~~ +28682205 0 240 +~~~ +~~~ +28682206 0 224 +~~~ +~~~ +28682208 0 192 +~~~ +~~~ +28682210 0 128 +~~~ +~~~ +28682212 0 0 +~~~ +~~~ +28682214 0 512 +28682215 homeCount = 107 +28682215 waitCount = 46 +28682216 ripCount = 44 +28682216 locktype1 = 1 +28682237 locktype2 = 6 +28682237 locktype3 = 11 +28682238 goalCount = 0 +28682238 goalTotal = 40 +28682239 otherCount = 49 +~~~ +28682242 64 512 +28682805 DOWN 7 +28682805 0 512 +28687242 UP 10 +28687242 waslock = 0 +28687242 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28687267 512 16777728 +~~~ +28687417 512 512 +28692614 DOWN 10 +28692614 0 512 +~~~ +~~~ +28692630 0 1536 +~~~ +~~~ +28692632 0 1024 +28692633 homeCount = 108 +28692633 waitCount = 46 +28692634 ripCount = 44 +28692634 locktype1 = 1 +28692635 locktype2 = 6 +28692635 locktype3 = 11 +28692636 goalCount = 0 +28692636 goalTotal = 40 +28692637 otherCount = 49 +~~~ +28722460 UP 5 +28722460 16 1024 +~~~ +28722481 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +28722485 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28722793 DOWN 5 +28722793 0 0 +28722950 16 0 +28723527 DOWN 5 +28723527 0 0 +28723945 16 0 +28723961 DOWN 5 +28723961 0 0 +28731390 512 0 +28731607 0 0 +28734719 512 0 +28740000 0 0 +28740067 512 0 +28740107 0 0 +28747481 LOCKEND +~~~ +~~~ +~~~ +28747502 0 512 +28779978 UP 10 +28779978 waslock = 0 +28779978 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28780008 512 16777728 +~~~ +28780038 DOWN 10 +28780038 0 16777728 +~~~ +~~~ +28780067 0 16779776 +~~~ +~~~ +28780069 0 16779264 +28780070 homeCount = 109 +28780070 waitCount = 46 +28780071 ripCount = 44 +28780071 locktype1 = 1 +28780072 locktype2 = 7 +28780072 locktype3 = 11 +28780073 goalCount = 0 +28780073 goalTotal = 40 +28780074 otherCount = 49 +~~~ +28780103 UP 10 +28780103 waslock = 0 +28780103 512 16779264 +28780132 DOWN 10 +28780132 0 16779264 +~~~ +~~~ +~~~ +~~~ +~~~ +28780155 homeCount = 109 +28780155 waitCount = 46 +28780156 ripCount = 44 +28780156 locktype1 = 1 +28780157 locktype2 = 7 +28780157 locktype3 = 11 +28780158 goalCount = 0 +28780158 goalTotal = 40 +28780159 otherCount = 49 +~~~ +28780159 0 2048 +28780313 UP 10 +28780314 waslock = 0 +28780313 512 2048 +~~~ +28780367 DOWN 10 +28780367 0 2048 +~~~ +~~~ +~~~ +~~~ +28780397 homeCount = 109 +28780397 waitCount = 46 +28780398 ripCount = 44 +28780398 locktype1 = 1 +28780399 locktype2 = 7 +28780399 locktype3 = 11 +28780400 goalCount = 0 +28780400 goalTotal = 40 +28780401 otherCount = 49 +~~~ +28780413 UP 10 +28780414 waslock = 0 +28780413 512 2048 +~~~ +28780850 DOWN 10 +28780850 0 2048 +~~~ +~~~ +~~~ +~~~ +28780875 homeCount = 109 +28780875 waitCount = 46 +28780876 ripCount = 44 +28780877 locktype1 = 1 +28780877 locktype2 = 7 +28780878 locktype3 = 11 +28780878 goalCount = 0 +28780879 goalTotal = 40 +28780879 otherCount = 49 +~~~ +28780890 UP 10 +28780890 waslock = 0 +28780890 512 2048 +28780908 DOWN 10 +28780908 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28780933 homeCount = 109 +28780933 waitCount = 46 +28780934 ripCount = 44 +28780934 locktype1 = 1 +28780935 locktype2 = 7 +28780935 locktype3 = 11 +28780936 goalCount = 0 +28780936 goalTotal = 40 +28780937 otherCount = 49 +~~~ +28781017 UP 10 +28781017 waslock = 0 +28781017 512 2048 +28781032 DOWN 10 +28781032 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28781058 homeCount = 109 +28781058 waitCount = 46 +28781059 ripCount = 44 +28781059 locktype1 = 1 +28781060 locktype2 = 7 +28781060 locktype3 = 11 +28781061 goalCount = 0 +28781061 goalTotal = 40 +28781062 otherCount = 49 +~~~ +28781144 UP 10 +28781144 waslock = 0 +28781144 512 2048 +28781154 DOWN 10 +28781154 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28781175 homeCount = 109 +28781176 waitCount = 46 +28781176 ripCount = 44 +28781177 locktype1 = 1 +28781177 locktype2 = 7 +28781178 locktype3 = 11 +28781178 goalCount = 0 +28781179 goalTotal = 40 +28781179 otherCount = 49 +~~~ +28781262 UP 10 +28781263 waslock = 0 +28781262 512 2048 +~~~ +28783973 DOWN 10 +28783973 0 2048 +~~~ +~~~ +~~~ +~~~ +28783999 homeCount = 109 +28783999 waitCount = 46 +28784000 ripCount = 44 +28784000 locktype1 = 1 +28784001 locktype2 = 7 +28784001 locktype3 = 11 +28784002 goalCount = 0 +28784002 goalTotal = 40 +28784003 otherCount = 49 +~~~ +28784018 UP 10 +28784019 waslock = 0 +28784018 512 2048 +~~~ +28784075 DOWN 10 +28784075 0 2048 +~~~ +~~~ +~~~ +~~~ +28784099 homeCount = 109 +28784099 waitCount = 46 +28784100 ripCount = 44 +28784100 locktype1 = 1 +28784101 locktype2 = 7 +28784101 locktype3 = 11 +28784102 goalCount = 0 +28784103 goalTotal = 40 +28784103 otherCount = 49 +~~~ +28797858 UP 1 +28797858 1 2048 +28797882 DOWN 1 +28797882 0 2048 +~~~ +28797884 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28797889 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28797959 1 0 +28798533 DOWN 1 +28798533 0 0 +28805298 512 0 +28805377 0 0 +28805484 512 0 +28805569 0 0 +28812038 512 0 +28812315 0 0 +28812347 512 0 +28812391 0 0 +28812415 512 0 +28812432 0 0 +28822884 LOCKEND +~~~ +~~~ +~~~ +28822907 0 512 +28824977 UP 10 +28824977 waslock = 0 +28824977 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28825010 512 16777728 +~~~ +28825030 DOWN 10 +28825030 0 16777728 +~~~ +~~~ +28825053 0 16778752 +~~~ +~~~ +28825055 0 16778240 +28825056 homeCount = 110 +28825057 waitCount = 46 +28825057 ripCount = 44 +28825058 locktype1 = 1 +28825058 locktype2 = 8 +28825059 locktype3 = 11 +28825059 goalCount = 0 +28825060 goalTotal = 40 +28825060 otherCount = 49 +~~~ +28825081 UP 10 +28825082 waslock = 0 +28825081 512 16778240 +~~~ +28825160 512 1024 +28829576 DOWN 10 +28829576 0 1024 +~~~ +~~~ +~~~ +~~~ +28829597 homeCount = 110 +28829597 waitCount = 46 +28829598 ripCount = 44 +28829599 locktype1 = 1 +28829599 locktype2 = 8 +28829600 locktype3 = 11 +28829600 goalCount = 0 +28829601 goalTotal = 40 +28829601 otherCount = 49 +~~~ +28829635 UP 10 +28829635 waslock = 0 +28829635 512 1024 +~~~ +28829692 DOWN 10 +28829692 0 1024 +~~~ +~~~ +~~~ +~~~ +28829717 homeCount = 110 +28829717 waitCount = 46 +28829718 ripCount = 44 +28829718 locktype1 = 1 +28829719 locktype2 = 8 +28829719 locktype3 = 11 +28829720 goalCount = 0 +28829720 goalTotal = 40 +28829721 otherCount = 49 +~~~ +28829775 UP 10 +28829775 waslock = 0 +28829775 512 1024 +~~~ +28829802 DOWN 10 +28829802 0 1024 +~~~ +~~~ +~~~ +~~~ +28829831 homeCount = 110 +28829832 waitCount = 46 +28829832 ripCount = 44 +28829833 locktype1 = 1 +28829833 locktype2 = 8 +28829834 locktype3 = 11 +28829834 goalCount = 0 +28829835 goalTotal = 40 +28829835 otherCount = 49 +~~~ +28832575 UP 11 +28832575 1024 1024 +28836075 BEEP1 +28836075 BEEP2 +~~~ +~~~ +~~~ +28836096 1024 33555456 +~~~ +28836246 1024 1024 +28842504 DOWN 11 +28842504 0 1024 +~~~ +28842524 UP 11 +28842524 1024 1024 +~~~ +~~~ +28842526 1024 0 +~~~ +~~~ +28842527 1024 1 +~~~ +28842529 1024 3 +~~~ +~~~ +28842530 1024 7 +~~~ +~~~ +28842532 1024 15 +~~~ +~~~ +28842534 1024 31 +~~~ +~~~ +28842536 1024 63 +~~~ +~~~ +28842537 1024 127 +~~~ +~~~ +28842539 1024 255 +28842540 homeCount = 110 +28842561 waitCount = 46 +28842562 ripCount = 45 +28842562 locktype1 = 1 +28842563 locktype2 = 8 +28842563 locktype3 = 11 +28842564 goalCount = 0 +28842564 goalTotal = 40 +28842565 otherCount = 49 +~~~ +28842566 CURRENTGOAL IS [8] +~~~ +28842627 DOWN 11 +28842627 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28842665 homeCount = 110 +28842666 waitCount = 46 +28842666 ripCount = 45 +28842667 locktype1 = 1 +28842667 locktype2 = 8 +28842668 locktype3 = 11 +28842668 goalCount = 0 +28842669 goalTotal = 40 +28842669 otherCount = 49 +~~~ +28842670 CURRENTGOAL IS [8] +~~~ +28842708 UP 11 +28842708 1024 255 +28842766 DOWN 11 +28842766 0 255 +28842777 UP 11 +28842777 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28842817 homeCount = 110 +28842818 waitCount = 46 +28842819 ripCount = 45 +28842819 locktype1 = 1 +28842820 locktype2 = 8 +28842820 locktype3 = 11 +28842821 goalCount = 0 +28842821 goalTotal = 40 +28842822 otherCount = 49 +~~~ +28842823 CURRENTGOAL IS [8] +~~~ +28844915 DOWN 11 +28844915 0 255 +28844936 UP 11 +28844936 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28844956 homeCount = 110 +28844956 waitCount = 46 +28844957 ripCount = 45 +28844957 locktype1 = 1 +28844958 locktype2 = 8 +28844958 locktype3 = 11 +28844959 goalCount = 0 +28844959 goalTotal = 40 +28844960 otherCount = 49 +~~~ +28844961 CURRENTGOAL IS [8] +~~~ +28845000 DOWN 11 +28845000 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28845037 homeCount = 110 +28845037 waitCount = 46 +28845038 ripCount = 45 +28845038 locktype1 = 1 +28845039 locktype2 = 8 +28845039 locktype3 = 11 +28845040 goalCount = 0 +28845040 goalTotal = 40 +28845041 otherCount = 49 +~~~ +28845042 CURRENTGOAL IS [8] +~~~ +28848013 UP 6 +28848013 32 255 +~~~ +~~~ +28848533 DOWN 6 +28848533 0 255 +~~~ +~~~ +28848550 0 254 +~~~ +~~~ +28848552 0 252 +~~~ +~~~ +28848554 0 248 +~~~ +~~~ +28848556 0 240 +~~~ +~~~ +28848558 0 224 +~~~ +~~~ +28848560 0 192 +~~~ +~~~ +28848561 0 128 +~~~ +~~~ +28848563 0 0 +~~~ +~~~ +28848565 0 512 +28848566 homeCount = 110 +28848567 waitCount = 46 +28848567 ripCount = 45 +28848568 locktype1 = 1 +28848589 locktype2 = 8 +28848589 locktype3 = 11 +28848590 goalCount = 0 +28848590 goalTotal = 40 +28848591 otherCount = 50 +~~~ +28853286 UP 10 +28853286 waslock = 0 +28853285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28853310 512 16777728 +~~~ +28853460 512 512 +28853551 DOWN 10 +28853551 0 512 +~~~ +~~~ +28853578 0 2560 +~~~ +~~~ +28853580 0 2048 +28853581 homeCount = 111 +28853582 waitCount = 46 +28853582 ripCount = 45 +28853583 locktype1 = 1 +28853583 locktype2 = 8 +28853584 locktype3 = 11 +28853584 goalCount = 0 +28853585 goalTotal = 40 +28853585 otherCount = 50 +~~~ +28853607 UP 10 +28853607 waslock = 0 +28853607 512 2048 +~~~ +28858404 DOWN 10 +28858404 0 2048 +~~~ +~~~ +~~~ +~~~ +28858432 homeCount = 111 +28858433 waitCount = 46 +28858433 ripCount = 45 +28858434 locktype1 = 1 +28858434 locktype2 = 8 +28858435 locktype3 = 11 +28858435 goalCount = 0 +28858436 goalTotal = 40 +28858436 otherCount = 50 +~~~ +28860886 UP 12 +28860886 2048 2048 +28863790 DOWN 12 +28863790 0 2048 +28863828 UP 12 +28863828 2048 2048 +28863856 DOWN 12 +28863856 0 2048 +28863886 CLICK1 +28863886 CLICK2 +~~~ +~~~ +~~~ +28863919 0 67110912 +~~~ +28863922 UP 12 +28863922 2048 67110912 +28864069 2048 2048 +28864196 DOWN 12 +28864196 0 2048 +~~~ +~~~ +28864220 0 0 +~~~ +~~~ +28864222 0 1 +~~~ +~~~ +28864224 0 3 +~~~ +~~~ +28864226 0 7 +~~~ +~~~ +28864228 0 15 +~~~ +~~~ +28864229 0 31 +~~~ +~~~ +28864231 0 63 +~~~ +~~~ +28864233 0 127 +~~~ +~~~ +28864235 0 255 +28864236 homeCount = 111 +28864236 waitCount = 47 +28864237 ripCount = 45 +28864238 locktype1 = 1 +28864238 locktype2 = 8 +28864259 locktype3 = 11 +28864260 goalCount = 0 +28864260 goalTotal = 40 +28864261 otherCount = 50 +~~~ +28864262 CURRENTGOAL IS [8] +~~~ +28864299 UP 12 +28864299 2048 255 +28870550 DOWN 12 +28870550 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28870587 homeCount = 111 +28870587 waitCount = 47 +28870588 ripCount = 45 +28870588 locktype1 = 1 +28870589 locktype2 = 8 +28870589 locktype3 = 11 +28870590 goalCount = 0 +28870590 goalTotal = 40 +28870591 otherCount = 50 +~~~ +28870592 CURRENTGOAL IS [8] +~~~ +28870613 UP 12 +28870613 2048 255 +28870653 DOWN 12 +28870653 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28870688 homeCount = 111 +28870689 waitCount = 47 +28870689 ripCount = 45 +28870690 locktype1 = 1 +28870690 locktype2 = 8 +28870691 locktype3 = 11 +28870692 goalCount = 0 +28870692 goalTotal = 40 +28870693 otherCount = 50 +~~~ +28870694 CURRENTGOAL IS [8] +~~~ +28874529 UP 4 +28874529 8 255 +~~~ +~~~ +28875631 DOWN 4 +28875631 0 255 +~~~ +~~~ +28875652 0 254 +~~~ +~~~ +28875654 0 252 +~~~ +~~~ +28875655 0 248 +~~~ +~~~ +28875657 0 240 +~~~ +~~~ +28875659 0 224 +~~~ +~~~ +28875661 0 192 +~~~ +~~~ +28875663 0 128 +~~~ +~~~ +28875664 0 0 +~~~ +~~~ +28875666 0 512 +28875667 homeCount = 111 +28875668 waitCount = 47 +28875668 ripCount = 45 +28875669 locktype1 = 1 +28875690 locktype2 = 8 +28875691 locktype3 = 11 +28875691 goalCount = 0 +28875692 goalTotal = 40 +28875692 otherCount = 51 +~~~ +28883393 UP 10 +28883394 waslock = 0 +28883393 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28883422 512 16777728 +~~~ +28883439 DOWN 10 +28883439 0 16777728 +~~~ +~~~ +28883466 0 16779776 +~~~ +~~~ +28883468 0 16779264 +28883469 homeCount = 112 +28883470 waitCount = 47 +28883470 ripCount = 45 +28883471 locktype1 = 1 +28883471 locktype2 = 8 +28883472 locktype3 = 11 +28883472 goalCount = 0 +28883473 goalTotal = 40 +28883473 otherCount = 51 +~~~ +28883509 UP 10 +28883509 waslock = 0 +28883509 512 16779264 +~~~ +28883572 512 2048 +28883585 DOWN 10 +28883585 0 2048 +~~~ +~~~ +~~~ +~~~ +28883605 homeCount = 112 +28883605 waitCount = 47 +28883606 ripCount = 45 +28883606 locktype1 = 1 +28883607 locktype2 = 8 +28883607 locktype3 = 11 +28883608 goalCount = 0 +28883608 goalTotal = 40 +28883609 otherCount = 51 +~~~ +28883764 UP 10 +28883764 waslock = 0 +28883764 512 2048 +~~~ +28888011 DOWN 10 +28888011 0 2048 +~~~ +~~~ +~~~ +~~~ +28888031 homeCount = 112 +28888032 waitCount = 47 +28888032 ripCount = 45 +28888033 locktype1 = 1 +28888033 locktype2 = 8 +28888034 locktype3 = 11 +28888034 goalCount = 0 +28888035 goalTotal = 40 +28888035 otherCount = 51 +~~~ +28888049 UP 10 +28888050 waslock = 0 +28888049 512 2048 +~~~ +28888103 DOWN 10 +28888103 0 2048 +~~~ +~~~ +~~~ +~~~ +28888134 homeCount = 112 +28888134 waitCount = 47 +28888135 ripCount = 45 +28888135 locktype1 = 1 +28888136 locktype2 = 8 +28888136 locktype3 = 11 +28888137 goalCount = 0 +28888137 goalTotal = 40 +28888138 otherCount = 51 +~~~ +28890034 UP 12 +28890034 2048 2048 +28893690 DOWN 12 +28893690 0 2048 +28893790 UP 12 +28893790 2048 2048 +28893861 DOWN 12 +28893861 0 2048 +28893878 UP 12 +28893878 2048 2048 +28893921 DOWN 12 +28893921 0 2048 +28893942 UP 12 +28893942 2048 2048 +28893949 DOWN 12 +28893949 0 2048 +28893954 UP 12 +28893954 2048 2048 +28893964 DOWN 12 +28893964 0 2048 +28893989 UP 12 +28893989 2048 2048 +28898611 DOWN 12 +28898611 0 2048 +28898680 UP 12 +28898680 2048 2048 +28899034 CLICK1 +28899034 CLICK2 +~~~ +~~~ +~~~ +28899062 2048 67110912 +~~~ +28899212 2048 2048 +28908224 DOWN 12 +28908224 0 2048 +~~~ +~~~ +28908245 0 0 +~~~ +~~~ +28908247 0 1 +~~~ +~~~ +28908249 0 3 +~~~ +~~~ +28908251 0 7 +~~~ +~~~ +28908253 0 15 +~~~ +~~~ +28908255 0 31 +~~~ +~~~ +28908256 0 63 +~~~ +~~~ +28908258 0 127 +~~~ +~~~ +28908260 0 255 +28908261 homeCount = 112 +28908262 waitCount = 48 +28908262 ripCount = 45 +28908263 locktype1 = 1 +28908263 locktype2 = 8 +28908284 locktype3 = 11 +28908285 goalCount = 0 +28908285 goalTotal = 40 +28908286 otherCount = 51 +~~~ +28908287 CURRENTGOAL IS [8] +~~~ +28908287 UP 12 +28908287 2048 255 +28908312 DOWN 12 +28908312 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28908355 homeCount = 112 +28908356 waitCount = 48 +28908356 ripCount = 45 +28908357 locktype1 = 1 +28908357 locktype2 = 8 +28908358 locktype3 = 11 +28908358 goalCount = 0 +28908359 goalTotal = 40 +28908359 otherCount = 51 +~~~ +28908361 CURRENTGOAL IS [8] +~~~ +28912740 UP 1 +28912740 1 255 +~~~ +~~~ +28913834 DOWN 1 +28913834 0 255 +~~~ +~~~ +28913860 0 254 +~~~ +~~~ +28913862 0 252 +~~~ +~~~ +28913864 0 248 +~~~ +~~~ +28913866 0 240 +~~~ +~~~ +28913867 0 224 +~~~ +~~~ +28913869 0 192 +~~~ +~~~ +28913871 0 128 +~~~ +~~~ +28913873 0 0 +~~~ +~~~ +28913875 0 512 +28913876 homeCount = 112 +28913876 waitCount = 48 +28913877 ripCount = 45 +28913877 locktype1 = 1 +28913878 locktype2 = 8 +28913899 locktype3 = 11 +28913899 goalCount = 0 +28913900 goalTotal = 40 +28913900 otherCount = 52 +~~~ +28917360 UP 10 +28917360 waslock = 0 +28917360 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28917386 512 16777728 +~~~ +28917536 512 512 +28923452 DOWN 10 +28923452 0 512 +28923462 UP 10 +28923462 waslock = 0 +28923462 512 512 +~~~ +~~~ +28923482 512 2560 +~~~ +~~~ +28923484 512 2048 +28923485 homeCount = 113 +28923486 waitCount = 48 +28923486 ripCount = 45 +28923487 locktype1 = 1 +28923487 locktype2 = 8 +28923488 locktype3 = 11 +28923488 goalCount = 0 +28923489 goalTotal = 40 +28923489 otherCount = 52 +~~~ +~~~ +28923558 DOWN 10 +28923558 0 2048 +~~~ +~~~ +~~~ +~~~ +28923583 homeCount = 113 +28923584 waitCount = 48 +28923584 ripCount = 45 +28923585 locktype1 = 1 +28923585 locktype2 = 8 +28923586 locktype3 = 11 +28923586 goalCount = 0 +28923587 goalTotal = 40 +28923587 otherCount = 52 +~~~ +28923618 UP 10 +28923619 waslock = 0 +28923618 512 2048 +~~~ +28923656 DOWN 10 +28923656 0 2048 +~~~ +~~~ +~~~ +~~~ +28923679 homeCount = 113 +28923680 waitCount = 48 +28923680 ripCount = 45 +28923681 locktype1 = 1 +28923681 locktype2 = 8 +28923682 locktype3 = 11 +28923682 goalCount = 0 +28923683 goalTotal = 40 +28923683 otherCount = 52 +~~~ +28925345 UP 12 +28925345 2048 2048 +28926820 DOWN 12 +28926820 0 2048 +28926832 UP 12 +28926832 2048 2048 +28927113 DOWN 12 +28927113 0 2048 +28927174 UP 12 +28927174 2048 2048 +28928345 CLICK1 +28928345 CLICK2 +~~~ +~~~ +~~~ +28928364 2048 67110912 +~~~ +28928481 DOWN 12 +28928481 0 67110912 +28928514 0 2048 +28928534 UP 12 +28928534 2048 2048 +28928545 DOWN 12 +28928545 0 2048 +~~~ +~~~ +28928551 0 0 +~~~ +~~~ +28928553 0 1 +~~~ +~~~ +28928555 0 3 +~~~ +~~~ +28928557 0 7 +~~~ +~~~ +28928558 0 15 +~~~ +~~~ +28928560 0 31 +~~~ +~~~ +28928562 0 63 +~~~ +~~~ +28928564 0 127 +~~~ +~~~ +28928566 0 255 +28928567 homeCount = 113 +28928567 waitCount = 49 +28928568 ripCount = 45 +28928568 locktype1 = 1 +28928569 locktype2 = 8 +28928590 locktype3 = 11 +28928590 goalCount = 0 +28928591 goalTotal = 40 +28928592 otherCount = 52 +~~~ +28928593 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28928600 homeCount = 113 +28928621 waitCount = 49 +28928621 ripCount = 45 +28928622 locktype1 = 1 +28928622 locktype2 = 8 +28928623 locktype3 = 11 +28928623 goalCount = 0 +28928624 goalTotal = 40 +28928624 otherCount = 52 +~~~ +28928625 CURRENTGOAL IS [8] +~~~ +28928626 UP 12 +28928626 2048 255 +28934970 DOWN 12 +28934970 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28935004 homeCount = 113 +28935004 waitCount = 49 +28935005 ripCount = 45 +28935006 locktype1 = 1 +28935006 locktype2 = 8 +28935007 locktype3 = 11 +28935007 goalCount = 0 +28935008 goalTotal = 40 +28935008 otherCount = 52 +~~~ +28935009 CURRENTGOAL IS [8] +~~~ +28935030 UP 12 +28935030 2048 255 +28935063 DOWN 12 +28935063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28935104 homeCount = 113 +28935104 waitCount = 49 +28935105 ripCount = 45 +28935105 locktype1 = 1 +28935106 locktype2 = 8 +28935107 locktype3 = 11 +28935107 goalCount = 0 +28935108 goalTotal = 40 +28935108 otherCount = 52 +~~~ +28935109 CURRENTGOAL IS [8] +~~~ +28939803 UP 4 +28939803 8 255 +~~~ +~~~ +28940719 DOWN 4 +28940719 0 255 +~~~ +~~~ +28940736 0 254 +~~~ +~~~ +28940738 0 252 +~~~ +~~~ +28940740 0 248 +~~~ +~~~ +28940741 0 240 +~~~ +~~~ +28940743 0 224 +~~~ +~~~ +28940745 0 192 +~~~ +~~~ +28940747 0 128 +~~~ +~~~ +28940749 0 0 +~~~ +~~~ +28940751 0 512 +28940752 homeCount = 113 +28940752 waitCount = 49 +28940753 ripCount = 45 +28940753 locktype1 = 1 +28940774 locktype2 = 8 +28940775 locktype3 = 11 +28940775 goalCount = 0 +28940776 goalTotal = 40 +28940776 otherCount = 53 +~~~ +28940844 8 512 +28941165 DOWN 4 +28941165 0 512 +28944970 UP 10 +28944970 waslock = 0 +28944970 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28944999 512 16777728 +~~~ +28945149 512 512 +28945191 DOWN 10 +28945191 0 512 +~~~ +~~~ +28945214 0 1536 +~~~ +~~~ +28945216 0 1024 +28945217 homeCount = 114 +28945217 waitCount = 49 +28945218 ripCount = 45 +28945218 locktype1 = 1 +28945219 locktype2 = 8 +28945219 locktype3 = 11 +28945220 goalCount = 0 +28945220 goalTotal = 40 +28945221 otherCount = 53 +~~~ +28945242 UP 10 +28945242 waslock = 0 +28945242 512 1024 +~~~ +28952252 DOWN 10 +28952252 0 1024 +~~~ +~~~ +~~~ +~~~ +28952276 homeCount = 114 +28952276 waitCount = 49 +28952277 ripCount = 45 +28952277 locktype1 = 1 +28952278 locktype2 = 8 +28952278 locktype3 = 11 +28952279 goalCount = 0 +28952279 goalTotal = 40 +28952280 otherCount = 53 +~~~ +28954847 UP 11 +28954847 1024 1024 +28958772 DOWN 11 +28958772 0 1024 +28958793 UP 11 +28958793 1024 1024 +28958938 DOWN 11 +28958938 0 1024 +28958951 UP 11 +28958951 1024 1024 +28962347 BEEP1 +28962347 BEEP2 +~~~ +~~~ +~~~ +28962376 1024 33555456 +~~~ +28962526 1024 1024 +28969334 DOWN 11 +28969334 0 1024 +~~~ +~~~ +28969353 0 0 +~~~ +~~~ +28969355 0 1 +~~~ +~~~ +28969357 0 3 +~~~ +~~~ +28969359 0 7 +~~~ +~~~ +28969361 0 15 +~~~ +~~~ +28969363 0 31 +~~~ +~~~ +28969364 0 63 +~~~ +~~~ +28969366 0 127 +~~~ +~~~ +28969368 0 255 +28969369 homeCount = 114 +28969370 waitCount = 49 +28969370 ripCount = 46 +28969371 locktype1 = 1 +28969371 locktype2 = 8 +28969392 locktype3 = 11 +28969393 goalCount = 0 +28969393 goalTotal = 40 +28969394 otherCount = 53 +~~~ +28969395 CURRENTGOAL IS [8] +~~~ +28969395 UP 11 +28969395 1024 255 +28969432 DOWN 11 +28969432 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28969472 homeCount = 114 +28969472 waitCount = 49 +28969473 ripCount = 46 +28969473 locktype1 = 1 +28969474 locktype2 = 8 +28969474 locktype3 = 11 +28969475 goalCount = 0 +28969475 goalTotal = 40 +28969476 otherCount = 53 +~~~ +28969477 CURRENTGOAL IS [8] +~~~ +28972662 UP 7 +28972662 64 255 +~~~ +~~~ +28973269 DOWN 7 +28973269 0 255 +~~~ +~~~ +28973295 0 254 +~~~ +~~~ +28973297 0 252 +~~~ +~~~ +28973299 0 248 +~~~ +~~~ +28973301 0 240 +~~~ +~~~ +28973303 0 224 +~~~ +~~~ +28973305 0 192 +~~~ +~~~ +28973306 0 128 +~~~ +~~~ +28973308 0 0 +~~~ +~~~ +28973310 0 512 +28973311 homeCount = 114 +28973312 waitCount = 49 +28973312 ripCount = 46 +28973313 locktype1 = 1 +28973313 locktype2 = 8 +28973334 locktype3 = 11 +28973335 goalCount = 0 +28973335 goalTotal = 40 +28973336 otherCount = 54 +~~~ +28977764 UP 10 +28977764 waslock = 0 +28977764 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28977794 512 16777728 +~~~ +28977944 512 512 +28978037 DOWN 10 +28978037 0 512 +~~~ +~~~ +28978059 0 2560 +~~~ +~~~ +28978060 0 2048 +28978061 homeCount = 115 +28978062 waitCount = 49 +28978063 ripCount = 46 +28978063 locktype1 = 1 +28978064 locktype2 = 8 +28978064 locktype3 = 11 +28978065 goalCount = 0 +28978065 goalTotal = 40 +28978066 otherCount = 54 +~~~ +28978087 UP 10 +28978087 waslock = 0 +28978087 512 2048 +~~~ +28978234 DOWN 10 +28978234 0 2048 +28978250 UP 10 +28978250 waslock = 0 +28978250 512 2048 +~~~ +~~~ +~~~ +~~~ +28978273 homeCount = 115 +28978273 waitCount = 49 +28978274 ripCount = 46 +28978275 locktype1 = 1 +28978275 locktype2 = 8 +28978276 locktype3 = 11 +28978276 goalCount = 0 +28978277 goalTotal = 40 +28978277 otherCount = 54 +~~~ +~~~ +28978477 DOWN 10 +28978477 0 2048 +~~~ +~~~ +~~~ +~~~ +28978501 homeCount = 115 +28978501 waitCount = 49 +28978502 ripCount = 46 +28978502 locktype1 = 1 +28978503 locktype2 = 8 +28978503 locktype3 = 11 +28978504 goalCount = 0 +28978504 goalTotal = 40 +28978505 otherCount = 54 +~~~ +28978551 UP 10 +28978551 waslock = 0 +28978551 512 2048 +28978570 DOWN 10 +28978570 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28978599 homeCount = 115 +28978600 waitCount = 49 +28978600 ripCount = 46 +28978601 locktype1 = 1 +28978601 locktype2 = 8 +28978602 locktype3 = 11 +28978602 goalCount = 0 +28978603 goalTotal = 40 +28978603 otherCount = 54 +~~~ +28978681 UP 10 +28978681 waslock = 0 +28978681 512 2048 +~~~ +28985257 DOWN 10 +28985257 0 2048 +~~~ +~~~ +~~~ +~~~ +28985282 homeCount = 115 +28985282 waitCount = 49 +28985283 ripCount = 46 +28985283 locktype1 = 1 +28985284 locktype2 = 8 +28985284 locktype3 = 11 +28985285 goalCount = 0 +28985286 goalTotal = 40 +28985286 otherCount = 54 +~~~ +28995900 UP 12 +28995900 2048 2048 +28997144 DOWN 12 +28997144 0 2048 +28997344 LOCKOUT 3 +28997347 UP 12 +28997347 2048 2048 +~~~ +28997369 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28997375 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28997612 DOWN 12 +28997612 0 0 +28997634 UP 12 +28997634 2048 0 +29001991 DOWN 12 +29001991 0 0 +29002007 UP 12 +29002007 2048 0 +29002019 DOWN 12 +29002018 0 0 +29002056 UP 12 +29002056 2048 0 +29002152 DOWN 12 +29002152 0 0 +29002178 UP 12 +29002178 2048 0 +29002188 DOWN 12 +29002188 0 0 +29002210 UP 12 +29002210 2048 0 +29007757 DOWN 12 +29007757 0 0 +29007782 UP 12 +29007782 2048 0 +29007799 DOWN 12 +29007799 0 0 +29007825 UP 12 +29007825 2048 0 +29009658 DOWN 12 +29009658 0 0 +29009698 UP 12 +29009698 2048 0 +29009727 DOWN 12 +29009727 0 0 +29009797 UP 12 +29009797 2048 0 +29009830 DOWN 12 +29009830 0 0 +29011177 UP 12 +29011177 2048 0 +29011199 DOWN 12 +29011199 0 0 +29011358 UP 12 +29011358 2048 0 +29012274 DOWN 12 +29012274 0 0 +29022369 LOCKEND +~~~ +~~~ +~~~ +29022391 0 512 +29026767 UP 10 +29026767 waslock = 0 +29026767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29026795 512 16777728 +~~~ +29026842 DOWN 10 +29026842 0 16777728 +~~~ +~~~ +29026871 0 16779776 +~~~ +~~~ +29026873 0 16779264 +29026874 homeCount = 116 +29026874 waitCount = 49 +29026875 ripCount = 46 +29026875 locktype1 = 1 +29026876 locktype2 = 8 +29026876 locktype3 = 12 +29026877 goalCount = 0 +29026877 goalTotal = 40 +29026878 otherCount = 54 +~~~ +29026908 UP 10 +29026908 waslock = 0 +29026908 512 16779264 +~~~ +29026944 512 2048 +29026962 DOWN 10 +29026962 0 2048 +~~~ +~~~ +~~~ +~~~ +29026992 homeCount = 116 +29026992 waitCount = 49 +29026993 ripCount = 46 +29026994 locktype1 = 1 +29026994 locktype2 = 8 +29026995 locktype3 = 12 +29026995 goalCount = 0 +29026996 goalTotal = 40 +29026996 otherCount = 54 +~~~ +29026998 UP 10 +29026998 waslock = 0 +29026998 512 2048 +29027028 DOWN 10 +29027028 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29027062 homeCount = 116 +29027062 waitCount = 49 +29027063 ripCount = 46 +29027063 locktype1 = 1 +29027064 locktype2 = 8 +29027064 locktype3 = 12 +29027065 goalCount = 0 +29027065 goalTotal = 40 +29027066 otherCount = 54 +~~~ +29027296 UP 10 +29027296 waslock = 0 +29027296 512 2048 +~~~ +29027830 DOWN 10 +29027830 0 2048 +~~~ +~~~ +~~~ +~~~ +29027855 homeCount = 116 +29027856 waitCount = 49 +29027857 ripCount = 46 +29027857 locktype1 = 1 +29027858 locktype2 = 8 +29027858 locktype3 = 12 +29027859 goalCount = 0 +29027859 goalTotal = 40 +29027860 otherCount = 54 +~~~ +29027895 UP 10 +29027895 waslock = 0 +29027895 512 2048 +~~~ +29027938 DOWN 10 +29027938 0 2048 +~~~ +~~~ +~~~ +~~~ +29027966 homeCount = 116 +29027966 waitCount = 49 +29027967 ripCount = 46 +29027967 locktype1 = 1 +29027968 locktype2 = 8 +29027968 locktype3 = 12 +29027969 goalCount = 0 +29027969 goalTotal = 40 +29027970 otherCount = 54 +~~~ +29028014 UP 10 +29028015 waslock = 0 +29028014 512 2048 +~~~ +29029618 DOWN 10 +29029618 0 2048 +~~~ +~~~ +~~~ +29029641 UP 10 +29029641 waslock = 0 +29029640 512 2048 +~~~ +29029643 homeCount = 116 +29029643 waitCount = 49 +29029644 ripCount = 46 +29029644 locktype1 = 1 +29029645 locktype2 = 8 +29029645 locktype3 = 12 +29029646 goalCount = 0 +29029646 goalTotal = 40 +29029667 otherCount = 54 +~~~ +29029668 DOWN 10 +29029668 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29029695 homeCount = 116 +29029696 waitCount = 49 +29029697 ripCount = 46 +29029697 locktype1 = 1 +29029698 locktype2 = 8 +29029698 locktype3 = 12 +29029699 goalCount = 0 +29029699 goalTotal = 40 +29029700 otherCount = 54 +~~~ +29030443 UP 10 +29030443 waslock = 0 +29030443 512 2048 +~~~ +29033311 DOWN 10 +29033311 0 2048 +~~~ +~~~ +~~~ +~~~ +29033333 homeCount = 116 +29033333 waitCount = 49 +29033334 ripCount = 46 +29033334 locktype1 = 1 +29033335 locktype2 = 8 +29033335 locktype3 = 12 +29033336 goalCount = 0 +29033336 goalTotal = 40 +29033337 otherCount = 54 +~~~ +29035977 UP 12 +29035977 2048 2048 +29037448 DOWN 12 +29037448 0 2048 +29037516 UP 12 +29037516 2048 2048 +29038598 DOWN 12 +29038598 0 2048 +29038676 UP 12 +29038676 2048 2048 +29038784 DOWN 12 +29038784 0 2048 +29038806 UP 12 +29038806 2048 2048 +29040477 CLICK1 +29040477 CLICK2 +~~~ +~~~ +~~~ +29040503 2048 67110912 +~~~ +29040653 2048 2048 +29046553 DOWN 12 +29046553 0 2048 +~~~ +~~~ +29046571 0 0 +~~~ +~~~ +29046573 0 1 +~~~ +~~~ +29046575 0 3 +~~~ +~~~ +29046577 0 7 +~~~ +29046578 UP 12 +29046578 2048 7 +~~~ +~~~ +29046580 2048 15 +~~~ +~~~ +29046581 2048 31 +~~~ +~~~ +29046583 2048 63 +~~~ +29046584 2048 127 +~~~ +~~~ +29046586 2048 255 +29046587 homeCount = 116 +29046608 waitCount = 50 +29046608 ripCount = 46 +29046609 locktype1 = 1 +29046609 locktype2 = 8 +29046610 locktype3 = 12 +29046610 goalCount = 0 +29046611 goalTotal = 40 +29046611 otherCount = 54 +~~~ +29046612 CURRENTGOAL IS [8] +~~~ +29046660 DOWN 12 +29046660 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29046699 homeCount = 116 +29046699 waitCount = 50 +29046700 ripCount = 46 +29046700 locktype1 = 1 +29046701 locktype2 = 8 +29046701 locktype3 = 12 +29046702 goalCount = 0 +29046702 goalTotal = 40 +29046703 otherCount = 54 +~~~ +29046704 CURRENTGOAL IS [8] +~~~ +29046725 UP 12 +29046725 2048 255 +29046750 DOWN 12 +29046750 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29046789 homeCount = 116 +29046790 waitCount = 50 +29046790 ripCount = 46 +29046791 locktype1 = 1 +29046792 locktype2 = 8 +29046792 locktype3 = 12 +29046793 goalCount = 0 +29046793 goalTotal = 40 +29046794 otherCount = 54 +~~~ +29046795 CURRENTGOAL IS [8] +~~~ +29046840 UP 12 +29046840 2048 255 +29047066 DOWN 12 +29047066 0 255 +29047070 UP 12 +29047070 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29047101 homeCount = 116 +29047102 waitCount = 50 +29047102 ripCount = 46 +29047103 locktype1 = 1 +29047103 locktype2 = 8 +29047104 locktype3 = 12 +29047104 goalCount = 0 +29047105 goalTotal = 40 +29047105 otherCount = 54 +~~~ +29047106 CURRENTGOAL IS [8] +~~~ +29048094 DOWN 12 +29048094 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29048130 homeCount = 116 +29048131 waitCount = 50 +29048131 ripCount = 46 +29048132 locktype1 = 1 +29048132 locktype2 = 8 +29048133 locktype3 = 12 +29048133 goalCount = 0 +29048134 goalTotal = 40 +29048134 otherCount = 54 +~~~ +29048135 CURRENTGOAL IS [8] +~~~ +29056595 UP 6 +29056595 32 255 +~~~ +~~~ +29057269 DOWN 6 +29057269 0 255 +~~~ +~~~ +29057285 0 254 +~~~ +~~~ +29057287 0 252 +~~~ +~~~ +29057289 0 248 +~~~ +~~~ +29057291 0 240 +~~~ +~~~ +29057292 0 224 +~~~ +~~~ +29057294 0 192 +~~~ +~~~ +29057296 0 128 +~~~ +29057297 32 128 +~~~ +~~~ +29057299 32 0 +~~~ +29057300 32 512 +29057301 homeCount = 116 +29057302 waitCount = 50 +29057302 ripCount = 46 +29057323 locktype1 = 1 +29057324 locktype2 = 8 +29057324 locktype3 = 12 +29057325 goalCount = 0 +29057325 goalTotal = 40 +29057326 otherCount = 55 +~~~ +29057340 DOWN 6 +29057340 0 512 +29061896 UP 10 +29061896 waslock = 0 +29061896 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29061923 512 16777728 +~~~ +29062073 512 512 +29062111 DOWN 10 +29062111 0 512 +~~~ +~~~ +29062139 0 1536 +~~~ +~~~ +29062141 0 1024 +29062142 homeCount = 117 +29062142 waitCount = 50 +29062143 ripCount = 46 +29062143 locktype1 = 1 +29062144 locktype2 = 8 +29062144 locktype3 = 12 +29062145 goalCount = 0 +29062145 goalTotal = 40 +29062146 otherCount = 55 +~~~ +29062222 UP 10 +29062222 waslock = 0 +29062222 512 1024 +~~~ +29066190 DOWN 10 +29066190 0 1024 +~~~ +~~~ +~~~ +~~~ +29066222 homeCount = 117 +29066223 waitCount = 50 +29066223 ripCount = 46 +29066224 locktype1 = 1 +29066224 locktype2 = 8 +29066225 locktype3 = 12 +29066225 goalCount = 0 +29066226 goalTotal = 40 +29066226 otherCount = 55 +~~~ +29068842 UP 11 +29068841 1024 1024 +29077842 BEEP1 +29077842 BEEP2 +~~~ +~~~ +~~~ +29077868 1024 33555456 +~~~ +29078018 1024 1024 +29086532 DOWN 11 +29086532 0 1024 +~~~ +~~~ +29086560 0 0 +~~~ +~~~ +29086561 0 1 +~~~ +~~~ +29086563 0 3 +~~~ +~~~ +29086565 0 7 +~~~ +~~~ +29086567 0 15 +~~~ +~~~ +29086569 0 31 +~~~ +~~~ +29086571 0 63 +~~~ +~~~ +29086572 0 127 +~~~ +~~~ +29086574 0 255 +29086575 homeCount = 117 +29086576 waitCount = 50 +29086576 ripCount = 47 +29086577 locktype1 = 1 +29086577 locktype2 = 8 +29086598 locktype3 = 12 +29086599 goalCount = 0 +29086599 goalTotal = 40 +29086600 otherCount = 55 +~~~ +29086601 CURRENTGOAL IS [8] +~~~ +29086601 UP 11 +29086601 1024 255 +29086651 DOWN 11 +29086651 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29086685 homeCount = 117 +29086685 waitCount = 50 +29086686 ripCount = 47 +29086686 locktype1 = 1 +29086687 locktype2 = 8 +29086687 locktype3 = 12 +29086688 goalCount = 0 +29086688 goalTotal = 40 +29086689 otherCount = 55 +~~~ +29086690 CURRENTGOAL IS [8] +~~~ +29093885 UP 3 +29093885 4 255 +~~~ +~~~ +29094389 DOWN 3 +29094389 0 255 +~~~ +~~~ +29094407 0 254 +~~~ +~~~ +29094409 0 252 +~~~ +~~~ +29094411 0 248 +~~~ +~~~ +29094413 0 240 +~~~ +~~~ +29094414 0 224 +~~~ +~~~ +29094416 0 192 +~~~ +~~~ +29094418 0 128 +~~~ +~~~ +29094420 0 0 +~~~ +~~~ +29094422 0 512 +29094423 homeCount = 117 +29094423 waitCount = 50 +29094424 ripCount = 47 +29094424 locktype1 = 1 +29094445 locktype2 = 8 +29094445 locktype3 = 12 +29094446 goalCount = 0 +29094446 goalTotal = 40 +29094447 otherCount = 56 +~~~ +29094505 4 512 +29094791 DOWN 3 +29094791 0 512 +29098404 UP 10 +29098405 waslock = 0 +29098404 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29098437 512 16777728 +~~~ +29098451 DOWN 10 +29098451 0 16777728 +~~~ +~~~ +29098472 0 16778752 +~~~ +~~~ +29098474 0 16778240 +29098475 homeCount = 118 +29098476 waitCount = 50 +29098476 ripCount = 47 +29098477 locktype1 = 1 +29098477 locktype2 = 8 +29098478 locktype3 = 12 +29098478 goalCount = 0 +29098479 goalTotal = 40 +29098479 otherCount = 56 +~~~ +29098509 UP 10 +29098510 waslock = 0 +29098509 512 16778240 +~~~ +29098587 512 1024 +29098590 DOWN 10 +29098590 0 1024 +~~~ +~~~ +~~~ +~~~ +29098618 homeCount = 118 +29098618 waitCount = 50 +29098619 ripCount = 47 +29098619 locktype1 = 1 +29098620 locktype2 = 8 +29098620 locktype3 = 12 +29098621 goalCount = 0 +29098621 goalTotal = 40 +29098622 otherCount = 56 +~~~ +29098713 UP 10 +29098713 waslock = 0 +29098713 512 1024 +~~~ +29101907 DOWN 10 +29101907 0 1024 +~~~ +~~~ +~~~ +~~~ +29101936 homeCount = 118 +29101937 waitCount = 50 +29101937 ripCount = 47 +29101938 locktype1 = 1 +29101938 locktype2 = 8 +29101939 locktype3 = 12 +29101939 goalCount = 0 +29101940 goalTotal = 40 +29101940 otherCount = 56 +~~~ +29101953 UP 10 +29101953 waslock = 0 +29101953 512 1024 +~~~ +29101998 DOWN 10 +29101998 0 1024 +~~~ +~~~ +~~~ +~~~ +29102018 homeCount = 118 +29102018 waitCount = 50 +29102019 ripCount = 47 +29102019 locktype1 = 1 +29102020 locktype2 = 8 +29102020 locktype3 = 12 +29102021 goalCount = 0 +29102021 goalTotal = 40 +29102022 otherCount = 56 +~~~ +29103694 UP 11 +29103694 1024 1024 +29112694 BEEP1 +29112694 BEEP2 +~~~ +~~~ +~~~ +29112721 1024 33555456 +~~~ +29112871 1024 1024 +29119544 DOWN 11 +29119544 0 1024 +~~~ +~~~ +29119570 0 0 +~~~ +~~~ +29119572 0 1 +~~~ +~~~ +29119574 0 3 +~~~ +~~~ +29119575 0 7 +~~~ +~~~ +29119577 0 15 +~~~ +~~~ +29119579 0 31 +~~~ +~~~ +29119581 0 63 +~~~ +~~~ +29119583 0 127 +~~~ +~~~ +29119585 0 255 +29119586 homeCount = 118 +29119586 waitCount = 50 +29119587 ripCount = 48 +29119587 locktype1 = 1 +29119588 locktype2 = 8 +29119609 locktype3 = 12 +29119609 goalCount = 0 +29119610 goalTotal = 40 +29119610 otherCount = 56 +~~~ +29119611 CURRENTGOAL IS [8] +~~~ +29119612 UP 11 +29119612 1024 255 +29119616 DOWN 11 +29119616 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29119668 homeCount = 118 +29119669 waitCount = 50 +29119669 ripCount = 48 +29119670 locktype1 = 1 +29119670 locktype2 = 8 +29119671 locktype3 = 12 +29119671 goalCount = 0 +29119672 goalTotal = 40 +29119672 otherCount = 56 +~~~ +29119673 CURRENTGOAL IS [8] +~~~ +29122599 UP 8 +29122599 128 255 +~~~ +~~~ +29122624 outer reward +~~~ +29122624 128 8388863 +~~~ +~~~ +29123074 128 255 +29130013 DOWN 8 +29130013 0 255 +~~~ +~~~ +29130032 0 254 +~~~ +~~~ +29130034 0 252 +~~~ +~~~ +29130036 0 248 +~~~ +~~~ +29130037 0 240 +~~~ +~~~ +29130039 0 224 +~~~ +~~~ +29130041 0 192 +~~~ +~~~ +29130043 0 128 +~~~ +~~~ +29130045 0 0 +~~~ +~~~ +29130047 0 512 +29130048 homeCount = 118 +29130048 waitCount = 50 +29130049 ripCount = 48 +29130049 locktype1 = 1 +29130050 locktype2 = 8 +29130071 locktype3 = 12 +29130071 goalCount = 1 +29130072 goalTotal = 41 +29130072 otherCount = 56 +~~~ +29130073 128 512 +29130117 DOWN 8 +29130117 0 512 +29135768 UP 10 +29135768 waslock = 0 +29135767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29135792 512 16777728 +~~~ +29135942 512 512 +29136087 DOWN 10 +29136087 0 512 +~~~ +~~~ +29136106 0 2560 +~~~ +~~~ +29136108 0 2048 +29136109 homeCount = 119 +29136109 waitCount = 50 +29136110 ripCount = 48 +29136110 locktype1 = 1 +29136111 locktype2 = 8 +29136111 locktype3 = 12 +29136112 goalCount = 1 +29136112 goalTotal = 41 +29136113 otherCount = 56 +~~~ +29136174 UP 10 +29136174 waslock = 0 +29136174 512 2048 +~~~ +29140118 DOWN 10 +29140118 0 2048 +~~~ +~~~ +~~~ +~~~ +29140138 homeCount = 119 +29140138 waitCount = 50 +29140139 ripCount = 48 +29140139 locktype1 = 1 +29140140 locktype2 = 8 +29140140 locktype3 = 12 +29140141 goalCount = 1 +29140141 goalTotal = 41 +29140142 otherCount = 56 +~~~ +29140155 UP 10 +29140156 waslock = 0 +29140155 512 2048 +~~~ +29140225 DOWN 10 +29140225 0 2048 +~~~ +~~~ +~~~ +~~~ +29140256 homeCount = 119 +29140257 waitCount = 50 +29140257 ripCount = 48 +29140258 locktype1 = 1 +29140258 locktype2 = 8 +29140259 locktype3 = 12 +29140259 goalCount = 1 +29140260 goalTotal = 41 +29140260 otherCount = 56 +~~~ +29140302 UP 10 +29140302 waslock = 0 +29140302 512 2048 +29140330 DOWN 10 +29140330 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29140355 homeCount = 119 +29140356 waitCount = 50 +29140356 ripCount = 48 +29140357 locktype1 = 1 +29140357 locktype2 = 8 +29140358 locktype3 = 12 +29140358 goalCount = 1 +29140359 goalTotal = 41 +29140359 otherCount = 56 +~~~ +29142523 UP 12 +29142523 2048 2048 +29145524 CLICK1 +29145524 CLICK2 +~~~ +~~~ +~~~ +29145549 2048 67110912 +~~~ +29145699 2048 2048 +29145721 DOWN 12 +29145721 0 2048 +29145728 UP 12 +29145728 2048 2048 +~~~ +~~~ +29145738 2048 0 +~~~ +~~~ +29145740 2048 1 +~~~ +~~~ +29145742 2048 3 +~~~ +~~~ +29145743 2048 7 +~~~ +~~~ +29145745 2048 15 +~~~ +~~~ +29145747 2048 31 +~~~ +~~~ +29145749 2048 63 +~~~ +~~~ +29145751 2048 127 +~~~ +~~~ +29145753 2048 255 +29145754 homeCount = 119 +29145754 waitCount = 51 +29145755 ripCount = 48 +29145775 locktype1 = 1 +29145776 locktype2 = 8 +29145776 locktype3 = 12 +29145777 goalCount = 1 +29145777 goalTotal = 41 +29145778 otherCount = 56 +~~~ +29145779 CURRENTGOAL IS [8] +~~~ +29145803 DOWN 12 +29145803 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29145844 homeCount = 119 +29145845 waitCount = 51 +29145846 ripCount = 48 +29145846 locktype1 = 1 +29145847 locktype2 = 8 +29145847 locktype3 = 12 +29145848 goalCount = 1 +29145848 goalTotal = 41 +29145849 otherCount = 56 +~~~ +29145850 CURRENTGOAL IS [8] +~~~ +29145897 UP 12 +29145897 2048 255 +29151732 DOWN 12 +29151732 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29151764 homeCount = 119 +29151765 waitCount = 51 +29151765 ripCount = 48 +29151766 locktype1 = 1 +29151766 locktype2 = 8 +29151767 locktype3 = 12 +29151767 goalCount = 1 +29151768 goalTotal = 41 +29151768 otherCount = 56 +~~~ +29151769 CURRENTGOAL IS [8] +~~~ +29151798 UP 12 +29151798 2048 255 +29151813 DOWN 12 +29151813 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29151848 homeCount = 119 +29151849 waitCount = 51 +29151849 ripCount = 48 +29151850 locktype1 = 1 +29151850 locktype2 = 8 +29151851 locktype3 = 12 +29151851 goalCount = 1 +29151852 goalTotal = 41 +29151852 otherCount = 56 +~~~ +29151854 CURRENTGOAL IS [8] +~~~ +29157194 UP 1 +29157194 1 255 +~~~ +~~~ +29157720 DOWN 1 +29157720 0 255 +~~~ +~~~ +29157744 0 254 +~~~ +~~~ +29157745 0 252 +~~~ +~~~ +29157747 0 248 +~~~ +~~~ +29157749 0 240 +~~~ +~~~ +29157751 0 224 +~~~ +~~~ +29157753 0 192 +~~~ +~~~ +29157755 0 128 +~~~ +~~~ +29157756 0 0 +~~~ +~~~ +29157758 0 512 +29157759 homeCount = 119 +29157760 waitCount = 51 +29157760 ripCount = 48 +29157761 locktype1 = 1 +29157781 locktype2 = 8 +29157782 locktype3 = 12 +29157782 goalCount = 1 +29157783 goalTotal = 41 +29157784 otherCount = 57 +~~~ +29161043 UP 10 +29161044 waslock = 0 +29161043 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29161070 512 16777728 +~~~ +29161220 512 512 +29167184 DOWN 10 +29167184 0 512 +~~~ +~~~ +29167204 0 2560 +~~~ +~~~ +29167206 0 2048 +29167207 homeCount = 120 +29167208 waitCount = 51 +29167208 ripCount = 48 +29167209 locktype1 = 1 +29167209 locktype2 = 8 +29167210 locktype3 = 12 +29167210 goalCount = 1 +29167211 goalTotal = 41 +29167211 otherCount = 57 +~~~ +29167233 UP 10 +29167233 waslock = 0 +29167233 512 2048 +~~~ +29167284 DOWN 10 +29167283 0 2048 +~~~ +~~~ +~~~ +~~~ +29167308 homeCount = 120 +29167309 waitCount = 51 +29167309 ripCount = 48 +29167310 locktype1 = 1 +29167310 locktype2 = 8 +29167311 locktype3 = 12 +29167311 goalCount = 1 +29167312 goalTotal = 41 +29167312 otherCount = 57 +~~~ +29169240 UP 12 +29169240 2048 2048 +29173241 CLICK1 +29173241 CLICK2 +~~~ +~~~ +~~~ +29173267 2048 67110912 +~~~ +29173417 2048 2048 +29180620 DOWN 12 +29180620 0 2048 +~~~ +~~~ +29180645 0 0 +~~~ +~~~ +29180647 0 1 +~~~ +~~~ +29180649 0 3 +~~~ +~~~ +29180650 0 7 +~~~ +~~~ +29180652 0 15 +~~~ +~~~ +29180654 0 31 +~~~ +~~~ +29180656 0 63 +~~~ +~~~ +29180658 0 127 +~~~ +~~~ +29180660 0 255 +29180661 homeCount = 120 +29180661 waitCount = 52 +29180662 ripCount = 48 +29180662 locktype1 = 1 +29180663 locktype2 = 8 +29180684 locktype3 = 12 +29180684 goalCount = 1 +29180685 goalTotal = 41 +29180685 otherCount = 57 +~~~ +29180686 CURRENTGOAL IS [8] +~~~ +29180699 UP 12 +29180699 2048 255 +29180715 DOWN 12 +29180715 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29180750 homeCount = 120 +29180750 waitCount = 52 +29180751 ripCount = 48 +29180751 locktype1 = 1 +29180752 locktype2 = 8 +29180752 locktype3 = 12 +29180753 goalCount = 1 +29180753 goalTotal = 41 +29180754 otherCount = 57 +~~~ +29180755 CURRENTGOAL IS [8] +~~~ +29185318 UP 1 +29185318 1 255 +~~~ +~~~ +29185916 DOWN 1 +29185916 0 255 +~~~ +~~~ +29185935 0 254 +~~~ +~~~ +29185937 0 252 +~~~ +~~~ +29185939 0 248 +~~~ +~~~ +29185941 0 240 +~~~ +~~~ +29185943 0 224 +~~~ +~~~ +29185944 0 192 +~~~ +~~~ +29185946 0 128 +~~~ +~~~ +29185948 0 0 +~~~ +~~~ +29185950 0 512 +29185951 homeCount = 120 +29185952 waitCount = 52 +29185952 ripCount = 48 +29185953 locktype1 = 1 +29185953 locktype2 = 8 +29185974 locktype3 = 12 +29185975 goalCount = 1 +29185975 goalTotal = 41 +29185976 otherCount = 58 +~~~ +29186163 1 512 +29186492 DOWN 1 +29186492 0 512 +29186605 1 512 +29187016 DOWN 1 +29187016 0 512 +29187039 1 512 +29187068 DOWN 1 +29187068 0 512 +29191463 UP 10 +29191463 waslock = 0 +29191463 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29191495 512 16777728 +~~~ +29191624 DOWN 10 +29191624 0 16777728 +29191645 0 512 +~~~ +~~~ +29191649 0 1536 +~~~ +~~~ +29191651 0 1024 +29191652 homeCount = 121 +29191652 waitCount = 52 +29191653 ripCount = 48 +29191653 locktype1 = 1 +29191654 locktype2 = 8 +29191654 locktype3 = 12 +29191655 goalCount = 1 +29191655 goalTotal = 41 +29191656 otherCount = 58 +~~~ +29191677 UP 10 +29191677 waslock = 0 +29191677 512 1024 +~~~ +29191706 DOWN 10 +29191706 0 1024 +~~~ +~~~ +~~~ +~~~ +29191722 homeCount = 121 +29191722 waitCount = 52 +29191723 ripCount = 48 +29191723 locktype1 = 1 +29191724 locktype2 = 8 +29191724 locktype3 = 12 +29191725 goalCount = 1 +29191725 goalTotal = 41 +29191726 otherCount = 58 +~~~ +29192235 UP 10 +29192235 waslock = 0 +29192235 512 1024 +~~~ +29198177 DOWN 10 +29198177 0 1024 +~~~ +~~~ +~~~ +~~~ +29198200 homeCount = 121 +29198201 waitCount = 52 +29198201 ripCount = 48 +29198202 locktype1 = 1 +29198202 locktype2 = 8 +29198203 locktype3 = 12 +29198203 goalCount = 1 +29198204 goalTotal = 41 +29198204 otherCount = 58 +~~~ +29198220 UP 10 +29198221 waslock = 0 +29198220 512 1024 +29198243 DOWN 10 +29198243 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +29198272 homeCount = 121 +29198272 waitCount = 52 +29198273 ripCount = 48 +29198273 locktype1 = 1 +29198274 locktype2 = 8 +29198274 locktype3 = 12 +29198275 goalCount = 1 +29198275 goalTotal = 41 +29198276 otherCount = 58 +~~~ +29199804 UP 11 +29199804 1024 1024 +29203422 DOWN 11 +29203422 0 1024 +29203433 UP 11 +29203433 1024 1024 +29203804 BEEP1 +29203804 BEEP2 +~~~ +~~~ +~~~ +29203828 1024 33555456 +~~~ +29203978 1024 1024 +29204975 DOWN 11 +29204975 0 1024 +~~~ +~~~ +29205002 0 0 +~~~ +~~~ +29205003 0 1 +~~~ +~~~ +29205005 0 3 +~~~ +~~~ +29205007 0 7 +~~~ +~~~ +29205009 0 15 +~~~ +~~~ +29205011 0 31 +~~~ +~~~ +29205012 0 63 +~~~ +~~~ +29205014 0 127 +~~~ +29205016 UP 11 +29205016 1024 127 +~~~ +29205017 homeCount = 121 +29205018 waitCount = 52 +29205018 ripCount = 49 +29205019 locktype1 = 1 +29205040 locktype2 = 8 +29205041 locktype3 = 12 +29205041 goalCount = 1 +29205042 goalTotal = 41 +29205042 otherCount = 58 +~~~ +29205043 CURRENTGOAL IS [8] +~~~ +29205044 1024 255 +29205098 DOWN 11 +29205098 0 255 +29205104 UP 11 +29205104 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205137 homeCount = 121 +29205138 waitCount = 52 +29205138 ripCount = 49 +29205139 locktype1 = 1 +29205139 locktype2 = 8 +29205140 locktype3 = 12 +29205141 goalCount = 1 +29205141 goalTotal = 41 +29205142 otherCount = 58 +~~~ +29205143 CURRENTGOAL IS [8] +~~~ +29205893 DOWN 11 +29205893 0 255 +29205909 UP 11 +29205909 1024 255 +~~~ +~~~ +~~~ +~~~ +29205929 DOWN 11 +29205929 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205942 homeCount = 121 +29205943 waitCount = 52 +29205943 ripCount = 49 +29205944 locktype1 = 1 +29205944 locktype2 = 8 +29205945 locktype3 = 12 +29205945 goalCount = 1 +29205946 goalTotal = 41 +29205946 otherCount = 58 +~~~ +29205948 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205975 homeCount = 121 +29205976 waitCount = 52 +29205976 ripCount = 49 +29205977 locktype1 = 1 +29205977 locktype2 = 8 +29205978 locktype3 = 12 +29205978 goalCount = 1 +29206000 goalTotal = 41 +29206000 otherCount = 58 +~~~ +29206001 CURRENTGOAL IS [8] +~~~ +29206071 UP 11 +29206071 1024 255 +29206350 DOWN 11 +29206350 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29206391 homeCount = 121 +29206392 waitCount = 52 +29206392 ripCount = 49 +29206393 locktype1 = 1 +29206393 locktype2 = 8 +29206394 locktype3 = 12 +29206395 goalCount = 1 +29206395 goalTotal = 41 +29206396 otherCount = 58 +~~~ +29206397 CURRENTGOAL IS [8] +~~~ +29207308 UP 11 +29207308 1024 255 +29207410 DOWN 11 +29207410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29207449 UP 11 +29207449 1024 255 +~~~ +~~~ +~~~ +~~~ +29207454 homeCount = 121 +29207454 waitCount = 52 +29207455 ripCount = 49 +29207455 locktype1 = 1 +29207456 locktype2 = 8 +29207456 locktype3 = 12 +29207457 goalCount = 1 +29207457 goalTotal = 41 +29207458 otherCount = 58 +~~~ +29207459 CURRENTGOAL IS [8] +~~~ +29208017 DOWN 11 +29208017 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208055 homeCount = 121 +29208055 waitCount = 52 +29208056 ripCount = 49 +29208056 locktype1 = 1 +29208057 locktype2 = 8 +29208057 locktype3 = 12 +29208058 goalCount = 1 +29208058 goalTotal = 41 +29208059 otherCount = 58 +~~~ +29208060 CURRENTGOAL IS [8] +~~~ +29208103 UP 11 +29208103 1024 255 +29208328 DOWN 11 +29208328 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208368 homeCount = 121 +29208368 waitCount = 52 +29208369 ripCount = 49 +29208369 locktype1 = 1 +29208370 locktype2 = 8 +29208370 locktype3 = 12 +29208371 goalCount = 1 +29208371 goalTotal = 41 +29208372 otherCount = 58 +~~~ +29208373 CURRENTGOAL IS [8] +~~~ +29208456 UP 11 +29208456 1024 255 +29208683 DOWN 11 +29208683 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208712 UP 11 +29208712 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +29208717 homeCount = 121 +29208718 waitCount = 52 +29208718 ripCount = 49 +29208719 locktype1 = 1 +29208719 locktype2 = 8 +29208720 locktype3 = 12 +29208720 goalCount = 1 +29208721 goalTotal = 41 +29208721 otherCount = 58 +~~~ +29208722 CURRENTGOAL IS [8] +~~~ +29214121 DOWN 11 +29214121 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214151 UP 11 +29214151 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214158 homeCount = 121 +29214158 waitCount = 52 +29214159 ripCount = 49 +29214159 locktype1 = 1 +29214160 locktype2 = 8 +29214160 locktype3 = 12 +29214161 goalCount = 1 +29214162 goalTotal = 41 +29214162 otherCount = 58 +~~~ +29214163 CURRENTGOAL IS [8] +~~~ +29214210 DOWN 11 +29214210 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214248 homeCount = 121 +29214248 waitCount = 52 +29214249 ripCount = 49 +29214249 locktype1 = 1 +29214250 locktype2 = 8 +29214250 locktype3 = 12 +29214251 goalCount = 1 +29214251 goalTotal = 41 +29214252 otherCount = 58 +~~~ +29214253 CURRENTGOAL IS [8] +~~~ +29218329 UP 7 +29218329 64 255 +~~~ +~~~ +29218784 DOWN 7 +29218784 0 255 +~~~ +~~~ +29218803 0 254 +~~~ +~~~ +29218805 0 252 +~~~ +~~~ +29218807 0 248 +~~~ +~~~ +29218809 0 240 +~~~ +~~~ +29218811 0 224 +~~~ +29218812 64 224 +~~~ +~~~ +29218814 64 192 +~~~ +29218815 64 128 +~~~ +~~~ +29218816 64 0 +~~~ +~~~ +29218818 64 512 +29218819 homeCount = 121 +29218819 waitCount = 52 +29218841 ripCount = 49 +29218841 locktype1 = 1 +29218842 locktype2 = 8 +29218842 locktype3 = 12 +29218843 goalCount = 1 +29218843 goalTotal = 41 +29218844 otherCount = 59 +~~~ +29219408 DOWN 7 +29219408 0 512 +29224639 UP 10 +29224640 waslock = 0 +29224639 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29224670 512 16777728 +~~~ +29224820 512 512 +29224880 DOWN 10 +29224880 0 512 +~~~ +~~~ +29224910 0 2560 +~~~ +~~~ +29224912 0 2048 +29224913 homeCount = 122 +29224913 waitCount = 52 +29224914 ripCount = 49 +29224914 locktype1 = 1 +29224915 locktype2 = 8 +29224915 locktype3 = 12 +29224916 goalCount = 1 +29224916 goalTotal = 41 +29224917 otherCount = 59 +~~~ +29224952 UP 10 +29224952 waslock = 0 +29224952 512 2048 +~~~ +29229705 DOWN 10 +29229705 0 2048 +~~~ +~~~ +~~~ +~~~ +29229726 homeCount = 122 +29229727 waitCount = 52 +29229727 ripCount = 49 +29229728 locktype1 = 1 +29229728 locktype2 = 8 +29229729 locktype3 = 12 +29229729 goalCount = 1 +29229730 goalTotal = 41 +29229730 otherCount = 59 +~~~ +29229738 UP 10 +29229738 waslock = 0 +29229738 512 2048 +~~~ +29229795 DOWN 10 +29229795 0 2048 +~~~ +~~~ +~~~ +~~~ +29229818 homeCount = 122 +29229818 waitCount = 52 +29229819 ripCount = 49 +29229819 locktype1 = 1 +29229820 locktype2 = 8 +29229820 locktype3 = 12 +29229821 goalCount = 1 +29229821 goalTotal = 41 +29229822 otherCount = 59 +~~~ +29232290 UP 12 +29232290 2048 2048 +29232929 DOWN 12 +29232929 0 2048 +29233130 LOCKOUT 3 +~~~ +29233156 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29233162 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29233439 UP 12 +29233439 2048 0 +29233601 DOWN 12 +29233601 0 0 +29233714 UP 12 +29233714 2048 0 +29233929 DOWN 12 +29233929 0 0 +29244665 UP 4 +29244665 8 0 +29244691 DOWN 4 +29244691 0 0 +29244744 8 0 +29245299 DOWN 4 +29245299 0 0 +29245374 8 0 +29245764 DOWN 4 +29245764 0 0 +29256362 512 0 +29256669 0 0 +29256725 512 0 +29257036 0 0 +29257137 512 0 +29257143 0 0 +29258156 LOCKEND +~~~ +~~~ +~~~ +29258176 0 512 +29259266 UP 10 +29259266 waslock = 0 +29259266 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29259291 512 16777728 +~~~ +29259347 DOWN 10 +29259347 0 16777728 +~~~ +~~~ +29259364 0 16778752 +~~~ +~~~ +29259366 0 16778240 +29259367 homeCount = 123 +29259368 waitCount = 52 +29259368 ripCount = 49 +29259369 locktype1 = 1 +29259369 locktype2 = 8 +29259370 locktype3 = 13 +29259370 goalCount = 1 +29259371 goalTotal = 41 +29259371 otherCount = 59 +~~~ +29259392 UP 10 +29259393 waslock = 0 +29259392 512 16778240 +~~~ +29259441 512 1024 +29264964 DOWN 10 +29264964 0 1024 +~~~ +~~~ +~~~ +~~~ +29264987 homeCount = 123 +29264988 waitCount = 52 +29264988 ripCount = 49 +29264989 locktype1 = 1 +29264989 locktype2 = 8 +29264990 locktype3 = 13 +29264990 goalCount = 1 +29264991 goalTotal = 41 +29264991 otherCount = 59 +~~~ +29266921 UP 11 +29266920 1024 1024 +29270765 DOWN 11 +29270765 0 1024 +29270788 UP 11 +29270788 1024 1024 +29275741 DOWN 11 +29275741 0 1024 +29275751 UP 11 +29275750 1024 1024 +29275921 BEEP1 +29275921 BEEP2 +~~~ +~~~ +~~~ +29275948 1024 33555456 +~~~ +29276098 1024 1024 +29284636 DOWN 11 +29284635 0 1024 +~~~ +~~~ +29284655 0 0 +~~~ +~~~ +29284657 0 1 +~~~ +~~~ +29284659 0 3 +~~~ +~~~ +29284661 0 7 +~~~ +~~~ +29284662 0 15 +~~~ +~~~ +29284664 0 31 +~~~ +~~~ +29284666 0 63 +~~~ +~~~ +29284668 0 127 +~~~ +~~~ +29284670 0 255 +29284671 homeCount = 123 +29284671 waitCount = 52 +29284672 ripCount = 50 +29284672 locktype1 = 1 +29284673 locktype2 = 8 +29284694 locktype3 = 13 +29284694 goalCount = 1 +29284695 goalTotal = 41 +29284695 otherCount = 59 +~~~ +29284696 CURRENTGOAL IS [8] +~~~ +29284697 UP 11 +29284697 1024 255 +29284755 DOWN 11 +29284755 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29284796 homeCount = 123 +29284796 waitCount = 52 +29284797 ripCount = 50 +29284797 locktype1 = 1 +29284798 locktype2 = 8 +29284799 locktype3 = 13 +29284799 goalCount = 1 +29284800 goalTotal = 41 +29284800 otherCount = 59 +~~~ +29284801 CURRENTGOAL IS [8] +~~~ +29288212 UP 8 +29288212 128 255 +~~~ +~~~ +29288231 outer reward +~~~ +29288232 128 8388863 +~~~ +~~~ +29288549 DOWN 8 +29288549 0 8388863 +~~~ +~~~ +29288570 0 8388862 +~~~ +~~~ +29288571 0 8388860 +~~~ +~~~ +29288573 0 8388856 +~~~ +29288575 128 8388856 +~~~ +~~~ +29288576 128 8388848 +~~~ +~~~ +29288578 128 8388832 +~~~ +29288579 128 8388800 +~~~ +~~~ +29288581 128 8388736 +~~~ +~~~ +29288582 128 8388608 +~~~ +~~~ +29288584 128 8389120 +29288606 homeCount = 123 +29288607 waitCount = 52 +29288607 ripCount = 50 +29288608 locktype1 = 1 +29288608 locktype2 = 8 +29288609 locktype3 = 13 +29288609 goalCount = 2 +29288610 goalTotal = 42 +29288610 otherCount = 59 +~~~ +29288681 128 512 +29288820 DOWN 8 +29288820 0 512 +29288834 128 512 +29288934 DOWN 8 +29288934 0 512 +29288960 128 512 +29289062 DOWN 8 +29289062 0 512 +29289076 128 512 +29289179 DOWN 8 +29289179 0 512 +29289202 128 512 +29289305 DOWN 8 +29289305 0 512 +29289323 128 512 +29289431 DOWN 8 +29289431 0 512 +29289453 128 512 +29289581 DOWN 8 +29289581 0 512 +29289598 128 512 +29289717 DOWN 8 +29289717 0 512 +29289724 128 512 +29295838 DOWN 8 +29295838 0 512 +29300855 UP 10 +29300856 waslock = 0 +29300855 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29300888 512 16777728 +~~~ +29301038 512 512 +29301135 DOWN 10 +29301135 0 512 +~~~ +~~~ +29301161 0 1536 +~~~ +~~~ +29301163 0 1024 +29301164 homeCount = 124 +29301164 waitCount = 52 +29301165 ripCount = 50 +29301165 locktype1 = 1 +29301166 locktype2 = 8 +29301166 locktype3 = 13 +29301167 goalCount = 2 +29301167 goalTotal = 42 +29301168 otherCount = 59 +~~~ +29301247 UP 10 +29301247 waslock = 0 +29301247 512 1024 +~~~ +29308901 DOWN 10 +29308901 0 1024 +29308911 UP 10 +29308911 waslock = 0 +29308911 512 1024 +~~~ +~~~ +~~~ +~~~ +29308934 homeCount = 124 +29308935 waitCount = 52 +29308936 ripCount = 50 +29308936 locktype1 = 1 +29308937 locktype2 = 8 +29308937 locktype3 = 13 +29308938 goalCount = 2 +29308938 goalTotal = 42 +29308939 otherCount = 59 +~~~ +~~~ +29308997 DOWN 10 +29308997 0 1024 +~~~ +~~~ +~~~ +~~~ +29309025 homeCount = 124 +29309026 waitCount = 52 +29309026 ripCount = 50 +29309027 locktype1 = 1 +29309027 locktype2 = 8 +29309028 locktype3 = 13 +29309028 goalCount = 2 +29309029 goalTotal = 42 +29309029 otherCount = 59 +~~~ +29311128 UP 11 +29311128 1024 1024 +29314264 DOWN 11 +29314264 0 1024 +29314275 UP 11 +29314275 1024 1024 +29318628 BEEP1 +29318628 BEEP2 +~~~ +~~~ +~~~ +29318653 1024 33555456 +~~~ +29318803 1024 1024 +29327074 DOWN 11 +29327074 0 1024 +~~~ +~~~ +29327093 0 0 +~~~ +~~~ +29327095 0 1 +~~~ +~~~ +29327096 0 3 +~~~ +~~~ +29327098 0 7 +~~~ +~~~ +29327100 0 15 +~~~ +~~~ +29327102 0 31 +~~~ +~~~ +29327104 0 63 +~~~ +~~~ +29327105 0 127 +~~~ +~~~ +29327107 0 255 +29327108 homeCount = 124 +29327109 waitCount = 52 +29327109 ripCount = 51 +29327110 locktype1 = 1 +29327110 locktype2 = 8 +29327131 locktype3 = 13 +29327132 goalCount = 2 +29327132 goalTotal = 42 +29327133 otherCount = 59 +~~~ +29327134 CURRENTGOAL IS [8] +~~~ +29327143 UP 11 +29327143 1024 255 +29327191 DOWN 11 +29327191 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29327227 homeCount = 124 +29327228 waitCount = 52 +29327228 ripCount = 51 +29327229 locktype1 = 1 +29327229 locktype2 = 8 +29327230 locktype3 = 13 +29327230 goalCount = 2 +29327231 goalTotal = 42 +29327231 otherCount = 59 +~~~ +29327233 CURRENTGOAL IS [8] +~~~ +29331590 UP 8 +29331590 128 255 +~~~ +~~~ +29331613 outer reward +~~~ +29331614 128 8388863 +~~~ +~~~ +29331812 DOWN 8 +29331812 0 8388863 +~~~ +~~~ +29331833 0 8388862 +~~~ +~~~ +29331835 0 8388860 +~~~ +~~~ +29331837 0 8388856 +~~~ +~~~ +29331838 0 8388848 +~~~ +~~~ +29331840 0 8388832 +~~~ +~~~ +29331842 0 8388800 +~~~ +~~~ +29331844 0 8388736 +~~~ +~~~ +29331846 0 8388608 +~~~ +~~~ +29331848 0 8389120 +29331849 homeCount = 124 +29331849 waitCount = 52 +29331850 ripCount = 51 +29331871 locktype1 = 1 +29331871 locktype2 = 8 +29331872 locktype3 = 13 +29331872 goalCount = 3 +29331873 goalTotal = 43 +29331873 otherCount = 59 +~~~ +29331874 128 8389120 +29332063 128 512 +29332236 DOWN 8 +29332236 0 512 +29332246 128 512 +29332338 DOWN 8 +29332338 0 512 +29332375 128 512 +29332458 DOWN 8 +29332458 0 512 +29332486 128 512 +29332583 DOWN 8 +29332583 0 512 +29332608 128 512 +29332710 DOWN 8 +29332710 0 512 +29332732 128 512 +29332982 DOWN 8 +29332982 0 512 +29332985 128 512 +29333239 DOWN 8 +29333239 0 512 +29333247 128 512 +29338471 DOWN 8 +29338471 0 512 +29344506 UP 10 +29344507 waslock = 0 +29344506 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29344530 512 16777728 +~~~ +29344680 512 512 +29349720 DOWN 10 +29349720 0 512 +~~~ +~~~ +29349745 0 2560 +~~~ +~~~ +29349746 0 2048 +29349747 homeCount = 125 +29349748 waitCount = 52 +29349749 ripCount = 51 +29349749 locktype1 = 1 +29349750 locktype2 = 8 +29349750 locktype3 = 13 +29349751 goalCount = 3 +29349751 goalTotal = 43 +29349752 otherCount = 59 +~~~ +29349773 UP 10 +29349773 waslock = 0 +29349773 512 2048 +~~~ +29349825 DOWN 10 +29349825 0 2048 +~~~ +~~~ +~~~ +~~~ +29349849 homeCount = 125 +29349849 waitCount = 52 +29349850 ripCount = 51 +29349850 locktype1 = 1 +29349851 locktype2 = 8 +29349851 locktype3 = 13 +29349852 goalCount = 3 +29349852 goalTotal = 43 +29349853 otherCount = 59 +~~~ +29352255 UP 12 +29352255 2048 2048 +29352543 DOWN 12 +29352543 0 2048 +29352728 UP 12 +29352728 2048 2048 +29355255 CLICK1 +29355255 CLICK2 +~~~ +~~~ +~~~ +29355278 2048 67110912 +~~~ +29355428 2048 2048 +29362752 DOWN 12 +29362752 0 2048 +~~~ +~~~ +29362776 0 0 +~~~ +~~~ +29362778 0 1 +~~~ +~~~ +29362780 0 3 +~~~ +~~~ +29362782 0 7 +~~~ +~~~ +29362783 0 15 +~~~ +~~~ +29362785 0 31 +~~~ +~~~ +29362787 0 63 +~~~ +~~~ +29362789 0 127 +~~~ +29362790 UP 12 +29362790 2048 127 +~~~ +29362792 homeCount = 125 +29362792 waitCount = 53 +29362793 ripCount = 51 +29362793 locktype1 = 1 +29362815 locktype2 = 8 +29362815 locktype3 = 13 +29362816 goalCount = 3 +29362816 goalTotal = 43 +29362817 otherCount = 59 +~~~ +29362818 CURRENTGOAL IS [8] +~~~ +29362818 2048 255 +29362852 DOWN 12 +29362852 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29362893 homeCount = 125 +29362894 waitCount = 53 +29362894 ripCount = 51 +29362895 locktype1 = 1 +29362895 locktype2 = 8 +29362896 locktype3 = 13 +29362896 goalCount = 3 +29362897 goalTotal = 43 +29362897 otherCount = 59 +~~~ +29362898 CURRENTGOAL IS [8] +~~~ +29367715 UP 8 +29367715 128 255 +~~~ +~~~ +29367735 outer reward +~~~ +29367735 128 8388863 +~~~ +~~~ +29367928 DOWN 8 +29367928 0 8388863 +~~~ +~~~ +29367952 0 8388862 +~~~ +~~~ +29367953 0 8388860 +~~~ +~~~ +29367955 0 8388856 +~~~ +~~~ +29367957 0 8388848 +~~~ +~~~ +29367959 0 8388832 +~~~ +~~~ +29367961 0 8388800 +~~~ +~~~ +29367962 0 8388736 +~~~ +~~~ +29367964 0 8388608 +~~~ +~~~ +29367966 0 8389120 +29367967 homeCount = 125 +29367968 waitCount = 53 +29367968 ripCount = 51 +29367989 locktype1 = 1 +29367990 locktype2 = 8 +29367990 locktype3 = 13 +29367991 goalCount = 4 +29367991 goalTotal = 44 +29367992 otherCount = 59 +~~~ +29367998 128 8389120 +29368185 128 512 +29368242 DOWN 8 +29368242 0 512 +29368254 128 512 +29368363 DOWN 8 +29368363 0 512 +29368371 128 512 +29368479 DOWN 8 +29368479 0 512 +29368499 128 512 +29368596 DOWN 8 +29368596 0 512 +29368622 128 512 +29368726 DOWN 8 +29368726 0 512 +29368746 128 512 +29368850 DOWN 8 +29368850 0 512 +29368886 128 512 +29368991 DOWN 8 +29368991 0 512 +29369005 128 512 +29374850 DOWN 8 +29374850 0 512 +29374897 128 512 +29374950 DOWN 8 +29374950 0 512 +29379956 UP 10 +29379957 waslock = 0 +29379956 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29379988 512 16777728 +~~~ +29380138 512 512 +29383458 DOWN 10 +29383458 0 512 +~~~ +~~~ +29383482 0 1536 +~~~ +~~~ +29383484 0 1024 +29383485 homeCount = 126 +29383485 waitCount = 53 +29383486 ripCount = 51 +29383486 locktype1 = 1 +29383487 locktype2 = 8 +29383487 locktype3 = 13 +29383488 goalCount = 4 +29383488 goalTotal = 44 +29383489 otherCount = 59 +~~~ +29383510 UP 10 +29383510 waslock = 0 +29383510 512 1024 +~~~ +29383556 DOWN 10 +29383556 0 1024 +~~~ +~~~ +~~~ +~~~ +29383589 homeCount = 126 +29383590 waitCount = 53 +29383590 ripCount = 51 +29383591 locktype1 = 1 +29383591 locktype2 = 8 +29383592 locktype3 = 13 +29383592 goalCount = 4 +29383593 goalTotal = 44 +29383593 otherCount = 59 +~~~ +29385874 UP 11 +29385873 1024 1024 +29389139 DOWN 11 +29389138 0 1024 +29389207 UP 11 +29389207 1024 1024 +29390700 DOWN 11 +29390700 0 1024 +29390716 UP 11 +29390716 1024 1024 +29390735 DOWN 11 +29390735 0 1024 +29390772 UP 11 +29390772 1024 1024 +29393374 BEEP1 +29393374 BEEP2 +~~~ +~~~ +~~~ +29393395 1024 33555456 +~~~ +29393545 1024 1024 +29398229 DOWN 11 +29398229 0 1024 +29398250 UP 11 +29398250 1024 1024 +~~~ +~~~ +~~~ +29398252 1024 0 +~~~ +29398253 1024 1 +~~~ +~~~ +29398255 1024 3 +~~~ +~~~ +29398256 1024 7 +~~~ +~~~ +29398258 1024 15 +~~~ +~~~ +29398260 1024 31 +~~~ +~~~ +29398262 1024 63 +~~~ +~~~ +29398264 1024 127 +~~~ +~~~ +29398266 1024 255 +29398267 homeCount = 126 +29398288 waitCount = 53 +29398288 ripCount = 52 +29398289 locktype1 = 1 +29398289 locktype2 = 8 +29398290 locktype3 = 13 +29398290 goalCount = 4 +29398291 goalTotal = 44 +29398291 otherCount = 59 +~~~ +29398292 CURRENTGOAL IS [8] +~~~ +29401721 DOWN 11 +29401721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29401758 homeCount = 126 +29401758 waitCount = 53 +29401759 ripCount = 52 +29401760 locktype1 = 1 +29401760 locktype2 = 8 +29401761 locktype3 = 13 +29401761 goalCount = 4 +29401762 goalTotal = 44 +29401762 otherCount = 59 +~~~ +29401763 CURRENTGOAL IS [8] +~~~ +29401784 UP 11 +29401784 1024 255 +29401846 DOWN 11 +29401846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29401878 homeCount = 126 +29401878 waitCount = 53 +29401879 ripCount = 52 +29401879 locktype1 = 1 +29401880 locktype2 = 8 +29401880 locktype3 = 13 +29401881 goalCount = 4 +29401881 goalTotal = 44 +29401882 otherCount = 59 +~~~ +29401883 CURRENTGOAL IS [8] +~~~ +29406312 UP 8 +29406312 128 255 +~~~ +~~~ +29406334 outer reward +~~~ +29406335 128 8388863 +~~~ +~~~ +29406562 DOWN 8 +29406562 0 8388863 +~~~ +~~~ +29406584 0 8388862 +~~~ +~~~ +29406586 0 8388860 +~~~ +~~~ +29406588 0 8388856 +~~~ +~~~ +29406590 0 8388848 +~~~ +~~~ +29406591 0 8388832 +~~~ +~~~ +29406593 0 8388800 +~~~ +~~~ +29406595 0 8388736 +~~~ +~~~ +29406597 0 8388608 +~~~ +~~~ +29406599 0 8389120 +29406600 homeCount = 126 +29406600 waitCount = 53 +29406601 ripCount = 52 +29406622 locktype1 = 1 +29406623 locktype2 = 8 +29406623 locktype3 = 13 +29406624 goalCount = 5 +29406624 goalTotal = 45 +29406625 otherCount = 59 +~~~ +29406625 128 8389120 +29406784 128 512 +29406967 DOWN 8 +29406967 0 512 +29406996 128 512 +29407085 DOWN 8 +29407085 0 512 +29407104 128 512 +29407202 DOWN 8 +29407202 0 512 +29407224 128 512 +29407338 DOWN 8 +29407338 0 512 +29407357 128 512 +29413909 DOWN 8 +29413909 0 512 +29413959 128 512 +29414006 DOWN 8 +29414006 0 512 +29418802 UP 10 +29418803 waslock = 0 +29418802 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29418830 512 16777728 +~~~ +29418980 512 512 +29419012 DOWN 10 +29419012 0 512 +~~~ +~~~ +29419037 0 2560 +~~~ +~~~ +29419039 0 2048 +29419040 homeCount = 127 +29419040 waitCount = 53 +29419041 ripCount = 52 +29419041 locktype1 = 1 +29419042 locktype2 = 8 +29419042 locktype3 = 13 +29419043 goalCount = 5 +29419043 goalTotal = 45 +29419044 otherCount = 59 +~~~ +29419074 UP 10 +29419075 waslock = 0 +29419074 512 2048 +~~~ +29424344 DOWN 10 +29424344 0 2048 +~~~ +~~~ +~~~ +~~~ +29424367 homeCount = 127 +29424367 waitCount = 53 +29424368 ripCount = 52 +29424368 locktype1 = 1 +29424369 locktype2 = 8 +29424369 locktype3 = 13 +29424370 goalCount = 5 +29424370 goalTotal = 45 +29424371 otherCount = 59 +~~~ +29424380 UP 10 +29424381 waslock = 0 +29424380 512 2048 +~~~ +29424422 DOWN 10 +29424422 0 2048 +~~~ +~~~ +~~~ +~~~ +29424446 homeCount = 127 +29424446 waitCount = 53 +29424447 ripCount = 52 +29424447 locktype1 = 1 +29424448 locktype2 = 8 +29424448 locktype3 = 13 +29424449 goalCount = 5 +29424449 goalTotal = 45 +29424450 otherCount = 59 +~~~ +29430294 UP 10 +29430294 waslock = 0 +29430294 512 2048 +~~~ +29430680 DOWN 10 +29430680 0 2048 +~~~ +~~~ +~~~ +~~~ +29430708 homeCount = 127 +29430708 waitCount = 53 +29430709 ripCount = 52 +29430710 locktype1 = 1 +29430710 locktype2 = 8 +29430711 locktype3 = 13 +29430711 goalCount = 5 +29430712 goalTotal = 45 +29430712 otherCount = 59 +~~~ +29435478 UP 12 +29435478 2048 2048 +29435569 DOWN 12 +29435569 0 2048 +29435769 LOCKOUT 3 +~~~ +29435786 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29435792 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29447190 UP 7 +29447190 64 0 +29447579 DOWN 7 +29447579 0 0 + + description: Statescript log r3 + task_epochs: 6, +] +2021-05-24 14:15:31,419 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-24 14:15:35,404 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-05-24 14:15:35,412 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-05-24 14:15:35,413 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-05-24 14:15:35,414 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-05-24 14:15:35,415 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-05-24 14:15:35,416 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-05-24 14:15:35,416 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-05-24 14:15:35,417 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-05-24 14:15:35,418 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-05-24 14:15:35,419 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-05-24 14:15:35,419 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-05-24 14:15:35,420 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-05-24 14:15:35,422 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-05-24 14:15:35,422 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-05-24 14:15:35,422 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-05-24 14:15:35,424 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-05-24 14:15:35,424 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-05-24 14:15:35,424 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-05-24 14:15:35,426 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-05-24 14:15:35,427 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_01_s1.1. +2021-05-24 14:15:35,429 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_02_r1.1. +2021-05-24 14:15:35,434 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-05-24 14:15:35,435 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-05-24 14:15:35,449 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-05-24 14:15:35,452 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-05-24 14:15:35,459 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-05-24 14:15:35,525 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-05-24 19:07:47,696 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = despereaux +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-05-24 19:07:48,174 rec_to_binaries.core: INFO Extracting analog data... +2021-05-24 19:07:48,176 rec_to_binaries.core: INFO Extracting DIO... +2021-05-24 19:07:48,176 rec_to_binaries.core: INFO Extracting mda... +2021-05-24 19:07:48,177 rec_to_binaries.core: INFO Extracting time... +2021-05-24 19:16:37,585 rec_to_binaries.core: INFO Making position directory... +2021-05-24 19:16:40,833 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-24 19:16:40,834 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 +2021-05-24 19:16:40,835 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-24 19:16:40,835 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = despereaux +date = 20191125 +nwb_metadata = Experiment Info: +Experimenter: Anna Gillespie +Description: Sungod control +Session Id: 4 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/loren/despereaux20191125.nwb + +2021-05-24 19:16:41,498 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! + , [] +2021-05-24 19:16:53,823 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-24 19:16:53,846 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-24 19:16:53,847 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-24 19:16:53,847 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-24 19:16:53,848 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-24 19:16:53,848 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-24 19:16:53,848 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-24 19:16:53,849 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-24 19:16:53,849 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-24 19:16:53,849 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-24 19:16:53,850 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-24 19:16:53,850 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-24 19:16:53,850 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-24 19:16:53,851 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-24 19:16:53,851 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-24 19:16:53,851 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-24 19:16:53,856 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-24 19:16:53,857 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-24 19:16:53,860 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [Statescript1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140114078580048 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +2608699 UP 10 +2608699 waslock = 0 +2608699 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2608722 512 16777728 +~~~ +2608872 512 512 +2608885 DOWN 10 +2608885 0 512 +~~~ +~~~ +2608901 0 1536 +~~~ +~~~ +2608903 0 1024 +2608904 homeCount = 1 +2608904 waitCount = 0 +2608905 ripCount = 0 +2608905 locktype1 = 0 +2608906 locktype2 = 0 +2608906 locktype3 = 0 +2608907 goalCount = 0 +2608907 goalTotal = 0 +2608908 otherCount = 0 +~~~ +2609055 UP 10 +2609055 waslock = 0 +2609054 512 1024 +2609074 DOWN 10 +2609074 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +2609109 homeCount = 1 +2609109 waitCount = 0 +2609109 ripCount = 0 +2609110 locktype1 = 0 +2609110 locktype2 = 0 +2609111 locktype3 = 0 +2609111 goalCount = 0 +2609112 goalTotal = 0 +2609112 otherCount = 0 +~~~ +2609182 UP 10 +2609182 waslock = 0 +2609182 512 1024 +~~~ +2609223 DOWN 10 +2609223 0 1024 +~~~ +~~~ +~~~ +~~~ +2609256 homeCount = 1 +2609257 waitCount = 0 +2609257 ripCount = 0 +2609258 locktype1 = 0 +2609258 locktype2 = 0 +2609259 locktype3 = 0 +2609259 goalCount = 0 +2609260 goalTotal = 0 +2609260 otherCount = 0 +~~~ +2609311 UP 10 +2609311 waslock = 0 +2609311 512 1024 +~~~ +2609574 DOWN 10 +2609574 0 1024 +~~~ +~~~ +~~~ +2609597 UP 10 +2609597 waslock = 0 +2609597 512 1024 +~~~ +2609599 homeCount = 1 +2609600 waitCount = 0 +2609600 ripCount = 0 +2609601 locktype1 = 0 +2609601 locktype2 = 0 +2609602 locktype3 = 0 +2609602 goalCount = 0 +2609602 goalTotal = 0 +2609603 otherCount = 0 +~~~ +~~~ +2609728 DOWN 10 +2609728 0 1024 +~~~ +~~~ +~~~ +~~~ +2609754 homeCount = 1 +2609754 waitCount = 0 +2609755 ripCount = 0 +2609755 locktype1 = 0 +2609756 locktype2 = 0 +2609756 locktype3 = 0 +2609757 goalCount = 0 +2609757 goalTotal = 0 +2609758 otherCount = 0 +~~~ +2609758 UP 10 +2609759 waslock = 0 +2609758 512 1024 +~~~ +2609870 DOWN 10 +2609870 0 1024 +~~~ +~~~ +~~~ +~~~ +2609895 homeCount = 1 +2609896 waitCount = 0 +2609896 ripCount = 0 +2609897 locktype1 = 0 +2609897 locktype2 = 0 +2609898 locktype3 = 0 +2609898 goalCount = 0 +2609898 goalTotal = 0 +2609899 otherCount = 0 +~~~ +2609909 UP 10 +2609910 waslock = 0 +2609909 512 1024 +~~~ +2610022 DOWN 10 +2610022 0 1024 +~~~ +~~~ +~~~ +~~~ +2610045 homeCount = 1 +2610045 waitCount = 0 +2610046 ripCount = 0 +2610046 locktype1 = 0 +2610047 locktype2 = 0 +2610047 locktype3 = 0 +2610048 goalCount = 0 +2610048 goalTotal = 0 +2610049 otherCount = 0 +~~~ +2610059 UP 10 +2610059 waslock = 0 +2610059 512 1024 +~~~ +2610177 DOWN 10 +2610177 0 1024 +~~~ +~~~ +~~~ +~~~ +2610204 homeCount = 1 +2610205 waitCount = 0 +2610205 ripCount = 0 +2610206 locktype1 = 0 +2610206 locktype2 = 0 +2610206 locktype3 = 0 +2610207 goalCount = 0 +2610207 goalTotal = 0 +2610208 otherCount = 0 +~~~ +2610208 UP 10 +2610209 waslock = 0 +2610208 512 1024 +~~~ +2610339 DOWN 10 +2610338 0 1024 +~~~ +~~~ +~~~ +2610363 UP 10 +2610363 waslock = 0 +2610363 512 1024 +~~~ +2610365 homeCount = 1 +2610365 waitCount = 0 +2610366 ripCount = 0 +2610366 locktype1 = 0 +2610367 locktype2 = 0 +2610367 locktype3 = 0 +2610367 goalCount = 0 +2610368 goalTotal = 0 +2610368 otherCount = 0 +~~~ +~~~ +2610495 DOWN 10 +2610495 0 1024 +~~~ +~~~ +~~~ +~~~ +2610515 homeCount = 1 +2610515 waitCount = 0 +2610516 ripCount = 0 +2610516 locktype1 = 0 +2610516 locktype2 = 0 +2610517 locktype3 = 0 +2610517 goalCount = 0 +2610518 goalTotal = 0 +2610518 otherCount = 0 +~~~ +2610526 UP 10 +2610526 waslock = 0 +2610526 512 1024 +~~~ +2610666 DOWN 10 +2610666 0 1024 +2610679 UP 10 +2610680 waslock = 0 +2610679 512 1024 +~~~ +~~~ +~~~ +~~~ +2610696 homeCount = 1 +2610697 waitCount = 0 +2610697 ripCount = 0 +2610698 locktype1 = 0 +2610698 locktype2 = 0 +2610699 locktype3 = 0 +2610699 goalCount = 0 +2610700 goalTotal = 0 +2610700 otherCount = 0 +~~~ +~~~ +2611006 DOWN 10 +2611006 0 1024 +2611013 UP 10 +2611013 waslock = 0 +2611013 512 1024 +~~~ +~~~ +~~~ +~~~ +2611036 homeCount = 1 +2611036 waitCount = 0 +2611037 ripCount = 0 +2611037 locktype1 = 0 +2611038 locktype2 = 0 +2611038 locktype3 = 0 +2611038 goalCount = 0 +2611039 goalTotal = 0 +2611039 otherCount = 0 +~~~ +~~~ +2611156 DOWN 10 +2611156 0 1024 +2611188 UP 10 +2611189 waslock = 0 +2611188 512 1024 +~~~ +~~~ +~~~ +~~~ +2611194 homeCount = 1 +2611195 waitCount = 0 +2611195 ripCount = 0 +2611196 locktype1 = 0 +2611196 locktype2 = 0 +2611196 locktype3 = 0 +2611197 goalCount = 0 +2611197 goalTotal = 0 +2611198 otherCount = 0 +~~~ +~~~ +2611313 DOWN 10 +2611313 0 1024 +~~~ +~~~ +~~~ +~~~ +2611336 homeCount = 1 +2611337 waitCount = 0 +2611337 ripCount = 0 +2611338 locktype1 = 0 +2611338 locktype2 = 0 +2611339 locktype3 = 0 +2611339 goalCount = 0 +2611340 goalTotal = 0 +2611340 otherCount = 0 +~~~ +2611352 UP 10 +2611353 waslock = 0 +2611352 512 1024 +~~~ +2611481 DOWN 10 +2611481 0 1024 +~~~ +~~~ +~~~ +~~~ +2611505 homeCount = 1 +2611506 waitCount = 0 +2611506 ripCount = 0 +2611507 locktype1 = 0 +2611507 locktype2 = 0 +2611508 locktype3 = 0 +2611508 goalCount = 0 +2611508 goalTotal = 0 +2611509 otherCount = 0 +~~~ +2611524 UP 10 +2611524 waslock = 0 +2611524 512 1024 +~~~ +2611655 DOWN 10 +2611655 0 1024 +~~~ +~~~ +~~~ +~~~ +2611675 homeCount = 1 +2611676 waitCount = 0 +2611676 ripCount = 0 +2611677 locktype1 = 0 +2611677 locktype2 = 0 +2611678 locktype3 = 0 +2611678 goalCount = 0 +2611679 goalTotal = 0 +2611679 otherCount = 0 +~~~ +2611701 UP 10 +2611702 waslock = 0 +2611701 512 1024 +~~~ +2611829 DOWN 10 +2611829 0 1024 +~~~ +~~~ +~~~ +~~~ +2611855 homeCount = 1 +2611855 waitCount = 0 +2611856 ripCount = 0 +2611856 locktype1 = 0 +2611857 locktype2 = 0 +2611857 locktype3 = 0 +2611858 goalCount = 0 +2611858 goalTotal = 0 +2611859 otherCount = 0 +~~~ +2611865 UP 10 +2611865 waslock = 0 +2611865 512 1024 +~~~ +2612015 DOWN 10 +2612015 0 1024 +~~~ +~~~ +~~~ +2612033 UP 10 +2612034 waslock = 0 +2612033 512 1024 +~~~ +2612035 homeCount = 1 +2612036 waitCount = 0 +2612036 ripCount = 0 +2612037 locktype1 = 0 +2612037 locktype2 = 0 +2612038 locktype3 = 0 +2612038 goalCount = 0 +2612039 goalTotal = 0 +2612039 otherCount = 0 +~~~ +~~~ +2612181 DOWN 10 +2612180 0 1024 +~~~ +~~~ +~~~ +~~~ +2612207 homeCount = 1 +2612208 waitCount = 0 +2612208 ripCount = 0 +2612209 locktype1 = 0 +2612209 locktype2 = 0 +2612210 locktype3 = 0 +2612210 goalCount = 0 +2612211 goalTotal = 0 +2612211 otherCount = 0 +~~~ +2612229 UP 10 +2612229 waslock = 0 +2612229 512 1024 +~~~ +2612356 DOWN 10 +2612356 0 1024 +~~~ +~~~ +~~~ +~~~ +2612387 homeCount = 1 +2612387 waitCount = 0 +2612388 ripCount = 0 +2612388 locktype1 = 0 +2612389 locktype2 = 0 +2612389 locktype3 = 0 +2612390 goalCount = 0 +2612390 goalTotal = 0 +2612391 otherCount = 0 +~~~ +2612407 UP 10 +2612407 waslock = 0 +2612406 512 1024 +~~~ +2614983 DOWN 10 +2614983 0 1024 +~~~ +~~~ +~~~ +~~~ +2615004 homeCount = 1 +2615005 waitCount = 0 +2615005 ripCount = 0 +2615006 locktype1 = 0 +2615006 locktype2 = 0 +2615007 locktype3 = 0 +2615007 goalCount = 0 +2615008 goalTotal = 0 +2615008 otherCount = 0 +~~~ +2617153 UP 12 +2617154 LOCKOUT 1 +2617153 2048 1024 +~~~ +2617175 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +2617178 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2617366 DOWN 12 +2617366 0 0 +2617491 UP 12 +2617491 2048 0 +2617895 DOWN 12 +2617895 0 0 +2617923 UP 12 +2617923 2048 0 +2618053 DOWN 12 +2618053 0 0 +2618075 UP 12 +2618075 2048 0 +2619271 DOWN 12 +2619271 0 0 +2619295 UP 12 +2619295 2048 0 +2619584 DOWN 12 +2619584 0 0 +2619593 UP 12 +2619593 2048 0 +2621137 DOWN 12 +2621137 0 0 +2622946 UP 11 +2622946 1024 0 +2623563 DOWN 11 +2623563 0 0 +2623582 UP 11 +2623582 1024 0 +2623717 DOWN 11 +2623717 0 0 +2623731 UP 11 +2623731 1024 0 +2623879 DOWN 11 +2623879 0 0 +2623904 UP 11 +2623903 1024 0 +2624051 DOWN 11 +2624051 0 0 +2624056 UP 11 +2624056 1024 0 +2626713 DOWN 11 +2626713 0 0 +2626722 UP 11 +2626722 1024 0 +2627171 DOWN 11 +2627171 0 0 +2631902 UP 7 +2631902 64 0 +2632210 DOWN 7 +2632210 0 0 +2632230 64 0 +2634192 DOWN 7 +2634192 0 0 +2634209 64 0 +2635732 DOWN 7 +2635732 0 0 +2642069 512 0 +2642175 LOCKEND +~~~ +~~~ +~~~ +2642201 512 512 +2642433 DOWN 10 +2642433 0 512 +2642526 UP 10 +2642526 waslock = 0 +2642526 512 512 +2642544 DOWN 10 +2642544 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2642558 0 16777728 +~~~ +~~~ +~~~ +2642570 0 16778752 +~~~ +~~~ +2642571 0 16778240 +2642572 homeCount = 2 +2642573 waitCount = 0 +2642573 ripCount = 0 +2642574 locktype1 = 1 +2642574 locktype2 = 0 +2642575 locktype3 = 0 +2642575 goalCount = 0 +2642576 goalTotal = 0 +2642576 otherCount = 0 +~~~ +2642628 UP 10 +2642629 waslock = 0 +2642628 512 16778240 +~~~ +2642704 DOWN 10 +2642704 0 16778240 +2642706 UP 10 +2642707 waslock = 0 +2642706 512 16778240 +2642708 512 1024 +2642713 DOWN 10 +2642713 0 1024 +2642720 UP 10 +2642720 waslock = 0 +2642720 512 1024 +~~~ +~~~ +~~~ +~~~ +2642742 homeCount = 2 +2642742 waitCount = 0 +2642743 ripCount = 0 +2642743 locktype1 = 1 +2642744 locktype2 = 0 +2642744 locktype3 = 0 +2642745 goalCount = 0 +2642745 goalTotal = 0 +2642746 otherCount = 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2642748 homeCount = 2 +2642770 waitCount = 0 +2642770 ripCount = 0 +2642771 locktype1 = 1 +2642771 locktype2 = 0 +2642772 locktype3 = 0 +2642772 goalCount = 0 +2642772 goalTotal = 0 +2642773 otherCount = 0 +~~~ +~~~ +2643241 DOWN 10 +2643241 0 1024 +2643258 UP 10 +2643258 waslock = 0 +2643258 512 1024 +~~~ +~~~ +~~~ +~~~ +2643268 homeCount = 2 +2643268 waitCount = 0 +2643269 ripCount = 0 +2643269 locktype1 = 1 +2643269 locktype2 = 0 +2643270 locktype3 = 0 +2643270 goalCount = 0 +2643271 goalTotal = 0 +2643271 otherCount = 0 +~~~ +~~~ +2643397 DOWN 10 +2643397 0 1024 +~~~ +~~~ +~~~ +~~~ +2643424 homeCount = 2 +2643424 waitCount = 0 +2643425 ripCount = 0 +2643425 locktype1 = 1 +2643426 locktype2 = 0 +2643426 locktype3 = 0 +2643427 goalCount = 0 +2643427 goalTotal = 0 +2643427 otherCount = 0 +~~~ +2643429 UP 10 +2643429 waslock = 0 +2643429 512 1024 +~~~ +2646784 DOWN 10 +2646784 0 1024 +~~~ +~~~ +~~~ +~~~ +2646812 homeCount = 2 +2646812 waitCount = 0 +2646813 ripCount = 0 +2646813 locktype1 = 1 +2646813 locktype2 = 0 +2646814 locktype3 = 0 +2646814 goalCount = 0 +2646815 goalTotal = 0 +2646815 otherCount = 0 +~~~ +2654547 UP 2 +2654547 2 1024 +~~~ +2654570 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +2654574 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2654848 DOWN 2 +2654848 0 0 +2654865 2 0 +2655008 DOWN 2 +2655008 0 0 +2655030 2 0 +2657028 DOWN 2 +2657028 0 0 +2661794 512 0 +2661810 0 0 +2661854 512 0 +2662303 0 0 +2662318 512 0 +2662471 0 0 +2662483 512 0 +2662646 0 0 +2662676 512 0 +2662753 0 0 +2662824 512 0 +2663410 0 0 +2667214 UP 8 +2667214 128 0 +2667509 DOWN 8 +2667509 0 0 +2667541 128 0 +2667910 DOWN 8 +2667910 0 0 +2667936 128 0 +2668075 DOWN 8 +2668075 0 0 +2668097 128 0 +2668243 DOWN 8 +2668243 0 0 +2668267 128 0 +2668421 DOWN 8 +2668421 0 0 +2668438 128 0 +2668589 DOWN 8 +2668589 0 0 +2668622 128 0 +2668952 DOWN 8 +2668952 0 0 +2668978 128 0 +2669136 DOWN 8 +2669136 0 0 +2669147 128 0 +2670697 DOWN 8 +2670697 0 0 +2670704 128 0 +2670876 DOWN 8 +2670876 0 0 +2670890 128 0 +2673117 DOWN 8 +2673117 0 0 +2673168 128 0 +2673243 DOWN 8 +2673243 0 0 +2673296 128 0 +2673609 DOWN 8 +2673609 0 0 +2673620 128 0 +2674173 DOWN 8 +2674173 0 0 +2674176 128 0 +2674222 DOWN 8 +2674222 0 0 +2674261 128 0 +2674378 DOWN 8 +2674378 0 0 +2674393 128 0 +2674564 DOWN 8 +2674564 0 0 +2674583 128 0 +2674681 DOWN 8 +2674681 0 0 +2679570 LOCKEND +~~~ +~~~ +~~~ +2679589 0 512 +2680342 UP 10 +2680343 waslock = 0 +2680342 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2680378 512 16777728 +~~~ +2680411 DOWN 10 +2680411 0 16777728 +~~~ +~~~ +2680438 0 16779776 +~~~ +~~~ +2680440 0 16779264 +2680441 homeCount = 3 +2680442 waitCount = 0 +2680442 ripCount = 0 +2680443 locktype1 = 1 +2680443 locktype2 = 1 +2680443 locktype3 = 0 +2680444 goalCount = 0 +2680444 goalTotal = 0 +2680445 otherCount = 0 +~~~ +2680525 UP 10 +2680525 waslock = 0 +2680525 512 16779264 +2680528 512 2048 +~~~ +2680573 DOWN 10 +2680573 0 2048 +~~~ +~~~ +~~~ +~~~ +2680601 homeCount = 3 +2680601 waitCount = 0 +2680602 ripCount = 0 +2680602 locktype1 = 1 +2680603 locktype2 = 1 +2680603 locktype3 = 0 +2680604 goalCount = 0 +2680604 goalTotal = 0 +2680605 otherCount = 0 +~~~ +2680677 UP 10 +2680678 waslock = 0 +2680677 512 2048 +~~~ +2681296 DOWN 10 +2681296 0 2048 +~~~ +~~~ +2681318 UP 10 +2681318 waslock = 0 +2681318 512 2048 +~~~ +~~~ +2681321 homeCount = 3 +2681321 waitCount = 0 +2681322 ripCount = 0 +2681322 locktype1 = 1 +2681323 locktype2 = 1 +2681323 locktype3 = 0 +2681324 goalCount = 0 +2681324 goalTotal = 0 +2681325 otherCount = 0 +~~~ +~~~ +2682967 DOWN 10 +2682967 0 2048 +2682978 UP 10 +2682978 waslock = 0 +2682978 512 2048 +~~~ +~~~ +~~~ +~~~ +2683005 homeCount = 3 +2683005 waitCount = 0 +2683006 ripCount = 0 +2683006 locktype1 = 1 +2683007 locktype2 = 1 +2683007 locktype3 = 0 +2683008 goalCount = 0 +2683008 goalTotal = 0 +2683009 otherCount = 0 +~~~ +~~~ +2684230 DOWN 10 +2684230 0 2048 +~~~ +~~~ +~~~ +~~~ +2684252 homeCount = 3 +2684253 waitCount = 0 +2684253 ripCount = 0 +2684254 locktype1 = 1 +2684254 locktype2 = 1 +2684255 locktype3 = 0 +2684255 goalCount = 0 +2684256 goalTotal = 0 +2684256 otherCount = 0 +~~~ +2684266 UP 10 +2684266 waslock = 0 +2684266 512 2048 +~~~ +2684599 DOWN 10 +2684599 0 2048 +~~~ +~~~ +2684620 UP 10 +2684620 waslock = 0 +2684620 512 2048 +~~~ +~~~ +2684623 homeCount = 3 +2684623 waitCount = 0 +2684624 ripCount = 0 +2684624 locktype1 = 1 +2684624 locktype2 = 1 +2684625 locktype3 = 0 +2684625 goalCount = 0 +2684626 goalTotal = 0 +2684626 otherCount = 0 +~~~ +~~~ +2684738 DOWN 10 +2684738 0 2048 +~~~ +~~~ +~~~ +~~~ +2684765 homeCount = 3 +2684765 waitCount = 0 +2684766 ripCount = 0 +2684766 locktype1 = 1 +2684767 locktype2 = 1 +2684767 locktype3 = 0 +2684768 goalCount = 0 +2684768 goalTotal = 0 +2684769 otherCount = 0 +~~~ +2685961 UP 12 +2685961 2048 2048 +2686484 DOWN 12 +2686484 0 2048 +2686519 UP 12 +2686519 2048 2048 +2686961 CLICK1 +2686961 CLICK2 +2686961 DOWN 12 +2686961 0 2048 +~~~ +~~~ +~~~ +2686981 0 67110912 +~~~ +2687006 UP 12 +2687006 2048 67110912 +2687131 2048 2048 +~~~ +~~~ +2687156 2048 0 +~~~ +~~~ +2687157 2048 1 +~~~ +~~~ +2687159 2048 3 +~~~ +~~~ +2687161 2048 7 +~~~ +~~~ +2687163 2048 15 +~~~ +~~~ +2687165 2048 31 +~~~ +~~~ +2687166 2048 63 +~~~ +~~~ +2687168 2048 127 +~~~ +~~~ +2687170 2048 255 +2687171 homeCount = 3 +2687172 waitCount = 1 +2687172 ripCount = 0 +2687173 locktype1 = 1 +2687194 locktype2 = 1 +2687194 locktype3 = 0 +2687195 goalCount = 0 +2687195 goalTotal = 0 +2687196 otherCount = 0 +~~~ +2687197 CURRENTGOAL IS [5] +~~~ +2691575 DOWN 12 +2691575 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2691618 homeCount = 3 +2691619 waitCount = 1 +2691619 ripCount = 0 +2691620 locktype1 = 1 +2691620 locktype2 = 1 +2691621 locktype3 = 0 +2691621 goalCount = 0 +2691621 goalTotal = 0 +2691622 otherCount = 0 +~~~ +2691623 CURRENTGOAL IS [5] +~~~ +2694045 UP 4 +2694045 8 255 +~~~ +~~~ +2694307 DOWN 4 +2694307 0 255 +~~~ +~~~ +2694333 0 254 +~~~ +~~~ +2694335 0 252 +~~~ +~~~ +2694337 0 248 +~~~ +~~~ +2694339 0 240 +~~~ +2694340 8 240 +~~~ +~~~ +2694342 8 224 +~~~ +~~~ +2694344 8 192 +~~~ +2694345 8 128 +~~~ +~~~ +2694346 8 0 +~~~ +~~~ +2694348 8 512 +2694349 homeCount = 3 +2694349 waitCount = 1 +2694350 ripCount = 0 +2694371 locktype1 = 1 +2694371 locktype2 = 1 +2694372 locktype3 = 0 +2694372 goalCount = 0 +2694373 goalTotal = 0 +2694373 otherCount = 1 +~~~ +2697167 DOWN 4 +2697167 0 512 +2700619 UP 10 +2700620 waslock = 0 +2700619 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2700643 512 16777728 +~~~ +2700677 DOWN 10 +2700677 0 16777728 +~~~ +~~~ +2700697 0 16778752 +~~~ +~~~ +2700699 0 16778240 +2700700 homeCount = 4 +2700700 waitCount = 1 +2700701 ripCount = 0 +2700701 locktype1 = 1 +2700702 locktype2 = 1 +2700702 locktype3 = 0 +2700703 goalCount = 0 +2700703 goalTotal = 0 +2700703 otherCount = 1 +~~~ +2700725 UP 10 +2700725 waslock = 0 +2700725 512 16778240 +~~~ +2700793 512 1024 +2700811 DOWN 10 +2700811 0 1024 +~~~ +~~~ +~~~ +~~~ +2700832 homeCount = 4 +2700832 waitCount = 1 +2700833 ripCount = 0 +2700833 locktype1 = 1 +2700834 locktype2 = 1 +2700834 locktype3 = 0 +2700835 goalCount = 0 +2700835 goalTotal = 0 +2700836 otherCount = 1 +~~~ +2700921 UP 10 +2700921 waslock = 0 +2700921 512 1024 +~~~ +2703713 DOWN 10 +2703713 0 1024 +2703727 UP 10 +2703728 waslock = 0 +2703727 512 1024 +~~~ +~~~ +~~~ +~~~ +2703741 homeCount = 4 +2703742 waitCount = 1 +2703742 ripCount = 0 +2703743 locktype1 = 1 +2703743 locktype2 = 1 +2703744 locktype3 = 0 +2703744 goalCount = 0 +2703745 goalTotal = 0 +2703745 otherCount = 1 +~~~ +~~~ +2703764 DOWN 10 +2703764 0 1024 +~~~ +~~~ +~~~ +~~~ +2703786 homeCount = 4 +2703786 waitCount = 1 +2703787 ripCount = 0 +2703787 locktype1 = 1 +2703788 locktype2 = 1 +2703788 locktype3 = 0 +2703789 goalCount = 0 +2703789 goalTotal = 0 +2703790 otherCount = 1 +~~~ +2704753 UP 11 +2704753 1024 1024 +2705597 DOWN 11 +2705597 0 1024 +2705617 UP 11 +2705617 1024 1024 +2705678 DOWN 11 +2705678 0 1024 +2705744 UP 11 +2705744 1024 1024 +2705753 BEEP1 +2705753 BEEP2 +~~~ +~~~ +~~~ +2705772 1024 33555456 +~~~ +2705922 1024 1024 +2709117 DOWN 11 +2709117 0 1024 +~~~ +~~~ +2709138 0 0 +~~~ +~~~ +2709140 0 1 +~~~ +~~~ +2709142 0 3 +~~~ +~~~ +2709144 0 7 +~~~ +~~~ +2709146 0 15 +~~~ +~~~ +2709147 0 31 +~~~ +~~~ +2709149 0 63 +~~~ +~~~ +2709151 0 127 +~~~ +~~~ +2709153 0 255 +2709154 homeCount = 4 +2709154 waitCount = 1 +2709155 ripCount = 1 +2709155 locktype1 = 1 +2709156 locktype2 = 1 +2709156 locktype3 = 0 +2709178 goalCount = 0 +2709178 goalTotal = 0 +2709178 otherCount = 1 +~~~ +2709180 CURRENTGOAL IS [5] +~~~ +2709182 UP 11 +2709182 1024 255 +2709619 DOWN 11 +2709619 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2709655 homeCount = 4 +2709655 waitCount = 1 +2709656 ripCount = 1 +2709656 locktype1 = 1 +2709657 locktype2 = 1 +2709657 locktype3 = 0 +2709658 goalCount = 0 +2709658 goalTotal = 0 +2709659 otherCount = 1 +~~~ +2709660 CURRENTGOAL IS [5] +~~~ +2711925 UP 7 +2711925 64 255 +~~~ +~~~ +2714140 DOWN 7 +2714140 0 255 +~~~ +~~~ +2714164 0 254 +~~~ +~~~ +2714166 0 252 +~~~ +~~~ +2714168 0 248 +~~~ +~~~ +2714170 0 240 +~~~ +~~~ +2714171 0 224 +~~~ +~~~ +2714173 0 192 +~~~ +~~~ +2714175 0 128 +~~~ +~~~ +2714177 0 0 +~~~ +~~~ +2714179 0 512 +2714180 homeCount = 4 +2714180 waitCount = 1 +2714181 ripCount = 1 +2714181 locktype1 = 1 +2714182 locktype2 = 1 +2714203 locktype3 = 0 +2714203 goalCount = 0 +2714204 goalTotal = 0 +2714204 otherCount = 2 +~~~ +2714205 64 512 +2714226 DOWN 7 +2714226 0 512 +2717944 UP 10 +2717945 waslock = 0 +2717944 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2717977 512 16777728 +~~~ +2718127 512 512 +2718153 DOWN 10 +2718153 0 512 +~~~ +~~~ +2718172 0 2560 +~~~ +~~~ +2718174 0 2048 +2718175 homeCount = 5 +2718176 waitCount = 1 +2718176 ripCount = 1 +2718177 locktype1 = 1 +2718177 locktype2 = 1 +2718178 locktype3 = 0 +2718178 goalCount = 0 +2718179 goalTotal = 0 +2718179 otherCount = 2 +~~~ +2718313 UP 10 +2718314 waslock = 0 +2718313 512 2048 +~~~ +2721159 DOWN 10 +2721158 0 2048 +2721177 UP 10 +2721177 waslock = 0 +2721177 512 2048 +~~~ +~~~ +~~~ +~~~ +2721185 homeCount = 5 +2721186 waitCount = 1 +2721186 ripCount = 1 +2721187 locktype1 = 1 +2721187 locktype2 = 1 +2721188 locktype3 = 0 +2721188 goalCount = 0 +2721189 goalTotal = 0 +2721189 otherCount = 2 +~~~ +~~~ +2721253 DOWN 10 +2721253 0 2048 +~~~ +~~~ +~~~ +~~~ +2721276 homeCount = 5 +2721276 waitCount = 1 +2721277 ripCount = 1 +2721277 locktype1 = 1 +2721278 locktype2 = 1 +2721278 locktype3 = 0 +2721279 goalCount = 0 +2721279 goalTotal = 0 +2721280 otherCount = 2 +~~~ +2722359 UP 12 +2722359 2048 2048 +2722798 DOWN 12 +2722798 0 2048 +2722838 UP 12 +2722838 2048 2048 +2723142 DOWN 12 +2723142 0 2048 +2723159 UP 12 +2723159 2048 2048 +2723223 DOWN 12 +2723223 0 2048 +2723288 UP 12 +2723288 2048 2048 +2723859 CLICK1 +2723859 CLICK2 +~~~ +~~~ +~~~ +2723886 2048 67110912 +~~~ +2724036 2048 2048 +2727818 DOWN 12 +2727818 0 2048 +~~~ +~~~ +2727844 0 0 +~~~ +~~~ +2727846 0 1 +~~~ +~~~ +2727847 0 3 +~~~ +~~~ +2727849 0 7 +~~~ +~~~ +2727851 0 15 +~~~ +~~~ +2727853 0 31 +~~~ +~~~ +2727855 0 63 +~~~ +~~~ +2727856 0 127 +~~~ +~~~ +2727858 0 255 +2727859 homeCount = 5 +2727860 waitCount = 2 +2727860 ripCount = 1 +2727861 locktype1 = 1 +2727861 locktype2 = 1 +2727862 locktype3 = 0 +2727883 goalCount = 0 +2727883 goalTotal = 0 +2727884 otherCount = 2 +~~~ +2727885 CURRENTGOAL IS [5] +~~~ +2732529 UP 1 +2732529 1 255 +~~~ +~~~ +2732809 DOWN 1 +2732809 0 255 +2732825 1 255 +~~~ +~~~ +2732828 1 254 +~~~ +~~~ +2732830 1 252 +~~~ +~~~ +2732832 1 248 +~~~ +~~~ +2732833 1 240 +~~~ +~~~ +2732835 1 224 +~~~ +~~~ +2732837 1 192 +~~~ +~~~ +2732839 1 128 +~~~ +~~~ +2732841 1 0 +~~~ +~~~ +2732843 1 512 +2732843 homeCount = 5 +2732844 waitCount = 2 +2732844 ripCount = 1 +2732845 locktype1 = 1 +2732845 locktype2 = 1 +2732866 locktype3 = 0 +2732867 goalCount = 0 +2732867 goalTotal = 0 +2732867 otherCount = 3 +~~~ +2734994 DOWN 1 +2734994 0 512 +2735003 1 512 +2735908 DOWN 1 +2735908 0 512 +2735920 1 512 +2736101 DOWN 1 +2736101 0 512 +2736111 1 512 +2737189 DOWN 1 +2737189 0 512 +2737197 1 512 +2737380 DOWN 1 +2737380 0 512 +2737397 1 512 +2737567 DOWN 1 +2737567 0 512 +2737579 1 512 +2737737 DOWN 1 +2737737 0 512 +2737755 1 512 +2737928 DOWN 1 +2737928 0 512 +2737943 1 512 +2738611 DOWN 1 +2738611 0 512 +2738651 1 512 +2738688 DOWN 1 +2738688 0 512 +2738818 1 512 +2738845 DOWN 1 +2738845 0 512 +2743363 UP 10 +2743363 waslock = 0 +2743363 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2743394 512 16777728 +~~~ +2743521 DOWN 10 +2743520 0 16777728 +2743544 0 512 +~~~ +~~~ +2743560 0 2560 +~~~ +~~~ +2743562 0 2048 +2743563 homeCount = 6 +2743564 waitCount = 2 +2743564 ripCount = 1 +2743565 locktype1 = 1 +2743565 locktype2 = 1 +2743566 locktype3 = 0 +2743566 goalCount = 0 +2743567 goalTotal = 0 +2743567 otherCount = 3 +~~~ +2743579 UP 10 +2743579 waslock = 0 +2743579 512 2048 +~~~ +2748231 DOWN 10 +2748231 0 2048 +~~~ +~~~ +~~~ +~~~ +2748261 homeCount = 6 +2748261 waitCount = 2 +2748262 ripCount = 1 +2748262 locktype1 = 1 +2748263 locktype2 = 1 +2748263 locktype3 = 0 +2748263 goalCount = 0 +2748264 goalTotal = 0 +2748264 otherCount = 3 +~~~ +2748272 UP 10 +2748273 waslock = 0 +2748272 512 2048 +~~~ +2748303 DOWN 10 +2748303 0 2048 +~~~ +~~~ +~~~ +~~~ +2748321 homeCount = 6 +2748322 waitCount = 2 +2748322 ripCount = 1 +2748323 locktype1 = 1 +2748323 locktype2 = 1 +2748324 locktype3 = 0 +2748324 goalCount = 0 +2748325 goalTotal = 0 +2748325 otherCount = 3 +~~~ +2749680 UP 12 +2749680 2048 2048 +2751680 CLICK1 +2751680 CLICK2 +~~~ +~~~ +~~~ +2751702 2048 67110912 +~~~ +2751852 2048 2048 +2755155 DOWN 12 +2755155 0 2048 +~~~ +~~~ +2755179 0 0 +~~~ +2755181 UP 12 +2755181 2048 0 +~~~ +~~~ +2755182 2048 1 +~~~ +~~~ +2755184 2048 3 +~~~ +2755185 2048 7 +~~~ +~~~ +2755187 2048 15 +~~~ +~~~ +2755188 2048 31 +~~~ +~~~ +2755190 2048 63 +~~~ +~~~ +2755192 2048 127 +~~~ +~~~ +2755194 2048 255 +2755195 homeCount = 6 +2755216 waitCount = 3 +2755217 ripCount = 1 +2755217 locktype1 = 1 +2755218 locktype2 = 1 +2755218 locktype3 = 0 +2755218 goalCount = 0 +2755219 goalTotal = 0 +2755219 otherCount = 3 +~~~ +2755220 CURRENTGOAL IS [5] +~~~ +2755257 DOWN 12 +2755257 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2755297 homeCount = 6 +2755297 waitCount = 3 +2755298 ripCount = 1 +2755298 locktype1 = 1 +2755299 locktype2 = 1 +2755299 locktype3 = 0 +2755300 goalCount = 0 +2755300 goalTotal = 0 +2755301 otherCount = 3 +~~~ +2755302 CURRENTGOAL IS [5] +~~~ +2758389 UP 6 +2758389 32 255 +~~~ +~~~ +2762845 DOWN 6 +2762845 0 255 +~~~ +~~~ +2762870 0 254 +~~~ +~~~ +2762872 0 252 +~~~ +~~~ +2762873 0 248 +~~~ +~~~ +2762875 0 240 +~~~ +~~~ +2762877 0 224 +~~~ +~~~ +2762879 0 192 +~~~ +~~~ +2762881 0 128 +~~~ +~~~ +2762882 0 0 +~~~ +~~~ +2762884 0 512 +2762885 homeCount = 6 +2762886 waitCount = 3 +2762886 ripCount = 1 +2762887 locktype1 = 1 +2762887 locktype2 = 1 +2762908 locktype3 = 0 +2762909 goalCount = 0 +2762909 goalTotal = 0 +2762910 otherCount = 4 +~~~ +2766008 UP 10 +2766008 waslock = 0 +2766008 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2766038 512 16777728 +~~~ +2766188 512 512 +2766218 DOWN 10 +2766217 0 512 +~~~ +~~~ +2766243 0 1536 +~~~ +~~~ +2766245 0 1024 +2766246 homeCount = 7 +2766246 waitCount = 3 +2766247 ripCount = 1 +2766247 locktype1 = 1 +2766248 locktype2 = 1 +2766248 locktype3 = 0 +2766249 goalCount = 0 +2766249 goalTotal = 0 +2766250 otherCount = 4 +~~~ +2766305 UP 10 +2766305 waslock = 0 +2766305 512 1024 +~~~ +2770192 DOWN 10 +2770192 0 1024 +~~~ +~~~ +~~~ +~~~ +2770215 homeCount = 7 +2770215 waitCount = 3 +2770216 ripCount = 1 +2770216 locktype1 = 1 +2770217 locktype2 = 1 +2770217 locktype3 = 0 +2770218 goalCount = 0 +2770218 goalTotal = 0 +2770219 otherCount = 4 +~~~ +2771671 UP 11 +2771671 1024 1024 +2771682 DOWN 11 +2771682 0 1024 +2771731 UP 11 +2771731 1024 1024 +2773171 BEEP1 +2773171 BEEP2 +~~~ +~~~ +~~~ +2773194 1024 33555456 +~~~ +2773198 DOWN 11 +2773198 0 33555456 +2773250 UP 11 +2773250 1024 33555456 +2773344 1024 1024 +~~~ +~~~ +2773852 1024 0 +~~~ +~~~ +2773854 1024 1 +~~~ +~~~ +2773856 1024 3 +~~~ +~~~ +2773858 1024 7 +~~~ +~~~ +2773860 1024 15 +~~~ +~~~ +2773861 1024 31 +~~~ +~~~ +2773863 1024 63 +~~~ +~~~ +2773865 1024 127 +~~~ +~~~ +2773867 1024 255 +2773868 homeCount = 7 +2773868 waitCount = 3 +2773869 ripCount = 2 +2773869 locktype1 = 1 +2773890 locktype2 = 1 +2773891 locktype3 = 0 +2773891 goalCount = 0 +2773892 goalTotal = 0 +2773892 otherCount = 4 +~~~ +2773893 CURRENTGOAL IS [5] +~~~ +2778754 DOWN 11 +2778754 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2778788 homeCount = 7 +2778789 waitCount = 3 +2778789 ripCount = 2 +2778790 locktype1 = 1 +2778790 locktype2 = 1 +2778790 locktype3 = 0 +2778791 goalCount = 0 +2778791 goalTotal = 0 +2778792 otherCount = 4 +~~~ +2778793 CURRENTGOAL IS [5] +~~~ +2782128 UP 6 +2782128 32 255 +~~~ +~~~ +2783049 DOWN 6 +2783049 0 255 +~~~ +~~~ +2783075 0 254 +~~~ +~~~ +2783077 0 252 +~~~ +~~~ +2783078 0 248 +~~~ +~~~ +2783080 0 240 +~~~ +~~~ +2783082 0 224 +~~~ +~~~ +2783084 0 192 +~~~ +~~~ +2783086 0 128 +~~~ +~~~ +2783088 0 0 +~~~ +~~~ +2783090 0 512 +2783090 homeCount = 7 +2783091 waitCount = 3 +2783091 ripCount = 2 +2783092 locktype1 = 1 +2783092 locktype2 = 1 +2783114 locktype3 = 0 +2783114 goalCount = 0 +2783114 goalTotal = 0 +2783115 otherCount = 5 +~~~ +2786457 UP 10 +2786457 waslock = 0 +2786457 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2786485 512 16777728 +~~~ +2786635 512 512 +2786717 DOWN 10 +2786716 0 512 +~~~ +~~~ +2786737 0 2560 +~~~ +~~~ +2786739 0 2048 +2786740 homeCount = 8 +2786740 waitCount = 3 +2786741 ripCount = 2 +2786741 locktype1 = 1 +2786742 locktype2 = 1 +2786742 locktype3 = 0 +2786742 goalCount = 0 +2786743 goalTotal = 0 +2786743 otherCount = 5 +~~~ +2786787 UP 10 +2786787 waslock = 0 +2786787 512 2048 +~~~ +2790582 DOWN 10 +2790582 0 2048 +~~~ +~~~ +~~~ +~~~ +2790611 UP 10 +2790611 waslock = 0 +2790610 512 2048 +2790612 homeCount = 8 +2790613 waitCount = 3 +2790613 ripCount = 2 +2790614 locktype1 = 1 +2790614 locktype2 = 1 +2790615 locktype3 = 0 +2790615 goalCount = 0 +2790616 goalTotal = 0 +2790616 otherCount = 5 +~~~ +~~~ +2790655 DOWN 10 +2790655 0 2048 +~~~ +~~~ +~~~ +~~~ +2790682 homeCount = 8 +2790682 waitCount = 3 +2790683 ripCount = 2 +2790683 locktype1 = 1 +2790684 locktype2 = 1 +2790684 locktype3 = 0 +2790685 goalCount = 0 +2790685 goalTotal = 0 +2790686 otherCount = 5 +~~~ +2791798 UP 12 +2791798 2048 2048 +2792281 DOWN 12 +2792281 0 2048 +2792337 UP 12 +2792337 2048 2048 +2792758 DOWN 12 +2792758 0 2048 +2792844 UP 12 +2792844 2048 2048 +2795298 CLICK1 +2795298 CLICK2 +~~~ +~~~ +~~~ +2795318 2048 67110912 +~~~ +2795468 2048 2048 +2799664 DOWN 12 +2799664 0 2048 +~~~ +~~~ +2799687 0 0 +~~~ +~~~ +2799689 0 1 +~~~ +~~~ +2799690 0 3 +~~~ +~~~ +2799692 0 7 +~~~ +~~~ +2799694 0 15 +~~~ +~~~ +2799696 0 31 +~~~ +~~~ +2799698 0 63 +~~~ +~~~ +2799700 0 127 +~~~ +~~~ +2799701 0 255 +2799702 homeCount = 8 +2799703 waitCount = 4 +2799703 ripCount = 2 +2799704 locktype1 = 1 +2799704 locktype2 = 1 +2799705 locktype3 = 0 +2799726 goalCount = 0 +2799727 goalTotal = 0 +2799727 otherCount = 5 +~~~ +2799728 CURRENTGOAL IS [5] +~~~ +2802199 UP 4 +2802199 8 255 +~~~ +~~~ +2802576 DOWN 4 +2802576 0 255 +2802593 8 255 +~~~ +~~~ +2802609 8 254 +~~~ +~~~ +2802611 8 252 +~~~ +~~~ +2802613 8 248 +~~~ +~~~ +2802615 8 240 +~~~ +~~~ +2802616 8 224 +~~~ +~~~ +2802618 8 192 +~~~ +~~~ +2802620 8 128 +~~~ +~~~ +2802622 8 0 +~~~ +~~~ +2802624 8 512 +2802625 homeCount = 8 +2802625 waitCount = 4 +2802626 ripCount = 2 +2802626 locktype1 = 1 +2802627 locktype2 = 1 +2802648 locktype3 = 0 +2802648 goalCount = 0 +2802649 goalTotal = 0 +2802649 otherCount = 6 +~~~ +2803199 DOWN 4 +2803199 0 512 +2806645 UP 10 +2806645 waslock = 0 +2806645 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2806667 512 16777728 +~~~ +2806808 DOWN 10 +2806808 0 16777728 +2806817 0 512 +~~~ +~~~ +2806832 0 2560 +~~~ +~~~ +2806834 0 2048 +2806835 homeCount = 9 +2806836 waitCount = 4 +2806836 ripCount = 2 +2806837 locktype1 = 1 +2806837 locktype2 = 1 +2806838 locktype3 = 0 +2806838 goalCount = 0 +2806838 goalTotal = 0 +2806839 otherCount = 6 +~~~ +2806843 UP 10 +2806843 waslock = 0 +2806843 512 2048 +~~~ +2807597 DOWN 10 +2807597 0 2048 +~~~ +~~~ +~~~ +~~~ +2807626 homeCount = 9 +2807626 waitCount = 4 +2807627 ripCount = 2 +2807627 locktype1 = 1 +2807628 locktype2 = 1 +2807628 locktype3 = 0 +2807629 goalCount = 0 +2807629 goalTotal = 0 +2807630 otherCount = 6 +~~~ +2810696 UP 11 +2810696 LOCKOUT 1 +2810696 1024 2048 +~~~ +2810723 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2810729 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2810753 DOWN 11 +2810753 0 0 +2810768 UP 11 +2810768 1024 0 +2811250 DOWN 11 +2811250 0 0 +2811286 UP 11 +2811286 1024 0 +2811744 DOWN 11 +2811744 0 0 +2811766 UP 11 +2811766 1024 0 +2811807 DOWN 11 +2811807 0 0 +2811850 UP 11 +2811850 1024 0 +2812828 DOWN 11 +2812828 0 0 +2812876 UP 11 +2812876 1024 0 +2813995 DOWN 11 +2813995 0 0 +2814049 UP 11 +2814049 1024 0 +2815505 DOWN 11 +2815505 0 0 +2819543 UP 8 +2819543 128 0 +2819585 DOWN 8 +2819585 0 0 +2819606 128 0 +2819875 DOWN 8 +2819875 0 0 +2819901 128 0 +2819941 DOWN 8 +2819941 0 0 +2824340 512 0 +2824731 0 0 +2824770 512 0 +2827498 0 0 +2827513 512 0 +2827572 0 0 +2835723 LOCKEND +~~~ +~~~ +~~~ +2835743 0 512 +2837111 UP 3 +2837111 4 512 +2837391 DOWN 3 +2837391 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2837428 homeCount = 9 +2837428 waitCount = 4 +2837429 ripCount = 2 +2837429 locktype1 = 2 +2837430 locktype2 = 1 +2837430 locktype3 = 0 +2837431 goalCount = 0 +2837431 goalTotal = 0 +2837432 otherCount = 6 +~~~ +2837436 4 512 +2837822 DOWN 3 +2837822 0 512 +2837860 4 512 +2838167 DOWN 3 +2838167 0 512 +2838177 4 512 +2838316 DOWN 3 +2838316 0 512 +2838347 4 512 +2839028 DOWN 3 +2839028 0 512 +2839041 4 512 +2839199 DOWN 3 +2839199 0 512 +2839209 4 512 +2841094 DOWN 3 +2841094 0 512 +2841119 4 512 +2841151 DOWN 3 +2841151 0 512 +2845140 UP 10 +2845140 waslock = 0 +2845140 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2845169 512 16777728 +~~~ +2845199 DOWN 10 +2845199 0 16777728 +~~~ +~~~ +2845224 0 16778752 +~~~ +~~~ +2845226 0 16778240 +2845227 homeCount = 10 +2845227 waitCount = 4 +2845228 ripCount = 2 +2845228 locktype1 = 2 +2845229 locktype2 = 1 +2845229 locktype3 = 0 +2845230 goalCount = 0 +2845230 goalTotal = 0 +2845231 otherCount = 6 +~~~ +2845259 UP 10 +2845259 waslock = 0 +2845259 512 16778240 +~~~ +2845319 512 1024 +2845324 DOWN 10 +2845324 0 1024 +~~~ +~~~ +~~~ +~~~ +2845350 homeCount = 10 +2845350 waitCount = 4 +2845351 ripCount = 2 +2845351 locktype1 = 2 +2845352 locktype2 = 1 +2845352 locktype3 = 0 +2845353 goalCount = 0 +2845353 goalTotal = 0 +2845354 otherCount = 6 +~~~ +2845370 UP 10 +2845370 waslock = 0 +2845370 512 1024 +~~~ +2846016 DOWN 10 +2846016 0 1024 +~~~ +~~~ +~~~ +~~~ +2846039 homeCount = 10 +2846039 waitCount = 4 +2846040 ripCount = 2 +2846040 locktype1 = 2 +2846041 locktype2 = 1 +2846041 locktype3 = 0 +2846041 goalCount = 0 +2846042 goalTotal = 0 +2846042 otherCount = 6 +~~~ +2846045 UP 10 +2846045 waslock = 0 +2846045 512 1024 +~~~ +2846440 DOWN 10 +2846440 0 1024 +~~~ +~~~ +~~~ +~~~ +2846469 homeCount = 10 +2846470 waitCount = 4 +2846470 ripCount = 2 +2846471 locktype1 = 2 +2846471 locktype2 = 1 +2846472 locktype3 = 0 +2846472 goalCount = 0 +2846473 goalTotal = 0 +2846473 otherCount = 6 +~~~ +2846499 UP 10 +2846499 waslock = 0 +2846498 512 1024 +~~~ +2846565 DOWN 10 +2846565 0 1024 +~~~ +~~~ +~~~ +~~~ +2846591 homeCount = 10 +2846592 waitCount = 4 +2846592 ripCount = 2 +2846593 locktype1 = 2 +2846593 locktype2 = 1 +2846594 locktype3 = 0 +2846594 goalCount = 0 +2846595 goalTotal = 0 +2846595 otherCount = 6 +~~~ +2847849 UP 11 +2847849 1024 1024 +2849371 DOWN 11 +2849371 0 1024 +2849409 UP 11 +2849409 1024 1024 +2849850 BEEP1 +2849850 BEEP2 +~~~ +~~~ +~~~ +2849879 1024 33555456 +~~~ +2850029 1024 1024 +2855199 DOWN 11 +2855199 0 1024 +~~~ +~~~ +2855227 0 0 +~~~ +~~~ +2855228 0 1 +~~~ +~~~ +2855230 0 3 +~~~ +~~~ +2855232 0 7 +~~~ +~~~ +2855234 0 15 +~~~ +~~~ +2855236 0 31 +~~~ +~~~ +2855237 0 63 +~~~ +~~~ +2855239 0 127 +~~~ +~~~ +2855241 0 255 +2855242 homeCount = 10 +2855243 waitCount = 4 +2855243 ripCount = 3 +2855244 locktype1 = 2 +2855244 locktype2 = 1 +2855245 locktype3 = 0 +2855266 goalCount = 0 +2855266 goalTotal = 0 +2855267 otherCount = 6 +~~~ +2855268 CURRENTGOAL IS [5] +~~~ +2857717 UP 7 +2857717 64 255 +~~~ +~~~ +2858426 DOWN 7 +2858426 0 255 +~~~ +~~~ +2858445 0 254 +~~~ +~~~ +2858447 0 252 +~~~ +~~~ +2858449 0 248 +~~~ +~~~ +2858451 0 240 +~~~ +~~~ +2858453 0 224 +~~~ +~~~ +2858455 0 192 +~~~ +~~~ +2858456 0 128 +~~~ +~~~ +2858458 0 0 +~~~ +~~~ +2858460 0 512 +2858461 homeCount = 10 +2858462 waitCount = 4 +2858462 ripCount = 3 +2858463 locktype1 = 2 +2858463 locktype2 = 1 +2858484 locktype3 = 0 +2858485 goalCount = 0 +2858485 goalTotal = 0 +2858486 otherCount = 7 +~~~ +2858682 64 512 +2859243 DOWN 7 +2859243 0 512 +2859279 64 512 +2859326 DOWN 7 +2859326 0 512 +2862459 UP 10 +2862459 waslock = 0 +2862459 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2862493 512 16777728 +~~~ +2862499 DOWN 10 +2862499 0 16777728 +~~~ +~~~ +2862523 0 16778752 +~~~ +~~~ +2862525 0 16778240 +2862526 homeCount = 11 +2862527 waitCount = 4 +2862527 ripCount = 3 +2862528 locktype1 = 2 +2862528 locktype2 = 1 +2862528 locktype3 = 0 +2862529 goalCount = 0 +2862529 goalTotal = 0 +2862530 otherCount = 7 +~~~ +2862551 UP 10 +2862551 waslock = 0 +2862551 512 16778240 +~~~ +2862643 512 1024 +2862760 DOWN 10 +2862760 0 1024 +~~~ +~~~ +~~~ +~~~ +2862797 homeCount = 11 +2862798 waitCount = 4 +2862798 ripCount = 3 +2862799 locktype1 = 2 +2862799 locktype2 = 1 +2862799 locktype3 = 0 +2862800 goalCount = 0 +2862800 goalTotal = 0 +2862801 otherCount = 7 +~~~ +2862809 UP 10 +2862809 waslock = 0 +2862809 512 1024 +~~~ +2868573 DOWN 10 +2868573 0 1024 +~~~ +~~~ +~~~ +~~~ +2868601 homeCount = 11 +2868602 waitCount = 4 +2868602 ripCount = 3 +2868603 locktype1 = 2 +2868603 locktype2 = 1 +2868604 locktype3 = 0 +2868604 goalCount = 0 +2868605 goalTotal = 0 +2868605 otherCount = 7 +~~~ +2870096 UP 11 +2870096 1024 1024 +2870130 DOWN 11 +2870130 0 1024 +2870158 UP 11 +2870158 1024 1024 +2870493 DOWN 11 +2870493 0 1024 +2870497 UP 11 +2870497 1024 1024 +2871248 DOWN 11 +2871248 0 1024 +2871278 UP 11 +2871278 1024 1024 +2871621 DOWN 11 +2871621 0 1024 +2871738 UP 11 +2871738 1024 1024 +2874346 BEEP1 +2874346 BEEP2 +~~~ +~~~ +~~~ +2874367 1024 33555456 +~~~ +2874517 1024 1024 +2880959 DOWN 11 +2880959 0 1024 +~~~ +~~~ +2880977 0 0 +~~~ +~~~ +2880978 0 1 +~~~ +~~~ +2880980 0 3 +~~~ +~~~ +2880982 0 7 +~~~ +~~~ +2880984 0 15 +~~~ +~~~ +2880986 0 31 +~~~ +~~~ +2880988 0 63 +~~~ +~~~ +2880989 0 127 +~~~ +~~~ +2880991 0 255 +2880992 homeCount = 11 +2880993 waitCount = 4 +2880993 ripCount = 4 +2880994 locktype1 = 2 +2880994 locktype2 = 1 +2880995 locktype3 = 0 +2881016 goalCount = 0 +2881016 goalTotal = 0 +2881017 otherCount = 7 +~~~ +2881018 CURRENTGOAL IS [5] +~~~ +2881018 UP 11 +2881018 1024 255 +2881052 DOWN 11 +2881052 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2881094 homeCount = 11 +2881095 waitCount = 4 +2881095 ripCount = 4 +2881096 locktype1 = 2 +2881096 locktype2 = 1 +2881097 locktype3 = 0 +2881097 goalCount = 0 +2881098 goalTotal = 0 +2881098 otherCount = 7 +~~~ +2881099 CURRENTGOAL IS [5] +~~~ +2883804 UP 5 +2883804 16 255 +~~~ +~~~ +2883831 outer reward +~~~ +2883831 16 1048831 +~~~ +~~~ +2884000 DOWN 5 +2884000 0 1048831 +~~~ +~~~ +2884018 0 1048830 +~~~ +~~~ +2884020 0 1048828 +~~~ +~~~ +2884022 0 1048824 +~~~ +~~~ +2884024 0 1048816 +~~~ +~~~ +2884026 0 1048800 +~~~ +~~~ +2884027 0 1048768 +~~~ +~~~ +2884029 0 1048704 +~~~ +~~~ +2884031 0 1048576 +~~~ +~~~ +2884033 0 1049088 +2884034 homeCount = 11 +2884034 waitCount = 4 +2884035 ripCount = 4 +2884056 locktype1 = 2 +2884056 locktype2 = 1 +2884057 locktype3 = 0 +2884057 goalCount = 1 +2884058 goalTotal = 1 +2884058 otherCount = 7 +~~~ +2884085 16 1049088 +2884281 16 512 +2884488 DOWN 5 +2884488 0 512 +2884507 16 512 +2884624 DOWN 5 +2884624 0 512 +2884646 16 512 +2884762 DOWN 5 +2884762 0 512 +2884788 16 512 +2884901 DOWN 5 +2884901 0 512 +2884928 16 512 +2885047 DOWN 5 +2885047 0 512 +2885071 16 512 +2885212 DOWN 5 +2885212 0 512 +2885215 16 512 +2885512 DOWN 5 +2885512 0 512 +2885526 16 512 +2893817 DOWN 5 +2893817 0 512 +2893879 16 512 +2893901 DOWN 5 +2893901 0 512 +2900132 UP 10 +2900132 waslock = 0 +2900132 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2900165 512 16777728 +~~~ +2900270 DOWN 10 +2900270 0 16777728 +~~~ +~~~ +2900289 0 16779776 +~~~ +~~~ +2900291 0 16779264 +2900292 homeCount = 12 +2900292 waitCount = 4 +2900293 ripCount = 4 +2900293 locktype1 = 2 +2900294 locktype2 = 1 +2900294 locktype3 = 0 +2900295 goalCount = 1 +2900295 goalTotal = 1 +2900296 otherCount = 7 +~~~ +2900317 0 2048 +2900502 UP 10 +2900503 waslock = 0 +2900502 512 2048 +~~~ +2904478 DOWN 10 +2904478 0 2048 +~~~ +~~~ +~~~ +~~~ +2904501 homeCount = 12 +2904501 waitCount = 4 +2904502 ripCount = 4 +2904502 locktype1 = 2 +2904503 locktype2 = 1 +2904503 locktype3 = 0 +2904504 goalCount = 1 +2904504 goalTotal = 1 +2904505 otherCount = 7 +~~~ +2906493 UP 12 +2906493 2048 2048 +2907045 DOWN 12 +2907045 0 2048 +2907073 UP 12 +2907073 2048 2048 +2907265 DOWN 12 +2907265 0 2048 +2907322 UP 12 +2907322 2048 2048 +2908818 DOWN 12 +2908818 0 2048 +2908848 UP 12 +2908848 2048 2048 +2908879 DOWN 12 +2908879 0 2048 +2908896 UP 12 +2908896 2048 2048 +2908993 CLICK1 +2908993 CLICK2 +~~~ +~~~ +~~~ +2909022 2048 67110912 +~~~ +2909172 2048 2048 +2917583 DOWN 12 +2917583 0 2048 +~~~ +~~~ +2917608 0 0 +~~~ +~~~ +2917610 0 1 +~~~ +~~~ +2917612 0 3 +~~~ +~~~ +2917614 0 7 +~~~ +~~~ +2917616 0 15 +~~~ +~~~ +2917618 0 31 +~~~ +~~~ +2917619 0 63 +~~~ +~~~ +2917621 0 127 +~~~ +~~~ +2917623 0 255 +2917624 homeCount = 12 +2917624 waitCount = 5 +2917625 ripCount = 4 +2917625 locktype1 = 2 +2917626 locktype2 = 1 +2917626 locktype3 = 0 +2917647 goalCount = 1 +2917648 goalTotal = 1 +2917648 otherCount = 7 +~~~ +2917649 CURRENTGOAL IS [5] +~~~ +2926969 UP 10 +2926969 waslock = 0 +2926969 512 255 +~~~ +2926992 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2926999 512 254 +~~~ +~~~ +2927001 512 252 +~~~ +~~~ +2927003 512 248 +~~~ +~~~ +2927005 512 240 +~~~ +~~~ +2927006 512 224 +~~~ +~~~ +2927008 512 192 +~~~ +~~~ +2927010 512 128 +~~~ +~~~ +2927012 512 0 +~~~ +~~~ +~~~ +2927150 0 0 +2927358 512 0 +2927666 0 0 +2929005 UP 11 +2929005 1024 0 +2930091 DOWN 11 +2930091 0 0 +2930141 UP 11 +2930141 1024 0 +2930869 DOWN 11 +2930869 0 0 +2930890 UP 11 +2930890 1024 0 +2930901 DOWN 11 +2930901 0 0 +2930965 UP 11 +2930965 1024 0 +2932611 DOWN 11 +2932611 0 0 +2932703 UP 11 +2932703 1024 0 +2932933 DOWN 11 +2932933 0 0 +2937462 512 0 +2938258 0 0 +2938311 512 0 +2938361 0 0 +2938456 512 0 +2938511 0 0 +2938584 512 0 +2938784 0 0 +2950209 512 0 +2950384 0 0 +2951992 LOCKEND +~~~ +~~~ +~~~ +2952011 0 512 +2955226 UP 10 +2955226 waslock = 0 +2955226 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2955256 512 16777728 +~~~ +2955406 512 512 +2955469 DOWN 10 +2955469 0 512 +~~~ +~~~ +2955491 0 1536 +~~~ +~~~ +2955492 0 1024 +2955493 homeCount = 13 +2955494 waitCount = 5 +2955494 ripCount = 4 +2955495 locktype1 = 2 +2955495 locktype2 = 2 +2955496 locktype3 = 0 +2955496 goalCount = 1 +2955497 goalTotal = 1 +2955497 otherCount = 7 +~~~ +2955567 UP 10 +2955567 waslock = 0 +2955567 512 1024 +~~~ +2959020 DOWN 10 +2959020 0 1024 +2959034 UP 10 +2959035 waslock = 0 +2959034 512 1024 +~~~ +~~~ +~~~ +~~~ +2959056 homeCount = 13 +2959056 waitCount = 5 +2959057 ripCount = 4 +2959057 locktype1 = 2 +2959057 locktype2 = 2 +2959058 locktype3 = 0 +2959058 goalCount = 1 +2959059 goalTotal = 1 +2959059 otherCount = 7 +~~~ +~~~ +2959132 DOWN 10 +2959132 0 1024 +~~~ +~~~ +~~~ +~~~ +2959154 homeCount = 13 +2959154 waitCount = 5 +2959155 ripCount = 4 +2959155 locktype1 = 2 +2959156 locktype2 = 2 +2959156 locktype3 = 0 +2959157 goalCount = 1 +2959157 goalTotal = 1 +2959158 otherCount = 7 +~~~ +2960777 UP 11 +2960777 1024 1024 +2962087 DOWN 11 +2962087 0 1024 +2962136 UP 11 +2962136 1024 1024 +2964777 BEEP1 +2964777 BEEP2 +~~~ +~~~ +~~~ +2964802 1024 33555456 +~~~ +2964952 1024 1024 +2971806 DOWN 11 +2971806 0 1024 +~~~ +~~~ +2971831 0 0 +~~~ +~~~ +2971833 0 1 +~~~ +~~~ +2971835 0 3 +~~~ +~~~ +2971837 0 7 +~~~ +~~~ +2971838 0 15 +~~~ +~~~ +2971840 0 31 +~~~ +~~~ +2971842 0 63 +~~~ +~~~ +2971844 0 127 +~~~ +~~~ +2971846 0 255 +2971847 homeCount = 13 +2971847 waitCount = 5 +2971848 ripCount = 5 +2971848 locktype1 = 2 +2971849 locktype2 = 2 +2971870 locktype3 = 0 +2971870 goalCount = 1 +2971871 goalTotal = 1 +2971871 otherCount = 7 +~~~ +2971872 CURRENTGOAL IS [5] +~~~ +2971877 UP 11 +2971877 1024 255 +2971903 DOWN 11 +2971903 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2971937 homeCount = 13 +2971938 waitCount = 5 +2971938 ripCount = 5 +2971939 locktype1 = 2 +2971939 locktype2 = 2 +2971940 locktype3 = 0 +2971940 goalCount = 1 +2971940 goalTotal = 1 +2971941 otherCount = 7 +~~~ +2971942 CURRENTGOAL IS [5] +~~~ +2976396 UP 5 +2976396 16 255 +~~~ +~~~ +2976414 outer reward +~~~ +2976414 16 1048831 +~~~ +~~~ +2976423 DOWN 5 +2976423 0 1048831 +~~~ +~~~ +2976442 0 1048830 +~~~ +~~~ +2976444 0 1048828 +~~~ +~~~ +2976446 0 1048824 +~~~ +~~~ +2976448 0 1048816 +~~~ +~~~ +2976450 0 1048800 +~~~ +~~~ +2976451 0 1048768 +~~~ +~~~ +2976453 0 1048704 +~~~ +~~~ +2976455 0 1048576 +~~~ +~~~ +2976457 0 1049088 +2976458 homeCount = 13 +2976459 waitCount = 5 +2976459 ripCount = 5 +2976480 locktype1 = 2 +2976481 locktype2 = 2 +2976481 locktype3 = 0 +2976482 goalCount = 2 +2976482 goalTotal = 2 +2976483 otherCount = 7 +~~~ +2976745 16 1049088 +2976864 16 512 +2977119 DOWN 5 +2977119 0 512 +2977139 16 512 +2977247 DOWN 5 +2977247 0 512 +2977273 16 512 +2977378 DOWN 5 +2977378 0 512 +2977408 16 512 +2977520 DOWN 5 +2977520 0 512 +2977546 16 512 +2977661 DOWN 5 +2977661 0 512 +2977678 16 512 +2977805 DOWN 5 +2977805 0 512 +2977822 16 512 +2977954 DOWN 5 +2977954 0 512 +2977960 16 512 +2978103 DOWN 5 +2978103 0 512 +2978108 16 512 +2984704 DOWN 5 +2984704 0 512 +2984779 16 512 +2984829 DOWN 5 +2984829 0 512 +2988561 UP 10 +2988561 waslock = 0 +2988561 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2988589 512 16777728 +~~~ +2988710 DOWN 10 +2988710 0 16777728 +~~~ +~~~ +2988736 0 16779776 +~~~ +~~~ +2988737 0 16779264 +2988738 homeCount = 14 +2988739 waitCount = 5 +2988739 ripCount = 5 +2988740 locktype1 = 2 +2988740 locktype2 = 2 +2988741 locktype3 = 0 +2988741 goalCount = 2 +2988742 goalTotal = 2 +2988742 otherCount = 7 +~~~ +2988763 0 2048 +2988869 UP 10 +2988869 waslock = 0 +2988869 512 2048 +~~~ +2992466 DOWN 10 +2992466 0 2048 +~~~ +~~~ +~~~ +~~~ +2992487 homeCount = 14 +2992487 waitCount = 5 +2992488 ripCount = 5 +2992488 locktype1 = 2 +2992489 locktype2 = 2 +2992489 locktype3 = 0 +2992490 goalCount = 2 +2992490 goalTotal = 2 +2992491 otherCount = 7 +~~~ +2994131 UP 12 +2994131 2048 2048 +2994583 DOWN 12 +2994583 0 2048 +2994618 UP 12 +2994618 2048 2048 +2997762 DOWN 12 +2997762 0 2048 +2997801 UP 12 +2997801 2048 2048 +2998062 DOWN 12 +2998062 0 2048 +2998088 UP 12 +2998088 2048 2048 +2998631 CLICK1 +2998631 CLICK2 +~~~ +~~~ +~~~ +2998655 2048 67110912 +~~~ +2998805 2048 2048 +3004157 DOWN 12 +3004156 0 2048 +~~~ +~~~ +3004183 0 0 +~~~ +~~~ +3004185 0 1 +~~~ +~~~ +3004187 0 3 +~~~ +~~~ +3004188 0 7 +~~~ +~~~ +3004190 0 15 +~~~ +~~~ +3004192 0 31 +~~~ +~~~ +3004194 0 63 +~~~ +~~~ +3004196 0 127 +~~~ +~~~ +3004197 0 255 +3004198 homeCount = 14 +3004199 waitCount = 6 +3004199 ripCount = 5 +3004200 locktype1 = 2 +3004200 locktype2 = 2 +3004201 locktype3 = 0 +3004222 goalCount = 2 +3004222 goalTotal = 2 +3004223 otherCount = 7 +~~~ +3004224 CURRENTGOAL IS [5] +~~~ +3008015 UP 4 +3008015 8 255 +~~~ +~~~ +3008683 DOWN 4 +3008683 0 255 +~~~ +~~~ +3008705 0 254 +~~~ +~~~ +3008706 0 252 +~~~ +~~~ +3008708 0 248 +~~~ +~~~ +3008710 0 240 +~~~ +~~~ +3008712 0 224 +~~~ +~~~ +3008714 0 192 +~~~ +~~~ +3008716 0 128 +~~~ +~~~ +3008717 0 0 +~~~ +~~~ +3008719 0 512 +3008720 homeCount = 14 +3008721 waitCount = 6 +3008721 ripCount = 5 +3008722 locktype1 = 2 +3008722 locktype2 = 2 +3008743 locktype3 = 0 +3008743 goalCount = 2 +3008744 goalTotal = 2 +3008744 otherCount = 8 +~~~ +3008745 8 512 +3008988 DOWN 4 +3008988 0 512 +3012101 UP 10 +3012101 waslock = 0 +3012101 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3012131 512 16777728 +~~~ +3012281 512 512 +3012321 DOWN 10 +3012321 0 512 +3012338 UP 10 +3012338 waslock = 0 +3012338 512 512 +~~~ +~~~ +3012356 512 1536 +~~~ +~~~ +3012358 512 1024 +3012359 homeCount = 15 +3012359 waitCount = 6 +3012360 ripCount = 5 +3012360 locktype1 = 2 +3012361 locktype2 = 2 +3012361 locktype3 = 0 +3012362 goalCount = 2 +3012362 goalTotal = 2 +3012363 otherCount = 8 +~~~ +~~~ +3016884 DOWN 10 +3016884 0 1024 +~~~ +~~~ +~~~ +~~~ +3016910 homeCount = 15 +3016910 waitCount = 6 +3016911 ripCount = 5 +3016911 locktype1 = 2 +3016912 locktype2 = 2 +3016912 locktype3 = 0 +3016913 goalCount = 2 +3016913 goalTotal = 2 +3016913 otherCount = 8 +~~~ +3016929 UP 10 +3016930 waslock = 0 +3016929 512 1024 +~~~ +3016971 DOWN 10 +3016971 0 1024 +~~~ +~~~ +~~~ +~~~ +3017003 homeCount = 15 +3017004 waitCount = 6 +3017004 ripCount = 5 +3017005 locktype1 = 2 +3017005 locktype2 = 2 +3017006 locktype3 = 0 +3017006 goalCount = 2 +3017007 goalTotal = 2 +3017007 otherCount = 8 +~~~ +3018772 UP 11 +3018772 1024 1024 +3022772 BEEP1 +3022772 BEEP2 +~~~ +~~~ +~~~ +3022798 1024 33555456 +~~~ +3022948 1024 1024 +3026798 DOWN 11 +3026798 0 1024 +3026812 UP 11 +3026812 1024 1024 +~~~ +~~~ +3026816 1024 0 +~~~ +~~~ +3026818 1024 1 +~~~ +~~~ +3026820 1024 3 +~~~ +~~~ +3026822 1024 7 +~~~ +~~~ +3026824 1024 15 +~~~ +~~~ +3026826 1024 31 +~~~ +~~~ +3026827 1024 63 +~~~ +~~~ +3026829 1024 127 +~~~ +~~~ +3026831 1024 255 +3026832 homeCount = 15 +3026833 waitCount = 6 +3026833 ripCount = 6 +3026834 locktype1 = 2 +3026855 locktype2 = 2 +3026855 locktype3 = 0 +3026856 goalCount = 2 +3026856 goalTotal = 2 +3026857 otherCount = 8 +~~~ +3026858 CURRENTGOAL IS [5] +~~~ +3029131 DOWN 11 +3029131 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3029172 homeCount = 15 +3029172 waitCount = 6 +3029173 ripCount = 6 +3029173 locktype1 = 2 +3029174 locktype2 = 2 +3029174 locktype3 = 0 +3029175 goalCount = 2 +3029175 goalTotal = 2 +3029176 otherCount = 8 +~~~ +3029177 CURRENTGOAL IS [5] +~~~ +3029180 UP 11 +3029180 1024 255 +3029224 DOWN 11 +3029224 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3029261 homeCount = 15 +3029262 waitCount = 6 +3029262 ripCount = 6 +3029263 locktype1 = 2 +3029263 locktype2 = 2 +3029264 locktype3 = 0 +3029264 goalCount = 2 +3029265 goalTotal = 2 +3029265 otherCount = 8 +~~~ +3029266 CURRENTGOAL IS [5] +~~~ +3033041 UP 5 +3033041 16 255 +~~~ +~~~ +3033069 outer reward +~~~ +3033069 16 1048831 +~~~ +~~~ +3033156 DOWN 5 +3033156 0 1048831 +~~~ +~~~ +3033176 0 1048830 +~~~ +~~~ +3033178 0 1048828 +~~~ +~~~ +3033180 0 1048824 +~~~ +~~~ +3033182 0 1048816 +~~~ +~~~ +3033183 0 1048800 +~~~ +~~~ +3033185 0 1048768 +~~~ +~~~ +3033187 0 1048704 +~~~ +~~~ +3033189 0 1048576 +~~~ +~~~ +3033191 0 1049088 +3033192 homeCount = 15 +3033192 waitCount = 6 +3033193 ripCount = 6 +3033214 locktype1 = 2 +3033214 locktype2 = 2 +3033215 locktype3 = 0 +3033215 goalCount = 3 +3033215 goalTotal = 3 +3033216 otherCount = 8 +~~~ +3033216 16 1049088 +3033519 16 512 +3033749 DOWN 5 +3033749 0 512 +3033766 16 512 +3033865 DOWN 5 +3033865 0 512 +3033899 16 512 +3033999 DOWN 5 +3033999 0 512 +3034031 16 512 +3034141 DOWN 5 +3034141 0 512 +3034169 16 512 +3034280 DOWN 5 +3034280 0 512 +3034309 16 512 +3034429 DOWN 5 +3034429 0 512 +3034450 16 512 +3034576 DOWN 5 +3034576 0 512 +3034597 16 512 +3035054 DOWN 5 +3035054 0 512 +3035067 16 512 +3042062 DOWN 5 +3042062 0 512 +3042075 16 512 +3042174 DOWN 5 +3042174 0 512 +3045701 UP 10 +3045701 waslock = 0 +3045701 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3045733 512 16777728 +~~~ +3045883 512 512 +3045949 DOWN 10 +3045949 0 512 +3045963 UP 10 +3045963 waslock = 0 +3045963 512 512 +~~~ +~~~ +3045967 512 2560 +~~~ +~~~ +3045969 512 2048 +3045970 homeCount = 16 +3045970 waitCount = 6 +3045971 ripCount = 6 +3045971 locktype1 = 2 +3045972 locktype2 = 2 +3045972 locktype3 = 0 +3045973 goalCount = 3 +3045973 goalTotal = 3 +3045973 otherCount = 8 +~~~ +~~~ +3051491 DOWN 10 +3051491 0 2048 +~~~ +~~~ +~~~ +~~~ +3051519 homeCount = 16 +3051520 waitCount = 6 +3051520 ripCount = 6 +3051521 locktype1 = 2 +3051521 locktype2 = 2 +3051522 locktype3 = 0 +3051522 goalCount = 3 +3051523 goalTotal = 3 +3051523 otherCount = 8 +~~~ +3053813 UP 12 +3053813 2048 2048 +3054243 DOWN 12 +3054243 0 2048 +3054339 UP 12 +3054339 2048 2048 +3054607 DOWN 12 +3054607 0 2048 +3054671 UP 12 +3054671 2048 2048 +3056813 CLICK1 +3056813 CLICK2 +~~~ +~~~ +~~~ +3056838 2048 67110912 +~~~ +3056987 2048 2048 +3061603 DOWN 12 +3061603 0 2048 +~~~ +~~~ +3061626 0 0 +~~~ +~~~ +3061627 0 1 +~~~ +~~~ +3061629 0 3 +~~~ +~~~ +3061631 0 7 +~~~ +~~~ +3061633 0 15 +~~~ +~~~ +3061635 0 31 +~~~ +~~~ +3061636 0 63 +~~~ +~~~ +3061638 0 127 +~~~ +~~~ +3061640 0 255 +3061641 homeCount = 16 +3061642 waitCount = 7 +3061642 ripCount = 6 +3061643 locktype1 = 2 +3061643 locktype2 = 2 +3061664 locktype3 = 0 +3061665 goalCount = 3 +3061665 goalTotal = 3 +3061666 otherCount = 8 +~~~ +3061667 CURRENTGOAL IS [5] +~~~ +3065106 UP 5 +3065106 16 255 +~~~ +~~~ +3065129 outer reward +~~~ +3065130 16 1048831 +~~~ +~~~ +3065146 DOWN 5 +3065146 0 1048831 +~~~ +~~~ +3065166 0 1048830 +~~~ +~~~ +3065168 0 1048828 +~~~ +~~~ +3065170 0 1048824 +~~~ +~~~ +3065171 0 1048816 +~~~ +~~~ +3065173 0 1048800 +~~~ +~~~ +3065175 0 1048768 +~~~ +~~~ +3065177 0 1048704 +~~~ +~~~ +3065179 0 1048576 +~~~ +~~~ +3065181 0 1049088 +3065182 homeCount = 16 +3065182 waitCount = 7 +3065183 ripCount = 6 +3065204 locktype1 = 2 +3065204 locktype2 = 2 +3065205 locktype3 = 0 +3065205 goalCount = 4 +3065206 goalTotal = 4 +3065206 otherCount = 8 +~~~ +3065207 16 1049088 +3065270 DOWN 5 +3065270 0 1049088 +3065325 16 1049088 +3065579 16 512 +3065887 DOWN 5 +3065887 0 512 +3065911 16 512 +3066021 DOWN 5 +3066021 0 512 +3066053 16 512 +3066168 DOWN 5 +3066168 0 512 +3066196 16 512 +3066317 DOWN 5 +3066317 0 512 +3066340 16 512 +3074351 DOWN 5 +3074351 0 512 +3074360 16 512 +3075013 DOWN 5 +3075013 0 512 +3075057 16 512 +3076432 DOWN 5 +3076432 0 512 +3080377 UP 10 +3080378 waslock = 0 +3080377 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3080403 512 16777728 +~~~ +3080553 512 512 +3080585 DOWN 10 +3080585 0 512 +~~~ +~~~ +3080606 0 2560 +~~~ +~~~ +3080608 0 2048 +3080609 homeCount = 17 +3080610 waitCount = 7 +3080610 ripCount = 6 +3080611 locktype1 = 2 +3080611 locktype2 = 2 +3080612 locktype3 = 0 +3080612 goalCount = 4 +3080613 goalTotal = 4 +3080613 otherCount = 8 +~~~ +3080614 UP 10 +3080635 waslock = 0 +3080614 512 2048 +~~~ +3084727 DOWN 10 +3084727 0 2048 +~~~ +~~~ +~~~ +3084747 UP 10 +3084747 waslock = 0 +3084747 512 2048 +~~~ +3084749 homeCount = 17 +3084750 waitCount = 7 +3084750 ripCount = 6 +3084751 locktype1 = 2 +3084751 locktype2 = 2 +3084751 locktype3 = 0 +3084752 goalCount = 4 +3084752 goalTotal = 4 +3084753 otherCount = 8 +~~~ +~~~ +3084815 DOWN 10 +3084815 0 2048 +~~~ +~~~ +~~~ +~~~ +3084840 homeCount = 17 +3084840 waitCount = 7 +3084841 ripCount = 6 +3084841 locktype1 = 2 +3084842 locktype2 = 2 +3084842 locktype3 = 0 +3084843 goalCount = 4 +3084843 goalTotal = 4 +3084844 otherCount = 8 +~~~ +3086263 UP 12 +3086263 2048 2048 +3086712 DOWN 12 +3086712 0 2048 +3086759 UP 12 +3086759 2048 2048 +3088514 CLICK1 +3088514 CLICK2 +~~~ +~~~ +~~~ +3088539 2048 67110912 +~~~ +3088689 2048 2048 +3093822 DOWN 12 +3093822 0 2048 +~~~ +~~~ +3093848 0 0 +~~~ +~~~ +3093849 0 1 +~~~ +~~~ +3093851 0 3 +~~~ +~~~ +3093853 0 7 +~~~ +~~~ +3093855 0 15 +~~~ +~~~ +3093857 0 31 +~~~ +~~~ +3093858 0 63 +~~~ +~~~ +3093860 0 127 +~~~ +~~~ +3093862 0 255 +3093863 homeCount = 17 +3093864 waitCount = 8 +3093864 ripCount = 6 +3093865 locktype1 = 2 +3093865 locktype2 = 2 +3093866 locktype3 = 0 +3093887 goalCount = 4 +3093887 goalTotal = 4 +3093888 otherCount = 8 +~~~ +3093889 CURRENTGOAL IS [5] +~~~ +3093890 UP 12 +3093890 2048 255 +3096724 DOWN 12 +3096724 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3096762 homeCount = 17 +3096762 waitCount = 8 +3096763 ripCount = 6 +3096763 locktype1 = 2 +3096764 locktype2 = 2 +3096764 locktype3 = 0 +3096765 goalCount = 4 +3096765 goalTotal = 4 +3096766 otherCount = 8 +~~~ +3096767 CURRENTGOAL IS [5] +~~~ +3096796 UP 12 +3096796 2048 255 +3096833 DOWN 12 +3096833 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3096874 homeCount = 17 +3096874 waitCount = 8 +3096875 ripCount = 6 +3096875 locktype1 = 2 +3096876 locktype2 = 2 +3096876 locktype3 = 0 +3096877 goalCount = 4 +3096877 goalTotal = 4 +3096877 otherCount = 8 +~~~ +3096879 CURRENTGOAL IS [5] +~~~ +3100868 UP 5 +3100868 16 255 +~~~ +~~~ +3100887 outer reward +~~~ +3100888 16 1048831 +~~~ +~~~ +3100913 DOWN 5 +3100913 0 1048831 +~~~ +~~~ +3100937 0 1048830 +~~~ +~~~ +3100939 0 1048828 +~~~ +~~~ +3100941 0 1048824 +~~~ +~~~ +3100942 0 1048816 +~~~ +~~~ +3100944 0 1048800 +~~~ +~~~ +3100946 0 1048768 +~~~ +~~~ +3100948 0 1048704 +~~~ +3100949 16 1048704 +~~~ +~~~ +3100951 16 1048576 +~~~ +3100952 16 1049088 +3100953 homeCount = 17 +3100953 waitCount = 8 +3100974 ripCount = 6 +3100975 locktype1 = 2 +3100975 locktype2 = 2 +3100976 locktype3 = 0 +3100976 goalCount = 5 +3100977 goalTotal = 5 +3100977 otherCount = 8 +~~~ +3101030 DOWN 5 +3101030 0 1049088 +3101085 16 1049088 +3101337 16 512 +3101521 DOWN 5 +3101521 0 512 +3101537 16 512 +3101644 DOWN 5 +3101644 0 512 +3101675 16 512 +3101791 DOWN 5 +3101791 0 512 +3101820 16 512 +3101934 DOWN 5 +3101934 0 512 +3101961 16 512 +3110337 DOWN 5 +3110337 0 512 +3110357 16 512 +3110459 DOWN 5 +3110459 0 512 +3110518 16 512 +3110553 DOWN 5 +3110553 0 512 +3115418 UP 10 +3115418 waslock = 0 +3115418 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3115442 512 16777728 +~~~ +3115592 512 512 +3115661 DOWN 10 +3115661 0 512 +~~~ +~~~ +3115693 0 2560 +~~~ +~~~ +3115694 0 2048 +3115695 homeCount = 18 +3115696 waitCount = 8 +3115696 ripCount = 6 +3115697 locktype1 = 2 +3115697 locktype2 = 2 +3115698 locktype3 = 0 +3115698 goalCount = 5 +3115699 goalTotal = 5 +3115699 otherCount = 8 +~~~ +3115746 UP 10 +3115746 waslock = 0 +3115746 512 2048 +~~~ +3119352 DOWN 10 +3119352 0 2048 +~~~ +~~~ +~~~ +~~~ +3119379 homeCount = 18 +3119379 waitCount = 8 +3119380 ripCount = 6 +3119380 locktype1 = 2 +3119381 locktype2 = 2 +3119381 locktype3 = 0 +3119382 goalCount = 5 +3119382 goalTotal = 5 +3119383 otherCount = 8 +~~~ +3120777 UP 12 +3120777 2048 2048 +3123277 CLICK1 +3123277 CLICK2 +~~~ +~~~ +~~~ +3123299 2048 67110912 +~~~ +3123449 2048 2048 +3130663 DOWN 12 +3130663 0 2048 +~~~ +~~~ +3130687 0 0 +~~~ +~~~ +3130689 0 1 +~~~ +~~~ +3130691 0 3 +~~~ +~~~ +3130693 0 7 +~~~ +~~~ +3130695 0 15 +~~~ +~~~ +3130696 0 31 +~~~ +~~~ +3130698 0 63 +~~~ +~~~ +3130700 0 127 +~~~ +~~~ +3130702 0 255 +3130703 homeCount = 18 +3130703 waitCount = 9 +3130704 ripCount = 6 +3130704 locktype1 = 2 +3130705 locktype2 = 2 +3130705 locktype3 = 0 +3130726 goalCount = 5 +3130726 goalTotal = 5 +3130727 otherCount = 8 +~~~ +3130728 CURRENTGOAL IS [5] +~~~ +3130749 UP 12 +3130749 2048 255 +3130773 DOWN 12 +3130773 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3130808 homeCount = 18 +3130809 waitCount = 9 +3130809 ripCount = 6 +3130810 locktype1 = 2 +3130810 locktype2 = 2 +3130811 locktype3 = 0 +3130811 goalCount = 5 +3130812 goalTotal = 5 +3130812 otherCount = 8 +~~~ +3130813 CURRENTGOAL IS [5] +~~~ +3130908 UP 12 +3130908 2048 255 +3131207 DOWN 12 +3131207 0 255 +3131223 UP 12 +3131223 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131244 homeCount = 18 +3131244 waitCount = 9 +3131245 ripCount = 6 +3131245 locktype1 = 2 +3131246 locktype2 = 2 +3131246 locktype3 = 0 +3131247 goalCount = 5 +3131247 goalTotal = 5 +3131248 otherCount = 8 +~~~ +3131249 CURRENTGOAL IS [5] +~~~ +3131887 DOWN 12 +3131887 0 255 +3131901 UP 12 +3131901 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131929 DOWN 12 +3131929 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131935 homeCount = 18 +3131936 waitCount = 9 +3131936 ripCount = 6 +3131937 locktype1 = 2 +3131937 locktype2 = 2 +3131938 locktype3 = 0 +3131938 goalCount = 5 +3131939 goalTotal = 5 +3131939 otherCount = 8 +~~~ +3131940 CURRENTGOAL IS [5] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131976 homeCount = 18 +3131977 waitCount = 9 +3131977 ripCount = 6 +3131978 locktype1 = 2 +3131978 locktype2 = 2 +3131978 locktype3 = 0 +3131979 goalCount = 5 +3131979 goalTotal = 5 +3131980 otherCount = 8 +~~~ +3131981 CURRENTGOAL IS [5] +~~~ +3135451 UP 5 +3135451 16 255 +~~~ +~~~ +3135472 outer reward +~~~ +3135472 16 1048831 +~~~ +~~~ +3135498 DOWN 5 +3135498 0 1048831 +~~~ +~~~ +3135518 0 1048830 +~~~ +~~~ +3135520 0 1048828 +~~~ +~~~ +3135521 0 1048824 +~~~ +~~~ +3135523 0 1048816 +~~~ +~~~ +3135525 0 1048800 +~~~ +~~~ +3135527 0 1048768 +~~~ +~~~ +3135529 0 1048704 +~~~ +~~~ +3135531 0 1048576 +~~~ +~~~ +3135533 0 1049088 +3135534 homeCount = 18 +3135534 waitCount = 9 +3135534 ripCount = 6 +3135555 locktype1 = 2 +3135556 locktype2 = 2 +3135556 locktype3 = 0 +3135557 goalCount = 6 +3135557 goalTotal = 6 +3135558 otherCount = 8 +~~~ +3135701 16 1049088 +3135922 16 512 +3136141 DOWN 5 +3136141 0 512 +3136162 16 512 +3136267 DOWN 5 +3136267 0 512 +3136300 16 512 +3136417 DOWN 5 +3136417 0 512 +3136440 16 512 +3136571 DOWN 5 +3136571 0 512 +3136593 16 512 +3136726 DOWN 5 +3136726 0 512 +3136735 16 512 +3144812 DOWN 5 +3144812 0 512 +3144860 16 512 +3144921 DOWN 5 +3144921 0 512 +3149602 UP 10 +3149602 waslock = 0 +3149602 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3149626 512 16777728 +~~~ +3149776 512 512 +3149906 DOWN 10 +3149906 0 512 +~~~ +~~~ +3149930 0 2560 +~~~ +~~~ +3149931 0 2048 +3149932 homeCount = 19 +3149933 waitCount = 9 +3149933 ripCount = 6 +3149934 locktype1 = 2 +3149934 locktype2 = 2 +3149935 locktype3 = 0 +3149935 goalCount = 6 +3149936 goalTotal = 6 +3149936 otherCount = 8 +~~~ +3149950 UP 10 +3149950 waslock = 0 +3149950 512 2048 +~~~ +3154133 DOWN 10 +3154133 0 2048 +~~~ +~~~ +~~~ +~~~ +3154161 homeCount = 19 +3154161 waitCount = 9 +3154162 ripCount = 6 +3154162 locktype1 = 2 +3154163 locktype2 = 2 +3154163 locktype3 = 0 +3154164 goalCount = 6 +3154164 goalTotal = 6 +3154165 otherCount = 8 +~~~ +3155594 UP 12 +3155594 2048 2048 +3158393 DOWN 12 +3158393 0 2048 +3158406 UP 12 +3158406 2048 2048 +3158844 CLICK1 +3158844 CLICK2 +~~~ +~~~ +~~~ +3158876 2048 67110912 +~~~ +3159026 2048 2048 +3163507 DOWN 12 +3163507 0 2048 +~~~ +~~~ +3163529 0 0 +~~~ +~~~ +3163531 0 1 +~~~ +~~~ +3163533 0 3 +~~~ +~~~ +3163535 0 7 +~~~ +~~~ +3163536 0 15 +~~~ +~~~ +3163538 0 31 +~~~ +~~~ +3163540 0 63 +~~~ +~~~ +3163542 0 127 +~~~ +~~~ +3163544 0 255 +3163545 homeCount = 19 +3163545 waitCount = 10 +3163546 ripCount = 6 +3163546 locktype1 = 2 +3163547 locktype2 = 2 +3163568 locktype3 = 0 +3163568 goalCount = 6 +3163569 goalTotal = 6 +3163569 otherCount = 8 +~~~ +3163570 CURRENTGOAL IS [5] +~~~ +3163578 UP 12 +3163578 2048 255 +3163598 DOWN 12 +3163598 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3163638 homeCount = 19 +3163638 waitCount = 10 +3163639 ripCount = 6 +3163639 locktype1 = 2 +3163640 locktype2 = 2 +3163640 locktype3 = 0 +3163641 goalCount = 6 +3163641 goalTotal = 6 +3163642 otherCount = 8 +~~~ +3163643 CURRENTGOAL IS [5] +~~~ +3166713 UP 5 +3166713 16 255 +~~~ +~~~ +3166733 outer reward +~~~ +3166734 16 1048831 +~~~ +~~~ +3166852 DOWN 5 +3166852 0 1048831 +~~~ +~~~ +3166871 0 1048830 +~~~ +~~~ +3166872 0 1048828 +~~~ +~~~ +3166874 0 1048824 +~~~ +~~~ +3166876 0 1048816 +~~~ +~~~ +3166878 0 1048800 +~~~ +~~~ +3166880 0 1048768 +~~~ +~~~ +3166881 0 1048704 +~~~ +~~~ +3166883 0 1048576 +~~~ +~~~ +3166885 0 1049088 +3166886 homeCount = 19 +3166887 waitCount = 10 +3166887 ripCount = 6 +3166908 locktype1 = 2 +3166909 locktype2 = 2 +3166909 locktype3 = 0 +3166910 goalCount = 7 +3166910 goalTotal = 7 +3166911 otherCount = 8 +~~~ +3166920 16 1049088 +3167183 16 512 +3167467 DOWN 5 +3167467 0 512 +3167492 16 512 +3167596 DOWN 5 +3167596 0 512 +3167627 16 512 +3167749 DOWN 5 +3167749 0 512 +3167769 16 512 +3167902 DOWN 5 +3167902 0 512 +3167918 16 512 +3168063 DOWN 5 +3168063 0 512 +3168067 16 512 +3168216 DOWN 5 +3168216 0 512 +3168221 16 512 +3173245 DOWN 5 +3173245 0 512 +3173274 16 512 +3173358 DOWN 5 +3173358 0 512 +3173398 16 512 +3173533 DOWN 5 +3173533 0 512 +3173545 16 512 +3174748 DOWN 5 +3174748 0 512 +3178391 UP 10 +3178391 waslock = 0 +3178391 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3178419 512 16777728 +~~~ +3178513 DOWN 10 +3178513 0 16777728 +~~~ +~~~ +3178533 0 16779776 +~~~ +~~~ +3178535 0 16779264 +3178536 homeCount = 20 +3178536 waitCount = 10 +3178537 ripCount = 6 +3178537 locktype1 = 2 +3178538 locktype2 = 2 +3178538 locktype3 = 0 +3178539 goalCount = 7 +3178539 goalTotal = 7 +3178540 otherCount = 8 +~~~ +3178565 UP 10 +3178565 waslock = 0 +3178565 512 16779264 +3178569 512 2048 +~~~ +3181110 DOWN 10 +3181110 0 2048 +~~~ +~~~ +~~~ +~~~ +3181136 homeCount = 20 +3181137 waitCount = 10 +3181137 ripCount = 6 +3181138 locktype1 = 2 +3181138 locktype2 = 2 +3181138 locktype3 = 0 +3181139 goalCount = 7 +3181139 goalTotal = 7 +3181140 otherCount = 8 +~~~ +3181148 UP 10 +3181148 waslock = 0 +3181148 512 2048 +~~~ +3182879 DOWN 10 +3182879 0 2048 +~~~ +~~~ +~~~ +~~~ +3182909 homeCount = 20 +3182909 waitCount = 10 +3182910 ripCount = 6 +3182910 locktype1 = 2 +3182911 locktype2 = 2 +3182911 locktype3 = 0 +3182912 goalCount = 7 +3182912 goalTotal = 7 +3182912 otherCount = 8 +~~~ +3184248 UP 12 +3184248 2048 2048 +3184441 DOWN 12 +3184441 0 2048 +3184642 LOCKOUT 3 +~~~ +3184664 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3184670 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3184821 UP 12 +3184821 2048 0 +3186676 DOWN 12 +3186676 0 0 +3186687 UP 12 +3186687 2048 0 +3186880 DOWN 12 +3186880 0 0 +3186888 UP 12 +3186888 2048 0 +3192209 DOWN 12 +3192209 0 0 +3203995 512 0 +3204208 0 0 +3204247 512 0 +3204551 0 0 +3209664 LOCKEND +~~~ +~~~ +~~~ +3209684 0 512 +3211290 UP 10 +3211291 waslock = 0 +3211290 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3211319 512 16777728 +~~~ +3211469 512 512 +3211753 DOWN 10 +3211753 0 512 +~~~ +~~~ +3211773 0 2560 +~~~ +~~~ +3211775 0 2048 +3211776 homeCount = 21 +3211776 waitCount = 10 +3211777 ripCount = 6 +3211777 locktype1 = 2 +3211778 locktype2 = 2 +3211778 locktype3 = 1 +3211779 goalCount = 7 +3211779 goalTotal = 7 +3211780 otherCount = 8 +~~~ +3212060 UP 10 +3212061 waslock = 0 +3212060 512 2048 +~~~ +3212477 DOWN 10 +3212477 0 2048 +3212487 UP 10 +3212488 waslock = 0 +3212487 512 2048 +~~~ +~~~ +~~~ +~~~ +3212507 homeCount = 21 +3212508 waitCount = 10 +3212508 ripCount = 6 +3212509 locktype1 = 2 +3212509 locktype2 = 2 +3212510 locktype3 = 1 +3212510 goalCount = 7 +3212511 goalTotal = 7 +3212511 otherCount = 8 +~~~ +~~~ +3215388 DOWN 10 +3215388 0 2048 +3215405 UP 10 +3215405 waslock = 0 +3215405 512 2048 +~~~ +~~~ +~~~ +~~~ +3215428 homeCount = 21 +3215428 waitCount = 10 +3215429 ripCount = 6 +3215429 locktype1 = 2 +3215430 locktype2 = 2 +3215430 locktype3 = 1 +3215431 goalCount = 7 +3215431 goalTotal = 7 +3215432 otherCount = 8 +~~~ +~~~ +3215479 DOWN 10 +3215479 0 2048 +~~~ +~~~ +~~~ +~~~ +3215506 homeCount = 21 +3215506 waitCount = 10 +3215507 ripCount = 6 +3215507 locktype1 = 2 +3215508 locktype2 = 2 +3215508 locktype3 = 1 +3215508 goalCount = 7 +3215509 goalTotal = 7 +3215509 otherCount = 8 +~~~ +3216863 UP 12 +3216863 2048 2048 +3218565 DOWN 12 +3218565 0 2048 +3218574 UP 12 +3218574 2048 2048 +3220863 CLICK1 +3220863 CLICK2 +~~~ +~~~ +~~~ +3220884 2048 67110912 +~~~ +3221034 2048 2048 +3226345 DOWN 12 +3226345 0 2048 +~~~ +~~~ +3226363 0 0 +~~~ +~~~ +3226365 0 1 +~~~ +~~~ +3226367 0 3 +~~~ +~~~ +3226368 0 7 +~~~ +~~~ +3226370 0 15 +~~~ +~~~ +3226372 0 31 +~~~ +~~~ +3226374 0 63 +~~~ +~~~ +3226376 0 127 +~~~ +~~~ +3226377 0 255 +3226378 homeCount = 21 +3226379 waitCount = 11 +3226379 ripCount = 6 +3226380 locktype1 = 2 +3226380 locktype2 = 2 +3226402 locktype3 = 1 +3226402 goalCount = 7 +3226403 goalTotal = 7 +3226403 otherCount = 8 +~~~ +3226404 CURRENTGOAL IS [5] +~~~ +3226405 UP 12 +3226405 2048 255 +3226446 DOWN 12 +3226446 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3226478 homeCount = 21 +3226479 waitCount = 11 +3226479 ripCount = 6 +3226480 locktype1 = 2 +3226480 locktype2 = 2 +3226481 locktype3 = 1 +3226481 goalCount = 7 +3226482 goalTotal = 7 +3226482 otherCount = 8 +~~~ +3226483 CURRENTGOAL IS [5] +~~~ +3229553 UP 5 +3229553 16 255 +~~~ +~~~ +3229574 outer reward +~~~ +3229575 16 1048831 +~~~ +~~~ +3229607 DOWN 5 +3229607 0 1048831 +~~~ +~~~ +3229632 0 1048830 +~~~ +~~~ +3229634 0 1048828 +~~~ +~~~ +3229636 0 1048824 +~~~ +~~~ +3229638 0 1048816 +~~~ +~~~ +3229640 0 1048800 +~~~ +~~~ +3229642 0 1048768 +~~~ +~~~ +3229643 0 1048704 +~~~ +~~~ +3229645 0 1048576 +~~~ +~~~ +3229647 16 1049088 +3229648 homeCount = 21 +3229649 waitCount = 11 +3229649 ripCount = 6 +3229670 locktype1 = 2 +3229671 locktype2 = 2 +3229671 locktype3 = 1 +3229672 goalCount = 8 +3229672 goalTotal = 8 +3229673 otherCount = 8 +~~~ +3229707 DOWN 5 +3229707 0 1049088 +3229782 16 1049088 +3230024 16 512 +3230230 DOWN 5 +3230230 0 512 +3230247 16 512 +3230349 DOWN 5 +3230349 0 512 +3230385 16 512 +3230485 DOWN 5 +3230485 0 512 +3230525 16 512 +3230632 DOWN 5 +3230632 0 512 +3230658 16 512 +3231216 DOWN 5 +3231216 0 512 +3231224 16 512 +3238685 DOWN 5 +3238685 0 512 +3242068 UP 10 +3242068 waslock = 0 +3242068 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3242100 512 16777728 +~~~ +3242250 512 512 +3242279 DOWN 10 +3242279 0 512 +3242291 UP 10 +3242291 waslock = 0 +3242291 512 512 +~~~ +~~~ +3242317 512 1536 +~~~ +~~~ +3242319 512 1024 +3242320 homeCount = 22 +3242321 waitCount = 11 +3242321 ripCount = 6 +3242322 locktype1 = 2 +3242322 locktype2 = 2 +3242322 locktype3 = 1 +3242323 goalCount = 8 +3242323 goalTotal = 8 +3242324 otherCount = 8 +~~~ +~~~ +3245953 DOWN 10 +3245953 0 1024 +~~~ +~~~ +~~~ +~~~ +3245977 homeCount = 22 +3245977 waitCount = 11 +3245978 ripCount = 6 +3245978 locktype1 = 2 +3245979 locktype2 = 2 +3245979 locktype3 = 1 +3245980 goalCount = 8 +3245980 goalTotal = 8 +3245981 otherCount = 8 +~~~ +3248007 UP 11 +3248006 1024 1024 +3248996 DOWN 11 +3248996 0 1024 +3249014 UP 11 +3249014 1024 1024 +3249041 DOWN 11 +3249041 0 1024 +3249053 UP 11 +3249053 1024 1024 +3249157 DOWN 11 +3249157 0 1024 +3249226 UP 11 +3249226 1024 1024 +3250007 BEEP1 +3250007 BEEP2 +~~~ +~~~ +~~~ +3250027 1024 33555456 +~~~ +3250177 1024 1024 +3254636 DOWN 11 +3254636 0 1024 +~~~ +~~~ +3254664 0 0 +~~~ +~~~ +3254666 0 1 +~~~ +~~~ +3254668 0 3 +~~~ +~~~ +3254669 0 7 +~~~ +~~~ +3254671 0 15 +~~~ +~~~ +3254673 0 31 +~~~ +~~~ +3254675 0 63 +~~~ +~~~ +3254677 0 127 +~~~ +~~~ +3254679 0 255 +3254680 homeCount = 22 +3254680 waitCount = 11 +3254681 ripCount = 7 +3254681 locktype1 = 2 +3254682 locktype2 = 2 +3254703 locktype3 = 1 +3254703 goalCount = 8 +3254704 goalTotal = 8 +3254704 otherCount = 8 +~~~ +3254705 CURRENTGOAL IS [5] +~~~ +3254706 UP 11 +3254706 1024 255 +3254903 DOWN 11 +3254903 0 255 +3254916 UP 11 +3254916 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3254954 homeCount = 22 +3254955 waitCount = 11 +3254955 ripCount = 7 +3254956 locktype1 = 2 +3254956 locktype2 = 2 +3254957 locktype3 = 1 +3254957 goalCount = 8 +3254957 goalTotal = 8 +3254958 otherCount = 8 +~~~ +3254959 CURRENTGOAL IS [5] +~~~ +3256704 DOWN 11 +3256704 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3256740 homeCount = 22 +3256741 waitCount = 11 +3256741 ripCount = 7 +3256742 locktype1 = 2 +3256742 locktype2 = 2 +3256743 locktype3 = 1 +3256743 goalCount = 8 +3256744 goalTotal = 8 +3256744 otherCount = 8 +~~~ +3256745 CURRENTGOAL IS [5] +~~~ +3256756 UP 11 +3256756 1024 255 +3256791 DOWN 11 +3256791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3256831 homeCount = 22 +3256832 waitCount = 11 +3256832 ripCount = 7 +3256833 locktype1 = 2 +3256833 locktype2 = 2 +3256834 locktype3 = 1 +3256834 goalCount = 8 +3256835 goalTotal = 8 +3256835 otherCount = 8 +~~~ +3256836 CURRENTGOAL IS [5] +~~~ +3256857 UP 11 +3256857 1024 255 +3259186 DOWN 11 +3259186 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3259222 homeCount = 22 +3259222 waitCount = 11 +3259223 ripCount = 7 +3259223 locktype1 = 2 +3259224 locktype2 = 2 +3259224 locktype3 = 1 +3259225 goalCount = 8 +3259225 goalTotal = 8 +3259226 otherCount = 8 +~~~ +3259227 CURRENTGOAL IS [5] +~~~ +3262562 UP 5 +3262562 16 255 +~~~ +~~~ +3262589 outer reward +~~~ +3262589 16 1048831 +~~~ +~~~ +3262710 DOWN 5 +3262710 0 1048831 +~~~ +~~~ +3262726 0 1048830 +~~~ +~~~ +3262728 0 1048828 +~~~ +~~~ +3262730 0 1048824 +~~~ +~~~ +3262732 0 1048816 +~~~ +~~~ +3262733 0 1048800 +~~~ +~~~ +3262735 0 1048768 +~~~ +~~~ +3262737 0 1048704 +~~~ +~~~ +3262739 0 1048576 +~~~ +~~~ +3262741 0 1049088 +3262742 homeCount = 22 +3262742 waitCount = 11 +3262743 ripCount = 7 +3262764 locktype1 = 2 +3262764 locktype2 = 2 +3262764 locktype3 = 1 +3262765 goalCount = 9 +3262765 goalTotal = 9 +3262766 otherCount = 8 +~~~ +3262801 16 1049088 +3263039 16 512 +3263359 DOWN 5 +3263359 0 512 +3263383 16 512 +3263493 DOWN 5 +3263493 0 512 +3263518 16 512 +3264398 DOWN 5 +3264398 0 512 +3264406 16 512 +3270249 DOWN 5 +3270249 0 512 +3270308 16 512 +3270360 DOWN 5 +3270360 0 512 +3273977 UP 10 +3273977 waslock = 0 +3273977 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3274003 512 16777728 +~~~ +3274153 512 512 +3274201 DOWN 10 +3274201 0 512 +~~~ +~~~ +3274227 0 2560 +~~~ +~~~ +3274229 0 2048 +3274230 homeCount = 23 +3274230 waitCount = 11 +3274231 ripCount = 7 +3274231 locktype1 = 2 +3274232 locktype2 = 2 +3274232 locktype3 = 1 +3274233 goalCount = 9 +3274233 goalTotal = 9 +3274234 otherCount = 8 +~~~ +3274240 UP 10 +3274240 waslock = 0 +3274240 512 2048 +~~~ +3278548 DOWN 10 +3278548 0 2048 +~~~ +~~~ +~~~ +~~~ +3278571 homeCount = 23 +3278571 waitCount = 11 +3278572 ripCount = 7 +3278572 locktype1 = 2 +3278572 locktype2 = 2 +3278573 locktype3 = 1 +3278573 goalCount = 9 +3278574 goalTotal = 9 +3278574 otherCount = 8 +~~~ +3280094 UP 12 +3280093 2048 2048 +3283094 CLICK1 +3283094 CLICK2 +~~~ +~~~ +~~~ +3283119 2048 67110912 +~~~ +3283269 2048 2048 +3287508 DOWN 12 +3287508 0 2048 +~~~ +~~~ +3287532 0 0 +~~~ +~~~ +3287534 0 1 +~~~ +~~~ +3287536 0 3 +~~~ +~~~ +3287538 0 7 +~~~ +~~~ +3287539 0 15 +~~~ +~~~ +3287541 0 31 +~~~ +~~~ +3287543 0 63 +~~~ +~~~ +3287545 0 127 +~~~ +~~~ +3287547 0 255 +3287548 homeCount = 23 +3287548 waitCount = 12 +3287549 ripCount = 7 +3287549 locktype1 = 2 +3287550 locktype2 = 2 +3287550 locktype3 = 1 +3287571 goalCount = 9 +3287572 goalTotal = 9 +3287572 otherCount = 8 +~~~ +3287573 CURRENTGOAL IS [5] +~~~ +3287592 UP 12 +3287592 2048 255 +3289873 DOWN 12 +3289873 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3289914 homeCount = 23 +3289914 waitCount = 12 +3289915 ripCount = 7 +3289915 locktype1 = 2 +3289916 locktype2 = 2 +3289916 locktype3 = 1 +3289917 goalCount = 9 +3289917 goalTotal = 9 +3289918 otherCount = 8 +~~~ +3289919 CURRENTGOAL IS [5] +~~~ +3289919 UP 12 +3289919 2048 255 +3289957 DOWN 12 +3289957 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3289993 homeCount = 23 +3289994 waitCount = 12 +3289994 ripCount = 7 +3289995 locktype1 = 2 +3289995 locktype2 = 2 +3289996 locktype3 = 1 +3289996 goalCount = 9 +3289997 goalTotal = 9 +3289997 otherCount = 8 +~~~ +3289998 CURRENTGOAL IS [5] +~~~ +3293507 UP 5 +3293507 16 255 +~~~ +~~~ +3293531 outer reward +~~~ +3293531 16 1048831 +~~~ +~~~ +3293536 outerreps = 12 +~~~ +~~~ +3293615 DOWN 5 +3293615 0 1048831 +~~~ +~~~ +3293637 0 1048830 +~~~ +~~~ +3293639 0 1048828 +~~~ +~~~ +3293641 0 1048824 +~~~ +~~~ +3293643 0 1048816 +~~~ +~~~ +3293645 0 1048800 +~~~ +~~~ +3293647 0 1048768 +~~~ +~~~ +3293648 0 1048704 +~~~ +~~~ +3293650 0 1048576 +~~~ +~~~ +3293652 0 1049088 +3293653 homeCount = 23 +3293654 waitCount = 12 +3293654 ripCount = 7 +3293675 locktype1 = 2 +3293675 locktype2 = 2 +3293676 locktype3 = 1 +3293676 goalCount = 0 +3293677 goalTotal = 10 +3293677 otherCount = 8 +~~~ +3293737 16 1049088 +3293981 16 512 +3294292 DOWN 5 +3294292 0 512 +3294316 16 512 +3294427 DOWN 5 +3294427 0 512 +3294455 16 512 +3294576 DOWN 5 +3294576 0 512 +3294585 16 512 +3300882 DOWN 5 +3300882 0 512 +3300930 16 512 +3300943 DOWN 5 +3300943 0 512 +3304714 UP 10 +3304714 waslock = 0 +3304714 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3304747 512 16777728 +~~~ +3304897 512 512 +3304898 DOWN 10 +3304898 0 512 +3304908 UP 10 +3304908 waslock = 0 +3304908 512 512 +~~~ +~~~ +3304923 512 1536 +~~~ +~~~ +3304925 512 1024 +3304926 homeCount = 24 +3304927 waitCount = 12 +3304927 ripCount = 7 +3304928 locktype1 = 2 +3304928 locktype2 = 2 +3304928 locktype3 = 1 +3304929 goalCount = 0 +3304929 goalTotal = 10 +3304930 otherCount = 8 +~~~ +~~~ +3308761 DOWN 10 +3308761 0 1024 +~~~ +~~~ +~~~ +~~~ +3308787 homeCount = 24 +3308788 waitCount = 12 +3308788 ripCount = 7 +3308789 locktype1 = 2 +3308789 locktype2 = 2 +3308790 locktype3 = 1 +3308790 goalCount = 0 +3308791 goalTotal = 10 +3308791 otherCount = 8 +~~~ +3308798 UP 10 +3308798 waslock = 0 +3308798 512 1024 +~~~ +3308860 DOWN 10 +3308860 0 1024 +~~~ +~~~ +~~~ +~~~ +3308885 homeCount = 24 +3308886 waitCount = 12 +3308886 ripCount = 7 +3308887 locktype1 = 2 +3308887 locktype2 = 2 +3308888 locktype3 = 1 +3308888 goalCount = 0 +3308889 goalTotal = 10 +3308889 otherCount = 8 +~~~ +3311076 UP 11 +3311076 1024 1024 +3313181 DOWN 11 +3313181 0 1024 +3313192 UP 11 +3313192 1024 1024 +3314077 BEEP1 +3314077 BEEP2 +~~~ +~~~ +~~~ +3314104 1024 33555456 +~~~ +3314254 1024 1024 +3318081 DOWN 11 +3318081 0 1024 +~~~ +3318103 UP 11 +3318103 1024 1024 +~~~ +~~~ +3318105 1024 0 +~~~ +~~~ +3318106 1024 1 +~~~ +3318107 1024 3 +~~~ +~~~ +3318109 1024 7 +~~~ +~~~ +3318111 1024 15 +~~~ +~~~ +3318113 1024 31 +~~~ +~~~ +3318114 1024 63 +~~~ +~~~ +3318116 1024 127 +~~~ +~~~ +3318118 1024 255 +3318119 homeCount = 24 +3318140 waitCount = 12 +3318141 ripCount = 8 +3318141 locktype1 = 2 +3318142 locktype2 = 2 +3318142 locktype3 = 1 +3318142 goalCount = 0 +3318143 goalTotal = 10 +3318143 otherCount = 8 +~~~ +3318144 CURRENTGOAL IS [4] +~~~ +3318210 DOWN 11 +3318210 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3318243 homeCount = 24 +3318243 waitCount = 12 +3318244 ripCount = 8 +3318244 locktype1 = 2 +3318245 locktype2 = 2 +3318245 locktype3 = 1 +3318246 goalCount = 0 +3318246 goalTotal = 10 +3318247 otherCount = 8 +~~~ +3318248 CURRENTGOAL IS [4] +~~~ +3318282 UP 11 +3318282 1024 255 +3320896 DOWN 11 +3320896 0 255 +3320908 UP 11 +3320907 1024 255 +3320920 DOWN 11 +3320920 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3320943 homeCount = 24 +3320944 waitCount = 12 +3320944 ripCount = 8 +3320945 locktype1 = 2 +3320945 locktype2 = 2 +3320946 locktype3 = 1 +3320946 goalCount = 0 +3320947 goalTotal = 10 +3320947 otherCount = 8 +~~~ +3320948 CURRENTGOAL IS [4] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3320976 homeCount = 24 +3320976 waitCount = 12 +3320977 ripCount = 8 +3320977 locktype1 = 2 +3320978 locktype2 = 2 +3320978 locktype3 = 1 +3320979 goalCount = 0 +3320979 goalTotal = 10 +3321000 otherCount = 8 +~~~ +3321001 CURRENTGOAL IS [4] +~~~ +3321002 UP 11 +3321002 1024 255 +3323162 DOWN 11 +3323162 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3323198 homeCount = 24 +3323198 waitCount = 12 +3323199 ripCount = 8 +3323199 locktype1 = 2 +3323200 locktype2 = 2 +3323200 locktype3 = 1 +3323201 goalCount = 0 +3323201 goalTotal = 10 +3323202 otherCount = 8 +~~~ +3323203 CURRENTGOAL IS [4] +~~~ +3326113 UP 5 +3326113 16 255 +~~~ +~~~ +3326327 DOWN 5 +3326327 0 255 +~~~ +~~~ +3326352 0 254 +~~~ +~~~ +3326354 0 252 +~~~ +~~~ +3326356 0 248 +~~~ +~~~ +3326358 0 240 +~~~ +~~~ +3326360 0 224 +~~~ +~~~ +3326361 0 192 +~~~ +~~~ +3326363 0 128 +~~~ +~~~ +3326365 0 0 +~~~ +~~~ +3326367 0 512 +3326368 homeCount = 24 +3326368 waitCount = 12 +3326369 ripCount = 8 +3326369 locktype1 = 2 +3326370 locktype2 = 2 +3326391 locktype3 = 1 +3326392 goalCount = 0 +3326392 goalTotal = 10 +3326392 otherCount = 9 +~~~ +3326393 16 512 +3327275 DOWN 5 +3327275 0 512 +3331483 UP 10 +3331483 waslock = 0 +3331483 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3331515 512 16777728 +~~~ +3331628 DOWN 10 +3331628 0 16777728 +~~~ +~~~ +3331648 0 16779776 +~~~ +~~~ +3331650 0 16779264 +3331651 homeCount = 25 +3331652 waitCount = 12 +3331652 ripCount = 8 +3331653 locktype1 = 2 +3331653 locktype2 = 2 +3331654 locktype3 = 1 +3331654 goalCount = 0 +3331655 goalTotal = 10 +3331655 otherCount = 9 +~~~ +3331676 0 2048 +3331678 UP 10 +3331678 waslock = 0 +3331678 512 2048 +~~~ +3335072 DOWN 10 +3335072 0 2048 +~~~ +~~~ +~~~ +~~~ +3335101 homeCount = 25 +3335102 waitCount = 12 +3335102 ripCount = 8 +3335103 locktype1 = 2 +3335103 locktype2 = 2 +3335104 locktype3 = 1 +3335104 goalCount = 0 +3335105 goalTotal = 10 +3335105 otherCount = 9 +~~~ +3335111 UP 10 +3335111 waslock = 0 +3335111 512 2048 +~~~ +3335173 DOWN 10 +3335173 0 2048 +~~~ +~~~ +~~~ +~~~ +3335201 homeCount = 25 +3335201 waitCount = 12 +3335202 ripCount = 8 +3335202 locktype1 = 2 +3335202 locktype2 = 2 +3335203 locktype3 = 1 +3335203 goalCount = 0 +3335204 goalTotal = 10 +3335204 otherCount = 9 +~~~ +3337393 UP 12 +3337393 2048 2048 +3338245 DOWN 12 +3338245 0 2048 +3338263 UP 12 +3338263 2048 2048 +3338315 DOWN 12 +3338315 0 2048 +3338351 UP 12 +3338351 2048 2048 +3341498 DOWN 12 +3341498 0 2048 +3341509 UP 12 +3341509 2048 2048 +3343393 CLICK1 +3343393 CLICK2 +~~~ +~~~ +~~~ +3343422 2048 67110912 +~~~ +3343572 2048 2048 +3347572 DOWN 12 +3347572 0 2048 +~~~ +~~~ +3347598 0 0 +~~~ +~~~ +3347599 0 1 +~~~ +~~~ +3347601 0 3 +~~~ +~~~ +3347603 0 7 +~~~ +~~~ +3347605 0 15 +~~~ +~~~ +3347607 0 31 +~~~ +~~~ +3347608 0 63 +~~~ +~~~ +3347610 0 127 +~~~ +~~~ +3347612 0 255 +3347613 homeCount = 25 +3347614 waitCount = 13 +3347614 ripCount = 8 +3347615 locktype1 = 2 +3347615 locktype2 = 2 +3347616 locktype3 = 1 +3347636 goalCount = 0 +3347637 goalTotal = 10 +3347637 otherCount = 9 +~~~ +3347638 CURRENTGOAL IS [4] +~~~ +3353871 UP 1 +3353871 1 255 +~~~ +~~~ +3355979 DOWN 1 +3355979 0 255 +~~~ +~~~ +3355998 0 254 +~~~ +~~~ +3355999 0 252 +~~~ +~~~ +3356001 0 248 +~~~ +~~~ +3356003 0 240 +~~~ +~~~ +3356005 0 224 +~~~ +~~~ +3356007 0 192 +~~~ +~~~ +3356008 0 128 +~~~ +~~~ +3356010 0 0 +~~~ +~~~ +3356012 0 512 +3356013 homeCount = 25 +3356014 waitCount = 13 +3356014 ripCount = 8 +3356015 locktype1 = 2 +3356015 locktype2 = 2 +3356036 locktype3 = 1 +3356037 goalCount = 0 +3356037 goalTotal = 10 +3356038 otherCount = 10 +~~~ +3356051 1 512 +3356113 DOWN 1 +3356113 0 512 +3364545 UP 10 +3364546 waslock = 0 +3364545 512 512 +3364564 DOWN 10 +3364564 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3364574 0 16777728 +~~~ +3364586 UP 10 +3364587 waslock = 0 +3364586 512 16777728 +~~~ +~~~ +3364589 512 16779776 +~~~ +~~~ +3364591 512 16779264 +3364592 homeCount = 26 +3364592 waitCount = 13 +3364593 ripCount = 8 +3364593 locktype1 = 2 +3364594 locktype2 = 2 +3364594 locktype3 = 1 +3364595 goalCount = 0 +3364616 goalTotal = 10 +3364616 otherCount = 10 +~~~ +~~~ +3364724 512 2048 +3364785 DOWN 10 +3364785 0 2048 +~~~ +~~~ +~~~ +~~~ +3364814 homeCount = 26 +3364815 waitCount = 13 +3364815 ripCount = 8 +3364816 locktype1 = 2 +3364816 locktype2 = 2 +3364817 locktype3 = 1 +3364817 goalCount = 0 +3364818 goalTotal = 10 +3364818 otherCount = 10 +~~~ +3364820 UP 10 +3364821 waslock = 0 +3364820 512 2048 +~~~ +3369000 DOWN 10 +3369000 0 2048 +~~~ +~~~ +~~~ +~~~ +3369021 homeCount = 26 +3369021 waitCount = 13 +3369022 ripCount = 8 +3369022 locktype1 = 2 +3369023 locktype2 = 2 +3369023 locktype3 = 1 +3369024 goalCount = 0 +3369024 goalTotal = 10 +3369025 otherCount = 10 +~~~ +3371473 UP 12 +3371473 2048 2048 +3371491 DOWN 12 +3371491 0 2048 +3371539 UP 12 +3371539 2048 2048 +3372597 DOWN 12 +3372597 0 2048 +3372605 UP 12 +3372605 2048 2048 +3372635 DOWN 12 +3372635 0 2048 +3372713 UP 12 +3372713 2048 2048 +3374473 CLICK1 +3374473 CLICK2 +~~~ +~~~ +~~~ +3374502 2048 67110912 +~~~ +3374652 2048 2048 +3379419 DOWN 12 +3379419 0 2048 +~~~ +~~~ +3379439 0 0 +~~~ +~~~ +3379441 0 1 +~~~ +3379442 UP 12 +3379442 2048 1 +~~~ +~~~ +3379444 2048 3 +~~~ +~~~ +3379446 2048 7 +~~~ +3379447 2048 15 +~~~ +~~~ +3379448 2048 31 +~~~ +~~~ +3379450 2048 63 +~~~ +~~~ +3379452 2048 127 +~~~ +~~~ +3379454 2048 255 +3379455 homeCount = 26 +3379455 waitCount = 14 +3379476 ripCount = 8 +3379477 locktype1 = 2 +3379477 locktype2 = 2 +3379478 locktype3 = 1 +3379478 goalCount = 0 +3379479 goalTotal = 10 +3379479 otherCount = 10 +~~~ +3379480 CURRENTGOAL IS [4] +~~~ +3379501 DOWN 12 +3379501 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3379536 homeCount = 26 +3379537 waitCount = 14 +3379537 ripCount = 8 +3379538 locktype1 = 2 +3379538 locktype2 = 2 +3379539 locktype3 = 1 +3379539 goalCount = 0 +3379540 goalTotal = 10 +3379540 otherCount = 10 +~~~ +3379541 CURRENTGOAL IS [4] +~~~ +3382877 UP 5 +3382877 16 255 +~~~ +~~~ +3383277 DOWN 5 +3383277 0 255 +~~~ +~~~ +3383303 0 254 +~~~ +~~~ +3383305 0 252 +~~~ +~~~ +3383307 0 248 +~~~ +~~~ +3383309 0 240 +~~~ +~~~ +3383311 0 224 +~~~ +~~~ +3383312 0 192 +~~~ +~~~ +3383314 0 128 +~~~ +~~~ +3383316 0 0 +~~~ +~~~ +3383318 0 512 +3383319 homeCount = 26 +3383319 waitCount = 14 +3383320 ripCount = 8 +3383320 locktype1 = 2 +3383321 locktype2 = 2 +3383342 locktype3 = 1 +3383342 goalCount = 0 +3383343 goalTotal = 10 +3383343 otherCount = 11 +~~~ +3383433 16 512 +3383515 DOWN 5 +3383515 0 512 +3386814 UP 10 +3386815 waslock = 0 +3386814 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3386842 512 16777728 +~~~ +3386992 512 512 +3387046 DOWN 10 +3387046 0 512 +~~~ +~~~ +3387067 0 1536 +~~~ +~~~ +3387069 0 1024 +3387070 homeCount = 27 +3387070 waitCount = 14 +3387071 ripCount = 8 +3387071 locktype1 = 2 +3387072 locktype2 = 2 +3387072 locktype3 = 1 +3387073 goalCount = 0 +3387073 goalTotal = 10 +3387074 otherCount = 11 +~~~ +3387074 UP 10 +3387095 waslock = 0 +3387074 512 1024 +~~~ +3390332 DOWN 10 +3390332 0 1024 +~~~ +~~~ +~~~ +~~~ +3390354 homeCount = 27 +3390354 waitCount = 14 +3390355 ripCount = 8 +3390355 locktype1 = 2 +3390356 locktype2 = 2 +3390356 locktype3 = 1 +3390357 goalCount = 0 +3390357 goalTotal = 10 +3390358 otherCount = 11 +~~~ +3390364 UP 10 +3390364 waslock = 0 +3390363 512 1024 +~~~ +3390422 DOWN 10 +3390422 0 1024 +~~~ +~~~ +~~~ +~~~ +3390446 homeCount = 27 +3390446 waitCount = 14 +3390447 ripCount = 8 +3390447 locktype1 = 2 +3390448 locktype2 = 2 +3390448 locktype3 = 1 +3390449 goalCount = 0 +3390449 goalTotal = 10 +3390450 otherCount = 11 +~~~ +3392373 UP 11 +3392373 1024 1024 +3394624 BEEP1 +3394624 BEEP2 +~~~ +~~~ +~~~ +3394644 1024 33555456 +~~~ +3394794 1024 1024 +3402282 DOWN 11 +3402282 0 1024 +~~~ +~~~ +3402303 0 0 +~~~ +~~~ +3402305 0 1 +~~~ +~~~ +3402307 0 3 +~~~ +~~~ +3402308 0 7 +~~~ +~~~ +3402310 0 15 +~~~ +~~~ +3402312 0 31 +~~~ +~~~ +3402314 0 63 +~~~ +~~~ +3402316 0 127 +~~~ +~~~ +3402317 0 255 +3402318 homeCount = 27 +3402319 waitCount = 14 +3402319 ripCount = 9 +3402320 locktype1 = 2 +3402320 locktype2 = 2 +3402321 locktype3 = 1 +3402342 goalCount = 0 +3402342 goalTotal = 10 +3402343 otherCount = 11 +~~~ +3402344 CURRENTGOAL IS [4] +~~~ +3405003 UP 8 +3405003 128 255 +~~~ +~~~ +3405483 DOWN 8 +3405483 0 255 +3405500 128 255 +~~~ +~~~ +3405509 128 254 +~~~ +~~~ +3405511 128 252 +~~~ +~~~ +3405513 128 248 +~~~ +~~~ +3405515 128 240 +~~~ +~~~ +3405517 128 224 +~~~ +~~~ +3405518 128 192 +~~~ +~~~ +3405520 128 128 +~~~ +~~~ +3405522 128 0 +~~~ +~~~ +3405524 128 512 +3405525 homeCount = 27 +3405526 waitCount = 14 +3405526 ripCount = 9 +3405526 locktype1 = 2 +3405547 locktype2 = 2 +3405548 locktype3 = 1 +3405548 goalCount = 0 +3405549 goalTotal = 10 +3405549 otherCount = 12 +~~~ +3405550 DOWN 8 +3405550 0 512 +3405554 128 512 +3405618 DOWN 8 +3405618 0 512 +3405768 128 512 +3406173 DOWN 8 +3406173 0 512 +3406190 128 512 +3406488 DOWN 8 +3406488 0 512 +3412401 UP 10 +3412402 waslock = 0 +3412401 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3412426 512 16777728 +~~~ +3412576 512 512 +3417283 DOWN 10 +3417283 0 512 +~~~ +~~~ +3417301 0 1536 +~~~ +~~~ +3417303 0 1024 +3417304 homeCount = 28 +3417305 waitCount = 14 +3417305 ripCount = 9 +3417306 locktype1 = 2 +3417306 locktype2 = 2 +3417306 locktype3 = 1 +3417307 goalCount = 0 +3417307 goalTotal = 10 +3417308 otherCount = 12 +~~~ +3417314 UP 10 +3417314 waslock = 0 +3417314 512 1024 +~~~ +3417369 DOWN 10 +3417369 0 1024 +~~~ +~~~ +~~~ +~~~ +3417395 homeCount = 28 +3417395 waitCount = 14 +3417396 ripCount = 9 +3417396 locktype1 = 2 +3417397 locktype2 = 2 +3417397 locktype3 = 1 +3417398 goalCount = 0 +3417398 goalTotal = 10 +3417398 otherCount = 12 +~~~ +3418917 UP 11 +3418917 1024 1024 +3421167 BEEP1 +3421167 BEEP2 +~~~ +~~~ +~~~ +3421193 1024 33555456 +~~~ +3421343 1024 1024 +3426415 DOWN 11 +3426415 0 1024 +~~~ +~~~ +3426441 0 0 +~~~ +3426442 UP 11 +3426442 1024 0 +~~~ +~~~ +3426444 1024 1 +~~~ +~~~ +3426446 1024 3 +~~~ +3426447 1024 7 +~~~ +~~~ +3426448 1024 15 +~~~ +~~~ +3426450 1024 31 +~~~ +~~~ +3426452 1024 63 +~~~ +~~~ +3426453 1024 127 +~~~ +~~~ +3426455 1024 255 +3426456 homeCount = 28 +3426478 waitCount = 14 +3426478 ripCount = 10 +3426478 locktype1 = 2 +3426479 locktype2 = 2 +3426479 locktype3 = 1 +3426480 goalCount = 0 +3426480 goalTotal = 10 +3426481 otherCount = 12 +~~~ +3426482 CURRENTGOAL IS [4] +~~~ +3426484 DOWN 11 +3426484 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3426535 UP 11 +3426535 1024 255 +~~~ +~~~ +~~~ +~~~ +3426539 homeCount = 28 +3426540 waitCount = 14 +3426540 ripCount = 10 +3426541 locktype1 = 2 +3426541 locktype2 = 2 +3426542 locktype3 = 1 +3426542 goalCount = 0 +3426543 goalTotal = 10 +3426543 otherCount = 12 +~~~ +3426544 CURRENTGOAL IS [4] +~~~ +3428785 DOWN 11 +3428785 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3428822 homeCount = 28 +3428823 waitCount = 14 +3428823 ripCount = 10 +3428824 locktype1 = 2 +3428824 locktype2 = 2 +3428825 locktype3 = 1 +3428825 goalCount = 0 +3428826 goalTotal = 10 +3428826 otherCount = 12 +~~~ +3428827 CURRENTGOAL IS [4] +~~~ +3431457 UP 6 +3431457 32 255 +~~~ +~~~ +3433724 DOWN 6 +3433724 0 255 +~~~ +~~~ +3433746 0 254 +~~~ +~~~ +3433747 0 252 +~~~ +~~~ +3433749 0 248 +~~~ +~~~ +3433751 0 240 +~~~ +~~~ +3433753 0 224 +~~~ +~~~ +3433755 0 192 +~~~ +~~~ +3433757 0 128 +~~~ +~~~ +3433758 0 0 +~~~ +~~~ +3433760 0 512 +3433761 homeCount = 28 +3433762 waitCount = 14 +3433762 ripCount = 10 +3433763 locktype1 = 2 +3433763 locktype2 = 2 +3433784 locktype3 = 1 +3433785 goalCount = 0 +3433785 goalTotal = 10 +3433786 otherCount = 13 +~~~ +3433786 32 512 +3433787 DOWN 6 +3433787 0 512 +3437391 UP 10 +3437392 waslock = 0 +3437391 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3437423 512 16777728 +~~~ +3437573 512 512 +3439941 DOWN 10 +3439941 0 512 +~~~ +~~~ +3439966 0 1536 +~~~ +~~~ +3439968 0 1024 +3439969 homeCount = 29 +3439969 waitCount = 14 +3439970 ripCount = 10 +3439970 locktype1 = 2 +3439971 locktype2 = 2 +3439971 locktype3 = 1 +3439971 goalCount = 0 +3439972 goalTotal = 10 +3439972 otherCount = 13 +~~~ +3440045 UP 10 +3440045 waslock = 0 +3440045 512 1024 +~~~ +3443900 DOWN 10 +3443900 0 1024 +~~~ +~~~ +~~~ +~~~ +3443928 homeCount = 29 +3443929 waitCount = 14 +3443929 ripCount = 10 +3443930 locktype1 = 2 +3443930 locktype2 = 2 +3443931 locktype3 = 1 +3443931 goalCount = 0 +3443932 goalTotal = 10 +3443932 otherCount = 13 +~~~ +3443937 UP 10 +3443938 waslock = 0 +3443937 512 1024 +~~~ +3444010 DOWN 10 +3444010 0 1024 +~~~ +~~~ +~~~ +~~~ +3444047 homeCount = 29 +3444048 waitCount = 14 +3444048 ripCount = 10 +3444049 locktype1 = 2 +3444049 locktype2 = 2 +3444050 locktype3 = 1 +3444050 goalCount = 0 +3444051 goalTotal = 10 +3444051 otherCount = 13 +~~~ +3447480 UP 11 +3447480 1024 1024 +3449428 DOWN 11 +3449428 0 1024 +3449534 UP 11 +3449534 1024 1024 +3450480 BEEP1 +3450480 BEEP2 +~~~ +~~~ +~~~ +3450499 1024 33555456 +~~~ +3450520 DOWN 11 +3450520 0 33555456 +3450539 UP 11 +3450539 1024 33555456 +3450649 1024 1024 +3450808 DOWN 11 +3450808 0 1024 +3450838 UP 11 +3450838 1024 1024 +~~~ +~~~ +3451150 1024 0 +~~~ +~~~ +3451152 1024 1 +~~~ +~~~ +3451154 1024 3 +~~~ +~~~ +3451156 1024 7 +~~~ +~~~ +3451158 1024 15 +~~~ +~~~ +3451160 1024 31 +~~~ +~~~ +3451161 1024 63 +~~~ +~~~ +3451163 1024 127 +~~~ +~~~ +3451165 1024 255 +3451166 homeCount = 29 +3451167 waitCount = 14 +3451167 ripCount = 11 +3451168 locktype1 = 2 +3451188 locktype2 = 2 +3451189 locktype3 = 1 +3451189 goalCount = 0 +3451190 goalTotal = 10 +3451190 otherCount = 13 +~~~ +3451191 CURRENTGOAL IS [4] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3451219 homeCount = 29 +3451219 waitCount = 14 +3451220 ripCount = 11 +3451220 locktype1 = 2 +3451221 locktype2 = 2 +3451221 locktype3 = 1 +3451222 goalCount = 0 +3451222 goalTotal = 10 +3451223 otherCount = 13 +~~~ +3451224 CURRENTGOAL IS [4] +~~~ +3455069 DOWN 11 +3455069 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3455110 homeCount = 29 +3455111 waitCount = 14 +3455111 ripCount = 11 +3455112 locktype1 = 2 +3455112 locktype2 = 2 +3455113 locktype3 = 1 +3455113 goalCount = 0 +3455113 goalTotal = 10 +3455114 otherCount = 13 +~~~ +3455115 CURRENTGOAL IS [4] +~~~ +3455116 UP 11 +3455115 1024 255 +3455168 DOWN 11 +3455168 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3455204 homeCount = 29 +3455205 waitCount = 14 +3455205 ripCount = 11 +3455206 locktype1 = 2 +3455206 locktype2 = 2 +3455207 locktype3 = 1 +3455207 goalCount = 0 +3455208 goalTotal = 10 +3455208 otherCount = 13 +~~~ +3455209 CURRENTGOAL IS [4] +~~~ +3467183 UP 5 +3467183 16 255 +~~~ +~~~ +3467241 DOWN 5 +3467241 0 255 +3467259 16 255 +~~~ +~~~ +3467270 16 254 +~~~ +~~~ +3467271 16 252 +~~~ +~~~ +3467273 16 248 +~~~ +~~~ +3467275 16 240 +~~~ +~~~ +3467277 16 224 +~~~ +~~~ +3467279 16 192 +~~~ +~~~ +3467281 16 128 +~~~ +~~~ +3467282 16 0 +~~~ +~~~ +3467284 16 512 +3467285 homeCount = 29 +3467286 waitCount = 14 +3467286 ripCount = 11 +3467287 locktype1 = 2 +3467308 locktype2 = 2 +3467308 locktype3 = 1 +3467309 goalCount = 0 +3467309 goalTotal = 10 +3467310 otherCount = 14 +~~~ +3467494 DOWN 5 +3467494 0 512 +3470785 UP 10 +3470785 waslock = 0 +3470785 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3470815 512 16777728 +~~~ +3470959 DOWN 10 +3470959 0 16777728 +3470965 0 512 +3470971 UP 10 +3470971 waslock = 0 +3470971 512 512 +~~~ +~~~ +3470990 512 1536 +~~~ +~~~ +3470992 512 1024 +3470993 homeCount = 30 +3470994 waitCount = 14 +3470994 ripCount = 11 +3470995 locktype1 = 2 +3470995 locktype2 = 2 +3470996 locktype3 = 1 +3470996 goalCount = 0 +3470997 goalTotal = 10 +3470997 otherCount = 14 +~~~ +~~~ +3471019 DOWN 10 +3471019 0 1024 +~~~ +~~~ +~~~ +~~~ +3471035 homeCount = 30 +3471036 waitCount = 14 +3471036 ripCount = 11 +3471037 locktype1 = 2 +3471037 locktype2 = 2 +3471038 locktype3 = 1 +3471038 goalCount = 0 +3471039 goalTotal = 10 +3471039 otherCount = 14 +~~~ +3471096 UP 10 +3471097 waslock = 0 +3471096 512 1024 +~~~ +3474249 DOWN 10 +3474249 0 1024 +~~~ +~~~ +~~~ +~~~ +3474271 homeCount = 30 +3474271 waitCount = 14 +3474272 ripCount = 11 +3474272 locktype1 = 2 +3474273 locktype2 = 2 +3474273 locktype3 = 1 +3474274 goalCount = 0 +3474274 goalTotal = 10 +3474275 otherCount = 14 +~~~ +3474308 UP 10 +3474308 waslock = 0 +3474307 512 1024 +3474331 DOWN 10 +3474331 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +3474354 homeCount = 30 +3474354 waitCount = 14 +3474355 ripCount = 11 +3474355 locktype1 = 2 +3474356 locktype2 = 2 +3474356 locktype3 = 1 +3474356 goalCount = 0 +3474357 goalTotal = 10 +3474357 otherCount = 14 +~~~ +3476396 UP 11 +3476396 1024 1024 +3476414 DOWN 11 +3476414 0 1024 +3476440 UP 11 +3476440 1024 1024 +3477699 DOWN 11 +3477699 0 1024 +3477756 UP 11 +3477756 1024 1024 +3482397 BEEP1 +3482397 BEEP2 +~~~ +~~~ +~~~ +3482421 1024 33555456 +~~~ +3482571 1024 1024 +3487234 DOWN 11 +3487234 0 1024 +~~~ +~~~ +3487260 0 0 +~~~ +~~~ +3487261 0 1 +~~~ +~~~ +3487263 0 3 +~~~ +~~~ +3487265 0 7 +~~~ +~~~ +3487267 0 15 +~~~ +~~~ +3487269 0 31 +~~~ +~~~ +3487271 0 63 +~~~ +~~~ +3487272 0 127 +~~~ +~~~ +3487274 0 255 +3487275 homeCount = 30 +3487276 waitCount = 14 +3487276 ripCount = 12 +3487277 locktype1 = 2 +3487277 locktype2 = 2 +3487278 locktype3 = 1 +3487299 goalCount = 0 +3487299 goalTotal = 10 +3487299 otherCount = 14 +~~~ +3487301 CURRENTGOAL IS [4] +~~~ +3492075 UP 3 +3492075 4 255 +~~~ +~~~ +3493640 DOWN 3 +3493640 0 255 +~~~ +~~~ +3493660 0 254 +~~~ +~~~ +3493662 0 252 +~~~ +~~~ +3493664 0 248 +~~~ +~~~ +3493666 0 240 +~~~ +~~~ +3493668 0 224 +~~~ +~~~ +3493669 0 192 +~~~ +~~~ +3493671 0 128 +~~~ +~~~ +3493673 0 0 +~~~ +~~~ +3493675 0 512 +3493676 homeCount = 30 +3493676 waitCount = 14 +3493677 ripCount = 12 +3493677 locktype1 = 2 +3493678 locktype2 = 2 +3493699 locktype3 = 1 +3493699 goalCount = 0 +3493700 goalTotal = 10 +3493700 otherCount = 15 +~~~ +3496771 UP 10 +3496771 waslock = 0 +3496771 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3496799 512 16777728 +~~~ +3496949 512 512 +3496960 DOWN 10 +3496959 0 512 +~~~ +~~~ +3496976 0 2560 +~~~ +~~~ +3496978 0 2048 +3496979 homeCount = 31 +3496980 waitCount = 14 +3496980 ripCount = 12 +3496981 locktype1 = 2 +3496981 locktype2 = 2 +3496982 locktype3 = 1 +3496982 goalCount = 0 +3496983 goalTotal = 10 +3496983 otherCount = 15 +~~~ +3496994 UP 10 +3496994 waslock = 0 +3496994 512 2048 +~~~ +3500863 DOWN 10 +3500863 0 2048 +~~~ +~~~ +~~~ +~~~ +3500884 homeCount = 31 +3500884 waitCount = 14 +3500885 ripCount = 12 +3500885 locktype1 = 2 +3500886 locktype2 = 2 +3500886 locktype3 = 1 +3500887 goalCount = 0 +3500887 goalTotal = 10 +3500888 otherCount = 15 +~~~ +3502510 UP 12 +3502510 2048 2048 +3503845 DOWN 12 +3503845 0 2048 +3503872 UP 12 +3503872 2048 2048 +3508139 DOWN 12 +3508139 0 2048 +3508145 UP 12 +3508145 2048 2048 +3508156 DOWN 12 +3508156 0 2048 +3508173 UP 12 +3508173 2048 2048 +3508510 CLICK1 +3508510 CLICK2 +~~~ +~~~ +~~~ +3508533 2048 67110912 +~~~ +3508683 2048 2048 +3515792 DOWN 12 +3515792 0 2048 +~~~ +~~~ +3515814 0 0 +~~~ +~~~ +3515816 0 1 +~~~ +~~~ +3515818 0 3 +~~~ +~~~ +3515820 0 7 +~~~ +~~~ +3515821 0 15 +~~~ +~~~ +3515823 0 31 +~~~ +~~~ +3515825 0 63 +~~~ +~~~ +3515827 0 127 +~~~ +~~~ +3515829 0 255 +3515830 homeCount = 31 +3515830 waitCount = 15 +3515831 ripCount = 12 +3515831 locktype1 = 2 +3515832 locktype2 = 2 +3515853 locktype3 = 1 +3515853 goalCount = 0 +3515854 goalTotal = 10 +3515854 otherCount = 15 +~~~ +3515855 CURRENTGOAL IS [4] +~~~ +3521707 UP 8 +3521707 128 255 +~~~ +~~~ +3522495 DOWN 8 +3522494 0 255 +~~~ +~~~ +3522516 0 254 +~~~ +~~~ +3522517 0 252 +~~~ +~~~ +3522519 0 248 +~~~ +~~~ +3522521 0 240 +~~~ +~~~ +3522523 0 224 +~~~ +~~~ +3522525 0 192 +~~~ +~~~ +3522526 0 128 +~~~ +~~~ +3522528 0 0 +~~~ +~~~ +3522530 0 512 +3522531 homeCount = 31 +3522532 waitCount = 15 +3522532 ripCount = 12 +3522533 locktype1 = 2 +3522533 locktype2 = 2 +3522554 locktype3 = 1 +3522554 goalCount = 0 +3522555 goalTotal = 10 +3522555 otherCount = 16 +~~~ +3528013 UP 10 +3528013 waslock = 0 +3528013 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3528040 512 16777728 +~~~ +3528190 512 512 +3532039 DOWN 10 +3532039 0 512 +3532051 UP 10 +3532051 waslock = 0 +3532051 512 512 +~~~ +~~~ +3532064 512 2560 +~~~ +~~~ +3532066 512 2048 +3532067 homeCount = 32 +3532068 waitCount = 15 +3532068 ripCount = 12 +3532069 locktype1 = 2 +3532069 locktype2 = 2 +3532070 locktype3 = 1 +3532070 goalCount = 0 +3532071 goalTotal = 10 +3532071 otherCount = 16 +~~~ +~~~ +3532129 DOWN 10 +3532129 0 2048 +~~~ +~~~ +~~~ +~~~ +3532159 homeCount = 32 +3532159 waitCount = 15 +3532160 ripCount = 12 +3532160 locktype1 = 2 +3532161 locktype2 = 2 +3532161 locktype3 = 1 +3532162 goalCount = 0 +3532162 goalTotal = 10 +3532163 otherCount = 16 +~~~ +3533716 UP 12 +3533716 2048 2048 +3535140 DOWN 12 +3535140 0 2048 +3535175 UP 12 +3535175 2048 2048 +3535301 DOWN 12 +3535301 0 2048 +3535317 UP 12 +3535317 2048 2048 +3540716 CLICK1 +3540716 CLICK2 +~~~ +~~~ +~~~ +3540738 2048 67110912 +~~~ +3540888 2048 2048 +3547369 DOWN 12 +3547369 0 2048 +~~~ +~~~ +3547388 0 0 +~~~ +~~~ +3547390 0 1 +~~~ +~~~ +3547391 0 3 +~~~ +~~~ +3547393 0 7 +~~~ +~~~ +3547395 0 15 +~~~ +~~~ +3547397 0 31 +~~~ +~~~ +3547399 0 63 +~~~ +~~~ +3547401 0 127 +~~~ +~~~ +3547402 0 255 +3547403 homeCount = 32 +3547404 waitCount = 16 +3547404 ripCount = 12 +3547405 locktype1 = 2 +3547405 locktype2 = 2 +3547427 locktype3 = 1 +3547427 goalCount = 0 +3547428 goalTotal = 10 +3547428 otherCount = 16 +~~~ +3547429 CURRENTGOAL IS [4] +~~~ +3561111 UP 10 +3561112 waslock = 0 +3561111 512 255 +~~~ +3561132 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3561140 512 254 +~~~ +~~~ +3561142 512 252 +~~~ +~~~ +3561143 512 248 +~~~ +~~~ +3561145 512 240 +~~~ +~~~ +3561147 512 224 +~~~ +~~~ +3561149 512 192 +~~~ +~~~ +3561151 512 128 +~~~ +~~~ +3561152 512 0 +~~~ +~~~ +~~~ +3561157 0 0 +3561238 512 0 +3562992 0 0 +3564933 UP 11 +3564933 1024 0 +3565541 DOWN 11 +3565541 0 0 +3565809 UP 11 +3565809 1024 0 +3566154 DOWN 11 +3566154 0 0 +3576441 512 0 +3576538 0 0 +3582894 512 0 +3583443 0 0 +3583733 512 0 +3584225 0 0 +3584278 512 0 +3584343 0 0 +3584390 512 0 +3585280 0 0 +3585494 512 0 +3585871 0 0 +3586132 LOCKEND +~~~ +~~~ +~~~ +3586153 0 512 +3586897 UP 10 +3586897 waslock = 0 +3586897 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3586928 512 16777728 +~~~ +3587078 512 512 +3590979 DOWN 10 +3590979 0 512 +3590998 UP 10 +3590999 waslock = 0 +3590998 512 512 +~~~ +~~~ +3591002 512 1536 +~~~ +~~~ +3591004 512 1024 +3591005 homeCount = 33 +3591005 waitCount = 16 +3591006 ripCount = 12 +3591006 locktype1 = 2 +3591007 locktype2 = 3 +3591007 locktype3 = 1 +3591008 goalCount = 0 +3591008 goalTotal = 10 +3591009 otherCount = 16 +~~~ +~~~ +3591090 DOWN 10 +3591090 0 1024 +~~~ +~~~ +~~~ +~~~ +3591121 homeCount = 33 +3591121 waitCount = 16 +3591122 ripCount = 12 +3591122 locktype1 = 2 +3591123 locktype2 = 3 +3591123 locktype3 = 1 +3591124 goalCount = 0 +3591124 goalTotal = 10 +3591125 otherCount = 16 +~~~ +3591146 UP 10 +3591147 waslock = 0 +3591146 512 1024 +~~~ +3591191 DOWN 10 +3591191 0 1024 +~~~ +~~~ +~~~ +~~~ +3591219 homeCount = 33 +3591219 waitCount = 16 +3591220 ripCount = 12 +3591220 locktype1 = 2 +3591221 locktype2 = 3 +3591221 locktype3 = 1 +3591222 goalCount = 0 +3591222 goalTotal = 10 +3591223 otherCount = 16 +~~~ +3593272 UP 11 +3593272 1024 1024 +3593859 DOWN 11 +3593859 0 1024 +3593918 UP 11 +3593918 1024 1024 +3593945 DOWN 11 +3593945 0 1024 +3593960 UP 11 +3593960 1024 1024 +3594765 DOWN 11 +3594765 0 1024 +3594779 UP 11 +3594779 1024 1024 +3598015 DOWN 11 +3598015 0 1024 +3598034 UP 11 +3598034 1024 1024 +3600272 BEEP1 +3600272 BEEP2 +~~~ +~~~ +~~~ +3600296 1024 33555456 +~~~ +3600445 1024 1024 +3604781 DOWN 11 +3604781 0 1024 +3604791 UP 11 +3604791 1024 1024 +~~~ +~~~ +3604804 1024 0 +~~~ +~~~ +3604806 1024 1 +~~~ +~~~ +3604808 1024 3 +~~~ +~~~ +3604809 1024 7 +~~~ +~~~ +3604811 1024 15 +~~~ +~~~ +3604813 1024 31 +~~~ +~~~ +3604815 1024 63 +~~~ +~~~ +3604817 1024 127 +~~~ +~~~ +3604818 1024 255 +3604819 homeCount = 33 +3604820 waitCount = 16 +3604821 ripCount = 13 +3604821 locktype1 = 2 +3604842 locktype2 = 3 +3604843 locktype3 = 1 +3604843 goalCount = 0 +3604844 goalTotal = 10 +3604844 otherCount = 16 +~~~ +3604845 CURRENTGOAL IS [4] +~~~ +3604903 DOWN 11 +3604903 0 255 +3604925 UP 11 +3604925 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3604942 homeCount = 33 +3604943 waitCount = 16 +3604943 ripCount = 13 +3604944 locktype1 = 2 +3604944 locktype2 = 3 +3604945 locktype3 = 1 +3604945 goalCount = 0 +3604946 goalTotal = 10 +3604946 otherCount = 16 +~~~ +3604947 CURRENTGOAL IS [4] +~~~ +3605028 DOWN 11 +3605028 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3605064 homeCount = 33 +3605064 waitCount = 16 +3605065 ripCount = 13 +3605065 locktype1 = 2 +3605066 locktype2 = 3 +3605066 locktype3 = 1 +3605067 goalCount = 0 +3605067 goalTotal = 10 +3605068 otherCount = 16 +~~~ +3605069 CURRENTGOAL IS [4] +~~~ +3605092 UP 11 +3605092 1024 255 +3608325 DOWN 11 +3608325 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3608364 homeCount = 33 +3608364 waitCount = 16 +3608365 ripCount = 13 +3608365 locktype1 = 2 +3608366 locktype2 = 3 +3608366 locktype3 = 1 +3608367 goalCount = 0 +3608367 goalTotal = 10 +3608368 otherCount = 16 +~~~ +3608369 CURRENTGOAL IS [4] +~~~ +3608378 UP 11 +3608378 1024 255 +3608425 DOWN 11 +3608425 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3608464 homeCount = 33 +3608465 waitCount = 16 +3608465 ripCount = 13 +3608466 locktype1 = 2 +3608466 locktype2 = 3 +3608467 locktype3 = 1 +3608467 goalCount = 0 +3608467 goalTotal = 10 +3608468 otherCount = 16 +~~~ +3608469 CURRENTGOAL IS [4] +~~~ +3616545 UP 10 +3616545 waslock = 0 +3616545 512 255 +~~~ +3616569 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3616577 512 254 +~~~ +~~~ +3616579 512 252 +~~~ +~~~ +3616581 512 248 +~~~ +~~~ +3616582 512 240 +~~~ +~~~ +3616584 512 224 +~~~ +~~~ +3616586 512 192 +~~~ +~~~ +3616588 512 128 +~~~ +~~~ +3616590 512 0 +~~~ +~~~ +~~~ +3617133 0 0 +3617163 512 0 +3617761 0 0 +3617783 512 0 +3617868 0 0 +3618349 512 0 +3618488 0 0 +3620077 512 0 +3620300 0 0 +3623436 UP 12 +3623436 2048 0 +3623470 DOWN 12 +3623470 0 0 +3626087 512 0 +3626274 0 0 +3628560 UP 11 +3628560 1024 0 +3629234 DOWN 11 +3629234 0 0 +3640902 512 0 +3641510 0 0 +3641538 512 0 +3641569 LOCKEND +~~~ +~~~ +~~~ +3641592 512 512 +3641834 DOWN 10 +3641834 0 512 +3642205 UP 10 +3642205 waslock = 0 +3642205 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3642238 512 16777728 +~~~ +3642263 DOWN 10 +3642263 0 16777728 +~~~ +~~~ +3642281 0 16779776 +~~~ +~~~ +3642283 0 16779264 +3642284 homeCount = 34 +3642284 waitCount = 16 +3642285 ripCount = 13 +3642285 locktype1 = 2 +3642286 locktype2 = 4 +3642286 locktype3 = 1 +3642287 goalCount = 0 +3642287 goalTotal = 10 +3642288 otherCount = 16 +~~~ +3642363 UP 10 +3642363 waslock = 0 +3642363 512 16779264 +~~~ +3642386 DOWN 10 +3642386 0 16779264 +3642388 0 2048 +~~~ +~~~ +~~~ +~~~ +3642414 homeCount = 34 +3642415 waitCount = 16 +3642415 ripCount = 13 +3642416 locktype1 = 2 +3642416 locktype2 = 4 +3642416 locktype3 = 1 +3642417 goalCount = 0 +3642417 goalTotal = 10 +3642418 otherCount = 16 +~~~ +3642507 UP 10 +3642507 waslock = 0 +3642506 512 2048 +~~~ +3648667 DOWN 10 +3648667 0 2048 +3648678 UP 10 +3648678 waslock = 0 +3648678 512 2048 +~~~ +~~~ +~~~ +~~~ +3648694 homeCount = 34 +3648695 waitCount = 16 +3648695 ripCount = 13 +3648696 locktype1 = 2 +3648696 locktype2 = 4 +3648697 locktype3 = 1 +3648697 goalCount = 0 +3648698 goalTotal = 10 +3648698 otherCount = 16 +~~~ +~~~ +3648761 DOWN 10 +3648761 0 2048 +~~~ +~~~ +~~~ +~~~ +3648785 homeCount = 34 +3648786 waitCount = 16 +3648786 ripCount = 13 +3648787 locktype1 = 2 +3648787 locktype2 = 4 +3648788 locktype3 = 1 +3648788 goalCount = 0 +3648789 goalTotal = 10 +3648789 otherCount = 16 +~~~ +3648842 UP 10 +3648842 waslock = 0 +3648842 512 2048 +3648864 DOWN 10 +3648864 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3648895 homeCount = 34 +3648895 waitCount = 16 +3648895 ripCount = 13 +3648896 locktype1 = 2 +3648896 locktype2 = 4 +3648897 locktype3 = 1 +3648897 goalCount = 0 +3648898 goalTotal = 10 +3648898 otherCount = 16 +~~~ +3652123 UP 12 +3652123 2048 2048 +3652932 DOWN 12 +3652932 0 2048 +3652964 UP 12 +3652964 2048 2048 +3653181 DOWN 12 +3653181 0 2048 +3653233 UP 12 +3653233 2048 2048 +3654201 DOWN 12 +3654201 0 2048 +3654214 UP 12 +3654214 2048 2048 +3654302 DOWN 12 +3654302 0 2048 +3654322 UP 12 +3654322 2048 2048 +3656123 CLICK1 +3656123 CLICK2 +~~~ +~~~ +~~~ +3656142 2048 67110912 +~~~ +3656292 2048 2048 +3663270 DOWN 12 +3663270 0 2048 +~~~ +~~~ +3663292 0 0 +~~~ +~~~ +3663294 0 1 +~~~ +~~~ +3663295 0 3 +~~~ +~~~ +3663297 0 7 +~~~ +~~~ +3663299 0 15 +~~~ +~~~ +3663301 0 31 +~~~ +~~~ +3663303 0 63 +~~~ +~~~ +3663305 0 127 +~~~ +~~~ +3663306 0 255 +3663307 homeCount = 34 +3663308 waitCount = 17 +3663308 ripCount = 13 +3663309 locktype1 = 2 +3663309 locktype2 = 4 +3663310 locktype3 = 1 +3663331 goalCount = 0 +3663331 goalTotal = 10 +3663332 otherCount = 16 +~~~ +3663333 CURRENTGOAL IS [4] +~~~ +3663342 UP 12 +3663342 2048 255 +3663376 DOWN 12 +3663376 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3663417 homeCount = 34 +3663418 waitCount = 17 +3663418 ripCount = 13 +3663419 locktype1 = 2 +3663419 locktype2 = 4 +3663420 locktype3 = 1 +3663420 goalCount = 0 +3663421 goalTotal = 10 +3663421 otherCount = 16 +~~~ +3663422 CURRENTGOAL IS [4] +~~~ +3667780 UP 8 +3667780 128 255 +~~~ +~~~ +3669059 DOWN 8 +3669059 0 255 +~~~ +~~~ +3669082 0 254 +~~~ +~~~ +3669083 0 252 +~~~ +~~~ +3669085 0 248 +~~~ +~~~ +3669087 0 240 +~~~ +~~~ +3669089 0 224 +~~~ +~~~ +3669091 0 192 +~~~ +~~~ +3669092 0 128 +~~~ +~~~ +3669094 0 0 +~~~ +~~~ +3669096 0 512 +3669097 homeCount = 34 +3669098 waitCount = 17 +3669098 ripCount = 13 +3669099 locktype1 = 2 +3669099 locktype2 = 4 +3669120 locktype3 = 1 +3669120 goalCount = 0 +3669121 goalTotal = 10 +3669121 otherCount = 17 +~~~ +3669122 128 512 +3669779 DOWN 8 +3669778 0 512 +3673367 UP 10 +3673368 waslock = 0 +3673367 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3673398 512 16777728 +~~~ +3673548 512 512 +3674004 DOWN 10 +3674004 0 512 +~~~ +~~~ +3674022 0 2560 +~~~ +~~~ +3674024 0 2048 +3674025 homeCount = 35 +3674026 waitCount = 17 +3674026 ripCount = 13 +3674027 locktype1 = 2 +3674027 locktype2 = 4 +3674028 locktype3 = 1 +3674028 goalCount = 0 +3674029 goalTotal = 10 +3674029 otherCount = 17 +~~~ +3674070 UP 10 +3674071 waslock = 0 +3674070 512 2048 +~~~ +3674098 DOWN 10 +3674098 0 2048 +~~~ +~~~ +~~~ +~~~ +3674117 homeCount = 35 +3674117 waitCount = 17 +3674118 ripCount = 13 +3674118 locktype1 = 2 +3674119 locktype2 = 4 +3674119 locktype3 = 1 +3674120 goalCount = 0 +3674120 goalTotal = 10 +3674121 otherCount = 17 +~~~ +3674174 UP 10 +3674174 waslock = 0 +3674174 512 2048 +~~~ +3674249 DOWN 10 +3674249 0 2048 +~~~ +~~~ +~~~ +~~~ +3674275 homeCount = 35 +3674276 waitCount = 17 +3674276 ripCount = 13 +3674277 locktype1 = 2 +3674277 locktype2 = 4 +3674277 locktype3 = 1 +3674278 goalCount = 0 +3674278 goalTotal = 10 +3674279 otherCount = 17 +~~~ +3674293 UP 10 +3674293 waslock = 0 +3674293 512 2048 +~~~ +3677709 DOWN 10 +3677709 0 2048 +~~~ +~~~ +~~~ +~~~ +3677735 homeCount = 35 +3677736 waitCount = 17 +3677736 ripCount = 13 +3677737 locktype1 = 2 +3677737 locktype2 = 4 +3677738 locktype3 = 1 +3677738 goalCount = 0 +3677738 goalTotal = 10 +3677739 otherCount = 17 +~~~ +3677740 UP 10 +3677740 waslock = 0 +3677740 512 2048 +~~~ +3677816 DOWN 10 +3677816 0 2048 +~~~ +~~~ +~~~ +~~~ +3677847 homeCount = 35 +3677847 waitCount = 17 +3677848 ripCount = 13 +3677848 locktype1 = 2 +3677849 locktype2 = 4 +3677849 locktype3 = 1 +3677850 goalCount = 0 +3677850 goalTotal = 10 +3677851 otherCount = 17 +~~~ +3679816 UP 12 +3679816 2048 2048 +3681588 DOWN 12 +3681588 0 2048 +3681597 UP 12 +3681597 2048 2048 +3684430 DOWN 12 +3684430 0 2048 +3684485 UP 12 +3684485 2048 2048 +3684747 DOWN 12 +3684747 0 2048 +3684948 LOCKOUT 3 +~~~ +3684973 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3684978 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3685030 UP 12 +3685030 2048 0 +3685082 DOWN 12 +3685082 0 0 +3685355 UP 12 +3685355 2048 0 +3692687 DOWN 12 +3692687 0 0 +3692745 UP 12 +3692745 2048 0 +3692881 DOWN 12 +3692881 0 0 +3692939 UP 12 +3692939 2048 0 +3694152 DOWN 12 +3694152 0 0 +3699170 UP 4 +3699170 8 0 +3699650 DOWN 4 +3699650 0 0 +3699701 8 0 +3700017 DOWN 4 +3700017 0 0 +3706263 512 0 +3706530 0 0 +3706569 512 0 +3707502 0 0 +3709664 512 0 +3709973 LOCKEND +~~~ +~~~ +~~~ +3709995 512 512 +3710150 DOWN 10 +3710150 0 512 +3710528 UP 10 +3710528 waslock = 0 +3710528 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3710560 512 16777728 +~~~ +3710592 DOWN 10 +3710592 0 16777728 +~~~ +~~~ +3710613 0 16778752 +~~~ +~~~ +3710615 0 16778240 +3710616 homeCount = 36 +3710616 waitCount = 17 +3710617 ripCount = 13 +3710617 locktype1 = 2 +3710618 locktype2 = 4 +3710618 locktype3 = 2 +3710618 goalCount = 0 +3710619 goalTotal = 10 +3710619 otherCount = 17 +~~~ +3710647 UP 10 +3710647 waslock = 0 +3710647 512 16778240 +~~~ +3710710 512 1024 +3710725 DOWN 10 +3710725 0 1024 +~~~ +~~~ +~~~ +~~~ +3710752 homeCount = 36 +3710752 waitCount = 17 +3710753 ripCount = 13 +3710753 locktype1 = 2 +3710754 locktype2 = 4 +3710754 locktype3 = 2 +3710755 goalCount = 0 +3710755 goalTotal = 10 +3710756 otherCount = 17 +~~~ +3710813 UP 10 +3710813 waslock = 0 +3710813 512 1024 +~~~ +3716169 DOWN 10 +3716169 0 1024 +~~~ +3716193 UP 10 +3716194 waslock = 0 +3716193 512 1024 +~~~ +~~~ +~~~ +3716197 homeCount = 36 +3716197 waitCount = 17 +3716198 ripCount = 13 +3716198 locktype1 = 2 +3716199 locktype2 = 4 +3716199 locktype3 = 2 +3716200 goalCount = 0 +3716200 goalTotal = 10 +3716201 otherCount = 17 +~~~ +~~~ +3716276 DOWN 10 +3716276 0 1024 +~~~ +~~~ +~~~ +~~~ +3716297 homeCount = 36 +3716297 waitCount = 17 +3716298 ripCount = 13 +3716298 locktype1 = 2 +3716299 locktype2 = 4 +3716299 locktype3 = 2 +3716300 goalCount = 0 +3716300 goalTotal = 10 +3716301 otherCount = 17 +~~~ +3717906 UP 11 +3717906 1024 1024 +3723028 DOWN 11 +3723028 0 1024 +3723040 UP 11 +3723040 1024 1024 +3724906 BEEP1 +3724906 BEEP2 +~~~ +~~~ +~~~ +3724926 1024 33555456 +~~~ +3725076 1024 1024 +3731454 DOWN 11 +3731454 0 1024 +~~~ +3731474 UP 11 +3731474 1024 1024 +~~~ +~~~ +3731475 1024 0 +~~~ +3731477 1024 1 +~~~ +~~~ +3731478 1024 3 +~~~ +~~~ +3731480 1024 7 +~~~ +~~~ +3731482 1024 15 +~~~ +~~~ +3731483 1024 31 +~~~ +~~~ +3731485 1024 63 +~~~ +~~~ +3731487 1024 127 +~~~ +~~~ +3731489 1024 255 +3731490 homeCount = 36 +3731490 waitCount = 17 +3731511 ripCount = 14 +3731512 locktype1 = 2 +3731512 locktype2 = 4 +3731513 locktype3 = 2 +3731513 goalCount = 0 +3731514 goalTotal = 10 +3731514 otherCount = 17 +~~~ +3731515 CURRENTGOAL IS [4] +~~~ +3731564 DOWN 11 +3731564 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3731600 homeCount = 36 +3731600 waitCount = 17 +3731601 ripCount = 14 +3731601 locktype1 = 2 +3731602 locktype2 = 4 +3731602 locktype3 = 2 +3731603 goalCount = 0 +3731603 goalTotal = 10 +3731604 otherCount = 17 +~~~ +3731605 CURRENTGOAL IS [4] +~~~ +3731649 UP 11 +3731648 1024 255 +3731667 DOWN 11 +3731667 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3731701 homeCount = 36 +3731702 waitCount = 17 +3731702 ripCount = 14 +3731703 locktype1 = 2 +3731703 locktype2 = 4 +3731704 locktype3 = 2 +3731704 goalCount = 0 +3731705 goalTotal = 10 +3731705 otherCount = 17 +~~~ +3731706 CURRENTGOAL IS [4] +~~~ +3745775 UP 10 +3745776 waslock = 0 +3745775 512 255 +~~~ +3745796 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3745804 512 254 +~~~ +~~~ +3745805 512 252 +~~~ +~~~ +3745807 512 248 +~~~ +~~~ +3745809 512 240 +~~~ +~~~ +3745811 512 224 +~~~ +~~~ +3745813 512 192 +~~~ +~~~ +3745815 512 128 +~~~ +~~~ +3745816 512 0 +~~~ +~~~ +~~~ +3745982 0 0 +3749232 512 0 +3749422 0 0 +3749467 512 0 +3749501 0 0 +3749833 512 0 +3750026 0 0 +3750243 512 0 +3750549 0 0 +3752435 512 0 +3753237 0 0 +3753302 512 0 +3753343 0 0 +3759767 512 0 +3760055 0 0 +3760344 512 0 +3760578 0 0 +3768463 512 0 +3768985 0 0 +3769220 512 0 +3769969 0 0 +3770796 LOCKEND +~~~ +~~~ +~~~ +3770817 0 512 +3771670 UP 10 +3771670 waslock = 0 +3771670 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3771703 512 16777728 +~~~ +3771725 DOWN 10 +3771725 0 16777728 +~~~ +~~~ +3771749 0 16779776 +~~~ +~~~ +3771751 0 16779264 +3771752 homeCount = 37 +3771753 waitCount = 17 +3771753 ripCount = 14 +3771754 locktype1 = 2 +3771754 locktype2 = 5 +3771755 locktype3 = 2 +3771755 goalCount = 0 +3771756 goalTotal = 10 +3771756 otherCount = 17 +~~~ +3771805 UP 10 +3771805 waslock = 0 +3771805 512 16779264 +~~~ +3771853 512 2048 +3776248 DOWN 10 +3776248 0 2048 +3776261 UP 10 +3776261 waslock = 0 +3776261 512 2048 +~~~ +~~~ +~~~ +~~~ +3776269 homeCount = 37 +3776269 waitCount = 17 +3776270 ripCount = 14 +3776270 locktype1 = 2 +3776271 locktype2 = 5 +3776271 locktype3 = 2 +3776272 goalCount = 0 +3776272 goalTotal = 10 +3776272 otherCount = 17 +~~~ +~~~ +3777488 DOWN 10 +3777488 0 2048 +~~~ +~~~ +~~~ +~~~ +3777511 homeCount = 37 +3777511 waitCount = 17 +3777512 ripCount = 14 +3777512 locktype1 = 2 +3777513 locktype2 = 5 +3777513 locktype3 = 2 +3777514 goalCount = 0 +3777514 goalTotal = 10 +3777515 otherCount = 17 +~~~ +3778917 UP 12 +3778916 2048 2048 +3780637 DOWN 12 +3780637 0 2048 +3780645 UP 12 +3780645 2048 2048 +3781520 DOWN 12 +3781520 0 2048 +3781545 UP 12 +3781544 2048 2048 +3781571 DOWN 12 +3781571 0 2048 +3781623 UP 12 +3781623 2048 2048 +3781643 DOWN 12 +3781643 0 2048 +3781678 UP 12 +3781678 2048 2048 +3784417 CLICK1 +3784417 CLICK2 +~~~ +~~~ +~~~ +3784438 2048 67110912 +~~~ +3784588 2048 2048 +3789657 DOWN 12 +3789657 0 2048 +~~~ +~~~ +3789677 0 0 +~~~ +~~~ +3789678 0 1 +~~~ +~~~ +3789680 0 3 +~~~ +~~~ +3789682 0 7 +~~~ +~~~ +3789684 0 15 +~~~ +~~~ +3789686 0 31 +~~~ +~~~ +3789688 0 63 +~~~ +~~~ +3789689 0 127 +~~~ +~~~ +3789691 0 255 +3789692 homeCount = 37 +3789693 waitCount = 18 +3789693 ripCount = 14 +3789694 locktype1 = 2 +3789694 locktype2 = 5 +3789715 locktype3 = 2 +3789716 goalCount = 0 +3789716 goalTotal = 10 +3789717 otherCount = 17 +~~~ +3789718 CURRENTGOAL IS [4] +~~~ +3789718 UP 12 +3789718 2048 255 +3789772 DOWN 12 +3789772 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3789807 homeCount = 37 +3789808 waitCount = 18 +3789808 ripCount = 14 +3789809 locktype1 = 2 +3789809 locktype2 = 5 +3789810 locktype3 = 2 +3789810 goalCount = 0 +3789811 goalTotal = 10 +3789811 otherCount = 17 +~~~ +3789812 CURRENTGOAL IS [4] +~~~ +3794235 UP 5 +3794235 16 255 +~~~ +~~~ +3795367 DOWN 5 +3795367 0 255 +~~~ +~~~ +3795392 0 254 +~~~ +~~~ +3795394 0 252 +~~~ +~~~ +3795396 0 248 +~~~ +~~~ +3795398 0 240 +~~~ +~~~ +3795399 0 224 +~~~ +~~~ +3795401 0 192 +~~~ +~~~ +3795403 0 128 +~~~ +~~~ +3795405 0 0 +~~~ +~~~ +3795407 0 512 +3795408 homeCount = 37 +3795408 waitCount = 18 +3795409 ripCount = 14 +3795409 locktype1 = 2 +3795410 locktype2 = 5 +3795431 locktype3 = 2 +3795431 goalCount = 0 +3795432 goalTotal = 10 +3795432 otherCount = 18 +~~~ +3795433 16 512 +3795632 DOWN 5 +3795632 0 512 +3795657 16 512 +3795681 DOWN 5 +3795681 0 512 +3799735 UP 10 +3799735 waslock = 0 +3799735 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3799766 512 16777728 +~~~ +3799916 512 512 +3800136 DOWN 10 +3800136 0 512 +~~~ +~~~ +3800161 0 2560 +~~~ +~~~ +3800163 0 2048 +3800164 homeCount = 38 +3800165 waitCount = 18 +3800165 ripCount = 14 +3800166 locktype1 = 2 +3800166 locktype2 = 5 +3800167 locktype3 = 2 +3800167 goalCount = 0 +3800168 goalTotal = 10 +3800168 otherCount = 18 +~~~ +3800211 UP 10 +3800211 waslock = 0 +3800211 512 2048 +3800219 DOWN 10 +3800219 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3800237 homeCount = 38 +3800238 waitCount = 18 +3800238 ripCount = 14 +3800239 locktype1 = 2 +3800239 locktype2 = 5 +3800239 locktype3 = 2 +3800240 goalCount = 0 +3800240 goalTotal = 10 +3800241 otherCount = 18 +~~~ +3800339 UP 10 +3800340 waslock = 0 +3800339 512 2048 +~~~ +3800385 DOWN 10 +3800385 0 2048 +3800396 UP 10 +3800396 waslock = 0 +3800396 512 2048 +~~~ +~~~ +~~~ +~~~ +3800409 homeCount = 38 +3800410 waitCount = 18 +3800410 ripCount = 14 +3800411 locktype1 = 2 +3800411 locktype2 = 5 +3800412 locktype3 = 2 +3800412 goalCount = 0 +3800413 goalTotal = 10 +3800413 otherCount = 18 +~~~ +3800414 DOWN 10 +3800414 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3800451 homeCount = 38 +3800452 waitCount = 18 +3800452 ripCount = 14 +3800453 locktype1 = 2 +3800453 locktype2 = 5 +3800453 locktype3 = 2 +3800454 goalCount = 0 +3800454 goalTotal = 10 +3800455 otherCount = 18 +~~~ +3800468 UP 10 +3800468 waslock = 0 +3800467 512 2048 +~~~ +3803996 DOWN 10 +3803996 0 2048 +~~~ +~~~ +~~~ +~~~ +3804015 homeCount = 38 +3804016 waitCount = 18 +3804016 ripCount = 14 +3804017 locktype1 = 2 +3804017 locktype2 = 5 +3804018 locktype3 = 2 +3804018 goalCount = 0 +3804019 goalTotal = 10 +3804019 otherCount = 18 +~~~ +3804022 UP 10 +3804022 waslock = 0 +3804022 512 2048 +~~~ +3804098 DOWN 10 +3804098 0 2048 +~~~ +~~~ +~~~ +~~~ +3804127 homeCount = 38 +3804128 waitCount = 18 +3804128 ripCount = 14 +3804129 locktype1 = 2 +3804129 locktype2 = 5 +3804129 locktype3 = 2 +3804130 goalCount = 0 +3804130 goalTotal = 10 +3804131 otherCount = 18 +~~~ +3805817 UP 12 +3805817 2048 2048 +3807265 DOWN 12 +3807265 0 2048 +3807349 UP 12 +3807349 2048 2048 +3807359 DOWN 12 +3807359 0 2048 +3807468 UP 12 +3807468 2048 2048 +3807502 DOWN 12 +3807502 0 2048 +3807537 UP 12 +3807537 2048 2048 +3811317 CLICK1 +3811317 CLICK2 +~~~ +~~~ +~~~ +3811334 2048 67110912 +~~~ +3811484 2048 2048 +3817632 DOWN 12 +3817632 0 2048 +~~~ +~~~ +3817654 0 0 +~~~ +~~~ +3817656 0 1 +~~~ +~~~ +3817658 0 3 +~~~ +~~~ +3817660 0 7 +~~~ +~~~ +3817662 0 15 +~~~ +~~~ +3817664 0 31 +~~~ +~~~ +3817665 0 63 +~~~ +~~~ +3817667 0 127 +~~~ +~~~ +3817669 0 255 +3817670 homeCount = 38 +3817671 waitCount = 19 +3817671 ripCount = 14 +3817672 locktype1 = 2 +3817672 locktype2 = 5 +3817673 locktype3 = 2 +3817694 goalCount = 0 +3817694 goalTotal = 10 +3817695 otherCount = 18 +~~~ +3817696 CURRENTGOAL IS [4] +~~~ +3817696 UP 12 +3817696 2048 255 +3817723 DOWN 12 +3817723 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3817760 homeCount = 38 +3817760 waitCount = 19 +3817761 ripCount = 14 +3817761 locktype1 = 2 +3817762 locktype2 = 5 +3817762 locktype3 = 2 +3817763 goalCount = 0 +3817763 goalTotal = 10 +3817764 otherCount = 18 +~~~ +3817765 CURRENTGOAL IS [4] +~~~ +3821477 UP 1 +3821477 1 255 +~~~ +~~~ +3822494 DOWN 1 +3822494 0 255 +~~~ +~~~ +3822514 0 254 +~~~ +~~~ +3822516 0 252 +~~~ +~~~ +3822517 0 248 +~~~ +~~~ +3822519 0 240 +~~~ +~~~ +3822521 0 224 +~~~ +~~~ +3822523 0 192 +~~~ +~~~ +3822525 0 128 +~~~ +~~~ +3822526 0 0 +~~~ +~~~ +3822528 0 512 +3822529 homeCount = 38 +3822530 waitCount = 19 +3822530 ripCount = 14 +3822531 locktype1 = 2 +3822531 locktype2 = 5 +3822552 locktype3 = 2 +3822553 goalCount = 0 +3822553 goalTotal = 10 +3822554 otherCount = 19 +~~~ +3826161 UP 10 +3826161 waslock = 0 +3826161 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3826190 512 16777728 +~~~ +3826340 512 512 +3826395 DOWN 10 +3826395 0 512 +3826408 UP 10 +3826408 waslock = 0 +3826408 512 512 +~~~ +~~~ +3826416 512 1536 +~~~ +~~~ +3826418 512 1024 +3826419 homeCount = 39 +3826420 waitCount = 19 +3826420 ripCount = 14 +3826420 locktype1 = 2 +3826421 locktype2 = 5 +3826421 locktype3 = 2 +3826422 goalCount = 0 +3826422 goalTotal = 10 +3826423 otherCount = 19 +~~~ +~~~ +3829789 DOWN 10 +3829789 0 1024 +~~~ +~~~ +~~~ +~~~ +3829819 homeCount = 39 +3829820 waitCount = 19 +3829820 ripCount = 14 +3829821 locktype1 = 2 +3829821 locktype2 = 5 +3829822 locktype3 = 2 +3829822 goalCount = 0 +3829823 goalTotal = 10 +3829823 otherCount = 19 +~~~ +3829857 UP 10 +3829857 waslock = 0 +3829857 512 1024 +~~~ +3829908 DOWN 10 +3829908 0 1024 +~~~ +~~~ +~~~ +~~~ +3829939 homeCount = 39 +3829939 waitCount = 19 +3829940 ripCount = 14 +3829940 locktype1 = 2 +3829941 locktype2 = 5 +3829941 locktype3 = 2 +3829942 goalCount = 0 +3829942 goalTotal = 10 +3829943 otherCount = 19 +~~~ +3831810 UP 11 +3831810 1024 1024 +3834588 DOWN 11 +3834588 0 1024 +3834611 UP 11 +3834611 1024 1024 +3834810 BEEP1 +3834810 BEEP2 +~~~ +~~~ +~~~ +3834838 1024 33555456 +~~~ +3834988 1024 1024 +3843339 DOWN 11 +3843339 0 1024 +~~~ +~~~ +3843368 0 0 +~~~ +~~~ +3843370 0 1 +~~~ +~~~ +3843372 0 3 +~~~ +~~~ +3843373 0 7 +~~~ +~~~ +3843375 0 15 +~~~ +~~~ +3843377 0 31 +~~~ +~~~ +3843379 0 63 +~~~ +~~~ +3843381 0 127 +~~~ +~~~ +3843382 0 255 +3843383 homeCount = 39 +3843384 waitCount = 19 +3843384 ripCount = 15 +3843385 locktype1 = 2 +3843385 locktype2 = 5 +3843407 locktype3 = 2 +3843407 goalCount = 0 +3843408 goalTotal = 10 +3843408 otherCount = 19 +~~~ +3843409 CURRENTGOAL IS [4] +~~~ +3850007 UP 6 +3850007 32 255 +~~~ +~~~ +3850438 DOWN 6 +3850438 0 255 +~~~ +~~~ +3850460 0 254 +~~~ +~~~ +3850461 0 252 +~~~ +~~~ +3850463 0 248 +~~~ +~~~ +3850465 0 240 +~~~ +~~~ +3850467 0 224 +~~~ +~~~ +3850469 0 192 +~~~ +~~~ +3850471 0 128 +~~~ +~~~ +3850472 0 0 +~~~ +~~~ +3850474 0 512 +3850475 homeCount = 39 +3850476 waitCount = 19 +3850476 ripCount = 15 +3850477 locktype1 = 2 +3850477 locktype2 = 5 +3850498 locktype3 = 2 +3850499 goalCount = 0 +3850499 goalTotal = 10 +3850500 otherCount = 20 +~~~ +3854285 UP 10 +3854285 waslock = 0 +3854285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3854318 512 16777728 +~~~ +3854327 DOWN 10 +3854327 0 16777728 +~~~ +~~~ +3854355 0 16778752 +~~~ +~~~ +3854357 0 16778240 +3854358 homeCount = 40 +3854359 waitCount = 19 +3854359 ripCount = 15 +3854359 locktype1 = 2 +3854360 locktype2 = 5 +3854360 locktype3 = 2 +3854361 goalCount = 0 +3854361 goalTotal = 10 +3854362 otherCount = 20 +~~~ +3854428 UP 10 +3854428 waslock = 0 +3854428 512 16778240 +~~~ +3854468 512 1024 +3854575 DOWN 10 +3854575 0 1024 +3854594 UP 10 +3854594 waslock = 0 +3854594 512 1024 +~~~ +~~~ +~~~ +~~~ +3854615 homeCount = 40 +3854616 waitCount = 19 +3854616 ripCount = 15 +3854617 locktype1 = 2 +3854617 locktype2 = 5 +3854617 locktype3 = 2 +3854618 goalCount = 0 +3854618 goalTotal = 10 +3854619 otherCount = 20 +~~~ +~~~ +3858624 DOWN 10 +3858624 0 1024 +3858631 UP 10 +3858632 waslock = 0 +3858631 512 1024 +~~~ +~~~ +~~~ +~~~ +3858656 homeCount = 40 +3858657 waitCount = 19 +3858657 ripCount = 15 +3858658 locktype1 = 2 +3858658 locktype2 = 5 +3858659 locktype3 = 2 +3858659 goalCount = 0 +3858660 goalTotal = 10 +3858660 otherCount = 20 +~~~ +~~~ +3858741 DOWN 10 +3858741 0 1024 +~~~ +~~~ +~~~ +~~~ +3858764 homeCount = 40 +3858764 waitCount = 19 +3858765 ripCount = 15 +3858765 locktype1 = 2 +3858765 locktype2 = 5 +3858766 locktype3 = 2 +3858766 goalCount = 0 +3858767 goalTotal = 10 +3858767 otherCount = 20 +~~~ +3858768 UP 10 +3858768 waslock = 0 +3858768 512 1024 +~~~ +3858851 DOWN 10 +3858851 0 1024 +~~~ +~~~ +~~~ +~~~ +3858874 homeCount = 40 +3858874 waitCount = 19 +3858875 ripCount = 15 +3858875 locktype1 = 2 +3858876 locktype2 = 5 +3858876 locktype3 = 2 +3858877 goalCount = 0 +3858877 goalTotal = 10 +3858878 otherCount = 20 +~~~ +3861332 UP 11 +3861332 1024 1024 +3864187 DOWN 11 +3864187 0 1024 +3864226 UP 11 +3864226 1024 1024 +3864504 DOWN 11 +3864504 0 1024 +3864515 UP 11 +3864515 1024 1024 +3869332 BEEP1 +3869332 BEEP2 +~~~ +~~~ +~~~ +3869353 1024 33555456 +~~~ +3869503 1024 1024 +3877388 DOWN 11 +3877388 0 1024 +~~~ +~~~ +3877411 0 0 +~~~ +~~~ +3877413 0 1 +~~~ +~~~ +3877415 0 3 +~~~ +~~~ +3877416 0 7 +~~~ +~~~ +3877418 0 15 +~~~ +~~~ +3877420 0 31 +~~~ +~~~ +3877422 0 63 +~~~ +~~~ +3877424 0 127 +~~~ +~~~ +3877425 0 255 +3877426 homeCount = 40 +3877427 waitCount = 19 +3877427 ripCount = 16 +3877428 locktype1 = 2 +3877428 locktype2 = 5 +3877429 locktype3 = 2 +3877450 goalCount = 0 +3877450 goalTotal = 10 +3877451 otherCount = 20 +~~~ +3877452 CURRENTGOAL IS [4] +~~~ +3877452 UP 11 +3877452 1024 255 +3877495 DOWN 11 +3877495 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3877536 homeCount = 40 +3877537 waitCount = 19 +3877537 ripCount = 16 +3877538 locktype1 = 2 +3877538 locktype2 = 5 +3877539 locktype3 = 2 +3877539 goalCount = 0 +3877540 goalTotal = 10 +3877540 otherCount = 20 +~~~ +3877541 CURRENTGOAL IS [4] +~~~ +3888649 UP 10 +3888649 waslock = 0 +3888649 512 255 +~~~ +3888671 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3888679 512 254 +~~~ +~~~ +3888681 512 252 +~~~ +~~~ +3888683 512 248 +~~~ +~~~ +3888684 512 240 +~~~ +~~~ +3888686 512 224 +~~~ +~~~ +3888688 512 192 +~~~ +~~~ +3888690 512 128 +~~~ +~~~ +3888692 512 0 +~~~ +~~~ +~~~ +3888764 0 0 +3888945 512 0 +3889129 0 0 +3892595 UP 11 +3892595 1024 0 +3892720 DOWN 11 +3892720 0 0 +3896362 512 0 +3896505 0 0 +3896586 512 0 +3896737 0 0 +3896765 512 0 +3897158 0 0 +3897194 512 0 +3897289 0 0 +3897321 512 0 +3897709 0 0 +3899622 512 0 +3900148 0 0 +3906959 512 0 +3908083 0 0 +3908132 512 0 +3908168 0 0 +3913671 LOCKEND +~~~ +~~~ +~~~ +3913693 0 512 +3919562 UP 10 +3919562 waslock = 0 +3919562 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3919587 512 16777728 +~~~ +3919709 DOWN 10 +3919709 0 16777728 +3919737 0 512 +~~~ +~~~ +3919739 0 1536 +~~~ +~~~ +3919740 0 1024 +3919741 homeCount = 41 +3919742 waitCount = 19 +3919742 ripCount = 16 +3919743 locktype1 = 2 +3919743 locktype2 = 6 +3919744 locktype3 = 2 +3919744 goalCount = 0 +3919745 goalTotal = 10 +3919745 otherCount = 20 +~~~ +3919773 UP 10 +3919773 waslock = 0 +3919773 512 1024 +3919795 DOWN 10 +3919795 0 1024 +~~~ +3919811 UP 10 +3919811 waslock = 0 +3919811 512 1024 +~~~ +~~~ +~~~ +~~~ +3919830 homeCount = 41 +3919830 waitCount = 19 +3919831 ripCount = 16 +3919831 locktype1 = 2 +3919832 locktype2 = 6 +3919832 locktype3 = 2 +3919833 goalCount = 0 +3919833 goalTotal = 10 +3919834 otherCount = 20 +~~~ +~~~ +3924979 DOWN 10 +3924979 0 1024 +~~~ +~~~ +~~~ +~~~ +3925005 homeCount = 41 +3925006 waitCount = 19 +3925006 ripCount = 16 +3925007 locktype1 = 2 +3925007 locktype2 = 6 +3925008 locktype3 = 2 +3925008 goalCount = 0 +3925008 goalTotal = 10 +3925009 otherCount = 20 +~~~ +3926610 UP 11 +3926610 1024 1024 +3926694 DOWN 11 +3926694 0 1024 +3926742 UP 11 +3926742 1024 1024 +3930573 DOWN 11 +3930573 0 1024 +3930600 UP 11 +3930600 1024 1024 +3930610 BEEP1 +3930610 BEEP2 +~~~ +~~~ +~~~ +3930628 1024 33555456 +~~~ +3930778 1024 1024 +3937964 DOWN 11 +3937964 0 1024 +3937975 UP 11 +3937975 1024 1024 +~~~ +~~~ +3937994 1024 0 +~~~ +~~~ +3937996 1024 1 +~~~ +~~~ +3937997 1024 3 +~~~ +~~~ +3937999 1024 7 +~~~ +~~~ +3938001 1024 15 +~~~ +~~~ +3938003 1024 31 +~~~ +~~~ +3938005 1024 63 +~~~ +~~~ +3938006 1024 127 +~~~ +~~~ +3938008 1024 255 +3938009 homeCount = 41 +3938010 waitCount = 19 +3938010 ripCount = 17 +3938011 locktype1 = 2 +3938031 locktype2 = 6 +3938032 locktype3 = 2 +3938032 goalCount = 0 +3938033 goalTotal = 10 +3938033 otherCount = 20 +~~~ +3938034 CURRENTGOAL IS [4] +~~~ +3938094 DOWN 11 +3938094 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3938130 homeCount = 41 +3938131 waitCount = 19 +3938131 ripCount = 17 +3938132 locktype1 = 2 +3938132 locktype2 = 6 +3938133 locktype3 = 2 +3938133 goalCount = 0 +3938134 goalTotal = 10 +3938134 otherCount = 20 +~~~ +3938135 CURRENTGOAL IS [4] +~~~ +3944182 UP 7 +3944182 64 255 +~~~ +~~~ +3945239 DOWN 7 +3945239 0 255 +~~~ +~~~ +3945265 0 254 +~~~ +~~~ +3945267 0 252 +~~~ +~~~ +3945269 0 248 +~~~ +~~~ +3945271 0 240 +~~~ +~~~ +3945272 0 224 +~~~ +~~~ +3945274 0 192 +~~~ +~~~ +3945276 0 128 +~~~ +~~~ +3945278 0 0 +~~~ +~~~ +3945280 0 512 +3945281 homeCount = 41 +3945281 waitCount = 19 +3945282 ripCount = 17 +3945282 locktype1 = 2 +3945283 locktype2 = 6 +3945304 locktype3 = 2 +3945304 goalCount = 0 +3945305 goalTotal = 10 +3945305 otherCount = 21 +~~~ +3945639 64 512 +3945686 DOWN 7 +3945686 0 512 +3950837 UP 10 +3950838 waslock = 0 +3950837 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3950872 512 16777728 +~~~ +3951022 512 512 +3955553 DOWN 10 +3955553 0 512 +~~~ +~~~ +3955574 0 2560 +~~~ +~~~ +3955576 0 2048 +3955577 homeCount = 42 +3955578 waitCount = 19 +3955578 ripCount = 17 +3955579 locktype1 = 2 +3955579 locktype2 = 6 +3955580 locktype3 = 2 +3955580 goalCount = 0 +3955581 goalTotal = 10 +3955581 otherCount = 21 +~~~ +3955584 UP 10 +3955584 waslock = 0 +3955584 512 2048 +~~~ +3955653 DOWN 10 +3955653 0 2048 +~~~ +~~~ +~~~ +~~~ +3955679 homeCount = 42 +3955679 waitCount = 19 +3955680 ripCount = 17 +3955680 locktype1 = 2 +3955681 locktype2 = 6 +3955681 locktype3 = 2 +3955682 goalCount = 0 +3955682 goalTotal = 10 +3955683 otherCount = 21 +~~~ +3957642 UP 12 +3957642 2048 2048 +3960221 DOWN 12 +3960221 0 2048 +3960243 UP 12 +3960243 2048 2048 +3960399 DOWN 12 +3960399 0 2048 +3960427 UP 12 +3960427 2048 2048 +3960642 CLICK1 +3960642 CLICK2 +~~~ +~~~ +~~~ +3960669 2048 67110912 +~~~ +3960819 2048 2048 +3965466 DOWN 12 +3965465 0 2048 +~~~ +~~~ +3965487 0 0 +~~~ +~~~ +3965489 0 1 +~~~ +~~~ +3965491 0 3 +~~~ +~~~ +3965492 0 7 +~~~ +~~~ +3965494 0 15 +~~~ +~~~ +3965496 0 31 +~~~ +~~~ +3965498 0 63 +~~~ +~~~ +3965500 0 127 +~~~ +~~~ +3965502 0 255 +3965503 homeCount = 42 +3965503 waitCount = 20 +3965504 ripCount = 17 +3965504 locktype1 = 2 +3965505 locktype2 = 6 +3965505 locktype3 = 2 +3965526 goalCount = 0 +3965526 goalTotal = 10 +3965527 otherCount = 21 +~~~ +3965528 CURRENTGOAL IS [4] +~~~ +3965532 UP 12 +3965532 2048 255 +3965567 DOWN 12 +3965567 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3965604 homeCount = 42 +3965604 waitCount = 20 +3965605 ripCount = 17 +3965605 locktype1 = 2 +3965606 locktype2 = 6 +3965606 locktype3 = 2 +3965607 goalCount = 0 +3965607 goalTotal = 10 +3965608 otherCount = 21 +~~~ +3965609 CURRENTGOAL IS [4] +~~~ +3978210 UP 1 +3978210 1 255 +~~~ +~~~ +3979269 DOWN 1 +3979269 0 255 +~~~ +~~~ +3979288 0 254 +~~~ +~~~ +3979290 0 252 +~~~ +~~~ +3979292 0 248 +~~~ +~~~ +3979294 0 240 +~~~ +~~~ +3979295 0 224 +~~~ +~~~ +3979297 0 192 +~~~ +~~~ +3979299 0 128 +~~~ +~~~ +3979301 0 0 +~~~ +~~~ +3979303 0 512 +3979304 homeCount = 42 +3979304 waitCount = 20 +3979305 ripCount = 17 +3979305 locktype1 = 2 +3979306 locktype2 = 6 +3979326 locktype3 = 2 +3979327 goalCount = 0 +3979327 goalTotal = 10 +3979328 otherCount = 22 +~~~ +3982606 UP 10 +3982607 waslock = 0 +3982606 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3982633 512 16777728 +~~~ +3982783 512 512 +3982795 DOWN 10 +3982795 0 512 +~~~ +~~~ +3982807 0 1536 +~~~ +~~~ +3982809 0 1024 +3982810 homeCount = 43 +3982811 waitCount = 20 +3982811 ripCount = 17 +3982812 locktype1 = 2 +3982812 locktype2 = 6 +3982813 locktype3 = 2 +3982813 goalCount = 0 +3982814 goalTotal = 10 +3982814 otherCount = 22 +~~~ +3982834 UP 10 +3982834 waslock = 0 +3982834 512 1024 +~~~ +3987599 DOWN 10 +3987599 0 1024 +3987616 UP 10 +3987617 waslock = 0 +3987616 512 1024 +~~~ +~~~ +~~~ +~~~ +3987621 homeCount = 43 +3987622 waitCount = 20 +3987622 ripCount = 17 +3987623 locktype1 = 2 +3987623 locktype2 = 6 +3987624 locktype3 = 2 +3987624 goalCount = 0 +3987625 goalTotal = 10 +3987625 otherCount = 22 +~~~ +~~~ +3987720 DOWN 10 +3987720 0 1024 +~~~ +~~~ +~~~ +~~~ +3987742 homeCount = 43 +3987742 waitCount = 20 +3987743 ripCount = 17 +3987743 locktype1 = 2 +3987744 locktype2 = 6 +3987744 locktype3 = 2 +3987745 goalCount = 0 +3987745 goalTotal = 10 +3987746 otherCount = 22 +~~~ +3987749 UP 10 +3987749 waslock = 0 +3987749 512 1024 +~~~ +3987825 DOWN 10 +3987825 0 1024 +~~~ +~~~ +~~~ +~~~ +3987859 homeCount = 43 +3987860 waitCount = 20 +3987860 ripCount = 17 +3987861 locktype1 = 2 +3987861 locktype2 = 6 +3987862 locktype3 = 2 +3987862 goalCount = 0 +3987862 goalTotal = 10 +3987863 otherCount = 22 +~~~ +3989547 UP 11 +3989547 1024 1024 +3995048 BEEP1 +3995048 BEEP2 +~~~ +~~~ +~~~ +3995074 1024 33555456 +~~~ +3995224 1024 1024 +4000147 DOWN 11 +4000147 0 1024 +~~~ +~~~ +4000174 0 0 +~~~ +~~~ +4000176 UP 11 +4000176 1024 1 +~~~ +~~~ +4000178 1024 3 +~~~ +~~~ +4000180 1024 7 +~~~ +~~~ +4000181 1024 15 +~~~ +~~~ +4000183 1024 31 +~~~ +~~~ +4000185 1024 63 +~~~ +~~~ +4000187 1024 127 +~~~ +~~~ +4000189 1024 255 +4000190 homeCount = 43 +4000190 waitCount = 20 +4000191 ripCount = 18 +4000212 locktype1 = 2 +4000212 locktype2 = 6 +4000213 locktype3 = 2 +4000213 goalCount = 0 +4000214 goalTotal = 10 +4000214 otherCount = 22 +~~~ +4000215 CURRENTGOAL IS [4] +~~~ +4002715 DOWN 11 +4002715 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4002752 homeCount = 43 +4002752 waitCount = 20 +4002753 ripCount = 18 +4002753 locktype1 = 2 +4002754 locktype2 = 6 +4002754 locktype3 = 2 +4002755 goalCount = 0 +4002755 goalTotal = 10 +4002756 otherCount = 22 +~~~ +4002757 CURRENTGOAL IS [4] +~~~ +4002789 UP 11 +4002789 1024 255 +4002814 DOWN 11 +4002814 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4002852 homeCount = 43 +4002853 waitCount = 20 +4002853 ripCount = 18 +4002854 locktype1 = 2 +4002854 locktype2 = 6 +4002855 locktype3 = 2 +4002855 goalCount = 0 +4002855 goalTotal = 10 +4002856 otherCount = 22 +~~~ +4002857 CURRENTGOAL IS [4] +~~~ +4017754 UP 4 +4017754 8 255 +~~~ +~~~ +4017778 outer reward +~~~ +4017778 8 524543 +~~~ +~~~ +4018228 8 255 +4026115 DOWN 4 +4026115 0 255 +4026124 8 255 +~~~ +~~~ +4026135 8 254 +~~~ +~~~ +4026137 8 252 +~~~ +~~~ +4026139 8 248 +~~~ +~~~ +4026141 8 240 +~~~ +~~~ +4026143 8 224 +~~~ +~~~ +4026145 8 192 +~~~ +~~~ +4026146 8 128 +~~~ +~~~ +4026148 8 0 +~~~ +~~~ +4026150 8 512 +4026151 homeCount = 43 +4026152 waitCount = 20 +4026152 ripCount = 18 +4026153 locktype1 = 2 +4026153 locktype2 = 6 +4026174 locktype3 = 2 +4026175 goalCount = 1 +4026175 goalTotal = 11 +4026176 otherCount = 22 +~~~ +4026210 DOWN 4 +4026210 0 512 +4031912 UP 10 +4031913 waslock = 0 +4031912 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4031942 512 16777728 +~~~ +4032092 512 512 +4034692 DOWN 10 +4034692 0 512 +4034708 UP 10 +4034708 waslock = 0 +4034708 512 512 +~~~ +~~~ +4034727 512 1536 +~~~ +~~~ +4034729 512 1024 +4034730 homeCount = 44 +4034730 waitCount = 20 +4034731 ripCount = 18 +4034731 locktype1 = 2 +4034732 locktype2 = 6 +4034732 locktype3 = 2 +4034733 goalCount = 1 +4034733 goalTotal = 11 +4034734 otherCount = 22 +~~~ +~~~ +4034802 DOWN 10 +4034802 0 1024 +~~~ +~~~ +~~~ +~~~ +4034829 homeCount = 44 +4034829 waitCount = 20 +4034830 ripCount = 18 +4034830 locktype1 = 2 +4034831 locktype2 = 6 +4034831 locktype3 = 2 +4034832 goalCount = 1 +4034832 goalTotal = 11 +4034833 otherCount = 22 +~~~ +4034845 UP 10 +4034845 waslock = 0 +4034845 512 1024 +~~~ +4034916 DOWN 10 +4034916 0 1024 +~~~ +~~~ +~~~ +~~~ +4034938 homeCount = 44 +4034939 waitCount = 20 +4034939 ripCount = 18 +4034940 locktype1 = 2 +4034940 locktype2 = 6 +4034941 locktype3 = 2 +4034941 goalCount = 1 +4034942 goalTotal = 11 +4034942 otherCount = 22 +~~~ +4034974 UP 10 +4034974 waslock = 0 +4034974 512 1024 +~~~ +4036788 DOWN 10 +4036788 0 1024 +4036798 UP 10 +4036798 waslock = 0 +4036798 512 1024 +~~~ +~~~ +~~~ +~~~ +4036820 homeCount = 44 +4036821 waitCount = 20 +4036821 ripCount = 18 +4036822 locktype1 = 2 +4036822 locktype2 = 6 +4036823 locktype3 = 2 +4036823 goalCount = 1 +4036824 goalTotal = 11 +4036824 otherCount = 22 +~~~ +~~~ +4036891 DOWN 10 +4036891 0 1024 +~~~ +~~~ +~~~ +~~~ +4036918 homeCount = 44 +4036919 waitCount = 20 +4036919 ripCount = 18 +4036920 locktype1 = 2 +4036920 locktype2 = 6 +4036921 locktype3 = 2 +4036921 goalCount = 1 +4036922 goalTotal = 11 +4036922 otherCount = 22 +~~~ +4039257 UP 11 +4039257 1024 1024 +4040494 DOWN 11 +4040494 0 1024 +4040534 UP 11 +4040534 1024 1024 +4041183 DOWN 11 +4041183 0 1024 +4041188 UP 11 +4041188 1024 1024 +4046257 BEEP1 +4046257 BEEP2 +~~~ +~~~ +~~~ +4046278 1024 33555456 +~~~ +4046428 1024 1024 +4052299 DOWN 11 +4052299 0 1024 +~~~ +~~~ +4052326 0 0 +~~~ +~~~ +4052328 0 1 +~~~ +~~~ +4052330 0 3 +~~~ +~~~ +4052331 0 7 +~~~ +~~~ +4052333 0 15 +~~~ +~~~ +4052335 0 31 +~~~ +~~~ +4052337 0 63 +~~~ +~~~ +4052339 0 127 +~~~ +~~~ +4052340 0 255 +4052341 homeCount = 44 +4052342 waitCount = 20 +4052342 ripCount = 19 +4052343 locktype1 = 2 +4052343 locktype2 = 6 +4052344 locktype3 = 2 +4052365 goalCount = 1 +4052365 goalTotal = 11 +4052366 otherCount = 22 +~~~ +4052367 CURRENTGOAL IS [4] +~~~ +4052367 UP 11 +4052367 1024 255 +4052392 DOWN 11 +4052392 0 255 +4052405 UP 11 +4052405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4052432 homeCount = 44 +4052432 waitCount = 20 +4052433 ripCount = 19 +4052433 locktype1 = 2 +4052434 locktype2 = 6 +4052434 locktype3 = 2 +4052435 goalCount = 1 +4052435 goalTotal = 11 +4052436 otherCount = 22 +~~~ +4052437 CURRENTGOAL IS [4] +~~~ +4055242 DOWN 11 +4055242 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4055281 homeCount = 44 +4055281 waitCount = 20 +4055282 ripCount = 19 +4055282 locktype1 = 2 +4055283 locktype2 = 6 +4055283 locktype3 = 2 +4055284 goalCount = 1 +4055284 goalTotal = 11 +4055285 otherCount = 22 +~~~ +4055286 CURRENTGOAL IS [4] +~~~ +4059122 UP 8 +4059122 128 255 +~~~ +~~~ +4059571 DOWN 8 +4059571 0 255 +~~~ +~~~ +4059595 0 254 +~~~ +~~~ +4059597 0 252 +~~~ +~~~ +4059599 0 248 +~~~ +~~~ +4059601 0 240 +~~~ +~~~ +4059603 0 224 +~~~ +~~~ +4059604 0 192 +~~~ +~~~ +4059606 0 128 +~~~ +~~~ +4059608 0 0 +~~~ +~~~ +4059610 0 512 +4059611 homeCount = 44 +4059611 waitCount = 20 +4059612 ripCount = 19 +4059612 locktype1 = 2 +4059613 locktype2 = 6 +4059634 locktype3 = 2 +4059635 goalCount = 1 +4059635 goalTotal = 11 +4059635 otherCount = 23 +~~~ +4059721 128 512 +4059773 DOWN 8 +4059773 0 512 +4067416 UP 10 +4067416 waslock = 0 +4067416 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4067444 512 16777728 +~~~ +4067594 512 512 +4068209 DOWN 10 +4068209 0 512 +4068223 UP 10 +4068223 waslock = 0 +4068223 512 512 +~~~ +~~~ +4068228 512 1536 +~~~ +~~~ +4068230 512 1024 +4068231 homeCount = 45 +4068231 waitCount = 20 +4068232 ripCount = 19 +4068232 locktype1 = 2 +4068233 locktype2 = 6 +4068233 locktype3 = 2 +4068234 goalCount = 1 +4068234 goalTotal = 11 +4068235 otherCount = 23 +~~~ +~~~ +4068337 DOWN 10 +4068337 0 1024 +~~~ +~~~ +~~~ +~~~ +4068363 homeCount = 45 +4068363 waitCount = 20 +4068364 ripCount = 19 +4068364 locktype1 = 2 +4068365 locktype2 = 6 +4068365 locktype3 = 2 +4068366 goalCount = 1 +4068366 goalTotal = 11 +4068367 otherCount = 23 +~~~ +4068380 UP 10 +4068380 waslock = 0 +4068380 512 1024 +~~~ +4068460 DOWN 10 +4068460 0 1024 +~~~ +~~~ +~~~ +~~~ +4068482 homeCount = 45 +4068482 waitCount = 20 +4068483 ripCount = 19 +4068483 locktype1 = 2 +4068484 locktype2 = 6 +4068484 locktype3 = 2 +4068485 goalCount = 1 +4068485 goalTotal = 11 +4068486 otherCount = 23 +~~~ +4068495 UP 10 +4068496 waslock = 0 +4068495 512 1024 +~~~ +4072504 DOWN 10 +4072504 0 1024 +~~~ +~~~ +~~~ +~~~ +4072531 homeCount = 45 +4072531 waitCount = 20 +4072532 ripCount = 19 +4072532 locktype1 = 2 +4072533 locktype2 = 6 +4072533 locktype3 = 2 +4072534 goalCount = 1 +4072534 goalTotal = 11 +4072535 otherCount = 23 +~~~ +4072546 UP 10 +4072546 waslock = 0 +4072546 512 1024 +~~~ +4072605 DOWN 10 +4072605 0 1024 +~~~ +~~~ +~~~ +~~~ +4072634 homeCount = 45 +4072635 waitCount = 20 +4072635 ripCount = 19 +4072636 locktype1 = 2 +4072636 locktype2 = 6 +4072637 locktype3 = 2 +4072637 goalCount = 1 +4072638 goalTotal = 11 +4072638 otherCount = 23 +~~~ +4074839 UP 11 +4074839 1024 1024 +4077839 BEEP1 +4077839 BEEP2 +~~~ +~~~ +~~~ +4077859 1024 33555456 +~~~ +4078009 1024 1024 +4083791 DOWN 11 +4083791 0 1024 +~~~ +~~~ +4083818 0 0 +~~~ +~~~ +4083820 0 1 +~~~ +~~~ +4083822 0 3 +~~~ +~~~ +4083823 0 7 +~~~ +~~~ +4083825 0 15 +~~~ +4083827 UP 11 +4083826 1024 15 +~~~ +~~~ +4083828 1024 31 +~~~ +~~~ +4083830 1024 63 +~~~ +4083831 1024 127 +~~~ +~~~ +4083833 1024 255 +4083834 homeCount = 45 +4083834 waitCount = 20 +4083855 ripCount = 20 +4083855 locktype1 = 2 +4083856 locktype2 = 6 +4083856 locktype3 = 2 +4083857 goalCount = 1 +4083857 goalTotal = 11 +4083858 otherCount = 23 +~~~ +4083859 CURRENTGOAL IS [4] +~~~ +4083859 DOWN 11 +4083859 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4083907 homeCount = 45 +4083908 waitCount = 20 +4083909 ripCount = 20 +4083909 locktype1 = 2 +4083910 locktype2 = 6 +4083910 locktype3 = 2 +4083911 goalCount = 1 +4083911 goalTotal = 11 +4083911 otherCount = 23 +~~~ +4083913 CURRENTGOAL IS [4] +~~~ +4083913 UP 11 +4083913 1024 255 +4086791 DOWN 11 +4086791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4086829 homeCount = 45 +4086829 waitCount = 20 +4086830 ripCount = 20 +4086830 locktype1 = 2 +4086831 locktype2 = 6 +4086831 locktype3 = 2 +4086832 goalCount = 1 +4086832 goalTotal = 11 +4086833 otherCount = 23 +~~~ +4086834 CURRENTGOAL IS [4] +~~~ +4087998 UP 11 +4087998 1024 255 +4088002 DOWN 11 +4088002 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4088043 homeCount = 45 +4088043 waitCount = 20 +4088044 ripCount = 20 +4088044 locktype1 = 2 +4088045 locktype2 = 6 +4088045 locktype3 = 2 +4088046 goalCount = 1 +4088046 goalTotal = 11 +4088047 otherCount = 23 +~~~ +4088048 CURRENTGOAL IS [4] +~~~ +4090950 UP 5 +4090950 16 255 +~~~ +~~~ +4091298 DOWN 5 +4091297 0 255 +~~~ +~~~ +4091323 0 254 +~~~ +~~~ +4091325 0 252 +~~~ +~~~ +4091327 0 248 +~~~ +~~~ +4091329 0 240 +~~~ +~~~ +4091330 0 224 +~~~ +~~~ +4091332 0 192 +~~~ +~~~ +4091334 0 128 +~~~ +~~~ +4091336 0 0 +~~~ +~~~ +4091338 0 512 +4091339 homeCount = 45 +4091339 waitCount = 20 +4091340 ripCount = 20 +4091340 locktype1 = 2 +4091341 locktype2 = 6 +4091362 locktype3 = 2 +4091362 goalCount = 1 +4091363 goalTotal = 11 +4091363 otherCount = 24 +~~~ +4091364 16 512 +4091503 DOWN 5 +4091503 0 512 +4095890 UP 10 +4095891 waslock = 0 +4095890 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4095915 512 16777728 +~~~ +4096065 512 512 +4096110 DOWN 10 +4096110 0 512 +~~~ +~~~ +4096133 0 2560 +~~~ +~~~ +4096135 0 2048 +4096136 homeCount = 46 +4096137 waitCount = 20 +4096137 ripCount = 20 +4096138 locktype1 = 2 +4096138 locktype2 = 6 +4096139 locktype3 = 2 +4096139 goalCount = 1 +4096140 goalTotal = 11 +4096140 otherCount = 24 +~~~ +4096211 UP 10 +4096211 waslock = 0 +4096211 512 2048 +~~~ +4100984 DOWN 10 +4100984 0 2048 +~~~ +~~~ +~~~ +~~~ +4101012 homeCount = 46 +4101012 waitCount = 20 +4101013 ripCount = 20 +4101013 locktype1 = 2 +4101014 locktype2 = 6 +4101014 locktype3 = 2 +4101015 goalCount = 1 +4101015 goalTotal = 11 +4101016 otherCount = 24 +~~~ +4102585 UP 12 +4102585 2048 2048 +4104563 DOWN 12 +4104563 0 2048 +4104602 UP 12 +4104602 2048 2048 +4106085 CLICK1 +4106085 CLICK2 +~~~ +~~~ +~~~ +4106111 2048 67110912 +~~~ +4106261 2048 2048 +4113653 DOWN 12 +4113653 0 2048 +~~~ +~~~ +4113670 0 0 +~~~ +~~~ +4113672 0 1 +~~~ +~~~ +4113674 0 3 +~~~ +~~~ +4113675 0 7 +~~~ +~~~ +4113677 0 15 +~~~ +~~~ +4113679 0 31 +~~~ +~~~ +4113681 0 63 +~~~ +~~~ +4113683 0 127 +~~~ +~~~ +4113685 0 255 +4113686 homeCount = 46 +4113686 waitCount = 21 +4113687 ripCount = 20 +4113687 locktype1 = 2 +4113688 locktype2 = 6 +4113709 locktype3 = 2 +4113709 goalCount = 1 +4113710 goalTotal = 11 +4113710 otherCount = 24 +~~~ +4113711 CURRENTGOAL IS [4] +~~~ +4113721 UP 12 +4113721 2048 255 +4113777 DOWN 12 +4113777 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4113818 homeCount = 46 +4113819 waitCount = 21 +4113819 ripCount = 20 +4113820 locktype1 = 2 +4113820 locktype2 = 6 +4113821 locktype3 = 2 +4113821 goalCount = 1 +4113822 goalTotal = 11 +4113822 otherCount = 24 +~~~ +4113823 CURRENTGOAL IS [4] +~~~ +4114284 UP 12 +4114284 2048 255 +4114665 DOWN 12 +4114665 0 255 +4114670 UP 12 +4114670 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4114698 homeCount = 46 +4114699 waitCount = 21 +4114699 ripCount = 20 +4114700 locktype1 = 2 +4114700 locktype2 = 6 +4114701 locktype3 = 2 +4114701 goalCount = 1 +4114702 goalTotal = 11 +4114702 otherCount = 24 +~~~ +4114703 CURRENTGOAL IS [4] +~~~ +4114704 DOWN 12 +4114704 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4114761 homeCount = 46 +4114761 waitCount = 21 +4114762 ripCount = 20 +4114763 locktype1 = 2 +4114763 locktype2 = 6 +4114763 locktype3 = 2 +4114764 goalCount = 1 +4114764 goalTotal = 11 +4114765 otherCount = 24 +~~~ +4114766 CURRENTGOAL IS [4] +~~~ +4114819 UP 12 +4114819 2048 255 +4114989 DOWN 12 +4114989 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4115028 homeCount = 46 +4115028 waitCount = 21 +4115029 ripCount = 20 +4115030 locktype1 = 2 +4115030 locktype2 = 6 +4115030 locktype3 = 2 +4115031 goalCount = 1 +4115031 goalTotal = 11 +4115032 otherCount = 24 +~~~ +4115033 CURRENTGOAL IS [4] +~~~ +4115131 UP 12 +4115131 2048 255 +4115180 DOWN 12 +4115180 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4115219 homeCount = 46 +4115220 waitCount = 21 +4115220 ripCount = 20 +4115221 locktype1 = 2 +4115221 locktype2 = 6 +4115222 locktype3 = 2 +4115222 goalCount = 1 +4115223 goalTotal = 11 +4115223 otherCount = 24 +~~~ +4115224 CURRENTGOAL IS [4] +~~~ +4122428 UP 4 +4122428 8 255 +~~~ +~~~ +4122455 outer reward +~~~ +4122456 8 524543 +~~~ +~~~ +4122729 DOWN 4 +4122729 0 524543 +~~~ +~~~ +4122753 0 524542 +~~~ +~~~ +4122755 0 524540 +~~~ +~~~ +4122757 0 524536 +~~~ +~~~ +4122759 0 524528 +~~~ +~~~ +4122761 0 524512 +~~~ +~~~ +4122762 0 524480 +~~~ +~~~ +4122764 0 524416 +~~~ +~~~ +4122766 0 524288 +~~~ +4122767 8 524288 +~~~ +4122769 8 524800 +4122770 homeCount = 46 +4122770 waitCount = 21 +4122791 ripCount = 20 +4122792 locktype1 = 2 +4122792 locktype2 = 6 +4122793 locktype3 = 2 +4122793 goalCount = 2 +4122794 goalTotal = 12 +4122794 otherCount = 24 +~~~ +4122905 8 512 +4123027 DOWN 4 +4123027 0 512 +4123052 8 512 +4123136 DOWN 4 +4123136 0 512 +4123166 8 512 +4123268 DOWN 4 +4123268 0 512 +4123295 8 512 +4123386 DOWN 4 +4123386 0 512 +4123423 8 512 +4123521 DOWN 4 +4123521 0 512 +4123554 8 512 +4123652 DOWN 4 +4123652 0 512 +4123684 8 512 +4123785 DOWN 4 +4123785 0 512 +4123811 8 512 +4123915 DOWN 4 +4123915 0 512 +4123946 8 512 +4124055 DOWN 4 +4124055 0 512 +4124079 8 512 +4124194 DOWN 4 +4124194 0 512 +4124218 8 512 +4124337 DOWN 4 +4124337 0 512 +4124358 8 512 +4124486 DOWN 4 +4124486 0 512 +4124501 8 512 +4124634 DOWN 4 +4124634 0 512 +4124650 8 512 +4124790 DOWN 4 +4124790 0 512 +4124797 8 512 +4125100 DOWN 4 +4125100 0 512 +4125109 8 512 +4128672 DOWN 4 +4128672 0 512 +4128679 8 512 +4128805 DOWN 4 +4128805 0 512 +4128828 8 512 +4130462 DOWN 4 +4130462 0 512 +4134961 UP 10 +4134961 waslock = 0 +4134961 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4134991 512 16777728 +~~~ +4135000 DOWN 10 +4135000 0 16777728 +~~~ +~~~ +4135021 0 16778752 +~~~ +~~~ +4135023 0 16778240 +4135024 homeCount = 47 +4135025 waitCount = 21 +4135025 ripCount = 20 +4135026 locktype1 = 2 +4135026 locktype2 = 6 +4135027 locktype3 = 2 +4135027 goalCount = 2 +4135028 goalTotal = 12 +4135028 otherCount = 24 +~~~ +4135049 UP 10 +4135050 waslock = 0 +4135049 512 16778240 +~~~ +4135141 512 1024 +4135184 DOWN 10 +4135184 0 1024 +~~~ +~~~ +~~~ +~~~ +4135208 homeCount = 47 +4135209 waitCount = 21 +4135209 ripCount = 20 +4135210 locktype1 = 2 +4135210 locktype2 = 6 +4135211 locktype3 = 2 +4135211 goalCount = 2 +4135212 goalTotal = 12 +4135212 otherCount = 24 +~~~ +4135243 UP 10 +4135243 waslock = 0 +4135243 512 1024 +~~~ +4139256 DOWN 10 +4139256 0 1024 +~~~ +~~~ +~~~ +~~~ +4139281 homeCount = 47 +4139281 waitCount = 21 +4139282 ripCount = 20 +4139282 locktype1 = 2 +4139283 locktype2 = 6 +4139283 locktype3 = 2 +4139284 goalCount = 2 +4139284 goalTotal = 12 +4139285 otherCount = 24 +~~~ +4141258 UP 11 +4141258 1024 1024 +4143110 DOWN 11 +4143110 0 1024 +4143119 UP 11 +4143119 1024 1024 +4143125 DOWN 11 +4143125 0 1024 +4143142 UP 11 +4143142 1024 1024 +4143768 DOWN 11 +4143768 0 1024 +4143852 UP 11 +4143852 1024 1024 +4144258 BEEP1 +4144258 BEEP2 +~~~ +~~~ +~~~ +4144279 1024 33555456 +~~~ +4144429 1024 1024 +4148801 DOWN 11 +4148801 0 1024 +4148814 UP 11 +4148814 1024 1024 +~~~ +~~~ +4148830 1024 0 +~~~ +~~~ +4148831 1024 1 +~~~ +~~~ +4148833 1024 3 +~~~ +~~~ +4148835 1024 7 +~~~ +~~~ +4148837 1024 15 +~~~ +~~~ +4148839 1024 31 +~~~ +~~~ +4148841 1024 63 +~~~ +~~~ +4148842 1024 127 +~~~ +~~~ +4148844 1024 255 +4148845 homeCount = 47 +4148846 waitCount = 21 +4148846 ripCount = 21 +4148847 locktype1 = 2 +4148868 locktype2 = 6 +4148868 locktype3 = 2 +4148869 goalCount = 2 +4148869 goalTotal = 12 +4148870 otherCount = 24 +~~~ +4148871 CURRENTGOAL IS [4] +~~~ +4150765 DOWN 11 +4150765 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4150803 homeCount = 47 +4150804 waitCount = 21 +4150805 ripCount = 21 +4150805 locktype1 = 2 +4150806 locktype2 = 6 +4150806 locktype3 = 2 +4150806 goalCount = 2 +4150807 goalTotal = 12 +4150807 otherCount = 24 +~~~ +4150808 CURRENTGOAL IS [4] +~~~ +4150827 UP 11 +4150827 1024 255 +4150902 DOWN 11 +4150902 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4150944 homeCount = 47 +4150944 waitCount = 21 +4150945 ripCount = 21 +4150945 locktype1 = 2 +4150946 locktype2 = 6 +4150946 locktype3 = 2 +4150947 goalCount = 2 +4150947 goalTotal = 12 +4150948 otherCount = 24 +~~~ +4150949 CURRENTGOAL IS [4] +~~~ +4154099 UP 4 +4154099 8 255 +~~~ +~~~ +4154121 outer reward +~~~ +4154121 8 524543 +~~~ +~~~ +4154381 DOWN 4 +4154381 0 524543 +~~~ +~~~ +4154408 0 524542 +~~~ +4154409 8 524542 +~~~ +~~~ +4154411 8 524540 +~~~ +4154412 8 524536 +~~~ +~~~ +4154414 8 524528 +~~~ +~~~ +4154415 8 524512 +~~~ +~~~ +4154417 8 524480 +~~~ +~~~ +4154419 8 524416 +~~~ +~~~ +4154421 8 524288 +~~~ +~~~ +4154423 8 524800 +4154424 homeCount = 47 +4154424 waitCount = 21 +4154445 ripCount = 21 +4154446 locktype1 = 2 +4154446 locktype2 = 6 +4154447 locktype3 = 2 +4154447 goalCount = 3 +4154448 goalTotal = 13 +4154448 otherCount = 24 +~~~ +4154571 8 512 +4154798 DOWN 4 +4154798 0 512 +4154825 8 512 +4154922 DOWN 4 +4154922 0 512 +4154958 8 512 +4155053 DOWN 4 +4155053 0 512 +4155087 8 512 +4155192 DOWN 4 +4155192 0 512 +4155219 8 512 +4155325 DOWN 4 +4155325 0 512 +4155360 8 512 +4155624 DOWN 4 +4155624 0 512 +4155633 8 512 +4156054 DOWN 4 +4156054 0 512 +4156064 8 512 +4162502 DOWN 4 +4162502 0 512 +4162532 8 512 +4162633 DOWN 4 +4162633 0 512 +4162670 8 512 +4162773 DOWN 4 +4162773 0 512 +4167844 UP 10 +4167845 waslock = 0 +4167844 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4167875 512 16777728 +~~~ +4168025 512 512 +4170914 DOWN 10 +4170914 0 512 +~~~ +~~~ +4170942 0 2560 +~~~ +~~~ +4170944 0 2048 +4170945 homeCount = 48 +4170945 waitCount = 21 +4170946 ripCount = 21 +4170946 locktype1 = 2 +4170946 locktype2 = 6 +4170947 locktype3 = 2 +4170947 goalCount = 3 +4170948 goalTotal = 13 +4170948 otherCount = 24 +~~~ +4170949 UP 10 +4170970 waslock = 0 +4170949 512 2048 +~~~ +4171034 DOWN 10 +4171034 0 2048 +~~~ +~~~ +~~~ +~~~ +4171061 homeCount = 48 +4171062 waitCount = 21 +4171062 ripCount = 21 +4171063 locktype1 = 2 +4171063 locktype2 = 6 +4171064 locktype3 = 2 +4171064 goalCount = 3 +4171065 goalTotal = 13 +4171065 otherCount = 24 +~~~ +4171069 UP 10 +4171071 waslock = 0 +4171069 512 2048 +~~~ +4173229 DOWN 10 +4173229 0 2048 +~~~ +~~~ +~~~ +~~~ +4173254 homeCount = 48 +4173254 waitCount = 21 +4173255 ripCount = 21 +4173255 locktype1 = 2 +4173256 locktype2 = 6 +4173256 locktype3 = 2 +4173257 goalCount = 3 +4173257 goalTotal = 13 +4173258 otherCount = 24 +~~~ +4174888 UP 12 +4174888 2048 2048 +4177658 DOWN 12 +4177658 0 2048 +4177681 UP 12 +4177681 2048 2048 +4177889 CLICK1 +4177889 CLICK2 +~~~ +~~~ +~~~ +4177910 2048 67110912 +~~~ +4178060 2048 2048 +4183984 DOWN 12 +4183984 0 2048 +4184003 UP 12 +4184003 2048 2048 +~~~ +~~~ +4184010 2048 0 +~~~ +~~~ +4184012 2048 1 +~~~ +~~~ +4184014 2048 3 +~~~ +~~~ +4184016 2048 7 +~~~ +~~~ +4184018 2048 15 +~~~ +~~~ +4184019 2048 31 +~~~ +~~~ +4184021 2048 63 +~~~ +~~~ +4184023 2048 127 +~~~ +~~~ +4184025 2048 255 +4184026 homeCount = 48 +4184026 waitCount = 22 +4184027 ripCount = 21 +4184027 locktype1 = 2 +4184048 locktype2 = 6 +4184049 locktype3 = 2 +4184049 goalCount = 3 +4184050 goalTotal = 13 +4184050 otherCount = 24 +~~~ +4184051 CURRENTGOAL IS [4] +~~~ +4184071 DOWN 12 +4184071 0 255 +~~~ +~~~ +~~~ +~~~ +4184086 UP 12 +4184086 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184100 homeCount = 48 +4184100 waitCount = 22 +4184101 ripCount = 21 +4184101 locktype1 = 2 +4184102 locktype2 = 6 +4184102 locktype3 = 2 +4184103 goalCount = 3 +4184103 goalTotal = 13 +4184104 otherCount = 24 +~~~ +4184105 CURRENTGOAL IS [4] +~~~ +4184107 DOWN 12 +4184107 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184155 homeCount = 48 +4184155 waitCount = 22 +4184156 ripCount = 21 +4184156 locktype1 = 2 +4184157 locktype2 = 6 +4184157 locktype3 = 2 +4184158 goalCount = 3 +4184158 goalTotal = 13 +4184159 otherCount = 24 +~~~ +4184160 CURRENTGOAL IS [4] +~~~ +4184181 UP 12 +4184181 2048 255 +4184186 DOWN 12 +4184186 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184206 UP 12 +4184206 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184212 homeCount = 48 +4184213 waitCount = 22 +4184213 ripCount = 21 +4184214 locktype1 = 2 +4184214 locktype2 = 6 +4184215 locktype3 = 2 +4184215 goalCount = 3 +4184216 goalTotal = 13 +4184216 otherCount = 24 +~~~ +4184217 CURRENTGOAL IS [4] +~~~ +4184649 DOWN 12 +4184649 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184690 homeCount = 48 +4184691 waitCount = 22 +4184691 ripCount = 21 +4184692 locktype1 = 2 +4184692 locktype2 = 6 +4184693 locktype3 = 2 +4184693 goalCount = 3 +4184694 goalTotal = 13 +4184694 otherCount = 24 +~~~ +4184695 CURRENTGOAL IS [4] +~~~ +4184704 UP 12 +4184704 2048 255 +4185594 DOWN 12 +4185594 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4185628 homeCount = 48 +4185629 waitCount = 22 +4185629 ripCount = 21 +4185630 locktype1 = 2 +4185630 locktype2 = 6 +4185631 locktype3 = 2 +4185631 goalCount = 3 +4185632 goalTotal = 13 +4185632 otherCount = 24 +~~~ +4185633 CURRENTGOAL IS [4] +~~~ +4185641 UP 12 +4185641 2048 255 +4185708 DOWN 12 +4185707 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4185750 homeCount = 48 +4185750 waitCount = 22 +4185751 ripCount = 21 +4185751 locktype1 = 2 +4185752 locktype2 = 6 +4185752 locktype3 = 2 +4185752 goalCount = 3 +4185753 goalTotal = 13 +4185753 otherCount = 24 +~~~ +4185755 CURRENTGOAL IS [4] +~~~ +4189317 UP 4 +4189317 8 255 +~~~ +~~~ +4189337 outer reward +~~~ +4189337 8 524543 +~~~ +~~~ +4189569 DOWN 4 +4189569 0 524543 +~~~ +~~~ +4189593 0 524542 +~~~ +~~~ +4189595 0 524540 +~~~ +~~~ +4189597 0 524536 +~~~ +~~~ +4189599 0 524528 +~~~ +~~~ +4189601 0 524512 +~~~ +~~~ +4189603 0 524480 +~~~ +~~~ +4189604 0 524416 +~~~ +~~~ +4189606 0 524288 +~~~ +~~~ +4189608 0 524800 +4189609 homeCount = 48 +4189610 waitCount = 22 +4189610 ripCount = 21 +4189611 locktype1 = 2 +4189631 locktype2 = 6 +4189632 locktype3 = 2 +4189632 goalCount = 4 +4189633 goalTotal = 14 +4189633 otherCount = 24 +~~~ +4189634 8 524800 +4189787 8 512 +4190012 DOWN 4 +4190012 0 512 +4190037 8 512 +4190135 DOWN 4 +4190135 0 512 +4190166 8 512 +4190263 DOWN 4 +4190263 0 512 +4190291 8 512 +4190397 DOWN 4 +4190397 0 512 +4190428 8 512 +4190540 DOWN 4 +4190540 0 512 +4190564 8 512 +4190690 DOWN 4 +4190690 0 512 +4190706 8 512 +4190823 DOWN 4 +4190823 0 512 +4190850 8 512 +4190967 DOWN 4 +4190967 0 512 +4190989 8 512 +4191427 DOWN 4 +4191427 0 512 +4191434 8 512 +4196787 DOWN 4 +4196787 0 512 +4196850 8 512 +4196885 DOWN 4 +4196885 0 512 +4201709 UP 10 +4201709 waslock = 0 +4201709 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4201743 512 16777728 +~~~ +4201893 512 512 +4205616 DOWN 10 +4205616 0 512 +~~~ +~~~ +4205637 0 2560 +~~~ +~~~ +4205639 0 2048 +4205640 homeCount = 49 +4205640 waitCount = 22 +4205641 ripCount = 21 +4205641 locktype1 = 2 +4205642 locktype2 = 6 +4205642 locktype3 = 2 +4205643 goalCount = 4 +4205643 goalTotal = 14 +4205644 otherCount = 24 +~~~ +4207370 UP 12 +4207370 2048 2048 +4210795 DOWN 12 +4210795 0 2048 +4210828 UP 12 +4210828 2048 2048 +4213370 CLICK1 +4213370 CLICK2 +~~~ +~~~ +~~~ +4213398 2048 67110912 +~~~ +4213548 2048 2048 +4218738 DOWN 12 +4218738 0 2048 +4218747 UP 12 +4218747 2048 2048 +~~~ +~~~ +4218767 2048 0 +~~~ +~~~ +4218768 2048 1 +~~~ +~~~ +4218770 2048 3 +~~~ +~~~ +4218772 2048 7 +~~~ +~~~ +4218774 2048 15 +~~~ +~~~ +4218776 2048 31 +~~~ +~~~ +4218777 2048 63 +~~~ +~~~ +4218779 2048 127 +~~~ +~~~ +4218781 2048 255 +4218782 homeCount = 49 +4218783 waitCount = 23 +4218783 ripCount = 21 +4218784 locktype1 = 2 +4218805 locktype2 = 6 +4218805 locktype3 = 2 +4218805 goalCount = 4 +4218806 goalTotal = 14 +4218806 otherCount = 24 +~~~ +4218807 CURRENTGOAL IS [4] +~~~ +4218872 DOWN 12 +4218872 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4218914 homeCount = 49 +4218915 waitCount = 23 +4218915 ripCount = 21 +4218916 locktype1 = 2 +4218916 locktype2 = 6 +4218917 locktype3 = 2 +4218917 goalCount = 4 +4218918 goalTotal = 14 +4218918 otherCount = 24 +~~~ +4218919 CURRENTGOAL IS [4] +~~~ +4218920 UP 12 +4218920 2048 255 +4221459 DOWN 12 +4221459 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4221495 homeCount = 49 +4221495 waitCount = 23 +4221496 ripCount = 21 +4221496 locktype1 = 2 +4221497 locktype2 = 6 +4221497 locktype3 = 2 +4221498 goalCount = 4 +4221498 goalTotal = 14 +4221498 otherCount = 24 +~~~ +4221500 CURRENTGOAL IS [4] +~~~ +4224609 UP 4 +4224609 8 255 +~~~ +~~~ +4224631 outer reward +~~~ +4224631 8 524543 +~~~ +~~~ +4224876 DOWN 4 +4224876 0 524543 +~~~ +~~~ +4224899 0 524542 +~~~ +~~~ +4224900 0 524540 +~~~ +~~~ +4224902 0 524536 +~~~ +~~~ +4224904 0 524528 +~~~ +~~~ +4224906 0 524512 +~~~ +~~~ +4224908 0 524480 +~~~ +~~~ +4224909 0 524416 +~~~ +~~~ +4224911 0 524288 +~~~ +~~~ +4224913 0 524800 +4224914 homeCount = 49 +4224915 waitCount = 23 +4224915 ripCount = 21 +4224916 locktype1 = 2 +4224936 locktype2 = 6 +4224937 locktype3 = 2 +4224937 goalCount = 5 +4224938 goalTotal = 15 +4224938 otherCount = 24 +~~~ +4224939 8 524800 +4225081 8 512 +4225313 DOWN 4 +4225313 0 512 +4225326 8 512 +4225439 DOWN 4 +4225439 0 512 +4225457 8 512 +4225572 DOWN 4 +4225572 0 512 +4225586 8 512 +4225707 DOWN 4 +4225707 0 512 +4225724 8 512 +4225835 DOWN 4 +4225835 0 512 +4225858 8 512 +4225971 DOWN 4 +4225971 0 512 +4225988 8 512 +4226102 DOWN 4 +4226102 0 512 +4226123 8 512 +4226240 DOWN 4 +4226240 0 512 +4226257 8 512 +4226379 DOWN 4 +4226379 0 512 +4226390 8 512 +4226527 DOWN 4 +4226527 0 512 +4226533 8 512 +4231515 DOWN 4 +4231515 0 512 +4231529 8 512 +4233369 DOWN 4 +4233369 0 512 +4237735 UP 10 +4237735 waslock = 0 +4237735 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4237765 512 16777728 +~~~ +4237915 512 512 +4241880 DOWN 10 +4241880 0 512 +~~~ +~~~ +4241900 0 1536 +~~~ +~~~ +4241902 0 1024 +4241903 homeCount = 50 +4241903 waitCount = 23 +4241904 ripCount = 21 +4241904 locktype1 = 2 +4241905 locktype2 = 6 +4241905 locktype3 = 2 +4241905 goalCount = 5 +4241906 goalTotal = 15 +4241906 otherCount = 24 +~~~ +4243762 UP 11 +4243762 1024 1024 +4243837 DOWN 11 +4243837 0 1024 +4243952 UP 11 +4243952 1024 1024 +4250763 BEEP1 +4250763 BEEP2 +~~~ +~~~ +~~~ +4250781 1024 33555456 +~~~ +4250931 1024 1024 +4256515 DOWN 11 +4256515 0 1024 +~~~ +~~~ +4256539 0 0 +~~~ +~~~ +4256541 0 1 +~~~ +~~~ +4256543 0 3 +~~~ +~~~ +4256545 0 7 +~~~ +~~~ +4256546 0 15 +~~~ +~~~ +4256548 0 31 +~~~ +~~~ +4256550 0 63 +~~~ +~~~ +4256552 0 127 +~~~ +~~~ +4256554 0 255 +4256555 homeCount = 50 +4256555 waitCount = 23 +4256556 ripCount = 22 +4256556 locktype1 = 2 +4256557 locktype2 = 6 +4256557 locktype3 = 2 +4256578 goalCount = 5 +4256579 goalTotal = 15 +4256579 otherCount = 24 +~~~ +4256580 CURRENTGOAL IS [4] +~~~ +4256581 UP 11 +4256581 1024 255 +4259496 DOWN 11 +4259496 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4259538 homeCount = 50 +4259538 waitCount = 23 +4259539 ripCount = 22 +4259539 locktype1 = 2 +4259540 locktype2 = 6 +4259540 locktype3 = 2 +4259541 goalCount = 5 +4259541 goalTotal = 15 +4259542 otherCount = 24 +~~~ +4259543 CURRENTGOAL IS [4] +~~~ +4265652 UP 4 +4265652 8 255 +~~~ +~~~ +4265674 outer reward +~~~ +4265674 8 524543 +~~~ +~~~ +4265917 DOWN 4 +4265917 0 524543 +~~~ +~~~ +4265942 0 524542 +~~~ +~~~ +4265944 0 524540 +~~~ +~~~ +4265945 0 524536 +~~~ +~~~ +4265947 0 524528 +~~~ +~~~ +4265949 0 524512 +~~~ +~~~ +4265951 0 524480 +~~~ +~~~ +4265953 0 524416 +~~~ +~~~ +4265955 0 524288 +~~~ +~~~ +4265956 0 524800 +4265957 homeCount = 50 +4265958 waitCount = 23 +4265958 ripCount = 22 +4265959 locktype1 = 2 +4265980 locktype2 = 6 +4265980 locktype3 = 2 +4265981 goalCount = 6 +4265981 goalTotal = 16 +4265982 otherCount = 24 +~~~ +4265982 8 524800 +4266107 DOWN 4 +4266107 0 524800 +4266124 0 512 +4266129 8 512 +4266357 DOWN 4 +4266357 0 512 +4266378 8 512 +4266481 DOWN 4 +4266481 0 512 +4266507 8 512 +4266607 DOWN 4 +4266607 0 512 +4266639 8 512 +4266745 DOWN 4 +4266745 0 512 +4266764 8 512 +4266865 DOWN 4 +4266865 0 512 +4266891 8 512 +4266997 DOWN 4 +4266997 0 512 +4267021 8 512 +4267136 DOWN 4 +4267136 0 512 +4267154 8 512 +4274215 DOWN 4 +4274215 0 512 +4280342 UP 10 +4280343 waslock = 0 +4280342 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4280370 512 16777728 +~~~ +4280520 512 512 +4280525 DOWN 10 +4280525 0 512 +4280544 UP 10 +4280544 waslock = 0 +4280544 512 512 +~~~ +~~~ +4280547 512 1536 +~~~ +~~~ +4280549 512 1024 +4280550 homeCount = 51 +4280551 waitCount = 23 +4280551 ripCount = 22 +4280552 locktype1 = 2 +4280552 locktype2 = 6 +4280553 locktype3 = 2 +4280553 goalCount = 6 +4280554 goalTotal = 16 +4280554 otherCount = 24 +~~~ +~~~ +4284174 DOWN 10 +4284174 0 1024 +~~~ +~~~ +~~~ +~~~ +4284198 homeCount = 51 +4284199 waitCount = 23 +4284199 ripCount = 22 +4284200 locktype1 = 2 +4284200 locktype2 = 6 +4284201 locktype3 = 2 +4284201 goalCount = 6 +4284202 goalTotal = 16 +4284202 otherCount = 24 +~~~ +4285958 UP 11 +4285958 1024 1024 +4289670 DOWN 11 +4289669 0 1024 +4289688 UP 11 +4289688 1024 1024 +4290459 BEEP1 +4290459 BEEP2 +~~~ +~~~ +~~~ +4290489 1024 33555456 +~~~ +4290638 1024 1024 +4295683 DOWN 11 +4295683 0 1024 +4295693 UP 11 +4295693 1024 1024 +~~~ +~~~ +4295706 1024 0 +~~~ +~~~ +4295708 1024 1 +~~~ +~~~ +4295710 1024 3 +~~~ +~~~ +4295712 1024 7 +~~~ +~~~ +4295713 1024 15 +~~~ +~~~ +4295715 1024 31 +~~~ +~~~ +4295717 1024 63 +~~~ +~~~ +4295719 1024 127 +~~~ +~~~ +4295721 1024 255 +4295722 homeCount = 51 +4295722 waitCount = 23 +4295723 ripCount = 23 +4295723 locktype1 = 2 +4295744 locktype2 = 6 +4295745 locktype3 = 2 +4295745 goalCount = 6 +4295745 goalTotal = 16 +4295746 otherCount = 24 +~~~ +4295747 CURRENTGOAL IS [4] +~~~ +4295766 DOWN 11 +4295766 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4295801 UP 11 +4295801 1024 255 +4295803 homeCount = 51 +4295803 waitCount = 23 +4295804 ripCount = 23 +4295804 locktype1 = 2 +4295805 locktype2 = 6 +4295805 locktype3 = 2 +4295805 goalCount = 6 +4295806 goalTotal = 16 +4295806 otherCount = 24 +~~~ +4295808 CURRENTGOAL IS [4] +~~~ +4298136 DOWN 11 +4298136 0 255 +4298151 UP 11 +4298150 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298186 homeCount = 51 +4298186 waitCount = 23 +4298187 ripCount = 23 +4298187 locktype1 = 2 +4298188 locktype2 = 6 +4298188 locktype3 = 2 +4298189 goalCount = 6 +4298189 goalTotal = 16 +4298189 otherCount = 24 +~~~ +4298191 CURRENTGOAL IS [4] +~~~ +4298236 DOWN 11 +4298236 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298273 homeCount = 51 +4298274 waitCount = 23 +4298274 ripCount = 23 +4298275 locktype1 = 2 +4298275 locktype2 = 6 +4298276 locktype3 = 2 +4298276 goalCount = 6 +4298277 goalTotal = 16 +4298277 otherCount = 24 +~~~ +4298278 CURRENTGOAL IS [4] +~~~ +4298331 UP 11 +4298331 1024 255 +4298354 DOWN 11 +4298354 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298397 homeCount = 51 +4298397 waitCount = 23 +4298398 ripCount = 23 +4298399 locktype1 = 2 +4298399 locktype2 = 6 +4298399 locktype3 = 2 +4298400 goalCount = 6 +4298400 goalTotal = 16 +4298401 otherCount = 24 +~~~ +4298402 CURRENTGOAL IS [4] +~~~ +4302468 UP 4 +4302468 8 255 +~~~ +~~~ +4302491 outer reward +~~~ +4302492 8 524543 +~~~ +~~~ +4302679 DOWN 4 +4302679 0 524543 +~~~ +~~~ +4302699 0 524542 +~~~ +~~~ +4302701 0 524540 +~~~ +~~~ +4302703 0 524536 +~~~ +~~~ +4302704 0 524528 +~~~ +~~~ +4302706 0 524512 +~~~ +~~~ +4302708 0 524480 +~~~ +~~~ +4302710 0 524416 +~~~ +~~~ +4302712 0 524288 +~~~ +~~~ +4302714 0 524800 +4302715 homeCount = 51 +4302715 waitCount = 23 +4302716 ripCount = 23 +4302716 locktype1 = 2 +4302737 locktype2 = 6 +4302737 locktype3 = 2 +4302738 goalCount = 7 +4302738 goalTotal = 17 +4302739 otherCount = 24 +~~~ +4302739 8 524800 +4302941 8 512 +4303248 DOWN 4 +4303248 0 512 +4303265 8 512 +4303374 DOWN 4 +4303374 0 512 +4303389 8 512 +4303497 DOWN 4 +4303497 0 512 +4303521 8 512 +4303616 DOWN 4 +4303616 0 512 +4303650 8 512 +4303768 DOWN 4 +4303768 0 512 +4303779 8 512 +4304355 DOWN 4 +4304355 0 512 +4304361 8 512 +4309831 DOWN 4 +4309831 0 512 +4314365 UP 10 +4314365 waslock = 0 +4314365 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4314398 512 16777728 +~~~ +4314518 DOWN 10 +4314518 0 16777728 +~~~ +~~~ +4314541 0 16778752 +~~~ +~~~ +4314543 0 16778240 +4314544 homeCount = 52 +4314544 waitCount = 23 +4314545 ripCount = 23 +4314545 locktype1 = 2 +4314546 locktype2 = 6 +4314546 locktype3 = 2 +4314547 goalCount = 7 +4314547 goalTotal = 17 +4314548 otherCount = 24 +~~~ +4314569 UP 10 +4314569 waslock = 0 +4314569 512 16778240 +4314571 512 1024 +~~~ +4320357 DOWN 10 +4320357 0 1024 +~~~ +~~~ +~~~ +~~~ +4320385 homeCount = 52 +4320385 waitCount = 23 +4320386 ripCount = 23 +4320386 locktype1 = 2 +4320387 locktype2 = 6 +4320387 locktype3 = 2 +4320388 goalCount = 7 +4320388 goalTotal = 17 +4320389 otherCount = 24 +~~~ +4322525 UP 11 +4322525 1024 1024 +4324497 DOWN 11 +4324497 0 1024 +4324536 UP 11 +4324536 1024 1024 +4326525 BEEP1 +4326525 BEEP2 +~~~ +~~~ +~~~ +4326554 1024 33555456 +~~~ +4326703 1024 1024 +4332297 DOWN 11 +4332297 0 1024 +~~~ +~~~ +4332321 0 0 +~~~ +~~~ +4332323 0 1 +~~~ +~~~ +4332325 0 3 +~~~ +~~~ +4332327 0 7 +~~~ +~~~ +4332329 0 15 +~~~ +~~~ +4332331 0 31 +~~~ +~~~ +4332332 0 63 +~~~ +~~~ +4332334 0 127 +~~~ +~~~ +4332336 0 255 +4332337 homeCount = 52 +4332338 waitCount = 23 +4332338 ripCount = 24 +4332339 locktype1 = 2 +4332339 locktype2 = 6 +4332360 locktype3 = 2 +4332361 goalCount = 7 +4332361 goalTotal = 17 +4332362 otherCount = 24 +~~~ +4332363 CURRENTGOAL IS [4] +~~~ +4332363 UP 11 +4332363 1024 255 +4336000 DOWN 11 +4336000 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4336037 homeCount = 52 +4336038 waitCount = 23 +4336038 ripCount = 24 +4336039 locktype1 = 2 +4336039 locktype2 = 6 +4336040 locktype3 = 2 +4336040 goalCount = 7 +4336041 goalTotal = 17 +4336041 otherCount = 24 +~~~ +4336042 CURRENTGOAL IS [4] +~~~ +4336052 UP 11 +4336052 1024 255 +4336156 DOWN 11 +4336156 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4336197 homeCount = 52 +4336198 waitCount = 23 +4336198 ripCount = 24 +4336199 locktype1 = 2 +4336199 locktype2 = 6 +4336200 locktype3 = 2 +4336200 goalCount = 7 +4336201 goalTotal = 17 +4336201 otherCount = 24 +~~~ +4336202 CURRENTGOAL IS [4] +~~~ +4340725 UP 4 +4340725 8 255 +~~~ +~~~ +4340744 outer reward +~~~ +4340745 8 524543 +~~~ +~~~ +4340992 DOWN 4 +4340992 0 524543 +~~~ +~~~ +4341014 0 524542 +~~~ +~~~ +4341016 0 524540 +~~~ +~~~ +4341018 0 524536 +~~~ +~~~ +4341020 0 524528 +~~~ +~~~ +4341022 0 524512 +~~~ +~~~ +4341023 0 524480 +~~~ +~~~ +4341025 0 524416 +~~~ +~~~ +4341027 0 524288 +~~~ +~~~ +4341029 0 524800 +4341030 homeCount = 52 +4341030 waitCount = 23 +4341031 ripCount = 24 +4341031 locktype1 = 2 +4341052 locktype2 = 6 +4341053 locktype3 = 2 +4341053 goalCount = 8 +4341054 goalTotal = 18 +4341054 otherCount = 24 +~~~ +4341055 8 524800 +4341194 8 512 +4341417 DOWN 4 +4341417 0 512 +4341435 8 512 +4341664 DOWN 4 +4341664 0 512 +4341693 8 512 +4341796 DOWN 4 +4341796 0 512 +4341811 8 512 +4341917 DOWN 4 +4341917 0 512 +4341945 8 512 +4342051 DOWN 4 +4342051 0 512 +4342074 8 512 +4342192 DOWN 4 +4342192 0 512 +4342207 8 512 +4342332 DOWN 4 +4342332 0 512 +4342351 8 512 +4342475 DOWN 4 +4342475 0 512 +4342489 8 512 +4342627 DOWN 4 +4342627 0 512 +4342636 8 512 +4342773 DOWN 4 +4342773 0 512 +4342786 8 512 +4342928 DOWN 4 +4342928 0 512 +4342942 8 512 +4343079 DOWN 4 +4343079 0 512 +4343090 8 512 +4345668 DOWN 4 +4345668 0 512 +4345673 8 512 +4347893 DOWN 4 +4347893 0 512 +4347977 8 512 +4347999 DOWN 4 +4347999 0 512 +4352959 UP 10 +4352959 waslock = 0 +4352959 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4352990 512 16777728 +~~~ +4353126 DOWN 10 +4353126 0 16777728 +4353139 0 512 +~~~ +~~~ +4353148 0 1536 +~~~ +~~~ +4353150 0 1024 +4353150 homeCount = 53 +4353151 waitCount = 23 +4353151 ripCount = 24 +4353152 locktype1 = 2 +4353152 locktype2 = 6 +4353153 locktype3 = 2 +4353153 goalCount = 8 +4353154 goalTotal = 18 +4353154 otherCount = 24 +~~~ +4353161 UP 10 +4353161 waslock = 0 +4353161 512 1024 +~~~ +4356494 DOWN 10 +4356494 0 1024 +~~~ +~~~ +~~~ +~~~ +4356516 homeCount = 53 +4356517 waitCount = 23 +4356517 ripCount = 24 +4356518 locktype1 = 2 +4356518 locktype2 = 6 +4356519 locktype3 = 2 +4356519 goalCount = 8 +4356520 goalTotal = 18 +4356520 otherCount = 24 +~~~ +4356538 UP 10 +4356539 waslock = 0 +4356538 512 1024 +~~~ +4356593 DOWN 10 +4356593 0 1024 +~~~ +~~~ +~~~ +~~~ +4356618 homeCount = 53 +4356619 waitCount = 23 +4356619 ripCount = 24 +4356620 locktype1 = 2 +4356620 locktype2 = 6 +4356621 locktype3 = 2 +4356621 goalCount = 8 +4356622 goalTotal = 18 +4356622 otherCount = 24 +~~~ +4358394 UP 11 +4358394 1024 1024 +4361395 BEEP1 +4361395 BEEP2 +~~~ +~~~ +~~~ +4361417 1024 33555456 +~~~ +4361567 1024 1024 +4368629 DOWN 11 +4368629 0 1024 +~~~ +~~~ +4368655 0 0 +~~~ +~~~ +4368657 0 1 +~~~ +~~~ +4368659 0 3 +~~~ +~~~ +4368660 0 7 +~~~ +~~~ +4368662 0 15 +~~~ +~~~ +4368664 0 31 +~~~ +~~~ +4368666 0 63 +~~~ +~~~ +4368668 0 127 +~~~ +~~~ +4368669 0 255 +4368670 homeCount = 53 +4368671 waitCount = 23 +4368672 ripCount = 25 +4368672 locktype1 = 2 +4368673 locktype2 = 6 +4368673 locktype3 = 2 +4368694 goalCount = 8 +4368694 goalTotal = 18 +4368695 otherCount = 24 +~~~ +4368696 CURRENTGOAL IS [4] +~~~ +4368696 UP 11 +4368696 1024 255 +4370757 DOWN 11 +4370757 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4370794 homeCount = 53 +4370794 waitCount = 23 +4370795 ripCount = 25 +4370795 locktype1 = 2 +4370796 locktype2 = 6 +4370796 locktype3 = 2 +4370797 goalCount = 8 +4370797 goalTotal = 18 +4370798 otherCount = 24 +~~~ +4370799 CURRENTGOAL IS [4] +~~~ +4370799 UP 11 +4370799 1024 255 +4370853 DOWN 11 +4370853 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4370893 homeCount = 53 +4370893 waitCount = 23 +4370894 ripCount = 25 +4370894 locktype1 = 2 +4370895 locktype2 = 6 +4370895 locktype3 = 2 +4370896 goalCount = 8 +4370896 goalTotal = 18 +4370897 otherCount = 24 +~~~ +4370898 CURRENTGOAL IS [4] +~~~ +4374044 UP 4 +4374044 8 255 +~~~ +~~~ +4374070 outer reward +~~~ +4374070 8 524543 +~~~ +~~~ +4374256 DOWN 4 +4374256 0 524543 +~~~ +~~~ +4374277 0 524542 +~~~ +~~~ +4374279 0 524540 +~~~ +~~~ +4374281 0 524536 +~~~ +~~~ +4374283 0 524528 +~~~ +~~~ +4374284 0 524512 +~~~ +~~~ +4374286 0 524480 +~~~ +~~~ +4374288 0 524416 +~~~ +~~~ +4374290 0 524288 +~~~ +~~~ +4374292 0 524800 +4374293 homeCount = 53 +4374293 waitCount = 23 +4374294 ripCount = 25 +4374315 locktype1 = 2 +4374315 locktype2 = 6 +4374316 locktype3 = 2 +4374316 goalCount = 9 +4374317 goalTotal = 19 +4374317 otherCount = 24 +~~~ +4374318 8 524800 +4374520 8 512 +4374698 DOWN 4 +4374698 0 512 +4374706 8 512 +4374816 DOWN 4 +4374815 0 512 +4374836 8 512 +4374934 DOWN 4 +4374934 0 512 +4374972 8 512 +4375072 DOWN 4 +4375071 0 512 +4375096 8 512 +4375198 DOWN 4 +4375198 0 512 +4375232 8 512 +4375338 DOWN 4 +4375338 0 512 +4375353 8 512 +4375631 DOWN 4 +4375631 0 512 +4375642 8 512 +4379874 DOWN 4 +4379874 0 512 +4379885 8 512 +4380055 DOWN 4 +4380055 0 512 +4380062 8 512 +4381987 DOWN 4 +4381987 0 512 +4382016 8 512 +4382061 DOWN 4 +4382061 0 512 +4385877 UP 10 +4385878 waslock = 0 +4385877 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4385906 512 16777728 +~~~ +4385914 DOWN 10 +4385913 0 16777728 +~~~ +~~~ +4385944 0 16778752 +~~~ +4385945 UP 10 +4385945 waslock = 0 +4385945 512 16778752 +~~~ +4385947 homeCount = 54 +4385948 waitCount = 23 +4385948 ripCount = 25 +4385949 locktype1 = 2 +4385949 locktype2 = 6 +4385950 locktype3 = 2 +4385950 goalCount = 9 +4385951 goalTotal = 19 +4385972 otherCount = 24 +~~~ +4385972 512 16778240 +~~~ +4386055 512 1024 +4390253 DOWN 10 +4390253 0 1024 +~~~ +~~~ +~~~ +~~~ +4390279 homeCount = 54 +4390280 waitCount = 23 +4390280 ripCount = 25 +4390281 locktype1 = 2 +4390281 locktype2 = 6 +4390282 locktype3 = 2 +4390282 goalCount = 9 +4390283 goalTotal = 19 +4390283 otherCount = 24 +~~~ +4390329 UP 10 +4390330 waslock = 0 +4390329 512 1024 +~~~ +4390375 DOWN 10 +4390375 0 1024 +~~~ +~~~ +~~~ +~~~ +4390398 homeCount = 54 +4390399 waitCount = 23 +4390399 ripCount = 25 +4390400 locktype1 = 2 +4390400 locktype2 = 6 +4390401 locktype3 = 2 +4390401 goalCount = 9 +4390402 goalTotal = 19 +4390402 otherCount = 24 +~~~ +4391799 UP 11 +4391799 1024 1024 +4395467 DOWN 11 +4395467 0 1024 +4395532 UP 11 +4395532 1024 1024 +4398800 BEEP1 +4398800 BEEP2 +~~~ +~~~ +~~~ +4398827 1024 33555456 +~~~ +4398977 1024 1024 +4404797 DOWN 11 +4404797 0 1024 +~~~ +~~~ +4404815 0 0 +~~~ +~~~ +4404817 0 1 +~~~ +~~~ +4404819 0 3 +~~~ +~~~ +4404821 0 7 +~~~ +~~~ +4404823 0 15 +~~~ +4404824 UP 11 +4404824 1024 15 +~~~ +~~~ +~~~ +4404826 1024 63 +~~~ +~~~ +4404828 1024 127 +~~~ +~~~ +4404830 1024 255 +4404831 homeCount = 54 +4404831 waitCount = 23 +4404832 ripCount = 26 +4404853 locktype1 = 2 +4404854 locktype2 = 6 +4404854 locktype3 = 2 +4404855 goalCount = 9 +4404855 goalTotal = 19 +4404856 otherCount = 24 +~~~ +4404857 CURRENTGOAL IS [4] +~~~ +4404857 DOWN 11 +4404857 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +4404890 UP 11 +4404890 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4404902 homeCount = 54 +4404903 waitCount = 23 +4404903 ripCount = 26 +4404904 locktype1 = 2 +4404904 locktype2 = 6 +4404905 locktype3 = 2 +4404905 goalCount = 9 +4404906 goalTotal = 19 +4404906 otherCount = 24 +~~~ +4404907 CURRENTGOAL IS [4] +~~~ +4408442 DOWN 11 +4408442 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4408483 homeCount = 54 +4408483 waitCount = 23 +4408484 ripCount = 26 +4408484 locktype1 = 2 +4408485 locktype2 = 6 +4408485 locktype3 = 2 +4408486 goalCount = 9 +4408486 goalTotal = 19 +4408486 otherCount = 24 +~~~ +4408488 CURRENTGOAL IS [4] +~~~ +4411793 UP 4 +4411793 8 255 +~~~ +~~~ +4411820 outer reward +~~~ +4411820 8 524543 +~~~ +~~~ +4411825 outerreps = 12 +~~~ +~~~ +4412010 DOWN 4 +4412010 0 524543 +~~~ +~~~ +4412036 0 524542 +~~~ +~~~ +4412037 0 524540 +~~~ +~~~ +4412039 0 524536 +~~~ +~~~ +4412041 0 524528 +~~~ +~~~ +4412043 0 524512 +~~~ +~~~ +4412045 0 524480 +~~~ +~~~ +4412047 0 524416 +~~~ +~~~ +4412048 0 524288 +~~~ +~~~ +4412050 0 524800 +4412051 homeCount = 54 +4412052 waitCount = 23 +4412052 ripCount = 26 +4412073 locktype1 = 2 +4412074 locktype2 = 6 +4412074 locktype3 = 2 +4412075 goalCount = 0 +4412075 goalTotal = 20 +4412076 otherCount = 24 +~~~ +4412076 8 524800 +4412270 8 512 +4412461 DOWN 4 +4412461 0 512 +4412488 8 512 +4412620 DOWN 4 +4412620 0 512 +4412641 8 512 +4412756 DOWN 4 +4412756 0 512 +4412785 8 512 +4412892 DOWN 4 +4412892 0 512 +4412925 8 512 +4413034 DOWN 4 +4413034 0 512 +4413058 8 512 +4413170 DOWN 4 +4413170 0 512 +4413199 8 512 +4413313 DOWN 4 +4413313 0 512 +4413341 8 512 +4413460 DOWN 4 +4413460 0 512 +4413480 8 512 +4413605 DOWN 4 +4413605 0 512 +4413626 8 512 +4413754 DOWN 4 +4413754 0 512 +4413772 8 512 +4413907 DOWN 4 +4413907 0 512 +4413921 8 512 +4420599 DOWN 4 +4420599 0 512 +4420642 8 512 +4420716 DOWN 4 +4420716 0 512 +4425492 UP 10 +4425492 waslock = 0 +4425492 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4425523 512 16777728 +~~~ +4425673 512 512 +4428204 DOWN 10 +4428204 0 512 +~~~ +~~~ +4428226 0 2560 +~~~ +~~~ +4428228 0 2048 +4428229 homeCount = 55 +4428229 waitCount = 23 +4428230 ripCount = 26 +4428230 locktype1 = 2 +4428231 locktype2 = 6 +4428231 locktype3 = 2 +4428232 goalCount = 0 +4428232 goalTotal = 20 +4428233 otherCount = 24 +~~~ +4430289 UP 12 +4430289 2048 2048 +4435709 DOWN 12 +4435709 0 2048 +4435765 UP 12 +4435765 2048 2048 +4435789 CLICK1 +4435789 CLICK2 +~~~ +~~~ +~~~ +4435811 2048 67110912 +~~~ +4435961 2048 2048 +4442288 DOWN 12 +4442288 0 2048 +~~~ +~~~ +4442307 0 0 +~~~ +~~~ +4442309 0 1 +~~~ +~~~ +4442310 0 3 +~~~ +~~~ +4442312 0 7 +~~~ +~~~ +4442314 0 15 +~~~ +~~~ +4442316 0 31 +~~~ +~~~ +4442318 0 63 +~~~ +~~~ +4442319 0 127 +~~~ +~~~ +4442321 0 255 +4442322 homeCount = 55 +4442323 waitCount = 24 +4442323 ripCount = 26 +4442324 locktype1 = 2 +4442324 locktype2 = 6 +4442325 locktype3 = 2 +4442346 goalCount = 0 +4442346 goalTotal = 20 +4442347 otherCount = 24 +~~~ +4442348 CURRENTGOAL IS [6] +~~~ +4442348 UP 12 +4442348 2048 255 +4442406 DOWN 12 +4442406 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4442443 homeCount = 55 +4442443 waitCount = 24 +4442444 ripCount = 26 +4442444 locktype1 = 2 +4442445 locktype2 = 6 +4442445 locktype3 = 2 +4442446 goalCount = 0 +4442446 goalTotal = 20 +4442447 otherCount = 24 +~~~ +4442448 CURRENTGOAL IS [6] +~~~ +4442871 UP 12 +4442871 2048 255 +4444133 DOWN 12 +4444133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4444173 homeCount = 55 +4444173 waitCount = 24 +4444174 ripCount = 26 +4444174 locktype1 = 2 +4444175 locktype2 = 6 +4444175 locktype3 = 2 +4444176 goalCount = 0 +4444176 goalTotal = 20 +4444177 otherCount = 24 +~~~ +4444178 CURRENTGOAL IS [6] +~~~ +4446862 UP 4 +4446862 8 255 +~~~ +~~~ +4447080 DOWN 4 +4447080 0 255 +~~~ +~~~ +4447099 0 254 +~~~ +~~~ +4447101 0 252 +~~~ +~~~ +4447102 0 248 +~~~ +~~~ +4447104 0 240 +~~~ +~~~ +4447106 0 224 +~~~ +~~~ +4447108 0 192 +~~~ +~~~ +4447110 0 128 +~~~ +~~~ +4447112 0 0 +~~~ +~~~ +4447113 0 512 +4447114 homeCount = 55 +4447115 waitCount = 24 +4447115 ripCount = 26 +4447116 locktype1 = 2 +4447116 locktype2 = 6 +4447137 locktype3 = 2 +4447138 goalCount = 0 +4447138 goalTotal = 20 +4447139 otherCount = 25 +~~~ +4447139 8 512 +4447799 DOWN 4 +4447799 0 512 +4452075 UP 10 +4452076 waslock = 0 +4452075 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4452106 512 16777728 +~~~ +4452117 DOWN 10 +4452117 0 16777728 +4452125 UP 10 +4452125 waslock = 0 +4452125 512 16777728 +~~~ +~~~ +4452143 512 16779776 +~~~ +~~~ +4452145 512 16779264 +4452146 homeCount = 56 +4452147 waitCount = 24 +4452147 ripCount = 26 +4452148 locktype1 = 2 +4452148 locktype2 = 6 +4452149 locktype3 = 2 +4452149 goalCount = 0 +4452150 goalTotal = 20 +4452150 otherCount = 25 +~~~ +~~~ +4452256 512 2048 +4452265 DOWN 10 +4452265 0 2048 +4452277 UP 10 +4452277 waslock = 0 +4452277 512 2048 +~~~ +~~~ +~~~ +~~~ +4452287 homeCount = 56 +4452287 waitCount = 24 +4452288 ripCount = 26 +4452288 locktype1 = 2 +4452289 locktype2 = 6 +4452289 locktype3 = 2 +4452290 goalCount = 0 +4452290 goalTotal = 20 +4452291 otherCount = 25 +~~~ +~~~ +4456357 DOWN 10 +4456357 0 2048 +~~~ +~~~ +~~~ +~~~ +4456382 homeCount = 56 +4456382 waitCount = 24 +4456383 ripCount = 26 +4456383 locktype1 = 2 +4456384 locktype2 = 6 +4456384 locktype3 = 2 +4456385 goalCount = 0 +4456385 goalTotal = 20 +4456386 otherCount = 25 +~~~ +4458260 UP 12 +4458260 2048 2048 +4461699 DOWN 12 +4461699 0 2048 +4461721 UP 12 +4461721 2048 2048 +4461856 DOWN 12 +4461856 0 2048 +4461869 UP 12 +4461869 2048 2048 +4461961 DOWN 12 +4461961 0 2048 +4461992 UP 12 +4461992 2048 2048 +4462760 CLICK1 +4462760 CLICK2 +~~~ +~~~ +~~~ +4462782 2048 67110912 +~~~ +4462932 2048 2048 +4469122 DOWN 12 +4469122 0 2048 +4469136 UP 12 +4469136 2048 2048 +~~~ +~~~ +4469143 2048 0 +~~~ +~~~ +4469145 2048 1 +~~~ +~~~ +4469146 2048 3 +~~~ +~~~ +4469148 2048 7 +~~~ +~~~ +4469150 2048 15 +~~~ +~~~ +4469152 2048 31 +~~~ +~~~ +4469154 2048 63 +~~~ +~~~ +4469155 2048 127 +~~~ +~~~ +4469157 2048 255 +4469158 homeCount = 56 +4469159 waitCount = 25 +4469159 ripCount = 26 +4469160 locktype1 = 2 +4469181 locktype2 = 6 +4469181 locktype3 = 2 +4469181 goalCount = 0 +4469182 goalTotal = 20 +4469182 otherCount = 25 +~~~ +4469183 CURRENTGOAL IS [6] +~~~ +4469216 DOWN 12 +4469216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4469257 homeCount = 56 +4469258 waitCount = 25 +4469258 ripCount = 26 +4469259 locktype1 = 2 +4469259 locktype2 = 6 +4469260 locktype3 = 2 +4469260 goalCount = 0 +4469261 goalTotal = 20 +4469261 otherCount = 25 +~~~ +4469262 CURRENTGOAL IS [6] +~~~ +4478752 UP 4 +4478752 8 255 +~~~ +~~~ +4479850 DOWN 4 +4479850 0 255 +4479863 8 255 +~~~ +~~~ +4479870 8 254 +~~~ +~~~ +4479872 8 252 +~~~ +~~~ +4479874 8 248 +~~~ +~~~ +4479876 8 240 +~~~ +~~~ +4479877 8 224 +~~~ +~~~ +4479879 8 192 +~~~ +~~~ +4479881 8 128 +~~~ +~~~ +4479883 8 0 +~~~ +~~~ +4479885 8 512 +4479886 homeCount = 56 +4479886 waitCount = 25 +4479887 ripCount = 26 +4479887 locktype1 = 2 +4479888 locktype2 = 6 +4479909 locktype3 = 2 +4479909 goalCount = 0 +4479910 goalTotal = 20 +4479910 otherCount = 26 +~~~ +4480518 DOWN 4 +4480518 0 512 +4480662 8 512 +4480695 DOWN 4 +4480695 0 512 +4488328 UP 10 +4488329 waslock = 0 +4488328 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4488357 512 16777728 +~~~ +4488507 512 512 +4491647 DOWN 10 +4491647 0 512 +~~~ +~~~ +4491671 0 1536 +~~~ +~~~ +4491673 0 1024 +4491674 homeCount = 57 +4491675 waitCount = 25 +4491675 ripCount = 26 +4491676 locktype1 = 2 +4491676 locktype2 = 6 +4491677 locktype3 = 2 +4491677 goalCount = 0 +4491678 goalTotal = 20 +4491678 otherCount = 26 +~~~ +4491681 UP 10 +4491681 waslock = 0 +4491681 512 1024 +~~~ +4491732 DOWN 10 +4491732 0 1024 +~~~ +~~~ +~~~ +~~~ +4491759 homeCount = 57 +4491760 waitCount = 25 +4491760 ripCount = 26 +4491761 locktype1 = 2 +4491761 locktype2 = 6 +4491762 locktype3 = 2 +4491762 goalCount = 0 +4491763 goalTotal = 20 +4491763 otherCount = 26 +~~~ +4493146 UP 11 +4493146 1024 1024 +4496146 BEEP1 +4496146 BEEP2 +~~~ +~~~ +~~~ +4496174 1024 33555456 +~~~ +4496324 1024 1024 +4502061 DOWN 11 +4502061 0 1024 +4502078 UP 11 +4502078 1024 1024 +~~~ +~~~ +4502085 1024 0 +~~~ +~~~ +4502087 1024 1 +~~~ +~~~ +4502089 1024 3 +~~~ +~~~ +4502091 1024 7 +~~~ +~~~ +4502093 1024 15 +~~~ +~~~ +4502094 1024 31 +~~~ +~~~ +4502096 1024 63 +~~~ +~~~ +4502098 1024 127 +~~~ +~~~ +4502100 1024 255 +4502101 homeCount = 57 +4502101 waitCount = 25 +4502102 ripCount = 27 +4502102 locktype1 = 2 +4502123 locktype2 = 6 +4502124 locktype3 = 2 +4502124 goalCount = 0 +4502124 goalTotal = 20 +4502125 otherCount = 26 +~~~ +4502126 CURRENTGOAL IS [6] +~~~ +4502199 DOWN 11 +4502199 0 255 +4502220 UP 11 +4502220 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4502253 homeCount = 57 +4502254 waitCount = 25 +4502254 ripCount = 27 +4502255 locktype1 = 2 +4502255 locktype2 = 6 +4502256 locktype3 = 2 +4502256 goalCount = 0 +4502256 goalTotal = 20 +4502257 otherCount = 26 +~~~ +4502258 CURRENTGOAL IS [6] +~~~ +4503858 DOWN 11 +4503858 0 255 +4503869 UP 11 +4503869 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4503906 homeCount = 57 +4503907 waitCount = 25 +4503907 ripCount = 27 +4503908 locktype1 = 2 +4503908 locktype2 = 6 +4503909 locktype3 = 2 +4503909 goalCount = 0 +4503910 goalTotal = 20 +4503910 otherCount = 26 +~~~ +4503911 CURRENTGOAL IS [6] +~~~ +4503932 DOWN 11 +4503932 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4503967 homeCount = 57 +4503967 waitCount = 25 +4503968 ripCount = 27 +4503968 locktype1 = 2 +4503969 locktype2 = 6 +4503969 locktype3 = 2 +4503970 goalCount = 0 +4503970 goalTotal = 20 +4503971 otherCount = 26 +~~~ +4503972 CURRENTGOAL IS [6] +~~~ +4508236 UP 7 +4508236 64 255 +~~~ +~~~ +4509602 DOWN 7 +4509602 0 255 +~~~ +~~~ +4509629 0 254 +~~~ +~~~ +4509631 0 252 +~~~ +~~~ +4509632 0 248 +~~~ +~~~ +4509634 0 240 +~~~ +~~~ +4509636 0 224 +~~~ +~~~ +4509638 0 192 +~~~ +~~~ +4509640 0 128 +~~~ +~~~ +4509642 0 0 +~~~ +~~~ +4509643 0 512 +4509644 homeCount = 57 +4509645 waitCount = 25 +4509645 ripCount = 27 +4509646 locktype1 = 2 +4509646 locktype2 = 6 +4509667 locktype3 = 2 +4509668 goalCount = 0 +4509668 goalTotal = 20 +4509669 otherCount = 27 +~~~ +4513958 UP 10 +4513958 waslock = 0 +4513958 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4513985 512 16777728 +~~~ +4514134 512 512 +4518768 DOWN 10 +4518768 0 512 +4518781 UP 10 +4518781 waslock = 0 +4518781 512 512 +~~~ +~~~ +4518788 512 2560 +~~~ +~~~ +4518790 512 2048 +4518791 homeCount = 58 +4518792 waitCount = 25 +4518792 ripCount = 27 +4518793 locktype1 = 2 +4518793 locktype2 = 6 +4518794 locktype3 = 2 +4518794 goalCount = 0 +4518795 goalTotal = 20 +4518795 otherCount = 27 +~~~ +~~~ +4518875 DOWN 10 +4518875 0 2048 +~~~ +~~~ +~~~ +~~~ +4518904 homeCount = 58 +4518905 waitCount = 25 +4518905 ripCount = 27 +4518906 locktype1 = 2 +4518906 locktype2 = 6 +4518907 locktype3 = 2 +4518907 goalCount = 0 +4518908 goalTotal = 20 +4518908 otherCount = 27 +~~~ +4518933 UP 10 +4518934 waslock = 0 +4518933 512 2048 +~~~ +4518972 DOWN 10 +4518972 0 2048 +~~~ +~~~ +~~~ +~~~ +4518998 homeCount = 58 +4518998 waitCount = 25 +4518999 ripCount = 27 +4518999 locktype1 = 2 +4519000 locktype2 = 6 +4519000 locktype3 = 2 +4519001 goalCount = 0 +4519001 goalTotal = 20 +4519002 otherCount = 27 +~~~ +4522457 UP 12 +4522457 2048 2048 +4523944 DOWN 12 +4523944 0 2048 +4523959 UP 12 +4523959 2048 2048 +4525297 DOWN 12 +4525297 0 2048 +4525313 UP 12 +4525313 2048 2048 +4525457 CLICK1 +4525457 CLICK2 +~~~ +~~~ +~~~ +4525481 2048 67110912 +~~~ +4525631 2048 2048 +4533270 DOWN 12 +4533270 0 2048 +~~~ +~~~ +4533292 0 0 +~~~ +~~~ +4533294 0 1 +~~~ +~~~ +4533295 0 3 +~~~ +~~~ +4533297 0 7 +~~~ +~~~ +4533299 0 15 +~~~ +~~~ +4533301 0 31 +~~~ +~~~ +4533303 0 63 +~~~ +~~~ +4533304 0 127 +~~~ +~~~ +4533306 0 255 +4533307 homeCount = 58 +4533308 waitCount = 26 +4533308 ripCount = 27 +4533309 locktype1 = 2 +4533309 locktype2 = 6 +4533310 locktype3 = 2 +4533331 goalCount = 0 +4533331 goalTotal = 20 +4533332 otherCount = 27 +~~~ +4533333 CURRENTGOAL IS [6] +~~~ +4536223 UP 1 +4536223 1 255 +~~~ +~~~ +4537485 DOWN 1 +4537485 0 255 +~~~ +~~~ +4537514 0 254 +~~~ +~~~ +4537516 0 252 +~~~ +~~~ +4537518 0 248 +~~~ +~~~ +4537519 0 240 +~~~ +~~~ +4537521 0 224 +~~~ +~~~ +4537523 0 192 +~~~ +~~~ +4537525 0 128 +~~~ +~~~ +4537527 0 0 +~~~ +~~~ +4537529 0 512 +4537530 homeCount = 58 +4537530 waitCount = 26 +4537531 ripCount = 27 +4537531 locktype1 = 2 +4537532 locktype2 = 6 +4537553 locktype3 = 2 +4537553 goalCount = 0 +4537554 goalTotal = 20 +4537554 otherCount = 28 +~~~ +4541072 UP 10 +4541073 waslock = 0 +4541072 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4541100 512 16777728 +~~~ +4541113 DOWN 10 +4541113 0 16777728 +4541130 UP 10 +4541130 waslock = 0 +4541130 512 16777728 +~~~ +~~~ +4541134 512 16779776 +~~~ +~~~ +4541136 512 16779264 +4541137 homeCount = 59 +4541138 waitCount = 26 +4541138 ripCount = 27 +4541139 locktype1 = 2 +4541139 locktype2 = 6 +4541139 locktype3 = 2 +4541140 goalCount = 0 +4541140 goalTotal = 20 +4541162 otherCount = 28 +~~~ +~~~ +4541250 512 2048 +4544625 DOWN 10 +4544625 0 2048 +4544638 UP 10 +4544638 waslock = 0 +4544638 512 2048 +~~~ +~~~ +~~~ +~~~ +4544662 homeCount = 59 +4544663 waitCount = 26 +4544663 ripCount = 27 +4544664 locktype1 = 2 +4544664 locktype2 = 6 +4544665 locktype3 = 2 +4544665 goalCount = 0 +4544666 goalTotal = 20 +4544666 otherCount = 28 +~~~ +~~~ +4544737 DOWN 10 +4544737 0 2048 +~~~ +~~~ +~~~ +~~~ +4544772 homeCount = 59 +4544773 waitCount = 26 +4544773 ripCount = 27 +4544774 locktype1 = 2 +4544774 locktype2 = 6 +4544775 locktype3 = 2 +4544775 goalCount = 0 +4544776 goalTotal = 20 +4544776 otherCount = 28 +~~~ +4544787 UP 10 +4544787 waslock = 0 +4544787 512 2048 +~~~ +4544820 DOWN 10 +4544820 0 2048 +~~~ +~~~ +~~~ +~~~ +4544842 homeCount = 59 +4544842 waitCount = 26 +4544843 ripCount = 27 +4544843 locktype1 = 2 +4544844 locktype2 = 6 +4544844 locktype3 = 2 +4544845 goalCount = 0 +4544845 goalTotal = 20 +4544846 otherCount = 28 +~~~ +4546342 UP 12 +4546342 2048 2048 +4548004 DOWN 12 +4548004 0 2048 +4548042 UP 12 +4548042 2048 2048 +4549331 DOWN 12 +4549331 0 2048 +4549341 UP 12 +4549341 2048 2048 +4549342 CLICK1 +4549343 CLICK2 +~~~ +~~~ +~~~ +4549361 2048 67110912 +~~~ +4549511 2048 2048 +4555132 DOWN 12 +4555132 0 2048 +~~~ +~~~ +4555156 0 0 +~~~ +~~~ +4555158 0 1 +~~~ +~~~ +4555159 0 3 +~~~ +~~~ +4555161 0 7 +~~~ +~~~ +4555163 0 15 +~~~ +~~~ +4555165 0 31 +~~~ +~~~ +4555167 0 63 +~~~ +4555168 UP 12 +4555168 2048 63 +~~~ +~~~ +4555170 2048 127 +~~~ +4555171 homeCount = 59 +4555172 waitCount = 27 +4555172 ripCount = 27 +4555173 locktype1 = 2 +4555194 locktype2 = 6 +4555194 locktype3 = 2 +4555194 goalCount = 0 +4555195 goalTotal = 20 +4555195 otherCount = 28 +~~~ +4555197 CURRENTGOAL IS [6] +~~~ +4555197 2048 255 +4555226 DOWN 12 +4555226 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4555259 homeCount = 59 +4555259 waitCount = 27 +4555260 ripCount = 27 +4555260 locktype1 = 2 +4555261 locktype2 = 6 +4555261 locktype3 = 2 +4555262 goalCount = 0 +4555262 goalTotal = 20 +4555263 otherCount = 28 +~~~ +4555264 CURRENTGOAL IS [6] +~~~ +4578122 UP 1 +4578122 1 255 +~~~ +~~~ +4578407 DOWN 1 +4578407 0 255 +~~~ +~~~ +4578425 0 254 +~~~ +~~~ +4578427 0 252 +~~~ +~~~ +4578428 0 248 +~~~ +~~~ +4578430 0 240 +~~~ +~~~ +4578432 0 224 +~~~ +~~~ +4578434 0 192 +~~~ +~~~ +4578436 0 128 +~~~ +~~~ +4578438 0 0 +~~~ +~~~ +4578439 0 512 +4578440 homeCount = 59 +4578441 waitCount = 27 +4578441 ripCount = 27 +4578442 locktype1 = 2 +4578442 locktype2 = 6 +4578463 locktype3 = 2 +4578464 goalCount = 0 +4578464 goalTotal = 20 +4578465 otherCount = 29 +~~~ +4578465 1 512 +4578663 DOWN 1 +4578663 0 512 +4582924 1 512 +4582970 DOWN 1 +4582970 0 512 +4591382 UP 10 +4591383 waslock = 0 +4591382 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4591413 512 16777728 +~~~ +4591509 DOWN 10 +4591509 0 16777728 +4591521 UP 10 +4591521 waslock = 0 +4591521 512 16777728 +~~~ +~~~ +4591537 512 16779776 +~~~ +~~~ +4591539 512 16779264 +4591540 homeCount = 60 +4591541 waitCount = 27 +4591541 ripCount = 27 +4591542 locktype1 = 2 +4591542 locktype2 = 6 +4591543 locktype3 = 2 +4591543 goalCount = 0 +4591544 goalTotal = 20 +4591544 otherCount = 29 +~~~ +~~~ +4591566 512 2048 +4591576 DOWN 10 +4591576 0 2048 +~~~ +~~~ +~~~ +~~~ +4591602 homeCount = 60 +4591603 waitCount = 27 +4591603 ripCount = 27 +4591604 locktype1 = 2 +4591604 locktype2 = 6 +4591605 locktype3 = 2 +4591605 goalCount = 0 +4591606 goalTotal = 20 +4591606 otherCount = 29 +~~~ +4591669 UP 10 +4591669 waslock = 0 +4591669 512 2048 +~~~ +4591896 DOWN 10 +4591896 0 2048 +4591916 UP 10 +4591917 waslock = 0 +4591916 512 2048 +~~~ +~~~ +~~~ +~~~ +4591922 homeCount = 60 +4591922 waitCount = 27 +4591923 ripCount = 27 +4591923 locktype1 = 2 +4591924 locktype2 = 6 +4591924 locktype3 = 2 +4591925 goalCount = 0 +4591925 goalTotal = 20 +4591926 otherCount = 29 +~~~ +~~~ +4592040 DOWN 10 +4592040 0 2048 +~~~ +~~~ +~~~ +~~~ +4592063 homeCount = 60 +4592064 waitCount = 27 +4592064 ripCount = 27 +4592065 locktype1 = 2 +4592065 locktype2 = 6 +4592066 locktype3 = 2 +4592066 goalCount = 0 +4592067 goalTotal = 20 +4592067 otherCount = 29 +~~~ +4592076 UP 10 +4592076 waslock = 0 +4592076 512 2048 +~~~ +4592555 DOWN 10 +4592555 0 2048 +4592571 UP 10 +4592571 waslock = 0 +4592571 512 2048 +~~~ +~~~ +~~~ +~~~ +4592596 homeCount = 60 +4592597 waitCount = 27 +4592597 ripCount = 27 +4592598 locktype1 = 2 +4592598 locktype2 = 6 +4592599 locktype3 = 2 +4592599 goalCount = 0 +4592600 goalTotal = 20 +4592600 otherCount = 29 +~~~ +~~~ +4596305 DOWN 10 +4596305 0 2048 +4596315 UP 10 +4596315 waslock = 0 +4596315 512 2048 +~~~ +~~~ +~~~ +~~~ +4596335 homeCount = 60 +4596335 waitCount = 27 +4596336 ripCount = 27 +4596336 locktype1 = 2 +4596337 locktype2 = 6 +4596337 locktype3 = 2 +4596338 goalCount = 0 +4596338 goalTotal = 20 +4596338 otherCount = 29 +~~~ +~~~ +4596388 DOWN 10 +4596388 0 2048 +~~~ +~~~ +~~~ +~~~ +4596418 homeCount = 60 +4596418 waitCount = 27 +4596419 ripCount = 27 +4596419 locktype1 = 2 +4596420 locktype2 = 6 +4596420 locktype3 = 2 +4596421 goalCount = 0 +4596421 goalTotal = 20 +4596422 otherCount = 29 +~~~ +4598400 UP 12 +4598400 2048 2048 +4599231 DOWN 12 +4599231 0 2048 +4599308 UP 12 +4599308 2048 2048 +4599343 DOWN 12 +4599343 0 2048 +4599349 UP 12 +4599349 2048 2048 +4599898 DOWN 12 +4599898 0 2048 +4599929 UP 12 +4599929 2048 2048 +4599943 DOWN 12 +4599943 0 2048 +4599987 UP 12 +4599987 2048 2048 +4601873 DOWN 12 +4601873 0 2048 +4601883 UP 12 +4601883 2048 2048 +4601892 DOWN 12 +4601892 0 2048 +4601911 UP 12 +4601911 2048 2048 +4602165 DOWN 12 +4602165 0 2048 +4602189 UP 12 +4602189 2048 2048 +4602226 DOWN 12 +4602226 0 2048 +4602261 UP 12 +4602261 2048 2048 +4602431 DOWN 12 +4602431 0 2048 +4602447 UP 12 +4602447 2048 2048 +4604401 CLICK1 +4604401 CLICK2 +~~~ +~~~ +~~~ +4604423 2048 67110912 +~~~ +4604573 2048 2048 +4611485 DOWN 12 +4611485 0 2048 +~~~ +~~~ +4611512 0 0 +~~~ +~~~ +4611513 0 1 +~~~ +~~~ +4611515 0 3 +~~~ +~~~ +4611517 0 7 +~~~ +~~~ +4611519 0 15 +~~~ +~~~ +4611521 0 31 +~~~ +4611522 UP 12 +4611522 2048 31 +~~~ +~~~ +4611524 2048 63 +~~~ +~~~ +4611526 2048 127 +~~~ +4611527 2048 255 +4611528 homeCount = 60 +4611528 waitCount = 28 +4611529 ripCount = 27 +4611550 locktype1 = 2 +4611550 locktype2 = 6 +4611551 locktype3 = 2 +4611551 goalCount = 0 +4611552 goalTotal = 20 +4611552 otherCount = 29 +~~~ +4611553 CURRENTGOAL IS [6] +~~~ +4611569 DOWN 12 +4611569 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4611608 homeCount = 60 +4611608 waitCount = 28 +4611609 ripCount = 27 +4611609 locktype1 = 2 +4611610 locktype2 = 6 +4611610 locktype3 = 2 +4611611 goalCount = 0 +4611611 goalTotal = 20 +4611612 otherCount = 29 +~~~ +4611613 CURRENTGOAL IS [6] +~~~ +4621158 UP 5 +4621158 16 255 +~~~ +~~~ +4621238 DOWN 5 +4621238 0 255 +~~~ +~~~ +4621262 0 254 +~~~ +~~~ +4621263 0 252 +~~~ +~~~ +4621265 0 248 +~~~ +~~~ +4621267 0 240 +~~~ +~~~ +4621269 0 224 +~~~ +~~~ +4621271 0 192 +~~~ +~~~ +4621272 0 128 +~~~ +~~~ +4621274 0 0 +~~~ +~~~ +4621276 0 512 +4621277 homeCount = 60 +4621278 waitCount = 28 +4621278 ripCount = 27 +4621279 locktype1 = 2 +4621279 locktype2 = 6 +4621300 locktype3 = 2 +4621301 goalCount = 0 +4621301 goalTotal = 20 +4621302 otherCount = 30 +~~~ +4621492 16 512 +4621883 DOWN 5 +4621883 0 512 +4653143 UP 10 +4653144 waslock = 0 +4653143 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4653177 512 16777728 +~~~ +4653234 DOWN 10 +4653234 0 16777728 +~~~ +~~~ +4653265 0 16779776 +~~~ +~~~ +4653267 0 16779264 +4653268 homeCount = 61 +4653269 waitCount = 28 +4653269 ripCount = 27 +4653270 locktype1 = 2 +4653270 locktype2 = 6 +4653271 locktype3 = 2 +4653271 goalCount = 0 +4653272 goalTotal = 20 +4653272 otherCount = 30 +~~~ +4653327 0 2048 +4653569 UP 10 +4653569 waslock = 0 +4653569 512 2048 +~~~ +4659370 DOWN 10 +4659370 0 2048 +~~~ +~~~ +~~~ +~~~ +4659397 homeCount = 61 +4659397 waitCount = 28 +4659398 ripCount = 27 +4659398 locktype1 = 2 +4659399 locktype2 = 6 +4659399 locktype3 = 2 +4659400 goalCount = 0 +4659400 goalTotal = 20 +4659401 otherCount = 30 +~~~ +4659401 UP 10 +4659402 waslock = 0 +4659401 512 2048 +~~~ +4659484 DOWN 10 +4659484 0 2048 +~~~ +~~~ +~~~ +~~~ +4659507 homeCount = 61 +4659507 waitCount = 28 +4659508 ripCount = 27 +4659508 locktype1 = 2 +4659509 locktype2 = 6 +4659509 locktype3 = 2 +4659510 goalCount = 0 +4659510 goalTotal = 20 +4659511 otherCount = 30 +~~~ +4662675 UP 12 +4662675 2048 2048 +4664127 DOWN 12 +4664127 0 2048 +4664217 UP 12 +4664217 2048 2048 +4664276 DOWN 12 +4664276 0 2048 +4664339 UP 12 +4664339 2048 2048 +4664365 DOWN 12 +4664365 0 2048 +4664394 UP 12 +4664394 2048 2048 +4664592 DOWN 12 +4664592 0 2048 +4664696 UP 12 +4664696 2048 2048 +4666175 CLICK1 +4666175 CLICK2 +~~~ +~~~ +~~~ +4666193 2048 67110912 +~~~ +4666343 2048 2048 +4673291 DOWN 12 +4673291 0 2048 +~~~ +~~~ +4673313 0 0 +~~~ +~~~ +4673315 0 1 +~~~ +~~~ +4673317 0 3 +~~~ +~~~ +4673319 0 7 +~~~ +~~~ +4673321 0 15 +~~~ +~~~ +4673322 0 31 +~~~ +~~~ +4673324 0 63 +~~~ +~~~ +4673326 0 127 +~~~ +~~~ +4673328 0 255 +4673329 homeCount = 61 +4673329 waitCount = 29 +4673330 ripCount = 27 +4673330 locktype1 = 2 +4673331 locktype2 = 6 +4673331 locktype3 = 2 +4673352 goalCount = 0 +4673353 goalTotal = 20 +4673353 otherCount = 30 +~~~ +4673354 CURRENTGOAL IS [6] +~~~ +4685779 UP 4 +4685779 8 255 +~~~ +~~~ +4686370 DOWN 4 +4686370 0 255 +~~~ +~~~ +4686393 0 254 +~~~ +~~~ +4686395 0 252 +~~~ +~~~ +4686397 0 248 +~~~ +~~~ +4686399 0 240 +~~~ +~~~ +4686400 0 224 +~~~ +~~~ +4686402 0 192 +~~~ +~~~ +4686404 0 128 +~~~ +~~~ +4686406 0 0 +~~~ +~~~ +4686408 0 512 +4686409 homeCount = 61 +4686409 waitCount = 29 +4686410 ripCount = 27 +4686410 locktype1 = 2 +4686411 locktype2 = 6 +4686432 locktype3 = 2 +4686432 goalCount = 0 +4686433 goalTotal = 20 +4686433 otherCount = 31 +~~~ +4686950 8 512 +4687129 DOWN 4 +4687129 0 512 +4691150 UP 10 +4691150 waslock = 0 +4691150 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4691178 512 16777728 +~~~ +4691328 512 512 +4694660 DOWN 10 +4694660 0 512 +~~~ +~~~ +4694682 0 2560 +~~~ +~~~ +4694684 0 2048 +4694685 homeCount = 62 +4694685 waitCount = 29 +4694686 ripCount = 27 +4694686 locktype1 = 2 +4694687 locktype2 = 6 +4694687 locktype3 = 2 +4694688 goalCount = 0 +4694688 goalTotal = 20 +4694689 otherCount = 31 +~~~ +4697293 UP 12 +4697293 2048 2048 +4698720 DOWN 12 +4698720 0 2048 +4698799 UP 12 +4698799 2048 2048 +4700121 DOWN 12 +4700121 0 2048 +4700144 UP 12 +4700144 2048 2048 +4700294 CLICK1 +4700294 CLICK2 +~~~ +~~~ +~~~ +4700314 2048 67110912 +~~~ +4700464 2048 2048 +4707458 DOWN 12 +4707458 0 2048 +~~~ +~~~ +4707482 0 0 +~~~ +~~~ +4707484 0 1 +~~~ +~~~ +4707485 0 3 +~~~ +~~~ +4707487 0 7 +~~~ +~~~ +4707489 0 15 +~~~ +~~~ +4707491 0 31 +~~~ +~~~ +4707493 0 63 +~~~ +~~~ +4707495 0 127 +~~~ +~~~ +4707496 0 255 +4707497 homeCount = 62 +4707498 waitCount = 30 +4707498 ripCount = 27 +4707499 locktype1 = 2 +4707499 locktype2 = 6 +4707521 locktype3 = 2 +4707521 goalCount = 0 +4707522 goalTotal = 20 +4707522 otherCount = 31 +~~~ +4707523 CURRENTGOAL IS [6] +~~~ +4708450 UP 12 +4708450 2048 255 +4708630 DOWN 12 +4708630 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4708670 homeCount = 62 +4708670 waitCount = 30 +4708671 ripCount = 27 +4708671 locktype1 = 2 +4708672 locktype2 = 6 +4708672 locktype3 = 2 +4708673 goalCount = 0 +4708673 goalTotal = 20 +4708674 otherCount = 31 +~~~ +4708675 CURRENTGOAL IS [6] +~~~ +4712657 UP 8 +4712657 128 255 +~~~ +~~~ +4713151 DOWN 8 +4713151 0 255 +~~~ +~~~ +4713172 0 254 +~~~ +~~~ +4713174 0 252 +~~~ +~~~ +4713176 0 248 +~~~ +~~~ +4713178 0 240 +~~~ +~~~ +4713180 0 224 +~~~ +~~~ +4713181 0 192 +~~~ +~~~ +4713183 0 128 +~~~ +~~~ +4713185 0 0 +~~~ +~~~ +4713187 0 512 +4713188 homeCount = 62 +4713188 waitCount = 30 +4713189 ripCount = 27 +4713189 locktype1 = 2 +4713190 locktype2 = 6 +4713211 locktype3 = 2 +4713211 goalCount = 0 +4713212 goalTotal = 20 +4713212 otherCount = 32 +~~~ +4717890 UP 10 +4717891 waslock = 0 +4717890 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4717919 512 16777728 +~~~ +4718069 512 512 +4718228 DOWN 10 +4718228 0 512 +~~~ +~~~ +4718252 0 2560 +~~~ +~~~ +4718254 0 2048 +4718255 homeCount = 63 +4718256 waitCount = 30 +4718256 ripCount = 27 +4718257 locktype1 = 2 +4718257 locktype2 = 6 +4718258 locktype3 = 2 +4718258 goalCount = 0 +4718259 goalTotal = 20 +4718259 otherCount = 32 +~~~ +4718277 UP 10 +4718277 waslock = 0 +4718277 512 2048 +~~~ +4723383 DOWN 10 +4723383 0 2048 +~~~ +~~~ +~~~ +~~~ +4723407 homeCount = 63 +4723408 waitCount = 30 +4723408 ripCount = 27 +4723409 locktype1 = 2 +4723409 locktype2 = 6 +4723409 locktype3 = 2 +4723410 goalCount = 0 +4723410 goalTotal = 20 +4723411 otherCount = 32 +~~~ +4723434 UP 10 +4723434 waslock = 0 +4723434 512 2048 +~~~ +4723461 DOWN 10 +4723461 0 2048 +~~~ +~~~ +~~~ +~~~ +4723486 homeCount = 63 +4723487 waitCount = 30 +4723487 ripCount = 27 +4723488 locktype1 = 2 +4723488 locktype2 = 6 +4723489 locktype3 = 2 +4723489 goalCount = 0 +4723490 goalTotal = 20 +4723490 otherCount = 32 +~~~ +4725181 UP 12 +4725181 2048 2048 +4730467 DOWN 12 +4730467 0 2048 +4730514 UP 12 +4730514 2048 2048 +4732181 CLICK1 +4732181 CLICK2 +~~~ +~~~ +~~~ +4732205 2048 67110912 +~~~ +4732354 2048 2048 +4741145 DOWN 12 +4741145 0 2048 +~~~ +~~~ +4741163 0 0 +~~~ +~~~ +4741165 0 1 +~~~ +~~~ +4741167 0 3 +~~~ +~~~ +4741169 0 7 +~~~ +~~~ +4741171 0 15 +~~~ +~~~ +4741172 0 31 +~~~ +~~~ +4741174 0 63 +~~~ +~~~ +4741176 0 127 +~~~ +~~~ +4741178 0 255 +4741179 homeCount = 63 +4741179 waitCount = 31 +4741180 ripCount = 27 +4741180 locktype1 = 2 +4741181 locktype2 = 6 +4741202 locktype3 = 2 +4741203 goalCount = 0 +4741203 goalTotal = 20 +4741204 otherCount = 32 +~~~ +4741205 CURRENTGOAL IS [6] +~~~ +4744871 UP 4 +4744871 8 255 +~~~ +~~~ +4745068 DOWN 4 +4745068 0 255 +~~~ +~~~ +4745095 0 254 +~~~ +~~~ +4745097 0 252 +~~~ +~~~ +4745099 0 248 +~~~ +~~~ +4745101 0 240 +~~~ +~~~ +4745102 0 224 +~~~ +~~~ +4745104 0 192 +~~~ +~~~ +4745106 0 128 +~~~ +~~~ +4745108 0 0 +~~~ +~~~ +4745110 0 512 +4745111 homeCount = 63 +4745111 waitCount = 31 +4745112 ripCount = 27 +4745112 locktype1 = 2 +4745113 locktype2 = 6 +4745134 locktype3 = 2 +4745134 goalCount = 0 +4745135 goalTotal = 20 +4745135 otherCount = 33 +~~~ +4749055 UP 10 +4749055 waslock = 0 +4749055 512 512 +4749065 DOWN 10 +4749065 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4749082 0 16777728 +~~~ +~~~ +~~~ +4749085 0 16779776 +~~~ +~~~ +4749087 0 16779264 +4749088 homeCount = 64 +4749088 waitCount = 31 +4749089 ripCount = 27 +4749089 locktype1 = 2 +4749089 locktype2 = 6 +4749090 locktype3 = 2 +4749090 goalCount = 0 +4749091 goalTotal = 20 +4749091 otherCount = 33 +~~~ +4749164 UP 10 +4749165 waslock = 0 +4749164 512 16779264 +~~~ +4749232 512 2048 +4752944 DOWN 10 +4752944 0 2048 +~~~ +~~~ +~~~ +~~~ +4752969 homeCount = 64 +4752969 waitCount = 31 +4752970 ripCount = 27 +4752970 locktype1 = 2 +4752971 locktype2 = 6 +4752971 locktype3 = 2 +4752972 goalCount = 0 +4752972 goalTotal = 20 +4752972 otherCount = 33 +~~~ +4752973 UP 10 +4752973 waslock = 0 +4752973 512 2048 +~~~ +4753030 DOWN 10 +4753030 0 2048 +~~~ +~~~ +~~~ +~~~ +4753060 homeCount = 64 +4753061 waitCount = 31 +4753061 ripCount = 27 +4753062 locktype1 = 2 +4753062 locktype2 = 6 +4753063 locktype3 = 2 +4753063 goalCount = 0 +4753064 goalTotal = 20 +4753064 otherCount = 33 +~~~ +4754833 UP 12 +4754833 2048 2048 +4758334 CLICK1 +4758334 CLICK2 +~~~ +~~~ +~~~ +4758357 2048 67110912 +~~~ +4758507 2048 2048 +4765227 DOWN 12 +4765226 0 2048 +~~~ +~~~ +4765245 0 0 +~~~ +~~~ +4765247 0 1 +~~~ +~~~ +4765249 0 3 +~~~ +~~~ +4765251 0 7 +~~~ +~~~ +4765253 0 15 +~~~ +~~~ +4765254 0 31 +~~~ +~~~ +4765256 0 63 +~~~ +~~~ +4765258 0 127 +~~~ +~~~ +4765260 0 255 +4765261 homeCount = 64 +4765261 waitCount = 32 +4765262 ripCount = 27 +4765262 locktype1 = 2 +4765263 locktype2 = 6 +4765284 locktype3 = 2 +4765284 goalCount = 0 +4765285 goalTotal = 20 +4765285 otherCount = 33 +~~~ +4765286 CURRENTGOAL IS [6] +~~~ +4765287 UP 12 +4765287 2048 255 +4765315 DOWN 12 +4765315 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4765350 homeCount = 64 +4765351 waitCount = 32 +4765351 ripCount = 27 +4765352 locktype1 = 2 +4765352 locktype2 = 6 +4765353 locktype3 = 2 +4765353 goalCount = 0 +4765354 goalTotal = 20 +4765354 otherCount = 33 +~~~ +4765355 CURRENTGOAL IS [6] +~~~ +4770972 UP 2 +4770972 2 255 +~~~ +~~~ +4771352 DOWN 2 +4771352 0 255 +~~~ +~~~ +4771375 0 254 +~~~ +~~~ +4771377 0 252 +~~~ +4771379 2 252 +~~~ +~~~ +4771380 2 248 +~~~ +4771381 2 240 +~~~ +~~~ +4771383 2 224 +~~~ +~~~ +4771384 2 192 +~~~ +~~~ +4771386 2 128 +~~~ +~~~ +4771388 2 0 +~~~ +~~~ +4771390 2 512 +4771391 homeCount = 64 +4771392 waitCount = 32 +4771392 ripCount = 27 +4771393 locktype1 = 2 +4771414 locktype2 = 6 +4771414 locktype3 = 2 +4771415 goalCount = 0 +4771415 goalTotal = 20 +4771416 otherCount = 34 +~~~ +4772044 DOWN 2 +4772044 0 512 +4772070 2 512 +4772136 DOWN 2 +4772136 0 512 +4776301 UP 10 +4776302 waslock = 0 +4776301 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4776334 512 16777728 +~~~ +4776484 512 512 +4780543 DOWN 10 +4780543 0 512 +~~~ +~~~ +4780568 0 1536 +~~~ +~~~ +4780570 0 1024 +4780571 homeCount = 65 +4780572 waitCount = 32 +4780572 ripCount = 27 +4780573 locktype1 = 2 +4780573 locktype2 = 6 +4780574 locktype3 = 2 +4780574 goalCount = 0 +4780574 goalTotal = 20 +4780575 otherCount = 34 +~~~ +4780616 UP 10 +4780616 waslock = 0 +4780616 512 1024 +4780631 DOWN 10 +4780631 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +4780658 homeCount = 65 +4780659 waitCount = 32 +4780659 ripCount = 27 +4780660 locktype1 = 2 +4780660 locktype2 = 6 +4780661 locktype3 = 2 +4780661 goalCount = 0 +4780662 goalTotal = 20 +4780662 otherCount = 34 +~~~ +4782283 UP 11 +4782283 1024 1024 +4785849 DOWN 11 +4785849 0 1024 +4785873 UP 11 +4785873 1024 1024 +4785903 DOWN 11 +4785903 0 1024 +4785929 UP 11 +4785929 1024 1024 +4786783 BEEP1 +4786783 BEEP2 +~~~ +~~~ +~~~ +4786802 1024 33555456 +~~~ +4786952 1024 1024 +4791693 DOWN 11 +4791693 0 1024 +~~~ +~~~ +4791720 0 0 +~~~ +~~~ +4791722 0 1 +~~~ +~~~ +4791724 0 3 +~~~ +~~~ +4791726 0 7 +~~~ +~~~ +4791727 0 15 +~~~ +~~~ +4791729 0 31 +~~~ +~~~ +4791731 0 63 +~~~ +~~~ +4791733 0 127 +~~~ +~~~ +4791735 0 255 +4791736 homeCount = 65 +4791736 waitCount = 32 +4791737 ripCount = 28 +4791737 locktype1 = 2 +4791738 locktype2 = 6 +4791738 locktype3 = 2 +4791759 goalCount = 0 +4791760 goalTotal = 20 +4791760 otherCount = 34 +~~~ +4791761 CURRENTGOAL IS [6] +~~~ +4791762 UP 11 +4791762 1024 255 +4796159 DOWN 11 +4796159 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4796199 homeCount = 65 +4796200 waitCount = 32 +4796200 ripCount = 28 +4796201 locktype1 = 2 +4796201 locktype2 = 6 +4796202 locktype3 = 2 +4796202 goalCount = 0 +4796203 goalTotal = 20 +4796203 otherCount = 34 +~~~ +4796204 CURRENTGOAL IS [6] +~~~ +4803475 UP 6 +4803475 32 255 +~~~ +~~~ +4803496 outer reward +~~~ +4803496 32 2097407 +~~~ +~~~ +4803946 32 255 +4810377 DOWN 6 +4810377 0 255 +~~~ +~~~ +4810403 0 254 +~~~ +~~~ +4810405 0 252 +~~~ +~~~ +4810407 0 248 +~~~ +~~~ +4810408 0 240 +~~~ +~~~ +4810410 0 224 +~~~ +~~~ +4810412 0 192 +~~~ +~~~ +4810414 0 128 +~~~ +~~~ +4810416 0 0 +~~~ +~~~ +4810418 0 512 +4810419 homeCount = 65 +4810419 waitCount = 32 +4810420 ripCount = 28 +4810420 locktype1 = 2 +4810420 locktype2 = 6 +4810442 locktype3 = 2 +4810442 goalCount = 1 +4810442 goalTotal = 21 +4810443 otherCount = 34 +~~~ +4810443 32 512 +4810501 DOWN 6 +4810501 0 512 +4810580 32 512 +4810629 DOWN 6 +4810629 0 512 +4813598 32 512 +4813796 DOWN 6 +4813796 0 512 +4813876 32 512 +4813942 DOWN 6 +4813942 0 512 +4818623 UP 10 +4818623 waslock = 0 +4818623 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4818651 512 16777728 +~~~ +4818801 512 512 +4818900 DOWN 10 +4818900 0 512 +~~~ +~~~ +4818925 0 2560 +~~~ +~~~ +4818927 0 2048 +4818928 homeCount = 66 +4818929 waitCount = 32 +4818929 ripCount = 28 +4818930 locktype1 = 2 +4818930 locktype2 = 6 +4818930 locktype3 = 2 +4818931 goalCount = 1 +4818931 goalTotal = 21 +4818932 otherCount = 34 +~~~ +4818952 UP 10 +4818953 waslock = 0 +4818952 512 2048 +~~~ +4822693 DOWN 10 +4822693 0 2048 +~~~ +~~~ +~~~ +~~~ +4822716 homeCount = 66 +4822717 waitCount = 32 +4822717 ripCount = 28 +4822718 locktype1 = 2 +4822718 locktype2 = 6 +4822719 locktype3 = 2 +4822719 goalCount = 1 +4822720 goalTotal = 21 +4822720 otherCount = 34 +~~~ +4824694 UP 12 +4824694 2048 2048 +4829105 DOWN 12 +4829105 0 2048 +4829150 UP 12 +4829150 2048 2048 +4829195 CLICK1 +4829195 CLICK2 +~~~ +~~~ +~~~ +4829217 2048 67110912 +~~~ +4829366 2048 2048 +4835687 DOWN 12 +4835687 0 2048 +~~~ +~~~ +4835713 0 0 +~~~ +~~~ +4835715 0 1 +~~~ +~~~ +4835717 0 3 +~~~ +~~~ +4835719 0 7 +~~~ +~~~ +4835720 0 15 +~~~ +~~~ +4835722 0 31 +~~~ +~~~ +4835724 0 63 +~~~ +~~~ +4835726 0 127 +~~~ +~~~ +4835728 0 255 +4835729 homeCount = 66 +4835729 waitCount = 33 +4835730 ripCount = 28 +4835730 locktype1 = 2 +4835731 locktype2 = 6 +4835752 locktype3 = 2 +4835752 goalCount = 1 +4835753 goalTotal = 21 +4835753 otherCount = 34 +~~~ +4835754 CURRENTGOAL IS [6] +~~~ +4845023 UP 6 +4845023 32 255 +~~~ +~~~ +4845047 outer reward +~~~ +4845048 32 2097407 +~~~ +~~~ +4845425 DOWN 6 +4845425 0 2097407 +4845446 32 2097407 +~~~ +~~~ +4845448 32 2097406 +~~~ +~~~ +4845449 32 2097404 +~~~ +~~~ +4845451 32 2097400 +~~~ +~~~ +4845453 32 2097392 +~~~ +~~~ +4845455 32 2097376 +~~~ +~~~ +4845457 32 2097344 +~~~ +~~~ +4845458 32 2097280 +~~~ +~~~ +4845460 32 2097152 +~~~ +~~~ +4845462 32 2097664 +4845463 homeCount = 66 +4845464 waitCount = 33 +4845484 ripCount = 28 +4845485 locktype1 = 2 +4845485 locktype2 = 6 +4845486 locktype3 = 2 +4845486 goalCount = 2 +4845487 goalTotal = 22 +4845487 otherCount = 34 +~~~ +4845497 32 512 +4851372 DOWN 6 +4851372 0 512 +4851430 32 512 +4851482 DOWN 6 +4851482 0 512 +4851574 32 512 +4851594 DOWN 6 +4851594 0 512 +4855743 UP 10 +4855743 waslock = 0 +4855743 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4855773 512 16777728 +~~~ +4855923 512 512 +4860434 DOWN 10 +4860434 0 512 +~~~ +~~~ +4860459 0 1536 +~~~ +~~~ +4860461 0 1024 +4860462 homeCount = 67 +4860462 waitCount = 33 +4860463 ripCount = 28 +4860463 locktype1 = 2 +4860464 locktype2 = 6 +4860464 locktype3 = 2 +4860464 goalCount = 2 +4860465 goalTotal = 22 +4860465 otherCount = 34 +~~~ +4862633 UP 11 +4862633 1024 1024 +4864053 DOWN 11 +4864053 0 1024 +4864086 UP 11 +4864086 1024 1024 +4865406 DOWN 11 +4865406 0 1024 +4865441 UP 11 +4865441 1024 1024 +4866186 DOWN 11 +4866186 0 1024 +4866229 UP 11 +4866229 1024 1024 +4866243 DOWN 11 +4866243 0 1024 +4866287 UP 11 +4866287 1024 1024 +4866547 DOWN 11 +4866547 0 1024 +4866559 UP 11 +4866559 1024 1024 +4866633 BEEP1 +4866633 BEEP2 +~~~ +~~~ +~~~ +4866656 1024 33555456 +~~~ +4866806 1024 1024 +4871315 DOWN 11 +4871315 0 1024 +~~~ +~~~ +4871342 0 0 +~~~ +~~~ +4871344 0 1 +~~~ +4871345 UP 11 +4871345 1024 1 +~~~ +~~~ +4871347 1024 3 +~~~ +~~~ +4871348 1024 7 +~~~ +~~~ +4871350 1024 15 +~~~ +4871351 1024 31 +~~~ +~~~ +4871353 1024 63 +~~~ +~~~ +4871354 1024 127 +~~~ +~~~ +4871356 1024 255 +4871357 homeCount = 67 +4871379 waitCount = 33 +4871379 ripCount = 29 +4871380 locktype1 = 2 +4871380 locktype2 = 6 +4871380 locktype3 = 2 +4871381 goalCount = 2 +4871381 goalTotal = 22 +4871382 otherCount = 34 +~~~ +4871383 CURRENTGOAL IS [6] +~~~ +4871383 DOWN 11 +4871383 0 255 +4871405 UP 11 +4871405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4871442 homeCount = 67 +4871442 waitCount = 33 +4871443 ripCount = 29 +4871443 locktype1 = 2 +4871444 locktype2 = 6 +4871444 locktype3 = 2 +4871445 goalCount = 2 +4871445 goalTotal = 22 +4871445 otherCount = 34 +~~~ +4871447 CURRENTGOAL IS [6] +~~~ +4873361 DOWN 11 +4873361 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4873397 homeCount = 67 +4873397 waitCount = 33 +4873398 ripCount = 29 +4873398 locktype1 = 2 +4873399 locktype2 = 6 +4873399 locktype3 = 2 +4873400 goalCount = 2 +4873400 goalTotal = 22 +4873401 otherCount = 34 +~~~ +4873402 CURRENTGOAL IS [6] +~~~ +4873455 UP 11 +4873455 1024 255 +4873472 DOWN 11 +4873472 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +4873497 UP 11 +4873497 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4873509 homeCount = 67 +4873510 waitCount = 33 +4873510 ripCount = 29 +4873511 locktype1 = 2 +4873511 locktype2 = 6 +4873512 locktype3 = 2 +4873512 goalCount = 2 +4873512 goalTotal = 22 +4873513 otherCount = 34 +~~~ +4873514 CURRENTGOAL IS [6] +~~~ +4874404 DOWN 11 +4874404 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4874438 homeCount = 67 +4874438 waitCount = 33 +4874439 ripCount = 29 +4874439 locktype1 = 2 +4874440 locktype2 = 6 +4874440 locktype3 = 2 +4874441 goalCount = 2 +4874441 goalTotal = 22 +4874442 otherCount = 34 +~~~ +4874443 CURRENTGOAL IS [6] +~~~ +4877582 UP 7 +4877582 64 255 +~~~ +~~~ +4878186 DOWN 7 +4878186 0 255 +~~~ +~~~ +4878208 0 254 +~~~ +~~~ +4878210 0 252 +~~~ +~~~ +4878212 0 248 +~~~ +~~~ +4878214 0 240 +~~~ +~~~ +4878215 0 224 +~~~ +~~~ +4878217 0 192 +~~~ +~~~ +4878219 0 128 +~~~ +~~~ +4878221 0 0 +~~~ +~~~ +4878223 0 512 +4878224 homeCount = 67 +4878224 waitCount = 33 +4878225 ripCount = 29 +4878225 locktype1 = 2 +4878226 locktype2 = 6 +4878247 locktype3 = 2 +4878247 goalCount = 2 +4878248 goalTotal = 22 +4878248 otherCount = 35 +~~~ +4878255 64 512 +4878364 DOWN 7 +4878364 0 512 +4888220 UP 6 +4888220 32 512 +~~~ +4888240 WHITENOISE +~~~ +~~~ +~~~ +4888242 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4888552 DOWN 6 +4888552 0 0 +4888580 32 0 +4889335 DOWN 6 +4889335 0 0 +4895758 512 0 +4895900 0 0 +4896086 512 0 +4896709 0 0 +4896767 512 0 +4896810 0 0 +4913240 LOCKEND +~~~ +~~~ +~~~ +4913260 0 512 +4913827 UP 10 +4913827 waslock = 0 +4913827 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4913856 512 16777728 +~~~ +4914006 512 512 +4919172 DOWN 10 +4919171 0 512 +~~~ +~~~ +4919189 0 1536 +~~~ +~~~ +4919191 0 1024 +4919192 homeCount = 68 +4919192 waitCount = 33 +4919193 ripCount = 29 +4919193 locktype1 = 2 +4919193 locktype2 = 7 +4919194 locktype3 = 2 +4919194 goalCount = 2 +4919195 goalTotal = 22 +4919195 otherCount = 35 +~~~ +4919208 UP 10 +4919208 waslock = 0 +4919208 512 1024 +~~~ +4919258 DOWN 10 +4919258 0 1024 +~~~ +~~~ +~~~ +~~~ +4919283 homeCount = 68 +4919284 waitCount = 33 +4919284 ripCount = 29 +4919285 locktype1 = 2 +4919285 locktype2 = 7 +4919286 locktype3 = 2 +4919286 goalCount = 2 +4919287 goalTotal = 22 +4919287 otherCount = 35 +~~~ +4920827 UP 11 +4920827 1024 1024 +4923419 DOWN 11 +4923419 0 1024 +4923459 UP 11 +4923459 1024 1024 +4924327 BEEP1 +4924327 BEEP2 +~~~ +~~~ +~~~ +4924356 1024 33555456 +~~~ +4924506 1024 1024 +4930037 DOWN 11 +4930037 0 1024 +~~~ +~~~ +4930062 UP 11 +4930062 1024 0 +~~~ +~~~ +4930064 1024 1 +~~~ +~~~ +4930066 1024 3 +~~~ +~~~ +4930067 1024 7 +~~~ +~~~ +4930069 1024 15 +~~~ +~~~ +4930071 1024 31 +~~~ +~~~ +4930073 1024 63 +~~~ +~~~ +4930075 1024 127 +~~~ +~~~ +4930076 1024 255 +4930078 homeCount = 68 +4930078 waitCount = 33 +4930079 ripCount = 30 +4930100 locktype1 = 2 +4930100 locktype2 = 7 +4930101 locktype3 = 2 +4930101 goalCount = 2 +4930102 goalTotal = 22 +4930102 otherCount = 35 +~~~ +4930103 CURRENTGOAL IS [6] +~~~ +4931788 DOWN 11 +4931788 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4931830 homeCount = 68 +4931831 waitCount = 33 +4931831 ripCount = 30 +4931832 locktype1 = 2 +4931832 locktype2 = 7 +4931833 locktype3 = 2 +4931833 goalCount = 2 +4931834 goalTotal = 22 +4931834 otherCount = 35 +~~~ +4931835 CURRENTGOAL IS [6] +~~~ +4931856 UP 11 +4931856 1024 255 +4931911 DOWN 11 +4931911 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4931949 homeCount = 68 +4931949 waitCount = 33 +4931950 ripCount = 30 +4931950 locktype1 = 2 +4931951 locktype2 = 7 +4931951 locktype3 = 2 +4931952 goalCount = 2 +4931952 goalTotal = 22 +4931953 otherCount = 35 +~~~ +4931954 CURRENTGOAL IS [6] +~~~ +4935641 UP 6 +4935641 32 255 +~~~ +~~~ +4935667 outer reward +~~~ +4935667 32 2097407 +~~~ +~~~ +4935968 DOWN 6 +4935968 0 2097407 +~~~ +4935992 32 2097407 +~~~ +4935993 32 2097406 +~~~ +~~~ +4935995 32 2097404 +~~~ +~~~ +4935997 32 2097400 +~~~ +~~~ +4935999 32 2097392 +~~~ +~~~ +4936000 32 2097376 +~~~ +~~~ +4936002 32 2097344 +~~~ +~~~ +4936004 32 2097280 +~~~ +~~~ +4936006 32 2097152 +~~~ +~~~ +4936008 32 2097664 +4936009 homeCount = 68 +4936029 waitCount = 33 +4936031 ripCount = 30 +4936031 locktype1 = 2 +4936031 locktype2 = 7 +4936032 locktype3 = 2 +4936032 goalCount = 3 +4936033 goalTotal = 23 +4936033 otherCount = 35 +~~~ +4936117 32 512 +4943256 DOWN 6 +4943256 0 512 +4943326 32 512 +4943341 DOWN 6 +4943341 0 512 +4947597 UP 10 +4947597 waslock = 0 +4947597 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4947631 512 16777728 +~~~ +4947780 512 512 +4947829 DOWN 10 +4947829 0 512 +~~~ +~~~ +4947853 0 2560 +~~~ +~~~ +4947855 0 2048 +4947856 homeCount = 69 +4947856 waitCount = 33 +4947857 ripCount = 30 +4947857 locktype1 = 2 +4947858 locktype2 = 7 +4947858 locktype3 = 2 +4947859 goalCount = 3 +4947859 goalTotal = 23 +4947860 otherCount = 35 +~~~ +4947988 UP 10 +4947989 waslock = 0 +4947988 512 2048 +~~~ +4952305 DOWN 10 +4952305 0 2048 +~~~ +~~~ +~~~ +~~~ +4952326 homeCount = 69 +4952326 waitCount = 33 +4952327 ripCount = 30 +4952327 locktype1 = 2 +4952328 locktype2 = 7 +4952328 locktype3 = 2 +4952329 goalCount = 3 +4952329 goalTotal = 23 +4952330 otherCount = 35 +~~~ +4952364 UP 10 +4952365 waslock = 0 +4952364 512 2048 +~~~ +4952401 DOWN 10 +4952401 0 2048 +~~~ +~~~ +~~~ +~~~ +4952421 homeCount = 69 +4952422 waitCount = 33 +4952422 ripCount = 30 +4952423 locktype1 = 2 +4952423 locktype2 = 7 +4952424 locktype3 = 2 +4952424 goalCount = 3 +4952425 goalTotal = 23 +4952425 otherCount = 35 +~~~ +4954268 UP 12 +4954268 2048 2048 +4956332 DOWN 12 +4956332 0 2048 +4956407 UP 12 +4956407 2048 2048 +4957946 DOWN 12 +4957946 0 2048 +4958000 UP 12 +4958000 2048 2048 +4959769 CLICK1 +4959769 CLICK2 +~~~ +~~~ +~~~ +4959795 2048 67110912 +~~~ +4959945 2048 2048 +4966527 DOWN 12 +4966527 0 2048 +~~~ +~~~ +4966544 0 0 +~~~ +~~~ +4966546 0 1 +~~~ +~~~ +4966548 0 3 +~~~ +~~~ +4966550 0 7 +~~~ +~~~ +4966552 0 15 +~~~ +~~~ +4966553 0 31 +~~~ +4966555 UP 12 +4966555 2048 31 +~~~ +~~~ +4966557 2048 63 +~~~ +~~~ +4966558 2048 127 +~~~ +4966559 2048 255 +4966560 homeCount = 69 +4966561 waitCount = 34 +4966562 ripCount = 30 +4966583 locktype1 = 2 +4966583 locktype2 = 7 +4966584 locktype3 = 2 +4966584 goalCount = 3 +4966585 goalTotal = 23 +4966585 otherCount = 35 +~~~ +4966586 CURRENTGOAL IS [6] +~~~ +4966600 DOWN 12 +4966600 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4966632 homeCount = 69 +4966632 waitCount = 34 +4966633 ripCount = 30 +4966633 locktype1 = 2 +4966634 locktype2 = 7 +4966634 locktype3 = 2 +4966635 goalCount = 3 +4966635 goalTotal = 23 +4966636 otherCount = 35 +~~~ +4966637 CURRENTGOAL IS [6] +~~~ +4966668 UP 12 +4966668 2048 255 +4969174 DOWN 12 +4969174 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4969211 homeCount = 69 +4969212 waitCount = 34 +4969212 ripCount = 30 +4969213 locktype1 = 2 +4969213 locktype2 = 7 +4969214 locktype3 = 2 +4969214 goalCount = 3 +4969215 goalTotal = 23 +4969215 otherCount = 35 +~~~ +4969216 CURRENTGOAL IS [6] +~~~ +4974183 UP 6 +4974183 32 255 +~~~ +~~~ +4974209 outer reward +~~~ +4974209 32 2097407 +~~~ +~~~ +4974418 DOWN 6 +4974418 0 2097407 +~~~ +~~~ +4974436 0 2097406 +~~~ +~~~ +4974438 0 2097404 +~~~ +~~~ +4974440 0 2097400 +~~~ +~~~ +4974442 0 2097392 +~~~ +~~~ +4974444 0 2097376 +~~~ +~~~ +4974445 0 2097344 +~~~ +~~~ +4974447 0 2097280 +~~~ +~~~ +4974449 0 2097152 +~~~ +~~~ +4974451 0 2097664 +4974452 homeCount = 69 +4974453 waitCount = 34 +4974453 ripCount = 30 +4974474 locktype1 = 2 +4974475 locktype2 = 7 +4974475 locktype3 = 2 +4974476 goalCount = 4 +4974476 goalTotal = 24 +4974477 otherCount = 35 +~~~ +4974477 32 2097664 +4974659 32 512 +4975104 DOWN 6 +4975104 0 512 +4975119 32 512 +4975232 DOWN 6 +4975232 0 512 +4975246 32 512 +4975346 DOWN 6 +4975346 0 512 +4975380 32 512 +4975480 DOWN 6 +4975480 0 512 +4975509 32 512 +4975617 DOWN 6 +4975617 0 512 +4975642 32 512 +4975756 DOWN 6 +4975756 0 512 +4975773 32 512 +4975895 DOWN 6 +4975895 0 512 +4975910 32 512 +4980733 DOWN 6 +4980733 0 512 +4980774 32 512 +4980818 DOWN 6 +4980818 0 512 +4984695 UP 10 +4984695 waslock = 0 +4984694 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4984722 512 16777728 +~~~ +4984872 512 512 +4989193 DOWN 10 +4989193 0 512 +~~~ +~~~ +4989216 0 1536 +~~~ +~~~ +4989218 0 1024 +4989219 homeCount = 70 +4989219 waitCount = 34 +4989220 ripCount = 30 +4989220 locktype1 = 2 +4989221 locktype2 = 7 +4989221 locktype3 = 2 +4989222 goalCount = 4 +4989222 goalTotal = 24 +4989223 otherCount = 35 +~~~ +4989259 UP 10 +4989260 waslock = 0 +4989259 512 1024 +4989279 DOWN 10 +4989279 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +4989301 homeCount = 70 +4989301 waitCount = 34 +4989302 ripCount = 30 +4989302 locktype1 = 2 +4989303 locktype2 = 7 +4989303 locktype3 = 2 +4989304 goalCount = 4 +4989304 goalTotal = 24 +4989305 otherCount = 35 +~~~ +4991305 UP 11 +4991305 1024 1024 +4992871 DOWN 11 +4992871 0 1024 +4992939 UP 11 +4992939 1024 1024 +4992987 DOWN 11 +4992987 0 1024 +4992997 UP 11 +4992997 1024 1024 +4994737 DOWN 11 +4994737 0 1024 +4994747 UP 11 +4994747 1024 1024 +4997651 DOWN 11 +4997651 0 1024 +4997663 UP 11 +4997663 1024 1024 +4998026 DOWN 11 +4998026 0 1024 +4998060 UP 11 +4998060 1024 1024 +4998077 DOWN 11 +4998077 0 1024 +4998088 UP 11 +4998088 1024 1024 +4998306 BEEP1 +4998306 BEEP2 +~~~ +~~~ +~~~ +4998329 1024 33555456 +~~~ +4998478 1024 1024 +5004681 DOWN 11 +5004681 0 1024 +~~~ +~~~ +5004706 0 0 +~~~ +~~~ +5004708 0 1 +~~~ +~~~ +5004710 0 3 +~~~ +~~~ +5004711 UP 11 +5004711 1024 7 +~~~ +~~~ +5004713 1024 15 +~~~ +~~~ +5004715 1024 31 +~~~ +~~~ +5004717 1024 63 +~~~ +~~~ +5004719 1024 127 +~~~ +~~~ +5004720 1024 255 +5004721 homeCount = 70 +5004722 waitCount = 34 +5004723 ripCount = 31 +5004744 locktype1 = 2 +5004744 locktype2 = 7 +5004744 locktype3 = 2 +5004745 goalCount = 4 +5004745 goalTotal = 24 +5004746 otherCount = 35 +~~~ +5004747 CURRENTGOAL IS [6] +~~~ +5004769 DOWN 11 +5004769 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5004805 homeCount = 70 +5004806 waitCount = 34 +5004806 ripCount = 31 +5004807 locktype1 = 2 +5004807 locktype2 = 7 +5004808 locktype3 = 2 +5004808 goalCount = 4 +5004809 goalTotal = 24 +5004809 otherCount = 35 +~~~ +5004810 CURRENTGOAL IS [6] +~~~ +5014643 UP 6 +5014643 32 255 +~~~ +~~~ +5014669 outer reward +~~~ +5014670 32 2097407 +~~~ +~~~ +5014904 DOWN 6 +5014904 0 2097407 +~~~ +~~~ +5014928 0 2097406 +~~~ +~~~ +5014930 0 2097404 +~~~ +~~~ +5014931 0 2097400 +~~~ +~~~ +5014933 0 2097392 +~~~ +~~~ +5014935 0 2097376 +~~~ +~~~ +5014937 0 2097344 +~~~ +~~~ +5014939 0 2097280 +~~~ +~~~ +5014940 0 2097152 +~~~ +~~~ +5014942 0 2097664 +5014943 homeCount = 70 +5014944 waitCount = 34 +5014944 ripCount = 31 +5014966 locktype1 = 2 +5014966 locktype2 = 7 +5014966 locktype3 = 2 +5014967 goalCount = 5 +5014967 goalTotal = 25 +5014968 otherCount = 35 +~~~ +5014968 32 2097664 +5015119 32 512 +5015329 DOWN 6 +5015329 0 512 +5015358 32 512 +5015461 DOWN 6 +5015461 0 512 +5015476 32 512 +5015588 DOWN 6 +5015588 0 512 +5015600 32 512 +5015717 DOWN 6 +5015717 0 512 +5015727 32 512 +5015843 DOWN 6 +5015843 0 512 +5015855 32 512 +5020832 DOWN 6 +5020832 0 512 +5020886 32 512 +5020928 DOWN 6 +5020928 0 512 +5026912 UP 10 +5026912 waslock = 0 +5026912 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5026939 512 16777728 +~~~ +5027086 DOWN 10 +5027086 0 16777728 +5027089 0 512 +~~~ +~~~ +5027104 0 2560 +~~~ +~~~ +5027106 0 2048 +5027107 homeCount = 71 +5027107 waitCount = 34 +5027108 ripCount = 31 +5027108 locktype1 = 2 +5027109 locktype2 = 7 +5027109 locktype3 = 2 +5027110 goalCount = 5 +5027110 goalTotal = 25 +5027111 otherCount = 35 +~~~ +5027415 UP 10 +5027415 waslock = 0 +5027415 512 2048 +~~~ +5032403 DOWN 10 +5032403 0 2048 +5032408 UP 10 +5032409 waslock = 0 +5032408 512 2048 +~~~ +~~~ +~~~ +~~~ +5032426 homeCount = 71 +5032427 waitCount = 34 +5032427 ripCount = 31 +5032428 locktype1 = 2 +5032428 locktype2 = 7 +5032429 locktype3 = 2 +5032429 goalCount = 5 +5032430 goalTotal = 25 +5032430 otherCount = 35 +~~~ +~~~ +5032515 DOWN 10 +5032515 0 2048 +~~~ +~~~ +~~~ +~~~ +5032539 homeCount = 71 +5032539 waitCount = 34 +5032540 ripCount = 31 +5032540 locktype1 = 2 +5032541 locktype2 = 7 +5032541 locktype3 = 2 +5032542 goalCount = 5 +5032542 goalTotal = 25 +5032543 otherCount = 35 +~~~ +5032546 UP 10 +5032546 waslock = 0 +5032546 512 2048 +~~~ +5032613 DOWN 10 +5032613 0 2048 +~~~ +~~~ +~~~ +~~~ +5032639 homeCount = 71 +5032640 waitCount = 34 +5032640 ripCount = 31 +5032641 locktype1 = 2 +5032641 locktype2 = 7 +5032642 locktype3 = 2 +5032642 goalCount = 5 +5032643 goalTotal = 25 +5032643 otherCount = 35 +~~~ +5034484 UP 12 +5034484 2048 2048 +5036958 DOWN 12 +5036958 0 2048 +5037036 UP 12 +5037036 2048 2048 +5040518 DOWN 12 +5040518 0 2048 +5040568 UP 12 +5040568 2048 2048 +5042485 CLICK1 +5042485 CLICK2 +~~~ +~~~ +~~~ +5042506 2048 67110912 +~~~ +5042656 2048 2048 +5047511 DOWN 12 +5047510 0 2048 +5047520 UP 12 +5047520 2048 2048 +~~~ +~~~ +5047534 2048 0 +~~~ +~~~ +5047536 2048 1 +~~~ +~~~ +5047538 2048 3 +~~~ +~~~ +5047540 2048 7 +~~~ +~~~ +5047541 2048 15 +~~~ +~~~ +5047543 2048 31 +~~~ +~~~ +5047545 2048 63 +~~~ +~~~ +5047547 2048 127 +~~~ +~~~ +5047549 2048 255 +5047550 homeCount = 71 +5047550 waitCount = 35 +5047551 ripCount = 31 +5047551 locktype1 = 2 +5047573 locktype2 = 7 +5047573 locktype3 = 2 +5047573 goalCount = 5 +5047574 goalTotal = 25 +5047574 otherCount = 35 +~~~ +5047575 CURRENTGOAL IS [6] +~~~ +5047576 DOWN 12 +5047576 0 255 +5047581 UP 12 +5047581 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5047620 homeCount = 71 +5047621 waitCount = 35 +5047621 ripCount = 31 +5047622 locktype1 = 2 +5047622 locktype2 = 7 +5047623 locktype3 = 2 +5047623 goalCount = 5 +5047624 goalTotal = 25 +5047624 otherCount = 35 +~~~ +5047625 CURRENTGOAL IS [6] +~~~ +5050479 DOWN 12 +5050479 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5050518 homeCount = 71 +5050518 waitCount = 35 +5050519 ripCount = 31 +5050519 locktype1 = 2 +5050520 locktype2 = 7 +5050520 locktype3 = 2 +5050521 goalCount = 5 +5050521 goalTotal = 25 +5050522 otherCount = 35 +~~~ +5050523 CURRENTGOAL IS [6] +~~~ +5065836 UP 6 +5065836 32 255 +~~~ +~~~ +5065861 outer reward +~~~ +5065862 32 2097407 +~~~ +~~~ +5066136 DOWN 6 +5066136 0 2097407 +~~~ +~~~ +5066159 0 2097406 +~~~ +~~~ +5066161 0 2097404 +~~~ +~~~ +5066163 0 2097400 +~~~ +~~~ +5066165 0 2097392 +~~~ +~~~ +5066167 0 2097376 +~~~ +~~~ +5066168 0 2097344 +~~~ +~~~ +5066170 0 2097280 +~~~ +5066172 32 2097280 +~~~ +~~~ +5066173 32 2097152 +~~~ +5066174 32 2097664 +5066176 homeCount = 71 +5066176 waitCount = 35 +5066197 ripCount = 31 +5066197 locktype1 = 2 +5066198 locktype2 = 7 +5066198 locktype3 = 2 +5066199 goalCount = 6 +5066199 goalTotal = 26 +5066200 otherCount = 35 +~~~ +5066311 32 512 +5066557 DOWN 6 +5066557 0 512 +5066572 32 512 +5067050 DOWN 6 +5067050 0 512 +5067083 32 512 +5071100 DOWN 6 +5071100 0 512 +5071143 32 512 +5072577 DOWN 6 +5072577 0 512 +5079381 UP 10 +5079382 waslock = 0 +5079381 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5079405 512 16777728 +~~~ +5079555 512 512 +5084925 DOWN 10 +5084925 0 512 +5084940 UP 10 +5084940 waslock = 0 +5084940 512 512 +~~~ +~~~ +5084949 512 2560 +~~~ +~~~ +5084951 512 2048 +5084952 homeCount = 72 +5084952 waitCount = 35 +5084953 ripCount = 31 +5084953 locktype1 = 2 +5084954 locktype2 = 7 +5084954 locktype3 = 2 +5084955 goalCount = 6 +5084955 goalTotal = 26 +5084955 otherCount = 35 +~~~ +~~~ +5085037 DOWN 10 +5085037 0 2048 +~~~ +~~~ +~~~ +~~~ +5085065 homeCount = 72 +5085066 waitCount = 35 +5085066 ripCount = 31 +5085067 locktype1 = 2 +5085067 locktype2 = 7 +5085068 locktype3 = 2 +5085068 goalCount = 6 +5085069 goalTotal = 26 +5085069 otherCount = 35 +~~~ +5086546 UP 12 +5086546 2048 2048 +5086603 DOWN 12 +5086603 0 2048 +5086685 UP 12 +5086685 2048 2048 +5088393 DOWN 12 +5088393 0 2048 +5088565 UP 12 +5088565 2048 2048 +5089288 DOWN 12 +5089288 0 2048 +5089293 UP 12 +5089293 2048 2048 +5094546 CLICK1 +5094546 CLICK2 +~~~ +~~~ +~~~ +5094571 2048 67110912 +~~~ +5094721 2048 2048 +5100032 DOWN 12 +5100032 0 2048 +5100044 UP 12 +5100044 2048 2048 +~~~ +~~~ +5100049 2048 0 +~~~ +~~~ +5100051 2048 1 +~~~ +~~~ +5100052 2048 3 +~~~ +~~~ +5100054 2048 7 +~~~ +~~~ +5100056 2048 15 +~~~ +~~~ +5100058 2048 31 +~~~ +~~~ +5100060 2048 63 +~~~ +~~~ +5100062 2048 127 +~~~ +~~~ +5100063 2048 255 +5100064 homeCount = 72 +5100065 waitCount = 36 +5100065 ripCount = 31 +5100066 locktype1 = 2 +5100087 locktype2 = 7 +5100088 locktype3 = 2 +5100088 goalCount = 6 +5100089 goalTotal = 26 +5100089 otherCount = 35 +~~~ +5100090 CURRENTGOAL IS [6] +~~~ +5100091 DOWN 12 +5100090 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5100137 homeCount = 72 +5100137 waitCount = 36 +5100138 ripCount = 31 +5100138 locktype1 = 2 +5100139 locktype2 = 7 +5100139 locktype3 = 2 +5100140 goalCount = 6 +5100140 goalTotal = 26 +5100141 otherCount = 35 +~~~ +5100142 CURRENTGOAL IS [6] +~~~ +5100176 UP 12 +5100176 2048 255 +5100497 DOWN 12 +5100497 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5100537 homeCount = 72 +5100538 waitCount = 36 +5100538 ripCount = 31 +5100539 locktype1 = 2 +5100539 locktype2 = 7 +5100540 locktype3 = 2 +5100540 goalCount = 6 +5100541 goalTotal = 26 +5100541 otherCount = 35 +~~~ +5100542 CURRENTGOAL IS [6] +~~~ +5100637 UP 12 +5100637 2048 255 +5102022 DOWN 12 +5102022 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5102060 homeCount = 72 +5102061 waitCount = 36 +5102061 ripCount = 31 +5102062 locktype1 = 2 +5102062 locktype2 = 7 +5102063 locktype3 = 2 +5102063 goalCount = 6 +5102064 goalTotal = 26 +5102064 otherCount = 35 +~~~ +5102065 CURRENTGOAL IS [6] +~~~ +5108521 UP 6 +5108521 32 255 +~~~ +~~~ +5108549 outer reward +~~~ +5108549 32 2097407 +~~~ +~~~ +5108766 DOWN 6 +5108766 0 2097407 +~~~ +~~~ +5108789 0 2097406 +~~~ +~~~ +5108791 0 2097404 +~~~ +~~~ +5108793 0 2097400 +~~~ +~~~ +5108795 0 2097392 +~~~ +~~~ +5108797 0 2097376 +~~~ +~~~ +5108798 0 2097344 +~~~ +~~~ +5108800 0 2097280 +~~~ +~~~ +5108802 0 2097152 +~~~ +~~~ +5108804 0 2097664 +5108805 homeCount = 72 +5108805 waitCount = 36 +5108806 ripCount = 31 +5108827 locktype1 = 2 +5108828 locktype2 = 7 +5108828 locktype3 = 2 +5108829 goalCount = 7 +5108829 goalTotal = 27 +5108830 otherCount = 35 +~~~ +5108830 32 2097664 +5108999 32 512 +5109204 DOWN 6 +5109204 0 512 +5109215 32 512 +5109317 DOWN 6 +5109317 0 512 +5109351 32 512 +5109448 DOWN 6 +5109448 0 512 +5109470 32 512 +5109572 DOWN 6 +5109572 0 512 +5109589 32 512 +5109693 DOWN 6 +5109693 0 512 +5109723 32 512 +5113979 DOWN 6 +5113979 0 512 +5113984 32 512 +5115574 DOWN 6 +5115574 0 512 +5119927 UP 10 +5119927 waslock = 0 +5119927 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5119957 512 16777728 +~~~ +5119972 DOWN 10 +5119971 0 16777728 +~~~ +~~~ +5119990 0 16779776 +~~~ +~~~ +5119992 0 16779264 +5119993 homeCount = 73 +5119994 waitCount = 36 +5119994 ripCount = 31 +5119995 locktype1 = 2 +5119995 locktype2 = 7 +5119996 locktype3 = 2 +5119996 goalCount = 7 +5119997 goalTotal = 27 +5119997 otherCount = 35 +~~~ +5120049 UP 10 +5120049 waslock = 0 +5120049 512 16779264 +~~~ +5120107 512 2048 +5123786 DOWN 10 +5123786 0 2048 +~~~ +~~~ +~~~ +~~~ +5123813 homeCount = 73 +5123813 waitCount = 36 +5123814 ripCount = 31 +5123814 locktype1 = 2 +5123814 locktype2 = 7 +5123815 locktype3 = 2 +5123815 goalCount = 7 +5123816 goalTotal = 27 +5123816 otherCount = 35 +~~~ +5125790 UP 12 +5125790 2048 2048 +5127598 DOWN 12 +5127598 0 2048 +5127629 UP 12 +5127629 2048 2048 +5129445 DOWN 12 +5129445 0 2048 +5129463 UP 12 +5129463 2048 2048 +5130858 DOWN 12 +5130858 0 2048 +5130864 UP 12 +5130864 2048 2048 +5133790 CLICK1 +5133790 CLICK2 +~~~ +~~~ +~~~ +5133813 2048 67110912 +~~~ +5133963 2048 2048 +5138931 DOWN 12 +5138931 0 2048 +5138937 UP 12 +5138937 2048 2048 +~~~ +~~~ +5138950 2048 0 +~~~ +~~~ +5138951 2048 1 +~~~ +~~~ +5138953 2048 3 +~~~ +~~~ +5138955 2048 7 +~~~ +~~~ +5138957 2048 15 +~~~ +~~~ +5138959 2048 31 +~~~ +~~~ +5138961 2048 63 +~~~ +~~~ +5138962 2048 127 +~~~ +~~~ +5138964 2048 255 +5138965 homeCount = 73 +5138966 waitCount = 37 +5138966 ripCount = 31 +5138967 locktype1 = 2 +5138987 locktype2 = 7 +5138988 locktype3 = 2 +5138988 goalCount = 7 +5138989 goalTotal = 27 +5138989 otherCount = 35 +~~~ +5138990 CURRENTGOAL IS [6] +~~~ +5138991 DOWN 12 +5138991 0 255 +5139007 UP 12 +5139007 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5139035 homeCount = 73 +5139035 waitCount = 37 +5139036 ripCount = 31 +5139036 locktype1 = 2 +5139037 locktype2 = 7 +5139037 locktype3 = 2 +5139038 goalCount = 7 +5139038 goalTotal = 27 +5139039 otherCount = 35 +~~~ +5139040 CURRENTGOAL IS [6] +~~~ +5141276 DOWN 12 +5141276 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5141318 homeCount = 73 +5141319 waitCount = 37 +5141319 ripCount = 31 +5141320 locktype1 = 2 +5141320 locktype2 = 7 +5141321 locktype3 = 2 +5141321 goalCount = 7 +5141322 goalTotal = 27 +5141322 otherCount = 35 +~~~ +5141323 CURRENTGOAL IS [6] +~~~ +5147743 UP 6 +5147743 32 255 +~~~ +~~~ +5147763 outer reward +~~~ +5147764 32 2097407 +~~~ +~~~ +5147993 DOWN 6 +5147993 0 2097407 +~~~ +~~~ +5148012 0 2097406 +~~~ +~~~ +5148014 0 2097404 +~~~ +~~~ +5148016 0 2097400 +~~~ +~~~ +5148018 0 2097392 +~~~ +~~~ +5148019 0 2097376 +~~~ +~~~ +5148021 0 2097344 +~~~ +~~~ +5148023 0 2097280 +~~~ +~~~ +5148025 0 2097152 +~~~ +~~~ +5148027 0 2097664 +5148028 homeCount = 73 +5148028 waitCount = 37 +5148029 ripCount = 31 +5148050 locktype1 = 2 +5148050 locktype2 = 7 +5148051 locktype3 = 2 +5148051 goalCount = 8 +5148052 goalTotal = 28 +5148052 otherCount = 35 +~~~ +5148068 32 2097664 +5148213 32 512 +5148335 DOWN 6 +5148335 0 512 +5148358 32 512 +5148457 DOWN 6 +5148457 0 512 +5148501 32 512 +5148589 DOWN 6 +5148589 0 512 +5148618 32 512 +5155375 DOWN 6 +5155374 0 512 +5159939 UP 10 +5159939 waslock = 0 +5159939 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5159964 512 16777728 +~~~ +5160114 512 512 +5160151 DOWN 10 +5160151 0 512 +5160165 UP 10 +5160165 waslock = 0 +5160165 512 512 +~~~ +~~~ +5160171 512 2560 +~~~ +~~~ +5160173 512 2048 +5160174 homeCount = 74 +5160175 waitCount = 37 +5160175 ripCount = 31 +5160176 locktype1 = 2 +5160176 locktype2 = 7 +5160177 locktype3 = 2 +5160177 goalCount = 8 +5160178 goalTotal = 28 +5160178 otherCount = 35 +~~~ +~~~ +5164052 DOWN 10 +5164052 0 2048 +~~~ +~~~ +~~~ +~~~ +5164072 homeCount = 74 +5164073 waitCount = 37 +5164073 ripCount = 31 +5164074 locktype1 = 2 +5164074 locktype2 = 7 +5164075 locktype3 = 2 +5164075 goalCount = 8 +5164076 goalTotal = 28 +5164076 otherCount = 35 +~~~ +5165621 UP 12 +5165621 2048 2048 +5172621 CLICK1 +5172621 CLICK2 +~~~ +~~~ +~~~ +5172641 2048 67110912 +~~~ +5172791 2048 2048 +5178708 DOWN 12 +5178708 0 2048 +5178727 UP 12 +5178727 2048 2048 +~~~ +~~~ +5178729 2048 0 +~~~ +~~~ +5178731 2048 1 +~~~ +~~~ +5178733 2048 3 +~~~ +~~~ +5178735 2048 7 +~~~ +~~~ +5178737 2048 15 +~~~ +~~~ +5178738 2048 31 +~~~ +~~~ +5178740 2048 63 +~~~ +~~~ +5178742 2048 127 +~~~ +~~~ +5178744 2048 255 +5178745 homeCount = 74 +5178745 waitCount = 38 +5178766 ripCount = 31 +5178767 locktype1 = 2 +5178767 locktype2 = 7 +5178768 locktype3 = 2 +5178768 goalCount = 8 +5178769 goalTotal = 28 +5178769 otherCount = 35 +~~~ +5178770 CURRENTGOAL IS [6] +~~~ +5178791 DOWN 12 +5178791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5178818 homeCount = 74 +5178819 waitCount = 38 +5178819 ripCount = 31 +5178820 locktype1 = 2 +5178820 locktype2 = 7 +5178821 locktype3 = 2 +5178821 goalCount = 8 +5178822 goalTotal = 28 +5178822 otherCount = 35 +~~~ +5178823 CURRENTGOAL IS [6] +~~~ +5178824 UP 12 +5178824 2048 255 +5178846 DOWN 12 +5178846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5178877 homeCount = 74 +5178877 waitCount = 38 +5178878 ripCount = 31 +5178878 locktype1 = 2 +5178879 locktype2 = 7 +5178879 locktype3 = 2 +5178880 goalCount = 8 +5178880 goalTotal = 28 +5178881 otherCount = 35 +~~~ +5178882 CURRENTGOAL IS [6] +~~~ +5179006 UP 12 +5179006 2048 255 +5180699 DOWN 12 +5180699 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5180741 homeCount = 74 +5180741 waitCount = 38 +5180742 ripCount = 31 +5180742 locktype1 = 2 +5180743 locktype2 = 7 +5180743 locktype3 = 2 +5180744 goalCount = 8 +5180744 goalTotal = 28 +5180744 otherCount = 35 +~~~ +5180746 CURRENTGOAL IS [6] +~~~ +5185076 UP 6 +5185076 32 255 +~~~ +~~~ +5185099 outer reward +~~~ +5185100 32 2097407 +~~~ +~~~ +5185320 DOWN 6 +5185320 0 2097407 +~~~ +~~~ +5185345 0 2097406 +~~~ +~~~ +5185347 0 2097404 +~~~ +~~~ +5185349 0 2097400 +~~~ +~~~ +5185351 0 2097392 +~~~ +~~~ +5185353 0 2097376 +~~~ +~~~ +5185355 0 2097344 +~~~ +~~~ +5185356 0 2097280 +~~~ +~~~ +5185358 0 2097152 +~~~ +~~~ +5185360 0 2097664 +5185361 homeCount = 74 +5185362 waitCount = 38 +5185362 ripCount = 31 +5185383 locktype1 = 2 +5185384 locktype2 = 7 +5185384 locktype3 = 2 +5185385 goalCount = 9 +5185385 goalTotal = 29 +5185386 otherCount = 35 +~~~ +5185386 32 2097664 +5185549 32 512 +5185758 DOWN 6 +5185757 0 512 +5185784 32 512 +5186141 DOWN 6 +5186141 0 512 +5186165 32 512 +5189858 DOWN 6 +5189857 0 512 +5189864 32 512 +5192101 DOWN 6 +5192101 0 512 +5202397 UP 10 +5202398 waslock = 0 +5202397 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5202424 512 16777728 +~~~ +5202574 512 512 +5202655 DOWN 10 +5202655 0 512 +~~~ +~~~ +5202677 0 1536 +~~~ +~~~ +5202679 0 1024 +5202680 homeCount = 75 +5202680 waitCount = 38 +5202681 ripCount = 31 +5202681 locktype1 = 2 +5202682 locktype2 = 7 +5202682 locktype3 = 2 +5202683 goalCount = 9 +5202683 goalTotal = 29 +5202684 otherCount = 35 +~~~ +5202757 UP 10 +5202758 waslock = 0 +5202757 512 1024 +~~~ +5207019 DOWN 10 +5207019 0 1024 +5207036 UP 10 +5207036 waslock = 0 +5207035 512 1024 +~~~ +~~~ +~~~ +~~~ +5207042 homeCount = 75 +5207042 waitCount = 38 +5207043 ripCount = 31 +5207043 locktype1 = 2 +5207044 locktype2 = 7 +5207044 locktype3 = 2 +5207045 goalCount = 9 +5207045 goalTotal = 29 +5207046 otherCount = 35 +~~~ +~~~ +5207117 DOWN 10 +5207117 0 1024 +~~~ +~~~ +~~~ +~~~ +5207144 homeCount = 75 +5207144 waitCount = 38 +5207145 ripCount = 31 +5207145 locktype1 = 2 +5207146 locktype2 = 7 +5207146 locktype3 = 2 +5207147 goalCount = 9 +5207147 goalTotal = 29 +5207148 otherCount = 35 +~~~ +5209520 UP 11 +5209520 1024 1024 +5211517 DOWN 11 +5211517 0 1024 +5211529 UP 11 +5211529 1024 1024 +5212520 BEEP1 +5212520 BEEP2 +~~~ +~~~ +~~~ +5212541 1024 33555456 +~~~ +5212691 1024 1024 +5217823 DOWN 11 +5217823 0 1024 +5217847 UP 11 +5217847 1024 1024 +~~~ +~~~ +5217850 1024 0 +~~~ +~~~ +5217852 1024 1 +~~~ +~~~ +5217854 1024 3 +~~~ +~~~ +5217856 1024 7 +~~~ +~~~ +5217857 1024 15 +~~~ +~~~ +5217859 1024 31 +~~~ +~~~ +5217861 1024 63 +~~~ +~~~ +5217863 1024 127 +~~~ +~~~ +5217865 1024 255 +5217866 homeCount = 75 +5217866 waitCount = 38 +5217867 ripCount = 32 +5217867 locktype1 = 2 +5217888 locktype2 = 7 +5217889 locktype3 = 2 +5217889 goalCount = 9 +5217889 goalTotal = 29 +5217890 otherCount = 35 +~~~ +5217891 CURRENTGOAL IS [6] +~~~ +5217891 DOWN 11 +5217891 0 255 +5217918 UP 11 +5217918 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5217949 homeCount = 75 +5217949 waitCount = 38 +5217950 ripCount = 32 +5217950 locktype1 = 2 +5217951 locktype2 = 7 +5217951 locktype3 = 2 +5217952 goalCount = 9 +5217952 goalTotal = 29 +5217953 otherCount = 35 +~~~ +5217954 CURRENTGOAL IS [6] +~~~ +5217954 DOWN 11 +5217954 0 255 +5217976 UP 11 +5217976 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5218014 homeCount = 75 +5218015 waitCount = 38 +5218016 ripCount = 32 +5218016 locktype1 = 2 +5218017 locktype2 = 7 +5218017 locktype3 = 2 +5218017 goalCount = 9 +5218018 goalTotal = 29 +5218018 otherCount = 35 +~~~ +5218019 CURRENTGOAL IS [6] +~~~ +5219962 DOWN 11 +5219962 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5219994 homeCount = 75 +5219995 waitCount = 38 +5219996 ripCount = 32 +5219996 locktype1 = 2 +5219997 locktype2 = 7 +5219997 locktype3 = 2 +5219997 goalCount = 9 +5219998 goalTotal = 29 +5219998 otherCount = 35 +~~~ +5219999 CURRENTGOAL IS [6] +~~~ +5220006 UP 11 +5220006 1024 255 +5220095 DOWN 11 +5220095 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5220135 homeCount = 75 +5220135 waitCount = 38 +5220136 ripCount = 32 +5220136 locktype1 = 2 +5220137 locktype2 = 7 +5220137 locktype3 = 2 +5220138 goalCount = 9 +5220138 goalTotal = 29 +5220139 otherCount = 35 +~~~ +5220140 CURRENTGOAL IS [6] +~~~ +5220369 UP 11 +5220369 1024 255 +5220384 DOWN 11 +5220384 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5220420 homeCount = 75 +5220421 waitCount = 38 +5220421 ripCount = 32 +5220422 locktype1 = 2 +5220422 locktype2 = 7 +5220423 locktype3 = 2 +5220423 goalCount = 9 +5220424 goalTotal = 29 +5220424 otherCount = 35 +~~~ +5220425 CURRENTGOAL IS [6] +~~~ +5220756 UP 11 +5220756 1024 255 +5222629 DOWN 11 +5222629 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222658 UP 11 +5222658 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222666 homeCount = 75 +5222666 waitCount = 38 +5222667 ripCount = 32 +5222667 locktype1 = 2 +5222668 locktype2 = 7 +5222668 locktype3 = 2 +5222669 goalCount = 9 +5222669 goalTotal = 29 +5222669 otherCount = 35 +~~~ +5222671 CURRENTGOAL IS [6] +~~~ +5222721 DOWN 11 +5222721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222756 homeCount = 75 +5222757 waitCount = 38 +5222757 ripCount = 32 +5222758 locktype1 = 2 +5222758 locktype2 = 7 +5222759 locktype3 = 2 +5222759 goalCount = 9 +5222760 goalTotal = 29 +5222760 otherCount = 35 +~~~ +5222761 CURRENTGOAL IS [6] +~~~ +5225752 UP 6 +5225752 32 255 +~~~ +~~~ +5225775 outer reward +~~~ +5225775 32 2097407 +~~~ +~~~ +5225780 outerreps = 8 +~~~ +~~~ +5226029 DOWN 6 +5226029 0 2097407 +~~~ +~~~ +5226052 0 2097406 +~~~ +~~~ +5226053 0 2097404 +~~~ +~~~ +5226055 0 2097400 +~~~ +~~~ +5226057 0 2097392 +~~~ +~~~ +5226059 0 2097376 +~~~ +~~~ +5226061 0 2097344 +~~~ +~~~ +5226062 0 2097280 +~~~ +5226064 32 2097280 +~~~ +~~~ +5226066 32 2097152 +~~~ +5226067 32 2097664 +5226068 homeCount = 75 +5226068 waitCount = 38 +5226089 ripCount = 32 +5226090 locktype1 = 2 +5226090 locktype2 = 7 +5226091 locktype3 = 2 +5226091 goalCount = 0 +5226092 goalTotal = 30 +5226092 otherCount = 35 +~~~ +5226225 32 512 +5234212 DOWN 6 +5234212 0 512 +5234299 32 512 +5234328 DOWN 6 +5234328 0 512 +5238432 UP 10 +5238432 waslock = 0 +5238432 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5238461 512 16777728 +~~~ +5238611 512 512 +5238651 DOWN 10 +5238651 0 512 +5238675 UP 10 +5238675 waslock = 0 +5238675 512 512 +~~~ +~~~ +~~~ +5238678 512 1536 +~~~ +5238679 512 1024 +5238680 homeCount = 76 +5238680 waitCount = 38 +5238681 ripCount = 32 +5238681 locktype1 = 2 +5238682 locktype2 = 7 +5238682 locktype3 = 2 +5238683 goalCount = 0 +5238704 goalTotal = 30 +5238704 otherCount = 35 +~~~ +~~~ +5242681 DOWN 10 +5242681 0 1024 +~~~ +~~~ +5242707 UP 10 +5242707 waslock = 0 +5242707 512 1024 +~~~ +~~~ +5242710 homeCount = 76 +5242710 waitCount = 38 +5242711 ripCount = 32 +5242711 locktype1 = 2 +5242712 locktype2 = 7 +5242712 locktype3 = 2 +5242713 goalCount = 0 +5242713 goalTotal = 30 +5242714 otherCount = 35 +~~~ +~~~ +5242781 DOWN 10 +5242781 0 1024 +~~~ +~~~ +~~~ +~~~ +5242809 homeCount = 76 +5242809 waitCount = 38 +5242810 ripCount = 32 +5242810 locktype1 = 2 +5242811 locktype2 = 7 +5242811 locktype3 = 2 +5242812 goalCount = 0 +5242812 goalTotal = 30 +5242813 otherCount = 35 +~~~ +5244744 UP 11 +5244744 1024 1024 +5245062 DOWN 11 +5245062 0 1024 +5245263 LOCKOUT 3 +~~~ +5245287 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +5245291 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5245390 UP 11 +5245390 1024 0 +5247273 DOWN 11 +5247273 0 0 +5247303 UP 11 +5247303 1024 0 +5248048 DOWN 11 +5248048 0 0 +5248092 UP 11 +5248092 1024 0 +5249639 DOWN 11 +5249639 0 0 +5270287 LOCKEND +~~~ +~~~ +~~~ +5270306 0 512 +5281092 UP 10 +5281092 waslock = 0 +5281092 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5281122 512 16777728 +~~~ +5281134 DOWN 10 +5281134 0 16777728 +~~~ +~~~ +5281155 0 16778752 +~~~ +~~~ +5281157 0 16778240 +5281158 homeCount = 77 +5281159 waitCount = 38 +5281159 ripCount = 32 +5281160 locktype1 = 2 +5281160 locktype2 = 7 +5281161 locktype3 = 3 +5281161 goalCount = 0 +5281162 goalTotal = 30 +5281162 otherCount = 35 +~~~ +5281227 UP 10 +5281228 waslock = 0 +5281227 512 16778240 +~~~ +5281272 512 1024 +5281345 DOWN 10 +5281344 0 1024 +~~~ +~~~ +~~~ +~~~ +5281368 homeCount = 77 +5281369 waitCount = 38 +5281369 ripCount = 32 +5281370 locktype1 = 2 +5281370 locktype2 = 7 +5281371 locktype3 = 3 +5281371 goalCount = 0 +5281372 goalTotal = 30 +5281372 otherCount = 35 +~~~ +5281376 UP 10 +5281376 waslock = 0 +5281376 512 1024 +~~~ +5281500 DOWN 10 +5281500 0 1024 +5281522 UP 10 +5281522 waslock = 0 +5281522 512 1024 +~~~ +~~~ +~~~ +~~~ +5281529 homeCount = 77 +5281530 waitCount = 38 +5281530 ripCount = 32 +5281531 locktype1 = 2 +5281531 locktype2 = 7 +5281532 locktype3 = 3 +5281532 goalCount = 0 +5281533 goalTotal = 30 +5281533 otherCount = 35 +~~~ +~~~ +5281646 DOWN 10 +5281646 0 1024 +~~~ +~~~ +~~~ +~~~ +5281669 homeCount = 77 +5281669 waitCount = 38 +5281670 ripCount = 32 +5281670 locktype1 = 2 +5281671 locktype2 = 7 +5281671 locktype3 = 3 +5281672 goalCount = 0 +5281672 goalTotal = 30 +5281673 otherCount = 35 +~~~ +5281674 UP 10 +5281675 waslock = 0 +5281674 512 1024 +~~~ +5281809 DOWN 10 +5281809 0 1024 +5281818 UP 10 +5281818 waslock = 0 +5281818 512 1024 +~~~ +~~~ +~~~ +~~~ +5281840 homeCount = 77 +5281841 waitCount = 38 +5281841 ripCount = 32 +5281842 locktype1 = 2 +5281842 locktype2 = 7 +5281843 locktype3 = 3 +5281843 goalCount = 0 +5281844 goalTotal = 30 +5281844 otherCount = 35 +~~~ +~~~ +5285763 DOWN 10 +5285763 0 1024 +5285779 UP 10 +5285780 waslock = 0 +5285779 512 1024 +~~~ +~~~ +~~~ +~~~ +5285799 homeCount = 77 +5285800 waitCount = 38 +5285800 ripCount = 32 +5285801 locktype1 = 2 +5285801 locktype2 = 7 +5285802 locktype3 = 3 +5285802 goalCount = 0 +5285803 goalTotal = 30 +5285803 otherCount = 35 +~~~ +~~~ +5285874 DOWN 10 +5285874 0 1024 +~~~ +~~~ +~~~ +~~~ +5285900 homeCount = 77 +5285900 waitCount = 38 +5285901 ripCount = 32 +5285901 locktype1 = 2 +5285902 locktype2 = 7 +5285902 locktype3 = 3 +5285902 goalCount = 0 +5285903 goalTotal = 30 +5285903 otherCount = 35 +~~~ +5285920 UP 10 +5285920 waslock = 0 +5285920 512 1024 +~~~ +5285968 DOWN 10 +5285968 0 1024 +~~~ +~~~ +~~~ +~~~ +5285989 homeCount = 77 +5285990 waitCount = 38 +5285990 ripCount = 32 +5285991 locktype1 = 2 +5285991 locktype2 = 7 +5285992 locktype3 = 3 +5285992 goalCount = 0 +5285993 goalTotal = 30 +5285993 otherCount = 35 +~~~ +5287968 UP 11 +5287968 1024 1024 +5290407 DOWN 11 +5290407 0 1024 +5290421 UP 11 +5290421 1024 1024 +5290437 DOWN 11 +5290437 0 1024 +5290524 UP 11 +5290524 1024 1024 +5290968 BEEP1 +5290968 BEEP2 +~~~ +~~~ +~~~ +5290989 1024 33555456 +~~~ +5291139 1024 1024 +5296670 DOWN 11 +5296670 0 1024 +~~~ +~~~ +5296696 0 0 +~~~ +~~~ +5296698 0 1 +~~~ +~~~ +5296700 0 3 +~~~ +~~~ +5296702 0 7 +~~~ +~~~ +5296703 0 15 +~~~ +~~~ +5296705 0 31 +~~~ +~~~ +5296707 0 63 +~~~ +~~~ +5296709 0 127 +~~~ +~~~ +5296711 0 255 +5296712 homeCount = 77 +5296712 waitCount = 38 +5296713 ripCount = 33 +5296713 locktype1 = 2 +5296714 locktype2 = 7 +5296735 locktype3 = 3 +5296735 goalCount = 0 +5296736 goalTotal = 30 +5296736 otherCount = 35 +~~~ +5296737 CURRENTGOAL IS [3] +~~~ +5296738 UP 11 +5296738 1024 255 +5296936 DOWN 11 +5296936 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5296973 homeCount = 77 +5296973 waitCount = 38 +5296974 ripCount = 33 +5296974 locktype1 = 2 +5296975 locktype2 = 7 +5296975 locktype3 = 3 +5296976 goalCount = 0 +5296976 goalTotal = 30 +5296976 otherCount = 35 +~~~ +5296978 CURRENTGOAL IS [3] +~~~ +5296981 UP 11 +5296981 1024 255 +5300102 DOWN 11 +5300102 0 255 +5300120 UP 11 +5300120 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5300155 homeCount = 77 +5300156 waitCount = 38 +5300156 ripCount = 33 +5300157 locktype1 = 2 +5300157 locktype2 = 7 +5300158 locktype3 = 3 +5300158 goalCount = 0 +5300159 goalTotal = 30 +5300159 otherCount = 35 +~~~ +5300160 CURRENTGOAL IS [3] +~~~ +5302657 DOWN 11 +5302657 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5302699 homeCount = 77 +5302699 waitCount = 38 +5302700 ripCount = 33 +5302700 locktype1 = 2 +5302701 locktype2 = 7 +5302701 locktype3 = 3 +5302702 goalCount = 0 +5302702 goalTotal = 30 +5302703 otherCount = 35 +~~~ +5302704 CURRENTGOAL IS [3] +~~~ +5302808 UP 11 +5302808 1024 255 +5302848 DOWN 11 +5302848 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5302888 homeCount = 77 +5302889 waitCount = 38 +5302889 ripCount = 33 +5302890 locktype1 = 2 +5302890 locktype2 = 7 +5302891 locktype3 = 3 +5302891 goalCount = 0 +5302892 goalTotal = 30 +5302892 otherCount = 35 +~~~ +5302893 CURRENTGOAL IS [3] +~~~ +5306189 UP 8 +5306189 128 255 +~~~ +~~~ +5306730 DOWN 8 +5306730 0 255 +~~~ +~~~ +5306752 0 254 +~~~ +~~~ +5306754 0 252 +~~~ +~~~ +5306756 0 248 +~~~ +~~~ +5306757 0 240 +~~~ +~~~ +5306759 0 224 +~~~ +~~~ +5306761 0 192 +~~~ +~~~ +5306763 0 128 +~~~ +~~~ +5306765 0 0 +~~~ +~~~ +5306767 0 512 +5306768 homeCount = 77 +5306768 waitCount = 38 +5306769 ripCount = 33 +5306769 locktype1 = 2 +5306770 locktype2 = 7 +5306790 locktype3 = 3 +5306791 goalCount = 0 +5306791 goalTotal = 30 +5306792 otherCount = 36 +~~~ +5306792 128 512 +5307532 DOWN 8 +5307532 0 512 +5312695 UP 10 +5312695 waslock = 0 +5312695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5312721 512 16777728 +~~~ +5312871 512 512 +5319453 DOWN 10 +5319453 0 512 +~~~ +~~~ +5319475 0 1536 +~~~ +~~~ +5319477 0 1024 +5319478 homeCount = 78 +5319478 waitCount = 38 +5319479 ripCount = 33 +5319479 locktype1 = 2 +5319480 locktype2 = 7 +5319480 locktype3 = 3 +5319481 goalCount = 0 +5319481 goalTotal = 30 +5319482 otherCount = 36 +~~~ +5319509 UP 10 +5319509 waslock = 0 +5319509 512 1024 +5319535 DOWN 10 +5319535 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +5319565 homeCount = 78 +5319565 waitCount = 38 +5319566 ripCount = 33 +5319566 locktype1 = 2 +5319567 locktype2 = 7 +5319567 locktype3 = 3 +5319568 goalCount = 0 +5319568 goalTotal = 30 +5319569 otherCount = 36 +~~~ +5323431 UP 11 +5323431 1024 1024 +5327431 BEEP1 +5327431 BEEP2 +~~~ +~~~ +~~~ +5327453 1024 33555456 +~~~ +5327603 1024 1024 +5332677 DOWN 11 +5332677 0 1024 +5332695 UP 11 +5332695 1024 1024 +~~~ +~~~ +5332702 1024 0 +~~~ +~~~ +5332704 1024 1 +~~~ +~~~ +5332706 1024 3 +~~~ +~~~ +5332708 1024 7 +~~~ +~~~ +5332709 1024 15 +~~~ +~~~ +5332711 1024 31 +~~~ +~~~ +5332713 1024 63 +~~~ +~~~ +5332715 1024 127 +~~~ +~~~ +5332717 1024 255 +5332718 homeCount = 78 +5332718 waitCount = 38 +5332719 ripCount = 34 +5332719 locktype1 = 2 +5332740 locktype2 = 7 +5332741 locktype3 = 3 +5332741 goalCount = 0 +5332741 goalTotal = 30 +5332742 otherCount = 36 +~~~ +5332743 CURRENTGOAL IS [3] +~~~ +5332814 DOWN 11 +5332814 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5332843 UP 11 +5332842 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +5332848 homeCount = 78 +5332848 waitCount = 38 +5332849 ripCount = 34 +5332849 locktype1 = 2 +5332850 locktype2 = 7 +5332850 locktype3 = 3 +5332851 goalCount = 0 +5332851 goalTotal = 30 +5332852 otherCount = 36 +~~~ +5332853 CURRENTGOAL IS [3] +~~~ +5332941 DOWN 11 +5332941 0 255 +5332961 UP 11 +5332961 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5332978 homeCount = 78 +5332978 waitCount = 38 +5332979 ripCount = 34 +5332979 locktype1 = 2 +5332980 locktype2 = 7 +5332980 locktype3 = 3 +5332981 goalCount = 0 +5332981 goalTotal = 30 +5332982 otherCount = 36 +~~~ +5332983 CURRENTGOAL IS [3] +~~~ +5334881 DOWN 11 +5334881 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5334919 homeCount = 78 +5334919 waitCount = 38 +5334920 ripCount = 34 +5334920 locktype1 = 2 +5334921 locktype2 = 7 +5334921 locktype3 = 3 +5334922 goalCount = 0 +5334922 goalTotal = 30 +5334923 otherCount = 36 +~~~ +5334924 CURRENTGOAL IS [3] +~~~ +5340609 UP 5 +5340608 16 255 +~~~ +~~~ +5340874 DOWN 5 +5340874 0 255 +~~~ +~~~ +5340892 0 254 +~~~ +~~~ +5340894 0 252 +~~~ +~~~ +5340895 0 248 +~~~ +~~~ +5340897 0 240 +~~~ +~~~ +5340899 0 224 +~~~ +~~~ +5340901 0 192 +~~~ +~~~ +5340903 0 128 +~~~ +~~~ +5340904 0 0 +~~~ +~~~ +5340906 0 512 +5340907 homeCount = 78 +5340908 waitCount = 38 +5340908 ripCount = 34 +5340909 locktype1 = 2 +5340909 locktype2 = 7 +5340930 locktype3 = 3 +5340931 goalCount = 0 +5340931 goalTotal = 30 +5340932 otherCount = 37 +~~~ +5345212 UP 10 +5345212 waslock = 0 +5345212 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5345238 512 16777728 +~~~ +5345303 DOWN 10 +5345303 0 16777728 +~~~ +~~~ +5345330 0 16779776 +~~~ +~~~ +5345332 0 16779264 +5345333 homeCount = 79 +5345333 waitCount = 38 +5345334 ripCount = 34 +5345334 locktype1 = 2 +5345335 locktype2 = 7 +5345335 locktype3 = 3 +5345335 goalCount = 0 +5345336 goalTotal = 30 +5345336 otherCount = 37 +~~~ +5345388 0 2048 +5345395 UP 10 +5345395 waslock = 0 +5345395 512 2048 +~~~ +5345443 DOWN 10 +5345443 0 2048 +~~~ +~~~ +~~~ +~~~ +5345465 homeCount = 79 +5345466 waitCount = 38 +5345467 ripCount = 34 +5345467 locktype1 = 2 +5345467 locktype2 = 7 +5345468 locktype3 = 3 +5345468 goalCount = 0 +5345469 goalTotal = 30 +5345469 otherCount = 37 +~~~ +5345470 UP 10 +5345470 waslock = 0 +5345470 512 2048 +~~~ +5345649 DOWN 10 +5345649 0 2048 +~~~ +~~~ +~~~ +~~~ +5345675 homeCount = 79 +5345675 waitCount = 38 +5345676 ripCount = 34 +5345676 locktype1 = 2 +5345677 locktype2 = 7 +5345677 locktype3 = 3 +5345678 goalCount = 0 +5345678 goalTotal = 30 +5345679 otherCount = 37 +~~~ +5345679 UP 10 +5345679 waslock = 0 +5345679 512 2048 +~~~ +5345795 DOWN 10 +5345795 0 2048 +~~~ +~~~ +~~~ +~~~ +5345817 homeCount = 79 +5345818 waitCount = 38 +5345818 ripCount = 34 +5345819 locktype1 = 2 +5345819 locktype2 = 7 +5345819 locktype3 = 3 +5345820 goalCount = 0 +5345820 goalTotal = 30 +5345821 otherCount = 37 +~~~ +5345824 UP 10 +5345825 waslock = 0 +5345824 512 2048 +5345847 DOWN 10 +5345847 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5345864 homeCount = 79 +5345864 waitCount = 38 +5345865 ripCount = 34 +5345865 locktype1 = 2 +5345866 locktype2 = 7 +5345866 locktype3 = 3 +5345867 goalCount = 0 +5345867 goalTotal = 30 +5345868 otherCount = 37 +~~~ +5345956 UP 10 +5345956 waslock = 0 +5345956 512 2048 +5345982 DOWN 10 +5345982 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5346004 UP 10 +5346004 waslock = 0 +5346004 512 2048 +5346006 homeCount = 79 +5346006 waitCount = 38 +5346007 ripCount = 34 +5346007 locktype1 = 2 +5346008 locktype2 = 7 +5346008 locktype3 = 3 +5346009 goalCount = 0 +5346009 goalTotal = 30 +5346010 otherCount = 37 +~~~ +~~~ +5351222 DOWN 10 +5351222 0 2048 +~~~ +~~~ +~~~ +~~~ +5351245 homeCount = 79 +5351246 waitCount = 38 +5351246 ripCount = 34 +5351247 locktype1 = 2 +5351247 locktype2 = 7 +5351247 locktype3 = 3 +5351248 goalCount = 0 +5351248 goalTotal = 30 +5351249 otherCount = 37 +~~~ +5351281 UP 10 +5351281 waslock = 0 +5351281 512 2048 +~~~ +5351364 DOWN 10 +5351364 0 2048 +~~~ +~~~ +~~~ +~~~ +5351388 homeCount = 79 +5351389 waitCount = 38 +5351389 ripCount = 34 +5351390 locktype1 = 2 +5351390 locktype2 = 7 +5351391 locktype3 = 3 +5351391 goalCount = 0 +5351392 goalTotal = 30 +5351392 otherCount = 37 +~~~ +5353583 UP 12 +5353583 2048 2048 +5355776 DOWN 12 +5355776 0 2048 +5355802 UP 12 +5355802 2048 2048 +5355812 DOWN 12 +5355812 0 2048 +5355851 UP 12 +5355851 2048 2048 +5356583 CLICK1 +5356583 CLICK2 +5356595 DOWN 12 +5356595 0 2048 +~~~ +~~~ +~~~ +5356616 0 67110912 +~~~ +5356659 UP 12 +5356659 2048 67110912 +5356766 2048 2048 +~~~ +~~~ +5356769 2048 0 +~~~ +~~~ +5356771 2048 1 +~~~ +~~~ +5356773 2048 3 +~~~ +~~~ +5356774 2048 7 +~~~ +~~~ +5356776 2048 15 +~~~ +~~~ +5356778 2048 31 +~~~ +~~~ +5356780 2048 63 +~~~ +~~~ +5356782 2048 127 +~~~ +~~~ +5356784 2048 255 +5356785 homeCount = 79 +5356785 waitCount = 39 +5356786 ripCount = 34 +5356786 locktype1 = 2 +5356807 locktype2 = 7 +5356808 locktype3 = 3 +5356808 goalCount = 0 +5356809 goalTotal = 30 +5356809 otherCount = 37 +~~~ +5356810 CURRENTGOAL IS [3] +~~~ +5356916 DOWN 12 +5356916 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5356942 UP 12 +5356942 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5356950 homeCount = 79 +5356950 waitCount = 39 +5356951 ripCount = 34 +5356951 locktype1 = 2 +5356952 locktype2 = 7 +5356952 locktype3 = 3 +5356953 goalCount = 0 +5356953 goalTotal = 30 +5356954 otherCount = 37 +~~~ +5356955 CURRENTGOAL IS [3] +~~~ +5362292 DOWN 12 +5362292 0 255 +5362302 UP 12 +5362302 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5362333 homeCount = 79 +5362333 waitCount = 39 +5362334 ripCount = 34 +5362334 locktype1 = 2 +5362335 locktype2 = 7 +5362335 locktype3 = 3 +5362336 goalCount = 0 +5362336 goalTotal = 30 +5362337 otherCount = 37 +~~~ +5362338 CURRENTGOAL IS [3] +~~~ +5365136 DOWN 12 +5365136 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5365170 homeCount = 79 +5365170 waitCount = 39 +5365171 ripCount = 34 +5365171 locktype1 = 2 +5365172 locktype2 = 7 +5365172 locktype3 = 3 +5365173 goalCount = 0 +5365173 goalTotal = 30 +5365174 otherCount = 37 +~~~ +5365175 CURRENTGOAL IS [3] +~~~ +5369259 UP 6 +5369259 32 255 +~~~ +~~~ +5369588 DOWN 6 +5369587 0 255 +~~~ +~~~ +5369606 0 254 +~~~ +~~~ +5369607 0 252 +~~~ +~~~ +5369609 32 248 +~~~ +~~~ +5369611 32 240 +~~~ +~~~ +5369613 32 224 +~~~ +~~~ +5369615 32 192 +~~~ +~~~ +5369616 32 128 +~~~ +~~~ +5369618 32 0 +~~~ +~~~ +5369620 32 512 +5369621 homeCount = 79 +5369622 waitCount = 39 +5369622 ripCount = 34 +5369623 locktype1 = 2 +5369623 locktype2 = 7 +5369644 locktype3 = 3 +5369645 goalCount = 0 +5369645 goalTotal = 30 +5369646 otherCount = 38 +~~~ +5370768 DOWN 6 +5370768 0 512 +5374899 UP 10 +5374899 waslock = 0 +5374899 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5374926 512 16777728 +~~~ +5375076 512 512 +5375078 DOWN 10 +5375077 0 512 +~~~ +~~~ +5375101 0 2560 +~~~ +~~~ +5375103 0 2048 +5375104 homeCount = 80 +5375105 waitCount = 39 +5375105 ripCount = 34 +5375106 locktype1 = 2 +5375106 locktype2 = 7 +5375107 locktype3 = 3 +5375107 goalCount = 0 +5375108 goalTotal = 30 +5375108 otherCount = 38 +~~~ +5375122 UP 10 +5375122 waslock = 0 +5375122 512 2048 +~~~ +5379775 DOWN 10 +5379775 0 2048 +5379790 UP 10 +5379791 waslock = 0 +5379790 512 2048 +~~~ +~~~ +~~~ +~~~ +5379818 homeCount = 80 +5379818 waitCount = 39 +5379819 ripCount = 34 +5379819 locktype1 = 2 +5379820 locktype2 = 7 +5379820 locktype3 = 3 +5379821 goalCount = 0 +5379821 goalTotal = 30 +5379822 otherCount = 38 +~~~ +~~~ +5379874 DOWN 10 +5379874 0 2048 +~~~ +~~~ +~~~ +~~~ +5379897 homeCount = 80 +5379898 waitCount = 39 +5379898 ripCount = 34 +5379899 locktype1 = 2 +5379899 locktype2 = 7 +5379899 locktype3 = 3 +5379900 goalCount = 0 +5379900 goalTotal = 30 +5379901 otherCount = 38 +~~~ +5382027 UP 12 +5382026 2048 2048 +5383448 DOWN 12 +5383447 0 2048 +5383464 UP 12 +5383464 2048 2048 +5384242 DOWN 12 +5384242 0 2048 +5384443 LOCKOUT 3 +~~~ +5384462 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5384468 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5384556 UP 12 +5384556 2048 0 +5384693 DOWN 12 +5384693 0 0 +5384742 UP 12 +5384742 2048 0 +5384902 DOWN 12 +5384902 0 0 +5384936 UP 12 +5384936 2048 0 +5385183 DOWN 12 +5385183 0 0 +5409462 LOCKEND +~~~ +~~~ +~~~ +5409482 0 512 +5421059 UP 10 +5421059 waslock = 0 +5421059 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5421086 512 16777728 +~~~ +5421236 512 512 +5421325 DOWN 10 +5421325 0 512 +5421337 UP 10 +5421337 waslock = 0 +5421337 512 512 +~~~ +~~~ +5421350 512 1536 +~~~ +~~~ +5421352 512 1024 +5421353 homeCount = 81 +5421354 waitCount = 39 +5421354 ripCount = 34 +5421355 locktype1 = 2 +5421355 locktype2 = 7 +5421355 locktype3 = 4 +5421356 goalCount = 0 +5421356 goalTotal = 30 +5421357 otherCount = 38 +~~~ +~~~ +5421379 DOWN 10 +5421379 0 1024 +~~~ +~~~ +~~~ +~~~ +5421398 homeCount = 81 +5421398 waitCount = 39 +5421399 ripCount = 34 +5421399 locktype1 = 2 +5421400 locktype2 = 7 +5421400 locktype3 = 4 +5421401 goalCount = 0 +5421401 goalTotal = 30 +5421402 otherCount = 38 +~~~ +5421457 UP 10 +5421457 waslock = 0 +5421456 512 1024 +~~~ +5424643 DOWN 10 +5424643 0 1024 +~~~ +~~~ +~~~ +~~~ +5424663 homeCount = 81 +5424664 waitCount = 39 +5424664 ripCount = 34 +5424665 locktype1 = 2 +5424665 locktype2 = 7 +5424666 locktype3 = 4 +5424666 goalCount = 0 +5424667 goalTotal = 30 +5424667 otherCount = 38 +~~~ +5424697 UP 10 +5424698 waslock = 0 +5424697 512 1024 +~~~ +5426707 DOWN 10 +5426707 0 1024 +~~~ +~~~ +~~~ +~~~ +5426734 homeCount = 81 +5426734 waitCount = 39 +5426735 ripCount = 34 +5426735 locktype1 = 2 +5426736 locktype2 = 7 +5426736 locktype3 = 4 +5426737 goalCount = 0 +5426737 goalTotal = 30 +5426738 otherCount = 38 +~~~ +5426750 UP 10 +5426750 waslock = 0 +5426750 512 1024 +~~~ +5426812 DOWN 10 +5426812 0 1024 +~~~ +~~~ +~~~ +~~~ +5426833 homeCount = 81 +5426833 waitCount = 39 +5426834 ripCount = 34 +5426834 locktype1 = 2 +5426835 locktype2 = 7 +5426835 locktype3 = 4 +5426836 goalCount = 0 +5426836 goalTotal = 30 +5426837 otherCount = 38 +~~~ +5429056 UP 11 +5429056 1024 1024 +5429109 DOWN 11 +5429109 0 1024 +5429215 UP 11 +5429215 1024 1024 +5433057 BEEP1 +5433057 BEEP2 +~~~ +~~~ +~~~ +5433081 1024 33555456 +~~~ +5433231 1024 1024 +5433241 DOWN 11 +5433241 0 1024 +5433252 UP 11 +5433252 1024 1024 +~~~ +~~~ +5433732 1024 0 +~~~ +~~~ +5433734 1024 1 +~~~ +~~~ +5433736 1024 3 +~~~ +~~~ +5433737 1024 7 +~~~ +~~~ +5433739 1024 15 +~~~ +~~~ +5433741 1024 31 +~~~ +~~~ +5433743 1024 63 +~~~ +~~~ +5433745 1024 127 +~~~ +~~~ +5433746 1024 255 +5433747 homeCount = 81 +5433748 waitCount = 39 +5433749 ripCount = 35 +5433749 locktype1 = 2 +5433770 locktype2 = 7 +5433770 locktype3 = 4 +5433771 goalCount = 0 +5433771 goalTotal = 30 +5433772 otherCount = 38 +~~~ +5433773 CURRENTGOAL IS [3] +~~~ +5439996 DOWN 11 +5439996 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5440032 homeCount = 81 +5440032 waitCount = 39 +5440033 ripCount = 35 +5440033 locktype1 = 2 +5440034 locktype2 = 7 +5440034 locktype3 = 4 +5440035 goalCount = 0 +5440035 goalTotal = 30 +5440035 otherCount = 38 +~~~ +5440037 CURRENTGOAL IS [3] +~~~ +5448817 UP 6 +5448817 32 255 +~~~ +~~~ +5449550 DOWN 6 +5449550 0 255 +~~~ +~~~ +5449577 0 254 +~~~ +~~~ +5449579 0 252 +~~~ +~~~ +5449580 0 248 +~~~ +~~~ +5449582 0 240 +~~~ +~~~ +5449584 0 224 +~~~ +~~~ +5449586 0 192 +~~~ +~~~ +5449588 0 128 +~~~ +~~~ +5449589 0 0 +~~~ +~~~ +5449591 0 512 +5449592 homeCount = 81 +5449593 waitCount = 39 +5449593 ripCount = 35 +5449594 locktype1 = 2 +5449594 locktype2 = 7 +5449615 locktype3 = 4 +5449616 goalCount = 0 +5449616 goalTotal = 30 +5449617 otherCount = 39 +~~~ +5453833 UP 10 +5453833 waslock = 0 +5453833 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5453864 512 16777728 +~~~ +5454014 512 512 +5454054 DOWN 10 +5454054 0 512 +5454062 UP 10 +5454062 waslock = 0 +5454062 512 512 +~~~ +~~~ +5454080 512 2560 +~~~ +~~~ +5454082 512 2048 +5454083 homeCount = 82 +5454084 waitCount = 39 +5454084 ripCount = 35 +5454085 locktype1 = 2 +5454085 locktype2 = 7 +5454086 locktype3 = 4 +5454086 goalCount = 0 +5454087 goalTotal = 30 +5454087 otherCount = 39 +~~~ +~~~ +5454109 DOWN 10 +5454109 0 2048 +~~~ +~~~ +~~~ +~~~ +5454135 homeCount = 82 +5454135 waitCount = 39 +5454136 ripCount = 35 +5454136 locktype1 = 2 +5454137 locktype2 = 7 +5454137 locktype3 = 4 +5454138 goalCount = 0 +5454138 goalTotal = 30 +5454139 otherCount = 39 +~~~ +5454155 UP 10 +5454155 waslock = 0 +5454155 512 2048 +~~~ +5459304 DOWN 10 +5459304 0 2048 +~~~ +~~~ +~~~ +~~~ +5459331 homeCount = 82 +5459331 waitCount = 39 +5459332 ripCount = 35 +5459332 locktype1 = 2 +5459333 locktype2 = 7 +5459333 locktype3 = 4 +5459334 goalCount = 0 +5459334 goalTotal = 30 +5459335 otherCount = 39 +~~~ +5461800 UP 12 +5461800 2048 2048 +5464976 DOWN 12 +5464975 0 2048 +5464998 UP 12 +5464998 2048 2048 +5465058 DOWN 12 +5465058 0 2048 +5465105 UP 12 +5465105 2048 2048 +5465228 DOWN 12 +5465228 0 2048 +5465245 UP 12 +5465245 2048 2048 +5467049 DOWN 12 +5467049 0 2048 +5467092 UP 12 +5467092 2048 2048 +5467349 DOWN 12 +5467349 0 2048 +5467359 UP 12 +5467359 2048 2048 +5468800 CLICK1 +5468800 CLICK2 +~~~ +~~~ +~~~ +5468821 2048 67110912 +~~~ +5468971 2048 2048 +5477415 DOWN 12 +5477415 0 2048 +~~~ +~~~ +5477438 0 0 +~~~ +~~~ +5477440 0 1 +~~~ +~~~ +5477442 0 3 +~~~ +~~~ +5477444 0 7 +~~~ +~~~ +5477446 0 15 +~~~ +~~~ +5477447 0 31 +~~~ +~~~ +5477449 0 63 +~~~ +~~~ +5477451 0 127 +~~~ +~~~ +5477453 0 255 +5477454 homeCount = 82 +5477454 waitCount = 40 +5477455 ripCount = 35 +5477455 locktype1 = 2 +5477456 locktype2 = 7 +5477456 locktype3 = 4 +5477477 goalCount = 0 +5477478 goalTotal = 30 +5477478 otherCount = 39 +~~~ +5477479 CURRENTGOAL IS [3] +~~~ +5481136 UP 3 +5481136 4 255 +~~~ +~~~ +5481155 outer reward +~~~ +5481155 4 262399 +~~~ +~~~ +5481605 4 255 +5487589 DOWN 3 +5487589 0 255 +5487610 4 255 +~~~ +~~~ +5487626 4 254 +~~~ +~~~ +5487628 4 252 +~~~ +~~~ +5487630 4 248 +~~~ +~~~ +5487631 4 240 +~~~ +~~~ +5487633 4 224 +~~~ +~~~ +5487635 4 192 +~~~ +~~~ +5487637 4 128 +~~~ +~~~ +5487639 4 0 +~~~ +~~~ +5487641 4 512 +5487642 homeCount = 82 +5487642 waitCount = 40 +5487643 ripCount = 35 +5487643 locktype1 = 2 +5487644 locktype2 = 7 +5487665 locktype3 = 4 +5487665 goalCount = 1 +5487666 goalTotal = 31 +5487666 otherCount = 39 +~~~ +5487708 DOWN 3 +5487708 0 512 +5487767 4 512 +5487817 DOWN 3 +5487817 0 512 +5492910 UP 10 +5492910 waslock = 0 +5492910 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5492939 512 16777728 +~~~ +5493089 512 512 +5493153 DOWN 10 +5493153 0 512 +~~~ +~~~ +5493174 0 1536 +~~~ +~~~ +5493176 0 1024 +5493177 homeCount = 83 +5493178 waitCount = 40 +5493178 ripCount = 35 +5493179 locktype1 = 2 +5493179 locktype2 = 7 +5493180 locktype3 = 4 +5493180 goalCount = 1 +5493181 goalTotal = 31 +5493181 otherCount = 39 +~~~ +5493182 UP 10 +5493203 waslock = 0 +5493182 512 1024 +~~~ +5496843 DOWN 10 +5496843 0 1024 +~~~ +~~~ +~~~ +~~~ +5496867 homeCount = 83 +5496867 waitCount = 40 +5496868 ripCount = 35 +5496868 locktype1 = 2 +5496869 locktype2 = 7 +5496869 locktype3 = 4 +5496870 goalCount = 1 +5496870 goalTotal = 31 +5496870 otherCount = 39 +~~~ +5496907 UP 10 +5496907 waslock = 0 +5496907 512 1024 +~~~ +5496966 DOWN 10 +5496966 0 1024 +~~~ +~~~ +~~~ +~~~ +5496990 homeCount = 83 +5496990 waitCount = 40 +5496991 ripCount = 35 +5496991 locktype1 = 2 +5496992 locktype2 = 7 +5496992 locktype3 = 4 +5496993 goalCount = 1 +5496993 goalTotal = 31 +5496994 otherCount = 39 +~~~ +5499060 UP 11 +5499060 1024 1024 +5502861 DOWN 11 +5502861 0 1024 +5502900 UP 11 +5502900 1024 1024 +5503033 DOWN 11 +5503033 0 1024 +5503058 UP 11 +5503058 1024 1024 +5503803 DOWN 11 +5503803 0 1024 +5503839 UP 11 +5503839 1024 1024 +5504854 DOWN 11 +5504854 0 1024 +5504881 UP 11 +5504881 1024 1024 +5506061 BEEP1 +5506061 BEEP2 +~~~ +~~~ +~~~ +5506088 1024 33555456 +~~~ +5506238 1024 1024 +5512469 DOWN 11 +5512469 0 1024 +~~~ +~~~ +5512494 0 0 +~~~ +~~~ +5512496 0 1 +~~~ +~~~ +5512497 0 3 +~~~ +~~~ +5512499 0 7 +~~~ +~~~ +5512501 0 15 +~~~ +~~~ +5512503 0 31 +~~~ +~~~ +5512505 0 63 +~~~ +~~~ +5512507 0 127 +~~~ +~~~ +5512508 0 255 +5512509 homeCount = 83 +5512510 waitCount = 40 +5512510 ripCount = 36 +5512511 locktype1 = 2 +5512511 locktype2 = 7 +5512532 locktype3 = 4 +5512533 goalCount = 1 +5512533 goalTotal = 31 +5512534 otherCount = 39 +~~~ +5512535 CURRENTGOAL IS [3] +~~~ +5512585 UP 11 +5512585 1024 255 +5512624 DOWN 11 +5512624 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5512659 homeCount = 83 +5512660 waitCount = 40 +5512660 ripCount = 36 +5512661 locktype1 = 2 +5512661 locktype2 = 7 +5512662 locktype3 = 4 +5512662 goalCount = 1 +5512663 goalTotal = 31 +5512663 otherCount = 39 +~~~ +5512664 CURRENTGOAL IS [3] +~~~ +5512721 UP 11 +5512721 1024 255 +5512757 DOWN 11 +5512757 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5512790 homeCount = 83 +5512791 waitCount = 40 +5512791 ripCount = 36 +5512792 locktype1 = 2 +5512792 locktype2 = 7 +5512793 locktype3 = 4 +5512793 goalCount = 1 +5512794 goalTotal = 31 +5512794 otherCount = 39 +~~~ +5512795 CURRENTGOAL IS [3] +~~~ +5512798 UP 11 +5512798 1024 255 +5515026 DOWN 11 +5515026 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5515062 homeCount = 83 +5515062 waitCount = 40 +5515063 ripCount = 36 +5515063 locktype1 = 2 +5515064 locktype2 = 7 +5515064 locktype3 = 4 +5515065 goalCount = 1 +5515065 goalTotal = 31 +5515066 otherCount = 39 +~~~ +5515067 CURRENTGOAL IS [3] +~~~ +5515067 UP 11 +5515067 1024 255 +5515120 DOWN 11 +5515120 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5515163 homeCount = 83 +5515163 waitCount = 40 +5515164 ripCount = 36 +5515164 locktype1 = 2 +5515165 locktype2 = 7 +5515165 locktype3 = 4 +5515166 goalCount = 1 +5515166 goalTotal = 31 +5515167 otherCount = 39 +~~~ +5515168 CURRENTGOAL IS [3] +~~~ +5522004 UP 7 +5522004 64 255 +~~~ +~~~ +5523259 DOWN 7 +5523259 0 255 +~~~ +~~~ +5523277 0 254 +~~~ +~~~ +5523278 0 252 +~~~ +~~~ +5523280 0 248 +~~~ +~~~ +5523282 0 240 +~~~ +~~~ +5523284 0 224 +~~~ +~~~ +5523286 0 192 +~~~ +~~~ +5523288 0 128 +~~~ +~~~ +5523289 0 0 +~~~ +~~~ +5523291 0 512 +5523292 homeCount = 83 +5523293 waitCount = 40 +5523293 ripCount = 36 +5523294 locktype1 = 2 +5523294 locktype2 = 7 +5523315 locktype3 = 4 +5523316 goalCount = 1 +5523316 goalTotal = 31 +5523317 otherCount = 40 +~~~ +5529655 UP 10 +5529655 waslock = 0 +5529655 512 512 +~~~ +5529677 DOWN 10 +5529677 0 512 +~~~ +~~~ +~~~ +~~~ +5529683 0 16777728 +~~~ +5529696 UP 10 +5529697 waslock = 0 +5529696 512 16777728 +~~~ +~~~ +5529707 512 16779776 +~~~ +~~~ +5529709 512 16779264 +5529710 homeCount = 84 +5529710 waitCount = 40 +5529711 ripCount = 36 +5529711 locktype1 = 2 +5529712 locktype2 = 7 +5529712 locktype3 = 4 +5529713 goalCount = 1 +5529713 goalTotal = 31 +5529713 otherCount = 40 +~~~ +~~~ +5529833 512 2048 +5535219 DOWN 10 +5535219 0 2048 +~~~ +~~~ +~~~ +~~~ +5535242 homeCount = 84 +5535243 waitCount = 40 +5535243 ripCount = 36 +5535244 locktype1 = 2 +5535244 locktype2 = 7 +5535244 locktype3 = 4 +5535245 goalCount = 1 +5535245 goalTotal = 31 +5535246 otherCount = 40 +~~~ +5538565 UP 12 +5538565 2048 2048 +5544549 DOWN 12 +5544549 0 2048 +5544570 UP 12 +5544570 2048 2048 +5545566 CLICK1 +5545566 CLICK2 +~~~ +~~~ +~~~ +5545592 2048 67110912 +~~~ +5545742 2048 2048 +5550885 DOWN 12 +5550885 0 2048 +~~~ +~~~ +5550911 0 0 +~~~ +~~~ +5550912 0 1 +~~~ +~~~ +5550914 0 3 +~~~ +~~~ +5550916 0 7 +~~~ +~~~ +5550918 0 15 +~~~ +~~~ +5550920 0 31 +~~~ +~~~ +5550922 0 63 +~~~ +~~~ +5550923 0 127 +~~~ +~~~ +5550925 0 255 +5550926 homeCount = 84 +5550927 waitCount = 41 +5550927 ripCount = 36 +5550928 locktype1 = 2 +5550928 locktype2 = 7 +5550929 locktype3 = 4 +5550950 goalCount = 1 +5550950 goalTotal = 31 +5550951 otherCount = 40 +~~~ +5550952 CURRENTGOAL IS [3] +~~~ +5550952 UP 12 +5550952 2048 255 +5551037 DOWN 12 +5551037 0 255 +~~~ +~~~ +~~~ +5551057 UP 12 +5551057 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5551071 homeCount = 84 +5551072 waitCount = 41 +5551072 ripCount = 36 +5551073 locktype1 = 2 +5551073 locktype2 = 7 +5551074 locktype3 = 4 +5551074 goalCount = 1 +5551075 goalTotal = 31 +5551075 otherCount = 40 +~~~ +5551076 CURRENTGOAL IS [3] +~~~ +5551164 DOWN 12 +5551164 0 255 +5551176 UP 12 +5551176 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5551213 homeCount = 84 +5551214 waitCount = 41 +5551214 ripCount = 36 +5551215 locktype1 = 2 +5551215 locktype2 = 7 +5551216 locktype3 = 4 +5551216 goalCount = 1 +5551217 goalTotal = 31 +5551217 otherCount = 40 +~~~ +5551218 CURRENTGOAL IS [3] +~~~ +5554861 DOWN 12 +5554861 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5554903 homeCount = 84 +5554904 waitCount = 41 +5554904 ripCount = 36 +5554905 locktype1 = 2 +5554905 locktype2 = 7 +5554906 locktype3 = 4 +5554906 goalCount = 1 +5554907 goalTotal = 31 +5554907 otherCount = 40 +~~~ +5554908 CURRENTGOAL IS [3] +~~~ +5559663 UP 2 +5559663 2 255 +~~~ +~~~ +5561437 DOWN 2 +5561437 0 255 +~~~ +~~~ +5561457 0 254 +~~~ +~~~ +5561459 0 252 +~~~ +~~~ +5561460 0 248 +~~~ +~~~ +5561462 0 240 +~~~ +~~~ +5561464 0 224 +~~~ +~~~ +5561466 0 192 +~~~ +~~~ +5561468 0 128 +~~~ +~~~ +5561469 0 0 +~~~ +~~~ +5561471 0 512 +5561472 homeCount = 84 +5561473 waitCount = 41 +5561473 ripCount = 36 +5561474 locktype1 = 2 +5561474 locktype2 = 7 +5561495 locktype3 = 4 +5561496 goalCount = 1 +5561496 goalTotal = 31 +5561497 otherCount = 41 +~~~ +5564965 UP 10 +5564965 waslock = 0 +5564965 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5564994 512 16777728 +~~~ +5565007 DOWN 10 +5565007 0 16777728 +~~~ +~~~ +5565037 0 16778752 +~~~ +~~~ +5565039 0 16778240 +5565040 homeCount = 85 +5565040 waitCount = 41 +5565041 ripCount = 36 +5565041 locktype1 = 2 +5565042 locktype2 = 7 +5565042 locktype3 = 4 +5565043 goalCount = 1 +5565043 goalTotal = 31 +5565044 otherCount = 41 +~~~ +5565065 UP 10 +5565065 waslock = 0 +5565065 512 16778240 +~~~ +5565144 512 1024 +5565160 DOWN 10 +5565160 0 1024 +5565173 UP 10 +5565173 waslock = 0 +5565173 512 1024 +~~~ +~~~ +~~~ +~~~ +5565194 homeCount = 85 +5565194 waitCount = 41 +5565195 ripCount = 36 +5565195 locktype1 = 2 +5565196 locktype2 = 7 +5565196 locktype3 = 4 +5565196 goalCount = 1 +5565197 goalTotal = 31 +5565197 otherCount = 41 +~~~ +~~~ +5569406 DOWN 10 +5569406 0 1024 +~~~ +~~~ +~~~ +~~~ +5569433 homeCount = 85 +5569433 waitCount = 41 +5569434 ripCount = 36 +5569434 locktype1 = 2 +5569435 locktype2 = 7 +5569435 locktype3 = 4 +5569435 goalCount = 1 +5569436 goalTotal = 31 +5569436 otherCount = 41 +~~~ +5569465 UP 10 +5569466 waslock = 0 +5569465 512 1024 +5569491 DOWN 10 +5569491 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +5569518 homeCount = 85 +5569518 waitCount = 41 +5569519 ripCount = 36 +5569519 locktype1 = 2 +5569520 locktype2 = 7 +5569520 locktype3 = 4 +5569521 goalCount = 1 +5569521 goalTotal = 31 +5569522 otherCount = 41 +~~~ +5571097 UP 11 +5571097 1024 1024 +5574495 DOWN 11 +5574495 0 1024 +5574542 UP 11 +5574542 1024 1024 +5574781 DOWN 11 +5574781 0 1024 +5574802 UP 11 +5574802 1024 1024 +5576598 BEEP1 +5576598 BEEP2 +~~~ +~~~ +~~~ +5576622 1024 33555456 +~~~ +5576771 1024 1024 +5582951 DOWN 11 +5582951 0 1024 +~~~ +~~~ +5582969 0 0 +~~~ +~~~ +5582971 0 1 +~~~ +~~~ +5582973 0 3 +~~~ +~~~ +5582974 0 7 +~~~ +~~~ +5582976 0 15 +~~~ +~~~ +5582978 0 31 +~~~ +~~~ +5582980 0 63 +~~~ +~~~ +5582982 0 127 +~~~ +~~~ +5582984 0 255 +5582985 homeCount = 85 +5582985 waitCount = 41 +5582986 ripCount = 37 +5582986 locktype1 = 2 +5582987 locktype2 = 7 +5582987 locktype3 = 4 +5583008 goalCount = 1 +5583008 goalTotal = 31 +5583009 otherCount = 41 +~~~ +5583010 CURRENTGOAL IS [3] +~~~ +5583073 UP 11 +5583073 1024 255 +5583104 DOWN 11 +5583104 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5583138 homeCount = 85 +5583138 waitCount = 41 +5583139 ripCount = 37 +5583139 locktype1 = 2 +5583140 locktype2 = 7 +5583140 locktype3 = 4 +5583141 goalCount = 1 +5583141 goalTotal = 31 +5583142 otherCount = 41 +~~~ +5583143 CURRENTGOAL IS [3] +~~~ +5583208 UP 11 +5583208 1024 255 +5583225 DOWN 11 +5583225 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5583261 homeCount = 85 +5583262 waitCount = 41 +5583262 ripCount = 37 +5583263 locktype1 = 2 +5583263 locktype2 = 7 +5583264 locktype3 = 4 +5583264 goalCount = 1 +5583265 goalTotal = 31 +5583265 otherCount = 41 +~~~ +5583266 CURRENTGOAL IS [3] +~~~ +5583336 UP 11 +5583336 1024 255 +5585553 DOWN 11 +5585553 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5585591 homeCount = 85 +5585592 waitCount = 41 +5585592 ripCount = 37 +5585593 locktype1 = 2 +5585593 locktype2 = 7 +5585594 locktype3 = 4 +5585594 goalCount = 1 +5585595 goalTotal = 31 +5585595 otherCount = 41 +~~~ +5585596 CURRENTGOAL IS [3] +~~~ +5585606 UP 11 +5585606 1024 255 +5585621 DOWN 11 +5585621 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5585656 homeCount = 85 +5585656 waitCount = 41 +5585657 ripCount = 37 +5585657 locktype1 = 2 +5585658 locktype2 = 7 +5585658 locktype3 = 4 +5585659 goalCount = 1 +5585659 goalTotal = 31 +5585660 otherCount = 41 +~~~ +5585661 CURRENTGOAL IS [3] +~~~ +5589893 UP 4 +5589893 8 255 +~~~ +~~~ +5590508 DOWN 4 +5590508 0 255 +~~~ +~~~ +5590526 0 254 +~~~ +~~~ +5590528 0 252 +~~~ +~~~ +5590530 0 248 +~~~ +~~~ +5590532 0 240 +~~~ +~~~ +5590533 0 224 +~~~ +~~~ +5590535 0 192 +~~~ +~~~ +5590537 0 128 +~~~ +~~~ +5590539 0 0 +~~~ +~~~ +5590541 0 512 +5590542 homeCount = 85 +5590542 waitCount = 41 +5590543 ripCount = 37 +5590543 locktype1 = 2 +5590544 locktype2 = 7 +5590565 locktype3 = 4 +5590565 goalCount = 1 +5590566 goalTotal = 31 +5590566 otherCount = 42 +~~~ +5590567 8 512 +5590669 DOWN 4 +5590669 0 512 +5590754 8 512 +5590937 DOWN 4 +5590937 0 512 +5595749 UP 10 +5595749 waslock = 0 +5595749 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5595775 512 16777728 +~~~ +5595925 512 512 +5595965 DOWN 10 +5595965 0 512 +~~~ +~~~ +5595990 0 2560 +~~~ +5595992 UP 10 +5595992 waslock = 0 +5595992 512 2560 +~~~ +5595994 homeCount = 86 +5595994 waitCount = 41 +5595995 ripCount = 37 +5595995 locktype1 = 2 +5595996 locktype2 = 7 +5595996 locktype3 = 4 +5595997 goalCount = 1 +5595997 goalTotal = 31 +5596018 otherCount = 42 +~~~ +5596019 512 2048 +~~~ +5601517 DOWN 10 +5601517 0 2048 +~~~ +~~~ +~~~ +~~~ +5601544 homeCount = 86 +5601544 waitCount = 41 +5601545 ripCount = 37 +5601545 locktype1 = 2 +5601546 locktype2 = 7 +5601546 locktype3 = 4 +5601547 goalCount = 1 +5601547 goalTotal = 31 +5601548 otherCount = 42 +~~~ +5601560 UP 10 +5601560 waslock = 0 +5601560 512 2048 +~~~ +5601601 DOWN 10 +5601601 0 2048 +~~~ +~~~ +~~~ +~~~ +5601625 homeCount = 86 +5601625 waitCount = 41 +5601626 ripCount = 37 +5601626 locktype1 = 2 +5601627 locktype2 = 7 +5601627 locktype3 = 4 +5601628 goalCount = 1 +5601628 goalTotal = 31 +5601629 otherCount = 42 +~~~ +5603350 UP 12 +5603350 2048 2048 +5607351 CLICK1 +5607351 CLICK2 +~~~ +~~~ +~~~ +5607373 2048 67110912 +~~~ +5607523 2048 2048 +5613771 DOWN 12 +5613771 0 2048 +~~~ +~~~ +5613791 0 0 +~~~ +~~~ +5613793 0 1 +~~~ +~~~ +5613794 0 3 +~~~ +~~~ +5613796 0 7 +~~~ +~~~ +5613798 0 15 +~~~ +~~~ +5613800 0 31 +~~~ +~~~ +5613802 0 63 +~~~ +~~~ +5613803 0 127 +~~~ +~~~ +5613805 0 255 +5613806 homeCount = 86 +5613807 waitCount = 42 +5613807 ripCount = 37 +5613808 locktype1 = 2 +5613808 locktype2 = 7 +5613829 locktype3 = 4 +5613830 goalCount = 1 +5613830 goalTotal = 31 +5613831 otherCount = 42 +~~~ +5613832 CURRENTGOAL IS [3] +~~~ +5613832 UP 12 +5613832 2048 255 +5613856 DOWN 12 +5613856 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5613886 homeCount = 86 +5613886 waitCount = 42 +5613887 ripCount = 37 +5613887 locktype1 = 2 +5613888 locktype2 = 7 +5613888 locktype3 = 4 +5613889 goalCount = 1 +5613889 goalTotal = 31 +5613890 otherCount = 42 +~~~ +5613891 CURRENTGOAL IS [3] +~~~ +5613970 UP 12 +5613970 2048 255 +5613993 DOWN 12 +5613993 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5614033 homeCount = 86 +5614034 waitCount = 42 +5614034 ripCount = 37 +5614035 locktype1 = 2 +5614035 locktype2 = 7 +5614036 locktype3 = 4 +5614036 goalCount = 1 +5614037 goalTotal = 31 +5614037 otherCount = 42 +~~~ +5614038 CURRENTGOAL IS [3] +~~~ +5614039 UP 12 +5614039 2048 255 +5614423 DOWN 12 +5614423 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5614462 homeCount = 86 +5614463 waitCount = 42 +5614463 ripCount = 37 +5614464 locktype1 = 2 +5614464 locktype2 = 7 +5614465 locktype3 = 4 +5614465 goalCount = 1 +5614466 goalTotal = 31 +5614466 otherCount = 42 +~~~ +5614467 CURRENTGOAL IS [3] +~~~ +5617914 UP 1 +5617914 1 255 +~~~ +~~~ +5619242 DOWN 1 +5619242 0 255 +~~~ +~~~ +5619266 0 254 +~~~ +~~~ +5619268 0 252 +~~~ +~~~ +5619270 0 248 +~~~ +~~~ +5619271 0 240 +~~~ +~~~ +5619273 0 224 +~~~ +~~~ +5619275 0 192 +~~~ +~~~ +5619277 0 128 +~~~ +~~~ +5619279 0 0 +~~~ +~~~ +5619281 0 512 +5619282 homeCount = 86 +5619282 waitCount = 42 +5619282 ripCount = 37 +5619283 locktype1 = 2 +5619283 locktype2 = 7 +5619305 locktype3 = 4 +5619305 goalCount = 1 +5619305 goalTotal = 31 +5619306 otherCount = 43 +~~~ +5623329 UP 10 +5623329 waslock = 0 +5623329 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5623362 512 16777728 +~~~ +5623512 512 512 +5623523 DOWN 10 +5623523 0 512 +~~~ +~~~ +5623537 0 2560 +~~~ +~~~ +5623539 0 2048 +5623540 homeCount = 87 +5623540 waitCount = 42 +5623541 ripCount = 37 +5623541 locktype1 = 2 +5623542 locktype2 = 7 +5623542 locktype3 = 4 +5623543 goalCount = 1 +5623543 goalTotal = 31 +5623544 otherCount = 43 +~~~ +5623544 UP 10 +5623565 waslock = 0 +5623544 512 2048 +~~~ +5623698 DOWN 10 +5623698 0 2048 +5623712 UP 10 +5623712 waslock = 0 +5623712 512 2048 +~~~ +~~~ +~~~ +~~~ +5623721 homeCount = 87 +5623722 waitCount = 42 +5623722 ripCount = 37 +5623723 locktype1 = 2 +5623723 locktype2 = 7 +5623723 locktype3 = 4 +5623724 goalCount = 1 +5623724 goalTotal = 31 +5623725 otherCount = 43 +~~~ +~~~ +5627894 DOWN 10 +5627894 0 2048 +~~~ +~~~ +~~~ +~~~ +5627923 homeCount = 87 +5627923 waitCount = 42 +5627924 ripCount = 37 +5627924 locktype1 = 2 +5627925 locktype2 = 7 +5627925 locktype3 = 4 +5627926 goalCount = 1 +5627926 goalTotal = 31 +5627927 otherCount = 43 +~~~ +5629774 UP 12 +5629774 2048 2048 +5635275 CLICK1 +5635275 CLICK2 +~~~ +~~~ +~~~ +5635302 2048 67110912 +~~~ +5635452 2048 2048 +5641984 DOWN 12 +5641984 0 2048 +5642006 UP 12 +5642006 2048 2048 +~~~ +~~~ +5642011 2048 0 +~~~ +~~~ +5642013 2048 1 +~~~ +~~~ +5642015 2048 3 +~~~ +~~~ +5642016 2048 7 +~~~ +~~~ +5642018 2048 15 +~~~ +~~~ +5642020 2048 31 +~~~ +~~~ +5642022 2048 63 +~~~ +~~~ +5642024 2048 127 +~~~ +~~~ +5642026 2048 255 +5642027 homeCount = 87 +5642027 waitCount = 43 +5642028 ripCount = 37 +5642028 locktype1 = 2 +5642049 locktype2 = 7 +5642049 locktype3 = 4 +5642050 goalCount = 1 +5642050 goalTotal = 31 +5642051 otherCount = 43 +~~~ +5642052 CURRENTGOAL IS [3] +~~~ +5642075 DOWN 12 +5642075 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5642117 homeCount = 87 +5642117 waitCount = 43 +5642118 ripCount = 37 +5642118 locktype1 = 2 +5642119 locktype2 = 7 +5642119 locktype3 = 4 +5642120 goalCount = 1 +5642120 goalTotal = 31 +5642121 otherCount = 43 +~~~ +5642122 CURRENTGOAL IS [3] +~~~ +5647230 UP 2 +5647229 2 255 +~~~ +~~~ +5647953 DOWN 2 +5647953 0 255 +~~~ +~~~ +5647972 0 254 +~~~ +~~~ +5647974 0 252 +~~~ +~~~ +5647976 0 248 +~~~ +~~~ +5647977 0 240 +~~~ +~~~ +5647979 0 224 +~~~ +~~~ +5647981 0 192 +~~~ +~~~ +5647983 0 128 +~~~ +~~~ +5647985 0 0 +~~~ +~~~ +5647987 0 512 +5647988 homeCount = 87 +5647988 waitCount = 43 +5647989 ripCount = 37 +5647989 locktype1 = 2 +5647990 locktype2 = 7 +5648010 locktype3 = 4 +5648011 goalCount = 1 +5648011 goalTotal = 31 +5648012 otherCount = 44 +~~~ +5648216 2 512 +5648546 DOWN 2 +5648546 0 512 +5648670 2 512 +5648920 DOWN 2 +5648920 0 512 +5652561 UP 10 +5652561 waslock = 0 +5652561 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5652587 512 16777728 +~~~ +5652737 512 512 +5657217 DOWN 10 +5657217 0 512 +5657227 UP 10 +5657227 waslock = 0 +5657227 512 512 +~~~ +~~~ +5657243 512 2560 +~~~ +~~~ +5657245 512 2048 +5657246 homeCount = 88 +5657247 waitCount = 43 +5657247 ripCount = 37 +5657248 locktype1 = 2 +5657248 locktype2 = 7 +5657248 locktype3 = 4 +5657249 goalCount = 1 +5657249 goalTotal = 31 +5657250 otherCount = 44 +~~~ +~~~ +5657312 DOWN 10 +5657312 0 2048 +~~~ +~~~ +~~~ +~~~ +5657336 homeCount = 88 +5657336 waitCount = 43 +5657337 ripCount = 37 +5657337 locktype1 = 2 +5657338 locktype2 = 7 +5657338 locktype3 = 4 +5657339 goalCount = 1 +5657339 goalTotal = 31 +5657340 otherCount = 44 +~~~ +5659131 UP 12 +5659131 2048 2048 +5662533 DOWN 12 +5662533 0 2048 +5662574 UP 12 +5662574 2048 2048 +5662705 DOWN 12 +5662705 0 2048 +5662761 UP 12 +5662761 2048 2048 +5663131 CLICK1 +5663131 CLICK2 +~~~ +~~~ +~~~ +5663154 2048 67110912 +~~~ +5663304 2048 2048 +5670561 DOWN 12 +5670561 0 2048 +~~~ +~~~ +5670583 0 0 +~~~ +~~~ +5670585 0 1 +~~~ +~~~ +5670587 0 3 +~~~ +~~~ +5670589 0 7 +~~~ +~~~ +5670591 0 15 +~~~ +~~~ +5670592 0 31 +~~~ +~~~ +5670594 0 63 +~~~ +~~~ +5670596 0 127 +~~~ +~~~ +5670598 0 255 +5670599 homeCount = 88 +5670599 waitCount = 44 +5670600 ripCount = 37 +5670600 locktype1 = 2 +5670601 locktype2 = 7 +5670601 locktype3 = 4 +5670622 goalCount = 1 +5670623 goalTotal = 31 +5670623 otherCount = 44 +~~~ +5670624 CURRENTGOAL IS [3] +~~~ +5670625 UP 12 +5670625 2048 255 +5670656 DOWN 12 +5670656 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5670690 homeCount = 88 +5670691 waitCount = 44 +5670691 ripCount = 37 +5670692 locktype1 = 2 +5670692 locktype2 = 7 +5670693 locktype3 = 4 +5670693 goalCount = 1 +5670694 goalTotal = 31 +5670694 otherCount = 44 +~~~ +5670695 CURRENTGOAL IS [3] +~~~ +5677942 UP 2 +5677942 2 255 +~~~ +~~~ +5678387 DOWN 2 +5678387 0 255 +~~~ +~~~ +5678415 0 254 +~~~ +~~~ +5678417 0 252 +~~~ +~~~ +5678419 0 248 +~~~ +~~~ +5678420 0 240 +~~~ +~~~ +5678422 0 224 +~~~ +~~~ +5678424 0 192 +~~~ +~~~ +5678426 0 128 +~~~ +~~~ +5678428 0 0 +~~~ +~~~ +5678430 0 512 +5678431 homeCount = 88 +5678431 waitCount = 44 +5678432 ripCount = 37 +5678432 locktype1 = 2 +5678433 locktype2 = 7 +5678454 locktype3 = 4 +5678454 goalCount = 1 +5678455 goalTotal = 31 +5678455 otherCount = 45 +~~~ +5681630 UP 10 +5681630 waslock = 0 +5681630 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5681661 512 16777728 +~~~ +5681811 512 512 +5686735 DOWN 10 +5686735 0 512 +~~~ +~~~ +5686755 0 1536 +~~~ +~~~ +5686757 0 1024 +5686758 homeCount = 89 +5686759 waitCount = 44 +5686759 ripCount = 37 +5686760 locktype1 = 2 +5686760 locktype2 = 7 +5686761 locktype3 = 4 +5686761 goalCount = 1 +5686761 goalTotal = 31 +5686762 otherCount = 45 +~~~ +5688438 UP 11 +5688438 1024 1024 +5691438 BEEP1 +5691438 BEEP2 +~~~ +~~~ +~~~ +5691457 1024 33555456 +~~~ +5691544 DOWN 11 +5691544 0 33555456 +5691547 UP 11 +5691547 1024 33555456 +5691607 1024 1024 +~~~ +~~~ +5692129 1024 0 +~~~ +~~~ +5692131 1024 1 +~~~ +~~~ +5692133 1024 3 +~~~ +~~~ +5692134 1024 7 +~~~ +~~~ +5692136 1024 15 +~~~ +~~~ +5692138 1024 31 +~~~ +~~~ +5692140 1024 63 +~~~ +~~~ +5692142 1024 127 +~~~ +~~~ +5692144 1024 255 +5692145 homeCount = 89 +5692145 waitCount = 44 +5692146 ripCount = 38 +5692146 locktype1 = 2 +5692167 locktype2 = 7 +5692168 locktype3 = 4 +5692168 goalCount = 1 +5692169 goalTotal = 31 +5692169 otherCount = 45 +~~~ +5692170 CURRENTGOAL IS [3] +~~~ +5697547 DOWN 11 +5697547 0 255 +5697564 UP 11 +5697564 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697582 homeCount = 89 +5697583 waitCount = 44 +5697583 ripCount = 38 +5697584 locktype1 = 2 +5697584 locktype2 = 7 +5697585 locktype3 = 4 +5697585 goalCount = 1 +5697586 goalTotal = 31 +5697586 otherCount = 45 +~~~ +5697587 CURRENTGOAL IS [3] +~~~ +5697675 DOWN 11 +5697675 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697707 UP 11 +5697707 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +5697712 homeCount = 89 +5697713 waitCount = 44 +5697713 ripCount = 38 +5697714 locktype1 = 2 +5697714 locktype2 = 7 +5697715 locktype3 = 4 +5697715 goalCount = 1 +5697716 goalTotal = 31 +5697716 otherCount = 45 +~~~ +5697717 CURRENTGOAL IS [3] +~~~ +5697811 DOWN 11 +5697811 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697843 UP 11 +5697843 1024 255 +~~~ +~~~ +~~~ +5697846 homeCount = 89 +5697847 waitCount = 44 +5697847 ripCount = 38 +5697848 locktype1 = 2 +5697848 locktype2 = 7 +5697849 locktype3 = 4 +5697849 goalCount = 1 +5697850 goalTotal = 31 +5697850 otherCount = 45 +~~~ +5697851 CURRENTGOAL IS [3] +~~~ +5700488 DOWN 11 +5700488 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5700525 homeCount = 89 +5700526 waitCount = 44 +5700526 ripCount = 38 +5700527 locktype1 = 2 +5700527 locktype2 = 7 +5700528 locktype3 = 4 +5700528 goalCount = 1 +5700528 goalTotal = 31 +5700529 otherCount = 45 +~~~ +5700530 CURRENTGOAL IS [3] +~~~ +5700536 UP 11 +5700536 1024 255 +5700622 DOWN 11 +5700622 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5700656 homeCount = 89 +5700656 waitCount = 44 +5700657 ripCount = 38 +5700657 locktype1 = 2 +5700658 locktype2 = 7 +5700658 locktype3 = 4 +5700659 goalCount = 1 +5700659 goalTotal = 31 +5700660 otherCount = 45 +~~~ +5700661 CURRENTGOAL IS [3] +~~~ +5701175 UP 11 +5701175 1024 255 +5701502 DOWN 11 +5701502 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5701545 homeCount = 89 +5701546 waitCount = 44 +5701547 ripCount = 38 +5701547 locktype1 = 2 +5701548 locktype2 = 7 +5701548 locktype3 = 4 +5701548 goalCount = 1 +5701549 goalTotal = 31 +5701549 otherCount = 45 +~~~ +5701551 CURRENTGOAL IS [3] +~~~ +5701590 UP 11 +5701590 1024 255 +5702159 DOWN 11 +5702159 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5702196 homeCount = 89 +5702196 waitCount = 44 +5702197 ripCount = 38 +5702197 locktype1 = 2 +5702198 locktype2 = 7 +5702198 locktype3 = 4 +5702199 goalCount = 1 +5702199 goalTotal = 31 +5702200 otherCount = 45 +~~~ +5702201 CURRENTGOAL IS [3] +~~~ +5702214 UP 11 +5702214 1024 255 +5703249 DOWN 11 +5703249 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5703287 homeCount = 89 +5703288 waitCount = 44 +5703288 ripCount = 38 +5703289 locktype1 = 2 +5703290 locktype2 = 7 +5703290 locktype3 = 4 +5703290 goalCount = 1 +5703291 goalTotal = 31 +5703291 otherCount = 45 +~~~ +5703292 CURRENTGOAL IS [3] +~~~ +5716846 UP 3 +5716846 4 255 +~~~ +~~~ +5716863 outer reward +~~~ +5716864 4 262399 +~~~ +~~~ +5716866 DOWN 3 +5716866 0 262399 +~~~ +~~~ +5716883 0 262398 +~~~ +~~~ +5716885 0 262396 +~~~ +~~~ +5716887 0 262392 +~~~ +5716888 4 262392 +~~~ +~~~ +5716890 4 262384 +~~~ +~~~ +5716891 4 262368 +~~~ +5716892 4 262336 +~~~ +~~~ +5716894 4 262272 +~~~ +~~~ +5716896 4 262144 +~~~ +~~~ +5716898 4 262656 +5716899 homeCount = 89 +5716899 waitCount = 44 +5716920 ripCount = 38 +5716921 locktype1 = 2 +5716921 locktype2 = 7 +5716922 locktype3 = 4 +5716922 goalCount = 2 +5716923 goalTotal = 32 +5716923 otherCount = 45 +~~~ +5717199 DOWN 3 +5717199 0 262656 +5717223 4 262656 +5717313 4 512 +5717605 DOWN 3 +5717605 0 512 +5717612 4 512 +5717719 DOWN 3 +5717719 0 512 +5717740 4 512 +5717840 DOWN 3 +5717840 0 512 +5717858 4 512 +5717966 DOWN 3 +5717966 0 512 +5717983 4 512 +5718090 DOWN 3 +5718090 0 512 +5718109 4 512 +5723871 DOWN 3 +5723871 0 512 +5723884 4 512 +5724350 DOWN 3 +5724350 0 512 +5724405 4 512 +5724458 DOWN 3 +5724458 0 512 +5728178 UP 10 +5728179 waslock = 0 +5728178 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5728208 512 16777728 +~~~ +5728358 512 512 +5734718 DOWN 10 +5734718 0 512 +5734740 UP 10 +5734740 waslock = 0 +5734740 512 512 +~~~ +~~~ +~~~ +5734743 512 1536 +~~~ +5734744 512 1024 +5734745 homeCount = 90 +5734745 waitCount = 44 +5734746 ripCount = 38 +5734746 locktype1 = 2 +5734747 locktype2 = 7 +5734747 locktype3 = 4 +5734748 goalCount = 2 +5734769 goalTotal = 32 +5734769 otherCount = 45 +~~~ +~~~ +5734818 DOWN 10 +5734818 0 1024 +~~~ +~~~ +~~~ +~~~ +5734839 homeCount = 90 +5734840 waitCount = 44 +5734840 ripCount = 38 +5734841 locktype1 = 2 +5734841 locktype2 = 7 +5734842 locktype3 = 4 +5734842 goalCount = 2 +5734843 goalTotal = 32 +5734843 otherCount = 45 +~~~ +5736341 UP 11 +5736341 1024 1024 +5739841 BEEP1 +5739841 BEEP2 +~~~ +~~~ +~~~ +5739868 1024 33555456 +~~~ +5740018 1024 1024 +5746448 DOWN 11 +5746448 0 1024 +5746457 UP 11 +5746456 1024 1024 +~~~ +~~~ +5746467 1024 0 +~~~ +~~~ +5746469 1024 1 +~~~ +~~~ +5746471 1024 3 +~~~ +~~~ +5746472 1024 7 +~~~ +~~~ +5746474 1024 15 +~~~ +~~~ +5746476 1024 31 +~~~ +~~~ +5746478 1024 63 +~~~ +~~~ +5746480 1024 127 +~~~ +~~~ +5746481 1024 255 +5746482 homeCount = 90 +5746483 waitCount = 44 +5746484 ripCount = 39 +5746484 locktype1 = 2 +5746505 locktype2 = 7 +5746505 locktype3 = 4 +5746506 goalCount = 2 +5746506 goalTotal = 32 +5746507 otherCount = 45 +~~~ +5746508 CURRENTGOAL IS [3] +~~~ +5750211 DOWN 11 +5750211 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5750252 homeCount = 90 +5750253 waitCount = 44 +5750253 ripCount = 39 +5750254 locktype1 = 2 +5750254 locktype2 = 7 +5750255 locktype3 = 4 +5750255 goalCount = 2 +5750256 goalTotal = 32 +5750256 otherCount = 45 +~~~ +5750257 CURRENTGOAL IS [3] +~~~ +5750278 UP 11 +5750278 1024 255 +5751976 DOWN 11 +5751976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5752013 homeCount = 90 +5752013 waitCount = 44 +5752014 ripCount = 39 +5752014 locktype1 = 2 +5752015 locktype2 = 7 +5752015 locktype3 = 4 +5752016 goalCount = 2 +5752016 goalTotal = 32 +5752016 otherCount = 45 +~~~ +5752018 CURRENTGOAL IS [3] +~~~ +5758629 UP 2 +5758629 2 255 +~~~ +~~~ +5759431 DOWN 2 +5759431 0 255 +~~~ +~~~ +5759455 0 254 +~~~ +~~~ +5759457 0 252 +~~~ +~~~ +5759459 0 248 +~~~ +~~~ +5759461 0 240 +~~~ +~~~ +5759463 0 224 +~~~ +~~~ +5759465 0 192 +~~~ +~~~ +5759466 0 128 +~~~ +~~~ +5759468 0 0 +~~~ +~~~ +5759470 0 512 +5759471 homeCount = 90 +5759472 waitCount = 44 +5759472 ripCount = 39 +5759473 locktype1 = 2 +5759473 locktype2 = 7 +5759494 locktype3 = 4 +5759495 goalCount = 2 +5759495 goalTotal = 32 +5759495 otherCount = 46 +~~~ +5759663 2 512 +5759777 DOWN 2 +5759777 0 512 +5765697 UP 10 +5765697 waslock = 0 +5765697 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5765722 512 16777728 +~~~ +5765872 512 512 +5765931 DOWN 10 +5765931 0 512 +5765938 UP 10 +5765938 waslock = 0 +5765938 512 512 +~~~ +~~~ +5765957 512 2560 +~~~ +~~~ +5765959 512 2048 +5765960 homeCount = 91 +5765961 waitCount = 44 +5765961 ripCount = 39 +5765962 locktype1 = 2 +5765962 locktype2 = 7 +5765962 locktype3 = 4 +5765963 goalCount = 2 +5765963 goalTotal = 32 +5765964 otherCount = 46 +~~~ +~~~ +5770516 DOWN 10 +5770516 0 2048 +5770527 UP 10 +5770527 waslock = 0 +5770527 512 2048 +~~~ +~~~ +~~~ +~~~ +5770552 homeCount = 91 +5770553 waitCount = 44 +5770553 ripCount = 39 +5770554 locktype1 = 2 +5770554 locktype2 = 7 +5770555 locktype3 = 4 +5770555 goalCount = 2 +5770556 goalTotal = 32 +5770556 otherCount = 46 +~~~ +~~~ +5770605 DOWN 10 +5770605 0 2048 +~~~ +~~~ +~~~ +~~~ +5770632 homeCount = 91 +5770632 waitCount = 44 +5770633 ripCount = 39 +5770633 locktype1 = 2 +5770634 locktype2 = 7 +5770634 locktype3 = 4 +5770635 goalCount = 2 +5770635 goalTotal = 32 +5770635 otherCount = 46 +~~~ +5772538 UP 12 +5772538 2048 2048 +5774762 DOWN 12 +5774762 0 2048 +5774792 UP 12 +5774792 2048 2048 +5774819 DOWN 12 +5774819 0 2048 +5774837 UP 12 +5774837 2048 2048 +5777111 DOWN 12 +5777111 0 2048 +5777126 UP 12 +5777126 2048 2048 +5780539 CLICK1 +5780539 CLICK2 +~~~ +~~~ +~~~ +5780558 2048 67110912 +~~~ +5780708 2048 2048 +5787618 DOWN 12 +5787618 0 2048 +~~~ +~~~ +5787637 0 0 +~~~ +~~~ +5787639 0 1 +~~~ +~~~ +5787640 0 3 +~~~ +~~~ +5787642 0 7 +~~~ +~~~ +5787644 0 15 +~~~ +~~~ +5787646 0 31 +~~~ +~~~ +5787648 0 63 +~~~ +~~~ +5787649 0 127 +~~~ +~~~ +5787651 0 255 +5787652 homeCount = 91 +5787653 waitCount = 45 +5787653 ripCount = 39 +5787654 locktype1 = 2 +5787654 locktype2 = 7 +5787675 locktype3 = 4 +5787675 goalCount = 2 +5787676 goalTotal = 32 +5787676 otherCount = 46 +~~~ +5787677 CURRENTGOAL IS [3] +~~~ +5787678 UP 12 +5787678 2048 255 +5787722 DOWN 12 +5787722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5787754 homeCount = 91 +5787755 waitCount = 45 +5787755 ripCount = 39 +5787756 locktype1 = 2 +5787756 locktype2 = 7 +5787757 locktype3 = 4 +5787757 goalCount = 2 +5787758 goalTotal = 32 +5787758 otherCount = 46 +~~~ +5787759 CURRENTGOAL IS [3] +~~~ +5795603 UP 7 +5795603 64 255 +~~~ +~~~ +5796010 DOWN 7 +5796010 0 255 +~~~ +~~~ +5796029 0 254 +~~~ +~~~ +5796031 0 252 +~~~ +~~~ +5796033 0 248 +~~~ +~~~ +5796034 0 240 +~~~ +~~~ +5796036 0 224 +~~~ +~~~ +5796038 0 192 +~~~ +~~~ +5796040 0 128 +~~~ +~~~ +5796042 0 0 +~~~ +~~~ +5796044 0 512 +5796045 homeCount = 91 +5796045 waitCount = 45 +5796046 ripCount = 39 +5796046 locktype1 = 2 +5796047 locktype2 = 7 +5796068 locktype3 = 4 +5796068 goalCount = 2 +5796069 goalTotal = 32 +5796069 otherCount = 47 +~~~ +5796070 64 512 +5796533 DOWN 7 +5796533 0 512 +5800125 UP 10 +5800125 waslock = 0 +5800125 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5800149 512 16777728 +~~~ +5800299 512 512 +5800329 DOWN 10 +5800329 0 512 +5800334 UP 10 +5800334 waslock = 0 +5800334 512 512 +~~~ +~~~ +5800353 512 1536 +~~~ +~~~ +5800355 512 1024 +5800356 homeCount = 92 +5800357 waitCount = 45 +5800357 ripCount = 39 +5800358 locktype1 = 2 +5800358 locktype2 = 7 +5800359 locktype3 = 4 +5800359 goalCount = 2 +5800359 goalTotal = 32 +5800360 otherCount = 47 +~~~ +~~~ +5805808 DOWN 10 +5805808 0 1024 +~~~ +~~~ +~~~ +~~~ +5805836 homeCount = 92 +5805836 waitCount = 45 +5805837 ripCount = 39 +5805837 locktype1 = 2 +5805838 locktype2 = 7 +5805838 locktype3 = 4 +5805839 goalCount = 2 +5805839 goalTotal = 32 +5805840 otherCount = 47 +~~~ +5807754 UP 11 +5807754 1024 1024 +5810234 DOWN 11 +5810234 0 1024 +5810278 UP 11 +5810278 1024 1024 +5810754 BEEP1 +5810754 BEEP2 +~~~ +~~~ +~~~ +5810775 1024 33555456 +~~~ +5810925 1024 1024 +5817367 DOWN 11 +5817367 0 1024 +5817376 UP 11 +5817376 1024 1024 +~~~ +~~~ +5817392 1024 0 +~~~ +~~~ +5817394 1024 1 +~~~ +~~~ +5817396 1024 3 +~~~ +~~~ +5817397 1024 7 +~~~ +~~~ +5817399 1024 15 +~~~ +~~~ +5817401 1024 31 +~~~ +~~~ +5817403 1024 63 +~~~ +~~~ +5817405 1024 127 +~~~ +~~~ +5817407 1024 255 +5817408 homeCount = 92 +5817408 waitCount = 45 +5817409 ripCount = 40 +5817409 locktype1 = 2 +5817430 locktype2 = 7 +5817431 locktype3 = 4 +5817431 goalCount = 2 +5817432 goalTotal = 32 +5817432 otherCount = 47 +~~~ +5817433 CURRENTGOAL IS [3] +~~~ +5820017 DOWN 11 +5820017 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5820058 homeCount = 92 +5820059 waitCount = 45 +5820059 ripCount = 40 +5820060 locktype1 = 2 +5820060 locktype2 = 7 +5820061 locktype3 = 4 +5820061 goalCount = 2 +5820061 goalTotal = 32 +5820062 otherCount = 47 +~~~ +5820063 CURRENTGOAL IS [3] +~~~ +5828153 UP 3 +5828153 4 255 +~~~ +~~~ +5828176 outer reward +~~~ +5828176 4 262399 +~~~ +~~~ +5828381 DOWN 3 +5828381 0 262399 +~~~ +~~~ +5828405 0 262398 +~~~ +~~~ +5828407 0 262396 +~~~ +~~~ +5828409 0 262392 +~~~ +~~~ +5828411 0 262384 +~~~ +~~~ +5828412 0 262368 +~~~ +~~~ +5828414 0 262336 +~~~ +5828416 4 262336 +~~~ +~~~ +5828417 4 262272 +~~~ +5828418 4 262144 +~~~ +~~~ +5828420 4 262656 +5828421 homeCount = 92 +5828421 waitCount = 45 +5828442 ripCount = 40 +5828443 locktype1 = 2 +5828443 locktype2 = 7 +5828444 locktype3 = 4 +5828444 goalCount = 3 +5828445 goalTotal = 33 +5828445 otherCount = 47 +~~~ +5828626 4 512 +5828783 DOWN 3 +5828783 0 512 +5828810 4 512 +5828903 DOWN 3 +5828903 0 512 +5828941 4 512 +5829030 DOWN 3 +5829030 0 512 +5829062 4 512 +5829159 DOWN 3 +5829159 0 512 +5829194 4 512 +5829292 DOWN 3 +5829292 0 512 +5829324 4 512 +5829422 DOWN 3 +5829422 0 512 +5829451 4 512 +5829559 DOWN 3 +5829559 0 512 +5829588 4 512 +5829697 DOWN 3 +5829697 0 512 +5829724 4 512 +5829837 DOWN 3 +5829837 0 512 +5829860 4 512 +5829982 DOWN 3 +5829982 0 512 +5830000 4 512 +5830129 DOWN 3 +5830129 0 512 +5830141 4 512 +5830435 DOWN 3 +5830435 0 512 +5830444 4 512 +5833394 DOWN 3 +5833394 0 512 +5833418 4 512 +5834560 DOWN 3 +5834560 0 512 +5834571 4 512 +5834740 DOWN 3 +5834740 0 512 +5834746 4 512 +5836809 DOWN 3 +5836809 0 512 +5836847 4 512 +5836894 DOWN 3 +5836894 0 512 +5840557 UP 10 +5840558 waslock = 0 +5840557 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5840584 512 16777728 +~~~ +5840734 512 512 +5844296 DOWN 10 +5844296 0 512 +~~~ +~~~ +5844316 0 2560 +~~~ +~~~ +5844318 0 2048 +5844319 homeCount = 93 +5844320 waitCount = 45 +5844320 ripCount = 40 +5844321 locktype1 = 2 +5844321 locktype2 = 7 +5844321 locktype3 = 4 +5844322 goalCount = 3 +5844322 goalTotal = 33 +5844323 otherCount = 47 +~~~ +5845949 UP 12 +5845949 2048 2048 +5849054 DOWN 12 +5849054 0 2048 +5849095 UP 12 +5849095 2048 2048 +5849949 CLICK1 +5849949 CLICK2 +~~~ +~~~ +~~~ +5849973 2048 67110912 +~~~ +5850123 2048 2048 +5856550 DOWN 12 +5856550 0 2048 +~~~ +~~~ +5856578 0 0 +~~~ +~~~ +5856580 0 1 +~~~ +~~~ +5856581 0 3 +~~~ +~~~ +5856583 0 7 +~~~ +~~~ +5856585 0 15 +~~~ +~~~ +5856587 0 31 +~~~ +~~~ +5856589 0 63 +~~~ +~~~ +5856590 0 127 +~~~ +~~~ +5856592 0 255 +5856593 homeCount = 93 +5856594 waitCount = 46 +5856594 ripCount = 40 +5856595 locktype1 = 2 +5856595 locktype2 = 7 +5856596 locktype3 = 4 +5856617 goalCount = 3 +5856618 goalTotal = 33 +5856618 otherCount = 47 +~~~ +5856619 CURRENTGOAL IS [3] +~~~ +5856644 UP 12 +5856644 2048 255 +5858693 DOWN 12 +5858693 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5858736 homeCount = 93 +5858736 waitCount = 46 +5858737 ripCount = 40 +5858737 locktype1 = 2 +5858738 locktype2 = 7 +5858738 locktype3 = 4 +5858739 goalCount = 3 +5858739 goalTotal = 33 +5858740 otherCount = 47 +~~~ +5858741 CURRENTGOAL IS [3] +~~~ +5862529 UP 3 +5862529 4 255 +~~~ +~~~ +5862552 outer reward +~~~ +5862552 4 262399 +~~~ +~~~ +5862752 DOWN 3 +5862752 0 262399 +~~~ +~~~ +5862770 0 262398 +~~~ +~~~ +5862772 0 262396 +~~~ +~~~ +5862774 0 262392 +~~~ +~~~ +5862776 0 262384 +~~~ +~~~ +5862777 0 262368 +~~~ +~~~ +5862779 0 262336 +~~~ +~~~ +5862781 0 262272 +~~~ +~~~ +5862783 0 262144 +~~~ +~~~ +5862785 0 262656 +5862786 homeCount = 93 +5862786 waitCount = 46 +5862787 ripCount = 40 +5862808 locktype1 = 2 +5862809 locktype2 = 7 +5862809 locktype3 = 4 +5862809 goalCount = 4 +5862810 goalTotal = 34 +5862810 otherCount = 47 +~~~ +5862811 4 262656 +5863002 4 512 +5863190 DOWN 3 +5863190 0 512 +5863214 4 512 +5863309 DOWN 3 +5863309 0 512 +5863346 4 512 +5863438 DOWN 3 +5863438 0 512 +5863466 4 512 +5863585 DOWN 3 +5863585 0 512 +5863605 4 512 +5863714 DOWN 3 +5863714 0 512 +5863740 4 512 +5863854 DOWN 3 +5863854 0 512 +5863877 4 512 +5863999 DOWN 3 +5863999 0 512 +5864018 4 512 +5864142 DOWN 3 +5864142 0 512 +5864162 4 512 +5864291 DOWN 3 +5864291 0 512 +5864306 4 512 +5864440 DOWN 3 +5864440 0 512 +5864456 4 512 +5870702 DOWN 3 +5870702 0 512 +5870792 4 512 +5870801 DOWN 3 +5870801 0 512 +5874682 UP 10 +5874682 waslock = 0 +5874682 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5874707 512 16777728 +~~~ +5874857 512 512 +5874917 DOWN 10 +5874917 0 512 +5874930 UP 10 +5874931 waslock = 0 +5874930 512 512 +~~~ +~~~ +5874941 512 2560 +~~~ +~~~ +5874943 512 2048 +5874944 homeCount = 94 +5874945 waitCount = 46 +5874945 ripCount = 40 +5874946 locktype1 = 2 +5874946 locktype2 = 7 +5874947 locktype3 = 4 +5874947 goalCount = 4 +5874947 goalTotal = 34 +5874948 otherCount = 47 +~~~ +~~~ +5879193 DOWN 10 +5879193 0 2048 +~~~ +~~~ +~~~ +~~~ +5879215 homeCount = 94 +5879216 waitCount = 46 +5879216 ripCount = 40 +5879217 locktype1 = 2 +5879217 locktype2 = 7 +5879218 locktype3 = 4 +5879218 goalCount = 4 +5879219 goalTotal = 34 +5879219 otherCount = 47 +~~~ +5880914 UP 12 +5880914 2048 2048 +5881174 DOWN 12 +5881174 0 2048 +5881272 UP 12 +5881272 2048 2048 +5881331 DOWN 12 +5881331 0 2048 +5881349 UP 12 +5881349 2048 2048 +5882641 DOWN 12 +5882641 0 2048 +5882721 UP 12 +5882721 2048 2048 +5883785 DOWN 12 +5883785 0 2048 +5883812 UP 12 +5883812 2048 2048 +5886414 CLICK1 +5886414 CLICK2 +~~~ +~~~ +~~~ +5886435 2048 67110912 +~~~ +5886585 2048 2048 +5892947 DOWN 12 +5892947 0 2048 +5892961 UP 12 +5892961 2048 2048 +~~~ +~~~ +5892972 2048 0 +~~~ +~~~ +5892974 2048 1 +~~~ +~~~ +5892976 2048 3 +~~~ +~~~ +5892978 2048 7 +~~~ +~~~ +5892979 2048 15 +~~~ +~~~ +5892981 2048 31 +~~~ +~~~ +5892983 2048 63 +~~~ +~~~ +5892985 2048 127 +~~~ +~~~ +5892987 2048 255 +5892988 homeCount = 94 +5892988 waitCount = 47 +5892989 ripCount = 40 +5892989 locktype1 = 2 +5893010 locktype2 = 7 +5893010 locktype3 = 4 +5893011 goalCount = 4 +5893011 goalTotal = 34 +5893012 otherCount = 47 +~~~ +5893013 CURRENTGOAL IS [3] +~~~ +5893066 DOWN 12 +5893066 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5893100 homeCount = 94 +5893101 waitCount = 47 +5893101 ripCount = 40 +5893102 locktype1 = 2 +5893102 locktype2 = 7 +5893103 locktype3 = 4 +5893103 goalCount = 4 +5893104 goalTotal = 34 +5893104 otherCount = 47 +~~~ +5893105 CURRENTGOAL IS [3] +~~~ +5893124 UP 12 +5893124 2048 255 +5894503 DOWN 12 +5894503 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5894542 homeCount = 94 +5894542 waitCount = 47 +5894543 ripCount = 40 +5894543 locktype1 = 2 +5894544 locktype2 = 7 +5894544 locktype3 = 4 +5894545 goalCount = 4 +5894545 goalTotal = 34 +5894546 otherCount = 47 +~~~ +5894547 CURRENTGOAL IS [3] +~~~ +5898051 UP 3 +5898051 4 255 +~~~ +~~~ +5898075 outer reward +~~~ +5898075 4 262399 +~~~ +~~~ +5898084 DOWN 3 +5898084 0 262399 +~~~ +~~~ +5898105 0 262398 +~~~ +~~~ +5898107 0 262396 +~~~ +~~~ +5898109 0 262392 +~~~ +~~~ +5898111 0 262384 +~~~ +~~~ +5898113 0 262368 +~~~ +~~~ +5898114 0 262336 +~~~ +~~~ +5898116 0 262272 +~~~ +~~~ +5898118 0 262144 +~~~ +5898119 4 262144 +~~~ +5898121 4 262656 +5898121 homeCount = 94 +5898122 waitCount = 47 +5898143 ripCount = 40 +5898143 locktype1 = 2 +5898143 locktype2 = 7 +5898144 locktype3 = 4 +5898144 goalCount = 5 +5898145 goalTotal = 35 +5898145 otherCount = 47 +~~~ +5898295 DOWN 3 +5898295 0 262656 +5898339 4 262656 +5898474 DOWN 3 +5898474 0 262656 +5898485 4 262656 +5898525 4 512 +5898613 DOWN 3 +5898613 0 512 +5898629 4 512 +5898725 DOWN 3 +5898725 0 512 +5898757 4 512 +5899023 DOWN 3 +5899023 0 512 +5899036 4 512 +5899150 DOWN 3 +5899150 0 512 +5899168 4 512 +5899278 DOWN 3 +5899278 0 512 +5899303 4 512 +5899418 DOWN 3 +5899418 0 512 +5899436 4 512 +5899556 DOWN 3 +5899556 0 512 +5899573 4 512 +5900710 DOWN 3 +5900710 0 512 +5900719 4 512 +5901495 DOWN 3 +5901495 0 512 +5901502 4 512 +5907977 DOWN 3 +5907977 0 512 +5907988 4 512 +5908474 DOWN 3 +5908474 0 512 +5908635 4 512 +5908689 DOWN 3 +5908689 0 512 +5913757 UP 10 +5913758 waslock = 0 +5913757 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5913783 512 16777728 +~~~ +5913933 512 512 +5917745 DOWN 10 +5917745 0 512 +~~~ +~~~ +5917767 0 2560 +~~~ +~~~ +5917769 0 2048 +5917770 homeCount = 95 +5917771 waitCount = 47 +5917771 ripCount = 40 +5917771 locktype1 = 2 +5917772 locktype2 = 7 +5917772 locktype3 = 4 +5917773 goalCount = 5 +5917773 goalTotal = 35 +5917774 otherCount = 47 +~~~ +5917777 UP 10 +5917778 waslock = 0 +5917777 512 2048 +5917816 DOWN 10 +5917816 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5917844 homeCount = 95 +5917844 waitCount = 47 +5917845 ripCount = 40 +5917845 locktype1 = 2 +5917846 locktype2 = 7 +5917846 locktype3 = 4 +5917847 goalCount = 5 +5917847 goalTotal = 35 +5917848 otherCount = 47 +~~~ +5919813 UP 12 +5919813 2048 2048 +5920060 DOWN 12 +5920060 0 2048 +5920260 LOCKOUT 3 +~~~ +5920281 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5920287 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5920319 UP 12 +5920319 2048 0 +5921986 DOWN 12 +5921986 0 0 +5922031 UP 12 +5922031 2048 0 +5928322 DOWN 12 +5928322 0 0 +5928360 UP 12 +5928360 2048 0 +5928730 DOWN 12 +5928729 0 0 +5928859 UP 12 +5928859 2048 0 +5930252 DOWN 12 +5930252 0 0 +5942734 UP 8 +5942734 128 0 +5943812 DOWN 8 +5943812 0 0 +5944012 128 0 +5944110 DOWN 8 +5944110 0 0 +5945254 128 0 +5945281 LOCKEND +~~~ +~~~ +~~~ +5945306 128 512 +5945311 DOWN 8 +5945311 0 512 +5945821 128 512 +5947058 DOWN 8 +5947058 0 512 +5970247 UP 10 +5970248 waslock = 0 +5970247 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5970272 512 16777728 +~~~ +5970422 512 512 +5972015 DOWN 10 +5972015 0 512 +5972026 UP 10 +5972026 waslock = 0 +5972026 512 512 +~~~ +~~~ +5972046 512 1536 +~~~ +~~~ +5972048 512 1024 +5972049 homeCount = 96 +5972050 waitCount = 47 +5972050 ripCount = 40 +5972051 locktype1 = 2 +5972051 locktype2 = 7 +5972052 locktype3 = 5 +5972052 goalCount = 5 +5972053 goalTotal = 35 +5972053 otherCount = 47 +~~~ +~~~ +5976454 DOWN 10 +5976454 0 1024 +~~~ +~~~ +~~~ +~~~ +5976477 homeCount = 96 +5976477 waitCount = 47 +5976478 ripCount = 40 +5976478 locktype1 = 2 +5976479 locktype2 = 7 +5976479 locktype3 = 5 +5976480 goalCount = 5 +5976480 goalTotal = 35 +5976481 otherCount = 47 +~~~ +5982820 UP 11 +5982820 1024 1024 +5983404 DOWN 11 +5983404 0 1024 +5983449 UP 11 +5983449 1024 1024 +5983553 DOWN 11 +5983553 0 1024 +5983643 UP 11 +5983643 1024 1024 +5984311 DOWN 11 +5984311 0 1024 +5984334 UP 11 +5984334 1024 1024 +5984358 DOWN 11 +5984358 0 1024 +5984404 UP 11 +5984404 1024 1024 +5984446 DOWN 11 +5984446 0 1024 +5984470 UP 11 +5984470 1024 1024 +5985787 DOWN 11 +5985787 0 1024 +5985812 UP 11 +5985812 1024 1024 +5987321 BEEP1 +5987321 BEEP2 +~~~ +~~~ +~~~ +5987346 1024 33555456 +~~~ +5987496 1024 1024 +5995025 DOWN 11 +5995025 0 1024 +~~~ +~~~ +5995044 0 0 +~~~ +~~~ +5995046 0 1 +~~~ +~~~ +5995048 0 3 +~~~ +~~~ +5995050 0 7 +~~~ +~~~ +5995052 0 15 +~~~ +~~~ +5995053 0 31 +~~~ +~~~ +5995055 0 63 +~~~ +~~~ +5995057 0 127 +~~~ +~~~ +5995059 0 255 +5995060 homeCount = 96 +5995060 waitCount = 47 +5995061 ripCount = 41 +5995061 locktype1 = 2 +5995062 locktype2 = 7 +5995062 locktype3 = 5 +5995083 goalCount = 5 +5995084 goalTotal = 35 +5995084 otherCount = 47 +~~~ +5995085 CURRENTGOAL IS [3] +~~~ +5995086 UP 11 +5995086 1024 255 +5995127 DOWN 11 +5995127 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5995166 homeCount = 96 +5995166 waitCount = 47 +5995167 ripCount = 41 +5995167 locktype1 = 2 +5995168 locktype2 = 7 +5995168 locktype3 = 5 +5995169 goalCount = 5 +5995169 goalTotal = 35 +5995170 otherCount = 47 +~~~ +5995171 CURRENTGOAL IS [3] +~~~ +5998831 UP 6 +5998831 32 255 +~~~ +~~~ +5999406 DOWN 6 +5999406 0 255 +~~~ +~~~ +5999430 0 254 +~~~ +~~~ +5999432 0 252 +~~~ +~~~ +5999434 0 248 +~~~ +~~~ +5999435 0 240 +~~~ +~~~ +5999437 0 224 +~~~ +~~~ +5999439 0 192 +~~~ +~~~ +5999441 0 128 +~~~ +~~~ +5999443 0 0 +~~~ +~~~ +5999445 0 512 +5999446 homeCount = 96 +5999446 waitCount = 47 +5999446 ripCount = 41 +5999447 locktype1 = 2 +5999447 locktype2 = 7 +5999469 locktype3 = 5 +5999469 goalCount = 5 +5999470 goalTotal = 35 +5999470 otherCount = 48 +~~~ +6003715 UP 10 +6003715 waslock = 0 +6003715 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6003747 512 16777728 +~~~ +6003897 512 512 +6003918 DOWN 10 +6003918 0 512 +~~~ +~~~ +6003946 0 1536 +~~~ +6003948 UP 10 +6003948 waslock = 0 +6003948 512 1536 +~~~ +6003950 homeCount = 97 +6003950 waitCount = 47 +6003951 ripCount = 41 +6003951 locktype1 = 2 +6003952 locktype2 = 7 +6003952 locktype3 = 5 +6003953 goalCount = 5 +6003953 goalTotal = 35 +6003974 otherCount = 48 +~~~ +6003975 DOWN 10 +6003975 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6003999 homeCount = 97 +6004000 waitCount = 47 +6004000 ripCount = 41 +6004001 locktype1 = 2 +6004001 locktype2 = 7 +6004002 locktype3 = 5 +6004002 goalCount = 5 +6004003 goalTotal = 35 +6004003 otherCount = 48 +~~~ +6004012 UP 10 +6004013 waslock = 0 +6004012 512 1024 +~~~ +6009857 DOWN 10 +6009857 0 1024 +~~~ +~~~ +~~~ +~~~ +6009879 homeCount = 97 +6009879 waitCount = 47 +6009880 ripCount = 41 +6009880 locktype1 = 2 +6009881 locktype2 = 7 +6009881 locktype3 = 5 +6009882 goalCount = 5 +6009882 goalTotal = 35 +6009883 otherCount = 48 +~~~ +6009933 UP 10 +6009934 waslock = 0 +6009933 512 1024 +6009944 DOWN 10 +6009944 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6009963 homeCount = 97 +6009964 waitCount = 47 +6009964 ripCount = 41 +6009965 locktype1 = 2 +6009965 locktype2 = 7 +6009966 locktype3 = 5 +6009966 goalCount = 5 +6009967 goalTotal = 35 +6009967 otherCount = 48 +~~~ +6012452 UP 11 +6012452 1024 1024 +6015272 DOWN 11 +6015272 0 1024 +6015283 UP 11 +6015283 1024 1024 +6015352 DOWN 11 +6015352 0 1024 +6015388 UP 11 +6015388 1024 1024 +6017952 BEEP1 +6017952 BEEP2 +~~~ +~~~ +~~~ +6017977 1024 33555456 +~~~ +6018127 1024 1024 +6023478 DOWN 11 +6023478 0 1024 +6023492 UP 11 +6023492 1024 1024 +~~~ +~~~ +6023498 1024 0 +~~~ +~~~ +6023499 1024 1 +~~~ +~~~ +6023501 1024 3 +~~~ +~~~ +6023503 1024 7 +~~~ +~~~ +6023505 1024 15 +~~~ +~~~ +6023507 1024 31 +~~~ +~~~ +6023509 1024 63 +~~~ +~~~ +6023510 1024 127 +~~~ +~~~ +6023512 1024 255 +6023513 homeCount = 97 +6023514 waitCount = 47 +6023514 ripCount = 42 +6023515 locktype1 = 2 +6023536 locktype2 = 7 +6023536 locktype3 = 5 +6023537 goalCount = 5 +6023537 goalTotal = 35 +6023538 otherCount = 48 +~~~ +6023539 CURRENTGOAL IS [3] +~~~ +6023606 DOWN 11 +6023606 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023634 UP 11 +6023634 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023643 homeCount = 97 +6023643 waitCount = 47 +6023644 ripCount = 42 +6023644 locktype1 = 2 +6023645 locktype2 = 7 +6023645 locktype3 = 5 +6023646 goalCount = 5 +6023646 goalTotal = 35 +6023647 otherCount = 48 +~~~ +6023648 CURRENTGOAL IS [3] +~~~ +6023702 DOWN 11 +6023702 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023742 homeCount = 97 +6023743 waitCount = 47 +6023743 ripCount = 42 +6023744 locktype1 = 2 +6023744 locktype2 = 7 +6023745 locktype3 = 5 +6023745 goalCount = 5 +6023746 goalTotal = 35 +6023746 otherCount = 48 +~~~ +6023747 CURRENTGOAL IS [3] +~~~ +6023800 UP 11 +6023800 1024 255 +6023848 DOWN 11 +6023848 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023883 UP 11 +6023883 1024 255 +6023884 homeCount = 97 +6023884 waitCount = 47 +6023885 ripCount = 42 +6023885 locktype1 = 2 +6023886 locktype2 = 7 +6023886 locktype3 = 5 +6023887 goalCount = 5 +6023887 goalTotal = 35 +6023888 otherCount = 48 +~~~ +6023889 CURRENTGOAL IS [3] +~~~ +6023989 DOWN 11 +6023989 0 255 +~~~ +~~~ +~~~ +~~~ +6024013 UP 11 +6024013 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6024026 homeCount = 97 +6024027 waitCount = 47 +6024027 ripCount = 42 +6024028 locktype1 = 2 +6024028 locktype2 = 7 +6024029 locktype3 = 5 +6024029 goalCount = 5 +6024030 goalTotal = 35 +6024030 otherCount = 48 +~~~ +6024031 CURRENTGOAL IS [3] +~~~ +6024163 DOWN 11 +6024163 0 255 +6024176 UP 11 +6024176 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6024197 homeCount = 97 +6024198 waitCount = 47 +6024198 ripCount = 42 +6024199 locktype1 = 2 +6024199 locktype2 = 7 +6024200 locktype3 = 5 +6024200 goalCount = 5 +6024201 goalTotal = 35 +6024201 otherCount = 48 +~~~ +6024202 CURRENTGOAL IS [3] +~~~ +6026519 DOWN 11 +6026519 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6026563 homeCount = 97 +6026563 waitCount = 47 +6026564 ripCount = 42 +6026564 locktype1 = 2 +6026565 locktype2 = 7 +6026565 locktype3 = 5 +6026566 goalCount = 5 +6026566 goalTotal = 35 +6026567 otherCount = 48 +~~~ +6026568 CURRENTGOAL IS [3] +~~~ +6032818 UP 8 +6032818 128 255 +~~~ +~~~ +6033239 DOWN 8 +6033239 0 255 +~~~ +~~~ +6033258 0 254 +~~~ +~~~ +6033259 0 252 +~~~ +~~~ +6033261 0 248 +~~~ +~~~ +6033263 0 240 +~~~ +~~~ +6033265 0 224 +~~~ +~~~ +6033267 0 192 +~~~ +~~~ +6033269 0 128 +~~~ +~~~ +6033270 0 0 +~~~ +~~~ +6033272 0 512 +6033273 homeCount = 97 +6033274 waitCount = 47 +6033274 ripCount = 42 +6033275 locktype1 = 2 +6033275 locktype2 = 7 +6033296 locktype3 = 5 +6033297 goalCount = 5 +6033297 goalTotal = 35 +6033298 otherCount = 49 +~~~ +6033317 128 512 +6033371 DOWN 8 +6033371 0 512 +6038368 UP 10 +6038368 waslock = 0 +6038368 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6038397 512 16777728 +~~~ +6038547 512 512 +6039272 DOWN 10 +6039272 0 512 +~~~ +~~~ +6039291 0 1536 +~~~ +~~~ +6039293 0 1024 +6039294 homeCount = 98 +6039294 waitCount = 47 +6039295 ripCount = 42 +6039295 locktype1 = 2 +6039296 locktype2 = 7 +6039296 locktype3 = 5 +6039297 goalCount = 5 +6039297 goalTotal = 35 +6039297 otherCount = 49 +~~~ +6039298 UP 10 +6039319 waslock = 0 +6039298 512 1024 +~~~ +6044381 DOWN 10 +6044381 0 1024 +~~~ +~~~ +~~~ +~~~ +6044402 homeCount = 98 +6044403 waitCount = 47 +6044403 ripCount = 42 +6044404 locktype1 = 2 +6044404 locktype2 = 7 +6044405 locktype3 = 5 +6044405 goalCount = 5 +6044406 goalTotal = 35 +6044406 otherCount = 49 +~~~ +6044424 UP 10 +6044424 waslock = 0 +6044424 512 1024 +~~~ +6044471 DOWN 10 +6044471 0 1024 +~~~ +~~~ +~~~ +~~~ +6044493 homeCount = 98 +6044493 waitCount = 47 +6044494 ripCount = 42 +6044494 locktype1 = 2 +6044495 locktype2 = 7 +6044495 locktype3 = 5 +6044496 goalCount = 5 +6044496 goalTotal = 35 +6044497 otherCount = 49 +~~~ +6046733 UP 11 +6046733 1024 1024 +6049202 DOWN 11 +6049202 0 1024 +6049248 UP 11 +6049248 1024 1024 +6050940 DOWN 11 +6050940 0 1024 +6050972 UP 11 +6050972 1024 1024 +6053734 BEEP1 +6053734 BEEP2 +~~~ +~~~ +~~~ +6053752 1024 33555456 +~~~ +6053902 1024 1024 +6059069 DOWN 11 +6059069 0 1024 +~~~ +~~~ +6059095 0 0 +~~~ +~~~ +6059097 0 1 +~~~ +6059098 UP 11 +6059098 1024 1 +~~~ +~~~ +6059100 1024 3 +~~~ +~~~ +6059102 1024 7 +~~~ +6059103 1024 15 +~~~ +~~~ +6059104 1024 31 +~~~ +~~~ +6059106 1024 63 +~~~ +~~~ +6059108 1024 127 +~~~ +~~~ +6059110 1024 255 +6059111 homeCount = 98 +6059111 waitCount = 47 +6059132 ripCount = 43 +6059133 locktype1 = 2 +6059133 locktype2 = 7 +6059134 locktype3 = 5 +6059134 goalCount = 5 +6059135 goalTotal = 35 +6059135 otherCount = 49 +~~~ +6059136 CURRENTGOAL IS [3] +~~~ +6059137 DOWN 11 +6059137 0 255 +6059158 UP 11 +6059158 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059192 DOWN 11 +6059192 0 255 +~~~ +6059193 homeCount = 98 +6059194 waitCount = 47 +6059194 ripCount = 43 +6059195 locktype1 = 2 +6059195 locktype2 = 7 +6059196 locktype3 = 5 +6059196 goalCount = 5 +6059197 goalTotal = 35 +6059197 otherCount = 49 +~~~ +6059198 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059242 homeCount = 98 +6059242 waitCount = 47 +6059243 ripCount = 43 +6059243 locktype1 = 2 +6059244 locktype2 = 7 +6059244 locktype3 = 5 +6059245 goalCount = 5 +6059245 goalTotal = 35 +6059246 otherCount = 49 +~~~ +6059247 CURRENTGOAL IS [3] +~~~ +6059274 UP 11 +6059274 1024 255 +6059335 DOWN 11 +6059335 0 255 +6059341 UP 11 +6059341 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059378 homeCount = 98 +6059378 waitCount = 47 +6059379 ripCount = 43 +6059379 locktype1 = 2 +6059380 locktype2 = 7 +6059380 locktype3 = 5 +6059381 goalCount = 5 +6059381 goalTotal = 35 +6059381 otherCount = 49 +~~~ +6059383 CURRENTGOAL IS [3] +~~~ +6061599 DOWN 11 +6061599 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6061639 homeCount = 98 +6061639 waitCount = 47 +6061640 ripCount = 43 +6061640 locktype1 = 2 +6061641 locktype2 = 7 +6061641 locktype3 = 5 +6061642 goalCount = 5 +6061642 goalTotal = 35 +6061643 otherCount = 49 +~~~ +6061644 CURRENTGOAL IS [3] +~~~ +6061677 UP 11 +6061677 1024 255 +6061721 DOWN 11 +6061721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6061756 homeCount = 98 +6061757 waitCount = 47 +6061757 ripCount = 43 +6061758 locktype1 = 2 +6061758 locktype2 = 7 +6061759 locktype3 = 5 +6061759 goalCount = 5 +6061760 goalTotal = 35 +6061760 otherCount = 49 +~~~ +6061761 CURRENTGOAL IS [3] +~~~ +6067760 UP 6 +6067760 32 255 +~~~ +~~~ +6068412 DOWN 6 +6068412 0 255 +~~~ +~~~ +6068434 0 254 +~~~ +~~~ +6068436 0 252 +~~~ +~~~ +6068438 0 248 +~~~ +~~~ +6068440 0 240 +~~~ +~~~ +6068442 0 224 +~~~ +~~~ +6068443 0 192 +~~~ +~~~ +6068445 0 128 +~~~ +~~~ +6068447 0 0 +~~~ +~~~ +6068449 0 512 +6068450 homeCount = 98 +6068450 waitCount = 47 +6068451 ripCount = 43 +6068451 locktype1 = 2 +6068452 locktype2 = 7 +6068473 locktype3 = 5 +6068474 goalCount = 5 +6068474 goalTotal = 35 +6068474 otherCount = 50 +~~~ +6068505 32 512 +6068699 DOWN 6 +6068699 0 512 +6072218 UP 10 +6072218 waslock = 0 +6072218 512 512 +6072233 DOWN 10 +6072233 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6072251 0 16777728 +~~~ +~~~ +~~~ +6072254 0 16778752 +~~~ +~~~ +6072256 0 16778240 +6072257 homeCount = 99 +6072257 waitCount = 47 +6072258 ripCount = 43 +6072258 locktype1 = 2 +6072258 locktype2 = 7 +6072259 locktype3 = 5 +6072259 goalCount = 5 +6072260 goalTotal = 35 +6072260 otherCount = 50 +~~~ +6072286 UP 10 +6072286 waslock = 0 +6072286 512 16778240 +~~~ +6072401 512 1024 +6072436 DOWN 10 +6072436 0 1024 +~~~ +~~~ +~~~ +~~~ +6072460 homeCount = 99 +6072460 waitCount = 47 +6072461 ripCount = 43 +6072461 locktype1 = 2 +6072462 locktype2 = 7 +6072462 locktype3 = 5 +6072463 goalCount = 5 +6072463 goalTotal = 35 +6072464 otherCount = 50 +~~~ +6072496 UP 10 +6072496 waslock = 0 +6072496 512 1024 +~~~ +6077367 DOWN 10 +6077367 0 1024 +~~~ +~~~ +~~~ +~~~ +6077388 homeCount = 99 +6077388 waitCount = 47 +6077389 ripCount = 43 +6077389 locktype1 = 2 +6077390 locktype2 = 7 +6077390 locktype3 = 5 +6077391 goalCount = 5 +6077391 goalTotal = 35 +6077392 otherCount = 50 +~~~ +6080272 UP 11 +6080272 1024 1024 +6081281 DOWN 11 +6081281 0 1024 +6081297 UP 11 +6081297 1024 1024 +6086272 BEEP1 +6086272 BEEP2 +~~~ +~~~ +~~~ +6086296 1024 33555456 +~~~ +6086446 1024 1024 +6092798 DOWN 11 +6092798 0 1024 +~~~ +~~~ +6092824 0 0 +~~~ +~~~ +6092826 0 1 +~~~ +~~~ +6092828 0 3 +~~~ +~~~ +6092830 0 7 +~~~ +6092831 UP 11 +6092831 1024 7 +~~~ +~~~ +6092833 1024 15 +~~~ +~~~ +6092835 1024 31 +~~~ +~~~ +6092837 1024 63 +~~~ +6092838 1024 127 +~~~ +~~~ +6092839 1024 255 +6092840 homeCount = 99 +6092841 waitCount = 47 +6092862 ripCount = 44 +6092862 locktype1 = 2 +6092863 locktype2 = 7 +6092863 locktype3 = 5 +6092864 goalCount = 5 +6092864 goalTotal = 35 +6092865 otherCount = 50 +~~~ +6092866 CURRENTGOAL IS [3] +~~~ +6095570 DOWN 11 +6095570 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6095610 homeCount = 99 +6095610 waitCount = 47 +6095611 ripCount = 44 +6095611 locktype1 = 2 +6095612 locktype2 = 7 +6095612 locktype3 = 5 +6095613 goalCount = 5 +6095613 goalTotal = 35 +6095614 otherCount = 50 +~~~ +6095615 CURRENTGOAL IS [3] +~~~ +6095619 UP 11 +6095619 1024 255 +6095697 DOWN 11 +6095697 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6095730 homeCount = 99 +6095730 waitCount = 47 +6095731 ripCount = 44 +6095731 locktype1 = 2 +6095732 locktype2 = 7 +6095732 locktype3 = 5 +6095733 goalCount = 5 +6095733 goalTotal = 35 +6095734 otherCount = 50 +~~~ +6095735 CURRENTGOAL IS [3] +~~~ +6100784 UP 4 +6100784 8 255 +~~~ +~~~ +6101758 DOWN 4 +6101758 0 255 +~~~ +~~~ +6101784 0 254 +~~~ +~~~ +6101785 0 252 +~~~ +~~~ +6101787 0 248 +~~~ +~~~ +6101789 0 240 +~~~ +~~~ +6101791 0 224 +~~~ +~~~ +6101793 0 192 +~~~ +~~~ +6101794 0 128 +~~~ +~~~ +6101796 0 0 +~~~ +~~~ +6101798 0 512 +6101799 homeCount = 99 +6101800 waitCount = 47 +6101800 ripCount = 44 +6101801 locktype1 = 2 +6101801 locktype2 = 7 +6101822 locktype3 = 5 +6101823 goalCount = 5 +6101823 goalTotal = 35 +6101824 otherCount = 51 +~~~ +6101824 8 512 +6101854 DOWN 4 +6101854 0 512 +6106062 UP 10 +6106062 waslock = 0 +6106062 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6106095 512 16777728 +~~~ +6106238 DOWN 10 +6106238 0 16777728 +6106245 0 512 +~~~ +~~~ +6106259 0 2560 +~~~ +~~~ +6106261 0 2048 +6106261 homeCount = 100 +6106262 waitCount = 47 +6106262 ripCount = 44 +6106263 locktype1 = 2 +6106263 locktype2 = 7 +6106264 locktype3 = 5 +6106264 goalCount = 5 +6106265 goalTotal = 35 +6106265 otherCount = 51 +~~~ +6106278 UP 10 +6106279 waslock = 0 +6106278 512 2048 +~~~ +6111719 DOWN 10 +6111719 0 2048 +~~~ +~~~ +~~~ +~~~ +6111739 homeCount = 100 +6111739 waitCount = 47 +6111740 ripCount = 44 +6111740 locktype1 = 2 +6111741 locktype2 = 7 +6111741 locktype3 = 5 +6111742 goalCount = 5 +6111742 goalTotal = 35 +6111743 otherCount = 51 +~~~ +6113476 UP 12 +6113476 2048 2048 +6115635 DOWN 12 +6115635 0 2048 +6115646 UP 12 +6115646 2048 2048 +6116424 DOWN 12 +6116424 0 2048 +6116461 UP 12 +6116461 2048 2048 +6119477 CLICK1 +6119477 CLICK2 +~~~ +~~~ +~~~ +6119497 2048 67110912 +~~~ +6119647 2048 2048 +6127039 DOWN 12 +6127039 0 2048 +~~~ +~~~ +6127056 0 0 +~~~ +~~~ +6127058 0 1 +~~~ +~~~ +6127059 0 3 +~~~ +~~~ +6127061 0 7 +~~~ +~~~ +6127063 0 15 +~~~ +~~~ +6127065 0 31 +~~~ +~~~ +6127067 0 63 +~~~ +~~~ +6127069 0 127 +~~~ +~~~ +6127070 UP 12 +6127070 2048 255 +6127072 homeCount = 100 +6127072 waitCount = 48 +6127073 ripCount = 44 +6127073 locktype1 = 2 +6127074 locktype2 = 7 +6127095 locktype3 = 5 +6127096 goalCount = 5 +6127096 goalTotal = 35 +6127097 otherCount = 51 +~~~ +6127098 CURRENTGOAL IS [3] +~~~ +6127133 DOWN 12 +6127133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6127167 homeCount = 100 +6127167 waitCount = 48 +6127168 ripCount = 44 +6127168 locktype1 = 2 +6127169 locktype2 = 7 +6127169 locktype3 = 5 +6127170 goalCount = 5 +6127170 goalTotal = 35 +6127170 otherCount = 51 +~~~ +6127172 CURRENTGOAL IS [3] +~~~ +6131072 UP 3 +6131072 4 255 +~~~ +~~~ +6131101 outer reward +~~~ +6131102 4 262399 +~~~ +~~~ +6131384 DOWN 3 +6131384 0 262399 +~~~ +~~~ +6131407 0 262398 +~~~ +~~~ +6131409 0 262396 +~~~ +~~~ +6131411 0 262392 +~~~ +~~~ +6131413 0 262384 +~~~ +~~~ +6131415 0 262368 +~~~ +~~~ +6131416 0 262336 +~~~ +6131418 4 262336 +~~~ +~~~ +6131419 4 262272 +~~~ +6131420 4 262144 +~~~ +~~~ +6131422 4 262656 +6131423 homeCount = 100 +6131424 waitCount = 48 +6131445 ripCount = 44 +6131445 locktype1 = 2 +6131446 locktype2 = 7 +6131446 locktype3 = 5 +6131446 goalCount = 6 +6131447 goalTotal = 36 +6131447 otherCount = 51 +~~~ +6131551 4 512 +6131811 DOWN 3 +6131811 0 512 +6131828 4 512 +6131927 DOWN 3 +6131927 0 512 +6131955 4 512 +6132052 DOWN 3 +6132052 0 512 +6132082 4 512 +6132182 DOWN 3 +6132182 0 512 +6132209 4 512 +6132313 DOWN 3 +6132313 0 512 +6132339 4 512 +6132450 DOWN 3 +6132450 0 512 +6132471 4 512 +6132587 DOWN 3 +6132587 0 512 +6132610 4 512 +6132731 DOWN 3 +6132731 0 512 +6132748 4 512 +6133033 DOWN 3 +6133033 0 512 +6133043 4 512 +6138943 DOWN 3 +6138943 0 512 +6138970 4 512 +6139046 DOWN 3 +6139046 0 512 +6139128 4 512 +6139165 DOWN 3 +6139165 0 512 +6143292 UP 10 +6143293 waslock = 0 +6143292 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6143325 512 16777728 +~~~ +6143475 512 512 +6147475 DOWN 10 +6147475 0 512 +~~~ +~~~ +6147499 0 1536 +~~~ +~~~ +6147501 0 1024 +6147502 homeCount = 101 +6147502 waitCount = 48 +6147503 ripCount = 44 +6147503 locktype1 = 2 +6147504 locktype2 = 7 +6147504 locktype3 = 5 +6147505 goalCount = 6 +6147505 goalTotal = 36 +6147506 otherCount = 51 +~~~ +6147549 UP 10 +6147549 waslock = 0 +6147549 512 1024 +~~~ +6147584 DOWN 10 +6147584 0 1024 +~~~ +~~~ +~~~ +~~~ +6147612 homeCount = 101 +6147613 waitCount = 48 +6147613 ripCount = 44 +6147614 locktype1 = 2 +6147614 locktype2 = 7 +6147615 locktype3 = 5 +6147615 goalCount = 6 +6147615 goalTotal = 36 +6147616 otherCount = 51 +~~~ +6149443 UP 11 +6149443 1024 1024 +6151946 DOWN 11 +6151946 0 1024 +6152022 UP 11 +6152022 1024 1024 +6152046 DOWN 11 +6152046 0 1024 +6152082 UP 11 +6152082 1024 1024 +6153249 DOWN 11 +6153249 0 1024 +6153276 UP 11 +6153276 1024 1024 +6157443 BEEP1 +6157443 BEEP2 +~~~ +~~~ +~~~ +6157469 1024 33555456 +~~~ +6157619 1024 1024 +6163143 DOWN 11 +6163142 0 1024 +6163159 UP 11 +6163159 1024 1024 +~~~ +~~~ +6163178 1024 0 +~~~ +~~~ +6163180 1024 1 +~~~ +~~~ +6163182 1024 3 +~~~ +~~~ +6163184 1024 7 +~~~ +~~~ +6163185 1024 15 +~~~ +~~~ +6163187 1024 31 +~~~ +~~~ +6163189 1024 63 +~~~ +~~~ +6163191 1024 127 +~~~ +~~~ +6163193 1024 255 +6163194 homeCount = 101 +6163194 waitCount = 48 +6163195 ripCount = 45 +6163195 locktype1 = 2 +6163216 locktype2 = 7 +6163216 locktype3 = 5 +6163217 goalCount = 6 +6163217 goalTotal = 36 +6163218 otherCount = 51 +~~~ +6163219 CURRENTGOAL IS [3] +~~~ +6163273 DOWN 11 +6163273 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +6163305 UP 11 +6163304 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6163317 homeCount = 101 +6163317 waitCount = 48 +6163318 ripCount = 45 +6163318 locktype1 = 2 +6163319 locktype2 = 7 +6163319 locktype3 = 5 +6163320 goalCount = 6 +6163320 goalTotal = 36 +6163321 otherCount = 51 +~~~ +6163322 CURRENTGOAL IS [3] +~~~ +6167538 DOWN 11 +6167538 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6167575 homeCount = 101 +6167576 waitCount = 48 +6167576 ripCount = 45 +6167577 locktype1 = 2 +6167577 locktype2 = 7 +6167578 locktype3 = 5 +6167578 goalCount = 6 +6167579 goalTotal = 36 +6167579 otherCount = 51 +~~~ +6167580 CURRENTGOAL IS [3] +~~~ +6167605 UP 11 +6167605 1024 255 +6167660 DOWN 11 +6167660 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6167698 homeCount = 101 +6167699 waitCount = 48 +6167700 ripCount = 45 +6167700 locktype1 = 2 +6167701 locktype2 = 7 +6167701 locktype3 = 5 +6167701 goalCount = 6 +6167702 goalTotal = 36 +6167702 otherCount = 51 +~~~ +6167704 CURRENTGOAL IS [3] +~~~ +6174471 UP 2 +6174471 2 255 +~~~ +~~~ +6174897 DOWN 2 +6174897 0 255 +~~~ +~~~ +6174923 0 254 +~~~ +~~~ +6174924 0 252 +~~~ +~~~ +6174926 0 248 +~~~ +~~~ +6174928 0 240 +~~~ +~~~ +6174930 0 224 +~~~ +~~~ +6174932 0 192 +~~~ +~~~ +6174934 0 128 +~~~ +~~~ +6174935 0 0 +~~~ +~~~ +6174937 0 512 +6174938 homeCount = 101 +6174939 waitCount = 48 +6174939 ripCount = 45 +6174940 locktype1 = 2 +6174940 locktype2 = 7 +6174961 locktype3 = 5 +6174962 goalCount = 6 +6174962 goalTotal = 36 +6174963 otherCount = 52 +~~~ +6178638 UP 10 +6178638 waslock = 0 +6178638 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6178661 512 16777728 +~~~ +6178781 DOWN 10 +6178781 0 16777728 +6178796 UP 10 +6178797 waslock = 0 +6178796 512 16777728 +6178811 512 512 +~~~ +~~~ +6178815 512 1536 +~~~ +~~~ +6178817 512 1024 +6178818 homeCount = 102 +6178818 waitCount = 48 +6178819 ripCount = 45 +6178819 locktype1 = 2 +6178820 locktype2 = 7 +6178820 locktype3 = 5 +6178821 goalCount = 6 +6178821 goalTotal = 36 +6178822 otherCount = 52 +~~~ +~~~ +6183138 DOWN 10 +6183138 0 1024 +~~~ +~~~ +~~~ +~~~ +6183158 homeCount = 102 +6183159 waitCount = 48 +6183159 ripCount = 45 +6183160 locktype1 = 2 +6183160 locktype2 = 7 +6183161 locktype3 = 5 +6183161 goalCount = 6 +6183161 goalTotal = 36 +6183162 otherCount = 52 +~~~ +6184941 UP 11 +6184941 1024 1024 +6186798 DOWN 11 +6186798 0 1024 +6186827 UP 11 +6186827 1024 1024 +6187258 DOWN 11 +6187258 0 1024 +6187286 UP 11 +6187286 1024 1024 +6188348 DOWN 11 +6188348 0 1024 +6188360 UP 11 +6188360 1024 1024 +6189441 BEEP1 +6189441 BEEP2 +~~~ +~~~ +~~~ +6189469 1024 33555456 +~~~ +6189619 1024 1024 +6190398 DOWN 11 +6190398 0 1024 +6190417 UP 11 +6190417 1024 1024 +~~~ +~~~ +6190424 1024 0 +~~~ +~~~ +6190426 1024 1 +~~~ +~~~ +6190428 1024 3 +~~~ +~~~ +6190429 1024 7 +~~~ +~~~ +6190431 1024 15 +~~~ +~~~ +6190433 1024 31 +~~~ +~~~ +6190435 1024 63 +~~~ +~~~ +6190437 1024 127 +~~~ +~~~ +6190438 1024 255 +6190439 homeCount = 102 +6190440 waitCount = 48 +6190441 ripCount = 46 +6190441 locktype1 = 2 +6190462 locktype2 = 7 +6190462 locktype3 = 5 +6190463 goalCount = 6 +6190463 goalTotal = 36 +6190464 otherCount = 52 +~~~ +6190465 CURRENTGOAL IS [3] +~~~ +6190523 DOWN 11 +6190523 0 255 +6190528 UP 11 +6190528 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190560 homeCount = 102 +6190561 waitCount = 48 +6190561 ripCount = 46 +6190562 locktype1 = 2 +6190562 locktype2 = 7 +6190563 locktype3 = 5 +6190563 goalCount = 6 +6190564 goalTotal = 36 +6190564 otherCount = 52 +~~~ +6190565 CURRENTGOAL IS [3] +~~~ +6190622 DOWN 11 +6190622 0 255 +~~~ +~~~ +~~~ +6190646 UP 11 +6190646 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190660 homeCount = 102 +6190660 waitCount = 48 +6190661 ripCount = 46 +6190661 locktype1 = 2 +6190662 locktype2 = 7 +6190662 locktype3 = 5 +6190663 goalCount = 6 +6190663 goalTotal = 36 +6190664 otherCount = 52 +~~~ +6190665 CURRENTGOAL IS [3] +~~~ +6190698 DOWN 11 +6190698 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190740 homeCount = 102 +6190741 waitCount = 48 +6190741 ripCount = 46 +6190742 locktype1 = 2 +6190742 locktype2 = 7 +6190743 locktype3 = 5 +6190743 goalCount = 6 +6190744 goalTotal = 36 +6190744 otherCount = 52 +~~~ +6190745 CURRENTGOAL IS [3] +~~~ +6190756 UP 11 +6190756 1024 255 +6190794 DOWN 11 +6190794 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190830 homeCount = 102 +6190830 waitCount = 48 +6190831 ripCount = 46 +6190831 locktype1 = 2 +6190832 locktype2 = 7 +6190832 locktype3 = 5 +6190833 goalCount = 6 +6190833 goalTotal = 36 +6190834 otherCount = 52 +~~~ +6190835 CURRENTGOAL IS [3] +~~~ +6190983 UP 11 +6190983 1024 255 +6191069 DOWN 11 +6191069 0 255 +6191089 UP 11 +6191089 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6191108 DOWN 11 +6191108 0 255 +~~~ +~~~ +6191110 homeCount = 102 +6191111 waitCount = 48 +6191111 ripCount = 46 +6191112 locktype1 = 2 +6191112 locktype2 = 7 +6191113 locktype3 = 5 +6191113 goalCount = 6 +6191114 goalTotal = 36 +6191114 otherCount = 52 +~~~ +6191115 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6191164 homeCount = 102 +6191165 waitCount = 48 +6191165 ripCount = 46 +6191166 locktype1 = 2 +6191166 locktype2 = 7 +6191167 locktype3 = 5 +6191167 goalCount = 6 +6191168 goalTotal = 36 +6191168 otherCount = 52 +~~~ +6191169 CURRENTGOAL IS [3] +~~~ +6191273 UP 11 +6191273 1024 255 +6198093 DOWN 11 +6198093 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6198130 homeCount = 102 +6198130 waitCount = 48 +6198131 ripCount = 46 +6198131 locktype1 = 2 +6198132 locktype2 = 7 +6198132 locktype3 = 5 +6198133 goalCount = 6 +6198133 goalTotal = 36 +6198134 otherCount = 52 +~~~ +6198135 CURRENTGOAL IS [3] +~~~ +6202523 UP 7 +6202523 64 255 +~~~ +~~~ +6203214 DOWN 7 +6203214 0 255 +~~~ +~~~ +6203234 0 254 +~~~ +~~~ +6203236 0 252 +~~~ +~~~ +6203237 0 248 +~~~ +~~~ +6203239 0 240 +~~~ +~~~ +6203241 0 224 +~~~ +~~~ +6203243 0 192 +~~~ +~~~ +6203245 0 128 +~~~ +~~~ +6203247 0 0 +~~~ +~~~ +6203248 0 512 +6203249 homeCount = 102 +6203250 waitCount = 48 +6203250 ripCount = 46 +6203251 locktype1 = 2 +6203251 locktype2 = 7 +6203273 locktype3 = 5 +6203273 goalCount = 6 +6203274 goalTotal = 36 +6203274 otherCount = 53 +~~~ +6207230 UP 10 +6207230 waslock = 0 +6207230 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6207261 512 16777728 +~~~ +6207411 512 512 +6207527 DOWN 10 +6207527 0 512 +~~~ +~~~ +6207550 0 2560 +~~~ +~~~ +6207551 0 2048 +6207552 homeCount = 103 +6207553 waitCount = 48 +6207553 ripCount = 46 +6207554 locktype1 = 2 +6207554 locktype2 = 7 +6207555 locktype3 = 5 +6207555 goalCount = 6 +6207556 goalTotal = 36 +6207556 otherCount = 53 +~~~ +6207598 UP 10 +6207598 waslock = 0 +6207598 512 2048 +~~~ +6212686 DOWN 10 +6212686 0 2048 +~~~ +~~~ +~~~ +~~~ +6212708 homeCount = 103 +6212709 waitCount = 48 +6212709 ripCount = 46 +6212710 locktype1 = 2 +6212710 locktype2 = 7 +6212711 locktype3 = 5 +6212711 goalCount = 6 +6212712 goalTotal = 36 +6212712 otherCount = 53 +~~~ +6212713 UP 10 +6212713 waslock = 0 +6212713 512 2048 +~~~ +6212776 DOWN 10 +6212775 0 2048 +~~~ +~~~ +~~~ +~~~ +6212795 homeCount = 103 +6212796 waitCount = 48 +6212796 ripCount = 46 +6212797 locktype1 = 2 +6212797 locktype2 = 7 +6212798 locktype3 = 5 +6212798 goalCount = 6 +6212799 goalTotal = 36 +6212799 otherCount = 53 +~~~ +6214555 UP 12 +6214555 2048 2048 +6217353 DOWN 12 +6217353 0 2048 +6217356 UP 12 +6217356 2048 2048 +6217399 DOWN 12 +6217398 0 2048 +6217438 UP 12 +6217438 2048 2048 +6217465 DOWN 12 +6217465 0 2048 +6217505 UP 12 +6217505 2048 2048 +6217817 DOWN 12 +6217817 0 2048 +6217832 UP 12 +6217831 2048 2048 +6219593 DOWN 12 +6219593 0 2048 +6219608 UP 12 +6219608 2048 2048 +6219625 DOWN 12 +6219625 0 2048 +6219676 UP 12 +6219676 2048 2048 +6219797 DOWN 12 +6219797 0 2048 +6219831 UP 12 +6219831 2048 2048 +6219937 DOWN 12 +6219937 0 2048 +6219953 UP 12 +6219953 2048 2048 +6221555 CLICK1 +6221555 CLICK2 +~~~ +~~~ +~~~ +6221572 2048 67110912 +~~~ +6221722 2048 2048 +6227526 DOWN 12 +6227526 0 2048 +~~~ +~~~ +6227551 0 0 +~~~ +6227552 UP 12 +6227552 2048 0 +~~~ +~~~ +6227554 2048 1 +~~~ +~~~ +6227556 2048 3 +~~~ +6227557 2048 7 +~~~ +~~~ +6227559 2048 15 +~~~ +~~~ +6227560 2048 31 +~~~ +~~~ +6227562 2048 63 +~~~ +~~~ +6227564 2048 127 +~~~ +~~~ +6227566 2048 255 +6227567 homeCount = 103 +6227588 waitCount = 49 +6227588 ripCount = 46 +6227589 locktype1 = 2 +6227589 locktype2 = 7 +6227590 locktype3 = 5 +6227590 goalCount = 6 +6227591 goalTotal = 36 +6227591 otherCount = 53 +~~~ +6227592 CURRENTGOAL IS [3] +~~~ +6227652 DOWN 12 +6227652 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227689 homeCount = 103 +6227689 waitCount = 49 +6227690 ripCount = 46 +6227690 locktype1 = 2 +6227691 locktype2 = 7 +6227691 locktype3 = 5 +6227692 goalCount = 6 +6227692 goalTotal = 36 +6227693 otherCount = 53 +~~~ +6227694 CURRENTGOAL IS [3] +~~~ +6227745 UP 12 +6227745 2048 255 +6227816 DOWN 12 +6227816 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227853 homeCount = 103 +6227853 waitCount = 49 +6227854 ripCount = 46 +6227854 locktype1 = 2 +6227855 locktype2 = 7 +6227855 locktype3 = 5 +6227856 goalCount = 6 +6227856 goalTotal = 36 +6227857 otherCount = 53 +~~~ +6227858 CURRENTGOAL IS [3] +~~~ +6227893 UP 12 +6227893 2048 255 +6227926 DOWN 12 +6227926 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227964 homeCount = 103 +6227965 waitCount = 49 +6227966 ripCount = 46 +6227966 locktype1 = 2 +6227967 locktype2 = 7 +6227967 locktype3 = 5 +6227967 goalCount = 6 +6227968 goalTotal = 36 +6227968 otherCount = 53 +~~~ +6227970 CURRENTGOAL IS [3] +~~~ +6231199 UP 3 +6231199 4 255 +~~~ +~~~ +6231224 outer reward +~~~ +6231224 4 262399 +~~~ +~~~ +6231461 DOWN 3 +6231461 0 262399 +~~~ +~~~ +6231481 0 262398 +~~~ +~~~ +6231483 0 262396 +~~~ +~~~ +6231484 0 262392 +~~~ +~~~ +6231486 0 262384 +~~~ +~~~ +6231488 0 262368 +~~~ +~~~ +6231490 0 262336 +~~~ +~~~ +6231492 0 262272 +~~~ +~~~ +6231493 0 262144 +~~~ +~~~ +6231495 0 262656 +6231496 homeCount = 103 +6231497 waitCount = 49 +6231497 ripCount = 46 +6231498 locktype1 = 2 +6231519 locktype2 = 7 +6231519 locktype3 = 5 +6231520 goalCount = 7 +6231520 goalTotal = 37 +6231521 otherCount = 53 +~~~ +6231521 4 262656 +6231674 4 512 +6232282 DOWN 3 +6232282 0 512 +6232288 4 512 +6232415 DOWN 3 +6232415 0 512 +6232423 4 512 +6232682 DOWN 3 +6232682 0 512 +6232691 4 512 +6232821 DOWN 3 +6232821 0 512 +6232830 4 512 +6239654 DOWN 3 +6239654 0 512 +6239693 4 512 +6239759 DOWN 3 +6239759 0 512 +6243665 UP 10 +6243665 waslock = 0 +6243665 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6243697 512 16777728 +~~~ +6243847 512 512 +6247688 DOWN 10 +6247688 0 512 +~~~ +~~~ +6247711 0 2560 +~~~ +~~~ +6247713 0 2048 +6247714 homeCount = 104 +6247714 waitCount = 49 +6247715 ripCount = 46 +6247715 locktype1 = 2 +6247716 locktype2 = 7 +6247716 locktype3 = 5 +6247717 goalCount = 7 +6247717 goalTotal = 37 +6247718 otherCount = 53 +~~~ +6247723 UP 10 +6247723 waslock = 0 +6247723 512 2048 +~~~ +6247911 DOWN 10 +6247911 0 2048 +6247926 UP 10 +6247926 waslock = 0 +6247926 512 2048 +~~~ +~~~ +~~~ +~~~ +6247936 homeCount = 104 +6247937 waitCount = 49 +6247937 ripCount = 46 +6247938 locktype1 = 2 +6247938 locktype2 = 7 +6247939 locktype3 = 5 +6247939 goalCount = 7 +6247940 goalTotal = 37 +6247940 otherCount = 53 +~~~ +6247944 DOWN 10 +6247944 0 2048 +~~~ +6247985 UP 10 +6247986 waslock = 0 +6247985 512 2048 +~~~ +~~~ +~~~ +~~~ +6247991 homeCount = 104 +6247992 waitCount = 49 +6247992 ripCount = 46 +6247993 locktype1 = 2 +6247993 locktype2 = 7 +6247994 locktype3 = 5 +6247994 goalCount = 7 +6247995 goalTotal = 37 +6247995 otherCount = 53 +~~~ +~~~ +6248478 DOWN 10 +6248478 0 2048 +~~~ +~~~ +~~~ +~~~ +6248498 homeCount = 104 +6248498 waitCount = 49 +6248499 ripCount = 46 +6248499 locktype1 = 2 +6248499 locktype2 = 7 +6248500 locktype3 = 5 +6248500 goalCount = 7 +6248501 goalTotal = 37 +6248501 otherCount = 53 +~~~ +6250170 UP 12 +6250170 2048 2048 +6253007 DOWN 12 +6253007 0 2048 +6253018 UP 12 +6253018 2048 2048 +6253170 CLICK1 +6253170 CLICK2 +~~~ +~~~ +~~~ +6253198 2048 67110912 +~~~ +6253274 DOWN 12 +6253274 0 67110912 +6253295 UP 12 +6253295 2048 67110912 +6253348 2048 2048 +~~~ +~~~ +6253374 2048 0 +~~~ +~~~ +6253376 2048 1 +~~~ +~~~ +6253378 2048 3 +~~~ +~~~ +6253380 2048 7 +~~~ +~~~ +6253382 2048 15 +~~~ +~~~ +6253384 2048 31 +~~~ +~~~ +6253385 2048 63 +~~~ +~~~ +6253387 2048 127 +~~~ +~~~ +6253389 2048 255 +6253390 homeCount = 104 +6253390 waitCount = 50 +6253391 ripCount = 46 +6253392 locktype1 = 2 +6253412 locktype2 = 7 +6253413 locktype3 = 5 +6253413 goalCount = 7 +6253414 goalTotal = 37 +6253414 otherCount = 53 +~~~ +6253415 CURRENTGOAL IS [3] +~~~ +6253465 DOWN 12 +6253465 0 255 +6253469 UP 12 +6253469 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6253503 homeCount = 104 +6253504 waitCount = 50 +6253504 ripCount = 46 +6253505 locktype1 = 2 +6253505 locktype2 = 7 +6253506 locktype3 = 5 +6253506 goalCount = 7 +6253507 goalTotal = 37 +6253507 otherCount = 53 +~~~ +6253508 CURRENTGOAL IS [3] +~~~ +6259155 DOWN 12 +6259155 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259190 UP 12 +6259190 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +6259195 homeCount = 104 +6259196 waitCount = 50 +6259196 ripCount = 46 +6259197 locktype1 = 2 +6259197 locktype2 = 7 +6259198 locktype3 = 5 +6259198 goalCount = 7 +6259199 goalTotal = 37 +6259199 otherCount = 53 +~~~ +6259200 CURRENTGOAL IS [3] +~~~ +6259288 DOWN 12 +6259288 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259323 homeCount = 104 +6259324 waitCount = 50 +6259324 ripCount = 46 +6259325 locktype1 = 2 +6259325 locktype2 = 7 +6259326 locktype3 = 5 +6259326 goalCount = 7 +6259326 goalTotal = 37 +6259327 otherCount = 53 +~~~ +6259328 CURRENTGOAL IS [3] +~~~ +6259354 UP 12 +6259354 2048 255 +6259423 DOWN 12 +6259423 0 255 +6259433 UP 12 +6259433 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259464 homeCount = 104 +6259464 waitCount = 50 +6259465 ripCount = 46 +6259465 locktype1 = 2 +6259466 locktype2 = 7 +6259466 locktype3 = 5 +6259467 goalCount = 7 +6259467 goalTotal = 37 +6259468 otherCount = 53 +~~~ +6259469 CURRENTGOAL IS [3] +~~~ +6259556 DOWN 12 +6259556 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259593 homeCount = 104 +6259593 waitCount = 50 +6259594 ripCount = 46 +6259594 locktype1 = 2 +6259595 locktype2 = 7 +6259595 locktype3 = 5 +6259596 goalCount = 7 +6259596 goalTotal = 37 +6259597 otherCount = 53 +~~~ +6259598 CURRENTGOAL IS [3] +~~~ +6259605 UP 12 +6259605 2048 255 +6262944 DOWN 12 +6262944 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6262983 homeCount = 104 +6262984 waitCount = 50 +6262984 ripCount = 46 +6262985 locktype1 = 2 +6262985 locktype2 = 7 +6262986 locktype3 = 5 +6262986 goalCount = 7 +6262987 goalTotal = 37 +6262987 otherCount = 53 +~~~ +6262988 CURRENTGOAL IS [3] +~~~ +6263015 UP 12 +6263015 2048 255 +6263063 DOWN 12 +6263063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6263105 homeCount = 104 +6263106 waitCount = 50 +6263106 ripCount = 46 +6263107 locktype1 = 2 +6263107 locktype2 = 7 +6263108 locktype3 = 5 +6263108 goalCount = 7 +6263109 goalTotal = 37 +6263109 otherCount = 53 +~~~ +6263110 CURRENTGOAL IS [3] +~~~ +6267639 UP 3 +6267639 4 255 +~~~ +~~~ +6267661 outer reward +~~~ +6267661 4 262399 +~~~ +~~~ +6267664 DOWN 3 +6267664 0 262399 +~~~ +~~~ +6267681 0 262398 +~~~ +~~~ +6267683 0 262396 +~~~ +~~~ +6267685 0 262392 +~~~ +~~~ +6267687 0 262384 +~~~ +~~~ +6267688 0 262368 +~~~ +~~~ +6267690 0 262336 +~~~ +~~~ +6267692 0 262272 +~~~ +~~~ +6267694 0 262144 +~~~ +~~~ +6267696 0 262656 +6267697 homeCount = 104 +6267697 waitCount = 50 +6267698 ripCount = 46 +6267719 locktype1 = 2 +6267719 locktype2 = 7 +6267720 locktype3 = 5 +6267720 goalCount = 8 +6267721 goalTotal = 38 +6267721 otherCount = 53 +~~~ +6267722 4 262656 +6267864 DOWN 3 +6267864 0 262656 +6267907 4 262656 +6268111 4 512 +6268292 DOWN 3 +6268292 0 512 +6268311 4 512 +6268414 DOWN 3 +6268414 0 512 +6268420 4 512 +6268533 DOWN 3 +6268533 0 512 +6268554 4 512 +6268660 DOWN 3 +6268660 0 512 +6268682 4 512 +6268788 DOWN 3 +6268788 0 512 +6268816 4 512 +6268915 DOWN 3 +6268915 0 512 +6268939 4 512 +6269056 DOWN 3 +6269056 0 512 +6269079 4 512 +6269201 DOWN 3 +6269201 0 512 +6269219 4 512 +6269342 DOWN 3 +6269342 0 512 +6269357 4 512 +6275261 DOWN 3 +6275261 0 512 +6275326 4 512 +6275364 DOWN 3 +6275364 0 512 +6279323 UP 10 +6279324 waslock = 0 +6279323 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6279349 512 16777728 +~~~ +6279499 512 512 +6279523 DOWN 10 +6279523 0 512 +~~~ +~~~ +6279540 0 2560 +~~~ +~~~ +6279542 0 2048 +6279543 homeCount = 105 +6279544 waitCount = 50 +6279544 ripCount = 46 +6279545 locktype1 = 2 +6279545 locktype2 = 7 +6279546 locktype3 = 5 +6279546 goalCount = 8 +6279547 goalTotal = 38 +6279547 otherCount = 53 +~~~ +6279555 UP 10 +6279556 waslock = 0 +6279555 512 2048 +~~~ +6284324 DOWN 10 +6284324 0 2048 +~~~ +~~~ +~~~ +~~~ +6284344 homeCount = 105 +6284345 waitCount = 50 +6284345 ripCount = 46 +6284346 locktype1 = 2 +6284346 locktype2 = 7 +6284346 locktype3 = 5 +6284347 goalCount = 8 +6284347 goalTotal = 38 +6284348 otherCount = 53 +~~~ +6286304 UP 12 +6286304 2048 2048 +6287753 DOWN 12 +6287753 0 2048 +6287762 UP 12 +6287762 2048 2048 +6288087 DOWN 12 +6288087 0 2048 +6288126 UP 12 +6288126 2048 2048 +6291804 CLICK1 +6291804 CLICK2 +~~~ +~~~ +~~~ +6291824 2048 67110912 +~~~ +6291974 2048 2048 +6292013 DOWN 12 +6292013 0 2048 +~~~ +6292031 UP 12 +6292031 2048 2048 +~~~ +~~~ +6292033 2048 0 +~~~ +~~~ +6292035 2048 1 +~~~ +6292036 2048 3 +~~~ +~~~ +6292037 2048 7 +~~~ +~~~ +6292039 2048 15 +~~~ +~~~ +6292041 2048 31 +~~~ +~~~ +6292043 2048 63 +~~~ +~~~ +6292044 2048 127 +~~~ +~~~ +6292046 2048 255 +6292047 homeCount = 105 +6292069 waitCount = 51 +6292069 ripCount = 46 +6292069 locktype1 = 2 +6292070 locktype2 = 7 +6292070 locktype3 = 5 +6292071 goalCount = 8 +6292071 goalTotal = 38 +6292072 otherCount = 53 +~~~ +6292073 CURRENTGOAL IS [3] +~~~ +6303041 DOWN 12 +6303041 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6303078 homeCount = 105 +6303078 waitCount = 51 +6303079 ripCount = 46 +6303079 locktype1 = 2 +6303080 locktype2 = 7 +6303080 locktype3 = 5 +6303081 goalCount = 8 +6303081 goalTotal = 38 +6303082 otherCount = 53 +~~~ +6303083 CURRENTGOAL IS [3] +~~~ +6315313 UP 3 +6315313 4 255 +~~~ +~~~ +6315334 outer reward +~~~ +6315334 4 262399 +~~~ +~~~ +6315575 DOWN 3 +6315575 0 262399 +~~~ +~~~ +6315601 0 262398 +~~~ +~~~ +6315603 0 262396 +~~~ +~~~ +6315605 0 262392 +~~~ +~~~ +6315607 0 262384 +~~~ +~~~ +6315609 0 262368 +~~~ +~~~ +6315610 0 262336 +~~~ +~~~ +6315612 0 262272 +~~~ +~~~ +6315614 0 262144 +~~~ +~~~ +6315616 0 262656 +6315617 homeCount = 105 +6315618 waitCount = 51 +6315618 ripCount = 46 +6315618 locktype1 = 2 +6315639 locktype2 = 7 +6315640 locktype3 = 5 +6315640 goalCount = 9 +6315641 goalTotal = 39 +6315641 otherCount = 53 +~~~ +6315642 4 262656 +6315784 4 512 +6316000 DOWN 3 +6316000 0 512 +6316026 4 512 +6316119 DOWN 3 +6316119 0 512 +6316154 4 512 +6316241 DOWN 3 +6316241 0 512 +6316280 4 512 +6316365 DOWN 3 +6316365 0 512 +6316407 4 512 +6316494 DOWN 3 +6316494 0 512 +6316535 4 512 +6316625 DOWN 3 +6316625 0 512 +6316661 4 512 +6316759 DOWN 3 +6316759 0 512 +6316793 4 512 +6316912 DOWN 3 +6316912 0 512 +6316933 4 512 +6317060 DOWN 3 +6317060 0 512 +6317083 4 512 +6317210 DOWN 3 +6317210 0 512 +6317225 4 512 +6317355 DOWN 3 +6317355 0 512 +6317371 4 512 +6320953 DOWN 3 +6320953 0 512 +6320959 4 512 +6323512 DOWN 3 +6323512 0 512 +6323580 4 512 +6323594 DOWN 3 +6323594 0 512 +6329005 UP 10 +6329005 waslock = 0 +6329005 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6329038 512 16777728 +~~~ +6329156 DOWN 10 +6329156 0 16777728 +~~~ +~~~ +6329185 0 16779776 +~~~ +~~~ +6329187 0 16779264 +6329188 homeCount = 106 +6329189 waitCount = 51 +6329189 ripCount = 46 +6329190 locktype1 = 2 +6329190 locktype2 = 7 +6329191 locktype3 = 5 +6329191 goalCount = 9 +6329192 goalTotal = 39 +6329192 otherCount = 53 +~~~ +6329213 UP 10 +6329214 waslock = 0 +6329213 512 2048 +~~~ +6333127 DOWN 10 +6333127 0 2048 +~~~ +~~~ +~~~ +~~~ +6333148 homeCount = 106 +6333149 waitCount = 51 +6333149 ripCount = 46 +6333150 locktype1 = 2 +6333150 locktype2 = 7 +6333151 locktype3 = 5 +6333151 goalCount = 9 +6333151 goalTotal = 39 +6333152 otherCount = 53 +~~~ +6334853 UP 12 +6334853 2048 2048 +6336358 DOWN 12 +6336358 0 2048 +6336394 UP 12 +6336394 2048 2048 +6336421 DOWN 12 +6336421 0 2048 +6336448 UP 12 +6336448 2048 2048 +6339836 DOWN 12 +6339836 0 2048 +6339849 UP 12 +6339849 2048 2048 +6340353 CLICK1 +6340353 CLICK2 +~~~ +~~~ +~~~ +6340372 2048 67110912 +~~~ +6340522 2048 2048 +6348413 DOWN 12 +6348413 0 2048 +~~~ +~~~ +6348439 0 0 +~~~ +~~~ +6348441 0 1 +~~~ +~~~ +6348442 0 3 +~~~ +~~~ +6348444 0 7 +~~~ +~~~ +6348446 0 15 +~~~ +~~~ +6348448 0 31 +~~~ +~~~ +6348450 0 63 +~~~ +~~~ +6348452 0 127 +~~~ +~~~ +6348453 0 255 +6348454 homeCount = 106 +6348455 waitCount = 52 +6348455 ripCount = 46 +6348456 locktype1 = 2 +6348456 locktype2 = 7 +6348478 locktype3 = 5 +6348478 goalCount = 9 +6348479 goalTotal = 39 +6348479 otherCount = 53 +~~~ +6348480 CURRENTGOAL IS [3] +~~~ +6348481 UP 12 +6348481 2048 255 +6348533 DOWN 12 +6348533 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6348567 homeCount = 106 +6348567 waitCount = 52 +6348568 ripCount = 46 +6348568 locktype1 = 2 +6348569 locktype2 = 7 +6348569 locktype3 = 5 +6348570 goalCount = 9 +6348570 goalTotal = 39 +6348571 otherCount = 53 +~~~ +6348572 CURRENTGOAL IS [3] +~~~ +6348593 UP 12 +6348593 2048 255 +6348632 DOWN 12 +6348631 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6348670 homeCount = 106 +6348671 waitCount = 52 +6348671 ripCount = 46 +6348672 locktype1 = 2 +6348672 locktype2 = 7 +6348673 locktype3 = 5 +6348673 goalCount = 9 +6348674 goalTotal = 39 +6348674 otherCount = 53 +~~~ +6348675 CURRENTGOAL IS [3] +~~~ +6348773 UP 12 +6348773 2048 255 +6349353 DOWN 12 +6349352 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6349389 homeCount = 106 +6349389 waitCount = 52 +6349390 ripCount = 46 +6349390 locktype1 = 2 +6349391 locktype2 = 7 +6349391 locktype3 = 5 +6349392 goalCount = 9 +6349392 goalTotal = 39 +6349393 otherCount = 53 +~~~ +6349394 CURRENTGOAL IS [3] +~~~ +6349471 UP 12 +6349471 2048 255 +6349488 DOWN 12 +6349488 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6349526 homeCount = 106 +6349527 waitCount = 52 +6349528 ripCount = 46 +6349528 locktype1 = 2 +6349529 locktype2 = 7 +6349529 locktype3 = 5 +6349529 goalCount = 9 +6349530 goalTotal = 39 +6349530 otherCount = 53 +~~~ +6349531 CURRENTGOAL IS [3] +~~~ +6352357 UP 3 +6352357 4 255 +6352373 DOWN 3 +6352373 0 255 +~~~ +~~~ +6352379 outer reward +~~~ +6352379 0 262399 +~~~ +~~~ +6352384 outerreps = 8 +~~~ +~~~ +~~~ +~~~ +6352397 0 262398 +~~~ +~~~ +6352399 0 262396 +~~~ +~~~ +6352401 0 262392 +~~~ +~~~ +6352403 0 262384 +~~~ +~~~ +6352404 0 262368 +~~~ +~~~ +6352406 0 262336 +~~~ +~~~ +6352408 0 262272 +~~~ +~~~ +6352410 0 262144 +~~~ +~~~ +6352412 0 262656 +6352413 homeCount = 106 +6352413 waitCount = 52 +6352414 ripCount = 46 +6352435 locktype1 = 2 +6352435 locktype2 = 7 +6352436 locktype3 = 5 +6352436 goalCount = 0 +6352437 goalTotal = 40 +6352437 otherCount = 53 +~~~ +6352438 4 262656 +6352613 DOWN 3 +6352613 0 262656 +6352654 4 262656 +6352829 4 512 +6353457 DOWN 3 +6353457 0 512 +6353469 4 512 +6353587 DOWN 3 +6353587 0 512 +6353600 4 512 +6353729 DOWN 3 +6353729 0 512 +6353735 4 512 +6353868 DOWN 3 +6353868 0 512 +6353873 4 512 +6360563 DOWN 3 +6360563 0 512 +6364715 UP 10 +6364715 waslock = 0 +6364715 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6364745 512 16777728 +~~~ +6364878 DOWN 10 +6364878 0 16777728 +6364892 UP 10 +6364892 waslock = 0 +6364891 512 16777728 +6364895 512 512 +~~~ +~~~ +6364910 512 2560 +~~~ +~~~ +6364912 512 2048 +6364913 homeCount = 107 +6364913 waitCount = 52 +6364914 ripCount = 46 +6364914 locktype1 = 2 +6364915 locktype2 = 7 +6364915 locktype3 = 5 +6364916 goalCount = 0 +6364916 goalTotal = 40 +6364917 otherCount = 53 +~~~ +~~~ +6367991 DOWN 10 +6367991 0 2048 +6368002 UP 10 +6368002 waslock = 0 +6368002 512 2048 +~~~ +~~~ +~~~ +~~~ +6368025 homeCount = 107 +6368026 waitCount = 52 +6368026 ripCount = 46 +6368027 locktype1 = 2 +6368027 locktype2 = 7 +6368028 locktype3 = 5 +6368028 goalCount = 0 +6368029 goalTotal = 40 +6368029 otherCount = 53 +~~~ +~~~ +6368090 DOWN 10 +6368090 0 2048 +~~~ +~~~ +~~~ +~~~ +6368115 homeCount = 107 +6368116 waitCount = 52 +6368116 ripCount = 46 +6368117 locktype1 = 2 +6368117 locktype2 = 7 +6368118 locktype3 = 5 +6368118 goalCount = 0 +6368119 goalTotal = 40 +6368119 otherCount = 53 +~~~ +6369955 UP 12 +6369955 2048 2048 +6370697 DOWN 12 +6370697 0 2048 +6370710 UP 12 +6370710 2048 2048 +6372380 DOWN 12 +6372380 0 2048 +6372417 UP 12 +6372417 2048 2048 +6372446 DOWN 12 +6372446 0 2048 +6372474 UP 12 +6372474 2048 2048 +6373955 CLICK1 +6373955 CLICK2 +~~~ +~~~ +~~~ +6373985 2048 67110912 +~~~ +6374135 2048 2048 +6381542 DOWN 12 +6381542 0 2048 +~~~ +~~~ +6381563 0 0 +~~~ +~~~ +6381564 0 1 +~~~ +~~~ +6381566 0 3 +~~~ +~~~ +6381568 0 7 +~~~ +~~~ +6381570 0 15 +~~~ +~~~ +6381572 0 31 +~~~ +~~~ +6381574 0 63 +~~~ +~~~ +6381575 0 127 +~~~ +~~~ +6381577 0 255 +6381578 homeCount = 107 +6381579 waitCount = 53 +6381579 ripCount = 46 +6381580 locktype1 = 2 +6381580 locktype2 = 7 +6381581 locktype3 = 5 +6381602 goalCount = 0 +6381602 goalTotal = 40 +6381603 otherCount = 53 +~~~ +6381604 CURRENTGOAL IS [7] +~~~ +6381604 UP 12 +6381604 2048 255 +6381673 DOWN 12 +6381673 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6381708 homeCount = 107 +6381709 waitCount = 53 +6381709 ripCount = 46 +6381710 locktype1 = 2 +6381710 locktype2 = 7 +6381711 locktype3 = 5 +6381711 goalCount = 0 +6381712 goalTotal = 40 +6381712 otherCount = 53 +~~~ +6381713 CURRENTGOAL IS [7] +~~~ +6381775 UP 12 +6381775 2048 255 +6383359 DOWN 12 +6383359 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6383398 homeCount = 107 +6383399 waitCount = 53 +6383399 ripCount = 46 +6383400 locktype1 = 2 +6383400 locktype2 = 7 +6383401 locktype3 = 5 +6383401 goalCount = 0 +6383402 goalTotal = 40 +6383402 otherCount = 53 +~~~ +6383403 CURRENTGOAL IS [7] +~~~ +6383439 UP 12 +6383439 2048 255 +6383453 DOWN 12 +6383453 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6383489 homeCount = 107 +6383490 waitCount = 53 +6383490 ripCount = 46 +6383491 locktype1 = 2 +6383491 locktype2 = 7 +6383492 locktype3 = 5 +6383492 goalCount = 0 +6383492 goalTotal = 40 +6383493 otherCount = 53 +~~~ +6383494 CURRENTGOAL IS [7] +~~~ +6386266 UP 3 +6386266 4 255 +~~~ +~~~ +6386457 DOWN 3 +6386457 0 255 +~~~ +~~~ +6386481 0 254 +~~~ +~~~ +6386483 0 252 +~~~ +~~~ +6386485 0 248 +~~~ +~~~ +6386486 0 240 +~~~ +~~~ +6386488 0 224 +~~~ +~~~ +6386490 0 192 +~~~ +~~~ +6386492 0 128 +~~~ +~~~ +6386494 0 0 +~~~ +~~~ +6386496 0 512 +6386497 homeCount = 107 +6386497 waitCount = 53 +6386498 ripCount = 46 +6386498 locktype1 = 2 +6386499 locktype2 = 7 +6386520 locktype3 = 5 +6386520 goalCount = 0 +6386521 goalTotal = 40 +6386521 otherCount = 54 +~~~ +6386522 4 512 +6387215 DOWN 3 +6387215 0 512 +6387280 4 512 +6387330 DOWN 3 +6387330 0 512 +6391562 UP 10 +6391563 waslock = 0 +6391562 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6391588 512 16777728 +~~~ +6391612 DOWN 10 +6391612 0 16777728 +~~~ +~~~ +6391632 0 16779776 +~~~ +~~~ +6391634 0 16779264 +6391635 homeCount = 108 +6391635 waitCount = 53 +6391636 ripCount = 46 +6391636 locktype1 = 2 +6391637 locktype2 = 7 +6391637 locktype3 = 5 +6391638 goalCount = 0 +6391638 goalTotal = 40 +6391639 otherCount = 54 +~~~ +6391738 0 2048 +6391756 UP 10 +6391757 waslock = 0 +6391756 512 2048 +~~~ +6396193 DOWN 10 +6396193 0 2048 +~~~ +~~~ +6396213 UP 10 +6396213 waslock = 0 +6396213 512 2048 +~~~ +~~~ +6396215 homeCount = 108 +6396216 waitCount = 53 +6396216 ripCount = 46 +6396217 locktype1 = 2 +6396217 locktype2 = 7 +6396218 locktype3 = 5 +6396218 goalCount = 0 +6396219 goalTotal = 40 +6396219 otherCount = 54 +~~~ +~~~ +6396293 DOWN 10 +6396293 0 2048 +~~~ +~~~ +~~~ +~~~ +6396321 homeCount = 108 +6396321 waitCount = 53 +6396322 ripCount = 46 +6396322 locktype1 = 2 +6396323 locktype2 = 7 +6396323 locktype3 = 5 +6396324 goalCount = 0 +6396324 goalTotal = 40 +6396325 otherCount = 54 +~~~ +6398084 UP 12 +6398084 2048 2048 +6400258 DOWN 12 +6400258 0 2048 +6400290 UP 12 +6400289 2048 2048 +6400802 DOWN 12 +6400802 0 2048 +6400821 UP 12 +6400821 2048 2048 +6403585 CLICK1 +6403585 CLICK2 +~~~ +~~~ +~~~ +6403609 2048 67110912 +~~~ +6403759 2048 2048 +6410651 DOWN 12 +6410651 0 2048 +~~~ +~~~ +6410669 0 0 +~~~ +~~~ +6410670 0 1 +~~~ +~~~ +6410672 0 3 +~~~ +~~~ +6410674 0 7 +~~~ +~~~ +6410676 0 15 +~~~ +~~~ +6410678 0 31 +~~~ +~~~ +6410680 0 63 +~~~ +~~~ +6410681 0 127 +~~~ +~~~ +6410683 0 255 +6410684 homeCount = 108 +6410685 waitCount = 54 +6410685 ripCount = 46 +6410686 locktype1 = 2 +6410686 locktype2 = 7 +6410707 locktype3 = 5 +6410708 goalCount = 0 +6410708 goalTotal = 40 +6410709 otherCount = 54 +~~~ +6410710 CURRENTGOAL IS [7] +~~~ +6410710 UP 12 +6410710 2048 255 +6410790 DOWN 12 +6410790 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6410827 homeCount = 108 +6410827 waitCount = 54 +6410828 ripCount = 46 +6410828 locktype1 = 2 +6410829 locktype2 = 7 +6410829 locktype3 = 5 +6410830 goalCount = 0 +6410830 goalTotal = 40 +6410831 otherCount = 54 +~~~ +6410832 CURRENTGOAL IS [7] +~~~ +6410869 UP 12 +6410869 2048 255 +6410882 DOWN 12 +6410882 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6410918 homeCount = 108 +6410919 waitCount = 54 +6410919 ripCount = 46 +6410920 locktype1 = 2 +6410920 locktype2 = 7 +6410921 locktype3 = 5 +6410921 goalCount = 0 +6410922 goalTotal = 40 +6410922 otherCount = 54 +~~~ +6410923 CURRENTGOAL IS [7] +~~~ +6411007 UP 12 +6411007 2048 255 +6412314 DOWN 12 +6412314 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412351 UP 12 +6412351 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412357 homeCount = 108 +6412358 waitCount = 54 +6412358 ripCount = 46 +6412359 locktype1 = 2 +6412359 locktype2 = 7 +6412360 locktype3 = 5 +6412360 goalCount = 0 +6412361 goalTotal = 40 +6412361 otherCount = 54 +~~~ +6412362 CURRENTGOAL IS [7] +~~~ +6412418 DOWN 12 +6412418 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412457 homeCount = 108 +6412458 waitCount = 54 +6412458 ripCount = 46 +6412459 locktype1 = 2 +6412459 locktype2 = 7 +6412460 locktype3 = 5 +6412460 goalCount = 0 +6412461 goalTotal = 40 +6412461 otherCount = 54 +~~~ +6412462 CURRENTGOAL IS [7] +~~~ +6416338 UP 3 +6416338 4 255 +~~~ +~~~ +6417568 DOWN 3 +6417568 0 255 +~~~ +~~~ +6417592 0 254 +~~~ +~~~ +6417594 0 252 +~~~ +~~~ +6417596 0 248 +~~~ +~~~ +6417597 0 240 +~~~ +~~~ +6417599 0 224 +~~~ +~~~ +6417601 0 192 +~~~ +~~~ +6417603 0 128 +~~~ +~~~ +6417605 0 0 +~~~ +~~~ +6417607 0 512 +6417608 homeCount = 108 +6417608 waitCount = 54 +6417609 ripCount = 46 +6417609 locktype1 = 2 +6417610 locktype2 = 7 +6417631 locktype3 = 5 +6417631 goalCount = 0 +6417632 goalTotal = 40 +6417632 otherCount = 55 +~~~ +6417933 4 512 +6418142 DOWN 3 +6418142 0 512 +6421661 UP 10 +6421661 waslock = 0 +6421661 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6421689 512 16777728 +~~~ +6421839 512 512 +6425407 DOWN 10 +6425407 0 512 +~~~ +~~~ +6425434 0 2560 +~~~ +~~~ +6425436 0 2048 +6425437 homeCount = 109 +6425437 waitCount = 54 +6425438 ripCount = 46 +6425438 locktype1 = 2 +6425439 locktype2 = 7 +6425439 locktype3 = 5 +6425440 goalCount = 0 +6425440 goalTotal = 40 +6425441 otherCount = 55 +~~~ +6425446 UP 10 +6425446 waslock = 0 +6425446 512 2048 +~~~ +6425482 DOWN 10 +6425482 0 2048 +~~~ +~~~ +~~~ +~~~ +6425507 homeCount = 109 +6425508 waitCount = 54 +6425508 ripCount = 46 +6425509 locktype1 = 2 +6425509 locktype2 = 7 +6425510 locktype3 = 5 +6425510 goalCount = 0 +6425511 goalTotal = 40 +6425511 otherCount = 55 +~~~ +6427001 UP 12 +6427001 2048 2048 +6428272 DOWN 12 +6428272 0 2048 +6428389 UP 12 +6428389 2048 2048 +6429840 DOWN 12 +6429840 0 2048 +6429852 UP 12 +6429852 2048 2048 +6429884 DOWN 12 +6429884 0 2048 +6429912 UP 12 +6429912 2048 2048 +6430001 CLICK1 +6430001 CLICK2 +~~~ +~~~ +~~~ +6430025 2048 67110912 +~~~ +6430175 2048 2048 +6437146 DOWN 12 +6437145 0 2048 +~~~ +~~~ +6437173 0 0 +~~~ +~~~ +6437175 0 1 +~~~ +~~~ +6437176 0 3 +~~~ +~~~ +6437178 0 7 +~~~ +~~~ +6437180 0 15 +~~~ +~~~ +6437182 0 31 +~~~ +~~~ +6437184 0 63 +~~~ +~~~ +6437186 0 127 +~~~ +~~~ +6437187 0 255 +6437188 homeCount = 109 +6437189 waitCount = 55 +6437189 ripCount = 46 +6437190 locktype1 = 2 +6437190 locktype2 = 7 +6437191 locktype3 = 5 +6437212 goalCount = 0 +6437212 goalTotal = 40 +6437213 otherCount = 55 +~~~ +6437214 CURRENTGOAL IS [7] +~~~ +6448275 UP 1 +6448275 1 255 +~~~ +~~~ +6449347 DOWN 1 +6449347 0 255 +~~~ +~~~ +6449367 0 254 +~~~ +~~~ +6449369 0 252 +~~~ +~~~ +6449371 0 248 +~~~ +~~~ +6449373 0 240 +~~~ +~~~ +6449375 0 224 +~~~ +~~~ +6449376 0 192 +~~~ +~~~ +6449378 0 128 +~~~ +~~~ +6449380 0 0 +~~~ +~~~ +6449382 0 512 +6449383 homeCount = 109 +6449384 waitCount = 55 +6449384 ripCount = 46 +6449384 locktype1 = 2 +6449385 locktype2 = 7 +6449405 locktype3 = 5 +6449406 goalCount = 0 +6449406 goalTotal = 40 +6449407 otherCount = 56 +~~~ +6457553 UP 10 +6457553 waslock = 0 +6457553 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6457583 512 16777728 +~~~ +6457733 512 512 +6457762 DOWN 10 +6457762 0 512 +6457777 UP 10 +6457778 waslock = 0 +6457777 512 512 +~~~ +~~~ +6457799 512 2560 +~~~ +~~~ +6457801 512 2048 +6457802 homeCount = 110 +6457802 waitCount = 55 +6457803 ripCount = 46 +6457803 locktype1 = 2 +6457804 locktype2 = 7 +6457804 locktype3 = 5 +6457805 goalCount = 0 +6457805 goalTotal = 40 +6457806 otherCount = 56 +~~~ +~~~ +6463809 DOWN 10 +6463809 0 2048 +~~~ +~~~ +~~~ +~~~ +6463830 homeCount = 110 +6463831 waitCount = 55 +6463831 ripCount = 46 +6463832 locktype1 = 2 +6463832 locktype2 = 7 +6463833 locktype3 = 5 +6463833 goalCount = 0 +6463833 goalTotal = 40 +6463834 otherCount = 56 +~~~ +6463835 UP 10 +6463835 waslock = 0 +6463835 512 2048 +~~~ +6463903 DOWN 10 +6463903 0 2048 +~~~ +~~~ +~~~ +~~~ +6463930 homeCount = 110 +6463930 waitCount = 55 +6463931 ripCount = 46 +6463931 locktype1 = 2 +6463932 locktype2 = 7 +6463932 locktype3 = 5 +6463933 goalCount = 0 +6463933 goalTotal = 40 +6463934 otherCount = 56 +~~~ +6465881 UP 12 +6465881 2048 2048 +6467657 DOWN 12 +6467657 0 2048 +6467693 UP 12 +6467693 2048 2048 +6468741 DOWN 12 +6468741 0 2048 +6468762 UP 12 +6468762 2048 2048 +6468914 DOWN 12 +6468914 0 2048 +6468932 UP 12 +6468932 2048 2048 +6472795 DOWN 12 +6472795 0 2048 +6472832 UP 12 +6472832 2048 2048 +6472881 CLICK1 +6472881 CLICK2 +~~~ +~~~ +~~~ +6472910 2048 67110912 +~~~ +6473060 2048 2048 +6479548 DOWN 12 +6479548 0 2048 +~~~ +~~~ +6479568 0 0 +~~~ +~~~ +6479570 0 1 +~~~ +~~~ +6479572 0 3 +~~~ +~~~ +6479573 0 7 +~~~ +~~~ +6479575 0 15 +~~~ +~~~ +6479577 0 31 +~~~ +~~~ +6479579 0 63 +~~~ +~~~ +6479581 0 127 +~~~ +~~~ +6479583 0 255 +6479584 homeCount = 110 +6479584 waitCount = 56 +6479585 ripCount = 46 +6479585 locktype1 = 2 +6479586 locktype2 = 7 +6479586 locktype3 = 5 +6479607 goalCount = 0 +6479608 goalTotal = 40 +6479608 otherCount = 56 +~~~ +6479609 CURRENTGOAL IS [7] +~~~ +6479609 UP 12 +6479609 2048 255 +6479644 DOWN 12 +6479644 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6479684 homeCount = 110 +6479685 waitCount = 56 +6479685 ripCount = 46 +6479686 locktype1 = 2 +6479686 locktype2 = 7 +6479686 locktype3 = 5 +6479687 goalCount = 0 +6479687 goalTotal = 40 +6479688 otherCount = 56 +~~~ +6479689 CURRENTGOAL IS [7] +~~~ +6485355 UP 8 +6485355 128 255 +~~~ +~~~ +6486346 DOWN 8 +6486346 0 255 +~~~ +~~~ +6486369 0 254 +~~~ +~~~ +6486371 0 252 +~~~ +~~~ +6486372 0 248 +~~~ +~~~ +6486374 0 240 +~~~ +~~~ +6486376 0 224 +~~~ +~~~ +6486378 0 192 +~~~ +~~~ +6486380 0 128 +~~~ +~~~ +6486381 0 0 +~~~ +~~~ +6486383 0 512 +6486384 homeCount = 110 +6486385 waitCount = 56 +6486385 ripCount = 46 +6486386 locktype1 = 2 +6486386 locktype2 = 7 +6486407 locktype3 = 5 +6486408 goalCount = 0 +6486408 goalTotal = 40 +6486409 otherCount = 57 +~~~ +6491312 UP 10 +6491312 waslock = 0 +6491312 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6491343 512 16777728 +~~~ +6491493 512 512 +6497957 DOWN 10 +6497957 0 512 +~~~ +~~~ +6497977 0 1536 +~~~ +~~~ +6497979 0 1024 +6497980 homeCount = 111 +6497981 waitCount = 56 +6497981 ripCount = 46 +6497982 locktype1 = 2 +6497982 locktype2 = 7 +6497983 locktype3 = 5 +6497983 goalCount = 0 +6497984 goalTotal = 40 +6497984 otherCount = 57 +~~~ +6500268 UP 11 +6500268 1024 1024 +6501862 DOWN 11 +6501862 0 1024 +6501896 UP 11 +6501896 1024 1024 +6502555 DOWN 11 +6502555 0 1024 +6502573 UP 11 +6502573 1024 1024 +6502784 DOWN 11 +6502784 0 1024 +6502832 UP 11 +6502832 1024 1024 +6502852 DOWN 11 +6502852 0 1024 +6502873 UP 11 +6502873 1024 1024 +6502971 DOWN 11 +6502971 0 1024 +6502994 UP 11 +6502994 1024 1024 +6503021 DOWN 11 +6503021 0 1024 +6503040 UP 11 +6503040 1024 1024 +6503112 DOWN 11 +6503112 0 1024 +6503129 UP 11 +6503129 1024 1024 +6503268 BEEP1 +6503268 BEEP2 +~~~ +~~~ +~~~ +6503292 1024 33555456 +~~~ +6503442 1024 1024 +6503531 DOWN 11 +6503531 0 1024 +6503557 UP 11 +6503557 1024 1024 +~~~ +~~~ +6503943 1024 0 +~~~ +~~~ +6503945 1024 1 +~~~ +~~~ +6503947 1024 3 +~~~ +~~~ +6503949 1024 7 +~~~ +~~~ +6503950 1024 15 +~~~ +~~~ +6503952 1024 31 +~~~ +~~~ +6503954 1024 63 +~~~ +~~~ +6503956 1024 127 +~~~ +~~~ +6503958 1024 255 +6503959 homeCount = 111 +6503959 waitCount = 56 +6503960 ripCount = 47 +6503960 locktype1 = 2 +6503981 locktype2 = 7 +6503981 locktype3 = 5 +6503982 goalCount = 0 +6503982 goalTotal = 40 +6503983 otherCount = 57 +~~~ +6503984 CURRENTGOAL IS [7] +~~~ +6508798 DOWN 11 +6508798 0 255 +6508816 UP 11 +6508816 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6508838 homeCount = 111 +6508839 waitCount = 56 +6508839 ripCount = 47 +6508840 locktype1 = 2 +6508840 locktype2 = 7 +6508841 locktype3 = 5 +6508841 goalCount = 0 +6508842 goalTotal = 40 +6508842 otherCount = 57 +~~~ +6508843 CURRENTGOAL IS [7] +~~~ +6508920 DOWN 11 +6508920 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6508959 homeCount = 111 +6508959 waitCount = 56 +6508960 ripCount = 47 +6508960 locktype1 = 2 +6508961 locktype2 = 7 +6508961 locktype3 = 5 +6508962 goalCount = 0 +6508962 goalTotal = 40 +6508963 otherCount = 57 +~~~ +6508964 CURRENTGOAL IS [7] +~~~ +6508969 UP 11 +6508969 1024 255 +6511527 DOWN 11 +6511527 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6511571 homeCount = 111 +6511571 waitCount = 56 +6511572 ripCount = 47 +6511572 locktype1 = 2 +6511573 locktype2 = 7 +6511573 locktype3 = 5 +6511574 goalCount = 0 +6511574 goalTotal = 40 +6511574 otherCount = 57 +~~~ +6511576 CURRENTGOAL IS [7] +~~~ +6511576 UP 11 +6511576 1024 255 +6511638 DOWN 11 +6511638 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6511680 homeCount = 111 +6511680 waitCount = 56 +6511681 ripCount = 47 +6511681 locktype1 = 2 +6511682 locktype2 = 7 +6511682 locktype3 = 5 +6511683 goalCount = 0 +6511683 goalTotal = 40 +6511684 otherCount = 57 +~~~ +6511685 CURRENTGOAL IS [7] +~~~ +6512177 UP 11 +6512177 1024 255 +6513881 DOWN 11 +6513881 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6513921 homeCount = 111 +6513921 waitCount = 56 +6513922 ripCount = 47 +6513922 locktype1 = 2 +6513923 locktype2 = 7 +6513923 locktype3 = 5 +6513924 goalCount = 0 +6513924 goalTotal = 40 +6513925 otherCount = 57 +~~~ +6513926 CURRENTGOAL IS [7] +~~~ +6518545 UP 5 +6518545 16 255 +~~~ +~~~ +6518724 DOWN 5 +6518723 0 255 +~~~ +~~~ +6518744 0 254 +~~~ +~~~ +6518745 0 252 +~~~ +~~~ +6518747 0 248 +~~~ +~~~ +6518749 0 240 +~~~ +~~~ +6518751 0 224 +~~~ +~~~ +6518753 0 192 +~~~ +~~~ +6518754 0 128 +~~~ +~~~ +6518756 0 0 +~~~ +~~~ +6518758 0 512 +6518759 homeCount = 111 +6518760 waitCount = 56 +6518760 ripCount = 47 +6518761 locktype1 = 2 +6518761 locktype2 = 7 +6518782 locktype3 = 5 +6518783 goalCount = 0 +6518783 goalTotal = 40 +6518784 otherCount = 58 +~~~ +6518788 16 512 +6519650 DOWN 5 +6519650 0 512 +6524649 UP 10 +6524649 waslock = 0 +6524649 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6524681 512 16777728 +~~~ +6524831 512 512 +6529752 DOWN 10 +6529752 0 512 +~~~ +~~~ +6529776 0 2560 +~~~ +~~~ +6529778 0 2048 +6529779 homeCount = 112 +6529779 waitCount = 56 +6529780 ripCount = 47 +6529780 locktype1 = 2 +6529781 locktype2 = 7 +6529781 locktype3 = 5 +6529782 goalCount = 0 +6529782 goalTotal = 40 +6529783 otherCount = 58 +~~~ +6530785 UP 10 +6530786 waslock = 0 +6530785 512 2048 +~~~ +6531302 DOWN 10 +6531302 0 2048 +~~~ +~~~ +~~~ +~~~ +6531328 homeCount = 112 +6531329 waitCount = 56 +6531329 ripCount = 47 +6531330 locktype1 = 2 +6531330 locktype2 = 7 +6531331 locktype3 = 5 +6531331 goalCount = 0 +6531332 goalTotal = 40 +6531332 otherCount = 58 +~~~ +6533320 UP 12 +6533320 2048 2048 +6536249 DOWN 12 +6536249 0 2048 +6536449 LOCKOUT 3 +~~~ +6536465 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6536471 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6536576 UP 12 +6536576 2048 0 +6536890 DOWN 12 +6536890 0 0 +6561465 LOCKEND +~~~ +~~~ +~~~ +6561485 0 512 +6569294 UP 10 +6569295 waslock = 0 +6569294 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6569321 512 16777728 +~~~ +6569368 DOWN 10 +6569368 0 16777728 +6569397 UP 10 +6569397 waslock = 0 +6569397 512 16777728 +~~~ +~~~ +6569400 512 16778752 +~~~ +~~~ +6569402 512 16778240 +6569403 homeCount = 113 +6569404 waitCount = 56 +6569404 ripCount = 47 +6569405 locktype1 = 2 +6569405 locktype2 = 7 +6569405 locktype3 = 6 +6569406 goalCount = 0 +6569406 goalTotal = 40 +6569428 otherCount = 58 +~~~ +~~~ +6569470 512 1024 +6569498 DOWN 10 +6569498 0 1024 +~~~ +~~~ +~~~ +6569518 UP 10 +6569518 waslock = 0 +6569518 512 1024 +~~~ +6569520 homeCount = 113 +6569520 waitCount = 56 +6569521 ripCount = 47 +6569521 locktype1 = 2 +6569522 locktype2 = 7 +6569522 locktype3 = 6 +6569523 goalCount = 0 +6569523 goalTotal = 40 +6569524 otherCount = 58 +~~~ +~~~ +6569573 DOWN 10 +6569573 0 1024 +~~~ +~~~ +~~~ +~~~ +6569600 homeCount = 113 +6569601 waitCount = 56 +6569601 ripCount = 47 +6569602 locktype1 = 2 +6569602 locktype2 = 7 +6569603 locktype3 = 6 +6569603 goalCount = 0 +6569604 goalTotal = 40 +6569604 otherCount = 58 +~~~ +6569619 UP 10 +6569620 waslock = 0 +6569619 512 1024 +~~~ +6569711 DOWN 10 +6569711 0 1024 +~~~ +~~~ +~~~ +~~~ +6569740 homeCount = 113 +6569741 waitCount = 56 +6569741 ripCount = 47 +6569742 locktype1 = 2 +6569742 locktype2 = 7 +6569742 locktype3 = 6 +6569743 goalCount = 0 +6569743 goalTotal = 40 +6569744 otherCount = 58 +~~~ +6569744 UP 10 +6569745 waslock = 0 +6569744 512 1024 +~~~ +6570069 DOWN 10 +6570069 0 1024 +~~~ +~~~ +~~~ +~~~ +6570090 homeCount = 113 +6570090 waitCount = 56 +6570091 ripCount = 47 +6570091 locktype1 = 2 +6570092 locktype2 = 7 +6570092 locktype3 = 6 +6570093 goalCount = 0 +6570093 goalTotal = 40 +6570094 otherCount = 58 +~~~ +6570155 UP 10 +6570155 waslock = 0 +6570155 512 1024 +~~~ +6570216 DOWN 10 +6570216 0 1024 +~~~ +~~~ +~~~ +~~~ +6570241 homeCount = 113 +6570242 waitCount = 56 +6570242 ripCount = 47 +6570243 locktype1 = 2 +6570243 locktype2 = 7 +6570244 locktype3 = 6 +6570244 goalCount = 0 +6570245 goalTotal = 40 +6570245 otherCount = 58 +~~~ +6570297 UP 10 +6570297 waslock = 0 +6570297 512 1024 +~~~ +6570360 DOWN 10 +6570360 0 1024 +~~~ +~~~ +~~~ +~~~ +6570390 homeCount = 113 +6570390 waitCount = 56 +6570391 ripCount = 47 +6570391 locktype1 = 2 +6570392 locktype2 = 7 +6570392 locktype3 = 6 +6570393 goalCount = 0 +6570393 goalTotal = 40 +6570394 otherCount = 58 +~~~ +6570433 UP 10 +6570433 waslock = 0 +6570432 512 1024 +~~~ +6573876 DOWN 10 +6573876 0 1024 +~~~ +~~~ +~~~ +~~~ +6573901 homeCount = 113 +6573902 waitCount = 56 +6573902 ripCount = 47 +6573903 locktype1 = 2 +6573903 locktype2 = 7 +6573903 locktype3 = 6 +6573904 goalCount = 0 +6573904 goalTotal = 40 +6573905 otherCount = 58 +~~~ +6573934 UP 10 +6573935 waslock = 0 +6573934 512 1024 +~~~ +6573977 DOWN 10 +6573977 0 1024 +~~~ +~~~ +~~~ +~~~ +6574003 homeCount = 113 +6574004 waitCount = 56 +6574004 ripCount = 47 +6574005 locktype1 = 2 +6574005 locktype2 = 7 +6574006 locktype3 = 6 +6574006 goalCount = 0 +6574007 goalTotal = 40 +6574007 otherCount = 58 +~~~ +6575372 UP 11 +6575372 1024 1024 +6576446 DOWN 11 +6576446 0 1024 +6576491 UP 11 +6576491 1024 1024 +6577984 DOWN 11 +6577984 0 1024 +6577998 UP 11 +6577998 1024 1024 +6578373 BEEP1 +6578373 BEEP2 +~~~ +~~~ +~~~ +6578399 1024 33555456 +~~~ +6578549 1024 1024 +6578714 DOWN 11 +6578714 0 1024 +6578721 UP 11 +6578721 1024 1024 +6578866 DOWN 11 +6578866 0 1024 +6578903 UP 11 +6578903 1024 1024 +~~~ +~~~ +6579074 1024 0 +~~~ +~~~ +6579075 1024 1 +~~~ +~~~ +6579077 1024 3 +~~~ +~~~ +6579079 1024 7 +~~~ +~~~ +6579081 1024 15 +~~~ +~~~ +6579083 1024 31 +~~~ +~~~ +6579085 1024 63 +~~~ +~~~ +6579086 1024 127 +~~~ +~~~ +6579088 1024 255 +6579089 homeCount = 113 +6579090 waitCount = 56 +6579090 ripCount = 48 +6579091 locktype1 = 2 +6579112 locktype2 = 7 +6579112 locktype3 = 6 +6579113 goalCount = 0 +6579113 goalTotal = 40 +6579113 otherCount = 58 +~~~ +6579115 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6579142 homeCount = 113 +6579143 waitCount = 56 +6579143 ripCount = 48 +6579144 locktype1 = 2 +6579144 locktype2 = 7 +6579145 locktype3 = 6 +6579145 goalCount = 0 +6579146 goalTotal = 40 +6579146 otherCount = 58 +~~~ +6579147 CURRENTGOAL IS [7] +~~~ +6586385 DOWN 11 +6586385 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6586420 homeCount = 113 +6586421 waitCount = 56 +6586421 ripCount = 48 +6586422 locktype1 = 2 +6586422 locktype2 = 7 +6586422 locktype3 = 6 +6586423 goalCount = 0 +6586423 goalTotal = 40 +6586424 otherCount = 58 +~~~ +6586425 CURRENTGOAL IS [7] +~~~ +6590698 UP 7 +6590698 64 255 +6590720 DOWN 7 +6590720 0 255 +~~~ +~~~ +6590725 outer reward +~~~ +6590725 0 4194559 +~~~ +~~~ +~~~ +~~~ +6590745 0 4194558 +~~~ +~~~ +6590747 0 4194556 +~~~ +~~~ +6590749 0 4194552 +~~~ +~~~ +6590750 0 4194544 +~~~ +~~~ +6590752 0 4194528 +~~~ +~~~ +6590754 0 4194496 +~~~ +~~~ +6590756 0 4194432 +~~~ +~~~ +6590758 0 4194304 +~~~ +~~~ +6590760 0 4194816 +6590761 homeCount = 113 +6590761 waitCount = 56 +6590762 ripCount = 48 +6590782 locktype1 = 2 +6590783 locktype2 = 7 +6590783 locktype3 = 6 +6590784 goalCount = 1 +6590784 goalTotal = 41 +6590785 otherCount = 58 +~~~ +6590785 64 4194816 +6591175 64 512 +6599661 DOWN 7 +6599661 0 512 +6608285 UP 10 +6608286 waslock = 0 +6608285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6608312 512 16777728 +~~~ +6608462 512 512 +6608513 DOWN 10 +6608513 0 512 +~~~ +~~~ +6608534 0 2560 +~~~ +~~~ +6608535 0 2048 +6608536 homeCount = 114 +6608537 waitCount = 56 +6608537 ripCount = 48 +6608538 locktype1 = 2 +6608538 locktype2 = 7 +6608539 locktype3 = 6 +6608539 goalCount = 1 +6608540 goalTotal = 41 +6608540 otherCount = 58 +~~~ +6608630 UP 10 +6608630 waslock = 0 +6608630 512 2048 +~~~ +6613637 DOWN 10 +6613637 0 2048 +~~~ +~~~ +~~~ +~~~ +6613666 homeCount = 114 +6613667 waitCount = 56 +6613667 ripCount = 48 +6613668 locktype1 = 2 +6613668 locktype2 = 7 +6613669 locktype3 = 6 +6613669 goalCount = 1 +6613670 goalTotal = 41 +6613670 otherCount = 58 +~~~ +6616329 UP 12 +6616329 2048 2048 +6619830 CLICK1 +6619830 CLICK2 +~~~ +~~~ +~~~ +6619856 2048 67110912 +~~~ +6620006 2048 2048 +6628530 DOWN 12 +6628530 0 2048 +6628552 UP 12 +6628552 2048 2048 +~~~ +~~~ +6628554 2048 0 +~~~ +~~~ +6628556 2048 1 +~~~ +~~~ +6628557 2048 3 +~~~ +~~~ +6628559 2048 7 +~~~ +~~~ +6628561 2048 15 +~~~ +~~~ +6628563 2048 31 +~~~ +~~~ +6628565 2048 63 +~~~ +~~~ +6628566 2048 127 +~~~ +~~~ +6628568 2048 255 +6628569 homeCount = 114 +6628570 waitCount = 57 +6628591 ripCount = 48 +6628591 locktype1 = 2 +6628592 locktype2 = 7 +6628592 locktype3 = 6 +6628592 goalCount = 1 +6628593 goalTotal = 41 +6628593 otherCount = 58 +~~~ +6628595 CURRENTGOAL IS [7] +~~~ +6628616 DOWN 12 +6628616 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6628645 homeCount = 114 +6628646 waitCount = 57 +6628646 ripCount = 48 +6628647 locktype1 = 2 +6628647 locktype2 = 7 +6628648 locktype3 = 6 +6628648 goalCount = 1 +6628648 goalTotal = 41 +6628649 otherCount = 58 +~~~ +6628650 CURRENTGOAL IS [7] +~~~ +6632543 UP 4 +6632543 8 255 +~~~ +~~~ +6633261 DOWN 4 +6633261 0 255 +~~~ +~~~ +6633284 0 254 +~~~ +~~~ +6633286 0 252 +~~~ +~~~ +6633288 0 248 +~~~ +~~~ +6633289 0 240 +~~~ +~~~ +6633291 0 224 +~~~ +~~~ +6633293 0 192 +~~~ +~~~ +6633295 0 128 +~~~ +~~~ +6633297 0 0 +~~~ +~~~ +6633299 0 512 +6633300 homeCount = 114 +6633300 waitCount = 57 +6633301 ripCount = 48 +6633301 locktype1 = 2 +6633302 locktype2 = 7 +6633323 locktype3 = 6 +6633323 goalCount = 1 +6633324 goalTotal = 41 +6633324 otherCount = 59 +~~~ +6637699 UP 10 +6637699 waslock = 0 +6637699 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6637730 512 16777728 +~~~ +6637866 DOWN 10 +6637866 0 16777728 +6637880 0 512 +~~~ +~~~ +6637887 0 2560 +~~~ +~~~ +6637889 0 2048 +6637890 homeCount = 115 +6637890 waitCount = 57 +6637891 ripCount = 48 +6637891 locktype1 = 2 +6637892 locktype2 = 7 +6637892 locktype3 = 6 +6637893 goalCount = 1 +6637893 goalTotal = 41 +6637894 otherCount = 59 +~~~ +6637949 UP 10 +6637949 waslock = 0 +6637949 512 2048 +~~~ +6640995 DOWN 10 +6640995 0 2048 +~~~ +~~~ +~~~ +~~~ +6641017 homeCount = 115 +6641017 waitCount = 57 +6641018 ripCount = 48 +6641018 locktype1 = 2 +6641019 locktype2 = 7 +6641019 locktype3 = 6 +6641020 goalCount = 1 +6641020 goalTotal = 41 +6641021 otherCount = 59 +~~~ +6642706 UP 12 +6642706 2048 2048 +6645350 DOWN 12 +6645350 0 2048 +6645380 UP 12 +6645380 2048 2048 +6647206 CLICK1 +6647206 CLICK2 +~~~ +~~~ +~~~ +6647227 2048 67110912 +~~~ +6647377 2048 2048 +6657145 DOWN 12 +6657144 0 2048 +~~~ +~~~ +6657165 0 0 +~~~ +~~~ +6657167 0 1 +~~~ +~~~ +6657169 0 3 +~~~ +~~~ +6657170 0 7 +~~~ +~~~ +6657172 0 15 +~~~ +~~~ +6657174 0 31 +~~~ +~~~ +6657176 0 63 +~~~ +~~~ +6657178 0 127 +~~~ +~~~ +6657180 0 255 +6657181 homeCount = 115 +6657181 waitCount = 58 +6657182 ripCount = 48 +6657182 locktype1 = 2 +6657183 locktype2 = 7 +6657204 locktype3 = 6 +6657204 goalCount = 1 +6657205 goalTotal = 41 +6657205 otherCount = 59 +~~~ +6657206 CURRENTGOAL IS [7] +~~~ +6657218 UP 12 +6657218 2048 255 +6657280 DOWN 12 +6657280 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6657313 homeCount = 115 +6657314 waitCount = 58 +6657314 ripCount = 48 +6657315 locktype1 = 2 +6657315 locktype2 = 7 +6657316 locktype3 = 6 +6657316 goalCount = 1 +6657317 goalTotal = 41 +6657317 otherCount = 59 +~~~ +6657318 CURRENTGOAL IS [7] +~~~ +6661264 UP 3 +6661264 4 255 +~~~ +~~~ +6661872 DOWN 3 +6661872 0 255 +~~~ +~~~ +6661892 0 254 +~~~ +~~~ +6661894 0 252 +~~~ +~~~ +6661896 0 248 +~~~ +~~~ +6661898 0 240 +~~~ +~~~ +6661900 0 224 +~~~ +~~~ +6661901 0 192 +~~~ +~~~ +6661903 0 128 +~~~ +~~~ +6661905 0 0 +~~~ +~~~ +6661907 0 512 +6661908 homeCount = 115 +6661909 waitCount = 58 +6661909 ripCount = 48 +6661909 locktype1 = 2 +6661910 locktype2 = 7 +6661931 locktype3 = 6 +6661931 goalCount = 1 +6661932 goalTotal = 41 +6661932 otherCount = 60 +~~~ +6661933 4 512 +6662264 DOWN 3 +6662264 0 512 +6665814 UP 10 +6665814 waslock = 0 +6665814 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6665840 512 16777728 +~~~ +6665975 DOWN 10 +6665975 0 16777728 +6665990 0 512 +~~~ +~~~ +6665993 0 1536 +~~~ +~~~ +6665995 0 1024 +6665996 homeCount = 116 +6665997 waitCount = 58 +6665997 ripCount = 48 +6665998 locktype1 = 2 +6665998 locktype2 = 7 +6665999 locktype3 = 6 +6665999 goalCount = 1 +6666000 goalTotal = 41 +6666000 otherCount = 60 +~~~ +6666060 UP 10 +6666060 waslock = 0 +6666060 512 1024 +~~~ +6671137 DOWN 10 +6671137 0 1024 +~~~ +~~~ +~~~ +~~~ +6671163 homeCount = 116 +6671163 waitCount = 58 +6671164 ripCount = 48 +6671164 locktype1 = 2 +6671165 locktype2 = 7 +6671165 locktype3 = 6 +6671166 goalCount = 1 +6671166 goalTotal = 41 +6671167 otherCount = 60 +~~~ +6671175 UP 10 +6671175 waslock = 0 +6671175 512 1024 +6671210 DOWN 10 +6671210 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6671233 homeCount = 116 +6671234 waitCount = 58 +6671234 ripCount = 48 +6671235 locktype1 = 2 +6671235 locktype2 = 7 +6671236 locktype3 = 6 +6671236 goalCount = 1 +6671237 goalTotal = 41 +6671237 otherCount = 60 +~~~ +6672888 UP 11 +6672888 1024 1024 +6675281 DOWN 11 +6675281 0 1024 +6675325 UP 11 +6675325 1024 1024 +6675888 BEEP1 +6675888 BEEP2 +~~~ +~~~ +~~~ +6675910 1024 33555456 +~~~ +6676060 1024 1024 +6683979 DOWN 11 +6683979 0 1024 +~~~ +~~~ +6683999 0 0 +~~~ +~~~ +6684001 0 1 +~~~ +~~~ +6684003 0 3 +~~~ +~~~ +6684004 0 7 +~~~ +~~~ +6684006 0 15 +~~~ +~~~ +6684008 0 31 +~~~ +~~~ +6684010 0 63 +~~~ +~~~ +6684012 0 127 +~~~ +~~~ +6684014 0 255 +6684015 homeCount = 116 +6684015 waitCount = 58 +6684016 ripCount = 49 +6684016 locktype1 = 2 +6684017 locktype2 = 7 +6684017 locktype3 = 6 +6684038 goalCount = 1 +6684039 goalTotal = 41 +6684039 otherCount = 60 +~~~ +6684040 CURRENTGOAL IS [7] +~~~ +6684055 UP 11 +6684055 1024 255 +6684116 DOWN 11 +6684116 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6684159 homeCount = 116 +6684159 waitCount = 58 +6684160 ripCount = 49 +6684160 locktype1 = 2 +6684161 locktype2 = 7 +6684161 locktype3 = 6 +6684162 goalCount = 1 +6684162 goalTotal = 41 +6684163 otherCount = 60 +~~~ +6684164 CURRENTGOAL IS [7] +~~~ +6684221 UP 11 +6684221 1024 255 +6684256 DOWN 11 +6684256 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6684297 homeCount = 116 +6684298 waitCount = 58 +6684298 ripCount = 49 +6684299 locktype1 = 2 +6684299 locktype2 = 7 +6684300 locktype3 = 6 +6684300 goalCount = 1 +6684301 goalTotal = 41 +6684301 otherCount = 60 +~~~ +6684302 CURRENTGOAL IS [7] +~~~ +6684474 UP 11 +6684474 1024 255 +6685220 DOWN 11 +6685220 0 255 +6685235 UP 11 +6685235 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685260 DOWN 11 +6685260 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685272 homeCount = 116 +6685272 waitCount = 58 +6685273 ripCount = 49 +6685273 locktype1 = 2 +6685274 locktype2 = 7 +6685274 locktype3 = 6 +6685275 goalCount = 1 +6685275 goalTotal = 41 +6685276 otherCount = 60 +~~~ +6685277 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685304 homeCount = 116 +6685304 waitCount = 58 +6685305 ripCount = 49 +6685305 locktype1 = 2 +6685306 locktype2 = 7 +6685306 locktype3 = 6 +6685307 goalCount = 1 +6685307 goalTotal = 41 +6685308 otherCount = 60 +~~~ +6685309 CURRENTGOAL IS [7] +~~~ +6685357 UP 11 +6685357 1024 255 +6685427 DOWN 11 +6685427 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685466 homeCount = 116 +6685466 waitCount = 58 +6685467 ripCount = 49 +6685467 locktype1 = 2 +6685468 locktype2 = 7 +6685468 locktype3 = 6 +6685469 goalCount = 1 +6685469 goalTotal = 41 +6685470 otherCount = 60 +~~~ +6685471 CURRENTGOAL IS [7] +~~~ +6691250 UP 8 +6691250 128 255 +~~~ +~~~ +6691294 DOWN 8 +6691294 0 255 +~~~ +6691318 128 255 +~~~ +6691319 128 254 +~~~ +~~~ +6691320 128 252 +~~~ +~~~ +6691322 128 248 +~~~ +~~~ +6691324 128 240 +~~~ +~~~ +6691326 128 224 +~~~ +~~~ +6691328 128 192 +~~~ +~~~ +6691329 128 128 +~~~ +~~~ +6691331 128 0 +~~~ +~~~ +6691333 128 512 +6691334 homeCount = 116 +6691335 waitCount = 58 +6691356 ripCount = 49 +6691356 locktype1 = 2 +6691357 locktype2 = 7 +6691357 locktype3 = 6 +6691358 goalCount = 1 +6691358 goalTotal = 41 +6691359 otherCount = 61 +~~~ +6691705 DOWN 8 +6691705 0 512 +6692128 128 512 +6692970 DOWN 8 +6692969 0 512 +6693144 128 512 +6693170 DOWN 8 +6693170 0 512 +6693199 128 512 +6693388 DOWN 8 +6693388 0 512 +6693402 128 512 +6693443 DOWN 8 +6693443 0 512 +6693515 128 512 +6693538 DOWN 8 +6693538 0 512 +6693619 128 512 +6693648 DOWN 8 +6693648 0 512 +6694010 128 512 +6694839 DOWN 8 +6694838 0 512 +6701433 UP 10 +6701434 waslock = 0 +6701433 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6701465 512 16777728 +~~~ +6701615 512 512 +6701718 DOWN 10 +6701718 0 512 +~~~ +~~~ +6701739 0 1536 +~~~ +~~~ +6701741 0 1024 +6701742 homeCount = 117 +6701743 waitCount = 58 +6701743 ripCount = 49 +6701744 locktype1 = 2 +6701744 locktype2 = 7 +6701745 locktype3 = 6 +6701745 goalCount = 1 +6701746 goalTotal = 41 +6701746 otherCount = 61 +~~~ +6701748 UP 10 +6701748 waslock = 0 +6701748 512 1024 +~~~ +6705821 DOWN 10 +6705821 0 1024 +~~~ +~~~ +~~~ +~~~ +6705843 homeCount = 117 +6705843 waitCount = 58 +6705844 ripCount = 49 +6705844 locktype1 = 2 +6705845 locktype2 = 7 +6705845 locktype3 = 6 +6705846 goalCount = 1 +6705846 goalTotal = 41 +6705847 otherCount = 61 +~~~ +6705847 UP 10 +6705848 waslock = 0 +6705847 512 1024 +~~~ +6705920 DOWN 10 +6705920 0 1024 +~~~ +~~~ +~~~ +~~~ +6705943 homeCount = 117 +6705943 waitCount = 58 +6705944 ripCount = 49 +6705944 locktype1 = 2 +6705944 locktype2 = 7 +6705945 locktype3 = 6 +6705945 goalCount = 1 +6705946 goalTotal = 41 +6705946 otherCount = 61 +~~~ +6708068 UP 11 +6708068 1024 1024 +6708086 DOWN 11 +6708086 0 1024 +6708133 UP 11 +6708133 1024 1024 +6709911 DOWN 11 +6709911 0 1024 +6709920 UP 11 +6709920 1024 1024 +6711114 DOWN 11 +6711114 0 1024 +6711120 UP 11 +6711120 1024 1024 +6711125 DOWN 11 +6711125 0 1024 +6711144 UP 11 +6711144 1024 1024 +6711546 DOWN 11 +6711546 0 1024 +6711576 UP 11 +6711576 1024 1024 +6711611 DOWN 11 +6711611 0 1024 +6711618 UP 11 +6711618 1024 1024 +6715068 BEEP1 +6715068 BEEP2 +~~~ +~~~ +~~~ +6715093 1024 33555456 +~~~ +6715243 1024 1024 +6721928 DOWN 11 +6721928 0 1024 +~~~ +~~~ +6721951 UP 11 +6721951 1024 0 +~~~ +~~~ +6721953 1024 1 +~~~ +~~~ +6721955 1024 3 +~~~ +~~~ +6721956 1024 7 +~~~ +~~~ +6721958 1024 15 +~~~ +~~~ +6721960 1024 31 +~~~ +~~~ +6721962 1024 63 +~~~ +~~~ +6721964 1024 127 +~~~ +~~~ +6721966 1024 255 +6721967 homeCount = 117 +6721967 waitCount = 58 +6721968 ripCount = 50 +6721989 locktype1 = 2 +6721989 locktype2 = 7 +6721990 locktype3 = 6 +6721990 goalCount = 1 +6721991 goalTotal = 41 +6721991 otherCount = 61 +~~~ +6721992 CURRENTGOAL IS [7] +~~~ +6722015 DOWN 11 +6722015 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6722057 homeCount = 117 +6722057 waitCount = 58 +6722058 ripCount = 50 +6722058 locktype1 = 2 +6722059 locktype2 = 7 +6722059 locktype3 = 6 +6722060 goalCount = 1 +6722060 goalTotal = 41 +6722060 otherCount = 61 +~~~ +6722062 CURRENTGOAL IS [7] +~~~ +6725264 UP 6 +6725264 32 255 +~~~ +~~~ +6727484 DOWN 6 +6727484 0 255 +~~~ +~~~ +6727509 0 254 +~~~ +~~~ +6727510 0 252 +~~~ +~~~ +6727512 0 248 +~~~ +~~~ +6727514 0 240 +~~~ +~~~ +6727516 0 224 +~~~ +~~~ +6727518 0 192 +~~~ +~~~ +6727519 0 128 +~~~ +~~~ +6727521 0 0 +~~~ +~~~ +6727523 0 512 +6727524 homeCount = 117 +6727525 waitCount = 58 +6727525 ripCount = 50 +6727526 locktype1 = 2 +6727526 locktype2 = 7 +6727547 locktype3 = 6 +6727548 goalCount = 1 +6727548 goalTotal = 41 +6727549 otherCount = 62 +~~~ +6727577 32 512 +6727791 DOWN 6 +6727791 0 512 +6732072 UP 10 +6732072 waslock = 0 +6732072 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6732099 DOWN 10 +6732099 0 16777728 +~~~ +~~~ +~~~ +6732121 0 16779776 +~~~ +~~~ +6732123 0 16779264 +6732124 homeCount = 118 +6732124 waitCount = 58 +6732125 ripCount = 50 +6732125 locktype1 = 2 +6732126 locktype2 = 7 +6732126 locktype3 = 6 +6732127 goalCount = 1 +6732127 goalTotal = 41 +6732128 otherCount = 62 +~~~ +6732179 UP 10 +6732179 waslock = 0 +6732179 512 16779264 +~~~ +6732249 512 2048 +6732403 DOWN 10 +6732403 0 2048 +~~~ +~~~ +~~~ +~~~ +6732424 homeCount = 118 +6732425 waitCount = 58 +6732425 ripCount = 50 +6732426 locktype1 = 2 +6732426 locktype2 = 7 +6732427 locktype3 = 6 +6732427 goalCount = 1 +6732428 goalTotal = 41 +6732428 otherCount = 62 +~~~ +6732461 UP 10 +6732462 waslock = 0 +6732461 512 2048 +~~~ +6738947 DOWN 10 +6738947 0 2048 +~~~ +~~~ +~~~ +~~~ +6738973 homeCount = 118 +6738973 waitCount = 58 +6738974 ripCount = 50 +6738974 locktype1 = 2 +6738975 locktype2 = 7 +6738975 locktype3 = 6 +6738976 goalCount = 1 +6738976 goalTotal = 41 +6738976 otherCount = 62 +~~~ +6739010 UP 10 +6739010 waslock = 0 +6739010 512 2048 +~~~ +6739045 DOWN 10 +6739045 0 2048 +~~~ +~~~ +~~~ +~~~ +6739064 homeCount = 118 +6739064 waitCount = 58 +6739065 ripCount = 50 +6739065 locktype1 = 2 +6739066 locktype2 = 7 +6739066 locktype3 = 6 +6739067 goalCount = 1 +6739067 goalTotal = 41 +6739068 otherCount = 62 +~~~ +6741119 UP 12 +6741119 2048 2048 +6742871 DOWN 12 +6742871 0 2048 +6742901 UP 12 +6742901 2048 2048 +6744620 CLICK1 +6744620 CLICK2 +~~~ +~~~ +~~~ +6744642 2048 67110912 +~~~ +6744792 2048 2048 +6752291 DOWN 12 +6752291 0 2048 +~~~ +~~~ +6752311 0 0 +~~~ +~~~ +6752313 0 1 +~~~ +~~~ +6752315 0 3 +~~~ +~~~ +6752316 0 7 +~~~ +~~~ +6752318 0 15 +~~~ +~~~ +6752320 0 31 +~~~ +~~~ +6752322 0 63 +~~~ +~~~ +6752324 0 127 +~~~ +~~~ +6752325 0 255 +6752326 homeCount = 118 +6752327 waitCount = 59 +6752328 ripCount = 50 +6752328 locktype1 = 2 +6752329 locktype2 = 7 +6752329 locktype3 = 6 +6752350 goalCount = 1 +6752350 goalTotal = 41 +6752351 otherCount = 62 +~~~ +6752352 CURRENTGOAL IS [7] +~~~ +6752352 UP 12 +6752352 2048 255 +6752415 DOWN 12 +6752415 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6752456 homeCount = 118 +6752456 waitCount = 59 +6752457 ripCount = 50 +6752457 locktype1 = 2 +6752458 locktype2 = 7 +6752458 locktype3 = 6 +6752459 goalCount = 1 +6752459 goalTotal = 41 +6752460 otherCount = 62 +~~~ +6752461 CURRENTGOAL IS [7] +~~~ +6757646 UP 3 +6757646 4 255 +~~~ +~~~ +6758067 DOWN 3 +6758067 0 255 +~~~ +~~~ +6758091 0 254 +~~~ +~~~ +6758093 0 252 +~~~ +~~~ +6758094 0 248 +~~~ +~~~ +6758096 0 240 +~~~ +~~~ +6758098 0 224 +~~~ +~~~ +6758100 0 192 +~~~ +~~~ +6758102 0 128 +~~~ +~~~ +6758103 0 0 +~~~ +~~~ +6758105 0 512 +6758106 homeCount = 118 +6758107 waitCount = 59 +6758107 ripCount = 50 +6758108 locktype1 = 2 +6758108 locktype2 = 7 +6758129 locktype3 = 6 +6758130 goalCount = 1 +6758130 goalTotal = 41 +6758131 otherCount = 63 +~~~ +6761238 UP 10 +6761239 waslock = 0 +6761238 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6761268 512 16777728 +~~~ +6761417 512 512 +6761428 DOWN 10 +6761428 0 512 +~~~ +~~~ +6761445 0 2560 +~~~ +~~~ +6761446 0 2048 +6761447 homeCount = 119 +6761448 waitCount = 59 +6761448 ripCount = 50 +6761449 locktype1 = 2 +6761449 locktype2 = 7 +6761450 locktype3 = 6 +6761450 goalCount = 1 +6761451 goalTotal = 41 +6761451 otherCount = 63 +~~~ +6761468 UP 10 +6761468 waslock = 0 +6761468 512 2048 +~~~ +6768410 DOWN 10 +6768410 0 2048 +~~~ +~~~ +~~~ +~~~ +6768433 homeCount = 119 +6768433 waitCount = 59 +6768434 ripCount = 50 +6768434 locktype1 = 2 +6768434 locktype2 = 7 +6768435 locktype3 = 6 +6768435 goalCount = 1 +6768436 goalTotal = 41 +6768436 otherCount = 63 +~~~ +6770299 UP 12 +6770299 2048 2048 +6772302 DOWN 12 +6772302 0 2048 +6772362 UP 12 +6772362 2048 2048 +6773300 CLICK1 +6773300 CLICK2 +~~~ +~~~ +~~~ +6773325 2048 67110912 +~~~ +6773475 2048 2048 +6779649 DOWN 12 +6779649 0 2048 +~~~ +~~~ +6779670 0 0 +~~~ +~~~ +6779672 0 1 +~~~ +~~~ +6779674 0 3 +~~~ +~~~ +6779676 0 7 +~~~ +~~~ +6779678 0 15 +~~~ +~~~ +6779679 0 31 +~~~ +~~~ +6779681 0 63 +~~~ +~~~ +6779683 0 127 +~~~ +6779684 UP 12 +6779684 2048 127 +~~~ +6779686 homeCount = 119 +6779687 waitCount = 60 +6779687 ripCount = 50 +6779688 locktype1 = 2 +6779708 locktype2 = 7 +6779709 locktype3 = 6 +6779709 goalCount = 1 +6779710 goalTotal = 41 +6779710 otherCount = 63 +~~~ +6779711 CURRENTGOAL IS [7] +~~~ +6779712 2048 255 +6779786 DOWN 12 +6779786 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6779830 homeCount = 119 +6779831 waitCount = 60 +6779831 ripCount = 50 +6779832 locktype1 = 2 +6779832 locktype2 = 7 +6779833 locktype3 = 6 +6779833 goalCount = 1 +6779834 goalTotal = 41 +6779834 otherCount = 63 +~~~ +6779835 CURRENTGOAL IS [7] +~~~ +6779836 UP 12 +6779836 2048 255 +6779858 DOWN 12 +6779858 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6779888 homeCount = 119 +6779888 waitCount = 60 +6779889 ripCount = 50 +6779889 locktype1 = 2 +6779890 locktype2 = 7 +6779890 locktype3 = 6 +6779891 goalCount = 1 +6779891 goalTotal = 41 +6779892 otherCount = 63 +~~~ +6779893 CURRENTGOAL IS [7] +~~~ +6779906 UP 12 +6779906 2048 255 +6783028 DOWN 12 +6783028 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6783069 homeCount = 119 +6783070 waitCount = 60 +6783070 ripCount = 50 +6783071 locktype1 = 2 +6783071 locktype2 = 7 +6783072 locktype3 = 6 +6783072 goalCount = 1 +6783073 goalTotal = 41 +6783073 otherCount = 63 +~~~ +6783074 CURRENTGOAL IS [7] +~~~ +6792931 UP 6 +6792931 32 255 +~~~ +~~~ +6793358 DOWN 6 +6793358 0 255 +~~~ +~~~ +6793374 0 254 +~~~ +~~~ +6793376 0 252 +~~~ +~~~ +6793377 0 248 +~~~ +~~~ +6793379 0 240 +~~~ +~~~ +6793381 0 224 +~~~ +~~~ +6793383 0 192 +~~~ +~~~ +6793385 0 128 +~~~ +~~~ +6793387 0 0 +~~~ +~~~ +6793388 0 512 +6793389 homeCount = 119 +6793390 waitCount = 60 +6793390 ripCount = 50 +6793391 locktype1 = 2 +6793391 locktype2 = 7 +6793413 locktype3 = 6 +6793413 goalCount = 1 +6793414 goalTotal = 41 +6793414 otherCount = 64 +~~~ +6797527 UP 10 +6797527 waslock = 0 +6797527 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6797551 512 16777728 +~~~ +6797585 DOWN 10 +6797585 0 16777728 +~~~ +~~~ +6797604 0 16779776 +~~~ +~~~ +6797606 0 16779264 +6797607 homeCount = 120 +6797608 waitCount = 60 +6797608 ripCount = 50 +6797609 locktype1 = 2 +6797609 locktype2 = 7 +6797610 locktype3 = 6 +6797610 goalCount = 1 +6797611 goalTotal = 41 +6797611 otherCount = 64 +~~~ +6797632 UP 10 +6797633 waslock = 0 +6797632 512 16779264 +~~~ +6797700 DOWN 10 +6797700 0 16779264 +6797701 0 2048 +~~~ +~~~ +~~~ +~~~ +6797728 homeCount = 120 +6797728 waitCount = 60 +6797729 ripCount = 50 +6797729 locktype1 = 2 +6797730 locktype2 = 7 +6797730 locktype3 = 6 +6797731 goalCount = 1 +6797731 goalTotal = 41 +6797732 otherCount = 64 +~~~ +6797848 UP 10 +6797848 waslock = 0 +6797848 512 2048 +~~~ +6804936 DOWN 10 +6804936 0 2048 +~~~ +~~~ +~~~ +~~~ +6804957 homeCount = 120 +6804958 waitCount = 60 +6804958 ripCount = 50 +6804959 locktype1 = 2 +6804959 locktype2 = 7 +6804960 locktype3 = 6 +6804960 goalCount = 1 +6804961 goalTotal = 41 +6804961 otherCount = 64 +~~~ +6804962 UP 10 +6804962 waslock = 0 +6804962 512 2048 +~~~ +6805032 DOWN 10 +6805032 0 2048 +~~~ +~~~ +~~~ +~~~ +6805061 homeCount = 120 +6805061 waitCount = 60 +6805062 ripCount = 50 +6805062 locktype1 = 2 +6805063 locktype2 = 7 +6805063 locktype3 = 6 +6805064 goalCount = 1 +6805064 goalTotal = 41 +6805065 otherCount = 64 +~~~ +6807081 UP 12 +6807081 2048 2048 +6807157 DOWN 12 +6807157 0 2048 +6807196 UP 12 +6807196 2048 2048 +6808281 DOWN 12 +6808281 0 2048 +6808302 UP 12 +6808302 2048 2048 +6811278 DOWN 12 +6811278 0 2048 +6811347 UP 12 +6811347 2048 2048 +6814081 CLICK1 +6814081 CLICK2 +~~~ +~~~ +~~~ +6814107 2048 67110912 +~~~ +6814257 2048 2048 +6819298 DOWN 12 +6819298 0 2048 +~~~ +~~~ +6819318 0 0 +~~~ +~~~ +6819319 0 1 +~~~ +~~~ +6819321 0 3 +~~~ +~~~ +6819323 0 7 +~~~ +~~~ +6819325 0 15 +~~~ +~~~ +6819327 0 31 +~~~ +~~~ +6819329 0 63 +~~~ +~~~ +6819330 0 127 +~~~ +~~~ +6819332 0 255 +6819333 homeCount = 120 +6819334 waitCount = 61 +6819334 ripCount = 50 +6819335 locktype1 = 2 +6819335 locktype2 = 7 +6819336 locktype3 = 6 +6819357 goalCount = 1 +6819357 goalTotal = 41 +6819358 otherCount = 64 +~~~ +6819359 CURRENTGOAL IS [7] +~~~ +6819367 UP 12 +6819367 2048 255 +6819410 DOWN 12 +6819410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6819444 homeCount = 120 +6819444 waitCount = 61 +6819445 ripCount = 50 +6819445 locktype1 = 2 +6819446 locktype2 = 7 +6819446 locktype3 = 6 +6819447 goalCount = 1 +6819447 goalTotal = 41 +6819448 otherCount = 64 +~~~ +6819449 CURRENTGOAL IS [7] +~~~ +6819507 UP 12 +6819507 2048 255 +6819537 DOWN 12 +6819537 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6819574 homeCount = 120 +6819575 waitCount = 61 +6819575 ripCount = 50 +6819576 locktype1 = 2 +6819576 locktype2 = 7 +6819577 locktype3 = 6 +6819577 goalCount = 1 +6819578 goalTotal = 41 +6819578 otherCount = 64 +~~~ +6819579 CURRENTGOAL IS [7] +~~~ +6828002 UP 4 +6828002 8 255 +~~~ +~~~ +6828645 DOWN 4 +6828645 0 255 +~~~ +~~~ +6828668 0 254 +~~~ +~~~ +6828670 0 252 +~~~ +~~~ +6828672 0 248 +~~~ +~~~ +6828673 0 240 +~~~ +~~~ +6828675 0 224 +~~~ +~~~ +6828677 0 192 +~~~ +~~~ +6828679 0 128 +~~~ +~~~ +6828681 0 0 +~~~ +~~~ +6828683 0 512 +6828684 homeCount = 120 +6828684 waitCount = 61 +6828685 ripCount = 50 +6828685 locktype1 = 2 +6828686 locktype2 = 7 +6828707 locktype3 = 6 +6828707 goalCount = 1 +6828708 goalTotal = 41 +6828708 otherCount = 65 +~~~ +6832786 UP 10 +6832787 waslock = 0 +6832786 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6832816 512 16777728 +~~~ +6832958 DOWN 10 +6832958 0 16777728 +6832966 0 512 +~~~ +~~~ +6832983 0 2560 +~~~ +~~~ +6832985 0 2048 +6832986 homeCount = 121 +6832986 waitCount = 61 +6832987 ripCount = 50 +6832987 locktype1 = 2 +6832987 locktype2 = 7 +6832988 locktype3 = 6 +6832988 goalCount = 1 +6832989 goalTotal = 41 +6832989 otherCount = 65 +~~~ +6833089 UP 10 +6833089 waslock = 0 +6833088 512 2048 +~~~ +6833877 DOWN 10 +6833877 0 2048 +~~~ +~~~ +~~~ +~~~ +6833903 homeCount = 121 +6833904 waitCount = 61 +6833904 ripCount = 50 +6833905 locktype1 = 2 +6833905 locktype2 = 7 +6833906 locktype3 = 6 +6833906 goalCount = 1 +6833906 goalTotal = 41 +6833907 otherCount = 65 +~~~ +6833908 UP 10 +6833908 waslock = 0 +6833907 512 2048 +6833930 DOWN 10 +6833930 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +6833955 homeCount = 121 +6833956 waitCount = 61 +6833956 ripCount = 50 +6833957 locktype1 = 2 +6833957 locktype2 = 7 +6833958 locktype3 = 6 +6833958 goalCount = 1 +6833959 goalTotal = 41 +6833959 otherCount = 65 +~~~ +6833962 UP 10 +6833962 waslock = 0 +6833962 512 2048 +~~~ +6837947 DOWN 10 +6837947 0 2048 +~~~ +~~~ +~~~ +~~~ +6837972 homeCount = 121 +6837973 waitCount = 61 +6837973 ripCount = 50 +6837974 locktype1 = 2 +6837974 locktype2 = 7 +6837974 locktype3 = 6 +6837975 goalCount = 1 +6837975 goalTotal = 41 +6837976 otherCount = 65 +~~~ +6837999 UP 10 +6838000 waslock = 0 +6837999 512 2048 +6838018 DOWN 10 +6838018 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +6838043 homeCount = 121 +6838044 waitCount = 61 +6838044 ripCount = 50 +6838045 locktype1 = 2 +6838045 locktype2 = 7 +6838046 locktype3 = 6 +6838046 goalCount = 1 +6838046 goalTotal = 41 +6838047 otherCount = 65 +~~~ +6839502 UP 12 +6839502 2048 2048 +6842503 CLICK1 +6842503 CLICK2 +~~~ +~~~ +~~~ +6842522 2048 67110912 +~~~ +6842672 2048 2048 +6851012 DOWN 12 +6851012 0 2048 +~~~ +~~~ +6851029 0 0 +~~~ +~~~ +6851031 0 1 +~~~ +~~~ +6851033 0 3 +~~~ +~~~ +6851035 0 7 +~~~ +~~~ +6851036 0 15 +~~~ +~~~ +6851038 0 31 +~~~ +~~~ +6851040 0 63 +~~~ +~~~ +6851042 0 127 +~~~ +~~~ +6851044 0 255 +6851045 homeCount = 121 +6851045 waitCount = 62 +6851046 ripCount = 50 +6851046 locktype1 = 2 +6851047 locktype2 = 7 +6851047 locktype3 = 6 +6851068 goalCount = 1 +6851069 goalTotal = 41 +6851069 otherCount = 65 +~~~ +6851070 CURRENTGOAL IS [7] +~~~ +6867037 UP 6 +6867037 32 255 +~~~ +~~~ +6867390 DOWN 6 +6867390 0 255 +~~~ +~~~ +6867410 0 254 +~~~ +~~~ +6867412 0 252 +~~~ +~~~ +6867414 0 248 +~~~ +~~~ +6867416 0 240 +~~~ +~~~ +6867417 0 224 +~~~ +~~~ +6867419 0 192 +~~~ +~~~ +6867421 0 128 +~~~ +~~~ +6867423 0 0 +~~~ +~~~ +6867425 0 512 +6867426 homeCount = 121 +6867426 waitCount = 62 +6867427 ripCount = 50 +6867427 locktype1 = 2 +6867428 locktype2 = 7 +6867449 locktype3 = 6 +6867449 goalCount = 1 +6867450 goalTotal = 41 +6867450 otherCount = 66 +~~~ +6871554 UP 10 +6871554 waslock = 0 +6871553 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6871589 512 16777728 +~~~ +6871739 512 512 +6871848 DOWN 10 +6871848 0 512 +~~~ +~~~ +6871874 0 2560 +~~~ +~~~ +6871876 0 2048 +6871877 homeCount = 122 +6871877 waitCount = 62 +6871878 ripCount = 50 +6871878 locktype1 = 2 +6871879 locktype2 = 7 +6871879 locktype3 = 6 +6871880 goalCount = 1 +6871880 goalTotal = 41 +6871881 otherCount = 66 +~~~ +6871905 UP 10 +6871905 waslock = 0 +6871905 512 2048 +~~~ +6877839 DOWN 10 +6877839 0 2048 +~~~ +~~~ +~~~ +~~~ +6877866 homeCount = 122 +6877867 waitCount = 62 +6877867 ripCount = 50 +6877868 locktype1 = 2 +6877868 locktype2 = 7 +6877869 locktype3 = 6 +6877869 goalCount = 1 +6877869 goalTotal = 41 +6877870 otherCount = 66 +~~~ +6879791 UP 12 +6879791 2048 2048 +6881416 DOWN 12 +6881416 0 2048 +6881430 UP 12 +6881430 2048 2048 +6881961 DOWN 12 +6881961 0 2048 +6881975 UP 12 +6881975 2048 2048 +6883663 DOWN 12 +6883663 0 2048 +6883693 UP 12 +6883693 2048 2048 +6886792 CLICK1 +6886792 CLICK2 +~~~ +~~~ +~~~ +6886815 2048 67110912 +~~~ +6886965 2048 2048 +6893793 DOWN 12 +6893793 0 2048 +~~~ +~~~ +6893814 0 0 +~~~ +~~~ +6893816 0 1 +~~~ +~~~ +6893817 0 3 +~~~ +~~~ +6893819 0 7 +~~~ +~~~ +6893821 0 15 +~~~ +~~~ +6893823 0 31 +~~~ +~~~ +6893825 0 63 +~~~ +~~~ +6893826 0 127 +~~~ +~~~ +6893828 0 255 +6893829 homeCount = 122 +6893830 waitCount = 63 +6893830 ripCount = 50 +6893831 locktype1 = 2 +6893831 locktype2 = 7 +6893832 locktype3 = 6 +6893853 goalCount = 1 +6893853 goalTotal = 41 +6893854 otherCount = 66 +~~~ +6893855 CURRENTGOAL IS [7] +~~~ +6905937 UP 10 +6905938 waslock = 0 +6905937 512 255 +~~~ +6905957 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6905965 512 254 +~~~ +~~~ +6905966 512 252 +~~~ +~~~ +6905968 512 248 +~~~ +~~~ +6905970 512 240 +~~~ +~~~ +6905972 512 224 +~~~ +~~~ +6905974 512 192 +~~~ +~~~ +6905975 512 128 +~~~ +~~~ +6905977 512 0 +~~~ +~~~ +~~~ +6906246 0 0 +6930957 LOCKEND +~~~ +~~~ +~~~ +6930979 0 512 +6934646 UP 10 +6934646 waslock = 0 +6934646 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6934672 512 16777728 +~~~ +6934799 DOWN 10 +6934799 0 16777728 +~~~ +~~~ +6934819 0 16779776 +~~~ +~~~ +6934821 0 16779264 +6934822 homeCount = 123 +6934822 waitCount = 63 +6934823 ripCount = 50 +6934823 locktype1 = 2 +6934824 locktype2 = 8 +6934824 locktype3 = 6 +6934825 goalCount = 1 +6934825 goalTotal = 41 +6934826 otherCount = 66 +~~~ +6934847 0 2048 +6934867 UP 10 +6934867 waslock = 0 +6934867 512 2048 +~~~ +6934893 DOWN 10 +6934893 0 2048 +~~~ +~~~ +~~~ +~~~ +6934910 homeCount = 123 +6934911 waitCount = 63 +6934911 ripCount = 50 +6934912 locktype1 = 2 +6934912 locktype2 = 8 +6934913 locktype3 = 6 +6934913 goalCount = 1 +6934914 goalTotal = 41 +6934914 otherCount = 66 +~~~ +6935112 UP 10 +6935112 waslock = 0 +6935112 512 2048 +~~~ +6935617 DOWN 10 +6935616 0 2048 +~~~ +~~~ +~~~ +~~~ +6935639 homeCount = 123 +6935640 waitCount = 63 +6935640 ripCount = 50 +6935641 locktype1 = 2 +6935641 locktype2 = 8 +6935642 locktype3 = 6 +6935642 goalCount = 1 +6935643 goalTotal = 41 +6935643 otherCount = 66 +~~~ +6935681 UP 10 +6935682 waslock = 0 +6935681 512 2048 +~~~ +6935714 DOWN 10 +6935714 0 2048 +~~~ +~~~ +~~~ +~~~ +6935740 homeCount = 123 +6935741 waitCount = 63 +6935741 ripCount = 50 +6935742 locktype1 = 2 +6935742 locktype2 = 8 +6935743 locktype3 = 6 +6935743 goalCount = 1 +6935744 goalTotal = 41 +6935744 otherCount = 66 +~~~ +6935801 UP 10 +6935801 waslock = 0 +6935801 512 2048 +~~~ +6935843 DOWN 10 +6935843 0 2048 +~~~ +~~~ +~~~ +~~~ +6935871 homeCount = 123 +6935872 waitCount = 63 +6935872 ripCount = 50 +6935873 locktype1 = 2 +6935873 locktype2 = 8 +6935874 locktype3 = 6 +6935874 goalCount = 1 +6935875 goalTotal = 41 +6935875 otherCount = 66 +~~~ +6935918 UP 10 +6935918 waslock = 0 +6935918 512 2048 +~~~ +6935945 DOWN 10 +6935945 0 2048 +~~~ +~~~ +~~~ +~~~ +6935960 homeCount = 123 +6935960 waitCount = 63 +6935961 ripCount = 50 +6935961 locktype1 = 2 +6935962 locktype2 = 8 +6935962 locktype3 = 6 +6935963 goalCount = 1 +6935963 goalTotal = 41 +6935964 otherCount = 66 +~~~ +6936031 UP 10 +6936031 waslock = 0 +6936031 512 2048 +~~~ +6941357 DOWN 10 +6941357 0 2048 +6941366 UP 10 +6941366 waslock = 0 +6941366 512 2048 +~~~ +~~~ +~~~ +~~~ +6941394 homeCount = 123 +6941395 waitCount = 63 +6941395 ripCount = 50 +6941396 locktype1 = 2 +6941396 locktype2 = 8 +6941397 locktype3 = 6 +6941397 goalCount = 1 +6941398 goalTotal = 41 +6941398 otherCount = 66 +~~~ +~~~ +6941466 DOWN 10 +6941466 0 2048 +~~~ +~~~ +~~~ +~~~ +6941491 homeCount = 123 +6941492 waitCount = 63 +6941492 ripCount = 50 +6941493 locktype1 = 2 +6941493 locktype2 = 8 +6941493 locktype3 = 6 +6941494 goalCount = 1 +6941494 goalTotal = 41 +6941495 otherCount = 66 +~~~ +6941496 UP 10 +6941496 waslock = 0 +6941495 512 2048 +~~~ +6941566 DOWN 10 +6941566 0 2048 +~~~ +~~~ +~~~ +~~~ +6941591 homeCount = 123 +6941592 waitCount = 63 +6941592 ripCount = 50 +6941593 locktype1 = 2 +6941593 locktype2 = 8 +6941594 locktype3 = 6 +6941594 goalCount = 1 +6941595 goalTotal = 41 +6941595 otherCount = 66 +~~~ +6943531 UP 12 +6943531 2048 2048 +6945000 DOWN 12 +6945000 0 2048 +6945026 UP 12 +6945026 2048 2048 +6945349 DOWN 12 +6945349 0 2048 +6945363 UP 12 +6945363 2048 2048 +6945387 DOWN 12 +6945387 0 2048 +6945442 UP 12 +6945442 2048 2048 +6947532 CLICK1 +6947532 CLICK2 +~~~ +~~~ +~~~ +6947560 2048 67110912 +~~~ +6947710 2048 2048 +6953981 DOWN 12 +6953981 0 2048 +6953994 UP 12 +6953994 2048 2048 +~~~ +~~~ +6953999 2048 0 +~~~ +~~~ +6954001 2048 1 +~~~ +~~~ +6954002 2048 3 +~~~ +~~~ +6954004 2048 7 +~~~ +~~~ +6954006 2048 15 +~~~ +~~~ +6954008 2048 31 +~~~ +~~~ +6954010 2048 63 +~~~ +~~~ +6954012 2048 127 +~~~ +~~~ +6954013 2048 255 +6954014 homeCount = 123 +6954015 waitCount = 64 +6954015 ripCount = 50 +6954016 locktype1 = 2 +6954037 locktype2 = 8 +6954037 locktype3 = 6 +6954038 goalCount = 1 +6954038 goalTotal = 41 +6954039 otherCount = 66 +~~~ +6954040 CURRENTGOAL IS [7] +~~~ +6954190 DOWN 12 +6954190 0 255 +~~~ +~~~ +~~~ +~~~ +6954214 UP 12 +6954214 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6954227 homeCount = 123 +6954228 waitCount = 64 +6954228 ripCount = 50 +6954229 locktype1 = 2 +6954229 locktype2 = 8 +6954230 locktype3 = 6 +6954230 goalCount = 1 +6954231 goalTotal = 41 +6954231 otherCount = 66 +~~~ +6954232 CURRENTGOAL IS [7] +~~~ +6954328 DOWN 12 +6954328 0 255 +6954335 UP 12 +6954335 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6954367 homeCount = 123 +6954368 waitCount = 64 +6954368 ripCount = 50 +6954369 locktype1 = 2 +6954369 locktype2 = 8 +6954370 locktype3 = 6 +6954370 goalCount = 1 +6954371 goalTotal = 41 +6954371 otherCount = 66 +~~~ +6954372 CURRENTGOAL IS [7] +~~~ +6956456 DOWN 12 +6956456 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6956490 homeCount = 123 +6956491 waitCount = 64 +6956491 ripCount = 50 +6956492 locktype1 = 2 +6956492 locktype2 = 8 +6956493 locktype3 = 6 +6956493 goalCount = 1 +6956494 goalTotal = 41 +6956494 otherCount = 66 +~~~ +6956495 CURRENTGOAL IS [7] +~~~ +6961679 UP 5 +6961679 16 255 +~~~ +~~~ +6961995 DOWN 5 +6961995 0 255 +~~~ +~~~ +6962013 0 254 +~~~ +~~~ +6962015 0 252 +~~~ +~~~ +6962017 0 248 +~~~ +~~~ +6962019 0 240 +~~~ +~~~ +6962021 0 224 +~~~ +~~~ +6962022 0 192 +~~~ +~~~ +6962024 0 128 +~~~ +~~~ +6962026 0 0 +~~~ +~~~ +6962028 0 512 +6962029 homeCount = 123 +6962030 waitCount = 64 +6962030 ripCount = 50 +6962030 locktype1 = 2 +6962031 locktype2 = 8 +6962052 locktype3 = 6 +6962053 goalCount = 1 +6962053 goalTotal = 41 +6962054 otherCount = 67 +~~~ +6962054 16 512 +6962809 DOWN 5 +6962809 0 512 +6967089 UP 10 +6967089 waslock = 0 +6967089 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6967119 512 16777728 +~~~ +6967269 512 512 +6973816 DOWN 10 +6973816 0 512 +~~~ +~~~ +6973835 0 2560 +~~~ +~~~ +6973836 0 2048 +6973837 homeCount = 124 +6973838 waitCount = 64 +6973838 ripCount = 50 +6973839 locktype1 = 2 +6973839 locktype2 = 8 +6973840 locktype3 = 6 +6973840 goalCount = 1 +6973841 goalTotal = 41 +6973841 otherCount = 67 +~~~ +6973842 UP 10 +6973863 waslock = 0 +6973842 512 2048 +~~~ +6973904 DOWN 10 +6973904 0 2048 +~~~ +~~~ +~~~ +~~~ +6973929 homeCount = 124 +6973929 waitCount = 64 +6973930 ripCount = 50 +6973930 locktype1 = 2 +6973931 locktype2 = 8 +6973931 locktype3 = 6 +6973932 goalCount = 1 +6973932 goalTotal = 41 +6973933 otherCount = 67 +~~~ +6975942 UP 12 +6975942 2048 2048 +6978569 DOWN 12 +6978569 0 2048 +6978588 UP 12 +6978588 2048 2048 +6980629 DOWN 12 +6980629 0 2048 +6980662 UP 12 +6980662 2048 2048 +6981442 CLICK1 +6981442 CLICK2 +~~~ +~~~ +~~~ +6981468 2048 67110912 +~~~ +6981618 2048 2048 +6987168 DOWN 12 +6987168 0 2048 +~~~ +~~~ +6987185 0 0 +~~~ +~~~ +6987187 0 1 +~~~ +~~~ +6987188 0 3 +~~~ +~~~ +6987190 0 7 +~~~ +~~~ +6987192 0 15 +~~~ +~~~ +6987194 0 31 +~~~ +~~~ +6987196 0 63 +~~~ +~~~ +6987197 0 127 +~~~ +~~~ +6987199 0 255 +6987200 homeCount = 124 +6987201 waitCount = 65 +6987201 ripCount = 50 +6987202 locktype1 = 2 +6987202 locktype2 = 8 +6987203 locktype3 = 6 +6987224 goalCount = 1 +6987224 goalTotal = 41 +6987225 otherCount = 67 +~~~ +6987226 CURRENTGOAL IS [7] +~~~ +6995646 UP 5 +6995646 16 255 +~~~ +~~~ +6996817 DOWN 5 +6996817 0 255 +~~~ +~~~ +6996836 0 254 +~~~ +~~~ +6996838 0 252 +~~~ +~~~ +6996840 0 248 +~~~ +~~~ +6996841 0 240 +~~~ +~~~ +6996843 0 224 +~~~ +~~~ +6996845 0 192 +~~~ +~~~ +6996847 0 128 +~~~ +~~~ +6996849 0 0 +~~~ +~~~ +6996851 0 512 +6996852 homeCount = 124 +6996852 waitCount = 65 +6996853 ripCount = 50 +6996853 locktype1 = 2 +6996854 locktype2 = 8 +6996875 locktype3 = 6 +6996875 goalCount = 1 +6996876 goalTotal = 41 +6996876 otherCount = 68 +~~~ +6996877 16 512 +6996887 DOWN 5 +6996887 0 512 +6997103 16 512 +6997395 DOWN 5 +6997395 0 512 +6997437 16 512 +6997638 DOWN 5 +6997638 0 512 +7003045 UP 10 +7003046 waslock = 0 +7003045 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7003072 512 16777728 +~~~ +7003222 512 512 +7003296 DOWN 10 +7003296 0 512 +~~~ +~~~ +7003317 0 2560 +~~~ +~~~ +7003319 0 2048 +7003320 homeCount = 125 +7003320 waitCount = 65 +7003321 ripCount = 50 +7003321 locktype1 = 2 +7003322 locktype2 = 8 +7003322 locktype3 = 6 +7003323 goalCount = 1 +7003323 goalTotal = 41 +7003324 otherCount = 68 +~~~ +7003445 UP 10 +7003445 waslock = 0 +7003445 512 2048 +~~~ +7003799 DOWN 10 +7003799 0 2048 +~~~ +~~~ +~~~ +~~~ +7003820 homeCount = 125 +7003821 waitCount = 65 +7003821 ripCount = 50 +7003822 locktype1 = 2 +7003822 locktype2 = 8 +7003823 locktype3 = 6 +7003823 goalCount = 1 +7003824 goalTotal = 41 +7003824 otherCount = 68 +~~~ +7003825 UP 10 +7003825 waslock = 0 +7003825 512 2048 +7003847 DOWN 10 +7003847 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +7003870 homeCount = 125 +7003871 waitCount = 65 +7003871 ripCount = 50 +7003872 locktype1 = 2 +7003872 locktype2 = 8 +7003873 locktype3 = 6 +7003873 goalCount = 1 +7003874 goalTotal = 41 +7003874 otherCount = 68 +~~~ +7003892 UP 10 +7003893 waslock = 0 +7003892 512 2048 +~~~ +7008206 DOWN 10 +7008206 0 2048 +~~~ +~~~ +~~~ +~~~ +7008230 homeCount = 125 +7008230 waitCount = 65 +7008231 ripCount = 50 +7008231 locktype1 = 2 +7008232 locktype2 = 8 +7008232 locktype3 = 6 +7008233 goalCount = 1 +7008233 goalTotal = 41 +7008234 otherCount = 68 +~~~ +7008234 UP 10 +7008234 waslock = 0 +7008234 512 2048 +~~~ +7008328 DOWN 10 +7008328 0 2048 +~~~ +~~~ +~~~ +~~~ +7008353 homeCount = 125 +7008353 waitCount = 65 +7008354 ripCount = 50 +7008354 locktype1 = 2 +7008355 locktype2 = 8 +7008355 locktype3 = 6 +7008355 goalCount = 1 +7008356 goalTotal = 41 +7008356 otherCount = 68 +~~~ +7008384 UP 10 +7008385 waslock = 0 +7008384 512 2048 +~~~ +7008410 DOWN 10 +7008410 0 2048 +~~~ +~~~ +~~~ +~~~ +7008432 homeCount = 125 +7008433 waitCount = 65 +7008433 ripCount = 50 +7008434 locktype1 = 2 +7008434 locktype2 = 8 +7008435 locktype3 = 6 +7008435 goalCount = 1 +7008436 goalTotal = 41 +7008436 otherCount = 68 +~~~ +7010275 UP 12 +7010275 2048 2048 +7014339 DOWN 12 +7014339 0 2048 +7014351 UP 12 +7014351 2048 2048 +7015775 CLICK1 +7015775 CLICK2 +~~~ +~~~ +~~~ +7015800 2048 67110912 +~~~ +7015950 2048 2048 +7021725 DOWN 12 +7021725 0 2048 +~~~ +~~~ +7021748 0 0 +~~~ +~~~ +7021750 0 1 +~~~ +~~~ +7021751 0 3 +~~~ +~~~ +7021753 0 7 +~~~ +~~~ +7021755 0 15 +~~~ +~~~ +7021757 0 31 +~~~ +~~~ +7021759 0 63 +~~~ +~~~ +7021760 0 127 +~~~ +~~~ +7021762 0 255 +7021763 homeCount = 125 +7021764 waitCount = 66 +7021764 ripCount = 50 +7021765 locktype1 = 2 +7021765 locktype2 = 8 +7021766 locktype3 = 6 +7021787 goalCount = 1 +7021787 goalTotal = 41 +7021788 otherCount = 68 +~~~ +7021789 CURRENTGOAL IS [7] +~~~ +7029936 UP 11 +7029936 LOCKOUT 2 +7029935 1024 255 +~~~ +7029959 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7029967 1024 254 +~~~ +~~~ +7029969 1024 252 +~~~ +~~~ +7029970 1024 248 +~~~ +~~~ +7029972 1024 240 +~~~ +~~~ +7029974 1024 224 +~~~ +~~~ +7029976 1024 192 +~~~ +~~~ +7029978 1024 128 +~~~ +~~~ +7029980 1024 0 +~~~ +~~~ +7030046 DOWN 11 +7030046 0 0 +7038812 UP 1 +7038812 1 0 +7040163 DOWN 1 +7040163 0 0 +7044450 512 0 +7045274 0 0 +7045315 512 0 +7045409 0 0 +7045452 512 0 +7045487 0 0 +7045609 512 0 +7048059 0 0 +7048119 512 0 +7048160 0 0 +7054959 LOCKEND +~~~ +~~~ +~~~ +7054982 0 512 +7059549 UP 10 +7059549 waslock = 0 +7059549 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7059577 512 16777728 +~~~ +7059727 512 512 +7060080 DOWN 10 +7060080 0 512 +~~~ +~~~ +7060101 0 1536 +~~~ +~~~ +7060103 0 1024 +7060104 homeCount = 126 +7060104 waitCount = 66 +7060105 ripCount = 50 +7060105 locktype1 = 2 +7060106 locktype2 = 9 +7060106 locktype3 = 6 +7060107 goalCount = 1 +7060107 goalTotal = 41 +7060108 otherCount = 68 +~~~ +7060126 UP 10 +7060126 waslock = 0 +7060126 512 1024 +~~~ +7060201 DOWN 10 +7060201 0 1024 +~~~ +~~~ +~~~ +~~~ +7060230 homeCount = 126 +7060231 waitCount = 66 +7060231 ripCount = 50 +7060232 locktype1 = 2 +7060232 locktype2 = 9 +7060233 locktype3 = 6 +7060233 goalCount = 1 +7060234 goalTotal = 41 +7060234 otherCount = 68 +~~~ +7060239 UP 10 +7060240 waslock = 0 +7060239 512 1024 +~~~ +7065567 DOWN 10 +7065567 0 1024 +7065581 UP 10 +7065581 waslock = 0 +7065581 512 1024 +~~~ +~~~ +~~~ +~~~ +7065605 homeCount = 126 +7065605 waitCount = 66 +7065606 ripCount = 50 +7065606 locktype1 = 2 +7065607 locktype2 = 9 +7065607 locktype3 = 6 +7065608 goalCount = 1 +7065608 goalTotal = 41 +7065609 otherCount = 68 +~~~ +~~~ +7065644 DOWN 10 +7065644 0 1024 +~~~ +~~~ +~~~ +~~~ +7065673 homeCount = 126 +7065673 waitCount = 66 +7065674 ripCount = 50 +7065674 locktype1 = 2 +7065675 locktype2 = 9 +7065675 locktype3 = 6 +7065676 goalCount = 1 +7065676 goalTotal = 41 +7065677 otherCount = 68 +~~~ +7067367 UP 11 +7067367 1024 1024 +7069514 DOWN 11 +7069514 0 1024 +7069517 UP 11 +7069517 1024 1024 +7072868 BEEP1 +7072868 BEEP2 +~~~ +~~~ +~~~ +7072891 1024 33555456 +~~~ +7073041 1024 1024 +7079165 DOWN 11 +7079165 0 1024 +7079170 UP 11 +7079170 1024 1024 +~~~ +~~~ +7079193 1024 0 +~~~ +~~~ +7079195 1024 1 +~~~ +~~~ +7079197 1024 3 +~~~ +~~~ +7079199 1024 7 +~~~ +~~~ +7079200 1024 15 +~~~ +~~~ +7079202 1024 31 +~~~ +~~~ +7079204 1024 63 +~~~ +~~~ +7079206 1024 127 +~~~ +~~~ +7079208 1024 255 +7079209 homeCount = 126 +7079209 waitCount = 66 +7079210 ripCount = 51 +7079210 locktype1 = 2 +7079231 locktype2 = 9 +7079231 locktype3 = 6 +7079232 goalCount = 1 +7079232 goalTotal = 41 +7079233 otherCount = 68 +~~~ +7079234 CURRENTGOAL IS [7] +~~~ +7079287 DOWN 11 +7079287 0 255 +7079298 UP 11 +7079298 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7079327 homeCount = 126 +7079328 waitCount = 66 +7079328 ripCount = 51 +7079329 locktype1 = 2 +7079329 locktype2 = 9 +7079330 locktype3 = 6 +7079330 goalCount = 1 +7079331 goalTotal = 41 +7079331 otherCount = 68 +~~~ +7079332 CURRENTGOAL IS [7] +~~~ +7082284 DOWN 11 +7082284 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7082317 homeCount = 126 +7082318 waitCount = 66 +7082318 ripCount = 51 +7082319 locktype1 = 2 +7082319 locktype2 = 9 +7082320 locktype3 = 6 +7082320 goalCount = 1 +7082321 goalTotal = 41 +7082321 otherCount = 68 +~~~ +7082322 CURRENTGOAL IS [7] +~~~ +7085804 UP 7 +7085804 64 255 +~~~ +~~~ +7085824 outer reward +~~~ +7085824 64 4194559 +~~~ +~~~ +7085981 DOWN 7 +7085981 0 4194559 +~~~ +~~~ +7086003 0 4194558 +~~~ +~~~ +7086005 0 4194556 +~~~ +~~~ +7086007 0 4194552 +~~~ +~~~ +7086008 0 4194544 +~~~ +~~~ +7086010 0 4194528 +~~~ +~~~ +7086012 0 4194496 +~~~ +~~~ +7086014 0 4194432 +~~~ +~~~ +7086016 0 4194304 +~~~ +~~~ +7086018 0 4194816 +7086019 homeCount = 126 +7086019 waitCount = 66 +7086020 ripCount = 51 +7086041 locktype1 = 2 +7086041 locktype2 = 9 +7086042 locktype3 = 6 +7086042 goalCount = 2 +7086043 goalTotal = 42 +7086043 otherCount = 68 +~~~ +7086044 64 4194816 +7086274 64 512 +7094087 DOWN 7 +7094087 0 512 +7099767 UP 10 +7099767 waslock = 0 +7099767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7099800 512 16777728 +~~~ +7099950 512 512 +7104805 DOWN 10 +7104805 0 512 +~~~ +~~~ +7104824 0 2560 +~~~ +~~~ +7104826 0 2048 +7104827 homeCount = 127 +7104828 waitCount = 66 +7104828 ripCount = 51 +7104829 locktype1 = 2 +7104829 locktype2 = 9 +7104830 locktype3 = 6 +7104830 goalCount = 2 +7104831 goalTotal = 42 +7104831 otherCount = 68 +~~~ +7106451 UP 12 +7106451 2048 2048 +7108789 DOWN 12 +7108789 0 2048 +7108810 UP 12 +7108810 2048 2048 +7108872 DOWN 12 +7108872 0 2048 +7108884 UP 12 +7108884 2048 2048 +7111310 DOWN 12 +7111310 0 2048 +7111315 UP 12 +7111315 2048 2048 +7111952 CLICK1 +7111952 CLICK2 +~~~ +~~~ +~~~ +7111980 2048 67110912 +~~~ +7112130 2048 2048 +7119398 DOWN 12 +7119398 0 2048 +~~~ +~~~ +7119425 0 0 +~~~ +~~~ +7119426 0 1 +~~~ +~~~ +7119428 0 3 +~~~ +~~~ +7119430 0 7 +~~~ +~~~ +7119432 0 15 +~~~ +~~~ +7119434 0 31 +~~~ +~~~ +7119436 0 63 +~~~ +~~~ +7119437 0 127 +~~~ +7119439 UP 12 +7119439 2048 127 +~~~ +7119440 homeCount = 127 +7119441 waitCount = 67 +7119442 ripCount = 51 +7119442 locktype1 = 2 +7119463 locktype2 = 9 +7119464 locktype3 = 6 +7119464 goalCount = 2 +7119465 goalTotal = 42 +7119465 otherCount = 68 +~~~ +7119466 CURRENTGOAL IS [7] +~~~ +7119467 2048 255 +7121503 DOWN 12 +7121503 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7121544 homeCount = 127 +7121544 waitCount = 67 +7121545 ripCount = 51 +7121545 locktype1 = 2 +7121546 locktype2 = 9 +7121546 locktype3 = 6 +7121547 goalCount = 2 +7121547 goalTotal = 42 +7121548 otherCount = 68 +~~~ +7121549 CURRENTGOAL IS [7] +~~~ +7121574 UP 12 +7121574 2048 255 +7121609 DOWN 12 +7121609 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7121643 homeCount = 127 +7121643 waitCount = 67 +7121644 ripCount = 51 +7121644 locktype1 = 2 +7121645 locktype2 = 9 +7121645 locktype3 = 6 +7121646 goalCount = 2 +7121646 goalTotal = 42 +7121647 otherCount = 68 +~~~ +7121648 CURRENTGOAL IS [7] +~~~ +7126447 UP 7 +7126447 64 255 +~~~ +~~~ +7126469 outer reward +~~~ +7126469 64 4194559 +~~~ +~~~ +7126710 DOWN 7 +7126710 0 4194559 +~~~ +~~~ +7126737 0 4194558 +~~~ +~~~ +7126739 0 4194556 +~~~ +~~~ +7126740 0 4194552 +~~~ +~~~ +7126742 0 4194544 +~~~ +7126744 64 4194544 +~~~ +~~~ +7126745 64 4194528 +~~~ +~~~ +7126747 64 4194496 +~~~ +7126748 64 4194432 +~~~ +~~~ +7126750 64 4194304 +~~~ +~~~ +7126751 64 4194816 +7126752 homeCount = 127 +7126774 waitCount = 67 +7126774 ripCount = 51 +7126775 locktype1 = 2 +7126775 locktype2 = 9 +7126775 locktype3 = 6 +7126776 goalCount = 3 +7126776 goalTotal = 43 +7126777 otherCount = 68 +~~~ +7126919 64 512 +7127253 DOWN 7 +7127253 0 512 +7127273 64 512 +7127534 DOWN 7 +7127534 0 512 +7127543 64 512 +7127670 DOWN 7 +7127670 0 512 +7127680 64 512 +7136565 DOWN 7 +7136565 0 512 +7136647 64 512 +7136665 DOWN 7 +7136665 0 512 +7140698 UP 10 +7140698 waslock = 0 +7140698 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7140726 512 16777728 +~~~ +7140876 512 512 +7147055 DOWN 10 +7147055 0 512 +~~~ +~~~ +7147078 0 1536 +~~~ +~~~ +7147080 0 1024 +7147081 homeCount = 128 +7147081 waitCount = 67 +7147082 ripCount = 51 +7147082 locktype1 = 2 +7147083 locktype2 = 9 +7147083 locktype3 = 6 +7147084 goalCount = 3 +7147084 goalTotal = 43 +7147085 otherCount = 68 +~~~ +7148849 UP 11 +7148849 1024 1024 +7151745 DOWN 11 +7151745 0 1024 +7151771 UP 11 +7151771 1024 1024 +7151783 DOWN 11 +7151783 0 1024 +7151814 UP 11 +7151814 1024 1024 +7151849 BEEP1 +7151849 BEEP2 +~~~ +~~~ +~~~ +7151871 1024 33555456 +~~~ +7152020 1024 1024 +7158055 DOWN 11 +7158055 0 1024 +7158073 UP 11 +7158073 1024 1024 +~~~ +~~~ +7158091 1024 0 +~~~ +~~~ +7158093 1024 1 +~~~ +~~~ +7158095 1024 3 +~~~ +~~~ +7158097 1024 7 +~~~ +~~~ +7158098 1024 15 +~~~ +~~~ +7158100 1024 31 +~~~ +~~~ +7158102 1024 63 +~~~ +~~~ +7158104 1024 127 +~~~ +~~~ +7158106 1024 255 +7158107 homeCount = 128 +7158107 waitCount = 67 +7158108 ripCount = 52 +7158108 locktype1 = 2 +7158130 locktype2 = 9 +7158130 locktype3 = 6 +7158130 goalCount = 3 +7158131 goalTotal = 43 +7158131 otherCount = 68 +~~~ +7158132 CURRENTGOAL IS [7] +~~~ +7160244 DOWN 11 +7160244 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7160279 homeCount = 128 +7160280 waitCount = 67 +7160280 ripCount = 52 +7160281 locktype1 = 2 +7160281 locktype2 = 9 +7160282 locktype3 = 6 +7160282 goalCount = 3 +7160283 goalTotal = 43 +7160283 otherCount = 68 +~~~ +7160284 CURRENTGOAL IS [7] +~~~ +7160372 UP 11 +7160371 1024 255 +7160380 DOWN 11 +7160380 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7160417 homeCount = 128 +7160418 waitCount = 67 +7160418 ripCount = 52 +7160419 locktype1 = 2 +7160419 locktype2 = 9 +7160420 locktype3 = 6 +7160420 goalCount = 3 +7160421 goalTotal = 43 +7160421 otherCount = 68 +~~~ +7160422 CURRENTGOAL IS [7] +~~~ +7163197 UP 7 +7163197 64 255 +~~~ +~~~ +7163218 outer reward +~~~ +7163218 64 4194559 +~~~ +~~~ +7163445 DOWN 7 +7163445 0 4194559 +~~~ +~~~ +7163466 0 4194558 +~~~ +~~~ +7163468 0 4194556 +~~~ +~~~ +7163470 0 4194552 +~~~ +~~~ +7163472 0 4194544 +~~~ +~~~ +7163473 0 4194528 +~~~ +~~~ +7163475 0 4194496 +~~~ +~~~ +7163477 0 4194432 +~~~ +~~~ +7163479 0 4194304 +~~~ +~~~ +7163481 0 4194816 +7163482 homeCount = 128 +7163482 waitCount = 67 +7163483 ripCount = 52 +7163503 locktype1 = 2 +7163504 locktype2 = 9 +7163504 locktype3 = 6 +7163505 goalCount = 4 +7163505 goalTotal = 44 +7163506 otherCount = 68 +~~~ +7163506 64 4194816 +7163668 64 512 +7173399 DOWN 7 +7173399 0 512 +7173483 64 512 +7173516 DOWN 7 +7173516 0 512 +7177879 UP 10 +7177879 waslock = 0 +7177879 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7177905 512 16777728 +~~~ +7178055 512 512 +7185421 DOWN 10 +7185421 0 512 +~~~ +~~~ +7185440 0 1536 +~~~ +~~~ +7185441 0 1024 +7185442 homeCount = 129 +7185443 waitCount = 67 +7185443 ripCount = 52 +7185444 locktype1 = 2 +7185444 locktype2 = 9 +7185445 locktype3 = 6 +7185445 goalCount = 4 +7185446 goalTotal = 44 +7185446 otherCount = 68 +~~~ +7187609 UP 11 +7187609 1024 1024 +7189528 DOWN 11 +7189527 0 1024 +7189561 UP 11 +7189561 1024 1024 +7190448 DOWN 11 +7190448 0 1024 +7190455 UP 11 +7190455 1024 1024 +7190610 BEEP1 +7190610 BEEP2 +~~~ +~~~ +~~~ +7190633 1024 33555456 +~~~ +7190783 1024 1024 +7196165 DOWN 11 +7196165 0 1024 +~~~ +~~~ +7196190 0 0 +~~~ +~~~ +7196192 0 1 +~~~ +~~~ +7196194 0 3 +~~~ +~~~ +7196196 0 7 +~~~ +~~~ +7196198 0 15 +~~~ +~~~ +7196199 0 31 +~~~ +~~~ +7196201 0 63 +~~~ +~~~ +7196203 0 127 +~~~ +~~~ +7196205 0 255 +7196206 homeCount = 129 +7196206 waitCount = 67 +7196207 ripCount = 53 +7196207 locktype1 = 2 +7196208 locktype2 = 9 +7196208 locktype3 = 6 +7196229 goalCount = 4 +7196230 goalTotal = 44 +7196230 otherCount = 68 +~~~ +7196231 CURRENTGOAL IS [7] +~~~ +7196249 UP 11 +7196249 1024 255 +7196252 DOWN 11 +7196252 0 255 +7196254 UP 11 +7196254 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7196289 homeCount = 129 +7196290 waitCount = 67 +7196290 ripCount = 53 +7196291 locktype1 = 2 +7196291 locktype2 = 9 +7196291 locktype3 = 6 +7196292 goalCount = 4 +7196292 goalTotal = 44 +7196293 otherCount = 68 +~~~ +7196294 CURRENTGOAL IS [7] +~~~ +7196297 DOWN 11 +7196297 0 255 +7196324 UP 11 +7196324 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7196352 homeCount = 129 +7196352 waitCount = 67 +7196353 ripCount = 53 +7196353 locktype1 = 2 +7196354 locktype2 = 9 +7196354 locktype3 = 6 +7196355 goalCount = 4 +7196355 goalTotal = 44 +7196356 otherCount = 68 +~~~ +7196357 CURRENTGOAL IS [7] +~~~ +7198389 DOWN 11 +7198389 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198425 homeCount = 129 +7198426 waitCount = 67 +7198426 ripCount = 53 +7198427 locktype1 = 2 +7198428 locktype2 = 9 +7198428 locktype3 = 6 +7198428 goalCount = 4 +7198429 goalTotal = 44 +7198429 otherCount = 68 +~~~ +7198430 CURRENTGOAL IS [7] +~~~ +7198437 UP 11 +7198437 1024 255 +7198523 DOWN 11 +7198523 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198559 homeCount = 129 +7198560 waitCount = 67 +7198560 ripCount = 53 +7198561 locktype1 = 2 +7198561 locktype2 = 9 +7198562 locktype3 = 6 +7198562 goalCount = 4 +7198563 goalTotal = 44 +7198563 otherCount = 68 +~~~ +7198564 CURRENTGOAL IS [7] +~~~ +7198624 UP 11 +7198624 1024 255 +7198644 DOWN 11 +7198644 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198681 homeCount = 129 +7198682 waitCount = 67 +7198682 ripCount = 53 +7198683 locktype1 = 2 +7198683 locktype2 = 9 +7198684 locktype3 = 6 +7198684 goalCount = 4 +7198685 goalTotal = 44 +7198685 otherCount = 68 +~~~ +7198686 CURRENTGOAL IS [7] +~~~ +7198805 UP 11 +7198805 1024 255 +7198849 DOWN 11 +7198849 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198882 homeCount = 129 +7198883 waitCount = 67 +7198883 ripCount = 53 +7198884 locktype1 = 2 +7198884 locktype2 = 9 +7198885 locktype3 = 6 +7198885 goalCount = 4 +7198885 goalTotal = 44 +7198886 otherCount = 68 +~~~ +7198887 CURRENTGOAL IS [7] +~~~ +7201380 UP 7 +7201380 64 255 +~~~ +~~~ +7201408 outer reward +~~~ +7201408 64 4194559 +~~~ +~~~ +7201633 DOWN 7 +7201633 0 4194559 +~~~ +~~~ +7201656 0 4194558 +~~~ +~~~ +7201657 0 4194556 +~~~ +~~~ +7201659 0 4194552 +~~~ +~~~ +7201661 0 4194544 +~~~ +~~~ +7201663 0 4194528 +~~~ +~~~ +7201665 0 4194496 +~~~ +~~~ +7201666 0 4194432 +~~~ +~~~ +7201668 0 4194304 +~~~ +~~~ +7201670 0 4194816 +7201671 homeCount = 129 +7201672 waitCount = 67 +7201672 ripCount = 53 +7201693 locktype1 = 2 +7201694 locktype2 = 9 +7201694 locktype3 = 6 +7201695 goalCount = 5 +7201695 goalTotal = 45 +7201696 otherCount = 68 +~~~ +7201696 64 4194816 +7201858 64 512 +7212005 DOWN 7 +7212005 0 512 +7212062 64 512 +7212101 DOWN 7 +7212101 0 512 +7216582 UP 10 +7216582 waslock = 0 +7216582 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7216613 512 16777728 +~~~ +7216763 512 512 +7216790 DOWN 10 +7216790 0 512 +~~~ +~~~ +7216807 0 2560 +~~~ +~~~ +7216809 0 2048 +7216810 homeCount = 130 +7216810 waitCount = 67 +7216811 ripCount = 53 +7216811 locktype1 = 2 +7216812 locktype2 = 9 +7216812 locktype3 = 6 +7216813 goalCount = 5 +7216813 goalTotal = 45 +7216813 otherCount = 68 +~~~ +7216851 UP 10 +7216851 waslock = 0 +7216851 512 2048 +~~~ +7222018 DOWN 10 +7222018 0 2048 +7222030 UP 10 +7222030 waslock = 0 +7222030 512 2048 +~~~ +~~~ +~~~ +~~~ +7222052 homeCount = 130 +7222052 waitCount = 67 +7222053 ripCount = 53 +7222053 locktype1 = 2 +7222054 locktype2 = 9 +7222054 locktype3 = 6 +7222054 goalCount = 5 +7222055 goalTotal = 45 +7222055 otherCount = 68 +~~~ +~~~ +7222139 DOWN 10 +7222139 0 2048 +~~~ +~~~ +~~~ +~~~ +7222164 homeCount = 130 +7222165 waitCount = 67 +7222165 ripCount = 53 +7222166 locktype1 = 2 +7222166 locktype2 = 9 +7222167 locktype3 = 6 +7222167 goalCount = 5 +7222167 goalTotal = 45 +7222168 otherCount = 68 +~~~ +7224209 UP 12 +7224208 2048 2048 +7226515 DOWN 12 +7226515 0 2048 +7226537 UP 12 +7226537 2048 2048 +7226794 DOWN 12 +7226794 0 2048 +7226874 UP 12 +7226874 2048 2048 +7227064 DOWN 12 +7227064 0 2048 +7227084 UP 12 +7227084 2048 2048 +7227343 DOWN 12 +7227343 0 2048 +7227375 UP 12 +7227375 2048 2048 +7227423 DOWN 12 +7227423 0 2048 +7227448 UP 12 +7227447 2048 2048 +7227489 DOWN 12 +7227489 0 2048 +7227575 UP 12 +7227575 2048 2048 +7227698 DOWN 12 +7227698 0 2048 +7227728 UP 12 +7227727 2048 2048 +7230295 DOWN 12 +7230295 0 2048 +7230303 UP 12 +7230303 2048 2048 +7230405 DOWN 12 +7230405 0 2048 +7230418 UP 12 +7230418 2048 2048 +7231209 CLICK1 +7231209 CLICK2 +~~~ +~~~ +~~~ +7231238 2048 67110912 +~~~ +7231388 2048 2048 +7238786 DOWN 12 +7238786 0 2048 +~~~ +~~~ +7238809 0 0 +~~~ +~~~ +7238810 0 1 +~~~ +~~~ +7238812 0 3 +~~~ +~~~ +7238814 0 7 +~~~ +~~~ +7238816 0 15 +~~~ +~~~ +7238818 0 31 +~~~ +~~~ +7238820 0 63 +~~~ +~~~ +7238821 0 127 +~~~ +~~~ +7238823 0 255 +7238824 homeCount = 130 +7238825 waitCount = 68 +7238825 ripCount = 53 +7238826 locktype1 = 2 +7238826 locktype2 = 9 +7238848 locktype3 = 6 +7238848 goalCount = 5 +7238848 goalTotal = 45 +7238849 otherCount = 68 +~~~ +7238850 CURRENTGOAL IS [7] +~~~ +7238850 UP 12 +7238850 2048 255 +7238885 DOWN 12 +7238885 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7238925 homeCount = 130 +7238926 waitCount = 68 +7238926 ripCount = 53 +7238927 locktype1 = 2 +7238927 locktype2 = 9 +7238928 locktype3 = 6 +7238928 goalCount = 5 +7238929 goalTotal = 45 +7238929 otherCount = 68 +~~~ +7238930 CURRENTGOAL IS [7] +~~~ +7239004 UP 12 +7239004 2048 255 +7241346 DOWN 12 +7241346 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7241387 homeCount = 130 +7241388 waitCount = 68 +7241388 ripCount = 53 +7241389 locktype1 = 2 +7241389 locktype2 = 9 +7241390 locktype3 = 6 +7241390 goalCount = 5 +7241391 goalTotal = 45 +7241391 otherCount = 68 +~~~ +7241392 CURRENTGOAL IS [7] +~~~ +7241393 UP 12 +7241393 2048 255 +7241448 DOWN 12 +7241448 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7241486 homeCount = 130 +7241487 waitCount = 68 +7241487 ripCount = 53 +7241488 locktype1 = 2 +7241488 locktype2 = 9 +7241489 locktype3 = 6 +7241489 goalCount = 5 +7241490 goalTotal = 45 +7241490 otherCount = 68 +~~~ +7241491 CURRENTGOAL IS [7] +~~~ +7246047 UP 7 +7246047 64 255 +~~~ +~~~ +7246073 outer reward +~~~ +7246073 64 4194559 +~~~ +~~~ +7246239 DOWN 7 +7246239 0 4194559 +~~~ +~~~ +7246263 0 4194558 +~~~ +~~~ +7246265 0 4194556 +~~~ +~~~ +7246267 0 4194552 +~~~ +~~~ +7246269 0 4194544 +~~~ +~~~ +7246271 0 4194528 +~~~ +~~~ +7246273 0 4194496 +~~~ +~~~ +7246274 0 4194432 +~~~ +~~~ +7246276 0 4194304 +~~~ +~~~ +7246278 0 4194816 +7246279 homeCount = 130 +7246280 waitCount = 68 +7246280 ripCount = 53 +7246301 locktype1 = 2 +7246302 locktype2 = 9 +7246302 locktype3 = 6 +7246303 goalCount = 6 +7246303 goalTotal = 46 +7246304 otherCount = 68 +~~~ +7246304 64 4194816 +7246523 64 512 +7246844 DOWN 7 +7246844 0 512 +7246865 64 512 +7246981 DOWN 7 +7246981 0 512 +7246989 64 512 +7247265 DOWN 7 +7247265 0 512 +7247273 64 512 +7253973 DOWN 7 +7253973 0 512 +7253988 64 512 +7255948 DOWN 7 +7255948 0 512 +7260197 UP 10 +7260197 waslock = 0 +7260197 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7260223 512 16777728 +~~~ +7260373 512 512 +7264997 DOWN 10 +7264997 0 512 +~~~ +~~~ +7265017 0 1536 +~~~ +~~~ +7265019 0 1024 +7265020 homeCount = 131 +7265021 waitCount = 68 +7265021 ripCount = 53 +7265022 locktype1 = 2 +7265022 locktype2 = 9 +7265023 locktype3 = 6 +7265023 goalCount = 6 +7265024 goalTotal = 46 +7265024 otherCount = 68 +~~~ +7267139 UP 11 +7267139 1024 1024 +7267176 DOWN 11 +7267176 0 1024 +7267210 UP 11 +7267210 1024 1024 +7267240 DOWN 11 +7267240 0 1024 +7267440 LOCKOUT 3 +~~~ +7267457 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +7267461 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7267592 UP 11 +7267592 1024 0 +7269771 DOWN 11 +7269771 0 0 +7269794 UP 11 +7269794 1024 0 +7271659 DOWN 11 +7271659 0 0 +7271674 UP 11 +7271674 1024 0 +7275691 DOWN 11 +7275691 0 0 +7282884 UP 8 +7282884 128 0 +7283366 DOWN 8 +7283366 0 0 +7292457 LOCKEND +~~~ +~~~ +~~~ +7292478 0 512 +7293423 UP 10 +7293423 waslock = 0 +7293423 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7293452 512 16777728 +~~~ +7293602 512 512 +7298559 DOWN 10 +7298559 0 512 +~~~ +~~~ +7298577 0 2560 +~~~ +~~~ +7298579 0 2048 +7298580 homeCount = 132 +7298580 waitCount = 68 +7298581 ripCount = 53 +7298581 locktype1 = 2 +7298582 locktype2 = 9 +7298582 locktype3 = 7 +7298583 goalCount = 6 +7298583 goalTotal = 46 +7298584 otherCount = 68 +~~~ +7298630 UP 10 +7298630 waslock = 0 +7298630 512 2048 +~~~ +7298656 DOWN 10 +7298656 0 2048 +~~~ +~~~ +~~~ +~~~ +7298670 homeCount = 132 +7298670 waitCount = 68 +7298671 ripCount = 53 +7298671 locktype1 = 2 +7298672 locktype2 = 9 +7298672 locktype3 = 7 +7298673 goalCount = 6 +7298673 goalTotal = 46 +7298674 otherCount = 68 +~~~ +7300525 UP 12 +7300525 2048 2048 +7303861 DOWN 12 +7303861 0 2048 +7303914 UP 12 +7303914 2048 2048 +7304045 DOWN 12 +7304045 0 2048 +7304061 UP 12 +7304061 2048 2048 +7308526 CLICK1 +7308526 CLICK2 +~~~ +~~~ +~~~ +7308548 2048 67110912 +~~~ +7308698 2048 2048 +7317748 DOWN 12 +7317748 0 2048 +~~~ +~~~ +7317770 0 0 +~~~ +~~~ +7317772 0 1 +~~~ +~~~ +7317774 0 3 +~~~ +~~~ +7317776 0 7 +~~~ +~~~ +7317777 0 15 +~~~ +~~~ +7317779 0 31 +~~~ +~~~ +7317781 0 63 +~~~ +~~~ +7317783 0 127 +~~~ +~~~ +7317785 0 255 +7317786 homeCount = 132 +7317786 waitCount = 69 +7317787 ripCount = 53 +7317787 locktype1 = 2 +7317788 locktype2 = 9 +7317809 locktype3 = 7 +7317809 goalCount = 6 +7317810 goalTotal = 46 +7317810 otherCount = 68 +~~~ +7317811 CURRENTGOAL IS [7] +~~~ +7326698 UP 7 +7326698 64 255 +~~~ +~~~ +7326722 outer reward +~~~ +7326722 64 4194559 +~~~ +~~~ +7327001 DOWN 7 +7327001 0 4194559 +~~~ +~~~ +7327021 0 4194558 +~~~ +~~~ +7327022 0 4194556 +~~~ +~~~ +7327024 0 4194552 +~~~ +~~~ +7327026 0 4194544 +~~~ +~~~ +7327028 0 4194528 +~~~ +~~~ +7327030 0 4194496 +~~~ +~~~ +7327032 0 4194432 +~~~ +~~~ +7327033 0 4194304 +~~~ +~~~ +7327035 0 4194816 +7327036 homeCount = 132 +7327037 waitCount = 69 +7327037 ripCount = 53 +7327058 locktype1 = 2 +7327059 locktype2 = 9 +7327059 locktype3 = 7 +7327059 goalCount = 7 +7327060 goalTotal = 47 +7327060 otherCount = 68 +~~~ +7327061 64 4194816 +7327172 64 512 +7327436 DOWN 7 +7327436 0 512 +7327444 64 512 +7335677 DOWN 7 +7335677 0 512 +7335702 64 512 +7335769 DOWN 7 +7335769 0 512 +7340817 UP 10 +7340817 waslock = 0 +7340817 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7340846 512 16777728 +~~~ +7340996 512 512 +7341059 DOWN 10 +7341059 0 512 +~~~ +~~~ +7341080 0 1536 +~~~ +~~~ +7341082 0 1024 +7341083 homeCount = 133 +7341084 waitCount = 69 +7341084 ripCount = 53 +7341085 locktype1 = 2 +7341085 locktype2 = 9 +7341086 locktype3 = 7 +7341086 goalCount = 7 +7341087 goalTotal = 47 +7341087 otherCount = 68 +~~~ +7341163 UP 10 +7341163 waslock = 0 +7341163 512 1024 +~~~ +7345850 DOWN 10 +7345850 0 1024 +7345862 UP 10 +7345862 waslock = 0 +7345862 512 1024 +~~~ +~~~ +~~~ +~~~ +7345873 homeCount = 133 +7345873 waitCount = 69 +7345874 ripCount = 53 +7345874 locktype1 = 2 +7345875 locktype2 = 9 +7345875 locktype3 = 7 +7345876 goalCount = 7 +7345876 goalTotal = 47 +7345876 otherCount = 68 +~~~ +~~~ +7345957 DOWN 10 +7345957 0 1024 +~~~ +~~~ +~~~ +~~~ +7345984 homeCount = 133 +7345985 waitCount = 69 +7345985 ripCount = 53 +7345986 locktype1 = 2 +7345986 locktype2 = 9 +7345987 locktype3 = 7 +7345987 goalCount = 7 +7345988 goalTotal = 47 +7345988 otherCount = 68 +~~~ +7346012 UP 10 +7346012 waslock = 0 +7346012 512 1024 +~~~ +7346063 DOWN 10 +7346063 0 1024 +~~~ +~~~ +~~~ +~~~ +7346083 homeCount = 133 +7346083 waitCount = 69 +7346084 ripCount = 53 +7346084 locktype1 = 2 +7346085 locktype2 = 9 +7346085 locktype3 = 7 +7346086 goalCount = 7 +7346086 goalTotal = 47 +7346087 otherCount = 68 +~~~ +7348564 UP 11 +7348564 1024 1024 +7348580 DOWN 11 +7348580 0 1024 +7348605 UP 11 +7348605 1024 1024 +7350658 DOWN 11 +7350658 0 1024 +7350674 UP 11 +7350674 1024 1024 +7351121 DOWN 11 +7351121 0 1024 +7351136 UP 11 +7351136 1024 1024 +7353064 BEEP1 +7353064 BEEP2 +~~~ +~~~ +~~~ +7353083 1024 33555456 +~~~ +7353233 1024 1024 +7360547 DOWN 11 +7360547 0 1024 +~~~ +~~~ +7360571 0 0 +~~~ +~~~ +7360573 0 1 +~~~ +~~~ +7360575 0 3 +~~~ +~~~ +7360577 0 7 +~~~ +~~~ +7360578 0 15 +~~~ +~~~ +7360580 0 31 +~~~ +~~~ +7360582 0 63 +~~~ +~~~ +7360584 0 127 +~~~ +~~~ +7360586 0 255 +7360587 homeCount = 133 +7360587 waitCount = 69 +7360588 ripCount = 54 +7360588 locktype1 = 2 +7360589 locktype2 = 9 +7360610 locktype3 = 7 +7360610 goalCount = 7 +7360611 goalTotal = 47 +7360611 otherCount = 68 +~~~ +7360612 CURRENTGOAL IS [7] +~~~ +7360641 UP 11 +7360641 1024 255 +7360672 DOWN 11 +7360672 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7360707 homeCount = 133 +7360708 waitCount = 69 +7360708 ripCount = 54 +7360709 locktype1 = 2 +7360709 locktype2 = 9 +7360710 locktype3 = 7 +7360710 goalCount = 7 +7360711 goalTotal = 47 +7360711 otherCount = 68 +~~~ +7360712 CURRENTGOAL IS [7] +~~~ +7360721 UP 11 +7360721 1024 255 +7362656 DOWN 11 +7362656 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7362697 homeCount = 133 +7362698 waitCount = 69 +7362698 ripCount = 54 +7362699 locktype1 = 2 +7362699 locktype2 = 9 +7362700 locktype3 = 7 +7362700 goalCount = 7 +7362701 goalTotal = 47 +7362701 otherCount = 68 +~~~ +7362702 CURRENTGOAL IS [7] +~~~ +7365352 UP 7 +7365352 64 255 +~~~ +~~~ +7365373 outer reward +~~~ +7365374 64 4194559 +~~~ +~~~ +7365536 DOWN 7 +7365536 0 4194559 +~~~ +~~~ +7365562 0 4194558 +~~~ +~~~ +7365563 0 4194556 +~~~ +~~~ +7365565 0 4194552 +~~~ +~~~ +7365567 0 4194544 +~~~ +~~~ +7365569 0 4194528 +~~~ +~~~ +7365571 0 4194496 +~~~ +~~~ +7365572 0 4194432 +~~~ +~~~ +7365574 0 4194304 +~~~ +~~~ +7365576 0 4194816 +7365577 homeCount = 133 +7365578 waitCount = 69 +7365578 ripCount = 54 +7365599 locktype1 = 2 +7365599 locktype2 = 9 +7365600 locktype3 = 7 +7365600 goalCount = 8 +7365601 goalTotal = 48 +7365601 otherCount = 68 +~~~ +7365605 64 4194816 +7365823 64 512 +7366174 DOWN 7 +7366174 0 512 +7366179 64 512 +7374623 DOWN 7 +7374623 0 512 +7379786 UP 10 +7379786 waslock = 0 +7379786 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7379809 512 16777728 +~~~ +7379959 512 512 +7384922 DOWN 10 +7384922 0 512 +~~~ +~~~ +7384944 0 1536 +~~~ +~~~ +7384946 0 1024 +7384947 homeCount = 134 +7384948 waitCount = 69 +7384948 ripCount = 54 +7384948 locktype1 = 2 +7384949 locktype2 = 9 +7384949 locktype3 = 7 +7384950 goalCount = 8 +7384950 goalTotal = 48 +7384951 otherCount = 68 +~~~ +7384996 UP 10 +7384996 waslock = 0 +7384996 512 1024 +7385026 DOWN 10 +7385026 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +7385048 homeCount = 134 +7385048 waitCount = 69 +7385049 ripCount = 54 +7385049 locktype1 = 2 +7385050 locktype2 = 9 +7385050 locktype3 = 7 +7385051 goalCount = 8 +7385051 goalTotal = 48 +7385052 otherCount = 68 +~~~ +7387275 UP 11 +7387275 1024 1024 +7389347 DOWN 11 +7389347 0 1024 +7389404 UP 11 +7389404 1024 1024 +7393276 BEEP1 +7393276 BEEP2 +~~~ +~~~ +~~~ +7393295 1024 33555456 +~~~ +7393445 1024 1024 +7402954 DOWN 11 +7402954 0 1024 +~~~ +~~~ +7402973 0 0 +~~~ +~~~ +7402975 0 1 +~~~ +~~~ +7402977 0 3 +~~~ +~~~ +7402979 0 7 +~~~ +~~~ +7402981 0 15 +~~~ +~~~ +7402982 0 31 +~~~ +~~~ +7402984 0 63 +~~~ +~~~ +7402986 0 127 +~~~ +~~~ +7402988 0 255 +7402989 homeCount = 134 +7402989 waitCount = 69 +7402990 ripCount = 55 +7402990 locktype1 = 2 +7402991 locktype2 = 9 +7403012 locktype3 = 7 +7403013 goalCount = 8 +7403013 goalTotal = 48 +7403013 otherCount = 68 +~~~ +7403015 CURRENTGOAL IS [7] +~~~ +7403015 UP 11 +7403015 1024 255 +7403061 DOWN 11 +7403061 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7403099 homeCount = 134 +7403100 waitCount = 69 +7403100 ripCount = 55 +7403101 locktype1 = 2 +7403101 locktype2 = 9 +7403102 locktype3 = 7 +7403102 goalCount = 8 +7403103 goalTotal = 48 +7403103 otherCount = 68 +~~~ +7403104 CURRENTGOAL IS [7] +~~~ +7406281 UP 7 +7406281 64 255 +~~~ +~~~ +7406307 outer reward +~~~ +7406307 64 4194559 +~~~ +~~~ +7406343 DOWN 7 +7406343 0 4194559 +~~~ +~~~ +7406364 0 4194558 +~~~ +~~~ +7406366 0 4194556 +~~~ +~~~ +7406368 0 4194552 +~~~ +7406369 64 4194552 +~~~ +~~~ +7406371 64 4194544 +~~~ +~~~ +7406373 64 4194528 +~~~ +7406374 64 4194496 +~~~ +~~~ +7406375 64 4194432 +~~~ +~~~ +7406377 64 4194304 +~~~ +~~~ +7406379 64 4194816 +7406380 homeCount = 134 +7406401 waitCount = 69 +7406402 ripCount = 55 +7406402 locktype1 = 2 +7406403 locktype2 = 9 +7406403 locktype3 = 7 +7406404 goalCount = 9 +7406404 goalTotal = 49 +7406405 otherCount = 68 +~~~ +7406561 DOWN 7 +7406561 0 4194816 +7406594 64 4194816 +7406757 64 512 +7415726 DOWN 7 +7415726 0 512 +7415737 64 512 +7417333 DOWN 7 +7417333 0 512 +7417337 64 512 +7417494 DOWN 7 +7417494 0 512 +7417522 64 512 +7417596 DOWN 7 +7417596 0 512 +7425090 UP 10 +7425090 waslock = 0 +7425090 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7425120 512 16777728 +~~~ +7425270 512 512 +7431156 DOWN 10 +7431156 0 512 +7431172 UP 10 +7431172 waslock = 0 +7431172 512 512 +~~~ +~~~ +7431176 512 1536 +~~~ +~~~ +7431178 512 1024 +7431179 homeCount = 135 +7431179 waitCount = 69 +7431180 ripCount = 55 +7431180 locktype1 = 2 +7431181 locktype2 = 9 +7431181 locktype3 = 7 +7431181 goalCount = 9 +7431182 goalTotal = 49 +7431182 otherCount = 68 +~~~ +~~~ +7431273 DOWN 10 +7431273 0 1024 +~~~ +~~~ +~~~ +~~~ +7431299 homeCount = 135 +7431300 waitCount = 69 +7431300 ripCount = 55 +7431301 locktype1 = 2 +7431301 locktype2 = 9 +7431302 locktype3 = 7 +7431302 goalCount = 9 +7431303 goalTotal = 49 +7431303 otherCount = 68 +~~~ +7431350 UP 10 +7431350 waslock = 0 +7431350 512 1024 +7431373 DOWN 10 +7431373 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +7431399 homeCount = 135 +7431399 waitCount = 69 +7431400 ripCount = 55 +7431400 locktype1 = 2 +7431401 locktype2 = 9 +7431401 locktype3 = 7 +7431402 goalCount = 9 +7431402 goalTotal = 49 +7431403 otherCount = 68 +~~~ +7433644 UP 11 +7433644 1024 1024 +7435685 DOWN 11 +7435685 0 1024 +7435694 UP 11 +7435694 1024 1024 +7435696 DOWN 11 +7435696 0 1024 +7435712 UP 11 +7435712 1024 1024 +7435877 DOWN 11 +7435877 0 1024 +7435902 UP 11 +7435902 1024 1024 +7436645 BEEP1 +7436645 BEEP2 +~~~ +~~~ +~~~ +7436666 1024 33555456 +~~~ +7436816 1024 1024 +7444254 DOWN 11 +7444254 0 1024 +~~~ +~~~ +7444275 0 0 +~~~ +~~~ +7444277 0 1 +~~~ +~~~ +7444279 0 3 +~~~ +~~~ +7444281 0 7 +~~~ +~~~ +7444283 0 15 +~~~ +~~~ +7444285 0 31 +~~~ +~~~ +7444286 0 63 +~~~ +~~~ +7444288 0 127 +~~~ +~~~ +7444290 0 255 +7444291 homeCount = 135 +7444292 waitCount = 69 +7444292 ripCount = 56 +7444293 locktype1 = 2 +7444293 locktype2 = 9 +7444294 locktype3 = 7 +7444315 goalCount = 9 +7444315 goalTotal = 49 +7444316 otherCount = 68 +~~~ +7444317 CURRENTGOAL IS [7] +~~~ +7444336 UP 11 +7444336 1024 255 +7446175 DOWN 11 +7446175 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7446211 homeCount = 135 +7446212 waitCount = 69 +7446212 ripCount = 56 +7446213 locktype1 = 2 +7446213 locktype2 = 9 +7446214 locktype3 = 7 +7446214 goalCount = 9 +7446215 goalTotal = 49 +7446215 otherCount = 68 +~~~ +7446216 CURRENTGOAL IS [7] +~~~ +7448886 UP 7 +7448886 64 255 +~~~ +~~~ +7448911 outer reward +~~~ +7448911 64 4194559 +~~~ +~~~ +7448916 outerreps = 8 +~~~ +~~~ +7449078 DOWN 7 +7449078 0 4194559 +~~~ +~~~ +7449097 0 4194558 +~~~ +~~~ +7449099 0 4194556 +~~~ +~~~ +7449100 0 4194552 +~~~ +~~~ +7449102 0 4194544 +~~~ +~~~ +7449104 0 4194528 +~~~ +~~~ +7449106 0 4194496 +~~~ +~~~ +7449108 0 4194432 +~~~ +~~~ +7449110 0 4194304 +~~~ +~~~ +7449111 0 4194816 +7449112 homeCount = 135 +7449113 waitCount = 69 +7449113 ripCount = 56 +7449134 locktype1 = 2 +7449135 locktype2 = 9 +7449135 locktype3 = 7 +7449136 goalCount = 0 +7449136 goalTotal = 50 +7449137 otherCount = 68 +~~~ +7449142 64 4194816 +7449361 64 512 +7449716 DOWN 7 +7449716 0 512 +7449737 64 512 +7450009 DOWN 7 +7450009 0 512 +7450016 64 512 +7460272 DOWN 7 +7460272 0 512 +7460347 64 512 +7460391 DOWN 7 +7460391 0 512 +7460925 64 512 +7460936 DOWN 7 +7460936 0 512 +7466038 UP 10 +7466038 waslock = 0 +7466038 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7466064 512 16777728 +~~~ +7466214 512 512 +7466234 DOWN 10 +7466234 0 512 +~~~ +~~~ +7466261 0 2560 +~~~ +~~~ +7466262 0 2048 +7466263 homeCount = 136 +7466264 waitCount = 69 +7466264 ripCount = 56 +7466265 locktype1 = 2 +7466265 locktype2 = 9 +7466266 locktype3 = 7 +7466266 goalCount = 0 +7466267 goalTotal = 50 +7466267 otherCount = 68 +~~~ +7466338 UP 10 +7466339 waslock = 0 +7466338 512 2048 +~~~ +7473072 DOWN 10 +7473072 0 2048 +~~~ +~~~ +~~~ +~~~ +7473098 homeCount = 136 +7473099 waitCount = 69 +7473099 ripCount = 56 +7473100 locktype1 = 2 +7473100 locktype2 = 9 +7473100 locktype3 = 7 +7473101 goalCount = 0 +7473101 goalTotal = 50 +7473102 otherCount = 68 +~~~ +7473122 UP 10 +7473122 waslock = 0 +7473122 512 2048 +~~~ +7473189 DOWN 10 +7473189 0 2048 +~~~ +~~~ +~~~ +~~~ +7473215 homeCount = 136 +7473216 waitCount = 69 +7473216 ripCount = 56 +7473217 locktype1 = 2 +7473217 locktype2 = 9 +7473218 locktype3 = 7 +7473218 goalCount = 0 +7473219 goalTotal = 50 +7473219 otherCount = 68 +~~~ +7473271 UP 10 +7473271 waslock = 0 +7473271 512 2048 +7473287 DOWN 10 +7473287 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +7473310 homeCount = 136 +7473310 waitCount = 69 +7473311 ripCount = 56 +7473311 locktype1 = 2 +7473312 locktype2 = 9 +7473312 locktype3 = 7 +7473313 goalCount = 0 +7473313 goalTotal = 50 +7473314 otherCount = 68 +~~~ +7475182 UP 12 +7475182 2048 2048 +7478357 DOWN 12 +7478357 0 2048 +7478404 UP 12 +7478404 2048 2048 +7478682 CLICK1 +7478682 CLICK2 +~~~ +~~~ +~~~ +7478704 2048 67110912 +~~~ +7478854 2048 2048 +7487545 DOWN 12 +7487545 0 2048 +~~~ +~~~ +7487563 0 0 +~~~ +~~~ +7487565 0 1 +~~~ +~~~ +7487567 0 3 +~~~ +~~~ +7487569 0 7 +~~~ +~~~ +7487571 0 15 +~~~ +~~~ +7487572 0 31 +~~~ +~~~ +7487574 0 63 +~~~ +~~~ +7487576 0 127 +~~~ +~~~ +7487578 0 255 +7487579 homeCount = 136 +7487579 waitCount = 70 +7487580 ripCount = 56 +7487580 locktype1 = 2 +7487581 locktype2 = 9 +7487581 locktype3 = 7 +7487602 goalCount = 0 +7487603 goalTotal = 50 +7487603 otherCount = 68 +~~~ +7487604 CURRENTGOAL IS [1] +~~~ +7487614 UP 12 +7487614 2048 255 +7487665 DOWN 12 +7487665 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7487702 homeCount = 136 +7487703 waitCount = 70 +7487703 ripCount = 56 +7487704 locktype1 = 2 +7487704 locktype2 = 9 +7487705 locktype3 = 7 +7487705 goalCount = 0 +7487706 goalTotal = 50 +7487706 otherCount = 68 +~~~ +7487707 CURRENTGOAL IS [1] +~~~ +7497495 UP 7 +7497495 64 255 +~~~ +~~~ +7497692 DOWN 7 +7497692 0 255 +~~~ +~~~ +7497716 0 254 +~~~ +~~~ +7497718 0 252 +~~~ +~~~ +7497719 0 248 +~~~ +~~~ +7497721 0 240 +~~~ +~~~ +7497723 0 224 +~~~ +~~~ +7497725 0 192 +~~~ +~~~ +7497727 0 128 +~~~ +~~~ +7497728 0 0 +~~~ +~~~ +7497730 0 512 +7497731 homeCount = 136 +7497732 waitCount = 70 +7497732 ripCount = 56 +7497733 locktype1 = 2 +7497733 locktype2 = 9 +7497754 locktype3 = 7 +7497754 goalCount = 0 +7497755 goalTotal = 50 +7497755 otherCount = 69 +~~~ +7497775 64 512 +7498876 DOWN 7 +7498876 0 512 +7498954 64 512 +7498988 DOWN 7 +7498988 0 512 +7503794 UP 10 +7503795 waslock = 0 +7503794 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7503825 512 16777728 +~~~ +7503975 512 512 +7504038 DOWN 10 +7504038 0 512 +~~~ +~~~ +7504058 0 2560 +~~~ +~~~ +7504060 0 2048 +7504061 homeCount = 137 +7504062 waitCount = 70 +7504062 ripCount = 56 +7504063 locktype1 = 2 +7504063 locktype2 = 9 +7504064 locktype3 = 7 +7504064 goalCount = 0 +7504065 goalTotal = 50 +7504065 otherCount = 69 +~~~ +7504073 UP 10 +7504073 waslock = 0 +7504073 512 2048 +~~~ +7509916 DOWN 10 +7509916 0 2048 +~~~ +~~~ +~~~ +~~~ +7509944 homeCount = 137 +7509945 waitCount = 70 +7509945 ripCount = 56 +7509946 locktype1 = 2 +7509946 locktype2 = 9 +7509947 locktype3 = 7 +7509947 goalCount = 0 +7509948 goalTotal = 50 +7509948 otherCount = 69 +~~~ +7509968 UP 10 +7509968 waslock = 0 +7509968 512 2048 +~~~ +7510017 DOWN 10 +7510017 0 2048 +~~~ +~~~ +~~~ +~~~ +7510044 homeCount = 137 +7510045 waitCount = 70 +7510045 ripCount = 56 +7510046 locktype1 = 2 +7510046 locktype2 = 9 +7510047 locktype3 = 7 +7510047 goalCount = 0 +7510048 goalTotal = 50 +7510048 otherCount = 69 +~~~ +7512207 UP 12 +7512207 2048 2048 +7515181 DOWN 12 +7515181 0 2048 +7515189 UP 12 +7515189 2048 2048 +7515191 DOWN 12 +7515191 0 2048 +7515212 UP 12 +7515212 2048 2048 +7518208 CLICK1 +7518208 CLICK2 +~~~ +~~~ +~~~ +7518231 2048 67110912 +~~~ +7518381 2048 2048 +7527917 DOWN 12 +7527917 0 2048 +~~~ +~~~ +7527940 0 0 +~~~ +~~~ +7527942 0 1 +~~~ +~~~ +7527944 0 3 +~~~ +~~~ +7527946 0 7 +~~~ +~~~ +7527948 0 15 +~~~ +~~~ +7527949 0 31 +~~~ +~~~ +7527951 0 63 +~~~ +~~~ +7527953 0 127 +~~~ +~~~ +7527955 0 255 +7527956 homeCount = 137 +7527956 waitCount = 71 +7527957 ripCount = 56 +7527957 locktype1 = 2 +7527958 locktype2 = 9 +7527958 locktype3 = 7 +7527979 goalCount = 0 +7527980 goalTotal = 50 +7527980 otherCount = 69 +~~~ +7527981 CURRENTGOAL IS [1] +~~~ +7535073 UP 7 +7535073 64 255 +~~~ +~~~ +7535887 DOWN 7 +7535887 0 255 +~~~ +~~~ +7535912 0 254 +~~~ +~~~ +7535914 0 252 +~~~ +~~~ +7535916 0 248 +~~~ +~~~ +7535917 0 240 +~~~ +~~~ +7535919 0 224 +~~~ +~~~ +7535921 0 192 +~~~ +~~~ +7535923 0 128 +~~~ +~~~ +7535925 0 0 +~~~ +~~~ +7535927 0 512 +7535928 homeCount = 137 +7535928 waitCount = 71 +7535929 ripCount = 56 +7535929 locktype1 = 2 +7535930 locktype2 = 9 +7535951 locktype3 = 7 +7535951 goalCount = 0 +7535952 goalTotal = 50 +7535952 otherCount = 70 +~~~ +7541930 UP 10 +7541931 waslock = 0 +7541930 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7541958 512 16777728 +~~~ +7542108 512 512 +7542121 DOWN 10 +7542121 0 512 +~~~ +~~~ +7542138 0 2560 +~~~ +~~~ +7542140 0 2048 +7542141 homeCount = 138 +7542142 waitCount = 71 +7542142 ripCount = 56 +7542143 locktype1 = 2 +7542143 locktype2 = 9 +7542144 locktype3 = 7 +7542144 goalCount = 0 +7542145 goalTotal = 50 +7542145 otherCount = 70 +~~~ +7542404 UP 10 +7542404 waslock = 0 +7542404 512 2048 +~~~ +7548488 DOWN 10 +7548488 0 2048 +~~~ +~~~ +~~~ +~~~ +7548516 homeCount = 138 +7548516 waitCount = 71 +7548517 ripCount = 56 +7548517 locktype1 = 2 +7548517 locktype2 = 9 +7548518 locktype3 = 7 +7548518 goalCount = 0 +7548519 goalTotal = 50 +7548519 otherCount = 70 +~~~ +7548548 UP 10 +7548549 waslock = 0 +7548548 512 2048 +~~~ +7548586 DOWN 10 +7548586 0 2048 +~~~ +~~~ +~~~ +~~~ +7548609 homeCount = 138 +7548609 waitCount = 71 +7548610 ripCount = 56 +7548610 locktype1 = 2 +7548611 locktype2 = 9 +7548611 locktype3 = 7 +7548612 goalCount = 0 +7548612 goalTotal = 50 +7548613 otherCount = 70 +~~~ +7550864 UP 12 +7550864 2048 2048 +7551269 DOWN 12 +7551269 0 2048 +7551469 LOCKOUT 3 +~~~ +7551491 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7551497 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7551703 UP 12 +7551703 2048 0 +7552563 DOWN 12 +7552563 0 0 +7556268 512 0 +7557015 0 0 +7557777 512 0 +7557804 0 0 +7570040 512 0 +7570455 0 0 +7570527 512 0 +7570550 0 0 +7576491 LOCKEND +~~~ +~~~ +~~~ +7576514 0 512 +7579140 UP 10 +7579140 waslock = 0 +7579140 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7579169 512 16777728 +~~~ +7579319 512 512 +7579898 DOWN 10 +7579898 0 512 +7579912 UP 10 +7579913 waslock = 0 +7579912 512 512 +~~~ +~~~ +7579932 512 1536 +~~~ +~~~ +7579934 512 1024 +7579935 homeCount = 139 +7579936 waitCount = 71 +7579936 ripCount = 56 +7579937 locktype1 = 2 +7579937 locktype2 = 9 +7579938 locktype3 = 8 +7579938 goalCount = 0 +7579939 goalTotal = 50 +7579939 otherCount = 70 +~~~ +~~~ +7589333 DOWN 10 +7589333 0 1024 +~~~ +~~~ +~~~ +~~~ +7589354 homeCount = 139 +7589354 waitCount = 71 +7589355 ripCount = 56 +7589355 locktype1 = 2 +7589356 locktype2 = 9 +7589356 locktype3 = 8 +7589357 goalCount = 0 +7589357 goalTotal = 50 +7589358 otherCount = 70 +~~~ +7589393 UP 10 +7589393 waslock = 0 +7589393 512 1024 +~~~ +7589430 DOWN 10 +7589430 0 1024 +~~~ +~~~ +~~~ +~~~ +7589457 homeCount = 139 +7589458 waitCount = 71 +7589458 ripCount = 56 +7589459 locktype1 = 2 +7589459 locktype2 = 9 +7589460 locktype3 = 8 +7589460 goalCount = 0 +7589461 goalTotal = 50 +7589461 otherCount = 70 +~~~ +7590928 UP 11 +7590928 1024 1024 +7592834 DOWN 11 +7592834 0 1024 +7592866 UP 11 +7592866 1024 1024 +7593816 DOWN 11 +7593816 0 1024 +7593925 UP 11 +7593925 1024 1024 +7593962 DOWN 11 +7593962 0 1024 +7594016 UP 11 +7594016 1024 1024 +7594027 DOWN 11 +7594027 0 1024 +7594053 UP 11 +7594053 1024 1024 +7596310 DOWN 11 +7596310 0 1024 +7596336 UP 11 +7596336 1024 1024 +7596428 BEEP1 +7596428 BEEP2 +~~~ +~~~ +~~~ +7596454 1024 33555456 +~~~ +7596604 1024 1024 +7604212 DOWN 11 +7604212 0 1024 +~~~ +~~~ +7604232 0 0 +~~~ +~~~ +7604234 0 1 +~~~ +~~~ +7604236 0 3 +~~~ +~~~ +7604238 0 7 +~~~ +~~~ +7604240 0 15 +~~~ +~~~ +7604241 0 31 +~~~ +~~~ +7604243 0 63 +~~~ +~~~ +7604245 0 127 +~~~ +7604246 UP 11 +7604246 1024 127 +~~~ +7604248 homeCount = 139 +7604249 waitCount = 71 +7604249 ripCount = 57 +7604250 locktype1 = 2 +7604250 locktype2 = 9 +7604271 locktype3 = 8 +7604272 goalCount = 0 +7604272 goalTotal = 50 +7604273 otherCount = 70 +~~~ +7604274 CURRENTGOAL IS [1] +~~~ +7604274 1024 255 +7607328 DOWN 11 +7607328 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7607363 homeCount = 139 +7607363 waitCount = 71 +7607364 ripCount = 57 +7607364 locktype1 = 2 +7607365 locktype2 = 9 +7607365 locktype3 = 8 +7607366 goalCount = 0 +7607366 goalTotal = 50 +7607367 otherCount = 70 +~~~ +7607368 CURRENTGOAL IS [1] +~~~ +7608096 UP 11 +7608096 1024 255 +7608235 DOWN 11 +7608235 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7608273 homeCount = 139 +7608273 waitCount = 71 +7608274 ripCount = 57 +7608274 locktype1 = 2 +7608275 locktype2 = 9 +7608275 locktype3 = 8 +7608276 goalCount = 0 +7608276 goalTotal = 50 +7608277 otherCount = 70 +~~~ +7608278 CURRENTGOAL IS [1] +~~~ +7613872 UP 5 +7613872 16 255 +~~~ +~~~ +7614090 DOWN 5 +7614090 0 255 +~~~ +~~~ +7614106 0 254 +~~~ +~~~ +7614108 0 252 +~~~ +~~~ +7614110 0 248 +~~~ +~~~ +7614112 0 240 +~~~ +~~~ +7614113 0 224 +~~~ +~~~ +7614115 0 192 +~~~ +~~~ +7614117 0 128 +~~~ +~~~ +7614119 0 0 +~~~ +~~~ +7614121 0 512 +7614122 homeCount = 139 +7614122 waitCount = 71 +7614123 ripCount = 57 +7614123 locktype1 = 2 +7614124 locktype2 = 9 +7614145 locktype3 = 8 +7614145 goalCount = 0 +7614146 goalTotal = 50 +7614146 otherCount = 71 +~~~ +7614151 16 512 +7614918 DOWN 5 +7614918 0 512 +7615042 16 512 +7615066 DOWN 5 +7615066 0 512 +7620314 UP 10 +7620314 waslock = 0 +7620314 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7620344 512 16777728 +~~~ +7620494 512 512 +7620617 DOWN 10 +7620617 0 512 +~~~ +~~~ +7620642 0 2560 +~~~ +~~~ +7620644 0 2048 +7620645 homeCount = 140 +7620646 waitCount = 71 +7620646 ripCount = 57 +7620647 locktype1 = 2 +7620647 locktype2 = 9 +7620648 locktype3 = 8 +7620648 goalCount = 0 +7620649 goalTotal = 50 +7620649 otherCount = 71 +~~~ +7620663 UP 10 +7620663 waslock = 0 +7620663 512 2048 +~~~ +7624814 DOWN 10 +7624814 0 2048 +~~~ +~~~ +~~~ +~~~ +7624833 homeCount = 140 +7624834 waitCount = 71 +7624834 ripCount = 57 +7624835 locktype1 = 2 +7624835 locktype2 = 9 +7624836 locktype3 = 8 +7624836 goalCount = 0 +7624837 goalTotal = 50 +7624837 otherCount = 71 +~~~ +7624849 UP 10 +7624849 waslock = 0 +7624849 512 2048 +~~~ +7624910 DOWN 10 +7624910 0 2048 +~~~ +~~~ +~~~ +~~~ +7624933 homeCount = 140 +7624934 waitCount = 71 +7624934 ripCount = 57 +7624935 locktype1 = 2 +7624935 locktype2 = 9 +7624936 locktype3 = 8 +7624936 goalCount = 0 +7624937 goalTotal = 50 +7624937 otherCount = 71 +~~~ +7627214 UP 12 +7627214 2048 2048 +7629405 DOWN 12 +7629405 0 2048 +7629414 UP 12 +7629414 2048 2048 +7630600 DOWN 12 +7630600 0 2048 +7630608 UP 12 +7630608 2048 2048 +7630610 DOWN 12 +7630610 0 2048 +7630629 UP 12 +7630629 2048 2048 +7631348 DOWN 12 +7631348 0 2048 +7631373 UP 12 +7631373 2048 2048 +7631500 DOWN 12 +7631500 0 2048 +7631549 UP 12 +7631549 2048 2048 +7632751 DOWN 12 +7632751 0 2048 +7632791 UP 12 +7632791 2048 2048 +7634214 CLICK1 +7634214 CLICK2 +~~~ +~~~ +~~~ +7634234 2048 67110912 +~~~ +7634384 2048 2048 +7641364 DOWN 12 +7641364 0 2048 +~~~ +~~~ +7641390 0 0 +~~~ +~~~ +7641392 0 1 +~~~ +~~~ +7641394 0 3 +~~~ +~~~ +7641396 0 7 +~~~ +~~~ +7641398 0 15 +~~~ +~~~ +7641400 0 31 +~~~ +~~~ +7641401 0 63 +~~~ +~~~ +7641403 UP 12 +7641403 2048 127 +~~~ +~~~ +7641405 2048 255 +7641406 homeCount = 140 +7641407 waitCount = 72 +7641407 ripCount = 57 +7641408 locktype1 = 2 +7641429 locktype2 = 9 +7641429 locktype3 = 8 +7641429 goalCount = 0 +7641430 goalTotal = 50 +7641430 otherCount = 71 +~~~ +7641432 CURRENTGOAL IS [1] +~~~ +7641495 DOWN 12 +7641495 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7641537 homeCount = 140 +7641537 waitCount = 72 +7641538 ripCount = 57 +7641538 locktype1 = 2 +7641539 locktype2 = 9 +7641539 locktype3 = 8 +7641540 goalCount = 0 +7641540 goalTotal = 50 +7641540 otherCount = 71 +~~~ +7641542 CURRENTGOAL IS [1] +~~~ +7646776 UP 2 +7646776 2 255 +~~~ +~~~ +7647342 DOWN 2 +7647342 0 255 +~~~ +~~~ +7647363 0 254 +~~~ +~~~ +7647365 0 252 +~~~ +~~~ +7647367 0 248 +~~~ +~~~ +7647368 0 240 +~~~ +~~~ +7647370 0 224 +~~~ +~~~ +7647372 0 192 +~~~ +~~~ +7647374 0 128 +~~~ +~~~ +7647376 0 0 +~~~ +~~~ +7647377 0 512 +7647378 homeCount = 140 +7647379 waitCount = 72 +7647379 ripCount = 57 +7647380 locktype1 = 2 +7647380 locktype2 = 9 +7647402 locktype3 = 8 +7647402 goalCount = 0 +7647403 goalTotal = 50 +7647403 otherCount = 72 +~~~ +7651568 UP 10 +7651569 waslock = 0 +7651568 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7651599 512 16777728 +~~~ +7651749 512 512 +7651776 DOWN 10 +7651776 0 512 +~~~ +~~~ +7651794 0 2560 +~~~ +~~~ +7651796 0 2048 +7651797 homeCount = 141 +7651797 waitCount = 72 +7651798 ripCount = 57 +7651798 locktype1 = 2 +7651799 locktype2 = 9 +7651799 locktype3 = 8 +7651800 goalCount = 0 +7651800 goalTotal = 50 +7651801 otherCount = 72 +~~~ +7651924 UP 10 +7651924 waslock = 0 +7651924 512 2048 +~~~ +7657794 DOWN 10 +7657794 0 2048 +~~~ +~~~ +~~~ +~~~ +7657816 homeCount = 141 +7657816 waitCount = 72 +7657817 ripCount = 57 +7657817 locktype1 = 2 +7657817 locktype2 = 9 +7657818 locktype3 = 8 +7657818 goalCount = 0 +7657819 goalTotal = 50 +7657819 otherCount = 72 +~~~ +7657839 UP 10 +7657839 waslock = 0 +7657839 512 2048 +~~~ +7657896 DOWN 10 +7657896 0 2048 +~~~ +~~~ +~~~ +~~~ +7657929 homeCount = 141 +7657929 waitCount = 72 +7657930 ripCount = 57 +7657930 locktype1 = 2 +7657931 locktype2 = 9 +7657931 locktype3 = 8 +7657932 goalCount = 0 +7657932 goalTotal = 50 +7657933 otherCount = 72 +~~~ +7657955 UP 10 +7657956 waslock = 0 +7657955 512 2048 +~~~ +7658197 DOWN 10 +7658197 0 2048 +~~~ +~~~ +~~~ +~~~ +7658232 homeCount = 141 +7658232 waitCount = 72 +7658233 ripCount = 57 +7658233 locktype1 = 2 +7658234 locktype2 = 9 +7658234 locktype3 = 8 +7658235 goalCount = 0 +7658235 goalTotal = 50 +7658235 otherCount = 72 +~~~ +7658246 UP 10 +7658246 waslock = 0 +7658246 512 2048 +~~~ +7659679 DOWN 10 +7659679 0 2048 +~~~ +~~~ +~~~ +~~~ +7659709 homeCount = 141 +7659710 waitCount = 72 +7659710 ripCount = 57 +7659711 locktype1 = 2 +7659711 locktype2 = 9 +7659712 locktype3 = 8 +7659712 goalCount = 0 +7659712 goalTotal = 50 +7659713 otherCount = 72 +~~~ +7661563 UP 12 +7661563 2048 2048 +7662992 DOWN 12 +7662992 0 2048 +7663010 UP 12 +7663010 2048 2048 +7665836 DOWN 12 +7665836 0 2048 +7665848 UP 12 +7665848 2048 2048 +7667063 CLICK1 +7667063 CLICK2 +~~~ +~~~ +~~~ +7667083 2048 67110912 +~~~ +7667233 2048 2048 +7673720 DOWN 12 +7673720 0 2048 +~~~ +~~~ +7673742 0 0 +~~~ +~~~ +7673744 0 1 +~~~ +~~~ +7673746 0 3 +~~~ +~~~ +7673747 0 7 +~~~ +~~~ +7673749 0 15 +~~~ +~~~ +7673751 0 31 +~~~ +~~~ +7673753 0 63 +~~~ +~~~ +7673755 0 127 +~~~ +~~~ +7673757 0 255 +7673758 homeCount = 141 +7673758 waitCount = 73 +7673759 ripCount = 57 +7673759 locktype1 = 2 +7673760 locktype2 = 9 +7673760 locktype3 = 8 +7673781 goalCount = 0 +7673782 goalTotal = 50 +7673782 otherCount = 72 +~~~ +7673783 CURRENTGOAL IS [1] +~~~ +7701490 UP 6 +7701490 32 255 +~~~ +~~~ +7702442 DOWN 6 +7702442 0 255 +~~~ +~~~ +7702466 0 254 +~~~ +~~~ +7702468 0 252 +~~~ +~~~ +7702470 0 248 +~~~ +~~~ +7702472 0 240 +~~~ +~~~ +7702474 0 224 +~~~ +~~~ +7702476 0 192 +~~~ +~~~ +7702477 0 128 +~~~ +~~~ +7702479 0 0 +~~~ +~~~ +7702481 0 512 +7702482 homeCount = 141 +7702483 waitCount = 73 +7702483 ripCount = 57 +7702484 locktype1 = 2 +7702484 locktype2 = 9 +7702505 locktype3 = 8 +7702506 goalCount = 0 +7702506 goalTotal = 50 +7702507 otherCount = 73 +~~~ +7702548 32 512 +7702742 DOWN 6 +7702742 0 512 +7707698 UP 10 +7707698 waslock = 0 +7707698 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7707722 512 16777728 +~~~ +7707872 512 512 +7707990 DOWN 10 +7707990 0 512 +~~~ +~~~ +7708015 0 1536 +~~~ +~~~ +7708016 0 1024 +7708017 homeCount = 142 +7708018 waitCount = 73 +7708018 ripCount = 57 +7708019 locktype1 = 2 +7708019 locktype2 = 9 +7708020 locktype3 = 8 +7708020 goalCount = 0 +7708021 goalTotal = 50 +7708021 otherCount = 73 +~~~ +7708107 UP 10 +7708107 waslock = 0 +7708107 512 1024 +~~~ +7712341 DOWN 10 +7712341 0 1024 +~~~ +~~~ +~~~ +~~~ +7712370 homeCount = 142 +7712371 waitCount = 73 +7712371 ripCount = 57 +7712372 locktype1 = 2 +7712372 locktype2 = 9 +7712373 locktype3 = 8 +7712373 goalCount = 0 +7712374 goalTotal = 50 +7712374 otherCount = 73 +~~~ +7714949 UP 11 +7714949 1024 1024 +7715014 DOWN 11 +7715014 0 1024 +7715081 UP 11 +7715081 1024 1024 +7717142 DOWN 11 +7717142 0 1024 +7717158 UP 11 +7717158 1024 1024 +7718192 DOWN 11 +7718192 0 1024 +7718202 UP 11 +7718202 1024 1024 +7720449 BEEP1 +7720449 BEEP2 +~~~ +~~~ +~~~ +7720468 1024 33555456 +~~~ +7720618 1024 1024 +7720992 DOWN 11 +7720992 0 1024 +7721019 UP 11 +7721019 1024 1024 +~~~ +~~~ +7721117 1024 0 +~~~ +~~~ +7721119 1024 1 +~~~ +~~~ +7721121 1024 3 +~~~ +~~~ +7721123 1024 7 +~~~ +~~~ +7721124 1024 15 +~~~ +~~~ +7721126 1024 31 +~~~ +~~~ +7721128 1024 63 +~~~ +~~~ +7721130 1024 127 +~~~ +~~~ +7721132 1024 255 +7721133 homeCount = 142 +7721133 waitCount = 73 +7721134 ripCount = 58 +7721134 locktype1 = 2 +7721155 locktype2 = 9 +7721155 locktype3 = 8 +7721156 goalCount = 0 +7721156 goalTotal = 50 +7721157 otherCount = 73 +~~~ +7721158 CURRENTGOAL IS [1] +~~~ +7721158 DOWN 11 +7721158 0 255 +7721177 UP 11 +7721177 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7721207 homeCount = 142 +7721208 waitCount = 73 +7721208 ripCount = 58 +7721209 locktype1 = 2 +7721209 locktype2 = 9 +7721210 locktype3 = 8 +7721210 goalCount = 0 +7721211 goalTotal = 50 +7721211 otherCount = 73 +~~~ +7721213 CURRENTGOAL IS [1] +~~~ +7728036 DOWN 11 +7728036 0 255 +7728055 UP 11 +7728055 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7728075 homeCount = 142 +7728076 waitCount = 73 +7728076 ripCount = 58 +7728077 locktype1 = 2 +7728077 locktype2 = 9 +7728078 locktype3 = 8 +7728078 goalCount = 0 +7728079 goalTotal = 50 +7728079 otherCount = 73 +~~~ +7728080 CURRENTGOAL IS [1] +~~~ +7728150 DOWN 11 +7728150 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7728188 homeCount = 142 +7728189 waitCount = 73 +7728189 ripCount = 58 +7728190 locktype1 = 2 +7728190 locktype2 = 9 +7728191 locktype3 = 8 +7728191 goalCount = 0 +7728192 goalTotal = 50 +7728192 otherCount = 73 +~~~ +7728193 CURRENTGOAL IS [1] +~~~ +7732180 UP 8 +7732180 128 255 +~~~ +~~~ +7732779 DOWN 8 +7732779 0 255 +~~~ +~~~ +7732803 0 254 +~~~ +~~~ +7732805 0 252 +~~~ +~~~ +7732807 0 248 +~~~ +~~~ +7732809 0 240 +~~~ +~~~ +7732811 0 224 +~~~ +~~~ +7732812 0 192 +~~~ +~~~ +7732814 0 128 +~~~ +~~~ +7732816 0 0 +~~~ +~~~ +7732818 0 512 +7732819 homeCount = 142 +7732819 waitCount = 73 +7732820 ripCount = 58 +7732820 locktype1 = 2 +7732821 locktype2 = 9 +7732842 locktype3 = 8 +7732842 goalCount = 0 +7732843 goalTotal = 50 +7732843 otherCount = 74 +~~~ +7738334 UP 10 +7738334 waslock = 0 +7738334 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7738360 512 16777728 +~~~ +7738509 512 512 +7743306 DOWN 10 +7743306 0 512 +~~~ +~~~ +7743322 0 1536 +~~~ +~~~ +7743324 0 1024 +7743325 homeCount = 143 +7743326 waitCount = 73 +7743326 ripCount = 58 +7743327 locktype1 = 2 +7743327 locktype2 = 9 +7743328 locktype3 = 8 +7743328 goalCount = 0 +7743329 goalTotal = 50 +7743329 otherCount = 74 +~~~ +7743362 UP 10 +7743363 waslock = 0 +7743362 512 1024 +~~~ +7743405 DOWN 10 +7743405 0 1024 +~~~ +~~~ +~~~ +~~~ +7743418 homeCount = 143 +7743418 waitCount = 73 +7743419 ripCount = 58 +7743419 locktype1 = 2 +7743419 locktype2 = 9 +7743420 locktype3 = 8 +7743420 goalCount = 0 +7743421 goalTotal = 50 +7743421 otherCount = 74 +~~~ +7745977 UP 11 +7745977 1024 1024 +7748173 DOWN 11 +7748173 0 1024 +7748196 UP 11 +7748196 1024 1024 +7748905 DOWN 11 +7748905 0 1024 +7748925 UP 11 +7748925 1024 1024 +7748966 DOWN 11 +7748966 0 1024 +7748995 UP 11 +7748995 1024 1024 +7749281 DOWN 11 +7749281 0 1024 +7749328 UP 11 +7749328 1024 1024 +7749977 BEEP1 +7749977 BEEP2 +~~~ +~~~ +~~~ +7750008 1024 33555456 +~~~ +7750158 1024 1024 +7750253 DOWN 11 +7750253 0 1024 +7750272 UP 11 +7750272 1024 1024 +7750402 DOWN 11 +7750402 0 1024 +7750430 UP 11 +7750430 1024 1024 +~~~ +~~~ +7750674 1024 0 +~~~ +~~~ +7750675 1024 1 +~~~ +~~~ +7750677 1024 3 +~~~ +~~~ +7750679 1024 7 +~~~ +~~~ +7750681 1024 15 +~~~ +~~~ +7750683 1024 31 +~~~ +~~~ +7750685 1024 63 +~~~ +~~~ +7750686 1024 127 +~~~ +~~~ +7750688 1024 255 +7750689 homeCount = 143 +7750690 waitCount = 73 +7750690 ripCount = 59 +7750691 locktype1 = 2 +7750711 locktype2 = 9 +7750712 locktype3 = 8 +7750712 goalCount = 0 +7750713 goalTotal = 50 +7750713 otherCount = 74 +~~~ +7750714 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7750742 homeCount = 143 +7750743 waitCount = 73 +7750743 ripCount = 59 +7750744 locktype1 = 2 +7750744 locktype2 = 9 +7750744 locktype3 = 8 +7750745 goalCount = 0 +7750745 goalTotal = 50 +7750746 otherCount = 74 +~~~ +7750747 CURRENTGOAL IS [1] +~~~ +7757155 DOWN 11 +7757155 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7757187 UP 11 +7757187 1024 255 +~~~ +~~~ +~~~ +7757191 homeCount = 143 +7757191 waitCount = 73 +7757192 ripCount = 59 +7757192 locktype1 = 2 +7757193 locktype2 = 9 +7757193 locktype3 = 8 +7757194 goalCount = 0 +7757194 goalTotal = 50 +7757195 otherCount = 74 +~~~ +7757196 CURRENTGOAL IS [1] +~~~ +7757216 DOWN 11 +7757216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7757258 homeCount = 143 +7757259 waitCount = 73 +7757259 ripCount = 59 +7757260 locktype1 = 2 +7757260 locktype2 = 9 +7757261 locktype3 = 8 +7757261 goalCount = 0 +7757262 goalTotal = 50 +7757262 otherCount = 74 +~~~ +7757263 CURRENTGOAL IS [1] +~~~ +7757290 UP 11 +7757290 1024 255 +7758580 DOWN 11 +7758580 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +7758604 UP 11 +7758604 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758616 homeCount = 143 +7758617 waitCount = 73 +7758617 ripCount = 59 +7758618 locktype1 = 2 +7758618 locktype2 = 9 +7758619 locktype3 = 8 +7758619 goalCount = 0 +7758620 goalTotal = 50 +7758620 otherCount = 74 +~~~ +7758621 CURRENTGOAL IS [1] +~~~ +7758633 DOWN 11 +7758633 0 255 +7758654 UP 11 +7758654 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758676 homeCount = 143 +7758677 waitCount = 73 +7758677 ripCount = 59 +7758678 locktype1 = 2 +7758678 locktype2 = 9 +7758679 locktype3 = 8 +7758679 goalCount = 0 +7758680 goalTotal = 50 +7758680 otherCount = 74 +~~~ +7758681 CURRENTGOAL IS [1] +~~~ +7758900 DOWN 11 +7758900 0 255 +7758918 UP 11 +7758918 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758939 homeCount = 143 +7758939 waitCount = 73 +7758940 ripCount = 59 +7758940 locktype1 = 2 +7758941 locktype2 = 9 +7758941 locktype3 = 8 +7758942 goalCount = 0 +7758942 goalTotal = 50 +7758943 otherCount = 74 +~~~ +7758944 CURRENTGOAL IS [1] +~~~ +7758953 DOWN 11 +7758953 0 255 +7758981 UP 11 +7758981 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7759001 homeCount = 143 +7759001 waitCount = 73 +7759002 ripCount = 59 +7759002 locktype1 = 2 +7759003 locktype2 = 9 +7759003 locktype3 = 8 +7759004 goalCount = 0 +7759004 goalTotal = 50 +7759005 otherCount = 74 +~~~ +7759006 CURRENTGOAL IS [1] +~~~ +7760612 DOWN 11 +7760612 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7760649 homeCount = 143 +7760649 waitCount = 73 +7760650 ripCount = 59 +7760650 locktype1 = 2 +7760651 locktype2 = 9 +7760651 locktype3 = 8 +7760652 goalCount = 0 +7760652 goalTotal = 50 +7760653 otherCount = 74 +~~~ +7760654 CURRENTGOAL IS [1] +~~~ +7766970 UP 4 +7766970 8 255 +~~~ +~~~ +7767557 DOWN 4 +7767557 0 255 +~~~ +~~~ +7767576 0 254 +~~~ +~~~ +7767578 0 252 +~~~ +~~~ +7767579 0 248 +~~~ +~~~ +7767581 0 240 +~~~ +~~~ +7767583 0 224 +~~~ +~~~ +7767585 0 192 +~~~ +~~~ +7767587 0 128 +~~~ +~~~ +7767589 0 0 +~~~ +~~~ +7767591 0 512 +7767591 homeCount = 143 +7767592 waitCount = 73 +7767592 ripCount = 59 +7767593 locktype1 = 2 +7767593 locktype2 = 9 +7767615 locktype3 = 8 +7767615 goalCount = 0 +7767616 goalTotal = 50 +7767616 otherCount = 75 +~~~ +7772489 UP 10 +7772489 waslock = 0 +7772489 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7772523 512 16777728 +~~~ +7772673 512 512 +7772757 DOWN 10 +7772757 0 512 +~~~ +~~~ +7772776 0 1536 +~~~ +~~~ +7772778 0 1024 +7772779 homeCount = 144 +7772780 waitCount = 73 +7772780 ripCount = 59 +7772781 locktype1 = 2 +7772781 locktype2 = 9 +7772782 locktype3 = 8 +7772782 goalCount = 0 +7772783 goalTotal = 50 +7772783 otherCount = 75 +~~~ +7772786 UP 10 +7772786 waslock = 0 +7772786 512 1024 +~~~ +7776498 DOWN 10 +7776498 0 1024 +~~~ +~~~ +~~~ +~~~ +7776519 homeCount = 144 +7776520 waitCount = 73 +7776520 ripCount = 59 +7776521 locktype1 = 2 +7776521 locktype2 = 9 +7776522 locktype3 = 8 +7776522 goalCount = 0 +7776523 goalTotal = 50 +7776523 otherCount = 75 +~~~ +7778339 UP 11 +7778339 1024 1024 +7781339 BEEP1 +7781339 BEEP2 +~~~ +~~~ +~~~ +7781360 1024 33555456 +~~~ +7781510 1024 1024 +7790808 DOWN 11 +7790808 0 1024 +~~~ +~~~ +7790827 0 0 +~~~ +~~~ +7790829 0 1 +~~~ +~~~ +7790831 0 3 +~~~ +~~~ +7790833 0 7 +~~~ +~~~ +7790835 0 15 +~~~ +~~~ +7790836 0 31 +~~~ +~~~ +7790838 0 63 +~~~ +~~~ +7790840 0 127 +~~~ +~~~ +7790842 0 255 +7790843 homeCount = 144 +7790843 waitCount = 73 +7790844 ripCount = 60 +7790844 locktype1 = 2 +7790845 locktype2 = 9 +7790866 locktype3 = 8 +7790866 goalCount = 0 +7790867 goalTotal = 50 +7790867 otherCount = 75 +~~~ +7790868 CURRENTGOAL IS [1] +~~~ +7817653 UP 5 +7817653 16 255 +~~~ +~~~ +7817945 DOWN 5 +7817945 0 255 +~~~ +~~~ +7817966 0 254 +~~~ +~~~ +7817968 0 252 +~~~ +~~~ +7817970 0 248 +~~~ +~~~ +7817972 0 240 +~~~ +~~~ +7817974 0 224 +~~~ +~~~ +7817976 0 192 +~~~ +~~~ +7817977 0 128 +~~~ +~~~ +7817979 0 0 +~~~ +~~~ +7817981 0 512 +7817982 homeCount = 144 +7817983 waitCount = 73 +7817983 ripCount = 60 +7817984 locktype1 = 2 +7817984 locktype2 = 9 +7818005 locktype3 = 8 +7818005 goalCount = 0 +7818006 goalTotal = 50 +7818006 otherCount = 76 +~~~ +7818129 16 512 +7819084 DOWN 5 +7819084 0 512 +7819102 16 512 +7819229 DOWN 5 +7819229 0 512 +7819556 16 512 +7819594 DOWN 5 +7819594 0 512 +7824936 UP 10 +7824937 waslock = 0 +7824936 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7824966 512 16777728 +~~~ +7825116 512 512 +7825293 DOWN 10 +7825293 0 512 +~~~ +~~~ +7825317 0 1536 +~~~ +~~~ +7825319 0 1024 +7825320 homeCount = 145 +7825321 waitCount = 73 +7825321 ripCount = 60 +7825322 locktype1 = 2 +7825322 locktype2 = 9 +7825323 locktype3 = 8 +7825323 goalCount = 0 +7825324 goalTotal = 50 +7825324 otherCount = 76 +~~~ +7825341 UP 10 +7825341 waslock = 0 +7825341 512 1024 +~~~ +7829403 DOWN 10 +7829403 0 1024 +~~~ +~~~ +~~~ +~~~ +7829431 homeCount = 145 +7829431 waitCount = 73 +7829432 ripCount = 60 +7829432 locktype1 = 2 +7829433 locktype2 = 9 +7829433 locktype3 = 8 +7829434 goalCount = 0 +7829434 goalTotal = 50 +7829435 otherCount = 76 +~~~ +7829941 UP 10 +7829941 waslock = 0 +7829941 512 1024 +~~~ +7831848 DOWN 10 +7831848 0 1024 +~~~ +~~~ +~~~ +~~~ +7831870 homeCount = 145 +7831871 waitCount = 73 +7831871 ripCount = 60 +7831872 locktype1 = 2 +7831872 locktype2 = 9 +7831872 locktype3 = 8 +7831873 goalCount = 0 +7831873 goalTotal = 50 +7831874 otherCount = 76 +~~~ +7831894 UP 10 +7831894 waslock = 0 +7831894 512 1024 +~~~ +7831944 DOWN 10 +7831944 0 1024 +~~~ +~~~ +~~~ +~~~ +7831972 homeCount = 145 +7831972 waitCount = 73 +7831973 ripCount = 60 +7831973 locktype1 = 2 +7831974 locktype2 = 9 +7831974 locktype3 = 8 +7831975 goalCount = 0 +7831975 goalTotal = 50 +7831976 otherCount = 76 +~~~ +7835528 UP 11 +7835528 1024 1024 +7837151 DOWN 11 +7837151 0 1024 +7837163 UP 11 +7837163 1024 1024 +7837648 DOWN 11 +7837648 0 1024 +7837684 UP 11 +7837684 1024 1024 +7838242 DOWN 11 +7838242 0 1024 +7838271 UP 11 +7838271 1024 1024 +7840891 DOWN 11 +7840891 0 1024 +7840902 UP 11 +7840902 1024 1024 +7842529 BEEP1 +7842529 BEEP2 +~~~ +~~~ +~~~ +7842549 1024 33555456 +~~~ +7842699 1024 1024 +7849088 DOWN 11 +7849088 0 1024 +~~~ +~~~ +7849110 0 0 +~~~ +~~~ +7849112 0 1 +~~~ +~~~ +7849114 0 3 +~~~ +~~~ +7849116 0 7 +~~~ +~~~ +7849118 0 15 +~~~ +~~~ +7849119 0 31 +~~~ +~~~ +7849121 0 63 +~~~ +~~~ +7849123 0 127 +~~~ +~~~ +7849125 0 255 +7849126 homeCount = 145 +7849126 waitCount = 73 +7849127 ripCount = 61 +7849127 locktype1 = 2 +7849128 locktype2 = 9 +7849128 locktype3 = 8 +7849149 goalCount = 0 +7849150 goalTotal = 50 +7849150 otherCount = 76 +~~~ +7849151 CURRENTGOAL IS [1] +~~~ +7855904 UP 1 +7855904 1 255 +~~~ +~~~ +7855933 outer reward +~~~ +7855933 1 65791 +~~~ +~~~ +7856383 1 255 +7864549 DOWN 1 +7864549 0 255 +~~~ +~~~ +7864571 0 254 +~~~ +~~~ +7864573 0 252 +~~~ +~~~ +7864574 0 248 +~~~ +~~~ +7864576 0 240 +~~~ +~~~ +7864578 0 224 +~~~ +~~~ +7864580 0 192 +~~~ +~~~ +7864582 0 128 +~~~ +~~~ +7864583 0 0 +~~~ +~~~ +7864585 0 512 +7864586 homeCount = 145 +7864587 waitCount = 73 +7864587 ripCount = 61 +7864588 locktype1 = 2 +7864588 locktype2 = 9 +7864610 locktype3 = 8 +7864610 goalCount = 1 +7864610 goalTotal = 51 +7864611 otherCount = 76 +~~~ +7868827 UP 10 +7868828 waslock = 0 +7868827 512 512 +~~~ +~~~ +7868851 DOWN 10 +7868851 0 512 +~~~ +~~~ +~~~ +7868854 0 16777728 +~~~ +7868866 UP 10 +7868866 waslock = 0 +7868866 512 16777728 +~~~ +~~~ +7868870 512 16779776 +~~~ +~~~ +7868872 512 16779264 +7868873 homeCount = 146 +7868873 waitCount = 73 +7868874 ripCount = 61 +7868874 locktype1 = 2 +7868875 locktype2 = 9 +7868875 locktype3 = 8 +7868876 goalCount = 1 +7868876 goalTotal = 51 +7868897 otherCount = 76 +~~~ +~~~ +7869004 512 2048 +7872166 DOWN 10 +7872166 0 2048 +~~~ +~~~ +~~~ +7872190 UP 10 +7872191 waslock = 0 +7872190 512 2048 +~~~ +7872192 homeCount = 146 +7872193 waitCount = 73 +7872193 ripCount = 61 +7872194 locktype1 = 2 +7872194 locktype2 = 9 +7872195 locktype3 = 8 +7872195 goalCount = 1 +7872196 goalTotal = 51 +7872196 otherCount = 76 +~~~ +~~~ +7872268 DOWN 10 +7872268 0 2048 +~~~ +~~~ +~~~ +~~~ +7872293 homeCount = 146 +7872293 waitCount = 73 +7872294 ripCount = 61 +7872294 locktype1 = 2 +7872295 locktype2 = 9 +7872295 locktype3 = 8 +7872296 goalCount = 1 +7872296 goalTotal = 51 +7872297 otherCount = 76 +~~~ +7872341 UP 10 +7872341 waslock = 0 +7872341 512 2048 +~~~ +7872384 DOWN 10 +7872384 0 2048 +~~~ +~~~ +~~~ +~~~ +7872419 homeCount = 146 +7872419 waitCount = 73 +7872420 ripCount = 61 +7872420 locktype1 = 2 +7872421 locktype2 = 9 +7872421 locktype3 = 8 +7872421 goalCount = 1 +7872422 goalTotal = 51 +7872422 otherCount = 76 +~~~ +7874412 UP 12 +7874412 2048 2048 +7877331 DOWN 12 +7877331 0 2048 +7877347 UP 12 +7877347 2048 2048 +7877792 DOWN 12 +7877792 0 2048 +7877797 UP 12 +7877796 2048 2048 +7877912 CLICK1 +7877912 CLICK2 +~~~ +~~~ +~~~ +7877935 2048 67110912 +~~~ +7878085 2048 2048 +7885038 DOWN 12 +7885038 0 2048 +~~~ +~~~ +7885060 0 0 +~~~ +~~~ +7885062 0 1 +~~~ +~~~ +7885064 0 3 +~~~ +~~~ +7885065 0 7 +~~~ +~~~ +7885067 0 15 +~~~ +~~~ +7885069 0 31 +~~~ +~~~ +7885071 0 63 +~~~ +~~~ +7885073 0 127 +~~~ +~~~ +7885074 0 255 +7885075 homeCount = 146 +7885076 waitCount = 74 +7885077 ripCount = 61 +7885077 locktype1 = 2 +7885078 locktype2 = 9 +7885099 locktype3 = 8 +7885099 goalCount = 1 +7885100 goalTotal = 51 +7885100 otherCount = 76 +~~~ +7885101 CURRENTGOAL IS [1] +~~~ +7894917 UP 8 +7894917 128 255 +~~~ +~~~ +7895450 DOWN 8 +7895450 0 255 +~~~ +~~~ +7895471 0 254 +~~~ +~~~ +7895473 0 252 +~~~ +~~~ +7895474 0 248 +~~~ +~~~ +7895476 0 240 +~~~ +~~~ +7895478 0 224 +~~~ +~~~ +7895480 0 192 +~~~ +~~~ +7895482 0 128 +~~~ +~~~ +7895484 0 0 +~~~ +~~~ +7895485 0 512 +7895486 homeCount = 146 +7895487 waitCount = 74 +7895487 ripCount = 61 +7895488 locktype1 = 2 +7895488 locktype2 = 9 +7895510 locktype3 = 8 +7895510 goalCount = 1 +7895511 goalTotal = 51 +7895511 otherCount = 77 +~~~ +7895776 128 512 +7895968 DOWN 8 +7895968 0 512 +7896139 128 512 +7896189 DOWN 8 +7896189 0 512 +7900458 UP 10 +7900458 waslock = 0 +7900458 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7900487 512 16777728 +~~~ +7900637 512 512 +7900779 DOWN 10 +7900779 0 512 +~~~ +~~~ +7900802 0 2560 +~~~ +~~~ +7900804 0 2048 +7900805 homeCount = 147 +7900805 waitCount = 74 +7900806 ripCount = 61 +7900806 locktype1 = 2 +7900807 locktype2 = 9 +7900807 locktype3 = 8 +7900808 goalCount = 1 +7900808 goalTotal = 51 +7900809 otherCount = 77 +~~~ +7900813 UP 10 +7900814 waslock = 0 +7900813 512 2048 +~~~ +7906111 DOWN 10 +7906111 0 2048 +~~~ +~~~ +~~~ +~~~ +7906135 homeCount = 147 +7906135 waitCount = 74 +7906136 ripCount = 61 +7906136 locktype1 = 2 +7906137 locktype2 = 9 +7906137 locktype3 = 8 +7906137 goalCount = 1 +7906138 goalTotal = 51 +7906138 otherCount = 77 +~~~ +7906159 UP 10 +7906159 waslock = 0 +7906159 512 2048 +~~~ +7906195 DOWN 10 +7906195 0 2048 +~~~ +~~~ +~~~ +~~~ +7906236 homeCount = 147 +7906236 waitCount = 74 +7906237 ripCount = 61 +7906237 locktype1 = 2 +7906238 locktype2 = 9 +7906238 locktype3 = 8 +7906239 goalCount = 1 +7906239 goalTotal = 51 +7906240 otherCount = 77 +~~~ +7908017 UP 12 +7908017 2048 2048 +7911017 CLICK1 +7911017 CLICK2 +~~~ +~~~ +~~~ +7911043 2048 67110912 +~~~ +7911193 2048 2048 +7911194 DOWN 12 +7911194 0 2048 +7911200 UP 12 +7911200 2048 2048 +~~~ +~~~ +7911226 2048 0 +~~~ +~~~ +7911228 2048 1 +~~~ +~~~ +7911230 2048 3 +~~~ +~~~ +7911232 2048 7 +~~~ +~~~ +7911233 2048 15 +~~~ +~~~ +7911235 2048 31 +~~~ +~~~ +7911237 2048 63 +~~~ +~~~ +7911239 2048 127 +~~~ +~~~ +7911241 2048 255 +7911242 homeCount = 147 +7911242 waitCount = 75 +7911243 ripCount = 61 +7911243 locktype1 = 2 +7911264 locktype2 = 9 +7911265 locktype3 = 8 +7911265 goalCount = 1 +7911265 goalTotal = 51 +7911266 otherCount = 77 +~~~ +7911267 CURRENTGOAL IS [1] +~~~ +7911361 DOWN 12 +7911361 0 255 +7911380 UP 12 +7911380 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7911397 homeCount = 147 +7911398 waitCount = 75 +7911399 ripCount = 61 +7911399 locktype1 = 2 +7911400 locktype2 = 9 +7911400 locktype3 = 8 +7911400 goalCount = 1 +7911401 goalTotal = 51 +7911401 otherCount = 77 +~~~ +7911403 CURRENTGOAL IS [1] +~~~ +7919722 DOWN 12 +7919722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7919758 homeCount = 147 +7919759 waitCount = 75 +7919759 ripCount = 61 +7919760 locktype1 = 2 +7919760 locktype2 = 9 +7919761 locktype3 = 8 +7919761 goalCount = 1 +7919762 goalTotal = 51 +7919762 otherCount = 77 +~~~ +7919763 CURRENTGOAL IS [1] +~~~ +7919799 UP 12 +7919799 2048 255 +7919845 DOWN 12 +7919845 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7919877 homeCount = 147 +7919877 waitCount = 75 +7919878 ripCount = 61 +7919878 locktype1 = 2 +7919879 locktype2 = 9 +7919879 locktype3 = 8 +7919880 goalCount = 1 +7919880 goalTotal = 51 +7919881 otherCount = 77 +~~~ +7919882 CURRENTGOAL IS [1] +~~~ +7928018 UP 3 +7928018 4 255 +~~~ +~~~ +7928533 DOWN 3 +7928533 0 255 +~~~ +~~~ +7928553 0 254 +~~~ +~~~ +7928555 0 252 +~~~ +~~~ +7928557 0 248 +~~~ +~~~ +7928558 0 240 +~~~ +~~~ +7928560 0 224 +~~~ +~~~ +7928562 0 192 +~~~ +~~~ +7928564 0 128 +~~~ +~~~ +7928566 0 0 +~~~ +~~~ +7928568 0 512 +7928569 homeCount = 147 +7928569 waitCount = 75 +7928570 ripCount = 61 +7928570 locktype1 = 2 +7928570 locktype2 = 9 +7928592 locktype3 = 8 +7928592 goalCount = 1 +7928593 goalTotal = 51 +7928593 otherCount = 78 +~~~ +7932281 UP 10 +7932281 waslock = 0 +7932281 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7932304 512 16777728 +~~~ +7932453 512 512 +7932498 DOWN 10 +7932498 0 512 +~~~ +7932518 UP 10 +7932518 waslock = 0 +7932518 512 512 +~~~ +~~~ +~~~ +7932520 512 2048 +7932521 homeCount = 148 +7932522 waitCount = 75 +7932522 ripCount = 61 +7932523 locktype1 = 2 +7932523 locktype2 = 9 +7932524 locktype3 = 8 +7932524 goalCount = 1 +7932525 goalTotal = 51 +7932546 otherCount = 78 +~~~ +~~~ +7933232 DOWN 10 +7933232 0 2048 +~~~ +~~~ +~~~ +~~~ +7933254 homeCount = 148 +7933255 waitCount = 75 +7933255 ripCount = 61 +7933256 locktype1 = 2 +7933256 locktype2 = 9 +7933256 locktype3 = 8 +7933257 goalCount = 1 +7933257 goalTotal = 51 +7933258 otherCount = 78 +~~~ +7933259 UP 10 +7933259 waslock = 0 +7933258 512 2048 +~~~ +7936681 DOWN 10 +7936681 0 2048 +~~~ +~~~ +~~~ +~~~ +7936705 homeCount = 148 +7936705 waitCount = 75 +7936706 ripCount = 61 +7936706 locktype1 = 2 +7936706 locktype2 = 9 +7936707 locktype3 = 8 +7936707 goalCount = 1 +7936708 goalTotal = 51 +7936708 otherCount = 78 +~~~ +7938394 UP 12 +7938394 2048 2048 +7941781 DOWN 12 +7941781 0 2048 +7941837 UP 12 +7941837 2048 2048 +7941956 DOWN 12 +7941956 0 2048 +7941983 UP 12 +7941983 2048 2048 +7943894 CLICK1 +7943894 CLICK2 +~~~ +~~~ +~~~ +7943913 2048 67110912 +~~~ +7944063 2048 2048 +7950204 DOWN 12 +7950204 0 2048 +~~~ +~~~ +7950231 0 0 +~~~ +~~~ +7950233 0 1 +~~~ +~~~ +7950235 0 3 +~~~ +~~~ +7950237 0 7 +~~~ +~~~ +7950238 0 15 +~~~ +~~~ +7950240 0 31 +~~~ +~~~ +7950242 0 63 +~~~ +~~~ +7950244 0 127 +~~~ +~~~ +7950246 0 255 +7950247 homeCount = 148 +7950247 waitCount = 76 +7950248 ripCount = 61 +7950248 locktype1 = 2 +7950249 locktype2 = 9 +7950249 locktype3 = 8 +7950270 goalCount = 1 +7950271 goalTotal = 51 +7950271 otherCount = 78 +~~~ +7950272 CURRENTGOAL IS [1] +~~~ +7956075 UP 1 +7956075 1 255 +~~~ +~~~ +7956097 outer reward +~~~ +7956097 1 65791 +~~~ +~~~ +7956547 1 255 +7965194 DOWN 1 +7965194 0 255 +~~~ +~~~ +7965214 0 254 +~~~ +~~~ +7965216 0 252 +~~~ +~~~ +7965217 0 248 +~~~ +~~~ +7965219 0 240 +~~~ +~~~ +7965221 0 224 +~~~ +~~~ +7965223 0 192 +~~~ +~~~ +7965225 0 128 +~~~ +~~~ +7965226 0 0 +~~~ +~~~ +7965228 0 512 +7965229 homeCount = 148 +7965230 waitCount = 76 +7965230 ripCount = 61 +7965231 locktype1 = 2 +7965231 locktype2 = 9 +7965252 locktype3 = 8 +7965253 goalCount = 2 +7965253 goalTotal = 52 +7965254 otherCount = 78 +~~~ +7965254 1 512 +7965322 DOWN 1 +7965322 0 512 +7965364 1 512 +7969410 DOWN 1 +7969410 0 512 +7973544 UP 10 +7973544 waslock = 0 +7973543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7973568 512 16777728 +~~~ +7973718 512 512 +7978713 DOWN 10 +7978713 0 512 +~~~ +~~~ +7978733 0 1536 +~~~ +~~~ +7978735 0 1024 +7978736 homeCount = 149 +7978736 waitCount = 76 +7978737 ripCount = 61 +7978737 locktype1 = 2 +7978738 locktype2 = 9 +7978738 locktype3 = 8 +7978739 goalCount = 2 +7978739 goalTotal = 52 +7978740 otherCount = 78 +~~~ +7978779 UP 10 +7978779 waslock = 0 +7978779 512 1024 +~~~ +7978830 DOWN 10 +7978830 0 1024 +~~~ +~~~ +~~~ +~~~ +7978858 homeCount = 149 +7978859 waitCount = 76 +7978859 ripCount = 61 +7978860 locktype1 = 2 +7978860 locktype2 = 9 +7978861 locktype3 = 8 +7978861 goalCount = 2 +7978862 goalTotal = 52 +7978862 otherCount = 78 +~~~ +7980517 UP 11 +7980517 1024 1024 +7983057 DOWN 11 +7983057 0 1024 +7983112 UP 11 +7983112 1024 1024 +7984017 BEEP1 +7984017 BEEP2 +~~~ +~~~ +~~~ +7984035 1024 33555456 +~~~ +7984185 1024 1024 +7992797 DOWN 11 +7992797 0 1024 +~~~ +~~~ +7992824 0 0 +~~~ +7992825 UP 11 +7992825 1024 0 +~~~ +~~~ +7992827 1024 1 +~~~ +~~~ +7992829 1024 3 +~~~ +7992830 1024 7 +~~~ +~~~ +7992831 1024 15 +~~~ +~~~ +7992833 1024 31 +~~~ +~~~ +7992835 1024 63 +~~~ +~~~ +7992837 1024 127 +~~~ +~~~ +7992838 1024 255 +7992840 homeCount = 149 +7992861 waitCount = 76 +7992861 ripCount = 62 +7992862 locktype1 = 2 +7992862 locktype2 = 9 +7992863 locktype3 = 8 +7992863 goalCount = 2 +7992864 goalTotal = 52 +7992864 otherCount = 78 +~~~ +7992865 CURRENTGOAL IS [1] +~~~ +7994733 DOWN 11 +7994733 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7994771 homeCount = 149 +7994772 waitCount = 76 +7994772 ripCount = 62 +7994773 locktype1 = 2 +7994773 locktype2 = 9 +7994774 locktype3 = 8 +7994774 goalCount = 2 +7994775 goalTotal = 52 +7994775 otherCount = 78 +~~~ +7994776 CURRENTGOAL IS [1] +~~~ +7994783 UP 11 +7994783 1024 255 +7994819 DOWN 11 +7994819 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7994853 homeCount = 149 +7994853 waitCount = 76 +7994854 ripCount = 62 +7994854 locktype1 = 2 +7994855 locktype2 = 9 +7994855 locktype3 = 8 +7994856 goalCount = 2 +7994856 goalTotal = 52 +7994856 otherCount = 78 +~~~ +7994858 CURRENTGOAL IS [1] +~~~ +7999561 UP 1 +7999561 1 255 +~~~ +~~~ +7999580 outer reward +~~~ +7999581 1 65791 +~~~ +~~~ +7999876 DOWN 1 +7999876 0 65791 +7999895 1 65791 +~~~ +~~~ +7999897 1 65790 +~~~ +~~~ +7999899 1 65788 +~~~ +~~~ +7999901 1 65784 +~~~ +~~~ +7999903 1 65776 +~~~ +~~~ +7999905 1 65760 +~~~ +~~~ +7999907 1 65728 +~~~ +~~~ +7999908 1 65664 +~~~ +~~~ +7999910 1 65536 +~~~ +~~~ +7999912 1 66048 +7999913 homeCount = 149 +7999914 waitCount = 76 +7999914 ripCount = 62 +7999915 locktype1 = 2 +7999935 locktype2 = 9 +7999936 locktype3 = 8 +7999936 goalCount = 3 +7999937 goalTotal = 53 +7999937 otherCount = 78 +~~~ +8000030 1 512 +8010845 DOWN 1 +8010845 0 512 +8010907 1 512 +8010958 DOWN 1 +8010958 0 512 +8011043 1 512 +8011084 DOWN 1 +8011084 0 512 +8015421 UP 10 +8015421 waslock = 0 +8015421 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +8015455 512 16777728 +~~~ +8015605 512 512 +8018818 DOWN 10 +8018818 0 512 +~~~ +~~~ +8018839 0 2560 +~~~ +~~~ +8018841 0 2048 +8018842 homeCount = 150 +8018843 waitCount = 76 +8018843 ripCount = 62 +8018844 locktype1 = 2 +8018844 locktype2 = 9 +8018845 locktype3 = 8 +8018845 goalCount = 3 +8018846 goalTotal = 53 +8018846 otherCount = 78 +~~~ +8018847 UP 10 +8018867 waslock = 0 +8018847 512 2048 +~~~ +8018914 DOWN 10 +8018913 0 2048 +~~~ +~~~ +~~~ +~~~ +8018945 homeCount = 150 +8018945 waitCount = 76 +8018946 ripCount = 62 +8018946 locktype1 = 2 +8018946 locktype2 = 9 +8018947 locktype3 = 8 +8018947 goalCount = 3 +8018948 goalTotal = 53 +8018948 otherCount = 78 +~~~ +8020546 UP 12 +8020546 2048 2048 +8023546 CLICK1 +8023546 CLICK2 +~~~ +~~~ +~~~ +8023571 2048 67110912 +~~~ +8023721 2048 2048 +8031115 DOWN 12 +8031115 0 2048 +~~~ +~~~ +8031138 0 0 +~~~ +8031140 UP 12 +8031140 2048 0 +~~~ +~~~ +8031142 2048 1 +~~~ +~~~ +8031143 2048 3 +~~~ +8031144 2048 7 +~~~ +~~~ +8031146 2048 15 +~~~ +~~~ +8031148 2048 31 +~~~ +~~~ +8031149 2048 63 +~~~ +~~~ +8031151 2048 127 +~~~ +~~~ +8031153 2048 255 +8031154 homeCount = 150 +8031175 waitCount = 77 +8031176 ripCount = 62 +8031176 locktype1 = 2 +8031177 locktype2 = 9 +8031177 locktype3 = 8 +8031178 goalCount = 3 +8031178 goalTotal = 53 +8031179 otherCount = 78 +~~~ +8031180 CURRENTGOAL IS [1] +~~~ +8031198 DOWN 12 +8031198 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8031228 homeCount = 150 +8031228 waitCount = 77 +8031229 ripCount = 62 +8031229 locktype1 = 2 +8031230 locktype2 = 9 +8031230 locktype3 = 8 +8031231 goalCount = 3 +8031231 goalTotal = 53 +8031231 otherCount = 78 +~~~ +8031233 CURRENTGOAL IS [1] +~~~ +8031282 UP 12 +8031282 2048 255 +8032109 DOWN 12 +8032109 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8032146 homeCount = 150 +8032146 waitCount = 77 +8032147 ripCount = 62 +8032148 locktype1 = 2 +8032148 locktype2 = 9 +8032148 locktype3 = 8 +8032149 goalCount = 3 +8032149 goalTotal = 53 +8032150 otherCount = 78 +~~~ +8032151 CURRENTGOAL IS [1] +~~~ +8032154 UP 12 +8032154 2048 255 +8032202 DOWN 12 +8032202 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8032236 homeCount = 150 +8032236 waitCount = 77 +8032237 ripCount = 62 +8032237 locktype1 = 2 +8032238 locktype2 = 9 +8032238 locktype3 = 8 +8032239 goalCount = 3 +8032239 goalTotal = 53 +8032240 otherCount = 78 +~~~ +8032241 CURRENTGOAL IS [1] +~~~ +8035149 UP 1 +8035149 1 255 +~~~ +~~~ +8035173 outer reward +~~~ +8035174 1 65791 +~~~ +~~~ +8035421 DOWN 1 +8035421 0 65791 +~~~ +~~~ +8035442 0 65790 +~~~ +~~~ +8035444 0 65788 +~~~ +~~~ +8035445 0 65784 +~~~ +~~~ +8035447 0 65776 +~~~ +~~~ +8035449 0 65760 +~~~ +~~~ +8035451 0 65728 +~~~ +~~~ +8035453 0 65664 +~~~ +8035454 1 65664 +~~~ +~~~ +8035456 1 65536 +~~~ +8035457 1 66048 +8035458 homeCount = 150 +8035458 waitCount = 77 +8035459 ripCount = 62 +8035480 locktype1 = 2 +8035481 locktype2 = 9 +8035481 locktype3 = 8 +8035481 goalCount = 4 +8035482 goalTotal = 54 +8035482 otherCount = 78 +~~~ +8035623 1 512 +8047000 DOWN 1 +8047000 0 512 +8047011 1 512 +8047114 DOWN 1 +8047114 0 512 +8047158 1 512 +8047251 DOWN 1 +8047251 0 512 +8047290 1 512 +8047390 DOWN 1 +8047390 0 512 +8047404 1 512 +8047629 DOWN 1 +8047629 0 512 +8051873 UP 10 +8051873 waslock = 0 +8051873 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +8051906 512 16777728 +~~~ +8052056 512 512 +8057856 DOWN 10 +8057856 0 512 +~~~ +~~~ +8057882 0 1536 +~~~ +~~~ +8057884 0 1024 +8057885 homeCount = 151 +8057886 waitCount = 77 +8057886 ripCount = 62 +8057887 locktype1 = 2 +8057887 locktype2 = 9 +8057888 locktype3 = 8 +8057888 goalCount = 4 +8057889 goalTotal = 54 +8057889 otherCount = 78 +~~~ +8057925 UP 10 +8057925 waslock = 0 +8057925 512 1024 +~~~ +8057961 DOWN 10 +8057961 0 1024 +~~~ +~~~ +~~~ +~~~ +8057985 homeCount = 151 +8057985 waitCount = 77 +8057986 ripCount = 62 +8057986 locktype1 = 2 +8057987 locktype2 = 9 +8057987 locktype3 = 8 +8057988 goalCount = 4 +8057988 goalTotal = 54 +8057989 otherCount = 78 +~~~ +8059817 UP 11 +8059817 1024 1024 +8063817 BEEP1 +8063817 BEEP2 +~~~ +~~~ +~~~ +8063842 1024 33555456 +~~~ +8063992 1024 1024 +8074007 DOWN 11 +8074007 0 1024 +~~~ +~~~ +8074031 0 0 +~~~ +~~~ +8074033 0 1 +~~~ +~~~ +8074035 0 3 +~~~ +~~~ +8074037 0 7 +~~~ +~~~ +8074039 0 15 +~~~ +~~~ +8074041 0 31 +~~~ +~~~ +8074042 0 63 +~~~ +~~~ +8074044 0 127 +~~~ +~~~ +8074046 0 255 +8074047 homeCount = 151 +8074048 waitCount = 77 +8074048 ripCount = 63 +8074049 locktype1 = 2 +8074049 locktype2 = 9 +8074070 locktype3 = 8 +8074071 goalCount = 4 +8074071 goalTotal = 54 +8074072 otherCount = 78 +~~~ +8074073 CURRENTGOAL IS [1] +~~~ + + description: Statescript log r1 + task_epochs: 2, +, Statescript2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140114078597968 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +# +#import math +#import struct +#import re +#import time +#import random +#import numpy as np +#import pyaudio +#import wave +#from statistics import mean +## V8pre_forage +## visits to incorrect wells cause 5s lockout +## exception is repeat visit to prior well (is ok, no lockout) +## can go to any outer well, any number of times +## lockout from getting rip/wait wells wrong is also 5s +# +# +## decide what type of up trigger was just recieved; act accordingly +#def pokeIn(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# doHome() +# +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# doOuter(num) +# +## decide what type of down trigger was just recieved; act accordingly +#def pokeOut(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# global lastWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# endHome() +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# endWait() +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# endOuter() +# lastWell = currWell +# +##home poke: decide trial type and upcoming wait length; turn on lights accordingly +#def doHome(): +# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout +# global homePump +# global lastWell +# global currWell +# #global waitdist +# +# if trialtype == 0: +# opts = [1, 2] +# randnum = np.random.randint(0,2) #-1 +# trialtype = opts[randnum] +# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #randnum = np.random.randint(0,8) +# delaytime = chooseDelay() +# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") +# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime +# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC +# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") +# print("SCQTMESSAGE: trigger(1);\n") # deliver reward +# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: +# lockout([2,2]) +# +#def chooseDelay(): +# global trialtype +# global RWcount +# global waitdist +# global startwaitdist +# +# print(RWcount) +# +# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short +# return startwaitdist[RWcount[trialtype-1]] +# +# else: +# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist +# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) +# +# else: +# return int(np.random.choice(waitdist,1)) +# +# +#def endHome(): +# global trialtype +# global lastWell +# global homeWell +# global waitWells +# +# if trialtype == 1 or trialtype == 2: +# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +# +#def click(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# +# #generate_click() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC +# +#def beep(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# #generate_beep() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC +# +#def endWait(): +# global trialtype +# global goalWell +# global currWell +# global outerWells +# +# if trialtype == 3: # wait complete +# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): # turn on outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") +# +# +#def doOuter(val): +# global outerPumps +# global trialtype +# global allGoal +# global thisGoal +# global goalWell +# global outerReps +# global currWell +# global lastWell +# global homeWell +# global numgoals +# global validOuterWells +# global waslock +# +# if trialtype == 3: +# trialtype = 0 # outer satisfied, head home next +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# if currWell in goalWell : # repeated; reward +# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") +# print("SCQTMESSAGE: trigger(2);\n") # deliver reward +# allGoal+=1 +# thisGoal+=1 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC +# +# if thisGoal >= outerReps: #maxed repeats reached, time to switch +# print("time to choose new goalS!") +# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats +# chooseGoal() +# else: +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection +# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection +# print(goalWell) +# +# thisGoal = 0 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# +# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) +# goalWell = [currWell] +# +# else: # wrong well; add to forage record if newly visited +# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC +# +# elif trialtype < 3 and waslock<1: +# lockout([2,2]) +# +#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal +# global goalWell +# global oldGoals +# global numgoals +# global outerWells +# global forageNum +# #global outerReps +# +# oldGoals.append(goalWell) +# print(oldGoals) +# +# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms +# forageNum = 1 +# +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# if len(oldGoals)>7: # if all outers have been goal, reset +# print("resetting oldgoals") +# oldGoals = [None] +# +# while any(i in goalWell for i in oldGoals): #if any common elements +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# print(goalWell) +# +# outerReps = np.random.randint(4,13) +# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# print("new goal is "+str(goalWell)+"\n") +# +#def endOuter(): +# global trialtype +# global outerWells +# global homeWell +# global lastWell +# global currWell +# +# if trialtype == 0 and lastWell != currWell: # outer satisfied +# for num in range(len(outerWells)): # turn off outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +#def lockout(val): # turn off all lights for certain amount of time +# global waitWells +# global outerWells +# global lastWell +# global trialtype +# global waslock +# +# locktype = int(val[1]) +# trialtype = 4 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE +# #turn off all lights +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(waitWells)): #turn off all wait and outer well lights +# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# waslock=1 +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well +# if locktype == 1: +# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well +# if locktype == 2: +# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC +# if locktype == 3: +# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors +# +# +#def lockend(): +# global trialtype +# global homeWell +# +# trialtype = 0 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well +# print("SCQTMESSAGE: trigger(3);\n") +# +#def updateWaslock(val): +# global waslock +# +# waslock = int(val[1]) +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") +# +## Function: generate click sound +#def generate_click(): +# +# File='ZippoClick_short.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +## Function: generate cowbell sound +#def generate_beep(): +# +# File='Beep.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +#def makewhitenoise(): #play white noise for duration of lockout +# global locksoundlength +# +# soundlength = int(44100*locksoundlength/1000) +# p = pyaudio.PyAudio() +# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) +# whitenoise = np.random.randint(700,size = soundlength) +# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) +# stream.write(data) +# stream.close() +# p.terminate() +# +# +## This is the custom callback function. When events occur, addScQtEvent will +## call this function. This function MUST BE NAMED 'callback'!!!! +#def callback(line): +# +# global waslock +# +# if line.find("UP") >= 0: #input triggered +# pokeIn(re.findall(r'\d+',line)) +# if line.find("DOWN") >= 0: #input triggered +# pokeOut(re.findall(r'\d+',line)) +# if line.find("BEEP1") >= 0: # make a beep and deliver reward +# beep() +# if line.find("BEEP2") >= 0: # make a beep and deliver reward +# generate_beep() +# if line.find("CLICK1") >= 0: # make a click and deliver reward +# click() +# if line.find("CLICK2") >= 0: # make a click and deliver reward +# generate_click() +# if line.find("LOCKOUT") >= 0: # lockout procedure +# lockout(re.findall(r'\d+',line)) +# if line.find("LOCKEND") >= 0: # reset trialtype to 0 +# lockend() +# if line.find("WHITENOISE") >= 0: # make noise during lockout +# makewhitenoise() +# if line.find("waslock") >= 0: #update waslock value +# updateWaslock(re.findall(r'\d+',line)) +# +# +## define wells +#homeWell = 10 +#waitWells = [11,12] +#outerWells = [1,2,3,4,5,6,7,8] +##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num +## define pumps +#homePump = 25 +#waitPumps = [26, 27] +#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] +# +##global variables +#lastWell = -1 +#currWell = -1 +#trialtype = 0 +#outerReps = 10 +##outerReps = np.random.randint(4,13) #10 +#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# +#allGoal = 0 +#thisGoal = 0 +#numgoals = 1 # number of outer arms rewarded +#forageNum = 1 +#if numgoals == 1: +# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells +#else: +# goalWell = np.random.choice(outerWells,numgoals,replace=False) +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) +# +#oldGoals = [] #initialize with any wells to exclude from being goal +##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] +#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] +# +#startwaitdist = [1000, 1500, 2000] +# +#locksoundlength = 1000 +#print(goalWell) +#waslock=0 +#RWcount = [0,0 +# +17097908 UP 10 +17097909 waslock = 0 +17097908 512 512 +~~~ +~~~ +17097929 DOWN 10 +17097929 0 512 +~~~ +~~~ +~~~ +17097934 0 16777728 +~~~ +~~~ +~~~ +17097954 0 16779776 +~~~ +~~~ +17097956 0 16779264 +17097957 homeCount = 1 +17097957 waitCount = 0 +17097958 ripCount = 0 +17097958 locktype1 = 0 +17097959 locktype2 = 0 +17097959 locktype3 = 0 +17097960 goalCount = 0 +17097960 goalTotal = 0 +17097960 otherCount = 0 +~~~ +17098084 0 2048 +17098097 UP 10 +17098097 waslock = 0 +17098097 512 2048 +17098115 DOWN 10 +17098115 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098140 homeCount = 1 +17098140 waitCount = 0 +17098141 ripCount = 0 +17098141 locktype1 = 0 +17098142 locktype2 = 0 +17098142 locktype3 = 0 +17098143 goalCount = 0 +17098143 goalTotal = 0 +17098144 otherCount = 0 +~~~ +17098196 UP 10 +17098196 waslock = 0 +17098196 512 2048 +17098203 DOWN 10 +17098203 0 2048 +17098215 UP 10 +17098215 waslock = 0 +17098215 512 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098224 homeCount = 1 +17098224 waitCount = 0 +17098225 ripCount = 0 +17098225 locktype1 = 0 +17098226 locktype2 = 0 +17098226 locktype3 = 0 +17098227 goalCount = 0 +17098227 goalTotal = 0 +17098228 otherCount = 0 +~~~ +17098232 DOWN 10 +17098232 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098271 homeCount = 1 +17098271 waitCount = 0 +17098272 ripCount = 0 +17098272 locktype1 = 0 +17098273 locktype2 = 0 +17098273 locktype3 = 0 +17098274 goalCount = 0 +17098274 goalTotal = 0 +17098275 otherCount = 0 +~~~ +17098313 UP 10 +17098314 waslock = 0 +17098313 512 2048 +17098325 DOWN 10 +17098325 0 2048 +~~~ +~~~ +~~~ +17098341 UP 10 +17098341 waslock = 0 +17098340 512 2048 +~~~ +~~~ +17098343 homeCount = 1 +17098344 waitCount = 0 +17098344 ripCount = 0 +17098345 locktype1 = 0 +17098345 locktype2 = 0 +17098346 locktype3 = 0 +17098346 goalCount = 0 +17098347 goalTotal = 0 +17098368 otherCount = 0 +~~~ +17098368 DOWN 10 +17098368 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098389 homeCount = 1 +17098389 waitCount = 0 +17098390 ripCount = 0 +17098390 locktype1 = 0 +17098391 locktype2 = 0 +17098391 locktype3 = 0 +17098392 goalCount = 0 +17098392 goalTotal = 0 +17098393 otherCount = 0 +~~~ +17098443 UP 10 +17098443 waslock = 0 +17098443 512 2048 +~~~ +17098479 DOWN 10 +17098479 0 2048 +~~~ +~~~ +~~~ +~~~ +17098504 homeCount = 1 +17098504 waitCount = 0 +17098505 ripCount = 0 +17098505 locktype1 = 0 +17098505 locktype2 = 0 +17098506 locktype3 = 0 +17098506 goalCount = 0 +17098507 goalTotal = 0 +17098507 otherCount = 0 +~~~ +17098562 UP 10 +17098562 waslock = 0 +17098562 512 2048 +~~~ +17098607 DOWN 10 +17098607 0 2048 +~~~ +~~~ +~~~ +~~~ +17098626 homeCount = 1 +17098627 waitCount = 0 +17098627 ripCount = 0 +17098628 locktype1 = 0 +17098628 locktype2 = 0 +17098629 locktype3 = 0 +17098629 goalCount = 0 +17098630 goalTotal = 0 +17098630 otherCount = 0 +~~~ +17098693 UP 10 +17098693 waslock = 0 +17098693 512 2048 +~~~ +17098737 DOWN 10 +17098737 0 2048 +~~~ +~~~ +~~~ +~~~ +17098764 homeCount = 1 +17098764 waitCount = 0 +17098765 ripCount = 0 +17098765 locktype1 = 0 +17098766 locktype2 = 0 +17098766 locktype3 = 0 +17098767 goalCount = 0 +17098767 goalTotal = 0 +17098768 otherCount = 0 +~~~ +17098821 UP 10 +17098822 waslock = 0 +17098821 512 2048 +~~~ +17098866 DOWN 10 +17098866 0 2048 +~~~ +~~~ +~~~ +~~~ +17098893 homeCount = 1 +17098894 waitCount = 0 +17098895 ripCount = 0 +17098895 locktype1 = 0 +17098895 locktype2 = 0 +17098896 locktype3 = 0 +17098896 goalCount = 0 +17098897 goalTotal = 0 +17098897 otherCount = 0 +~~~ +17098951 UP 10 +17098951 waslock = 0 +17098951 512 2048 +~~~ +17098997 DOWN 10 +17098997 0 2048 +~~~ +~~~ +~~~ +~~~ +17099024 homeCount = 1 +17099024 waitCount = 0 +17099025 ripCount = 0 +17099025 locktype1 = 0 +17099026 locktype2 = 0 +17099026 locktype3 = 0 +17099027 goalCount = 0 +17099027 goalTotal = 0 +17099028 otherCount = 0 +~~~ +17099078 UP 10 +17099078 waslock = 0 +17099078 512 2048 +~~~ +17099137 DOWN 10 +17099137 0 2048 +~~~ +~~~ +~~~ +~~~ +17099164 homeCount = 1 +17099164 waitCount = 0 +17099165 ripCount = 0 +17099165 locktype1 = 0 +17099166 locktype2 = 0 +17099166 locktype3 = 0 +17099167 goalCount = 0 +17099167 goalTotal = 0 +17099168 otherCount = 0 +~~~ +17099210 UP 10 +17099210 waslock = 0 +17099209 512 2048 +~~~ +17099274 DOWN 10 +17099274 0 2048 +~~~ +~~~ +~~~ +~~~ +17099295 homeCount = 1 +17099295 waitCount = 0 +17099296 ripCount = 0 +17099296 locktype1 = 0 +17099297 locktype2 = 0 +17099297 locktype3 = 0 +17099298 goalCount = 0 +17099298 goalTotal = 0 +17099299 otherCount = 0 +~~~ +17099341 UP 10 +17099342 waslock = 0 +17099341 512 2048 +~~~ +17099412 DOWN 10 +17099412 0 2048 +~~~ +~~~ +~~~ +~~~ +17099438 homeCount = 1 +17099438 waitCount = 0 +17099439 ripCount = 0 +17099439 locktype1 = 0 +17099440 locktype2 = 0 +17099440 locktype3 = 0 +17099441 goalCount = 0 +17099441 goalTotal = 0 +17099442 otherCount = 0 +~~~ +17099483 UP 10 +17099483 waslock = 0 +17099483 512 2048 +~~~ +17099557 DOWN 10 +17099557 0 2048 +17099566 UP 10 +17099566 waslock = 0 +17099566 512 2048 +~~~ +~~~ +~~~ +~~~ +17099587 homeCount = 1 +17099588 waitCount = 0 +17099588 ripCount = 0 +17099589 locktype1 = 0 +17099589 locktype2 = 0 +17099590 locktype3 = 0 +17099590 goalCount = 0 +17099591 goalTotal = 0 +17099591 otherCount = 0 +~~~ +~~~ +17099696 DOWN 10 +17099696 0 2048 +17099699 UP 10 +17099699 waslock = 0 +17099699 512 2048 +~~~ +~~~ +~~~ +~~~ +17099724 homeCount = 1 +17099724 waitCount = 0 +17099725 ripCount = 0 +17099725 locktype1 = 0 +17099726 locktype2 = 0 +17099726 locktype3 = 0 +17099727 goalCount = 0 +17099727 goalTotal = 0 +17099728 otherCount = 0 +~~~ +~~~ +17100772 DOWN 10 +17100772 0 2048 +17100789 UP 10 +17100789 waslock = 0 +17100789 512 2048 +~~~ +~~~ +~~~ +~~~ +17100795 homeCount = 1 +17100795 waitCount = 0 +17100796 ripCount = 0 +17100796 locktype1 = 0 +17100797 locktype2 = 0 +17100797 locktype3 = 0 +17100798 goalCount = 0 +17100798 goalTotal = 0 +17100799 otherCount = 0 +~~~ +~~~ +17100909 DOWN 10 +17100909 0 2048 +~~~ +~~~ +~~~ +~~~ +17100938 homeCount = 1 +17100938 waitCount = 0 +17100939 ripCount = 0 +17100939 locktype1 = 0 +17100940 locktype2 = 0 +17100940 locktype3 = 0 +17100941 goalCount = 0 +17100941 goalTotal = 0 +17100942 otherCount = 0 +~~~ +17100945 UP 10 +17100945 waslock = 0 +17100945 512 2048 +~~~ +17101065 DOWN 10 +17101065 0 2048 +~~~ +~~~ +~~~ +~~~ +17101093 homeCount = 1 +17101093 waitCount = 0 +17101094 ripCount = 0 +17101094 locktype1 = 0 +17101095 locktype2 = 0 +17101095 locktype3 = 0 +17101096 goalCount = 0 +17101096 goalTotal = 0 +17101097 otherCount = 0 +~~~ +17101099 UP 10 +17101100 waslock = 0 +17101099 512 2048 +~~~ +17101243 DOWN 10 +17101243 0 2048 +~~~ +~~~ +~~~ +~~~ +17101263 UP 10 +17101264 waslock = 0 +17101263 512 2048 +17101265 homeCount = 1 +17101266 waitCount = 0 +17101266 ripCount = 0 +17101267 locktype1 = 0 +17101267 locktype2 = 0 +17101268 locktype3 = 0 +17101268 goalCount = 0 +17101269 goalTotal = 0 +17101269 otherCount = 0 +~~~ +~~~ +17101399 DOWN 10 +17101399 0 2048 +17101416 UP 10 +17101416 waslock = 0 +17101416 512 2048 +~~~ +~~~ +~~~ +~~~ +17101424 homeCount = 1 +17101424 waitCount = 0 +17101425 ripCount = 0 +17101425 locktype1 = 0 +17101425 locktype2 = 0 +17101426 locktype3 = 0 +17101426 goalCount = 0 +17101427 goalTotal = 0 +17101427 otherCount = 0 +~~~ +~~~ +17101561 DOWN 10 +17101561 0 2048 +17101572 UP 10 +17101572 waslock = 0 +17101572 512 2048 +~~~ +~~~ +~~~ +~~~ +17101596 homeCount = 1 +17101596 waitCount = 0 +17101597 ripCount = 0 +17101597 locktype1 = 0 +17101598 locktype2 = 0 +17101598 locktype3 = 0 +17101599 goalCount = 0 +17101599 goalTotal = 0 +17101600 otherCount = 0 +~~~ +~~~ +17101896 DOWN 10 +17101896 0 2048 +17101911 UP 10 +17101911 waslock = 0 +17101911 512 2048 +~~~ +~~~ +~~~ +~~~ +17101939 homeCount = 1 +17101940 waitCount = 0 +17101940 ripCount = 0 +17101940 locktype1 = 0 +17101941 locktype2 = 0 +17101941 locktype3 = 0 +17101942 goalCount = 0 +17101942 goalTotal = 0 +17101943 otherCount = 0 +~~~ +~~~ +17102043 DOWN 10 +17102043 0 2048 +~~~ +~~~ +~~~ +~~~ +17102068 homeCount = 1 +17102069 waitCount = 0 +17102069 ripCount = 0 +17102070 locktype1 = 0 +17102070 locktype2 = 0 +17102071 locktype3 = 0 +17102071 goalCount = 0 +17102072 goalTotal = 0 +17102072 otherCount = 0 +~~~ +17102073 UP 10 +17102073 waslock = 0 +17102073 512 2048 +~~~ +17102213 DOWN 10 +17102213 0 2048 +~~~ +17102236 UP 10 +17102236 waslock = 0 +17102236 512 2048 +~~~ +~~~ +~~~ +17102240 homeCount = 1 +17102240 waitCount = 0 +17102241 ripCount = 0 +17102241 locktype1 = 0 +17102242 locktype2 = 0 +17102242 locktype3 = 0 +17102242 goalCount = 0 +17102243 goalTotal = 0 +17102243 otherCount = 0 +~~~ +~~~ +17102394 DOWN 10 +17102394 0 2048 +17102404 UP 10 +17102404 waslock = 0 +17102404 512 2048 +~~~ +~~~ +~~~ +~~~ +17102428 homeCount = 1 +17102429 waitCount = 0 +17102429 ripCount = 0 +17102430 locktype1 = 0 +17102430 locktype2 = 0 +17102431 locktype3 = 0 +17102431 goalCount = 0 +17102431 goalTotal = 0 +17102432 otherCount = 0 +~~~ +~~~ +17102533 DOWN 10 +17102532 0 2048 +~~~ +~~~ +~~~ +~~~ +17102555 homeCount = 1 +17102556 waitCount = 0 +17102556 ripCount = 0 +17102557 locktype1 = 0 +17102557 locktype2 = 0 +17102558 locktype3 = 0 +17102558 goalCount = 0 +17102559 goalTotal = 0 +17102559 otherCount = 0 +~~~ +17102568 UP 10 +17102568 waslock = 0 +17102568 512 2048 +~~~ +17105160 DOWN 10 +17105160 0 2048 +17105166 UP 10 +17105167 waslock = 0 +17105166 512 2048 +~~~ +~~~ +~~~ +~~~ +17105185 homeCount = 1 +17105186 waitCount = 0 +17105186 ripCount = 0 +17105187 locktype1 = 0 +17105187 locktype2 = 0 +17105188 locktype3 = 0 +17105188 goalCount = 0 +17105189 goalTotal = 0 +17105189 otherCount = 0 +~~~ +~~~ +17105317 DOWN 10 +17105317 0 2048 +17105343 UP 10 +17105343 waslock = 0 +17105343 512 2048 +~~~ +~~~ +~~~ +~~~ +17105348 homeCount = 1 +17105348 waitCount = 0 +17105349 ripCount = 0 +17105349 locktype1 = 0 +17105350 locktype2 = 0 +17105350 locktype3 = 0 +17105351 goalCount = 0 +17105351 goalTotal = 0 +17105352 otherCount = 0 +~~~ +~~~ +17105443 DOWN 10 +17105443 0 2048 +~~~ +~~~ +~~~ +~~~ +17105469 homeCount = 1 +17105469 waitCount = 0 +17105470 ripCount = 0 +17105470 locktype1 = 0 +17105471 locktype2 = 0 +17105471 locktype3 = 0 +17105472 goalCount = 0 +17105472 goalTotal = 0 +17105473 otherCount = 0 +~~~ +17105486 UP 10 +17105486 waslock = 0 +17105486 512 2048 +~~~ +17105600 DOWN 10 +17105600 0 2048 +~~~ +~~~ +~~~ +~~~ +17105628 homeCount = 1 +17105628 waitCount = 0 +17105629 ripCount = 0 +17105629 locktype1 = 0 +17105629 locktype2 = 0 +17105630 locktype3 = 0 +17105630 goalCount = 0 +17105631 goalTotal = 0 +17105631 otherCount = 0 +~~~ +17105636 UP 10 +17105636 waslock = 0 +17105636 512 2048 +~~~ +17105791 DOWN 10 +17105791 0 2048 +~~~ +17105814 UP 10 +17105814 waslock = 0 +17105814 512 2048 +~~~ +~~~ +~~~ +17105817 homeCount = 1 +17105818 waitCount = 0 +17105818 ripCount = 0 +17105819 locktype1 = 0 +17105819 locktype2 = 0 +17105820 locktype3 = 0 +17105820 goalCount = 0 +17105821 goalTotal = 0 +17105821 otherCount = 0 +~~~ +~~~ +17105974 DOWN 10 +17105974 0 2048 +17105987 UP 10 +17105988 waslock = 0 +17105987 512 2048 +~~~ +~~~ +~~~ +~~~ +17106001 homeCount = 1 +17106002 waitCount = 0 +17106002 ripCount = 0 +17106003 locktype1 = 0 +17106003 locktype2 = 0 +17106004 locktype3 = 0 +17106004 goalCount = 0 +17106005 goalTotal = 0 +17106005 otherCount = 0 +~~~ +~~~ +17106145 DOWN 10 +17106145 0 2048 +17106156 UP 10 +17106156 waslock = 0 +17106156 512 2048 +~~~ +~~~ +~~~ +~~~ +17106177 homeCount = 1 +17106177 waitCount = 0 +17106178 ripCount = 0 +17106178 locktype1 = 0 +17106179 locktype2 = 0 +17106179 locktype3 = 0 +17106180 goalCount = 0 +17106180 goalTotal = 0 +17106181 otherCount = 0 +~~~ +~~~ +17106662 DOWN 10 +17106662 0 2048 +17106678 UP 10 +17106679 waslock = 0 +17106678 512 2048 +~~~ +~~~ +~~~ +~~~ +17106686 homeCount = 1 +17106686 waitCount = 0 +17106687 ripCount = 0 +17106687 locktype1 = 0 +17106688 locktype2 = 0 +17106688 locktype3 = 0 +17106689 goalCount = 0 +17106689 goalTotal = 0 +17106689 otherCount = 0 +~~~ +~~~ +17107378 DOWN 10 +17107378 0 2048 +17107394 UP 10 +17107395 waslock = 0 +17107394 512 2048 +~~~ +~~~ +~~~ +~~~ +17107416 homeCount = 1 +17107416 waitCount = 0 +17107417 ripCount = 0 +17107417 locktype1 = 0 +17107418 locktype2 = 0 +17107418 locktype3 = 0 +17107419 goalCount = 0 +17107419 goalTotal = 0 +17107420 otherCount = 0 +~~~ +~~~ +17110357 DOWN 10 +17110357 0 2048 +17110367 UP 10 +17110368 waslock = 0 +17110367 512 2048 +~~~ +~~~ +~~~ +~~~ +17110384 homeCount = 1 +17110384 waitCount = 0 +17110385 ripCount = 0 +17110385 locktype1 = 0 +17110386 locktype2 = 0 +17110386 locktype3 = 0 +17110387 goalCount = 0 +17110387 goalTotal = 0 +17110388 otherCount = 0 +~~~ +~~~ +17111248 DOWN 10 +17111248 0 2048 +~~~ +~~~ +~~~ +~~~ +17111278 homeCount = 1 +17111278 waitCount = 0 +17111279 ripCount = 0 +17111279 locktype1 = 0 +17111280 locktype2 = 0 +17111280 locktype3 = 0 +17111281 goalCount = 0 +17111281 goalTotal = 0 +17111282 otherCount = 0 +~~~ +17112980 UP 12 +17112980 2048 2048 +17113019 DOWN 12 +17113019 0 2048 +17113078 UP 12 +17113078 2048 2048 +17113162 DOWN 12 +17113162 0 2048 +17113362 LOCKOUT 3 +~~~ +17113381 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17113387 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17115071 UP 12 +17115071 2048 0 +17115080 DOWN 12 +17115080 0 0 +17115215 UP 12 +17115215 2048 0 +17115221 DOWN 12 +17115221 0 0 +17115349 UP 12 +17115349 2048 0 +17115363 DOWN 12 +17115363 0 0 +17115440 UP 12 +17115440 2048 0 +17115466 DOWN 12 +17115466 0 0 +17115645 UP 12 +17115645 2048 0 +17115657 DOWN 12 +17115657 0 0 +17115667 UP 12 +17115666 2048 0 +17115675 DOWN 12 +17115675 0 0 +17115780 UP 12 +17115780 2048 0 +17115801 DOWN 12 +17115801 0 0 +17115810 UP 12 +17115810 2048 0 +17115816 DOWN 12 +17115816 0 0 +17115955 UP 12 +17115955 2048 0 +17115960 DOWN 12 +17115960 0 0 +17116066 UP 12 +17116066 2048 0 +17116100 DOWN 12 +17116100 0 0 +17116204 UP 12 +17116204 2048 0 +17116257 DOWN 12 +17116257 0 0 +17116327 UP 12 +17116326 2048 0 +17116902 DOWN 12 +17116902 0 0 +17116938 UP 12 +17116938 2048 0 +17117078 DOWN 12 +17117078 0 0 +17117106 UP 12 +17117106 2048 0 +17117247 DOWN 12 +17117247 0 0 +17117269 UP 12 +17117269 2048 0 +17117395 DOWN 12 +17117394 0 0 +17117444 UP 12 +17117443 2048 0 +17117560 DOWN 12 +17117560 0 0 +17117578 UP 12 +17117578 2048 0 +17120536 DOWN 12 +17120536 0 0 +17120564 UP 12 +17120564 2048 0 +17120692 DOWN 12 +17120692 0 0 +17120734 UP 12 +17120734 2048 0 +17122749 DOWN 12 +17122749 0 0 +17122862 UP 12 +17122862 2048 0 +17122925 DOWN 12 +17122925 0 0 +17122966 UP 12 +17122966 2048 0 +17122985 DOWN 12 +17122985 0 0 +17126115 UP 11 +17126115 1024 0 +17126590 DOWN 11 +17126590 0 0 +17126628 UP 11 +17126628 1024 0 +17126735 DOWN 11 +17126735 0 0 +17126767 UP 11 +17126767 1024 0 +17126848 DOWN 11 +17126848 0 0 +17126961 UP 11 +17126961 1024 0 +17127005 DOWN 11 +17127005 0 0 +17127070 UP 11 +17127070 1024 0 +17127268 DOWN 11 +17127268 0 0 +17127323 UP 11 +17127323 1024 0 +17127360 DOWN 11 +17127360 0 0 +17128371 UP 11 +17128371 1024 0 +17128378 DOWN 11 +17128378 0 0 +17128512 UP 11 +17128512 1024 0 +17128520 DOWN 11 +17128520 0 0 +17128657 UP 11 +17128657 1024 0 +17128664 DOWN 11 +17128664 0 0 +17128799 UP 11 +17128799 1024 0 +17128814 DOWN 11 +17128814 0 0 +17128924 UP 11 +17128924 1024 0 +17128955 DOWN 11 +17128955 0 0 +17129072 UP 11 +17129072 1024 0 +17129121 DOWN 11 +17129121 0 0 +17129193 UP 11 +17129193 1024 0 +17129199 DOWN 11 +17129199 0 0 +17129206 UP 11 +17129206 1024 0 +17129273 DOWN 11 +17129273 0 0 +17129339 UP 11 +17129339 1024 0 +17129427 DOWN 11 +17129427 0 0 +17129465 UP 11 +17129465 1024 0 +17129478 DOWN 11 +17129478 0 0 +17129493 UP 11 +17129493 1024 0 +17129584 DOWN 11 +17129584 0 0 +17129604 UP 11 +17129604 1024 0 +17129642 DOWN 11 +17129642 0 0 +17129647 UP 11 +17129647 1024 0 +17129741 DOWN 11 +17129741 0 0 +17129755 UP 11 +17129755 1024 0 +17129913 DOWN 11 +17129913 0 0 +17129916 UP 11 +17129916 1024 0 +17131282 DOWN 11 +17131282 0 0 +17131290 UP 11 +17131290 1024 0 +17131452 DOWN 11 +17131452 0 0 +17131471 UP 11 +17131471 1024 0 +17131613 DOWN 11 +17131613 0 0 +17131648 UP 11 +17131648 1024 0 +17134290 DOWN 11 +17134290 0 0 +17134769 UP 11 +17134769 1024 0 +17134823 DOWN 11 +17134823 0 0 +17138381 LOCKEND +~~~ +~~~ +~~~ +17138406 0 512 +17139837 UP 10 +17139837 waslock = 0 +17139837 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17139872 512 16777728 +~~~ +17139893 DOWN 10 +17139893 0 16777728 +~~~ +~~~ +17139915 0 16779776 +~~~ +~~~ +17139917 0 16779264 +17139918 homeCount = 2 +17139918 waitCount = 0 +17139919 ripCount = 0 +17139919 locktype1 = 0 +17139920 locktype2 = 0 +17139920 locktype3 = 1 +17139921 goalCount = 0 +17139921 goalTotal = 0 +17139922 otherCount = 0 +~~~ +17139950 UP 10 +17139950 waslock = 0 +17139950 512 16779264 +~~~ +17140022 512 2048 +17140065 DOWN 10 +17140065 0 2048 +~~~ +~~~ +~~~ +~~~ +17140088 homeCount = 2 +17140089 waitCount = 0 +17140089 ripCount = 0 +17140090 locktype1 = 0 +17140090 locktype2 = 0 +17140091 locktype3 = 1 +17140091 goalCount = 0 +17140092 goalTotal = 0 +17140092 otherCount = 0 +~~~ +17140101 UP 10 +17140101 waslock = 0 +17140101 512 2048 +~~~ +17140240 DOWN 10 +17140240 0 2048 +17140257 UP 10 +17140257 waslock = 0 +17140257 512 2048 +~~~ +~~~ +~~~ +~~~ +17140270 homeCount = 2 +17140270 waitCount = 0 +17140271 ripCount = 0 +17140271 locktype1 = 0 +17140272 locktype2 = 0 +17140272 locktype3 = 1 +17140273 goalCount = 0 +17140273 goalTotal = 0 +17140274 otherCount = 0 +~~~ +~~~ +17140410 DOWN 10 +17140410 0 2048 +17140426 UP 10 +17140427 waslock = 0 +17140426 512 2048 +~~~ +~~~ +~~~ +~~~ +17140449 homeCount = 2 +17140449 waitCount = 0 +17140450 ripCount = 0 +17140450 locktype1 = 0 +17140451 locktype2 = 0 +17140451 locktype3 = 1 +17140452 goalCount = 0 +17140452 goalTotal = 0 +17140453 otherCount = 0 +~~~ +~~~ +17140577 DOWN 10 +17140577 0 2048 +17140594 UP 10 +17140594 waslock = 0 +17140594 512 2048 +~~~ +~~~ +~~~ +~~~ +17140620 homeCount = 2 +17140621 waitCount = 0 +17140621 ripCount = 0 +17140622 locktype1 = 0 +17140622 locktype2 = 0 +17140623 locktype3 = 1 +17140623 goalCount = 0 +17140624 goalTotal = 0 +17140624 otherCount = 0 +~~~ +~~~ +17142212 DOWN 10 +17142212 0 2048 +17142228 UP 10 +17142229 waslock = 0 +17142228 512 2048 +~~~ +~~~ +~~~ +~~~ +17142249 homeCount = 2 +17142250 waitCount = 0 +17142250 ripCount = 0 +17142251 locktype1 = 0 +17142251 locktype2 = 0 +17142252 locktype3 = 1 +17142252 goalCount = 0 +17142253 goalTotal = 0 +17142253 otherCount = 0 +~~~ +~~~ +17142366 DOWN 10 +17142366 0 2048 +~~~ +~~~ +~~~ +~~~ +17142389 homeCount = 2 +17142389 waitCount = 0 +17142390 ripCount = 0 +17142390 locktype1 = 0 +17142391 locktype2 = 0 +17142391 locktype3 = 1 +17142391 goalCount = 0 +17142392 goalTotal = 0 +17142392 otherCount = 0 +~~~ +17142404 UP 10 +17142405 waslock = 0 +17142404 512 2048 +~~~ +17142467 DOWN 10 +17142467 0 2048 +~~~ +~~~ +~~~ +~~~ +17142488 homeCount = 2 +17142489 waitCount = 0 +17142489 ripCount = 0 +17142490 locktype1 = 0 +17142490 locktype2 = 0 +17142491 locktype3 = 1 +17142491 goalCount = 0 +17142492 goalTotal = 0 +17142492 otherCount = 0 +~~~ +17145618 UP 7 +17145618 64 2048 +~~~ +17145638 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17145644 64 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17145661 DOWN 7 +17145661 0 0 +~~~ +17145688 64 0 +17145936 DOWN 7 +17145935 0 0 +17145982 64 0 +17146406 DOWN 7 +17146406 0 0 +17146420 64 0 +17148954 DOWN 7 +17148954 0 0 +17148975 64 0 +17149053 DOWN 7 +17149053 0 0 +17156173 512 0 +17156617 0 0 +17156641 512 0 +17156974 0 0 +17156988 512 0 +17157127 0 0 +17157152 512 0 +17157306 0 0 +17157321 512 0 +17157477 0 0 +17157493 512 0 +17157661 0 0 +17157668 512 0 +17158019 0 0 +17158039 512 0 +17158176 0 0 +17158207 512 0 +17158364 0 0 +17158393 512 0 +17158518 0 0 +17160113 UP 12 +17160113 2048 0 +17160307 DOWN 12 +17160307 0 0 +17164258 UP 2 +17164258 2 0 +17164330 DOWN 2 +17164330 0 0 +17164364 2 0 +17164660 DOWN 2 +17164660 0 0 +17164694 2 0 +17165098 DOWN 2 +17165098 0 0 +17165116 2 0 +17165603 DOWN 2 +17165603 0 0 +17165620 2 0 +17165783 DOWN 2 +17165783 0 0 +17165803 2 0 +17165960 DOWN 2 +17165960 0 0 +17165976 2 0 +17166139 DOWN 2 +17166139 0 0 +17166149 2 0 +17167551 DOWN 2 +17167551 0 0 +17167564 2 0 +17167726 DOWN 2 +17167726 0 0 +17167754 2 0 +17167812 DOWN 2 +17167812 0 0 +17167901 2 0 +17168006 DOWN 2 +17168006 0 0 +17168074 2 0 +17168160 DOWN 2 +17168160 0 0 +17168269 2 0 +17168360 DOWN 2 +17168360 0 0 +17168390 2 0 +17168528 DOWN 2 +17168528 0 0 +17168554 2 0 +17168701 DOWN 2 +17168701 0 0 +17168770 2 0 +17168793 DOWN 2 +17168793 0 0 +17170638 LOCKEND +~~~ +~~~ +~~~ +17170656 0 512 +17173427 UP 10 +17173427 waslock = 0 +17173427 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17173450 512 16777728 +~~~ +17173481 DOWN 10 +17173481 0 16777728 +~~~ +~~~ +17173505 0 16778752 +~~~ +~~~ +17173507 0 16778240 +17173508 homeCount = 3 +17173509 waitCount = 0 +17173509 ripCount = 0 +17173510 locktype1 = 0 +17173510 locktype2 = 1 +17173511 locktype3 = 1 +17173511 goalCount = 0 +17173512 goalTotal = 0 +17173512 otherCount = 0 +~~~ +17173600 0 1024 +17173629 UP 10 +17173629 waslock = 0 +17173629 512 1024 +~~~ +17177285 DOWN 10 +17177285 0 1024 +17177297 UP 10 +17177298 waslock = 0 +17177297 512 1024 +~~~ +~~~ +~~~ +~~~ +17177320 homeCount = 3 +17177320 waitCount = 0 +17177321 ripCount = 0 +17177321 locktype1 = 0 +17177322 locktype2 = 1 +17177322 locktype3 = 1 +17177322 goalCount = 0 +17177323 goalTotal = 0 +17177323 otherCount = 0 +~~~ +~~~ +17177371 DOWN 10 +17177371 0 1024 +~~~ +~~~ +~~~ +~~~ +17177399 homeCount = 3 +17177399 waitCount = 0 +17177400 ripCount = 0 +17177400 locktype1 = 0 +17177401 locktype2 = 1 +17177401 locktype3 = 1 +17177402 goalCount = 0 +17177402 goalTotal = 0 +17177403 otherCount = 0 +~~~ +17178689 UP 11 +17178689 1024 1024 +17179443 DOWN 11 +17179443 0 1024 +17179507 UP 11 +17179507 1024 1024 +17179689 BEEP1 +17179689 BEEP2 +~~~ +~~~ +~~~ +17179722 1024 33555456 +~~~ +17179872 1024 1024 +17185130 DOWN 11 +17185130 0 1024 +~~~ +~~~ +17185149 0 0 +~~~ +~~~ +17185151 0 1 +~~~ +~~~ +17185153 0 3 +~~~ +~~~ +17185155 0 7 +~~~ +~~~ +17185157 0 15 +~~~ +~~~ +17185159 0 31 +~~~ +~~~ +17185160 0 63 +~~~ +~~~ +17185162 0 127 +~~~ +~~~ +17185164 0 255 +17185165 homeCount = 3 +17185166 waitCount = 0 +17185166 ripCount = 1 +17185167 locktype1 = 0 +17185167 locktype2 = 1 +17185188 locktype3 = 1 +17185189 goalCount = 0 +17185189 goalTotal = 0 +17185190 otherCount = 0 +~~~ +17185191 CURRENTGOAL IS [8] +~~~ +17185191 UP 11 +17185191 1024 255 +17185193 DOWN 11 +17185193 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17185237 homeCount = 3 +17185238 waitCount = 0 +17185238 ripCount = 1 +17185239 locktype1 = 0 +17185239 locktype2 = 1 +17185240 locktype3 = 1 +17185240 goalCount = 0 +17185241 goalTotal = 0 +17185241 otherCount = 0 +~~~ +17185242 CURRENTGOAL IS [8] +~~~ +17187525 UP 8 +17187525 128 255 +17187540 DOWN 8 +17187540 0 255 +17187549 128 255 +~~~ +~~~ +17187564 outer reward +~~~ +17187564 128 8388863 +~~~ +~~~ +~~~ +~~~ +17187568 128 8388862 +~~~ +~~~ +17187570 128 8388860 +~~~ +~~~ +17187572 128 8388856 +~~~ +~~~ +17187574 128 8388848 +~~~ +~~~ +17187575 128 8388832 +~~~ +~~~ +17187577 128 8388800 +~~~ +~~~ +17187579 128 8388736 +~~~ +~~~ +17187581 128 8388608 +~~~ +~~~ +17187583 128 8389120 +17187604 homeCount = 3 +17187605 waitCount = 0 +17187605 ripCount = 1 +17187606 locktype1 = 0 +17187606 locktype2 = 1 +17187607 locktype3 = 1 +17187607 goalCount = 1 +17187608 goalTotal = 1 +17187608 otherCount = 0 +~~~ +17188014 128 512 +17188249 DOWN 8 +17188248 0 512 +17188270 128 512 +17188380 DOWN 8 +17188380 0 512 +17188411 128 512 +17188512 DOWN 8 +17188512 0 512 +17188550 128 512 +17188649 DOWN 8 +17188649 0 512 +17188680 128 512 +17188804 DOWN 8 +17188804 0 512 +17188815 128 512 +17188947 DOWN 8 +17188947 0 512 +17188964 128 512 +17190940 DOWN 8 +17190940 0 512 +17190964 128 512 +17193457 DOWN 8 +17193457 0 512 +17193811 128 512 +17193844 DOWN 8 +17193844 0 512 +17199369 UP 10 +17199369 waslock = 0 +17199369 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17199397 512 16777728 +~~~ +17199547 512 512 +17199572 DOWN 10 +17199572 0 512 +~~~ +~~~ +17199595 0 2560 +~~~ +~~~ +17199596 0 2048 +17199597 homeCount = 4 +17199598 waitCount = 0 +17199598 ripCount = 1 +17199599 locktype1 = 0 +17199599 locktype2 = 1 +17199600 locktype3 = 1 +17199600 goalCount = 1 +17199601 goalTotal = 1 +17199601 otherCount = 0 +~~~ +17199646 UP 10 +17199646 waslock = 0 +17199645 512 2048 +~~~ +17199747 DOWN 10 +17199747 0 2048 +~~~ +~~~ +~~~ +~~~ +17199774 homeCount = 4 +17199775 waitCount = 0 +17199775 ripCount = 1 +17199776 locktype1 = 0 +17199776 locktype2 = 1 +17199777 locktype3 = 1 +17199777 goalCount = 1 +17199778 goalTotal = 1 +17199778 otherCount = 0 +~~~ +17199781 UP 10 +17199781 waslock = 0 +17199781 512 2048 +~~~ +17199882 DOWN 10 +17199882 0 2048 +~~~ +~~~ +~~~ +~~~ +17199908 homeCount = 4 +17199909 waitCount = 0 +17199909 ripCount = 1 +17199909 locktype1 = 0 +17199910 locktype2 = 1 +17199910 locktype3 = 1 +17199911 goalCount = 1 +17199911 goalTotal = 1 +17199912 otherCount = 0 +~~~ +17199918 UP 10 +17199919 waslock = 0 +17199918 512 2048 +~~~ +17200055 DOWN 10 +17200055 0 2048 +~~~ +~~~ +~~~ +~~~ +17200079 UP 10 +17200079 waslock = 0 +17200079 512 2048 +17200080 homeCount = 4 +17200081 waitCount = 0 +17200081 ripCount = 1 +17200082 locktype1 = 0 +17200082 locktype2 = 1 +17200083 locktype3 = 1 +17200083 goalCount = 1 +17200084 goalTotal = 1 +17200084 otherCount = 0 +~~~ +~~~ +17200203 DOWN 10 +17200203 0 2048 +~~~ +~~~ +~~~ +17200231 UP 10 +17200231 waslock = 0 +17200231 512 2048 +~~~ +17200233 homeCount = 4 +17200234 waitCount = 0 +17200234 ripCount = 1 +17200235 locktype1 = 0 +17200235 locktype2 = 1 +17200235 locktype3 = 1 +17200236 goalCount = 1 +17200236 goalTotal = 1 +17200258 otherCount = 0 +~~~ +~~~ +17200369 DOWN 10 +17200369 0 2048 +17200387 UP 10 +17200388 waslock = 0 +17200387 512 2048 +~~~ +~~~ +~~~ +~~~ +17200392 homeCount = 4 +17200393 waitCount = 0 +17200393 ripCount = 1 +17200394 locktype1 = 0 +17200394 locktype2 = 1 +17200395 locktype3 = 1 +17200395 goalCount = 1 +17200396 goalTotal = 1 +17200396 otherCount = 0 +~~~ +~~~ +17200549 DOWN 10 +17200549 0 2048 +17200555 UP 10 +17200555 waslock = 0 +17200555 512 2048 +~~~ +~~~ +~~~ +~~~ +17200573 homeCount = 4 +17200574 waitCount = 0 +17200574 ripCount = 1 +17200575 locktype1 = 0 +17200575 locktype2 = 1 +17200576 locktype3 = 1 +17200576 goalCount = 1 +17200577 goalTotal = 1 +17200577 otherCount = 0 +~~~ +~~~ +17201066 DOWN 10 +17201066 0 2048 +17201087 UP 10 +17201087 waslock = 0 +17201086 512 2048 +~~~ +~~~ +~~~ +~~~ +17201094 homeCount = 4 +17201095 waitCount = 0 +17201095 ripCount = 1 +17201096 locktype1 = 0 +17201096 locktype2 = 1 +17201097 locktype3 = 1 +17201097 goalCount = 1 +17201098 goalTotal = 1 +17201098 otherCount = 0 +~~~ +~~~ +17201975 DOWN 10 +17201975 0 2048 +~~~ +~~~ +~~~ +17202002 UP 10 +17202003 waslock = 0 +17202002 512 2048 +~~~ +17202005 homeCount = 4 +17202005 waitCount = 0 +17202005 ripCount = 1 +17202006 locktype1 = 0 +17202006 locktype2 = 1 +17202007 locktype3 = 1 +17202007 goalCount = 1 +17202008 goalTotal = 1 +17202029 otherCount = 0 +~~~ +~~~ +17202166 DOWN 10 +17202166 0 2048 +17202183 UP 10 +17202183 waslock = 0 +17202183 512 2048 +~~~ +~~~ +~~~ +~~~ +17202206 homeCount = 4 +17202207 waitCount = 0 +17202207 ripCount = 1 +17202208 locktype1 = 0 +17202208 locktype2 = 1 +17202209 locktype3 = 1 +17202209 goalCount = 1 +17202210 goalTotal = 1 +17202210 otherCount = 0 +~~~ +~~~ +17202352 DOWN 10 +17202352 0 2048 +~~~ +~~~ +~~~ +17202373 UP 10 +17202373 waslock = 0 +17202372 512 2048 +~~~ +17202375 homeCount = 4 +17202375 waitCount = 0 +17202376 ripCount = 1 +17202376 locktype1 = 0 +17202377 locktype2 = 1 +17202377 locktype3 = 1 +17202378 goalCount = 1 +17202378 goalTotal = 1 +17202378 otherCount = 0 +~~~ +~~~ +17202533 DOWN 10 +17202533 0 2048 +17202545 UP 10 +17202545 waslock = 0 +17202545 512 2048 +~~~ +~~~ +~~~ +~~~ +17202570 homeCount = 4 +17202570 waitCount = 0 +17202571 ripCount = 1 +17202571 locktype1 = 0 +17202572 locktype2 = 1 +17202572 locktype3 = 1 +17202572 goalCount = 1 +17202573 goalTotal = 1 +17202573 otherCount = 0 +~~~ +~~~ +17202723 DOWN 10 +17202723 0 2048 +17202740 UP 10 +17202740 waslock = 0 +17202740 512 2048 +~~~ +~~~ +~~~ +~~~ +17202747 homeCount = 4 +17202747 waitCount = 0 +17202748 ripCount = 1 +17202748 locktype1 = 0 +17202749 locktype2 = 1 +17202749 locktype3 = 1 +17202750 goalCount = 1 +17202750 goalTotal = 1 +17202751 otherCount = 0 +~~~ +~~~ +17202889 DOWN 10 +17202889 0 2048 +~~~ +~~~ +~~~ +~~~ +17202917 homeCount = 4 +17202918 waitCount = 0 +17202918 ripCount = 1 +17202919 locktype1 = 0 +17202919 locktype2 = 1 +17202920 locktype3 = 1 +17202920 goalCount = 1 +17202921 goalTotal = 1 +17202921 otherCount = 0 +~~~ +17202922 UP 10 +17202922 waslock = 0 +17202922 512 2048 +~~~ +17203082 DOWN 10 +17203082 0 2048 +~~~ +~~~ +~~~ +~~~ +17203107 homeCount = 4 +17203107 waitCount = 0 +17203108 ripCount = 1 +17203108 locktype1 = 0 +17203109 locktype2 = 1 +17203109 locktype3 = 1 +17203110 goalCount = 1 +17203110 goalTotal = 1 +17203111 otherCount = 0 +~~~ +17203111 UP 10 +17203112 waslock = 0 +17203111 512 2048 +~~~ +17203454 DOWN 10 +17203454 0 2048 +~~~ +~~~ +~~~ +~~~ +17203476 homeCount = 4 +17203476 waitCount = 0 +17203477 ripCount = 1 +17203477 locktype1 = 0 +17203478 locktype2 = 1 +17203478 locktype3 = 1 +17203479 goalCount = 1 +17203479 goalTotal = 1 +17203480 otherCount = 0 +~~~ +17203503 UP 10 +17203504 waslock = 0 +17203503 512 2048 +~~~ +17203529 DOWN 10 +17203529 0 2048 +~~~ +~~~ +~~~ +~~~ +17203551 homeCount = 4 +17203551 waitCount = 0 +17203552 ripCount = 1 +17203552 locktype1 = 0 +17203553 locktype2 = 1 +17203553 locktype3 = 1 +17203554 goalCount = 1 +17203554 goalTotal = 1 +17203555 otherCount = 0 +~~~ +17204874 UP 12 +17204874 2048 2048 +17205289 DOWN 12 +17205289 0 2048 +17205350 UP 12 +17205350 2048 2048 +17205874 CLICK1 +17205874 CLICK2 +~~~ +~~~ +~~~ +17205897 2048 67110912 +~~~ +17206047 2048 2048 +17209020 DOWN 12 +17209019 0 2048 +17209027 UP 12 +17209027 2048 2048 +~~~ +~~~ +17209045 2048 0 +~~~ +~~~ +17209047 2048 1 +~~~ +~~~ +17209049 2048 3 +~~~ +~~~ +17209051 2048 7 +~~~ +~~~ +17209053 2048 15 +~~~ +~~~ +17209054 2048 31 +~~~ +~~~ +17209056 2048 63 +~~~ +~~~ +17209058 2048 127 +~~~ +~~~ +17209060 2048 255 +17209061 homeCount = 4 +17209061 waitCount = 1 +17209062 ripCount = 1 +17209083 locktype1 = 0 +17209084 locktype2 = 1 +17209084 locktype3 = 1 +17209085 goalCount = 1 +17209085 goalTotal = 1 +17209086 otherCount = 0 +~~~ +17209087 CURRENTGOAL IS [8] +~~~ +17209208 DOWN 12 +17209207 0 255 +17209215 UP 12 +17209215 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209252 homeCount = 4 +17209253 waitCount = 1 +17209253 ripCount = 1 +17209254 locktype1 = 0 +17209254 locktype2 = 1 +17209255 locktype3 = 1 +17209255 goalCount = 1 +17209256 goalTotal = 1 +17209256 otherCount = 0 +~~~ +17209257 CURRENTGOAL IS [8] +~~~ +17209297 DOWN 12 +17209297 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209333 homeCount = 4 +17209333 waitCount = 1 +17209334 ripCount = 1 +17209334 locktype1 = 0 +17209335 locktype2 = 1 +17209335 locktype3 = 1 +17209336 goalCount = 1 +17209336 goalTotal = 1 +17209337 otherCount = 0 +~~~ +17209338 CURRENTGOAL IS [8] +~~~ +17209367 UP 12 +17209367 2048 255 +17209442 DOWN 12 +17209441 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209482 homeCount = 4 +17209482 waitCount = 1 +17209483 ripCount = 1 +17209483 locktype1 = 0 +17209484 locktype2 = 1 +17209484 locktype3 = 1 +17209485 goalCount = 1 +17209485 goalTotal = 1 +17209486 otherCount = 0 +~~~ +17209487 CURRENTGOAL IS [8] +~~~ +17209521 UP 12 +17209521 2048 255 +17209548 DOWN 12 +17209548 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209584 homeCount = 4 +17209584 waitCount = 1 +17209585 ripCount = 1 +17209585 locktype1 = 0 +17209586 locktype2 = 1 +17209586 locktype3 = 1 +17209587 goalCount = 1 +17209587 goalTotal = 1 +17209588 otherCount = 0 +~~~ +17209589 CURRENTGOAL IS [8] +~~~ +17214096 UP 3 +17214096 4 255 +~~~ +~~~ +17214382 DOWN 3 +17214382 0 255 +~~~ +~~~ +17214406 0 254 +~~~ +~~~ +17214408 0 252 +~~~ +~~~ +17214410 0 248 +~~~ +~~~ +17214412 0 240 +~~~ +~~~ +17214413 0 224 +~~~ +~~~ +17214415 0 192 +~~~ +17214417 4 192 +~~~ +~~~ +17214418 4 128 +~~~ +17214419 4 0 +~~~ +~~~ +17214421 4 512 +17214422 homeCount = 4 +17214422 waitCount = 1 +17214423 ripCount = 1 +17214444 locktype1 = 0 +17214444 locktype2 = 1 +17214445 locktype3 = 1 +17214445 goalCount = 1 +17214446 goalTotal = 1 +17214446 otherCount = 1 +~~~ +17216429 DOWN 3 +17216429 0 512 +17221376 UP 5 +17221376 16 512 +~~~ +17221403 WHITENOISE +~~~ +~~~ +~~~ +17221405 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17221498 DOWN 5 +17221498 0 0 +17221556 16 0 +17221956 DOWN 5 +17221956 0 0 +17221991 16 0 +17222305 DOWN 5 +17222305 0 0 +17222315 16 0 +17224674 DOWN 5 +17224674 0 0 +17229229 512 0 +17229265 0 0 +17229285 512 0 +17229569 0 0 +17229641 512 0 +17230107 0 0 +17230128 512 0 +17230800 0 0 +17230861 512 0 +17230891 0 0 +17241365 UP 1 +17241365 1 0 +17243735 DOWN 1 +17243735 0 0 +17243748 1 0 +17243765 DOWN 1 +17243765 0 0 +17246403 LOCKEND +~~~ +~~~ +~~~ +17246427 0 512 +17248354 UP 10 +17248354 waslock = 0 +17248354 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17248382 512 16777728 +~~~ +17248431 DOWN 10 +17248431 0 16777728 +~~~ +~~~ +17248459 0 16778752 +~~~ +~~~ +17248461 0 16778240 +17248462 homeCount = 5 +17248462 waitCount = 1 +17248463 ripCount = 1 +17248463 locktype1 = 0 +17248464 locktype2 = 2 +17248464 locktype3 = 1 +17248465 goalCount = 1 +17248465 goalTotal = 1 +17248466 otherCount = 1 +~~~ +17248532 0 1024 +17248648 UP 10 +17248648 waslock = 0 +17248648 512 1024 +~~~ +17252377 DOWN 10 +17252377 0 1024 +~~~ +~~~ +~~~ +~~~ +17252397 homeCount = 5 +17252398 waitCount = 1 +17252399 ripCount = 1 +17252399 locktype1 = 0 +17252400 locktype2 = 2 +17252400 locktype3 = 1 +17252400 goalCount = 1 +17252401 goalTotal = 1 +17252401 otherCount = 1 +~~~ +17252421 UP 10 +17252421 waslock = 0 +17252421 512 1024 +~~~ +17252951 DOWN 10 +17252951 0 1024 +~~~ +~~~ +~~~ +~~~ +17252980 homeCount = 5 +17252980 waitCount = 1 +17252981 ripCount = 1 +17252981 locktype1 = 0 +17252981 locktype2 = 2 +17252982 locktype3 = 1 +17252982 goalCount = 1 +17252983 goalTotal = 1 +17252983 otherCount = 1 +~~~ +17254005 UP 11 +17254004 1024 1024 +17254582 DOWN 11 +17254582 0 1024 +17254724 UP 11 +17254724 1024 1024 +17255505 BEEP1 +17255505 BEEP2 +~~~ +~~~ +~~~ +17255528 1024 33555456 +~~~ +17255678 1024 1024 +17260300 DOWN 11 +17260300 0 1024 +~~~ +~~~ +17260324 0 0 +~~~ +~~~ +17260326 0 1 +~~~ +~~~ +17260328 0 3 +~~~ +~~~ +17260330 0 7 +~~~ +~~~ +17260331 0 15 +~~~ +~~~ +17260333 0 31 +~~~ +~~~ +17260335 0 63 +~~~ +~~~ +17260337 0 127 +~~~ +~~~ +17260339 0 255 +17260340 homeCount = 5 +17260340 waitCount = 1 +17260341 ripCount = 2 +17260341 locktype1 = 0 +17260342 locktype2 = 2 +17260363 locktype3 = 1 +17260363 goalCount = 1 +17260364 goalTotal = 1 +17260364 otherCount = 1 +~~~ +17260365 CURRENTGOAL IS [8] +~~~ +17260366 UP 11 +17260366 1024 255 +17260390 DOWN 11 +17260390 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17260428 homeCount = 5 +17260428 waitCount = 1 +17260429 ripCount = 2 +17260429 locktype1 = 0 +17260430 locktype2 = 2 +17260430 locktype3 = 1 +17260431 goalCount = 1 +17260431 goalTotal = 1 +17260432 otherCount = 1 +~~~ +17260433 CURRENTGOAL IS [8] +~~~ +17262731 UP 7 +17262731 64 255 +~~~ +~~~ +17262993 DOWN 7 +17262993 0 255 +~~~ +~~~ +17263010 0 254 +~~~ +~~~ +17263012 0 252 +~~~ +~~~ +17263013 0 248 +~~~ +~~~ +17263015 0 240 +~~~ +~~~ +17263017 0 224 +~~~ +~~~ +17263019 0 192 +~~~ +~~~ +17263021 0 128 +~~~ +~~~ +17263023 0 0 +~~~ +~~~ +17263024 0 512 +17263025 homeCount = 5 +17263026 waitCount = 1 +17263026 ripCount = 2 +17263027 locktype1 = 0 +17263047 locktype2 = 2 +17263048 locktype3 = 1 +17263048 goalCount = 1 +17263049 goalTotal = 1 +17263049 otherCount = 2 +~~~ +17263101 64 512 +17263724 DOWN 7 +17263724 0 512 +17267314 UP 10 +17267315 waslock = 0 +17267314 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17267339 512 16777728 +~~~ +17267489 512 512 +17267798 DOWN 10 +17267798 0 512 +~~~ +~~~ +17267824 0 1536 +~~~ +~~~ +17267826 0 1024 +17267827 homeCount = 6 +17267827 waitCount = 1 +17267828 ripCount = 2 +17267828 locktype1 = 0 +17267829 locktype2 = 2 +17267829 locktype3 = 1 +17267830 goalCount = 1 +17267830 goalTotal = 1 +17267831 otherCount = 2 +~~~ +17267852 UP 10 +17267852 waslock = 0 +17267852 512 1024 +~~~ +17271549 DOWN 10 +17271549 0 1024 +~~~ +~~~ +~~~ +~~~ +17271577 homeCount = 6 +17271577 waitCount = 1 +17271578 ripCount = 2 +17271578 locktype1 = 0 +17271579 locktype2 = 2 +17271579 locktype3 = 1 +17271580 goalCount = 1 +17271580 goalTotal = 1 +17271580 otherCount = 2 +~~~ +17273398 UP 11 +17273398 1024 1024 +17275399 BEEP1 +17275399 BEEP2 +~~~ +~~~ +~~~ +17275425 1024 33555456 +~~~ +17275575 1024 1024 +17280164 DOWN 11 +17280164 0 1024 +~~~ +~~~ +17280183 0 0 +~~~ +~~~ +17280185 0 1 +~~~ +~~~ +17280187 0 3 +~~~ +~~~ +17280189 0 7 +~~~ +~~~ +17280190 0 15 +~~~ +~~~ +17280192 0 31 +~~~ +~~~ +17280194 0 63 +~~~ +~~~ +17280196 0 127 +~~~ +~~~ +17280198 0 255 +17280199 homeCount = 6 +17280199 waitCount = 1 +17280200 ripCount = 3 +17280200 locktype1 = 0 +17280201 locktype2 = 2 +17280222 locktype3 = 1 +17280222 goalCount = 1 +17280223 goalTotal = 1 +17280223 otherCount = 2 +~~~ +17280224 CURRENTGOAL IS [8] +~~~ +17283276 UP 6 +17283276 32 255 +~~~ +~~~ +17287545 DOWN 6 +17287545 0 255 +~~~ +~~~ +17287566 0 254 +~~~ +~~~ +17287568 0 252 +~~~ +~~~ +17287570 0 248 +~~~ +~~~ +17287572 0 240 +~~~ +~~~ +17287574 0 224 +~~~ +~~~ +17287576 0 192 +~~~ +~~~ +17287577 0 128 +~~~ +~~~ +17287579 0 0 +~~~ +~~~ +17287581 0 512 +17287582 homeCount = 6 +17287583 waitCount = 1 +17287583 ripCount = 3 +17287584 locktype1 = 0 +17287584 locktype2 = 2 +17287605 locktype3 = 1 +17287606 goalCount = 1 +17287606 goalTotal = 1 +17287607 otherCount = 3 +~~~ +17292442 UP 10 +17292442 waslock = 0 +17292442 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17292474 512 16777728 +~~~ +17292624 512 512 +17292916 DOWN 10 +17292916 0 512 +~~~ +~~~ +17292940 0 2560 +~~~ +~~~ +17292942 0 2048 +17292943 homeCount = 7 +17292943 waitCount = 1 +17292944 ripCount = 3 +17292944 locktype1 = 0 +17292945 locktype2 = 2 +17292945 locktype3 = 1 +17292946 goalCount = 1 +17292946 goalTotal = 1 +17292947 otherCount = 3 +~~~ +17292968 UP 10 +17292968 waslock = 0 +17292968 512 2048 +~~~ +17295724 DOWN 10 +17295724 0 2048 +~~~ +~~~ +~~~ +~~~ +17295752 homeCount = 7 +17295753 waitCount = 1 +17295753 ripCount = 3 +17295754 locktype1 = 0 +17295754 locktype2 = 2 +17295755 locktype3 = 1 +17295755 goalCount = 1 +17295756 goalTotal = 1 +17295756 otherCount = 3 +~~~ +17297251 UP 12 +17297251 2048 2048 +17298067 DOWN 12 +17298067 0 2048 +17298091 UP 12 +17298090 2048 2048 +17298405 DOWN 12 +17298404 0 2048 +17298448 UP 12 +17298448 2048 2048 +17298503 DOWN 12 +17298503 0 2048 +17298517 UP 12 +17298517 2048 2048 +17298751 CLICK1 +17298751 CLICK2 +~~~ +~~~ +~~~ +17298774 2048 67110912 +~~~ +17298924 2048 2048 +17303723 DOWN 12 +17303723 0 2048 +~~~ +~~~ +17303749 0 0 +~~~ +~~~ +17303751 0 1 +~~~ +~~~ +17303753 0 3 +~~~ +~~~ +17303755 0 7 +~~~ +~~~ +17303757 0 15 +~~~ +~~~ +17303758 0 31 +~~~ +~~~ +17303760 0 63 +~~~ +~~~ +17303762 0 127 +~~~ +~~~ +17303764 0 255 +17303765 homeCount = 7 +17303765 waitCount = 2 +17303766 ripCount = 3 +17303766 locktype1 = 0 +17303767 locktype2 = 2 +17303788 locktype3 = 1 +17303789 goalCount = 1 +17303789 goalTotal = 1 +17303789 otherCount = 3 +~~~ +17303791 CURRENTGOAL IS [8] +~~~ +17306124 UP 3 +17306124 4 255 +~~~ +~~~ +17306596 DOWN 3 +17306596 0 255 +~~~ +~~~ +17306619 0 254 +~~~ +~~~ +17306621 0 252 +~~~ +~~~ +17306623 0 248 +~~~ +~~~ +17306625 0 240 +~~~ +~~~ +17306626 0 224 +~~~ +17306628 4 224 +~~~ +~~~ +17306630 4 192 +~~~ +~~~ +17306631 4 128 +~~~ +17306632 4 0 +~~~ +~~~ +17306634 4 512 +17306635 homeCount = 7 +17306635 waitCount = 2 +17306657 ripCount = 3 +17306657 locktype1 = 0 +17306657 locktype2 = 2 +17306658 locktype3 = 1 +17306658 goalCount = 1 +17306659 goalTotal = 1 +17306659 otherCount = 4 +~~~ +17306899 DOWN 3 +17306899 0 512 +17310805 UP 10 +17310806 waslock = 0 +17310805 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17310836 512 16777728 +~~~ +17310985 512 512 +17311009 DOWN 10 +17311009 0 512 +~~~ +~~~ +17311029 0 2560 +~~~ +~~~ +17311031 0 2048 +17311032 homeCount = 8 +17311033 waitCount = 2 +17311033 ripCount = 3 +17311034 locktype1 = 0 +17311034 locktype2 = 2 +17311034 locktype3 = 1 +17311035 goalCount = 1 +17311035 goalTotal = 1 +17311036 otherCount = 4 +~~~ +17311057 UP 10 +17311058 waslock = 0 +17311057 512 2048 +~~~ +17316712 DOWN 10 +17316712 0 2048 +~~~ +~~~ +~~~ +~~~ +17316732 homeCount = 8 +17316733 waitCount = 2 +17316733 ripCount = 3 +17316734 locktype1 = 0 +17316734 locktype2 = 2 +17316735 locktype3 = 1 +17316735 goalCount = 1 +17316736 goalTotal = 1 +17316736 otherCount = 4 +~~~ +17318338 UP 12 +17318338 2048 2048 +17319026 DOWN 12 +17319026 0 2048 +17319032 UP 12 +17319032 2048 2048 +17319678 DOWN 12 +17319678 0 2048 +17319738 UP 12 +17319738 2048 2048 +17320338 CLICK1 +17320338 CLICK2 +~~~ +~~~ +~~~ +17320363 2048 67110912 +~~~ +17320513 2048 2048 +17326725 DOWN 12 +17326725 0 2048 +~~~ +~~~ +17326751 0 0 +~~~ +~~~ +17326753 0 1 +~~~ +~~~ +17326755 0 3 +~~~ +~~~ +17326757 0 7 +~~~ +~~~ +17326758 0 15 +~~~ +~~~ +17326760 0 31 +~~~ +~~~ +17326762 0 63 +~~~ +~~~ +17326764 0 127 +~~~ +~~~ +17326766 0 255 +17326767 homeCount = 8 +17326767 waitCount = 3 +17326768 ripCount = 3 +17326768 locktype1 = 0 +17326769 locktype2 = 2 +17326790 locktype3 = 1 +17326790 goalCount = 1 +17326791 goalTotal = 1 +17326791 otherCount = 4 +~~~ +17326792 CURRENTGOAL IS [8] +~~~ +17329863 UP 8 +17329863 128 255 +~~~ +~~~ +17329893 outer reward +~~~ +17329893 128 8388863 +~~~ +~~~ +17330172 DOWN 8 +17330172 0 8388863 +~~~ +~~~ +17330190 0 8388862 +~~~ +~~~ +17330192 0 8388860 +~~~ +~~~ +17330194 0 8388856 +~~~ +17330195 128 8388856 +~~~ +~~~ +17330197 128 8388848 +~~~ +~~~ +17330198 128 8388832 +~~~ +~~~ +17330200 128 8388800 +~~~ +17330201 128 8388736 +~~~ +~~~ +17330203 128 8388608 +~~~ +~~~ +17330225 homeCount = 8 +17330226 waitCount = 3 +17330226 ripCount = 3 +17330227 locktype1 = 0 +17330227 locktype2 = 2 +17330228 locktype3 = 1 +17330228 goalCount = 2 +17330229 goalTotal = 2 +17330229 otherCount = 4 +~~~ +17330230 128 8389120 +17330343 128 512 +17330465 DOWN 8 +17330465 0 512 +17330476 128 512 +17330578 DOWN 8 +17330578 0 512 +17330607 128 512 +17330830 DOWN 8 +17330830 0 512 +17330847 128 512 +17330966 DOWN 8 +17330966 0 512 +17330984 128 512 +17331109 DOWN 8 +17331109 0 512 +17331117 128 512 +17333342 DOWN 8 +17333342 0 512 +17333351 128 512 +17333497 DOWN 8 +17333497 0 512 +17333526 128 512 +17336388 DOWN 8 +17336388 0 512 +17336425 128 512 +17336477 DOWN 8 +17336477 0 512 +17340374 UP 10 +17340375 waslock = 0 +17340374 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17340400 512 16777728 +~~~ +17340550 512 512 +17340693 DOWN 10 +17340693 0 512 +~~~ +~~~ +17340713 0 1536 +~~~ +~~~ +17340715 0 1024 +17340716 homeCount = 9 +17340716 waitCount = 3 +17340717 ripCount = 3 +17340717 locktype1 = 0 +17340718 locktype2 = 2 +17340718 locktype3 = 1 +17340719 goalCount = 2 +17340719 goalTotal = 2 +17340720 otherCount = 4 +~~~ +17340741 UP 10 +17340741 waslock = 0 +17340741 512 1024 +~~~ +17340763 DOWN 10 +17340763 0 1024 +~~~ +~~~ +~~~ +~~~ +17340794 homeCount = 9 +17340795 waitCount = 3 +17340795 ripCount = 3 +17340796 locktype1 = 0 +17340796 locktype2 = 2 +17340797 locktype3 = 1 +17340797 goalCount = 2 +17340798 goalTotal = 2 +17340798 otherCount = 4 +~~~ +17340826 UP 10 +17340826 waslock = 0 +17340826 512 1024 +~~~ +17341139 DOWN 10 +17341139 0 1024 +~~~ +17341164 UP 10 +17341164 waslock = 0 +17341164 512 1024 +~~~ +~~~ +~~~ +17341168 homeCount = 9 +17341168 waitCount = 3 +17341168 ripCount = 3 +17341169 locktype1 = 0 +17341169 locktype2 = 2 +17341170 locktype3 = 1 +17341170 goalCount = 2 +17341171 goalTotal = 2 +17341171 otherCount = 4 +~~~ +~~~ +17341287 DOWN 10 +17341287 0 1024 +~~~ +~~~ +~~~ +~~~ +17341311 homeCount = 9 +17341312 waitCount = 3 +17341312 ripCount = 3 +17341312 locktype1 = 0 +17341313 locktype2 = 2 +17341313 locktype3 = 1 +17341314 goalCount = 2 +17341314 goalTotal = 2 +17341315 otherCount = 4 +~~~ +17341319 UP 10 +17341319 waslock = 0 +17341319 512 1024 +~~~ +17345688 DOWN 10 +17345688 0 1024 +~~~ +~~~ +~~~ +~~~ +17345716 homeCount = 9 +17345716 waitCount = 3 +17345717 ripCount = 3 +17345717 locktype1 = 0 +17345718 locktype2 = 2 +17345718 locktype3 = 1 +17345719 goalCount = 2 +17345719 goalTotal = 2 +17345720 otherCount = 4 +~~~ +17345720 UP 10 +17345721 waslock = 0 +17345720 512 1024 +~~~ +17346020 DOWN 10 +17346020 0 1024 +~~~ +~~~ +~~~ +~~~ +17346050 homeCount = 9 +17346051 waitCount = 3 +17346051 ripCount = 3 +17346052 locktype1 = 0 +17346052 locktype2 = 2 +17346053 locktype3 = 1 +17346053 goalCount = 2 +17346054 goalTotal = 2 +17346054 otherCount = 4 +~~~ +17346061 UP 10 +17346061 waslock = 0 +17346061 512 1024 +~~~ +17346109 DOWN 10 +17346109 0 1024 +~~~ +~~~ +~~~ +~~~ +17346131 homeCount = 9 +17346132 waitCount = 3 +17346132 ripCount = 3 +17346133 locktype1 = 0 +17346133 locktype2 = 2 +17346134 locktype3 = 1 +17346134 goalCount = 2 +17346135 goalTotal = 2 +17346135 otherCount = 4 +~~~ +17348173 UP 11 +17348173 1024 1024 +17348892 DOWN 11 +17348892 0 1024 +17348931 UP 11 +17348931 1024 1024 +17349733 DOWN 11 +17349733 0 1024 +17349791 UP 11 +17349791 1024 1024 +17352368 DOWN 11 +17352368 0 1024 +17352424 UP 11 +17352424 1024 1024 +17353673 BEEP1 +17353673 BEEP2 +~~~ +~~~ +~~~ +17353696 1024 33555456 +~~~ +17353846 1024 1024 +17358269 DOWN 11 +17358269 0 1024 +~~~ +~~~ +17358285 0 0 +~~~ +~~~ +17358286 0 1 +~~~ +~~~ +17358288 0 3 +~~~ +~~~ +17358290 0 7 +~~~ +~~~ +17358292 0 15 +~~~ +~~~ +17358294 0 31 +~~~ +~~~ +17358295 0 63 +~~~ +~~~ +17358297 0 127 +~~~ +~~~ +17358299 0 255 +17358300 homeCount = 9 +17358301 waitCount = 3 +17358301 ripCount = 4 +17358302 locktype1 = 0 +17358302 locktype2 = 2 +17358323 locktype3 = 1 +17358323 goalCount = 2 +17358324 goalTotal = 2 +17358324 otherCount = 4 +~~~ +17358325 CURRENTGOAL IS [8] +~~~ +17365570 UP 5 +17365570 16 255 +~~~ +~~~ +17365592 DOWN 5 +17365592 0 255 +~~~ +~~~ +17365610 0 254 +~~~ +~~~ +17365612 0 252 +~~~ +~~~ +17365613 0 248 +~~~ +~~~ +17365615 0 240 +~~~ +~~~ +17365617 0 224 +~~~ +~~~ +17365619 0 192 +~~~ +~~~ +17365621 0 128 +~~~ +~~~ +17365623 0 0 +~~~ +~~~ +17365624 0 512 +17365625 homeCount = 9 +17365626 waitCount = 3 +17365626 ripCount = 4 +17365627 locktype1 = 0 +17365627 locktype2 = 2 +17365648 locktype3 = 1 +17365649 goalCount = 2 +17365649 goalTotal = 2 +17365650 otherCount = 5 +~~~ +17365781 16 512 +17365998 DOWN 5 +17365998 0 512 +17366057 16 512 +17366358 DOWN 5 +17366358 0 512 +17370017 UP 10 +17370017 waslock = 0 +17370016 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17370044 512 16777728 +~~~ +17370086 DOWN 10 +17370086 0 16777728 +17370102 UP 10 +17370102 waslock = 0 +17370102 512 16777728 +~~~ +~~~ +17370109 512 16779776 +~~~ +~~~ +17370110 512 16779264 +17370111 homeCount = 10 +17370112 waitCount = 3 +17370112 ripCount = 4 +17370113 locktype1 = 0 +17370113 locktype2 = 2 +17370114 locktype3 = 1 +17370114 goalCount = 2 +17370115 goalTotal = 2 +17370115 otherCount = 5 +~~~ +~~~ +17370194 512 2048 +17370314 DOWN 10 +17370314 0 2048 +~~~ +~~~ +~~~ +~~~ +17370342 homeCount = 10 +17370342 waitCount = 3 +17370343 ripCount = 4 +17370343 locktype1 = 0 +17370344 locktype2 = 2 +17370344 locktype3 = 1 +17370345 goalCount = 2 +17370345 goalTotal = 2 +17370346 otherCount = 5 +~~~ +17370349 UP 10 +17370350 waslock = 0 +17370349 512 2048 +~~~ +17375317 DOWN 10 +17375317 0 2048 +~~~ +~~~ +~~~ +~~~ +17375343 homeCount = 10 +17375343 waitCount = 3 +17375344 ripCount = 4 +17375344 locktype1 = 0 +17375345 locktype2 = 2 +17375345 locktype3 = 1 +17375346 goalCount = 2 +17375346 goalTotal = 2 +17375347 otherCount = 5 +~~~ +17376808 UP 12 +17376808 2048 2048 +17377545 DOWN 12 +17377545 0 2048 +17377568 UP 12 +17377568 2048 2048 +17377991 DOWN 12 +17377991 0 2048 +17378027 UP 12 +17378027 2048 2048 +17378035 DOWN 12 +17378035 0 2048 +17378077 UP 12 +17378077 2048 2048 +17379308 CLICK1 +17379308 CLICK2 +~~~ +~~~ +~~~ +17379331 2048 67110912 +~~~ +17379481 2048 2048 +17385850 DOWN 12 +17385850 0 2048 +~~~ +~~~ +17385870 0 0 +~~~ +~~~ +17385872 0 1 +~~~ +~~~ +17385874 0 3 +~~~ +~~~ +17385876 0 7 +~~~ +~~~ +17385878 0 15 +~~~ +~~~ +17385879 0 31 +~~~ +~~~ +17385881 0 63 +~~~ +~~~ +17385883 0 127 +~~~ +~~~ +17385885 0 255 +17385886 homeCount = 10 +17385886 waitCount = 4 +17385887 ripCount = 4 +17385887 locktype1 = 0 +17385888 locktype2 = 2 +17385909 locktype3 = 1 +17385910 goalCount = 2 +17385910 goalTotal = 2 +17385911 otherCount = 5 +~~~ +17385912 CURRENTGOAL IS [8] +~~~ +17388562 UP 4 +17388562 8 255 +~~~ +~~~ +17388885 DOWN 4 +17388885 0 255 +~~~ +~~~ +17388905 0 254 +~~~ +~~~ +17388907 0 252 +~~~ +~~~ +17388909 0 248 +~~~ +~~~ +17388911 0 240 +~~~ +~~~ +17388913 0 224 +~~~ +~~~ +17388915 0 192 +~~~ +~~~ +17388916 0 128 +~~~ +~~~ +17388918 0 0 +~~~ +~~~ +17388920 0 512 +17388921 homeCount = 10 +17388922 waitCount = 4 +17388922 ripCount = 4 +17388923 locktype1 = 0 +17388923 locktype2 = 2 +17388944 locktype3 = 1 +17388945 goalCount = 2 +17388945 goalTotal = 2 +17388946 otherCount = 6 +~~~ +17388946 8 512 +17390803 DOWN 4 +17390803 0 512 +17390805 8 512 +17390813 DOWN 4 +17390813 0 512 +17390818 8 512 +17392370 DOWN 4 +17392370 0 512 +17392384 8 512 +17392555 DOWN 4 +17392555 0 512 +17392566 8 512 +17392739 DOWN 4 +17392739 0 512 +17392749 8 512 +17393053 DOWN 4 +17393053 0 512 +17397905 UP 10 +17397905 waslock = 0 +17397905 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17397935 512 16777728 +~~~ +17397959 DOWN 10 +17397959 0 16777728 +~~~ +~~~ +17397988 0 16778752 +~~~ +~~~ +17397989 0 16778240 +17397990 homeCount = 11 +17397991 waitCount = 4 +17397991 ripCount = 4 +17397992 locktype1 = 0 +17397992 locktype2 = 2 +17397993 locktype3 = 1 +17397993 goalCount = 2 +17397994 goalTotal = 2 +17397994 otherCount = 6 +~~~ +17398015 UP 10 +17398015 waslock = 0 +17398015 512 16778240 +~~~ +17398085 512 1024 +17398135 DOWN 10 +17398135 0 1024 +~~~ +~~~ +~~~ +~~~ +17398161 homeCount = 11 +17398161 waitCount = 4 +17398162 ripCount = 4 +17398162 locktype1 = 0 +17398163 locktype2 = 2 +17398163 locktype3 = 1 +17398164 goalCount = 2 +17398164 goalTotal = 2 +17398165 otherCount = 6 +~~~ +17398199 UP 10 +17398200 waslock = 0 +17398199 512 1024 +~~~ +17401566 DOWN 10 +17401566 0 1024 +~~~ +~~~ +~~~ +~~~ +17401591 homeCount = 11 +17401591 waitCount = 4 +17401592 ripCount = 4 +17401592 locktype1 = 0 +17401593 locktype2 = 2 +17401593 locktype3 = 1 +17401594 goalCount = 2 +17401594 goalTotal = 2 +17401595 otherCount = 6 +~~~ +17401630 UP 10 +17401630 waslock = 0 +17401630 512 1024 +17401646 DOWN 10 +17401646 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +17401673 homeCount = 11 +17401673 waitCount = 4 +17401674 ripCount = 4 +17401674 locktype1 = 0 +17401674 locktype2 = 2 +17401675 locktype3 = 1 +17401675 goalCount = 2 +17401676 goalTotal = 2 +17401676 otherCount = 6 +~~~ +17403114 UP 11 +17403114 1024 1024 +17403966 DOWN 11 +17403966 0 1024 +17404015 UP 11 +17404015 1024 1024 +17404028 DOWN 11 +17404028 0 1024 +17404049 UP 11 +17404049 1024 1024 +17405538 DOWN 11 +17405538 0 1024 +17405561 UP 11 +17405561 1024 1024 +17407114 BEEP1 +17407114 BEEP2 +~~~ +~~~ +~~~ +17407139 1024 33555456 +~~~ +17407289 1024 1024 +17411324 DOWN 11 +17411324 0 1024 +17411329 UP 11 +17411329 1024 1024 +~~~ +~~~ +17411346 1024 0 +~~~ +~~~ +17411348 1024 1 +~~~ +~~~ +17411350 1024 3 +~~~ +~~~ +17411352 1024 7 +~~~ +~~~ +17411353 1024 15 +~~~ +~~~ +17411355 1024 31 +~~~ +~~~ +17411357 1024 63 +~~~ +~~~ +17411359 1024 127 +~~~ +~~~ +17411361 1024 255 +17411362 homeCount = 11 +17411362 waitCount = 4 +17411363 ripCount = 5 +17411384 locktype1 = 0 +17411384 locktype2 = 2 +17411385 locktype3 = 1 +17411385 goalCount = 2 +17411386 goalTotal = 2 +17411386 otherCount = 6 +~~~ +17411387 CURRENTGOAL IS [8] +~~~ +17411388 DOWN 11 +17411388 0 255 +17411400 UP 11 +17411400 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411443 homeCount = 11 +17411444 waitCount = 4 +17411444 ripCount = 5 +17411445 locktype1 = 0 +17411445 locktype2 = 2 +17411446 locktype3 = 1 +17411446 goalCount = 2 +17411447 goalTotal = 2 +17411447 otherCount = 6 +~~~ +17411448 CURRENTGOAL IS [8] +~~~ +17411594 DOWN 11 +17411594 0 255 +17411605 UP 11 +17411605 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411634 homeCount = 11 +17411635 waitCount = 4 +17411636 ripCount = 5 +17411636 locktype1 = 0 +17411637 locktype2 = 2 +17411637 locktype3 = 1 +17411638 goalCount = 2 +17411638 goalTotal = 2 +17411638 otherCount = 6 +~~~ +17411640 CURRENTGOAL IS [8] +~~~ +17411643 DOWN 11 +17411643 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411684 UP 11 +17411684 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411695 homeCount = 11 +17411696 waitCount = 4 +17411696 ripCount = 5 +17411697 locktype1 = 0 +17411697 locktype2 = 2 +17411698 locktype3 = 1 +17411698 goalCount = 2 +17411699 goalTotal = 2 +17411699 otherCount = 6 +~~~ +17411700 CURRENTGOAL IS [8] +~~~ +17411725 DOWN 11 +17411725 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411763 homeCount = 11 +17411764 waitCount = 4 +17411765 ripCount = 5 +17411765 locktype1 = 0 +17411766 locktype2 = 2 +17411766 locktype3 = 1 +17411766 goalCount = 2 +17411767 goalTotal = 2 +17411767 otherCount = 6 +~~~ +17411769 CURRENTGOAL IS [8] +~~~ +17414174 UP 8 +17414174 128 255 +~~~ +~~~ +17414201 outer reward +~~~ +17414202 128 8388863 +~~~ +~~~ +17414479 DOWN 8 +17414479 0 8388863 +17414498 128 8388863 +~~~ +~~~ +17414500 128 8388862 +~~~ +~~~ +17414502 128 8388860 +~~~ +~~~ +17414503 128 8388856 +~~~ +~~~ +17414505 128 8388848 +~~~ +~~~ +17414507 128 8388832 +~~~ +~~~ +17414509 128 8388800 +~~~ +~~~ +17414511 128 8388736 +~~~ +~~~ +17414513 128 8388608 +~~~ +~~~ +17414514 128 8389120 +17414536 homeCount = 11 +17414537 waitCount = 4 +17414537 ripCount = 5 +17414537 locktype1 = 0 +17414538 locktype2 = 2 +17414538 locktype3 = 1 +17414539 goalCount = 3 +17414539 goalTotal = 3 +17414540 otherCount = 6 +~~~ +17414651 128 512 +17414876 DOWN 8 +17414876 0 512 +17414889 128 512 +17421666 DOWN 8 +17421666 0 512 +17426251 UP 10 +17426251 waslock = 0 +17426251 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17426278 512 16777728 +~~~ +17426428 512 512 +17426438 DOWN 10 +17426438 0 512 +~~~ +~~~ +17426454 0 1536 +~~~ +~~~ +17426456 0 1024 +17426457 homeCount = 12 +17426458 waitCount = 4 +17426458 ripCount = 5 +17426459 locktype1 = 0 +17426459 locktype2 = 2 +17426460 locktype3 = 1 +17426460 goalCount = 3 +17426461 goalTotal = 3 +17426461 otherCount = 6 +~~~ +17426536 UP 10 +17426537 waslock = 0 +17426536 512 1024 +~~~ +17430663 DOWN 10 +17430663 0 1024 +~~~ +~~~ +~~~ +~~~ +17430685 homeCount = 12 +17430685 waitCount = 4 +17430686 ripCount = 5 +17430686 locktype1 = 0 +17430687 locktype2 = 2 +17430687 locktype3 = 1 +17430688 goalCount = 3 +17430688 goalTotal = 3 +17430689 otherCount = 6 +~~~ +17432753 UP 11 +17432753 1024 1024 +17433614 DOWN 11 +17433614 0 1024 +17433672 UP 11 +17433672 1024 1024 +17434770 DOWN 11 +17434770 0 1024 +17434790 UP 11 +17434790 1024 1024 +17437253 DOWN 11 +17437253 0 1024 +17437320 UP 11 +17437320 1024 1024 +17437753 BEEP1 +17437753 BEEP2 +~~~ +~~~ +~~~ +17437773 1024 33555456 +~~~ +17437923 1024 1024 +17443197 DOWN 11 +17443197 0 1024 +~~~ +~~~ +17443221 0 0 +~~~ +~~~ +17443222 0 1 +~~~ +~~~ +17443224 0 3 +~~~ +~~~ +17443226 0 7 +~~~ +~~~ +17443228 0 15 +~~~ +~~~ +17443230 0 31 +~~~ +~~~ +17443232 0 63 +~~~ +~~~ +17443233 0 127 +~~~ +17443235 UP 11 +17443235 1024 127 +~~~ +17443236 homeCount = 12 +17443237 waitCount = 4 +17443237 ripCount = 6 +17443238 locktype1 = 0 +17443259 locktype2 = 2 +17443259 locktype3 = 1 +17443260 goalCount = 3 +17443260 goalTotal = 3 +17443261 otherCount = 6 +~~~ +17443262 CURRENTGOAL IS [8] +~~~ +17443262 1024 255 +17443287 DOWN 11 +17443287 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17443317 homeCount = 12 +17443318 waitCount = 4 +17443318 ripCount = 6 +17443319 locktype1 = 0 +17443319 locktype2 = 2 +17443320 locktype3 = 1 +17443320 goalCount = 3 +17443320 goalTotal = 3 +17443321 otherCount = 6 +~~~ +17443322 CURRENTGOAL IS [8] +~~~ +17443352 UP 11 +17443352 1024 255 +17443995 DOWN 11 +17443995 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444028 homeCount = 12 +17444028 waitCount = 4 +17444029 ripCount = 6 +17444029 locktype1 = 0 +17444030 locktype2 = 2 +17444030 locktype3 = 1 +17444031 goalCount = 3 +17444031 goalTotal = 3 +17444032 otherCount = 6 +~~~ +17444033 CURRENTGOAL IS [8] +~~~ +17444354 UP 11 +17444354 1024 255 +17444599 DOWN 11 +17444599 0 255 +17444616 UP 11 +17444616 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444637 homeCount = 12 +17444637 waitCount = 4 +17444638 ripCount = 6 +17444638 locktype1 = 0 +17444639 locktype2 = 2 +17444639 locktype3 = 1 +17444640 goalCount = 3 +17444640 goalTotal = 3 +17444641 otherCount = 6 +~~~ +17444642 CURRENTGOAL IS [8] +~~~ +17444645 DOWN 11 +17444645 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444702 homeCount = 12 +17444702 waitCount = 4 +17444703 ripCount = 6 +17444703 locktype1 = 0 +17444704 locktype2 = 2 +17444704 locktype3 = 1 +17444705 goalCount = 3 +17444705 goalTotal = 3 +17444706 otherCount = 6 +~~~ +17444707 CURRENTGOAL IS [8] +~~~ +17448341 UP 8 +17448341 128 255 +~~~ +~~~ +17448364 outer reward +~~~ +17448364 128 8388863 +~~~ +~~~ +17448537 DOWN 8 +17448537 0 8388863 +~~~ +~~~ +17448561 0 8388862 +~~~ +~~~ +17448563 0 8388860 +~~~ +~~~ +17448564 0 8388856 +~~~ +~~~ +17448566 0 8388848 +~~~ +~~~ +17448568 0 8388832 +~~~ +~~~ +17448570 0 8388800 +~~~ +~~~ +17448572 0 8388736 +~~~ +~~~ +17448573 0 8388608 +~~~ +~~~ +17448575 0 8389120 +17448576 homeCount = 12 +17448577 waitCount = 4 +17448598 ripCount = 6 +17448598 locktype1 = 0 +17448599 locktype2 = 2 +17448599 locktype3 = 1 +17448600 goalCount = 4 +17448600 goalTotal = 4 +17448601 otherCount = 6 +~~~ +17448601 128 8389120 +17448814 128 512 +17448949 DOWN 8 +17448949 0 512 +17448983 128 512 +17449076 DOWN 8 +17449076 0 512 +17449099 128 512 +17449201 DOWN 8 +17449201 0 512 +17449231 128 512 +17449326 DOWN 8 +17449326 0 512 +17449363 128 512 +17449462 DOWN 8 +17449462 0 512 +17449484 128 512 +17454977 DOWN 8 +17454977 0 512 +17461792 UP 10 +17461793 waslock = 0 +17461792 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17461817 512 16777728 +~~~ +17461948 DOWN 10 +17461948 0 16777728 +17461967 0 512 +~~~ +~~~ +17461972 0 2560 +~~~ +~~~ +17461974 0 2048 +17461975 homeCount = 13 +17461975 waitCount = 4 +17461976 ripCount = 6 +17461976 locktype1 = 0 +17461977 locktype2 = 2 +17461977 locktype3 = 1 +17461978 goalCount = 4 +17461978 goalTotal = 4 +17461979 otherCount = 6 +~~~ +17462000 UP 10 +17462000 waslock = 0 +17462000 512 2048 +~~~ +17465243 DOWN 10 +17465243 0 2048 +~~~ +~~~ +~~~ +~~~ +17465265 homeCount = 13 +17465266 waitCount = 4 +17465266 ripCount = 6 +17465267 locktype1 = 0 +17465267 locktype2 = 2 +17465268 locktype3 = 1 +17465268 goalCount = 4 +17465269 goalTotal = 4 +17465269 otherCount = 6 +~~~ +17465307 UP 10 +17465308 waslock = 0 +17465307 512 2048 +17465331 DOWN 10 +17465331 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17465361 homeCount = 13 +17465362 waitCount = 4 +17465362 ripCount = 6 +17465362 locktype1 = 0 +17465363 locktype2 = 2 +17465363 locktype3 = 1 +17465364 goalCount = 4 +17465364 goalTotal = 4 +17465365 otherCount = 6 +~~~ +17466887 UP 12 +17466887 2048 2048 +17466953 DOWN 12 +17466953 0 2048 +17466965 UP 12 +17466965 2048 2048 +17467866 DOWN 12 +17467866 0 2048 +17467881 UP 12 +17467881 2048 2048 +17468821 DOWN 12 +17468821 0 2048 +17468850 UP 12 +17468850 2048 2048 +17470138 CLICK1 +17470138 CLICK2 +~~~ +~~~ +~~~ +17470157 2048 67110912 +~~~ +17470307 2048 2048 +17478019 DOWN 12 +17478019 0 2048 +~~~ +~~~ +17478045 0 0 +~~~ +~~~ +17478047 0 1 +~~~ +~~~ +17478049 0 3 +~~~ +~~~ +17478051 0 7 +~~~ +~~~ +17478052 0 15 +~~~ +~~~ +17478054 0 31 +~~~ +~~~ +17478056 0 63 +~~~ +~~~ +17478058 0 127 +~~~ +~~~ +17478060 0 255 +17478061 homeCount = 13 +17478061 waitCount = 5 +17478062 ripCount = 6 +17478062 locktype1 = 0 +17478063 locktype2 = 2 +17478084 locktype3 = 1 +17478084 goalCount = 4 +17478085 goalTotal = 4 +17478085 otherCount = 6 +~~~ +17478086 CURRENTGOAL IS [8] +~~~ +17483323 UP 8 +17483323 128 255 +~~~ +~~~ +17483350 outer reward +~~~ +17483351 128 8388863 +~~~ +~~~ +17483557 DOWN 8 +17483557 0 8388863 +~~~ +~~~ +17483578 0 8388862 +~~~ +~~~ +17483580 0 8388860 +~~~ +~~~ +17483582 0 8388856 +~~~ +~~~ +17483584 0 8388848 +~~~ +~~~ +17483585 0 8388832 +~~~ +~~~ +17483587 0 8388800 +~~~ +~~~ +17483589 0 8388736 +~~~ +~~~ +17483591 0 8388608 +~~~ +~~~ +17483593 0 8389120 +17483594 homeCount = 13 +17483594 waitCount = 5 +17483616 ripCount = 6 +17483616 locktype1 = 0 +17483616 locktype2 = 2 +17483617 locktype3 = 1 +17483617 goalCount = 5 +17483618 goalTotal = 5 +17483618 otherCount = 6 +~~~ +17483619 128 8389120 +17483800 128 512 +17483845 DOWN 8 +17483845 0 512 +17483863 128 512 +17483965 DOWN 8 +17483965 0 512 +17483990 128 512 +17484079 DOWN 8 +17484079 0 512 +17484114 128 512 +17484192 DOWN 8 +17484192 0 512 +17484238 128 512 +17484318 DOWN 8 +17484318 0 512 +17484367 128 512 +17484450 DOWN 8 +17484450 0 512 +17484491 128 512 +17486711 DOWN 8 +17486711 0 512 +17486727 128 512 +17489526 DOWN 8 +17489526 0 512 +17489546 128 512 +17489608 DOWN 8 +17489608 0 512 +17493929 UP 10 +17493929 waslock = 0 +17493929 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17493954 512 16777728 +~~~ +17494104 512 512 +17494144 DOWN 10 +17494144 0 512 +17494153 UP 10 +17494153 waslock = 0 +17494153 512 512 +~~~ +~~~ +17494169 512 1536 +~~~ +~~~ +17494171 512 1024 +17494172 homeCount = 14 +17494172 waitCount = 5 +17494173 ripCount = 6 +17494173 locktype1 = 0 +17494174 locktype2 = 2 +17494174 locktype3 = 1 +17494175 goalCount = 5 +17494175 goalTotal = 5 +17494176 otherCount = 6 +~~~ +~~~ +17497685 DOWN 10 +17497685 0 1024 +~~~ +~~~ +~~~ +~~~ +17497711 homeCount = 14 +17497712 waitCount = 5 +17497712 ripCount = 6 +17497713 locktype1 = 0 +17497713 locktype2 = 2 +17497714 locktype3 = 1 +17497714 goalCount = 5 +17497715 goalTotal = 5 +17497715 otherCount = 6 +~~~ +17497748 UP 10 +17497748 waslock = 0 +17497748 512 1024 +17497761 DOWN 10 +17497761 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +17497787 homeCount = 14 +17497788 waitCount = 5 +17497788 ripCount = 6 +17497789 locktype1 = 0 +17497789 locktype2 = 2 +17497790 locktype3 = 1 +17497790 goalCount = 5 +17497790 goalTotal = 5 +17497791 otherCount = 6 +~~~ +17499720 UP 11 +17499720 1024 1024 +17501721 BEEP1 +17501721 BEEP2 +~~~ +~~~ +~~~ +17501741 1024 33555456 +~~~ +17501890 1024 1024 +17506486 DOWN 11 +17506486 0 1024 +17506499 UP 11 +17506499 1024 1024 +~~~ +~~~ +17506521 1024 0 +~~~ +~~~ +17506523 1024 1 +~~~ +~~~ +17506525 1024 3 +~~~ +~~~ +17506527 1024 7 +~~~ +~~~ +17506529 1024 15 +~~~ +~~~ +17506530 1024 31 +~~~ +~~~ +17506532 1024 63 +~~~ +~~~ +17506534 1024 127 +~~~ +~~~ +17506536 1024 255 +17506537 homeCount = 14 +17506537 waitCount = 5 +17506538 ripCount = 7 +17506559 locktype1 = 0 +17506560 locktype2 = 2 +17506560 locktype3 = 1 +17506561 goalCount = 5 +17506561 goalTotal = 5 +17506561 otherCount = 6 +~~~ +17506563 CURRENTGOAL IS [8] +~~~ +17506564 DOWN 11 +17506564 0 255 +17506596 UP 11 +17506596 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17506617 homeCount = 14 +17506617 waitCount = 5 +17506618 ripCount = 7 +17506618 locktype1 = 0 +17506619 locktype2 = 2 +17506619 locktype3 = 1 +17506620 goalCount = 5 +17506620 goalTotal = 5 +17506621 otherCount = 6 +~~~ +17506622 CURRENTGOAL IS [8] +~~~ +17509072 DOWN 11 +17509072 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17509109 homeCount = 14 +17509110 waitCount = 5 +17509110 ripCount = 7 +17509111 locktype1 = 0 +17509111 locktype2 = 2 +17509112 locktype3 = 1 +17509112 goalCount = 5 +17509113 goalTotal = 5 +17509113 otherCount = 6 +~~~ +17509114 CURRENTGOAL IS [8] +~~~ +17512927 UP 8 +17512927 128 255 +~~~ +~~~ +17512955 outer reward +~~~ +17512955 128 8388863 +~~~ +~~~ +17513181 DOWN 8 +17513181 0 8388863 +~~~ +~~~ +17513203 0 8388862 +~~~ +~~~ +17513205 0 8388860 +~~~ +~~~ +17513207 0 8388856 +~~~ +~~~ +17513209 0 8388848 +~~~ +~~~ +17513211 0 8388832 +~~~ +~~~ +17513213 0 8388800 +~~~ +~~~ +17513214 0 8388736 +~~~ +~~~ +17513216 0 8388608 +~~~ +~~~ +17513218 0 8389120 +17513219 homeCount = 14 +17513220 waitCount = 5 +17513240 ripCount = 7 +17513241 locktype1 = 0 +17513241 locktype2 = 2 +17513242 locktype3 = 1 +17513242 goalCount = 6 +17513243 goalTotal = 6 +17513243 otherCount = 6 +~~~ +17513244 128 8389120 +17513405 128 512 +17513479 DOWN 8 +17513479 0 512 +17513494 128 512 +17513590 DOWN 8 +17513590 0 512 +17513629 128 512 +17513711 DOWN 8 +17513711 0 512 +17513756 128 512 +17513838 DOWN 8 +17513838 0 512 +17513885 128 512 +17513986 DOWN 8 +17513986 0 512 +17514007 128 512 +17514134 DOWN 8 +17514134 0 512 +17514141 128 512 +17514281 DOWN 8 +17514281 0 512 +17514290 128 512 +17514893 DOWN 8 +17514893 0 512 +17514904 128 512 +17518932 DOWN 8 +17518932 0 512 +17518938 128 512 +17519269 DOWN 8 +17519269 0 512 +17519335 128 512 +17519347 DOWN 8 +17519347 0 512 +17524157 UP 10 +17524157 waslock = 0 +17524157 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17524183 512 16777728 +~~~ +17524333 512 512 +17529362 DOWN 10 +17529362 0 512 +~~~ +~~~ +17529386 0 2560 +~~~ +~~~ +17529388 0 2048 +17529389 homeCount = 15 +17529390 waitCount = 5 +17529390 ripCount = 7 +17529391 locktype1 = 0 +17529391 locktype2 = 2 +17529392 locktype3 = 1 +17529392 goalCount = 6 +17529393 goalTotal = 6 +17529393 otherCount = 6 +~~~ +17530797 UP 12 +17530797 2048 2048 +17532183 DOWN 12 +17532183 0 2048 +17532260 UP 12 +17532260 2048 2048 +17533139 DOWN 12 +17533139 0 2048 +17533154 UP 12 +17533154 2048 2048 +17533246 DOWN 12 +17533246 0 2048 +17533274 UP 12 +17533274 2048 2048 +17534047 CLICK1 +17534047 CLICK2 +~~~ +~~~ +~~~ +17534071 2048 67110912 +~~~ +17534221 2048 2048 +17540436 DOWN 12 +17540436 0 2048 +~~~ +~~~ +17540456 0 0 +~~~ +~~~ +17540458 0 1 +~~~ +~~~ +17540460 UP 12 +17540460 2048 3 +~~~ +~~~ +17540462 2048 7 +~~~ +~~~ +17540463 2048 15 +~~~ +~~~ +17540465 2048 31 +~~~ +~~~ +17540467 2048 63 +~~~ +~~~ +17540469 2048 127 +~~~ +~~~ +17540471 2048 255 +17540472 homeCount = 15 +17540472 waitCount = 6 +17540494 ripCount = 7 +17540494 locktype1 = 0 +17540494 locktype2 = 2 +17540495 locktype3 = 1 +17540495 goalCount = 6 +17540496 goalTotal = 6 +17540496 otherCount = 6 +~~~ +17540497 CURRENTGOAL IS [8] +~~~ +17541587 DOWN 12 +17541587 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17541625 homeCount = 15 +17541625 waitCount = 6 +17541626 ripCount = 7 +17541626 locktype1 = 0 +17541627 locktype2 = 2 +17541627 locktype3 = 1 +17541628 goalCount = 6 +17541628 goalTotal = 6 +17541629 otherCount = 6 +~~~ +17541630 CURRENTGOAL IS [8] +~~~ +17541658 UP 12 +17541658 2048 255 +17541921 DOWN 12 +17541921 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17541955 homeCount = 15 +17541956 waitCount = 6 +17541956 ripCount = 7 +17541957 locktype1 = 0 +17541957 locktype2 = 2 +17541958 locktype3 = 1 +17541958 goalCount = 6 +17541959 goalTotal = 6 +17541959 otherCount = 6 +~~~ +17541960 CURRENTGOAL IS [8] +~~~ +17545684 UP 8 +17545684 128 255 +~~~ +~~~ +17545712 outer reward +~~~ +17545712 128 8388863 +~~~ +~~~ +17545903 DOWN 8 +17545903 0 8388863 +~~~ +~~~ +17545920 0 8388862 +~~~ +~~~ +17545921 0 8388860 +~~~ +~~~ +17545923 0 8388856 +~~~ +~~~ +17545925 0 8388848 +~~~ +~~~ +17545927 0 8388832 +~~~ +~~~ +17545929 0 8388800 +~~~ +~~~ +17545930 0 8388736 +~~~ +~~~ +17545932 0 8388608 +~~~ +~~~ +17545934 0 8389120 +17545935 homeCount = 15 +17545936 waitCount = 6 +17545957 ripCount = 7 +17545957 locktype1 = 0 +17545958 locktype2 = 2 +17545958 locktype3 = 1 +17545959 goalCount = 7 +17545959 goalTotal = 7 +17545960 otherCount = 6 +~~~ +17545973 128 8389120 +17546162 128 512 +17546357 DOWN 8 +17546357 0 512 +17546382 128 512 +17546476 DOWN 8 +17546476 0 512 +17546510 128 512 +17546604 DOWN 8 +17546604 0 512 +17546636 128 512 +17546732 DOWN 8 +17546732 0 512 +17546771 128 512 +17546862 DOWN 8 +17546862 0 512 +17546900 128 512 +17547009 DOWN 8 +17547009 0 512 +17547028 128 512 +17549002 DOWN 8 +17549002 0 512 +17549012 128 512 +17551604 DOWN 8 +17551604 0 512 +17551642 128 512 +17551692 DOWN 8 +17551692 0 512 +17555613 UP 10 +17555614 waslock = 0 +17555613 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17555639 512 16777728 +~~~ +17555789 512 512 +17555789 DOWN 10 +17555789 0 512 +~~~ +~~~ +17555815 0 2560 +~~~ +~~~ +17555817 0 2048 +17555818 homeCount = 16 +17555819 waitCount = 6 +17555819 ripCount = 7 +17555820 locktype1 = 0 +17555820 locktype2 = 2 +17555821 locktype3 = 1 +17555821 goalCount = 7 +17555822 goalTotal = 7 +17555822 otherCount = 6 +~~~ +17555873 UP 10 +17555874 waslock = 0 +17555873 512 2048 +~~~ +17560044 DOWN 10 +17560044 0 2048 +~~~ +~~~ +~~~ +~~~ +17560066 homeCount = 16 +17560066 waitCount = 6 +17560067 ripCount = 7 +17560067 locktype1 = 0 +17560068 locktype2 = 2 +17560068 locktype3 = 1 +17560069 goalCount = 7 +17560069 goalTotal = 7 +17560070 otherCount = 6 +~~~ +17561628 UP 12 +17561628 2048 2048 +17563348 DOWN 12 +17563348 0 2048 +17563378 UP 12 +17563378 2048 2048 +17563628 CLICK1 +17563628 CLICK2 +~~~ +~~~ +~~~ +17563654 2048 67110912 +~~~ +17563804 2048 2048 +17569146 DOWN 12 +17569146 0 2048 +~~~ +~~~ +17569173 0 0 +~~~ +~~~ +17569175 0 1 +~~~ +~~~ +17569177 0 3 +~~~ +~~~ +17569179 0 7 +~~~ +~~~ +17569180 0 15 +~~~ +~~~ +17569182 0 31 +~~~ +~~~ +17569184 0 63 +~~~ +~~~ +17569186 0 127 +~~~ +17569187 UP 12 +17569187 2048 127 +~~~ +17569189 homeCount = 16 +17569189 waitCount = 7 +17569190 ripCount = 7 +17569190 locktype1 = 0 +17569211 locktype2 = 2 +17569212 locktype3 = 1 +17569212 goalCount = 7 +17569212 goalTotal = 7 +17569213 otherCount = 6 +~~~ +17569214 CURRENTGOAL IS [8] +~~~ +17569214 DOWN 12 +17569214 0 255 +17569225 UP 12 +17569225 2048 255 +17569227 DOWN 12 +17569226 0 255 +17569253 UP 12 +17569253 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17569271 homeCount = 16 +17569271 waitCount = 7 +17569272 ripCount = 7 +17569272 locktype1 = 0 +17569273 locktype2 = 2 +17569273 locktype3 = 1 +17569274 goalCount = 7 +17569274 goalTotal = 7 +17569275 otherCount = 6 +~~~ +17569276 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17569304 homeCount = 16 +17569304 waitCount = 7 +17569305 ripCount = 7 +17569305 locktype1 = 0 +17569306 locktype2 = 2 +17569306 locktype3 = 1 +17569307 goalCount = 7 +17569328 goalTotal = 7 +17569328 otherCount = 6 +~~~ +17569329 CURRENTGOAL IS [8] +~~~ +17570621 DOWN 12 +17570621 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17570647 UP 12 +17570647 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17570656 homeCount = 16 +17570656 waitCount = 7 +17570657 ripCount = 7 +17570657 locktype1 = 0 +17570658 locktype2 = 2 +17570658 locktype3 = 1 +17570659 goalCount = 7 +17570659 goalTotal = 7 +17570660 otherCount = 6 +~~~ +17570661 CURRENTGOAL IS [8] +~~~ +17572075 DOWN 12 +17572075 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17572108 homeCount = 16 +17572109 waitCount = 7 +17572109 ripCount = 7 +17572110 locktype1 = 0 +17572110 locktype2 = 2 +17572111 locktype3 = 1 +17572111 goalCount = 7 +17572112 goalTotal = 7 +17572112 otherCount = 6 +~~~ +17572113 CURRENTGOAL IS [8] +~~~ +17576141 UP 8 +17576141 128 255 +~~~ +~~~ +17576167 outer reward +~~~ +17576167 128 8388863 +~~~ +~~~ +17576274 DOWN 8 +17576274 0 8388863 +~~~ +~~~ +17576295 0 8388862 +~~~ +~~~ +17576297 0 8388860 +~~~ +~~~ +17576299 0 8388856 +~~~ +~~~ +17576301 0 8388848 +~~~ +~~~ +17576303 0 8388832 +~~~ +~~~ +17576304 0 8388800 +~~~ +~~~ +17576306 0 8388736 +~~~ +~~~ +17576308 0 8388608 +~~~ +~~~ +17576310 0 8389120 +17576311 homeCount = 16 +17576311 waitCount = 7 +17576333 ripCount = 7 +17576333 locktype1 = 0 +17576334 locktype2 = 2 +17576334 locktype3 = 1 +17576335 goalCount = 8 +17576335 goalTotal = 8 +17576336 otherCount = 6 +~~~ +17576336 128 8389120 +17576457 DOWN 8 +17576457 0 8389120 +17576472 128 8389120 +17576617 128 512 +17576727 DOWN 8 +17576727 0 512 +17576733 128 512 +17576842 DOWN 8 +17576842 0 512 +17576862 128 512 +17576969 DOWN 8 +17576969 0 512 +17576981 128 512 +17577099 DOWN 8 +17577099 0 512 +17577112 128 512 +17577236 DOWN 8 +17577236 0 512 +17577241 128 512 +17582498 DOWN 8 +17582498 0 512 +17586638 UP 10 +17586638 waslock = 0 +17586638 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17586667 512 16777728 +~~~ +17586817 512 512 +17586841 DOWN 10 +17586841 0 512 +~~~ +~~~ +17586860 0 1536 +~~~ +~~~ +17586862 0 1024 +17586863 homeCount = 17 +17586863 waitCount = 7 +17586864 ripCount = 7 +17586864 locktype1 = 0 +17586865 locktype2 = 2 +17586865 locktype3 = 1 +17586866 goalCount = 8 +17586866 goalTotal = 8 +17586867 otherCount = 6 +~~~ +17586888 UP 10 +17586888 waslock = 0 +17586888 512 1024 +~~~ +17591203 DOWN 10 +17591203 0 1024 +~~~ +~~~ +~~~ +~~~ +17591232 homeCount = 17 +17591233 waitCount = 7 +17591233 ripCount = 7 +17591234 locktype1 = 0 +17591234 locktype2 = 2 +17591235 locktype3 = 1 +17591235 goalCount = 8 +17591236 goalTotal = 8 +17591236 otherCount = 6 +~~~ +17591254 UP 10 +17591255 waslock = 0 +17591254 512 1024 +~~~ +17591283 DOWN 10 +17591283 0 1024 +~~~ +~~~ +~~~ +~~~ +17591304 homeCount = 17 +17591305 waitCount = 7 +17591305 ripCount = 7 +17591306 locktype1 = 0 +17591306 locktype2 = 2 +17591307 locktype3 = 1 +17591307 goalCount = 8 +17591308 goalTotal = 8 +17591308 otherCount = 6 +~~~ +17593343 UP 11 +17593343 1024 1024 +17594782 DOWN 11 +17594782 0 1024 +17594806 UP 11 +17594806 1024 1024 +17596343 BEEP1 +17596343 BEEP2 +~~~ +~~~ +~~~ +17596371 1024 33555456 +~~~ +17596521 1024 1024 +17602296 DOWN 11 +17602296 0 1024 +~~~ +~~~ +17602317 0 0 +~~~ +~~~ +17602319 0 1 +~~~ +~~~ +17602321 0 3 +~~~ +~~~ +17602323 0 7 +~~~ +~~~ +17602324 0 15 +~~~ +~~~ +17602326 0 31 +~~~ +~~~ +17602328 0 63 +~~~ +~~~ +17602330 0 127 +~~~ +17602331 UP 11 +17602331 1024 127 +~~~ +17602333 homeCount = 17 +17602333 waitCount = 7 +17602334 ripCount = 8 +17602334 locktype1 = 0 +17602355 locktype2 = 2 +17602356 locktype3 = 1 +17602356 goalCount = 8 +17602357 goalTotal = 8 +17602357 otherCount = 6 +~~~ +17602358 CURRENTGOAL IS [8] +~~~ +17602358 1024 255 +17602389 DOWN 11 +17602389 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17602424 homeCount = 17 +17602424 waitCount = 7 +17602425 ripCount = 8 +17602425 locktype1 = 0 +17602426 locktype2 = 2 +17602426 locktype3 = 1 +17602427 goalCount = 8 +17602427 goalTotal = 8 +17602428 otherCount = 6 +~~~ +17602429 CURRENTGOAL IS [8] +~~~ +17605378 UP 8 +17605378 128 255 +~~~ +~~~ +17605400 outer reward +~~~ +17605401 128 8388863 +~~~ +~~~ +17605620 DOWN 8 +17605620 0 8388863 +~~~ +~~~ +17605639 0 8388862 +~~~ +~~~ +17605641 0 8388860 +~~~ +~~~ +17605643 0 8388856 +~~~ +~~~ +17605644 0 8388848 +~~~ +~~~ +17605646 0 8388832 +~~~ +~~~ +17605648 0 8388800 +~~~ +~~~ +17605650 0 8388736 +~~~ +~~~ +17605652 0 8388608 +~~~ +~~~ +17605654 0 8389120 +17605655 homeCount = 17 +17605655 waitCount = 7 +17605676 ripCount = 8 +17605677 locktype1 = 0 +17605677 locktype2 = 2 +17605678 locktype3 = 1 +17605678 goalCount = 9 +17605679 goalTotal = 9 +17605679 otherCount = 6 +~~~ +17605680 128 8389120 +17605850 128 512 +17606053 DOWN 8 +17606053 0 512 +17606073 128 512 +17606178 DOWN 8 +17606178 0 512 +17606191 128 512 +17606307 DOWN 8 +17606307 0 512 +17606321 128 512 +17606437 DOWN 8 +17606437 0 512 +17606454 128 512 +17606881 DOWN 8 +17606881 0 512 +17606887 128 512 +17611622 DOWN 8 +17611622 0 512 +17611648 128 512 +17611713 DOWN 8 +17611713 0 512 +17616088 UP 10 +17616088 waslock = 0 +17616088 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17616116 512 16777728 +~~~ +17616256 DOWN 10 +17616256 0 16777728 +17616266 0 512 +~~~ +~~~ +17616281 0 1536 +~~~ +~~~ +17616283 0 1024 +17616284 homeCount = 18 +17616285 waitCount = 7 +17616285 ripCount = 8 +17616286 locktype1 = 0 +17616286 locktype2 = 2 +17616286 locktype3 = 1 +17616287 goalCount = 9 +17616287 goalTotal = 9 +17616288 otherCount = 6 +~~~ +17616317 UP 10 +17616318 waslock = 0 +17616317 512 1024 +~~~ +17619930 DOWN 10 +17619930 0 1024 +~~~ +~~~ +~~~ +~~~ +17619958 homeCount = 18 +17619958 waitCount = 7 +17619959 ripCount = 8 +17619959 locktype1 = 0 +17619960 locktype2 = 2 +17619960 locktype3 = 1 +17619961 goalCount = 9 +17619961 goalTotal = 9 +17619962 otherCount = 6 +~~~ +17619966 UP 10 +17619966 waslock = 0 +17619966 512 1024 +~~~ +17620023 DOWN 10 +17620022 0 1024 +~~~ +~~~ +~~~ +~~~ +17620051 homeCount = 18 +17620051 waitCount = 7 +17620052 ripCount = 8 +17620052 locktype1 = 0 +17620053 locktype2 = 2 +17620053 locktype3 = 1 +17620054 goalCount = 9 +17620054 goalTotal = 9 +17620055 otherCount = 6 +~~~ +17622132 UP 11 +17622132 1024 1024 +17623222 DOWN 11 +17623222 0 1024 +17623251 UP 11 +17623251 1024 1024 +17624459 DOWN 11 +17624459 0 1024 +17624483 UP 11 +17624483 1024 1024 +17624883 BEEP1 +17624883 BEEP2 +~~~ +~~~ +~~~ +17624910 1024 33555456 +~~~ +17625060 1024 1024 +17629415 DOWN 11 +17629415 0 1024 +~~~ +~~~ +17629435 0 0 +~~~ +~~~ +17629437 0 1 +~~~ +~~~ +17629439 0 3 +~~~ +~~~ +17629440 0 7 +~~~ +~~~ +17629442 0 15 +~~~ +~~~ +17629444 UP 11 +17629444 1024 31 +~~~ +~~~ +17629446 1024 63 +~~~ +~~~ +17629448 1024 127 +~~~ +~~~ +17629450 1024 255 +17629451 homeCount = 18 +17629451 waitCount = 7 +17629452 ripCount = 9 +17629473 locktype1 = 0 +17629473 locktype2 = 2 +17629474 locktype3 = 1 +17629474 goalCount = 9 +17629475 goalTotal = 9 +17629475 otherCount = 6 +~~~ +17629476 CURRENTGOAL IS [8] +~~~ +17629477 DOWN 11 +17629477 0 255 +17629481 UP 11 +17629481 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17629533 homeCount = 18 +17629533 waitCount = 7 +17629534 ripCount = 9 +17629534 locktype1 = 0 +17629535 locktype2 = 2 +17629535 locktype3 = 1 +17629536 goalCount = 9 +17629536 goalTotal = 9 +17629537 otherCount = 6 +~~~ +17629538 CURRENTGOAL IS [8] +~~~ +17631515 DOWN 11 +17631515 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17631553 homeCount = 18 +17631553 waitCount = 7 +17631554 ripCount = 9 +17631554 locktype1 = 0 +17631555 locktype2 = 2 +17631556 locktype3 = 1 +17631556 goalCount = 9 +17631556 goalTotal = 9 +17631557 otherCount = 6 +~~~ +17631558 CURRENTGOAL IS [8] +~~~ +17634612 UP 8 +17634612 128 255 +~~~ +~~~ +17634638 outer reward +~~~ +17634638 128 8388863 +~~~ +~~~ +17634643 outerreps = 8 +~~~ +~~~ +17634881 DOWN 8 +17634881 0 8388863 +~~~ +~~~ +17634905 0 8388862 +~~~ +~~~ +17634907 0 8388860 +~~~ +~~~ +17634909 0 8388856 +~~~ +~~~ +17634911 0 8388848 +~~~ +~~~ +17634913 0 8388832 +~~~ +~~~ +17634914 0 8388800 +~~~ +~~~ +17634916 0 8388736 +~~~ +~~~ +17634918 0 8388608 +~~~ +~~~ +17634920 0 8389120 +17634921 homeCount = 18 +17634922 waitCount = 7 +17634942 ripCount = 9 +17634943 locktype1 = 0 +17634943 locktype2 = 2 +17634944 locktype3 = 1 +17634944 goalCount = 0 +17634945 goalTotal = 10 +17634945 otherCount = 6 +~~~ +17634946 128 8389120 +17635088 128 512 +17635186 DOWN 8 +17635186 0 512 +17635204 128 512 +17635303 DOWN 8 +17635303 0 512 +17635337 128 512 +17635422 DOWN 8 +17635422 0 512 +17635469 128 512 +17635548 DOWN 8 +17635548 0 512 +17635588 128 512 +17635675 DOWN 8 +17635675 0 512 +17635720 128 512 +17635815 DOWN 8 +17635815 0 512 +17635847 128 512 +17635966 DOWN 8 +17635966 0 512 +17635980 128 512 +17641244 DOWN 8 +17641243 0 512 +17646112 UP 10 +17646112 waslock = 0 +17646112 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17646140 512 16777728 +~~~ +17646290 512 512 +17646421 DOWN 10 +17646421 0 512 +~~~ +~~~ +17646445 0 2560 +~~~ +~~~ +17646447 0 2048 +17646448 homeCount = 19 +17646449 waitCount = 7 +17646449 ripCount = 9 +17646450 locktype1 = 0 +17646450 locktype2 = 2 +17646451 locktype3 = 1 +17646451 goalCount = 0 +17646452 goalTotal = 10 +17646452 otherCount = 6 +~~~ +17646474 UP 10 +17646474 waslock = 0 +17646474 512 2048 +~~~ +17650594 DOWN 10 +17650594 0 2048 +~~~ +~~~ +~~~ +~~~ +17650618 homeCount = 19 +17650619 waitCount = 7 +17650619 ripCount = 9 +17650620 locktype1 = 0 +17650620 locktype2 = 2 +17650621 locktype3 = 1 +17650621 goalCount = 0 +17650621 goalTotal = 10 +17650622 otherCount = 6 +~~~ +17650651 UP 10 +17650651 waslock = 0 +17650651 512 2048 +~~~ +17650683 DOWN 10 +17650683 0 2048 +~~~ +~~~ +~~~ +~~~ +17650701 homeCount = 19 +17650702 waitCount = 7 +17650702 ripCount = 9 +17650703 locktype1 = 0 +17650703 locktype2 = 2 +17650704 locktype3 = 1 +17650704 goalCount = 0 +17650705 goalTotal = 10 +17650705 otherCount = 6 +~~~ +17652063 UP 12 +17652063 2048 2048 +17654813 CLICK1 +17654813 CLICK2 +~~~ +~~~ +~~~ +17654838 2048 67110912 +~~~ +17654988 2048 2048 +17661976 DOWN 12 +17661976 0 2048 +~~~ +~~~ +17661996 0 0 +~~~ +~~~ +17661998 0 1 +~~~ +~~~ +17662000 0 3 +~~~ +~~~ +17662002 0 7 +~~~ +~~~ +17662004 0 15 +~~~ +~~~ +17662005 0 31 +~~~ +~~~ +17662007 0 63 +~~~ +~~~ +17662009 0 127 +~~~ +~~~ +17662011 0 255 +17662012 homeCount = 19 +17662012 waitCount = 8 +17662013 ripCount = 9 +17662014 locktype1 = 0 +17662014 locktype2 = 2 +17662035 locktype3 = 1 +17662035 goalCount = 0 +17662036 goalTotal = 10 +17662036 otherCount = 6 +~~~ +17662037 CURRENTGOAL IS [2] +~~~ +17662039 UP 12 +17662039 2048 255 +17662076 DOWN 12 +17662076 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17662113 homeCount = 19 +17662113 waitCount = 8 +17662114 ripCount = 9 +17662114 locktype1 = 0 +17662115 locktype2 = 2 +17662115 locktype3 = 1 +17662116 goalCount = 0 +17662116 goalTotal = 10 +17662117 otherCount = 6 +~~~ +17662118 CURRENTGOAL IS [2] +~~~ +17666107 UP 8 +17666107 128 255 +~~~ +~~~ +17666295 DOWN 8 +17666295 0 255 +~~~ +~~~ +17666317 0 254 +~~~ +~~~ +17666319 0 252 +~~~ +~~~ +17666321 0 248 +~~~ +~~~ +17666323 0 240 +~~~ +~~~ +17666324 0 224 +~~~ +~~~ +17666326 0 192 +~~~ +~~~ +17666328 0 128 +~~~ +~~~ +17666330 0 0 +~~~ +~~~ +17666332 0 512 +17666333 homeCount = 19 +17666333 waitCount = 8 +17666334 ripCount = 9 +17666334 locktype1 = 0 +17666355 locktype2 = 2 +17666356 locktype3 = 1 +17666356 goalCount = 0 +17666357 goalTotal = 10 +17666357 otherCount = 7 +~~~ +17666359 128 512 +17666796 DOWN 8 +17666796 0 512 +17671204 UP 10 +17671204 waslock = 0 +17671204 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17671234 512 16777728 +~~~ +17671353 DOWN 10 +17671353 0 16777728 +~~~ +~~~ +17671381 0 16779776 +~~~ +~~~ +17671382 0 16779264 +17671383 homeCount = 20 +17671384 waitCount = 8 +17671384 ripCount = 9 +17671385 locktype1 = 0 +17671385 locktype2 = 2 +17671386 locktype3 = 1 +17671386 goalCount = 0 +17671387 goalTotal = 10 +17671387 otherCount = 7 +~~~ +17671408 0 2048 +17671450 UP 10 +17671450 waslock = 0 +17671450 512 2048 +~~~ +17674585 DOWN 10 +17674585 0 2048 +~~~ +~~~ +~~~ +~~~ +17674611 homeCount = 20 +17674611 waitCount = 8 +17674612 ripCount = 9 +17674612 locktype1 = 0 +17674613 locktype2 = 2 +17674613 locktype3 = 1 +17674614 goalCount = 0 +17674614 goalTotal = 10 +17674615 otherCount = 7 +~~~ +17676314 UP 12 +17676314 2048 2048 +17676340 DOWN 12 +17676340 0 2048 +17676358 UP 12 +17676358 2048 2048 +17678656 DOWN 12 +17678656 0 2048 +17678662 UP 12 +17678662 2048 2048 +17681064 CLICK1 +17681064 CLICK2 +~~~ +~~~ +~~~ +17681098 2048 67110912 +~~~ +17681199 DOWN 12 +17681199 0 67110912 +17681207 UP 12 +17681207 2048 67110912 +17681248 2048 2048 +~~~ +~~~ +17681272 2048 0 +~~~ +~~~ +17681273 2048 1 +~~~ +~~~ +17681275 2048 3 +~~~ +~~~ +17681277 2048 7 +~~~ +~~~ +17681279 2048 15 +~~~ +~~~ +17681281 2048 31 +~~~ +~~~ +17681282 2048 63 +~~~ +~~~ +17681284 2048 127 +~~~ +~~~ +17681286 2048 255 +17681287 homeCount = 20 +17681288 waitCount = 9 +17681288 ripCount = 9 +17681309 locktype1 = 0 +17681309 locktype2 = 2 +17681310 locktype3 = 1 +17681310 goalCount = 0 +17681311 goalTotal = 10 +17681311 otherCount = 7 +~~~ +17681313 CURRENTGOAL IS [2] +~~~ +17687455 DOWN 12 +17687455 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17687496 homeCount = 20 +17687497 waitCount = 9 +17687497 ripCount = 9 +17687498 locktype1 = 0 +17687498 locktype2 = 2 +17687499 locktype3 = 1 +17687499 goalCount = 0 +17687500 goalTotal = 10 +17687500 otherCount = 7 +~~~ +17687501 CURRENTGOAL IS [2] +~~~ +17693473 UP 2 +17693473 2 255 +~~~ +~~~ +17693497 outer reward +~~~ +17693498 2 131327 +~~~ +~~~ +17693506 DOWN 2 +17693506 0 131327 +~~~ +~~~ +17693527 0 131326 +~~~ +~~~ +17693529 0 131324 +~~~ +~~~ +17693531 0 131320 +~~~ +~~~ +17693532 0 131312 +~~~ +~~~ +17693534 0 131296 +~~~ +~~~ +17693536 0 131264 +~~~ +~~~ +17693538 0 131200 +~~~ +~~~ +17693540 0 131072 +~~~ +~~~ +17693542 0 131584 +17693543 homeCount = 20 +17693543 waitCount = 9 +17693544 ripCount = 9 +17693565 locktype1 = 0 +17693565 locktype2 = 2 +17693566 locktype3 = 1 +17693566 goalCount = 1 +17693567 goalTotal = 11 +17693567 otherCount = 7 +~~~ +17693568 2 131584 +17693947 2 512 +17699688 DOWN 2 +17699687 0 512 +17699753 2 512 +17699799 DOWN 2 +17699799 0 512 +17705120 UP 10 +17705121 waslock = 0 +17705120 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17705153 512 16777728 +~~~ +17705303 512 512 +17708019 DOWN 10 +17708019 0 512 +~~~ +~~~ +17708036 0 2560 +~~~ +~~~ +17708038 0 2048 +17708039 homeCount = 21 +17708039 waitCount = 9 +17708040 ripCount = 9 +17708040 locktype1 = 0 +17708041 locktype2 = 2 +17708041 locktype3 = 1 +17708042 goalCount = 1 +17708042 goalTotal = 11 +17708043 otherCount = 7 +~~~ +17708064 UP 10 +17708064 waslock = 0 +17708064 512 2048 +~~~ +17708128 DOWN 10 +17708128 0 2048 +~~~ +~~~ +~~~ +~~~ +17708149 homeCount = 21 +17708150 waitCount = 9 +17708150 ripCount = 9 +17708151 locktype1 = 0 +17708151 locktype2 = 2 +17708152 locktype3 = 1 +17708152 goalCount = 1 +17708153 goalTotal = 11 +17708153 otherCount = 7 +~~~ +17710005 UP 12 +17710005 2048 2048 +17710933 DOWN 12 +17710933 0 2048 +17710973 UP 12 +17710973 2048 2048 +17711488 DOWN 12 +17711488 0 2048 +17711505 UP 12 +17711505 2048 2048 +17713006 CLICK1 +17713006 CLICK2 +~~~ +~~~ +~~~ +17713029 2048 67110912 +~~~ +17713179 2048 2048 +17718698 DOWN 12 +17718698 0 2048 +17718711 UP 12 +17718711 2048 2048 +~~~ +~~~ +17718718 2048 0 +~~~ +~~~ +17718719 2048 1 +~~~ +~~~ +17718721 2048 3 +~~~ +~~~ +17718723 2048 7 +~~~ +~~~ +17718725 2048 15 +~~~ +~~~ +17718727 2048 31 +~~~ +~~~ +17718728 2048 63 +~~~ +~~~ +17718730 2048 127 +~~~ +~~~ +17718732 2048 255 +17718733 homeCount = 21 +17718734 waitCount = 10 +17718734 ripCount = 9 +17718755 locktype1 = 0 +17718756 locktype2 = 2 +17718756 locktype3 = 1 +17718757 goalCount = 1 +17718757 goalTotal = 11 +17718758 otherCount = 7 +~~~ +17718759 CURRENTGOAL IS [2] +~~~ +17718770 DOWN 12 +17718770 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17718805 homeCount = 21 +17718805 waitCount = 10 +17718806 ripCount = 9 +17718806 locktype1 = 0 +17718807 locktype2 = 2 +17718807 locktype3 = 1 +17718808 goalCount = 1 +17718808 goalTotal = 11 +17718809 otherCount = 7 +~~~ +17718810 CURRENTGOAL IS [2] +~~~ +17718839 UP 12 +17718839 2048 255 +17719213 DOWN 12 +17719213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17719257 homeCount = 21 +17719258 waitCount = 10 +17719258 ripCount = 9 +17719259 locktype1 = 0 +17719259 locktype2 = 2 +17719260 locktype3 = 1 +17719260 goalCount = 1 +17719261 goalTotal = 11 +17719261 otherCount = 7 +~~~ +17719262 CURRENTGOAL IS [2] +~~~ +17719283 UP 12 +17719283 2048 255 +17719362 DOWN 12 +17719362 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17719398 homeCount = 21 +17719399 waitCount = 10 +17719399 ripCount = 9 +17719400 locktype1 = 0 +17719400 locktype2 = 2 +17719401 locktype3 = 1 +17719401 goalCount = 1 +17719402 goalTotal = 11 +17719402 otherCount = 7 +~~~ +17719403 CURRENTGOAL IS [2] +~~~ +17726146 UP 8 +17726146 128 255 +~~~ +~~~ +17726549 DOWN 8 +17726549 0 255 +~~~ +~~~ +17726574 0 254 +~~~ +~~~ +17726576 0 252 +~~~ +~~~ +17726578 0 248 +~~~ +~~~ +17726580 0 240 +~~~ +~~~ +17726582 0 224 +~~~ +~~~ +17726584 0 192 +~~~ +~~~ +17726585 0 128 +~~~ +~~~ +17726587 0 0 +~~~ +~~~ +17726589 0 512 +17726590 homeCount = 21 +17726591 waitCount = 10 +17726591 ripCount = 9 +17726592 locktype1 = 0 +17726592 locktype2 = 2 +17726613 locktype3 = 1 +17726614 goalCount = 1 +17726614 goalTotal = 11 +17726615 otherCount = 8 +~~~ +17729916 UP 10 +17729917 waslock = 0 +17729916 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17729943 512 16777728 +~~~ +17730093 512 512 +17733254 DOWN 10 +17733254 0 512 +~~~ +~~~ +17733279 0 1536 +~~~ +~~~ +17733281 0 1024 +17733282 homeCount = 22 +17733282 waitCount = 10 +17733283 ripCount = 9 +17733283 locktype1 = 0 +17733284 locktype2 = 2 +17733284 locktype3 = 1 +17733284 goalCount = 1 +17733285 goalTotal = 11 +17733285 otherCount = 8 +~~~ +17733307 UP 10 +17733307 waslock = 0 +17733307 512 1024 +~~~ +17733339 DOWN 10 +17733339 0 1024 +~~~ +~~~ +~~~ +~~~ +17733373 homeCount = 22 +17733373 waitCount = 10 +17733374 ripCount = 9 +17733374 locktype1 = 0 +17733375 locktype2 = 2 +17733375 locktype3 = 1 +17733376 goalCount = 1 +17733376 goalTotal = 11 +17733377 otherCount = 8 +~~~ +17735628 UP 11 +17735628 1024 1024 +17736890 DOWN 11 +17736890 0 1024 +17736924 UP 11 +17736924 1024 1024 +17736932 DOWN 11 +17736931 0 1024 +17736962 UP 11 +17736962 1024 1024 +17739879 BEEP1 +17739879 BEEP2 +~~~ +~~~ +~~~ +17739899 1024 33555456 +~~~ +17740049 1024 1024 +17746662 DOWN 11 +17746662 0 1024 +~~~ +~~~ +17746687 0 0 +~~~ +~~~ +17746689 0 1 +~~~ +~~~ +17746691 0 3 +~~~ +~~~ +17746692 0 7 +~~~ +~~~ +17746694 0 15 +~~~ +~~~ +17746696 0 31 +~~~ +~~~ +17746698 0 63 +~~~ +~~~ +17746700 0 127 +~~~ +~~~ +17746701 0 255 +17746703 homeCount = 22 +17746703 waitCount = 10 +17746704 ripCount = 10 +17746704 locktype1 = 0 +17746705 locktype2 = 2 +17746726 locktype3 = 1 +17746726 goalCount = 1 +17746727 goalTotal = 11 +17746727 otherCount = 8 +~~~ +17746728 CURRENTGOAL IS [2] +~~~ +17751159 UP 6 +17751159 32 255 +~~~ +~~~ +17752137 DOWN 6 +17752137 0 255 +~~~ +~~~ +17752159 0 254 +~~~ +~~~ +17752160 0 252 +~~~ +~~~ +17752162 0 248 +~~~ +~~~ +17752164 0 240 +~~~ +~~~ +17752166 0 224 +~~~ +~~~ +17752168 0 192 +~~~ +~~~ +17752169 0 128 +~~~ +~~~ +17752171 0 0 +~~~ +~~~ +17752173 0 512 +17752174 homeCount = 22 +17752175 waitCount = 10 +17752175 ripCount = 10 +17752176 locktype1 = 0 +17752197 locktype2 = 2 +17752197 locktype3 = 1 +17752198 goalCount = 1 +17752198 goalTotal = 11 +17752199 otherCount = 9 +~~~ +17755821 UP 10 +17755821 waslock = 0 +17755821 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17755853 512 16777728 +~~~ +17756003 512 512 +17756059 DOWN 10 +17756059 0 512 +~~~ +~~~ +17756076 UP 10 +17756076 waslock = 0 +17756076 512 2560 +~~~ +~~~ +17756078 512 2048 +17756079 homeCount = 23 +17756080 waitCount = 10 +17756080 ripCount = 10 +17756081 locktype1 = 0 +17756081 locktype2 = 2 +17756082 locktype3 = 1 +17756082 goalCount = 1 +17756104 goalTotal = 11 +17756104 otherCount = 9 +~~~ +~~~ +17759339 DOWN 10 +17759339 0 2048 +~~~ +~~~ +~~~ +~~~ +17759360 homeCount = 23 +17759361 waitCount = 10 +17759361 ripCount = 10 +17759362 locktype1 = 0 +17759362 locktype2 = 2 +17759363 locktype3 = 1 +17759363 goalCount = 1 +17759364 goalTotal = 11 +17759364 otherCount = 9 +~~~ +17761118 UP 12 +17761118 2048 2048 +17762724 DOWN 12 +17762724 0 2048 +17762734 UP 12 +17762734 2048 2048 +17762739 DOWN 12 +17762739 0 2048 +17762757 UP 12 +17762757 2048 2048 +17763369 CLICK1 +17763369 CLICK2 +~~~ +~~~ +~~~ +17763395 2048 67110912 +~~~ +17763545 2048 2048 +17768970 DOWN 12 +17768970 0 2048 +~~~ +~~~ +17768992 0 0 +~~~ +~~~ +17768994 0 1 +~~~ +~~~ +17768996 0 3 +~~~ +~~~ +17768997 0 7 +~~~ +~~~ +17768999 0 15 +~~~ +~~~ +17769001 0 31 +~~~ +~~~ +17769003 0 63 +~~~ +~~~ +17769005 0 127 +~~~ +~~~ +17769006 0 255 +17769008 homeCount = 23 +17769008 waitCount = 11 +17769009 ripCount = 10 +17769009 locktype1 = 0 +17769010 locktype2 = 2 +17769030 locktype3 = 1 +17769031 goalCount = 1 +17769031 goalTotal = 11 +17769032 otherCount = 9 +~~~ +17769033 CURRENTGOAL IS [2] +~~~ +17772566 UP 1 +17772566 1 255 +~~~ +~~~ +17774132 DOWN 1 +17774132 0 255 +~~~ +~~~ +17774151 0 254 +~~~ +~~~ +17774153 0 252 +~~~ +~~~ +17774155 0 248 +~~~ +~~~ +17774157 0 240 +~~~ +~~~ +17774159 0 224 +~~~ +~~~ +17774161 0 192 +~~~ +~~~ +17774162 0 128 +~~~ +~~~ +17774164 0 0 +~~~ +~~~ +17774166 0 512 +17774167 homeCount = 23 +17774168 waitCount = 11 +17774168 ripCount = 10 +17774169 locktype1 = 0 +17774190 locktype2 = 2 +17774190 locktype3 = 1 +17774191 goalCount = 1 +17774191 goalTotal = 11 +17774192 otherCount = 10 +~~~ +17777742 UP 10 +17777742 waslock = 0 +17777742 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17777769 512 16777728 +~~~ +17777919 512 512 +17777993 DOWN 10 +17777993 0 512 +~~~ +~~~ +17778017 0 1536 +~~~ +~~~ +17778019 0 1024 +17778020 homeCount = 24 +17778020 waitCount = 11 +17778021 ripCount = 10 +17778021 locktype1 = 0 +17778022 locktype2 = 2 +17778022 locktype3 = 1 +17778023 goalCount = 1 +17778023 goalTotal = 11 +17778024 otherCount = 10 +~~~ +17778045 UP 10 +17778045 waslock = 0 +17778045 512 1024 +~~~ +17781684 DOWN 10 +17781684 0 1024 +~~~ +~~~ +~~~ +~~~ +17781705 homeCount = 24 +17781706 waitCount = 11 +17781706 ripCount = 10 +17781707 locktype1 = 0 +17781707 locktype2 = 2 +17781707 locktype3 = 1 +17781708 goalCount = 1 +17781708 goalTotal = 11 +17781709 otherCount = 10 +~~~ +17781741 UP 10 +17781741 waslock = 0 +17781741 512 1024 +~~~ +17781763 DOWN 10 +17781763 0 1024 +~~~ +~~~ +~~~ +~~~ +17781788 homeCount = 24 +17781788 waitCount = 11 +17781789 ripCount = 10 +17781789 locktype1 = 0 +17781790 locktype2 = 2 +17781790 locktype3 = 1 +17781791 goalCount = 1 +17781791 goalTotal = 11 +17781792 otherCount = 10 +~~~ +17783131 UP 11 +17783131 1024 1024 +17786131 BEEP1 +17786131 BEEP2 +~~~ +~~~ +~~~ +17786156 1024 33555456 +~~~ +17786306 1024 1024 +17793507 DOWN 11 +17793507 0 1024 +~~~ +~~~ +17793532 0 0 +~~~ +~~~ +17793534 0 1 +~~~ +~~~ +17793536 0 3 +~~~ +~~~ +17793538 0 7 +~~~ +~~~ +17793540 0 15 +~~~ +~~~ +17793541 0 31 +~~~ +~~~ +17793543 0 63 +~~~ +~~~ +17793545 0 127 +~~~ +~~~ +17793547 0 255 +17793548 homeCount = 24 +17793548 waitCount = 11 +17793549 ripCount = 11 +17793549 locktype1 = 0 +17793550 locktype2 = 2 +17793571 locktype3 = 1 +17793571 goalCount = 1 +17793572 goalTotal = 11 +17793572 otherCount = 10 +~~~ +17793573 CURRENTGOAL IS [2] +~~~ +17799331 UP 7 +17799331 64 255 +~~~ +~~~ +17799555 DOWN 7 +17799555 0 255 +~~~ +~~~ +17799574 0 254 +~~~ +~~~ +17799576 0 252 +~~~ +~~~ +17799578 0 248 +~~~ +~~~ +17799579 0 240 +~~~ +~~~ +17799581 0 224 +~~~ +~~~ +17799583 0 192 +~~~ +~~~ +17799585 0 128 +~~~ +~~~ +17799587 0 0 +~~~ +~~~ +17799588 0 512 +17799589 homeCount = 24 +17799590 waitCount = 11 +17799591 ripCount = 11 +17799591 locktype1 = 0 +17799612 locktype2 = 2 +17799612 locktype3 = 1 +17799613 goalCount = 1 +17799613 goalTotal = 11 +17799614 otherCount = 11 +~~~ +17799621 64 512 +17800053 DOWN 7 +17800053 0 512 +17804037 UP 10 +17804037 waslock = 0 +17804037 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17804064 512 16777728 +~~~ +17804214 512 512 +17804372 DOWN 10 +17804372 0 512 +17804384 UP 10 +17804385 waslock = 0 +17804384 512 512 +~~~ +~~~ +17804404 512 2560 +~~~ +~~~ +17804406 512 2048 +17804407 homeCount = 25 +17804408 waitCount = 11 +17804408 ripCount = 11 +17804409 locktype1 = 0 +17804409 locktype2 = 2 +17804410 locktype3 = 1 +17804410 goalCount = 1 +17804411 goalTotal = 11 +17804411 otherCount = 11 +~~~ +~~~ +17808182 DOWN 10 +17808182 0 2048 +~~~ +~~~ +~~~ +~~~ +17808210 homeCount = 25 +17808211 waitCount = 11 +17808211 ripCount = 11 +17808212 locktype1 = 0 +17808212 locktype2 = 2 +17808213 locktype3 = 1 +17808213 goalCount = 1 +17808214 goalTotal = 11 +17808214 otherCount = 11 +~~~ +17809982 UP 12 +17809982 2048 2048 +17811792 DOWN 12 +17811792 0 2048 +17811817 UP 12 +17811817 2048 2048 +17813483 CLICK1 +17813483 CLICK2 +~~~ +~~~ +~~~ +17813510 2048 67110912 +~~~ +17813658 DOWN 12 +17813658 0 67110912 +17813660 0 2048 +17813687 UP 12 +17813687 2048 2048 +~~~ +~~~ +17813690 2048 0 +~~~ +~~~ +17813692 2048 1 +~~~ +~~~ +17813693 2048 3 +~~~ +~~~ +17813695 2048 7 +~~~ +~~~ +17813697 2048 15 +~~~ +~~~ +17813699 2048 31 +~~~ +~~~ +17813701 2048 63 +~~~ +~~~ +17813703 2048 127 +~~~ +~~~ +17813704 2048 255 +17813706 homeCount = 25 +17813706 waitCount = 12 +17813727 ripCount = 11 +17813727 locktype1 = 0 +17813728 locktype2 = 2 +17813728 locktype3 = 1 +17813729 goalCount = 1 +17813729 goalTotal = 11 +17813730 otherCount = 11 +~~~ +17813731 CURRENTGOAL IS [2] +~~~ +17818291 DOWN 12 +17818291 0 255 +17818296 UP 12 +17818296 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17818326 homeCount = 25 +17818327 waitCount = 12 +17818327 ripCount = 11 +17818328 locktype1 = 0 +17818328 locktype2 = 2 +17818329 locktype3 = 1 +17818329 goalCount = 1 +17818330 goalTotal = 11 +17818330 otherCount = 11 +~~~ +17818331 CURRENTGOAL IS [2] +~~~ +17818368 DOWN 12 +17818368 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17818405 homeCount = 25 +17818406 waitCount = 12 +17818406 ripCount = 11 +17818407 locktype1 = 0 +17818407 locktype2 = 2 +17818408 locktype3 = 1 +17818408 goalCount = 1 +17818409 goalTotal = 11 +17818409 otherCount = 11 +~~~ +17818410 CURRENTGOAL IS [2] +~~~ +17823832 UP 2 +17823832 2 255 +~~~ +~~~ +17823852 outer reward +~~~ +17823852 2 131327 +~~~ +~~~ +17824185 DOWN 2 +17824185 0 131327 +~~~ +17824208 2 131327 +~~~ +17824210 2 131326 +~~~ +~~~ +17824211 2 131324 +~~~ +~~~ +17824213 2 131320 +~~~ +~~~ +17824215 2 131312 +~~~ +~~~ +17824216 2 131296 +~~~ +~~~ +17824218 2 131264 +~~~ +~~~ +17824220 2 131200 +~~~ +~~~ +17824222 2 131072 +~~~ +~~~ +17824224 2 131584 +17824225 homeCount = 25 +17824225 waitCount = 12 +17824247 ripCount = 11 +17824247 locktype1 = 0 +17824248 locktype2 = 2 +17824248 locktype3 = 1 +17824249 goalCount = 2 +17824249 goalTotal = 12 +17824250 otherCount = 11 +~~~ +17824302 2 512 +17824581 DOWN 2 +17824581 0 512 +17824598 2 512 +17824700 DOWN 2 +17824700 0 512 +17824721 2 512 +17824823 DOWN 2 +17824823 0 512 +17824846 2 512 +17824949 DOWN 2 +17824949 0 512 +17824965 2 512 +17829925 DOWN 2 +17829925 0 512 +17829977 2 512 +17830030 DOWN 2 +17830030 0 512 +17830113 2 512 +17830135 DOWN 2 +17830135 0 512 +17835168 UP 10 +17835169 waslock = 0 +17835168 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17835195 512 16777728 +~~~ +17835345 512 512 +17835401 DOWN 10 +17835401 0 512 +~~~ +~~~ +17835421 0 2560 +~~~ +17835422 UP 10 +17835423 waslock = 0 +17835422 512 2560 +~~~ +17835424 homeCount = 26 +17835425 waitCount = 12 +17835425 ripCount = 11 +17835426 locktype1 = 0 +17835426 locktype2 = 2 +17835427 locktype3 = 1 +17835427 goalCount = 2 +17835448 goalTotal = 12 +17835449 otherCount = 11 +~~~ +~~~ +17835450 512 2048 +17839165 DOWN 10 +17839165 0 2048 +~~~ +~~~ +~~~ +~~~ +17839192 homeCount = 26 +17839192 waitCount = 12 +17839193 ripCount = 11 +17839193 locktype1 = 0 +17839194 locktype2 = 2 +17839194 locktype3 = 1 +17839195 goalCount = 2 +17839195 goalTotal = 12 +17839196 otherCount = 11 +~~~ +17839209 UP 10 +17839210 waslock = 0 +17839209 512 2048 +~~~ +17839245 DOWN 10 +17839245 0 2048 +~~~ +~~~ +~~~ +~~~ +17839268 homeCount = 26 +17839268 waitCount = 12 +17839269 ripCount = 11 +17839269 locktype1 = 0 +17839270 locktype2 = 2 +17839270 locktype3 = 1 +17839271 goalCount = 2 +17839271 goalTotal = 12 +17839272 otherCount = 11 +~~~ +17840917 UP 12 +17840917 2048 2048 +17843738 DOWN 12 +17843738 0 2048 +17843774 UP 12 +17843774 2048 2048 +17844418 CLICK1 +17844418 CLICK2 +~~~ +~~~ +~~~ +17844442 2048 67110912 +~~~ +17844592 2048 2048 +17849626 DOWN 12 +17849626 0 2048 +~~~ +~~~ +17849650 0 0 +~~~ +~~~ +17849652 0 1 +~~~ +~~~ +17849653 0 3 +~~~ +~~~ +17849655 0 7 +~~~ +~~~ +17849657 0 15 +~~~ +~~~ +17849659 0 31 +~~~ +~~~ +17849661 0 63 +~~~ +~~~ +17849663 0 127 +~~~ +~~~ +17849664 0 255 +17849665 homeCount = 26 +17849666 waitCount = 13 +17849666 ripCount = 11 +17849667 locktype1 = 0 +17849667 locktype2 = 2 +17849688 locktype3 = 1 +17849689 goalCount = 2 +17849689 goalTotal = 12 +17849690 otherCount = 11 +~~~ +17849691 CURRENTGOAL IS [2] +~~~ +17849708 UP 12 +17849708 2048 255 +17849722 DOWN 12 +17849722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17849759 homeCount = 26 +17849760 waitCount = 13 +17849760 ripCount = 11 +17849761 locktype1 = 0 +17849761 locktype2 = 2 +17849762 locktype3 = 1 +17849762 goalCount = 2 +17849763 goalTotal = 12 +17849763 otherCount = 11 +~~~ +17849764 CURRENTGOAL IS [2] +~~~ +17853717 UP 2 +17853717 2 255 +~~~ +~~~ +17853745 outer reward +~~~ +17853745 2 131327 +~~~ +~~~ +17853940 DOWN 2 +17853940 0 131327 +~~~ +~~~ +17853964 0 131326 +~~~ +~~~ +17853966 0 131324 +~~~ +~~~ +17853967 0 131320 +~~~ +~~~ +17853969 0 131312 +~~~ +~~~ +17853971 0 131296 +~~~ +~~~ +17853973 0 131264 +~~~ +~~~ +17853975 0 131200 +~~~ +~~~ +17853977 0 131072 +~~~ +~~~ +17853978 0 131584 +17853979 homeCount = 26 +17853980 waitCount = 13 +17853981 ripCount = 11 +17854002 locktype1 = 0 +17854002 locktype2 = 2 +17854003 locktype3 = 1 +17854003 goalCount = 3 +17854004 goalTotal = 13 +17854004 otherCount = 11 +~~~ +17854005 2 131584 +17854195 2 512 +17854610 DOWN 2 +17854610 0 512 +17854627 2 512 +17854734 DOWN 2 +17854734 0 512 +17854760 2 512 +17854858 DOWN 2 +17854858 0 512 +17854884 2 512 +17854994 DOWN 2 +17854994 0 512 +17855017 2 512 +17855122 DOWN 2 +17855122 0 512 +17855152 2 512 +17855268 DOWN 2 +17855268 0 512 +17855283 2 512 +17861087 DOWN 2 +17861087 0 512 +17866371 UP 10 +17866371 waslock = 0 +17866371 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17866401 512 16777728 +~~~ +17866500 DOWN 10 +17866500 0 16777728 +17866522 UP 10 +17866522 waslock = 0 +17866522 512 16777728 +~~~ +~~~ +17866529 512 16778752 +~~~ +~~~ +17866531 512 16778240 +17866532 homeCount = 27 +17866532 waitCount = 13 +17866533 ripCount = 11 +17866533 locktype1 = 0 +17866534 locktype2 = 2 +17866534 locktype3 = 1 +17866535 goalCount = 3 +17866535 goalTotal = 13 +17866536 otherCount = 11 +~~~ +17866557 512 1024 +~~~ +17871309 DOWN 10 +17871309 0 1024 +~~~ +~~~ +~~~ +~~~ +17871338 homeCount = 27 +17871338 waitCount = 13 +17871339 ripCount = 11 +17871339 locktype1 = 0 +17871340 locktype2 = 2 +17871340 locktype3 = 1 +17871341 goalCount = 3 +17871341 goalTotal = 13 +17871342 otherCount = 11 +~~~ +17872797 UP 11 +17872797 1024 1024 +17876092 DOWN 11 +17876092 0 1024 +17876102 UP 11 +17876102 1024 1024 +17880683 DOWN 11 +17880683 0 1024 +17880710 UP 11 +17880710 1024 1024 +17880798 BEEP1 +17880798 BEEP2 +~~~ +~~~ +~~~ +17880819 1024 33555456 +~~~ +17880968 1024 1024 +17885726 DOWN 11 +17885726 0 1024 +~~~ +~~~ +17885745 0 0 +~~~ +~~~ +17885747 0 1 +~~~ +~~~ +17885748 0 3 +~~~ +~~~ +17885750 0 7 +~~~ +~~~ +17885752 0 15 +~~~ +~~~ +17885754 0 31 +~~~ +~~~ +17885756 0 63 +~~~ +~~~ +17885757 0 127 +~~~ +~~~ +17885759 0 255 +17885760 homeCount = 27 +17885761 waitCount = 13 +17885761 ripCount = 12 +17885762 locktype1 = 0 +17885783 locktype2 = 2 +17885784 locktype3 = 1 +17885784 goalCount = 3 +17885785 goalTotal = 13 +17885785 otherCount = 11 +~~~ +17885786 CURRENTGOAL IS [2] +~~~ +17885798 UP 11 +17885798 1024 255 +17887457 DOWN 11 +17887457 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887486 UP 11 +17887486 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887492 homeCount = 27 +17887493 waitCount = 13 +17887493 ripCount = 12 +17887494 locktype1 = 0 +17887494 locktype2 = 2 +17887495 locktype3 = 1 +17887495 goalCount = 3 +17887496 goalTotal = 13 +17887496 otherCount = 11 +~~~ +17887497 CURRENTGOAL IS [2] +~~~ +17887540 DOWN 11 +17887540 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887582 homeCount = 27 +17887583 waitCount = 13 +17887583 ripCount = 12 +17887584 locktype1 = 0 +17887584 locktype2 = 2 +17887585 locktype3 = 1 +17887585 goalCount = 3 +17887586 goalTotal = 13 +17887586 otherCount = 11 +~~~ +17887587 CURRENTGOAL IS [2] +~~~ +17891303 UP 2 +17891303 2 255 +~~~ +~~~ +17891329 outer reward +~~~ +17891329 2 131327 +~~~ +~~~ +17891504 DOWN 2 +17891504 0 131327 +~~~ +~~~ +17891528 0 131326 +~~~ +~~~ +17891530 0 131324 +~~~ +~~~ +17891531 0 131320 +~~~ +~~~ +17891533 0 131312 +~~~ +~~~ +17891535 0 131296 +~~~ +~~~ +17891537 0 131264 +~~~ +~~~ +17891539 0 131200 +~~~ +~~~ +17891540 0 131072 +~~~ +~~~ +17891542 0 131584 +17891543 homeCount = 27 +17891544 waitCount = 13 +17891544 ripCount = 12 +17891566 locktype1 = 0 +17891566 locktype2 = 2 +17891567 locktype3 = 1 +17891567 goalCount = 4 +17891568 goalTotal = 14 +17891568 otherCount = 11 +~~~ +17891569 2 131584 +17891779 2 512 +17892060 DOWN 2 +17892060 0 512 +17892075 2 512 +17892185 DOWN 2 +17892185 0 512 +17892200 2 512 +17898873 DOWN 2 +17898873 0 512 +17898936 2 512 +17898969 DOWN 2 +17898969 0 512 +17903622 UP 10 +17903623 waslock = 0 +17903622 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17903655 512 16777728 +~~~ +17903805 512 512 +17907190 DOWN 10 +17907190 0 512 +~~~ +~~~ +17907209 0 1536 +~~~ +~~~ +17907211 0 1024 +17907212 homeCount = 28 +17907212 waitCount = 13 +17907213 ripCount = 12 +17907213 locktype1 = 0 +17907214 locktype2 = 2 +17907214 locktype3 = 1 +17907215 goalCount = 4 +17907215 goalTotal = 14 +17907216 otherCount = 11 +~~~ +17907245 UP 10 +17907245 waslock = 0 +17907245 512 1024 +~~~ +17907292 DOWN 10 +17907292 0 1024 +~~~ +~~~ +~~~ +~~~ +17907315 homeCount = 28 +17907316 waitCount = 13 +17907316 ripCount = 12 +17907317 locktype1 = 0 +17907317 locktype2 = 2 +17907318 locktype3 = 1 +17907318 goalCount = 4 +17907319 goalTotal = 14 +17907319 otherCount = 11 +~~~ +17908743 UP 11 +17908743 1024 1024 +17911424 DOWN 11 +17911424 0 1024 +17911439 UP 11 +17911439 1024 1024 +17914044 DOWN 11 +17914044 0 1024 +17914054 UP 11 +17914054 1024 1024 +17914744 BEEP1 +17914744 BEEP2 +~~~ +~~~ +~~~ +17914764 1024 33555456 +~~~ +17914914 1024 1024 +17920379 DOWN 11 +17920379 0 1024 +17920399 UP 11 +17920399 1024 1024 +~~~ +~~~ +17920402 1024 0 +~~~ +~~~ +17920404 1024 1 +~~~ +~~~ +17920406 1024 3 +~~~ +~~~ +17920408 1024 7 +~~~ +~~~ +17920409 1024 15 +~~~ +~~~ +17920411 1024 31 +~~~ +~~~ +17920413 1024 63 +~~~ +~~~ +17920415 1024 127 +~~~ +~~~ +17920417 1024 255 +17920418 homeCount = 28 +17920418 waitCount = 13 +17920439 ripCount = 13 +17920440 locktype1 = 0 +17920440 locktype2 = 2 +17920441 locktype3 = 1 +17920441 goalCount = 4 +17920442 goalTotal = 14 +17920442 otherCount = 11 +~~~ +17920443 CURRENTGOAL IS [2] +~~~ +17920510 DOWN 11 +17920510 0 255 +17920518 UP 11 +17920517 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17920542 homeCount = 28 +17920543 waitCount = 13 +17920543 ripCount = 13 +17920544 locktype1 = 0 +17920544 locktype2 = 2 +17920545 locktype3 = 1 +17920545 goalCount = 4 +17920546 goalTotal = 14 +17920546 otherCount = 11 +~~~ +17920547 CURRENTGOAL IS [2] +~~~ +17922012 DOWN 11 +17922012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17922052 homeCount = 28 +17922053 waitCount = 13 +17922054 ripCount = 13 +17922054 locktype1 = 0 +17922055 locktype2 = 2 +17922055 locktype3 = 1 +17922055 goalCount = 4 +17922056 goalTotal = 14 +17922056 otherCount = 11 +~~~ +17922058 CURRENTGOAL IS [2] +~~~ +17925749 UP 2 +17925749 2 255 +~~~ +~~~ +17925768 outer reward +~~~ +17925768 2 131327 +~~~ +~~~ +17925771 DOWN 2 +17925771 0 131327 +~~~ +~~~ +17925792 0 131326 +~~~ +~~~ +17925794 0 131324 +~~~ +~~~ +17925796 0 131320 +~~~ +~~~ +17925797 0 131312 +~~~ +~~~ +17925799 0 131296 +~~~ +~~~ +17925801 0 131264 +~~~ +~~~ +17925803 0 131200 +~~~ +17925804 2 131200 +~~~ +~~~ +17925806 2 131072 +~~~ +17925807 2 131584 +17925808 homeCount = 28 +17925809 waitCount = 13 +17925830 ripCount = 13 +17925830 locktype1 = 0 +17925831 locktype2 = 2 +17925831 locktype3 = 1 +17925832 goalCount = 5 +17925832 goalTotal = 15 +17925833 otherCount = 11 +~~~ +17926043 DOWN 2 +17926043 0 131584 +17926080 2 131584 +17926218 2 512 +17926346 DOWN 2 +17926346 0 512 +17926352 2 512 +17926453 DOWN 2 +17926453 0 512 +17926478 2 512 +17926574 DOWN 2 +17926574 0 512 +17926610 2 512 +17926695 DOWN 2 +17926695 0 512 +17926739 2 512 +17926820 DOWN 2 +17926820 0 512 +17926863 2 512 +17926961 DOWN 2 +17926961 0 512 +17926990 2 512 +17927108 DOWN 2 +17927108 0 512 +17927126 2 512 +17932908 DOWN 2 +17932908 0 512 +17937014 UP 10 +17937014 waslock = 0 +17937014 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17937042 512 16777728 +~~~ +17937192 512 512 +17941745 DOWN 10 +17941745 0 512 +~~~ +~~~ +17941767 0 2560 +~~~ +~~~ +17941769 0 2048 +17941770 homeCount = 29 +17941771 waitCount = 13 +17941771 ripCount = 13 +17941772 locktype1 = 0 +17941772 locktype2 = 2 +17941772 locktype3 = 1 +17941773 goalCount = 5 +17941773 goalTotal = 15 +17941774 otherCount = 11 +~~~ +17943411 UP 12 +17943411 2048 2048 +17945337 DOWN 12 +17945337 0 2048 +17945386 UP 12 +17945386 2048 2048 +17951411 CLICK1 +17951411 CLICK2 +~~~ +~~~ +~~~ +17951429 2048 67110912 +~~~ +17951579 2048 2048 +17957761 DOWN 12 +17957761 0 2048 +~~~ +~~~ +17957779 0 0 +~~~ +~~~ +17957781 0 1 +~~~ +~~~ +17957783 0 3 +~~~ +~~~ +17957784 0 7 +~~~ +~~~ +17957786 0 15 +~~~ +~~~ +17957788 0 31 +~~~ +~~~ +17957790 0 63 +~~~ +~~~ +17957792 0 127 +~~~ +~~~ +17957794 0 255 +17957795 homeCount = 29 +17957795 waitCount = 14 +17957796 ripCount = 13 +17957796 locktype1 = 0 +17957797 locktype2 = 2 +17957817 locktype3 = 1 +17957818 goalCount = 5 +17957818 goalTotal = 15 +17957819 otherCount = 11 +~~~ +17957820 CURRENTGOAL IS [2] +~~~ +17957820 UP 12 +17957820 2048 255 +17957860 DOWN 12 +17957860 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17957900 homeCount = 29 +17957900 waitCount = 14 +17957901 ripCount = 13 +17957902 locktype1 = 0 +17957902 locktype2 = 2 +17957903 locktype3 = 1 +17957903 goalCount = 5 +17957903 goalTotal = 15 +17957904 otherCount = 11 +~~~ +17957905 CURRENTGOAL IS [2] +~~~ +17960837 UP 2 +17960837 2 255 +~~~ +~~~ +17960865 outer reward +~~~ +17960866 2 131327 +~~~ +~~~ +17960983 DOWN 2 +17960983 0 131327 +~~~ +~~~ +17961004 0 131326 +~~~ +~~~ +17961006 0 131324 +~~~ +~~~ +17961008 0 131320 +~~~ +~~~ +17961009 0 131312 +~~~ +~~~ +17961011 0 131296 +~~~ +~~~ +17961013 0 131264 +~~~ +~~~ +17961015 0 131200 +~~~ +~~~ +17961017 0 131072 +~~~ +~~~ +17961019 0 131584 +17961020 homeCount = 29 +17961020 waitCount = 14 +17961021 ripCount = 13 +17961042 locktype1 = 0 +17961042 locktype2 = 2 +17961043 locktype3 = 1 +17961043 goalCount = 6 +17961044 goalTotal = 16 +17961044 otherCount = 11 +~~~ +17961051 2 131584 +17961315 2 512 +17961832 DOWN 2 +17961832 0 512 +17961853 2 512 +17961968 DOWN 2 +17961968 0 512 +17961983 2 512 +17962107 DOWN 2 +17962107 0 512 +17962114 2 512 +17962230 DOWN 2 +17962230 0 512 +17962255 2 512 +17969076 DOWN 2 +17969076 0 512 +17969149 2 512 +17969179 DOWN 2 +17969179 0 512 +17973719 UP 10 +17973719 waslock = 0 +17973719 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17973748 512 16777728 +~~~ +17973898 512 512 +17978571 DOWN 10 +17978571 0 512 +~~~ +~~~ +17978594 0 1536 +~~~ +~~~ +17978596 0 1024 +17978597 homeCount = 30 +17978597 waitCount = 14 +17978598 ripCount = 13 +17978598 locktype1 = 0 +17978599 locktype2 = 2 +17978599 locktype3 = 1 +17978600 goalCount = 6 +17978600 goalTotal = 16 +17978601 otherCount = 11 +~~~ +17978622 UP 10 +17978622 waslock = 0 +17978622 512 1024 +~~~ +17978673 DOWN 10 +17978673 0 1024 +~~~ +~~~ +~~~ +~~~ +17978698 homeCount = 30 +17978699 waitCount = 14 +17978699 ripCount = 13 +17978700 locktype1 = 0 +17978700 locktype2 = 2 +17978701 locktype3 = 1 +17978701 goalCount = 6 +17978702 goalTotal = 16 +17978702 otherCount = 11 +~~~ +17980140 UP 11 +17980140 1024 1024 +17982129 DOWN 11 +17982129 0 1024 +17982145 UP 11 +17982145 1024 1024 +17987640 BEEP1 +17987640 BEEP2 +~~~ +~~~ +~~~ +17987665 1024 33555456 +~~~ +17987815 1024 1024 +17995055 DOWN 11 +17995055 0 1024 +~~~ +~~~ +17995073 0 0 +~~~ +~~~ +17995075 0 1 +~~~ +~~~ +17995077 0 3 +~~~ +~~~ +17995079 0 7 +~~~ +~~~ +17995081 0 15 +~~~ +~~~ +17995083 0 31 +~~~ +~~~ +17995084 0 63 +~~~ +~~~ +17995086 0 127 +~~~ +~~~ +17995088 0 255 +17995089 homeCount = 30 +17995090 waitCount = 14 +17995090 ripCount = 14 +17995091 locktype1 = 0 +17995112 locktype2 = 2 +17995112 locktype3 = 1 +17995113 goalCount = 6 +17995113 goalTotal = 16 +17995114 otherCount = 11 +~~~ +17995115 CURRENTGOAL IS [2] +~~~ +17999238 UP 2 +17999238 2 255 +~~~ +~~~ +17999256 outer reward +~~~ +17999256 2 131327 +~~~ +~~~ +17999414 DOWN 2 +17999414 0 131327 +~~~ +~~~ +17999435 0 131326 +~~~ +~~~ +17999437 0 131324 +~~~ +~~~ +17999438 0 131320 +~~~ +~~~ +17999440 0 131312 +~~~ +~~~ +17999442 0 131296 +~~~ +~~~ +17999444 0 131264 +~~~ +~~~ +17999446 0 131200 +~~~ +~~~ +17999448 0 131072 +~~~ +~~~ +17999449 0 131584 +17999451 homeCount = 30 +17999451 waitCount = 14 +17999452 ripCount = 14 +17999472 locktype1 = 0 +17999473 locktype2 = 2 +17999473 locktype3 = 1 +17999474 goalCount = 7 +17999474 goalTotal = 17 +17999475 otherCount = 11 +~~~ +17999475 2 131584 +17999706 2 512 +17999969 DOWN 2 +17999969 0 512 +17999988 2 512 +18000082 DOWN 2 +18000082 0 512 +18000121 2 512 +18000212 DOWN 2 +18000212 0 512 +18000243 2 512 +18000338 DOWN 2 +18000338 0 512 +18000379 2 512 +18000475 DOWN 2 +18000475 0 512 +18000502 2 512 +18001062 DOWN 2 +18001062 0 512 +18001075 2 512 +18006367 DOWN 2 +18006367 0 512 +18006392 2 512 +18006463 DOWN 2 +18006463 0 512 +18011267 UP 10 +18011267 waslock = 0 +18011267 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18011300 512 16777728 +~~~ +18011450 512 512 +18011639 DOWN 10 +18011639 0 512 +18011656 UP 10 +18011656 waslock = 0 +18011656 512 512 +~~~ +~~~ +18011664 512 1536 +~~~ +~~~ +18011666 512 1024 +18011667 homeCount = 31 +18011668 waitCount = 14 +18011668 ripCount = 14 +18011669 locktype1 = 0 +18011669 locktype2 = 2 +18011670 locktype3 = 1 +18011670 goalCount = 7 +18011671 goalTotal = 17 +18011671 otherCount = 11 +~~~ +~~~ +18014768 DOWN 10 +18014768 0 1024 +~~~ +~~~ +~~~ +~~~ +18014787 homeCount = 31 +18014788 waitCount = 14 +18014788 ripCount = 14 +18014789 locktype1 = 0 +18014789 locktype2 = 2 +18014789 locktype3 = 1 +18014790 goalCount = 7 +18014790 goalTotal = 17 +18014791 otherCount = 11 +~~~ +18014805 UP 10 +18014805 waslock = 0 +18014804 512 1024 +~~~ +18014873 DOWN 10 +18014873 0 1024 +~~~ +~~~ +~~~ +~~~ +18014898 homeCount = 31 +18014899 waitCount = 14 +18014899 ripCount = 14 +18014900 locktype1 = 0 +18014900 locktype2 = 2 +18014901 locktype3 = 1 +18014901 goalCount = 7 +18014902 goalTotal = 17 +18014902 otherCount = 11 +~~~ +18016371 UP 11 +18016371 1024 1024 +18019466 DOWN 11 +18019466 0 1024 +18019477 UP 11 +18019477 1024 1024 +18020371 BEEP1 +18020371 BEEP2 +~~~ +~~~ +~~~ +18020397 1024 33555456 +~~~ +18020547 1024 1024 +18025455 DOWN 11 +18025454 0 1024 +18025472 UP 11 +18025472 1024 1024 +~~~ +~~~ +18025475 1024 0 +~~~ +~~~ +18025477 1024 1 +~~~ +~~~ +18025479 1024 3 +~~~ +~~~ +18025480 1024 7 +~~~ +~~~ +18025482 1024 15 +~~~ +~~~ +18025484 1024 31 +~~~ +~~~ +18025486 1024 63 +~~~ +~~~ +18025488 1024 127 +~~~ +~~~ +18025490 1024 255 +18025491 homeCount = 31 +18025491 waitCount = 14 +18025492 ripCount = 15 +18025513 locktype1 = 0 +18025513 locktype2 = 2 +18025514 locktype3 = 1 +18025514 goalCount = 7 +18025514 goalTotal = 17 +18025515 otherCount = 11 +~~~ +18025516 CURRENTGOAL IS [2] +~~~ +18025534 DOWN 11 +18025534 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18025574 homeCount = 31 +18025574 waitCount = 14 +18025575 ripCount = 15 +18025575 locktype1 = 0 +18025576 locktype2 = 2 +18025576 locktype3 = 1 +18025577 goalCount = 7 +18025577 goalTotal = 17 +18025578 otherCount = 11 +~~~ +18025579 CURRENTGOAL IS [2] +~~~ +18025617 UP 11 +18025617 1024 255 +18028361 DOWN 11 +18028361 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18028404 homeCount = 31 +18028404 waitCount = 14 +18028405 ripCount = 15 +18028405 locktype1 = 0 +18028406 locktype2 = 2 +18028406 locktype3 = 1 +18028407 goalCount = 7 +18028407 goalTotal = 17 +18028408 otherCount = 11 +~~~ +18028409 CURRENTGOAL IS [2] +~~~ +18028430 UP 11 +18028430 1024 255 +18028451 DOWN 11 +18028451 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18028494 homeCount = 31 +18028494 waitCount = 14 +18028495 ripCount = 15 +18028495 locktype1 = 0 +18028496 locktype2 = 2 +18028496 locktype3 = 1 +18028497 goalCount = 7 +18028497 goalTotal = 17 +18028498 otherCount = 11 +~~~ +18028499 CURRENTGOAL IS [2] +~~~ +18032808 UP 2 +18032808 2 255 +~~~ +~~~ +18032831 outer reward +~~~ +18032831 2 131327 +~~~ +~~~ +18033013 DOWN 2 +18033013 0 131327 +~~~ +~~~ +18033039 0 131326 +~~~ +~~~ +18033040 0 131324 +~~~ +~~~ +18033042 0 131320 +~~~ +~~~ +18033044 0 131312 +~~~ +~~~ +18033046 0 131296 +~~~ +~~~ +18033048 0 131264 +~~~ +~~~ +18033050 0 131200 +~~~ +~~~ +18033051 0 131072 +~~~ +~~~ +18033053 0 131584 +18033054 homeCount = 31 +18033055 waitCount = 14 +18033055 ripCount = 15 +18033076 locktype1 = 0 +18033077 locktype2 = 2 +18033077 locktype3 = 1 +18033078 goalCount = 8 +18033078 goalTotal = 18 +18033079 otherCount = 11 +~~~ +18033079 2 131584 +18033281 2 512 +18033570 DOWN 2 +18033570 0 512 +18033590 2 512 +18033697 DOWN 2 +18033697 0 512 +18033720 2 512 +18033834 DOWN 2 +18033834 0 512 +18033851 2 512 +18033956 DOWN 2 +18033956 0 512 +18033979 2 512 +18034089 DOWN 2 +18034089 0 512 +18034108 2 512 +18034220 DOWN 2 +18034220 0 512 +18034238 2 512 +18034509 DOWN 2 +18034509 0 512 +18034533 2 512 +18043258 DOWN 2 +18043258 0 512 +18057543 UP 10 +18057543 waslock = 0 +18057543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18057574 512 16777728 +~~~ +18057724 512 512 +18062627 DOWN 10 +18062627 0 512 +~~~ +~~~ +18062649 0 2560 +~~~ +~~~ +18062651 0 2048 +18062652 homeCount = 32 +18062653 waitCount = 14 +18062653 ripCount = 15 +18062654 locktype1 = 0 +18062654 locktype2 = 2 +18062655 locktype3 = 1 +18062655 goalCount = 8 +18062656 goalTotal = 18 +18062656 otherCount = 11 +~~~ +18064275 UP 12 +18064275 2048 2048 +18065776 DOWN 12 +18065776 0 2048 +18065788 UP 12 +18065788 2048 2048 +18066962 DOWN 12 +18066962 0 2048 +18066982 UP 12 +18066982 2048 2048 +18069995 DOWN 12 +18069995 0 2048 +18070016 UP 12 +18070016 2048 2048 +18070275 CLICK1 +18070275 CLICK2 +~~~ +~~~ +~~~ +18070302 2048 67110912 +~~~ +18070452 2048 2048 +18076097 DOWN 12 +18076097 0 2048 +~~~ +~~~ +18076120 0 0 +~~~ +~~~ +18076122 0 1 +~~~ +18076123 UP 12 +18076123 2048 1 +~~~ +~~~ +18076125 2048 3 +~~~ +~~~ +18076127 2048 7 +~~~ +~~~ +18076128 2048 15 +~~~ +18076129 2048 31 +~~~ +~~~ +18076131 2048 63 +~~~ +~~~ +18076132 2048 127 +~~~ +~~~ +18076134 2048 255 +18076135 homeCount = 32 +18076156 waitCount = 15 +18076157 ripCount = 15 +18076157 locktype1 = 0 +18076158 locktype2 = 2 +18076158 locktype3 = 1 +18076159 goalCount = 8 +18076159 goalTotal = 18 +18076160 otherCount = 11 +~~~ +18076161 CURRENTGOAL IS [2] +~~~ +18076417 DOWN 12 +18076417 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076446 UP 12 +18076446 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076455 homeCount = 32 +18076456 waitCount = 15 +18076456 ripCount = 15 +18076457 locktype1 = 0 +18076457 locktype2 = 2 +18076458 locktype3 = 1 +18076458 goalCount = 8 +18076459 goalTotal = 18 +18076459 otherCount = 11 +~~~ +18076460 CURRENTGOAL IS [2] +~~~ +18076482 DOWN 12 +18076481 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076512 homeCount = 32 +18076512 waitCount = 15 +18076513 ripCount = 15 +18076513 locktype1 = 0 +18076514 locktype2 = 2 +18076514 locktype3 = 1 +18076515 goalCount = 8 +18076515 goalTotal = 18 +18076516 otherCount = 11 +~~~ +18076517 CURRENTGOAL IS [2] +~~~ +18076538 UP 12 +18076538 2048 255 +18078783 DOWN 12 +18078783 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078807 UP 12 +18078807 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078818 homeCount = 32 +18078818 waitCount = 15 +18078819 ripCount = 15 +18078819 locktype1 = 0 +18078820 locktype2 = 2 +18078820 locktype3 = 1 +18078821 goalCount = 8 +18078821 goalTotal = 18 +18078822 otherCount = 11 +~~~ +18078823 CURRENTGOAL IS [2] +~~~ +18078844 DOWN 12 +18078844 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078877 homeCount = 32 +18078878 waitCount = 15 +18078878 ripCount = 15 +18078879 locktype1 = 0 +18078879 locktype2 = 2 +18078880 locktype3 = 1 +18078880 goalCount = 8 +18078881 goalTotal = 18 +18078881 otherCount = 11 +~~~ +18078882 CURRENTGOAL IS [2] +~~~ +18082583 UP 2 +18082583 2 255 +~~~ +~~~ +18082608 outer reward +~~~ +18082608 2 131327 +~~~ +~~~ +18082618 DOWN 2 +18082618 0 131327 +~~~ +~~~ +18082642 0 131326 +~~~ +~~~ +18082644 0 131324 +~~~ +~~~ +18082646 0 131320 +~~~ +~~~ +18082647 0 131312 +~~~ +~~~ +18082649 0 131296 +~~~ +~~~ +18082651 0 131264 +~~~ +~~~ +18082653 0 131200 +~~~ +~~~ +18082655 0 131072 +~~~ +~~~ +18082657 0 131584 +18082658 homeCount = 32 +18082658 waitCount = 15 +18082659 ripCount = 15 +18082679 locktype1 = 0 +18082680 locktype2 = 2 +18082680 locktype3 = 1 +18082681 goalCount = 9 +18082681 goalTotal = 19 +18082682 otherCount = 11 +~~~ +18082682 2 131584 +18082895 DOWN 2 +18082895 0 131584 +18082932 2 131584 +18083058 2 512 +18083217 DOWN 2 +18083217 0 512 +18083238 2 512 +18083329 DOWN 2 +18083329 0 512 +18083357 2 512 +18083584 DOWN 2 +18083584 0 512 +18083594 2 512 +18083695 DOWN 2 +18083695 0 512 +18083729 2 512 +18083842 DOWN 2 +18083842 0 512 +18083852 2 512 +18089144 DOWN 2 +18089144 0 512 +18089198 2 512 +18089250 DOWN 2 +18089250 0 512 +18095222 UP 10 +18095222 waslock = 0 +18095222 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18095251 512 16777728 +~~~ +18095401 512 512 +18095403 DOWN 10 +18095403 0 512 +~~~ +~~~ +18095434 0 1536 +~~~ +~~~ +18095436 0 1024 +18095437 homeCount = 33 +18095437 waitCount = 15 +18095438 ripCount = 15 +18095438 locktype1 = 0 +18095439 locktype2 = 2 +18095439 locktype3 = 1 +18095440 goalCount = 9 +18095440 goalTotal = 19 +18095441 otherCount = 11 +~~~ +18095462 UP 10 +18095462 waslock = 0 +18095462 512 1024 +~~~ +18098815 DOWN 10 +18098815 0 1024 +~~~ +~~~ +~~~ +~~~ +18098837 homeCount = 33 +18098837 waitCount = 15 +18098838 ripCount = 15 +18098838 locktype1 = 0 +18098839 locktype2 = 2 +18098839 locktype3 = 1 +18098840 goalCount = 9 +18098840 goalTotal = 19 +18098841 otherCount = 11 +~~~ +18098841 UP 10 +18098842 waslock = 0 +18098841 512 1024 +~~~ +18098941 DOWN 10 +18098941 0 1024 +~~~ +~~~ +~~~ +~~~ +18098969 homeCount = 33 +18098969 waitCount = 15 +18098970 ripCount = 15 +18098970 locktype1 = 0 +18098971 locktype2 = 2 +18098971 locktype3 = 1 +18098972 goalCount = 9 +18098972 goalTotal = 19 +18098973 otherCount = 11 +~~~ +18100646 UP 11 +18100646 1024 1024 +18102966 DOWN 11 +18102966 0 1024 +18102978 UP 11 +18102978 1024 1024 +18104195 DOWN 11 +18104195 0 1024 +18104215 UP 11 +18104215 1024 1024 +18106646 BEEP1 +18106646 BEEP2 +~~~ +~~~ +~~~ +18106667 1024 33555456 +~~~ +18106817 1024 1024 +18106960 DOWN 11 +18106959 0 1024 +18107054 UP 11 +18107054 1024 1024 +~~~ +~~~ +18107351 1024 0 +~~~ +~~~ +18107353 1024 1 +~~~ +~~~ +18107355 1024 3 +~~~ +~~~ +18107357 1024 7 +~~~ +~~~ +18107359 1024 15 +~~~ +~~~ +18107361 1024 31 +~~~ +~~~ +18107362 1024 63 +~~~ +~~~ +18107364 1024 127 +~~~ +~~~ +18107366 1024 255 +18107367 homeCount = 33 +18107368 waitCount = 15 +18107368 ripCount = 16 +18107389 locktype1 = 0 +18107390 locktype2 = 2 +18107390 locktype3 = 1 +18107391 goalCount = 9 +18107391 goalTotal = 19 +18107392 otherCount = 11 +~~~ +18107393 CURRENTGOAL IS [2] +~~~ +18113951 DOWN 11 +18113951 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18113992 homeCount = 33 +18113993 waitCount = 15 +18113993 ripCount = 16 +18113994 locktype1 = 0 +18113994 locktype2 = 2 +18113995 locktype3 = 1 +18113995 goalCount = 9 +18113996 goalTotal = 19 +18113996 otherCount = 11 +~~~ +18113997 CURRENTGOAL IS [2] +~~~ +18114018 UP 11 +18114018 1024 255 +18114037 DOWN 11 +18114037 0 255 +18114051 UP 11 +18114051 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18114071 homeCount = 33 +18114072 waitCount = 15 +18114072 ripCount = 16 +18114073 locktype1 = 0 +18114073 locktype2 = 2 +18114074 locktype3 = 1 +18114074 goalCount = 9 +18114075 goalTotal = 19 +18114075 otherCount = 11 +~~~ +18114076 CURRENTGOAL IS [2] +~~~ +18115869 DOWN 11 +18115869 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18115903 homeCount = 33 +18115904 waitCount = 15 +18115904 ripCount = 16 +18115905 locktype1 = 0 +18115905 locktype2 = 2 +18115906 locktype3 = 1 +18115906 goalCount = 9 +18115907 goalTotal = 19 +18115907 otherCount = 11 +~~~ +18115908 CURRENTGOAL IS [2] +~~~ +18115930 UP 11 +18115929 1024 255 +18115962 DOWN 11 +18115962 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18116001 homeCount = 33 +18116002 waitCount = 15 +18116003 ripCount = 16 +18116003 locktype1 = 0 +18116004 locktype2 = 2 +18116004 locktype3 = 1 +18116005 goalCount = 9 +18116005 goalTotal = 19 +18116005 otherCount = 11 +~~~ +18116007 CURRENTGOAL IS [2] +~~~ +18119662 UP 2 +18119662 2 255 +~~~ +~~~ +18119689 outer reward +~~~ +18119690 2 131327 +~~~ +~~~ +18119694 outerreps = 6 +~~~ +~~~ +18119938 DOWN 2 +18119938 0 131327 +~~~ +~~~ +18119956 0 131326 +~~~ +~~~ +18119958 0 131324 +~~~ +~~~ +18119960 0 131320 +~~~ +~~~ +18119962 0 131312 +~~~ +~~~ +18119964 0 131296 +~~~ +~~~ +18119965 0 131264 +~~~ +~~~ +18119967 0 131200 +~~~ +~~~ +18119969 0 131072 +~~~ +~~~ +18119971 0 131584 +18119972 homeCount = 33 +18119972 waitCount = 15 +18119973 ripCount = 16 +18119994 locktype1 = 0 +18119995 locktype2 = 2 +18119995 locktype3 = 1 +18119996 goalCount = 0 +18119996 goalTotal = 20 +18119997 otherCount = 11 +~~~ +18119997 2 131584 +18120139 2 512 +18120369 DOWN 2 +18120369 0 512 +18120413 2 512 +18120500 DOWN 2 +18120500 0 512 +18120526 2 512 +18120623 DOWN 2 +18120623 0 512 +18120657 2 512 +18120748 DOWN 2 +18120748 0 512 +18120794 2 512 +18120885 DOWN 2 +18120885 0 512 +18120911 2 512 +18121020 DOWN 2 +18121020 0 512 +18121047 2 512 +18121152 DOWN 2 +18121152 0 512 +18121183 2 512 +18122677 DOWN 2 +18122677 0 512 +18122709 2 512 +18125125 DOWN 2 +18125125 0 512 +18125302 2 512 +18125328 DOWN 2 +18125328 0 512 +18125357 2 512 +18128345 DOWN 2 +18128345 0 512 +18128359 2 512 +18128526 DOWN 2 +18128525 0 512 +18128539 2 512 +18128866 DOWN 2 +18128866 0 512 +18133826 UP 10 +18133826 waslock = 0 +18133826 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18133854 512 16777728 +~~~ +18134004 512 512 +18139345 DOWN 10 +18139345 0 512 +~~~ +~~~ +18139368 0 2560 +~~~ +~~~ +18139370 0 2048 +18139371 homeCount = 34 +18139371 waitCount = 15 +18139372 ripCount = 16 +18139372 locktype1 = 0 +18139373 locktype2 = 2 +18139373 locktype3 = 1 +18139374 goalCount = 0 +18139374 goalTotal = 20 +18139375 otherCount = 11 +~~~ +18139396 UP 10 +18139396 waslock = 0 +18139396 512 2048 +~~~ +18139449 DOWN 10 +18139449 0 2048 +~~~ +~~~ +~~~ +~~~ +18139471 homeCount = 34 +18139471 waitCount = 15 +18139472 ripCount = 16 +18139472 locktype1 = 0 +18139473 locktype2 = 2 +18139473 locktype3 = 1 +18139474 goalCount = 0 +18139474 goalTotal = 20 +18139475 otherCount = 11 +~~~ +18141355 UP 12 +18141355 2048 2048 +18143540 DOWN 12 +18143540 0 2048 +18143589 UP 12 +18143589 2048 2048 +18144355 CLICK1 +18144355 CLICK2 +~~~ +~~~ +~~~ +18144383 2048 67110912 +~~~ +18144533 2048 2048 +18149565 DOWN 12 +18149565 0 2048 +18149572 UP 12 +18149572 2048 2048 +~~~ +~~~ +18149589 2048 0 +~~~ +~~~ +18149591 2048 1 +~~~ +~~~ +18149593 2048 3 +~~~ +~~~ +18149595 2048 7 +~~~ +~~~ +18149596 2048 15 +~~~ +~~~ +18149598 2048 31 +~~~ +~~~ +18149600 2048 63 +~~~ +~~~ +18149602 2048 127 +~~~ +~~~ +18149604 2048 255 +18149605 homeCount = 34 +18149605 waitCount = 16 +18149606 ripCount = 16 +18149627 locktype1 = 0 +18149627 locktype2 = 2 +18149628 locktype3 = 1 +18149628 goalCount = 0 +18149629 goalTotal = 20 +18149629 otherCount = 11 +~~~ +18149630 CURRENTGOAL IS [3] +~~~ +18149645 DOWN 12 +18149645 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18149687 homeCount = 34 +18149688 waitCount = 16 +18149688 ripCount = 16 +18149689 locktype1 = 0 +18149689 locktype2 = 2 +18149690 locktype3 = 1 +18149690 goalCount = 0 +18149691 goalTotal = 20 +18149691 otherCount = 11 +~~~ +18149692 CURRENTGOAL IS [3] +~~~ +18149746 UP 12 +18149746 2048 255 +18153121 DOWN 12 +18153121 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18153157 homeCount = 34 +18153158 waitCount = 16 +18153158 ripCount = 16 +18153159 locktype1 = 0 +18153159 locktype2 = 2 +18153160 locktype3 = 1 +18153160 goalCount = 0 +18153161 goalTotal = 20 +18153161 otherCount = 11 +~~~ +18153162 CURRENTGOAL IS [3] +~~~ +18155871 UP 2 +18155871 2 255 +~~~ +~~~ +18156143 DOWN 2 +18156143 0 255 +~~~ +~~~ +18156160 0 254 +~~~ +~~~ +18156162 0 252 +~~~ +~~~ +18156163 0 248 +~~~ +~~~ +18156165 0 240 +~~~ +~~~ +18156167 0 224 +~~~ +~~~ +18156169 0 192 +~~~ +~~~ +18156171 0 128 +~~~ +~~~ +18156172 0 0 +~~~ +~~~ +18156174 0 512 +18156175 homeCount = 34 +18156176 waitCount = 16 +18156176 ripCount = 16 +18156177 locktype1 = 0 +18156198 locktype2 = 2 +18156199 locktype3 = 1 +18156199 goalCount = 0 +18156200 goalTotal = 20 +18156200 otherCount = 12 +~~~ +18156201 2 512 +18156901 DOWN 2 +18156901 0 512 +18163599 UP 10 +18163599 waslock = 0 +18163599 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18163626 512 16777728 +18163628 DOWN 10 +18163628 0 16777728 +~~~ +~~~ +18163651 UP 10 +18163651 waslock = 0 +18163651 512 16777728 +~~~ +~~~ +~~~ +18163654 512 16778240 +18163655 homeCount = 35 +18163655 waitCount = 16 +18163656 ripCount = 16 +18163656 locktype1 = 0 +18163657 locktype2 = 2 +18163657 locktype3 = 1 +18163658 goalCount = 0 +18163679 goalTotal = 20 +18163679 otherCount = 12 +~~~ +~~~ +18163776 512 1024 +18168791 DOWN 10 +18168791 0 1024 +~~~ +~~~ +~~~ +~~~ +18168813 homeCount = 35 +18168814 waitCount = 16 +18168814 ripCount = 16 +18168815 locktype1 = 0 +18168815 locktype2 = 2 +18168816 locktype3 = 1 +18168816 goalCount = 0 +18168817 goalTotal = 20 +18168817 otherCount = 12 +~~~ +18170139 UP 11 +18170139 1024 1024 +18172433 DOWN 11 +18172433 0 1024 +18172442 UP 11 +18172442 1024 1024 +18174140 BEEP1 +18174140 BEEP2 +~~~ +~~~ +~~~ +18174161 1024 33555456 +~~~ +18174311 1024 1024 +18174484 DOWN 11 +18174484 0 1024 +18174503 UP 11 +18174503 1024 1024 +~~~ +~~~ +18174835 1024 0 +~~~ +~~~ +18174837 1024 1 +~~~ +~~~ +18174839 1024 3 +~~~ +~~~ +18174841 1024 7 +~~~ +~~~ +18174842 1024 15 +~~~ +~~~ +18174844 1024 31 +~~~ +~~~ +18174846 1024 63 +~~~ +~~~ +18174848 1024 127 +~~~ +~~~ +18174850 1024 255 +18174851 homeCount = 35 +18174851 waitCount = 16 +18174852 ripCount = 17 +18174873 locktype1 = 0 +18174873 locktype2 = 2 +18174874 locktype3 = 1 +18174874 goalCount = 0 +18174875 goalTotal = 20 +18174875 otherCount = 12 +~~~ +18174876 CURRENTGOAL IS [3] +~~~ +18179712 DOWN 11 +18179712 0 255 +18179726 UP 11 +18179726 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18179746 homeCount = 35 +18179747 waitCount = 16 +18179747 ripCount = 17 +18179748 locktype1 = 0 +18179748 locktype2 = 2 +18179749 locktype3 = 1 +18179749 goalCount = 0 +18179750 goalTotal = 20 +18179750 otherCount = 12 +~~~ +18179751 CURRENTGOAL IS [3] +~~~ +18179980 DOWN 11 +18179980 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18180007 UP 11 +18180007 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18180016 homeCount = 35 +18180017 waitCount = 16 +18180017 ripCount = 17 +18180018 locktype1 = 0 +18180018 locktype2 = 2 +18180019 locktype3 = 1 +18180019 goalCount = 0 +18180020 goalTotal = 20 +18180020 otherCount = 12 +~~~ +18180021 CURRENTGOAL IS [3] +~~~ +18182924 DOWN 11 +18182924 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18182966 homeCount = 35 +18182966 waitCount = 16 +18182967 ripCount = 17 +18182967 locktype1 = 0 +18182968 locktype2 = 2 +18182968 locktype3 = 1 +18182969 goalCount = 0 +18182969 goalTotal = 20 +18182970 otherCount = 12 +~~~ +18182971 CURRENTGOAL IS [3] +~~~ +18185764 UP 8 +18185764 128 255 +~~~ +~~~ +18185790 DOWN 8 +18185790 0 255 +~~~ +~~~ +18185804 0 254 +~~~ +~~~ +18185806 0 252 +~~~ +~~~ +18185808 0 248 +~~~ +~~~ +18185809 0 240 +~~~ +~~~ +18185811 0 224 +~~~ +~~~ +18185813 0 192 +~~~ +~~~ +18185815 0 128 +~~~ +~~~ +18185817 0 0 +~~~ +~~~ +18185819 0 512 +18185820 homeCount = 35 +18185820 waitCount = 16 +18185821 ripCount = 17 +18185821 locktype1 = 0 +18185842 locktype2 = 2 +18185843 locktype3 = 1 +18185843 goalCount = 0 +18185844 goalTotal = 20 +18185844 otherCount = 13 +~~~ +18185900 128 512 +18186287 DOWN 8 +18186287 0 512 +18186568 128 512 +18186592 DOWN 8 +18186592 0 512 +18196202 UP 10 +18196202 waslock = 0 +18196202 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18196229 512 16777728 +~~~ +18196378 512 512 +18200273 DOWN 10 +18200273 0 512 +~~~ +~~~ +18200292 0 1536 +~~~ +~~~ +18200294 0 1024 +18200295 homeCount = 36 +18200296 waitCount = 16 +18200296 ripCount = 17 +18200297 locktype1 = 0 +18200297 locktype2 = 2 +18200298 locktype3 = 1 +18200298 goalCount = 0 +18200299 goalTotal = 20 +18200299 otherCount = 13 +~~~ +18208210 UP 11 +18208210 1024 1024 +18208226 DOWN 11 +18208226 0 1024 +18208284 UP 11 +18208284 1024 1024 +18209774 DOWN 11 +18209774 0 1024 +18209820 UP 11 +18209820 1024 1024 +18210790 DOWN 11 +18210790 0 1024 +18210798 UP 11 +18210798 1024 1024 +18216211 BEEP1 +18216211 BEEP2 +~~~ +~~~ +~~~ +18216234 1024 33555456 +~~~ +18216384 1024 1024 +18223775 DOWN 11 +18223775 0 1024 +~~~ +~~~ +18223793 0 0 +~~~ +~~~ +18223795 0 1 +~~~ +~~~ +18223797 0 3 +~~~ +~~~ +18223798 0 7 +~~~ +~~~ +18223800 0 15 +~~~ +~~~ +18223802 0 31 +~~~ +~~~ +18223804 0 63 +~~~ +~~~ +18223806 0 127 +~~~ +~~~ +18223807 0 255 +18223808 homeCount = 36 +18223809 waitCount = 16 +18223810 ripCount = 18 +18223810 locktype1 = 0 +18223811 locktype2 = 2 +18223831 locktype3 = 1 +18223832 goalCount = 0 +18223832 goalTotal = 20 +18223833 otherCount = 13 +~~~ +18223834 CURRENTGOAL IS [3] +~~~ +18227228 UP 5 +18227228 16 255 +~~~ +18227252 DOWN 5 +18227252 0 255 +~~~ +~~~ +~~~ +18227283 0 254 +~~~ +~~~ +18227284 0 252 +~~~ +~~~ +18227286 0 248 +~~~ +~~~ +18227288 0 240 +~~~ +~~~ +18227290 0 224 +~~~ +~~~ +18227292 0 192 +~~~ +~~~ +18227294 0 128 +~~~ +~~~ +18227295 0 0 +~~~ +~~~ +18227297 0 512 +18227298 homeCount = 36 +18227299 waitCount = 16 +18227299 ripCount = 18 +18227300 locktype1 = 0 +18227321 locktype2 = 2 +18227321 locktype3 = 1 +18227322 goalCount = 0 +18227322 goalTotal = 20 +18227323 otherCount = 14 +~~~ +18227714 16 512 +18228137 DOWN 5 +18228137 0 512 +18235161 UP 10 +18235161 waslock = 0 +18235161 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18235189 512 16777728 +~~~ +18235339 512 512 +18235410 DOWN 10 +18235410 0 512 +18235431 UP 10 +18235431 waslock = 0 +18235431 512 512 +~~~ +~~~ +~~~ +18235434 512 1536 +~~~ +18235435 512 1024 +18235436 homeCount = 37 +18235436 waitCount = 16 +18235437 ripCount = 18 +18235437 locktype1 = 0 +18235438 locktype2 = 2 +18235438 locktype3 = 1 +18235460 goalCount = 0 +18235460 goalTotal = 20 +18235460 otherCount = 14 +~~~ +~~~ +18235511 DOWN 10 +18235511 0 1024 +~~~ +~~~ +~~~ +~~~ +18235536 homeCount = 37 +18235537 waitCount = 16 +18235537 ripCount = 18 +18235538 locktype1 = 0 +18235538 locktype2 = 2 +18235539 locktype3 = 1 +18235539 goalCount = 0 +18235540 goalTotal = 20 +18235540 otherCount = 14 +~~~ +18235607 UP 10 +18235607 waslock = 0 +18235607 512 1024 +~~~ +18239208 DOWN 10 +18239208 0 1024 +18239219 UP 10 +18239220 waslock = 0 +18239219 512 1024 +~~~ +~~~ +~~~ +~~~ +18239239 homeCount = 37 +18239239 waitCount = 16 +18239240 ripCount = 18 +18239240 locktype1 = 0 +18239241 locktype2 = 2 +18239241 locktype3 = 1 +18239242 goalCount = 0 +18239242 goalTotal = 20 +18239243 otherCount = 14 +~~~ +~~~ +18239327 DOWN 10 +18239327 0 1024 +~~~ +~~~ +~~~ +~~~ +18239348 homeCount = 37 +18239348 waitCount = 16 +18239349 ripCount = 18 +18239349 locktype1 = 0 +18239350 locktype2 = 2 +18239350 locktype3 = 1 +18239351 goalCount = 0 +18239351 goalTotal = 20 +18239352 otherCount = 14 +~~~ +18239392 UP 10 +18239393 waslock = 0 +18239392 512 1024 +18239414 DOWN 10 +18239414 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +18239439 homeCount = 37 +18239439 waitCount = 16 +18239440 ripCount = 18 +18239440 locktype1 = 0 +18239441 locktype2 = 2 +18239441 locktype3 = 1 +18239442 goalCount = 0 +18239442 goalTotal = 20 +18239443 otherCount = 14 +~~~ +18242195 UP 11 +18242195 1024 1024 +18242247 DOWN 11 +18242247 0 1024 +18242425 UP 11 +18242425 1024 1024 +18242444 DOWN 11 +18242444 0 1024 +18242544 UP 11 +18242544 1024 1024 +18245225 DOWN 11 +18245225 0 1024 +18245246 UP 11 +18245246 1024 1024 +18246696 BEEP1 +18246696 BEEP2 +~~~ +~~~ +~~~ +18246717 1024 33555456 +~~~ +18246867 1024 1024 +18252109 DOWN 11 +18252109 0 1024 +18252130 UP 11 +18252130 1024 1024 +~~~ +~~~ +18252136 1024 0 +~~~ +~~~ +18252138 1024 1 +~~~ +~~~ +18252140 1024 3 +~~~ +~~~ +18252142 1024 7 +~~~ +~~~ +18252144 1024 15 +~~~ +~~~ +18252145 1024 31 +~~~ +~~~ +18252147 1024 63 +~~~ +~~~ +18252149 1024 127 +~~~ +~~~ +18252151 1024 255 +18252152 homeCount = 37 +18252153 waitCount = 16 +18252153 ripCount = 19 +18252174 locktype1 = 0 +18252175 locktype2 = 2 +18252175 locktype3 = 1 +18252176 goalCount = 0 +18252176 goalTotal = 20 +18252177 otherCount = 14 +~~~ +18252178 CURRENTGOAL IS [3] +~~~ +18254872 DOWN 11 +18254872 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18254913 homeCount = 37 +18254913 waitCount = 16 +18254914 ripCount = 19 +18254914 locktype1 = 0 +18254915 locktype2 = 2 +18254915 locktype3 = 1 +18254916 goalCount = 0 +18254916 goalTotal = 20 +18254917 otherCount = 14 +~~~ +18254918 CURRENTGOAL IS [3] +~~~ +18258249 UP 4 +18258249 8 255 +~~~ +~~~ +18258276 DOWN 4 +18258276 0 255 +~~~ +~~~ +18258294 0 254 +~~~ +~~~ +18258296 0 252 +~~~ +~~~ +18258298 0 248 +~~~ +~~~ +18258300 0 240 +~~~ +~~~ +18258301 0 224 +~~~ +~~~ +18258303 0 192 +~~~ +~~~ +18258305 0 128 +~~~ +~~~ +18258307 0 0 +~~~ +~~~ +18258309 0 512 +18258310 homeCount = 37 +18258310 waitCount = 16 +18258311 ripCount = 19 +18258311 locktype1 = 0 +18258333 locktype2 = 2 +18258333 locktype3 = 1 +18258333 goalCount = 0 +18258334 goalTotal = 20 +18258334 otherCount = 15 +~~~ +18258335 8 512 +18259587 DOWN 4 +18259587 0 512 +18266478 UP 10 +18266478 waslock = 0 +18266477 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18266509 512 16777728 +~~~ +18266659 512 512 +18266771 DOWN 10 +18266771 0 512 +~~~ +~~~ +18266793 0 2560 +~~~ +~~~ +18266795 0 2048 +18266796 homeCount = 38 +18266796 waitCount = 16 +18266797 ripCount = 19 +18266797 locktype1 = 0 +18266798 locktype2 = 2 +18266798 locktype3 = 1 +18266799 goalCount = 0 +18266799 goalTotal = 20 +18266800 otherCount = 15 +~~~ +18266821 UP 10 +18266821 waslock = 0 +18266821 512 2048 +~~~ +18272909 DOWN 10 +18272909 0 2048 +~~~ +~~~ +~~~ +~~~ +18272936 homeCount = 38 +18272936 waitCount = 16 +18272937 ripCount = 19 +18272937 locktype1 = 0 +18272938 locktype2 = 2 +18272938 locktype3 = 1 +18272939 goalCount = 0 +18272939 goalTotal = 20 +18272940 otherCount = 15 +~~~ +18274852 UP 12 +18274852 2048 2048 +18278279 DOWN 12 +18278279 0 2048 +18278286 UP 12 +18278286 2048 2048 +18278290 DOWN 12 +18278290 0 2048 +18278305 UP 12 +18278305 2048 2048 +18281568 DOWN 12 +18281568 0 2048 +18281603 UP 12 +18281603 2048 2048 +18282352 CLICK1 +18282352 CLICK2 +~~~ +~~~ +~~~ +18282379 2048 67110912 +~~~ +18282529 2048 2048 +18288085 DOWN 12 +18288085 0 2048 +~~~ +~~~ +18288103 0 0 +~~~ +~~~ +18288105 0 1 +~~~ +18288106 UP 12 +18288106 2048 1 +~~~ +~~~ +~~~ +18288109 2048 7 +~~~ +~~~ +18288110 2048 15 +~~~ +~~~ +18288112 2048 31 +~~~ +~~~ +18288114 2048 63 +~~~ +~~~ +18288116 2048 127 +~~~ +~~~ +18288118 2048 255 +18288119 homeCount = 38 +18288119 waitCount = 17 +18288140 ripCount = 19 +18288140 locktype1 = 0 +18288141 locktype2 = 2 +18288141 locktype3 = 1 +18288142 goalCount = 0 +18288142 goalTotal = 20 +18288143 otherCount = 15 +~~~ +18288144 CURRENTGOAL IS [3] +~~~ +18288166 DOWN 12 +18288166 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18288203 homeCount = 38 +18288203 waitCount = 17 +18288204 ripCount = 19 +18288204 locktype1 = 0 +18288205 locktype2 = 2 +18288205 locktype3 = 1 +18288206 goalCount = 0 +18288206 goalTotal = 20 +18288207 otherCount = 15 +~~~ +18288208 CURRENTGOAL IS [3] +~~~ +18292311 UP 3 +18292311 4 255 +~~~ +~~~ +18292337 outer reward +~~~ +18292338 4 262399 +~~~ +~~~ +18292624 DOWN 3 +18292624 0 262399 +~~~ +~~~ +18292648 0 262398 +~~~ +~~~ +18292650 0 262396 +~~~ +~~~ +18292651 0 262392 +~~~ +~~~ +18292653 0 262384 +~~~ +~~~ +18292655 0 262368 +~~~ +18292656 4 262368 +~~~ +~~~ +18292658 4 262336 +~~~ +~~~ +18292660 4 262272 +~~~ +18292661 4 262144 +~~~ +~~~ +18292662 4 262656 +18292663 homeCount = 38 +18292684 waitCount = 17 +18292685 ripCount = 19 +18292685 locktype1 = 0 +18292686 locktype2 = 2 +18292686 locktype3 = 1 +18292687 goalCount = 1 +18292687 goalTotal = 21 +18292688 otherCount = 15 +~~~ +18292787 4 512 +18293056 DOWN 3 +18293056 0 512 +18293081 4 512 +18293179 DOWN 3 +18293179 0 512 +18293201 4 512 +18293306 DOWN 3 +18293306 0 512 +18293327 4 512 +18293431 DOWN 3 +18293431 0 512 +18293456 4 512 +18293561 DOWN 3 +18293561 0 512 +18293585 4 512 +18293698 DOWN 3 +18293698 0 512 +18293718 4 512 +18293833 DOWN 3 +18293833 0 512 +18293855 4 512 +18293976 DOWN 3 +18293976 0 512 +18293991 4 512 +18294119 DOWN 3 +18294119 0 512 +18294131 4 512 +18299516 DOWN 3 +18299516 0 512 +18299584 4 512 +18299611 DOWN 3 +18299611 0 512 +18305797 UP 10 +18305797 waslock = 0 +18305797 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18305825 512 16777728 +~~~ +18305975 512 512 +18311404 DOWN 10 +18311404 0 512 +~~~ +~~~ +18311429 0 1536 +~~~ +~~~ +18311431 0 1024 +18311432 homeCount = 39 +18311432 waitCount = 17 +18311433 ripCount = 19 +18311433 locktype1 = 0 +18311434 locktype2 = 2 +18311434 locktype3 = 1 +18311435 goalCount = 1 +18311435 goalTotal = 21 +18311436 otherCount = 15 +~~~ +18311457 UP 10 +18311457 waslock = 0 +18311457 512 1024 +~~~ +18311489 DOWN 10 +18311489 0 1024 +~~~ +~~~ +~~~ +~~~ +18311503 homeCount = 39 +18311503 waitCount = 17 +18311504 ripCount = 19 +18311504 locktype1 = 0 +18311505 locktype2 = 2 +18311505 locktype3 = 1 +18311506 goalCount = 1 +18311506 goalTotal = 21 +18311507 otherCount = 15 +~~~ +18313122 UP 11 +18313122 1024 1024 +18322122 BEEP1 +18322122 BEEP2 +~~~ +~~~ +~~~ +18322144 1024 33555456 +~~~ +18322294 1024 1024 +18326944 DOWN 11 +18326944 0 1024 +18326951 UP 11 +18326951 1024 1024 +~~~ +~~~ +18326969 1024 0 +~~~ +~~~ +18326971 1024 1 +~~~ +~~~ +18326973 1024 3 +~~~ +~~~ +18326975 1024 7 +~~~ +~~~ +18326976 1024 15 +~~~ +~~~ +18326978 1024 31 +~~~ +~~~ +18326980 1024 63 +~~~ +~~~ +18326982 1024 127 +~~~ +~~~ +18326984 1024 255 +18326985 homeCount = 39 +18326985 waitCount = 17 +18326986 ripCount = 20 +18327007 locktype1 = 0 +18327007 locktype2 = 2 +18327008 locktype3 = 1 +18327008 goalCount = 1 +18327009 goalTotal = 21 +18327009 otherCount = 15 +~~~ +18327010 CURRENTGOAL IS [3] +~~~ +18327218 DOWN 11 +18327218 0 255 +~~~ +~~~ +~~~ +18327242 UP 11 +18327242 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18327257 homeCount = 39 +18327257 waitCount = 17 +18327258 ripCount = 20 +18327258 locktype1 = 0 +18327259 locktype2 = 2 +18327259 locktype3 = 1 +18327260 goalCount = 1 +18327260 goalTotal = 21 +18327261 otherCount = 15 +~~~ +18327262 CURRENTGOAL IS [3] +~~~ +18330417 DOWN 11 +18330417 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18330460 homeCount = 39 +18330461 waitCount = 17 +18330461 ripCount = 20 +18330462 locktype1 = 0 +18330462 locktype2 = 2 +18330463 locktype3 = 1 +18330463 goalCount = 1 +18330464 goalTotal = 21 +18330464 otherCount = 15 +~~~ +18330465 CURRENTGOAL IS [3] +~~~ +18335296 UP 2 +18335296 2 255 +~~~ +~~~ +18335330 DOWN 2 +18335330 0 255 +~~~ +18335345 2 255 +~~~ +~~~ +18335347 2 254 +~~~ +~~~ +18335348 2 252 +~~~ +18335350 2 248 +~~~ +~~~ +18335351 2 240 +~~~ +~~~ +18335353 2 224 +~~~ +~~~ +18335355 2 192 +~~~ +~~~ +18335357 2 128 +~~~ +~~~ +18335358 2 0 +~~~ +~~~ +18335360 2 512 +18335361 homeCount = 39 +18335362 waitCount = 17 +18335362 ripCount = 20 +18335384 locktype1 = 0 +18335384 locktype2 = 2 +18335385 locktype3 = 1 +18335385 goalCount = 1 +18335385 goalTotal = 21 +18335386 otherCount = 16 +~~~ +18335768 DOWN 2 +18335768 0 512 +18335780 2 512 +18336120 DOWN 2 +18336120 0 512 +18336346 2 512 +18336362 DOWN 2 +18336362 0 512 +18336949 2 512 +18337029 DOWN 2 +18337029 0 512 +18340544 UP 10 +18340544 waslock = 0 +18340544 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18340570 512 16777728 +~~~ +18340720 512 512 +18344340 DOWN 10 +18344340 0 512 +~~~ +~~~ +18344365 0 2560 +~~~ +~~~ +18344367 0 2048 +18344368 homeCount = 40 +18344368 waitCount = 17 +18344369 ripCount = 20 +18344369 locktype1 = 0 +18344370 locktype2 = 2 +18344370 locktype3 = 1 +18344371 goalCount = 1 +18344371 goalTotal = 21 +18344372 otherCount = 16 +~~~ +18344393 UP 10 +18344393 waslock = 0 +18344393 512 2048 +~~~ +18344426 DOWN 10 +18344426 0 2048 +~~~ +~~~ +~~~ +~~~ +18344451 homeCount = 40 +18344451 waitCount = 17 +18344452 ripCount = 20 +18344452 locktype1 = 0 +18344453 locktype2 = 2 +18344453 locktype3 = 1 +18344454 goalCount = 1 +18344454 goalTotal = 21 +18344455 otherCount = 16 +~~~ +18346034 UP 12 +18346034 2048 2048 +18353034 CLICK1 +18353034 CLICK2 +~~~ +~~~ +~~~ +18353058 2048 67110912 +~~~ +18353208 2048 2048 +18353356 DOWN 12 +18353356 0 2048 +~~~ +~~~ +18353377 0 0 +~~~ +~~~ +18353379 0 1 +~~~ +~~~ +18353381 0 3 +~~~ +~~~ +18353383 0 7 +~~~ +~~~ +18353385 0 15 +~~~ +~~~ +18353387 0 31 +~~~ +~~~ +18353388 0 63 +~~~ +~~~ +18353390 0 127 +~~~ +~~~ +18353392 0 255 +18353393 homeCount = 40 +18353394 waitCount = 18 +18353394 ripCount = 20 +18353395 locktype1 = 0 +18353395 locktype2 = 2 +18353416 locktype3 = 1 +18353417 goalCount = 1 +18353417 goalTotal = 21 +18353418 otherCount = 16 +~~~ +18353419 CURRENTGOAL IS [3] +~~~ +18353419 UP 12 +18353419 2048 255 +18359231 DOWN 12 +18359231 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18359273 homeCount = 40 +18359274 waitCount = 18 +18359274 ripCount = 20 +18359275 locktype1 = 0 +18359276 locktype2 = 2 +18359276 locktype3 = 1 +18359276 goalCount = 1 +18359277 goalTotal = 21 +18359277 otherCount = 16 +~~~ +18359279 CURRENTGOAL IS [3] +~~~ +18359318 UP 12 +18359318 2048 255 +18359326 DOWN 12 +18359326 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18359353 homeCount = 40 +18359354 waitCount = 18 +18359354 ripCount = 20 +18359355 locktype1 = 0 +18359355 locktype2 = 2 +18359356 locktype3 = 1 +18359356 goalCount = 1 +18359357 goalTotal = 21 +18359357 otherCount = 16 +~~~ +18359358 CURRENTGOAL IS [3] +~~~ +18367152 UP 10 +18367152 waslock = 0 +18367152 512 255 +~~~ +18367170 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18367178 512 254 +~~~ +~~~ +18367180 512 252 +~~~ +~~~ +18367181 512 248 +~~~ +~~~ +18367183 512 240 +~~~ +~~~ +18367185 512 224 +~~~ +~~~ +18367187 512 192 +~~~ +~~~ +18367189 512 128 +~~~ +~~~ +18367191 512 0 +~~~ +~~~ +~~~ +18367431 0 0 +18367494 512 0 +18368467 0 0 +18370070 512 0 +18370115 0 0 +18390750 512 0 +18390835 0 0 +18390853 512 0 +18391792 0 0 +18391867 512 0 +18392170 LOCKEND +~~~ +~~~ +~~~ +18392191 512 512 +18392406 DOWN 10 +18392406 0 512 +18392474 UP 10 +18392474 waslock = 0 +18392474 512 512 +18392493 DOWN 10 +18392493 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18392519 0 16777728 +~~~ +~~~ +~~~ +18392522 0 16778752 +~~~ +~~~ +18392524 0 16778240 +18392525 homeCount = 41 +18392525 waitCount = 18 +18392526 ripCount = 20 +18392526 locktype1 = 0 +18392527 locktype2 = 3 +18392527 locktype3 = 1 +18392528 goalCount = 1 +18392528 goalTotal = 21 +18392529 otherCount = 16 +~~~ +18392654 UP 10 +18392654 waslock = 0 +18392654 512 16778240 +18392669 512 1024 +~~~ +18392693 DOWN 10 +18392693 0 1024 +~~~ +~~~ +~~~ +~~~ +18392714 homeCount = 41 +18392715 waitCount = 18 +18392715 ripCount = 20 +18392716 locktype1 = 0 +18392716 locktype2 = 3 +18392717 locktype3 = 1 +18392717 goalCount = 1 +18392718 goalTotal = 21 +18392718 otherCount = 16 +~~~ +18392893 UP 10 +18392894 waslock = 0 +18392893 512 1024 +~~~ +18399200 DOWN 10 +18399200 0 1024 +~~~ +~~~ +~~~ +~~~ +18399223 homeCount = 41 +18399224 waitCount = 18 +18399224 ripCount = 20 +18399225 locktype1 = 0 +18399225 locktype2 = 3 +18399226 locktype3 = 1 +18399226 goalCount = 1 +18399227 goalTotal = 21 +18399227 otherCount = 16 +~~~ +18399231 UP 10 +18399231 waslock = 0 +18399231 512 1024 +~~~ +18399278 DOWN 10 +18399278 0 1024 +~~~ +~~~ +~~~ +~~~ +18399297 homeCount = 41 +18399297 waitCount = 18 +18399298 ripCount = 20 +18399298 locktype1 = 0 +18399299 locktype2 = 3 +18399299 locktype3 = 1 +18399300 goalCount = 1 +18399300 goalTotal = 21 +18399301 otherCount = 16 +~~~ +18402849 UP 11 +18402849 1024 1024 +18403841 DOWN 11 +18403841 0 1024 +18403876 UP 11 +18403876 1024 1024 +18404665 DOWN 11 +18404665 0 1024 +18404719 UP 11 +18404719 1024 1024 +18405850 BEEP1 +18405850 BEEP2 +~~~ +~~~ +~~~ +18405873 1024 33555456 +~~~ +18406023 1024 1024 +18411287 DOWN 11 +18411286 0 1024 +~~~ +~~~ +18411311 0 0 +~~~ +~~~ +18411313 0 1 +~~~ +~~~ +18411315 0 3 +~~~ +~~~ +18411317 UP 11 +18411317 1024 7 +~~~ +~~~ +18411319 1024 15 +~~~ +~~~ +18411320 1024 31 +~~~ +~~~ +18411322 1024 63 +~~~ +~~~ +18411324 1024 127 +~~~ +~~~ +18411326 1024 255 +18411327 homeCount = 41 +18411327 waitCount = 18 +18411349 ripCount = 21 +18411349 locktype1 = 0 +18411349 locktype2 = 3 +18411350 locktype3 = 1 +18411350 goalCount = 1 +18411351 goalTotal = 21 +18411352 otherCount = 16 +~~~ +18411353 CURRENTGOAL IS [3] +~~~ +18411418 DOWN 11 +18411418 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18411461 homeCount = 41 +18411461 waitCount = 18 +18411462 ripCount = 21 +18411462 locktype1 = 0 +18411463 locktype2 = 3 +18411463 locktype3 = 1 +18411464 goalCount = 1 +18411464 goalTotal = 21 +18411465 otherCount = 16 +~~~ +18411466 CURRENTGOAL IS [3] +~~~ +18411487 UP 11 +18411487 1024 255 +18411552 DOWN 11 +18411552 0 255 +18411570 UP 11 +18411570 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18411606 homeCount = 41 +18411606 waitCount = 18 +18411607 ripCount = 21 +18411607 locktype1 = 0 +18411608 locktype2 = 3 +18411608 locktype3 = 1 +18411609 goalCount = 1 +18411609 goalTotal = 21 +18411610 otherCount = 16 +~~~ +18411611 CURRENTGOAL IS [3] +~~~ +18413548 DOWN 11 +18413548 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18413589 homeCount = 41 +18413590 waitCount = 18 +18413590 ripCount = 21 +18413591 locktype1 = 0 +18413591 locktype2 = 3 +18413592 locktype3 = 1 +18413592 goalCount = 1 +18413593 goalTotal = 21 +18413593 otherCount = 16 +~~~ +18413594 CURRENTGOAL IS [3] +~~~ +18413618 UP 11 +18413618 1024 255 +18413653 DOWN 11 +18413653 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18413689 homeCount = 41 +18413690 waitCount = 18 +18413691 ripCount = 21 +18413691 locktype1 = 0 +18413692 locktype2 = 3 +18413692 locktype3 = 1 +18413693 goalCount = 1 +18413693 goalTotal = 21 +18413694 otherCount = 16 +~~~ +18413695 CURRENTGOAL IS [3] +~~~ +18427752 UP 3 +18427752 4 255 +~~~ +~~~ +18427780 outer reward +~~~ +18427781 4 262399 +~~~ +~~~ +18428037 DOWN 3 +18428037 0 262399 +~~~ +~~~ +18428056 0 262398 +~~~ +~~~ +18428057 0 262396 +~~~ +~~~ +18428059 0 262392 +~~~ +~~~ +18428061 0 262384 +~~~ +~~~ +18428063 0 262368 +~~~ +~~~ +18428065 0 262336 +~~~ +~~~ +18428067 0 262272 +~~~ +~~~ +18428068 0 262144 +~~~ +~~~ +18428070 0 262656 +18428071 homeCount = 41 +18428072 waitCount = 18 +18428072 ripCount = 21 +18428093 locktype1 = 0 +18428094 locktype2 = 3 +18428094 locktype3 = 1 +18428095 goalCount = 2 +18428095 goalTotal = 22 +18428096 otherCount = 16 +~~~ +18428096 4 262656 +18428230 4 512 +18428443 DOWN 3 +18428443 0 512 +18428476 4 512 +18428561 DOWN 3 +18428561 0 512 +18428599 4 512 +18428685 DOWN 3 +18428685 0 512 +18428724 4 512 +18428808 DOWN 3 +18428808 0 512 +18428850 4 512 +18428934 DOWN 3 +18428934 0 512 +18428970 4 512 +18429072 DOWN 3 +18429072 0 512 +18429100 4 512 +18429211 DOWN 3 +18429211 0 512 +18429239 4 512 +18429351 DOWN 3 +18429351 0 512 +18429374 4 512 +18429495 DOWN 3 +18429495 0 512 +18429514 4 512 +18429638 DOWN 3 +18429638 0 512 +18429655 4 512 +18435540 DOWN 3 +18435540 0 512 +18435579 4 512 +18435628 DOWN 3 +18435628 0 512 +18441200 UP 10 +18441200 waslock = 0 +18441200 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18441225 512 16777728 +~~~ +18441375 512 512 +18446646 DOWN 10 +18446646 0 512 +18446663 UP 10 +18446663 waslock = 0 +18446663 512 512 +~~~ +~~~ +18446669 512 1536 +~~~ +~~~ +18446671 512 1024 +18446672 homeCount = 42 +18446673 waitCount = 18 +18446673 ripCount = 21 +18446674 locktype1 = 0 +18446674 locktype2 = 3 +18446675 locktype3 = 1 +18446675 goalCount = 2 +18446676 goalTotal = 22 +18446676 otherCount = 16 +~~~ +~~~ +18446731 DOWN 10 +18446731 0 1024 +~~~ +~~~ +~~~ +~~~ +18446752 homeCount = 42 +18446752 waitCount = 18 +18446753 ripCount = 21 +18446753 locktype1 = 0 +18446754 locktype2 = 3 +18446754 locktype3 = 1 +18446755 goalCount = 2 +18446755 goalTotal = 22 +18446756 otherCount = 16 +~~~ +18449519 UP 11 +18449519 1024 1024 +18449878 DOWN 11 +18449878 0 1024 +18450078 LOCKOUT 3 +~~~ +18450101 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +18450105 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18463180 UP 1 +18463180 1 0 +18465562 DOWN 1 +18465562 0 0 +18465583 1 0 +18465670 DOWN 1 +18465670 0 0 +18465744 1 0 +18465767 DOWN 1 +18465767 0 0 +18475101 LOCKEND +~~~ +~~~ +~~~ +18475120 0 512 +18476607 UP 10 +18476608 waslock = 0 +18476607 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18476638 512 16777728 +~~~ +18476788 512 512 +18476832 DOWN 10 +18476832 0 512 +18476847 UP 10 +18476848 waslock = 0 +18476847 512 512 +~~~ +~~~ +18476852 512 2560 +~~~ +~~~ +18476854 512 2048 +18476855 homeCount = 43 +18476855 waitCount = 18 +18476856 ripCount = 21 +18476856 locktype1 = 0 +18476857 locktype2 = 3 +18476857 locktype3 = 2 +18476858 goalCount = 2 +18476858 goalTotal = 22 +18476859 otherCount = 16 +~~~ +~~~ +18477271 DOWN 10 +18477271 0 2048 +~~~ +~~~ +~~~ +~~~ +18477297 homeCount = 43 +18477297 waitCount = 18 +18477298 ripCount = 21 +18477298 locktype1 = 0 +18477299 locktype2 = 3 +18477299 locktype3 = 2 +18477299 goalCount = 2 +18477300 goalTotal = 22 +18477300 otherCount = 16 +~~~ +18477304 UP 10 +18477305 waslock = 0 +18477304 512 2048 +~~~ +18480504 DOWN 10 +18480503 0 2048 +~~~ +~~~ +~~~ +~~~ +18480533 homeCount = 43 +18480533 waitCount = 18 +18480534 ripCount = 21 +18480534 locktype1 = 0 +18480535 locktype2 = 3 +18480535 locktype3 = 2 +18480535 goalCount = 2 +18480536 goalTotal = 22 +18480536 otherCount = 16 +~~~ +18486382 UP 12 +18486382 2048 2048 +18489050 DOWN 12 +18489050 0 2048 +18489054 UP 12 +18489054 2048 2048 +18489417 DOWN 12 +18489417 0 2048 +18489429 UP 12 +18489429 2048 2048 +18492382 CLICK1 +18492382 CLICK2 +~~~ +~~~ +~~~ +18492402 2048 67110912 +~~~ +18492552 2048 2048 +18499697 DOWN 12 +18499697 0 2048 +~~~ +~~~ +18499721 0 0 +~~~ +~~~ +18499722 0 1 +~~~ +~~~ +18499724 0 3 +~~~ +~~~ +18499726 0 7 +~~~ +~~~ +18499728 0 15 +~~~ +~~~ +18499730 0 31 +~~~ +~~~ +18499731 0 63 +~~~ +~~~ +18499733 0 127 +~~~ +~~~ +18499735 0 255 +18499736 homeCount = 43 +18499737 waitCount = 19 +18499737 ripCount = 21 +18499738 locktype1 = 0 +18499738 locktype2 = 3 +18499759 locktype3 = 2 +18499759 goalCount = 2 +18499760 goalTotal = 22 +18499760 otherCount = 16 +~~~ +18499761 CURRENTGOAL IS [3] +~~~ +18499762 UP 12 +18499762 2048 255 +18499791 DOWN 12 +18499791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18499824 homeCount = 43 +18499824 waitCount = 19 +18499825 ripCount = 21 +18499825 locktype1 = 0 +18499826 locktype2 = 3 +18499826 locktype3 = 2 +18499827 goalCount = 2 +18499827 goalTotal = 22 +18499828 otherCount = 16 +~~~ +18499829 CURRENTGOAL IS [3] +~~~ +18503006 UP 3 +18503006 4 255 +~~~ +~~~ +18503026 outer reward +~~~ +18503026 4 262399 +~~~ +~~~ +18503213 DOWN 3 +18503213 0 262399 +~~~ +~~~ +18503234 0 262398 +~~~ +~~~ +18503236 0 262396 +~~~ +~~~ +18503238 0 262392 +~~~ +~~~ +18503240 0 262384 +~~~ +~~~ +18503242 0 262368 +~~~ +~~~ +18503243 0 262336 +~~~ +~~~ +18503245 0 262272 +~~~ +~~~ +18503247 0 262144 +~~~ +~~~ +18503249 0 262656 +18503250 homeCount = 43 +18503250 waitCount = 19 +18503251 ripCount = 21 +18503272 locktype1 = 0 +18503273 locktype2 = 3 +18503273 locktype3 = 2 +18503274 goalCount = 3 +18503274 goalTotal = 23 +18503275 otherCount = 16 +~~~ +18503279 4 262656 +18503402 DOWN 3 +18503402 0 262656 +18503448 4 262656 +18503476 4 512 +18503554 DOWN 3 +18503554 0 512 +18503589 4 512 +18504212 DOWN 3 +18504212 0 512 +18504219 4 512 +18504339 DOWN 3 +18504339 0 512 +18504353 4 512 +18504473 DOWN 3 +18504473 0 512 +18504487 4 512 +18504613 DOWN 3 +18504613 0 512 +18504623 4 512 +18511674 DOWN 3 +18511674 0 512 +18516945 UP 10 +18516945 waslock = 0 +18516944 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18516972 512 16777728 +~~~ +18517021 DOWN 10 +18517021 0 16777728 +~~~ +~~~ +18517045 0 16779776 +~~~ +~~~ +18517047 0 16779264 +18517048 homeCount = 44 +18517049 waitCount = 19 +18517049 ripCount = 21 +18517050 locktype1 = 0 +18517050 locktype2 = 3 +18517051 locktype3 = 2 +18517051 goalCount = 3 +18517052 goalTotal = 23 +18517052 otherCount = 16 +~~~ +18517073 UP 10 +18517073 waslock = 0 +18517073 512 16779264 +~~~ +18517122 512 2048 +18517244 DOWN 10 +18517244 0 2048 +~~~ +~~~ +~~~ +~~~ +18517267 homeCount = 44 +18517268 waitCount = 19 +18517268 ripCount = 21 +18517269 locktype1 = 0 +18517269 locktype2 = 3 +18517270 locktype3 = 2 +18517270 goalCount = 3 +18517271 goalTotal = 23 +18517271 otherCount = 16 +~~~ +18517332 UP 10 +18517332 waslock = 0 +18517332 512 2048 +~~~ +18523840 DOWN 10 +18523840 0 2048 +~~~ +~~~ +~~~ +~~~ +18523866 homeCount = 44 +18523867 waitCount = 19 +18523867 ripCount = 21 +18523868 locktype1 = 0 +18523868 locktype2 = 3 +18523869 locktype3 = 2 +18523869 goalCount = 3 +18523870 goalTotal = 23 +18523870 otherCount = 16 +~~~ +18523918 UP 10 +18523918 waslock = 0 +18523918 512 2048 +~~~ +18523968 DOWN 10 +18523968 0 2048 +~~~ +~~~ +~~~ +~~~ +18524000 homeCount = 44 +18524000 waitCount = 19 +18524001 ripCount = 21 +18524001 locktype1 = 0 +18524002 locktype2 = 3 +18524002 locktype3 = 2 +18524003 goalCount = 3 +18524003 goalTotal = 23 +18524004 otherCount = 16 +~~~ +18526588 UP 12 +18526588 2048 2048 +18528844 DOWN 12 +18528844 0 2048 +18528979 UP 12 +18528979 2048 2048 +18530361 DOWN 12 +18530361 0 2048 +18530370 UP 12 +18530370 2048 2048 +18533589 CLICK1 +18533589 CLICK2 +~~~ +~~~ +~~~ +18533616 2048 67110912 +~~~ +18533766 2048 2048 +18539900 DOWN 12 +18539900 0 2048 +18539915 UP 12 +18539915 2048 2048 +~~~ +~~~ +18539936 2048 0 +~~~ +~~~ +18539938 2048 1 +~~~ +~~~ +18539940 2048 3 +~~~ +~~~ +18539942 2048 7 +~~~ +~~~ +18539944 2048 15 +~~~ +~~~ +18539945 2048 31 +~~~ +~~~ +18539947 2048 63 +~~~ +~~~ +18539949 2048 127 +~~~ +~~~ +18539951 2048 255 +18539952 homeCount = 44 +18539952 waitCount = 20 +18539953 ripCount = 21 +18539974 locktype1 = 0 +18539974 locktype2 = 3 +18539975 locktype3 = 2 +18539975 goalCount = 3 +18539976 goalTotal = 23 +18539976 otherCount = 16 +~~~ +18539978 CURRENTGOAL IS [3] +~~~ +18539978 DOWN 12 +18539978 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18540031 homeCount = 44 +18540031 waitCount = 20 +18540032 ripCount = 21 +18540032 locktype1 = 0 +18540033 locktype2 = 3 +18540033 locktype3 = 2 +18540034 goalCount = 3 +18540034 goalTotal = 23 +18540035 otherCount = 16 +~~~ +18540036 CURRENTGOAL IS [3] +~~~ +18540070 UP 12 +18540070 2048 255 +18541775 DOWN 12 +18541775 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18541811 homeCount = 44 +18541811 waitCount = 20 +18541812 ripCount = 21 +18541812 locktype1 = 0 +18541813 locktype2 = 3 +18541813 locktype3 = 2 +18541814 goalCount = 3 +18541814 goalTotal = 23 +18541815 otherCount = 16 +~~~ +18541816 CURRENTGOAL IS [3] +~~~ +18546659 UP 3 +18546659 4 255 +18546682 DOWN 3 +18546682 0 255 +~~~ +~~~ +18546687 outer reward +~~~ +18546687 0 262399 +~~~ +~~~ +~~~ +~~~ +18546705 0 262398 +~~~ +~~~ +18546707 0 262396 +~~~ +~~~ +18546708 0 262392 +~~~ +~~~ +18546710 0 262384 +~~~ +~~~ +18546712 0 262368 +~~~ +~~~ +18546714 0 262336 +~~~ +~~~ +18546716 0 262272 +~~~ +~~~ +18546718 0 262144 +~~~ +~~~ +18546720 0 262656 +18546721 homeCount = 44 +18546721 waitCount = 20 +18546722 ripCount = 21 +18546743 locktype1 = 0 +18546743 locktype2 = 3 +18546744 locktype3 = 2 +18546744 goalCount = 4 +18546745 goalTotal = 24 +18546745 otherCount = 16 +~~~ +18546749 4 262656 +18546765 DOWN 3 +18546765 0 262656 +18546772 4 262656 +18547009 DOWN 3 +18547009 0 262656 +18547054 4 262656 +18547137 4 512 +18547322 DOWN 3 +18547322 0 512 +18547332 4 512 +18547439 DOWN 3 +18547439 0 512 +18547461 4 512 +18547566 DOWN 3 +18547566 0 512 +18547594 4 512 +18547707 DOWN 3 +18547707 0 512 +18547728 4 512 +18547850 DOWN 3 +18547850 0 512 +18547867 4 512 +18547995 DOWN 3 +18547995 0 512 +18548006 4 512 +18548140 DOWN 3 +18548140 0 512 +18548148 4 512 +18554299 DOWN 3 +18554299 0 512 +18554342 4 512 +18554410 DOWN 3 +18554410 0 512 +18559726 UP 10 +18559727 waslock = 0 +18559726 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18559752 512 16777728 +~~~ +18559902 512 512 +18559951 DOWN 10 +18559951 0 512 +18559967 UP 10 +18559967 waslock = 0 +18559967 512 512 +~~~ +~~~ +18559990 512 2560 +~~~ +~~~ +18559992 512 2048 +18559993 homeCount = 45 +18559994 waitCount = 20 +18559994 ripCount = 21 +18559995 locktype1 = 0 +18559995 locktype2 = 3 +18559996 locktype3 = 2 +18559996 goalCount = 4 +18559997 goalTotal = 24 +18559997 otherCount = 16 +~~~ +~~~ +18564270 DOWN 10 +18564270 0 2048 +~~~ +~~~ +~~~ +~~~ +18564299 homeCount = 45 +18564299 waitCount = 20 +18564300 ripCount = 21 +18564300 locktype1 = 0 +18564301 locktype2 = 3 +18564301 locktype3 = 2 +18564302 goalCount = 4 +18564302 goalTotal = 24 +18564303 otherCount = 16 +~~~ +18564342 UP 10 +18564343 waslock = 0 +18564342 512 2048 +18564366 DOWN 10 +18564366 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +18564389 homeCount = 45 +18564389 waitCount = 20 +18564390 ripCount = 21 +18564390 locktype1 = 0 +18564391 locktype2 = 3 +18564391 locktype3 = 2 +18564392 goalCount = 4 +18564392 goalTotal = 24 +18564393 otherCount = 16 +~~~ +18567704 UP 12 +18567704 2048 2048 +18569618 DOWN 12 +18569618 0 2048 +18569670 UP 12 +18569670 2048 2048 +18570808 DOWN 12 +18570808 0 2048 +18570818 UP 12 +18570818 2048 2048 +18572697 DOWN 12 +18572697 0 2048 +18572719 UP 12 +18572719 2048 2048 +18576704 CLICK1 +18576704 CLICK2 +~~~ +~~~ +~~~ +18576729 2048 67110912 +~~~ +18576879 2048 2048 +18583757 DOWN 12 +18583757 0 2048 +~~~ +~~~ +18583777 0 0 +~~~ +~~~ +18583779 0 1 +~~~ +~~~ +18583781 0 3 +~~~ +~~~ +18583783 0 7 +~~~ +~~~ +18583785 0 15 +~~~ +~~~ +18583786 0 31 +~~~ +~~~ +18583788 0 63 +~~~ +~~~ +18583790 0 127 +~~~ +~~~ +18583792 0 255 +18583793 homeCount = 45 +18583793 waitCount = 21 +18583794 ripCount = 21 +18583794 locktype1 = 0 +18583815 locktype2 = 3 +18583816 locktype3 = 2 +18583816 goalCount = 4 +18583817 goalTotal = 24 +18583817 otherCount = 16 +~~~ +18583819 CURRENTGOAL IS [3] +~~~ +18587416 UP 3 +18587416 4 255 +~~~ +~~~ +18587438 outer reward +~~~ +18587438 4 262399 +~~~ +~~~ +18587710 DOWN 3 +18587710 0 262399 +~~~ +~~~ +18587736 0 262398 +~~~ +~~~ +18587738 0 262396 +~~~ +~~~ +18587739 0 262392 +~~~ +~~~ +18587741 0 262384 +~~~ +~~~ +18587743 0 262368 +~~~ +~~~ +18587745 0 262336 +~~~ +~~~ +18587747 0 262272 +~~~ +~~~ +18587748 0 262144 +~~~ +~~~ +18587750 0 262656 +18587752 homeCount = 45 +18587752 waitCount = 21 +18587753 ripCount = 21 +18587774 locktype1 = 0 +18587774 locktype2 = 3 +18587775 locktype3 = 2 +18587775 goalCount = 5 +18587776 goalTotal = 25 +18587776 otherCount = 16 +~~~ +18587777 4 262656 +18587888 4 512 +18588129 DOWN 3 +18588129 0 512 +18588142 4 512 +18588388 DOWN 3 +18588388 0 512 +18588399 4 512 +18588514 DOWN 3 +18588514 0 512 +18588530 4 512 +18588647 DOWN 3 +18588647 0 512 +18588665 4 512 +18588781 DOWN 3 +18588781 0 512 +18588798 4 512 +18593276 DOWN 3 +18593276 0 512 +18593288 4 512 +18596652 DOWN 3 +18596652 0 512 +18602809 UP 10 +18602809 waslock = 0 +18602809 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18602835 512 16777728 +~~~ +18602985 512 512 +18606263 DOWN 10 +18606263 0 512 +~~~ +~~~ +18606286 0 2560 +~~~ +~~~ +18606288 0 2048 +18606289 homeCount = 46 +18606290 waitCount = 21 +18606290 ripCount = 21 +18606291 locktype1 = 0 +18606291 locktype2 = 3 +18606292 locktype3 = 2 +18606292 goalCount = 5 +18606293 goalTotal = 25 +18606293 otherCount = 16 +~~~ +18608915 UP 12 +18608915 2048 2048 +18610847 DOWN 12 +18610847 0 2048 +18610865 UP 12 +18610865 2048 2048 +18616415 CLICK1 +18616415 CLICK2 +~~~ +~~~ +~~~ +18616441 2048 67110912 +~~~ +18616590 2048 2048 +18621494 DOWN 12 +18621494 0 2048 +~~~ +~~~ +18621517 0 0 +~~~ +~~~ +18621519 0 1 +~~~ +~~~ +18621521 0 3 +~~~ +~~~ +18621522 0 7 +~~~ +~~~ +18621524 0 15 +~~~ +~~~ +18621526 0 31 +~~~ +~~~ +18621528 0 63 +~~~ +~~~ +18621530 0 127 +~~~ +~~~ +18621532 0 255 +18621533 homeCount = 46 +18621533 waitCount = 22 +18621534 ripCount = 21 +18621534 locktype1 = 0 +18621535 locktype2 = 3 +18621556 locktype3 = 2 +18621556 goalCount = 5 +18621557 goalTotal = 25 +18621557 otherCount = 16 +~~~ +18621558 CURRENTGOAL IS [3] +~~~ +18621560 UP 12 +18621560 2048 255 +18621597 DOWN 12 +18621597 0 255 +18621612 UP 12 +18621612 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18621629 DOWN 12 +18621629 0 255 +~~~ +~~~ +18621631 homeCount = 46 +18621632 waitCount = 22 +18621632 ripCount = 21 +18621633 locktype1 = 0 +18621633 locktype2 = 3 +18621634 locktype3 = 2 +18621634 goalCount = 5 +18621635 goalTotal = 25 +18621635 otherCount = 16 +~~~ +18621657 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18621682 homeCount = 46 +18621682 waitCount = 22 +18621683 ripCount = 21 +18621683 locktype1 = 0 +18621684 locktype2 = 3 +18621684 locktype3 = 2 +18621685 goalCount = 5 +18621685 goalTotal = 25 +18621686 otherCount = 16 +~~~ +18621687 CURRENTGOAL IS [3] +~~~ +18624994 UP 3 +18624994 4 255 +~~~ +~~~ +18625017 outer reward +~~~ +18625018 4 262399 +~~~ +~~~ +18625215 DOWN 3 +18625215 0 262399 +~~~ +~~~ +18625239 0 262398 +~~~ +~~~ +18625241 0 262396 +~~~ +~~~ +18625243 0 262392 +~~~ +~~~ +18625244 0 262384 +~~~ +~~~ +18625246 0 262368 +~~~ +~~~ +18625248 0 262336 +~~~ +~~~ +18625250 0 262272 +~~~ +~~~ +18625252 0 262144 +~~~ +~~~ +18625254 0 262656 +18625255 homeCount = 46 +18625255 waitCount = 22 +18625256 ripCount = 21 +18625277 locktype1 = 0 +18625277 locktype2 = 3 +18625278 locktype3 = 2 +18625278 goalCount = 6 +18625279 goalTotal = 26 +18625279 otherCount = 16 +~~~ +18625280 4 262656 +18625467 4 512 +18625771 DOWN 3 +18625771 0 512 +18625792 4 512 +18625894 DOWN 3 +18625894 0 512 +18625916 4 512 +18626018 DOWN 3 +18626018 0 512 +18626045 4 512 +18626149 DOWN 3 +18626149 0 512 +18626175 4 512 +18626293 DOWN 3 +18626293 0 512 +18626309 4 512 +18626446 DOWN 3 +18626446 0 512 +18626455 4 512 +18626598 DOWN 3 +18626598 0 512 +18626604 4 512 +18628358 DOWN 3 +18628358 0 512 +18628374 4 512 +18633219 DOWN 3 +18633219 0 512 +18633229 4 512 +18633558 DOWN 3 +18633558 0 512 +18640894 UP 10 +18640895 waslock = 0 +18640894 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18640921 512 16777728 +~~~ +18641071 512 512 +18641125 DOWN 10 +18641125 0 512 +~~~ +~~~ +18641147 0 1536 +~~~ +~~~ +18641149 0 1024 +18641150 homeCount = 47 +18641151 waitCount = 22 +18641151 ripCount = 21 +18641152 locktype1 = 0 +18641152 locktype2 = 3 +18641152 locktype3 = 2 +18641153 goalCount = 6 +18641153 goalTotal = 26 +18641154 otherCount = 16 +~~~ +18641175 UP 10 +18641175 waslock = 0 +18641175 512 1024 +~~~ +18644766 DOWN 10 +18644766 0 1024 +~~~ +~~~ +~~~ +~~~ +18644789 homeCount = 47 +18644790 waitCount = 22 +18644790 ripCount = 21 +18644791 locktype1 = 0 +18644791 locktype2 = 3 +18644792 locktype3 = 2 +18644792 goalCount = 6 +18644793 goalTotal = 26 +18644793 otherCount = 16 +~~~ +18644817 UP 10 +18644817 waslock = 0 +18644817 512 1024 +~~~ +18644873 DOWN 10 +18644873 0 1024 +~~~ +~~~ +~~~ +~~~ +18644899 homeCount = 47 +18644900 waitCount = 22 +18644900 ripCount = 21 +18644901 locktype1 = 0 +18644901 locktype2 = 3 +18644902 locktype3 = 2 +18644902 goalCount = 6 +18644903 goalTotal = 26 +18644903 otherCount = 16 +~~~ +18647367 UP 11 +18647367 1024 1024 +18647805 DOWN 11 +18647805 0 1024 +18647964 UP 11 +18647964 1024 1024 +18648007 DOWN 11 +18648007 0 1024 +18648039 UP 11 +18648039 1024 1024 +18649073 DOWN 11 +18649073 0 1024 +18649104 UP 11 +18649104 1024 1024 +18650368 BEEP1 +18650368 BEEP2 +~~~ +~~~ +~~~ +18650388 1024 33555456 +~~~ +18650538 1024 1024 +18658120 DOWN 11 +18658120 0 1024 +~~~ +~~~ +18658145 0 0 +~~~ +~~~ +18658147 0 1 +~~~ +~~~ +18658149 0 3 +~~~ +~~~ +18658150 0 7 +~~~ +~~~ +18658152 0 15 +~~~ +~~~ +18658154 0 31 +~~~ +18658155 UP 11 +18658155 1024 31 +~~~ +~~~ +18658157 1024 63 +~~~ +~~~ +18658159 1024 127 +~~~ +18658160 1024 255 +18658161 homeCount = 47 +18658162 waitCount = 22 +18658183 ripCount = 22 +18658183 locktype1 = 0 +18658184 locktype2 = 3 +18658184 locktype3 = 2 +18658185 goalCount = 6 +18658185 goalTotal = 26 +18658186 otherCount = 16 +~~~ +18658187 CURRENTGOAL IS [3] +~~~ +18658213 DOWN 11 +18658213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +18658239 UP 11 +18658239 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18658251 DOWN 11 +18658250 0 255 +18658252 homeCount = 47 +18658252 waitCount = 22 +18658253 ripCount = 22 +18658253 locktype1 = 0 +18658254 locktype2 = 3 +18658254 locktype3 = 2 +18658255 goalCount = 6 +18658255 goalTotal = 26 +18658256 otherCount = 16 +~~~ +18658278 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18658306 homeCount = 47 +18658307 waitCount = 22 +18658307 ripCount = 22 +18658308 locktype1 = 0 +18658308 locktype2 = 3 +18658309 locktype3 = 2 +18658309 goalCount = 6 +18658310 goalTotal = 26 +18658310 otherCount = 16 +~~~ +18658311 CURRENTGOAL IS [3] +~~~ +18658333 UP 11 +18658332 1024 255 +18660179 DOWN 11 +18660179 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18660213 homeCount = 47 +18660214 waitCount = 22 +18660214 ripCount = 22 +18660215 locktype1 = 0 +18660215 locktype2 = 3 +18660216 locktype3 = 2 +18660216 goalCount = 6 +18660217 goalTotal = 26 +18660217 otherCount = 16 +~~~ +18660218 CURRENTGOAL IS [3] +~~~ +18669161 UP 4 +18669161 8 255 +~~~ +~~~ +18669847 DOWN 4 +18669847 0 255 +~~~ +~~~ +18669867 0 254 +~~~ +~~~ +18669869 0 252 +~~~ +~~~ +18669871 0 248 +~~~ +~~~ +18669873 0 240 +~~~ +~~~ +18669874 0 224 +~~~ +~~~ +18669876 0 192 +~~~ +~~~ +18669878 0 128 +~~~ +~~~ +18669880 0 0 +~~~ +~~~ +18669882 0 512 +18669883 homeCount = 47 +18669883 waitCount = 22 +18669884 ripCount = 22 +18669884 locktype1 = 0 +18669906 locktype2 = 3 +18669906 locktype3 = 2 +18669907 goalCount = 6 +18669907 goalTotal = 26 +18669907 otherCount = 17 +~~~ +18675216 UP 10 +18675217 waslock = 0 +18675216 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18675244 512 16777728 +~~~ +18675394 512 512 +18675464 DOWN 10 +18675464 0 512 +~~~ +~~~ +18675487 0 1536 +~~~ +~~~ +18675489 0 1024 +18675490 homeCount = 48 +18675491 waitCount = 22 +18675491 ripCount = 22 +18675492 locktype1 = 0 +18675492 locktype2 = 3 +18675493 locktype3 = 2 +18675493 goalCount = 6 +18675494 goalTotal = 26 +18675494 otherCount = 17 +~~~ +18675516 UP 10 +18675516 waslock = 0 +18675516 512 1024 +~~~ +18678929 DOWN 10 +18678929 0 1024 +~~~ +~~~ +~~~ +~~~ +18678952 homeCount = 48 +18678953 waitCount = 22 +18678953 ripCount = 22 +18678954 locktype1 = 0 +18678954 locktype2 = 3 +18678955 locktype3 = 2 +18678955 goalCount = 6 +18678956 goalTotal = 26 +18678956 otherCount = 17 +~~~ +18680811 UP 11 +18680810 1024 1024 +18683346 DOWN 11 +18683346 0 1024 +18683354 UP 11 +18683354 1024 1024 +18683811 BEEP1 +18683811 BEEP2 +~~~ +~~~ +~~~ +18683831 1024 33555456 +~~~ +18683981 1024 1024 +18690848 DOWN 11 +18690848 0 1024 +~~~ +~~~ +18690870 0 0 +~~~ +~~~ +18690872 0 1 +~~~ +~~~ +18690874 0 3 +~~~ +~~~ +18690876 0 7 +~~~ +~~~ +18690878 0 15 +~~~ +~~~ +18690879 0 31 +~~~ +~~~ +18690881 0 63 +~~~ +~~~ +18690883 0 127 +~~~ +~~~ +18690885 0 255 +18690886 homeCount = 48 +18690886 waitCount = 22 +18690887 ripCount = 23 +18690888 locktype1 = 0 +18690888 locktype2 = 3 +18690909 locktype3 = 2 +18690909 goalCount = 6 +18690910 goalTotal = 26 +18690910 otherCount = 17 +~~~ +18690911 CURRENTGOAL IS [3] +~~~ +18690912 UP 11 +18690912 1024 255 +18690951 DOWN 11 +18690951 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18690988 homeCount = 48 +18690989 waitCount = 22 +18690989 ripCount = 23 +18690990 locktype1 = 0 +18690990 locktype2 = 3 +18690991 locktype3 = 2 +18690991 goalCount = 6 +18690992 goalTotal = 26 +18690992 otherCount = 17 +~~~ +18690993 CURRENTGOAL IS [3] +~~~ +18691033 UP 11 +18691033 1024 255 +18693082 DOWN 11 +18693082 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18693117 homeCount = 48 +18693118 waitCount = 22 +18693118 ripCount = 23 +18693119 locktype1 = 0 +18693119 locktype2 = 3 +18693120 locktype3 = 2 +18693120 goalCount = 6 +18693121 goalTotal = 26 +18693121 otherCount = 17 +~~~ +18693123 CURRENTGOAL IS [3] +~~~ +18698599 UP 2 +18698599 2 255 +~~~ +~~~ +18699845 DOWN 2 +18699845 0 255 +~~~ +~~~ +18699870 0 254 +~~~ +~~~ +18699872 0 252 +~~~ +~~~ +18699874 0 248 +~~~ +~~~ +18699876 0 240 +~~~ +~~~ +18699877 0 224 +~~~ +~~~ +18699879 0 192 +~~~ +~~~ +18699881 0 128 +~~~ +~~~ +18699883 0 0 +~~~ +~~~ +18699885 0 512 +18699886 homeCount = 48 +18699886 waitCount = 22 +18699887 ripCount = 23 +18699887 locktype1 = 0 +18699908 locktype2 = 3 +18699908 locktype3 = 2 +18699909 goalCount = 6 +18699909 goalTotal = 26 +18699910 otherCount = 18 +~~~ +18699963 2 512 +18700182 DOWN 2 +18700182 0 512 +18700384 2 512 +18700951 DOWN 2 +18700951 0 512 +18704490 UP 10 +18704491 waslock = 0 +18704490 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18704517 512 16777728 +~~~ +18704667 512 512 +18704708 DOWN 10 +18704708 0 512 +~~~ +~~~ +18704735 0 2560 +~~~ +~~~ +18704737 0 2048 +18704738 homeCount = 49 +18704738 waitCount = 22 +18704739 ripCount = 23 +18704739 locktype1 = 0 +18704740 locktype2 = 3 +18704740 locktype3 = 2 +18704741 goalCount = 6 +18704741 goalTotal = 26 +18704741 otherCount = 18 +~~~ +18704814 UP 10 +18704814 waslock = 0 +18704814 512 2048 +~~~ +18710733 DOWN 10 +18710733 0 2048 +18710750 UP 10 +18710750 waslock = 0 +18710750 512 2048 +~~~ +~~~ +~~~ +~~~ +18710758 homeCount = 49 +18710759 waitCount = 22 +18710759 ripCount = 23 +18710760 locktype1 = 0 +18710760 locktype2 = 3 +18710761 locktype3 = 2 +18710761 goalCount = 6 +18710762 goalTotal = 26 +18710762 otherCount = 18 +~~~ +~~~ +18710824 DOWN 10 +18710824 0 2048 +~~~ +~~~ +~~~ +~~~ +18710848 homeCount = 49 +18710848 waitCount = 22 +18710849 ripCount = 23 +18710849 locktype1 = 0 +18710850 locktype2 = 3 +18710850 locktype3 = 2 +18710851 goalCount = 6 +18710851 goalTotal = 26 +18710852 otherCount = 18 +~~~ +18712891 UP 12 +18712891 2048 2048 +18714448 DOWN 12 +18714448 0 2048 +18714495 UP 12 +18714495 2048 2048 +18719953 DOWN 12 +18719953 0 2048 +18719966 UP 12 +18719966 2048 2048 +18721892 CLICK1 +18721892 CLICK2 +~~~ +~~~ +~~~ +18721916 2048 67110912 +~~~ +18722066 2048 2048 +18727895 DOWN 12 +18727895 0 2048 +~~~ +~~~ +18727917 0 0 +~~~ +~~~ +18727919 0 1 +~~~ +~~~ +18727921 0 3 +~~~ +~~~ +18727923 0 7 +~~~ +~~~ +18727925 0 15 +~~~ +~~~ +18727926 0 31 +~~~ +~~~ +18727928 0 63 +~~~ +~~~ +18727930 0 127 +~~~ +~~~ +18727932 0 255 +18727933 homeCount = 49 +18727933 waitCount = 23 +18727934 ripCount = 23 +18727934 locktype1 = 0 +18727935 locktype2 = 3 +18727956 locktype3 = 2 +18727956 goalCount = 6 +18727957 goalTotal = 26 +18727957 otherCount = 18 +~~~ +18727958 CURRENTGOAL IS [3] +~~~ +18727959 UP 12 +18727959 2048 255 +18727992 DOWN 12 +18727992 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18728034 homeCount = 49 +18728035 waitCount = 23 +18728035 ripCount = 23 +18728036 locktype1 = 0 +18728036 locktype2 = 3 +18728037 locktype3 = 2 +18728037 goalCount = 6 +18728038 goalTotal = 26 +18728038 otherCount = 18 +~~~ +18728039 CURRENTGOAL IS [3] +~~~ +18755525 UP 10 +18755525 waslock = 0 +18755525 512 255 +~~~ +18755550 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18755557 512 254 +~~~ +~~~ +18755559 512 252 +~~~ +~~~ +18755561 512 248 +~~~ +~~~ +18755563 512 240 +~~~ +~~~ +18755565 512 224 +~~~ +~~~ +18755566 512 192 +~~~ +~~~ +18755568 512 128 +~~~ +~~~ +18755570 512 0 +~~~ +~~~ +~~~ +18755790 0 0 +18755827 512 0 +18756881 0 0 +18756920 512 0 +18756992 0 0 +18757067 512 0 +18757128 0 0 +18757165 512 0 +18757749 0 0 +18757778 512 0 +18757848 0 0 +18779443 UP 2 +18779443 2 0 +18779457 DOWN 2 +18779457 0 0 +18779539 2 0 +18779749 DOWN 2 +18779749 0 0 +18780550 LOCKEND +~~~ +~~~ +~~~ +18780570 0 512 +18787322 UP 10 +18787322 waslock = 0 +18787322 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18787355 512 16777728 +~~~ +18787505 512 512 +18787570 DOWN 10 +18787570 0 512 +~~~ +~~~ +18787590 0 2560 +~~~ +~~~ +18787592 0 2048 +18787593 homeCount = 50 +18787593 waitCount = 23 +18787594 ripCount = 23 +18787594 locktype1 = 0 +18787595 locktype2 = 4 +18787595 locktype3 = 2 +18787596 goalCount = 6 +18787596 goalTotal = 26 +18787597 otherCount = 18 +~~~ +18787721 UP 10 +18787721 waslock = 0 +18787721 512 2048 +~~~ +18788131 DOWN 10 +18788130 0 2048 +~~~ +~~~ +~~~ +~~~ +18788152 homeCount = 50 +18788153 waitCount = 23 +18788153 ripCount = 23 +18788154 locktype1 = 0 +18788155 locktype2 = 4 +18788155 locktype3 = 2 +18788156 goalCount = 6 +18788156 goalTotal = 26 +18788156 otherCount = 18 +~~~ +18788200 UP 10 +18788200 waslock = 0 +18788200 512 2048 +~~~ +18788239 DOWN 10 +18788239 0 2048 +~~~ +~~~ +~~~ +~~~ +18788265 homeCount = 50 +18788265 waitCount = 23 +18788266 ripCount = 23 +18788266 locktype1 = 0 +18788267 locktype2 = 4 +18788267 locktype3 = 2 +18788268 goalCount = 6 +18788268 goalTotal = 26 +18788269 otherCount = 18 +~~~ +18788360 UP 10 +18788360 waslock = 0 +18788360 512 2048 +~~~ +18788394 DOWN 10 +18788394 0 2048 +~~~ +~~~ +~~~ +~~~ +18788420 homeCount = 50 +18788420 waitCount = 23 +18788421 ripCount = 23 +18788421 locktype1 = 0 +18788422 locktype2 = 4 +18788422 locktype3 = 2 +18788423 goalCount = 6 +18788423 goalTotal = 26 +18788424 otherCount = 18 +~~~ +18788497 UP 10 +18788497 waslock = 0 +18788497 512 2048 +~~~ +18792370 DOWN 10 +18792370 0 2048 +~~~ +~~~ +~~~ +~~~ +18792392 homeCount = 50 +18792393 waitCount = 23 +18792393 ripCount = 23 +18792394 locktype1 = 0 +18792394 locktype2 = 4 +18792395 locktype3 = 2 +18792395 goalCount = 6 +18792396 goalTotal = 26 +18792396 otherCount = 18 +~~~ +18794314 UP 12 +18794314 2048 2048 +18798314 CLICK1 +18798314 CLICK2 +~~~ +~~~ +~~~ +18798335 2048 67110912 +~~~ +18798485 2048 2048 +18798830 DOWN 12 +18798830 0 2048 +~~~ +~~~ +18798852 0 0 +~~~ +~~~ +18798854 0 1 +~~~ +~~~ +18798856 0 3 +~~~ +~~~ +18798858 0 7 +~~~ +~~~ +18798860 0 15 +~~~ +~~~ +18798861 0 31 +~~~ +~~~ +18798863 0 63 +~~~ +~~~ +18798865 0 127 +~~~ +~~~ +18798867 0 255 +18798868 homeCount = 50 +18798868 waitCount = 24 +18798869 ripCount = 23 +18798869 locktype1 = 0 +18798870 locktype2 = 4 +18798891 locktype3 = 2 +18798891 goalCount = 6 +18798892 goalTotal = 26 +18798892 otherCount = 18 +~~~ +18798893 CURRENTGOAL IS [3] +~~~ +18799141 UP 12 +18799141 2048 255 +18805238 DOWN 12 +18805238 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18805280 homeCount = 50 +18805281 waitCount = 24 +18805281 ripCount = 23 +18805282 locktype1 = 0 +18805282 locktype2 = 4 +18805283 locktype3 = 2 +18805283 goalCount = 6 +18805284 goalTotal = 26 +18805284 otherCount = 18 +~~~ +18805285 CURRENTGOAL IS [3] +~~~ +18816138 UP 3 +18816138 4 255 +~~~ +~~~ +18816163 outer reward +~~~ +18816164 4 262399 +~~~ +~~~ +18816446 DOWN 3 +18816446 0 262399 +~~~ +~~~ +18816472 0 262398 +~~~ +~~~ +18816474 0 262396 +~~~ +~~~ +18816476 0 262392 +~~~ +~~~ +18816477 0 262384 +~~~ +~~~ +18816479 0 262368 +~~~ +~~~ +18816481 0 262336 +~~~ +~~~ +18816483 0 262272 +~~~ +~~~ +18816485 0 262144 +~~~ +~~~ +18816487 0 262656 +18816488 homeCount = 50 +18816488 waitCount = 24 +18816489 ripCount = 23 +18816510 locktype1 = 0 +18816510 locktype2 = 4 +18816511 locktype3 = 2 +18816511 goalCount = 7 +18816512 goalTotal = 27 +18816512 otherCount = 18 +~~~ +18816513 4 262656 +18816613 4 512 +18816865 DOWN 3 +18816865 0 512 +18816894 4 512 +18816982 DOWN 3 +18816982 0 512 +18817017 4 512 +18817107 DOWN 3 +18817107 0 512 +18817140 4 512 +18817244 DOWN 3 +18817244 0 512 +18817270 4 512 +18817376 DOWN 3 +18817376 0 512 +18817404 4 512 +18817518 DOWN 3 +18817518 0 512 +18817544 4 512 +18817665 DOWN 3 +18817665 0 512 +18817685 4 512 +18817810 DOWN 3 +18817810 0 512 +18817828 4 512 +18817959 DOWN 3 +18817959 0 512 +18817972 4 512 +18818112 DOWN 3 +18818112 0 512 +18818118 4 512 +18824909 DOWN 3 +18824909 0 512 +18824934 4 512 +18825030 DOWN 3 +18825030 0 512 +18825078 4 512 +18825125 DOWN 3 +18825125 0 512 +18830803 UP 10 +18830803 waslock = 0 +18830803 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18830828 512 16777728 +~~~ +18830978 512 512 +18831044 DOWN 10 +18831044 0 512 +~~~ +~~~ +18831064 0 1536 +~~~ +~~~ +18831066 0 1024 +18831067 homeCount = 51 +18831068 waitCount = 24 +18831068 ripCount = 23 +18831069 locktype1 = 0 +18831069 locktype2 = 4 +18831070 locktype3 = 2 +18831070 goalCount = 7 +18831071 goalTotal = 27 +18831071 otherCount = 18 +~~~ +18831092 UP 10 +18831093 waslock = 0 +18831092 512 1024 +~~~ +18838139 DOWN 10 +18838139 0 1024 +~~~ +~~~ +~~~ +~~~ +18838168 homeCount = 51 +18838169 waitCount = 24 +18838169 ripCount = 23 +18838170 locktype1 = 0 +18838170 locktype2 = 4 +18838171 locktype3 = 2 +18838171 goalCount = 7 +18838172 goalTotal = 27 +18838172 otherCount = 18 +~~~ +18840028 UP 11 +18840028 1024 1024 +18843430 DOWN 11 +18843430 0 1024 +18843441 UP 11 +18843441 1024 1024 +18844015 DOWN 11 +18844015 0 1024 +18844035 UP 11 +18844035 1024 1024 +18844730 DOWN 11 +18844730 0 1024 +18844737 UP 11 +18844737 1024 1024 +18844739 DOWN 11 +18844739 0 1024 +18844762 UP 11 +18844762 1024 1024 +18846028 BEEP1 +18846028 BEEP2 +~~~ +~~~ +~~~ +18846047 1024 33555456 +~~~ +18846197 1024 1024 +18851283 DOWN 11 +18851283 0 1024 +~~~ +~~~ +18851304 0 0 +~~~ +18851305 UP 11 +18851305 1024 0 +~~~ +~~~ +18851307 1024 1 +~~~ +~~~ +18851308 1024 3 +~~~ +~~~ +18851310 1024 7 +~~~ +18851311 1024 15 +~~~ +~~~ +18851313 1024 31 +~~~ +~~~ +18851314 1024 63 +~~~ +~~~ +18851316 1024 127 +~~~ +~~~ +18851318 1024 255 +18851319 homeCount = 51 +18851340 waitCount = 24 +18851341 ripCount = 24 +18851341 locktype1 = 0 +18851342 locktype2 = 4 +18851342 locktype3 = 2 +18851342 goalCount = 7 +18851343 goalTotal = 27 +18851343 otherCount = 18 +~~~ +18851345 CURRENTGOAL IS [3] +~~~ +18851424 DOWN 11 +18851424 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851453 UP 11 +18851453 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851460 homeCount = 51 +18851460 waitCount = 24 +18851461 ripCount = 24 +18851461 locktype1 = 0 +18851462 locktype2 = 4 +18851462 locktype3 = 2 +18851463 goalCount = 7 +18851463 goalTotal = 27 +18851464 otherCount = 18 +~~~ +18851465 CURRENTGOAL IS [3] +~~~ +18851571 DOWN 11 +18851571 0 255 +18851591 UP 11 +18851591 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851623 homeCount = 51 +18851624 waitCount = 24 +18851624 ripCount = 24 +18851625 locktype1 = 0 +18851625 locktype2 = 4 +18851626 locktype3 = 2 +18851626 goalCount = 7 +18851627 goalTotal = 27 +18851627 otherCount = 18 +~~~ +18851628 CURRENTGOAL IS [3] +~~~ +18854817 DOWN 11 +18854817 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18854855 homeCount = 51 +18854856 waitCount = 24 +18854856 ripCount = 24 +18854857 locktype1 = 0 +18854857 locktype2 = 4 +18854858 locktype3 = 2 +18854858 goalCount = 7 +18854859 goalTotal = 27 +18854859 otherCount = 18 +~~~ +18854860 CURRENTGOAL IS [3] +~~~ +18859075 UP 7 +18859075 64 255 +~~~ +~~~ +18860364 DOWN 7 +18860364 0 255 +~~~ +~~~ +18860388 0 254 +~~~ +~~~ +18860390 0 252 +~~~ +~~~ +18860392 0 248 +~~~ +~~~ +18860394 0 240 +~~~ +~~~ +18860396 0 224 +~~~ +~~~ +18860397 0 192 +~~~ +~~~ +18860399 0 128 +~~~ +~~~ +18860401 0 0 +~~~ +~~~ +18860403 0 512 +18860404 homeCount = 51 +18860404 waitCount = 24 +18860405 ripCount = 24 +18860405 locktype1 = 0 +18860426 locktype2 = 4 +18860426 locktype3 = 2 +18860427 goalCount = 7 +18860427 goalTotal = 27 +18860428 otherCount = 19 +~~~ +18866353 UP 10 +18866353 waslock = 0 +18866353 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18866384 512 16777728 +~~~ +18866534 512 512 +18866683 DOWN 10 +18866683 0 512 +18866707 UP 10 +18866707 waslock = 0 +18866707 512 512 +~~~ +~~~ +18866712 512 1536 +~~~ +~~~ +18866713 512 1024 +18866715 homeCount = 52 +18866715 waitCount = 24 +18866716 ripCount = 24 +18866716 locktype1 = 0 +18866716 locktype2 = 4 +18866717 locktype3 = 2 +18866717 goalCount = 7 +18866718 goalTotal = 27 +18866718 otherCount = 19 +~~~ +~~~ +18872118 DOWN 10 +18872118 0 1024 +18872136 UP 10 +18872136 waslock = 0 +18872136 512 1024 +~~~ +~~~ +~~~ +~~~ +18872142 homeCount = 52 +18872143 waitCount = 24 +18872143 ripCount = 24 +18872144 locktype1 = 0 +18872144 locktype2 = 4 +18872145 locktype3 = 2 +18872145 goalCount = 7 +18872146 goalTotal = 27 +18872146 otherCount = 19 +~~~ +~~~ +18872215 DOWN 10 +18872215 0 1024 +~~~ +~~~ +~~~ +~~~ +18872244 homeCount = 52 +18872245 waitCount = 24 +18872245 ripCount = 24 +18872246 locktype1 = 0 +18872246 locktype2 = 4 +18872247 locktype3 = 2 +18872247 goalCount = 7 +18872248 goalTotal = 27 +18872248 otherCount = 19 +~~~ +18876242 UP 11 +18876242 1024 1024 +18880510 DOWN 11 +18880510 0 1024 +18880546 UP 11 +18880546 1024 1024 +18883742 BEEP1 +18883742 BEEP2 +~~~ +~~~ +~~~ +18883760 1024 33555456 +~~~ +18883910 1024 1024 +18890371 DOWN 11 +18890371 0 1024 +~~~ +~~~ +18890388 0 0 +~~~ +~~~ +18890390 0 1 +~~~ +~~~ +18890392 0 3 +~~~ +~~~ +18890394 0 7 +~~~ +~~~ +18890396 0 15 +~~~ +~~~ +18890397 0 31 +~~~ +~~~ +18890399 0 63 +~~~ +~~~ +18890401 0 127 +~~~ +~~~ +18890403 0 255 +18890404 homeCount = 52 +18890404 waitCount = 24 +18890405 ripCount = 25 +18890405 locktype1 = 0 +18890427 locktype2 = 4 +18890427 locktype3 = 2 +18890428 goalCount = 7 +18890428 goalTotal = 27 +18890429 otherCount = 19 +~~~ +18890430 CURRENTGOAL IS [3] +~~~ +18890451 UP 11 +18890451 1024 255 +18893254 DOWN 11 +18893254 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18893297 homeCount = 52 +18893297 waitCount = 24 +18893298 ripCount = 25 +18893298 locktype1 = 0 +18893299 locktype2 = 4 +18893299 locktype3 = 2 +18893300 goalCount = 7 +18893300 goalTotal = 27 +18893301 otherCount = 19 +~~~ +18893302 CURRENTGOAL IS [3] +~~~ +18900482 UP 3 +18900482 4 255 +~~~ +~~~ +18900502 outer reward +~~~ +18900502 4 262399 +~~~ +~~~ +18900730 DOWN 3 +18900730 0 262399 +~~~ +~~~ +18900753 0 262398 +~~~ +~~~ +18900755 0 262396 +~~~ +~~~ +18900756 0 262392 +~~~ +~~~ +18900758 0 262384 +~~~ +~~~ +18900760 0 262368 +~~~ +~~~ +18900762 0 262336 +~~~ +~~~ +18900764 0 262272 +~~~ +~~~ +18900765 0 262144 +~~~ +~~~ +18900767 0 262656 +18900768 homeCount = 52 +18900769 waitCount = 24 +18900769 ripCount = 25 +18900791 locktype1 = 0 +18900791 locktype2 = 4 +18900792 locktype3 = 2 +18900792 goalCount = 8 +18900793 goalTotal = 28 +18900793 otherCount = 19 +~~~ +18900794 4 262656 +18900903 DOWN 3 +18900903 0 262656 +18900920 4 262656 +18900952 4 512 +18901039 DOWN 3 +18901039 0 512 +18901060 4 512 +18901156 DOWN 3 +18901156 0 512 +18901187 4 512 +18901292 DOWN 3 +18901292 0 512 +18901310 4 512 +18901420 DOWN 3 +18901420 0 512 +18901440 4 512 +18901546 DOWN 3 +18901546 0 512 +18901573 4 512 +18901676 DOWN 3 +18901676 0 512 +18901702 4 512 +18901804 DOWN 3 +18901804 0 512 +18901832 4 512 +18901936 DOWN 3 +18901936 0 512 +18901964 4 512 +18902072 DOWN 3 +18902072 0 512 +18902098 4 512 +18902211 DOWN 3 +18902211 0 512 +18902233 4 512 +18902355 DOWN 3 +18902355 0 512 +18902378 4 512 +18909942 DOWN 3 +18909942 0 512 +18922266 UP 10 +18922267 waslock = 0 +18922266 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18922297 512 16777728 +~~~ +18922447 512 512 +18929052 DOWN 10 +18929052 0 512 +~~~ +~~~ +18929069 0 1536 +~~~ +~~~ +18929071 0 1024 +18929072 homeCount = 53 +18929073 waitCount = 24 +18929073 ripCount = 25 +18929074 locktype1 = 0 +18929074 locktype2 = 4 +18929075 locktype3 = 2 +18929075 goalCount = 8 +18929076 goalTotal = 28 +18929076 otherCount = 19 +~~~ +18929098 UP 10 +18929098 waslock = 0 +18929097 512 1024 +~~~ +18929166 DOWN 10 +18929166 0 1024 +~~~ +~~~ +~~~ +~~~ +18929193 homeCount = 53 +18929194 waitCount = 24 +18929194 ripCount = 25 +18929194 locktype1 = 0 +18929195 locktype2 = 4 +18929195 locktype3 = 2 +18929196 goalCount = 8 +18929196 goalTotal = 28 +18929197 otherCount = 19 +~~~ +18934312 UP 11 +18934312 1024 1024 +18935944 DOWN 11 +18935944 0 1024 +18935995 UP 11 +18935995 1024 1024 +18937812 BEEP1 +18937812 BEEP2 +~~~ +~~~ +~~~ +18937832 1024 33555456 +~~~ +18937982 1024 1024 +18944487 DOWN 11 +18944487 0 1024 +18944496 UP 11 +18944496 1024 1024 +~~~ +~~~ +18944510 1024 0 +~~~ +~~~ +18944512 1024 1 +~~~ +~~~ +18944513 1024 3 +~~~ +~~~ +18944515 1024 7 +~~~ +~~~ +18944517 1024 15 +~~~ +~~~ +18944519 1024 31 +~~~ +~~~ +18944521 1024 63 +~~~ +~~~ +18944523 1024 127 +~~~ +~~~ +18944524 1024 255 +18944525 homeCount = 53 +18944526 waitCount = 24 +18944526 ripCount = 26 +18944548 locktype1 = 0 +18944548 locktype2 = 4 +18944548 locktype3 = 2 +18944549 goalCount = 8 +18944549 goalTotal = 28 +18944550 otherCount = 19 +~~~ +18944551 CURRENTGOAL IS [3] +~~~ +18944560 DOWN 11 +18944560 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18944597 UP 11 +18944597 1024 255 +18944599 homeCount = 53 +18944599 waitCount = 24 +18944600 ripCount = 26 +18944600 locktype1 = 0 +18944601 locktype2 = 4 +18944601 locktype3 = 2 +18944602 goalCount = 8 +18944602 goalTotal = 28 +18944603 otherCount = 19 +~~~ +18944625 CURRENTGOAL IS [3] +~~~ +18947334 DOWN 11 +18947334 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18947369 homeCount = 53 +18947369 waitCount = 24 +18947370 ripCount = 26 +18947370 locktype1 = 0 +18947371 locktype2 = 4 +18947371 locktype3 = 2 +18947372 goalCount = 8 +18947372 goalTotal = 28 +18947373 otherCount = 19 +~~~ +18947374 CURRENTGOAL IS [3] +~~~ +18958627 UP 3 +18958627 4 255 +~~~ +~~~ +18958649 outer reward +~~~ +18958650 4 262399 +~~~ +~~~ +18958918 DOWN 3 +18958918 0 262399 +~~~ +~~~ +18958945 0 262398 +~~~ +~~~ +18958947 0 262396 +~~~ +~~~ +18958948 0 262392 +~~~ +~~~ +18958950 0 262384 +~~~ +~~~ +18958952 0 262368 +~~~ +~~~ +18958954 0 262336 +~~~ +~~~ +18958956 0 262272 +~~~ +~~~ +18958958 0 262144 +~~~ +~~~ +18958959 0 262656 +18958960 homeCount = 53 +18958961 waitCount = 24 +18958961 ripCount = 26 +18958983 locktype1 = 0 +18958983 locktype2 = 4 +18958984 locktype3 = 2 +18958984 goalCount = 9 +18958985 goalTotal = 29 +18958985 otherCount = 19 +~~~ +18958986 4 262656 +18959099 4 512 +18959236 DOWN 3 +18959236 0 512 +18959257 4 512 +18959354 DOWN 3 +18959354 0 512 +18959373 4 512 +18959476 DOWN 3 +18959476 0 512 +18959502 4 512 +18959605 DOWN 3 +18959605 0 512 +18959631 4 512 +18959734 DOWN 3 +18959734 0 512 +18959764 4 512 +18959869 DOWN 3 +18959869 0 512 +18959901 4 512 +18960009 DOWN 3 +18960009 0 512 +18960036 4 512 +18960155 DOWN 3 +18960155 0 512 +18960176 4 512 +18960303 DOWN 3 +18960303 0 512 +18960314 4 512 +18964481 DOWN 3 +18964481 0 512 +18964498 4 512 +18967799 DOWN 3 +18967799 0 512 +18967877 4 512 +18967898 DOWN 3 +18967898 0 512 + + description: Statescript log r2 + task_epochs: 4, +, Statescript3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140114078599888 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +# +#import math +#import struct +#import re +#import time +#import random +#import numpy as np +#import pyaudio +#import wave +#from statistics import mean +## V8pre_forage +## visits to incorrect wells cause 5s lockout +## exception is repeat visit to prior well (is ok, no lockout) +## can go to any outer well, any number of times +## lockout from getting rip/wait wells wrong is also 5s +# +# +## decide what type of up trigger was just recieved; act accordingly +#def pokeIn(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# doHome() +# +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# doOuter(num) +# +## decide what type of down trigger was just recieved; act accordingly +#def pokeOut(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# global lastWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# endHome() +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# endWait() +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# endOuter() +# lastWell = currWell +# +##home poke: decide trial type and upcoming wait length; turn on lights accordingly +#def doHome(): +# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout +# global homePump +# global lastWell +# global currWell +# #global waitdist +# +# if trialtype == 0: +# opts = [1, 2] +# randnum = np.random.randint(0,2) #-1 +# trialtype = opts[randnum] +# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #randnum = np.random.randint(0,8) +# delaytime = chooseDelay() +# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") +# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime +# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC +# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") +# print("SCQTMESSAGE: trigger(1);\n") # deliver reward +# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: +# lockout([2,2]) +# +#def chooseDelay(): +# global trialtype +# global RWcount +# global waitdist +# global startwaitdist +# +# print(RWcount) +# +# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short +# return startwaitdist[RWcount[trialtype-1]] +# +# else: +# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist +# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) +# +# else: +# return int(np.random.choice(waitdist,1)) +# +# +#def endHome(): +# global trialtype +# global lastWell +# global homeWell +# global waitWells +# +# if trialtype == 1 or trialtype == 2: +# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +# +#def click(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# +# #generate_click() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC +# +#def beep(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# #generate_beep() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC +# +#def endWait(): +# global trialtype +# global goalWell +# global currWell +# global outerWells +# +# if trialtype == 3: # wait complete +# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): # turn on outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") +# +# +#def doOuter(val): +# global outerPumps +# global trialtype +# global allGoal +# global thisGoal +# global goalWell +# global outerReps +# global currWell +# global lastWell +# global homeWell +# global numgoals +# global validOuterWells +# global waslock +# +# if trialtype == 3: +# trialtype = 0 # outer satisfied, head home next +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# if currWell in goalWell : # repeated; reward +# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") +# print("SCQTMESSAGE: trigger(2);\n") # deliver reward +# allGoal+=1 +# thisGoal+=1 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC +# +# if thisGoal >= outerReps: #maxed repeats reached, time to switch +# print("time to choose new goalS!") +# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats +# chooseGoal() +# else: +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection +# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection +# print(goalWell) +# +# thisGoal = 0 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# +# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) +# goalWell = [currWell] +# +# else: # wrong well; add to forage record if newly visited +# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC +# +# elif trialtype < 3 and waslock<1: +# lockout([2,2]) +# +#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal +# global goalWell +# global oldGoals +# global numgoals +# global outerWells +# global forageNum +# #global outerReps +# +# oldGoals.append(goalWell) +# print(oldGoals) +# +# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms +# forageNum = 1 +# +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# if len(oldGoals)>7: # if all outers have been goal, reset +# print("resetting oldgoals") +# oldGoals = [None] +# +# while any(i in goalWell for i in oldGoals): #if any common elements +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# print(goalWell) +# +# outerReps = np.random.randint(4,13) +# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# print("new goal is "+str(goalWell)+"\n") +# +#def endOuter(): +# global trialtype +# global outerWells +# global homeWell +# global lastWell +# global currWell +# +# if trialtype == 0 and lastWell != currWell: # outer satisfied +# for num in range(len(outerWells)): # turn off outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +#def lockout(val): # turn off all lights for certain amount of time +# global waitWells +# global outerWells +# global lastWell +# global trialtype +# global waslock +# +# locktype = int(val[1]) +# trialtype = 4 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE +# #turn off all lights +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(waitWells)): #turn off all wait and outer well lights +# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# waslock=1 +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well +# if locktype == 1: +# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well +# if locktype == 2: +# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC +# if locktype == 3: +# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors +# +# +#def lockend(): +# global trialtype +# global homeWell +# +# trialtype = 0 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well +# print("SCQTMESSAGE: trigger(3);\n") +# +#def updateWaslock(val): +# global waslock +# +# waslock = int(val[1]) +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") +# +## Function: generate click sound +#def generate_click(): +# +# File='ZippoClick_short.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +## Function: generate cowbell sound +#def generate_beep(): +# +# File='Beep.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +#def makewhitenoise(): #play white noise for duration of lockout +# global locksoundlength +# +# soundlength = int(44100*locksoundlength/1000) +# p = pyaudio.PyAudio() +# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) +# whitenoise = np.random.randint(700,size = soundlength) +# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) +# stream.write(data) +# stream.close() +# p.terminate() +# +# +## This is the custom callback function. When events occur, addScQtEvent will +## call this function. This function MUST BE NAMED 'callback'!!!! +#def callback(line): +# +# global waslock +# +# if line.find("UP") >= 0: #input triggered +# pokeIn(re.findall(r'\d+',line)) +# if line.find("DOWN") >= 0: #input triggered +# pokeOut(re.findall(r'\d+',line)) +# if line.find("BEEP1") >= 0: # make a beep and deliver reward +# beep() +# if line.find("BEEP2") >= 0: # make a beep and deliver reward +# generate_beep() +# if line.find("CLICK1") >= 0: # make a click and deliver reward +# click() +# if line.find("CLICK2") >= 0: # make a click and deliver reward +# generate_click() +# if line.find("LOCKOUT") >= 0: # lockout procedure +# lockout(re.findall(r'\d+',line)) +# if line.find("LOCKEND") >= 0: # reset trialtype to 0 +# lockend() +# if line.find("WHITENOISE") >= 0: # make noise during lockout +# makewhitenoise() +# if line.find("waslock") >= 0: #update waslock value +# updateWaslock(re.findall(r'\d+',line)) +# +# +## define wells +#homeWell = 10 +#waitWells = [11,12] +#outerWells = [1,2,3,4,5,6,7,8] +##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num +## define pumps +#homePump = 25 +#waitPumps = [26, 27] +#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] +# +##global variables +#lastWell = -1 +#currWell = -1 +#trialtype = 0 +#outerReps = 10 +##outerReps = np.random.randint(4,13) #10 +#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# +#allGoal = 0 +#thisGoal = 0 +#numgoals = 1 # number of outer arms rewarded +#forageNum = 1 +#if numgoals == 1: +# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells +#else: +# goalWell = np.random.choice(outerWells,numgoals,replace=False) +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) +# +#oldGoals = [] #initialize with any wells to exclude from being goal +##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] +#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] +# +#startwaitdist = [1000, 1500, 2000] +# +#locksoundlength = 1000 +#print(goalWell) +#waslock=0 +#RWcount = [0,0 +# +24056604 UP 10 +24056604 waslock = 0 +24056604 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24056628 512 16777728 +~~~ +24056778 512 512 +24056821 DOWN 10 +24056821 0 512 +~~~ +~~~ +24056843 0 1536 +~~~ +~~~ +24056845 0 1024 +24056846 homeCount = 1 +24056846 waitCount = 0 +24056847 ripCount = 0 +24056847 locktype1 = 0 +24056848 locktype2 = 0 +24056848 locktype3 = 0 +24056849 goalCount = 0 +24056849 goalTotal = 0 +24056850 otherCount = 0 +~~~ +24057124 UP 10 +24057124 waslock = 0 +24057124 512 1024 +24057128 DOWN 10 +24057128 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057147 homeCount = 1 +24057147 waitCount = 0 +24057148 ripCount = 0 +24057148 locktype1 = 0 +24057149 locktype2 = 0 +24057149 locktype3 = 0 +24057150 goalCount = 0 +24057150 goalTotal = 0 +24057151 otherCount = 0 +~~~ +24057247 UP 10 +24057247 waslock = 0 +24057247 512 1024 +24057257 DOWN 10 +24057256 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057278 homeCount = 1 +24057279 waitCount = 0 +24057280 ripCount = 0 +24057280 locktype1 = 0 +24057281 locktype2 = 0 +24057281 locktype3 = 0 +24057281 goalCount = 0 +24057282 goalTotal = 0 +24057282 otherCount = 0 +~~~ +24057380 UP 10 +24057380 waslock = 0 +24057379 512 1024 +24057390 DOWN 10 +24057390 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057406 homeCount = 1 +24057407 waitCount = 0 +24057407 ripCount = 0 +24057408 locktype1 = 0 +24057408 locktype2 = 0 +24057409 locktype3 = 0 +24057409 goalCount = 0 +24057410 goalTotal = 0 +24057410 otherCount = 0 +~~~ +24057508 UP 10 +24057508 waslock = 0 +24057508 512 1024 +24057525 DOWN 10 +24057525 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057549 homeCount = 1 +24057549 waitCount = 0 +24057550 ripCount = 0 +24057550 locktype1 = 0 +24057551 locktype2 = 0 +24057551 locktype3 = 0 +24057552 goalCount = 0 +24057552 goalTotal = 0 +24057553 otherCount = 0 +~~~ +24057634 UP 10 +24057634 waslock = 0 +24057634 512 1024 +~~~ +24057659 DOWN 10 +24057659 0 1024 +~~~ +~~~ +~~~ +~~~ +24057678 homeCount = 1 +24057679 waitCount = 0 +24057679 ripCount = 0 +24057680 locktype1 = 0 +24057680 locktype2 = 0 +24057681 locktype3 = 0 +24057681 goalCount = 0 +24057682 goalTotal = 0 +24057682 otherCount = 0 +~~~ +24057752 UP 10 +24057752 waslock = 0 +24057752 512 1024 +~~~ +24057792 DOWN 10 +24057792 0 1024 +~~~ +~~~ +~~~ +~~~ +24057817 homeCount = 1 +24057818 waitCount = 0 +24057818 ripCount = 0 +24057819 locktype1 = 0 +24057819 locktype2 = 0 +24057820 locktype3 = 0 +24057820 goalCount = 0 +24057821 goalTotal = 0 +24057821 otherCount = 0 +~~~ +24057884 UP 10 +24057884 waslock = 0 +24057884 512 1024 +~~~ +24057931 DOWN 10 +24057931 0 1024 +~~~ +~~~ +~~~ +~~~ +24057955 homeCount = 1 +24057956 waitCount = 0 +24057956 ripCount = 0 +24057957 locktype1 = 0 +24057957 locktype2 = 0 +24057958 locktype3 = 0 +24057958 goalCount = 0 +24057959 goalTotal = 0 +24057959 otherCount = 0 +~~~ +24058025 UP 10 +24058025 waslock = 0 +24058025 512 1024 +~~~ +24058092 DOWN 10 +24058092 0 1024 +~~~ +~~~ +~~~ +~~~ +24058115 homeCount = 1 +24058115 waitCount = 0 +24058116 ripCount = 0 +24058116 locktype1 = 0 +24058117 locktype2 = 0 +24058117 locktype3 = 0 +24058118 goalCount = 0 +24058118 goalTotal = 0 +24058119 otherCount = 0 +~~~ +24058171 UP 10 +24058172 waslock = 0 +24058171 512 1024 +~~~ +24058243 DOWN 10 +24058243 0 1024 +24058250 UP 10 +24058251 waslock = 0 +24058250 512 1024 +24058271 DOWN 10 +24058271 0 1024 +~~~ +~~~ +~~~ +~~~ +24058277 homeCount = 1 +24058278 waitCount = 0 +24058278 ripCount = 0 +24058279 locktype1 = 0 +24058279 locktype2 = 0 +24058280 locktype3 = 0 +24058280 goalCount = 0 +24058281 goalTotal = 0 +24058281 otherCount = 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24058307 homeCount = 1 +24058307 waitCount = 0 +24058308 ripCount = 0 +24058308 locktype1 = 0 +24058309 locktype2 = 0 +24058309 locktype3 = 0 +24058310 goalCount = 0 +24058310 goalTotal = 0 +24058311 otherCount = 0 +~~~ +24058325 UP 10 +24058325 waslock = 0 +24058325 512 1024 +~~~ +24058429 DOWN 10 +24058429 0 1024 +24058443 UP 10 +24058443 waslock = 0 +24058443 512 1024 +~~~ +~~~ +~~~ +~~~ +24058462 homeCount = 1 +24058463 waitCount = 0 +24058463 ripCount = 0 +24058464 locktype1 = 0 +24058464 locktype2 = 0 +24058465 locktype3 = 0 +24058465 goalCount = 0 +24058466 goalTotal = 0 +24058466 otherCount = 0 +~~~ +~~~ +24058585 DOWN 10 +24058585 0 1024 +24058597 UP 10 +24058597 waslock = 0 +24058597 512 1024 +~~~ +~~~ +~~~ +~~~ +24058624 homeCount = 1 +24058625 waitCount = 0 +24058625 ripCount = 0 +24058626 locktype1 = 0 +24058626 locktype2 = 0 +24058627 locktype3 = 0 +24058627 goalCount = 0 +24058628 goalTotal = 0 +24058628 otherCount = 0 +~~~ +~~~ +24058732 DOWN 10 +24058732 0 1024 +24058752 UP 10 +24058752 waslock = 0 +24058752 512 1024 +~~~ +~~~ +~~~ +~~~ +24058759 homeCount = 1 +24058759 waitCount = 0 +24058760 ripCount = 0 +24058760 locktype1 = 0 +24058761 locktype2 = 0 +24058761 locktype3 = 0 +24058762 goalCount = 0 +24058762 goalTotal = 0 +24058763 otherCount = 0 +~~~ +~~~ +24059043 DOWN 10 +24059043 0 1024 +~~~ +24059062 UP 10 +24059063 waslock = 0 +24059062 512 1024 +~~~ +~~~ +~~~ +24059066 homeCount = 1 +24059067 waitCount = 0 +24059067 ripCount = 0 +24059068 locktype1 = 0 +24059068 locktype2 = 0 +24059069 locktype3 = 0 +24059069 goalCount = 0 +24059070 goalTotal = 0 +24059070 otherCount = 0 +~~~ +~~~ +24059196 DOWN 10 +24059196 0 1024 +~~~ +~~~ +~~~ +~~~ +24059218 homeCount = 1 +24059218 waitCount = 0 +24059219 ripCount = 0 +24059219 locktype1 = 0 +24059220 locktype2 = 0 +24059220 locktype3 = 0 +24059221 goalCount = 0 +24059221 goalTotal = 0 +24059222 otherCount = 0 +~~~ +24059223 UP 10 +24059223 waslock = 0 +24059223 512 1024 +~~~ +24059360 DOWN 10 +24059360 0 1024 +24059385 UP 10 +24059385 waslock = 0 +24059385 512 1024 +~~~ +~~~ +~~~ +~~~ +24059399 homeCount = 1 +24059399 waitCount = 0 +24059400 ripCount = 0 +24059400 locktype1 = 0 +24059401 locktype2 = 0 +24059401 locktype3 = 0 +24059402 goalCount = 0 +24059402 goalTotal = 0 +24059403 otherCount = 0 +~~~ +~~~ +24059519 DOWN 10 +24059519 0 1024 +~~~ +~~~ +~~~ +~~~ +24059539 homeCount = 1 +24059539 waitCount = 0 +24059540 ripCount = 0 +24059540 locktype1 = 0 +24059541 locktype2 = 0 +24059541 locktype3 = 0 +24059542 goalCount = 0 +24059542 goalTotal = 0 +24059543 otherCount = 0 +~~~ +24059548 UP 10 +24059548 waslock = 0 +24059547 512 1024 +~~~ +24059681 DOWN 10 +24059681 0 1024 +~~~ +~~~ +~~~ +~~~ +24059713 homeCount = 1 +24059713 waitCount = 0 +24059714 ripCount = 0 +24059714 locktype1 = 0 +24059715 locktype2 = 0 +24059715 locktype3 = 0 +24059716 goalCount = 0 +24059716 goalTotal = 0 +24059717 otherCount = 0 +~~~ +24059717 UP 10 +24059718 waslock = 0 +24059717 512 1024 +~~~ +24059856 DOWN 10 +24059856 0 1024 +~~~ +~~~ +~~~ +~~~ +24059881 homeCount = 1 +24059882 waitCount = 0 +24059882 ripCount = 0 +24059883 locktype1 = 0 +24059883 locktype2 = 0 +24059884 locktype3 = 0 +24059884 goalCount = 0 +24059885 goalTotal = 0 +24059885 otherCount = 0 +~~~ +24059888 UP 10 +24059889 waslock = 0 +24059888 512 1024 +~~~ +24060002 DOWN 10 +24060002 0 1024 +~~~ +~~~ +~~~ +~~~ +24060036 homeCount = 1 +24060037 waitCount = 0 +24060037 ripCount = 0 +24060038 locktype1 = 0 +24060038 locktype2 = 0 +24060039 locktype3 = 0 +24060039 goalCount = 0 +24060040 goalTotal = 0 +24060040 otherCount = 0 +~~~ +24060057 UP 10 +24060058 waslock = 0 +24060057 512 1024 +~~~ +24060155 DOWN 10 +24060155 0 1024 +~~~ +~~~ +~~~ +~~~ +24060183 homeCount = 1 +24060184 waitCount = 0 +24060184 ripCount = 0 +24060185 locktype1 = 0 +24060185 locktype2 = 0 +24060186 locktype3 = 0 +24060186 goalCount = 0 +24060187 goalTotal = 0 +24060187 otherCount = 0 +~~~ +24060218 UP 10 +24060219 waslock = 0 +24060218 512 1024 +~~~ +24060311 DOWN 10 +24060311 0 1024 +~~~ +~~~ +~~~ +~~~ +24060333 homeCount = 1 +24060333 waitCount = 0 +24060334 ripCount = 0 +24060334 locktype1 = 0 +24060335 locktype2 = 0 +24060335 locktype3 = 0 +24060336 goalCount = 0 +24060336 goalTotal = 0 +24060337 otherCount = 0 +~~~ +24060384 UP 10 +24060384 waslock = 0 +24060383 512 1024 +~~~ +24060470 DOWN 10 +24060470 0 1024 +~~~ +~~~ +~~~ +~~~ +24060494 homeCount = 1 +24060494 waitCount = 0 +24060495 ripCount = 0 +24060495 locktype1 = 0 +24060496 locktype2 = 0 +24060496 locktype3 = 0 +24060497 goalCount = 0 +24060497 goalTotal = 0 +24060498 otherCount = 0 +~~~ +24060541 UP 10 +24060542 waslock = 0 +24060541 512 1024 +~~~ +24060656 DOWN 10 +24060656 0 1024 +~~~ +~~~ +~~~ +~~~ +24060683 homeCount = 1 +24060683 waitCount = 0 +24060684 ripCount = 0 +24060684 locktype1 = 0 +24060685 locktype2 = 0 +24060685 locktype3 = 0 +24060686 goalCount = 0 +24060686 goalTotal = 0 +24060687 otherCount = 0 +~~~ +24060718 UP 10 +24060718 waslock = 0 +24060718 512 1024 +~~~ +24060821 DOWN 10 +24060821 0 1024 +~~~ +~~~ +~~~ +~~~ +24060844 homeCount = 1 +24060844 waitCount = 0 +24060845 ripCount = 0 +24060845 locktype1 = 0 +24060846 locktype2 = 0 +24060846 locktype3 = 0 +24060847 goalCount = 0 +24060847 goalTotal = 0 +24060848 otherCount = 0 +~~~ +24060875 UP 10 +24060875 waslock = 0 +24060875 512 1024 +~~~ +24061011 DOWN 10 +24061011 0 1024 +~~~ +~~~ +~~~ +~~~ +24061035 homeCount = 1 +24061035 waitCount = 0 +24061036 ripCount = 0 +24061036 locktype1 = 0 +24061037 locktype2 = 0 +24061037 locktype3 = 0 +24061038 goalCount = 0 +24061038 goalTotal = 0 +24061039 otherCount = 0 +~~~ +24061064 UP 10 +24061065 waslock = 0 +24061064 512 1024 +~~~ +24061209 DOWN 10 +24061209 0 1024 +24061222 UP 10 +24061223 waslock = 0 +24061222 512 1024 +~~~ +~~~ +~~~ +~~~ +24061246 homeCount = 1 +24061247 waitCount = 0 +24061247 ripCount = 0 +24061248 locktype1 = 0 +24061248 locktype2 = 0 +24061249 locktype3 = 0 +24061249 goalCount = 0 +24061250 goalTotal = 0 +24061250 otherCount = 0 +~~~ +~~~ +24061545 DOWN 10 +24061545 0 1024 +24061560 UP 10 +24061560 waslock = 0 +24061560 512 1024 +~~~ +~~~ +~~~ +~~~ +24061597 homeCount = 1 +24061598 waitCount = 0 +24061598 ripCount = 0 +24061599 locktype1 = 0 +24061599 locktype2 = 0 +24061600 locktype3 = 0 +24061600 goalCount = 0 +24061601 goalTotal = 0 +24061601 otherCount = 0 +~~~ +~~~ +24063988 DOWN 10 +24063988 0 1024 +24064005 UP 10 +24064006 waslock = 0 +24064005 512 1024 +~~~ +~~~ +~~~ +~~~ +24064014 homeCount = 1 +24064014 waitCount = 0 +24064015 ripCount = 0 +24064015 locktype1 = 0 +24064016 locktype2 = 0 +24064016 locktype3 = 0 +24064017 goalCount = 0 +24064017 goalTotal = 0 +24064018 otherCount = 0 +~~~ +~~~ +24064723 DOWN 10 +24064723 0 1024 +~~~ +~~~ +24064751 UP 10 +24064751 waslock = 0 +24064751 512 1024 +~~~ +~~~ +24064754 homeCount = 1 +24064754 waitCount = 0 +24064755 ripCount = 0 +24064755 locktype1 = 0 +24064756 locktype2 = 0 +24064756 locktype3 = 0 +24064757 goalCount = 0 +24064757 goalTotal = 0 +24064778 otherCount = 0 +~~~ +~~~ +24065124 DOWN 10 +24065124 0 1024 +24065130 UP 10 +24065130 waslock = 0 +24065130 512 1024 +~~~ +~~~ +~~~ +~~~ +24065153 homeCount = 1 +24065153 waitCount = 0 +24065154 ripCount = 0 +24065154 locktype1 = 0 +24065155 locktype2 = 0 +24065155 locktype3 = 0 +24065156 goalCount = 0 +24065156 goalTotal = 0 +24065157 otherCount = 0 +~~~ +~~~ +24065460 DOWN 10 +24065460 0 1024 +~~~ +~~~ +~~~ +~~~ +24065484 homeCount = 1 +24065484 waitCount = 0 +24065485 ripCount = 0 +24065485 locktype1 = 0 +24065486 locktype2 = 0 +24065486 locktype3 = 0 +24065487 goalCount = 0 +24065487 goalTotal = 0 +24065488 otherCount = 0 +~~~ +24065532 UP 10 +24065532 waslock = 0 +24065531 512 1024 +~~~ +24065573 DOWN 10 +24065573 0 1024 +~~~ +~~~ +~~~ +~~~ +24065598 homeCount = 1 +24065598 waitCount = 0 +24065599 ripCount = 0 +24065599 locktype1 = 0 +24065600 locktype2 = 0 +24065600 locktype3 = 0 +24065601 goalCount = 0 +24065601 goalTotal = 0 +24065602 otherCount = 0 +~~~ +24065685 UP 10 +24065685 waslock = 0 +24065685 512 1024 +24065713 DOWN 10 +24065713 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24065736 homeCount = 1 +24065737 waitCount = 0 +24065737 ripCount = 0 +24065738 locktype1 = 0 +24065738 locktype2 = 0 +24065739 locktype3 = 0 +24065739 goalCount = 0 +24065740 goalTotal = 0 +24065740 otherCount = 0 +~~~ +24067490 UP 12 +24067490 LOCKOUT 1 +24067490 2048 1024 +~~~ +24067512 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +24067516 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24067665 DOWN 12 +24067665 0 0 +24067738 UP 12 +24067738 2048 0 +24067825 DOWN 12 +24067825 0 0 +24067873 UP 12 +24067873 2048 0 +24067961 DOWN 12 +24067961 0 0 +24068038 UP 12 +24068038 2048 0 +24068088 DOWN 12 +24068088 0 0 +24068334 UP 12 +24068334 2048 0 +24068564 DOWN 12 +24068564 0 0 +24068910 UP 12 +24068910 2048 0 +24068985 DOWN 12 +24068985 0 0 +24069745 UP 12 +24069745 2048 0 +24069769 DOWN 12 +24069769 0 0 +24070207 UP 12 +24070207 2048 0 +24070211 DOWN 12 +24070211 0 0 +24070465 UP 12 +24070465 2048 0 +24070485 DOWN 12 +24070485 0 0 +24070493 UP 12 +24070493 2048 0 +24070500 DOWN 12 +24070500 0 0 +24070608 UP 12 +24070608 2048 0 +24070632 DOWN 12 +24070632 0 0 +24070641 UP 12 +24070641 2048 0 +24070650 DOWN 12 +24070650 0 0 +24070709 UP 12 +24070709 2048 0 +24070737 DOWN 12 +24070737 0 0 +24070752 UP 12 +24070752 2048 0 +24070796 DOWN 12 +24070796 0 0 +24070859 UP 12 +24070859 2048 0 +24070876 DOWN 12 +24070876 0 0 +24070898 UP 12 +24070898 2048 0 +24070949 DOWN 12 +24070949 0 0 +24071006 UP 12 +24071006 2048 0 +24071024 DOWN 12 +24071024 0 0 +24071048 UP 12 +24071048 2048 0 +24071100 DOWN 12 +24071100 0 0 +24071199 UP 12 +24071199 2048 0 +24071254 DOWN 12 +24071254 0 0 +24071325 UP 12 +24071325 2048 0 +24071406 DOWN 12 +24071406 0 0 +24071413 UP 12 +24071413 2048 0 +24071565 DOWN 12 +24071565 0 0 +24071569 UP 12 +24071569 2048 0 +24072422 DOWN 12 +24072422 0 0 +24072431 UP 12 +24072430 2048 0 +24072582 DOWN 12 +24072582 0 0 +24072603 UP 12 +24072603 2048 0 +24072753 DOWN 12 +24072753 0 0 +24072770 UP 12 +24072770 2048 0 +24072935 DOWN 12 +24072935 0 0 +24072956 UP 12 +24072956 2048 0 +24073295 DOWN 12 +24073295 0 0 +24073309 UP 12 +24073309 2048 0 +24073471 DOWN 12 +24073471 0 0 +24073494 UP 12 +24073494 2048 0 +24073657 DOWN 12 +24073657 0 0 +24073677 UP 12 +24073677 2048 0 +24073837 DOWN 12 +24073837 0 0 +24073859 UP 12 +24073859 2048 0 +24076260 DOWN 12 +24076260 0 0 +24076298 UP 12 +24076298 2048 0 +24076357 DOWN 12 +24076357 0 0 +24078484 UP 11 +24078484 1024 0 +24078510 DOWN 11 +24078510 0 0 +24078583 UP 11 +24078583 1024 0 +24078838 DOWN 11 +24078838 0 0 +24078872 UP 11 +24078872 1024 0 +24078960 DOWN 11 +24078960 0 0 +24081253 UP 11 +24081253 1024 0 +24081256 DOWN 11 +24081256 0 0 +24081403 UP 11 +24081403 1024 0 +24081408 DOWN 11 +24081408 0 0 +24081555 UP 11 +24081555 1024 0 +24081559 DOWN 11 +24081559 0 0 +24081780 UP 11 +24081780 1024 0 +24081797 DOWN 11 +24081797 0 0 +24081990 UP 11 +24081990 1024 0 +24081998 DOWN 11 +24081998 0 0 +24082137 UP 11 +24082137 1024 0 +24082165 DOWN 11 +24082165 0 0 +24082275 UP 11 +24082275 1024 0 +24082334 DOWN 11 +24082334 0 0 +24082411 UP 11 +24082411 1024 0 +24082495 DOWN 11 +24082495 0 0 +24082530 UP 11 +24082530 1024 0 +24082553 DOWN 11 +24082553 0 0 +24082562 UP 11 +24082562 1024 0 +24082667 DOWN 11 +24082667 0 0 +24082693 UP 11 +24082693 1024 0 +24082844 DOWN 11 +24082844 0 0 +24082860 UP 11 +24082860 1024 0 +24083018 DOWN 11 +24083018 0 0 +24083043 UP 11 +24083043 1024 0 +24083092 DOWN 11 +24083092 0 0 +24083101 UP 11 +24083101 1024 0 +24083201 DOWN 11 +24083201 0 0 +24083211 UP 11 +24083211 1024 0 +24083378 DOWN 11 +24083378 0 0 +24083382 UP 11 +24083382 1024 0 +24083552 DOWN 11 +24083552 0 0 +24083557 UP 11 +24083557 1024 0 +24083729 DOWN 11 +24083729 0 0 +24083743 UP 11 +24083743 1024 0 +24083912 DOWN 11 +24083912 0 0 +24083936 UP 11 +24083936 1024 0 +24084098 DOWN 11 +24084098 0 0 +24084109 UP 11 +24084108 1024 0 +24086825 DOWN 11 +24086825 0 0 +24086849 UP 11 +24086849 1024 0 +24086884 DOWN 11 +24086884 0 0 +24086917 UP 11 +24086917 1024 0 +24086937 DOWN 11 +24086937 0 0 +24086949 UP 11 +24086949 1024 0 +24087030 DOWN 11 +24087030 0 0 +24087064 UP 11 +24087064 1024 0 +24087088 DOWN 11 +24087088 0 0 +24087108 UP 11 +24087108 1024 0 +24087213 DOWN 11 +24087213 0 0 +24087245 UP 11 +24087245 1024 0 +24087271 DOWN 11 +24087271 0 0 +24087277 UP 11 +24087277 1024 0 +24087389 DOWN 11 +24087389 0 0 +24087403 UP 11 +24087403 1024 0 +24087574 DOWN 11 +24087574 0 0 +24087584 UP 11 +24087584 1024 0 +24088308 DOWN 11 +24088308 0 0 +24088330 UP 11 +24088330 1024 0 +24088411 DOWN 11 +24088411 0 0 +24088480 UP 11 +24088480 1024 0 +24088557 DOWN 11 +24088557 0 0 +24088788 UP 11 +24088788 1024 0 +24089081 DOWN 11 +24089081 0 0 +24092512 LOCKEND +~~~ +~~~ +~~~ +24092533 0 512 +24094091 UP 7 +24094091 64 512 +24094400 DOWN 7 +24094399 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24094430 64 512 +~~~ +~~~ +~~~ +24094434 homeCount = 1 +24094434 waitCount = 0 +24094435 ripCount = 0 +24094435 locktype1 = 1 +24094436 locktype2 = 0 +24094436 locktype3 = 0 +24094437 goalCount = 0 +24094437 goalTotal = 0 +24094438 otherCount = 0 +~~~ +24095843 DOWN 7 +24095843 0 512 +24100125 UP 10 +24100125 waslock = 0 +24100125 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24100155 512 16777728 +~~~ +24100304 512 512 +24100517 DOWN 10 +24100517 0 512 +~~~ +~~~ +24100541 0 2560 +~~~ +~~~ +24100543 0 2048 +24100544 homeCount = 2 +24100545 waitCount = 0 +24100545 ripCount = 0 +24100546 locktype1 = 1 +24100546 locktype2 = 0 +24100547 locktype3 = 0 +24100547 goalCount = 0 +24100548 goalTotal = 0 +24100548 otherCount = 0 +~~~ +24100569 UP 10 +24100570 waslock = 0 +24100569 512 2048 +~~~ +24100616 DOWN 10 +24100616 0 2048 +~~~ +~~~ +~~~ +~~~ +24100646 homeCount = 2 +24100646 waitCount = 0 +24100647 ripCount = 0 +24100647 locktype1 = 1 +24100648 locktype2 = 0 +24100648 locktype3 = 0 +24100649 goalCount = 0 +24100649 goalTotal = 0 +24100650 otherCount = 0 +~~~ +24100783 UP 10 +24100783 waslock = 0 +24100783 512 2048 +~~~ +24100815 DOWN 10 +24100815 0 2048 +~~~ +~~~ +~~~ +~~~ +24100843 homeCount = 2 +24100843 waitCount = 0 +24100844 ripCount = 0 +24100844 locktype1 = 1 +24100845 locktype2 = 0 +24100845 locktype3 = 0 +24100846 goalCount = 0 +24100846 goalTotal = 0 +24100847 otherCount = 0 +~~~ +24100909 UP 10 +24100909 waslock = 0 +24100909 512 2048 +~~~ +24100989 DOWN 10 +24100989 0 2048 +~~~ +~~~ +~~~ +~~~ +24101013 homeCount = 2 +24101013 waitCount = 0 +24101014 ripCount = 0 +24101014 locktype1 = 1 +24101015 locktype2 = 0 +24101015 locktype3 = 0 +24101016 goalCount = 0 +24101016 goalTotal = 0 +24101017 otherCount = 0 +~~~ +24101018 UP 10 +24101018 waslock = 0 +24101018 512 2048 +~~~ +24101542 DOWN 10 +24101542 0 2048 +24101568 UP 10 +24101569 waslock = 0 +24101568 512 2048 +~~~ +~~~ +~~~ +~~~ +24101575 homeCount = 2 +24101575 waitCount = 0 +24101576 ripCount = 0 +24101576 locktype1 = 1 +24101577 locktype2 = 0 +24101577 locktype3 = 0 +24101578 goalCount = 0 +24101578 goalTotal = 0 +24101579 otherCount = 0 +~~~ +~~~ +24101712 DOWN 10 +24101712 0 2048 +~~~ +24101739 UP 10 +24101739 waslock = 0 +24101739 512 2048 +~~~ +~~~ +~~~ +24101742 homeCount = 2 +24101743 waitCount = 0 +24101743 ripCount = 0 +24101744 locktype1 = 1 +24101744 locktype2 = 0 +24101745 locktype3 = 0 +24101745 goalCount = 0 +24101746 goalTotal = 0 +24101746 otherCount = 0 +~~~ +~~~ +24101900 DOWN 10 +24101900 0 2048 +24101911 UP 10 +24101911 waslock = 0 +24101911 512 2048 +~~~ +~~~ +~~~ +~~~ +24101935 homeCount = 2 +24101935 waitCount = 0 +24101936 ripCount = 0 +24101936 locktype1 = 1 +24101937 locktype2 = 0 +24101937 locktype3 = 0 +24101938 goalCount = 0 +24101938 goalTotal = 0 +24101939 otherCount = 0 +~~~ +~~~ +24102072 DOWN 10 +24102071 0 2048 +24102086 UP 10 +24102086 waslock = 0 +24102086 512 2048 +~~~ +~~~ +~~~ +~~~ +24102094 homeCount = 2 +24102095 waitCount = 0 +24102095 ripCount = 0 +24102096 locktype1 = 1 +24102096 locktype2 = 0 +24102097 locktype3 = 0 +24102097 goalCount = 0 +24102098 goalTotal = 0 +24102098 otherCount = 0 +~~~ +~~~ +24103807 DOWN 10 +24103807 0 2048 +24103823 UP 10 +24103823 waslock = 0 +24103823 512 2048 +~~~ +~~~ +~~~ +~~~ +24103831 homeCount = 2 +24103831 waitCount = 0 +24103832 ripCount = 0 +24103832 locktype1 = 1 +24103833 locktype2 = 0 +24103833 locktype3 = 0 +24103834 goalCount = 0 +24103834 goalTotal = 0 +24103835 otherCount = 0 +~~~ +~~~ +24103981 DOWN 10 +24103981 0 2048 +~~~ +~~~ +~~~ +~~~ +24104009 homeCount = 2 +24104010 waitCount = 0 +24104010 ripCount = 0 +24104011 locktype1 = 1 +24104011 locktype2 = 0 +24104012 locktype3 = 0 +24104012 goalCount = 0 +24104013 goalTotal = 0 +24104013 otherCount = 0 +~~~ +24104014 UP 10 +24104014 waslock = 0 +24104014 512 2048 +~~~ +24104173 DOWN 10 +24104173 0 2048 +~~~ +~~~ +~~~ +~~~ +24104198 homeCount = 2 +24104199 waitCount = 0 +24104199 ripCount = 0 +24104200 locktype1 = 1 +24104200 locktype2 = 0 +24104201 locktype3 = 0 +24104201 goalCount = 0 +24104202 goalTotal = 0 +24104202 otherCount = 0 +~~~ +24116229 UP 12 +24116229 2048 2048 +24116292 DOWN 12 +24116292 0 2048 +24116492 LOCKOUT 3 +~~~ +24116519 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24116525 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24116631 UP 12 +24116631 2048 0 +24116733 DOWN 12 +24116732 0 0 +24116782 UP 12 +24116782 2048 0 +24116880 DOWN 12 +24116880 0 0 +24116947 UP 12 +24116947 2048 0 +24117083 DOWN 12 +24117083 0 0 +24117145 UP 12 +24117145 2048 0 +24117245 DOWN 12 +24117245 0 0 +24120977 UP 3 +24120976 4 0 +24121186 DOWN 3 +24121186 0 0 +24121258 4 0 +24121715 DOWN 3 +24121715 0 0 +24121728 4 0 +24121872 DOWN 3 +24121872 0 0 +24121886 4 0 +24122597 DOWN 3 +24122597 0 0 +24122606 4 0 +24123130 DOWN 3 +24123130 0 0 +24123149 4 0 +24124151 DOWN 3 +24124151 0 0 +24124156 4 0 +24124181 DOWN 3 +24124181 0 0 +24133999 512 0 +24134020 0 0 +24134058 512 0 +24134337 0 0 +24134372 512 0 +24134413 0 0 +24134490 512 0 +24134977 0 0 +24134997 512 0 +24135340 0 0 +24135350 512 0 +24135514 0 0 +24135570 512 0 +24135615 0 0 +24139773 UP 8 +24139773 128 0 +24139806 DOWN 8 +24139806 0 0 +24139876 128 0 +24140057 DOWN 8 +24140057 0 0 +24140110 128 0 +24140388 DOWN 8 +24140388 0 0 +24140409 128 0 +24140533 DOWN 8 +24140533 0 0 +24140560 128 0 +24140693 DOWN 8 +24140693 0 0 +24140720 128 0 +24140869 DOWN 8 +24140869 0 0 +24140886 128 0 +24141045 DOWN 8 +24141045 0 0 +24141064 128 0 +24141211 DOWN 8 +24141211 0 0 +24141242 128 0 +24141397 DOWN 8 +24141397 0 0 +24141423 128 0 +24141519 LOCKEND +~~~ +~~~ +~~~ +24141542 128 512 +24141565 DOWN 8 +24141565 0 512 +24141596 128 512 +24141750 DOWN 8 +24141750 0 512 +24141766 128 512 +24142090 DOWN 8 +24142090 0 512 +24142106 128 512 +24143455 DOWN 8 +24143455 0 512 +24149708 UP 10 +24149708 waslock = 0 +24149708 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24149735 512 16777728 +~~~ +24149823 DOWN 10 +24149823 0 16777728 +24149841 UP 10 +24149842 waslock = 0 +24149841 512 16777728 +~~~ +~~~ +24149848 512 16779776 +~~~ +~~~ +24149850 512 16779264 +24149851 homeCount = 3 +24149852 waitCount = 0 +24149852 ripCount = 0 +24149853 locktype1 = 1 +24149853 locktype2 = 0 +24149854 locktype3 = 1 +24149854 goalCount = 0 +24149855 goalTotal = 0 +24149855 otherCount = 0 +~~~ +~~~ +24149885 512 2048 +24150195 DOWN 10 +24150195 0 2048 +~~~ +~~~ +~~~ +~~~ +24150224 homeCount = 3 +24150224 waitCount = 0 +24150225 ripCount = 0 +24150225 locktype1 = 1 +24150226 locktype2 = 0 +24150226 locktype3 = 1 +24150227 goalCount = 0 +24150227 goalTotal = 0 +24150228 otherCount = 0 +~~~ +24150237 UP 10 +24150237 waslock = 0 +24150236 512 2048 +~~~ +24150377 DOWN 10 +24150377 0 2048 +~~~ +~~~ +~~~ +~~~ +24150405 homeCount = 3 +24150405 waitCount = 0 +24150406 ripCount = 0 +24150406 locktype1 = 1 +24150407 locktype2 = 0 +24150407 locktype3 = 1 +24150408 goalCount = 0 +24150408 goalTotal = 0 +24150409 otherCount = 0 +~~~ +24150410 UP 10 +24150410 waslock = 0 +24150410 512 2048 +~~~ +24150548 DOWN 10 +24150547 0 2048 +~~~ +~~~ +~~~ +~~~ +24150574 homeCount = 3 +24150574 waitCount = 0 +24150575 ripCount = 0 +24150575 locktype1 = 1 +24150576 locktype2 = 0 +24150576 locktype3 = 1 +24150577 goalCount = 0 +24150577 goalTotal = 0 +24150578 otherCount = 0 +~~~ +24150582 UP 10 +24150582 waslock = 0 +24150582 512 2048 +~~~ +24150712 DOWN 10 +24150712 0 2048 +~~~ +~~~ +~~~ +~~~ +24150732 homeCount = 3 +24150732 waitCount = 0 +24150733 ripCount = 0 +24150733 locktype1 = 1 +24150734 locktype2 = 0 +24150734 locktype3 = 1 +24150735 goalCount = 0 +24150735 goalTotal = 0 +24150736 otherCount = 0 +~~~ +24150746 UP 10 +24150747 waslock = 0 +24150746 512 2048 +~~~ +24150885 DOWN 10 +24150885 0 2048 +~~~ +~~~ +~~~ +~~~ +24150911 homeCount = 3 +24150912 waitCount = 0 +24150912 ripCount = 0 +24150913 locktype1 = 1 +24150913 locktype2 = 0 +24150914 locktype3 = 1 +24150914 goalCount = 0 +24150915 goalTotal = 0 +24150915 otherCount = 0 +~~~ +24150922 UP 10 +24150922 waslock = 0 +24150922 512 2048 +~~~ +24151063 DOWN 10 +24151063 0 2048 +~~~ +~~~ +~~~ +~~~ +24151091 homeCount = 3 +24151092 waitCount = 0 +24151092 ripCount = 0 +24151093 locktype1 = 1 +24151093 locktype2 = 0 +24151094 locktype3 = 1 +24151094 goalCount = 0 +24151095 goalTotal = 0 +24151095 otherCount = 0 +~~~ +24151096 UP 10 +24151096 waslock = 0 +24151096 512 2048 +~~~ +24151239 DOWN 10 +24151239 0 2048 +~~~ +~~~ +~~~ +~~~ +24151264 homeCount = 3 +24151264 waitCount = 0 +24151265 ripCount = 0 +24151265 locktype1 = 1 +24151266 locktype2 = 0 +24151266 locktype3 = 1 +24151267 goalCount = 0 +24151267 goalTotal = 0 +24151268 otherCount = 0 +~~~ +24151272 UP 10 +24151273 waslock = 0 +24151272 512 2048 +~~~ +24151430 DOWN 10 +24151430 0 2048 +~~~ +~~~ +~~~ +~~~ +24151453 homeCount = 3 +24151454 waitCount = 0 +24151454 ripCount = 0 +24151455 locktype1 = 1 +24151455 locktype2 = 0 +24151456 locktype3 = 1 +24151456 goalCount = 0 +24151457 goalTotal = 0 +24151457 otherCount = 0 +~~~ +24151458 UP 10 +24151458 waslock = 0 +24151458 512 2048 +~~~ +24151611 DOWN 10 +24151610 0 2048 +~~~ +~~~ +~~~ +~~~ +24151634 homeCount = 3 +24151635 waitCount = 0 +24151635 ripCount = 0 +24151636 locktype1 = 1 +24151636 locktype2 = 0 +24151637 locktype3 = 1 +24151637 goalCount = 0 +24151638 goalTotal = 0 +24151638 otherCount = 0 +~~~ +24151641 UP 10 +24151642 waslock = 0 +24151641 512 2048 +~~~ +24151782 DOWN 10 +24151782 0 2048 +~~~ +~~~ +~~~ +~~~ +24151805 homeCount = 3 +24151805 waitCount = 0 +24151806 ripCount = 0 +24151806 locktype1 = 1 +24151807 locktype2 = 0 +24151807 locktype3 = 1 +24151808 goalCount = 0 +24151808 goalTotal = 0 +24151809 otherCount = 0 +~~~ +24151823 UP 10 +24151824 waslock = 0 +24151823 512 2048 +~~~ +24151978 DOWN 10 +24151978 0 2048 +24152002 UP 10 +24152003 waslock = 0 +24152002 512 2048 +~~~ +~~~ +~~~ +~~~ +24152007 homeCount = 3 +24152007 waitCount = 0 +24152008 ripCount = 0 +24152008 locktype1 = 1 +24152009 locktype2 = 0 +24152009 locktype3 = 1 +24152010 goalCount = 0 +24152010 goalTotal = 0 +24152011 otherCount = 0 +~~~ +~~~ +24152184 DOWN 10 +24152184 0 2048 +24152194 UP 10 +24152195 waslock = 0 +24152194 512 2048 +~~~ +~~~ +~~~ +~~~ +24152213 homeCount = 3 +24152213 waitCount = 0 +24152214 ripCount = 0 +24152214 locktype1 = 1 +24152215 locktype2 = 0 +24152215 locktype3 = 1 +24152216 goalCount = 0 +24152216 goalTotal = 0 +24152217 otherCount = 0 +~~~ +~~~ +24152367 DOWN 10 +24152367 0 2048 +~~~ +~~~ +~~~ +~~~ +24152395 homeCount = 3 +24152395 waitCount = 0 +24152396 ripCount = 0 +24152396 locktype1 = 1 +24152397 locktype2 = 0 +24152397 locktype3 = 1 +24152398 goalCount = 0 +24152398 goalTotal = 0 +24152399 otherCount = 0 +~~~ +24152402 UP 10 +24152403 waslock = 0 +24152402 512 2048 +~~~ +24152539 DOWN 10 +24152539 0 2048 +~~~ +~~~ +~~~ +~~~ +24152564 homeCount = 3 +24152564 waitCount = 0 +24152565 ripCount = 0 +24152565 locktype1 = 1 +24152566 locktype2 = 0 +24152566 locktype3 = 1 +24152567 goalCount = 0 +24152567 goalTotal = 0 +24152568 otherCount = 0 +~~~ +24152572 UP 10 +24152573 waslock = 0 +24152572 512 2048 +~~~ +24152741 DOWN 10 +24152741 0 2048 +24152759 UP 10 +24152760 waslock = 0 +24152759 512 2048 +~~~ +~~~ +~~~ +~~~ +24152763 homeCount = 3 +24152764 waitCount = 0 +24152764 ripCount = 0 +24152765 locktype1 = 1 +24152765 locktype2 = 0 +24152766 locktype3 = 1 +24152766 goalCount = 0 +24152767 goalTotal = 0 +24152767 otherCount = 0 +~~~ +~~~ +24153497 DOWN 10 +24153497 0 2048 +~~~ +~~~ +~~~ +~~~ +24153532 homeCount = 3 +24153532 waitCount = 0 +24153533 ripCount = 0 +24153533 locktype1 = 1 +24153534 locktype2 = 0 +24153534 locktype3 = 1 +24153535 goalCount = 0 +24153535 goalTotal = 0 +24153536 otherCount = 0 +~~~ +24153539 UP 10 +24153539 waslock = 0 +24153539 512 2048 +~~~ +24153665 DOWN 10 +24153665 0 2048 +~~~ +~~~ +24153684 UP 10 +24153684 waslock = 0 +24153684 512 2048 +~~~ +~~~ +24153686 homeCount = 3 +24153687 waitCount = 0 +24153687 ripCount = 0 +24153688 locktype1 = 1 +24153688 locktype2 = 0 +24153689 locktype3 = 1 +24153689 goalCount = 0 +24153690 goalTotal = 0 +24153711 otherCount = 0 +~~~ +~~~ +24153879 DOWN 10 +24153879 0 2048 +~~~ +~~~ +~~~ +~~~ +24153906 UP 10 +24153906 waslock = 0 +24153906 512 2048 +24153907 homeCount = 3 +24153908 waitCount = 0 +24153908 ripCount = 0 +24153909 locktype1 = 1 +24153909 locktype2 = 0 +24153910 locktype3 = 1 +24153910 goalCount = 0 +24153911 goalTotal = 0 +24153911 otherCount = 0 +~~~ +~~~ +24154063 DOWN 10 +24154063 0 2048 +~~~ +~~~ +24154084 UP 10 +24154084 waslock = 0 +24154084 512 2048 +~~~ +~~~ +24154087 homeCount = 3 +24154087 waitCount = 0 +24154088 ripCount = 0 +24154088 locktype1 = 1 +24154089 locktype2 = 0 +24154089 locktype3 = 1 +24154090 goalCount = 0 +24154090 goalTotal = 0 +24154111 otherCount = 0 +~~~ +~~~ +24154734 DOWN 10 +24154734 0 2048 +~~~ +24154753 UP 10 +24154753 waslock = 0 +24154753 512 2048 +~~~ +~~~ +~~~ +24154757 homeCount = 3 +24154757 waitCount = 0 +24154758 ripCount = 0 +24154758 locktype1 = 1 +24154759 locktype2 = 0 +24154759 locktype3 = 1 +24154760 goalCount = 0 +24154760 goalTotal = 0 +24154761 otherCount = 0 +~~~ +~~~ +24155139 DOWN 10 +24155139 0 2048 +24155152 UP 10 +24155152 waslock = 0 +24155152 512 2048 +~~~ +~~~ +~~~ +~~~ +24155162 homeCount = 3 +24155163 waitCount = 0 +24155163 ripCount = 0 +24155163 locktype1 = 1 +24155164 locktype2 = 0 +24155164 locktype3 = 1 +24155165 goalCount = 0 +24155165 goalTotal = 0 +24155166 otherCount = 0 +~~~ +~~~ +24155249 DOWN 10 +24155249 0 2048 +~~~ +~~~ +~~~ +~~~ +24155276 homeCount = 3 +24155276 waitCount = 0 +24155277 ripCount = 0 +24155277 locktype1 = 1 +24155278 locktype2 = 0 +24155278 locktype3 = 1 +24155279 goalCount = 0 +24155279 goalTotal = 0 +24155280 otherCount = 0 +~~~ +24155317 UP 10 +24155317 waslock = 0 +24155317 512 2048 +~~~ +24155370 DOWN 10 +24155370 0 2048 +~~~ +~~~ +~~~ +~~~ +24155391 homeCount = 3 +24155392 waitCount = 0 +24155392 ripCount = 0 +24155393 locktype1 = 1 +24155393 locktype2 = 0 +24155394 locktype3 = 1 +24155394 goalCount = 0 +24155395 goalTotal = 0 +24155395 otherCount = 0 +~~~ +24157118 UP 12 +24157118 2048 2048 +24158118 CLICK1 +24158118 CLICK2 +~~~ +~~~ +~~~ +24158143 2048 67110912 +~~~ +24158293 2048 2048 +24162037 DOWN 12 +24162037 0 2048 +24162046 UP 12 +24162046 2048 2048 +~~~ +~~~ +24162059 2048 0 +~~~ +~~~ +24162061 2048 1 +~~~ +~~~ +24162063 2048 3 +~~~ +~~~ +24162065 2048 7 +~~~ +~~~ +24162066 2048 15 +~~~ +~~~ +24162068 2048 31 +~~~ +~~~ +24162070 2048 63 +~~~ +~~~ +24162072 2048 127 +~~~ +~~~ +24162074 2048 255 +24162075 homeCount = 3 +24162075 waitCount = 1 +24162076 ripCount = 0 +24162076 locktype1 = 1 +24162097 locktype2 = 0 +24162098 locktype3 = 1 +24162098 goalCount = 0 +24162099 goalTotal = 0 +24162099 otherCount = 0 +~~~ +24162100 CURRENTGOAL IS [2] +~~~ +24164104 DOWN 12 +24164104 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24164146 homeCount = 3 +24164147 waitCount = 1 +24164147 ripCount = 0 +24164148 locktype1 = 1 +24164148 locktype2 = 0 +24164149 locktype3 = 1 +24164149 goalCount = 0 +24164150 goalTotal = 0 +24164150 otherCount = 0 +~~~ +24164151 CURRENTGOAL IS [2] +~~~ +24166882 UP 3 +24166882 4 255 +~~~ +~~~ +24167174 DOWN 3 +24167174 0 255 +~~~ +~~~ +24167201 0 254 +~~~ +~~~ +24167203 0 252 +~~~ +~~~ +24167205 0 248 +~~~ +~~~ +24167207 0 240 +~~~ +~~~ +24167209 0 224 +~~~ +~~~ +24167211 0 192 +~~~ +~~~ +24167212 0 128 +~~~ +~~~ +24167214 0 0 +~~~ +~~~ +24167216 0 512 +24167217 homeCount = 3 +24167218 waitCount = 1 +24167218 ripCount = 0 +24167219 locktype1 = 1 +24167219 locktype2 = 0 +24167240 locktype3 = 1 +24167240 goalCount = 0 +24167241 goalTotal = 0 +24167241 otherCount = 1 +~~~ +24167242 4 512 +24167909 DOWN 3 +24167909 0 512 +24167987 4 512 +24167998 DOWN 3 +24167998 0 512 +24171196 UP 10 +24171196 waslock = 0 +24171196 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24171228 512 16777728 +~~~ +24171232 DOWN 10 +24171232 0 16777728 +~~~ +~~~ +24171244 0 16778752 +~~~ +~~~ +24171246 0 16778240 +24171247 homeCount = 4 +24171247 waitCount = 1 +24171248 ripCount = 0 +24171248 locktype1 = 1 +24171249 locktype2 = 0 +24171249 locktype3 = 1 +24171250 goalCount = 0 +24171250 goalTotal = 0 +24171251 otherCount = 1 +~~~ +24171296 UP 10 +24171296 waslock = 0 +24171296 512 16778240 +~~~ +24171323 DOWN 10 +24171323 0 16778240 +~~~ +~~~ +~~~ +~~~ +24171346 homeCount = 4 +24171346 waitCount = 1 +24171347 ripCount = 0 +24171347 locktype1 = 1 +24171348 locktype2 = 0 +24171348 locktype3 = 1 +24171349 goalCount = 0 +24171349 goalTotal = 0 +24171350 otherCount = 1 +~~~ +24171378 0 1024 +24171850 UP 10 +24171850 waslock = 0 +24171850 512 1024 +~~~ +24172122 DOWN 10 +24172122 0 1024 +~~~ +~~~ +~~~ +~~~ +24172155 homeCount = 4 +24172156 waitCount = 1 +24172156 ripCount = 0 +24172157 locktype1 = 1 +24172157 locktype2 = 0 +24172158 locktype3 = 1 +24172158 goalCount = 0 +24172159 goalTotal = 0 +24172159 otherCount = 1 +~~~ +24172177 UP 10 +24172177 waslock = 0 +24172177 512 1024 +24172206 DOWN 10 +24172206 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24172253 homeCount = 4 +24172254 waitCount = 1 +24172254 ripCount = 0 +24172255 locktype1 = 1 +24172255 locktype2 = 0 +24172256 locktype3 = 1 +24172256 goalCount = 0 +24172257 goalTotal = 0 +24172257 otherCount = 1 +~~~ +24172303 UP 10 +24172303 waslock = 0 +24172303 512 1024 +~~~ +24172431 DOWN 10 +24172431 0 1024 +24172454 UP 10 +24172454 waslock = 0 +24172454 512 1024 +~~~ +~~~ +~~~ +~~~ +24172460 homeCount = 4 +24172461 waitCount = 1 +24172461 ripCount = 0 +24172462 locktype1 = 1 +24172462 locktype2 = 0 +24172463 locktype3 = 1 +24172463 goalCount = 0 +24172464 goalTotal = 0 +24172464 otherCount = 1 +~~~ +~~~ +24176002 DOWN 10 +24176002 0 1024 +~~~ +~~~ +~~~ +~~~ +24176021 homeCount = 4 +24176022 waitCount = 1 +24176022 ripCount = 0 +24176023 locktype1 = 1 +24176023 locktype2 = 0 +24176024 locktype3 = 1 +24176024 goalCount = 0 +24176025 goalTotal = 0 +24176025 otherCount = 1 +~~~ +24176057 UP 10 +24176057 waslock = 0 +24176057 512 1024 +~~~ +24176101 DOWN 10 +24176101 0 1024 +~~~ +~~~ +~~~ +~~~ +24176131 homeCount = 4 +24176131 waitCount = 1 +24176132 ripCount = 0 +24176132 locktype1 = 1 +24176133 locktype2 = 0 +24176133 locktype3 = 1 +24176134 goalCount = 0 +24176134 goalTotal = 0 +24176135 otherCount = 1 +~~~ +24177410 UP 11 +24177410 1024 1024 +24177464 DOWN 11 +24177464 0 1024 +24177493 UP 11 +24177493 1024 1024 +24178180 DOWN 11 +24178180 0 1024 +24178233 UP 11 +24178233 1024 1024 +24178411 BEEP1 +24178411 BEEP2 +~~~ +~~~ +~~~ +24178442 1024 33555456 +~~~ +24178528 DOWN 11 +24178528 0 33555456 +24178550 UP 11 +24178550 1024 33555456 +24178592 1024 1024 +~~~ +~~~ +24179111 1024 0 +~~~ +~~~ +24179113 1024 1 +~~~ +~~~ +24179115 1024 3 +~~~ +~~~ +24179116 1024 7 +~~~ +~~~ +24179118 1024 15 +~~~ +~~~ +24179120 1024 31 +~~~ +24179121 DOWN 11 +24179121 0 31 +~~~ +~~~ +24179123 0 63 +~~~ +~~~ +24179125 0 127 +~~~ +24179126 0 255 +24179127 homeCount = 4 +24179128 waitCount = 1 +24179149 ripCount = 1 +24179149 locktype1 = 1 +24179150 locktype2 = 0 +24179150 locktype3 = 1 +24179151 goalCount = 0 +24179151 goalTotal = 0 +24179152 otherCount = 1 +~~~ +24179153 CURRENTGOAL IS [2] +~~~ +24179153 UP 11 +24179153 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24179182 homeCount = 4 +24179183 waitCount = 1 +24179183 ripCount = 1 +24179184 locktype1 = 1 +24179184 locktype2 = 0 +24179185 locktype3 = 1 +24179185 goalCount = 0 +24179206 goalTotal = 0 +24179207 otherCount = 1 +~~~ +24179208 CURRENTGOAL IS [2] +~~~ +24183586 DOWN 11 +24183586 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24183630 homeCount = 4 +24183630 waitCount = 1 +24183631 ripCount = 1 +24183631 locktype1 = 1 +24183632 locktype2 = 0 +24183632 locktype3 = 1 +24183633 goalCount = 0 +24183633 goalTotal = 0 +24183634 otherCount = 1 +~~~ +24183635 CURRENTGOAL IS [2] +~~~ +24186519 UP 7 +24186519 64 255 +24186539 DOWN 7 +24186539 0 255 +~~~ +~~~ +~~~ +~~~ +24186563 0 254 +~~~ +~~~ +24186565 0 252 +~~~ +~~~ +24186567 0 248 +~~~ +~~~ +24186569 0 240 +~~~ +~~~ +24186571 0 224 +~~~ +~~~ +24186573 0 192 +~~~ +~~~ +24186574 0 128 +~~~ +~~~ +24186576 0 0 +~~~ +~~~ +24186578 0 512 +24186579 homeCount = 4 +24186580 waitCount = 1 +24186580 ripCount = 1 +24186581 locktype1 = 1 +24186581 locktype2 = 0 +24186602 locktype3 = 1 +24186602 goalCount = 0 +24186603 goalTotal = 0 +24186603 otherCount = 2 +~~~ +24186624 64 512 +24186990 DOWN 7 +24186990 0 512 +24187012 64 512 +24189589 DOWN 7 +24189589 0 512 +24189637 64 512 +24189704 DOWN 7 +24189704 0 512 +24196352 UP 10 +24196352 waslock = 0 +24196352 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24196378 512 16777728 +~~~ +24196528 512 512 +24196681 DOWN 10 +24196680 0 512 +~~~ +~~~ +24196702 0 1536 +~~~ +~~~ +24196704 0 1024 +24196705 homeCount = 5 +24196706 waitCount = 1 +24196706 ripCount = 1 +24196707 locktype1 = 1 +24196707 locktype2 = 0 +24196708 locktype3 = 1 +24196708 goalCount = 0 +24196709 goalTotal = 0 +24196709 otherCount = 2 +~~~ +24196730 UP 10 +24196731 waslock = 0 +24196730 512 1024 +~~~ +24200930 DOWN 10 +24200930 0 1024 +~~~ +~~~ +~~~ +~~~ +24200956 homeCount = 5 +24200957 waitCount = 1 +24200957 ripCount = 1 +24200958 locktype1 = 1 +24200958 locktype2 = 0 +24200959 locktype3 = 1 +24200960 goalCount = 0 +24200960 goalTotal = 0 +24200960 otherCount = 2 +~~~ +24200961 UP 10 +24200961 waslock = 0 +24200961 512 1024 +~~~ +24201037 DOWN 10 +24201037 0 1024 +~~~ +~~~ +~~~ +~~~ +24201065 homeCount = 5 +24201065 waitCount = 1 +24201066 ripCount = 1 +24201066 locktype1 = 1 +24201067 locktype2 = 0 +24201067 locktype3 = 1 +24201068 goalCount = 0 +24201068 goalTotal = 0 +24201069 otherCount = 2 +~~~ +24203157 UP 11 +24203157 1024 1024 +24203186 DOWN 11 +24203186 0 1024 +24203242 UP 11 +24203242 1024 1024 +24204343 DOWN 11 +24204343 0 1024 +24204378 UP 11 +24204378 1024 1024 +24204450 DOWN 11 +24204450 0 1024 +24204510 UP 11 +24204510 1024 1024 +24204657 BEEP1 +24204657 BEEP2 +~~~ +~~~ +~~~ +24204685 1024 33555456 +~~~ +24204835 1024 1024 +24208431 DOWN 11 +24208431 0 1024 +24208433 UP 11 +24208433 1024 1024 +~~~ +~~~ +24208455 1024 0 +~~~ +~~~ +24208457 1024 1 +~~~ +~~~ +24208459 1024 3 +~~~ +~~~ +24208460 1024 7 +~~~ +~~~ +24208462 1024 15 +~~~ +~~~ +24208464 1024 31 +~~~ +~~~ +24208466 1024 63 +~~~ +~~~ +24208468 1024 127 +~~~ +~~~ +24208469 1024 255 +24208470 homeCount = 5 +24208471 waitCount = 1 +24208472 ripCount = 2 +24208472 locktype1 = 1 +24208493 locktype2 = 0 +24208493 locktype3 = 1 +24208494 goalCount = 0 +24208494 goalTotal = 0 +24208495 otherCount = 2 +~~~ +24208496 CURRENTGOAL IS [2] +~~~ +24208558 DOWN 11 +24208558 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208599 UP 11 +24208599 1024 255 +24208600 homeCount = 5 +24208601 waitCount = 1 +24208601 ripCount = 2 +24208602 locktype1 = 1 +24208602 locktype2 = 0 +24208603 locktype3 = 1 +24208603 goalCount = 0 +24208604 goalTotal = 0 +24208604 otherCount = 2 +~~~ +24208626 CURRENTGOAL IS [2] +~~~ +24208626 DOWN 11 +24208626 0 255 +24208640 UP 11 +24208640 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208681 homeCount = 5 +24208682 waitCount = 1 +24208682 ripCount = 2 +24208683 locktype1 = 1 +24208684 locktype2 = 0 +24208684 locktype3 = 1 +24208685 goalCount = 0 +24208685 goalTotal = 0 +24208686 otherCount = 2 +~~~ +24208687 CURRENTGOAL IS [2] +~~~ +24208711 DOWN 11 +24208711 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208740 homeCount = 5 +24208741 waitCount = 1 +24208741 ripCount = 2 +24208742 locktype1 = 1 +24208742 locktype2 = 0 +24208743 locktype3 = 1 +24208743 goalCount = 0 +24208744 goalTotal = 0 +24208744 otherCount = 2 +~~~ +24208745 CURRENTGOAL IS [2] +~~~ +24208812 UP 11 +24208812 1024 255 +24208850 DOWN 11 +24208850 0 255 +24208860 UP 11 +24208860 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208893 homeCount = 5 +24208893 waitCount = 1 +24208894 ripCount = 2 +24208894 locktype1 = 1 +24208895 locktype2 = 0 +24208895 locktype3 = 1 +24208896 goalCount = 0 +24208896 goalTotal = 0 +24208897 otherCount = 2 +~~~ +24208898 CURRENTGOAL IS [2] +~~~ +24209074 DOWN 11 +24209074 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209106 UP 11 +24209106 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +24209112 homeCount = 5 +24209112 waitCount = 1 +24209113 ripCount = 2 +24209113 locktype1 = 1 +24209114 locktype2 = 0 +24209114 locktype3 = 1 +24209115 goalCount = 0 +24209115 goalTotal = 0 +24209116 otherCount = 2 +~~~ +24209117 CURRENTGOAL IS [2] +~~~ +24209145 DOWN 11 +24209145 0 255 +24209163 UP 11 +24209163 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209187 homeCount = 5 +24209188 waitCount = 1 +24209188 ripCount = 2 +24209189 locktype1 = 1 +24209189 locktype2 = 0 +24209190 locktype3 = 1 +24209190 goalCount = 0 +24209191 goalTotal = 0 +24209191 otherCount = 2 +~~~ +24209192 CURRENTGOAL IS [2] +~~~ +24209289 DOWN 11 +24209289 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209331 homeCount = 5 +24209332 waitCount = 1 +24209332 ripCount = 2 +24209333 locktype1 = 1 +24209333 locktype2 = 0 +24209334 locktype3 = 1 +24209334 goalCount = 0 +24209335 goalTotal = 0 +24209335 otherCount = 2 +~~~ +24209337 CURRENTGOAL IS [2] +~~~ +24212126 UP 5 +24212126 16 255 +~~~ +24212146 DOWN 5 +24212146 0 255 +~~~ +~~~ +~~~ +24212177 0 254 +~~~ +~~~ +24212178 0 252 +~~~ +~~~ +24212180 0 248 +~~~ +~~~ +24212182 0 240 +~~~ +~~~ +24212184 0 224 +~~~ +~~~ +24212186 0 192 +~~~ +~~~ +24212187 0 128 +~~~ +~~~ +24212189 0 0 +~~~ +~~~ +24212191 0 512 +24212192 homeCount = 5 +24212193 waitCount = 1 +24212193 ripCount = 2 +24212194 locktype1 = 1 +24212194 locktype2 = 0 +24212215 locktype3 = 1 +24212215 goalCount = 0 +24212216 goalTotal = 0 +24212216 otherCount = 3 +~~~ +24212469 16 512 +24212756 DOWN 5 +24212756 0 512 +24212762 16 512 +24213578 DOWN 5 +24213578 0 512 +24213590 16 512 +24213754 DOWN 5 +24213754 0 512 +24213774 16 512 +24214290 DOWN 5 +24214290 0 512 +24214316 16 512 +24214469 DOWN 5 +24214469 0 512 +24214501 16 512 +24214663 DOWN 5 +24214663 0 512 +24214680 16 512 +24214843 DOWN 5 +24214843 0 512 +24214884 16 512 +24215375 DOWN 5 +24215375 0 512 +24215398 16 512 +24215554 DOWN 5 +24215554 0 512 +24215575 16 512 +24216148 DOWN 5 +24216148 0 512 +24216172 16 512 +24216867 DOWN 5 +24216867 0 512 +24216888 16 512 +24216954 DOWN 5 +24216954 0 512 +24216960 16 512 +24217048 DOWN 5 +24217048 0 512 +24217080 16 512 +24217982 DOWN 5 +24217982 0 512 +24218106 16 512 +24218201 DOWN 5 +24218201 0 512 +24218225 16 512 +24218393 DOWN 5 +24218393 0 512 +24218402 16 512 +24218595 DOWN 5 +24218595 0 512 +24218607 16 512 +24218777 DOWN 5 +24218777 0 512 +24218799 16 512 +24218818 DOWN 5 +24218818 0 512 +24218852 16 512 +24218964 DOWN 5 +24218964 0 512 +24218986 16 512 +24219001 DOWN 5 +24219001 0 512 +24219056 16 512 +24219074 DOWN 5 +24219074 0 512 +24233913 UP 10 +24233913 waslock = 0 +24233913 512 512 +24233926 DOWN 10 +24233926 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24233953 0 16777728 +~~~ +~~~ +~~~ +24233956 0 16779776 +~~~ +~~~ +24233958 0 16779264 +24233959 homeCount = 6 +24233959 waitCount = 1 +24233960 ripCount = 2 +24233960 locktype1 = 1 +24233961 locktype2 = 0 +24233961 locktype3 = 1 +24233962 goalCount = 0 +24233962 goalTotal = 0 +24233963 otherCount = 3 +~~~ +24234035 UP 10 +24234035 waslock = 0 +24234035 512 16779264 +~~~ +24234103 512 2048 +24234151 DOWN 10 +24234151 0 2048 +~~~ +~~~ +~~~ +~~~ +24234174 homeCount = 6 +24234175 waitCount = 1 +24234175 ripCount = 2 +24234176 locktype1 = 1 +24234176 locktype2 = 0 +24234177 locktype3 = 1 +24234177 goalCount = 0 +24234178 goalTotal = 0 +24234178 otherCount = 3 +~~~ +24234246 UP 10 +24234246 waslock = 0 +24234246 512 2048 +~~~ +24234719 DOWN 10 +24234719 0 2048 +24234733 UP 10 +24234733 waslock = 0 +24234733 512 2048 +~~~ +~~~ +~~~ +~~~ +24234756 homeCount = 6 +24234757 waitCount = 1 +24234757 ripCount = 2 +24234758 locktype1 = 1 +24234758 locktype2 = 0 +24234759 locktype3 = 1 +24234759 goalCount = 0 +24234760 goalTotal = 0 +24234760 otherCount = 3 +~~~ +~~~ +24234879 DOWN 10 +24234879 0 2048 +24234898 UP 10 +24234899 waslock = 0 +24234898 512 2048 +~~~ +~~~ +~~~ +~~~ +24234904 homeCount = 6 +24234904 waitCount = 1 +24234905 ripCount = 2 +24234905 locktype1 = 1 +24234906 locktype2 = 0 +24234906 locktype3 = 1 +24234907 goalCount = 0 +24234907 goalTotal = 0 +24234908 otherCount = 3 +~~~ +~~~ +24235038 DOWN 10 +24235038 0 2048 +24235063 UP 10 +24235064 waslock = 0 +24235063 512 2048 +~~~ +~~~ +~~~ +~~~ +24235074 homeCount = 6 +24235074 waitCount = 1 +24235075 ripCount = 2 +24235075 locktype1 = 1 +24235076 locktype2 = 0 +24235076 locktype3 = 1 +24235077 goalCount = 0 +24235077 goalTotal = 0 +24235078 otherCount = 3 +~~~ +~~~ +24238546 DOWN 10 +24238546 0 2048 +24238564 UP 10 +24238564 waslock = 0 +24238564 512 2048 +~~~ +~~~ +~~~ +~~~ +24238587 homeCount = 6 +24238588 waitCount = 1 +24238588 ripCount = 2 +24238589 locktype1 = 1 +24238589 locktype2 = 0 +24238590 locktype3 = 1 +24238590 goalCount = 0 +24238591 goalTotal = 0 +24238591 otherCount = 3 +~~~ +~~~ +24238665 DOWN 10 +24238665 0 2048 +~~~ +~~~ +~~~ +~~~ +24238694 homeCount = 6 +24238694 waitCount = 1 +24238695 ripCount = 2 +24238695 locktype1 = 1 +24238696 locktype2 = 0 +24238696 locktype3 = 1 +24238697 goalCount = 0 +24238697 goalTotal = 0 +24238698 otherCount = 3 +~~~ +24238715 UP 10 +24238715 waslock = 0 +24238715 512 2048 +~~~ +24238760 DOWN 10 +24238760 0 2048 +~~~ +~~~ +~~~ +~~~ +24238786 homeCount = 6 +24238787 waitCount = 1 +24238787 ripCount = 2 +24238788 locktype1 = 1 +24238788 locktype2 = 0 +24238789 locktype3 = 1 +24238789 goalCount = 0 +24238790 goalTotal = 0 +24238790 otherCount = 3 +~~~ +24240420 UP 12 +24240420 2048 2048 +24241195 DOWN 12 +24241195 0 2048 +24241237 UP 12 +24241237 2048 2048 +24241466 DOWN 12 +24241466 0 2048 +24241603 UP 12 +24241603 2048 2048 +24241920 CLICK1 +24241920 CLICK2 +~~~ +~~~ +~~~ +24241942 2048 67110912 +~~~ +24242092 2048 2048 +24248498 DOWN 12 +24248498 0 2048 +~~~ +~~~ +24248521 0 0 +~~~ +~~~ +24248523 UP 12 +24248523 2048 1 +~~~ +~~~ +24248525 2048 3 +~~~ +~~~ +24248526 2048 7 +~~~ +~~~ +24248528 2048 15 +~~~ +~~~ +24248530 2048 31 +~~~ +~~~ +24248532 2048 63 +~~~ +~~~ +24248533 2048 127 +~~~ +~~~ +24248535 2048 255 +24248536 homeCount = 6 +24248537 waitCount = 2 +24248537 ripCount = 2 +24248559 locktype1 = 1 +24248559 locktype2 = 0 +24248560 locktype3 = 1 +24248560 goalCount = 0 +24248561 goalTotal = 0 +24248561 otherCount = 3 +~~~ +24248562 CURRENTGOAL IS [2] +~~~ +24248563 DOWN 12 +24248563 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24248619 homeCount = 6 +24248619 waitCount = 2 +24248620 ripCount = 2 +24248620 locktype1 = 1 +24248621 locktype2 = 0 +24248621 locktype3 = 1 +24248622 goalCount = 0 +24248622 goalTotal = 0 +24248623 otherCount = 3 +~~~ +24248624 CURRENTGOAL IS [2] +~~~ +24251525 UP 1 +24251524 1 255 +~~~ +~~~ +24252734 DOWN 1 +24252734 0 255 +24252741 1 255 +~~~ +~~~ +24252757 1 254 +~~~ +~~~ +24252759 1 252 +~~~ +~~~ +24252760 1 248 +~~~ +~~~ +24252762 1 240 +~~~ +~~~ +24252764 1 224 +~~~ +~~~ +24252766 1 192 +~~~ +~~~ +24252768 1 128 +~~~ +~~~ +24252769 1 0 +~~~ +~~~ +24252771 1 512 +24252772 homeCount = 6 +24252773 waitCount = 2 +24252773 ripCount = 2 +24252774 locktype1 = 1 +24252774 locktype2 = 0 +24252795 locktype3 = 1 +24252796 goalCount = 0 +24252796 goalTotal = 0 +24252797 otherCount = 4 +~~~ +24253082 DOWN 1 +24253082 0 512 +24253096 1 512 +24253270 DOWN 1 +24253270 0 512 +24253278 1 512 +24253999 DOWN 1 +24253999 0 512 +24254012 1 512 +24254185 DOWN 1 +24254185 0 512 +24254197 1 512 +24254296 DOWN 1 +24254296 0 512 +24254647 1 512 +24254672 DOWN 1 +24254672 0 512 +24262772 UP 10 +24262773 waslock = 0 +24262772 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24262798 512 16777728 +~~~ +24262832 DOWN 10 +24262832 0 16777728 +~~~ +~~~ +24262851 0 16778752 +~~~ +~~~ +24262853 0 16778240 +24262854 homeCount = 7 +24262855 waitCount = 2 +24262855 ripCount = 2 +24262856 locktype1 = 1 +24262856 locktype2 = 0 +24262857 locktype3 = 1 +24262857 goalCount = 0 +24262858 goalTotal = 0 +24262858 otherCount = 4 +~~~ +24262879 UP 10 +24262879 waslock = 0 +24262879 512 16778240 +~~~ +24262948 512 1024 +24262970 DOWN 10 +24262970 0 1024 +~~~ +~~~ +~~~ +~~~ +24262994 homeCount = 7 +24262995 waitCount = 2 +24262995 ripCount = 2 +24262996 locktype1 = 1 +24262996 locktype2 = 0 +24262997 locktype3 = 1 +24262997 goalCount = 0 +24262998 goalTotal = 0 +24262998 otherCount = 4 +~~~ +24263099 UP 10 +24263099 waslock = 0 +24263099 512 1024 +~~~ +24263849 DOWN 10 +24263849 0 1024 +24263863 UP 10 +24263863 waslock = 0 +24263863 512 1024 +~~~ +~~~ +~~~ +~~~ +24263874 homeCount = 7 +24263874 waitCount = 2 +24263875 ripCount = 2 +24263875 locktype1 = 1 +24263876 locktype2 = 0 +24263876 locktype3 = 1 +24263877 goalCount = 0 +24263877 goalTotal = 0 +24263878 otherCount = 4 +~~~ +~~~ +24266888 DOWN 10 +24266888 0 1024 +~~~ +~~~ +~~~ +~~~ +24266911 homeCount = 7 +24266912 waitCount = 2 +24266912 ripCount = 2 +24266913 locktype1 = 1 +24266913 locktype2 = 0 +24266914 locktype3 = 1 +24266914 goalCount = 0 +24266915 goalTotal = 0 +24266915 otherCount = 4 +~~~ +24266933 UP 10 +24266933 waslock = 0 +24266933 512 1024 +~~~ +24266988 DOWN 10 +24266988 0 1024 +~~~ +~~~ +~~~ +~~~ +24267015 homeCount = 7 +24267016 waitCount = 2 +24267016 ripCount = 2 +24267017 locktype1 = 1 +24267017 locktype2 = 0 +24267018 locktype3 = 1 +24267018 goalCount = 0 +24267019 goalTotal = 0 +24267019 otherCount = 4 +~~~ +24271770 UP 11 +24271770 1024 1024 +24273771 BEEP1 +24273771 BEEP2 +~~~ +~~~ +~~~ +24273793 1024 33555456 +~~~ +24273943 1024 1024 +24277448 DOWN 11 +24277448 0 1024 +~~~ +~~~ +24277475 0 0 +~~~ +~~~ +24277476 0 1 +~~~ +~~~ +24277478 0 3 +~~~ +~~~ +24277480 0 7 +~~~ +~~~ +24277482 0 15 +~~~ +~~~ +24277484 0 31 +~~~ +24277485 UP 11 +24277485 1024 31 +~~~ +~~~ +24277487 1024 63 +~~~ +~~~ +24277489 1024 127 +~~~ +24277490 1024 255 +24277491 homeCount = 7 +24277491 waitCount = 2 +24277512 ripCount = 3 +24277513 locktype1 = 1 +24277513 locktype2 = 0 +24277514 locktype3 = 1 +24277514 goalCount = 0 +24277515 goalTotal = 0 +24277515 otherCount = 4 +~~~ +24277517 CURRENTGOAL IS [2] +~~~ +24277552 DOWN 11 +24277552 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24277592 homeCount = 7 +24277593 waitCount = 2 +24277593 ripCount = 3 +24277594 locktype1 = 1 +24277594 locktype2 = 0 +24277595 locktype3 = 1 +24277596 goalCount = 0 +24277596 goalTotal = 0 +24277597 otherCount = 4 +~~~ +24277598 CURRENTGOAL IS [2] +~~~ +24281549 UP 8 +24281549 128 255 +~~~ +~~~ +24281853 DOWN 8 +24281853 0 255 +~~~ +~~~ +24281878 0 254 +~~~ +~~~ +24281880 0 252 +~~~ +~~~ +24281882 0 248 +~~~ +~~~ +24281883 0 240 +~~~ +~~~ +24281885 0 224 +~~~ +~~~ +24281887 0 192 +~~~ +~~~ +24281889 0 128 +~~~ +~~~ +24281891 0 0 +~~~ +~~~ +24281893 0 512 +24281893 homeCount = 7 +24281894 waitCount = 2 +24281895 ripCount = 3 +24281895 locktype1 = 1 +24281895 locktype2 = 0 +24281916 locktype3 = 1 +24281917 goalCount = 0 +24281917 goalTotal = 0 +24281918 otherCount = 5 +~~~ +24281918 128 512 +24282421 DOWN 8 +24282421 0 512 +24286521 UP 10 +24286521 waslock = 0 +24286521 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24286555 512 16777728 +~~~ +24286705 512 512 +24286795 DOWN 10 +24286795 0 512 +~~~ +~~~ +24286820 0 2560 +~~~ +~~~ +24286822 0 2048 +24286823 homeCount = 8 +24286823 waitCount = 2 +24286824 ripCount = 3 +24286824 locktype1 = 1 +24286825 locktype2 = 0 +24286825 locktype3 = 1 +24286826 goalCount = 0 +24286826 goalTotal = 0 +24286827 otherCount = 5 +~~~ +24286920 UP 10 +24286920 waslock = 0 +24286920 512 2048 +~~~ +24287572 DOWN 10 +24287572 0 2048 +24287592 UP 10 +24287592 waslock = 0 +24287592 512 2048 +~~~ +~~~ +~~~ +~~~ +24287596 homeCount = 8 +24287597 waitCount = 2 +24287597 ripCount = 3 +24287598 locktype1 = 1 +24287598 locktype2 = 0 +24287599 locktype3 = 1 +24287599 goalCount = 0 +24287600 goalTotal = 0 +24287600 otherCount = 5 +~~~ +~~~ +24291624 DOWN 10 +24291624 0 2048 +~~~ +~~~ +~~~ +~~~ +24291653 homeCount = 8 +24291653 waitCount = 2 +24291654 ripCount = 3 +24291654 locktype1 = 1 +24291655 locktype2 = 0 +24291655 locktype3 = 1 +24291656 goalCount = 0 +24291656 goalTotal = 0 +24291657 otherCount = 5 +~~~ +24291697 UP 10 +24291698 waslock = 0 +24291697 512 2048 +24291715 DOWN 10 +24291715 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +24291743 homeCount = 8 +24291743 waitCount = 2 +24291744 ripCount = 3 +24291744 locktype1 = 1 +24291745 locktype2 = 0 +24291745 locktype3 = 1 +24291746 goalCount = 0 +24291746 goalTotal = 0 +24291746 otherCount = 5 +~~~ +24293130 UP 12 +24293130 2048 2048 +24293155 DOWN 12 +24293155 0 2048 +24293209 UP 12 +24293209 2048 2048 +24294378 DOWN 12 +24294378 0 2048 +24294428 UP 12 +24294428 2048 2048 +24295131 CLICK1 +24295131 CLICK2 +~~~ +~~~ +~~~ +24295153 2048 67110912 +~~~ +24295303 2048 2048 +24300097 DOWN 12 +24300097 0 2048 +~~~ +~~~ +24300119 0 0 +~~~ +~~~ +24300121 0 1 +~~~ +~~~ +24300123 0 3 +~~~ +~~~ +24300125 0 7 +~~~ +~~~ +24300127 0 15 +~~~ +~~~ +24300129 0 31 +~~~ +~~~ +24300130 0 63 +~~~ +~~~ +24300132 0 127 +~~~ +~~~ +24300134 0 255 +24300135 homeCount = 8 +24300136 waitCount = 3 +24300136 ripCount = 3 +24300137 locktype1 = 1 +24300137 locktype2 = 0 +24300158 locktype3 = 1 +24300158 goalCount = 0 +24300159 goalTotal = 0 +24300159 otherCount = 5 +~~~ +24300160 CURRENTGOAL IS [2] +~~~ +24303861 UP 3 +24303861 4 255 +~~~ +~~~ +24304128 DOWN 3 +24304128 0 255 +~~~ +~~~ +24304149 0 254 +~~~ +~~~ +24304151 0 252 +~~~ +~~~ +24304153 0 248 +~~~ +~~~ +24304155 0 240 +~~~ +~~~ +24304157 0 224 +~~~ +~~~ +24304158 0 192 +~~~ +~~~ +24304160 0 128 +~~~ +~~~ +24304162 0 0 +~~~ +~~~ +24304164 0 512 +24304165 homeCount = 8 +24304165 waitCount = 3 +24304166 ripCount = 3 +24304166 locktype1 = 1 +24304188 locktype2 = 0 +24304188 locktype3 = 1 +24304189 goalCount = 0 +24304189 goalTotal = 0 +24304190 otherCount = 6 +~~~ +24305317 4 512 +24305742 DOWN 3 +24305742 0 512 +24309794 UP 10 +24309795 waslock = 0 +24309794 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24309826 512 16777728 +~~~ +24309976 512 512 +24310016 DOWN 10 +24310016 0 512 +~~~ +~~~ +24310043 0 1536 +~~~ +~~~ +24310045 0 1024 +24310046 homeCount = 9 +24310047 waitCount = 3 +24310047 ripCount = 3 +24310048 locktype1 = 1 +24310048 locktype2 = 0 +24310049 locktype3 = 1 +24310049 goalCount = 0 +24310050 goalTotal = 0 +24310050 otherCount = 6 +~~~ +24310071 UP 10 +24310072 waslock = 0 +24310071 512 1024 +~~~ +24316271 DOWN 10 +24316271 0 1024 +~~~ +~~~ +~~~ +~~~ +24316293 homeCount = 9 +24316294 waitCount = 3 +24316294 ripCount = 3 +24316295 locktype1 = 1 +24316295 locktype2 = 0 +24316296 locktype3 = 1 +24316296 goalCount = 0 +24316297 goalTotal = 0 +24316297 otherCount = 6 +~~~ +24316327 UP 10 +24316327 waslock = 0 +24316327 512 1024 +~~~ +24316347 DOWN 10 +24316347 0 1024 +~~~ +~~~ +~~~ +~~~ +24316382 homeCount = 9 +24316383 waitCount = 3 +24316383 ripCount = 3 +24316384 locktype1 = 1 +24316384 locktype2 = 0 +24316385 locktype3 = 1 +24316385 goalCount = 0 +24316386 goalTotal = 0 +24316386 otherCount = 6 +~~~ +24317934 UP 11 +24317934 1024 1024 +24319937 DOWN 11 +24319937 0 1024 +24319996 UP 11 +24319996 1024 1024 +24321434 BEEP1 +24321434 BEEP2 +~~~ +~~~ +~~~ +24321456 1024 33555456 +~~~ +24321606 1024 1024 +24325737 DOWN 11 +24325737 0 1024 +~~~ +~~~ +24325761 0 0 +~~~ +~~~ +24325762 0 1 +~~~ +~~~ +24325764 0 3 +~~~ +~~~ +24325766 0 7 +~~~ +24325767 UP 11 +24325767 1024 7 +~~~ +~~~ +24325769 1024 15 +~~~ +~~~ +24325771 1024 31 +~~~ +~~~ +24325773 1024 63 +~~~ +24325774 1024 127 +~~~ +~~~ +24325775 1024 255 +24325776 homeCount = 9 +24325777 waitCount = 3 +24325798 ripCount = 4 +24325799 locktype1 = 1 +24325799 locktype2 = 0 +24325800 locktype3 = 1 +24325800 goalCount = 0 +24325801 goalTotal = 0 +24325801 otherCount = 6 +~~~ +24325802 CURRENTGOAL IS [2] +~~~ +24325834 DOWN 11 +24325834 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24325867 homeCount = 9 +24325867 waitCount = 3 +24325868 ripCount = 4 +24325868 locktype1 = 1 +24325869 locktype2 = 0 +24325870 locktype3 = 1 +24325870 goalCount = 0 +24325871 goalTotal = 0 +24325871 otherCount = 6 +~~~ +24325872 CURRENTGOAL IS [2] +~~~ +24328994 UP 7 +24328994 64 255 +~~~ +~~~ +24329409 DOWN 7 +24329409 0 255 +~~~ +~~~ +24329431 0 254 +~~~ +~~~ +24329433 0 252 +~~~ +~~~ +24329434 0 248 +~~~ +~~~ +24329436 0 240 +~~~ +~~~ +24329438 0 224 +~~~ +~~~ +24329440 0 192 +~~~ +~~~ +24329442 0 128 +~~~ +~~~ +24329444 0 0 +~~~ +~~~ +24329445 0 512 +24329446 homeCount = 9 +24329447 waitCount = 3 +24329447 ripCount = 4 +24329448 locktype1 = 1 +24329448 locktype2 = 0 +24329470 locktype3 = 1 +24329470 goalCount = 0 +24329471 goalTotal = 0 +24329471 otherCount = 7 +~~~ +24329556 64 512 +24330105 DOWN 7 +24330105 0 512 +24330111 64 512 +24330227 DOWN 7 +24330227 0 512 +24330263 64 512 +24330369 DOWN 7 +24330369 0 512 +24334809 UP 10 +24334810 waslock = 0 +24334809 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24334837 512 16777728 +~~~ +24334987 512 512 +24335207 DOWN 10 +24335207 0 512 +~~~ +~~~ +24335235 0 2560 +~~~ +~~~ +24335237 0 2048 +24335238 homeCount = 10 +24335238 waitCount = 3 +24335239 ripCount = 4 +24335239 locktype1 = 1 +24335240 locktype2 = 0 +24335240 locktype3 = 1 +24335241 goalCount = 0 +24335241 goalTotal = 0 +24335242 otherCount = 7 +~~~ +24335265 UP 10 +24335265 waslock = 0 +24335265 512 2048 +~~~ +24338650 DOWN 10 +24338650 0 2048 +~~~ +~~~ +~~~ +~~~ +24338675 homeCount = 10 +24338675 waitCount = 3 +24338676 ripCount = 4 +24338676 locktype1 = 1 +24338677 locktype2 = 0 +24338677 locktype3 = 1 +24338678 goalCount = 0 +24338678 goalTotal = 0 +24338679 otherCount = 7 +~~~ +24340261 UP 12 +24340261 2048 2048 +24342412 DOWN 12 +24342411 0 2048 +24342434 UP 12 +24342434 2048 2048 +24343011 CLICK1 +24343011 CLICK2 +~~~ +~~~ +~~~ +24343038 2048 67110912 +~~~ +24343188 2048 2048 +24349505 DOWN 12 +24349505 0 2048 +~~~ +~~~ +24349532 0 0 +~~~ +~~~ +24349534 0 1 +~~~ +~~~ +24349536 0 3 +~~~ +~~~ +24349538 0 7 +~~~ +~~~ +24349540 0 15 +~~~ +~~~ +24349541 0 31 +~~~ +~~~ +24349543 0 63 +~~~ +~~~ +24349545 0 127 +~~~ +~~~ +24349547 0 255 +24349548 homeCount = 10 +24349548 waitCount = 4 +24349549 ripCount = 4 +24349549 locktype1 = 1 +24349550 locktype2 = 0 +24349571 locktype3 = 1 +24349571 goalCount = 0 +24349572 goalTotal = 0 +24349572 otherCount = 7 +~~~ +24349573 CURRENTGOAL IS [2] +~~~ +24349574 UP 12 +24349574 2048 255 +24349612 DOWN 12 +24349612 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24349653 homeCount = 10 +24349653 waitCount = 4 +24349654 ripCount = 4 +24349654 locktype1 = 1 +24349655 locktype2 = 0 +24349655 locktype3 = 1 +24349656 goalCount = 0 +24349656 goalTotal = 0 +24349657 otherCount = 7 +~~~ +24349658 CURRENTGOAL IS [2] +~~~ +24357745 UP 4 +24357745 8 255 +~~~ +~~~ +24358074 DOWN 4 +24358074 0 255 +~~~ +~~~ +24358096 0 254 +~~~ +~~~ +24358098 0 252 +~~~ +24358099 8 252 +~~~ +~~~ +24358101 8 248 +~~~ +24358102 8 240 +~~~ +~~~ +24358104 8 224 +~~~ +~~~ +24358105 8 192 +~~~ +~~~ +24358107 8 128 +~~~ +~~~ +24358109 8 0 +~~~ +~~~ +24358111 8 512 +24358112 homeCount = 10 +24358112 waitCount = 4 +24358113 ripCount = 4 +24358134 locktype1 = 1 +24358135 locktype2 = 0 +24358135 locktype3 = 1 +24358136 goalCount = 0 +24358136 goalTotal = 0 +24358137 otherCount = 8 +~~~ +24361306 DOWN 4 +24361306 0 512 +24361341 8 512 +24361402 DOWN 4 +24361402 0 512 +24368998 UP 10 +24368998 waslock = 0 +24368998 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24369024 512 16777728 +~~~ +24369174 512 512 +24369202 DOWN 10 +24369202 0 512 +~~~ +~~~ +24369219 0 2560 +~~~ +~~~ +24369221 0 2048 +24369222 homeCount = 11 +24369222 waitCount = 4 +24369223 ripCount = 4 +24369223 locktype1 = 1 +24369224 locktype2 = 0 +24369224 locktype3 = 1 +24369225 goalCount = 0 +24369225 goalTotal = 0 +24369226 otherCount = 8 +~~~ +24369297 UP 10 +24369297 waslock = 0 +24369297 512 2048 +~~~ +24369593 DOWN 10 +24369593 0 2048 +24369603 UP 10 +24369604 waslock = 0 +24369603 512 2048 +~~~ +~~~ +~~~ +~~~ +24369622 homeCount = 11 +24369622 waitCount = 4 +24369623 ripCount = 4 +24369623 locktype1 = 1 +24369624 locktype2 = 0 +24369624 locktype3 = 1 +24369625 goalCount = 0 +24369625 goalTotal = 0 +24369626 otherCount = 8 +~~~ +~~~ +24373779 DOWN 10 +24373779 0 2048 +24373792 UP 10 +24373793 waslock = 0 +24373792 512 2048 +~~~ +~~~ +~~~ +~~~ +24373815 homeCount = 11 +24373816 waitCount = 4 +24373816 ripCount = 4 +24373817 locktype1 = 1 +24373817 locktype2 = 0 +24373818 locktype3 = 1 +24373818 goalCount = 0 +24373819 goalTotal = 0 +24373819 otherCount = 8 +~~~ +~~~ +24373870 DOWN 10 +24373870 0 2048 +~~~ +~~~ +~~~ +~~~ +24373899 homeCount = 11 +24373899 waitCount = 4 +24373900 ripCount = 4 +24373900 locktype1 = 1 +24373901 locktype2 = 0 +24373901 locktype3 = 1 +24373902 goalCount = 0 +24373902 goalTotal = 0 +24373903 otherCount = 8 +~~~ +24375836 UP 12 +24375835 2048 2048 +24378836 CLICK1 +24378836 CLICK2 +~~~ +~~~ +~~~ +24378857 2048 67110912 +~~~ +24379007 2048 2048 +24384231 DOWN 12 +24384231 0 2048 +~~~ +~~~ +24384256 0 0 +~~~ +~~~ +24384258 0 1 +~~~ +~~~ +24384260 0 3 +~~~ +~~~ +24384262 0 7 +~~~ +~~~ +24384263 0 15 +~~~ +~~~ +24384265 0 31 +~~~ +~~~ +24384267 0 63 +~~~ +~~~ +24384269 0 127 +~~~ +~~~ +24384271 0 255 +24384272 homeCount = 11 +24384272 waitCount = 5 +24384273 ripCount = 4 +24384273 locktype1 = 1 +24384274 locktype2 = 0 +24384295 locktype3 = 1 +24384296 goalCount = 0 +24384296 goalTotal = 0 +24384297 otherCount = 8 +~~~ +24384298 CURRENTGOAL IS [2] +~~~ +24384298 UP 12 +24384298 2048 255 +24384325 DOWN 12 +24384325 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24384360 homeCount = 11 +24384361 waitCount = 5 +24384361 ripCount = 4 +24384362 locktype1 = 1 +24384362 locktype2 = 0 +24384363 locktype3 = 1 +24384363 goalCount = 0 +24384364 goalTotal = 0 +24384364 otherCount = 8 +~~~ +24384365 CURRENTGOAL IS [2] +~~~ +24389237 UP 6 +24389236 32 255 +~~~ +~~~ +24389519 DOWN 6 +24389519 0 255 +24389542 32 255 +~~~ +~~~ +24389544 32 254 +~~~ +~~~ +24389546 32 252 +~~~ +~~~ +24389548 32 248 +~~~ +~~~ +24389549 32 240 +~~~ +~~~ +24389551 32 224 +~~~ +~~~ +24389553 32 192 +~~~ +~~~ +24389555 32 128 +~~~ +~~~ +24389557 32 0 +~~~ +~~~ +24389559 32 512 +24389560 homeCount = 11 +24389560 waitCount = 5 +24389561 ripCount = 4 +24389582 locktype1 = 1 +24389582 locktype2 = 0 +24389583 locktype3 = 1 +24389583 goalCount = 0 +24389584 goalTotal = 0 +24389584 otherCount = 9 +~~~ +24392219 DOWN 6 +24392219 0 512 +24392230 32 512 +24393458 DOWN 6 +24393458 0 512 +24393466 32 512 +24393642 DOWN 6 +24393642 0 512 +24393651 32 512 +24393817 DOWN 6 +24393817 0 512 +24393821 32 512 +24393825 DOWN 6 +24393825 0 512 +24393836 32 512 +24394208 DOWN 6 +24394207 0 512 +24394217 32 512 +24394415 DOWN 6 +24394415 0 512 +24394427 32 512 +24394798 DOWN 6 +24394798 0 512 +24394811 32 512 +24394998 DOWN 6 +24394998 0 512 +24395017 32 512 +24395073 DOWN 6 +24395073 0 512 +24395092 32 512 +24395192 DOWN 6 +24395192 0 512 +24395196 32 512 +24395200 DOWN 6 +24395200 0 512 +24395237 32 512 +24395252 DOWN 6 +24395252 0 512 +24395263 32 512 +24395284 DOWN 6 +24395284 0 512 +24395295 32 512 +24395361 DOWN 6 +24395361 0 512 +24395449 32 512 +24395489 DOWN 6 +24395489 0 512 +24402448 UP 10 +24402449 waslock = 0 +24402448 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24402483 512 16777728 +~~~ +24402602 DOWN 10 +24402602 0 16777728 +~~~ +~~~ +24402626 0 16778752 +~~~ +~~~ +24402628 0 16778240 +24402629 homeCount = 12 +24402630 waitCount = 5 +24402630 ripCount = 4 +24402631 locktype1 = 1 +24402631 locktype2 = 0 +24402632 locktype3 = 1 +24402632 goalCount = 0 +24402633 goalTotal = 0 +24402633 otherCount = 9 +~~~ +24402654 0 1024 +24402740 UP 10 +24402740 waslock = 0 +24402740 512 1024 +~~~ +24408234 DOWN 10 +24408234 0 1024 +~~~ +~~~ +~~~ +~~~ +24408258 homeCount = 12 +24408259 waitCount = 5 +24408259 ripCount = 4 +24408260 locktype1 = 1 +24408260 locktype2 = 0 +24408261 locktype3 = 1 +24408261 goalCount = 0 +24408262 goalTotal = 0 +24408262 otherCount = 9 +~~~ +24408263 UP 10 +24408263 waslock = 0 +24408263 512 1024 +~~~ +24408328 DOWN 10 +24408328 0 1024 +~~~ +~~~ +~~~ +~~~ +24408348 homeCount = 12 +24408349 waitCount = 5 +24408349 ripCount = 4 +24408350 locktype1 = 1 +24408350 locktype2 = 0 +24408351 locktype3 = 1 +24408351 goalCount = 0 +24408352 goalTotal = 0 +24408352 otherCount = 9 +~~~ +24410668 UP 11 +24410668 1024 1024 +24411491 DOWN 11 +24411491 0 1024 +24411562 UP 11 +24411562 1024 1024 +24412763 DOWN 11 +24412763 0 1024 +24412794 UP 11 +24412794 1024 1024 +24415418 BEEP1 +24415418 BEEP2 +~~~ +~~~ +~~~ +24415438 1024 33555456 +~~~ +24415588 1024 1024 +24420194 DOWN 11 +24420194 0 1024 +~~~ +~~~ +24420218 0 0 +~~~ +~~~ +24420220 0 1 +~~~ +~~~ +24420222 0 3 +~~~ +~~~ +24420223 0 7 +~~~ +~~~ +24420225 0 15 +~~~ +24420227 UP 11 +24420227 1024 15 +~~~ +~~~ +24420229 1024 31 +~~~ +~~~ +24420230 1024 63 +~~~ +~~~ +24420232 1024 127 +~~~ +24420233 1024 255 +24420234 homeCount = 12 +24420235 waitCount = 5 +24420256 ripCount = 5 +24420256 locktype1 = 1 +24420257 locktype2 = 0 +24420257 locktype3 = 1 +24420258 goalCount = 0 +24420258 goalTotal = 0 +24420259 otherCount = 9 +~~~ +24420260 CURRENTGOAL IS [2] +~~~ +24420296 DOWN 11 +24420296 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24420332 homeCount = 12 +24420332 waitCount = 5 +24420333 ripCount = 5 +24420333 locktype1 = 1 +24420334 locktype2 = 0 +24420334 locktype3 = 1 +24420335 goalCount = 0 +24420335 goalTotal = 0 +24420336 otherCount = 9 +~~~ +24420337 CURRENTGOAL IS [2] +~~~ +24426866 UP 5 +24426866 16 255 +~~~ +~~~ +24426890 DOWN 5 +24426890 0 255 +~~~ +~~~ +24426907 0 254 +~~~ +~~~ +24426909 0 252 +~~~ +~~~ +24426911 0 248 +~~~ +~~~ +24426913 0 240 +~~~ +~~~ +24426915 0 224 +~~~ +~~~ +24426917 0 192 +~~~ +~~~ +24426918 0 128 +~~~ +~~~ +24426920 0 0 +~~~ +~~~ +24426922 0 512 +24426923 homeCount = 12 +24426924 waitCount = 5 +24426924 ripCount = 5 +24426925 locktype1 = 1 +24426925 locktype2 = 0 +24426946 locktype3 = 1 +24426946 goalCount = 0 +24426947 goalTotal = 0 +24426947 otherCount = 10 +~~~ +24426979 16 512 +24427073 DOWN 5 +24427072 0 512 +24427218 16 512 +24429575 DOWN 5 +24429575 0 512 +24434372 UP 10 +24434372 waslock = 0 +24434372 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24434403 512 16777728 +~~~ +24434419 DOWN 10 +24434419 0 16777728 +~~~ +~~~ +24434438 0 16778752 +~~~ +~~~ +24434440 0 16778240 +24434441 homeCount = 13 +24434441 waitCount = 5 +24434442 ripCount = 5 +24434442 locktype1 = 1 +24434443 locktype2 = 0 +24434443 locktype3 = 1 +24434444 goalCount = 0 +24434444 goalTotal = 0 +24434445 otherCount = 10 +~~~ +24434477 UP 10 +24434477 waslock = 0 +24434477 512 16778240 +~~~ +24434553 512 1024 +24434651 DOWN 10 +24434651 0 1024 +~~~ +~~~ +~~~ +~~~ +24434677 homeCount = 13 +24434677 waitCount = 5 +24434678 ripCount = 5 +24434678 locktype1 = 1 +24434679 locktype2 = 0 +24434679 locktype3 = 1 +24434680 goalCount = 0 +24434680 goalTotal = 0 +24434681 otherCount = 10 +~~~ +24434692 UP 10 +24434692 waslock = 0 +24434692 512 1024 +~~~ +24438070 DOWN 10 +24438070 0 1024 +~~~ +~~~ +~~~ +~~~ +24438094 homeCount = 13 +24438095 waitCount = 5 +24438096 ripCount = 5 +24438096 locktype1 = 1 +24438096 locktype2 = 0 +24438097 locktype3 = 1 +24438097 goalCount = 0 +24438098 goalTotal = 0 +24438098 otherCount = 10 +~~~ +24438103 UP 10 +24438103 waslock = 0 +24438103 512 1024 +~~~ +24438161 DOWN 10 +24438161 0 1024 +~~~ +~~~ +~~~ +~~~ +24438185 homeCount = 13 +24438186 waitCount = 5 +24438186 ripCount = 5 +24438187 locktype1 = 1 +24438187 locktype2 = 0 +24438188 locktype3 = 1 +24438188 goalCount = 0 +24438189 goalTotal = 0 +24438189 otherCount = 10 +~~~ +24440662 UP 11 +24440662 1024 1024 +24442855 DOWN 11 +24442855 0 1024 +24442904 UP 11 +24442904 1024 1024 +24443662 BEEP1 +24443662 BEEP2 +~~~ +~~~ +~~~ +24443685 1024 33555456 +~~~ +24443834 1024 1024 +24451080 DOWN 11 +24451079 0 1024 +~~~ +~~~ +24451102 0 0 +~~~ +~~~ +24451104 0 1 +~~~ +~~~ +24451106 0 3 +~~~ +~~~ +24451108 0 7 +~~~ +~~~ +24451109 0 15 +~~~ +~~~ +24451111 0 31 +~~~ +~~~ +24451113 0 63 +~~~ +~~~ +24451115 0 127 +~~~ +~~~ +24451117 0 255 +24451118 homeCount = 13 +24451118 waitCount = 5 +24451119 ripCount = 6 +24451119 locktype1 = 1 +24451120 locktype2 = 0 +24451141 locktype3 = 1 +24451141 goalCount = 0 +24451142 goalTotal = 0 +24451142 otherCount = 10 +~~~ +24451143 CURRENTGOAL IS [2] +~~~ +24460605 UP 3 +24460605 4 255 +~~~ +~~~ +24461083 DOWN 3 +24461083 0 255 +~~~ +~~~ +24461101 0 254 +~~~ +~~~ +24461102 0 252 +~~~ +~~~ +24461104 0 248 +~~~ +~~~ +24461106 0 240 +~~~ +~~~ +24461108 0 224 +~~~ +~~~ +24461110 0 192 +~~~ +~~~ +24461112 0 128 +~~~ +~~~ +24461113 0 0 +~~~ +~~~ +24461115 0 512 +24461116 homeCount = 13 +24461117 waitCount = 5 +24461117 ripCount = 6 +24461118 locktype1 = 1 +24461118 locktype2 = 0 +24461139 locktype3 = 1 +24461139 goalCount = 0 +24461140 goalTotal = 0 +24461140 otherCount = 11 +~~~ +24470566 UP 10 +24470566 waslock = 0 +24470566 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24470600 512 16777728 +~~~ +24470618 DOWN 10 +24470618 0 16777728 +~~~ +~~~ +24470642 0 16779776 +~~~ +~~~ +24470644 0 16779264 +24470645 homeCount = 14 +24470646 waitCount = 5 +24470646 ripCount = 6 +24470647 locktype1 = 1 +24470647 locktype2 = 0 +24470648 locktype3 = 1 +24470648 goalCount = 0 +24470649 goalTotal = 0 +24470649 otherCount = 11 +~~~ +24470750 0 2048 +24470776 UP 10 +24470777 waslock = 0 +24470776 512 2048 +~~~ +24471246 DOWN 10 +24471246 0 2048 +~~~ +~~~ +~~~ +~~~ +24471267 homeCount = 14 +24471268 waitCount = 5 +24471268 ripCount = 6 +24471269 locktype1 = 1 +24471269 locktype2 = 0 +24471270 locktype3 = 1 +24471270 goalCount = 0 +24471271 goalTotal = 0 +24471271 otherCount = 11 +~~~ +24471304 UP 10 +24471304 waslock = 0 +24471304 512 2048 +~~~ +24474135 DOWN 10 +24474135 0 2048 +~~~ +~~~ +~~~ +~~~ +24474157 homeCount = 14 +24474158 waitCount = 5 +24474158 ripCount = 6 +24474159 locktype1 = 1 +24474159 locktype2 = 0 +24474160 locktype3 = 1 +24474160 goalCount = 0 +24474161 goalTotal = 0 +24474161 otherCount = 11 +~~~ +24474162 UP 10 +24474162 waslock = 0 +24474162 512 2048 +~~~ +24474229 DOWN 10 +24474229 0 2048 +~~~ +~~~ +~~~ +~~~ +24474257 homeCount = 14 +24474257 waitCount = 5 +24474258 ripCount = 6 +24474258 locktype1 = 1 +24474259 locktype2 = 0 +24474259 locktype3 = 1 +24474260 goalCount = 0 +24474260 goalTotal = 0 +24474261 otherCount = 11 +~~~ +24476866 UP 12 +24476866 2048 2048 +24478171 DOWN 12 +24478171 0 2048 +24478314 UP 12 +24478314 2048 2048 +24478478 DOWN 12 +24478478 0 2048 +24478534 UP 12 +24478534 2048 2048 +24479866 CLICK1 +24479866 CLICK2 +~~~ +~~~ +~~~ +24479885 2048 67110912 +~~~ +24480035 2048 2048 +24480170 DOWN 12 +24480169 0 2048 +24480191 UP 12 +24480191 2048 2048 +~~~ +~~~ +24480194 2048 0 +~~~ +~~~ +24480196 2048 1 +~~~ +~~~ +24480198 2048 3 +~~~ +~~~ +24480200 2048 7 +~~~ +~~~ +24480201 2048 15 +~~~ +~~~ +24480203 2048 31 +~~~ +~~~ +24480205 2048 63 +~~~ +~~~ +24480207 2048 127 +~~~ +~~~ +24480209 2048 255 +24480210 homeCount = 14 +24480210 waitCount = 6 +24480211 ripCount = 6 +24480211 locktype1 = 1 +24480232 locktype2 = 0 +24480233 locktype3 = 1 +24480233 goalCount = 0 +24480234 goalTotal = 0 +24480234 otherCount = 11 +~~~ +24480235 CURRENTGOAL IS [2] +~~~ +24480236 DOWN 12 +24480236 0 255 +24480241 UP 12 +24480241 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24480291 homeCount = 14 +24480292 waitCount = 6 +24480292 ripCount = 6 +24480293 locktype1 = 1 +24480293 locktype2 = 0 +24480294 locktype3 = 1 +24480294 goalCount = 0 +24480295 goalTotal = 0 +24480295 otherCount = 11 +~~~ +24480296 CURRENTGOAL IS [2] +~~~ +24486384 DOWN 12 +24486384 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24486422 homeCount = 14 +24486423 waitCount = 6 +24486423 ripCount = 6 +24486424 locktype1 = 1 +24486424 locktype2 = 0 +24486425 locktype3 = 1 +24486425 goalCount = 0 +24486426 goalTotal = 0 +24486426 otherCount = 11 +~~~ +24486427 CURRENTGOAL IS [2] +~~~ +24486451 UP 12 +24486451 2048 255 +24486485 DOWN 12 +24486485 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24486522 homeCount = 14 +24486523 waitCount = 6 +24486523 ripCount = 6 +24486524 locktype1 = 1 +24486524 locktype2 = 0 +24486525 locktype3 = 1 +24486525 goalCount = 0 +24486526 goalTotal = 0 +24486526 otherCount = 11 +~~~ +24486528 CURRENTGOAL IS [2] +~~~ +24495698 UP 10 +24495698 waslock = 0 +24495698 512 255 +~~~ +24495716 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24495724 512 254 +~~~ +~~~ +24495726 512 252 +~~~ +~~~ +24495728 512 248 +~~~ +~~~ +24495730 512 240 +~~~ +~~~ +24495731 512 224 +~~~ +~~~ +24495733 512 192 +~~~ +~~~ +24495735 512 128 +~~~ +~~~ +24495737 512 0 +~~~ +~~~ +~~~ +24495945 0 0 +24495963 512 0 +24496559 0 0 +24506369 UP 4 +24506369 8 0 +24506413 DOWN 4 +24506413 0 0 +24506422 8 0 +24506707 DOWN 4 +24506707 0 0 +24506736 8 0 +24507337 DOWN 4 +24507337 0 0 +24507431 8 0 +24507448 DOWN 4 +24507448 0 0 +24516898 512 0 +24517038 0 0 +24517058 512 0 +24517301 0 0 +24517347 512 0 +24517934 0 0 +24518002 512 0 +24518042 0 0 +24518118 512 0 +24518339 0 0 +24518366 512 0 +24518604 0 0 +24520716 LOCKEND +~~~ +~~~ +~~~ +24520736 0 512 +24521787 UP 10 +24521788 waslock = 0 +24521787 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24521813 512 16777728 +~~~ +24521815 DOWN 10 +24521815 0 16777728 +~~~ +~~~ +24521838 0 16778752 +~~~ +~~~ +24521840 0 16778240 +24521841 homeCount = 15 +24521842 waitCount = 6 +24521842 ripCount = 6 +24521843 locktype1 = 1 +24521843 locktype2 = 1 +24521844 locktype3 = 1 +24521844 goalCount = 0 +24521845 goalTotal = 0 +24521845 otherCount = 11 +~~~ +24521869 UP 10 +24521869 waslock = 0 +24521869 512 16778240 +~~~ +24521963 512 1024 +24521981 DOWN 10 +24521981 0 1024 +~~~ +24522000 UP 10 +24522000 waslock = 0 +24522000 512 1024 +~~~ +~~~ +~~~ +24522004 homeCount = 15 +24522004 waitCount = 6 +24522005 ripCount = 6 +24522005 locktype1 = 1 +24522006 locktype2 = 1 +24522006 locktype3 = 1 +24522007 goalCount = 0 +24522007 goalTotal = 0 +24522008 otherCount = 11 +~~~ +~~~ +24522130 DOWN 10 +24522130 0 1024 +24522156 UP 10 +24522156 waslock = 0 +24522156 512 1024 +~~~ +~~~ +~~~ +~~~ +24522160 homeCount = 15 +24522161 waitCount = 6 +24522161 ripCount = 6 +24522162 locktype1 = 1 +24522162 locktype2 = 1 +24522163 locktype3 = 1 +24522163 goalCount = 0 +24522164 goalTotal = 0 +24522164 otherCount = 11 +~~~ +~~~ +24522270 DOWN 10 +24522270 0 1024 +24522292 UP 10 +24522292 waslock = 0 +24522292 512 1024 +~~~ +~~~ +~~~ +~~~ +24522296 homeCount = 15 +24522297 waitCount = 6 +24522298 ripCount = 6 +24522298 locktype1 = 1 +24522299 locktype2 = 1 +24522299 locktype3 = 1 +24522300 goalCount = 0 +24522300 goalTotal = 0 +24522301 otherCount = 11 +~~~ +~~~ +24526070 DOWN 10 +24526069 0 1024 +~~~ +~~~ +~~~ +~~~ +24526094 homeCount = 15 +24526094 waitCount = 6 +24526095 ripCount = 6 +24526095 locktype1 = 1 +24526096 locktype2 = 1 +24526096 locktype3 = 1 +24526097 goalCount = 0 +24526097 goalTotal = 0 +24526098 otherCount = 11 +~~~ +24526110 UP 10 +24526110 waslock = 0 +24526110 512 1024 +~~~ +24526164 DOWN 10 +24526164 0 1024 +~~~ +~~~ +~~~ +~~~ +24526194 homeCount = 15 +24526194 waitCount = 6 +24526195 ripCount = 6 +24526195 locktype1 = 1 +24526196 locktype2 = 1 +24526196 locktype3 = 1 +24526197 goalCount = 0 +24526197 goalTotal = 0 +24526198 otherCount = 11 +~~~ +24528059 UP 11 +24528059 1024 1024 +24529285 DOWN 11 +24529285 0 1024 +24529326 UP 11 +24529326 1024 1024 +24530226 DOWN 11 +24530226 0 1024 +24530258 UP 11 +24530258 1024 1024 +24530559 BEEP1 +24530559 BEEP2 +~~~ +~~~ +~~~ +24530584 1024 33555456 +~~~ +24530734 1024 1024 +24535727 DOWN 11 +24535727 0 1024 +~~~ +~~~ +24535750 0 0 +~~~ +~~~ +24535752 0 1 +~~~ +~~~ +24535754 0 3 +~~~ +~~~ +24535756 0 7 +~~~ +~~~ +24535757 0 15 +~~~ +~~~ +24535759 0 31 +~~~ +~~~ +24535761 0 63 +~~~ +~~~ +24535763 0 127 +~~~ +~~~ +24535765 0 255 +24535766 homeCount = 15 +24535766 waitCount = 6 +24535767 ripCount = 7 +24535767 locktype1 = 1 +24535768 locktype2 = 1 +24535789 locktype3 = 1 +24535789 goalCount = 0 +24535790 goalTotal = 0 +24535790 otherCount = 11 +~~~ +24535791 CURRENTGOAL IS [2] +~~~ +24535792 UP 11 +24535792 1024 255 +24535865 DOWN 11 +24535865 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24535907 homeCount = 15 +24535907 waitCount = 6 +24535908 ripCount = 7 +24535909 locktype1 = 1 +24535909 locktype2 = 1 +24535910 locktype3 = 1 +24535910 goalCount = 0 +24535911 goalTotal = 0 +24535911 otherCount = 11 +~~~ +24535912 CURRENTGOAL IS [2] +~~~ +24535936 UP 11 +24535936 1024 255 +24535954 DOWN 11 +24535954 0 255 +24535969 UP 11 +24535969 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24535990 homeCount = 15 +24535990 waitCount = 6 +24535991 ripCount = 7 +24535991 locktype1 = 1 +24535992 locktype2 = 1 +24535992 locktype3 = 1 +24535993 goalCount = 0 +24535993 goalTotal = 0 +24535994 otherCount = 11 +~~~ +24535995 CURRENTGOAL IS [2] +~~~ +24536278 DOWN 11 +24536278 0 255 +24536289 UP 11 +24536289 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24536318 homeCount = 15 +24536318 waitCount = 6 +24536319 ripCount = 7 +24536319 locktype1 = 1 +24536320 locktype2 = 1 +24536320 locktype3 = 1 +24536321 goalCount = 0 +24536321 goalTotal = 0 +24536322 otherCount = 11 +~~~ +24536323 CURRENTGOAL IS [2] +~~~ +24536680 DOWN 11 +24536680 0 255 +24536699 UP 11 +24536699 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24536718 homeCount = 15 +24536718 waitCount = 6 +24536719 ripCount = 7 +24536719 locktype1 = 1 +24536720 locktype2 = 1 +24536720 locktype3 = 1 +24536721 goalCount = 0 +24536721 goalTotal = 0 +24536722 otherCount = 11 +~~~ +24536723 CURRENTGOAL IS [2] +~~~ +24539066 DOWN 11 +24539066 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24539109 homeCount = 15 +24539110 waitCount = 6 +24539110 ripCount = 7 +24539111 locktype1 = 1 +24539111 locktype2 = 1 +24539112 locktype3 = 1 +24539112 goalCount = 0 +24539113 goalTotal = 0 +24539113 otherCount = 11 +~~~ +24539114 CURRENTGOAL IS [2] +~~~ +24545155 UP 8 +24545155 128 255 +~~~ +~~~ +24545193 DOWN 8 +24545193 0 255 +~~~ +~~~ +24545213 0 254 +~~~ +~~~ +24545215 0 252 +~~~ +~~~ +24545217 0 248 +~~~ +~~~ +24545219 0 240 +~~~ +~~~ +24545220 0 224 +~~~ +~~~ +24545222 0 192 +~~~ +~~~ +24545224 0 128 +~~~ +~~~ +24545226 0 0 +~~~ +~~~ +24545228 0 512 +24545229 homeCount = 15 +24545229 waitCount = 6 +24545230 ripCount = 7 +24545230 locktype1 = 1 +24545231 locktype2 = 1 +24545252 locktype3 = 1 +24545252 goalCount = 0 +24545253 goalTotal = 0 +24545253 otherCount = 12 +~~~ +24545254 128 512 +24545775 DOWN 8 +24545775 0 512 +24549428 UP 10 +24549428 waslock = 0 +24549428 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24549451 512 16777728 +~~~ +24549601 512 512 +24549640 DOWN 10 +24549640 0 512 +~~~ +~~~ +24549668 0 2560 +~~~ +~~~ +24549670 0 2048 +24549671 homeCount = 16 +24549672 waitCount = 6 +24549672 ripCount = 7 +24549673 locktype1 = 1 +24549673 locktype2 = 1 +24549674 locktype3 = 1 +24549674 goalCount = 0 +24549675 goalTotal = 0 +24549675 otherCount = 12 +~~~ +24549810 UP 10 +24549810 waslock = 0 +24549810 512 2048 +~~~ +24553189 DOWN 10 +24553189 0 2048 +~~~ +~~~ +~~~ +~~~ +24553217 homeCount = 16 +24553218 waitCount = 6 +24553218 ripCount = 7 +24553219 locktype1 = 1 +24553219 locktype2 = 1 +24553220 locktype3 = 1 +24553220 goalCount = 0 +24553221 goalTotal = 0 +24553221 otherCount = 12 +~~~ +24553222 UP 10 +24553222 waslock = 0 +24553222 512 2048 +~~~ +24553263 DOWN 10 +24553263 0 2048 +~~~ +~~~ +~~~ +~~~ +24553290 homeCount = 16 +24553291 waitCount = 6 +24553291 ripCount = 7 +24553292 locktype1 = 1 +24553292 locktype2 = 1 +24553293 locktype3 = 1 +24553293 goalCount = 0 +24553294 goalTotal = 0 +24553294 otherCount = 12 +~~~ +24561352 UP 12 +24561352 2048 2048 +24562969 DOWN 12 +24562969 0 2048 +24563044 UP 12 +24563044 2048 2048 +24565353 CLICK1 +24565353 CLICK2 +~~~ +~~~ +~~~ +24565378 2048 67110912 +~~~ +24565527 2048 2048 +24569179 DOWN 12 +24569179 0 2048 +~~~ +~~~ +24569206 0 0 +~~~ +~~~ +24569208 0 1 +~~~ +~~~ +24569210 0 3 +~~~ +~~~ +24569212 0 7 +~~~ +~~~ +24569214 0 15 +~~~ +~~~ +24569215 0 31 +~~~ +~~~ +24569217 0 63 +~~~ +~~~ +24569219 0 127 +~~~ +24569220 UP 12 +24569220 2048 127 +~~~ +24569222 homeCount = 16 +24569223 waitCount = 7 +24569223 ripCount = 7 +24569224 locktype1 = 1 +24569245 locktype2 = 1 +24569245 locktype3 = 1 +24569246 goalCount = 0 +24569246 goalTotal = 0 +24569247 otherCount = 12 +~~~ +24569248 CURRENTGOAL IS [2] +~~~ +24569248 DOWN 12 +24569248 0 255 +24569257 UP 12 +24569256 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569303 homeCount = 16 +24569304 waitCount = 7 +24569304 ripCount = 7 +24569305 locktype1 = 1 +24569305 locktype2 = 1 +24569306 locktype3 = 1 +24569306 goalCount = 0 +24569307 goalTotal = 0 +24569307 otherCount = 12 +~~~ +24569308 CURRENTGOAL IS [2] +~~~ +24569329 DOWN 12 +24569329 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569365 homeCount = 16 +24569366 waitCount = 7 +24569366 ripCount = 7 +24569367 locktype1 = 1 +24569367 locktype2 = 1 +24569368 locktype3 = 1 +24569368 goalCount = 0 +24569369 goalTotal = 0 +24569369 otherCount = 12 +~~~ +24569370 CURRENTGOAL IS [2] +~~~ +24569392 UP 12 +24569392 2048 255 +24569399 DOWN 12 +24569399 0 255 +24569404 UP 12 +24569404 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569430 DOWN 12 +24569430 0 255 +~~~ +~~~ +~~~ +24569434 homeCount = 16 +24569434 waitCount = 7 +24569435 ripCount = 7 +24569435 locktype1 = 1 +24569436 locktype2 = 1 +24569436 locktype3 = 1 +24569437 goalCount = 0 +24569437 goalTotal = 0 +24569438 otherCount = 12 +~~~ +24569439 CURRENTGOAL IS [2] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569466 homeCount = 16 +24569467 waitCount = 7 +24569467 ripCount = 7 +24569468 locktype1 = 1 +24569468 locktype2 = 1 +24569469 locktype3 = 1 +24569490 goalCount = 0 +24569491 goalTotal = 0 +24569491 otherCount = 12 +~~~ +24569492 CURRENTGOAL IS [2] +~~~ +24569541 UP 12 +24569541 2048 255 +24569575 DOWN 12 +24569575 0 255 +24569590 UP 12 +24569590 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569628 homeCount = 16 +24569629 waitCount = 7 +24569630 ripCount = 7 +24569630 locktype1 = 1 +24569631 locktype2 = 1 +24569631 locktype3 = 1 +24569632 goalCount = 0 +24569632 goalTotal = 0 +24569633 otherCount = 12 +~~~ +24569634 CURRENTGOAL IS [2] +~~~ +24569745 DOWN 12 +24569745 0 255 +24569762 UP 12 +24569762 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569779 homeCount = 16 +24569780 waitCount = 7 +24569781 ripCount = 7 +24569781 locktype1 = 1 +24569782 locktype2 = 1 +24569782 locktype3 = 1 +24569783 goalCount = 0 +24569783 goalTotal = 0 +24569784 otherCount = 12 +~~~ +24569785 CURRENTGOAL IS [2] +~~~ +24571050 DOWN 12 +24571050 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24571089 homeCount = 16 +24571090 waitCount = 7 +24571091 ripCount = 7 +24571091 locktype1 = 1 +24571092 locktype2 = 1 +24571092 locktype3 = 1 +24571093 goalCount = 0 +24571093 goalTotal = 0 +24571094 otherCount = 12 +~~~ +24571095 CURRENTGOAL IS [2] +~~~ +24581925 UP 5 +24581925 16 255 +~~~ +~~~ +24582431 DOWN 5 +24582431 0 255 +~~~ +~~~ +24582453 0 254 +~~~ +~~~ +24582454 0 252 +~~~ +~~~ +24582456 0 248 +~~~ +~~~ +24582458 0 240 +~~~ +~~~ +24582460 0 224 +~~~ +~~~ +24582462 0 192 +~~~ +~~~ +24582463 0 128 +~~~ +~~~ +24582465 0 0 +~~~ +~~~ +24582467 0 512 +24582468 homeCount = 16 +24582469 waitCount = 7 +24582469 ripCount = 7 +24582470 locktype1 = 1 +24582491 locktype2 = 1 +24582491 locktype3 = 1 +24582492 goalCount = 0 +24582492 goalTotal = 0 +24582493 otherCount = 13 +~~~ +24587390 UP 10 +24587390 waslock = 0 +24587390 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24587414 512 16777728 +~~~ +24587539 DOWN 10 +24587539 0 16777728 +24587564 0 512 +~~~ +~~~ +24587570 0 2560 +~~~ +~~~ +24587572 0 2048 +24587573 homeCount = 17 +24587574 waitCount = 7 +24587574 ripCount = 7 +24587575 locktype1 = 1 +24587575 locktype2 = 1 +24587576 locktype3 = 1 +24587576 goalCount = 0 +24587577 goalTotal = 0 +24587577 otherCount = 13 +~~~ +24587616 UP 10 +24587617 waslock = 0 +24587616 512 2048 +~~~ +24592258 DOWN 10 +24592258 0 2048 +24592272 UP 10 +24592273 waslock = 0 +24592272 512 2048 +~~~ +~~~ +~~~ +~~~ +24592280 homeCount = 17 +24592280 waitCount = 7 +24592281 ripCount = 7 +24592281 locktype1 = 1 +24592282 locktype2 = 1 +24592282 locktype3 = 1 +24592283 goalCount = 0 +24592283 goalTotal = 0 +24592284 otherCount = 13 +~~~ +~~~ +24592358 DOWN 10 +24592358 0 2048 +~~~ +~~~ +~~~ +~~~ +24592383 homeCount = 17 +24592383 waitCount = 7 +24592384 ripCount = 7 +24592384 locktype1 = 1 +24592385 locktype2 = 1 +24592385 locktype3 = 1 +24592386 goalCount = 0 +24592386 goalTotal = 0 +24592387 otherCount = 13 +~~~ +24616551 UP 12 +24616551 2048 2048 +24617583 DOWN 12 +24617583 0 2048 +24617639 UP 12 +24617639 2048 2048 +24617756 DOWN 12 +24617756 0 2048 +24617784 UP 12 +24617784 2048 2048 +24618319 DOWN 12 +24618319 0 2048 +24618357 UP 12 +24618357 2048 2048 +24618387 DOWN 12 +24618386 0 2048 +24618449 UP 12 +24618449 2048 2048 +24620577 DOWN 12 +24620577 0 2048 +24620632 UP 12 +24620632 2048 2048 +24621302 CLICK1 +24621302 CLICK2 +~~~ +~~~ +~~~ +24621333 2048 67110912 +~~~ +24621483 2048 2048 +24625570 DOWN 12 +24625570 0 2048 +~~~ +~~~ +24625587 0 0 +~~~ +~~~ +24625589 0 1 +~~~ +~~~ +24625591 0 3 +~~~ +~~~ +24625593 0 7 +~~~ +~~~ +24625595 0 15 +~~~ +~~~ +24625596 0 31 +~~~ +~~~ +24625598 0 63 +~~~ +~~~ +24625600 0 127 +~~~ +~~~ +24625602 0 255 +24625603 homeCount = 17 +24625603 waitCount = 8 +24625604 ripCount = 7 +24625604 locktype1 = 1 +24625605 locktype2 = 1 +24625626 locktype3 = 1 +24625627 goalCount = 0 +24625627 goalTotal = 0 +24625628 otherCount = 13 +~~~ +24625629 CURRENTGOAL IS [2] +~~~ +24625629 UP 12 +24625629 2048 255 +24625651 DOWN 12 +24625651 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24625689 homeCount = 17 +24625689 waitCount = 8 +24625690 ripCount = 7 +24625690 locktype1 = 1 +24625691 locktype2 = 1 +24625691 locktype3 = 1 +24625692 goalCount = 0 +24625692 goalTotal = 0 +24625693 otherCount = 13 +~~~ +24625694 CURRENTGOAL IS [2] +~~~ +24642952 UP 1 +24642952 1 255 +~~~ +~~~ +24645925 DOWN 1 +24645925 0 255 +~~~ +~~~ +24645946 0 254 +~~~ +~~~ +24645948 0 252 +~~~ +~~~ +24645949 0 248 +~~~ +~~~ +24645951 0 240 +~~~ +~~~ +24645953 0 224 +~~~ +~~~ +24645955 0 192 +~~~ +~~~ +24645957 0 128 +~~~ +~~~ +24645959 0 0 +~~~ +~~~ +24645960 0 512 +24645961 homeCount = 17 +24645962 waitCount = 8 +24645963 ripCount = 7 +24645963 locktype1 = 1 +24645964 locktype2 = 1 +24645984 locktype3 = 1 +24645985 goalCount = 0 +24645985 goalTotal = 0 +24645986 otherCount = 14 +~~~ +24651763 UP 10 +24651763 waslock = 0 +24651763 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24651793 512 16777728 +~~~ +24651860 DOWN 10 +24651860 0 16777728 +~~~ +~~~ +24651887 0 16778752 +~~~ +~~~ +24651889 0 16778240 +24651890 homeCount = 18 +24651890 waitCount = 8 +24651891 ripCount = 7 +24651891 locktype1 = 1 +24651892 locktype2 = 1 +24651892 locktype3 = 1 +24651893 goalCount = 0 +24651893 goalTotal = 0 +24651894 otherCount = 14 +~~~ +24651915 UP 10 +24651915 waslock = 0 +24651915 512 16778240 +~~~ +24651942 512 1024 +24652117 DOWN 10 +24652117 0 1024 +~~~ +~~~ +~~~ +~~~ +24652140 homeCount = 18 +24652141 waitCount = 8 +24652141 ripCount = 7 +24652142 locktype1 = 1 +24652142 locktype2 = 1 +24652143 locktype3 = 1 +24652143 goalCount = 0 +24652144 goalTotal = 0 +24652144 otherCount = 14 +~~~ +24652150 UP 10 +24652150 waslock = 0 +24652150 512 1024 +~~~ +24655008 DOWN 10 +24655008 0 1024 +~~~ +~~~ +~~~ +~~~ +24655031 homeCount = 18 +24655032 waitCount = 8 +24655032 ripCount = 7 +24655033 locktype1 = 1 +24655033 locktype2 = 1 +24655034 locktype3 = 1 +24655034 goalCount = 0 +24655035 goalTotal = 0 +24655035 otherCount = 14 +~~~ +24655066 UP 10 +24655066 waslock = 0 +24655066 512 1024 +~~~ +24655104 DOWN 10 +24655104 0 1024 +~~~ +~~~ +~~~ +~~~ +24655122 homeCount = 18 +24655122 waitCount = 8 +24655123 ripCount = 7 +24655123 locktype1 = 1 +24655124 locktype2 = 1 +24655124 locktype3 = 1 +24655125 goalCount = 0 +24655125 goalTotal = 0 +24655126 otherCount = 14 +~~~ +24657381 UP 11 +24657381 1024 1024 +24658427 DOWN 11 +24658427 0 1024 +24658437 UP 11 +24658437 1024 1024 +24661881 BEEP1 +24661881 BEEP2 +~~~ +~~~ +~~~ +24661900 1024 33555456 +~~~ +24662050 1024 1024 +24667500 DOWN 11 +24667500 0 1024 +~~~ +~~~ +24667519 0 0 +~~~ +~~~ +24667520 0 1 +~~~ +~~~ +24667522 0 3 +~~~ +~~~ +24667524 0 7 +~~~ +~~~ +24667526 0 15 +~~~ +~~~ +24667528 0 31 +~~~ +~~~ +24667529 0 63 +~~~ +~~~ +24667531 0 127 +~~~ +~~~ +24667533 0 255 +24667534 homeCount = 18 +24667535 waitCount = 8 +24667535 ripCount = 8 +24667536 locktype1 = 1 +24667536 locktype2 = 1 +24667557 locktype3 = 1 +24667557 goalCount = 0 +24667558 goalTotal = 0 +24667558 otherCount = 14 +~~~ +24667559 CURRENTGOAL IS [2] +~~~ +24731227 UP 11 +24731227 1024 255 +24732218 DOWN 11 +24732218 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24732257 homeCount = 18 +24732258 waitCount = 8 +24732258 ripCount = 8 +24732259 locktype1 = 1 +24732259 locktype2 = 1 +24732260 locktype3 = 1 +24732260 goalCount = 0 +24732261 goalTotal = 0 +24732261 otherCount = 14 +~~~ +24732262 CURRENTGOAL IS [2] +~~~ +24744749 UP 4 +24744749 8 255 +~~~ +~~~ +24745153 DOWN 4 +24745153 0 255 +~~~ +~~~ +24745173 0 254 +~~~ +~~~ +24745175 0 252 +~~~ +~~~ +24745177 0 248 +~~~ +~~~ +24745178 0 240 +~~~ +~~~ +24745180 0 224 +~~~ +~~~ +24745182 0 192 +~~~ +24745183 8 192 +~~~ +~~~ +24745185 8 128 +~~~ +24745186 8 0 +~~~ +~~~ +24745188 8 512 +24745189 homeCount = 18 +24745189 waitCount = 8 +24745190 ripCount = 8 +24745211 locktype1 = 1 +24745211 locktype2 = 1 +24745212 locktype3 = 1 +24745212 goalCount = 0 +24745213 goalTotal = 0 +24745213 otherCount = 15 +~~~ +24746821 DOWN 4 +24746821 0 512 +24746860 8 512 +24746902 DOWN 4 +24746901 0 512 +24752241 UP 10 +24752241 waslock = 0 +24752241 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24752270 512 16777728 +~~~ +24752379 DOWN 10 +24752379 0 16777728 +~~~ +~~~ +24752404 0 16779776 +~~~ +~~~ +24752406 0 16779264 +24752407 homeCount = 19 +24752407 waitCount = 8 +24752408 ripCount = 8 +24752408 locktype1 = 1 +24752409 locktype2 = 1 +24752409 locktype3 = 1 +24752410 goalCount = 0 +24752410 goalTotal = 0 +24752411 otherCount = 15 +~~~ +24752431 0 2048 +24752545 UP 10 +24752545 waslock = 0 +24752545 512 2048 +~~~ +24753086 DOWN 10 +24753086 0 2048 +24753096 UP 10 +24753096 waslock = 0 +24753096 512 2048 +~~~ +~~~ +~~~ +~~~ +24753119 homeCount = 19 +24753119 waitCount = 8 +24753120 ripCount = 8 +24753120 locktype1 = 1 +24753121 locktype2 = 1 +24753121 locktype3 = 1 +24753122 goalCount = 0 +24753122 goalTotal = 0 +24753123 otherCount = 15 +~~~ +~~~ +24758163 DOWN 10 +24758163 0 2048 +~~~ +~~~ +~~~ +~~~ +24758187 homeCount = 19 +24758187 waitCount = 8 +24758188 ripCount = 8 +24758188 locktype1 = 1 +24758189 locktype2 = 1 +24758189 locktype3 = 1 +24758190 goalCount = 0 +24758190 goalTotal = 0 +24758191 otherCount = 15 +~~~ +24760831 UP 12 +24760831 2048 2048 +24761455 DOWN 12 +24761455 0 2048 +24761656 LOCKOUT 3 +~~~ +24761677 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24761683 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24762044 UP 12 +24762044 2048 0 +24762069 DOWN 12 +24762069 0 0 +24762110 UP 12 +24762110 2048 0 +24762804 DOWN 12 +24762804 0 0 +24786677 LOCKEND +~~~ +~~~ +~~~ +24786697 0 512 +24787613 UP 10 +24787613 waslock = 0 +24787613 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24787645 512 16777728 +~~~ +24787699 DOWN 10 +24787699 0 16777728 +24787723 UP 10 +24787723 waslock = 0 +24787723 512 16777728 +~~~ +~~~ +24787726 512 16779776 +~~~ +~~~ +24787728 512 16779264 +24787729 homeCount = 20 +24787730 waitCount = 8 +24787730 ripCount = 8 +24787731 locktype1 = 1 +24787731 locktype2 = 1 +24787732 locktype3 = 2 +24787732 goalCount = 0 +24787733 goalTotal = 0 +24787754 otherCount = 15 +~~~ +~~~ +24787795 512 2048 +24788471 DOWN 10 +24788471 0 2048 +~~~ +~~~ +~~~ +~~~ +24788500 homeCount = 20 +24788500 waitCount = 8 +24788501 ripCount = 8 +24788501 locktype1 = 1 +24788502 locktype2 = 1 +24788502 locktype3 = 2 +24788503 goalCount = 0 +24788503 goalTotal = 0 +24788504 otherCount = 15 +~~~ +24788523 UP 10 +24788523 waslock = 0 +24788523 512 2048 +~~~ +24793994 DOWN 10 +24793994 0 2048 +~~~ +~~~ +~~~ +~~~ +24794018 homeCount = 20 +24794019 waitCount = 8 +24794019 ripCount = 8 +24794020 locktype1 = 1 +24794020 locktype2 = 1 +24794021 locktype3 = 2 +24794021 goalCount = 0 +24794022 goalTotal = 0 +24794022 otherCount = 15 +~~~ +24833942 UP 12 +24833942 2048 2048 +24834649 DOWN 12 +24834649 0 2048 +24834690 UP 12 +24834690 2048 2048 +24835479 DOWN 12 +24835479 0 2048 +24835513 UP 12 +24835513 2048 2048 +24835759 DOWN 12 +24835759 0 2048 +24835877 UP 12 +24835877 2048 2048 +24835927 DOWN 12 +24835927 0 2048 +24835951 UP 12 +24835951 2048 2048 +24836281 DOWN 12 +24836281 0 2048 +24836323 UP 12 +24836323 2048 2048 +24836439 DOWN 12 +24836439 0 2048 +24836452 UP 12 +24836452 2048 2048 +24836649 DOWN 12 +24836649 0 2048 +24836676 UP 12 +24836676 2048 2048 +24836942 CLICK1 +24836942 CLICK2 +~~~ +~~~ +~~~ +24836972 2048 67110912 +~~~ +24837059 DOWN 12 +24837059 0 67110912 +24837122 0 2048 +24837133 UP 12 +24837133 2048 2048 +~~~ +~~~ +24837144 2048 0 +~~~ +~~~ +24837146 2048 1 +~~~ +~~~ +24837148 2048 3 +~~~ +~~~ +24837150 2048 7 +~~~ +~~~ +24837152 2048 15 +~~~ +~~~ +24837153 2048 31 +~~~ +~~~ +24837155 2048 63 +~~~ +~~~ +24837157 2048 127 +~~~ +~~~ +24837159 2048 255 +24837160 homeCount = 20 +24837160 waitCount = 9 +24837161 ripCount = 8 +24837182 locktype1 = 1 +24837183 locktype2 = 1 +24837183 locktype3 = 2 +24837184 goalCount = 0 +24837184 goalTotal = 0 +24837185 otherCount = 15 +~~~ +24837186 CURRENTGOAL IS [2] +~~~ +24837229 DOWN 12 +24837229 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24837272 homeCount = 20 +24837272 waitCount = 9 +24837273 ripCount = 8 +24837273 locktype1 = 1 +24837274 locktype2 = 1 +24837274 locktype3 = 2 +24837275 goalCount = 0 +24837275 goalTotal = 0 +24837276 otherCount = 15 +~~~ +24837277 CURRENTGOAL IS [2] +~~~ +24837298 UP 12 +24837298 2048 255 +24842976 DOWN 12 +24842976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24843011 homeCount = 20 +24843011 waitCount = 9 +24843012 ripCount = 8 +24843012 locktype1 = 1 +24843013 locktype2 = 1 +24843013 locktype3 = 2 +24843014 goalCount = 0 +24843014 goalTotal = 0 +24843015 otherCount = 15 +~~~ +24843016 CURRENTGOAL IS [2] +~~~ +24848553 UP 4 +24848553 8 255 +~~~ +~~~ +24848589 DOWN 4 +24848589 0 255 +~~~ +~~~ +24848608 0 254 +~~~ +~~~ +24848610 0 252 +~~~ +~~~ +24848612 0 248 +~~~ +~~~ +24848613 0 240 +~~~ +~~~ +24848615 0 224 +~~~ +~~~ +24848617 0 192 +~~~ +~~~ +24848619 0 128 +~~~ +~~~ +24848621 0 0 +~~~ +~~~ +24848623 0 512 +24848624 homeCount = 20 +24848624 waitCount = 9 +24848625 ripCount = 8 +24848625 locktype1 = 1 +24848646 locktype2 = 1 +24848647 locktype3 = 2 +24848647 goalCount = 0 +24848648 goalTotal = 0 +24848648 otherCount = 16 +~~~ +24848649 8 512 +24848856 DOWN 4 +24848856 0 512 +24857480 UP 10 +24857481 waslock = 0 +24857480 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24857509 512 16777728 +~~~ +24857659 512 512 +24858225 DOWN 10 +24858225 0 512 +~~~ +24858250 UP 10 +24858251 waslock = 0 +24858250 512 512 +~~~ +~~~ +~~~ +24858253 512 2048 +24858254 homeCount = 21 +24858255 waitCount = 9 +24858255 ripCount = 8 +24858256 locktype1 = 1 +24858256 locktype2 = 1 +24858257 locktype3 = 2 +24858257 goalCount = 0 +24858278 goalTotal = 0 +24858279 otherCount = 16 +~~~ +~~~ +24862400 DOWN 10 +24862400 0 2048 +24862418 UP 10 +24862419 waslock = 0 +24862418 512 2048 +~~~ +~~~ +~~~ +~~~ +24862426 homeCount = 21 +24862426 waitCount = 9 +24862427 ripCount = 8 +24862427 locktype1 = 1 +24862428 locktype2 = 1 +24862428 locktype3 = 2 +24862429 goalCount = 0 +24862429 goalTotal = 0 +24862430 otherCount = 16 +~~~ +~~~ +24862493 DOWN 10 +24862493 0 2048 +~~~ +~~~ +~~~ +~~~ +24862522 homeCount = 21 +24862523 waitCount = 9 +24862523 ripCount = 8 +24862524 locktype1 = 1 +24862524 locktype2 = 1 +24862525 locktype3 = 2 +24862525 goalCount = 0 +24862526 goalTotal = 0 +24862526 otherCount = 16 +~~~ +24930514 UP 10 +24930515 waslock = 0 +24930514 512 2048 +~~~ +24930785 DOWN 10 +24930785 0 2048 +~~~ +~~~ +~~~ +~~~ +24930806 homeCount = 21 +24930806 waitCount = 9 +24930807 ripCount = 8 +24930807 locktype1 = 1 +24930808 locktype2 = 1 +24930808 locktype3 = 2 +24930809 goalCount = 0 +24930809 goalTotal = 0 +24930810 otherCount = 16 +~~~ +24930873 UP 10 +24930874 waslock = 0 +24930873 512 2048 +~~~ +24931398 DOWN 10 +24931398 0 2048 +~~~ +~~~ +~~~ +~~~ +24931425 homeCount = 21 +24931426 waitCount = 9 +24931426 ripCount = 8 +24931427 locktype1 = 1 +24931427 locktype2 = 1 +24931428 locktype3 = 2 +24931428 goalCount = 0 +24931429 goalTotal = 0 +24931429 otherCount = 16 +~~~ +24931444 UP 10 +24931445 waslock = 0 +24931444 512 2048 +~~~ +24932304 DOWN 10 +24932304 0 2048 +24932319 UP 10 +24932320 waslock = 0 +24932319 512 2048 +~~~ +~~~ +~~~ +~~~ +24932326 homeCount = 21 +24932327 waitCount = 9 +24932327 ripCount = 8 +24932328 locktype1 = 1 +24932328 locktype2 = 1 +24932329 locktype3 = 2 +24932329 goalCount = 0 +24932330 goalTotal = 0 +24932330 otherCount = 16 +~~~ +~~~ +24933504 DOWN 10 +24933504 0 2048 +~~~ +~~~ +~~~ +~~~ +24933528 homeCount = 21 +24933529 waitCount = 9 +24933529 ripCount = 8 +24933530 locktype1 = 1 +24933530 locktype2 = 1 +24933531 locktype3 = 2 +24933531 goalCount = 0 +24933532 goalTotal = 0 +24933532 otherCount = 16 +~~~ +24933557 UP 10 +24933558 waslock = 0 +24933557 512 2048 +~~~ +24933598 DOWN 10 +24933598 0 2048 +~~~ +~~~ +~~~ +~~~ +24933626 homeCount = 21 +24933627 waitCount = 9 +24933627 ripCount = 8 +24933628 locktype1 = 1 +24933628 locktype2 = 1 +24933629 locktype3 = 2 +24933629 goalCount = 0 +24933630 goalTotal = 0 +24933630 otherCount = 16 +~~~ +24937095 UP 12 +24937095 2048 2048 +24939013 DOWN 12 +24939013 0 2048 +24939059 UP 12 +24939059 2048 2048 +24940772 DOWN 12 +24940772 0 2048 +24940815 UP 12 +24940815 2048 2048 +24940959 DOWN 12 +24940959 0 2048 +24940980 UP 12 +24940980 2048 2048 +24941345 CLICK1 +24941345 CLICK2 +~~~ +~~~ +~~~ +24941365 2048 67110912 +~~~ +24941515 2048 2048 +24946106 DOWN 12 +24946105 0 2048 +~~~ +~~~ +24946124 0 0 +~~~ +~~~ +24946126 0 1 +~~~ +~~~ +24946128 0 3 +~~~ +~~~ +24946130 0 7 +~~~ +~~~ +24946132 0 15 +~~~ +~~~ +24946133 0 31 +~~~ +~~~ +24946135 0 63 +~~~ +~~~ +24946137 0 127 +~~~ +~~~ +24946139 0 255 +24946140 homeCount = 21 +24946140 waitCount = 10 +24946141 ripCount = 8 +24946141 locktype1 = 1 +24946142 locktype2 = 1 +24946163 locktype3 = 2 +24946163 goalCount = 0 +24946164 goalTotal = 0 +24946164 otherCount = 16 +~~~ +24946165 CURRENTGOAL IS [2] +~~~ +24946181 UP 12 +24946181 2048 255 +24946208 DOWN 12 +24946208 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24946241 homeCount = 21 +24946241 waitCount = 10 +24946242 ripCount = 8 +24946242 locktype1 = 1 +24946243 locktype2 = 1 +24946243 locktype3 = 2 +24946244 goalCount = 0 +24946244 goalTotal = 0 +24946245 otherCount = 16 +~~~ +24946246 CURRENTGOAL IS [2] +~~~ +24950351 UP 1 +24950351 1 255 +~~~ +~~~ +24951379 DOWN 1 +24951379 0 255 +~~~ +~~~ +24951405 0 254 +~~~ +~~~ +24951406 0 252 +~~~ +~~~ +24951408 0 248 +~~~ +~~~ +24951410 0 240 +~~~ +~~~ +24951412 0 224 +~~~ +~~~ +24951414 0 192 +~~~ +~~~ +24951415 0 128 +~~~ +~~~ +24951417 0 0 +~~~ +~~~ +24951419 0 512 +24951420 homeCount = 21 +24951421 waitCount = 10 +24951421 ripCount = 8 +24951422 locktype1 = 1 +24951422 locktype2 = 1 +24951443 locktype3 = 2 +24951443 goalCount = 0 +24951444 goalTotal = 0 +24951444 otherCount = 17 +~~~ +24955122 UP 10 +24955122 waslock = 0 +24955122 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24955153 512 16777728 +~~~ +24955284 DOWN 10 +24955284 0 16777728 +24955303 0 512 +24955318 UP 10 +24955319 waslock = 0 +24955318 512 512 +~~~ +~~~ +24955321 512 1536 +~~~ +~~~ +24955323 512 1024 +24955324 homeCount = 22 +24955324 waitCount = 10 +24955325 ripCount = 8 +24955325 locktype1 = 1 +24955326 locktype2 = 1 +24955326 locktype3 = 2 +24955327 goalCount = 0 +24955348 goalTotal = 0 +24955348 otherCount = 17 +~~~ +~~~ +24955745 DOWN 10 +24955745 0 1024 +~~~ +~~~ +~~~ +24955771 UP 10 +24955771 waslock = 0 +24955771 512 1024 +~~~ +24955773 homeCount = 22 +24955774 waitCount = 10 +24955774 ripCount = 8 +24955775 locktype1 = 1 +24955775 locktype2 = 1 +24955776 locktype3 = 2 +24955776 goalCount = 0 +24955777 goalTotal = 0 +24955798 otherCount = 17 +~~~ +~~~ +24958679 DOWN 10 +24958679 0 1024 +~~~ +~~~ +~~~ +~~~ +24958701 homeCount = 22 +24958702 waitCount = 10 +24958702 ripCount = 8 +24958703 locktype1 = 1 +24958703 locktype2 = 1 +24958704 locktype3 = 2 +24958704 goalCount = 0 +24958705 goalTotal = 0 +24958705 otherCount = 17 +~~~ +24958730 UP 10 +24958730 waslock = 0 +24958730 512 1024 +24958749 DOWN 10 +24958749 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24958773 homeCount = 22 +24958773 waitCount = 10 +24958774 ripCount = 8 +24958774 locktype1 = 1 +24958775 locktype2 = 1 +24958775 locktype3 = 2 +24958776 goalCount = 0 +24958776 goalTotal = 0 +24958777 otherCount = 17 +~~~ +24960062 UP 11 +24960062 1024 1024 +24961852 DOWN 11 +24961852 0 1024 +24961864 UP 11 +24961864 1024 1024 +24962813 BEEP1 +24962813 BEEP2 +~~~ +~~~ +~~~ +24962837 1024 33555456 +~~~ +24962987 1024 1024 +24963064 DOWN 11 +24963064 0 1024 +24963077 UP 11 +24963077 1024 1024 +~~~ +~~~ +24963504 1024 0 +~~~ +~~~ +24963505 1024 1 +~~~ +~~~ +24963507 1024 3 +~~~ +~~~ +24963509 1024 7 +~~~ +~~~ +24963511 1024 15 +~~~ +~~~ +24963513 1024 31 +~~~ +~~~ +24963514 1024 63 +~~~ +~~~ +24963516 1024 127 +~~~ +~~~ +24963518 1024 255 +24963519 homeCount = 22 +24963520 waitCount = 10 +24963520 ripCount = 9 +24963521 locktype1 = 1 +24963542 locktype2 = 1 +24963542 locktype3 = 2 +24963543 goalCount = 0 +24963543 goalTotal = 0 +24963544 otherCount = 17 +~~~ +24963545 CURRENTGOAL IS [2] +~~~ +24968316 DOWN 11 +24968316 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24968356 homeCount = 22 +24968357 waitCount = 10 +24968357 ripCount = 9 +24968358 locktype1 = 1 +24968358 locktype2 = 1 +24968359 locktype3 = 2 +24968359 goalCount = 0 +24968360 goalTotal = 0 +24968360 otherCount = 17 +~~~ +24968361 CURRENTGOAL IS [2] +~~~ +24968382 UP 11 +24968382 1024 255 +24968404 DOWN 11 +24968404 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24968438 homeCount = 22 +24968439 waitCount = 10 +24968439 ripCount = 9 +24968440 locktype1 = 1 +24968441 locktype2 = 1 +24968441 locktype3 = 2 +24968442 goalCount = 0 +24968442 goalTotal = 0 +24968443 otherCount = 17 +~~~ +24968444 CURRENTGOAL IS [2] +~~~ +24971124 UP 7 +24971124 64 255 +~~~ +~~~ +24971481 DOWN 7 +24971481 0 255 +~~~ +~~~ +24971503 0 254 +~~~ +~~~ +24971505 0 252 +~~~ +~~~ +24971506 0 248 +~~~ +~~~ +24971508 0 240 +~~~ +~~~ +24971510 0 224 +~~~ +~~~ +24971512 0 192 +~~~ +~~~ +24971514 64 128 +~~~ +~~~ +24971515 64 0 +~~~ +~~~ +24971517 64 512 +24971518 homeCount = 22 +24971519 waitCount = 10 +24971519 ripCount = 9 +24971520 locktype1 = 1 +24971541 locktype2 = 1 +24971542 locktype3 = 2 +24971542 goalCount = 0 +24971543 goalTotal = 0 +24971543 otherCount = 18 +~~~ +24972028 DOWN 7 +24972028 0 512 +24972049 64 512 +24972113 DOWN 7 +24972113 0 512 +24978577 UP 10 +24978578 waslock = 0 +24978577 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24978604 512 16777728 +~~~ +24978753 512 512 +24978766 DOWN 10 +24978766 0 512 +~~~ +~~~ +24978786 0 1536 +~~~ +~~~ +24978788 0 1024 +24978789 homeCount = 23 +24978789 waitCount = 10 +24978790 ripCount = 9 +24978790 locktype1 = 1 +24978791 locktype2 = 1 +24978791 locktype3 = 2 +24978792 goalCount = 0 +24978792 goalTotal = 0 +24978793 otherCount = 18 +~~~ +24978850 UP 10 +24978851 waslock = 0 +24978850 512 1024 +~~~ +24978958 DOWN 10 +24978958 0 1024 +24978966 UP 10 +24978966 waslock = 0 +24978966 512 1024 +~~~ +~~~ +~~~ +~~~ +24978988 homeCount = 23 +24978989 waitCount = 10 +24978989 ripCount = 9 +24978990 locktype1 = 1 +24978990 locktype2 = 1 +24978991 locktype3 = 2 +24978991 goalCount = 0 +24978992 goalTotal = 0 +24978992 otherCount = 18 +~~~ +~~~ +24978997 DOWN 10 +24978997 0 1024 +~~~ +~~~ +~~~ +~~~ +24979033 homeCount = 23 +24979034 waitCount = 10 +24979034 ripCount = 9 +24979035 locktype1 = 1 +24979035 locktype2 = 1 +24979036 locktype3 = 2 +24979036 goalCount = 0 +24979037 goalTotal = 0 +24979037 otherCount = 18 +~~~ +24979055 UP 10 +24979055 waslock = 0 +24979055 512 1024 +~~~ +24983166 DOWN 10 +24983166 0 1024 +~~~ +~~~ +~~~ +~~~ +24983190 homeCount = 23 +24983190 waitCount = 10 +24983191 ripCount = 9 +24983191 locktype1 = 1 +24983192 locktype2 = 1 +24983192 locktype3 = 2 +24983193 goalCount = 0 +24983193 goalTotal = 0 +24983194 otherCount = 18 +~~~ +24983202 UP 10 +24983202 waslock = 0 +24983202 512 1024 +~~~ +24983259 DOWN 10 +24983259 0 1024 +~~~ +~~~ +~~~ +~~~ +24983280 homeCount = 23 +24983281 waitCount = 10 +24983281 ripCount = 9 +24983282 locktype1 = 1 +24983282 locktype2 = 1 +24983283 locktype3 = 2 +24983283 goalCount = 0 +24983284 goalTotal = 0 +24983284 otherCount = 18 +~~~ +24992949 UP 10 +24992949 waslock = 0 +24992948 512 1024 +~~~ +24993619 DOWN 10 +24993619 0 1024 +~~~ +~~~ +~~~ +~~~ +24993640 homeCount = 23 +24993641 waitCount = 10 +24993641 ripCount = 9 +24993642 locktype1 = 1 +24993642 locktype2 = 1 +24993643 locktype3 = 2 +24993643 goalCount = 0 +24993644 goalTotal = 0 +24993644 otherCount = 18 +~~~ +24993658 UP 10 +24993658 waslock = 0 +24993658 512 1024 +~~~ +24993819 DOWN 10 +24993819 0 1024 +~~~ +~~~ +~~~ +~~~ +24993845 homeCount = 23 +24993845 waitCount = 10 +24993846 ripCount = 9 +24993846 locktype1 = 1 +24993847 locktype2 = 1 +24993847 locktype3 = 2 +24993848 goalCount = 0 +24993848 goalTotal = 0 +24993849 otherCount = 18 +~~~ +24993855 UP 10 +24993855 waslock = 0 +24993855 512 1024 +~~~ +24994083 DOWN 10 +24994083 0 1024 +~~~ +~~~ +~~~ +~~~ +24994116 homeCount = 23 +24994117 waitCount = 10 +24994117 ripCount = 9 +24994118 locktype1 = 1 +24994118 locktype2 = 1 +24994119 locktype3 = 2 +24994119 goalCount = 0 +24994120 goalTotal = 0 +24994120 otherCount = 18 +~~~ +25014055 UP 10 +25014055 waslock = 0 +25014055 512 1024 +~~~ +25014332 DOWN 10 +25014332 0 1024 +~~~ +~~~ +~~~ +~~~ +25014361 homeCount = 23 +25014361 waitCount = 10 +25014362 ripCount = 9 +25014362 locktype1 = 1 +25014363 locktype2 = 1 +25014363 locktype3 = 2 +25014364 goalCount = 0 +25014364 goalTotal = 0 +25014365 otherCount = 18 +~~~ +25014825 UP 10 +25014825 waslock = 0 +25014825 512 1024 +~~~ +25015812 DOWN 10 +25015812 0 1024 +~~~ +~~~ +~~~ +~~~ +25015841 homeCount = 23 +25015841 waitCount = 10 +25015842 ripCount = 9 +25015842 locktype1 = 1 +25015843 locktype2 = 1 +25015843 locktype3 = 2 +25015844 goalCount = 0 +25015844 goalTotal = 0 +25015845 otherCount = 18 +~~~ +25015866 UP 10 +25015866 waslock = 0 +25015866 512 1024 +~~~ +25015908 DOWN 10 +25015908 0 1024 +~~~ +~~~ +~~~ +~~~ +25015937 homeCount = 23 +25015938 waitCount = 10 +25015938 ripCount = 9 +25015939 locktype1 = 1 +25015940 locktype2 = 1 +25015940 locktype3 = 2 +25015941 goalCount = 0 +25015941 goalTotal = 0 +25015942 otherCount = 18 +~~~ +25026289 UP 11 +25026289 1024 1024 +25027542 DOWN 11 +25027542 0 1024 +25027560 UP 11 +25027560 1024 1024 +25027600 DOWN 11 +25027600 0 1024 +25027621 UP 11 +25027621 1024 1024 +25028239 DOWN 11 +25028239 0 1024 +25028248 UP 11 +25028248 1024 1024 +25028279 DOWN 11 +25028279 0 1024 +25028295 UP 11 +25028295 1024 1024 +25029519 DOWN 11 +25029519 0 1024 +25029539 UP 11 +25029539 1024 1024 +25031039 BEEP1 +25031039 BEEP2 +~~~ +~~~ +~~~ +25031065 1024 33555456 +~~~ +25031215 1024 1024 +25034863 DOWN 11 +25034863 0 1024 +~~~ +~~~ +25034883 0 0 +~~~ +~~~ +25034884 0 1 +~~~ +~~~ +25034886 0 3 +~~~ +~~~ +25034888 0 7 +~~~ +~~~ +25034890 0 15 +~~~ +~~~ +25034892 0 31 +~~~ +~~~ +25034893 0 63 +~~~ +~~~ +25034895 0 127 +~~~ +~~~ +25034897 0 255 +25034898 homeCount = 23 +25034899 waitCount = 10 +25034899 ripCount = 10 +25034900 locktype1 = 1 +25034900 locktype2 = 1 +25034921 locktype3 = 2 +25034922 goalCount = 0 +25034922 goalTotal = 0 +25034923 otherCount = 18 +~~~ +25034924 CURRENTGOAL IS [2] +~~~ +25034924 UP 11 +25034924 1024 255 +25034974 DOWN 11 +25034974 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25035007 homeCount = 23 +25035008 waitCount = 10 +25035008 ripCount = 10 +25035009 locktype1 = 1 +25035010 locktype2 = 1 +25035010 locktype3 = 2 +25035011 goalCount = 0 +25035011 goalTotal = 0 +25035012 otherCount = 18 +~~~ +25035013 CURRENTGOAL IS [2] +~~~ +25037912 UP 8 +25037912 128 255 +~~~ +~~~ +25038494 DOWN 8 +25038494 0 255 +~~~ +~~~ +25038511 0 254 +~~~ +~~~ +25038513 0 252 +~~~ +~~~ +25038514 0 248 +~~~ +~~~ +25038516 0 240 +~~~ +~~~ +25038518 0 224 +~~~ +~~~ +25038520 0 192 +~~~ +~~~ +25038522 0 128 +~~~ +~~~ +25038524 0 0 +~~~ +~~~ +25038525 0 512 +25038526 homeCount = 23 +25038527 waitCount = 10 +25038527 ripCount = 10 +25038528 locktype1 = 1 +25038528 locktype2 = 1 +25038549 locktype3 = 2 +25038550 goalCount = 0 +25038550 goalTotal = 0 +25038551 otherCount = 19 +~~~ +25043144 UP 10 +25043144 waslock = 0 +25043144 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25043167 512 16777728 +~~~ +25043317 512 512 +25043535 DOWN 10 +25043535 0 512 +~~~ +~~~ +25043565 0 2560 +~~~ +~~~ +25043567 0 2048 +25043568 homeCount = 24 +25043568 waitCount = 10 +25043569 ripCount = 10 +25043569 locktype1 = 1 +25043570 locktype2 = 1 +25043570 locktype3 = 2 +25043571 goalCount = 0 +25043571 goalTotal = 0 +25043572 otherCount = 19 +~~~ +25043738 UP 10 +25043738 waslock = 0 +25043738 512 2048 +~~~ +25047500 DOWN 10 +25047500 0 2048 +~~~ +~~~ +25047525 UP 10 +25047526 waslock = 0 +25047525 512 2048 +~~~ +~~~ +25047528 homeCount = 24 +25047528 waitCount = 10 +25047529 ripCount = 10 +25047529 locktype1 = 1 +25047530 locktype2 = 1 +25047530 locktype3 = 2 +25047531 goalCount = 0 +25047531 goalTotal = 0 +25047552 otherCount = 19 +~~~ +~~~ +25047584 DOWN 10 +25047584 0 2048 +~~~ +~~~ +~~~ +~~~ +25047608 homeCount = 24 +25047608 waitCount = 10 +25047609 ripCount = 10 +25047609 locktype1 = 1 +25047610 locktype2 = 1 +25047610 locktype3 = 2 +25047611 goalCount = 0 +25047611 goalTotal = 0 +25047612 otherCount = 19 +~~~ +25052125 UP 12 +25052125 2048 2048 +25054402 DOWN 12 +25054401 0 2048 +25054425 UP 12 +25054425 2048 2048 +25054523 DOWN 12 +25054523 0 2048 +25054564 UP 12 +25054564 2048 2048 +25054625 CLICK1 +25054625 CLICK2 +~~~ +~~~ +~~~ +25054647 2048 67110912 +~~~ +25054797 2048 2048 +25060172 DOWN 12 +25060172 0 2048 +25060192 UP 12 +25060192 2048 2048 +~~~ +~~~ +25060196 2048 0 +~~~ +~~~ +25060198 2048 1 +~~~ +~~~ +25060199 2048 3 +~~~ +~~~ +25060201 2048 7 +~~~ +~~~ +25060203 2048 15 +~~~ +~~~ +25060205 2048 31 +~~~ +~~~ +25060207 2048 63 +~~~ +~~~ +25060209 2048 127 +~~~ +~~~ +25060210 2048 255 +25060211 homeCount = 24 +25060212 waitCount = 11 +25060213 ripCount = 10 +25060213 locktype1 = 1 +25060234 locktype2 = 1 +25060235 locktype3 = 2 +25060235 goalCount = 0 +25060236 goalTotal = 0 +25060236 otherCount = 19 +~~~ +25060237 CURRENTGOAL IS [2] +~~~ +25060249 DOWN 12 +25060249 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25060289 homeCount = 24 +25060289 waitCount = 11 +25060290 ripCount = 10 +25060290 locktype1 = 1 +25060291 locktype2 = 1 +25060291 locktype3 = 2 +25060292 goalCount = 0 +25060292 goalTotal = 0 +25060293 otherCount = 19 +~~~ +25060294 CURRENTGOAL IS [2] +~~~ +25063141 UP 3 +25063141 4 255 +~~~ +~~~ +25063547 DOWN 3 +25063547 0 255 +~~~ +~~~ +25063565 0 254 +~~~ +~~~ +25063567 0 252 +~~~ +~~~ +25063569 0 248 +~~~ +~~~ +25063570 0 240 +~~~ +~~~ +25063572 0 224 +~~~ +~~~ +25063574 0 192 +~~~ +~~~ +25063576 0 128 +~~~ +~~~ +25063578 0 0 +~~~ +~~~ +25063580 0 512 +25063581 homeCount = 24 +25063581 waitCount = 11 +25063582 ripCount = 10 +25063582 locktype1 = 1 +25063603 locktype2 = 1 +25063604 locktype3 = 2 +25063604 goalCount = 0 +25063605 goalTotal = 0 +25063605 otherCount = 20 +~~~ +25067425 UP 10 +25067425 waslock = 0 +25067425 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25067452 512 16777728 +~~~ +25067602 512 512 +25067687 DOWN 10 +25067687 0 512 +~~~ +~~~ +25067706 0 1536 +~~~ +~~~ +25067708 0 1024 +25067709 homeCount = 25 +25067710 waitCount = 11 +25067710 ripCount = 10 +25067711 locktype1 = 1 +25067711 locktype2 = 1 +25067712 locktype3 = 2 +25067712 goalCount = 0 +25067713 goalTotal = 0 +25067713 otherCount = 20 +~~~ +25067735 UP 10 +25067735 waslock = 0 +25067735 512 1024 +~~~ +25071823 DOWN 10 +25071823 0 1024 +~~~ +~~~ +~~~ +~~~ +25071852 homeCount = 25 +25071853 waitCount = 11 +25071853 ripCount = 10 +25071854 locktype1 = 1 +25071854 locktype2 = 1 +25071855 locktype3 = 2 +25071855 goalCount = 0 +25071856 goalTotal = 0 +25071856 otherCount = 20 +~~~ +25073297 UP 11 +25073297 1024 1024 +25075903 DOWN 11 +25075903 0 1024 +25075949 UP 11 +25075949 1024 1024 +25076047 BEEP1 +25076047 BEEP2 +~~~ +~~~ +~~~ +25076076 1024 33555456 +~~~ +25076226 1024 1024 +25080864 DOWN 11 +25080864 0 1024 +25080887 UP 11 +25080887 1024 1024 +~~~ +~~~ +25080891 1024 0 +~~~ +~~~ +25080892 1024 1 +~~~ +~~~ +25080894 1024 3 +~~~ +~~~ +25080896 1024 7 +~~~ +~~~ +25080898 1024 15 +~~~ +~~~ +25080900 1024 31 +~~~ +~~~ +25080901 1024 63 +~~~ +~~~ +25080903 1024 127 +~~~ +~~~ +25080905 1024 255 +25080906 homeCount = 25 +25080907 waitCount = 11 +25080907 ripCount = 11 +25080928 locktype1 = 1 +25080929 locktype2 = 1 +25080929 locktype3 = 2 +25080930 goalCount = 0 +25080930 goalTotal = 0 +25080931 otherCount = 20 +~~~ +25080932 CURRENTGOAL IS [2] +~~~ +25080976 DOWN 11 +25080976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25081015 homeCount = 25 +25081015 waitCount = 11 +25081016 ripCount = 11 +25081016 locktype1 = 1 +25081017 locktype2 = 1 +25081018 locktype3 = 2 +25081018 goalCount = 0 +25081018 goalTotal = 0 +25081019 otherCount = 20 +~~~ +25081020 CURRENTGOAL IS [2] +~~~ +25084278 UP 6 +25084278 32 255 +~~~ +~~~ +25085001 DOWN 6 +25085001 0 255 +25085013 32 255 +~~~ +~~~ +25085032 32 254 +~~~ +~~~ +25085034 32 252 +~~~ +~~~ +25085036 32 248 +~~~ +~~~ +25085037 32 240 +~~~ +~~~ +25085039 32 224 +~~~ +~~~ +25085041 32 192 +~~~ +~~~ +25085043 32 128 +~~~ +~~~ +25085045 32 0 +~~~ +~~~ +25085047 32 512 +25085048 homeCount = 25 +25085048 waitCount = 11 +25085049 ripCount = 11 +25085049 locktype1 = 1 +25085070 locktype2 = 1 +25085070 locktype3 = 2 +25085071 goalCount = 0 +25085071 goalTotal = 0 +25085072 otherCount = 21 +~~~ +25085490 DOWN 6 +25085490 0 512 +25089559 UP 10 +25089560 waslock = 0 +25089559 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25089592 512 16777728 +~~~ +25089594 DOWN 10 +25089594 0 16777728 +~~~ +~~~ +25089613 0 16779776 +~~~ +~~~ +25089615 0 16779264 +25089616 homeCount = 26 +25089616 waitCount = 11 +25089617 ripCount = 11 +25089617 locktype1 = 1 +25089618 locktype2 = 1 +25089618 locktype3 = 2 +25089619 goalCount = 0 +25089619 goalTotal = 0 +25089620 otherCount = 21 +~~~ +25089742 0 2048 +25089753 UP 10 +25089753 waslock = 0 +25089753 512 2048 +~~~ +25090106 DOWN 10 +25090106 0 2048 +~~~ +~~~ +~~~ +~~~ +25090129 homeCount = 26 +25090129 waitCount = 11 +25090130 ripCount = 11 +25090130 locktype1 = 1 +25090131 locktype2 = 1 +25090131 locktype3 = 2 +25090132 goalCount = 0 +25090132 goalTotal = 0 +25090133 otherCount = 21 +~~~ +25090343 UP 10 +25090344 waslock = 0 +25090343 512 2048 +~~~ +25093735 DOWN 10 +25093735 0 2048 +~~~ +~~~ +~~~ +25093757 UP 10 +25093757 waslock = 0 +25093757 512 2048 +~~~ +25093759 homeCount = 26 +25093759 waitCount = 11 +25093760 ripCount = 11 +25093760 locktype1 = 1 +25093761 locktype2 = 1 +25093761 locktype3 = 2 +25093762 goalCount = 0 +25093762 goalTotal = 0 +25093763 otherCount = 21 +~~~ +~~~ +25093831 DOWN 10 +25093831 0 2048 +~~~ +~~~ +~~~ +~~~ +25093859 homeCount = 26 +25093859 waitCount = 11 +25093860 ripCount = 11 +25093860 locktype1 = 1 +25093861 locktype2 = 1 +25093861 locktype3 = 2 +25093862 goalCount = 0 +25093862 goalTotal = 0 +25093863 otherCount = 21 +~~~ +25095923 UP 12 +25095923 2048 2048 +25099423 CLICK1 +25099423 CLICK2 +~~~ +~~~ +~~~ +25099447 2048 67110912 +~~~ +25099548 DOWN 12 +25099548 0 67110912 +25099570 UP 12 +25099570 2048 67110912 +25099596 2048 2048 +~~~ +~~~ +25099615 2048 0 +~~~ +~~~ +25099616 2048 1 +~~~ +~~~ +25099618 2048 3 +~~~ +~~~ +25099620 2048 7 +~~~ +~~~ +25099622 2048 15 +~~~ +~~~ +25099624 2048 31 +~~~ +~~~ +25099625 2048 63 +~~~ +~~~ +25099627 2048 127 +~~~ +~~~ +25099629 2048 255 +25099630 homeCount = 26 +25099631 waitCount = 12 +25099631 ripCount = 11 +25099652 locktype1 = 1 +25099653 locktype2 = 1 +25099653 locktype3 = 2 +25099654 goalCount = 0 +25099654 goalTotal = 0 +25099655 otherCount = 21 +~~~ +25099656 CURRENTGOAL IS [2] +~~~ +25103441 DOWN 12 +25103441 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25103483 homeCount = 26 +25103484 waitCount = 12 +25103484 ripCount = 11 +25103485 locktype1 = 1 +25103485 locktype2 = 1 +25103486 locktype3 = 2 +25103486 goalCount = 0 +25103487 goalTotal = 0 +25103487 otherCount = 21 +~~~ +25103488 CURRENTGOAL IS [2] +~~~ +25107617 UP 2 +25107617 2 255 +~~~ +~~~ +25107640 outer reward +~~~ +25107640 2 131327 +~~~ +~~~ +25108090 2 255 +25108090 DOWN 2 +25108090 0 255 +~~~ +~~~ +25108124 0 254 +~~~ +~~~ +25108126 0 252 +~~~ +~~~ +25108128 0 248 +~~~ +~~~ +25108129 0 240 +~~~ +~~~ +25108131 0 224 +~~~ +~~~ +25108133 0 192 +~~~ +~~~ +25108135 0 128 +~~~ +~~~ +25108137 0 0 +~~~ +~~~ +25108139 0 512 +25108139 homeCount = 26 +25108140 waitCount = 12 +25108141 ripCount = 11 +25108141 locktype1 = 1 +25108162 locktype2 = 1 +25108163 locktype3 = 2 +25108163 goalCount = 1 +25108164 goalTotal = 1 +25108164 otherCount = 21 +~~~ +25108165 2 512 +25108303 DOWN 2 +25108303 0 512 +25108337 2 512 +25108404 DOWN 2 +25108404 0 512 +25108444 2 512 +25108534 DOWN 2 +25108534 0 512 +25108561 2 512 +25108675 DOWN 2 +25108675 0 512 +25108681 2 512 +25108797 DOWN 2 +25108797 0 512 +25108808 2 512 +25108923 DOWN 2 +25108923 0 512 +25108940 2 512 +25109063 DOWN 2 +25109063 0 512 +25109079 2 512 +25109213 DOWN 2 +25109213 0 512 +25109221 2 512 +25111989 DOWN 2 +25111989 0 512 +25111997 2 512 +25112095 DOWN 2 +25112095 0 512 +25112143 2 512 +25112170 DOWN 2 +25112170 0 512 +25112175 2 512 +25112334 DOWN 2 +25112334 0 512 +25112350 2 512 +25112437 DOWN 2 +25112437 0 512 +25112458 2 512 +25112510 DOWN 2 +25112510 0 512 +25112516 2 512 +25112519 DOWN 2 +25112519 0 512 +25112525 2 512 +25112616 DOWN 2 +25112616 0 512 +25112644 2 512 +25112863 DOWN 2 +25112863 0 512 +25112875 2 512 +25112908 DOWN 2 +25112908 0 512 +25112924 2 512 +25112973 DOWN 2 +25112973 0 512 +25112985 2 512 +25113064 DOWN 2 +25113064 0 512 +25113068 2 512 +25113165 DOWN 2 +25113165 0 512 +25113182 2 512 +25113240 DOWN 2 +25113240 0 512 +25113268 2 512 +25113362 DOWN 2 +25113362 0 512 +25113405 2 512 +25113427 DOWN 2 +25113427 0 512 +25113453 2 512 +25113486 DOWN 2 +25113486 0 512 +25113492 2 512 +25113607 DOWN 2 +25113607 0 512 +25113626 2 512 +25114161 DOWN 2 +25114161 0 512 +25114185 2 512 +25114363 DOWN 2 +25114363 0 512 +25114372 2 512 +25114757 DOWN 2 +25114757 0 512 +25114769 2 512 +25114897 DOWN 2 +25114897 0 512 +25114923 2 512 +25115469 DOWN 2 +25115469 0 512 +25115493 2 512 +25115664 DOWN 2 +25115664 0 512 +25115679 2 512 +25118445 DOWN 2 +25118445 0 512 +25118505 2 512 +25118523 DOWN 2 +25118523 0 512 +25123502 UP 10 +25123502 waslock = 0 +25123502 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25123535 512 16777728 +~~~ +25123685 512 512 +25123787 DOWN 10 +25123787 0 512 +~~~ +~~~ +25123809 0 2560 +~~~ +~~~ +25123811 0 2048 +25123812 homeCount = 27 +25123812 waitCount = 12 +25123813 ripCount = 11 +25123813 locktype1 = 1 +25123814 locktype2 = 1 +25123814 locktype3 = 2 +25123815 goalCount = 1 +25123815 goalTotal = 1 +25123816 otherCount = 21 +~~~ +25123946 UP 10 +25123946 waslock = 0 +25123946 512 2048 +~~~ +25128830 DOWN 10 +25128830 0 2048 +~~~ +~~~ +~~~ +~~~ +25128851 homeCount = 27 +25128852 waitCount = 12 +25128852 ripCount = 11 +25128853 locktype1 = 1 +25128853 locktype2 = 1 +25128854 locktype3 = 2 +25128854 goalCount = 1 +25128855 goalTotal = 1 +25128855 otherCount = 21 +~~~ +25130706 UP 12 +25130706 2048 2048 +25132114 DOWN 12 +25132114 0 2048 +25132126 UP 12 +25132126 2048 2048 +25133707 CLICK1 +25133707 CLICK2 +~~~ +~~~ +~~~ +25133732 2048 67110912 +~~~ +25133881 2048 2048 +25138417 DOWN 12 +25138417 0 2048 +~~~ +~~~ +25138438 0 0 +~~~ +~~~ +25138440 0 1 +~~~ +~~~ +25138441 0 3 +~~~ +~~~ +25138443 0 7 +~~~ +~~~ +25138445 0 15 +~~~ +~~~ +25138447 0 31 +~~~ +~~~ +25138449 0 63 +~~~ +~~~ +25138451 0 127 +~~~ +~~~ +25138452 0 255 +25138453 homeCount = 27 +25138454 waitCount = 13 +25138454 ripCount = 11 +25138455 locktype1 = 1 +25138456 locktype2 = 1 +25138476 locktype3 = 2 +25138477 goalCount = 1 +25138477 goalTotal = 1 +25138478 otherCount = 21 +~~~ +25138479 CURRENTGOAL IS [2] +~~~ +25138480 UP 12 +25138479 2048 255 +25138526 DOWN 12 +25138526 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25138567 homeCount = 27 +25138567 waitCount = 13 +25138568 ripCount = 11 +25138568 locktype1 = 1 +25138569 locktype2 = 1 +25138569 locktype3 = 2 +25138570 goalCount = 1 +25138570 goalTotal = 1 +25138571 otherCount = 21 +~~~ +25138572 CURRENTGOAL IS [2] +~~~ +25142186 UP 2 +25142186 2 255 +~~~ +~~~ +25142212 outer reward +~~~ +25142212 2 131327 +~~~ +~~~ +25142409 DOWN 2 +25142409 0 131327 +~~~ +~~~ +25142429 0 131326 +~~~ +~~~ +25142431 0 131324 +~~~ +~~~ +25142433 0 131320 +~~~ +~~~ +25142435 0 131312 +~~~ +~~~ +25142437 0 131296 +~~~ +~~~ +25142438 0 131264 +~~~ +~~~ +25142440 0 131200 +~~~ +~~~ +25142442 0 131072 +~~~ +~~~ +25142444 0 131584 +25142445 homeCount = 27 +25142445 waitCount = 13 +25142446 ripCount = 11 +25142467 locktype1 = 1 +25142467 locktype2 = 1 +25142468 locktype3 = 2 +25142468 goalCount = 2 +25142469 goalTotal = 2 +25142469 otherCount = 21 +~~~ +25142514 2 131584 +25142662 2 512 +25142890 DOWN 2 +25142890 0 512 +25142916 2 512 +25143005 DOWN 2 +25143005 0 512 +25143054 2 512 +25143131 DOWN 2 +25143131 0 512 +25143167 2 512 +25143275 DOWN 2 +25143275 0 512 +25143289 2 512 +25143415 DOWN 2 +25143415 0 512 +25143426 2 512 +25143556 DOWN 2 +25143556 0 512 +25143574 2 512 +25143700 DOWN 2 +25143700 0 512 +25143717 2 512 +25143855 DOWN 2 +25143855 0 512 +25143873 2 512 +25145835 DOWN 2 +25145835 0 512 +25145862 2 512 +25146013 DOWN 2 +25146013 0 512 +25146025 2 512 +25146180 DOWN 2 +25146180 0 512 +25146196 2 512 +25146245 DOWN 2 +25146245 0 512 +25146262 2 512 +25146416 DOWN 2 +25146416 0 512 +25146444 2 512 +25146594 DOWN 2 +25146594 0 512 +25146604 2 512 +25146772 DOWN 2 +25146772 0 512 +25146776 2 512 +25146903 DOWN 2 +25146903 0 512 +25146914 2 512 +25147108 DOWN 2 +25147108 0 512 +25147157 2 512 +25147264 DOWN 2 +25147264 0 512 +25147283 2 512 +25147322 DOWN 2 +25147322 0 512 +25147326 2 512 +25147510 DOWN 2 +25147510 0 512 +25147517 2 512 +25149784 DOWN 2 +25149784 0 512 +25149798 2 512 +25149902 DOWN 2 +25149902 0 512 +25154660 UP 10 +25154660 waslock = 0 +25154660 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25154687 512 16777728 +~~~ +25154837 512 512 +25154873 DOWN 10 +25154873 0 512 +~~~ +~~~ +25154890 0 1536 +~~~ +~~~ +25154892 0 1024 +25154893 homeCount = 28 +25154893 waitCount = 13 +25154894 ripCount = 11 +25154894 locktype1 = 1 +25154895 locktype2 = 1 +25154895 locktype3 = 2 +25154896 goalCount = 2 +25154896 goalTotal = 2 +25154897 otherCount = 21 +~~~ +25154918 UP 10 +25154919 waslock = 0 +25154918 512 1024 +~~~ +25159969 DOWN 10 +25159969 0 1024 +~~~ +~~~ +~~~ +~~~ +25159992 homeCount = 28 +25159992 waitCount = 13 +25159993 ripCount = 11 +25159993 locktype1 = 1 +25159994 locktype2 = 1 +25159994 locktype3 = 2 +25159995 goalCount = 2 +25159995 goalTotal = 2 +25159996 otherCount = 21 +~~~ +25161799 UP 11 +25161799 1024 1024 +25164091 DOWN 11 +25164091 0 1024 +25164144 UP 11 +25164144 1024 1024 +25164160 DOWN 11 +25164160 0 1024 +25164179 UP 11 +25164179 1024 1024 +25164800 BEEP1 +25164800 BEEP2 +~~~ +~~~ +~~~ +25164824 1024 33555456 +~~~ +25164974 1024 1024 +25169371 DOWN 11 +25169371 0 1024 +~~~ +~~~ +25169390 0 0 +~~~ +~~~ +25169392 0 1 +~~~ +~~~ +25169394 0 3 +~~~ +~~~ +25169396 0 7 +~~~ +~~~ +25169398 0 15 +~~~ +~~~ +25169400 0 31 +~~~ +~~~ +25169401 0 63 +~~~ +~~~ +25169403 0 127 +~~~ +~~~ +25169405 0 255 +25169406 homeCount = 28 +25169407 waitCount = 13 +25169407 ripCount = 12 +25169408 locktype1 = 1 +25169408 locktype2 = 1 +25169429 locktype3 = 2 +25169430 goalCount = 2 +25169430 goalTotal = 2 +25169431 otherCount = 21 +~~~ +25169432 CURRENTGOAL IS [2] +~~~ +25169432 UP 11 +25169432 1024 255 +25171560 DOWN 11 +25171560 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25171599 homeCount = 28 +25171599 waitCount = 13 +25171600 ripCount = 12 +25171600 locktype1 = 1 +25171601 locktype2 = 1 +25171601 locktype3 = 2 +25171602 goalCount = 2 +25171602 goalTotal = 2 +25171603 otherCount = 21 +~~~ +25171604 CURRENTGOAL IS [2] +~~~ +25175596 UP 2 +25175596 2 255 +~~~ +~~~ +25175623 outer reward +~~~ +25175624 2 131327 +~~~ +~~~ +25175843 DOWN 2 +25175843 0 131327 +~~~ +~~~ +25175862 0 131326 +~~~ +~~~ +25175863 0 131324 +~~~ +~~~ +25175865 0 131320 +~~~ +~~~ +25175867 0 131312 +~~~ +~~~ +25175869 0 131296 +~~~ +~~~ +25175871 0 131264 +~~~ +~~~ +25175872 0 131200 +~~~ +~~~ +25175874 0 131072 +~~~ +~~~ +25175876 0 131584 +25175877 homeCount = 28 +25175878 waitCount = 13 +25175878 ripCount = 12 +25175899 locktype1 = 1 +25175899 locktype2 = 1 +25175900 locktype3 = 2 +25175900 goalCount = 3 +25175901 goalTotal = 3 +25175901 otherCount = 21 +~~~ +25175912 2 131584 +25176073 2 512 +25176303 DOWN 2 +25176303 0 512 +25176332 2 512 +25176429 DOWN 2 +25176428 0 512 +25176458 2 512 +25176562 DOWN 2 +25176562 0 512 +25176589 2 512 +25176708 DOWN 2 +25176707 0 512 +25176725 2 512 +25176848 DOWN 2 +25176848 0 512 +25176866 2 512 +25176998 DOWN 2 +25176998 0 512 +25177012 2 512 +25177155 DOWN 2 +25177155 0 512 +25177160 2 512 +25179505 DOWN 2 +25179505 0 512 +25179517 2 512 +25179928 DOWN 2 +25179928 0 512 +25179960 2 512 +25180105 DOWN 2 +25180105 0 512 +25180114 2 512 +25180168 DOWN 2 +25180168 0 512 +25180175 2 512 +25180180 DOWN 2 +25180180 0 512 +25180183 2 512 +25180269 DOWN 2 +25180269 0 512 +25180276 2 512 +25180707 DOWN 2 +25180707 0 512 +25180712 2 512 +25180718 DOWN 2 +25180718 0 512 +25180730 2 512 +25180907 DOWN 2 +25180907 0 512 +25180911 2 512 +25180916 DOWN 2 +25180916 0 512 +25180927 2 512 +25181086 DOWN 2 +25181086 0 512 +25181088 2 512 +25181094 DOWN 2 +25181094 0 512 +25181102 2 512 +25182687 DOWN 2 +25182687 0 512 +25182694 2 512 +25182785 DOWN 2 +25182785 0 512 +25188753 UP 10 +25188754 waslock = 0 +25188753 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25188782 512 16777728 +~~~ +25188784 DOWN 10 +25188784 0 16777728 +~~~ +~~~ +25188799 0 16779776 +~~~ +~~~ +25188801 0 16779264 +25188802 homeCount = 29 +25188803 waitCount = 13 +25188803 ripCount = 12 +25188804 locktype1 = 1 +25188804 locktype2 = 1 +25188805 locktype3 = 2 +25188805 goalCount = 3 +25188806 goalTotal = 3 +25188806 otherCount = 21 +~~~ +25188827 UP 10 +25188827 waslock = 0 +25188827 512 16779264 +~~~ +25188932 512 2048 +25188960 DOWN 10 +25188960 0 2048 +25188979 UP 10 +25188980 waslock = 0 +25188979 512 2048 +~~~ +~~~ +~~~ +~~~ +25188986 homeCount = 29 +25188987 waitCount = 13 +25188987 ripCount = 12 +25188988 locktype1 = 1 +25188988 locktype2 = 1 +25188989 locktype3 = 2 +25188989 goalCount = 3 +25188990 goalTotal = 3 +25188990 otherCount = 21 +~~~ +~~~ +25193421 DOWN 10 +25193421 0 2048 +~~~ +~~~ +~~~ +~~~ +25193442 homeCount = 29 +25193442 waitCount = 13 +25193443 ripCount = 12 +25193443 locktype1 = 1 +25193444 locktype2 = 1 +25193444 locktype3 = 2 +25193445 goalCount = 3 +25193445 goalTotal = 3 +25193446 otherCount = 21 +~~~ +25195698 UP 12 +25195698 2048 2048 +25198392 DOWN 12 +25198392 0 2048 +25198421 UP 12 +25198421 2048 2048 +25198445 DOWN 12 +25198445 0 2048 +25198456 UP 12 +25198456 2048 2048 +25198532 DOWN 12 +25198532 0 2048 +25198548 UP 12 +25198548 2048 2048 +25201743 DOWN 12 +25201743 0 2048 +25201782 UP 12 +25201782 2048 2048 +25203699 CLICK1 +25203699 CLICK2 +~~~ +~~~ +~~~ +25203727 2048 67110912 +~~~ +25203877 2048 2048 +25209218 DOWN 12 +25209218 0 2048 +~~~ +~~~ +25209234 0 0 +~~~ +~~~ +25209236 0 1 +~~~ +~~~ +25209238 0 3 +~~~ +~~~ +25209240 0 7 +~~~ +~~~ +25209241 0 15 +~~~ +~~~ +25209243 0 31 +~~~ +~~~ +25209245 0 63 +~~~ +~~~ +25209247 0 127 +~~~ +~~~ +25209249 0 255 +25209250 homeCount = 29 +25209250 waitCount = 14 +25209251 ripCount = 12 +25209251 locktype1 = 1 +25209252 locktype2 = 1 +25209273 locktype3 = 2 +25209273 goalCount = 3 +25209274 goalTotal = 3 +25209274 otherCount = 21 +~~~ +25209275 CURRENTGOAL IS [2] +~~~ +25209277 UP 12 +25209277 2048 255 +25209310 DOWN 12 +25209310 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25209342 homeCount = 29 +25209342 waitCount = 14 +25209343 ripCount = 12 +25209343 locktype1 = 1 +25209344 locktype2 = 1 +25209344 locktype3 = 2 +25209345 goalCount = 3 +25209345 goalTotal = 3 +25209346 otherCount = 21 +~~~ +25209347 CURRENTGOAL IS [2] +~~~ +25224023 UP 2 +25224023 2 255 +~~~ +~~~ +25224050 outer reward +~~~ +25224051 2 131327 +~~~ +~~~ +25224076 DOWN 2 +25224076 0 131327 +~~~ +~~~ +25224097 0 131326 +~~~ +~~~ +25224098 0 131324 +~~~ +~~~ +25224100 0 131320 +~~~ +~~~ +25224102 0 131312 +~~~ +~~~ +25224104 0 131296 +~~~ +~~~ +25224106 0 131264 +~~~ +~~~ +25224107 0 131200 +~~~ +~~~ +25224109 0 131072 +~~~ +~~~ +25224111 0 131584 +25224112 homeCount = 29 +25224113 waitCount = 14 +25224113 ripCount = 12 +25224134 locktype1 = 1 +25224134 locktype2 = 1 +25224135 locktype3 = 2 +25224135 goalCount = 4 +25224136 goalTotal = 4 +25224136 otherCount = 21 +~~~ +25224137 2 131584 +25224348 DOWN 2 +25224348 0 131584 +25224404 2 131584 +25224500 2 512 +25224662 DOWN 2 +25224662 0 512 +25224678 2 512 +25224773 DOWN 2 +25224773 0 512 +25224805 2 512 +25224898 DOWN 2 +25224898 0 512 +25224928 2 512 +25225017 DOWN 2 +25225017 0 512 +25225059 2 512 +25225149 DOWN 2 +25225149 0 512 +25225185 2 512 +25225285 DOWN 2 +25225285 0 512 +25225318 2 512 +25225427 DOWN 2 +25225427 0 512 +25225455 2 512 +25225579 DOWN 2 +25225579 0 512 +25225598 2 512 +25225730 DOWN 2 +25225730 0 512 +25225749 2 512 +25226040 DOWN 2 +25226040 0 512 +25226046 2 512 +25228169 DOWN 2 +25228169 0 512 +25228174 2 512 +25228345 DOWN 2 +25228345 0 512 +25228356 2 512 +25228509 DOWN 2 +25228509 0 512 +25228532 2 512 +25230264 DOWN 2 +25230264 0 512 +25230289 2 512 +25230334 DOWN 2 +25230334 0 512 +25234295 UP 10 +25234295 waslock = 0 +25234295 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25234324 512 16777728 +~~~ +25234474 512 512 +25234489 DOWN 10 +25234488 0 512 +25234502 UP 10 +25234503 waslock = 0 +25234502 512 512 +~~~ +~~~ +25234510 512 2560 +~~~ +~~~ +25234511 512 2048 +25234512 homeCount = 30 +25234513 waitCount = 14 +25234514 ripCount = 12 +25234514 locktype1 = 1 +25234515 locktype2 = 1 +25234515 locktype3 = 2 +25234516 goalCount = 4 +25234516 goalTotal = 4 +25234517 otherCount = 21 +~~~ +~~~ +25238280 DOWN 10 +25238280 0 2048 +~~~ +~~~ +~~~ +~~~ +25238301 homeCount = 30 +25238301 waitCount = 14 +25238302 ripCount = 12 +25238302 locktype1 = 1 +25238303 locktype2 = 1 +25238303 locktype3 = 2 +25238304 goalCount = 4 +25238304 goalTotal = 4 +25238305 otherCount = 21 +~~~ +25239988 UP 12 +25239988 2048 2048 +25248189 DOWN 12 +25248189 0 2048 +25248207 UP 12 +25248207 2048 2048 +25248906 DOWN 12 +25248906 0 2048 +25248913 UP 12 +25248913 2048 2048 +25248988 CLICK1 +25248988 CLICK2 +~~~ +~~~ +~~~ +25249009 2048 67110912 +~~~ +25249159 2048 2048 +25254041 DOWN 12 +25254041 0 2048 +~~~ +~~~ +25254067 0 0 +~~~ +~~~ +25254068 0 1 +~~~ +~~~ +25254070 0 3 +~~~ +~~~ +25254072 0 7 +~~~ +~~~ +25254074 0 15 +~~~ +~~~ +25254076 0 31 +~~~ +~~~ +25254077 0 63 +~~~ +~~~ +25254079 0 127 +~~~ +~~~ +25254081 0 255 +25254082 homeCount = 30 +25254083 waitCount = 15 +25254083 ripCount = 12 +25254084 locktype1 = 1 +25254084 locktype2 = 1 +25254105 locktype3 = 2 +25254106 goalCount = 4 +25254106 goalTotal = 4 +25254107 otherCount = 21 +~~~ +25254108 CURRENTGOAL IS [2] +~~~ +25254108 UP 12 +25254108 2048 255 +25254169 DOWN 12 +25254169 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25254205 homeCount = 30 +25254206 waitCount = 15 +25254206 ripCount = 12 +25254207 locktype1 = 1 +25254207 locktype2 = 1 +25254208 locktype3 = 2 +25254208 goalCount = 4 +25254209 goalTotal = 4 +25254209 otherCount = 21 +~~~ +25254211 CURRENTGOAL IS [2] +~~~ +25258239 UP 2 +25258239 2 255 +~~~ +~~~ +25258262 outer reward +~~~ +25258263 2 131327 +~~~ +~~~ +25258296 DOWN 2 +25258296 0 131327 +~~~ +~~~ +25258319 0 131326 +~~~ +~~~ +25258321 0 131324 +~~~ +~~~ +25258323 0 131320 +~~~ +~~~ +25258325 0 131312 +~~~ +~~~ +25258326 0 131296 +~~~ +~~~ +25258328 0 131264 +~~~ +~~~ +25258330 2 131200 +~~~ +~~~ +25258332 2 131072 +~~~ +~~~ +25258334 2 131584 +25258335 homeCount = 30 +25258335 waitCount = 15 +25258336 ripCount = 12 +25258357 locktype1 = 1 +25258357 locktype2 = 1 +25258358 locktype3 = 2 +25258358 goalCount = 5 +25258359 goalTotal = 5 +25258359 otherCount = 21 +~~~ +25258494 DOWN 2 +25258494 0 131584 +25258540 2 131584 +25258712 2 512 +25258902 DOWN 2 +25258902 0 512 +25258920 2 512 +25259017 DOWN 2 +25259017 0 512 +25259045 2 512 +25259135 DOWN 2 +25259135 0 512 +25259172 2 512 +25259262 DOWN 2 +25259262 0 512 +25259297 2 512 +25259389 DOWN 2 +25259389 0 512 +25259433 2 512 +25259522 DOWN 2 +25259522 0 512 +25259562 2 512 +25259655 DOWN 2 +25259655 0 512 +25259693 2 512 +25259792 DOWN 2 +25259792 0 512 +25259825 2 512 +25259938 DOWN 2 +25259938 0 512 +25259963 2 512 +25260096 DOWN 2 +25260096 0 512 +25260109 2 512 +25260255 DOWN 2 +25260255 0 512 +25260267 2 512 +25260407 DOWN 2 +25260407 0 512 +25260417 2 512 +25260562 DOWN 2 +25260562 0 512 +25260572 2 512 +25264430 DOWN 2 +25264430 0 512 +25264465 2 512 +25264520 DOWN 2 +25264520 0 512 +25268595 UP 10 +25268595 waslock = 0 +25268595 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25268618 512 16777728 +~~~ +25268768 512 512 +25268819 DOWN 10 +25268819 0 512 +25268840 UP 10 +25268840 waslock = 0 +25268839 512 512 +~~~ +~~~ +25268846 512 1536 +~~~ +~~~ +25268848 512 1024 +25268849 homeCount = 31 +25268850 waitCount = 15 +25268850 ripCount = 12 +25268851 locktype1 = 1 +25268851 locktype2 = 1 +25268852 locktype3 = 2 +25268852 goalCount = 5 +25268853 goalTotal = 5 +25268853 otherCount = 21 +~~~ +~~~ +25271996 DOWN 10 +25271996 0 1024 +~~~ +~~~ +~~~ +~~~ +25272015 homeCount = 31 +25272015 waitCount = 15 +25272016 ripCount = 12 +25272016 locktype1 = 1 +25272017 locktype2 = 1 +25272017 locktype3 = 2 +25272018 goalCount = 5 +25272018 goalTotal = 5 +25272019 otherCount = 21 +~~~ +25273511 UP 11 +25273511 1024 1024 +25275924 DOWN 11 +25275924 0 1024 +25275938 UP 11 +25275938 1024 1024 +25277719 DOWN 11 +25277719 0 1024 +25277728 UP 11 +25277728 1024 1024 +25280511 BEEP1 +25280511 BEEP2 +~~~ +~~~ +~~~ +25280536 1024 33555456 +~~~ +25280686 1024 1024 +25285951 DOWN 11 +25285951 0 1024 +~~~ +~~~ +25285973 0 0 +~~~ +~~~ +25285975 0 1 +~~~ +~~~ +25285976 0 3 +~~~ +~~~ +25285978 0 7 +~~~ +~~~ +25285980 0 15 +~~~ +~~~ +25285982 0 31 +~~~ +~~~ +25285984 0 63 +~~~ +~~~ +25285986 0 127 +~~~ +~~~ +25285987 0 255 +25285988 homeCount = 31 +25285989 waitCount = 15 +25285990 ripCount = 13 +25285990 locktype1 = 1 +25285991 locktype2 = 1 +25286011 locktype3 = 2 +25286012 goalCount = 5 +25286012 goalTotal = 5 +25286013 otherCount = 21 +~~~ +25286014 CURRENTGOAL IS [2] +~~~ +25286014 UP 11 +25286014 1024 255 +25288352 DOWN 11 +25288352 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288383 UP 11 +25288383 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288393 homeCount = 31 +25288394 waitCount = 15 +25288394 ripCount = 13 +25288395 locktype1 = 1 +25288395 locktype2 = 1 +25288396 locktype3 = 2 +25288396 goalCount = 5 +25288397 goalTotal = 5 +25288397 otherCount = 21 +~~~ +25288398 CURRENTGOAL IS [2] +~~~ +25288446 DOWN 11 +25288446 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288484 homeCount = 31 +25288485 waitCount = 15 +25288485 ripCount = 13 +25288486 locktype1 = 1 +25288486 locktype2 = 1 +25288487 locktype3 = 2 +25288487 goalCount = 5 +25288488 goalTotal = 5 +25288488 otherCount = 21 +~~~ +25288489 CURRENTGOAL IS [2] +~~~ +25292276 UP 2 +25292276 2 255 +~~~ +~~~ +25292299 outer reward +~~~ +25292300 2 131327 +~~~ +~~~ +25292481 DOWN 2 +25292481 0 131327 +~~~ +~~~ +25292508 0 131326 +~~~ +~~~ +25292510 0 131324 +~~~ +~~~ +25292511 0 131320 +~~~ +~~~ +25292513 0 131312 +~~~ +~~~ +25292515 0 131296 +~~~ +~~~ +25292517 0 131264 +~~~ +~~~ +25292519 0 131200 +~~~ +~~~ +25292521 0 131072 +~~~ +~~~ +25292522 0 131584 +25292523 homeCount = 31 +25292524 waitCount = 15 +25292525 ripCount = 13 +25292545 locktype1 = 1 +25292546 locktype2 = 1 +25292546 locktype3 = 2 +25292547 goalCount = 6 +25292547 goalTotal = 6 +25292548 otherCount = 21 +~~~ +25292548 2 131584 +25292749 2 512 +25292894 DOWN 2 +25292894 0 512 +25292922 2 512 +25293016 DOWN 2 +25293016 0 512 +25293052 2 512 +25293153 DOWN 2 +25293153 0 512 +25293173 2 512 +25294024 DOWN 2 +25294024 0 512 +25294050 2 512 +25299590 DOWN 2 +25299590 0 512 +25303635 UP 10 +25303636 waslock = 0 +25303635 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25303667 512 16777728 +~~~ +25303817 512 512 +25307585 DOWN 10 +25307585 0 512 +~~~ +~~~ +25307608 0 1536 +~~~ +~~~ +25307610 0 1024 +25307611 homeCount = 32 +25307611 waitCount = 15 +25307612 ripCount = 13 +25307613 locktype1 = 1 +25307613 locktype2 = 1 +25307614 locktype3 = 2 +25307614 goalCount = 6 +25307615 goalTotal = 6 +25307615 otherCount = 21 +~~~ +25309251 UP 11 +25309251 1024 1024 +25311815 DOWN 11 +25311815 0 1024 +25311837 UP 11 +25311837 1024 1024 +25313752 BEEP1 +25313752 BEEP2 +~~~ +~~~ +~~~ +25313771 1024 33555456 +~~~ +25313921 1024 1024 +25318968 DOWN 11 +25318968 0 1024 +~~~ +~~~ +25318989 0 0 +~~~ +~~~ +25318991 0 1 +~~~ +~~~ +25318993 0 3 +~~~ +~~~ +25318995 0 7 +~~~ +~~~ +25318997 0 15 +~~~ +~~~ +25318998 0 31 +~~~ +~~~ +25319000 0 63 +~~~ +~~~ +25319002 0 127 +~~~ +~~~ +25319004 0 255 +25319005 homeCount = 32 +25319005 waitCount = 15 +25319006 ripCount = 14 +25319007 locktype1 = 1 +25319007 locktype2 = 1 +25319028 locktype3 = 2 +25319028 goalCount = 6 +25319029 goalTotal = 6 +25319029 otherCount = 21 +~~~ +25319031 CURRENTGOAL IS [2] +~~~ +25319045 UP 11 +25319045 1024 255 +25319211 DOWN 11 +25319211 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25319245 homeCount = 32 +25319246 waitCount = 15 +25319246 ripCount = 14 +25319247 locktype1 = 1 +25319247 locktype2 = 1 +25319248 locktype3 = 2 +25319248 goalCount = 6 +25319249 goalTotal = 6 +25319249 otherCount = 21 +~~~ +25319251 CURRENTGOAL IS [2] +~~~ +25319272 UP 11 +25319272 1024 255 +25321213 DOWN 11 +25321213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25321245 homeCount = 32 +25321246 waitCount = 15 +25321246 ripCount = 14 +25321247 locktype1 = 1 +25321247 locktype2 = 1 +25321248 locktype3 = 2 +25321248 goalCount = 6 +25321249 goalTotal = 6 +25321249 otherCount = 21 +~~~ +25321250 CURRENTGOAL IS [2] +~~~ +25324835 UP 2 +25324835 2 255 +~~~ +~~~ +25324860 outer reward +~~~ +25324861 2 131327 +~~~ +~~~ +25325077 DOWN 2 +25325077 0 131327 +~~~ +~~~ +25325099 0 131326 +~~~ +~~~ +25325101 0 131324 +~~~ +~~~ +25325103 0 131320 +~~~ +~~~ +25325105 0 131312 +~~~ +~~~ +25325106 0 131296 +~~~ +~~~ +25325108 0 131264 +~~~ +~~~ +25325110 0 131200 +~~~ +~~~ +25325112 0 131072 +~~~ +~~~ +25325114 0 131584 +25325115 homeCount = 32 +25325115 waitCount = 15 +25325116 ripCount = 14 +25325136 locktype1 = 1 +25325137 locktype2 = 1 +25325137 locktype3 = 2 +25325138 goalCount = 7 +25325138 goalTotal = 7 +25325139 otherCount = 21 +~~~ +25325141 2 131584 +25325310 2 512 +25325492 DOWN 2 +25325492 0 512 +25325540 2 512 +25325616 DOWN 2 +25325616 0 512 +25325662 2 512 +25325755 DOWN 2 +25325754 0 512 +25325776 2 512 +25326611 DOWN 2 +25326611 0 512 +25326629 2 512 +25329406 DOWN 2 +25329406 0 512 +25329419 2 512 +25329757 DOWN 2 +25329757 0 512 +25329760 2 512 +25329762 DOWN 2 +25329762 0 512 +25329781 2 512 +25329935 DOWN 2 +25329935 0 512 +25329937 2 512 +25329945 DOWN 2 +25329945 0 512 +25329953 2 512 +25331774 DOWN 2 +25331774 0 512 +25331786 2 512 +25331865 DOWN 2 +25331865 0 512 +25335687 UP 10 +25335687 waslock = 0 +25335687 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25335716 512 16777728 +~~~ +25335866 512 512 +25339372 DOWN 10 +25339372 0 512 +~~~ +~~~ +25339390 0 1536 +~~~ +~~~ +25339392 0 1024 +25339393 homeCount = 33 +25339394 waitCount = 15 +25339394 ripCount = 14 +25339395 locktype1 = 1 +25339395 locktype2 = 1 +25339396 locktype3 = 2 +25339396 goalCount = 7 +25339397 goalTotal = 7 +25339397 otherCount = 21 +~~~ +25339425 UP 10 +25339425 waslock = 0 +25339425 512 1024 +25339438 DOWN 10 +25339438 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25339466 homeCount = 33 +25339466 waitCount = 15 +25339467 ripCount = 14 +25339467 locktype1 = 1 +25339468 locktype2 = 1 +25339468 locktype3 = 2 +25339469 goalCount = 7 +25339469 goalTotal = 7 +25339470 otherCount = 21 +~~~ +25341420 UP 11 +25341420 1024 1024 +25341496 DOWN 11 +25341496 0 1024 +25341560 UP 11 +25341560 1024 1024 +25343328 DOWN 11 +25343328 0 1024 +25343349 UP 11 +25343349 1024 1024 +25349420 BEEP1 +25349420 BEEP2 +~~~ +~~~ +~~~ +25349444 1024 33555456 +~~~ +25349594 1024 1024 +25355080 DOWN 11 +25355080 0 1024 +~~~ +~~~ +25355104 0 0 +~~~ +~~~ +25355105 0 1 +~~~ +~~~ +25355107 0 3 +~~~ +25355109 UP 11 +25355108 1024 3 +~~~ +~~~ +25355110 1024 7 +~~~ +~~~ +25355112 1024 15 +~~~ +~~~ +25355114 1024 31 +~~~ +25355115 1024 63 +~~~ +~~~ +25355116 1024 127 +~~~ +~~~ +25355118 1024 255 +25355119 homeCount = 33 +25355140 waitCount = 15 +25355141 ripCount = 15 +25355141 locktype1 = 1 +25355142 locktype2 = 1 +25355142 locktype3 = 2 +25355143 goalCount = 7 +25355143 goalTotal = 7 +25355144 otherCount = 21 +~~~ +25355145 CURRENTGOAL IS [2] +~~~ +25357469 DOWN 11 +25357469 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25357509 homeCount = 33 +25357510 waitCount = 15 +25357510 ripCount = 15 +25357511 locktype1 = 1 +25357511 locktype2 = 1 +25357512 locktype3 = 2 +25357512 goalCount = 7 +25357513 goalTotal = 7 +25357513 otherCount = 21 +~~~ +25357514 CURRENTGOAL IS [2] +~~~ +25361464 UP 2 +25361464 2 255 +~~~ +~~~ +25361487 outer reward +~~~ +25361487 2 131327 +~~~ +~~~ +25361745 DOWN 2 +25361745 0 131327 +~~~ +~~~ +25361763 0 131326 +~~~ +~~~ +25361765 0 131324 +~~~ +~~~ +25361766 0 131320 +~~~ +~~~ +25361768 0 131312 +~~~ +~~~ +25361770 0 131296 +~~~ +~~~ +25361772 0 131264 +~~~ +~~~ +25361774 0 131200 +~~~ +~~~ +25361776 0 131072 +~~~ +~~~ +25361778 0 131584 +25361779 homeCount = 33 +25361779 waitCount = 15 +25361780 ripCount = 15 +25361800 locktype1 = 1 +25361801 locktype2 = 1 +25361801 locktype3 = 2 +25361802 goalCount = 8 +25361802 goalTotal = 8 +25361803 otherCount = 21 +~~~ +25361803 2 131584 +25361937 2 512 +25362139 DOWN 2 +25362139 0 512 +25362176 2 512 +25362263 DOWN 2 +25362263 0 512 +25362291 2 512 +25362386 DOWN 2 +25362386 0 512 +25362422 2 512 +25362510 DOWN 2 +25362510 0 512 +25362553 2 512 +25362641 DOWN 2 +25362641 0 512 +25362682 2 512 +25362795 DOWN 2 +25362795 0 512 +25362813 2 512 +25362939 DOWN 2 +25362939 0 512 +25362959 2 512 +25363093 DOWN 2 +25363093 0 512 +25363099 2 512 +25363241 DOWN 2 +25363241 0 512 +25363246 2 512 +25363391 DOWN 2 +25363391 0 512 +25363399 2 512 +25366031 DOWN 2 +25366031 0 512 +25366037 2 512 +25366210 DOWN 2 +25366210 0 512 +25366218 2 512 +25368328 DOWN 2 +25368328 0 512 +25368391 2 512 +25368427 DOWN 2 +25368427 0 512 +25371877 UP 10 +25371877 waslock = 0 +25371877 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25371903 512 16777728 +~~~ +25372053 512 512 +25379887 DOWN 10 +25379887 0 512 +~~~ +~~~ +25379906 0 1536 +~~~ +~~~ +25379908 0 1024 +25379909 homeCount = 34 +25379909 waitCount = 15 +25379910 ripCount = 15 +25379910 locktype1 = 1 +25379911 locktype2 = 1 +25379911 locktype3 = 2 +25379912 goalCount = 8 +25379912 goalTotal = 8 +25379913 otherCount = 21 +~~~ +25379964 UP 10 +25379964 waslock = 0 +25379964 512 1024 +~~~ +25380013 DOWN 10 +25380013 0 1024 +~~~ +~~~ +~~~ +~~~ +25380044 homeCount = 34 +25380044 waitCount = 15 +25380045 ripCount = 15 +25380045 locktype1 = 1 +25380046 locktype2 = 1 +25380046 locktype3 = 2 +25380047 goalCount = 8 +25380047 goalTotal = 8 +25380048 otherCount = 21 +~~~ +25381643 UP 10 +25381644 waslock = 0 +25381643 512 1024 +25381658 DOWN 10 +25381658 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25381684 homeCount = 34 +25381685 waitCount = 15 +25381685 ripCount = 15 +25381686 locktype1 = 1 +25381686 locktype2 = 1 +25381687 locktype3 = 2 +25381687 goalCount = 8 +25381688 goalTotal = 8 +25381688 otherCount = 21 +~~~ +25383621 UP 11 +25383621 1024 1024 +25388121 BEEP1 +25388121 BEEP2 +~~~ +~~~ +~~~ +25388149 1024 33555456 +~~~ +25388299 1024 1024 +25394043 DOWN 11 +25394043 0 1024 +~~~ +~~~ +25394066 0 0 +~~~ +~~~ +25394068 0 1 +~~~ +~~~ +25394070 0 3 +~~~ +~~~ +25394072 0 7 +~~~ +~~~ +25394074 UP 11 +25394073 1024 15 +~~~ +~~~ +25394076 1024 31 +~~~ +~~~ +25394077 1024 63 +~~~ +~~~ +25394079 1024 127 +~~~ +~~~ +25394081 1024 255 +25394082 homeCount = 34 +25394082 waitCount = 15 +25394083 ripCount = 16 +25394104 locktype1 = 1 +25394104 locktype2 = 1 +25394105 locktype3 = 2 +25394105 goalCount = 8 +25394106 goalTotal = 8 +25394106 otherCount = 21 +~~~ +25394108 CURRENTGOAL IS [2] +~~~ +25394133 DOWN 11 +25394133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25394169 homeCount = 34 +25394170 waitCount = 15 +25394170 ripCount = 16 +25394171 locktype1 = 1 +25394171 locktype2 = 1 +25394172 locktype3 = 2 +25394172 goalCount = 8 +25394173 goalTotal = 8 +25394173 otherCount = 21 +~~~ +25394174 CURRENTGOAL IS [2] +~~~ +25394253 UP 11 +25394253 1024 255 +25394289 DOWN 11 +25394289 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25394325 homeCount = 34 +25394325 waitCount = 15 +25394326 ripCount = 16 +25394326 locktype1 = 1 +25394327 locktype2 = 1 +25394327 locktype3 = 2 +25394328 goalCount = 8 +25394328 goalTotal = 8 +25394329 otherCount = 21 +~~~ +25394330 CURRENTGOAL IS [2] +~~~ +25394940 UP 11 +25394940 1024 255 +25394971 DOWN 11 +25394971 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25395007 UP 11 +25395007 1024 255 +25395008 homeCount = 34 +25395009 waitCount = 15 +25395009 ripCount = 16 +25395010 locktype1 = 1 +25395010 locktype2 = 1 +25395011 locktype3 = 2 +25395011 goalCount = 8 +25395012 goalTotal = 8 +25395012 otherCount = 21 +~~~ +25395034 CURRENTGOAL IS [2] +~~~ +25398455 DOWN 11 +25398455 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25398496 homeCount = 34 +25398496 waitCount = 15 +25398497 ripCount = 16 +25398497 locktype1 = 1 +25398498 locktype2 = 1 +25398498 locktype3 = 2 +25398499 goalCount = 8 +25398499 goalTotal = 8 +25398500 otherCount = 21 +~~~ +25398501 CURRENTGOAL IS [2] +~~~ +25411077 UP 8 +25411077 128 255 +~~~ +~~~ +25411117 DOWN 8 +25411117 0 255 +~~~ +~~~ +25411143 0 254 +~~~ +~~~ +25411145 0 252 +~~~ +~~~ +25411147 0 248 +~~~ +~~~ +25411149 0 240 +~~~ +~~~ +25411151 0 224 +~~~ +~~~ +25411152 0 192 +~~~ +~~~ +25411154 0 128 +~~~ +~~~ +25411156 0 0 +~~~ +~~~ +25411158 0 512 +25411159 homeCount = 34 +25411160 waitCount = 15 +25411160 ripCount = 16 +25411161 locktype1 = 1 +25411161 locktype2 = 1 +25411182 locktype3 = 2 +25411182 goalCount = 8 +25411183 goalTotal = 8 +25411183 otherCount = 22 +~~~ +25411186 128 512 +25411487 DOWN 8 +25411487 0 512 +25415389 UP 10 +25415390 waslock = 0 +25415389 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25415415 512 16777728 +~~~ +25415564 DOWN 10 +25415564 0 16777728 +25415565 0 512 +~~~ +~~~ +25415591 0 1536 +~~~ +~~~ +25415593 0 1024 +25415594 homeCount = 35 +25415595 waitCount = 15 +25415595 ripCount = 16 +25415596 locktype1 = 1 +25415596 locktype2 = 1 +25415597 locktype3 = 2 +25415597 goalCount = 8 +25415598 goalTotal = 8 +25415598 otherCount = 22 +~~~ +25415732 UP 10 +25415732 waslock = 0 +25415732 512 1024 +~~~ +25421067 DOWN 10 +25421067 0 1024 +~~~ +~~~ +~~~ +~~~ +25421092 homeCount = 35 +25421093 waitCount = 15 +25421093 ripCount = 16 +25421094 locktype1 = 1 +25421094 locktype2 = 1 +25421095 locktype3 = 2 +25421095 goalCount = 8 +25421096 goalTotal = 8 +25421096 otherCount = 22 +~~~ +25421137 UP 10 +25421137 waslock = 0 +25421137 512 1024 +25421143 DOWN 10 +25421143 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25421169 homeCount = 35 +25421169 waitCount = 15 +25421170 ripCount = 16 +25421170 locktype1 = 1 +25421171 locktype2 = 1 +25421171 locktype3 = 2 +25421172 goalCount = 8 +25421172 goalTotal = 8 +25421173 otherCount = 22 +~~~ +25424199 UP 11 +25424199 1024 1024 +25431199 BEEP1 +25431199 BEEP2 +~~~ +~~~ +~~~ +25431220 1024 33555456 +~~~ +25431370 1024 1024 +25436615 DOWN 11 +25436615 0 1024 +~~~ +~~~ +25436639 0 0 +~~~ +~~~ +25436641 0 1 +~~~ +~~~ +25436643 0 3 +~~~ +~~~ +25436645 0 7 +~~~ +~~~ +25436646 0 15 +~~~ +25436648 UP 11 +25436648 1024 15 +~~~ +~~~ +25436650 1024 31 +~~~ +~~~ +25436651 1024 63 +~~~ +~~~ +25436653 1024 127 +~~~ +25436654 1024 255 +25436655 homeCount = 35 +25436656 waitCount = 15 +25436677 ripCount = 17 +25436677 locktype1 = 1 +25436678 locktype2 = 1 +25436678 locktype3 = 2 +25436679 goalCount = 8 +25436679 goalTotal = 8 +25436680 otherCount = 22 +~~~ +25436681 CURRENTGOAL IS [2] +~~~ +25436836 DOWN 11 +25436836 0 255 +25436857 UP 11 +25436857 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25436874 homeCount = 35 +25436875 waitCount = 15 +25436875 ripCount = 17 +25436876 locktype1 = 1 +25436876 locktype2 = 1 +25436877 locktype3 = 2 +25436877 goalCount = 8 +25436878 goalTotal = 8 +25436878 otherCount = 22 +~~~ +25436880 CURRENTGOAL IS [2] +~~~ +25436901 DOWN 11 +25436901 0 255 +25436910 UP 11 +25436910 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25436946 homeCount = 35 +25436947 waitCount = 15 +25436947 ripCount = 17 +25436948 locktype1 = 1 +25436948 locktype2 = 1 +25436949 locktype3 = 2 +25436949 goalCount = 8 +25436950 goalTotal = 8 +25436950 otherCount = 22 +~~~ +25436951 CURRENTGOAL IS [2] +~~~ +25438811 DOWN 11 +25438811 0 255 +25438829 UP 11 +25438829 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25438864 homeCount = 35 +25438864 waitCount = 15 +25438865 ripCount = 17 +25438866 locktype1 = 1 +25438866 locktype2 = 1 +25438867 locktype3 = 2 +25438867 goalCount = 8 +25438868 goalTotal = 8 +25438868 otherCount = 22 +~~~ +25438869 CURRENTGOAL IS [2] +~~~ +25438892 DOWN 11 +25438892 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25438927 homeCount = 35 +25438927 waitCount = 15 +25438928 ripCount = 17 +25438928 locktype1 = 1 +25438929 locktype2 = 1 +25438929 locktype3 = 2 +25438930 goalCount = 8 +25438930 goalTotal = 8 +25438931 otherCount = 22 +~~~ +25438932 CURRENTGOAL IS [2] +~~~ +25443046 UP 2 +25443046 2 255 +~~~ +~~~ +25443074 outer reward +~~~ +25443075 2 131327 +~~~ +~~~ +25443261 DOWN 2 +25443261 0 131327 +~~~ +~~~ +25443281 0 131326 +~~~ +~~~ +25443283 0 131324 +~~~ +~~~ +25443285 0 131320 +~~~ +~~~ +25443287 0 131312 +~~~ +~~~ +25443288 0 131296 +~~~ +~~~ +25443290 0 131264 +~~~ +~~~ +25443292 0 131200 +~~~ +~~~ +25443294 0 131072 +~~~ +~~~ +25443296 0 131584 +25443297 homeCount = 35 +25443297 waitCount = 15 +25443298 ripCount = 17 +25443319 locktype1 = 1 +25443319 locktype2 = 1 +25443320 locktype3 = 2 +25443320 goalCount = 9 +25443321 goalTotal = 9 +25443321 otherCount = 22 +~~~ +25443322 2 131584 +25443524 2 512 +25443802 DOWN 2 +25443802 0 512 +25443828 2 512 +25443922 DOWN 2 +25443922 0 512 +25443955 2 512 +25444050 DOWN 2 +25444050 0 512 +25444072 2 512 +25444174 DOWN 2 +25444174 0 512 +25444198 2 512 +25444307 DOWN 2 +25444307 0 512 +25444329 2 512 +25444444 DOWN 2 +25444444 0 512 +25444465 2 512 +25444596 DOWN 2 +25444596 0 512 +25444605 2 512 +25445036 DOWN 2 +25445036 0 512 +25445047 2 512 +25448195 DOWN 2 +25448195 0 512 +25448235 2 512 +25450273 DOWN 2 +25450273 0 512 +25450339 2 512 +25450371 DOWN 2 +25450371 0 512 +25454316 UP 10 +25454317 waslock = 0 +25454316 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25454349 512 16777728 +~~~ +25454499 512 512 +25457148 DOWN 10 +25457148 0 512 +~~~ +~~~ +25457174 0 2560 +~~~ +~~~ +25457176 0 2048 +25457177 homeCount = 36 +25457178 waitCount = 15 +25457178 ripCount = 17 +25457179 locktype1 = 1 +25457179 locktype2 = 1 +25457180 locktype3 = 2 +25457180 goalCount = 9 +25457181 goalTotal = 9 +25457181 otherCount = 22 +~~~ +25459795 UP 12 +25459795 2048 2048 +25463795 CLICK1 +25463795 CLICK2 +~~~ +~~~ +~~~ +25463815 2048 67110912 +~~~ +25463965 2048 2048 +25469814 DOWN 12 +25469814 0 2048 +~~~ +~~~ +25469833 0 0 +~~~ +~~~ +25469835 0 1 +~~~ +~~~ +25469837 0 3 +~~~ +~~~ +25469838 0 7 +~~~ +~~~ +25469840 0 15 +~~~ +~~~ +25469842 0 31 +~~~ +~~~ +25469844 0 63 +~~~ +~~~ +25469846 0 127 +~~~ +~~~ +25469848 0 255 +25469849 homeCount = 36 +25469849 waitCount = 16 +25469850 ripCount = 17 +25469850 locktype1 = 1 +25469851 locktype2 = 1 +25469872 locktype3 = 2 +25469872 goalCount = 9 +25469873 goalTotal = 9 +25469873 otherCount = 22 +~~~ +25469874 CURRENTGOAL IS [2] +~~~ +25469921 UP 12 +25469921 2048 255 +25469955 DOWN 12 +25469955 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25469988 homeCount = 36 +25469989 waitCount = 16 +25469990 ripCount = 17 +25469990 locktype1 = 1 +25469991 locktype2 = 1 +25469991 locktype3 = 2 +25469992 goalCount = 9 +25469992 goalTotal = 9 +25469993 otherCount = 22 +~~~ +25469994 CURRENTGOAL IS [2] +~~~ +25470055 UP 12 +25470055 2048 255 +25471638 DOWN 12 +25471638 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25471678 homeCount = 36 +25471679 waitCount = 16 +25471680 ripCount = 17 +25471680 locktype1 = 1 +25471681 locktype2 = 1 +25471681 locktype3 = 2 +25471682 goalCount = 9 +25471682 goalTotal = 9 +25471683 otherCount = 22 +~~~ +25471684 CURRENTGOAL IS [2] +~~~ +25474558 UP 2 +25474558 2 255 +~~~ +~~~ +25474587 outer reward +~~~ +25474588 2 131327 +~~~ +~~~ +25474593 outerreps = 7 +~~~ +~~~ +25474839 DOWN 2 +25474839 0 131327 +~~~ +~~~ +25474864 0 131326 +~~~ +~~~ +25474866 0 131324 +~~~ +~~~ +25474868 0 131320 +~~~ +~~~ +25474869 0 131312 +~~~ +~~~ +25474871 0 131296 +~~~ +~~~ +25474873 0 131264 +~~~ +~~~ +25474875 0 131200 +~~~ +~~~ +25474877 0 131072 +~~~ +~~~ +25474879 0 131584 +25474880 homeCount = 36 +25474880 waitCount = 16 +25474881 ripCount = 17 +25474901 locktype1 = 1 +25474902 locktype2 = 1 +25474902 locktype3 = 2 +25474903 goalCount = 0 +25474903 goalTotal = 10 +25474904 otherCount = 22 +~~~ +25474904 2 131584 +25475037 2 512 +25475141 DOWN 2 +25475141 0 512 +25475149 2 512 +25475254 DOWN 2 +25475254 0 512 +25475276 2 512 +25475378 DOWN 2 +25475378 0 512 +25475399 2 512 +25475501 DOWN 2 +25475501 0 512 +25475524 2 512 +25475623 DOWN 2 +25475623 0 512 +25475660 2 512 +25480617 DOWN 2 +25480617 0 512 +25480646 2 512 +25480707 DOWN 2 +25480707 0 512 +25484920 UP 10 +25484920 waslock = 0 +25484920 512 512 +~~~ +~~~ +~~~ +25484949 DOWN 10 +25484949 0 512 +~~~ +~~~ +25484951 0 16777728 +~~~ +~~~ +~~~ +25484971 0 16779776 +~~~ +~~~ +25484973 0 16779264 +25484974 homeCount = 37 +25484974 waitCount = 16 +25484975 ripCount = 17 +25484975 locktype1 = 1 +25484976 locktype2 = 1 +25484976 locktype3 = 2 +25484977 goalCount = 0 +25484977 goalTotal = 10 +25484978 otherCount = 22 +~~~ +25484999 UP 10 +25484999 waslock = 0 +25484999 512 16779264 +~~~ +25485101 DOWN 10 +25485101 0 16779264 +25485102 0 2048 +~~~ +~~~ +~~~ +25485124 UP 10 +25485125 waslock = 0 +25485124 512 2048 +~~~ +25485126 homeCount = 37 +25485127 waitCount = 16 +25485127 ripCount = 17 +25485128 locktype1 = 1 +25485128 locktype2 = 1 +25485129 locktype3 = 2 +25485129 goalCount = 0 +25485130 goalTotal = 10 +25485151 otherCount = 22 +~~~ +~~~ +25490231 DOWN 10 +25490231 0 2048 +~~~ +~~~ +~~~ +~~~ +25490257 homeCount = 37 +25490257 waitCount = 16 +25490258 ripCount = 17 +25490258 locktype1 = 1 +25490259 locktype2 = 1 +25490259 locktype3 = 2 +25490260 goalCount = 0 +25490260 goalTotal = 10 +25490261 otherCount = 22 +~~~ +25492166 UP 12 +25492166 2048 2048 +25496488 DOWN 12 +25496488 0 2048 +25496519 UP 12 +25496519 2048 2048 +25498167 CLICK1 +25498167 CLICK2 +~~~ +~~~ +~~~ +25498195 2048 67110912 +~~~ +25498345 2048 2048 +25504762 DOWN 12 +25504762 0 2048 +~~~ +~~~ +25504784 0 0 +~~~ +~~~ +25504786 0 1 +~~~ +~~~ +25504788 0 3 +~~~ +~~~ +25504790 0 7 +~~~ +~~~ +25504791 0 15 +~~~ +~~~ +25504793 0 31 +~~~ +~~~ +25504795 0 63 +~~~ +~~~ +25504797 0 127 +~~~ +~~~ +25504799 0 255 +25504800 homeCount = 37 +25504800 waitCount = 17 +25504801 ripCount = 17 +25504801 locktype1 = 1 +25504802 locktype2 = 1 +25504823 locktype3 = 2 +25504823 goalCount = 0 +25504824 goalTotal = 10 +25504824 otherCount = 22 +~~~ +25504825 CURRENTGOAL IS [3] +~~~ +25504829 UP 12 +25504829 2048 255 +25504904 DOWN 12 +25504904 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25504941 homeCount = 37 +25504941 waitCount = 17 +25504942 ripCount = 17 +25504942 locktype1 = 1 +25504943 locktype2 = 1 +25504943 locktype3 = 2 +25504944 goalCount = 0 +25504944 goalTotal = 10 +25504945 otherCount = 22 +~~~ +25504946 CURRENTGOAL IS [3] +~~~ +25504979 UP 12 +25504979 2048 255 +25505014 DOWN 12 +25505014 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25505051 homeCount = 37 +25505051 waitCount = 17 +25505052 ripCount = 17 +25505052 locktype1 = 1 +25505053 locktype2 = 1 +25505053 locktype3 = 2 +25505054 goalCount = 0 +25505054 goalTotal = 10 +25505055 otherCount = 22 +~~~ +25505056 CURRENTGOAL IS [3] +~~~ +25505126 UP 12 +25505126 2048 255 +25505144 DOWN 12 +25505144 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25505183 homeCount = 37 +25505184 waitCount = 17 +25505184 ripCount = 17 +25505185 locktype1 = 1 +25505186 locktype2 = 1 +25505186 locktype3 = 2 +25505187 goalCount = 0 +25505187 goalTotal = 10 +25505188 otherCount = 22 +~~~ +25505189 CURRENTGOAL IS [3] +~~~ +25505306 UP 12 +25505306 2048 255 +25506646 DOWN 12 +25506646 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25506682 homeCount = 37 +25506683 waitCount = 17 +25506683 ripCount = 17 +25506684 locktype1 = 1 +25506684 locktype2 = 1 +25506685 locktype3 = 2 +25506685 goalCount = 0 +25506686 goalTotal = 10 +25506686 otherCount = 22 +~~~ +25506687 CURRENTGOAL IS [3] +~~~ +25509308 UP 2 +25509308 2 255 +25509319 DOWN 2 +25509319 0 255 +~~~ +~~~ +~~~ +~~~ +25509347 0 254 +~~~ +~~~ +25509349 0 252 +~~~ +~~~ +25509351 0 248 +~~~ +~~~ +25509353 0 240 +~~~ +~~~ +25509354 0 224 +~~~ +~~~ +25509356 0 192 +~~~ +~~~ +25509358 0 128 +~~~ +~~~ +25509360 0 0 +~~~ +~~~ +25509362 0 512 +25509363 homeCount = 37 +25509363 waitCount = 17 +25509364 ripCount = 17 +25509364 locktype1 = 1 +25509386 locktype2 = 1 +25509386 locktype3 = 2 +25509387 goalCount = 0 +25509387 goalTotal = 10 +25509388 otherCount = 23 +~~~ +25509398 2 512 +25509552 DOWN 2 +25509552 0 512 +25509607 2 512 +25510174 DOWN 2 +25510174 0 512 +25513834 UP 10 +25513835 waslock = 0 +25513834 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25513865 512 16777728 +~~~ +25514015 512 512 +25517951 DOWN 10 +25517951 0 512 +~~~ +~~~ +25517967 0 1536 +~~~ +~~~ +25517969 0 1024 +25517970 homeCount = 38 +25517971 waitCount = 17 +25517971 ripCount = 17 +25517972 locktype1 = 1 +25517972 locktype2 = 1 +25517973 locktype3 = 2 +25517973 goalCount = 0 +25517974 goalTotal = 10 +25517974 otherCount = 23 +~~~ +25520064 UP 11 +25520064 1024 1024 +25521046 DOWN 11 +25521046 0 1024 +25521134 UP 11 +25521134 1024 1024 +25521986 DOWN 11 +25521986 0 1024 +25522013 UP 11 +25522013 1024 1024 +25527064 BEEP1 +25527064 BEEP2 +~~~ +~~~ +~~~ +25527092 1024 33555456 +~~~ +25527242 1024 1024 +25534001 DOWN 11 +25534001 0 1024 +~~~ +~~~ +25534020 0 0 +~~~ +~~~ +25534021 0 1 +~~~ +~~~ +25534023 0 3 +~~~ +~~~ +25534025 0 7 +~~~ +~~~ +25534027 0 15 +~~~ +~~~ +25534029 0 31 +~~~ +~~~ +25534030 0 63 +~~~ +~~~ +25534032 0 127 +~~~ +~~~ +25534034 0 255 +25534035 homeCount = 38 +25534036 waitCount = 17 +25534036 ripCount = 18 +25534037 locktype1 = 1 +25534037 locktype2 = 1 +25534058 locktype3 = 2 +25534059 goalCount = 0 +25534059 goalTotal = 10 +25534060 otherCount = 23 +~~~ +25534061 CURRENTGOAL IS [3] +~~~ +25536586 UP 6 +25536586 32 255 +~~~ +~~~ +25537282 DOWN 6 +25537282 0 255 +~~~ +~~~ +25537299 0 254 +~~~ +~~~ +25537301 0 252 +~~~ +~~~ +25537303 0 248 +~~~ +~~~ +25537305 0 240 +~~~ +~~~ +25537307 0 224 +~~~ +~~~ +25537308 0 192 +~~~ +~~~ +25537310 0 128 +~~~ +~~~ +25537312 0 0 +~~~ +~~~ +25537314 0 512 +25537315 homeCount = 38 +25537316 waitCount = 17 +25537316 ripCount = 18 +25537317 locktype1 = 1 +25537338 locktype2 = 1 +25537338 locktype3 = 2 +25537339 goalCount = 0 +25537339 goalTotal = 10 +25537340 otherCount = 24 +~~~ +25542032 UP 10 +25542033 waslock = 0 +25542032 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25542057 512 16777728 +~~~ +25542207 512 512 +25542256 DOWN 10 +25542256 0 512 +25542264 UP 10 +25542265 waslock = 0 +25542264 512 512 +~~~ +~~~ +25542284 512 1536 +~~~ +~~~ +25542286 512 1024 +25542287 homeCount = 39 +25542287 waitCount = 17 +25542288 ripCount = 18 +25542288 locktype1 = 1 +25542289 locktype2 = 1 +25542289 locktype3 = 2 +25542290 goalCount = 0 +25542290 goalTotal = 10 +25542291 otherCount = 24 +~~~ +~~~ +25545602 DOWN 10 +25545602 0 1024 +~~~ +~~~ +~~~ +~~~ +25545626 homeCount = 39 +25545626 waitCount = 17 +25545627 ripCount = 18 +25545627 locktype1 = 1 +25545628 locktype2 = 1 +25545628 locktype3 = 2 +25545629 goalCount = 0 +25545629 goalTotal = 10 +25545630 otherCount = 24 +~~~ +25545632 UP 10 +25545632 waslock = 0 +25545632 512 1024 +~~~ +25545696 DOWN 10 +25545696 0 1024 +~~~ +~~~ +~~~ +~~~ +25545720 homeCount = 39 +25545721 waitCount = 17 +25545721 ripCount = 18 +25545722 locktype1 = 1 +25545722 locktype2 = 1 +25545723 locktype3 = 2 +25545723 goalCount = 0 +25545724 goalTotal = 10 +25545724 otherCount = 24 +~~~ +25549079 UP 11 +25549079 1024 1024 +25549392 DOWN 11 +25549392 0 1024 +25549592 LOCKOUT 3 +~~~ +25549617 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +25549620 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25549678 UP 11 +25549678 1024 0 +25549870 DOWN 11 +25549870 0 0 +25557733 UP 1 +25557733 1 0 +25558031 DOWN 1 +25558031 0 0 +25560934 1 0 +25560938 DOWN 1 +25560938 0 0 +25569322 512 0 +25569441 0 0 +25571157 512 0 +25571190 0 0 +25574617 LOCKEND +~~~ +~~~ +~~~ +25574638 0 512 +25577445 UP 3 +25577445 4 512 +25577923 DOWN 3 +25577923 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25577963 homeCount = 39 +25577963 waitCount = 17 +25577964 ripCount = 18 +25577964 locktype1 = 1 +25577965 locktype2 = 1 +25577965 locktype3 = 3 +25577966 goalCount = 0 +25577966 goalTotal = 10 +25577967 otherCount = 24 +~~~ +25578067 4 512 +25578092 DOWN 3 +25578092 0 512 +25585413 UP 10 +25585413 waslock = 0 +25585413 512 512 +~~~ +~~~ +25585438 DOWN 10 +25585438 0 512 +~~~ +~~~ +~~~ +25585443 0 16777728 +~~~ +~~~ +~~~ +25585465 0 16778752 +~~~ +~~~ +25585467 0 16778240 +25585468 homeCount = 40 +25585468 waitCount = 17 +25585469 ripCount = 18 +25585469 locktype1 = 1 +25585470 locktype2 = 1 +25585470 locktype3 = 3 +25585471 goalCount = 0 +25585471 goalTotal = 10 +25585472 otherCount = 24 +~~~ +25585592 0 1024 +25585685 UP 10 +25585686 waslock = 0 +25585685 512 1024 +~~~ +25590182 DOWN 10 +25590182 0 1024 +~~~ +~~~ +~~~ +~~~ +25590209 homeCount = 40 +25590210 waitCount = 17 +25590210 ripCount = 18 +25590211 locktype1 = 1 +25590211 locktype2 = 1 +25590212 locktype3 = 3 +25590212 goalCount = 0 +25590213 goalTotal = 10 +25590213 otherCount = 24 +~~~ +25609245 UP 8 +25609245 128 1024 +25609250 DOWN 8 +25609250 0 1024 +~~~ +25609266 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +25609270 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25615729 128 0 +25617512 DOWN 8 +25617512 0 0 +25618844 128 0 +25619296 DOWN 8 +25619296 0 0 +25625955 512 0 +25626331 0 0 +25626436 512 0 +25626571 0 0 +25626586 512 0 +25626882 0 0 +25627022 512 0 +25627063 0 0 +25627287 512 0 +25627295 0 0 +25627379 512 0 +25627437 0 0 +25630940 512 0 +25631248 0 0 +25634266 LOCKEND +~~~ +~~~ +~~~ +25634286 0 512 +25659806 UP 10 +25659806 waslock = 0 +25659806 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25659833 512 16777728 +~~~ +25659979 DOWN 10 +25659979 0 16777728 +25659983 0 512 +~~~ +~~~ +25660007 0 2560 +~~~ +~~~ +25660009 0 2048 +25660010 homeCount = 41 +25660010 waitCount = 17 +25660011 ripCount = 18 +25660011 locktype1 = 1 +25660012 locktype2 = 2 +25660012 locktype3 = 3 +25660013 goalCount = 0 +25660013 goalTotal = 10 +25660014 otherCount = 24 +~~~ +25660095 UP 10 +25660096 waslock = 0 +25660095 512 2048 +~~~ +25660160 DOWN 10 +25660160 0 2048 +~~~ +~~~ +~~~ +~~~ +25660189 homeCount = 41 +25660190 waitCount = 17 +25660190 ripCount = 18 +25660191 locktype1 = 1 +25660191 locktype2 = 2 +25660192 locktype3 = 3 +25660192 goalCount = 0 +25660193 goalTotal = 10 +25660193 otherCount = 24 +~~~ +25660261 UP 10 +25660261 waslock = 0 +25660261 512 2048 +~~~ +25660934 DOWN 10 +25660934 0 2048 +25660947 UP 10 +25660947 waslock = 0 +25660947 512 2048 +~~~ +~~~ +~~~ +~~~ +25660969 homeCount = 41 +25660970 waitCount = 17 +25660970 ripCount = 18 +25660971 locktype1 = 1 +25660971 locktype2 = 2 +25660972 locktype3 = 3 +25660972 goalCount = 0 +25660973 goalTotal = 10 +25660973 otherCount = 24 +~~~ +~~~ +25666236 DOWN 10 +25666236 0 2048 +~~~ +~~~ +~~~ +~~~ +25666259 homeCount = 41 +25666259 waitCount = 17 +25666260 ripCount = 18 +25666260 locktype1 = 1 +25666261 locktype2 = 2 +25666261 locktype3 = 3 +25666262 goalCount = 0 +25666262 goalTotal = 10 +25666263 otherCount = 24 +~~~ +25666276 UP 10 +25666277 waslock = 0 +25666276 512 2048 +~~~ +25666339 DOWN 10 +25666339 0 2048 +~~~ +~~~ +~~~ +~~~ +25666369 homeCount = 41 +25666370 waitCount = 17 +25666370 ripCount = 18 +25666371 locktype1 = 1 +25666371 locktype2 = 2 +25666372 locktype3 = 3 +25666372 goalCount = 0 +25666373 goalTotal = 10 +25666373 otherCount = 24 +~~~ +25685376 UP 12 +25685376 2048 2048 +25686651 DOWN 12 +25686651 0 2048 +25686705 UP 12 +25686705 2048 2048 +25686732 DOWN 12 +25686732 0 2048 +25686786 UP 12 +25686786 2048 2048 +25688376 CLICK1 +25688376 CLICK2 +~~~ +~~~ +~~~ +25688399 2048 67110912 +~~~ +25688549 2048 2048 +25694671 DOWN 12 +25694671 0 2048 +~~~ +~~~ +25694697 0 0 +~~~ +~~~ +25694699 0 1 +~~~ +~~~ +25694701 0 3 +~~~ +~~~ +25694703 0 7 +~~~ +~~~ +25694705 0 15 +~~~ +~~~ +25694706 0 31 +~~~ +~~~ +25694708 0 63 +~~~ +~~~ +25694710 0 127 +~~~ +~~~ +25694712 0 255 +25694713 homeCount = 41 +25694713 waitCount = 18 +25694714 ripCount = 18 +25694714 locktype1 = 1 +25694715 locktype2 = 2 +25694736 locktype3 = 3 +25694736 goalCount = 0 +25694737 goalTotal = 10 +25694737 otherCount = 24 +~~~ +25694738 CURRENTGOAL IS [3] +~~~ +25698435 UP 2 +25698435 2 255 +~~~ +~~~ +25698854 DOWN 2 +25698854 0 255 +~~~ +~~~ +25698879 0 254 +~~~ +~~~ +25698881 0 252 +~~~ +~~~ +25698882 0 248 +~~~ +~~~ +25698884 0 240 +~~~ +~~~ +25698886 0 224 +~~~ +~~~ +25698888 0 192 +~~~ +~~~ +25698890 0 128 +~~~ +~~~ +25698891 0 0 +~~~ +~~~ +25698893 0 512 +25698894 homeCount = 41 +25698895 waitCount = 18 +25698895 ripCount = 18 +25698896 locktype1 = 1 +25698917 locktype2 = 2 +25698918 locktype3 = 3 +25698918 goalCount = 0 +25698919 goalTotal = 10 +25698919 otherCount = 25 +~~~ +25698948 2 512 +25699154 DOWN 2 +25699154 0 512 +25703394 UP 10 +25703394 waslock = 0 +25703394 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25703424 512 16777728 +~~~ +25703574 512 512 +25708617 DOWN 10 +25708617 0 512 +~~~ +~~~ +25708639 0 2560 +~~~ +~~~ +25708641 0 2048 +25708642 homeCount = 42 +25708642 waitCount = 18 +25708643 ripCount = 18 +25708643 locktype1 = 1 +25708644 locktype2 = 2 +25708644 locktype3 = 3 +25708645 goalCount = 0 +25708645 goalTotal = 10 +25708646 otherCount = 25 +~~~ +25708690 UP 10 +25708690 waslock = 0 +25708690 512 2048 +25708696 DOWN 10 +25708696 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +25708728 homeCount = 42 +25708728 waitCount = 18 +25708729 ripCount = 18 +25708729 locktype1 = 1 +25708730 locktype2 = 2 +25708730 locktype3 = 3 +25708731 goalCount = 0 +25708731 goalTotal = 10 +25708732 otherCount = 25 +~~~ +25711186 UP 12 +25711186 2048 2048 +25712394 DOWN 12 +25712394 0 2048 +25712398 UP 12 +25712398 2048 2048 +25713214 DOWN 12 +25713214 0 2048 +25713244 UP 12 +25713244 2048 2048 +25715186 CLICK1 +25715186 CLICK2 +~~~ +~~~ +~~~ +25715209 2048 67110912 +~~~ +25715359 2048 2048 +25721807 DOWN 12 +25721807 0 2048 +~~~ +~~~ +25721829 0 0 +~~~ +~~~ +25721830 0 1 +~~~ +~~~ +25721832 0 3 +~~~ +~~~ +25721834 0 7 +~~~ +~~~ +25721836 0 15 +~~~ +~~~ +25721838 0 31 +~~~ +~~~ +25721840 0 63 +~~~ +~~~ +25721841 0 127 +~~~ +~~~ +25721843 0 255 +25721844 homeCount = 42 +25721845 waitCount = 19 +25721845 ripCount = 18 +25721846 locktype1 = 1 +25721846 locktype2 = 2 +25721867 locktype3 = 3 +25721868 goalCount = 0 +25721868 goalTotal = 10 +25721869 otherCount = 25 +~~~ +25721870 CURRENTGOAL IS [3] +~~~ +25726763 UP 3 +25726762 4 255 +~~~ +~~~ +25726783 outer reward +~~~ +25726783 4 262399 +~~~ +~~~ +25727233 4 255 +25734068 DOWN 3 +25734068 0 255 +~~~ +~~~ +25734091 0 254 +~~~ +~~~ +25734093 0 252 +~~~ +~~~ +25734094 0 248 +~~~ +~~~ +25734096 0 240 +~~~ +~~~ +25734098 0 224 +~~~ +~~~ +25734100 0 192 +~~~ +~~~ +25734102 0 128 +~~~ +~~~ +25734104 0 0 +~~~ +~~~ +25734105 0 512 +25734106 homeCount = 42 +25734107 waitCount = 19 +25734107 ripCount = 18 +25734108 locktype1 = 1 +25734108 locktype2 = 2 +25734129 locktype3 = 3 +25734130 goalCount = 1 +25734130 goalTotal = 11 +25734131 otherCount = 25 +~~~ +25738531 UP 10 +25738531 waslock = 0 +25738531 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25738557 512 16777728 +~~~ +25738707 512 512 +25738767 DOWN 10 +25738767 0 512 +25738784 UP 10 +25738784 waslock = 0 +25738784 512 512 +~~~ +~~~ +25738803 512 1536 +~~~ +~~~ +25738805 512 1024 +25738806 homeCount = 43 +25738806 waitCount = 19 +25738807 ripCount = 18 +25738807 locktype1 = 1 +25738808 locktype2 = 2 +25738808 locktype3 = 3 +25738809 goalCount = 1 +25738809 goalTotal = 11 +25738810 otherCount = 25 +~~~ +~~~ +25742304 DOWN 10 +25742304 0 1024 +~~~ +~~~ +~~~ +~~~ +25742326 homeCount = 43 +25742327 waitCount = 19 +25742327 ripCount = 18 +25742328 locktype1 = 1 +25742328 locktype2 = 2 +25742329 locktype3 = 3 +25742329 goalCount = 1 +25742330 goalTotal = 11 +25742330 otherCount = 25 +~~~ +25744264 UP 11 +25744264 1024 1024 +25746728 DOWN 11 +25746728 0 1024 +25746745 UP 11 +25746745 1024 1024 +25748072 DOWN 11 +25748072 0 1024 +25748099 UP 11 +25748099 1024 1024 +25748764 BEEP1 +25748764 BEEP2 +~~~ +~~~ +~~~ +25748784 1024 33555456 +~~~ +25748934 1024 1024 +25755625 DOWN 11 +25755625 0 1024 +~~~ +~~~ +25755651 0 0 +~~~ +~~~ +25755653 0 1 +~~~ +25755654 UP 11 +25755654 1024 1 +~~~ +~~~ +25755656 1024 3 +~~~ +~~~ +25755657 1024 7 +~~~ +25755658 1024 15 +~~~ +~~~ +25755660 1024 31 +~~~ +~~~ +25755662 1024 63 +~~~ +~~~ +25755663 1024 127 +~~~ +~~~ +25755665 1024 255 +25755666 homeCount = 43 +25755688 waitCount = 19 +25755688 ripCount = 19 +25755689 locktype1 = 1 +25755689 locktype2 = 2 +25755690 locktype3 = 3 +25755690 goalCount = 1 +25755691 goalTotal = 11 +25755691 otherCount = 25 +~~~ +25755692 CURRENTGOAL IS [3] +~~~ +25755708 DOWN 11 +25755708 0 255 +25755722 UP 11 +25755722 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25755751 homeCount = 43 +25755751 waitCount = 19 +25755752 ripCount = 19 +25755753 locktype1 = 1 +25755753 locktype2 = 2 +25755754 locktype3 = 3 +25755754 goalCount = 1 +25755755 goalTotal = 11 +25755755 otherCount = 25 +~~~ +25755756 CURRENTGOAL IS [3] +~~~ +25758703 DOWN 11 +25758703 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25758737 homeCount = 43 +25758737 waitCount = 19 +25758738 ripCount = 19 +25758738 locktype1 = 1 +25758739 locktype2 = 2 +25758739 locktype3 = 3 +25758740 goalCount = 1 +25758740 goalTotal = 11 +25758741 otherCount = 25 +~~~ +25758742 CURRENTGOAL IS [3] +~~~ +25762427 UP 2 +25762427 2 255 +~~~ +~~~ +25763276 DOWN 2 +25763276 0 255 +~~~ +~~~ +25763302 0 254 +~~~ +~~~ +25763304 0 252 +~~~ +~~~ +25763306 0 248 +~~~ +~~~ +25763307 0 240 +~~~ +~~~ +25763309 0 224 +~~~ +~~~ +25763311 0 192 +~~~ +~~~ +25763313 0 128 +~~~ +~~~ +25763315 0 0 +~~~ +~~~ +25763317 0 512 +25763318 homeCount = 43 +25763318 waitCount = 19 +25763319 ripCount = 19 +25763319 locktype1 = 1 +25763320 locktype2 = 2 +25763341 locktype3 = 3 +25763341 goalCount = 1 +25763342 goalTotal = 11 +25763342 otherCount = 26 +~~~ +25763466 2 512 +25763664 DOWN 2 +25763664 0 512 +25768061 UP 10 +25768061 waslock = 0 +25768061 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25768092 512 16777728 +~~~ +25768220 DOWN 10 +25768220 0 16777728 +~~~ +25768242 0 512 +~~~ +25768243 0 1536 +~~~ +~~~ +25768244 0 1024 +25768245 homeCount = 44 +25768246 waitCount = 19 +25768246 ripCount = 19 +25768247 locktype1 = 1 +25768247 locktype2 = 2 +25768248 locktype3 = 3 +25768248 goalCount = 1 +25768249 goalTotal = 11 +25768270 otherCount = 26 +~~~ +25768271 UP 10 +25768271 waslock = 0 +25768271 512 1024 +~~~ +25771738 DOWN 10 +25771738 0 1024 +~~~ +~~~ +~~~ +~~~ +25771767 homeCount = 44 +25771768 waitCount = 19 +25771768 ripCount = 19 +25771769 locktype1 = 1 +25771769 locktype2 = 2 +25771770 locktype3 = 3 +25771770 goalCount = 1 +25771771 goalTotal = 11 +25771771 otherCount = 26 +~~~ +25773584 UP 11 +25773584 1024 1024 +25778369 DOWN 11 +25778369 0 1024 +25778378 UP 11 +25778378 1024 1024 +25781584 BEEP1 +25781584 BEEP2 +~~~ +~~~ +~~~ +25781606 1024 33555456 +~~~ +25781756 1024 1024 +25787347 DOWN 11 +25787347 0 1024 +~~~ +~~~ +25787363 0 0 +~~~ +~~~ +25787365 0 1 +~~~ +~~~ +25787367 0 3 +~~~ +~~~ +25787369 0 7 +~~~ +~~~ +25787370 0 15 +~~~ +~~~ +25787372 0 31 +~~~ +~~~ +25787374 0 63 +~~~ +~~~ +25787376 0 127 +~~~ +~~~ +25787378 0 255 +25787379 homeCount = 44 +25787379 waitCount = 19 +25787380 ripCount = 20 +25787380 locktype1 = 1 +25787381 locktype2 = 2 +25787402 locktype3 = 3 +25787402 goalCount = 1 +25787403 goalTotal = 11 +25787403 otherCount = 26 +~~~ +25787404 CURRENTGOAL IS [3] +~~~ +25790514 UP 6 +25790514 32 255 +~~~ +~~~ +25791449 DOWN 6 +25791449 0 255 +~~~ +~~~ +25791474 0 254 +~~~ +~~~ +25791476 0 252 +~~~ +~~~ +25791477 0 248 +~~~ +~~~ +25791479 0 240 +~~~ +~~~ +25791481 0 224 +~~~ +~~~ +25791483 0 192 +~~~ +~~~ +25791485 0 128 +~~~ +~~~ +25791486 0 0 +~~~ +~~~ +25791488 0 512 +25791489 homeCount = 44 +25791490 waitCount = 19 +25791490 ripCount = 20 +25791491 locktype1 = 1 +25791491 locktype2 = 2 +25791512 locktype3 = 3 +25791513 goalCount = 1 +25791513 goalTotal = 11 +25791514 otherCount = 27 +~~~ +25795603 UP 10 +25795603 waslock = 0 +25795603 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25795630 512 16777728 +~~~ +25795780 512 512 +25795823 DOWN 10 +25795823 0 512 +~~~ +~~~ +25795843 0 2560 +~~~ +~~~ +25795845 0 2048 +25795846 homeCount = 45 +25795846 waitCount = 19 +25795847 ripCount = 20 +25795847 locktype1 = 1 +25795848 locktype2 = 2 +25795848 locktype3 = 3 +25795849 goalCount = 1 +25795849 goalTotal = 11 +25795850 otherCount = 27 +~~~ +25796003 UP 10 +25796003 waslock = 0 +25796003 512 2048 +~~~ +25801292 DOWN 10 +25801292 0 2048 +~~~ +~~~ +~~~ +~~~ +25801318 homeCount = 45 +25801318 waitCount = 19 +25801319 ripCount = 20 +25801319 locktype1 = 1 +25801320 locktype2 = 2 +25801320 locktype3 = 3 +25801321 goalCount = 1 +25801321 goalTotal = 11 +25801322 otherCount = 27 +~~~ +25803540 UP 12 +25803540 2048 2048 +25805479 DOWN 12 +25805479 0 2048 +25805510 UP 12 +25805510 2048 2048 +25805675 DOWN 12 +25805675 0 2048 +25805730 UP 12 +25805730 2048 2048 +25806962 DOWN 12 +25806962 0 2048 +25806974 UP 12 +25806974 2048 2048 +25807043 DOWN 12 +25807043 0 2048 +25807214 UP 12 +25807214 2048 2048 +25807283 DOWN 12 +25807283 0 2048 +25807346 UP 12 +25807346 2048 2048 +25809540 CLICK1 +25809540 CLICK2 +~~~ +~~~ +~~~ +25809566 2048 67110912 +~~~ +25809716 2048 2048 +25815767 DOWN 12 +25815767 0 2048 +~~~ +~~~ +25815784 0 0 +~~~ +~~~ +25815786 0 1 +~~~ +~~~ +25815788 0 3 +~~~ +~~~ +25815789 0 7 +~~~ +25815791 UP 12 +25815791 2048 7 +~~~ +~~~ +25815793 2048 15 +~~~ +~~~ +25815794 2048 31 +~~~ +25815795 2048 63 +~~~ +~~~ +25815797 2048 127 +~~~ +~~~ +25815798 2048 255 +25815800 homeCount = 45 +25815821 waitCount = 20 +25815821 ripCount = 20 +25815822 locktype1 = 1 +25815822 locktype2 = 2 +25815823 locktype3 = 3 +25815823 goalCount = 1 +25815824 goalTotal = 11 +25815824 otherCount = 27 +~~~ +25815825 CURRENTGOAL IS [3] +~~~ +25815864 DOWN 12 +25815864 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25815903 homeCount = 45 +25815903 waitCount = 20 +25815904 ripCount = 20 +25815904 locktype1 = 1 +25815905 locktype2 = 2 +25815905 locktype3 = 3 +25815906 goalCount = 1 +25815906 goalTotal = 11 +25815907 otherCount = 27 +~~~ +25815908 CURRENTGOAL IS [3] +~~~ +25819190 UP 2 +25819190 2 255 +~~~ +~~~ +25820057 DOWN 2 +25820057 0 255 +~~~ +~~~ +25820079 0 254 +~~~ +~~~ +25820081 0 252 +~~~ +~~~ +25820083 0 248 +~~~ +~~~ +25820084 0 240 +~~~ +~~~ +25820086 0 224 +~~~ +~~~ +25820088 0 192 +~~~ +~~~ +25820090 0 128 +~~~ +~~~ +25820092 0 0 +~~~ +~~~ +25820094 0 512 +25820095 homeCount = 45 +25820095 waitCount = 20 +25820096 ripCount = 20 +25820096 locktype1 = 1 +25820097 locktype2 = 2 +25820118 locktype3 = 3 +25820118 goalCount = 1 +25820119 goalTotal = 11 +25820119 otherCount = 28 +~~~ +25820242 2 512 +25820365 DOWN 2 +25820365 0 512 +25823770 UP 10 +25823770 waslock = 0 +25823769 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25823798 512 16777728 +~~~ +25823948 512 512 +25823994 DOWN 10 +25823994 0 512 +~~~ +~~~ +25824011 0 2560 +~~~ +~~~ +25824013 0 2048 +25824014 homeCount = 46 +25824015 waitCount = 20 +25824015 ripCount = 20 +25824016 locktype1 = 1 +25824016 locktype2 = 2 +25824017 locktype3 = 3 +25824017 goalCount = 1 +25824018 goalTotal = 11 +25824018 otherCount = 28 +~~~ +25824040 UP 10 +25824040 waslock = 0 +25824040 512 2048 +~~~ +25829907 DOWN 10 +25829907 0 2048 +~~~ +~~~ +~~~ +~~~ +25829936 homeCount = 46 +25829936 waitCount = 20 +25829937 ripCount = 20 +25829937 locktype1 = 1 +25829938 locktype2 = 2 +25829938 locktype3 = 3 +25829939 goalCount = 1 +25829939 goalTotal = 11 +25829940 otherCount = 28 +~~~ +25831818 UP 12 +25831818 2048 2048 +25834819 CLICK1 +25834819 CLICK2 +~~~ +~~~ +~~~ +25834844 2048 67110912 +~~~ +25834994 2048 2048 +25840649 DOWN 12 +25840649 0 2048 +~~~ +~~~ +25840671 0 0 +~~~ +~~~ +25840673 0 1 +~~~ +~~~ +25840675 0 3 +~~~ +~~~ +25840677 0 7 +~~~ +~~~ +25840678 0 15 +~~~ +~~~ +25840680 0 31 +~~~ +~~~ +25840682 0 63 +~~~ +~~~ +25840684 0 127 +~~~ +~~~ +25840686 0 255 +25840687 homeCount = 46 +25840687 waitCount = 21 +25840688 ripCount = 20 +25840688 locktype1 = 1 +25840689 locktype2 = 2 +25840709 locktype3 = 3 +25840710 goalCount = 1 +25840710 goalTotal = 11 +25840711 otherCount = 28 +~~~ +25840712 CURRENTGOAL IS [3] +~~~ +25840713 UP 12 +25840712 2048 255 +25840753 DOWN 12 +25840753 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25840790 homeCount = 46 +25840791 waitCount = 21 +25840791 ripCount = 20 +25840792 locktype1 = 1 +25840792 locktype2 = 2 +25840793 locktype3 = 3 +25840793 goalCount = 1 +25840794 goalTotal = 11 +25840794 otherCount = 28 +~~~ +25840795 CURRENTGOAL IS [3] +~~~ +25846229 UP 3 +25846229 4 255 +~~~ +~~~ +25846247 outer reward +~~~ +25846248 4 262399 +~~~ +~~~ +25846289 DOWN 3 +25846289 0 262399 +25846303 4 262399 +~~~ +~~~ +25846306 4 262398 +~~~ +~~~ +25846308 4 262396 +~~~ +~~~ +25846310 4 262392 +~~~ +~~~ +25846311 4 262384 +~~~ +~~~ +25846313 4 262368 +~~~ +~~~ +25846315 4 262336 +~~~ +~~~ +25846317 4 262272 +~~~ +~~~ +25846319 4 262144 +~~~ +~~~ +25846321 4 262656 +25846322 homeCount = 46 +25846322 waitCount = 21 +25846323 ripCount = 20 +25846343 locktype1 = 1 +25846344 locktype2 = 2 +25846344 locktype3 = 3 +25846345 goalCount = 2 +25846345 goalTotal = 12 +25846346 otherCount = 28 +~~~ +25846482 DOWN 3 +25846482 0 262656 +25846517 4 262656 +25846697 4 512 +25846875 DOWN 3 +25846875 0 512 +25846903 4 512 +25846998 DOWN 3 +25846998 0 512 +25847030 4 512 +25847129 DOWN 3 +25847129 0 512 +25847156 4 512 +25847253 DOWN 3 +25847253 0 512 +25847287 4 512 +25847385 DOWN 3 +25847385 0 512 +25847417 4 512 +25847522 DOWN 3 +25847522 0 512 +25847548 4 512 +25847656 DOWN 3 +25847656 0 512 +25847682 4 512 +25847794 DOWN 3 +25847794 0 512 +25847816 4 512 +25847942 DOWN 3 +25847942 0 512 +25847958 4 512 +25848087 DOWN 3 +25848087 0 512 +25848099 4 512 +25853342 DOWN 3 +25853342 0 512 +25853409 4 512 +25853445 DOWN 3 +25853445 0 512 +25911695 UP 10 +25911695 waslock = 0 +25911695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25911722 512 16777728 +~~~ +25911797 DOWN 10 +25911797 0 16777728 +~~~ +~~~ +25911816 0 16779776 +~~~ +~~~ +25911818 0 16779264 +25911819 homeCount = 47 +25911820 waitCount = 21 +25911820 ripCount = 20 +25911821 locktype1 = 1 +25911821 locktype2 = 2 +25911822 locktype3 = 3 +25911822 goalCount = 2 +25911823 goalTotal = 12 +25911823 otherCount = 28 +~~~ +25911872 0 2048 +25911895 UP 10 +25911895 waslock = 0 +25911895 512 2048 +~~~ +25915776 DOWN 10 +25915776 0 2048 +~~~ +~~~ +~~~ +~~~ +25915802 homeCount = 47 +25915802 waitCount = 21 +25915803 ripCount = 20 +25915803 locktype1 = 1 +25915804 locktype2 = 2 +25915804 locktype3 = 3 +25915805 goalCount = 2 +25915805 goalTotal = 12 +25915806 otherCount = 28 +~~~ +25915830 UP 10 +25915830 waslock = 0 +25915830 512 2048 +25915843 DOWN 10 +25915843 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +25915863 homeCount = 47 +25915864 waitCount = 21 +25915864 ripCount = 20 +25915865 locktype1 = 1 +25915865 locktype2 = 2 +25915866 locktype3 = 3 +25915866 goalCount = 2 +25915867 goalTotal = 12 +25915867 otherCount = 28 +~~~ +25917690 UP 12 +25917690 2048 2048 +25918023 DOWN 12 +25918023 0 2048 +25918224 LOCKOUT 3 +~~~ +25918241 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25918247 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25929828 UP 3 +25929828 4 0 +25930022 DOWN 3 +25930022 0 0 +25930052 4 0 +25930295 DOWN 3 +25930295 0 0 +25930361 4 0 +25930673 DOWN 3 +25930673 0 0 +25930706 4 0 +25930744 DOWN 3 +25930744 0 0 +25942332 UP 5 +25942332 16 0 +25942648 DOWN 5 +25942648 0 0 +25942755 16 0 +25943167 DOWN 5 +25943166 0 0 +25943232 16 0 +25943241 LOCKEND +25943251 DOWN 5 +25943251 0 0 +~~~ +~~~ +~~~ +25943255 0 512 +26002769 UP 10 +26002770 waslock = 0 +26002769 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26002799 512 16777728 +~~~ +26002899 DOWN 10 +26002899 0 16777728 +26002914 UP 10 +26002914 waslock = 0 +26002914 512 16777728 +~~~ +~~~ +26002925 512 16778752 +~~~ +~~~ +26002927 512 16778240 +26002928 homeCount = 48 +26002928 waitCount = 21 +26002929 ripCount = 20 +26002929 locktype1 = 1 +26002930 locktype2 = 2 +26002930 locktype3 = 4 +26002931 goalCount = 2 +26002931 goalTotal = 12 +26002932 otherCount = 28 +~~~ +~~~ +26002954 512 1024 +26003187 DOWN 10 +26003187 0 1024 +~~~ +~~~ +~~~ +~~~ +26003216 homeCount = 48 +26003216 waitCount = 21 +26003217 ripCount = 20 +26003217 locktype1 = 1 +26003218 locktype2 = 2 +26003218 locktype3 = 4 +26003219 goalCount = 2 +26003219 goalTotal = 12 +26003220 otherCount = 28 +~~~ +26003230 UP 10 +26003230 waslock = 0 +26003230 512 1024 +~~~ +26003679 DOWN 10 +26003679 0 1024 +26003691 UP 10 +26003691 waslock = 0 +26003691 512 1024 +~~~ +~~~ +~~~ +~~~ +26003719 homeCount = 48 +26003719 waitCount = 21 +26003720 ripCount = 20 +26003721 locktype1 = 1 +26003721 locktype2 = 2 +26003722 locktype3 = 4 +26003722 goalCount = 2 +26003723 goalTotal = 12 +26003723 otherCount = 28 +~~~ +~~~ +26003834 DOWN 10 +26003834 0 1024 +26003848 UP 10 +26003848 waslock = 0 +26003848 512 1024 +~~~ +~~~ +~~~ +~~~ +26003862 homeCount = 48 +26003863 waitCount = 21 +26003863 ripCount = 20 +26003864 locktype1 = 1 +26003864 locktype2 = 2 +26003865 locktype3 = 4 +26003865 goalCount = 2 +26003866 goalTotal = 12 +26003866 otherCount = 28 +~~~ +~~~ +26003992 DOWN 10 +26003992 0 1024 +26004002 UP 10 +26004003 waslock = 0 +26004002 512 1024 +~~~ +~~~ +~~~ +~~~ +26004018 homeCount = 48 +26004018 waitCount = 21 +26004019 ripCount = 20 +26004020 locktype1 = 1 +26004020 locktype2 = 2 +26004021 locktype3 = 4 +26004021 goalCount = 2 +26004022 goalTotal = 12 +26004022 otherCount = 28 +~~~ +~~~ +26007545 DOWN 10 +26007545 0 1024 +26007568 UP 10 +26007568 waslock = 0 +26007568 512 1024 +~~~ +~~~ +~~~ +~~~ +26007576 homeCount = 48 +26007576 waitCount = 21 +26007577 ripCount = 20 +26007577 locktype1 = 1 +26007578 locktype2 = 2 +26007578 locktype3 = 4 +26007579 goalCount = 2 +26007579 goalTotal = 12 +26007580 otherCount = 28 +~~~ +~~~ +26007655 DOWN 10 +26007655 0 1024 +~~~ +~~~ +~~~ +~~~ +26007677 homeCount = 48 +26007677 waitCount = 21 +26007678 ripCount = 20 +26007679 locktype1 = 1 +26007679 locktype2 = 2 +26007680 locktype3 = 4 +26007680 goalCount = 2 +26007681 goalTotal = 12 +26007681 otherCount = 28 +~~~ +26043997 UP 10 +26043997 waslock = 0 +26043997 512 1024 +~~~ +26044753 DOWN 10 +26044753 0 1024 +~~~ +~~~ +~~~ +~~~ +26044775 homeCount = 48 +26044776 waitCount = 21 +26044776 ripCount = 20 +26044777 locktype1 = 1 +26044777 locktype2 = 2 +26044778 locktype3 = 4 +26044778 goalCount = 2 +26044779 goalTotal = 12 +26044779 otherCount = 28 +~~~ +26046836 UP 11 +26046836 1024 1024 +26047796 DOWN 11 +26047796 0 1024 +26047996 LOCKOUT 3 +~~~ +26048015 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26048019 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26048033 UP 11 +26048033 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +26048065 DOWN 11 +26048065 0 0 +26048110 UP 11 +26048110 1024 0 +26048521 DOWN 11 +26048521 0 0 +26048580 UP 11 +26048580 1024 0 +26050905 DOWN 11 +26050905 0 0 +26050915 UP 11 +26050915 1024 0 +26054064 DOWN 11 +26054064 0 0 +26054111 UP 11 +26054111 1024 0 +26055170 DOWN 11 +26055170 0 0 +26055174 UP 11 +26055174 1024 0 +26060757 DOWN 11 +26060757 0 0 +26065042 UP 8 +26065042 128 0 +26065099 DOWN 8 +26065099 0 0 +26065152 128 0 +26065553 DOWN 8 +26065553 0 0 +26073015 LOCKEND +~~~ +~~~ +~~~ +26073040 0 512 +26074095 UP 10 +26074095 waslock = 0 +26074095 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26074124 512 16777728 +~~~ +26074274 512 512 +26074286 DOWN 10 +26074286 0 512 +~~~ +~~~ +26074307 0 1536 +~~~ +~~~ +26074309 0 1024 +26074310 homeCount = 49 +26074311 waitCount = 21 +26074311 ripCount = 20 +26074312 locktype1 = 1 +26074312 locktype2 = 2 +26074313 locktype3 = 5 +26074313 goalCount = 2 +26074314 goalTotal = 12 +26074314 otherCount = 28 +~~~ +26074335 UP 10 +26074336 waslock = 0 +26074335 512 1024 +~~~ +26079241 DOWN 10 +26079241 0 1024 +26079255 UP 10 +26079255 waslock = 0 +26079255 512 1024 +~~~ +~~~ +~~~ +~~~ +26079262 homeCount = 49 +26079262 waitCount = 21 +26079263 ripCount = 20 +26079263 locktype1 = 1 +26079264 locktype2 = 2 +26079264 locktype3 = 5 +26079265 goalCount = 2 +26079265 goalTotal = 12 +26079266 otherCount = 28 +~~~ +~~~ +26079356 DOWN 10 +26079356 0 1024 +~~~ +~~~ +~~~ +~~~ +26079382 homeCount = 49 +26079382 waitCount = 21 +26079383 ripCount = 20 +26079383 locktype1 = 1 +26079384 locktype2 = 2 +26079384 locktype3 = 5 +26079385 goalCount = 2 +26079385 goalTotal = 12 +26079386 otherCount = 28 +~~~ +26079397 UP 10 +26079398 waslock = 0 +26079397 512 1024 +~~~ +26079458 DOWN 10 +26079458 0 1024 +~~~ +~~~ +~~~ +~~~ +26079482 homeCount = 49 +26079482 waitCount = 21 +26079483 ripCount = 20 +26079483 locktype1 = 1 +26079484 locktype2 = 2 +26079484 locktype3 = 5 +26079485 goalCount = 2 +26079485 goalTotal = 12 +26079486 otherCount = 28 +~~~ +26082385 UP 11 +26082384 1024 1024 +26086385 BEEP1 +26086385 BEEP2 +~~~ +~~~ +~~~ +26086410 1024 33555456 +~~~ +26086560 1024 1024 +26093563 DOWN 11 +26093563 0 1024 +~~~ +~~~ +26093584 0 0 +~~~ +~~~ +26093585 0 1 +~~~ +~~~ +26093587 0 3 +~~~ +~~~ +26093589 0 7 +~~~ +~~~ +26093591 0 15 +~~~ +~~~ +26093593 0 31 +~~~ +26093594 UP 11 +26093594 1024 31 +~~~ +~~~ +26093596 1024 63 +~~~ +~~~ +26093598 1024 127 +~~~ +26093599 1024 255 +26093600 homeCount = 49 +26093600 waitCount = 21 +26093622 ripCount = 21 +26093622 locktype1 = 1 +26093623 locktype2 = 2 +26093623 locktype3 = 5 +26093624 goalCount = 2 +26093624 goalTotal = 12 +26093625 otherCount = 28 +~~~ +26093626 CURRENTGOAL IS [3] +~~~ +26093680 DOWN 11 +26093680 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26093719 homeCount = 49 +26093720 waitCount = 21 +26093721 ripCount = 21 +26093721 locktype1 = 1 +26093722 locktype2 = 2 +26093722 locktype3 = 5 +26093723 goalCount = 2 +26093723 goalTotal = 12 +26093724 otherCount = 28 +~~~ +26093725 CURRENTGOAL IS [3] +~~~ +26093746 UP 11 +26093746 1024 255 +26093773 DOWN 11 +26093773 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26093808 homeCount = 49 +26093808 waitCount = 21 +26093809 ripCount = 21 +26093809 locktype1 = 1 +26093810 locktype2 = 2 +26093810 locktype3 = 5 +26093811 goalCount = 2 +26093811 goalTotal = 12 +26093812 otherCount = 28 +~~~ +26093813 CURRENTGOAL IS [3] +~~~ +26096717 UP 6 +26096717 32 255 +~~~ +~~~ +26097351 DOWN 6 +26097351 0 255 +~~~ +~~~ +26097373 0 254 +~~~ +~~~ +26097375 0 252 +~~~ +~~~ +26097377 0 248 +~~~ +~~~ +26097379 0 240 +~~~ +~~~ +26097380 0 224 +~~~ +~~~ +26097382 0 192 +~~~ +~~~ +26097384 0 128 +~~~ +~~~ +26097386 0 0 +~~~ +~~~ +26097388 0 512 +26097389 homeCount = 49 +26097389 waitCount = 21 +26097390 ripCount = 21 +26097390 locktype1 = 1 +26097391 locktype2 = 2 +26097412 locktype3 = 5 +26097412 goalCount = 2 +26097413 goalTotal = 12 +26097413 otherCount = 29 +~~~ +26104495 UP 10 +26104495 waslock = 0 +26104495 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26104524 512 16777728 +~~~ +26104673 512 512 +26104700 DOWN 10 +26104700 0 512 +~~~ +~~~ +26104727 0 2560 +~~~ +~~~ +26104729 0 2048 +26104730 homeCount = 50 +26104730 waitCount = 21 +26104731 ripCount = 21 +26104731 locktype1 = 1 +26104732 locktype2 = 2 +26104732 locktype3 = 5 +26104733 goalCount = 2 +26104733 goalTotal = 12 +26104734 otherCount = 29 +~~~ +26104857 UP 10 +26104858 waslock = 0 +26104857 512 2048 +~~~ +26109785 DOWN 10 +26109785 0 2048 +~~~ +~~~ +~~~ +~~~ +26109809 homeCount = 50 +26109809 waitCount = 21 +26109810 ripCount = 21 +26109810 locktype1 = 1 +26109811 locktype2 = 2 +26109811 locktype3 = 5 +26109812 goalCount = 2 +26109812 goalTotal = 12 +26109813 otherCount = 29 +~~~ +26109830 UP 10 +26109830 waslock = 0 +26109830 512 2048 +~~~ +26109886 DOWN 10 +26109886 0 2048 +~~~ +~~~ +~~~ +~~~ +26109910 homeCount = 50 +26109910 waitCount = 21 +26109911 ripCount = 21 +26109911 locktype1 = 1 +26109912 locktype2 = 2 +26109912 locktype3 = 5 +26109913 goalCount = 2 +26109913 goalTotal = 12 +26109914 otherCount = 29 +~~~ +26112362 UP 12 +26112362 2048 2048 +26113374 DOWN 12 +26113374 0 2048 +26113418 UP 12 +26113418 2048 2048 +26113943 DOWN 12 +26113943 0 2048 +26114024 UP 12 +26114024 2048 2048 +26115863 CLICK1 +26115863 CLICK2 +~~~ +~~~ +~~~ +26115889 2048 67110912 +~~~ +26116039 2048 2048 +26122109 DOWN 12 +26122109 0 2048 +~~~ +~~~ +26122129 0 0 +~~~ +~~~ +26122131 0 1 +~~~ +~~~ +26122132 0 3 +~~~ +~~~ +26122134 0 7 +~~~ +~~~ +26122136 0 15 +~~~ +~~~ +26122138 0 31 +~~~ +~~~ +26122140 0 63 +~~~ +~~~ +26122142 0 127 +~~~ +~~~ +26122143 0 255 +26122145 homeCount = 50 +26122145 waitCount = 22 +26122146 ripCount = 21 +26122146 locktype1 = 1 +26122147 locktype2 = 2 +26122167 locktype3 = 5 +26122168 goalCount = 2 +26122168 goalTotal = 12 +26122169 otherCount = 29 +~~~ +26122170 CURRENTGOAL IS [3] +~~~ +26126211 UP 3 +26126210 4 255 +26126231 DOWN 3 +26126231 0 255 +~~~ +~~~ +26126237 outer reward +~~~ +26126238 0 262399 +~~~ +~~~ +26126244 4 262399 +~~~ +~~~ +26126256 4 262398 +~~~ +~~~ +26126257 4 262396 +~~~ +~~~ +26126259 4 262392 +~~~ +~~~ +26126261 4 262384 +~~~ +~~~ +26126263 4 262368 +~~~ +~~~ +26126265 4 262336 +~~~ +~~~ +26126267 4 262272 +~~~ +~~~ +26126268 4 262144 +~~~ +~~~ +26126270 4 262656 +26126271 homeCount = 50 +26126272 waitCount = 22 +26126272 ripCount = 21 +26126293 locktype1 = 1 +26126294 locktype2 = 2 +26126294 locktype3 = 5 +26126295 goalCount = 3 +26126295 goalTotal = 13 +26126296 otherCount = 29 +~~~ +26126454 DOWN 3 +26126453 0 262656 +26126503 4 262656 +26126687 4 512 +26126888 DOWN 3 +26126888 0 512 +26126906 4 512 +26127010 DOWN 3 +26127010 0 512 +26127033 4 512 +26127136 DOWN 3 +26127136 0 512 +26127161 4 512 +26127269 DOWN 3 +26127269 0 512 +26127292 4 512 +26127399 DOWN 3 +26127399 0 512 +26127422 4 512 +26127527 DOWN 3 +26127527 0 512 +26127551 4 512 +26127663 DOWN 3 +26127662 0 512 +26127684 4 512 +26127810 DOWN 3 +26127810 0 512 +26127825 4 512 +26127960 DOWN 3 +26127960 0 512 +26127966 4 512 +26132825 DOWN 3 +26132825 0 512 +26132840 4 512 +26132983 DOWN 3 +26132983 0 512 +26132987 4 512 +26133827 DOWN 3 +26133827 0 512 +26133837 4 512 +26134015 DOWN 3 +26134015 0 512 +26134023 4 512 +26135949 DOWN 3 +26135949 0 512 +26140435 UP 10 +26140435 waslock = 0 +26140435 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26140463 512 16777728 +~~~ +26140613 512 512 +26140699 DOWN 10 +26140698 0 512 +~~~ +~~~ +26140719 0 1536 +~~~ +~~~ +26140720 0 1024 +26140722 homeCount = 51 +26140722 waitCount = 22 +26140723 ripCount = 21 +26140723 locktype1 = 1 +26140724 locktype2 = 2 +26140724 locktype3 = 5 +26140725 goalCount = 3 +26140725 goalTotal = 13 +26140726 otherCount = 29 +~~~ +26140747 UP 10 +26140747 waslock = 0 +26140747 512 1024 +~~~ +26144504 DOWN 10 +26144504 0 1024 +~~~ +~~~ +~~~ +~~~ +26144530 homeCount = 51 +26144531 waitCount = 22 +26144531 ripCount = 21 +26144532 locktype1 = 1 +26144532 locktype2 = 2 +26144533 locktype3 = 5 +26144533 goalCount = 3 +26144534 goalTotal = 13 +26144534 otherCount = 29 +~~~ +26144553 UP 10 +26144553 waslock = 0 +26144552 512 1024 +~~~ +26144607 DOWN 10 +26144607 0 1024 +~~~ +~~~ +~~~ +~~~ +26144630 homeCount = 51 +26144631 waitCount = 22 +26144631 ripCount = 21 +26144632 locktype1 = 1 +26144632 locktype2 = 2 +26144633 locktype3 = 5 +26144633 goalCount = 3 +26144634 goalTotal = 13 +26144634 otherCount = 29 +~~~ +26146769 UP 11 +26146769 1024 1024 +26151953 DOWN 11 +26151953 0 1024 +26151979 UP 11 +26151979 1024 1024 +26154269 BEEP1 +26154269 BEEP2 +~~~ +~~~ +~~~ +26154291 1024 33555456 +~~~ +26154441 1024 1024 +26160782 DOWN 11 +26160782 0 1024 +26160794 UP 11 +26160794 1024 1024 +~~~ +~~~ +26160806 1024 0 +~~~ +~~~ +26160808 1024 1 +~~~ +~~~ +26160810 1024 3 +~~~ +~~~ +26160812 1024 7 +~~~ +~~~ +26160814 1024 15 +~~~ +~~~ +26160815 1024 31 +~~~ +~~~ +26160817 1024 63 +~~~ +~~~ +26160819 1024 127 +~~~ +~~~ +26160821 1024 255 +26160822 homeCount = 51 +26160822 waitCount = 22 +26160823 ripCount = 22 +26160844 locktype1 = 1 +26160845 locktype2 = 2 +26160845 locktype3 = 5 +26160846 goalCount = 3 +26160846 goalTotal = 13 +26160847 otherCount = 29 +~~~ +26160848 CURRENTGOAL IS [3] +~~~ +26160904 DOWN 11 +26160904 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26160942 homeCount = 51 +26160943 waitCount = 22 +26160943 ripCount = 22 +26160944 locktype1 = 1 +26160945 locktype2 = 2 +26160945 locktype3 = 5 +26160946 goalCount = 3 +26160946 goalTotal = 13 +26160947 otherCount = 29 +~~~ +26160948 CURRENTGOAL IS [3] +~~~ +26160969 UP 11 +26160969 1024 255 +26160984 DOWN 11 +26160984 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26161023 homeCount = 51 +26161023 waitCount = 22 +26161024 ripCount = 22 +26161024 locktype1 = 1 +26161025 locktype2 = 2 +26161025 locktype3 = 5 +26161026 goalCount = 3 +26161026 goalTotal = 13 +26161027 otherCount = 29 +~~~ +26161028 CURRENTGOAL IS [3] +~~~ +26161049 UP 11 +26161049 1024 255 +26163216 DOWN 11 +26163216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26163255 homeCount = 51 +26163255 waitCount = 22 +26163256 ripCount = 22 +26163256 locktype1 = 1 +26163257 locktype2 = 2 +26163257 locktype3 = 5 +26163258 goalCount = 3 +26163258 goalTotal = 13 +26163259 otherCount = 29 +~~~ +26163260 CURRENTGOAL IS [3] +~~~ +26176641 UP 4 +26176641 8 255 +~~~ +~~~ +26177975 DOWN 4 +26177975 0 255 +~~~ +~~~ +26178001 0 254 +~~~ +~~~ +26178003 0 252 +~~~ +~~~ +26178005 0 248 +~~~ +~~~ +26178006 0 240 +~~~ +~~~ +26178008 0 224 +~~~ +~~~ +26178010 0 192 +~~~ +~~~ +26178012 0 128 +~~~ +~~~ +26178014 0 0 +~~~ +~~~ +26178016 0 512 +26178017 homeCount = 51 +26178017 waitCount = 22 +26178018 ripCount = 22 +26178018 locktype1 = 1 +26178019 locktype2 = 2 +26178040 locktype3 = 5 +26178040 goalCount = 3 +26178041 goalTotal = 13 +26178041 otherCount = 30 +~~~ +26183987 UP 10 +26183987 waslock = 0 +26183986 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26184016 512 16777728 +~~~ +26184166 512 512 +26184227 DOWN 10 +26184227 0 512 +~~~ +26184253 UP 10 +26184253 waslock = 0 +26184253 512 512 +~~~ +~~~ +~~~ +26184256 512 2048 +26184257 homeCount = 52 +26184257 waitCount = 22 +26184258 ripCount = 22 +26184258 locktype1 = 1 +26184259 locktype2 = 2 +26184259 locktype3 = 5 +26184260 goalCount = 3 +26184280 goalTotal = 13 +26184281 otherCount = 30 +~~~ +~~~ +26190484 DOWN 10 +26190484 0 2048 +26190501 UP 10 +26190501 waslock = 0 +26190501 512 2048 +~~~ +~~~ +~~~ +~~~ +26190525 homeCount = 52 +26190525 waitCount = 22 +26190526 ripCount = 22 +26190526 locktype1 = 1 +26190527 locktype2 = 2 +26190527 locktype3 = 5 +26190528 goalCount = 3 +26190528 goalTotal = 13 +26190529 otherCount = 30 +~~~ +~~~ +26190590 DOWN 10 +26190590 0 2048 +~~~ +~~~ +~~~ +~~~ +26190618 homeCount = 52 +26190619 waitCount = 22 +26190619 ripCount = 22 +26190620 locktype1 = 1 +26190620 locktype2 = 2 +26190621 locktype3 = 5 +26190621 goalCount = 3 +26190622 goalTotal = 13 +26190622 otherCount = 30 +~~~ +26192739 UP 12 +26192739 2048 2048 +26197344 DOWN 12 +26197344 0 2048 +26197364 UP 12 +26197364 2048 2048 +26200239 CLICK1 +26200239 CLICK2 +~~~ +~~~ +~~~ +26200261 2048 67110912 +~~~ +26200411 2048 2048 +26205923 DOWN 12 +26205923 0 2048 +~~~ +~~~ +26205949 0 0 +~~~ +~~~ +26205951 0 1 +~~~ +~~~ +26205953 0 3 +~~~ +~~~ +26205955 0 7 +~~~ +~~~ +26205957 0 15 +~~~ +~~~ +26205959 0 31 +~~~ +~~~ +26205960 0 63 +~~~ +~~~ +26205962 0 127 +~~~ +~~~ +26205964 0 255 +26205965 homeCount = 52 +26205966 waitCount = 23 +26205966 ripCount = 22 +26205967 locktype1 = 1 +26205967 locktype2 = 2 +26205988 locktype3 = 5 +26205989 goalCount = 3 +26205989 goalTotal = 13 +26205990 otherCount = 30 +~~~ +26205991 CURRENTGOAL IS [3] +~~~ +26205991 UP 12 +26205991 2048 255 +26206044 DOWN 12 +26206044 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26206086 homeCount = 52 +26206087 waitCount = 23 +26206088 ripCount = 22 +26206088 locktype1 = 1 +26206089 locktype2 = 2 +26206089 locktype3 = 5 +26206090 goalCount = 3 +26206090 goalTotal = 13 +26206091 otherCount = 30 +~~~ +26206092 CURRENTGOAL IS [3] +~~~ +26211547 UP 3 +26211547 4 255 +~~~ +~~~ +26211574 outer reward +~~~ +26211574 4 262399 +~~~ +~~~ +26211584 DOWN 3 +26211584 0 262399 +26211594 4 262399 +~~~ +~~~ +26211604 4 262398 +~~~ +~~~ +26211605 4 262396 +~~~ +~~~ +26211607 4 262392 +~~~ +~~~ +26211609 4 262384 +~~~ +~~~ +26211611 4 262368 +~~~ +~~~ +26211613 4 262336 +~~~ +~~~ +26211614 4 262272 +~~~ +~~~ +26211616 4 262144 +~~~ +~~~ +26211618 4 262656 +26211619 homeCount = 52 +26211620 waitCount = 23 +26211620 ripCount = 22 +26211641 locktype1 = 1 +26211641 locktype2 = 2 +26211642 locktype3 = 5 +26211642 goalCount = 4 +26211643 goalTotal = 14 +26211643 otherCount = 30 +~~~ +26211753 DOWN 3 +26211753 0 262656 +26211803 4 262656 +26212024 4 512 +26212186 DOWN 3 +26212186 0 512 +26212197 4 512 +26212288 DOWN 3 +26212288 0 512 +26212324 4 512 +26212415 DOWN 3 +26212415 0 512 +26212448 4 512 +26212545 DOWN 3 +26212545 0 512 +26212578 4 512 +26212679 DOWN 3 +26212679 0 512 +26212713 4 512 +26212817 DOWN 3 +26212817 0 512 +26212848 4 512 +26212954 DOWN 3 +26212954 0 512 +26212985 4 512 +26213104 DOWN 3 +26213103 0 512 +26213127 4 512 +26213255 DOWN 3 +26213255 0 512 +26213277 4 512 +26213411 DOWN 3 +26213411 0 512 +26213421 4 512 +26213565 DOWN 3 +26213565 0 512 +26213573 4 512 +26213710 DOWN 3 +26213710 0 512 +26213718 4 512 +26219060 DOWN 3 +26219060 0 512 +26219068 4 512 +26221652 DOWN 3 +26221652 0 512 +26229831 UP 10 +26229831 waslock = 0 +26229831 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26229859 512 16777728 +~~~ +26229926 DOWN 10 +26229926 0 16777728 +26229942 UP 10 +26229942 waslock = 0 +26229942 512 16777728 +~~~ +~~~ +26229952 512 16778752 +~~~ +~~~ +26229954 512 16778240 +26229955 homeCount = 53 +26229956 waitCount = 23 +26229957 ripCount = 22 +26229957 locktype1 = 1 +26229958 locktype2 = 2 +26229958 locktype3 = 5 +26229959 goalCount = 4 +26229959 goalTotal = 14 +26229960 otherCount = 30 +~~~ +~~~ +26230009 512 1024 +26230077 DOWN 10 +26230077 0 1024 +~~~ +~~~ +~~~ +~~~ +26230108 homeCount = 53 +26230109 waitCount = 23 +26230109 ripCount = 22 +26230110 locktype1 = 1 +26230110 locktype2 = 2 +26230111 locktype3 = 5 +26230111 goalCount = 4 +26230112 goalTotal = 14 +26230112 otherCount = 30 +~~~ +26230121 UP 10 +26230122 waslock = 0 +26230121 512 1024 +~~~ +26233087 DOWN 10 +26233087 0 1024 +~~~ +~~~ +~~~ +~~~ +26233108 homeCount = 53 +26233108 waitCount = 23 +26233109 ripCount = 22 +26233109 locktype1 = 1 +26233110 locktype2 = 2 +26233110 locktype3 = 5 +26233111 goalCount = 4 +26233111 goalTotal = 14 +26233112 otherCount = 30 +~~~ +26233148 UP 10 +26233148 waslock = 0 +26233148 512 1024 +26233177 DOWN 10 +26233177 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +26233199 homeCount = 53 +26233200 waitCount = 23 +26233200 ripCount = 22 +26233201 locktype1 = 1 +26233201 locktype2 = 2 +26233202 locktype3 = 5 +26233202 goalCount = 4 +26233203 goalTotal = 14 +26233203 otherCount = 30 +~~~ +26247738 UP 11 +26247738 1024 1024 +26248518 DOWN 11 +26248518 0 1024 +26248528 UP 11 +26248528 1024 1024 +26248828 DOWN 11 +26248828 0 1024 +26248837 UP 11 +26248837 1024 1024 +26255739 BEEP1 +26255739 BEEP2 +~~~ +~~~ +~~~ +26255767 1024 33555456 +~~~ +26255917 1024 1024 +26262091 DOWN 11 +26262091 0 1024 +~~~ +~~~ +26262114 0 0 +~~~ +~~~ +26262116 0 1 +~~~ +~~~ +26262118 0 3 +~~~ +~~~ +26262120 0 7 +~~~ +~~~ +26262122 0 15 +~~~ +~~~ +26262123 0 31 +~~~ +~~~ +26262125 0 63 +~~~ +~~~ +26262127 0 127 +~~~ +~~~ +26262129 0 255 +26262130 homeCount = 53 +26262130 waitCount = 23 +26262131 ripCount = 23 +26262131 locktype1 = 1 +26262132 locktype2 = 2 +26262153 locktype3 = 5 +26262153 goalCount = 4 +26262154 goalTotal = 14 +26262154 otherCount = 30 +~~~ +26262156 CURRENTGOAL IS [3] +~~~ +26266855 UP 2 +26266855 2 255 +~~~ +~~~ +26267703 DOWN 2 +26267703 0 255 +~~~ +~~~ +26267724 0 254 +~~~ +~~~ +26267726 0 252 +~~~ +~~~ +26267727 0 248 +~~~ +~~~ +26267729 0 240 +~~~ +~~~ +26267731 0 224 +~~~ +~~~ +26267733 0 192 +~~~ +~~~ +26267735 0 128 +~~~ +~~~ +26267737 0 0 +~~~ +~~~ +26267738 0 512 +26267739 homeCount = 53 +26267740 waitCount = 23 +26267740 ripCount = 23 +26267741 locktype1 = 1 +26267742 locktype2 = 2 +26267762 locktype3 = 5 +26267763 goalCount = 4 +26267763 goalTotal = 14 +26267764 otherCount = 31 +~~~ +26271543 UP 10 +26271543 waslock = 0 +26271543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26271574 512 16777728 +~~~ +26271724 512 512 +26271742 DOWN 10 +26271742 0 512 +~~~ +26271766 UP 10 +26271767 waslock = 0 +26271766 512 512 +~~~ +~~~ +~~~ +26271769 512 1024 +26271770 homeCount = 54 +26271770 waitCount = 23 +26271771 ripCount = 23 +26271771 locktype1 = 1 +26271772 locktype2 = 2 +26271772 locktype3 = 5 +26271773 goalCount = 4 +26271794 goalTotal = 14 +26271794 otherCount = 31 +~~~ +~~~ +26276322 DOWN 10 +26276322 0 1024 +~~~ +~~~ +~~~ +26276348 UP 10 +26276348 waslock = 0 +26276348 512 1024 +~~~ +26276350 homeCount = 54 +26276351 waitCount = 23 +26276351 ripCount = 23 +26276352 locktype1 = 1 +26276352 locktype2 = 2 +26276353 locktype3 = 5 +26276353 goalCount = 4 +26276354 goalTotal = 14 +26276354 otherCount = 31 +~~~ +~~~ +26276422 DOWN 10 +26276422 0 1024 +~~~ +~~~ +~~~ +~~~ +26276450 homeCount = 54 +26276451 waitCount = 23 +26276451 ripCount = 23 +26276452 locktype1 = 1 +26276452 locktype2 = 2 +26276453 locktype3 = 5 +26276453 goalCount = 4 +26276454 goalTotal = 14 +26276454 otherCount = 31 +~~~ +26278218 UP 11 +26278218 1024 1024 +26278776 DOWN 11 +26278776 0 1024 +26278976 LOCKOUT 3 +~~~ +26278999 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26279003 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26279119 UP 11 +26279119 1024 0 +26280486 DOWN 11 +26280486 0 0 +26280724 UP 11 +26280724 1024 0 +26281454 DOWN 11 +26281454 0 0 +26281479 UP 11 +26281479 1024 0 +26283087 DOWN 11 +26283087 0 0 +26287949 UP 7 +26287949 64 0 +26288421 DOWN 7 +26288421 0 0 +26288485 64 0 +26289335 DOWN 7 +26289335 0 0 +26299747 512 0 +26300083 0 0 +26303999 LOCKEND +~~~ +~~~ +~~~ +26304019 0 512 +26306470 UP 10 +26306471 waslock = 0 +26306470 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26306503 512 16777728 +~~~ +26306653 512 512 +26306805 DOWN 10 +26306805 0 512 +~~~ +~~~ +26306827 0 1536 +~~~ +~~~ +26306829 0 1024 +26306830 homeCount = 55 +26306831 waitCount = 23 +26306831 ripCount = 23 +26306832 locktype1 = 1 +26306832 locktype2 = 2 +26306833 locktype3 = 6 +26306833 goalCount = 4 +26306834 goalTotal = 14 +26306834 otherCount = 31 +~~~ +26307269 UP 10 +26307269 waslock = 0 +26307269 512 1024 +~~~ +26311394 DOWN 10 +26311394 0 1024 +~~~ +~~~ +~~~ +~~~ +26311414 homeCount = 55 +26311415 waitCount = 23 +26311415 ripCount = 23 +26311416 locktype1 = 1 +26311416 locktype2 = 2 +26311417 locktype3 = 6 +26311417 goalCount = 4 +26311418 goalTotal = 14 +26311418 otherCount = 31 +~~~ +26351737 UP 10 +26351737 waslock = 0 +26351737 512 1024 +26351742 DOWN 10 +26351742 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +26351768 homeCount = 55 +26351768 waitCount = 23 +26351769 ripCount = 23 +26351769 locktype1 = 1 +26351770 locktype2 = 2 +26351770 locktype3 = 6 +26351771 goalCount = 4 +26351771 goalTotal = 14 +26351772 otherCount = 31 +~~~ +26372865 UP 1 +26372865 1 1024 +~~~ +26372883 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26372886 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26375957 DOWN 1 +26375957 0 0 +26385649 512 0 +26385845 0 0 +26386178 512 0 +26386431 0 0 +26386459 512 0 +26386675 0 0 +26386743 512 0 +26386792 0 0 +26386863 512 0 +26386871 0 0 +26392652 UP 12 +26392652 2048 0 +26393059 DOWN 12 +26393059 0 0 +26397883 LOCKEND +~~~ +~~~ +~~~ +26397903 0 512 +26399587 UP 12 +26399587 2048 512 +26399913 DOWN 12 +26399913 0 512 +26400043 UP 12 +26400043 2048 512 +26400088 DOWN 12 +26400088 0 512 +26400350 UP 12 +26400350 2048 512 +26400466 DOWN 12 +26400466 0 512 +26400557 UP 12 +26400557 2048 512 +26401146 DOWN 12 +26401146 0 512 +26401657 UP 12 +26401657 2048 512 +26401745 DOWN 12 +26401745 0 512 +26401786 UP 12 +26401785 2048 512 +26402161 DOWN 12 +26402161 0 512 +26412119 UP 10 +26412120 waslock = 0 +26412119 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26412148 512 16777728 +~~~ +26412157 DOWN 10 +26412157 0 16777728 +~~~ +~~~ +26412181 0 16778752 +~~~ +~~~ +26412183 0 16778240 +26412184 homeCount = 56 +26412185 waitCount = 23 +26412185 ripCount = 23 +26412186 locktype1 = 1 +26412186 locktype2 = 3 +26412187 locktype3 = 6 +26412187 goalCount = 4 +26412188 goalTotal = 14 +26412188 otherCount = 31 +~~~ +26412209 UP 10 +26412209 waslock = 0 +26412209 512 16778240 +~~~ +26412298 512 1024 +26412306 DOWN 10 +26412306 0 1024 +~~~ +~~~ +~~~ +~~~ +26412325 homeCount = 56 +26412326 waitCount = 23 +26412326 ripCount = 23 +26412327 locktype1 = 1 +26412327 locktype2 = 3 +26412328 locktype3 = 6 +26412328 goalCount = 4 +26412329 goalTotal = 14 +26412329 otherCount = 31 +~~~ +26412346 UP 10 +26412346 waslock = 0 +26412346 512 1024 +~~~ +26412417 DOWN 10 +26412417 0 1024 +~~~ +~~~ +~~~ +~~~ +26412448 homeCount = 56 +26412448 waitCount = 23 +26412449 ripCount = 23 +26412449 locktype1 = 1 +26412450 locktype2 = 3 +26412450 locktype3 = 6 +26412451 goalCount = 4 +26412451 goalTotal = 14 +26412452 otherCount = 31 +~~~ +26412489 UP 10 +26412489 waslock = 0 +26412489 512 1024 +~~~ +26412539 DOWN 10 +26412539 0 1024 +~~~ +~~~ +~~~ +~~~ +26412565 homeCount = 56 +26412566 waitCount = 23 +26412566 ripCount = 23 +26412567 locktype1 = 1 +26412567 locktype2 = 3 +26412568 locktype3 = 6 +26412568 goalCount = 4 +26412569 goalTotal = 14 +26412569 otherCount = 31 +~~~ +26412617 UP 10 +26412618 waslock = 0 +26412617 512 1024 +~~~ +26418530 DOWN 10 +26418530 0 1024 +~~~ +~~~ +~~~ +~~~ +26418559 homeCount = 56 +26418559 waitCount = 23 +26418560 ripCount = 23 +26418560 locktype1 = 1 +26418561 locktype2 = 3 +26418561 locktype3 = 6 +26418562 goalCount = 4 +26418562 goalTotal = 14 +26418563 otherCount = 31 +~~~ +26430877 UP 2 +26430877 2 1024 +~~~ +26430896 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26430900 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26431379 DOWN 2 +26431379 0 0 +26445486 512 0 +26445500 0 0 +26446355 512 0 +26446424 0 0 +26446456 512 0 +26446528 0 0 +26451352 UP 1 +26451352 1 0 +26451385 DOWN 1 +26451385 0 0 +26451422 1 0 +26452043 DOWN 1 +26452043 0 0 +26452263 1 0 +26452275 DOWN 1 +26452275 0 0 +26455896 LOCKEND +~~~ +~~~ +~~~ +26455917 0 512 +26474835 UP 10 +26474835 waslock = 0 +26474835 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26474862 512 16777728 +~~~ +26474896 DOWN 10 +26474896 0 16777728 +~~~ +~~~ +26474916 0 16778752 +~~~ +~~~ +26474918 0 16778240 +26474919 homeCount = 57 +26474920 waitCount = 23 +26474920 ripCount = 23 +26474921 locktype1 = 1 +26474921 locktype2 = 4 +26474922 locktype3 = 6 +26474922 goalCount = 4 +26474923 goalTotal = 14 +26474923 otherCount = 31 +~~~ +26474944 UP 10 +26474944 waslock = 0 +26474944 512 16778240 +~~~ +26475012 512 1024 +26475064 DOWN 10 +26475064 0 1024 +~~~ +~~~ +~~~ +~~~ +26475094 homeCount = 57 +26475095 waitCount = 23 +26475095 ripCount = 23 +26475096 locktype1 = 1 +26475096 locktype2 = 4 +26475097 locktype3 = 6 +26475097 goalCount = 4 +26475098 goalTotal = 14 +26475098 otherCount = 31 +~~~ +26475180 UP 10 +26475180 waslock = 0 +26475180 512 1024 +~~~ +26475308 DOWN 10 +26475308 0 1024 +~~~ +~~~ +~~~ +~~~ +26475331 homeCount = 57 +26475331 waitCount = 23 +26475332 ripCount = 23 +26475332 locktype1 = 1 +26475333 locktype2 = 4 +26475333 locktype3 = 6 +26475334 goalCount = 4 +26475334 goalTotal = 14 +26475335 otherCount = 31 +~~~ +26475336 UP 10 +26475336 waslock = 0 +26475335 512 1024 +~~~ +26480573 DOWN 10 +26480573 0 1024 +~~~ +~~~ +~~~ +~~~ +26480600 homeCount = 57 +26480600 waitCount = 23 +26480601 ripCount = 23 +26480601 locktype1 = 1 +26480602 locktype2 = 4 +26480602 locktype3 = 6 +26480603 goalCount = 4 +26480603 goalTotal = 14 +26480604 otherCount = 31 +~~~ +26482063 UP 11 +26482063 1024 1024 +26482260 DOWN 11 +26482260 0 1024 +26482460 LOCKOUT 3 +~~~ +26482478 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26482482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26486116 UP 7 +26486116 64 0 +26486575 DOWN 7 +26486575 0 0 +26502358 512 0 +26502527 0 0 +26507478 LOCKEND +~~~ +~~~ +~~~ +26507497 0 512 +26610111 UP 10 +26610111 waslock = 0 +26610111 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26610142 512 16777728 +~~~ +26610292 512 512 +26610742 DOWN 10 +26610742 0 512 +~~~ +~~~ +26610767 0 1536 +~~~ +~~~ +26610769 0 1024 +26610770 homeCount = 58 +26610771 waitCount = 23 +26610771 ripCount = 23 +26610772 locktype1 = 1 +26610772 locktype2 = 4 +26610773 locktype3 = 7 +26610773 goalCount = 4 +26610774 goalTotal = 14 +26610774 otherCount = 31 +~~~ +26610795 UP 10 +26610796 waslock = 0 +26610795 512 1024 +~~~ +26611050 DOWN 10 +26611050 0 1024 +26611074 UP 10 +26611075 waslock = 0 +26611074 512 1024 +~~~ +~~~ +~~~ +~~~ +26611083 homeCount = 58 +26611083 waitCount = 23 +26611084 ripCount = 23 +26611084 locktype1 = 1 +26611085 locktype2 = 4 +26611085 locktype3 = 7 +26611086 goalCount = 4 +26611086 goalTotal = 14 +26611087 otherCount = 31 +~~~ +~~~ +26611219 DOWN 10 +26611219 0 1024 +~~~ +~~~ +~~~ +~~~ +26611240 homeCount = 58 +26611240 waitCount = 23 +26611241 ripCount = 23 +26611241 locktype1 = 1 +26611242 locktype2 = 4 +26611242 locktype3 = 7 +26611243 goalCount = 4 +26611243 goalTotal = 14 +26611244 otherCount = 31 +~~~ +26611244 UP 10 +26611245 waslock = 0 +26611244 512 1024 +~~~ +26611380 DOWN 10 +26611380 0 1024 +~~~ +26611412 UP 10 +26611412 waslock = 0 +26611412 512 1024 +~~~ +~~~ +~~~ +26611415 homeCount = 58 +26611416 waitCount = 23 +26611416 ripCount = 23 +26611417 locktype1 = 1 +26611417 locktype2 = 4 +26611418 locktype3 = 7 +26611418 goalCount = 4 +26611419 goalTotal = 14 +26611419 otherCount = 31 +~~~ +~~~ +26611544 DOWN 10 +26611544 0 1024 +26611573 UP 10 +26611573 waslock = 0 +26611573 512 1024 +~~~ +~~~ +~~~ +~~~ +26611579 homeCount = 58 +26611579 waitCount = 23 +26611580 ripCount = 23 +26611580 locktype1 = 1 +26611581 locktype2 = 4 +26611581 locktype3 = 7 +26611582 goalCount = 4 +26611582 goalTotal = 14 +26611583 otherCount = 31 +~~~ +~~~ +26611731 DOWN 10 +26611731 0 1024 +~~~ +~~~ +~~~ +~~~ +26611755 homeCount = 58 +26611756 waitCount = 23 +26611756 ripCount = 23 +26611757 locktype1 = 1 +26611757 locktype2 = 4 +26611758 locktype3 = 7 +26611758 goalCount = 4 +26611759 goalTotal = 14 +26611759 otherCount = 31 +~~~ +26611760 UP 10 +26611760 waslock = 0 +26611760 512 1024 +~~~ +26611907 DOWN 10 +26611907 0 1024 +~~~ +~~~ +~~~ +~~~ +26611935 homeCount = 58 +26611935 waitCount = 23 +26611936 ripCount = 23 +26611936 locktype1 = 1 +26611937 locktype2 = 4 +26611937 locktype3 = 7 +26611938 goalCount = 4 +26611938 goalTotal = 14 +26611939 otherCount = 31 +~~~ +26611943 UP 10 +26611943 waslock = 0 +26611943 512 1024 +~~~ +26612078 DOWN 10 +26612078 0 1024 +26612098 UP 10 +26612098 waslock = 0 +26612098 512 1024 +~~~ +~~~ +~~~ +~~~ +26612110 homeCount = 58 +26612111 waitCount = 23 +26612111 ripCount = 23 +26612112 locktype1 = 1 +26612112 locktype2 = 4 +26612113 locktype3 = 7 +26612113 goalCount = 4 +26612114 goalTotal = 14 +26612114 otherCount = 31 +~~~ +~~~ +26613140 DOWN 10 +26613140 0 1024 +26613146 UP 10 +26613146 waslock = 0 +26613146 512 1024 +~~~ +~~~ +~~~ +~~~ +26613168 homeCount = 58 +26613169 waitCount = 23 +26613169 ripCount = 23 +26613170 locktype1 = 1 +26613170 locktype2 = 4 +26613171 locktype3 = 7 +26613171 goalCount = 4 +26613172 goalTotal = 14 +26613172 otherCount = 31 +~~~ +~~~ +26613312 DOWN 10 +26613312 0 1024 +26613330 UP 10 +26613330 waslock = 0 +26613330 512 1024 +~~~ +~~~ +~~~ +~~~ +26613338 homeCount = 58 +26613339 waitCount = 23 +26613339 ripCount = 23 +26613340 locktype1 = 1 +26613340 locktype2 = 4 +26613341 locktype3 = 7 +26613341 goalCount = 4 +26613342 goalTotal = 14 +26613342 otherCount = 31 +~~~ +~~~ +26613483 DOWN 10 +26613483 0 1024 +~~~ +~~~ +~~~ +~~~ +26613506 homeCount = 58 +26613507 waitCount = 23 +26613508 ripCount = 23 +26613508 locktype1 = 1 +26613509 locktype2 = 4 +26613509 locktype3 = 7 +26613510 goalCount = 4 +26613510 goalTotal = 14 +26613511 otherCount = 31 +~~~ +26613513 UP 10 +26613514 waslock = 0 +26613513 512 1024 +~~~ +26614355 DOWN 10 +26614355 0 1024 +26614372 UP 10 +26614373 waslock = 0 +26614372 512 1024 +~~~ +~~~ +~~~ +~~~ +26614377 homeCount = 58 +26614378 waitCount = 23 +26614378 ripCount = 23 +26614379 locktype1 = 1 +26614379 locktype2 = 4 +26614380 locktype3 = 7 +26614380 goalCount = 4 +26614381 goalTotal = 14 +26614381 otherCount = 31 +~~~ +~~~ +26614729 DOWN 10 +26614729 0 1024 +26614735 UP 10 +26614735 waslock = 0 +26614735 512 1024 +~~~ +~~~ +~~~ +~~~ +26614757 homeCount = 58 +26614758 waitCount = 23 +26614758 ripCount = 23 +26614759 locktype1 = 1 +26614759 locktype2 = 4 +26614760 locktype3 = 7 +26614760 goalCount = 4 +26614761 goalTotal = 14 +26614761 otherCount = 31 +~~~ +~~~ +26614892 DOWN 10 +26614892 0 1024 +~~~ +26614914 UP 10 +26614914 waslock = 0 +26614914 512 1024 +~~~ +~~~ +~~~ +26614917 homeCount = 58 +26614918 waitCount = 23 +26614918 ripCount = 23 +26614919 locktype1 = 1 +26614919 locktype2 = 4 +26614920 locktype3 = 7 +26614920 goalCount = 4 +26614921 goalTotal = 14 +26614921 otherCount = 31 +~~~ +~~~ +26615008 DOWN 10 +26615008 0 1024 +~~~ +~~~ +~~~ +~~~ +26615036 homeCount = 58 +26615037 waitCount = 23 +26615038 ripCount = 23 +26615038 locktype1 = 1 +26615039 locktype2 = 4 +26615039 locktype3 = 7 +26615040 goalCount = 4 +26615040 goalTotal = 14 +26615041 otherCount = 31 +~~~ +26638056 UP 5 +26638056 16 1024 +~~~ +26638084 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26638088 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26638140 DOWN 5 +26638140 0 0 +26638216 16 0 +26638335 DOWN 5 +26638335 0 0 +26638492 16 0 +26638740 DOWN 5 +26638740 0 0 +26663084 LOCKEND +~~~ +~~~ +~~~ +26663104 0 512 +26828055 UP 10 +26828055 waslock = 0 +26828055 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26828081 512 16777728 +~~~ +26828231 512 512 +26828398 DOWN 10 +26828398 0 512 +~~~ +~~~ +26828424 0 1536 +~~~ +~~~ +26828426 0 1024 +26828427 homeCount = 59 +26828427 waitCount = 23 +26828428 ripCount = 23 +26828428 locktype1 = 1 +26828429 locktype2 = 5 +26828429 locktype3 = 7 +26828430 goalCount = 4 +26828430 goalTotal = 14 +26828431 otherCount = 31 +~~~ +26828487 UP 10 +26828488 waslock = 0 +26828487 512 1024 +~~~ +26828917 DOWN 10 +26828917 0 1024 +~~~ +~~~ +~~~ +26828938 UP 10 +26828938 waslock = 0 +26828938 512 1024 +~~~ +26828940 homeCount = 59 +26828940 waitCount = 23 +26828941 ripCount = 23 +26828941 locktype1 = 1 +26828942 locktype2 = 5 +26828942 locktype3 = 7 +26828943 goalCount = 4 +26828943 goalTotal = 14 +26828944 otherCount = 31 +~~~ +~~~ +26829068 DOWN 10 +26829068 0 1024 +26829088 UP 10 +26829088 waslock = 0 +26829088 512 1024 +~~~ +~~~ +~~~ +~~~ +26829100 homeCount = 59 +26829100 waitCount = 23 +26829101 ripCount = 23 +26829101 locktype1 = 1 +26829102 locktype2 = 5 +26829102 locktype3 = 7 +26829103 goalCount = 4 +26829103 goalTotal = 14 +26829104 otherCount = 31 +~~~ +~~~ +26829218 DOWN 10 +26829218 0 1024 +26829240 UP 10 +26829240 waslock = 0 +26829240 512 1024 +~~~ +~~~ +~~~ +~~~ +26829251 homeCount = 59 +26829252 waitCount = 23 +26829252 ripCount = 23 +26829253 locktype1 = 1 +26829253 locktype2 = 5 +26829254 locktype3 = 7 +26829254 goalCount = 4 +26829255 goalTotal = 14 +26829256 otherCount = 31 +~~~ +~~~ +26829378 DOWN 10 +26829378 0 1024 +26829396 UP 10 +26829397 waslock = 0 +26829396 512 1024 +~~~ +~~~ +~~~ +~~~ +26829421 homeCount = 59 +26829422 waitCount = 23 +26829422 ripCount = 23 +26829423 locktype1 = 1 +26829423 locktype2 = 5 +26829424 locktype3 = 7 +26829424 goalCount = 4 +26829425 goalTotal = 14 +26829425 otherCount = 31 +~~~ +~~~ +26829533 DOWN 10 +26829533 0 1024 +26829546 UP 10 +26829546 waslock = 0 +26829546 512 1024 +~~~ +~~~ +~~~ +~~~ +26829570 homeCount = 59 +26829571 waitCount = 23 +26829571 ripCount = 23 +26829572 locktype1 = 1 +26829572 locktype2 = 5 +26829573 locktype3 = 7 +26829573 goalCount = 4 +26829574 goalTotal = 14 +26829574 otherCount = 31 +~~~ +~~~ +26836773 DOWN 10 +26836773 0 1024 +~~~ +~~~ +~~~ +~~~ +26836797 homeCount = 59 +26836798 waitCount = 23 +26836798 ripCount = 23 +26836799 locktype1 = 1 +26836799 locktype2 = 5 +26836800 locktype3 = 7 +26836800 goalCount = 4 +26836801 goalTotal = 14 +26836801 otherCount = 31 +~~~ +26836807 UP 10 +26836807 waslock = 0 +26836807 512 1024 +~~~ +26836875 DOWN 10 +26836875 0 1024 +~~~ +~~~ +~~~ +~~~ +26836898 homeCount = 59 +26836899 waitCount = 23 +26836899 ripCount = 23 +26836900 locktype1 = 1 +26836900 locktype2 = 5 +26836901 locktype3 = 7 +26836901 goalCount = 4 +26836902 goalTotal = 14 +26836902 otherCount = 31 +~~~ +26840595 UP 11 +26840595 1024 1024 +26841373 DOWN 11 +26841373 0 1024 +26841547 UP 11 +26841547 1024 1024 +26842677 DOWN 11 +26842677 0 1024 +26842764 UP 11 +26842764 1024 1024 +26844956 DOWN 11 +26844956 0 1024 +26845156 LOCKOUT 3 +~~~ +26845172 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26845176 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26845183 UP 11 +26845183 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26845256 DOWN 11 +26845256 0 0 +26845365 UP 11 +26845365 1024 0 +26845641 DOWN 11 +26845641 0 0 +26846066 UP 11 +26846066 1024 0 +26846157 DOWN 11 +26846157 0 0 +26866622 UP 8 +26866622 128 0 +26866677 DOWN 8 +26866677 0 0 +26866696 128 0 +26867041 DOWN 8 +26867041 0 0 +26867078 128 0 +26867109 DOWN 8 +26867109 0 0 +26870172 LOCKEND +~~~ +~~~ +~~~ +26870193 0 512 +26877037 UP 10 +26877037 waslock = 0 +26877037 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26877067 512 16777728 +~~~ +26877073 DOWN 10 +26877073 0 16777728 +~~~ +~~~ +26877082 0 16778752 +~~~ +~~~ +26877084 0 16778240 +26877085 homeCount = 60 +26877085 waitCount = 23 +26877086 ripCount = 23 +26877086 locktype1 = 1 +26877087 locktype2 = 5 +26877087 locktype3 = 8 +26877088 goalCount = 4 +26877088 goalTotal = 14 +26877089 otherCount = 31 +~~~ +26877151 UP 10 +26877151 waslock = 0 +26877151 512 16778240 +~~~ +26877201 DOWN 10 +26877201 0 16778240 +26877217 0 1024 +~~~ +~~~ +~~~ +~~~ +26877224 homeCount = 60 +26877225 waitCount = 23 +26877225 ripCount = 23 +26877226 locktype1 = 1 +26877226 locktype2 = 5 +26877227 locktype3 = 8 +26877227 goalCount = 4 +26877228 goalTotal = 14 +26877228 otherCount = 31 +~~~ +26877534 UP 10 +26877535 waslock = 0 +26877534 512 1024 +~~~ +26877694 DOWN 10 +26877694 0 1024 +~~~ +~~~ +~~~ +26877715 UP 10 +26877715 waslock = 0 +26877715 512 1024 +~~~ +26877717 homeCount = 60 +26877718 waitCount = 23 +26877718 ripCount = 23 +26877719 locktype1 = 1 +26877719 locktype2 = 5 +26877720 locktype3 = 8 +26877720 goalCount = 4 +26877721 goalTotal = 14 +26877742 otherCount = 31 +~~~ +~~~ +26877844 DOWN 10 +26877844 0 1024 +~~~ +~~~ +~~~ +~~~ +26877866 homeCount = 60 +26877866 waitCount = 23 +26877867 ripCount = 23 +26877867 locktype1 = 1 +26877868 locktype2 = 5 +26877868 locktype3 = 8 +26877869 goalCount = 4 +26877869 goalTotal = 14 +26877870 otherCount = 31 +~~~ +26877872 UP 10 +26877873 waslock = 0 +26877872 512 1024 +~~~ +26877995 DOWN 10 +26877994 0 1024 +~~~ +~~~ +~~~ +~~~ +26878015 homeCount = 60 +26878016 waitCount = 23 +26878016 ripCount = 23 +26878017 locktype1 = 1 +26878017 locktype2 = 5 +26878018 locktype3 = 8 +26878018 goalCount = 4 +26878019 goalTotal = 14 +26878019 otherCount = 31 +~~~ +26878027 UP 10 +26878027 waslock = 0 +26878027 512 1024 +~~~ +26878159 DOWN 10 +26878159 0 1024 +26878173 UP 10 +26878174 waslock = 0 +26878173 512 1024 +~~~ +~~~ +~~~ +~~~ +26878196 homeCount = 60 +26878196 waitCount = 23 +26878197 ripCount = 23 +26878197 locktype1 = 1 +26878198 locktype2 = 5 +26878198 locktype3 = 8 +26878199 goalCount = 4 +26878199 goalTotal = 14 +26878200 otherCount = 31 +~~~ +~~~ +26878498 DOWN 10 +26878498 0 1024 +26878503 UP 10 +26878503 waslock = 0 +26878503 512 1024 +~~~ +~~~ +~~~ +~~~ +26878527 homeCount = 60 +26878528 waitCount = 23 +26878528 ripCount = 23 +26878529 locktype1 = 1 +26878529 locktype2 = 5 +26878530 locktype3 = 8 +26878530 goalCount = 4 +26878531 goalTotal = 14 +26878531 otherCount = 31 +~~~ +~~~ +26882217 DOWN 10 +26882217 0 1024 +26882229 UP 10 +26882229 waslock = 0 +26882229 512 1024 +~~~ +~~~ +~~~ +~~~ +26882244 homeCount = 60 +26882245 waitCount = 23 +26882245 ripCount = 23 +26882246 locktype1 = 1 +26882246 locktype2 = 5 +26882247 locktype3 = 8 +26882247 goalCount = 4 +26882248 goalTotal = 14 +26882248 otherCount = 31 +~~~ +~~~ +26882330 DOWN 10 +26882330 0 1024 +~~~ +~~~ +~~~ +~~~ +26882359 homeCount = 60 +26882360 waitCount = 23 +26882360 ripCount = 23 +26882361 locktype1 = 1 +26882361 locktype2 = 5 +26882362 locktype3 = 8 +26882362 goalCount = 4 +26882363 goalTotal = 14 +26882363 otherCount = 31 +~~~ +26882377 UP 10 +26882378 waslock = 0 +26882377 512 1024 +~~~ +26882442 DOWN 10 +26882442 0 1024 +~~~ +~~~ +~~~ +~~~ +26882465 homeCount = 60 +26882465 waitCount = 23 +26882466 ripCount = 23 +26882466 locktype1 = 1 +26882467 locktype2 = 5 +26882467 locktype3 = 8 +26882468 goalCount = 4 +26882468 goalTotal = 14 +26882469 otherCount = 31 +~~~ +26885557 UP 11 +26885557 1024 1024 +26886036 DOWN 11 +26886036 0 1024 +26886087 UP 11 +26886087 1024 1024 +26888031 DOWN 11 +26888031 0 1024 +26888091 UP 11 +26888091 1024 1024 +26889084 DOWN 11 +26889084 0 1024 +26889112 UP 11 +26889112 1024 1024 +26889129 DOWN 11 +26889129 0 1024 +26889167 UP 11 +26889167 1024 1024 +26892557 BEEP1 +26892557 BEEP2 +~~~ +~~~ +~~~ +26892586 1024 33555456 +~~~ +26892736 1024 1024 +26899793 DOWN 11 +26899793 0 1024 +~~~ +~~~ +26899812 0 0 +~~~ +~~~ +26899814 0 1 +~~~ +~~~ +26899816 0 3 +~~~ +~~~ +26899818 0 7 +~~~ +~~~ +26899820 0 15 +~~~ +~~~ +26899821 0 31 +~~~ +~~~ +26899823 0 63 +~~~ +~~~ +26899825 0 127 +~~~ +~~~ +26899827 0 255 +26899828 homeCount = 60 +26899828 waitCount = 23 +26899829 ripCount = 24 +26899830 locktype1 = 1 +26899830 locktype2 = 5 +26899851 locktype3 = 8 +26899852 goalCount = 4 +26899852 goalTotal = 14 +26899853 otherCount = 31 +~~~ +26899854 CURRENTGOAL IS [3] +~~~ +26899854 UP 11 +26899854 1024 255 +26899916 DOWN 11 +26899916 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26899951 homeCount = 60 +26899951 waitCount = 23 +26899952 ripCount = 24 +26899952 locktype1 = 1 +26899953 locktype2 = 5 +26899953 locktype3 = 8 +26899954 goalCount = 4 +26899954 goalTotal = 14 +26899955 otherCount = 31 +~~~ +26899956 CURRENTGOAL IS [3] +~~~ +26903241 UP 6 +26903241 32 255 +~~~ +~~~ +26903783 DOWN 6 +26903783 0 255 +~~~ +~~~ +26903805 0 254 +~~~ +~~~ +26903807 0 252 +~~~ +~~~ +26903809 0 248 +~~~ +~~~ +26903810 0 240 +~~~ +~~~ +26903812 0 224 +~~~ +~~~ +26903814 0 192 +~~~ +~~~ +26903816 0 128 +~~~ +~~~ +26903818 0 0 +~~~ +~~~ +26903820 0 512 +26903821 homeCount = 60 +26903821 waitCount = 23 +26903822 ripCount = 24 +26903822 locktype1 = 1 +26903823 locktype2 = 5 +26903844 locktype3 = 8 +26903844 goalCount = 4 +26903845 goalTotal = 14 +26903845 otherCount = 32 +~~~ +26911555 UP 10 +26911555 waslock = 0 +26911555 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26911582 512 16777728 +~~~ +26911731 512 512 +26912233 DOWN 10 +26912233 0 512 +~~~ +~~~ +26912255 0 2560 +~~~ +~~~ +26912257 0 2048 +26912258 homeCount = 61 +26912259 waitCount = 23 +26912259 ripCount = 24 +26912260 locktype1 = 1 +26912260 locktype2 = 5 +26912261 locktype3 = 8 +26912261 goalCount = 4 +26912262 goalTotal = 14 +26912262 otherCount = 32 +~~~ +26912287 UP 10 +26912287 waslock = 0 +26912287 512 2048 +~~~ +26920292 DOWN 10 +26920292 0 2048 +~~~ +~~~ +~~~ +~~~ +26920320 homeCount = 61 +26920320 waitCount = 23 +26920321 ripCount = 24 +26920321 locktype1 = 1 +26920322 locktype2 = 5 +26920322 locktype3 = 8 +26920323 goalCount = 4 +26920323 goalTotal = 14 +26920324 otherCount = 32 +~~~ +26920339 UP 10 +26920340 waslock = 0 +26920339 512 2048 +~~~ +26920386 DOWN 10 +26920386 0 2048 +~~~ +~~~ +~~~ +~~~ +26920410 homeCount = 61 +26920411 waitCount = 23 +26920411 ripCount = 24 +26920412 locktype1 = 1 +26920412 locktype2 = 5 +26920413 locktype3 = 8 +26920413 goalCount = 4 +26920414 goalTotal = 14 +26920414 otherCount = 32 +~~~ +26923784 UP 12 +26923784 2048 2048 +26925861 DOWN 12 +26925861 0 2048 +26925884 UP 12 +26925884 2048 2048 +26925973 DOWN 12 +26925973 0 2048 +26926052 UP 12 +26926052 2048 2048 +26926816 DOWN 12 +26926816 0 2048 +26926864 UP 12 +26926864 2048 2048 +26926874 DOWN 12 +26926874 0 2048 +26926909 UP 12 +26926909 2048 2048 +26926925 DOWN 12 +26926925 0 2048 +26926989 UP 12 +26926989 2048 2048 +26926999 DOWN 12 +26926999 0 2048 +26927041 UP 12 +26927041 2048 2048 +26927325 DOWN 12 +26927325 0 2048 +26927356 UP 12 +26927356 2048 2048 +26927785 CLICK1 +26927785 CLICK2 +~~~ +~~~ +~~~ +26927811 2048 67110912 +~~~ +26927961 2048 2048 +26928178 DOWN 12 +26928178 0 2048 +26928199 UP 12 +26928199 2048 2048 +~~~ +~~~ +26928218 2048 0 +~~~ +~~~ +26928220 2048 1 +~~~ +~~~ +26928222 2048 3 +~~~ +~~~ +26928224 2048 7 +~~~ +~~~ +26928226 2048 15 +~~~ +~~~ +26928227 2048 31 +~~~ +~~~ +26928229 2048 63 +~~~ +~~~ +26928231 2048 127 +~~~ +~~~ +26928233 2048 255 +26928234 homeCount = 61 +26928234 waitCount = 24 +26928235 ripCount = 24 +26928256 locktype1 = 1 +26928256 locktype2 = 5 +26928257 locktype3 = 8 +26928257 goalCount = 4 +26928258 goalTotal = 14 +26928258 otherCount = 32 +~~~ +26928259 CURRENTGOAL IS [3] +~~~ +26933900 DOWN 12 +26933900 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26933935 homeCount = 61 +26933936 waitCount = 24 +26933937 ripCount = 24 +26933937 locktype1 = 1 +26933938 locktype2 = 5 +26933938 locktype3 = 8 +26933939 goalCount = 4 +26933939 goalTotal = 14 +26933940 otherCount = 32 +~~~ +26933941 CURRENTGOAL IS [3] +~~~ +26933962 UP 12 +26933962 2048 255 +26933994 DOWN 12 +26933994 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26934035 homeCount = 61 +26934036 waitCount = 24 +26934036 ripCount = 24 +26934037 locktype1 = 1 +26934037 locktype2 = 5 +26934038 locktype3 = 8 +26934038 goalCount = 4 +26934039 goalTotal = 14 +26934039 otherCount = 32 +~~~ +26934040 CURRENTGOAL IS [3] +~~~ +26937185 UP 3 +26937185 4 255 +~~~ +~~~ +26937210 outer reward +~~~ +26937210 4 262399 +~~~ +~~~ +26937426 DOWN 3 +26937426 0 262399 +~~~ +~~~ +26937450 0 262398 +~~~ +~~~ +26937452 0 262396 +~~~ +~~~ +26937453 0 262392 +~~~ +~~~ +26937455 0 262384 +~~~ +~~~ +26937457 0 262368 +~~~ +~~~ +26937459 0 262336 +~~~ +~~~ +26937461 0 262272 +~~~ +~~~ +26937463 0 262144 +~~~ +~~~ +26937464 0 262656 +26937465 homeCount = 61 +26937466 waitCount = 24 +26937466 ripCount = 24 +26937487 locktype1 = 1 +26937488 locktype2 = 5 +26937488 locktype3 = 8 +26937489 goalCount = 5 +26937489 goalTotal = 15 +26937490 otherCount = 32 +~~~ +26937490 4 262656 +26937660 4 512 +26937920 DOWN 3 +26937920 0 512 +26937928 4 512 +26938037 DOWN 3 +26938037 0 512 +26938051 4 512 +26938169 DOWN 3 +26938169 0 512 +26938180 4 512 +26938303 DOWN 3 +26938303 0 512 +26938316 4 512 +26938445 DOWN 3 +26938445 0 512 +26938449 4 512 +26947063 DOWN 3 +26947063 0 512 +26947088 4 512 +26947159 DOWN 3 +26947159 0 512 +26953706 UP 10 +26953707 waslock = 0 +26953706 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26953737 512 16777728 +~~~ +26953887 512 512 +26957615 DOWN 10 +26957615 0 512 +~~~ +~~~ +26957638 0 2560 +~~~ +~~~ +26957640 0 2048 +26957641 homeCount = 62 +26957641 waitCount = 24 +26957642 ripCount = 24 +26957642 locktype1 = 1 +26957643 locktype2 = 5 +26957643 locktype3 = 8 +26957644 goalCount = 5 +26957644 goalTotal = 15 +26957645 otherCount = 32 +~~~ +26957681 UP 10 +26957681 waslock = 0 +26957681 512 2048 +26957700 DOWN 10 +26957700 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +26957724 homeCount = 62 +26957724 waitCount = 24 +26957725 ripCount = 24 +26957725 locktype1 = 1 +26957726 locktype2 = 5 +26957726 locktype3 = 8 +26957727 goalCount = 5 +26957727 goalTotal = 15 +26957728 otherCount = 32 +~~~ +26962052 UP 12 +26962052 2048 2048 +26964338 DOWN 12 +26964338 0 2048 +26964404 UP 12 +26964404 2048 2048 +26964424 DOWN 12 +26964424 0 2048 +26964540 UP 12 +26964540 2048 2048 +26965052 CLICK1 +26965052 CLICK2 +~~~ +~~~ +~~~ +26965081 2048 67110912 +~~~ +26965231 2048 2048 +26973280 DOWN 12 +26973280 0 2048 +~~~ +~~~ +26973298 0 0 +~~~ +~~~ +26973300 0 1 +~~~ +~~~ +26973302 0 3 +~~~ +~~~ +26973303 0 7 +~~~ +~~~ +26973305 0 15 +~~~ +~~~ +26973307 0 31 +~~~ +~~~ +26973309 0 63 +~~~ +~~~ +26973311 0 127 +~~~ +~~~ +26973312 0 255 +26973314 homeCount = 62 +26973314 waitCount = 25 +26973315 ripCount = 24 +26973315 locktype1 = 1 +26973316 locktype2 = 5 +26973337 locktype3 = 8 +26973337 goalCount = 5 +26973338 goalTotal = 15 +26973338 otherCount = 32 +~~~ +26973339 CURRENTGOAL IS [3] +~~~ +26977815 UP 3 +26977815 4 255 +~~~ +~~~ +26977840 DOWN 3 +26977840 0 255 +26977841 outer reward +~~~ +~~~ +26977843 0 262399 +~~~ +~~~ +~~~ +26977869 0 262398 +~~~ +~~~ +26977871 0 262396 +~~~ +~~~ +26977873 0 262392 +~~~ +~~~ +26977875 0 262384 +~~~ +~~~ +26977876 0 262368 +~~~ +~~~ +26977878 0 262336 +~~~ +~~~ +26977880 0 262272 +~~~ +~~~ +26977882 0 262144 +~~~ +~~~ +26977884 0 262656 +26977885 homeCount = 62 +26977885 waitCount = 25 +26977886 ripCount = 24 +26977907 locktype1 = 1 +26977907 locktype2 = 5 +26977908 locktype3 = 8 +26977908 goalCount = 6 +26977909 goalTotal = 16 +26977909 otherCount = 32 +~~~ +26977915 4 262656 +26978097 DOWN 3 +26978097 0 262656 +26978154 4 262656 +26978291 4 512 +26978403 DOWN 3 +26978403 0 512 +26978408 4 512 +26978514 DOWN 3 +26978514 0 512 +26978539 4 512 +26978642 DOWN 3 +26978642 0 512 +26978666 4 512 +26978769 DOWN 3 +26978769 0 512 +26978798 4 512 +26978909 DOWN 3 +26978909 0 512 +26978930 4 512 +26979051 DOWN 3 +26979051 0 512 +26979070 4 512 +26979189 DOWN 3 +26979189 0 512 +26979206 4 512 +26979331 DOWN 3 +26979331 0 512 +26979347 4 512 +26979473 DOWN 3 +26979473 0 512 +26979486 4 512 +26986107 DOWN 3 +26986107 0 512 +26986116 4 512 +26986209 DOWN 3 +26986209 0 512 +26996165 UP 10 +26996165 waslock = 0 +26996165 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26996194 512 16777728 +~~~ +26996209 DOWN 10 +26996209 0 16777728 +~~~ +~~~ +26996229 0 16778752 +~~~ +~~~ +26996231 0 16778240 +26996232 homeCount = 63 +26996233 waitCount = 25 +26996233 ripCount = 24 +26996234 locktype1 = 1 +26996234 locktype2 = 5 +26996235 locktype3 = 8 +26996235 goalCount = 6 +26996236 goalTotal = 16 +26996236 otherCount = 32 +~~~ +26996334 UP 10 +26996335 waslock = 0 +26996334 512 16778240 +26996344 512 1024 +~~~ +26999145 DOWN 10 +26999145 0 1024 +~~~ +~~~ +~~~ +~~~ +26999172 homeCount = 63 +26999173 waitCount = 25 +26999173 ripCount = 24 +26999174 locktype1 = 1 +26999174 locktype2 = 5 +26999175 locktype3 = 8 +26999175 goalCount = 6 +26999176 goalTotal = 16 +26999176 otherCount = 32 +~~~ +26999205 UP 10 +26999205 waslock = 0 +26999205 512 1024 +~~~ +26999233 DOWN 10 +26999233 0 1024 +~~~ +~~~ +~~~ +~~~ +26999253 homeCount = 63 +26999254 waitCount = 25 +26999255 ripCount = 24 +26999255 locktype1 = 1 +26999256 locktype2 = 5 +26999256 locktype3 = 8 +26999257 goalCount = 6 +26999257 goalTotal = 16 +26999258 otherCount = 32 +~~~ +27001162 UP 11 +27001162 1024 1024 +27001306 DOWN 11 +27001306 0 1024 +27001401 UP 11 +27001401 1024 1024 +27003166 DOWN 11 +27003166 0 1024 +27003171 UP 11 +27003171 1024 1024 +27004049 DOWN 11 +27004049 0 1024 +27004086 UP 11 +27004086 1024 1024 +27007946 DOWN 11 +27007946 0 1024 +27008003 UP 11 +27008003 1024 1024 +27008162 BEEP1 +27008162 BEEP2 +~~~ +~~~ +~~~ +27008181 1024 33555456 +~~~ +27008331 1024 1024 +27014589 DOWN 11 +27014589 0 1024 +27014597 UP 11 +27014597 1024 1024 +~~~ +~~~ +27014609 1024 0 +~~~ +~~~ +27014611 1024 1 +~~~ +~~~ +27014613 1024 3 +~~~ +~~~ +27014615 1024 7 +~~~ +~~~ +27014617 1024 15 +~~~ +~~~ +27014618 1024 31 +~~~ +~~~ +27014620 1024 63 +~~~ +~~~ +27014622 1024 127 +~~~ +~~~ +27014624 1024 255 +27014625 homeCount = 63 +27014625 waitCount = 25 +27014626 ripCount = 25 +27014626 locktype1 = 1 +27014648 locktype2 = 5 +27014648 locktype3 = 8 +27014649 goalCount = 6 +27014649 goalTotal = 16 +27014650 otherCount = 32 +~~~ +27014651 CURRENTGOAL IS [3] +~~~ +27014657 DOWN 11 +27014657 0 255 +27014686 UP 11 +27014686 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27014706 homeCount = 63 +27014707 waitCount = 25 +27014707 ripCount = 25 +27014708 locktype1 = 1 +27014708 locktype2 = 5 +27014709 locktype3 = 8 +27014709 goalCount = 6 +27014710 goalTotal = 16 +27014710 otherCount = 32 +~~~ +27014712 CURRENTGOAL IS [3] +~~~ +27017012 DOWN 11 +27017012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27017052 homeCount = 63 +27017052 waitCount = 25 +27017053 ripCount = 25 +27017053 locktype1 = 1 +27017054 locktype2 = 5 +27017054 locktype3 = 8 +27017055 goalCount = 6 +27017055 goalTotal = 16 +27017056 otherCount = 32 +~~~ +27017057 CURRENTGOAL IS [3] +~~~ +27021381 UP 3 +27021381 4 255 +~~~ +27021406 DOWN 3 +27021406 0 255 +~~~ +27021408 outer reward +~~~ +27021408 0 262399 +~~~ +~~~ +~~~ +~~~ +27021428 0 262398 +~~~ +~~~ +27021429 0 262396 +~~~ +~~~ +27021431 0 262392 +~~~ +~~~ +27021433 0 262384 +~~~ +~~~ +27021435 0 262368 +~~~ +~~~ +27021437 0 262336 +~~~ +~~~ +27021439 0 262272 +~~~ +~~~ +27021440 0 262144 +~~~ +~~~ +27021442 0 262656 +27021443 homeCount = 63 +27021444 waitCount = 25 +27021444 ripCount = 25 +27021465 locktype1 = 1 +27021466 locktype2 = 5 +27021466 locktype3 = 8 +27021467 goalCount = 7 +27021467 goalTotal = 17 +27021468 otherCount = 32 +~~~ +27021468 4 262656 +27021652 DOWN 3 +27021652 0 262656 +27021699 4 262656 +27021858 4 512 +27021932 DOWN 3 +27021932 0 512 +27021941 4 512 +27022042 DOWN 3 +27022042 0 512 +27022076 4 512 +27022167 DOWN 3 +27022167 0 512 +27022203 4 512 +27022292 DOWN 3 +27022292 0 512 +27022330 4 512 +27022423 DOWN 3 +27022423 0 512 +27022459 4 512 +27022563 DOWN 3 +27022563 0 512 +27022595 4 512 +27022716 DOWN 3 +27022716 0 512 +27022736 4 512 +27022857 DOWN 3 +27022857 0 512 +27022878 4 512 +27023007 DOWN 3 +27023007 0 512 +27023021 4 512 +27023155 DOWN 3 +27023155 0 512 +27023169 4 512 +27023313 DOWN 3 +27023313 0 512 +27023320 4 512 +27023931 DOWN 3 +27023931 0 512 +27023939 4 512 +27030753 DOWN 3 +27030753 0 512 +27036671 UP 10 +27036671 waslock = 0 +27036671 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27036703 512 16777728 +~~~ +27036738 DOWN 10 +27036738 0 16777728 +~~~ +~~~ +27036757 0 16778752 +~~~ +~~~ +27036759 0 16778240 +27036760 homeCount = 64 +27036761 waitCount = 25 +27036761 ripCount = 25 +27036762 locktype1 = 1 +27036762 locktype2 = 5 +27036763 locktype3 = 8 +27036763 goalCount = 7 +27036764 goalTotal = 17 +27036764 otherCount = 32 +~~~ +27036785 UP 10 +27036786 waslock = 0 +27036785 512 16778240 +~~~ +27036853 512 1024 +27036868 DOWN 10 +27036868 0 1024 +~~~ +~~~ +~~~ +~~~ +27036891 homeCount = 64 +27036892 waitCount = 25 +27036892 ripCount = 25 +27036893 locktype1 = 1 +27036893 locktype2 = 5 +27036894 locktype3 = 8 +27036894 goalCount = 7 +27036895 goalTotal = 17 +27036895 otherCount = 32 +~~~ +27036905 UP 10 +27036905 waslock = 0 +27036905 512 1024 +~~~ +27041635 DOWN 10 +27041635 0 1024 +~~~ +~~~ +~~~ +~~~ +27041661 homeCount = 64 +27041661 waitCount = 25 +27041662 ripCount = 25 +27041662 locktype1 = 1 +27041663 locktype2 = 5 +27041663 locktype3 = 8 +27041664 goalCount = 7 +27041664 goalTotal = 17 +27041665 otherCount = 32 +~~~ +27043061 UP 11 +27043061 1024 1024 +27046061 BEEP1 +27046061 BEEP2 +~~~ +~~~ +~~~ +27046079 1024 33555456 +~~~ +27046120 DOWN 11 +27046120 0 33555456 +27046136 UP 11 +27046136 1024 33555456 +27046229 1024 1024 +~~~ +~~~ +27046756 1024 0 +~~~ +~~~ +27046758 1024 1 +~~~ +~~~ +27046760 1024 3 +~~~ +~~~ +27046762 1024 7 +~~~ +~~~ +27046764 1024 15 +~~~ +~~~ +27046765 1024 31 +~~~ +~~~ +27046767 1024 63 +~~~ +~~~ +27046769 1024 127 +~~~ +~~~ +27046771 1024 255 +27046772 homeCount = 64 +27046773 waitCount = 25 +27046773 ripCount = 26 +27046774 locktype1 = 1 +27046795 locktype2 = 5 +27046795 locktype3 = 8 +27046796 goalCount = 7 +27046796 goalTotal = 17 +27046797 otherCount = 32 +~~~ +27046798 CURRENTGOAL IS [3] +~~~ +27053631 DOWN 11 +27053631 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27053669 UP 11 +27053669 1024 255 +~~~ +~~~ +~~~ +~~~ +27053674 homeCount = 64 +27053674 waitCount = 25 +27053675 ripCount = 26 +27053675 locktype1 = 1 +27053676 locktype2 = 5 +27053676 locktype3 = 8 +27053677 goalCount = 7 +27053677 goalTotal = 17 +27053678 otherCount = 32 +~~~ +27053679 CURRENTGOAL IS [3] +~~~ +27053700 DOWN 11 +27053700 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27053736 homeCount = 64 +27053736 waitCount = 25 +27053737 ripCount = 26 +27053737 locktype1 = 1 +27053738 locktype2 = 5 +27053739 locktype3 = 8 +27053739 goalCount = 7 +27053740 goalTotal = 17 +27053740 otherCount = 32 +~~~ +27053741 CURRENTGOAL IS [3] +~~~ +27053762 UP 11 +27053762 1024 255 +27056774 DOWN 11 +27056774 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27056816 homeCount = 64 +27056816 waitCount = 25 +27056817 ripCount = 26 +27056817 locktype1 = 1 +27056818 locktype2 = 5 +27056818 locktype3 = 8 +27056819 goalCount = 7 +27056819 goalTotal = 17 +27056820 otherCount = 32 +~~~ +27056821 CURRENTGOAL IS [3] +~~~ +27062933 UP 3 +27062933 4 255 +~~~ +~~~ +27062952 outer reward +~~~ +27062952 4 262399 +~~~ +~~~ +27063104 DOWN 3 +27063104 0 262399 +~~~ +~~~ +27063129 0 262398 +~~~ +~~~ +27063131 0 262396 +~~~ +~~~ +27063133 0 262392 +~~~ +~~~ +27063134 0 262384 +~~~ +~~~ +27063136 0 262368 +~~~ +~~~ +27063138 0 262336 +~~~ +~~~ +27063140 0 262272 +~~~ +~~~ +27063142 0 262144 +~~~ +~~~ +27063144 0 262656 +27063145 homeCount = 64 +27063145 waitCount = 25 +27063146 ripCount = 26 +27063167 locktype1 = 1 +27063167 locktype2 = 5 +27063168 locktype3 = 8 +27063168 goalCount = 8 +27063169 goalTotal = 18 +27063169 otherCount = 32 +~~~ +27063170 4 262656 +27063263 DOWN 3 +27063263 0 262656 +27063290 4 262656 +27063402 4 512 +27063542 DOWN 3 +27063542 0 512 +27063554 4 512 +27063660 DOWN 3 +27063660 0 512 +27063683 4 512 +27063784 DOWN 3 +27063784 0 512 +27063813 4 512 +27063917 DOWN 3 +27063917 0 512 +27063947 4 512 +27064050 DOWN 3 +27064050 0 512 +27064081 4 512 +27064190 DOWN 3 +27064190 0 512 +27064217 4 512 +27064327 DOWN 3 +27064327 0 512 +27064350 4 512 +27064474 DOWN 3 +27064474 0 512 +27064492 4 512 +27064630 DOWN 3 +27064630 0 512 +27064639 4 512 +27064937 DOWN 3 +27064937 0 512 +27064946 4 512 +27071303 DOWN 3 +27071303 0 512 +27071339 4 512 +27071394 DOWN 3 +27071394 0 512 +27082226 UP 10 +27082226 waslock = 0 +27082226 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27082258 512 16777728 +~~~ +27082277 DOWN 10 +27082277 0 16777728 +~~~ +~~~ +27082306 0 16779776 +~~~ +~~~ +27082308 0 16779264 +27082309 homeCount = 65 +27082310 waitCount = 25 +27082310 ripCount = 26 +27082311 locktype1 = 1 +27082311 locktype2 = 5 +27082312 locktype3 = 8 +27082312 goalCount = 8 +27082313 goalTotal = 18 +27082313 otherCount = 32 +~~~ +27082334 UP 10 +27082335 waslock = 0 +27082334 512 16779264 +~~~ +27082408 512 2048 +27082466 DOWN 10 +27082466 0 2048 +~~~ +~~~ +~~~ +~~~ +27082492 homeCount = 65 +27082493 waitCount = 25 +27082493 ripCount = 26 +27082494 locktype1 = 1 +27082494 locktype2 = 5 +27082495 locktype3 = 8 +27082495 goalCount = 8 +27082496 goalTotal = 18 +27082496 otherCount = 32 +~~~ +27082497 UP 10 +27082497 waslock = 0 +27082497 512 2048 +~~~ +27087311 DOWN 10 +27087311 0 2048 +~~~ +~~~ +~~~ +~~~ +27087333 homeCount = 65 +27087334 waitCount = 25 +27087334 ripCount = 26 +27087335 locktype1 = 1 +27087335 locktype2 = 5 +27087336 locktype3 = 8 +27087336 goalCount = 8 +27087337 goalTotal = 18 +27087337 otherCount = 32 +~~~ +27089424 UP 12 +27089424 2048 2048 +27090682 DOWN 12 +27090682 0 2048 +27090773 UP 12 +27090773 2048 2048 +27091335 DOWN 12 +27091335 0 2048 +27091389 UP 12 +27091389 2048 2048 +27091472 DOWN 12 +27091472 0 2048 +27091539 UP 12 +27091539 2048 2048 +27094269 DOWN 12 +27094268 0 2048 +27094323 UP 12 +27094323 2048 2048 +27094359 DOWN 12 +27094359 0 2048 +27094535 UP 12 +27094535 2048 2048 +27097424 CLICK1 +27097424 CLICK2 +~~~ +~~~ +~~~ +27097442 2048 67110912 +~~~ +27097592 2048 2048 +27103685 DOWN 12 +27103685 0 2048 +~~~ +~~~ +27103710 0 0 +~~~ +~~~ +27103712 0 1 +~~~ +~~~ +27103714 0 3 +~~~ +~~~ +27103715 0 7 +~~~ +~~~ +27103717 0 15 +~~~ +~~~ +27103719 0 31 +~~~ +~~~ +27103721 0 63 +~~~ +~~~ +27103723 0 127 +~~~ +~~~ +27103725 0 255 +27103726 homeCount = 65 +27103726 waitCount = 26 +27103727 ripCount = 26 +27103727 locktype1 = 1 +27103728 locktype2 = 5 +27103749 locktype3 = 8 +27103749 goalCount = 8 +27103750 goalTotal = 18 +27103750 otherCount = 32 +~~~ +27103751 CURRENTGOAL IS [3] +~~~ +27103752 UP 12 +27103752 2048 255 +27103785 DOWN 12 +27103785 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27103821 homeCount = 65 +27103822 waitCount = 26 +27103822 ripCount = 26 +27103823 locktype1 = 1 +27103824 locktype2 = 5 +27103824 locktype3 = 8 +27103825 goalCount = 8 +27103825 goalTotal = 18 +27103826 otherCount = 32 +~~~ +27103827 CURRENTGOAL IS [3] +~~~ +27108255 UP 2 +27108255 2 255 +27108270 DOWN 2 +27108270 0 255 +~~~ +~~~ +~~~ +~~~ +27108294 0 254 +~~~ +~~~ +27108296 0 252 +~~~ +~~~ +27108298 0 248 +~~~ +~~~ +27108300 0 240 +~~~ +~~~ +27108302 0 224 +~~~ +~~~ +27108303 0 192 +~~~ +~~~ +27108305 0 128 +~~~ +~~~ +27108307 0 0 +~~~ +~~~ +27108309 0 512 +27108310 homeCount = 65 +27108310 waitCount = 26 +27108311 ripCount = 26 +27108311 locktype1 = 1 +27108332 locktype2 = 5 +27108333 locktype3 = 8 +27108333 goalCount = 8 +27108334 goalTotal = 18 +27108334 otherCount = 33 +~~~ +27108335 2 512 +27109045 DOWN 2 +27109045 0 512 +27109118 2 512 +27109129 DOWN 2 +27109129 0 512 +27114052 UP 10 +27114052 waslock = 0 +27114052 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27114082 512 16777728 +~~~ +27114122 DOWN 10 +27114122 0 16777728 +~~~ +~~~ +27114145 0 16779776 +~~~ +~~~ +27114147 0 16779264 +27114148 homeCount = 66 +27114149 waitCount = 26 +27114149 ripCount = 26 +27114150 locktype1 = 1 +27114150 locktype2 = 5 +27114152 locktype3 = 8 +27114152 goalCount = 8 +27114152 goalTotal = 18 +27114152 otherCount = 33 +~~~ +27114173 UP 10 +27114173 waslock = 0 +27114173 512 16779264 +~~~ +27114232 512 2048 +27114292 DOWN 10 +27114292 0 2048 +~~~ +~~~ +27114320 UP 10 +27114320 waslock = 0 +27114320 512 2048 +~~~ +~~~ +27114323 homeCount = 66 +27114323 waitCount = 26 +27114324 ripCount = 26 +27114324 locktype1 = 1 +27114325 locktype2 = 5 +27114325 locktype3 = 8 +27114326 goalCount = 8 +27114326 goalTotal = 18 +27114347 otherCount = 33 +~~~ +~~~ +27117113 DOWN 10 +27117113 0 2048 +~~~ +~~~ +~~~ +~~~ +27117139 homeCount = 66 +27117140 waitCount = 26 +27117140 ripCount = 26 +27117141 locktype1 = 1 +27117141 locktype2 = 5 +27117142 locktype3 = 8 +27117142 goalCount = 8 +27117143 goalTotal = 18 +27117143 otherCount = 33 +~~~ +27117158 UP 10 +27117159 waslock = 0 +27117158 512 2048 +~~~ +27117200 DOWN 10 +27117200 0 2048 +~~~ +~~~ +~~~ +~~~ +27117221 homeCount = 66 +27117222 waitCount = 26 +27117222 ripCount = 26 +27117223 locktype1 = 1 +27117223 locktype2 = 5 +27117224 locktype3 = 8 +27117224 goalCount = 8 +27117225 goalTotal = 18 +27117225 otherCount = 33 +~~~ +27119113 UP 12 +27119113 2048 2048 +27121174 DOWN 12 +27121174 0 2048 +27121261 UP 12 +27121261 2048 2048 +27121838 DOWN 12 +27121838 0 2048 +27121887 UP 12 +27121887 2048 2048 +27121905 DOWN 12 +27121905 0 2048 +27121986 UP 12 +27121986 2048 2048 +27122114 CLICK1 +27122114 CLICK2 +~~~ +~~~ +~~~ +27122139 2048 67110912 +~~~ +27122289 2048 2048 +27127218 DOWN 12 +27127218 0 2048 +~~~ +~~~ +27127238 0 0 +~~~ +~~~ +27127239 0 1 +~~~ +~~~ +27127241 0 3 +~~~ +~~~ +27127243 0 7 +~~~ +~~~ +27127245 0 15 +~~~ +~~~ +27127247 0 31 +~~~ +~~~ +27127248 0 63 +~~~ +~~~ +27127250 0 127 +~~~ +~~~ +27127252 0 255 +27127253 homeCount = 66 +27127254 waitCount = 27 +27127254 ripCount = 26 +27127255 locktype1 = 1 +27127255 locktype2 = 5 +27127276 locktype3 = 8 +27127277 goalCount = 8 +27127277 goalTotal = 18 +27127278 otherCount = 33 +~~~ +27127279 CURRENTGOAL IS [3] +~~~ +27130040 UP 3 +27130040 4 255 +~~~ +~~~ +27130059 outer reward +~~~ +27130059 4 262399 +~~~ +~~~ +27130264 DOWN 3 +27130264 0 262399 +~~~ +~~~ +27130288 0 262398 +~~~ +~~~ +27130289 0 262396 +~~~ +~~~ +27130291 0 262392 +~~~ +~~~ +27130293 0 262384 +~~~ +~~~ +27130295 0 262368 +~~~ +~~~ +27130297 0 262336 +~~~ +~~~ +27130299 0 262272 +~~~ +~~~ +27130300 0 262144 +~~~ +~~~ +27130302 0 262656 +27130303 homeCount = 66 +27130304 waitCount = 27 +27130304 ripCount = 26 +27130325 locktype1 = 1 +27130325 locktype2 = 5 +27130326 locktype3 = 8 +27130326 goalCount = 9 +27130327 goalTotal = 19 +27130327 otherCount = 33 +~~~ +27130328 4 262656 +27130509 4 512 +27130691 DOWN 3 +27130691 0 512 +27130708 4 512 +27130810 DOWN 3 +27130810 0 512 +27130833 4 512 +27130933 DOWN 3 +27130933 0 512 +27130961 4 512 +27131066 DOWN 3 +27131066 0 512 +27131090 4 512 +27131199 DOWN 3 +27131199 0 512 +27131228 4 512 +27131361 DOWN 3 +27131361 0 512 +27131369 4 512 +27131503 DOWN 3 +27131503 0 512 +27131514 4 512 +27131656 DOWN 3 +27131656 0 512 +27131664 4 512 +27137144 DOWN 3 +27137144 0 512 +27137148 4 512 +27137802 DOWN 3 +27137802 0 512 +27137820 4 512 +27137905 DOWN 3 +27137905 0 512 +27144403 UP 10 +27144403 waslock = 0 +27144403 512 512 +27144418 DOWN 10 +27144418 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27144434 0 16777728 +~~~ +~~~ +~~~ +27144437 0 16779776 +~~~ +~~~ +27144439 0 16779264 +27144440 homeCount = 67 +27144441 waitCount = 27 +27144441 ripCount = 26 +27144442 locktype1 = 1 +27144442 locktype2 = 5 +27144443 locktype3 = 8 +27144443 goalCount = 9 +27144444 goalTotal = 19 +27144465 otherCount = 33 +~~~ +27144570 UP 10 +27144570 waslock = 0 +27144569 512 16779264 +27144584 512 2048 +~~~ +27147490 DOWN 10 +27147489 0 2048 +~~~ +~~~ +~~~ +~~~ +27147518 homeCount = 67 +27147519 waitCount = 27 +27147519 ripCount = 26 +27147520 locktype1 = 1 +27147520 locktype2 = 5 +27147521 locktype3 = 8 +27147521 goalCount = 9 +27147522 goalTotal = 19 +27147522 otherCount = 33 +~~~ +27149811 UP 12 +27149811 2048 2048 +27150616 DOWN 12 +27150616 0 2048 +27150637 UP 12 +27150637 2048 2048 +27150660 DOWN 12 +27150660 0 2048 +27150819 UP 12 +27150819 2048 2048 +27153312 CLICK1 +27153312 CLICK2 +~~~ +~~~ +~~~ +27153335 2048 67110912 +~~~ +27153484 2048 2048 +27157877 DOWN 12 +27157877 0 2048 +~~~ +~~~ +27157896 0 0 +~~~ +~~~ +27157897 0 1 +~~~ +~~~ +27157899 0 3 +~~~ +~~~ +27157901 0 7 +~~~ +~~~ +27157903 0 15 +~~~ +~~~ +27157905 0 31 +~~~ +~~~ +27157906 0 63 +~~~ +~~~ +27157908 0 127 +~~~ +~~~ +27157910 0 255 +27157911 homeCount = 67 +27157912 waitCount = 28 +27157912 ripCount = 26 +27157913 locktype1 = 1 +27157913 locktype2 = 5 +27157934 locktype3 = 8 +27157935 goalCount = 9 +27157935 goalTotal = 19 +27157936 otherCount = 33 +~~~ +27157937 CURRENTGOAL IS [3] +~~~ +27157937 UP 12 +27157937 2048 255 +27157959 DOWN 12 +27157959 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27157999 homeCount = 67 +27157999 waitCount = 28 +27158000 ripCount = 26 +27158000 locktype1 = 1 +27158001 locktype2 = 5 +27158001 locktype3 = 8 +27158002 goalCount = 9 +27158002 goalTotal = 19 +27158003 otherCount = 33 +~~~ +27158004 CURRENTGOAL IS [3] +~~~ +27158025 UP 12 +27158025 2048 255 +27158102 DOWN 12 +27158102 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158130 UP 12 +27158130 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158138 DOWN 12 +27158138 0 255 +~~~ +~~~ +~~~ +27158142 homeCount = 67 +27158142 waitCount = 28 +27158143 ripCount = 26 +27158143 locktype1 = 1 +27158144 locktype2 = 5 +27158145 locktype3 = 8 +27158145 goalCount = 9 +27158146 goalTotal = 19 +27158146 otherCount = 33 +~~~ +27158147 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158175 homeCount = 67 +27158176 waitCount = 28 +27158176 ripCount = 26 +27158177 locktype1 = 1 +27158177 locktype2 = 5 +27158178 locktype3 = 8 +27158199 goalCount = 9 +27158199 goalTotal = 19 +27158200 otherCount = 33 +~~~ +27158201 CURRENTGOAL IS [3] +~~~ +27158201 UP 12 +27158201 2048 255 +27158224 DOWN 12 +27158223 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158250 homeCount = 67 +27158251 waitCount = 28 +27158251 ripCount = 26 +27158252 locktype1 = 1 +27158252 locktype2 = 5 +27158253 locktype3 = 8 +27158253 goalCount = 9 +27158254 goalTotal = 19 +27158254 otherCount = 33 +~~~ +27158255 CURRENTGOAL IS [3] +~~~ +27158327 UP 12 +27158327 2048 255 +27158356 DOWN 12 +27158356 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158391 homeCount = 67 +27158392 waitCount = 28 +27158392 ripCount = 26 +27158393 locktype1 = 1 +27158393 locktype2 = 5 +27158394 locktype3 = 8 +27158394 goalCount = 9 +27158395 goalTotal = 19 +27158395 otherCount = 33 +~~~ +27158396 CURRENTGOAL IS [3] +~~~ +27158417 UP 12 +27158417 2048 255 +27158500 DOWN 12 +27158500 0 255 +27158522 UP 12 +27158522 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158542 homeCount = 67 +27158543 waitCount = 28 +27158543 ripCount = 26 +27158544 locktype1 = 1 +27158544 locktype2 = 5 +27158545 locktype3 = 8 +27158545 goalCount = 9 +27158546 goalTotal = 19 +27158546 otherCount = 33 +~~~ +27158548 CURRENTGOAL IS [3] +~~~ +27160569 DOWN 12 +27160569 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27160604 homeCount = 67 +27160605 waitCount = 28 +27160606 ripCount = 26 +27160606 locktype1 = 1 +27160607 locktype2 = 5 +27160607 locktype3 = 8 +27160608 goalCount = 9 +27160608 goalTotal = 19 +27160609 otherCount = 33 +~~~ +27160610 CURRENTGOAL IS [3] +~~~ +27160631 UP 12 +27160631 2048 255 +27160668 DOWN 12 +27160668 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27160706 homeCount = 67 +27160707 waitCount = 28 +27160707 ripCount = 26 +27160708 locktype1 = 1 +27160708 locktype2 = 5 +27160709 locktype3 = 8 +27160709 goalCount = 9 +27160710 goalTotal = 19 +27160710 otherCount = 33 +~~~ +27160711 CURRENTGOAL IS [3] +~~~ +27163334 UP 3 +27163334 4 255 +27163351 DOWN 3 +27163351 0 255 +~~~ +~~~ +27163374 outer reward +~~~ +27163375 0 262399 +~~~ +~~~ +27163379 outerreps = 8 +~~~ +~~~ +~~~ +~~~ +27163382 0 262398 +~~~ +~~~ +27163384 0 262396 +~~~ +~~~ +27163386 0 262392 +~~~ +~~~ +27163388 0 262384 +~~~ +~~~ +27163389 0 262368 +~~~ +~~~ +27163391 0 262336 +~~~ +~~~ +27163393 0 262272 +~~~ +~~~ +27163395 0 262144 +~~~ +~~~ +27163397 0 262656 +27163398 homeCount = 67 +27163398 waitCount = 28 +27163420 ripCount = 26 +27163420 locktype1 = 1 +27163421 locktype2 = 5 +27163421 locktype3 = 8 +27163422 goalCount = 0 +27163422 goalTotal = 20 +27163423 otherCount = 33 +~~~ +27163423 4 262656 +27163560 DOWN 3 +27163560 0 262656 +27163618 4 262656 +27163824 4 512 +27163981 DOWN 3 +27163981 0 512 +27164002 4 512 +27164107 DOWN 3 +27164107 0 512 +27164122 4 512 +27164237 DOWN 3 +27164237 0 512 +27164261 4 512 +27164373 DOWN 3 +27164373 0 512 +27164398 4 512 +27164523 DOWN 3 +27164523 0 512 +27164537 4 512 +27164678 DOWN 3 +27164677 0 512 +27164687 4 512 +27164824 DOWN 3 +27164824 0 512 +27164832 4 512 +27164973 DOWN 3 +27164973 0 512 +27164981 4 512 +27165435 DOWN 3 +27165435 0 512 +27165447 4 512 +27168176 DOWN 3 +27168176 0 512 +27168182 4 512 +27168186 DOWN 3 +27168186 0 512 +27168193 4 512 +27171704 DOWN 3 +27171704 0 512 +27171738 4 512 +27171814 DOWN 3 +27171814 0 512 +27176949 UP 10 +27176949 waslock = 0 +27176949 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27176979 512 16777728 +~~~ +27177102 DOWN 10 +27177102 0 16777728 +~~~ +~~~ +27177125 0 16778752 +~~~ +~~~ +27177127 0 16778240 +27177128 homeCount = 68 +27177129 waitCount = 28 +27177129 ripCount = 26 +27177130 locktype1 = 1 +27177130 locktype2 = 5 +27177131 locktype3 = 8 +27177131 goalCount = 0 +27177132 goalTotal = 20 +27177132 otherCount = 33 +~~~ +27177153 UP 10 +27177153 waslock = 0 +27177153 512 16778240 +27177155 512 1024 +~~~ +27183894 DOWN 10 +27183894 0 1024 +~~~ +~~~ +~~~ +~~~ +27183916 homeCount = 68 +27183917 waitCount = 28 +27183917 ripCount = 26 +27183918 locktype1 = 1 +27183918 locktype2 = 5 +27183919 locktype3 = 8 +27183919 goalCount = 0 +27183920 goalTotal = 20 +27183920 otherCount = 33 +~~~ +27186228 UP 11 +27186228 1024 1024 +27187560 DOWN 11 +27187560 0 1024 +27187573 UP 11 +27187573 1024 1024 +27187589 DOWN 11 +27187589 0 1024 +27187640 UP 11 +27187640 1024 1024 +27192229 BEEP1 +27192229 BEEP2 +~~~ +~~~ +~~~ +27192256 1024 33555456 +~~~ +27192406 1024 1024 +27198684 DOWN 11 +27198684 0 1024 +~~~ +~~~ +27198705 0 0 +~~~ +~~~ +27198707 0 1 +~~~ +~~~ +27198709 0 3 +~~~ +~~~ +27198711 0 7 +~~~ +~~~ +27198712 0 15 +~~~ +~~~ +27198714 0 31 +~~~ +~~~ +27198716 0 63 +~~~ +~~~ +27198718 0 127 +~~~ +~~~ +27198720 0 255 +27198721 homeCount = 68 +27198721 waitCount = 28 +27198722 ripCount = 27 +27198722 locktype1 = 1 +27198723 locktype2 = 5 +27198744 locktype3 = 8 +27198744 goalCount = 0 +27198745 goalTotal = 20 +27198745 otherCount = 33 +~~~ +27198746 CURRENTGOAL IS [1] +~~~ +27198766 UP 11 +27198766 1024 255 +27200991 DOWN 11 +27200991 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27201031 homeCount = 68 +27201031 waitCount = 28 +27201032 ripCount = 27 +27201032 locktype1 = 1 +27201033 locktype2 = 5 +27201033 locktype3 = 8 +27201034 goalCount = 0 +27201034 goalTotal = 20 +27201035 otherCount = 33 +~~~ +27201036 CURRENTGOAL IS [1] +~~~ +27201067 UP 11 +27201067 1024 255 +27201082 DOWN 11 +27201082 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27201121 homeCount = 68 +27201122 waitCount = 28 +27201122 ripCount = 27 +27201123 locktype1 = 1 +27201123 locktype2 = 5 +27201124 locktype3 = 8 +27201124 goalCount = 0 +27201125 goalTotal = 20 +27201125 otherCount = 33 +~~~ +27201127 CURRENTGOAL IS [1] +~~~ +27206452 UP 2 +27206452 2 255 +27206462 DOWN 2 +27206462 0 255 +~~~ +~~~ +~~~ +~~~ +27206480 0 254 +~~~ +~~~ +27206482 0 252 +~~~ +~~~ +27206484 0 248 +~~~ +~~~ +27206486 0 240 +~~~ +~~~ +27206487 0 224 +~~~ +~~~ +27206489 0 192 +~~~ +~~~ +27206491 0 128 +~~~ +~~~ +27206493 0 0 +~~~ +~~~ +27206495 0 512 +27206496 homeCount = 68 +27206496 waitCount = 28 +27206497 ripCount = 27 +27206497 locktype1 = 1 +27206519 locktype2 = 5 +27206519 locktype3 = 8 +27206520 goalCount = 0 +27206520 goalTotal = 20 +27206521 otherCount = 34 +~~~ +27206534 2 512 +27207052 DOWN 2 +27207052 0 512 +27212399 UP 10 +27212399 waslock = 0 +27212399 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27212427 512 16777728 +~~~ +27212435 DOWN 10 +27212435 0 16777728 +~~~ +~~~ +27212452 0 16778752 +~~~ +27212453 UP 10 +27212453 waslock = 0 +27212453 512 16778752 +~~~ +27212455 homeCount = 69 +27212456 waitCount = 28 +27212456 ripCount = 27 +27212457 locktype1 = 1 +27212457 locktype2 = 5 +27212458 locktype3 = 8 +27212458 goalCount = 0 +27212479 goalTotal = 20 +27212480 otherCount = 34 +~~~ +27212480 512 16778240 +~~~ +27212557 DOWN 10 +27212557 0 16778240 +27212577 0 1024 +27212591 UP 10 +27212591 waslock = 0 +27212591 512 1024 +~~~ +~~~ +~~~ +~~~ +27212598 homeCount = 69 +27212598 waitCount = 28 +27212599 ripCount = 27 +27212599 locktype1 = 1 +27212600 locktype2 = 5 +27212600 locktype3 = 8 +27212601 goalCount = 0 +27212601 goalTotal = 20 +27212602 otherCount = 34 +~~~ +~~~ +27216740 DOWN 10 +27216740 0 1024 +~~~ +~~~ +~~~ +~~~ +27216765 homeCount = 69 +27216765 waitCount = 28 +27216766 ripCount = 27 +27216766 locktype1 = 1 +27216767 locktype2 = 5 +27216767 locktype3 = 8 +27216768 goalCount = 0 +27216768 goalTotal = 20 +27216769 otherCount = 34 +~~~ +27221107 UP 11 +27221107 1024 1024 +27230108 BEEP1 +27230108 BEEP2 +~~~ +~~~ +~~~ +27230134 1024 33555456 +~~~ +27230284 1024 1024 +27237176 DOWN 11 +27237176 0 1024 +~~~ +~~~ +27237202 0 0 +~~~ +~~~ +27237203 0 1 +~~~ +~~~ +27237205 0 3 +~~~ +~~~ +27237207 0 7 +~~~ +~~~ +27237209 0 15 +~~~ +~~~ +27237211 0 31 +~~~ +~~~ +27237213 0 63 +~~~ +~~~ +27237214 0 127 +~~~ +~~~ +27237216 0 255 +27237217 homeCount = 69 +27237218 waitCount = 28 +27237218 ripCount = 28 +27237219 locktype1 = 1 +27237219 locktype2 = 5 +27237240 locktype3 = 8 +27237241 goalCount = 0 +27237241 goalTotal = 20 +27237242 otherCount = 34 +~~~ +27237243 CURRENTGOAL IS [1] +~~~ +27237243 UP 11 +27237243 1024 255 +27237293 DOWN 11 +27237293 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27237330 homeCount = 69 +27237330 waitCount = 28 +27237331 ripCount = 28 +27237331 locktype1 = 1 +27237332 locktype2 = 5 +27237332 locktype3 = 8 +27237333 goalCount = 0 +27237333 goalTotal = 20 +27237334 otherCount = 34 +~~~ +27237335 CURRENTGOAL IS [1] +~~~ +27244806 UP 3 +27244806 4 255 +27244824 DOWN 3 +27244824 0 255 +~~~ +~~~ +~~~ +~~~ +27244845 0 254 +~~~ +~~~ +27244846 0 252 +~~~ +~~~ +27244848 0 248 +~~~ +~~~ +27244850 0 240 +~~~ +~~~ +27244852 0 224 +~~~ +~~~ +27244854 0 192 +~~~ +~~~ +27244856 0 128 +~~~ +~~~ +27244857 0 0 +~~~ +~~~ +27244859 0 512 +27244860 homeCount = 69 +27244861 waitCount = 28 +27244861 ripCount = 28 +27244862 locktype1 = 1 +27244883 locktype2 = 5 +27244884 locktype3 = 8 +27244884 goalCount = 0 +27244885 goalTotal = 20 +27244885 otherCount = 35 +~~~ +27244896 4 512 +27245112 DOWN 3 +27245112 0 512 +27245162 4 512 +27245949 DOWN 3 +27245949 0 512 +27246153 4 512 +27247409 DOWN 3 +27247409 0 512 +27252323 UP 10 +27252323 waslock = 0 +27252323 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27252354 512 16777728 +~~~ +27252487 DOWN 10 +27252487 0 16777728 +27252504 0 512 +~~~ +~~~ +27252509 0 2560 +~~~ +~~~ +27252511 0 2048 +27252512 homeCount = 70 +27252513 waitCount = 28 +27252513 ripCount = 28 +27252514 locktype1 = 1 +27252514 locktype2 = 5 +27252515 locktype3 = 8 +27252515 goalCount = 0 +27252516 goalTotal = 20 +27252516 otherCount = 35 +~~~ +27252537 UP 10 +27252538 waslock = 0 +27252537 512 2048 +~~~ +27257198 DOWN 10 +27257198 0 2048 +~~~ +~~~ +~~~ +~~~ +27257221 homeCount = 70 +27257221 waitCount = 28 +27257222 ripCount = 28 +27257222 locktype1 = 1 +27257223 locktype2 = 5 +27257223 locktype3 = 8 +27257224 goalCount = 0 +27257224 goalTotal = 20 +27257225 otherCount = 35 +~~~ +27257233 UP 10 +27257233 waslock = 0 +27257233 512 2048 +~~~ +27257298 DOWN 10 +27257298 0 2048 +~~~ +~~~ +~~~ +~~~ +27257321 homeCount = 70 +27257322 waitCount = 28 +27257322 ripCount = 28 +27257323 locktype1 = 1 +27257323 locktype2 = 5 +27257324 locktype3 = 8 +27257324 goalCount = 0 +27257325 goalTotal = 20 +27257325 otherCount = 35 +~~~ +27259477 UP 12 +27259477 2048 2048 +27262833 DOWN 12 +27262833 0 2048 +27262866 UP 12 +27262866 2048 2048 +27262907 DOWN 12 +27262907 0 2048 +27262994 UP 12 +27262994 2048 2048 +27263034 DOWN 12 +27263034 0 2048 +27263046 UP 12 +27263046 2048 2048 +27267477 CLICK1 +27267477 CLICK2 +~~~ +~~~ +~~~ +27267503 2048 67110912 +~~~ +27267653 2048 2048 +27274654 DOWN 12 +27274654 0 2048 +~~~ +~~~ +27274672 0 0 +~~~ +~~~ +27274674 0 1 +~~~ +~~~ +27274676 0 3 +~~~ +~~~ +27274677 0 7 +~~~ +~~~ +27274679 0 15 +~~~ +~~~ +27274681 0 31 +~~~ +~~~ +27274683 0 63 +~~~ +~~~ +27274685 0 127 +~~~ +~~~ +27274686 0 255 +27274687 homeCount = 70 +27274688 waitCount = 29 +27274689 ripCount = 28 +27274689 locktype1 = 1 +27274690 locktype2 = 5 +27274710 locktype3 = 8 +27274711 goalCount = 0 +27274711 goalTotal = 20 +27274712 otherCount = 35 +~~~ +27274713 CURRENTGOAL IS [1] +~~~ +27278587 UP 3 +27278587 4 255 +~~~ +~~~ +27278893 DOWN 3 +27278893 0 255 +~~~ +~~~ +27278912 0 254 +~~~ +~~~ +27278914 0 252 +~~~ +~~~ +27278916 0 248 +~~~ +~~~ +27278917 0 240 +~~~ +~~~ +27278919 0 224 +~~~ +~~~ +27278921 0 192 +~~~ +~~~ +27278923 0 128 +~~~ +~~~ +27278925 0 0 +~~~ +~~~ +27278927 0 512 +27278928 homeCount = 70 +27278928 waitCount = 29 +27278929 ripCount = 28 +27278929 locktype1 = 1 +27278930 locktype2 = 5 +27278951 locktype3 = 8 +27278951 goalCount = 0 +27278952 goalTotal = 20 +27278952 otherCount = 36 +~~~ +27278953 4 512 +27279428 DOWN 3 +27279428 0 512 +27279473 4 512 +27279495 DOWN 3 +27279495 0 512 +27283748 UP 10 +27283748 waslock = 0 +27283748 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27283772 512 16777728 +~~~ +27283922 512 512 +27288098 DOWN 10 +27288098 0 512 +~~~ +~~~ +27288117 0 1536 +~~~ +~~~ +27288119 0 1024 +27288120 homeCount = 71 +27288120 waitCount = 29 +27288121 ripCount = 28 +27288121 locktype1 = 1 +27288122 locktype2 = 5 +27288122 locktype3 = 8 +27288123 goalCount = 0 +27288123 goalTotal = 20 +27288124 otherCount = 36 +~~~ +27288158 UP 10 +27288158 waslock = 0 +27288158 512 1024 +~~~ +27288186 DOWN 10 +27288186 0 1024 +~~~ +~~~ +~~~ +~~~ +27288215 homeCount = 71 +27288215 waitCount = 29 +27288216 ripCount = 28 +27288216 locktype1 = 1 +27288217 locktype2 = 5 +27288217 locktype3 = 8 +27288218 goalCount = 0 +27288218 goalTotal = 20 +27288219 otherCount = 36 +~~~ +27303216 UP 4 +27303216 8 1024 +~~~ +27303239 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +27303243 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27304347 DOWN 4 +27304347 0 0 +27321209 512 0 +27321279 0 0 +27328239 LOCKEND +~~~ +~~~ +~~~ +27328258 0 512 +27338600 UP 5 +27338600 16 512 +27338629 DOWN 5 +27338629 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27338662 homeCount = 71 +27338663 waitCount = 29 +27338663 ripCount = 28 +27338664 locktype1 = 1 +27338664 locktype2 = 6 +27338665 locktype3 = 8 +27338665 goalCount = 0 +27338666 goalTotal = 20 +27338666 otherCount = 36 +~~~ +27338727 16 512 +27338920 DOWN 5 +27338920 0 512 +27339036 16 512 +27339061 DOWN 5 +27339061 0 512 +27339130 16 512 +27339491 DOWN 5 +27339491 0 512 +27349519 UP 10 +27349520 waslock = 0 +27349519 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27349543 512 16777728 +~~~ +27349693 512 512 +27349747 DOWN 10 +27349747 0 512 +~~~ +~~~ +27349772 0 2560 +~~~ +~~~ +27349774 0 2048 +27349775 homeCount = 72 +27349776 waitCount = 29 +27349776 ripCount = 28 +27349777 locktype1 = 1 +27349777 locktype2 = 6 +27349778 locktype3 = 8 +27349778 goalCount = 0 +27349779 goalTotal = 20 +27349779 otherCount = 36 +~~~ +27349887 UP 10 +27349888 waslock = 0 +27349887 512 2048 +~~~ +27355800 DOWN 10 +27355800 0 2048 +~~~ +~~~ +~~~ +~~~ +27355821 homeCount = 72 +27355821 waitCount = 29 +27355822 ripCount = 28 +27355822 locktype1 = 1 +27355823 locktype2 = 6 +27355823 locktype3 = 8 +27355824 goalCount = 0 +27355824 goalTotal = 20 +27355825 otherCount = 36 +~~~ +27355830 UP 10 +27355831 waslock = 0 +27355830 512 2048 +~~~ +27355896 DOWN 10 +27355896 0 2048 +~~~ +~~~ +~~~ +~~~ +27355921 homeCount = 72 +27355921 waitCount = 29 +27355922 ripCount = 28 +27355922 locktype1 = 1 +27355923 locktype2 = 6 +27355923 locktype3 = 8 +27355924 goalCount = 0 +27355924 goalTotal = 20 +27355925 otherCount = 36 +~~~ +27359955 UP 12 +27359955 2048 2048 +27361229 DOWN 12 +27361229 0 2048 +27361429 LOCKOUT 3 +~~~ +27361449 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27361455 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27361545 UP 12 +27361545 2048 0 +27363005 DOWN 12 +27363005 0 0 +27363061 UP 12 +27363061 2048 0 +27363086 DOWN 12 +27363086 0 0 +27363176 UP 12 +27363176 2048 0 +27363450 DOWN 12 +27363450 0 0 +27363499 UP 12 +27363498 2048 0 +27363784 DOWN 12 +27363784 0 0 +27363793 UP 12 +27363792 2048 0 +27367425 DOWN 12 +27367425 0 0 +27367513 UP 12 +27367513 2048 0 +27367580 DOWN 12 +27367580 0 0 +27367680 UP 12 +27367680 2048 0 +27373426 DOWN 12 +27373426 0 0 +27373444 UP 12 +27373444 2048 0 +27373471 DOWN 12 +27373471 0 0 +27373514 UP 12 +27373514 2048 0 +27373617 DOWN 12 +27373617 0 0 +27373720 UP 12 +27373720 2048 0 +27375640 DOWN 12 +27375640 0 0 +27386449 LOCKEND +~~~ +~~~ +~~~ +27386471 0 512 +27392770 UP 10 +27392770 waslock = 0 +27392770 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27392793 512 16777728 +~~~ +27392943 512 512 +27392954 DOWN 10 +27392954 0 512 +~~~ +~~~ +27392972 0 1536 +~~~ +~~~ +27392974 0 1024 +27392975 homeCount = 73 +27392976 waitCount = 29 +27392976 ripCount = 28 +27392977 locktype1 = 1 +27392977 locktype2 = 6 +27392978 locktype3 = 9 +27392978 goalCount = 0 +27392979 goalTotal = 20 +27392979 otherCount = 36 +~~~ +27393151 UP 10 +27393152 waslock = 0 +27393151 512 1024 +~~~ +27393293 DOWN 10 +27393293 0 1024 +~~~ +~~~ +27393320 UP 10 +27393320 waslock = 0 +27393320 512 1024 +~~~ +~~~ +27393323 homeCount = 73 +27393323 waitCount = 29 +27393324 ripCount = 28 +27393324 locktype1 = 1 +27393325 locktype2 = 6 +27393325 locktype3 = 9 +27393326 goalCount = 0 +27393326 goalTotal = 20 +27393347 otherCount = 36 +~~~ +~~~ +27393593 DOWN 10 +27393593 0 1024 +27393607 UP 10 +27393607 waslock = 0 +27393607 512 1024 +~~~ +~~~ +~~~ +~~~ +27393623 homeCount = 73 +27393623 waitCount = 29 +27393624 ripCount = 28 +27393624 locktype1 = 1 +27393625 locktype2 = 6 +27393625 locktype3 = 9 +27393626 goalCount = 0 +27393626 goalTotal = 20 +27393627 otherCount = 36 +~~~ +~~~ +27393753 DOWN 10 +27393753 0 1024 +27393770 UP 10 +27393770 waslock = 0 +27393770 512 1024 +~~~ +~~~ +~~~ +~~~ +27393782 homeCount = 73 +27393782 waitCount = 29 +27393783 ripCount = 28 +27393783 locktype1 = 1 +27393784 locktype2 = 6 +27393784 locktype3 = 9 +27393785 goalCount = 0 +27393785 goalTotal = 20 +27393786 otherCount = 36 +~~~ +~~~ +27393918 DOWN 10 +27393918 0 1024 +~~~ +~~~ +~~~ +27393940 UP 10 +27393940 waslock = 0 +27393940 512 1024 +~~~ +27393942 homeCount = 73 +27393942 waitCount = 29 +27393943 ripCount = 28 +27393943 locktype1 = 1 +27393944 locktype2 = 6 +27393944 locktype3 = 9 +27393945 goalCount = 0 +27393945 goalTotal = 20 +27393946 otherCount = 36 +~~~ +~~~ +27397740 DOWN 10 +27397740 0 1024 +~~~ +~~~ +~~~ +~~~ +27397761 homeCount = 73 +27397761 waitCount = 29 +27397762 ripCount = 28 +27397762 locktype1 = 1 +27397763 locktype2 = 6 +27397763 locktype3 = 9 +27397764 goalCount = 0 +27397764 goalTotal = 20 +27397765 otherCount = 36 +~~~ +27397767 UP 10 +27397767 waslock = 0 +27397767 512 1024 +~~~ +27397836 DOWN 10 +27397836 0 1024 +~~~ +~~~ +~~~ +~~~ +27397863 homeCount = 73 +27397863 waitCount = 29 +27397864 ripCount = 28 +27397865 locktype1 = 1 +27397865 locktype2 = 6 +27397866 locktype3 = 9 +27397866 goalCount = 0 +27397867 goalTotal = 20 +27397867 otherCount = 36 +~~~ +27401205 UP 11 +27401205 1024 1024 +27405837 DOWN 11 +27405837 0 1024 +27405869 UP 11 +27405869 1024 1024 +27405991 DOWN 11 +27405991 0 1024 +27406002 UP 11 +27406002 1024 1024 +27408205 BEEP1 +27408205 BEEP2 +~~~ +~~~ +~~~ +27408231 1024 33555456 +~~~ +27408381 1024 1024 +27415414 DOWN 11 +27415414 0 1024 +27415427 UP 11 +27415427 1024 1024 +27415439 DOWN 11 +27415439 0 1024 +~~~ +~~~ +27415441 0 0 +~~~ +~~~ +27415442 0 1 +~~~ +~~~ +27415444 0 3 +~~~ +~~~ +27415446 0 7 +~~~ +~~~ +27415447 0 15 +~~~ +~~~ +27415449 0 31 +~~~ +~~~ +27415451 0 63 +~~~ +~~~ +27415453 0 127 +~~~ +~~~ +27415455 0 255 +27415456 homeCount = 73 +27415456 waitCount = 29 +27415457 ripCount = 29 +27415478 locktype1 = 1 +27415478 locktype2 = 6 +27415479 locktype3 = 9 +27415479 goalCount = 0 +27415480 goalTotal = 20 +27415480 otherCount = 36 +~~~ +27415481 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27415509 homeCount = 73 +27415509 waitCount = 29 +27415510 ripCount = 29 +27415510 locktype1 = 1 +27415511 locktype2 = 6 +27415511 locktype3 = 9 +27415512 goalCount = 0 +27415512 goalTotal = 20 +27415513 otherCount = 36 +~~~ +27415534 CURRENTGOAL IS [1] +~~~ +27415535 UP 11 +27415535 1024 255 +27417762 DOWN 11 +27417762 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27417797 homeCount = 73 +27417798 waitCount = 29 +27417798 ripCount = 29 +27417799 locktype1 = 1 +27417799 locktype2 = 6 +27417800 locktype3 = 9 +27417800 goalCount = 0 +27417801 goalTotal = 20 +27417801 otherCount = 36 +~~~ +27417802 CURRENTGOAL IS [1] +~~~ +27420577 UP 6 +27420577 32 255 +~~~ +~~~ +27421351 DOWN 6 +27421351 0 255 +~~~ +~~~ +27421370 0 254 +~~~ +~~~ +27421372 0 252 +~~~ +~~~ +27421374 0 248 +~~~ +~~~ +27421376 0 240 +~~~ +~~~ +27421377 0 224 +~~~ +~~~ +27421379 0 192 +~~~ +~~~ +27421381 0 128 +~~~ +~~~ +27421383 0 0 +~~~ +~~~ +27421385 0 512 +27421386 homeCount = 73 +27421386 waitCount = 29 +27421387 ripCount = 29 +27421387 locktype1 = 1 +27421388 locktype2 = 6 +27421409 locktype3 = 9 +27421409 goalCount = 0 +27421410 goalTotal = 20 +27421410 otherCount = 37 +~~~ +27426117 UP 10 +27426118 waslock = 0 +27426117 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27426143 512 16777728 +~~~ +27426293 512 512 +27426356 DOWN 10 +27426355 0 512 +~~~ +~~~ +27426378 0 2560 +~~~ +~~~ +27426380 0 2048 +27426381 homeCount = 74 +27426381 waitCount = 29 +27426382 ripCount = 29 +27426382 locktype1 = 1 +27426383 locktype2 = 6 +27426383 locktype3 = 9 +27426384 goalCount = 0 +27426384 goalTotal = 20 +27426385 otherCount = 37 +~~~ +27426406 UP 10 +27426406 waslock = 0 +27426406 512 2048 +~~~ +27431666 DOWN 10 +27431666 0 2048 +~~~ +~~~ +~~~ +~~~ +27431691 homeCount = 74 +27431691 waitCount = 29 +27431692 ripCount = 29 +27431692 locktype1 = 1 +27431693 locktype2 = 6 +27431693 locktype3 = 9 +27431694 goalCount = 0 +27431694 goalTotal = 20 +27431695 otherCount = 37 +~~~ +27431705 UP 10 +27431705 waslock = 0 +27431704 512 2048 +~~~ +27431767 DOWN 10 +27431767 0 2048 +~~~ +~~~ +~~~ +~~~ +27431791 homeCount = 74 +27431792 waitCount = 29 +27431792 ripCount = 29 +27431793 locktype1 = 1 +27431793 locktype2 = 6 +27431794 locktype3 = 9 +27431794 goalCount = 0 +27431795 goalTotal = 20 +27431795 otherCount = 37 +~~~ +27434661 UP 12 +27434661 2048 2048 +27435489 DOWN 12 +27435489 0 2048 +27435670 UP 12 +27435670 2048 2048 +27437661 CLICK1 +27437661 CLICK2 +~~~ +~~~ +~~~ +27437680 2048 67110912 +~~~ +27437830 2048 2048 +27446647 DOWN 12 +27446647 0 2048 +~~~ +~~~ +27446668 0 0 +~~~ +~~~ +27446670 0 1 +~~~ +~~~ +27446672 0 3 +~~~ +~~~ +27446673 0 7 +~~~ +~~~ +27446675 0 15 +~~~ +~~~ +27446677 0 31 +~~~ +~~~ +27446679 0 63 +~~~ +~~~ +27446681 0 127 +~~~ +~~~ +27446683 0 255 +27446684 homeCount = 74 +27446684 waitCount = 30 +27446685 ripCount = 29 +27446685 locktype1 = 1 +27446686 locktype2 = 6 +27446706 locktype3 = 9 +27446707 goalCount = 0 +27446707 goalTotal = 20 +27446708 otherCount = 37 +~~~ +27446709 CURRENTGOAL IS [1] +~~~ +27449877 UP 3 +27449877 4 255 +~~~ +~~~ +27450268 DOWN 3 +27450268 0 255 +~~~ +~~~ +27450290 0 254 +~~~ +~~~ +27450292 0 252 +~~~ +~~~ +27450294 0 248 +~~~ +~~~ +27450296 0 240 +~~~ +~~~ +27450298 0 224 +~~~ +~~~ +27450299 0 192 +~~~ +~~~ +27450301 0 128 +~~~ +~~~ +27450303 0 0 +~~~ +~~~ +27450305 0 512 +27450306 homeCount = 74 +27450306 waitCount = 30 +27450307 ripCount = 29 +27450307 locktype1 = 1 +27450329 locktype2 = 6 +27450329 locktype3 = 9 +27450330 goalCount = 0 +27450330 goalTotal = 20 +27450331 otherCount = 38 +~~~ +27454527 UP 10 +27454527 waslock = 0 +27454527 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27454559 512 16777728 +~~~ +27454581 DOWN 10 +27454581 0 16777728 +~~~ +~~~ +27454604 0 16779776 +~~~ +~~~ +27454606 0 16779264 +27454607 homeCount = 75 +27454607 waitCount = 30 +27454608 ripCount = 29 +27454608 locktype1 = 1 +27454609 locktype2 = 6 +27454609 locktype3 = 9 +27454610 goalCount = 0 +27454610 goalTotal = 20 +27454611 otherCount = 38 +~~~ +27454632 UP 10 +27454633 waslock = 0 +27454632 512 16779264 +~~~ +27454709 512 2048 +27454756 DOWN 10 +27454756 0 2048 +~~~ +~~~ +~~~ +~~~ +27454777 homeCount = 75 +27454777 waitCount = 30 +27454778 ripCount = 29 +27454778 locktype1 = 1 +27454779 locktype2 = 6 +27454779 locktype3 = 9 +27454780 goalCount = 0 +27454780 goalTotal = 20 +27454781 otherCount = 38 +~~~ +27454826 UP 10 +27454826 waslock = 0 +27454826 512 2048 +~~~ +27458766 DOWN 10 +27458766 0 2048 +~~~ +~~~ +~~~ +~~~ +27458789 homeCount = 75 +27458789 waitCount = 30 +27458790 ripCount = 29 +27458790 locktype1 = 1 +27458791 locktype2 = 6 +27458791 locktype3 = 9 +27458792 goalCount = 0 +27458792 goalTotal = 20 +27458793 otherCount = 38 +~~~ +27460839 UP 12 +27460839 2048 2048 +27460866 DOWN 12 +27460866 0 2048 +27460888 UP 12 +27460888 2048 2048 +27465667 DOWN 12 +27465667 0 2048 +27465757 UP 12 +27465757 2048 2048 +27468839 CLICK1 +27468839 CLICK2 +~~~ +~~~ +~~~ +27468867 2048 67110912 +~~~ +27469017 2048 2048 +27475004 DOWN 12 +27475004 0 2048 +~~~ +~~~ +27475026 0 0 +~~~ +~~~ +27475027 0 1 +~~~ +~~~ +27475029 0 3 +~~~ +~~~ +27475031 0 7 +~~~ +~~~ +27475033 0 15 +~~~ +~~~ +27475035 0 31 +~~~ +~~~ +27475037 0 63 +~~~ +~~~ +27475038 0 127 +~~~ +~~~ +27475040 0 255 +27475041 homeCount = 75 +27475042 waitCount = 31 +27475042 ripCount = 29 +27475043 locktype1 = 1 +27475043 locktype2 = 6 +27475064 locktype3 = 9 +27475065 goalCount = 0 +27475065 goalTotal = 20 +27475066 otherCount = 38 +~~~ +27475067 CURRENTGOAL IS [1] +~~~ +27475072 UP 12 +27475072 2048 255 +27475103 DOWN 12 +27475103 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27475142 homeCount = 75 +27475143 waitCount = 31 +27475143 ripCount = 29 +27475144 locktype1 = 1 +27475144 locktype2 = 6 +27475145 locktype3 = 9 +27475145 goalCount = 0 +27475146 goalTotal = 20 +27475147 otherCount = 38 +~~~ +27475148 CURRENTGOAL IS [1] +~~~ +27482092 UP 2 +27482092 2 255 +~~~ +~~~ +27482690 DOWN 2 +27482690 0 255 +~~~ +~~~ +27482709 0 254 +~~~ +~~~ +27482711 0 252 +~~~ +~~~ +27482712 0 248 +~~~ +~~~ +27482714 0 240 +~~~ +~~~ +27482716 0 224 +~~~ +~~~ +27482718 0 192 +~~~ +~~~ +27482720 0 128 +~~~ +~~~ +27482722 0 0 +~~~ +~~~ +27482723 0 512 +27482724 homeCount = 75 +27482725 waitCount = 31 +27482725 ripCount = 29 +27482726 locktype1 = 1 +27482747 locktype2 = 6 +27482748 locktype3 = 9 +27482748 goalCount = 0 +27482749 goalTotal = 20 +27482749 otherCount = 39 +~~~ +27487605 UP 10 +27487606 waslock = 0 +27487605 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27487635 512 16777728 +~~~ +27487754 DOWN 10 +27487754 0 16777728 +~~~ +~~~ +27487779 0 16778752 +~~~ +~~~ +27487781 0 16778240 +27487782 homeCount = 76 +27487782 waitCount = 31 +27487783 ripCount = 29 +27487783 locktype1 = 1 +27487784 locktype2 = 6 +27487784 locktype3 = 9 +27487785 goalCount = 0 +27487785 goalTotal = 20 +27487786 otherCount = 39 +~~~ +27487807 0 1024 +27487838 UP 10 +27487838 waslock = 0 +27487838 512 1024 +~~~ +27487993 DOWN 10 +27487993 0 1024 +27488009 UP 10 +27488009 waslock = 0 +27488009 512 1024 +~~~ +~~~ +~~~ +~~~ +27488022 homeCount = 76 +27488022 waitCount = 31 +27488023 ripCount = 29 +27488023 locktype1 = 1 +27488024 locktype2 = 6 +27488024 locktype3 = 9 +27488025 goalCount = 0 +27488025 goalTotal = 20 +27488026 otherCount = 39 +~~~ +~~~ +27492613 DOWN 10 +27492613 0 1024 +~~~ +~~~ +~~~ +~~~ +27492643 homeCount = 76 +27492644 waitCount = 31 +27492644 ripCount = 29 +27492645 locktype1 = 1 +27492645 locktype2 = 6 +27492646 locktype3 = 9 +27492646 goalCount = 0 +27492647 goalTotal = 20 +27492647 otherCount = 39 +~~~ +27492656 UP 10 +27492656 waslock = 0 +27492656 512 1024 +~~~ +27492718 DOWN 10 +27492718 0 1024 +~~~ +~~~ +~~~ +~~~ +27492751 homeCount = 76 +27492752 waitCount = 31 +27492752 ripCount = 29 +27492753 locktype1 = 1 +27492753 locktype2 = 6 +27492754 locktype3 = 9 +27492754 goalCount = 0 +27492755 goalTotal = 20 +27492755 otherCount = 39 +~~~ +27495022 UP 11 +27495022 1024 1024 +27497784 DOWN 11 +27497784 0 1024 +27497812 UP 11 +27497812 1024 1024 +27498522 BEEP1 +27498522 BEEP2 +~~~ +~~~ +~~~ +27498543 1024 33555456 +~~~ +27498693 1024 1024 +27505621 DOWN 11 +27505621 0 1024 +~~~ +~~~ +27505642 0 0 +~~~ +~~~ +27505644 0 1 +~~~ +~~~ +27505646 0 3 +~~~ +~~~ +27505647 0 7 +~~~ +~~~ +27505649 0 15 +~~~ +~~~ +27505651 0 31 +~~~ +~~~ +27505653 0 63 +~~~ +~~~ +27505655 0 127 +~~~ +~~~ +27505657 0 255 +27505658 homeCount = 76 +27505658 waitCount = 31 +27505659 ripCount = 30 +27505659 locktype1 = 1 +27505660 locktype2 = 6 +27505681 locktype3 = 9 +27505681 goalCount = 0 +27505682 goalTotal = 20 +27505682 otherCount = 39 +~~~ +27505683 CURRENTGOAL IS [1] +~~~ +27509309 UP 7 +27509309 64 255 +27509329 DOWN 7 +27509329 0 255 +~~~ +~~~ +~~~ +~~~ +27509353 0 254 +~~~ +~~~ +27509355 0 252 +~~~ +~~~ +27509356 0 248 +~~~ +~~~ +27509358 0 240 +~~~ +~~~ +27509360 0 224 +~~~ +~~~ +27509362 0 192 +~~~ +~~~ +27509364 0 128 +~~~ +~~~ +27509366 0 0 +~~~ +~~~ +27509367 0 512 +27509368 homeCount = 76 +27509369 waitCount = 31 +27509369 ripCount = 30 +27509370 locktype1 = 1 +27509370 locktype2 = 6 +27509391 locktype3 = 9 +27509392 goalCount = 0 +27509392 goalTotal = 20 +27509393 otherCount = 40 +~~~ +27509408 64 512 +27510460 DOWN 7 +27510460 0 512 +27515208 UP 10 +27515208 waslock = 0 +27515208 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27515238 512 16777728 +~~~ +27515387 512 512 +27515447 DOWN 10 +27515447 0 512 +~~~ +~~~ +27515474 0 1536 +~~~ +~~~ +27515476 0 1024 +27515477 homeCount = 77 +27515477 waitCount = 31 +27515478 ripCount = 30 +27515478 locktype1 = 1 +27515479 locktype2 = 6 +27515479 locktype3 = 9 +27515480 goalCount = 0 +27515480 goalTotal = 20 +27515481 otherCount = 40 +~~~ +27515502 UP 10 +27515502 waslock = 0 +27515502 512 1024 +~~~ +27519901 DOWN 10 +27519901 0 1024 +27519912 UP 10 +27519912 waslock = 0 +27519912 512 1024 +~~~ +~~~ +~~~ +~~~ +27519937 homeCount = 77 +27519937 waitCount = 31 +27519938 ripCount = 30 +27519938 locktype1 = 1 +27519939 locktype2 = 6 +27519939 locktype3 = 9 +27519940 goalCount = 0 +27519940 goalTotal = 20 +27519941 otherCount = 40 +~~~ +~~~ +27520005 DOWN 10 +27520005 0 1024 +~~~ +~~~ +~~~ +~~~ +27520037 homeCount = 77 +27520037 waitCount = 31 +27520038 ripCount = 30 +27520038 locktype1 = 1 +27520039 locktype2 = 6 +27520039 locktype3 = 9 +27520040 goalCount = 0 +27520040 goalTotal = 20 +27520041 otherCount = 40 +~~~ +27522612 UP 11 +27522612 1024 1024 +27526612 BEEP1 +27526612 BEEP2 +~~~ +~~~ +~~~ +27526634 1024 33555456 +~~~ +27526784 1024 1024 +27534399 DOWN 11 +27534399 0 1024 +~~~ +~~~ +27534424 0 0 +~~~ +~~~ +27534425 0 1 +~~~ +~~~ +27534427 0 3 +~~~ +~~~ +27534429 0 7 +~~~ +~~~ +27534431 0 15 +~~~ +~~~ +27534433 0 31 +~~~ +~~~ +27534435 0 63 +~~~ +~~~ +27534436 0 127 +~~~ +~~~ +27534438 0 255 +27534439 homeCount = 77 +27534440 waitCount = 31 +27534440 ripCount = 31 +27534441 locktype1 = 1 +27534441 locktype2 = 6 +27534462 locktype3 = 9 +27534463 goalCount = 0 +27534463 goalTotal = 20 +27534464 otherCount = 40 +~~~ +27534465 CURRENTGOAL IS [1] +~~~ +27539259 UP 5 +27539259 16 255 +~~~ +~~~ +27539345 DOWN 5 +27539345 0 255 +~~~ +~~~ +27539365 0 254 +~~~ +~~~ +27539366 0 252 +~~~ +~~~ +27539368 0 248 +~~~ +~~~ +27539370 0 240 +~~~ +~~~ +27539372 0 224 +~~~ +~~~ +27539374 0 192 +~~~ +~~~ +27539375 0 128 +~~~ +~~~ +27539377 0 0 +~~~ +~~~ +27539379 0 512 +27539380 homeCount = 77 +27539381 waitCount = 31 +27539381 ripCount = 31 +27539382 locktype1 = 1 +27539382 locktype2 = 6 +27539403 locktype3 = 9 +27539404 goalCount = 0 +27539404 goalTotal = 20 +27539405 otherCount = 41 +~~~ +27539853 16 512 +27540465 DOWN 5 +27540465 0 512 +27540535 16 512 +27540559 DOWN 5 +27540559 0 512 +27545443 UP 10 +27545443 waslock = 0 +27545442 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27545472 512 16777728 +~~~ +27545622 512 512 +27545710 DOWN 10 +27545710 0 512 +~~~ +~~~ +27545737 0 1536 +~~~ +~~~ +27545739 0 1024 +27545740 homeCount = 78 +27545741 waitCount = 31 +27545741 ripCount = 31 +27545742 locktype1 = 1 +27545742 locktype2 = 6 +27545743 locktype3 = 9 +27545743 goalCount = 0 +27545744 goalTotal = 20 +27545744 otherCount = 41 +~~~ +27545765 UP 10 +27545766 waslock = 0 +27545765 512 1024 +~~~ +27552068 DOWN 10 +27552068 0 1024 +~~~ +~~~ +~~~ +~~~ +27552094 homeCount = 78 +27552095 waitCount = 31 +27552095 ripCount = 31 +27552096 locktype1 = 1 +27552096 locktype2 = 6 +27552097 locktype3 = 9 +27552097 goalCount = 0 +27552098 goalTotal = 20 +27552098 otherCount = 41 +~~~ +27552127 UP 10 +27552127 waslock = 0 +27552127 512 1024 +~~~ +27552162 DOWN 10 +27552162 0 1024 +~~~ +~~~ +~~~ +~~~ +27552191 homeCount = 78 +27552191 waitCount = 31 +27552192 ripCount = 31 +27552192 locktype1 = 1 +27552193 locktype2 = 6 +27552193 locktype3 = 9 +27552194 goalCount = 0 +27552194 goalTotal = 20 +27552195 otherCount = 41 +~~~ +27555522 UP 11 +27555522 1024 1024 +27555840 DOWN 11 +27555840 0 1024 +27555878 UP 11 +27555878 1024 1024 +27555985 DOWN 11 +27555985 0 1024 +27556185 LOCKOUT 3 +~~~ +27556203 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +27556206 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27561528 UP 11 +27561528 1024 0 +27561696 DOWN 11 +27561696 0 0 +27569980 UP 1 +27569980 1 0 +27570625 DOWN 1 +27570625 0 0 +27570643 1 0 +27570978 DOWN 1 +27570978 0 0 +27579623 512 0 +27579824 0 0 +27581203 LOCKEND +~~~ +~~~ +~~~ +27581224 0 512 +27582044 UP 10 +27582044 waslock = 0 +27582044 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27582081 512 16777728 +~~~ +27582231 512 512 +27582274 DOWN 10 +27582274 0 512 +~~~ +~~~ +27582292 0 2560 +~~~ +~~~ +27582294 0 2048 +27582295 homeCount = 79 +27582295 waitCount = 31 +27582296 ripCount = 31 +27582296 locktype1 = 1 +27582297 locktype2 = 6 +27582297 locktype3 = 10 +27582298 goalCount = 0 +27582298 goalTotal = 20 +27582299 otherCount = 41 +~~~ +27582320 UP 10 +27582321 waslock = 0 +27582320 512 2048 +~~~ +27582472 DOWN 10 +27582472 0 2048 +~~~ +~~~ +~~~ +~~~ +27582495 homeCount = 79 +27582495 waitCount = 31 +27582496 ripCount = 31 +27582496 locktype1 = 1 +27582497 locktype2 = 6 +27582497 locktype3 = 10 +27582498 goalCount = 0 +27582498 goalTotal = 20 +27582499 otherCount = 41 +~~~ +27582502 UP 10 +27582503 waslock = 0 +27582502 512 2048 +~~~ +27587012 DOWN 10 +27587012 0 2048 +27587023 UP 10 +27587024 waslock = 0 +27587023 512 2048 +~~~ +~~~ +~~~ +~~~ +27587035 homeCount = 79 +27587035 waitCount = 31 +27587036 ripCount = 31 +27587036 locktype1 = 1 +27587037 locktype2 = 6 +27587037 locktype3 = 10 +27587038 goalCount = 0 +27587038 goalTotal = 20 +27587039 otherCount = 41 +~~~ +~~~ +27587107 DOWN 10 +27587107 0 2048 +~~~ +~~~ +~~~ +~~~ +27587134 homeCount = 79 +27587135 waitCount = 31 +27587135 ripCount = 31 +27587136 locktype1 = 1 +27587136 locktype2 = 6 +27587137 locktype3 = 10 +27587137 goalCount = 0 +27587138 goalTotal = 20 +27587139 otherCount = 41 +~~~ +27589509 UP 12 +27589509 2048 2048 +27591426 DOWN 12 +27591426 0 2048 +27591493 UP 12 +27591493 2048 2048 +27595563 DOWN 12 +27595563 0 2048 +27595758 UP 12 +27595758 2048 2048 +27597010 CLICK1 +27597010 CLICK2 +~~~ +~~~ +~~~ +27597035 2048 67110912 +~~~ +27597185 2048 2048 +27603647 DOWN 12 +27603647 0 2048 +~~~ +~~~ +27603673 0 0 +~~~ +~~~ +27603675 0 1 +~~~ +~~~ +27603677 0 3 +~~~ +~~~ +27603679 0 7 +~~~ +~~~ +27603680 0 15 +~~~ +~~~ +27603682 0 31 +~~~ +~~~ +27603684 0 63 +~~~ +~~~ +27603686 0 127 +~~~ +~~~ +27603688 0 255 +27603689 homeCount = 79 +27603689 waitCount = 32 +27603690 ripCount = 31 +27603690 locktype1 = 1 +27603691 locktype2 = 6 +27603712 locktype3 = 10 +27603712 goalCount = 0 +27603713 goalTotal = 20 +27603713 otherCount = 41 +~~~ +27603715 CURRENTGOAL IS [1] +~~~ +27607433 UP 4 +27607433 8 255 +~~~ +~~~ +27608146 DOWN 4 +27608146 0 255 +~~~ +~~~ +27608171 0 254 +~~~ +~~~ +27608173 0 252 +~~~ +~~~ +27608174 0 248 +~~~ +~~~ +27608176 0 240 +~~~ +~~~ +27608178 0 224 +~~~ +~~~ +27608180 0 192 +~~~ +~~~ +27608182 0 128 +~~~ +~~~ +27608184 0 0 +~~~ +~~~ +27608186 0 512 +27608186 homeCount = 79 +27608187 waitCount = 32 +27608188 ripCount = 31 +27608188 locktype1 = 1 +27608209 locktype2 = 6 +27608210 locktype3 = 10 +27608210 goalCount = 0 +27608211 goalTotal = 20 +27608211 otherCount = 42 +~~~ +27613875 UP 10 +27613875 waslock = 0 +27613875 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27613908 512 16777728 +~~~ +27613925 DOWN 10 +27613925 0 16777728 +~~~ +~~~ +27613944 0 16779776 +~~~ +~~~ +27613946 0 16779264 +27613947 homeCount = 80 +27613948 waitCount = 32 +27613948 ripCount = 31 +27613949 locktype1 = 1 +27613949 locktype2 = 6 +27613950 locktype3 = 10 +27613950 goalCount = 0 +27613951 goalTotal = 20 +27613951 otherCount = 42 +~~~ +27613972 UP 10 +27613973 waslock = 0 +27613972 512 16779264 +~~~ +27614058 512 2048 +27614058 DOWN 10 +27614058 0 2048 +~~~ +~~~ +~~~ +~~~ +27614087 homeCount = 80 +27614087 waitCount = 32 +27614088 ripCount = 31 +27614088 locktype1 = 1 +27614089 locktype2 = 6 +27614089 locktype3 = 10 +27614090 goalCount = 0 +27614090 goalTotal = 20 +27614091 otherCount = 42 +~~~ +27614158 UP 10 +27614158 waslock = 0 +27614158 512 2048 +~~~ +27620143 DOWN 10 +27620143 0 2048 +~~~ +~~~ +~~~ +~~~ +27620166 homeCount = 80 +27620166 waitCount = 32 +27620167 ripCount = 31 +27620167 locktype1 = 1 +27620168 locktype2 = 6 +27620168 locktype3 = 10 +27620169 goalCount = 0 +27620169 goalTotal = 20 +27620170 otherCount = 42 +~~~ +27623236 UP 12 +27623236 2048 2048 +27625528 DOWN 12 +27625527 0 2048 +27625543 UP 12 +27625543 2048 2048 +27625606 DOWN 12 +27625606 0 2048 +27625661 UP 12 +27625661 2048 2048 +27626237 CLICK1 +27626237 CLICK2 +~~~ +~~~ +~~~ +27626266 2048 67110912 +~~~ +27626416 2048 2048 +27631910 DOWN 12 +27631910 0 2048 +~~~ +27631934 UP 12 +27631934 2048 2048 +~~~ +~~~ +27631936 2048 0 +~~~ +~~~ +27631937 2048 1 +~~~ +27631938 2048 3 +~~~ +~~~ +27631940 2048 7 +~~~ +~~~ +27631942 2048 15 +~~~ +~~~ +27631943 2048 31 +~~~ +~~~ +27631945 2048 63 +~~~ +~~~ +27631947 2048 127 +~~~ +~~~ +27631949 2048 255 +27631950 homeCount = 80 +27631971 waitCount = 33 +27631971 ripCount = 31 +27631972 locktype1 = 1 +27631972 locktype2 = 6 +27631973 locktype3 = 10 +27631973 goalCount = 0 +27631974 goalTotal = 20 +27631974 otherCount = 42 +~~~ +27631975 CURRENTGOAL IS [1] +~~~ +27632012 DOWN 12 +27632012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27632045 homeCount = 80 +27632045 waitCount = 33 +27632046 ripCount = 31 +27632047 locktype1 = 1 +27632047 locktype2 = 6 +27632048 locktype3 = 10 +27632048 goalCount = 0 +27632049 goalTotal = 20 +27632049 otherCount = 42 +~~~ +27632050 CURRENTGOAL IS [1] +~~~ +27632101 UP 12 +27632101 2048 255 +27632109 DOWN 12 +27632109 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27632148 homeCount = 80 +27632149 waitCount = 33 +27632150 ripCount = 31 +27632150 locktype1 = 1 +27632151 locktype2 = 6 +27632151 locktype3 = 10 +27632152 goalCount = 0 +27632152 goalTotal = 20 +27632153 otherCount = 42 +~~~ +27632154 CURRENTGOAL IS [1] +~~~ +27635610 UP 3 +27635610 4 255 +~~~ +~~~ +27636256 DOWN 3 +27636256 0 255 +~~~ +~~~ +27636278 0 254 +~~~ +~~~ +27636280 0 252 +~~~ +~~~ +27636282 0 248 +~~~ +~~~ +27636284 0 240 +~~~ +~~~ +27636286 0 224 +~~~ +~~~ +27636287 0 192 +~~~ +~~~ +27636289 0 128 +~~~ +~~~ +27636291 0 0 +~~~ +~~~ +27636293 0 512 +27636294 homeCount = 80 +27636294 waitCount = 33 +27636295 ripCount = 31 +27636295 locktype1 = 1 +27636317 locktype2 = 6 +27636317 locktype3 = 10 +27636318 goalCount = 0 +27636318 goalTotal = 20 +27636319 otherCount = 43 +~~~ +27639801 UP 10 +27639801 waslock = 0 +27639801 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27639826 512 16777728 +~~~ +27639833 DOWN 10 +27639833 0 16777728 +~~~ +~~~ +27639856 0 16779776 +~~~ +~~~ +27639858 0 16779264 +27639859 homeCount = 81 +27639860 waitCount = 33 +27639860 ripCount = 31 +27639861 locktype1 = 1 +27639861 locktype2 = 6 +27639862 locktype3 = 10 +27639862 goalCount = 0 +27639863 goalTotal = 20 +27639863 otherCount = 43 +~~~ +27639884 UP 10 +27639884 waslock = 0 +27639884 512 16779264 +~~~ +27639976 512 2048 +27640009 DOWN 10 +27640009 0 2048 +27640033 UP 10 +27640033 waslock = 0 +27640033 512 2048 +~~~ +~~~ +~~~ +~~~ +27640042 homeCount = 81 +27640042 waitCount = 33 +27640043 ripCount = 31 +27640043 locktype1 = 1 +27640044 locktype2 = 6 +27640044 locktype3 = 10 +27640045 goalCount = 0 +27640045 goalTotal = 20 +27640046 otherCount = 43 +~~~ +~~~ +27644807 DOWN 10 +27644807 0 2048 +~~~ +~~~ +~~~ +~~~ +27644834 homeCount = 81 +27644834 waitCount = 33 +27644835 ripCount = 31 +27644835 locktype1 = 1 +27644836 locktype2 = 6 +27644836 locktype3 = 10 +27644837 goalCount = 0 +27644837 goalTotal = 20 +27644838 otherCount = 43 +~~~ +27646984 UP 12 +27646984 2048 2048 +27651484 CLICK1 +27651484 CLICK2 +~~~ +~~~ +~~~ +27651502 2048 67110912 +~~~ +27651652 2048 2048 +27656240 DOWN 12 +27656240 0 2048 +27656249 UP 12 +27656249 2048 2048 +~~~ +~~~ +27656262 2048 0 +~~~ +~~~ +27656264 2048 1 +~~~ +~~~ +27656266 2048 3 +~~~ +~~~ +27656268 2048 7 +~~~ +~~~ +27656270 2048 15 +~~~ +~~~ +27656271 2048 31 +~~~ +~~~ +27656273 2048 63 +~~~ +~~~ +27656275 2048 127 +~~~ +~~~ +27656277 2048 255 +27656278 homeCount = 81 +27656278 waitCount = 34 +27656279 ripCount = 31 +27656280 locktype1 = 1 +27656301 locktype2 = 6 +27656301 locktype3 = 10 +27656302 goalCount = 0 +27656302 goalTotal = 20 +27656303 otherCount = 43 +~~~ +27656304 CURRENTGOAL IS [1] +~~~ +27656327 DOWN 12 +27656327 0 255 +27656335 UP 12 +27656335 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656365 DOWN 12 +27656365 0 255 +~~~ +~~~ +~~~ +27656369 homeCount = 81 +27656369 waitCount = 34 +27656370 ripCount = 31 +27656371 locktype1 = 1 +27656371 locktype2 = 6 +27656372 locktype3 = 10 +27656372 goalCount = 0 +27656373 goalTotal = 20 +27656373 otherCount = 43 +~~~ +27656374 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656412 homeCount = 81 +27656413 waitCount = 34 +27656413 ripCount = 31 +27656414 locktype1 = 1 +27656414 locktype2 = 6 +27656415 locktype3 = 10 +27656415 goalCount = 0 +27656416 goalTotal = 20 +27656416 otherCount = 43 +~~~ +27656417 CURRENTGOAL IS [1] +~~~ +27656456 UP 12 +27656456 2048 255 +27656502 DOWN 12 +27656502 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656539 homeCount = 81 +27656540 waitCount = 34 +27656540 ripCount = 31 +27656541 locktype1 = 1 +27656541 locktype2 = 6 +27656542 locktype3 = 10 +27656542 goalCount = 0 +27656543 goalTotal = 20 +27656543 otherCount = 43 +~~~ +27656544 CURRENTGOAL IS [1] +~~~ +27656604 UP 12 +27656604 2048 255 +27656632 DOWN 12 +27656632 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656669 homeCount = 81 +27656670 waitCount = 34 +27656670 ripCount = 31 +27656671 locktype1 = 1 +27656671 locktype2 = 6 +27656672 locktype3 = 10 +27656672 goalCount = 0 +27656673 goalTotal = 20 +27656673 otherCount = 43 +~~~ +27656674 CURRENTGOAL IS [1] +~~~ +27656745 UP 12 +27656745 2048 255 +27656777 DOWN 12 +27656776 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656824 homeCount = 81 +27656825 waitCount = 34 +27656825 ripCount = 31 +27656826 locktype1 = 1 +27656826 locktype2 = 6 +27656827 locktype3 = 10 +27656827 goalCount = 0 +27656828 goalTotal = 20 +27656828 otherCount = 43 +~~~ +27656829 CURRENTGOAL IS [1] +~~~ +27656904 UP 12 +27656904 2048 255 +27656933 DOWN 12 +27656933 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656975 homeCount = 81 +27656975 waitCount = 34 +27656976 ripCount = 31 +27656976 locktype1 = 1 +27656977 locktype2 = 6 +27656977 locktype3 = 10 +27656978 goalCount = 0 +27656978 goalTotal = 20 +27656979 otherCount = 43 +~~~ +27656980 CURRENTGOAL IS [1] +~~~ +27657042 UP 12 +27657042 2048 255 +27657070 DOWN 12 +27657070 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657106 homeCount = 81 +27657106 waitCount = 34 +27657107 ripCount = 31 +27657107 locktype1 = 1 +27657108 locktype2 = 6 +27657108 locktype3 = 10 +27657109 goalCount = 0 +27657109 goalTotal = 20 +27657110 otherCount = 43 +~~~ +27657111 CURRENTGOAL IS [1] +~~~ +27657177 UP 12 +27657177 2048 255 +27657218 DOWN 12 +27657217 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657256 homeCount = 81 +27657256 waitCount = 34 +27657257 ripCount = 31 +27657257 locktype1 = 1 +27657258 locktype2 = 6 +27657258 locktype3 = 10 +27657259 goalCount = 0 +27657259 goalTotal = 20 +27657260 otherCount = 43 +~~~ +27657261 CURRENTGOAL IS [1] +~~~ +27657282 UP 12 +27657282 2048 255 +27657301 DOWN 12 +27657301 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657335 homeCount = 81 +27657335 waitCount = 34 +27657336 ripCount = 31 +27657337 locktype1 = 1 +27657337 locktype2 = 6 +27657338 locktype3 = 10 +27657338 goalCount = 0 +27657339 goalTotal = 20 +27657339 otherCount = 43 +~~~ +27657340 CURRENTGOAL IS [1] +~~~ +27657361 UP 12 +27657361 2048 255 +27657380 DOWN 12 +27657380 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657415 homeCount = 81 +27657415 waitCount = 34 +27657416 ripCount = 31 +27657416 locktype1 = 1 +27657417 locktype2 = 6 +27657417 locktype3 = 10 +27657418 goalCount = 0 +27657418 goalTotal = 20 +27657419 otherCount = 43 +~~~ +27657420 CURRENTGOAL IS [1] +~~~ +27657492 UP 12 +27657492 2048 255 +27657528 DOWN 12 +27657528 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657567 homeCount = 81 +27657568 waitCount = 34 +27657568 ripCount = 31 +27657569 locktype1 = 1 +27657569 locktype2 = 6 +27657570 locktype3 = 10 +27657570 goalCount = 0 +27657571 goalTotal = 20 +27657571 otherCount = 43 +~~~ +27657572 CURRENTGOAL IS [1] +~~~ +27657594 UP 12 +27657593 2048 255 +27659986 DOWN 12 +27659986 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27660019 homeCount = 81 +27660019 waitCount = 34 +27660020 ripCount = 31 +27660020 locktype1 = 1 +27660021 locktype2 = 6 +27660021 locktype3 = 10 +27660022 goalCount = 0 +27660022 goalTotal = 20 +27660023 otherCount = 43 +~~~ +27660024 CURRENTGOAL IS [1] +~~~ +27660045 UP 12 +27660045 2048 255 +27660067 DOWN 12 +27660067 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27660108 homeCount = 81 +27660108 waitCount = 34 +27660109 ripCount = 31 +27660109 locktype1 = 1 +27660110 locktype2 = 6 +27660110 locktype3 = 10 +27660111 goalCount = 0 +27660111 goalTotal = 20 +27660112 otherCount = 43 +~~~ +27660113 CURRENTGOAL IS [1] +~~~ +27663773 UP 1 +27663773 1 255 +~~~ +~~~ +27663794 outer reward +~~~ +27663794 1 65791 +~~~ +~~~ +27664244 1 255 +27674160 DOWN 1 +27674160 0 255 +~~~ +~~~ +27674180 0 254 +~~~ +~~~ +27674182 0 252 +~~~ +~~~ +27674184 0 248 +~~~ +~~~ +27674186 0 240 +~~~ +~~~ +27674188 0 224 +~~~ +~~~ +27674189 0 192 +~~~ +~~~ +27674191 0 128 +~~~ +~~~ +27674193 0 0 +~~~ +~~~ +27674195 0 512 +27674196 homeCount = 81 +27674196 waitCount = 34 +27674197 ripCount = 31 +27674197 locktype1 = 1 +27674198 locktype2 = 6 +27674219 locktype3 = 10 +27674220 goalCount = 1 +27674220 goalTotal = 21 +27674221 otherCount = 43 +~~~ +27674221 1 512 +27674272 DOWN 1 +27674272 0 512 +27678680 UP 10 +27678680 waslock = 0 +27678679 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27678707 512 16777728 +~~~ +27678857 512 512 +27682040 DOWN 10 +27682040 0 512 +~~~ +~~~ +27682061 0 1536 +~~~ +~~~ +27682062 0 1024 +27682063 homeCount = 82 +27682064 waitCount = 34 +27682065 ripCount = 31 +27682065 locktype1 = 1 +27682066 locktype2 = 6 +27682066 locktype3 = 10 +27682067 goalCount = 1 +27682067 goalTotal = 21 +27682068 otherCount = 43 +~~~ +27682089 UP 10 +27682089 waslock = 0 +27682089 512 1024 +~~~ +27682132 DOWN 10 +27682132 0 1024 +~~~ +~~~ +~~~ +~~~ +27682163 homeCount = 82 +27682164 waitCount = 34 +27682164 ripCount = 31 +27682165 locktype1 = 1 +27682165 locktype2 = 6 +27682166 locktype3 = 10 +27682166 goalCount = 1 +27682167 goalTotal = 21 +27682167 otherCount = 43 +~~~ +27684669 UP 11 +27684669 1024 1024 +27684805 DOWN 11 +27684805 0 1024 +27684823 UP 11 +27684823 1024 1024 +27692669 BEEP1 +27692669 BEEP2 +~~~ +~~~ +~~~ +27692694 1024 33555456 +~~~ +27692843 1024 1024 +27699461 DOWN 11 +27699461 0 1024 +~~~ +~~~ +27699484 0 0 +~~~ +~~~ +27699486 0 1 +~~~ +~~~ +27699488 0 3 +~~~ +~~~ +27699489 0 7 +~~~ +~~~ +27699491 0 15 +~~~ +~~~ +27699493 0 31 +~~~ +~~~ +27699495 0 63 +~~~ +~~~ +27699497 0 127 +~~~ +~~~ +27699498 0 255 +27699499 homeCount = 82 +27699500 waitCount = 34 +27699501 ripCount = 32 +27699501 locktype1 = 1 +27699502 locktype2 = 6 +27699523 locktype3 = 10 +27699523 goalCount = 1 +27699524 goalTotal = 21 +27699524 otherCount = 43 +~~~ +27699525 CURRENTGOAL IS [1] +~~~ +27699526 UP 11 +27699526 1024 255 +27699618 DOWN 11 +27699618 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27699659 homeCount = 82 +27699659 waitCount = 34 +27699660 ripCount = 32 +27699660 locktype1 = 1 +27699661 locktype2 = 6 +27699661 locktype3 = 10 +27699662 goalCount = 1 +27699662 goalTotal = 21 +27699663 otherCount = 43 +~~~ +27699664 CURRENTGOAL IS [1] +~~~ +27699703 UP 11 +27699703 1024 255 +27701657 DOWN 11 +27701657 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27701692 homeCount = 82 +27701692 waitCount = 34 +27701693 ripCount = 32 +27701693 locktype1 = 1 +27701694 locktype2 = 6 +27701694 locktype3 = 10 +27701695 goalCount = 1 +27701695 goalTotal = 21 +27701696 otherCount = 43 +~~~ +27701697 CURRENTGOAL IS [1] +~~~ +27704975 UP 7 +27704975 64 255 +~~~ +~~~ +27705020 DOWN 7 +27705020 0 255 +~~~ +~~~ +27705045 0 254 +~~~ +~~~ +27705047 0 252 +~~~ +~~~ +27705049 0 248 +~~~ +~~~ +27705051 0 240 +~~~ +~~~ +27705053 0 224 +~~~ +~~~ +27705054 0 192 +~~~ +~~~ +27705056 0 128 +~~~ +~~~ +27705058 0 0 +~~~ +~~~ +27705060 0 512 +27705061 homeCount = 82 +27705062 waitCount = 34 +27705062 ripCount = 32 +27705063 locktype1 = 1 +27705063 locktype2 = 6 +27705084 locktype3 = 10 +27705084 goalCount = 1 +27705085 goalTotal = 21 +27705085 otherCount = 44 +~~~ +27705086 64 512 +27705608 DOWN 7 +27705608 0 512 +27709885 UP 10 +27709885 waslock = 0 +27709884 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27709910 512 16777728 +~~~ +27710060 512 512 +27710125 DOWN 10 +27710125 0 512 +27710138 UP 10 +27710139 waslock = 0 +27710138 512 512 +~~~ +~~~ +27710156 512 1536 +~~~ +~~~ +27710158 512 1024 +27710159 homeCount = 83 +27710160 waitCount = 34 +27710160 ripCount = 32 +27710161 locktype1 = 1 +27710161 locktype2 = 6 +27710162 locktype3 = 10 +27710162 goalCount = 1 +27710163 goalTotal = 21 +27710163 otherCount = 44 +~~~ +~~~ +27715361 DOWN 10 +27715361 0 1024 +~~~ +~~~ +~~~ +~~~ +27715381 homeCount = 83 +27715382 waitCount = 34 +27715382 ripCount = 32 +27715383 locktype1 = 1 +27715383 locktype2 = 6 +27715384 locktype3 = 10 +27715384 goalCount = 1 +27715385 goalTotal = 21 +27715385 otherCount = 44 +~~~ +27715396 UP 10 +27715396 waslock = 0 +27715396 512 1024 +~~~ +27715460 DOWN 10 +27715460 0 1024 +~~~ +~~~ +~~~ +~~~ +27715482 homeCount = 83 +27715483 waitCount = 34 +27715483 ripCount = 32 +27715484 locktype1 = 1 +27715484 locktype2 = 6 +27715485 locktype3 = 10 +27715485 goalCount = 1 +27715486 goalTotal = 21 +27715486 otherCount = 44 +~~~ +27718462 UP 11 +27718462 1024 1024 +27725622 DOWN 11 +27725622 0 1024 +27725640 UP 11 +27725639 1024 1024 +27725962 BEEP1 +27725962 BEEP2 +~~~ +~~~ +~~~ +27725991 1024 33555456 +~~~ +27726141 1024 1024 +27732734 DOWN 11 +27732734 0 1024 +~~~ +~~~ +27732758 0 0 +~~~ +~~~ +27732760 0 1 +~~~ +~~~ +27732761 0 3 +~~~ +~~~ +27732763 0 7 +~~~ +~~~ +27732765 0 15 +~~~ +~~~ +27732767 0 31 +~~~ +~~~ +27732769 0 63 +~~~ +~~~ +27732771 0 127 +~~~ +~~~ +27732772 0 255 +27732773 homeCount = 83 +27732774 waitCount = 34 +27732774 ripCount = 33 +27732775 locktype1 = 1 +27732775 locktype2 = 6 +27732796 locktype3 = 10 +27732797 goalCount = 1 +27732797 goalTotal = 21 +27732798 otherCount = 44 +~~~ +27732799 CURRENTGOAL IS [1] +~~~ +27732799 UP 11 +27732799 1024 255 +27732846 DOWN 11 +27732846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27732883 homeCount = 83 +27732883 waitCount = 34 +27732884 ripCount = 33 +27732884 locktype1 = 1 +27732885 locktype2 = 6 +27732885 locktype3 = 10 +27732886 goalCount = 1 +27732886 goalTotal = 21 +27732887 otherCount = 44 +~~~ +27732888 CURRENTGOAL IS [1] +~~~ +27732921 UP 11 +27732921 1024 255 +27732964 DOWN 11 +27732964 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27733006 homeCount = 83 +27733006 waitCount = 34 +27733007 ripCount = 33 +27733007 locktype1 = 1 +27733008 locktype2 = 6 +27733008 locktype3 = 10 +27733009 goalCount = 1 +27733009 goalTotal = 21 +27733010 otherCount = 44 +~~~ +27733011 CURRENTGOAL IS [1] +~~~ +27740748 UP 1 +27740748 1 255 +~~~ +~~~ +27740772 outer reward +~~~ +27740772 1 65791 +~~~ +~~~ +27741222 1 255 +27751154 DOWN 1 +27751154 0 255 +~~~ +~~~ +27751180 0 254 +~~~ +~~~ +27751182 0 252 +~~~ +~~~ +27751184 0 248 +~~~ +~~~ +27751186 0 240 +~~~ +~~~ +27751188 0 224 +~~~ +~~~ +27751189 0 192 +~~~ +~~~ +27751191 0 128 +~~~ +~~~ +27751193 0 0 +~~~ +~~~ +27751195 0 512 +27751196 homeCount = 83 +27751196 waitCount = 34 +27751197 ripCount = 33 +27751197 locktype1 = 1 +27751219 locktype2 = 6 +27751219 locktype3 = 10 +27751220 goalCount = 2 +27751220 goalTotal = 22 +27751221 otherCount = 44 +~~~ +27755454 UP 10 +27755454 waslock = 0 +27755454 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27755488 512 16777728 +~~~ +27755637 512 512 +27760423 DOWN 10 +27760423 0 512 +~~~ +~~~ +27760440 0 2560 +~~~ +~~~ +27760442 0 2048 +27760443 homeCount = 84 +27760444 waitCount = 34 +27760444 ripCount = 33 +27760445 locktype1 = 1 +27760445 locktype2 = 6 +27760446 locktype3 = 10 +27760446 goalCount = 2 +27760447 goalTotal = 22 +27760447 otherCount = 44 +~~~ +27760475 UP 10 +27760475 waslock = 0 +27760475 512 2048 +~~~ +27760523 DOWN 10 +27760523 0 2048 +~~~ +~~~ +~~~ +~~~ +27760554 homeCount = 84 +27760555 waitCount = 34 +27760555 ripCount = 33 +27760556 locktype1 = 1 +27760556 locktype2 = 6 +27760557 locktype3 = 10 +27760557 goalCount = 2 +27760558 goalTotal = 22 +27760559 otherCount = 44 +~~~ +27765567 UP 12 +27765567 2048 2048 +27768756 DOWN 12 +27768756 0 2048 +27768842 UP 12 +27768842 2048 2048 +27768908 DOWN 12 +27768908 0 2048 +27769091 UP 12 +27769091 2048 2048 +27769107 DOWN 12 +27769107 0 2048 +27769128 UP 12 +27769128 2048 2048 +27771567 CLICK1 +27771567 CLICK2 +~~~ +~~~ +~~~ +27771592 2048 67110912 +~~~ +27771742 2048 2048 +27776734 DOWN 12 +27776734 0 2048 +~~~ +~~~ +27776751 0 0 +~~~ +~~~ +27776753 0 1 +~~~ +~~~ +27776754 0 3 +~~~ +~~~ +27776756 0 7 +~~~ +~~~ +27776758 0 15 +~~~ +~~~ +27776760 0 31 +~~~ +~~~ +27776762 0 63 +~~~ +~~~ +27776764 0 127 +~~~ +~~~ +27776765 UP 12 +27776765 2048 255 +27776767 homeCount = 84 +27776767 waitCount = 35 +27776768 ripCount = 33 +27776768 locktype1 = 1 +27776789 locktype2 = 6 +27776790 locktype3 = 10 +27776790 goalCount = 2 +27776791 goalTotal = 22 +27776791 otherCount = 44 +~~~ +27776792 CURRENTGOAL IS [1] +~~~ +27776832 DOWN 12 +27776832 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27776867 homeCount = 84 +27776868 waitCount = 35 +27776869 ripCount = 33 +27776869 locktype1 = 1 +27776870 locktype2 = 6 +27776870 locktype3 = 10 +27776871 goalCount = 2 +27776871 goalTotal = 22 +27776872 otherCount = 44 +~~~ +27776873 CURRENTGOAL IS [1] +~~~ +27789324 UP 1 +27789324 1 255 +~~~ +~~~ +27789343 outer reward +~~~ +27789344 1 65791 +~~~ +~~~ +27789793 1 255 +27798609 DOWN 1 +27798609 0 255 +~~~ +~~~ +27798631 0 254 +~~~ +~~~ +27798633 0 252 +~~~ +~~~ +27798635 0 248 +~~~ +~~~ +27798637 0 240 +~~~ +~~~ +27798638 0 224 +~~~ +~~~ +27798640 0 192 +~~~ +~~~ +27798642 0 128 +~~~ +~~~ +27798644 0 0 +~~~ +~~~ +27798646 0 512 +27798647 homeCount = 84 +27798647 waitCount = 35 +27798648 ripCount = 33 +27798648 locktype1 = 1 +27798649 locktype2 = 6 +27798670 locktype3 = 10 +27798670 goalCount = 3 +27798671 goalTotal = 23 +27798671 otherCount = 44 +~~~ +27805587 UP 10 +27805587 waslock = 0 +27805587 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27805621 512 16777728 +~~~ +27805771 512 512 +27805806 DOWN 10 +27805806 0 512 +~~~ +27805822 UP 10 +27805822 waslock = 0 +27805822 512 512 +~~~ +~~~ +~~~ +27805825 512 2048 +27805826 homeCount = 85 +27805826 waitCount = 35 +27805827 ripCount = 33 +27805827 locktype1 = 1 +27805828 locktype2 = 6 +27805828 locktype3 = 10 +27805829 goalCount = 3 +27805849 goalTotal = 23 +27805850 otherCount = 44 +~~~ +~~~ +27811079 DOWN 10 +27811078 0 2048 +~~~ +~~~ +~~~ +~~~ +27811106 homeCount = 85 +27811107 waitCount = 35 +27811107 ripCount = 33 +27811108 locktype1 = 1 +27811108 locktype2 = 6 +27811109 locktype3 = 10 +27811109 goalCount = 3 +27811110 goalTotal = 23 +27811110 otherCount = 44 +~~~ +27811131 UP 10 +27811132 waslock = 0 +27811131 512 2048 +~~~ +27811175 DOWN 10 +27811175 0 2048 +~~~ +~~~ +~~~ +~~~ +27811202 homeCount = 85 +27811202 waitCount = 35 +27811203 ripCount = 33 +27811203 locktype1 = 1 +27811204 locktype2 = 6 +27811204 locktype3 = 10 +27811205 goalCount = 3 +27811205 goalTotal = 23 +27811206 otherCount = 44 +~~~ +27813456 UP 12 +27813456 2048 2048 +27815579 DOWN 12 +27815579 0 2048 +27815618 UP 12 +27815618 2048 2048 +27818639 DOWN 12 +27818639 0 2048 +27818723 UP 12 +27818723 2048 2048 +27821456 CLICK1 +27821456 CLICK2 +~~~ +~~~ +~~~ +27821480 2048 67110912 +~~~ +27821630 2048 2048 +27830770 DOWN 12 +27830770 0 2048 +~~~ +~~~ +27830788 0 0 +~~~ +~~~ +27830790 0 1 +~~~ +~~~ +27830792 0 3 +~~~ +~~~ +27830794 0 7 +~~~ +~~~ +27830796 0 15 +~~~ +~~~ +27830797 0 31 +~~~ +~~~ +27830799 0 63 +~~~ +~~~ +27830801 0 127 +~~~ +~~~ +27830803 0 255 +27830804 homeCount = 85 +27830805 waitCount = 36 +27830805 ripCount = 33 +27830806 locktype1 = 1 +27830806 locktype2 = 6 +27830827 locktype3 = 10 +27830828 goalCount = 3 +27830828 goalTotal = 23 +27830829 otherCount = 44 +~~~ +27830830 CURRENTGOAL IS [1] +~~~ +27836086 UP 1 +27836086 1 255 +~~~ +~~~ +27836109 outer reward +~~~ +27836110 1 65791 +~~~ +~~~ +27836346 DOWN 1 +27836346 0 65791 +~~~ +~~~ +27836368 0 65790 +~~~ +~~~ +27836369 0 65788 +~~~ +~~~ +27836371 0 65784 +~~~ +~~~ +27836373 0 65776 +~~~ +~~~ +27836375 0 65760 +~~~ +27836376 1 65760 +~~~ +~~~ +27836378 1 65728 +~~~ +27836379 1 65664 +~~~ +~~~ +27836381 1 65536 +~~~ +~~~ +27836382 1 66048 +27836383 homeCount = 85 +27836384 waitCount = 36 +27836405 ripCount = 33 +27836405 locktype1 = 1 +27836406 locktype2 = 6 +27836406 locktype3 = 10 +27836407 goalCount = 4 +27836407 goalTotal = 24 +27836408 otherCount = 44 +~~~ +27836559 1 512 +27845893 DOWN 1 +27845893 0 512 +27845965 1 512 +27846024 DOWN 1 +27846024 0 512 +27846085 1 512 +27846137 DOWN 1 +27846137 0 512 +27850834 UP 10 +27850834 waslock = 0 +27850834 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27850864 512 16777728 +~~~ +27851011 DOWN 10 +27851010 0 16777728 +27851014 0 512 +~~~ +~~~ +27851029 0 1536 +~~~ +~~~ +27851031 0 1024 +27851032 homeCount = 86 +27851033 waitCount = 36 +27851033 ripCount = 33 +27851034 locktype1 = 1 +27851034 locktype2 = 6 +27851035 locktype3 = 10 +27851035 goalCount = 4 +27851036 goalTotal = 24 +27851036 otherCount = 44 +~~~ +27851057 UP 10 +27851058 waslock = 0 +27851057 512 1024 +~~~ +27853817 DOWN 10 +27853817 0 1024 +~~~ +~~~ +~~~ +~~~ +27853841 homeCount = 86 +27853841 waitCount = 36 +27853842 ripCount = 33 +27853842 locktype1 = 1 +27853843 locktype2 = 6 +27853843 locktype3 = 10 +27853844 goalCount = 4 +27853844 goalTotal = 24 +27853845 otherCount = 44 +~~~ +27856740 UP 11 +27856740 1024 1024 +27860921 DOWN 11 +27860921 0 1024 +27860925 UP 11 +27860925 1024 1024 +27864241 BEEP1 +27864241 BEEP2 +~~~ +~~~ +~~~ +27864260 1024 33555456 +~~~ +27864410 1024 1024 +27870387 DOWN 11 +27870387 0 1024 +27870394 UP 11 +27870394 1024 1024 +~~~ +~~~ +27870408 1024 0 +~~~ +~~~ +27870410 1024 1 +~~~ +~~~ +27870412 1024 3 +~~~ +~~~ +27870413 1024 7 +~~~ +~~~ +27870415 1024 15 +~~~ +~~~ +27870417 1024 31 +~~~ +~~~ +27870419 1024 63 +~~~ +~~~ +27870421 1024 127 +~~~ +~~~ +27870423 1024 255 +27870424 homeCount = 86 +27870424 waitCount = 36 +27870425 ripCount = 34 +27870425 locktype1 = 1 +27870446 locktype2 = 6 +27870447 locktype3 = 10 +27870447 goalCount = 4 +27870448 goalTotal = 24 +27870448 otherCount = 44 +~~~ +27870450 CURRENTGOAL IS [1] +~~~ +27872522 DOWN 11 +27872522 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872551 UP 11 +27872551 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872557 homeCount = 86 +27872557 waitCount = 36 +27872558 ripCount = 34 +27872559 locktype1 = 1 +27872559 locktype2 = 6 +27872560 locktype3 = 10 +27872560 goalCount = 4 +27872561 goalTotal = 24 +27872561 otherCount = 44 +~~~ +27872562 CURRENTGOAL IS [1] +~~~ +27872619 DOWN 11 +27872619 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872660 homeCount = 86 +27872661 waitCount = 36 +27872661 ripCount = 34 +27872662 locktype1 = 1 +27872662 locktype2 = 6 +27872663 locktype3 = 10 +27872663 goalCount = 4 +27872664 goalTotal = 24 +27872664 otherCount = 44 +~~~ +27872666 CURRENTGOAL IS [1] +~~~ +27877231 UP 1 +27877231 1 255 +~~~ +~~~ +27877255 outer reward +~~~ +27877255 1 65791 +~~~ +~~~ +27877705 1 255 +27886848 DOWN 1 +27886848 0 255 +~~~ +~~~ +27886873 0 254 +~~~ +~~~ +27886875 0 252 +~~~ +~~~ +27886877 0 248 +~~~ +~~~ +27886879 0 240 +~~~ +~~~ +27886880 0 224 +~~~ +~~~ +27886882 0 192 +~~~ +~~~ +27886884 0 128 +~~~ +~~~ +27886886 0 0 +~~~ +~~~ +27886888 0 512 +27886889 homeCount = 86 +27886889 waitCount = 36 +27886890 ripCount = 34 +27886890 locktype1 = 1 +27886911 locktype2 = 6 +27886912 locktype3 = 10 +27886912 goalCount = 5 +27886913 goalTotal = 25 +27886913 otherCount = 44 +~~~ +27886914 1 512 +27888622 DOWN 1 +27888622 0 512 +27888710 1 512 +27888740 DOWN 1 +27888740 0 512 +27893642 UP 10 +27893642 waslock = 0 +27893642 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27893669 512 16777728 +~~~ +27893815 DOWN 10 +27893815 0 16777728 +27893819 0 512 +~~~ +~~~ +27893834 0 1536 +~~~ +~~~ +27893836 0 1024 +27893837 homeCount = 87 +27893837 waitCount = 36 +27893838 ripCount = 34 +27893838 locktype1 = 1 +27893839 locktype2 = 6 +27893839 locktype3 = 10 +27893840 goalCount = 5 +27893840 goalTotal = 25 +27893841 otherCount = 44 +~~~ +27893862 UP 10 +27893862 waslock = 0 +27893862 512 1024 +~~~ +27899216 DOWN 10 +27899216 0 1024 +~~~ +~~~ +~~~ +~~~ +27899236 homeCount = 87 +27899237 waitCount = 36 +27899238 ripCount = 34 +27899238 locktype1 = 1 +27899239 locktype2 = 6 +27899239 locktype3 = 10 +27899240 goalCount = 5 +27899240 goalTotal = 25 +27899241 otherCount = 44 +~~~ +27899293 UP 10 +27899294 waslock = 0 +27899293 512 1024 +~~~ +27899323 DOWN 10 +27899323 0 1024 +~~~ +~~~ +~~~ +~~~ +27899339 homeCount = 87 +27899340 waitCount = 36 +27899340 ripCount = 34 +27899341 locktype1 = 1 +27899341 locktype2 = 6 +27899342 locktype3 = 10 +27899342 goalCount = 5 +27899343 goalTotal = 25 +27899343 otherCount = 44 +~~~ +27902072 UP 11 +27902072 1024 1024 +27905909 DOWN 11 +27905909 0 1024 +27905926 UP 11 +27905926 1024 1024 +27911073 BEEP1 +27911073 BEEP2 +~~~ +~~~ +~~~ +27911096 1024 33555456 +~~~ +27911190 DOWN 11 +27911190 0 33555456 +27911215 UP 11 +27911215 1024 33555456 +27911245 1024 1024 +~~~ +~~~ +27911764 1024 0 +~~~ +~~~ +27911766 1024 1 +~~~ +~~~ +27911768 1024 3 +~~~ +~~~ +27911770 1024 7 +~~~ +~~~ +27911771 1024 15 +~~~ +~~~ +27911773 1024 31 +~~~ +~~~ +27911775 1024 63 +~~~ +~~~ +27911777 1024 127 +~~~ +~~~ +27911779 1024 255 +27911780 homeCount = 87 +27911780 waitCount = 36 +27911781 ripCount = 35 +27911781 locktype1 = 1 +27911803 locktype2 = 6 +27911803 locktype3 = 10 +27911804 goalCount = 5 +27911804 goalTotal = 25 +27911805 otherCount = 44 +~~~ +27911806 CURRENTGOAL IS [1] +~~~ +27918132 DOWN 11 +27918132 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27918170 homeCount = 87 +27918171 waitCount = 36 +27918171 ripCount = 35 +27918172 locktype1 = 1 +27918172 locktype2 = 6 +27918173 locktype3 = 10 +27918173 goalCount = 5 +27918174 goalTotal = 25 +27918174 otherCount = 44 +~~~ +27918175 CURRENTGOAL IS [1] +~~~ +27918197 UP 11 +27918197 1024 255 +27920410 DOWN 11 +27920410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27920453 homeCount = 87 +27920453 waitCount = 36 +27920454 ripCount = 35 +27920454 locktype1 = 1 +27920455 locktype2 = 6 +27920455 locktype3 = 10 +27920456 goalCount = 5 +27920456 goalTotal = 25 +27920457 otherCount = 44 +~~~ +27920458 CURRENTGOAL IS [1] +~~~ +27920480 UP 11 +27920479 1024 255 +27920515 DOWN 11 +27920515 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27920551 homeCount = 87 +27920552 waitCount = 36 +27920552 ripCount = 35 +27920553 locktype1 = 1 +27920553 locktype2 = 6 +27920554 locktype3 = 10 +27920554 goalCount = 5 +27920555 goalTotal = 25 +27920555 otherCount = 44 +~~~ +27920556 CURRENTGOAL IS [1] +~~~ +27925246 UP 1 +27925246 1 255 +~~~ +~~~ +27925268 outer reward +~~~ +27925268 1 65791 +~~~ +~~~ +27925717 1 255 +27936444 DOWN 1 +27936444 0 255 +~~~ +~~~ +27936465 0 254 +~~~ +~~~ +27936467 0 252 +~~~ +~~~ +27936469 0 248 +~~~ +~~~ +27936471 0 240 +~~~ +~~~ +27936472 0 224 +~~~ +~~~ +27936474 0 192 +~~~ +~~~ +27936476 0 128 +~~~ +~~~ +27936478 0 0 +~~~ +~~~ +27936480 0 512 +27936481 homeCount = 87 +27936481 waitCount = 36 +27936482 ripCount = 35 +27936482 locktype1 = 1 +27936503 locktype2 = 6 +27936504 locktype3 = 10 +27936504 goalCount = 6 +27936505 goalTotal = 26 +27936505 otherCount = 44 +~~~ +27936515 1 512 +27936544 DOWN 1 +27936544 0 512 +27942299 UP 10 +27942299 waslock = 0 +27942299 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27942333 512 16777728 +~~~ +27942483 512 512 +27942510 DOWN 10 +27942510 0 512 +~~~ +~~~ +27942536 0 1536 +~~~ +~~~ +27942538 0 1024 +27942539 homeCount = 88 +27942540 waitCount = 36 +27942540 ripCount = 35 +27942541 locktype1 = 1 +27942541 locktype2 = 6 +27942542 locktype3 = 10 +27942542 goalCount = 6 +27942543 goalTotal = 26 +27942543 otherCount = 44 +~~~ +27942565 UP 10 +27942565 waslock = 0 +27942565 512 1024 +~~~ +27945190 DOWN 10 +27945190 0 1024 +~~~ +~~~ +~~~ +~~~ +27945220 homeCount = 88 +27945221 waitCount = 36 +27945221 ripCount = 35 +27945222 locktype1 = 1 +27945222 locktype2 = 6 +27945223 locktype3 = 10 +27945223 goalCount = 6 +27945224 goalTotal = 26 +27945224 otherCount = 44 +~~~ +27945226 UP 10 +27945226 waslock = 0 +27945226 512 1024 +~~~ +27945285 DOWN 10 +27945285 0 1024 +~~~ +~~~ +~~~ +~~~ +27945311 homeCount = 88 +27945311 waitCount = 36 +27945312 ripCount = 35 +27945312 locktype1 = 1 +27945313 locktype2 = 6 +27945313 locktype3 = 10 +27945314 goalCount = 6 +27945314 goalTotal = 26 +27945315 otherCount = 44 +~~~ +27947700 UP 11 +27947700 1024 1024 +27951200 BEEP1 +27951200 BEEP2 +~~~ +~~~ +~~~ +27951222 1024 33555456 +~~~ +27951371 1024 1024 +27957662 DOWN 11 +27957662 0 1024 +27957672 UP 11 +27957672 1024 1024 +~~~ +~~~ +27957680 1024 0 +~~~ +~~~ +27957681 1024 1 +~~~ +~~~ +27957683 1024 3 +~~~ +~~~ +27957685 1024 7 +~~~ +~~~ +27957687 1024 15 +~~~ +~~~ +27957689 1024 31 +~~~ +~~~ +27957691 1024 63 +~~~ +~~~ +27957692 1024 127 +~~~ +~~~ +27957694 1024 255 +27957695 homeCount = 88 +27957696 waitCount = 36 +27957696 ripCount = 36 +27957718 locktype1 = 1 +27957718 locktype2 = 6 +27957719 locktype3 = 10 +27957719 goalCount = 6 +27957720 goalTotal = 26 +27957720 otherCount = 44 +~~~ +27957721 CURRENTGOAL IS [1] +~~~ +27957739 DOWN 11 +27957739 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27957767 UP 11 +27957767 1024 255 +~~~ +27957769 homeCount = 88 +27957769 waitCount = 36 +27957770 ripCount = 36 +27957770 locktype1 = 1 +27957771 locktype2 = 6 +27957771 locktype3 = 10 +27957772 goalCount = 6 +27957772 goalTotal = 26 +27957773 otherCount = 44 +~~~ +27957795 CURRENTGOAL IS [1] +~~~ +27959629 DOWN 11 +27959629 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27959667 homeCount = 88 +27959667 waitCount = 36 +27959668 ripCount = 36 +27959669 locktype1 = 1 +27959669 locktype2 = 6 +27959670 locktype3 = 10 +27959670 goalCount = 6 +27959671 goalTotal = 26 +27959671 otherCount = 44 +~~~ +27959672 CURRENTGOAL IS [1] +~~~ +27963580 UP 1 +27963580 1 255 +~~~ +~~~ +27963607 outer reward +~~~ +27963607 1 65791 +~~~ +~~~ +27964057 1 255 +27975016 DOWN 1 +27975016 0 255 +~~~ +~~~ +27975037 0 254 +~~~ +~~~ +27975039 0 252 +~~~ +~~~ +27975041 0 248 +~~~ +~~~ +27975043 0 240 +~~~ +~~~ +27975045 0 224 +~~~ +~~~ +27975046 0 192 +~~~ +~~~ +27975048 0 128 +~~~ +~~~ +27975050 0 0 +~~~ +~~~ +27975052 0 512 +27975053 homeCount = 88 +27975053 waitCount = 36 +27975054 ripCount = 36 +27975054 locktype1 = 1 +27975055 locktype2 = 6 +27975076 locktype3 = 10 +27975076 goalCount = 7 +27975077 goalTotal = 27 +27975077 otherCount = 44 +~~~ +27975084 1 512 +27975144 DOWN 1 +27975144 0 512 +27980896 UP 10 +27980896 waslock = 0 +27980896 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27980921 512 16777728 +~~~ +27980997 DOWN 10 +27980997 0 16777728 +~~~ +~~~ +27981015 0 16778752 +~~~ +~~~ +27981017 0 16778240 +27981018 homeCount = 89 +27981018 waitCount = 36 +27981019 ripCount = 36 +27981019 locktype1 = 1 +27981020 locktype2 = 6 +27981020 locktype3 = 10 +27981021 goalCount = 7 +27981021 goalTotal = 27 +27981022 otherCount = 44 +~~~ +27981043 UP 10 +27981043 waslock = 0 +27981043 512 16778240 +~~~ +27981071 512 1024 +27987553 DOWN 10 +27987553 0 1024 +~~~ +~~~ +~~~ +~~~ +27987580 homeCount = 89 +27987580 waitCount = 36 +27987581 ripCount = 36 +27987581 locktype1 = 1 +27987582 locktype2 = 6 +27987582 locktype3 = 10 +27987583 goalCount = 7 +27987583 goalTotal = 27 +27987584 otherCount = 44 +~~~ +27989439 UP 11 +27989439 1024 1024 +27992292 DOWN 11 +27992292 0 1024 +27992302 UP 11 +27992302 1024 1024 +27997439 BEEP1 +27997439 BEEP2 +~~~ +~~~ +~~~ +27997459 1024 33555456 +~~~ +27997609 1024 1024 +28004157 DOWN 11 +28004157 0 1024 +~~~ +~~~ +28004178 0 0 +~~~ +~~~ +28004180 0 1 +~~~ +~~~ +28004182 0 3 +~~~ +~~~ +28004184 0 7 +~~~ +~~~ +28004185 0 15 +~~~ +~~~ +28004187 0 31 +~~~ +~~~ +28004189 0 63 +~~~ +~~~ +28004191 0 127 +~~~ +~~~ +28004193 0 255 +28004194 homeCount = 89 +28004194 waitCount = 36 +28004195 ripCount = 37 +28004195 locktype1 = 1 +28004196 locktype2 = 6 +28004217 locktype3 = 10 +28004218 goalCount = 7 +28004218 goalTotal = 27 +28004219 otherCount = 44 +~~~ +28004220 CURRENTGOAL IS [1] +~~~ +28008115 UP 1 +28008115 1 255 +~~~ +~~~ +28008134 outer reward +~~~ +28008134 1 65791 +~~~ +~~~ +28008353 DOWN 1 +28008353 0 65791 +28008370 1 65791 +~~~ +~~~ +28008372 1 65790 +~~~ +~~~ +28008374 1 65788 +~~~ +~~~ +28008376 1 65784 +~~~ +~~~ +28008378 1 65776 +~~~ +~~~ +28008380 1 65760 +~~~ +~~~ +28008382 1 65728 +~~~ +~~~ +28008383 1 65664 +~~~ +~~~ +28008385 1 65536 +~~~ +~~~ +28008387 1 66048 +28008388 homeCount = 89 +28008389 waitCount = 36 +28008389 ripCount = 37 +28008410 locktype1 = 1 +28008410 locktype2 = 6 +28008411 locktype3 = 10 +28008411 goalCount = 8 +28008412 goalTotal = 28 +28008412 otherCount = 44 +~~~ +28008584 1 512 +28018306 DOWN 1 +28018306 0 512 +28018329 1 512 +28018420 DOWN 1 +28018420 0 512 +28018472 1 512 +28019511 DOWN 1 +28019511 0 512 +28019538 1 512 +28019606 DOWN 1 +28019606 0 512 +28026274 UP 10 +28026274 waslock = 0 +28026274 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28026301 512 16777728 +~~~ +28026429 DOWN 10 +28026429 0 16777728 +28026451 0 512 +~~~ +~~~ +28026456 0 1536 +~~~ +~~~ +28026457 0 1024 +28026458 homeCount = 90 +28026459 waitCount = 36 +28026460 ripCount = 37 +28026460 locktype1 = 1 +28026461 locktype2 = 6 +28026461 locktype3 = 10 +28026462 goalCount = 8 +28026462 goalTotal = 28 +28026463 otherCount = 44 +~~~ +28026642 UP 10 +28026643 waslock = 0 +28026642 512 1024 +~~~ +28026762 DOWN 10 +28026762 0 1024 +28026776 UP 10 +28026777 waslock = 0 +28026776 512 1024 +~~~ +~~~ +~~~ +~~~ +28026799 homeCount = 90 +28026799 waitCount = 36 +28026800 ripCount = 37 +28026800 locktype1 = 1 +28026801 locktype2 = 6 +28026801 locktype3 = 10 +28026802 goalCount = 8 +28026802 goalTotal = 28 +28026803 otherCount = 44 +~~~ +~~~ +28031965 DOWN 10 +28031965 0 1024 +~~~ +~~~ +~~~ +~~~ +28031988 homeCount = 90 +28031988 waitCount = 36 +28031989 ripCount = 37 +28031989 locktype1 = 1 +28031990 locktype2 = 6 +28031990 locktype3 = 10 +28031991 goalCount = 8 +28031991 goalTotal = 28 +28031992 otherCount = 44 +~~~ +28033822 UP 11 +28033822 1024 1024 +28036822 BEEP1 +28036822 BEEP2 +~~~ +~~~ +~~~ +28036845 1024 33555456 +~~~ +28036995 1024 1024 +28042883 DOWN 11 +28042883 0 1024 +~~~ +~~~ +28042903 0 0 +~~~ +~~~ +28042905 0 1 +~~~ +28042907 UP 11 +28042907 1024 1 +~~~ +~~~ +28042909 1024 3 +~~~ +~~~ +28042910 1024 7 +~~~ +~~~ +28042912 1024 15 +~~~ +28042913 1024 31 +~~~ +~~~ +28042914 1024 63 +~~~ +~~~ +28042916 1024 127 +~~~ +~~~ +28042918 1024 255 +28042919 homeCount = 90 +28042940 waitCount = 36 +28042941 ripCount = 38 +28042941 locktype1 = 1 +28042942 locktype2 = 6 +28042942 locktype3 = 10 +28042943 goalCount = 8 +28042943 goalTotal = 28 +28042944 otherCount = 44 +~~~ +28042945 CURRENTGOAL IS [1] +~~~ +28046203 DOWN 11 +28046203 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28046238 homeCount = 90 +28046239 waitCount = 36 +28046239 ripCount = 38 +28046240 locktype1 = 1 +28046240 locktype2 = 6 +28046241 locktype3 = 10 +28046241 goalCount = 8 +28046242 goalTotal = 28 +28046242 otherCount = 44 +~~~ +28046243 CURRENTGOAL IS [1] +~~~ +28050087 UP 1 +28050087 1 255 +~~~ +~~~ +28050115 outer reward +~~~ +28050116 1 65791 +~~~ +~~~ +28050301 DOWN 1 +28050301 0 65791 +~~~ +~~~ +28050323 0 65790 +~~~ +~~~ +28050325 0 65788 +~~~ +~~~ +28050326 0 65784 +~~~ +~~~ +28050328 0 65776 +~~~ +~~~ +28050330 0 65760 +~~~ +~~~ +28050332 0 65728 +~~~ +~~~ +28050334 0 65664 +~~~ +28050335 1 65664 +~~~ +~~~ +28050337 1 65536 +~~~ +28050338 1 66048 +28050339 homeCount = 90 +28050340 waitCount = 36 +28050361 ripCount = 38 +28050361 locktype1 = 1 +28050362 locktype2 = 6 +28050362 locktype3 = 10 +28050363 goalCount = 9 +28050363 goalTotal = 29 +28050364 otherCount = 44 +~~~ +28050565 1 512 +28059860 DOWN 1 +28059860 0 512 +28064424 UP 10 +28064425 waslock = 0 +28064424 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28064452 512 16777728 +~~~ +28064602 512 512 +28068806 DOWN 10 +28068806 0 512 +~~~ +~~~ +28068826 0 2560 +~~~ +~~~ +28068828 0 2048 +28068829 homeCount = 91 +28068829 waitCount = 36 +28068830 ripCount = 38 +28068830 locktype1 = 1 +28068831 locktype2 = 6 +28068831 locktype3 = 10 +28068832 goalCount = 9 +28068832 goalTotal = 29 +28068833 otherCount = 44 +~~~ +28068854 UP 10 +28068854 waslock = 0 +28068853 512 2048 +28068875 DOWN 10 +28068875 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28068899 homeCount = 91 +28068899 waitCount = 36 +28068900 ripCount = 38 +28068900 locktype1 = 1 +28068901 locktype2 = 6 +28068901 locktype3 = 10 +28068902 goalCount = 9 +28068902 goalTotal = 29 +28068903 otherCount = 44 +~~~ +28071033 UP 12 +28071033 2048 2048 +28071048 DOWN 12 +28071048 0 2048 +28071231 UP 12 +28071231 2048 2048 +28071271 DOWN 12 +28071271 0 2048 +28071314 UP 12 +28071314 2048 2048 +28074234 DOWN 12 +28074234 0 2048 +28074316 UP 12 +28074316 2048 2048 +28078155 DOWN 12 +28078155 0 2048 +28078237 UP 12 +28078237 2048 2048 +28079033 CLICK1 +28079033 CLICK2 +~~~ +~~~ +~~~ +28079058 2048 67110912 +~~~ +28079208 2048 2048 +28086231 DOWN 12 +28086231 0 2048 +~~~ +~~~ +28086256 0 0 +~~~ +~~~ +28086258 0 1 +~~~ +28086259 UP 12 +28086259 2048 1 +~~~ +~~~ +28086261 2048 3 +~~~ +~~~ +28086262 2048 7 +~~~ +28086263 2048 15 +~~~ +~~~ +28086265 2048 31 +~~~ +~~~ +28086267 2048 63 +~~~ +~~~ +28086268 2048 127 +~~~ +~~~ +28086270 2048 255 +28086271 homeCount = 91 +28086292 waitCount = 37 +28086293 ripCount = 38 +28086293 locktype1 = 1 +28086294 locktype2 = 6 +28086294 locktype3 = 10 +28086295 goalCount = 9 +28086295 goalTotal = 29 +28086296 otherCount = 44 +~~~ +28086297 CURRENTGOAL IS [1] +~~~ +28086333 DOWN 12 +28086333 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28086372 homeCount = 91 +28086372 waitCount = 37 +28086373 ripCount = 38 +28086374 locktype1 = 1 +28086374 locktype2 = 6 +28086375 locktype3 = 10 +28086375 goalCount = 9 +28086376 goalTotal = 29 +28086376 otherCount = 44 +~~~ +28086377 CURRENTGOAL IS [1] +~~~ +28089464 UP 1 +28089464 1 255 +~~~ +~~~ +28089492 outer reward +~~~ +28089492 1 65791 +~~~ +~~~ +28089497 outerreps = 4 +~~~ +~~~ +28089754 DOWN 1 +28089754 0 65791 +~~~ +~~~ +28089778 0 65790 +~~~ +~~~ +28089780 0 65788 +~~~ +~~~ +28089782 0 65784 +~~~ +~~~ +28089784 0 65776 +~~~ +28089785 1 65776 +~~~ +~~~ +28089787 1 65760 +~~~ +28089788 1 65728 +~~~ +~~~ +28089789 1 65664 +~~~ +~~~ +28089791 1 65536 +~~~ +~~~ +28089793 1 66048 +28089794 homeCount = 91 +28089794 waitCount = 37 +28089815 ripCount = 38 +28089815 locktype1 = 1 +28089816 locktype2 = 6 +28089816 locktype3 = 10 +28089817 goalCount = 0 +28089817 goalTotal = 30 +28089818 otherCount = 44 +~~~ +28089942 1 512 +28099533 DOWN 1 +28099533 0 512 +28099580 1 512 +28099664 DOWN 1 +28099664 0 512 +28103844 UP 10 +28103844 waslock = 0 +28103844 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28103875 512 16777728 +~~~ +28104025 512 512 +28104040 DOWN 10 +28104040 0 512 +28104053 UP 10 +28104053 waslock = 0 +28104053 512 512 +~~~ +~~~ +28104060 512 1536 +~~~ +~~~ +28104062 512 1024 +28104063 homeCount = 92 +28104063 waitCount = 37 +28104064 ripCount = 38 +28104064 locktype1 = 1 +28104065 locktype2 = 6 +28104065 locktype3 = 10 +28104066 goalCount = 0 +28104066 goalTotal = 30 +28104067 otherCount = 44 +~~~ +~~~ +28104223 DOWN 10 +28104223 0 1024 +28104230 UP 10 +28104231 waslock = 0 +28104230 512 1024 +~~~ +~~~ +~~~ +~~~ +28104246 homeCount = 92 +28104246 waitCount = 37 +28104247 ripCount = 38 +28104247 locktype1 = 1 +28104248 locktype2 = 6 +28104249 locktype3 = 10 +28104249 goalCount = 0 +28104250 goalTotal = 30 +28104250 otherCount = 44 +~~~ +~~~ +28107687 DOWN 10 +28107687 0 1024 +~~~ +~~~ +~~~ +~~~ +28107717 homeCount = 92 +28107718 waitCount = 37 +28107718 ripCount = 38 +28107719 locktype1 = 1 +28107719 locktype2 = 6 +28107720 locktype3 = 10 +28107720 goalCount = 0 +28107721 goalTotal = 30 +28107721 otherCount = 44 +~~~ +28107757 UP 10 +28107757 waslock = 0 +28107757 512 1024 +28107772 DOWN 10 +28107772 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28107791 homeCount = 92 +28107792 waitCount = 37 +28107793 ripCount = 38 +28107793 locktype1 = 1 +28107794 locktype2 = 6 +28107794 locktype3 = 10 +28107795 goalCount = 0 +28107795 goalTotal = 30 +28107796 otherCount = 44 +~~~ +28110492 UP 11 +28110492 1024 1024 +28113993 BEEP1 +28113993 BEEP2 +~~~ +~~~ +~~~ +28114015 1024 33555456 +~~~ +28114165 1024 1024 +28114440 DOWN 11 +28114440 0 1024 +28114465 UP 11 +28114465 1024 1024 +~~~ +~~~ +28114682 1024 0 +~~~ +~~~ +28114684 1024 1 +~~~ +~~~ +28114686 1024 3 +~~~ +~~~ +28114688 1024 7 +~~~ +~~~ +28114689 1024 15 +~~~ +~~~ +28114691 1024 31 +~~~ +~~~ +28114693 1024 63 +~~~ +~~~ +28114695 1024 127 +~~~ +~~~ +28114697 1024 255 +28114698 homeCount = 92 +28114698 waitCount = 37 +28114699 ripCount = 39 +28114720 locktype1 = 1 +28114721 locktype2 = 6 +28114721 locktype3 = 10 +28114722 goalCount = 0 +28114722 goalTotal = 30 +28114723 otherCount = 44 +~~~ +28114724 CURRENTGOAL IS [7] +~~~ +28123147 DOWN 11 +28123147 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28123189 homeCount = 92 +28123189 waitCount = 37 +28123190 ripCount = 39 +28123191 locktype1 = 1 +28123191 locktype2 = 6 +28123192 locktype3 = 10 +28123192 goalCount = 0 +28123193 goalTotal = 30 +28123193 otherCount = 44 +~~~ +28123194 CURRENTGOAL IS [7] +~~~ +28123265 UP 11 +28123265 1024 255 +28123279 DOWN 11 +28123279 0 255 +28123296 UP 11 +28123296 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28123312 homeCount = 92 +28123313 waitCount = 37 +28123313 ripCount = 39 +28123314 locktype1 = 1 +28123315 locktype2 = 6 +28123315 locktype3 = 10 +28123316 goalCount = 0 +28123316 goalTotal = 30 +28123317 otherCount = 44 +~~~ +28123318 CURRENTGOAL IS [7] +~~~ +28125461 DOWN 11 +28125461 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28125501 homeCount = 92 +28125502 waitCount = 37 +28125502 ripCount = 39 +28125503 locktype1 = 1 +28125503 locktype2 = 6 +28125504 locktype3 = 10 +28125504 goalCount = 0 +28125505 goalTotal = 30 +28125505 otherCount = 44 +~~~ +28125506 CURRENTGOAL IS [7] +~~~ +28129280 UP 1 +28129280 1 255 +~~~ +~~~ +28129542 DOWN 1 +28129542 0 255 +~~~ +~~~ +28129565 0 254 +~~~ +~~~ +28129567 0 252 +~~~ +28129569 1 252 +~~~ +~~~ +28129570 1 248 +~~~ +28129571 1 240 +~~~ +~~~ +28129573 1 224 +~~~ +~~~ +28129575 1 192 +~~~ +~~~ +28129576 1 128 +~~~ +~~~ +28129578 1 0 +~~~ +~~~ +28129580 1 512 +28129581 homeCount = 92 +28129582 waitCount = 37 +28129582 ripCount = 39 +28129603 locktype1 = 1 +28129604 locktype2 = 6 +28129604 locktype3 = 10 +28129605 goalCount = 0 +28129605 goalTotal = 30 +28129606 otherCount = 45 +~~~ +28132434 DOWN 1 +28132434 0 512 +28135996 UP 10 +28135996 waslock = 0 +28135996 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28136023 512 16777728 +~~~ +28136173 512 512 +28136193 DOWN 10 +28136193 0 512 +~~~ +~~~ +28136216 0 1536 +~~~ +~~~ +28136218 0 1024 +28136219 homeCount = 93 +28136220 waitCount = 37 +28136220 ripCount = 39 +28136221 locktype1 = 1 +28136221 locktype2 = 6 +28136222 locktype3 = 10 +28136222 goalCount = 0 +28136223 goalTotal = 30 +28136223 otherCount = 45 +~~~ +28136245 UP 10 +28136245 waslock = 0 +28136245 512 1024 +~~~ +28138668 DOWN 10 +28138668 0 1024 +~~~ +~~~ +~~~ +~~~ +28138688 homeCount = 93 +28138688 waitCount = 37 +28138689 ripCount = 39 +28138689 locktype1 = 1 +28138690 locktype2 = 6 +28138690 locktype3 = 10 +28138691 goalCount = 0 +28138691 goalTotal = 30 +28138692 otherCount = 45 +~~~ +28138714 UP 10 +28138714 waslock = 0 +28138714 512 1024 +~~~ +28138749 DOWN 10 +28138748 0 1024 +~~~ +~~~ +~~~ +~~~ +28138770 homeCount = 93 +28138770 waitCount = 37 +28138771 ripCount = 39 +28138771 locktype1 = 1 +28138772 locktype2 = 6 +28138772 locktype3 = 10 +28138773 goalCount = 0 +28138773 goalTotal = 30 +28138774 otherCount = 45 +~~~ +28140396 UP 11 +28140396 1024 1024 +28143396 BEEP1 +28143396 BEEP2 +~~~ +~~~ +~~~ +28143421 1024 33555456 +~~~ +28143571 1024 1024 +28150234 DOWN 11 +28150234 0 1024 +~~~ +~~~ +28150260 0 0 +~~~ +~~~ +28150262 0 1 +~~~ +~~~ +28150264 0 3 +~~~ +~~~ +28150265 0 7 +~~~ +~~~ +28150267 0 15 +~~~ +~~~ +28150269 0 31 +~~~ +~~~ +28150271 0 63 +~~~ +~~~ +28150273 0 127 +~~~ +~~~ +28150275 0 255 +28150276 homeCount = 93 +28150276 waitCount = 37 +28150277 ripCount = 40 +28150277 locktype1 = 1 +28150278 locktype2 = 6 +28150299 locktype3 = 10 +28150299 goalCount = 0 +28150300 goalTotal = 30 +28150300 otherCount = 45 +~~~ +28150301 CURRENTGOAL IS [7] +~~~ +28150330 UP 11 +28150330 1024 255 +28150374 DOWN 11 +28150374 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28150408 homeCount = 93 +28150409 waitCount = 37 +28150410 ripCount = 40 +28150410 locktype1 = 1 +28150411 locktype2 = 6 +28150411 locktype3 = 10 +28150412 goalCount = 0 +28150412 goalTotal = 30 +28150413 otherCount = 45 +~~~ +28150414 CURRENTGOAL IS [7] +~~~ +28150482 UP 11 +28150482 1024 255 +28150504 DOWN 11 +28150504 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28150538 homeCount = 93 +28150539 waitCount = 37 +28150539 ripCount = 40 +28150540 locktype1 = 1 +28150541 locktype2 = 6 +28150541 locktype3 = 10 +28150542 goalCount = 0 +28150542 goalTotal = 30 +28150543 otherCount = 45 +~~~ +28150544 CURRENTGOAL IS [7] +~~~ +28150614 UP 11 +28150614 1024 255 +28152416 DOWN 11 +28152416 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28152462 homeCount = 93 +28152462 waitCount = 37 +28152463 ripCount = 40 +28152463 locktype1 = 1 +28152464 locktype2 = 6 +28152464 locktype3 = 10 +28152465 goalCount = 0 +28152465 goalTotal = 30 +28152466 otherCount = 45 +~~~ +28152467 CURRENTGOAL IS [7] +~~~ +28155346 UP 7 +28155346 64 255 +~~~ +~~~ +28155366 outer reward +~~~ +28155367 64 4194559 +~~~ +~~~ +28155389 DOWN 7 +28155389 0 4194559 +~~~ +~~~ +28155414 0 4194558 +~~~ +~~~ +28155416 0 4194556 +~~~ +~~~ +28155417 0 4194552 +~~~ +~~~ +28155419 0 4194544 +~~~ +~~~ +28155421 0 4194528 +~~~ +~~~ +28155423 0 4194496 +~~~ +~~~ +28155425 0 4194432 +~~~ +~~~ +28155426 0 4194304 +~~~ +~~~ +28155428 0 4194816 +28155429 homeCount = 93 +28155430 waitCount = 37 +28155430 ripCount = 40 +28155451 locktype1 = 1 +28155452 locktype2 = 6 +28155452 locktype3 = 10 +28155453 goalCount = 1 +28155453 goalTotal = 31 +28155454 otherCount = 45 +~~~ +28155455 64 4194816 +28155816 64 512 +28162953 DOWN 7 +28162953 0 512 +28162983 64 512 +28163080 DOWN 7 +28163080 0 512 +28163122 64 512 +28163206 DOWN 7 +28163206 0 512 +28163287 64 512 +28163352 DOWN 7 +28163352 0 512 +28171612 UP 10 +28171613 waslock = 0 +28171612 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28171642 512 16777728 +~~~ +28171792 512 512 +28171878 DOWN 10 +28171878 0 512 +~~~ +~~~ +28171904 0 2560 +~~~ +~~~ +28171906 0 2048 +28171907 homeCount = 94 +28171908 waitCount = 37 +28171908 ripCount = 40 +28171909 locktype1 = 1 +28171909 locktype2 = 6 +28171910 locktype3 = 10 +28171910 goalCount = 1 +28171911 goalTotal = 31 +28171911 otherCount = 45 +~~~ +28173078 UP 10 +28173078 waslock = 0 +28173078 512 2048 +~~~ +28177126 DOWN 10 +28177126 0 2048 +~~~ +~~~ +~~~ +~~~ +28177147 homeCount = 94 +28177147 waitCount = 37 +28177148 ripCount = 40 +28177148 locktype1 = 1 +28177149 locktype2 = 6 +28177149 locktype3 = 10 +28177150 goalCount = 1 +28177150 goalTotal = 31 +28177151 otherCount = 45 +~~~ +28177189 UP 10 +28177189 waslock = 0 +28177189 512 2048 +~~~ +28177225 DOWN 10 +28177225 0 2048 +~~~ +~~~ +~~~ +~~~ +28177251 homeCount = 94 +28177252 waitCount = 37 +28177252 ripCount = 40 +28177253 locktype1 = 1 +28177253 locktype2 = 6 +28177254 locktype3 = 10 +28177254 goalCount = 1 +28177255 goalTotal = 31 +28177255 otherCount = 45 +~~~ +28179849 UP 12 +28179849 2048 2048 +28182849 CLICK1 +28182849 CLICK2 +~~~ +~~~ +~~~ +28182876 2048 67110912 +~~~ +28183026 2048 2048 +28183159 DOWN 12 +28183159 0 2048 +~~~ +~~~ +28183186 0 0 +~~~ +~~~ +28183188 0 1 +~~~ +~~~ +28183190 0 3 +~~~ +~~~ +28183192 0 7 +~~~ +~~~ +28183194 0 15 +~~~ +~~~ +28183195 0 31 +~~~ +~~~ +28183197 0 63 +~~~ +~~~ +28183199 0 127 +~~~ +~~~ +28183201 0 255 +28183202 homeCount = 94 +28183202 waitCount = 38 +28183203 ripCount = 40 +28183204 locktype1 = 1 +28183204 locktype2 = 6 +28183225 locktype3 = 10 +28183225 goalCount = 1 +28183226 goalTotal = 31 +28183226 otherCount = 45 +~~~ +28183228 CURRENTGOAL IS [7] +~~~ +28183266 UP 12 +28183266 2048 255 +28183306 DOWN 12 +28183306 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28183343 UP 12 +28183343 2048 255 +~~~ +28183344 homeCount = 94 +28183345 waitCount = 38 +28183345 ripCount = 40 +28183346 locktype1 = 1 +28183346 locktype2 = 6 +28183347 locktype3 = 10 +28183347 goalCount = 1 +28183348 goalTotal = 31 +28183349 otherCount = 45 +~~~ +28183370 CURRENTGOAL IS [7] +~~~ +28190586 DOWN 12 +28190586 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28190625 homeCount = 94 +28190626 waitCount = 38 +28190626 ripCount = 40 +28190627 locktype1 = 1 +28190627 locktype2 = 6 +28190628 locktype3 = 10 +28190628 goalCount = 1 +28190629 goalTotal = 31 +28190629 otherCount = 45 +~~~ +28190630 CURRENTGOAL IS [7] +~~~ +28196854 UP 8 +28196854 128 255 +~~~ +~~~ +28197377 DOWN 8 +28197377 0 255 +~~~ +~~~ +28197398 0 254 +~~~ +~~~ +28197400 0 252 +~~~ +~~~ +28197402 0 248 +~~~ +~~~ +28197404 0 240 +~~~ +~~~ +28197405 0 224 +~~~ +~~~ +28197407 0 192 +~~~ +~~~ +28197409 0 128 +~~~ +~~~ +28197411 0 0 +~~~ +~~~ +28197413 0 512 +28197414 homeCount = 94 +28197414 waitCount = 38 +28197415 ripCount = 40 +28197415 locktype1 = 1 +28197416 locktype2 = 6 +28197437 locktype3 = 10 +28197437 goalCount = 1 +28197438 goalTotal = 31 +28197438 otherCount = 46 +~~~ +28197589 128 512 +28197873 DOWN 8 +28197873 0 512 +28201996 UP 10 +28201996 waslock = 0 +28201996 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28202028 512 16777728 +~~~ +28202178 512 512 +28202268 DOWN 10 +28202268 0 512 +~~~ +~~~ +28202293 0 2560 +~~~ +~~~ +28202295 0 2048 +28202296 homeCount = 95 +28202297 waitCount = 38 +28202297 ripCount = 40 +28202298 locktype1 = 1 +28202298 locktype2 = 6 +28202299 locktype3 = 10 +28202299 goalCount = 1 +28202300 goalTotal = 31 +28202300 otherCount = 46 +~~~ +28202321 UP 10 +28202321 waslock = 0 +28202321 512 2048 +~~~ +28208913 DOWN 10 +28208913 0 2048 +~~~ +~~~ +~~~ +~~~ +28208936 homeCount = 95 +28208936 waitCount = 38 +28208937 ripCount = 40 +28208937 locktype1 = 1 +28208938 locktype2 = 6 +28208938 locktype3 = 10 +28208939 goalCount = 1 +28208939 goalTotal = 31 +28208940 otherCount = 46 +~~~ +28208955 UP 10 +28208955 waslock = 0 +28208955 512 2048 +~~~ +28209014 DOWN 10 +28209014 0 2048 +~~~ +~~~ +~~~ +~~~ +28209035 homeCount = 95 +28209036 waitCount = 38 +28209036 ripCount = 40 +28209037 locktype1 = 1 +28209037 locktype2 = 6 +28209038 locktype3 = 10 +28209038 goalCount = 1 +28209039 goalTotal = 31 +28209039 otherCount = 46 +~~~ +28210982 UP 12 +28210982 2048 2048 +28215482 CLICK1 +28215482 CLICK2 +~~~ +~~~ +~~~ +28215506 2048 67110912 +~~~ +28215656 2048 2048 +28223085 DOWN 12 +28223084 0 2048 +~~~ +~~~ +28223104 0 0 +~~~ +~~~ +28223106 0 1 +~~~ +~~~ +28223108 0 3 +~~~ +~~~ +28223110 0 7 +~~~ +~~~ +28223111 0 15 +~~~ +~~~ +28223113 0 31 +~~~ +~~~ +28223115 0 63 +~~~ +~~~ +28223117 0 127 +~~~ +~~~ +28223119 0 255 +28223120 homeCount = 95 +28223120 waitCount = 39 +28223121 ripCount = 40 +28223121 locktype1 = 1 +28223122 locktype2 = 6 +28223142 locktype3 = 10 +28223143 goalCount = 1 +28223143 goalTotal = 31 +28223144 otherCount = 46 +~~~ +28223145 CURRENTGOAL IS [7] +~~~ +28223146 UP 12 +28223146 2048 255 +28223185 DOWN 12 +28223185 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28223222 homeCount = 95 +28223222 waitCount = 39 +28223223 ripCount = 40 +28223223 locktype1 = 1 +28223224 locktype2 = 6 +28223224 locktype3 = 10 +28223225 goalCount = 1 +28223225 goalTotal = 31 +28223226 otherCount = 46 +~~~ +28223227 CURRENTGOAL IS [7] +~~~ +28233647 UP 7 +28233647 64 255 +~~~ +~~~ +28233670 outer reward +~~~ +28233670 64 4194559 +~~~ +~~~ +28233821 DOWN 7 +28233821 0 4194559 +~~~ +~~~ +28233837 0 4194558 +~~~ +~~~ +28233839 0 4194556 +~~~ +~~~ +28233841 0 4194552 +~~~ +~~~ +28233843 0 4194544 +~~~ +~~~ +28233845 0 4194528 +~~~ +~~~ +28233847 0 4194496 +~~~ +~~~ +28233848 0 4194432 +~~~ +~~~ +28233850 0 4194304 +~~~ +~~~ +28233852 0 4194816 +28233853 homeCount = 95 +28233854 waitCount = 39 +28233854 ripCount = 40 +28233875 locktype1 = 1 +28233876 locktype2 = 6 +28233876 locktype3 = 10 +28233877 goalCount = 2 +28233877 goalTotal = 32 +28233878 otherCount = 46 +~~~ +28233878 64 4194816 +28234120 64 512 +28243031 DOWN 7 +28243031 0 512 +28243057 64 512 +28243146 DOWN 7 +28243146 0 512 +28248129 UP 10 +28248129 waslock = 0 +28248129 512 512 +~~~ +~~~ +~~~ +~~~ +28248154 DOWN 10 +28248154 0 512 +~~~ +28248156 0 16777728 +~~~ +~~~ +~~~ +28248171 0 16779776 +~~~ +~~~ +28248172 0 16779264 +28248173 homeCount = 96 +28248174 waitCount = 39 +28248174 ripCount = 40 +28248175 locktype1 = 1 +28248175 locktype2 = 6 +28248176 locktype3 = 10 +28248176 goalCount = 2 +28248177 goalTotal = 32 +28248178 otherCount = 46 +~~~ +28248236 UP 10 +28248236 waslock = 0 +28248236 512 16779264 +~~~ +28248306 512 2048 +28248640 DOWN 10 +28248640 0 2048 +28248654 UP 10 +28248654 waslock = 0 +28248654 512 2048 +~~~ +~~~ +~~~ +~~~ +28248674 homeCount = 96 +28248675 waitCount = 39 +28248675 ripCount = 40 +28248676 locktype1 = 1 +28248676 locktype2 = 6 +28248677 locktype3 = 10 +28248677 goalCount = 2 +28248678 goalTotal = 32 +28248678 otherCount = 46 +~~~ +~~~ +28252124 DOWN 10 +28252124 0 2048 +28252140 UP 10 +28252141 waslock = 0 +28252140 512 2048 +~~~ +~~~ +~~~ +~~~ +28252165 homeCount = 96 +28252166 waitCount = 39 +28252166 ripCount = 40 +28252167 locktype1 = 1 +28252167 locktype2 = 6 +28252168 locktype3 = 10 +28252168 goalCount = 2 +28252169 goalTotal = 32 +28252169 otherCount = 46 +~~~ +~~~ +28252230 DOWN 10 +28252230 0 2048 +~~~ +~~~ +~~~ +~~~ +28252253 homeCount = 96 +28252254 waitCount = 39 +28252254 ripCount = 40 +28252255 locktype1 = 1 +28252255 locktype2 = 6 +28252256 locktype3 = 10 +28252256 goalCount = 2 +28252257 goalTotal = 32 +28252257 otherCount = 46 +~~~ +28252286 UP 10 +28252286 waslock = 0 +28252286 512 2048 +~~~ +28252324 DOWN 10 +28252324 0 2048 +~~~ +~~~ +~~~ +~~~ +28252352 homeCount = 96 +28252352 waitCount = 39 +28252353 ripCount = 40 +28252353 locktype1 = 1 +28252354 locktype2 = 6 +28252354 locktype3 = 10 +28252355 goalCount = 2 +28252355 goalTotal = 32 +28252356 otherCount = 46 +~~~ +28254088 UP 12 +28254088 2048 2048 +28259672 DOWN 12 +28259672 0 2048 +28259689 UP 12 +28259689 2048 2048 +28259725 DOWN 12 +28259725 0 2048 +28259759 UP 12 +28259759 2048 2048 +28259931 DOWN 12 +28259930 0 2048 +28259941 UP 12 +28259941 2048 2048 +28260607 DOWN 12 +28260607 0 2048 +28260622 UP 12 +28260621 2048 2048 +28263088 CLICK1 +28263088 CLICK2 +~~~ +~~~ +~~~ +28263111 2048 67110912 +~~~ +28263261 2048 2048 +28269902 DOWN 12 +28269902 0 2048 +28269928 UP 12 +28269928 2048 2048 +~~~ +~~~ +28269931 2048 0 +~~~ +~~~ +28269932 2048 1 +~~~ +~~~ +28269934 2048 3 +~~~ +~~~ +28269936 2048 7 +~~~ +~~~ +28269938 2048 15 +~~~ +~~~ +28269940 2048 31 +~~~ +~~~ +28269942 2048 63 +~~~ +~~~ +28269943 2048 127 +~~~ +~~~ +28269945 2048 255 +28269946 homeCount = 96 +28269947 waitCount = 40 +28269968 ripCount = 40 +28269969 locktype1 = 1 +28269969 locktype2 = 6 +28269970 locktype3 = 10 +28269970 goalCount = 2 +28269971 goalTotal = 32 +28269971 otherCount = 46 +~~~ +28269972 CURRENTGOAL IS [7] +~~~ +28269986 DOWN 12 +28269986 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28270027 homeCount = 96 +28270027 waitCount = 40 +28270028 ripCount = 40 +28270028 locktype1 = 1 +28270029 locktype2 = 6 +28270029 locktype3 = 10 +28270030 goalCount = 2 +28270030 goalTotal = 32 +28270031 otherCount = 46 +~~~ +28270032 CURRENTGOAL IS [7] +~~~ +28276085 UP 7 +28276085 64 255 +~~~ +~~~ +28276113 outer reward +~~~ +28276113 64 4194559 +~~~ +~~~ +28276119 DOWN 7 +28276118 0 4194559 +~~~ +~~~ +28276132 0 4194558 +~~~ +~~~ +28276133 0 4194556 +~~~ +~~~ +28276135 0 4194552 +~~~ +~~~ +28276137 0 4194544 +~~~ +~~~ +28276139 0 4194528 +~~~ +~~~ +28276141 0 4194496 +~~~ +~~~ +28276142 0 4194432 +~~~ +~~~ +28276144 0 4194304 +~~~ +~~~ +28276146 0 4194816 +28276147 homeCount = 96 +28276148 waitCount = 40 +28276148 ripCount = 40 +28276169 locktype1 = 1 +28276170 locktype2 = 6 +28276170 locktype3 = 10 +28276171 goalCount = 3 +28276171 goalTotal = 33 +28276172 otherCount = 46 +~~~ +28276172 64 4194816 +28276185 DOWN 7 +28276185 0 4194816 +28276189 64 4194816 +28276301 DOWN 7 +28276301 0 4194816 +28276362 64 4194816 +28276473 DOWN 7 +28276473 0 4194816 +28276504 64 4194816 +28276563 64 512 +28276768 DOWN 7 +28276768 0 512 +28276782 64 512 +28277032 DOWN 7 +28277032 0 512 +28277039 64 512 +28285770 DOWN 7 +28285770 0 512 +28290802 UP 10 +28290802 waslock = 0 +28290802 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28290828 512 16777728 +~~~ +28290978 512 512 +28291074 DOWN 10 +28291074 0 512 +~~~ +~~~ +28291097 0 2560 +~~~ +~~~ +28291099 0 2048 +28291100 homeCount = 97 +28291101 waitCount = 40 +28291101 ripCount = 40 +28291102 locktype1 = 1 +28291102 locktype2 = 6 +28291103 locktype3 = 10 +28291103 goalCount = 3 +28291104 goalTotal = 33 +28291104 otherCount = 46 +~~~ +28291157 UP 10 +28291157 waslock = 0 +28291157 512 2048 +~~~ +28298203 DOWN 10 +28298203 0 2048 +~~~ +~~~ +28298222 UP 10 +28298222 waslock = 0 +28298222 512 2048 +~~~ +~~~ +28298224 homeCount = 97 +28298225 waitCount = 40 +28298225 ripCount = 40 +28298226 locktype1 = 1 +28298226 locktype2 = 6 +28298227 locktype3 = 10 +28298227 goalCount = 3 +28298228 goalTotal = 33 +28298249 otherCount = 46 +~~~ +~~~ +28298313 DOWN 10 +28298313 0 2048 +~~~ +~~~ +~~~ +~~~ +28298336 homeCount = 97 +28298336 waitCount = 40 +28298337 ripCount = 40 +28298337 locktype1 = 1 +28298338 locktype2 = 6 +28298338 locktype3 = 10 +28298339 goalCount = 3 +28298339 goalTotal = 33 +28298340 otherCount = 46 +~~~ +28298386 UP 10 +28298386 waslock = 0 +28298386 512 2048 +28298408 DOWN 10 +28298408 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28298435 homeCount = 97 +28298436 waitCount = 40 +28298436 ripCount = 40 +28298437 locktype1 = 1 +28298437 locktype2 = 6 +28298438 locktype3 = 10 +28298438 goalCount = 3 +28298439 goalTotal = 33 +28298439 otherCount = 46 +~~~ +28300760 UP 12 +28300760 2048 2048 +28302267 DOWN 12 +28302267 0 2048 +28302282 UP 12 +28302282 2048 2048 +28303163 DOWN 12 +28303163 0 2048 +28303230 UP 12 +28303230 2048 2048 +28303340 DOWN 12 +28303340 0 2048 +28303346 UP 12 +28303346 2048 2048 +28303760 CLICK1 +28303760 CLICK2 +~~~ +~~~ +~~~ +28303783 2048 67110912 +~~~ +28303933 2048 2048 +28304129 DOWN 12 +28304129 0 2048 +28304147 UP 12 +28304147 2048 2048 +~~~ +~~~ +28304150 2048 0 +~~~ +~~~ +28304152 2048 1 +~~~ +~~~ +28304154 2048 3 +~~~ +~~~ +28304156 2048 7 +~~~ +~~~ +28304158 2048 15 +~~~ +~~~ +28304159 2048 31 +~~~ +~~~ +28304161 2048 63 +~~~ +~~~ +28304163 2048 127 +~~~ +~~~ +28304165 2048 255 +28304166 homeCount = 97 +28304167 waitCount = 41 +28304167 ripCount = 40 +28304188 locktype1 = 1 +28304188 locktype2 = 6 +28304189 locktype3 = 10 +28304189 goalCount = 3 +28304190 goalTotal = 33 +28304190 otherCount = 46 +~~~ +28304192 CURRENTGOAL IS [7] +~~~ +28311063 DOWN 12 +28311063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28311100 homeCount = 97 +28311101 waitCount = 41 +28311102 ripCount = 40 +28311102 locktype1 = 1 +28311103 locktype2 = 6 +28311103 locktype3 = 10 +28311104 goalCount = 3 +28311104 goalTotal = 33 +28311105 otherCount = 46 +~~~ +28311106 CURRENTGOAL IS [7] +~~~ +28311127 UP 12 +28311127 2048 255 +28311173 DOWN 12 +28311173 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28311212 homeCount = 97 +28311213 waitCount = 41 +28311213 ripCount = 40 +28311214 locktype1 = 1 +28311214 locktype2 = 6 +28311215 locktype3 = 10 +28311215 goalCount = 3 +28311216 goalTotal = 33 +28311216 otherCount = 46 +~~~ +28311217 CURRENTGOAL IS [7] +~~~ +28311282 UP 12 +28311282 2048 255 +28313151 DOWN 12 +28313151 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28313192 homeCount = 97 +28313193 waitCount = 41 +28313193 ripCount = 40 +28313194 locktype1 = 1 +28313194 locktype2 = 6 +28313195 locktype3 = 10 +28313195 goalCount = 3 +28313196 goalTotal = 33 +28313196 otherCount = 46 +~~~ +28313197 CURRENTGOAL IS [7] +~~~ +28318089 UP 7 +28318089 64 255 +~~~ +~~~ +28318108 outer reward +~~~ +28318108 64 4194559 +~~~ +~~~ +28318332 DOWN 7 +28318332 0 4194559 +~~~ +~~~ +28318355 0 4194558 +~~~ +~~~ +28318357 0 4194556 +~~~ +~~~ +28318359 0 4194552 +~~~ +~~~ +28318361 0 4194544 +~~~ +~~~ +28318362 0 4194528 +~~~ +~~~ +28318364 0 4194496 +~~~ +~~~ +28318366 0 4194432 +~~~ +~~~ +28318368 0 4194304 +~~~ +~~~ +28318370 0 4194816 +28318371 homeCount = 97 +28318371 waitCount = 41 +28318372 ripCount = 40 +28318393 locktype1 = 1 +28318393 locktype2 = 6 +28318394 locktype3 = 10 +28318394 goalCount = 4 +28318395 goalTotal = 34 +28318395 otherCount = 46 +~~~ +28318396 64 4194816 +28318558 64 512 +28318784 DOWN 7 +28318784 0 512 +28318799 64 512 +28326513 DOWN 7 +28326513 0 512 +28326537 64 512 +28326605 DOWN 7 +28326605 0 512 +28331412 UP 10 +28331413 waslock = 0 +28331412 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28331443 512 16777728 +~~~ +28331593 512 512 +28331648 DOWN 10 +28331648 0 512 +~~~ +~~~ +28331669 0 2560 +~~~ +~~~ +28331671 0 2048 +28331672 homeCount = 98 +28331672 waitCount = 41 +28331673 ripCount = 40 +28331673 locktype1 = 1 +28331674 locktype2 = 6 +28331674 locktype3 = 10 +28331675 goalCount = 4 +28331675 goalTotal = 34 +28331676 otherCount = 46 +~~~ +28331697 UP 10 +28331697 waslock = 0 +28331697 512 2048 +~~~ +28334733 DOWN 10 +28334733 0 2048 +~~~ +~~~ +~~~ +~~~ +28334758 homeCount = 98 +28334759 waitCount = 41 +28334759 ripCount = 40 +28334760 locktype1 = 1 +28334760 locktype2 = 6 +28334761 locktype3 = 10 +28334761 goalCount = 4 +28334762 goalTotal = 34 +28334762 otherCount = 46 +~~~ +28334797 UP 10 +28334797 waslock = 0 +28334797 512 2048 +~~~ +28334845 DOWN 10 +28334845 0 2048 +~~~ +~~~ +~~~ +~~~ +28334877 homeCount = 98 +28334877 waitCount = 41 +28334878 ripCount = 40 +28334878 locktype1 = 1 +28334879 locktype2 = 6 +28334879 locktype3 = 10 +28334880 goalCount = 4 +28334880 goalTotal = 34 +28334881 otherCount = 46 +~~~ +28336994 UP 12 +28336994 2048 2048 +28339137 DOWN 12 +28339137 0 2048 +28339153 UP 12 +28339152 2048 2048 +28339517 DOWN 12 +28339517 0 2048 +28339545 UP 12 +28339545 2048 2048 +28340452 DOWN 12 +28340452 0 2048 +28340540 UP 12 +28340540 2048 2048 +28340551 DOWN 12 +28340551 0 2048 +28340555 UP 12 +28340555 2048 2048 +28340569 DOWN 12 +28340569 0 2048 +28340589 UP 12 +28340589 2048 2048 +28340861 DOWN 12 +28340861 0 2048 +28340868 UP 12 +28340868 2048 2048 +28342994 CLICK1 +28342994 CLICK2 +~~~ +~~~ +~~~ +28343019 2048 67110912 +~~~ +28343169 2048 2048 +28347975 DOWN 12 +28347975 0 2048 +28347979 UP 12 +28347979 2048 2048 +~~~ +~~~ +28348001 2048 0 +~~~ +~~~ +28348003 2048 1 +~~~ +~~~ +28348004 2048 3 +~~~ +~~~ +28348006 2048 7 +~~~ +~~~ +28348008 2048 15 +~~~ +~~~ +28348010 2048 31 +~~~ +~~~ +28348012 2048 63 +~~~ +~~~ +28348014 DOWN 12 +28348013 0 127 +~~~ +~~~ +28348015 0 255 +28348016 homeCount = 98 +28348017 waitCount = 42 +28348018 ripCount = 40 +28348039 locktype1 = 1 +28348039 locktype2 = 6 +28348040 locktype3 = 10 +28348040 goalCount = 4 +28348041 goalTotal = 34 +28348041 otherCount = 46 +~~~ +28348042 CURRENTGOAL IS [7] +~~~ +28348046 UP 12 +28348046 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28348075 homeCount = 98 +28348075 waitCount = 42 +28348076 ripCount = 40 +28348076 locktype1 = 1 +28348077 locktype2 = 6 +28348077 locktype3 = 10 +28348078 goalCount = 4 +28348078 goalTotal = 34 +28348079 otherCount = 46 +~~~ +28348080 CURRENTGOAL IS [7] +~~~ +28348143 DOWN 12 +28348143 0 255 +28348159 UP 12 +28348159 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28348186 homeCount = 98 +28348186 waitCount = 42 +28348187 ripCount = 40 +28348187 locktype1 = 1 +28348188 locktype2 = 6 +28348188 locktype3 = 10 +28348189 goalCount = 4 +28348189 goalTotal = 34 +28348190 otherCount = 46 +~~~ +28348191 CURRENTGOAL IS [7] +~~~ +28350762 DOWN 12 +28350762 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28350795 homeCount = 98 +28350796 waitCount = 42 +28350796 ripCount = 40 +28350797 locktype1 = 1 +28350797 locktype2 = 6 +28350798 locktype3 = 10 +28350798 goalCount = 4 +28350799 goalTotal = 34 +28350799 otherCount = 46 +~~~ +28350800 CURRENTGOAL IS [7] +~~~ +28354630 UP 7 +28354630 64 255 +~~~ +~~~ +28354651 outer reward +~~~ +28354651 64 4194559 +~~~ +~~~ +28354678 DOWN 7 +28354678 0 4194559 +~~~ +~~~ +28354698 0 4194558 +~~~ +~~~ +28354700 0 4194556 +~~~ +~~~ +28354702 0 4194552 +~~~ +~~~ +28354704 0 4194544 +~~~ +~~~ +28354706 0 4194528 +~~~ +28354707 64 4194528 +~~~ +~~~ +28354709 64 4194496 +~~~ +~~~ +28354710 64 4194432 +~~~ +28354711 64 4194304 +~~~ +~~~ +28354713 64 4194816 +28354714 homeCount = 98 +28354735 waitCount = 42 +28354736 ripCount = 40 +28354736 locktype1 = 1 +28354737 locktype2 = 6 +28354737 locktype3 = 10 +28354738 goalCount = 5 +28354738 goalTotal = 35 +28354739 otherCount = 46 +~~~ +28354868 DOWN 7 +28354868 0 4194816 +28354919 64 4194816 +28355101 64 512 +28363140 DOWN 7 +28363140 0 512 +28363188 64 512 +28363237 DOWN 7 +28363237 0 512 +28367403 UP 10 +28367403 waslock = 0 +28367403 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28367436 512 16777728 +~~~ +28367557 DOWN 10 +28367557 0 16777728 +~~~ +~~~ +28367580 0 16778752 +~~~ +~~~ +28367581 0 16778240 +28367583 homeCount = 99 +28367583 waitCount = 42 +28367584 ripCount = 40 +28367584 locktype1 = 1 +28367585 locktype2 = 6 +28367585 locktype3 = 10 +28367586 goalCount = 5 +28367586 goalTotal = 35 +28367587 otherCount = 46 +~~~ +28367608 UP 10 +28367608 waslock = 0 +28367608 512 16778240 +28367609 512 1024 +~~~ +28367951 DOWN 10 +28367951 0 1024 +~~~ +~~~ +~~~ +~~~ +28367974 homeCount = 99 +28367975 waitCount = 42 +28367975 ripCount = 40 +28367976 locktype1 = 1 +28367976 locktype2 = 6 +28367977 locktype3 = 10 +28367977 goalCount = 5 +28367978 goalTotal = 35 +28367978 otherCount = 46 +~~~ +28368002 UP 10 +28368003 waslock = 0 +28368002 512 1024 +~~~ +28371913 DOWN 10 +28371913 0 1024 +~~~ +~~~ +~~~ +~~~ +28371933 homeCount = 99 +28371934 waitCount = 42 +28371934 ripCount = 40 +28371935 locktype1 = 1 +28371935 locktype2 = 6 +28371936 locktype3 = 10 +28371936 goalCount = 5 +28371937 goalTotal = 35 +28371937 otherCount = 46 +~~~ +28371983 UP 10 +28371983 waslock = 0 +28371983 512 1024 +~~~ +28372017 DOWN 10 +28372017 0 1024 +~~~ +~~~ +~~~ +~~~ +28372043 homeCount = 99 +28372044 waitCount = 42 +28372044 ripCount = 40 +28372045 locktype1 = 1 +28372045 locktype2 = 6 +28372046 locktype3 = 10 +28372046 goalCount = 5 +28372047 goalTotal = 35 +28372047 otherCount = 46 +~~~ +28374860 UP 11 +28374860 1024 1024 +28375214 DOWN 11 +28375214 0 1024 +28375405 UP 11 +28375405 1024 1024 +28375439 DOWN 11 +28375439 0 1024 +28375489 UP 11 +28375489 1024 1024 +28377737 DOWN 11 +28377737 0 1024 +28377747 UP 11 +28377746 1024 1024 +28378861 BEEP1 +28378861 BEEP2 +~~~ +~~~ +~~~ +28378886 1024 33555456 +~~~ +28379036 1024 1024 +28385014 DOWN 11 +28385013 0 1024 +28385028 UP 11 +28385028 1024 1024 +~~~ +~~~ +28385030 1024 0 +~~~ +~~~ +28385032 1024 1 +~~~ +~~~ +28385034 1024 3 +~~~ +~~~ +28385035 1024 7 +~~~ +~~~ +28385037 1024 15 +~~~ +~~~ +28385039 1024 31 +~~~ +~~~ +28385041 1024 63 +~~~ +~~~ +28385043 1024 127 +~~~ +~~~ +28385045 1024 255 +28385046 homeCount = 99 +28385046 waitCount = 42 +28385067 ripCount = 41 +28385067 locktype1 = 1 +28385068 locktype2 = 6 +28385068 locktype3 = 10 +28385069 goalCount = 5 +28385069 goalTotal = 35 +28385070 otherCount = 46 +~~~ +28385071 CURRENTGOAL IS [7] +~~~ +28388281 DOWN 11 +28388281 0 255 +28388298 UP 11 +28388298 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28388317 homeCount = 99 +28388317 waitCount = 42 +28388318 ripCount = 41 +28388318 locktype1 = 1 +28388319 locktype2 = 6 +28388319 locktype3 = 10 +28388320 goalCount = 5 +28388320 goalTotal = 35 +28388321 otherCount = 46 +~~~ +28388322 CURRENTGOAL IS [7] +~~~ +28388394 DOWN 11 +28388394 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28388438 homeCount = 99 +28388438 waitCount = 42 +28388439 ripCount = 41 +28388439 locktype1 = 1 +28388440 locktype2 = 6 +28388440 locktype3 = 10 +28388441 goalCount = 5 +28388441 goalTotal = 35 +28388442 otherCount = 46 +~~~ +28388443 CURRENTGOAL IS [7] +~~~ +28391127 UP 7 +28391127 64 255 +~~~ +28391152 DOWN 7 +28391152 0 255 +~~~ +28391154 outer reward +~~~ +28391154 0 4194559 +~~~ +~~~ +~~~ +~~~ +28391173 0 4194558 +~~~ +28391175 64 4194558 +~~~ +~~~ +28391176 64 4194556 +~~~ +~~~ +28391178 64 4194552 +~~~ +28391179 64 4194544 +~~~ +~~~ +28391181 64 4194528 +~~~ +~~~ +28391182 64 4194496 +~~~ +~~~ +28391184 64 4194432 +~~~ +~~~ +28391186 64 4194304 +~~~ +~~~ +28391188 64 4194816 +28391210 homeCount = 99 +28391210 waitCount = 42 +28391211 ripCount = 41 +28391211 locktype1 = 1 +28391212 locktype2 = 6 +28391212 locktype3 = 10 +28391213 goalCount = 6 +28391213 goalTotal = 36 +28391214 otherCount = 46 +~~~ +28391352 DOWN 7 +28391352 0 4194816 +28391410 64 4194816 +28391604 64 512 +28401070 DOWN 7 +28401070 0 512 +28405631 UP 10 +28405631 waslock = 0 +28405631 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28405662 512 16777728 +~~~ +28405812 512 512 +28405858 DOWN 10 +28405858 0 512 +28405879 UP 10 +28405880 waslock = 0 +28405879 512 512 +~~~ +~~~ +28405884 512 1536 +~~~ +~~~ +28405886 512 1024 +28405887 homeCount = 100 +28405887 waitCount = 42 +28405888 ripCount = 41 +28405888 locktype1 = 1 +28405889 locktype2 = 6 +28405889 locktype3 = 10 +28405890 goalCount = 6 +28405890 goalTotal = 36 +28405891 otherCount = 46 +~~~ +~~~ +28411150 DOWN 10 +28411150 0 1024 +~~~ +~~~ +~~~ +~~~ +28411176 homeCount = 100 +28411177 waitCount = 42 +28411177 ripCount = 41 +28411178 locktype1 = 1 +28411178 locktype2 = 6 +28411179 locktype3 = 10 +28411179 goalCount = 6 +28411180 goalTotal = 36 +28411180 otherCount = 46 +~~~ +28411204 UP 10 +28411205 waslock = 0 +28411204 512 1024 +~~~ +28411240 DOWN 10 +28411240 0 1024 +~~~ +~~~ +~~~ +~~~ +28411267 homeCount = 100 +28411268 waitCount = 42 +28411268 ripCount = 41 +28411269 locktype1 = 1 +28411269 locktype2 = 6 +28411270 locktype3 = 10 +28411270 goalCount = 6 +28411271 goalTotal = 36 +28411271 otherCount = 46 +~~~ +28413812 UP 11 +28413812 1024 1024 +28415393 DOWN 11 +28415393 0 1024 +28415594 LOCKOUT 3 +~~~ +28415615 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +28415619 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28416951 UP 11 +28416951 1024 0 +28434365 DOWN 11 +28434365 0 0 +28440615 LOCKEND +~~~ +~~~ +~~~ +28440635 0 512 +28442032 UP 7 +28442032 64 512 +28442581 DOWN 7 +28442581 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28442619 homeCount = 100 +28442620 waitCount = 42 +28442620 ripCount = 41 +28442621 locktype1 = 1 +28442621 locktype2 = 6 +28442622 locktype3 = 11 +28442622 goalCount = 6 +28442623 goalTotal = 36 +28442623 otherCount = 46 +~~~ +28447649 UP 10 +28447649 waslock = 0 +28447649 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28447681 512 16777728 +~~~ +28447831 512 512 +28451216 DOWN 10 +28451216 0 512 +~~~ +~~~ +28451236 0 2560 +~~~ +~~~ +28451238 0 2048 +28451239 homeCount = 101 +28451239 waitCount = 42 +28451240 ripCount = 41 +28451240 locktype1 = 1 +28451241 locktype2 = 6 +28451241 locktype3 = 11 +28451242 goalCount = 6 +28451242 goalTotal = 36 +28451243 otherCount = 46 +~~~ +28451279 UP 10 +28451279 waslock = 0 +28451279 512 2048 +~~~ +28451321 DOWN 10 +28451321 0 2048 +~~~ +~~~ +~~~ +~~~ +28451352 homeCount = 101 +28451352 waitCount = 42 +28451353 ripCount = 41 +28451353 locktype1 = 1 +28451354 locktype2 = 6 +28451354 locktype3 = 11 +28451355 goalCount = 6 +28451355 goalTotal = 36 +28451356 otherCount = 46 +~~~ +28454622 UP 12 +28454622 2048 2048 +28455640 DOWN 12 +28455640 0 2048 +28455828 UP 12 +28455828 2048 2048 +28457622 CLICK1 +28457622 CLICK2 +~~~ +~~~ +~~~ +28457646 2048 67110912 +~~~ +28457700 DOWN 12 +28457700 0 67110912 +28457745 UP 12 +28457745 2048 67110912 +28457796 2048 2048 +~~~ +~~~ +28457831 2048 0 +~~~ +~~~ +28457833 2048 1 +~~~ +~~~ +28457835 2048 3 +~~~ +~~~ +28457837 2048 7 +~~~ +~~~ +28457839 2048 15 +~~~ +~~~ +28457841 2048 31 +~~~ +~~~ +28457842 2048 63 +~~~ +~~~ +28457844 2048 127 +~~~ +~~~ +28457846 2048 255 +28457847 homeCount = 101 +28457848 waitCount = 43 +28457848 ripCount = 41 +28457869 locktype1 = 1 +28457869 locktype2 = 6 +28457870 locktype3 = 11 +28457870 goalCount = 6 +28457871 goalTotal = 36 +28457871 otherCount = 46 +~~~ +28457872 CURRENTGOAL IS [7] +~~~ +28457923 DOWN 12 +28457923 0 255 +28457931 UP 12 +28457931 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28457961 homeCount = 101 +28457962 waitCount = 43 +28457962 ripCount = 41 +28457963 locktype1 = 1 +28457963 locktype2 = 6 +28457964 locktype3 = 11 +28457964 goalCount = 6 +28457965 goalTotal = 36 +28457965 otherCount = 46 +~~~ +28457966 CURRENTGOAL IS [7] +~~~ +28458047 DOWN 12 +28458046 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28458081 homeCount = 101 +28458081 waitCount = 43 +28458082 ripCount = 41 +28458082 locktype1 = 1 +28458083 locktype2 = 6 +28458083 locktype3 = 11 +28458084 goalCount = 6 +28458084 goalTotal = 36 +28458085 otherCount = 46 +~~~ +28458086 CURRENTGOAL IS [7] +~~~ +28458107 UP 12 +28458107 2048 255 +28458209 DOWN 12 +28458209 0 255 +28458222 UP 12 +28458222 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28458251 homeCount = 101 +28458252 waitCount = 43 +28458252 ripCount = 41 +28458253 locktype1 = 1 +28458253 locktype2 = 6 +28458254 locktype3 = 11 +28458254 goalCount = 6 +28458255 goalTotal = 36 +28458255 otherCount = 46 +~~~ +28458257 CURRENTGOAL IS [7] +~~~ +28464145 DOWN 12 +28464145 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464183 homeCount = 101 +28464183 waitCount = 43 +28464184 ripCount = 41 +28464184 locktype1 = 1 +28464185 locktype2 = 6 +28464185 locktype3 = 11 +28464186 goalCount = 6 +28464186 goalTotal = 36 +28464187 otherCount = 46 +~~~ +28464188 CURRENTGOAL IS [7] +~~~ +28464211 UP 12 +28464211 2048 255 +28464279 DOWN 12 +28464279 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464314 homeCount = 101 +28464314 waitCount = 43 +28464315 ripCount = 41 +28464315 locktype1 = 1 +28464316 locktype2 = 6 +28464316 locktype3 = 11 +28464317 goalCount = 6 +28464317 goalTotal = 36 +28464318 otherCount = 46 +~~~ +28464319 CURRENTGOAL IS [7] +~~~ +28464343 UP 12 +28464343 2048 255 +28464552 DOWN 12 +28464552 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464592 homeCount = 101 +28464593 waitCount = 43 +28464594 ripCount = 41 +28464594 locktype1 = 1 +28464595 locktype2 = 6 +28464595 locktype3 = 11 +28464596 goalCount = 6 +28464596 goalTotal = 36 +28464597 otherCount = 46 +~~~ +28464598 CURRENTGOAL IS [7] +~~~ +28464678 UP 12 +28464678 2048 255 +28464954 DOWN 12 +28464954 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464994 homeCount = 101 +28464994 waitCount = 43 +28464995 ripCount = 41 +28464995 locktype1 = 1 +28464996 locktype2 = 6 +28464997 locktype3 = 11 +28464997 goalCount = 6 +28464998 goalTotal = 36 +28464998 otherCount = 46 +~~~ +28464999 CURRENTGOAL IS [7] +~~~ +28465040 UP 12 +28465040 2048 255 +28466476 DOWN 12 +28466476 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28466513 homeCount = 101 +28466514 waitCount = 43 +28466514 ripCount = 41 +28466515 locktype1 = 1 +28466515 locktype2 = 6 +28466516 locktype3 = 11 +28466516 goalCount = 6 +28466517 goalTotal = 36 +28466517 otherCount = 46 +~~~ +28466518 CURRENTGOAL IS [7] +~~~ +28466540 UP 12 +28466540 2048 255 +28466558 DOWN 12 +28466558 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28466594 homeCount = 101 +28466594 waitCount = 43 +28466595 ripCount = 41 +28466596 locktype1 = 1 +28466596 locktype2 = 6 +28466597 locktype3 = 11 +28466597 goalCount = 6 +28466598 goalTotal = 36 +28466598 otherCount = 46 +~~~ +28466599 CURRENTGOAL IS [7] +~~~ +28473374 UP 3 +28473374 4 255 +~~~ +~~~ +28474863 DOWN 3 +28474863 0 255 +~~~ +~~~ +28474888 0 254 +~~~ +~~~ +28474890 0 252 +~~~ +~~~ +28474892 0 248 +~~~ +~~~ +28474894 0 240 +~~~ +~~~ +28474896 0 224 +~~~ +~~~ +28474897 0 192 +~~~ +~~~ +28474899 0 128 +~~~ +~~~ +28474901 0 0 +~~~ +~~~ +28474903 0 512 +28474904 homeCount = 101 +28474904 waitCount = 43 +28474905 ripCount = 41 +28474905 locktype1 = 1 +28474906 locktype2 = 6 +28474927 locktype3 = 11 +28474928 goalCount = 6 +28474928 goalTotal = 36 +28474929 otherCount = 47 +~~~ +28474947 4 512 +28474978 DOWN 3 +28474978 0 512 +28479683 UP 10 +28479683 waslock = 0 +28479683 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28479707 512 16777728 +~~~ +28479857 512 512 +28479857 DOWN 10 +28479857 0 512 +~~~ +~~~ +28479883 0 2560 +~~~ +~~~ +28479885 0 2048 +28479886 homeCount = 102 +28479886 waitCount = 43 +28479887 ripCount = 41 +28479887 locktype1 = 1 +28479888 locktype2 = 6 +28479888 locktype3 = 11 +28479889 goalCount = 6 +28479889 goalTotal = 36 +28479890 otherCount = 47 +~~~ +28479911 UP 10 +28479911 waslock = 0 +28479911 512 2048 +~~~ +28485096 DOWN 10 +28485096 0 2048 +~~~ +~~~ +~~~ +~~~ +28485121 UP 10 +28485121 waslock = 0 +28485121 512 2048 +28485123 homeCount = 102 +28485123 waitCount = 43 +28485124 ripCount = 41 +28485124 locktype1 = 1 +28485125 locktype2 = 6 +28485125 locktype3 = 11 +28485126 goalCount = 6 +28485126 goalTotal = 36 +28485127 otherCount = 47 +~~~ +~~~ +28485197 DOWN 10 +28485197 0 2048 +~~~ +~~~ +~~~ +~~~ +28485222 homeCount = 102 +28485222 waitCount = 43 +28485223 ripCount = 41 +28485223 locktype1 = 1 +28485224 locktype2 = 6 +28485224 locktype3 = 11 +28485225 goalCount = 6 +28485225 goalTotal = 36 +28485226 otherCount = 47 +~~~ +28487348 UP 12 +28487348 2048 2048 +28489141 DOWN 12 +28489141 0 2048 +28489173 UP 12 +28489173 2048 2048 +28489765 DOWN 12 +28489765 0 2048 +28489810 UP 12 +28489810 2048 2048 +28490348 CLICK1 +28490348 CLICK2 +~~~ +~~~ +~~~ +28490373 2048 67110912 +~~~ +28490523 2048 2048 +28490662 DOWN 12 +28490662 0 2048 +28490664 UP 12 +28490664 2048 2048 +~~~ +~~~ +28490680 2048 0 +~~~ +~~~ +28490682 2048 1 +~~~ +~~~ +28490684 2048 3 +~~~ +~~~ +28490686 2048 7 +~~~ +~~~ +28490688 2048 15 +~~~ +~~~ +28490689 2048 31 +~~~ +~~~ +28490691 2048 63 +~~~ +~~~ +28490693 2048 127 +~~~ +~~~ +28490695 2048 255 +28490696 homeCount = 102 +28490696 waitCount = 44 +28490697 ripCount = 41 +28490718 locktype1 = 1 +28490719 locktype2 = 6 +28490719 locktype3 = 11 +28490720 goalCount = 6 +28490720 goalTotal = 36 +28490721 otherCount = 47 +~~~ +28490722 CURRENTGOAL IS [7] +~~~ +28490802 DOWN 12 +28490802 0 255 +28490812 UP 12 +28490812 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28490850 homeCount = 102 +28490850 waitCount = 44 +28490851 ripCount = 41 +28490851 locktype1 = 1 +28490852 locktype2 = 6 +28490853 locktype3 = 11 +28490853 goalCount = 6 +28490854 goalTotal = 36 +28490854 otherCount = 47 +~~~ +28490855 CURRENTGOAL IS [7] +~~~ +28499180 DOWN 12 +28499180 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28499217 homeCount = 102 +28499218 waitCount = 44 +28499218 ripCount = 41 +28499219 locktype1 = 1 +28499220 locktype2 = 6 +28499220 locktype3 = 11 +28499221 goalCount = 6 +28499221 goalTotal = 36 +28499222 otherCount = 47 +~~~ +28499223 CURRENTGOAL IS [7] +~~~ +28502930 UP 4 +28502930 8 255 +~~~ +~~~ +28504240 DOWN 4 +28504240 0 255 +~~~ +~~~ +28504264 0 254 +~~~ +~~~ +28504266 0 252 +~~~ +~~~ +28504268 0 248 +~~~ +~~~ +28504269 0 240 +~~~ +~~~ +28504271 0 224 +~~~ +~~~ +28504273 0 192 +~~~ +~~~ +28504275 0 128 +~~~ +~~~ +28504277 0 0 +~~~ +~~~ +28504279 0 512 +28504280 homeCount = 102 +28504280 waitCount = 44 +28504281 ripCount = 41 +28504281 locktype1 = 1 +28504282 locktype2 = 6 +28504303 locktype3 = 11 +28504303 goalCount = 6 +28504304 goalTotal = 36 +28504304 otherCount = 48 +~~~ +28510764 UP 10 +28510764 waslock = 0 +28510764 512 512 +~~~ +~~~ +28510787 DOWN 10 +28510786 0 512 +~~~ +~~~ +~~~ +28510790 0 16777728 +~~~ +28510807 UP 10 +28510807 waslock = 0 +28510807 512 16777728 +~~~ +~~~ +~~~ +28510810 512 16778752 +~~~ +28510811 512 16778240 +28510812 homeCount = 103 +28510812 waitCount = 44 +28510813 ripCount = 41 +28510813 locktype1 = 1 +28510814 locktype2 = 6 +28510814 locktype3 = 11 +28510836 goalCount = 6 +28510836 goalTotal = 36 +28510837 otherCount = 48 +~~~ +~~~ +28510940 512 1024 +28511036 DOWN 10 +28511036 0 1024 +~~~ +~~~ +~~~ +~~~ +28511057 homeCount = 103 +28511058 waitCount = 44 +28511058 ripCount = 41 +28511059 locktype1 = 1 +28511059 locktype2 = 6 +28511060 locktype3 = 11 +28511060 goalCount = 6 +28511061 goalTotal = 36 +28511061 otherCount = 48 +~~~ +28511079 UP 10 +28511079 waslock = 0 +28511079 512 1024 +~~~ +28516182 DOWN 10 +28516182 0 1024 +~~~ +~~~ +~~~ +~~~ +28516207 homeCount = 103 +28516207 waitCount = 44 +28516208 ripCount = 41 +28516208 locktype1 = 1 +28516209 locktype2 = 6 +28516209 locktype3 = 11 +28516210 goalCount = 6 +28516210 goalTotal = 36 +28516211 otherCount = 48 +~~~ +28516242 UP 10 +28516242 waslock = 0 +28516242 512 1024 +28516260 DOWN 10 +28516260 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28516286 homeCount = 103 +28516287 waitCount = 44 +28516287 ripCount = 41 +28516288 locktype1 = 1 +28516288 locktype2 = 6 +28516289 locktype3 = 11 +28516289 goalCount = 6 +28516290 goalTotal = 36 +28516290 otherCount = 48 +~~~ +28518090 UP 11 +28518090 1024 1024 +28522590 BEEP1 +28522590 BEEP2 +~~~ +~~~ +~~~ +28522616 1024 33555456 +~~~ +28522635 DOWN 11 +28522635 0 33555456 +28522652 UP 11 +28522652 1024 33555456 +28522766 1024 1024 +28522899 DOWN 11 +28522899 0 1024 +28522967 UP 11 +28522967 1024 1024 +28523180 DOWN 11 +28523180 0 1024 +28523192 UP 11 +28523192 1024 1024 +~~~ +~~~ +28523290 1024 0 +~~~ +~~~ +28523292 1024 1 +~~~ +~~~ +28523293 1024 3 +~~~ +~~~ +28523295 1024 7 +~~~ +~~~ +28523297 1024 15 +~~~ +~~~ +28523299 1024 31 +~~~ +~~~ +28523301 1024 63 +~~~ +~~~ +28523302 1024 127 +~~~ +~~~ +28523304 1024 255 +28523305 homeCount = 103 +28523306 waitCount = 44 +28523306 ripCount = 42 +28523327 locktype1 = 1 +28523328 locktype2 = 6 +28523329 locktype3 = 11 +28523329 goalCount = 6 +28523330 goalTotal = 36 +28523330 otherCount = 48 +~~~ +28523331 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28523359 homeCount = 103 +28523360 waitCount = 44 +28523360 ripCount = 42 +28523361 locktype1 = 1 +28523361 locktype2 = 6 +28523362 locktype3 = 11 +28523362 goalCount = 6 +28523363 goalTotal = 36 +28523363 otherCount = 48 +~~~ +28523385 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28523392 homeCount = 103 +28523392 waitCount = 44 +28523393 ripCount = 42 +28523393 locktype1 = 1 +28523394 locktype2 = 6 +28523394 locktype3 = 11 +28523415 goalCount = 6 +28523416 goalTotal = 36 +28523416 otherCount = 48 +~~~ +28523417 CURRENTGOAL IS [7] +~~~ +28529119 DOWN 11 +28529119 0 255 +~~~ +~~~ +28529139 UP 11 +28529139 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529154 homeCount = 103 +28529155 waitCount = 44 +28529155 ripCount = 42 +28529156 locktype1 = 1 +28529157 locktype2 = 6 +28529157 locktype3 = 11 +28529158 goalCount = 6 +28529158 goalTotal = 36 +28529159 otherCount = 48 +~~~ +28529160 CURRENTGOAL IS [7] +~~~ +28529243 DOWN 11 +28529243 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529278 UP 11 +28529278 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529285 homeCount = 103 +28529286 waitCount = 44 +28529286 ripCount = 42 +28529287 locktype1 = 1 +28529287 locktype2 = 6 +28529288 locktype3 = 11 +28529288 goalCount = 6 +28529289 goalTotal = 36 +28529289 otherCount = 48 +~~~ +28529291 CURRENTGOAL IS [7] +~~~ +28529377 DOWN 11 +28529377 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529405 UP 11 +28529405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529413 homeCount = 103 +28529413 waitCount = 44 +28529414 ripCount = 42 +28529415 locktype1 = 1 +28529415 locktype2 = 6 +28529416 locktype3 = 11 +28529416 goalCount = 6 +28529417 goalTotal = 36 +28529417 otherCount = 48 +~~~ +28529418 CURRENTGOAL IS [7] +~~~ +28531283 DOWN 11 +28531283 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28531322 homeCount = 103 +28531323 waitCount = 44 +28531323 ripCount = 42 +28531324 locktype1 = 1 +28531324 locktype2 = 6 +28531325 locktype3 = 11 +28531325 goalCount = 6 +28531326 goalTotal = 36 +28531326 otherCount = 48 +~~~ +28531327 CURRENTGOAL IS [7] +~~~ +28535334 UP 7 +28535334 64 255 +~~~ +~~~ +28535359 outer reward +~~~ +28535359 64 4194559 +~~~ +~~~ +28535740 DOWN 7 +28535740 0 4194559 +~~~ +~~~ +28535756 0 4194558 +~~~ +~~~ +28535758 0 4194556 +~~~ +~~~ +28535760 0 4194552 +~~~ +~~~ +28535762 0 4194544 +~~~ +~~~ +28535764 0 4194528 +~~~ +~~~ +28535765 0 4194496 +~~~ +~~~ +28535767 0 4194432 +~~~ +~~~ +28535769 0 4194304 +~~~ +28535770 64 4194304 +~~~ +28535772 64 4194816 +28535773 homeCount = 103 +28535793 waitCount = 44 +28535794 ripCount = 42 +28535794 locktype1 = 1 +28535795 locktype2 = 6 +28535795 locktype3 = 11 +28535796 goalCount = 7 +28535796 goalTotal = 37 +28535797 otherCount = 48 +~~~ +28535809 64 512 +28543837 DOWN 7 +28543837 0 512 +28548438 UP 10 +28548438 waslock = 0 +28548438 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28548463 512 16777728 +~~~ +28548613 512 512 +28548656 DOWN 10 +28548656 0 512 +28548677 UP 10 +28548678 waslock = 0 +28548677 512 512 +~~~ +~~~ +~~~ +28548680 512 1536 +~~~ +28548682 homeCount = 104 +28548682 waitCount = 44 +28548683 ripCount = 42 +28548683 locktype1 = 1 +28548684 locktype2 = 6 +28548684 locktype3 = 11 +28548685 goalCount = 7 +28548705 goalTotal = 37 +28548706 otherCount = 48 +~~~ +~~~ +28548707 512 1024 +28553037 DOWN 10 +28553037 0 1024 +~~~ +~~~ +~~~ +~~~ +28553060 homeCount = 104 +28553061 waitCount = 44 +28553061 ripCount = 42 +28553062 locktype1 = 1 +28553063 locktype2 = 6 +28553063 locktype3 = 11 +28553064 goalCount = 7 +28553064 goalTotal = 37 +28553065 otherCount = 48 +~~~ +28555797 UP 11 +28555797 1024 1024 +28558797 BEEP1 +28558797 BEEP2 +~~~ +~~~ +~~~ +28558819 1024 33555456 +~~~ +28558969 1024 1024 +28566484 DOWN 11 +28566484 0 1024 +28566489 UP 11 +28566489 1024 1024 +~~~ +~~~ +28566507 1024 0 +~~~ +~~~ +28566509 1024 1 +~~~ +~~~ +28566511 1024 3 +~~~ +~~~ +28566513 1024 7 +~~~ +~~~ +28566515 1024 15 +~~~ +~~~ +28566516 1024 31 +~~~ +~~~ +28566518 1024 63 +~~~ +~~~ +28566520 1024 127 +~~~ +~~~ +28566522 1024 255 +28566523 homeCount = 104 +28566524 waitCount = 44 +28566524 ripCount = 43 +28566525 locktype1 = 1 +28566546 locktype2 = 6 +28566546 locktype3 = 11 +28566547 goalCount = 7 +28566547 goalTotal = 37 +28566548 otherCount = 48 +~~~ +28566549 CURRENTGOAL IS [7] +~~~ +28568685 DOWN 11 +28568685 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28568725 homeCount = 104 +28568726 waitCount = 44 +28568726 ripCount = 43 +28568727 locktype1 = 1 +28568728 locktype2 = 6 +28568728 locktype3 = 11 +28568729 goalCount = 7 +28568729 goalTotal = 37 +28568730 otherCount = 48 +~~~ +28568731 CURRENTGOAL IS [7] +~~~ +28571533 UP 7 +28571533 64 255 +28571553 DOWN 7 +28571553 0 255 +~~~ +~~~ +28571574 outer reward +~~~ +28571574 0 4194559 +~~~ +~~~ +~~~ +~~~ +28571578 0 4194558 +~~~ +~~~ +28571580 0 4194556 +~~~ +~~~ +28571582 0 4194552 +~~~ +~~~ +28571584 0 4194544 +~~~ +~~~ +28571585 0 4194528 +~~~ +~~~ +28571587 0 4194496 +~~~ +~~~ +28571589 0 4194432 +~~~ +~~~ +28571591 0 4194304 +~~~ +~~~ +28571593 0 4194816 +28571594 homeCount = 104 +28571615 waitCount = 44 +28571615 ripCount = 43 +28571616 locktype1 = 1 +28571616 locktype2 = 6 +28571617 locktype3 = 11 +28571617 goalCount = 8 +28571618 goalTotal = 38 +28571618 otherCount = 48 +~~~ +28571624 64 4194816 +28571719 DOWN 7 +28571719 0 4194816 +28571813 64 4194816 +28572024 64 512 +28581184 DOWN 7 +28581184 0 512 +28585695 UP 10 +28585696 waslock = 0 +28585695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28585719 512 16777728 +~~~ +28585869 512 512 +28585923 DOWN 10 +28585923 0 512 +~~~ +~~~ +28585947 0 2560 +~~~ +~~~ +28585948 0 2048 +28585949 homeCount = 105 +28585950 waitCount = 44 +28585950 ripCount = 43 +28585951 locktype1 = 1 +28585951 locktype2 = 6 +28585952 locktype3 = 11 +28585952 goalCount = 8 +28585953 goalTotal = 38 +28585954 otherCount = 48 +~~~ +28585975 UP 10 +28585975 waslock = 0 +28585975 512 2048 +~~~ +28589699 DOWN 10 +28589699 0 2048 +~~~ +~~~ +~~~ +~~~ +28589726 homeCount = 105 +28589726 waitCount = 44 +28589727 ripCount = 43 +28589727 locktype1 = 1 +28589728 locktype2 = 6 +28589728 locktype3 = 11 +28589729 goalCount = 8 +28589729 goalTotal = 38 +28589730 otherCount = 48 +~~~ +28589736 UP 10 +28589737 waslock = 0 +28589736 512 2048 +~~~ +28589793 DOWN 10 +28589793 0 2048 +~~~ +~~~ +~~~ +~~~ +28589817 homeCount = 105 +28589818 waitCount = 44 +28589818 ripCount = 43 +28589819 locktype1 = 1 +28589819 locktype2 = 6 +28589820 locktype3 = 11 +28589820 goalCount = 8 +28589821 goalTotal = 38 +28589821 otherCount = 48 +~~~ +28591883 UP 12 +28591883 2048 2048 +28594999 DOWN 12 +28594999 0 2048 +28595008 UP 12 +28595008 2048 2048 +28596384 CLICK1 +28596384 CLICK2 +~~~ +~~~ +~~~ +28596405 2048 67110912 +~~~ +28596555 2048 2048 +28602879 DOWN 12 +28602879 0 2048 +~~~ +~~~ +28602904 0 0 +~~~ +~~~ +28602906 0 1 +~~~ +~~~ +28602908 0 3 +~~~ +~~~ +28602910 0 7 +~~~ +~~~ +28602912 0 15 +~~~ +~~~ +28602913 0 31 +~~~ +~~~ +28602915 0 63 +~~~ +~~~ +28602917 0 127 +~~~ +~~~ +28602919 0 255 +28602920 homeCount = 105 +28602920 waitCount = 45 +28602921 ripCount = 43 +28602921 locktype1 = 1 +28602922 locktype2 = 6 +28602943 locktype3 = 11 +28602944 goalCount = 8 +28602944 goalTotal = 38 +28602945 otherCount = 48 +~~~ +28602946 CURRENTGOAL IS [7] +~~~ +28602948 UP 12 +28602948 2048 255 +28602980 DOWN 12 +28602980 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603008 UP 12 +28603008 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603014 homeCount = 105 +28603015 waitCount = 45 +28603015 ripCount = 43 +28603016 locktype1 = 1 +28603016 locktype2 = 6 +28603017 locktype3 = 11 +28603017 goalCount = 8 +28603018 goalTotal = 38 +28603018 otherCount = 48 +~~~ +28603020 CURRENTGOAL IS [7] +~~~ +28603548 DOWN 12 +28603548 0 255 +28603564 UP 12 +28603564 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603599 homeCount = 105 +28603599 waitCount = 45 +28603600 ripCount = 43 +28603601 locktype1 = 1 +28603601 locktype2 = 6 +28603602 locktype3 = 11 +28603602 goalCount = 8 +28603603 goalTotal = 38 +28603603 otherCount = 48 +~~~ +28603604 CURRENTGOAL IS [7] +~~~ +28605256 DOWN 12 +28605256 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28605289 homeCount = 105 +28605290 waitCount = 45 +28605290 ripCount = 43 +28605291 locktype1 = 1 +28605291 locktype2 = 6 +28605292 locktype3 = 11 +28605292 goalCount = 8 +28605293 goalTotal = 38 +28605293 otherCount = 48 +~~~ +28605295 CURRENTGOAL IS [7] +~~~ +28605316 UP 12 +28605316 2048 255 +28605340 DOWN 12 +28605340 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28605382 homeCount = 105 +28605382 waitCount = 45 +28605383 ripCount = 43 +28605383 locktype1 = 1 +28605384 locktype2 = 6 +28605384 locktype3 = 11 +28605385 goalCount = 8 +28605385 goalTotal = 38 +28605386 otherCount = 48 +~~~ +28605387 CURRENTGOAL IS [7] +~~~ +28610041 UP 7 +28610041 64 255 +~~~ +~~~ +28610066 outer reward +~~~ +28610066 64 4194559 +~~~ +~~~ +28610080 DOWN 7 +28610080 0 4194559 +~~~ +~~~ +28610104 0 4194558 +~~~ +~~~ +28610106 0 4194556 +~~~ +~~~ +28610108 0 4194552 +~~~ +~~~ +28610110 0 4194544 +~~~ +~~~ +28610112 0 4194528 +~~~ +~~~ +28610113 0 4194496 +~~~ +~~~ +28610115 0 4194432 +~~~ +~~~ +28610117 0 4194304 +~~~ +~~~ +28610119 0 4194816 +28610120 homeCount = 105 +28610120 waitCount = 45 +28610121 ripCount = 43 +28610142 locktype1 = 1 +28610143 locktype2 = 6 +28610143 locktype3 = 11 +28610144 goalCount = 9 +28610144 goalTotal = 39 +28610145 otherCount = 48 +~~~ +28610145 64 4194816 +28610263 DOWN 7 +28610263 0 4194816 +28610325 64 4194816 +28610516 64 512 +28610711 DOWN 7 +28610711 0 512 +28610728 64 512 +28618901 DOWN 7 +28618901 0 512 +28624410 UP 10 +28624410 waslock = 0 +28624410 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28624433 512 16777728 +~~~ +28624583 512 512 +28629207 DOWN 10 +28629207 0 512 +~~~ +~~~ +28629227 0 1536 +~~~ +~~~ +28629229 0 1024 +28629230 homeCount = 106 +28629230 waitCount = 45 +28629231 ripCount = 43 +28629231 locktype1 = 1 +28629232 locktype2 = 6 +28629232 locktype3 = 11 +28629233 goalCount = 9 +28629233 goalTotal = 39 +28629234 otherCount = 48 +~~~ +28629267 UP 10 +28629268 waslock = 0 +28629267 512 1024 +28629281 DOWN 10 +28629281 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28629317 homeCount = 106 +28629318 waitCount = 45 +28629318 ripCount = 43 +28629319 locktype1 = 1 +28629319 locktype2 = 6 +28629320 locktype3 = 11 +28629320 goalCount = 9 +28629321 goalTotal = 39 +28629321 otherCount = 48 +~~~ +28631683 UP 11 +28631683 1024 1024 +28635339 DOWN 11 +28635339 0 1024 +28635349 UP 11 +28635349 1024 1024 +28635683 BEEP1 +28635683 BEEP2 +~~~ +~~~ +~~~ +28635709 1024 33555456 +~~~ +28635859 1024 1024 +28642049 DOWN 11 +28642048 0 1024 +~~~ +~~~ +28642066 0 0 +~~~ +28642067 UP 11 +28642067 1024 0 +~~~ +~~~ +28642069 1024 1 +~~~ +~~~ +28642071 1024 3 +~~~ +~~~ +28642072 1024 7 +~~~ +28642073 1024 15 +~~~ +~~~ +28642075 1024 31 +~~~ +~~~ +28642076 1024 63 +~~~ +~~~ +28642078 1024 127 +~~~ +~~~ +28642080 1024 255 +28642081 homeCount = 106 +28642102 waitCount = 45 +28642102 ripCount = 44 +28642103 locktype1 = 1 +28642103 locktype2 = 6 +28642104 locktype3 = 11 +28642104 goalCount = 9 +28642105 goalTotal = 39 +28642105 otherCount = 48 +~~~ +28642107 CURRENTGOAL IS [7] +~~~ +28642132 DOWN 11 +28642132 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642162 homeCount = 106 +28642162 waitCount = 45 +28642163 ripCount = 44 +28642163 locktype1 = 1 +28642164 locktype2 = 6 +28642164 locktype3 = 11 +28642165 goalCount = 9 +28642165 goalTotal = 39 +28642166 otherCount = 48 +~~~ +28642167 CURRENTGOAL IS [7] +~~~ +28642188 UP 11 +28642188 1024 255 +28642197 DOWN 11 +28642197 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642220 UP 11 +28642220 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642227 homeCount = 106 +28642228 waitCount = 45 +28642228 ripCount = 44 +28642229 locktype1 = 1 +28642229 locktype2 = 6 +28642230 locktype3 = 11 +28642230 goalCount = 9 +28642231 goalTotal = 39 +28642231 otherCount = 48 +~~~ +28642232 CURRENTGOAL IS [7] +~~~ +28642272 DOWN 11 +28642272 0 255 +28642296 UP 11 +28642296 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642313 homeCount = 106 +28642314 waitCount = 45 +28642314 ripCount = 44 +28642315 locktype1 = 1 +28642315 locktype2 = 6 +28642316 locktype3 = 11 +28642316 goalCount = 9 +28642317 goalTotal = 39 +28642317 otherCount = 48 +~~~ +28642318 CURRENTGOAL IS [7] +~~~ +28643982 DOWN 11 +28643982 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28644022 homeCount = 106 +28644022 waitCount = 45 +28644023 ripCount = 44 +28644023 locktype1 = 1 +28644024 locktype2 = 6 +28644024 locktype3 = 11 +28644025 goalCount = 9 +28644025 goalTotal = 39 +28644026 otherCount = 48 +~~~ +28644027 CURRENTGOAL IS [7] +~~~ +28644048 UP 11 +28644048 1024 255 +28644071 DOWN 11 +28644071 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28644112 homeCount = 106 +28644113 waitCount = 45 +28644113 ripCount = 44 +28644114 locktype1 = 1 +28644114 locktype2 = 6 +28644115 locktype3 = 11 +28644115 goalCount = 9 +28644116 goalTotal = 39 +28644116 otherCount = 48 +~~~ +28644118 CURRENTGOAL IS [7] +~~~ +28646624 UP 7 +28646624 64 255 +~~~ +~~~ +28646652 outer reward +~~~ +28646652 64 4194559 +~~~ +~~~ +28646657 outerreps = 6 +~~~ +~~~ +28646820 DOWN 7 +28646820 0 4194559 +~~~ +~~~ +28646837 0 4194558 +~~~ +~~~ +28646838 0 4194556 +~~~ +~~~ +28646840 0 4194552 +~~~ +~~~ +28646842 0 4194544 +~~~ +~~~ +28646844 0 4194528 +~~~ +~~~ +28646846 0 4194496 +~~~ +~~~ +28646848 0 4194432 +~~~ +~~~ +28646849 0 4194304 +~~~ +~~~ +28646851 0 4194816 +28646852 homeCount = 106 +28646853 waitCount = 45 +28646874 ripCount = 44 +28646875 locktype1 = 1 +28646875 locktype2 = 6 +28646876 locktype3 = 11 +28646876 goalCount = 0 +28646877 goalTotal = 40 +28646877 otherCount = 48 +~~~ +28646881 64 4194816 +28647102 64 512 +28654098 DOWN 7 +28654098 0 512 +28654128 64 512 +28655573 DOWN 7 +28655573 0 512 +28659979 UP 10 +28659979 waslock = 0 +28659979 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28660003 512 16777728 +~~~ +28660153 512 512 +28660172 DOWN 10 +28660172 0 512 +~~~ +~~~ +28660192 0 2560 +~~~ +~~~ +28660194 0 2048 +28660195 homeCount = 107 +28660196 waitCount = 45 +28660196 ripCount = 44 +28660197 locktype1 = 1 +28660197 locktype2 = 6 +28660198 locktype3 = 11 +28660198 goalCount = 0 +28660199 goalTotal = 40 +28660199 otherCount = 48 +~~~ +28660221 UP 10 +28660221 waslock = 0 +28660221 512 2048 +~~~ +28664181 DOWN 10 +28664181 0 2048 +~~~ +~~~ +~~~ +~~~ +28664200 homeCount = 107 +28664201 waitCount = 45 +28664201 ripCount = 44 +28664202 locktype1 = 1 +28664202 locktype2 = 6 +28664203 locktype3 = 11 +28664203 goalCount = 0 +28664204 goalTotal = 40 +28664204 otherCount = 48 +~~~ +28664242 UP 10 +28664242 waslock = 0 +28664242 512 2048 +~~~ +28664282 DOWN 10 +28664282 0 2048 +~~~ +~~~ +~~~ +~~~ +28664301 homeCount = 107 +28664301 waitCount = 45 +28664302 ripCount = 44 +28664302 locktype1 = 1 +28664303 locktype2 = 6 +28664303 locktype3 = 11 +28664304 goalCount = 0 +28664304 goalTotal = 40 +28664305 otherCount = 48 +~~~ +28666679 UP 12 +28666679 2048 2048 +28669418 DOWN 12 +28669418 0 2048 +28669421 UP 12 +28669421 2048 2048 +28670180 CLICK1 +28670180 CLICK2 +~~~ +~~~ +~~~ +28670200 2048 67110912 +~~~ +28670350 2048 2048 +28675738 DOWN 12 +28675738 0 2048 +28675753 UP 12 +28675753 2048 2048 +~~~ +~~~ +28675758 2048 0 +~~~ +~~~ +28675760 2048 1 +~~~ +~~~ +28675761 2048 3 +~~~ +~~~ +28675763 2048 7 +~~~ +~~~ +28675765 2048 15 +~~~ +~~~ +28675767 2048 31 +~~~ +~~~ +28675769 2048 63 +~~~ +~~~ +28675771 2048 127 +~~~ +~~~ +28675772 2048 255 +28675773 homeCount = 107 +28675774 waitCount = 46 +28675775 ripCount = 44 +28675796 locktype1 = 1 +28675796 locktype2 = 6 +28675797 locktype3 = 11 +28675797 goalCount = 0 +28675798 goalTotal = 40 +28675798 otherCount = 48 +~~~ +28675799 CURRENTGOAL IS [8] +~~~ +28675955 DOWN 12 +28675955 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28675995 homeCount = 107 +28675996 waitCount = 46 +28675996 ripCount = 44 +28675997 locktype1 = 1 +28675997 locktype2 = 6 +28675998 locktype3 = 11 +28675998 goalCount = 0 +28675999 goalTotal = 40 +28675999 otherCount = 48 +~~~ +28676000 CURRENTGOAL IS [8] +~~~ +28676059 UP 12 +28676058 2048 255 +28676099 DOWN 12 +28676099 0 255 +28676107 UP 12 +28676107 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676134 homeCount = 107 +28676135 waitCount = 46 +28676135 ripCount = 44 +28676136 locktype1 = 1 +28676136 locktype2 = 6 +28676137 locktype3 = 11 +28676137 goalCount = 0 +28676138 goalTotal = 40 +28676138 otherCount = 48 +~~~ +28676139 CURRENTGOAL IS [8] +~~~ +28676193 DOWN 12 +28676193 0 255 +~~~ +~~~ +~~~ +28676221 UP 12 +28676221 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676236 homeCount = 107 +28676236 waitCount = 46 +28676237 ripCount = 44 +28676238 locktype1 = 1 +28676238 locktype2 = 6 +28676239 locktype3 = 11 +28676239 goalCount = 0 +28676240 goalTotal = 40 +28676240 otherCount = 48 +~~~ +28676241 CURRENTGOAL IS [8] +~~~ +28676262 DOWN 12 +28676262 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676294 homeCount = 107 +28676294 waitCount = 46 +28676295 ripCount = 44 +28676296 locktype1 = 1 +28676296 locktype2 = 6 +28676297 locktype3 = 11 +28676297 goalCount = 0 +28676298 goalTotal = 40 +28676298 otherCount = 48 +~~~ +28676299 CURRENTGOAL IS [8] +~~~ +28676341 UP 12 +28676341 2048 255 +28676567 DOWN 12 +28676567 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676604 homeCount = 107 +28676605 waitCount = 46 +28676606 ripCount = 44 +28676606 locktype1 = 1 +28676607 locktype2 = 6 +28676607 locktype3 = 11 +28676608 goalCount = 0 +28676608 goalTotal = 40 +28676609 otherCount = 48 +~~~ +28676610 CURRENTGOAL IS [8] +~~~ +28676631 UP 12 +28676631 2048 255 +28676674 DOWN 12 +28676674 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676715 homeCount = 107 +28676716 waitCount = 46 +28676717 ripCount = 44 +28676717 locktype1 = 1 +28676718 locktype2 = 6 +28676718 locktype3 = 11 +28676719 goalCount = 0 +28676719 goalTotal = 40 +28676720 otherCount = 48 +~~~ +28676721 CURRENTGOAL IS [8] +~~~ +28676794 UP 12 +28676794 2048 255 +28676813 DOWN 12 +28676813 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676847 homeCount = 107 +28676848 waitCount = 46 +28676848 ripCount = 44 +28676849 locktype1 = 1 +28676849 locktype2 = 6 +28676850 locktype3 = 11 +28676850 goalCount = 0 +28676851 goalTotal = 40 +28676851 otherCount = 48 +~~~ +28676853 CURRENTGOAL IS [8] +~~~ +28681987 UP 7 +28681987 64 255 +~~~ +~~~ +28682178 DOWN 7 +28682178 0 255 +~~~ +~~~ +28682199 0 254 +~~~ +~~~ +28682201 0 252 +~~~ +~~~ +28682203 0 248 +~~~ +~~~ +28682205 0 240 +~~~ +~~~ +28682206 0 224 +~~~ +~~~ +28682208 0 192 +~~~ +~~~ +28682210 0 128 +~~~ +~~~ +28682212 0 0 +~~~ +~~~ +28682214 0 512 +28682215 homeCount = 107 +28682215 waitCount = 46 +28682216 ripCount = 44 +28682216 locktype1 = 1 +28682237 locktype2 = 6 +28682237 locktype3 = 11 +28682238 goalCount = 0 +28682238 goalTotal = 40 +28682239 otherCount = 49 +~~~ +28682242 64 512 +28682805 DOWN 7 +28682805 0 512 +28687242 UP 10 +28687242 waslock = 0 +28687242 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28687267 512 16777728 +~~~ +28687417 512 512 +28692614 DOWN 10 +28692614 0 512 +~~~ +~~~ +28692630 0 1536 +~~~ +~~~ +28692632 0 1024 +28692633 homeCount = 108 +28692633 waitCount = 46 +28692634 ripCount = 44 +28692634 locktype1 = 1 +28692635 locktype2 = 6 +28692635 locktype3 = 11 +28692636 goalCount = 0 +28692636 goalTotal = 40 +28692637 otherCount = 49 +~~~ +28722460 UP 5 +28722460 16 1024 +~~~ +28722481 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +28722485 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28722793 DOWN 5 +28722793 0 0 +28722950 16 0 +28723527 DOWN 5 +28723527 0 0 +28723945 16 0 +28723961 DOWN 5 +28723961 0 0 +28731390 512 0 +28731607 0 0 +28734719 512 0 +28740000 0 0 +28740067 512 0 +28740107 0 0 +28747481 LOCKEND +~~~ +~~~ +~~~ +28747502 0 512 +28779978 UP 10 +28779978 waslock = 0 +28779978 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28780008 512 16777728 +~~~ +28780038 DOWN 10 +28780038 0 16777728 +~~~ +~~~ +28780067 0 16779776 +~~~ +~~~ +28780069 0 16779264 +28780070 homeCount = 109 +28780070 waitCount = 46 +28780071 ripCount = 44 +28780071 locktype1 = 1 +28780072 locktype2 = 7 +28780072 locktype3 = 11 +28780073 goalCount = 0 +28780073 goalTotal = 40 +28780074 otherCount = 49 +~~~ +28780103 UP 10 +28780103 waslock = 0 +28780103 512 16779264 +28780132 DOWN 10 +28780132 0 16779264 +~~~ +~~~ +~~~ +~~~ +~~~ +28780155 homeCount = 109 +28780155 waitCount = 46 +28780156 ripCount = 44 +28780156 locktype1 = 1 +28780157 locktype2 = 7 +28780157 locktype3 = 11 +28780158 goalCount = 0 +28780158 goalTotal = 40 +28780159 otherCount = 49 +~~~ +28780159 0 2048 +28780313 UP 10 +28780314 waslock = 0 +28780313 512 2048 +~~~ +28780367 DOWN 10 +28780367 0 2048 +~~~ +~~~ +~~~ +~~~ +28780397 homeCount = 109 +28780397 waitCount = 46 +28780398 ripCount = 44 +28780398 locktype1 = 1 +28780399 locktype2 = 7 +28780399 locktype3 = 11 +28780400 goalCount = 0 +28780400 goalTotal = 40 +28780401 otherCount = 49 +~~~ +28780413 UP 10 +28780414 waslock = 0 +28780413 512 2048 +~~~ +28780850 DOWN 10 +28780850 0 2048 +~~~ +~~~ +~~~ +~~~ +28780875 homeCount = 109 +28780875 waitCount = 46 +28780876 ripCount = 44 +28780877 locktype1 = 1 +28780877 locktype2 = 7 +28780878 locktype3 = 11 +28780878 goalCount = 0 +28780879 goalTotal = 40 +28780879 otherCount = 49 +~~~ +28780890 UP 10 +28780890 waslock = 0 +28780890 512 2048 +28780908 DOWN 10 +28780908 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28780933 homeCount = 109 +28780933 waitCount = 46 +28780934 ripCount = 44 +28780934 locktype1 = 1 +28780935 locktype2 = 7 +28780935 locktype3 = 11 +28780936 goalCount = 0 +28780936 goalTotal = 40 +28780937 otherCount = 49 +~~~ +28781017 UP 10 +28781017 waslock = 0 +28781017 512 2048 +28781032 DOWN 10 +28781032 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28781058 homeCount = 109 +28781058 waitCount = 46 +28781059 ripCount = 44 +28781059 locktype1 = 1 +28781060 locktype2 = 7 +28781060 locktype3 = 11 +28781061 goalCount = 0 +28781061 goalTotal = 40 +28781062 otherCount = 49 +~~~ +28781144 UP 10 +28781144 waslock = 0 +28781144 512 2048 +28781154 DOWN 10 +28781154 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28781175 homeCount = 109 +28781176 waitCount = 46 +28781176 ripCount = 44 +28781177 locktype1 = 1 +28781177 locktype2 = 7 +28781178 locktype3 = 11 +28781178 goalCount = 0 +28781179 goalTotal = 40 +28781179 otherCount = 49 +~~~ +28781262 UP 10 +28781263 waslock = 0 +28781262 512 2048 +~~~ +28783973 DOWN 10 +28783973 0 2048 +~~~ +~~~ +~~~ +~~~ +28783999 homeCount = 109 +28783999 waitCount = 46 +28784000 ripCount = 44 +28784000 locktype1 = 1 +28784001 locktype2 = 7 +28784001 locktype3 = 11 +28784002 goalCount = 0 +28784002 goalTotal = 40 +28784003 otherCount = 49 +~~~ +28784018 UP 10 +28784019 waslock = 0 +28784018 512 2048 +~~~ +28784075 DOWN 10 +28784075 0 2048 +~~~ +~~~ +~~~ +~~~ +28784099 homeCount = 109 +28784099 waitCount = 46 +28784100 ripCount = 44 +28784100 locktype1 = 1 +28784101 locktype2 = 7 +28784101 locktype3 = 11 +28784102 goalCount = 0 +28784103 goalTotal = 40 +28784103 otherCount = 49 +~~~ +28797858 UP 1 +28797858 1 2048 +28797882 DOWN 1 +28797882 0 2048 +~~~ +28797884 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28797889 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28797959 1 0 +28798533 DOWN 1 +28798533 0 0 +28805298 512 0 +28805377 0 0 +28805484 512 0 +28805569 0 0 +28812038 512 0 +28812315 0 0 +28812347 512 0 +28812391 0 0 +28812415 512 0 +28812432 0 0 +28822884 LOCKEND +~~~ +~~~ +~~~ +28822907 0 512 +28824977 UP 10 +28824977 waslock = 0 +28824977 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28825010 512 16777728 +~~~ +28825030 DOWN 10 +28825030 0 16777728 +~~~ +~~~ +28825053 0 16778752 +~~~ +~~~ +28825055 0 16778240 +28825056 homeCount = 110 +28825057 waitCount = 46 +28825057 ripCount = 44 +28825058 locktype1 = 1 +28825058 locktype2 = 8 +28825059 locktype3 = 11 +28825059 goalCount = 0 +28825060 goalTotal = 40 +28825060 otherCount = 49 +~~~ +28825081 UP 10 +28825082 waslock = 0 +28825081 512 16778240 +~~~ +28825160 512 1024 +28829576 DOWN 10 +28829576 0 1024 +~~~ +~~~ +~~~ +~~~ +28829597 homeCount = 110 +28829597 waitCount = 46 +28829598 ripCount = 44 +28829599 locktype1 = 1 +28829599 locktype2 = 8 +28829600 locktype3 = 11 +28829600 goalCount = 0 +28829601 goalTotal = 40 +28829601 otherCount = 49 +~~~ +28829635 UP 10 +28829635 waslock = 0 +28829635 512 1024 +~~~ +28829692 DOWN 10 +28829692 0 1024 +~~~ +~~~ +~~~ +~~~ +28829717 homeCount = 110 +28829717 waitCount = 46 +28829718 ripCount = 44 +28829718 locktype1 = 1 +28829719 locktype2 = 8 +28829719 locktype3 = 11 +28829720 goalCount = 0 +28829720 goalTotal = 40 +28829721 otherCount = 49 +~~~ +28829775 UP 10 +28829775 waslock = 0 +28829775 512 1024 +~~~ +28829802 DOWN 10 +28829802 0 1024 +~~~ +~~~ +~~~ +~~~ +28829831 homeCount = 110 +28829832 waitCount = 46 +28829832 ripCount = 44 +28829833 locktype1 = 1 +28829833 locktype2 = 8 +28829834 locktype3 = 11 +28829834 goalCount = 0 +28829835 goalTotal = 40 +28829835 otherCount = 49 +~~~ +28832575 UP 11 +28832575 1024 1024 +28836075 BEEP1 +28836075 BEEP2 +~~~ +~~~ +~~~ +28836096 1024 33555456 +~~~ +28836246 1024 1024 +28842504 DOWN 11 +28842504 0 1024 +~~~ +28842524 UP 11 +28842524 1024 1024 +~~~ +~~~ +28842526 1024 0 +~~~ +~~~ +28842527 1024 1 +~~~ +28842529 1024 3 +~~~ +~~~ +28842530 1024 7 +~~~ +~~~ +28842532 1024 15 +~~~ +~~~ +28842534 1024 31 +~~~ +~~~ +28842536 1024 63 +~~~ +~~~ +28842537 1024 127 +~~~ +~~~ +28842539 1024 255 +28842540 homeCount = 110 +28842561 waitCount = 46 +28842562 ripCount = 45 +28842562 locktype1 = 1 +28842563 locktype2 = 8 +28842563 locktype3 = 11 +28842564 goalCount = 0 +28842564 goalTotal = 40 +28842565 otherCount = 49 +~~~ +28842566 CURRENTGOAL IS [8] +~~~ +28842627 DOWN 11 +28842627 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28842665 homeCount = 110 +28842666 waitCount = 46 +28842666 ripCount = 45 +28842667 locktype1 = 1 +28842667 locktype2 = 8 +28842668 locktype3 = 11 +28842668 goalCount = 0 +28842669 goalTotal = 40 +28842669 otherCount = 49 +~~~ +28842670 CURRENTGOAL IS [8] +~~~ +28842708 UP 11 +28842708 1024 255 +28842766 DOWN 11 +28842766 0 255 +28842777 UP 11 +28842777 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28842817 homeCount = 110 +28842818 waitCount = 46 +28842819 ripCount = 45 +28842819 locktype1 = 1 +28842820 locktype2 = 8 +28842820 locktype3 = 11 +28842821 goalCount = 0 +28842821 goalTotal = 40 +28842822 otherCount = 49 +~~~ +28842823 CURRENTGOAL IS [8] +~~~ +28844915 DOWN 11 +28844915 0 255 +28844936 UP 11 +28844936 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28844956 homeCount = 110 +28844956 waitCount = 46 +28844957 ripCount = 45 +28844957 locktype1 = 1 +28844958 locktype2 = 8 +28844958 locktype3 = 11 +28844959 goalCount = 0 +28844959 goalTotal = 40 +28844960 otherCount = 49 +~~~ +28844961 CURRENTGOAL IS [8] +~~~ +28845000 DOWN 11 +28845000 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28845037 homeCount = 110 +28845037 waitCount = 46 +28845038 ripCount = 45 +28845038 locktype1 = 1 +28845039 locktype2 = 8 +28845039 locktype3 = 11 +28845040 goalCount = 0 +28845040 goalTotal = 40 +28845041 otherCount = 49 +~~~ +28845042 CURRENTGOAL IS [8] +~~~ +28848013 UP 6 +28848013 32 255 +~~~ +~~~ +28848533 DOWN 6 +28848533 0 255 +~~~ +~~~ +28848550 0 254 +~~~ +~~~ +28848552 0 252 +~~~ +~~~ +28848554 0 248 +~~~ +~~~ +28848556 0 240 +~~~ +~~~ +28848558 0 224 +~~~ +~~~ +28848560 0 192 +~~~ +~~~ +28848561 0 128 +~~~ +~~~ +28848563 0 0 +~~~ +~~~ +28848565 0 512 +28848566 homeCount = 110 +28848567 waitCount = 46 +28848567 ripCount = 45 +28848568 locktype1 = 1 +28848589 locktype2 = 8 +28848589 locktype3 = 11 +28848590 goalCount = 0 +28848590 goalTotal = 40 +28848591 otherCount = 50 +~~~ +28853286 UP 10 +28853286 waslock = 0 +28853285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28853310 512 16777728 +~~~ +28853460 512 512 +28853551 DOWN 10 +28853551 0 512 +~~~ +~~~ +28853578 0 2560 +~~~ +~~~ +28853580 0 2048 +28853581 homeCount = 111 +28853582 waitCount = 46 +28853582 ripCount = 45 +28853583 locktype1 = 1 +28853583 locktype2 = 8 +28853584 locktype3 = 11 +28853584 goalCount = 0 +28853585 goalTotal = 40 +28853585 otherCount = 50 +~~~ +28853607 UP 10 +28853607 waslock = 0 +28853607 512 2048 +~~~ +28858404 DOWN 10 +28858404 0 2048 +~~~ +~~~ +~~~ +~~~ +28858432 homeCount = 111 +28858433 waitCount = 46 +28858433 ripCount = 45 +28858434 locktype1 = 1 +28858434 locktype2 = 8 +28858435 locktype3 = 11 +28858435 goalCount = 0 +28858436 goalTotal = 40 +28858436 otherCount = 50 +~~~ +28860886 UP 12 +28860886 2048 2048 +28863790 DOWN 12 +28863790 0 2048 +28863828 UP 12 +28863828 2048 2048 +28863856 DOWN 12 +28863856 0 2048 +28863886 CLICK1 +28863886 CLICK2 +~~~ +~~~ +~~~ +28863919 0 67110912 +~~~ +28863922 UP 12 +28863922 2048 67110912 +28864069 2048 2048 +28864196 DOWN 12 +28864196 0 2048 +~~~ +~~~ +28864220 0 0 +~~~ +~~~ +28864222 0 1 +~~~ +~~~ +28864224 0 3 +~~~ +~~~ +28864226 0 7 +~~~ +~~~ +28864228 0 15 +~~~ +~~~ +28864229 0 31 +~~~ +~~~ +28864231 0 63 +~~~ +~~~ +28864233 0 127 +~~~ +~~~ +28864235 0 255 +28864236 homeCount = 111 +28864236 waitCount = 47 +28864237 ripCount = 45 +28864238 locktype1 = 1 +28864238 locktype2 = 8 +28864259 locktype3 = 11 +28864260 goalCount = 0 +28864260 goalTotal = 40 +28864261 otherCount = 50 +~~~ +28864262 CURRENTGOAL IS [8] +~~~ +28864299 UP 12 +28864299 2048 255 +28870550 DOWN 12 +28870550 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28870587 homeCount = 111 +28870587 waitCount = 47 +28870588 ripCount = 45 +28870588 locktype1 = 1 +28870589 locktype2 = 8 +28870589 locktype3 = 11 +28870590 goalCount = 0 +28870590 goalTotal = 40 +28870591 otherCount = 50 +~~~ +28870592 CURRENTGOAL IS [8] +~~~ +28870613 UP 12 +28870613 2048 255 +28870653 DOWN 12 +28870653 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28870688 homeCount = 111 +28870689 waitCount = 47 +28870689 ripCount = 45 +28870690 locktype1 = 1 +28870690 locktype2 = 8 +28870691 locktype3 = 11 +28870692 goalCount = 0 +28870692 goalTotal = 40 +28870693 otherCount = 50 +~~~ +28870694 CURRENTGOAL IS [8] +~~~ +28874529 UP 4 +28874529 8 255 +~~~ +~~~ +28875631 DOWN 4 +28875631 0 255 +~~~ +~~~ +28875652 0 254 +~~~ +~~~ +28875654 0 252 +~~~ +~~~ +28875655 0 248 +~~~ +~~~ +28875657 0 240 +~~~ +~~~ +28875659 0 224 +~~~ +~~~ +28875661 0 192 +~~~ +~~~ +28875663 0 128 +~~~ +~~~ +28875664 0 0 +~~~ +~~~ +28875666 0 512 +28875667 homeCount = 111 +28875668 waitCount = 47 +28875668 ripCount = 45 +28875669 locktype1 = 1 +28875690 locktype2 = 8 +28875691 locktype3 = 11 +28875691 goalCount = 0 +28875692 goalTotal = 40 +28875692 otherCount = 51 +~~~ +28883393 UP 10 +28883394 waslock = 0 +28883393 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28883422 512 16777728 +~~~ +28883439 DOWN 10 +28883439 0 16777728 +~~~ +~~~ +28883466 0 16779776 +~~~ +~~~ +28883468 0 16779264 +28883469 homeCount = 112 +28883470 waitCount = 47 +28883470 ripCount = 45 +28883471 locktype1 = 1 +28883471 locktype2 = 8 +28883472 locktype3 = 11 +28883472 goalCount = 0 +28883473 goalTotal = 40 +28883473 otherCount = 51 +~~~ +28883509 UP 10 +28883509 waslock = 0 +28883509 512 16779264 +~~~ +28883572 512 2048 +28883585 DOWN 10 +28883585 0 2048 +~~~ +~~~ +~~~ +~~~ +28883605 homeCount = 112 +28883605 waitCount = 47 +28883606 ripCount = 45 +28883606 locktype1 = 1 +28883607 locktype2 = 8 +28883607 locktype3 = 11 +28883608 goalCount = 0 +28883608 goalTotal = 40 +28883609 otherCount = 51 +~~~ +28883764 UP 10 +28883764 waslock = 0 +28883764 512 2048 +~~~ +28888011 DOWN 10 +28888011 0 2048 +~~~ +~~~ +~~~ +~~~ +28888031 homeCount = 112 +28888032 waitCount = 47 +28888032 ripCount = 45 +28888033 locktype1 = 1 +28888033 locktype2 = 8 +28888034 locktype3 = 11 +28888034 goalCount = 0 +28888035 goalTotal = 40 +28888035 otherCount = 51 +~~~ +28888049 UP 10 +28888050 waslock = 0 +28888049 512 2048 +~~~ +28888103 DOWN 10 +28888103 0 2048 +~~~ +~~~ +~~~ +~~~ +28888134 homeCount = 112 +28888134 waitCount = 47 +28888135 ripCount = 45 +28888135 locktype1 = 1 +28888136 locktype2 = 8 +28888136 locktype3 = 11 +28888137 goalCount = 0 +28888137 goalTotal = 40 +28888138 otherCount = 51 +~~~ +28890034 UP 12 +28890034 2048 2048 +28893690 DOWN 12 +28893690 0 2048 +28893790 UP 12 +28893790 2048 2048 +28893861 DOWN 12 +28893861 0 2048 +28893878 UP 12 +28893878 2048 2048 +28893921 DOWN 12 +28893921 0 2048 +28893942 UP 12 +28893942 2048 2048 +28893949 DOWN 12 +28893949 0 2048 +28893954 UP 12 +28893954 2048 2048 +28893964 DOWN 12 +28893964 0 2048 +28893989 UP 12 +28893989 2048 2048 +28898611 DOWN 12 +28898611 0 2048 +28898680 UP 12 +28898680 2048 2048 +28899034 CLICK1 +28899034 CLICK2 +~~~ +~~~ +~~~ +28899062 2048 67110912 +~~~ +28899212 2048 2048 +28908224 DOWN 12 +28908224 0 2048 +~~~ +~~~ +28908245 0 0 +~~~ +~~~ +28908247 0 1 +~~~ +~~~ +28908249 0 3 +~~~ +~~~ +28908251 0 7 +~~~ +~~~ +28908253 0 15 +~~~ +~~~ +28908255 0 31 +~~~ +~~~ +28908256 0 63 +~~~ +~~~ +28908258 0 127 +~~~ +~~~ +28908260 0 255 +28908261 homeCount = 112 +28908262 waitCount = 48 +28908262 ripCount = 45 +28908263 locktype1 = 1 +28908263 locktype2 = 8 +28908284 locktype3 = 11 +28908285 goalCount = 0 +28908285 goalTotal = 40 +28908286 otherCount = 51 +~~~ +28908287 CURRENTGOAL IS [8] +~~~ +28908287 UP 12 +28908287 2048 255 +28908312 DOWN 12 +28908312 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28908355 homeCount = 112 +28908356 waitCount = 48 +28908356 ripCount = 45 +28908357 locktype1 = 1 +28908357 locktype2 = 8 +28908358 locktype3 = 11 +28908358 goalCount = 0 +28908359 goalTotal = 40 +28908359 otherCount = 51 +~~~ +28908361 CURRENTGOAL IS [8] +~~~ +28912740 UP 1 +28912740 1 255 +~~~ +~~~ +28913834 DOWN 1 +28913834 0 255 +~~~ +~~~ +28913860 0 254 +~~~ +~~~ +28913862 0 252 +~~~ +~~~ +28913864 0 248 +~~~ +~~~ +28913866 0 240 +~~~ +~~~ +28913867 0 224 +~~~ +~~~ +28913869 0 192 +~~~ +~~~ +28913871 0 128 +~~~ +~~~ +28913873 0 0 +~~~ +~~~ +28913875 0 512 +28913876 homeCount = 112 +28913876 waitCount = 48 +28913877 ripCount = 45 +28913877 locktype1 = 1 +28913878 locktype2 = 8 +28913899 locktype3 = 11 +28913899 goalCount = 0 +28913900 goalTotal = 40 +28913900 otherCount = 52 +~~~ +28917360 UP 10 +28917360 waslock = 0 +28917360 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28917386 512 16777728 +~~~ +28917536 512 512 +28923452 DOWN 10 +28923452 0 512 +28923462 UP 10 +28923462 waslock = 0 +28923462 512 512 +~~~ +~~~ +28923482 512 2560 +~~~ +~~~ +28923484 512 2048 +28923485 homeCount = 113 +28923486 waitCount = 48 +28923486 ripCount = 45 +28923487 locktype1 = 1 +28923487 locktype2 = 8 +28923488 locktype3 = 11 +28923488 goalCount = 0 +28923489 goalTotal = 40 +28923489 otherCount = 52 +~~~ +~~~ +28923558 DOWN 10 +28923558 0 2048 +~~~ +~~~ +~~~ +~~~ +28923583 homeCount = 113 +28923584 waitCount = 48 +28923584 ripCount = 45 +28923585 locktype1 = 1 +28923585 locktype2 = 8 +28923586 locktype3 = 11 +28923586 goalCount = 0 +28923587 goalTotal = 40 +28923587 otherCount = 52 +~~~ +28923618 UP 10 +28923619 waslock = 0 +28923618 512 2048 +~~~ +28923656 DOWN 10 +28923656 0 2048 +~~~ +~~~ +~~~ +~~~ +28923679 homeCount = 113 +28923680 waitCount = 48 +28923680 ripCount = 45 +28923681 locktype1 = 1 +28923681 locktype2 = 8 +28923682 locktype3 = 11 +28923682 goalCount = 0 +28923683 goalTotal = 40 +28923683 otherCount = 52 +~~~ +28925345 UP 12 +28925345 2048 2048 +28926820 DOWN 12 +28926820 0 2048 +28926832 UP 12 +28926832 2048 2048 +28927113 DOWN 12 +28927113 0 2048 +28927174 UP 12 +28927174 2048 2048 +28928345 CLICK1 +28928345 CLICK2 +~~~ +~~~ +~~~ +28928364 2048 67110912 +~~~ +28928481 DOWN 12 +28928481 0 67110912 +28928514 0 2048 +28928534 UP 12 +28928534 2048 2048 +28928545 DOWN 12 +28928545 0 2048 +~~~ +~~~ +28928551 0 0 +~~~ +~~~ +28928553 0 1 +~~~ +~~~ +28928555 0 3 +~~~ +~~~ +28928557 0 7 +~~~ +~~~ +28928558 0 15 +~~~ +~~~ +28928560 0 31 +~~~ +~~~ +28928562 0 63 +~~~ +~~~ +28928564 0 127 +~~~ +~~~ +28928566 0 255 +28928567 homeCount = 113 +28928567 waitCount = 49 +28928568 ripCount = 45 +28928568 locktype1 = 1 +28928569 locktype2 = 8 +28928590 locktype3 = 11 +28928590 goalCount = 0 +28928591 goalTotal = 40 +28928592 otherCount = 52 +~~~ +28928593 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28928600 homeCount = 113 +28928621 waitCount = 49 +28928621 ripCount = 45 +28928622 locktype1 = 1 +28928622 locktype2 = 8 +28928623 locktype3 = 11 +28928623 goalCount = 0 +28928624 goalTotal = 40 +28928624 otherCount = 52 +~~~ +28928625 CURRENTGOAL IS [8] +~~~ +28928626 UP 12 +28928626 2048 255 +28934970 DOWN 12 +28934970 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28935004 homeCount = 113 +28935004 waitCount = 49 +28935005 ripCount = 45 +28935006 locktype1 = 1 +28935006 locktype2 = 8 +28935007 locktype3 = 11 +28935007 goalCount = 0 +28935008 goalTotal = 40 +28935008 otherCount = 52 +~~~ +28935009 CURRENTGOAL IS [8] +~~~ +28935030 UP 12 +28935030 2048 255 +28935063 DOWN 12 +28935063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28935104 homeCount = 113 +28935104 waitCount = 49 +28935105 ripCount = 45 +28935105 locktype1 = 1 +28935106 locktype2 = 8 +28935107 locktype3 = 11 +28935107 goalCount = 0 +28935108 goalTotal = 40 +28935108 otherCount = 52 +~~~ +28935109 CURRENTGOAL IS [8] +~~~ +28939803 UP 4 +28939803 8 255 +~~~ +~~~ +28940719 DOWN 4 +28940719 0 255 +~~~ +~~~ +28940736 0 254 +~~~ +~~~ +28940738 0 252 +~~~ +~~~ +28940740 0 248 +~~~ +~~~ +28940741 0 240 +~~~ +~~~ +28940743 0 224 +~~~ +~~~ +28940745 0 192 +~~~ +~~~ +28940747 0 128 +~~~ +~~~ +28940749 0 0 +~~~ +~~~ +28940751 0 512 +28940752 homeCount = 113 +28940752 waitCount = 49 +28940753 ripCount = 45 +28940753 locktype1 = 1 +28940774 locktype2 = 8 +28940775 locktype3 = 11 +28940775 goalCount = 0 +28940776 goalTotal = 40 +28940776 otherCount = 53 +~~~ +28940844 8 512 +28941165 DOWN 4 +28941165 0 512 +28944970 UP 10 +28944970 waslock = 0 +28944970 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28944999 512 16777728 +~~~ +28945149 512 512 +28945191 DOWN 10 +28945191 0 512 +~~~ +~~~ +28945214 0 1536 +~~~ +~~~ +28945216 0 1024 +28945217 homeCount = 114 +28945217 waitCount = 49 +28945218 ripCount = 45 +28945218 locktype1 = 1 +28945219 locktype2 = 8 +28945219 locktype3 = 11 +28945220 goalCount = 0 +28945220 goalTotal = 40 +28945221 otherCount = 53 +~~~ +28945242 UP 10 +28945242 waslock = 0 +28945242 512 1024 +~~~ +28952252 DOWN 10 +28952252 0 1024 +~~~ +~~~ +~~~ +~~~ +28952276 homeCount = 114 +28952276 waitCount = 49 +28952277 ripCount = 45 +28952277 locktype1 = 1 +28952278 locktype2 = 8 +28952278 locktype3 = 11 +28952279 goalCount = 0 +28952279 goalTotal = 40 +28952280 otherCount = 53 +~~~ +28954847 UP 11 +28954847 1024 1024 +28958772 DOWN 11 +28958772 0 1024 +28958793 UP 11 +28958793 1024 1024 +28958938 DOWN 11 +28958938 0 1024 +28958951 UP 11 +28958951 1024 1024 +28962347 BEEP1 +28962347 BEEP2 +~~~ +~~~ +~~~ +28962376 1024 33555456 +~~~ +28962526 1024 1024 +28969334 DOWN 11 +28969334 0 1024 +~~~ +~~~ +28969353 0 0 +~~~ +~~~ +28969355 0 1 +~~~ +~~~ +28969357 0 3 +~~~ +~~~ +28969359 0 7 +~~~ +~~~ +28969361 0 15 +~~~ +~~~ +28969363 0 31 +~~~ +~~~ +28969364 0 63 +~~~ +~~~ +28969366 0 127 +~~~ +~~~ +28969368 0 255 +28969369 homeCount = 114 +28969370 waitCount = 49 +28969370 ripCount = 46 +28969371 locktype1 = 1 +28969371 locktype2 = 8 +28969392 locktype3 = 11 +28969393 goalCount = 0 +28969393 goalTotal = 40 +28969394 otherCount = 53 +~~~ +28969395 CURRENTGOAL IS [8] +~~~ +28969395 UP 11 +28969395 1024 255 +28969432 DOWN 11 +28969432 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28969472 homeCount = 114 +28969472 waitCount = 49 +28969473 ripCount = 46 +28969473 locktype1 = 1 +28969474 locktype2 = 8 +28969474 locktype3 = 11 +28969475 goalCount = 0 +28969475 goalTotal = 40 +28969476 otherCount = 53 +~~~ +28969477 CURRENTGOAL IS [8] +~~~ +28972662 UP 7 +28972662 64 255 +~~~ +~~~ +28973269 DOWN 7 +28973269 0 255 +~~~ +~~~ +28973295 0 254 +~~~ +~~~ +28973297 0 252 +~~~ +~~~ +28973299 0 248 +~~~ +~~~ +28973301 0 240 +~~~ +~~~ +28973303 0 224 +~~~ +~~~ +28973305 0 192 +~~~ +~~~ +28973306 0 128 +~~~ +~~~ +28973308 0 0 +~~~ +~~~ +28973310 0 512 +28973311 homeCount = 114 +28973312 waitCount = 49 +28973312 ripCount = 46 +28973313 locktype1 = 1 +28973313 locktype2 = 8 +28973334 locktype3 = 11 +28973335 goalCount = 0 +28973335 goalTotal = 40 +28973336 otherCount = 54 +~~~ +28977764 UP 10 +28977764 waslock = 0 +28977764 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28977794 512 16777728 +~~~ +28977944 512 512 +28978037 DOWN 10 +28978037 0 512 +~~~ +~~~ +28978059 0 2560 +~~~ +~~~ +28978060 0 2048 +28978061 homeCount = 115 +28978062 waitCount = 49 +28978063 ripCount = 46 +28978063 locktype1 = 1 +28978064 locktype2 = 8 +28978064 locktype3 = 11 +28978065 goalCount = 0 +28978065 goalTotal = 40 +28978066 otherCount = 54 +~~~ +28978087 UP 10 +28978087 waslock = 0 +28978087 512 2048 +~~~ +28978234 DOWN 10 +28978234 0 2048 +28978250 UP 10 +28978250 waslock = 0 +28978250 512 2048 +~~~ +~~~ +~~~ +~~~ +28978273 homeCount = 115 +28978273 waitCount = 49 +28978274 ripCount = 46 +28978275 locktype1 = 1 +28978275 locktype2 = 8 +28978276 locktype3 = 11 +28978276 goalCount = 0 +28978277 goalTotal = 40 +28978277 otherCount = 54 +~~~ +~~~ +28978477 DOWN 10 +28978477 0 2048 +~~~ +~~~ +~~~ +~~~ +28978501 homeCount = 115 +28978501 waitCount = 49 +28978502 ripCount = 46 +28978502 locktype1 = 1 +28978503 locktype2 = 8 +28978503 locktype3 = 11 +28978504 goalCount = 0 +28978504 goalTotal = 40 +28978505 otherCount = 54 +~~~ +28978551 UP 10 +28978551 waslock = 0 +28978551 512 2048 +28978570 DOWN 10 +28978570 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28978599 homeCount = 115 +28978600 waitCount = 49 +28978600 ripCount = 46 +28978601 locktype1 = 1 +28978601 locktype2 = 8 +28978602 locktype3 = 11 +28978602 goalCount = 0 +28978603 goalTotal = 40 +28978603 otherCount = 54 +~~~ +28978681 UP 10 +28978681 waslock = 0 +28978681 512 2048 +~~~ +28985257 DOWN 10 +28985257 0 2048 +~~~ +~~~ +~~~ +~~~ +28985282 homeCount = 115 +28985282 waitCount = 49 +28985283 ripCount = 46 +28985283 locktype1 = 1 +28985284 locktype2 = 8 +28985284 locktype3 = 11 +28985285 goalCount = 0 +28985286 goalTotal = 40 +28985286 otherCount = 54 +~~~ +28995900 UP 12 +28995900 2048 2048 +28997144 DOWN 12 +28997144 0 2048 +28997344 LOCKOUT 3 +28997347 UP 12 +28997347 2048 2048 +~~~ +28997369 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28997375 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28997612 DOWN 12 +28997612 0 0 +28997634 UP 12 +28997634 2048 0 +29001991 DOWN 12 +29001991 0 0 +29002007 UP 12 +29002007 2048 0 +29002019 DOWN 12 +29002018 0 0 +29002056 UP 12 +29002056 2048 0 +29002152 DOWN 12 +29002152 0 0 +29002178 UP 12 +29002178 2048 0 +29002188 DOWN 12 +29002188 0 0 +29002210 UP 12 +29002210 2048 0 +29007757 DOWN 12 +29007757 0 0 +29007782 UP 12 +29007782 2048 0 +29007799 DOWN 12 +29007799 0 0 +29007825 UP 12 +29007825 2048 0 +29009658 DOWN 12 +29009658 0 0 +29009698 UP 12 +29009698 2048 0 +29009727 DOWN 12 +29009727 0 0 +29009797 UP 12 +29009797 2048 0 +29009830 DOWN 12 +29009830 0 0 +29011177 UP 12 +29011177 2048 0 +29011199 DOWN 12 +29011199 0 0 +29011358 UP 12 +29011358 2048 0 +29012274 DOWN 12 +29012274 0 0 +29022369 LOCKEND +~~~ +~~~ +~~~ +29022391 0 512 +29026767 UP 10 +29026767 waslock = 0 +29026767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29026795 512 16777728 +~~~ +29026842 DOWN 10 +29026842 0 16777728 +~~~ +~~~ +29026871 0 16779776 +~~~ +~~~ +29026873 0 16779264 +29026874 homeCount = 116 +29026874 waitCount = 49 +29026875 ripCount = 46 +29026875 locktype1 = 1 +29026876 locktype2 = 8 +29026876 locktype3 = 12 +29026877 goalCount = 0 +29026877 goalTotal = 40 +29026878 otherCount = 54 +~~~ +29026908 UP 10 +29026908 waslock = 0 +29026908 512 16779264 +~~~ +29026944 512 2048 +29026962 DOWN 10 +29026962 0 2048 +~~~ +~~~ +~~~ +~~~ +29026992 homeCount = 116 +29026992 waitCount = 49 +29026993 ripCount = 46 +29026994 locktype1 = 1 +29026994 locktype2 = 8 +29026995 locktype3 = 12 +29026995 goalCount = 0 +29026996 goalTotal = 40 +29026996 otherCount = 54 +~~~ +29026998 UP 10 +29026998 waslock = 0 +29026998 512 2048 +29027028 DOWN 10 +29027028 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29027062 homeCount = 116 +29027062 waitCount = 49 +29027063 ripCount = 46 +29027063 locktype1 = 1 +29027064 locktype2 = 8 +29027064 locktype3 = 12 +29027065 goalCount = 0 +29027065 goalTotal = 40 +29027066 otherCount = 54 +~~~ +29027296 UP 10 +29027296 waslock = 0 +29027296 512 2048 +~~~ +29027830 DOWN 10 +29027830 0 2048 +~~~ +~~~ +~~~ +~~~ +29027855 homeCount = 116 +29027856 waitCount = 49 +29027857 ripCount = 46 +29027857 locktype1 = 1 +29027858 locktype2 = 8 +29027858 locktype3 = 12 +29027859 goalCount = 0 +29027859 goalTotal = 40 +29027860 otherCount = 54 +~~~ +29027895 UP 10 +29027895 waslock = 0 +29027895 512 2048 +~~~ +29027938 DOWN 10 +29027938 0 2048 +~~~ +~~~ +~~~ +~~~ +29027966 homeCount = 116 +29027966 waitCount = 49 +29027967 ripCount = 46 +29027967 locktype1 = 1 +29027968 locktype2 = 8 +29027968 locktype3 = 12 +29027969 goalCount = 0 +29027969 goalTotal = 40 +29027970 otherCount = 54 +~~~ +29028014 UP 10 +29028015 waslock = 0 +29028014 512 2048 +~~~ +29029618 DOWN 10 +29029618 0 2048 +~~~ +~~~ +~~~ +29029641 UP 10 +29029641 waslock = 0 +29029640 512 2048 +~~~ +29029643 homeCount = 116 +29029643 waitCount = 49 +29029644 ripCount = 46 +29029644 locktype1 = 1 +29029645 locktype2 = 8 +29029645 locktype3 = 12 +29029646 goalCount = 0 +29029646 goalTotal = 40 +29029667 otherCount = 54 +~~~ +29029668 DOWN 10 +29029668 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29029695 homeCount = 116 +29029696 waitCount = 49 +29029697 ripCount = 46 +29029697 locktype1 = 1 +29029698 locktype2 = 8 +29029698 locktype3 = 12 +29029699 goalCount = 0 +29029699 goalTotal = 40 +29029700 otherCount = 54 +~~~ +29030443 UP 10 +29030443 waslock = 0 +29030443 512 2048 +~~~ +29033311 DOWN 10 +29033311 0 2048 +~~~ +~~~ +~~~ +~~~ +29033333 homeCount = 116 +29033333 waitCount = 49 +29033334 ripCount = 46 +29033334 locktype1 = 1 +29033335 locktype2 = 8 +29033335 locktype3 = 12 +29033336 goalCount = 0 +29033336 goalTotal = 40 +29033337 otherCount = 54 +~~~ +29035977 UP 12 +29035977 2048 2048 +29037448 DOWN 12 +29037448 0 2048 +29037516 UP 12 +29037516 2048 2048 +29038598 DOWN 12 +29038598 0 2048 +29038676 UP 12 +29038676 2048 2048 +29038784 DOWN 12 +29038784 0 2048 +29038806 UP 12 +29038806 2048 2048 +29040477 CLICK1 +29040477 CLICK2 +~~~ +~~~ +~~~ +29040503 2048 67110912 +~~~ +29040653 2048 2048 +29046553 DOWN 12 +29046553 0 2048 +~~~ +~~~ +29046571 0 0 +~~~ +~~~ +29046573 0 1 +~~~ +~~~ +29046575 0 3 +~~~ +~~~ +29046577 0 7 +~~~ +29046578 UP 12 +29046578 2048 7 +~~~ +~~~ +29046580 2048 15 +~~~ +~~~ +29046581 2048 31 +~~~ +~~~ +29046583 2048 63 +~~~ +29046584 2048 127 +~~~ +~~~ +29046586 2048 255 +29046587 homeCount = 116 +29046608 waitCount = 50 +29046608 ripCount = 46 +29046609 locktype1 = 1 +29046609 locktype2 = 8 +29046610 locktype3 = 12 +29046610 goalCount = 0 +29046611 goalTotal = 40 +29046611 otherCount = 54 +~~~ +29046612 CURRENTGOAL IS [8] +~~~ +29046660 DOWN 12 +29046660 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29046699 homeCount = 116 +29046699 waitCount = 50 +29046700 ripCount = 46 +29046700 locktype1 = 1 +29046701 locktype2 = 8 +29046701 locktype3 = 12 +29046702 goalCount = 0 +29046702 goalTotal = 40 +29046703 otherCount = 54 +~~~ +29046704 CURRENTGOAL IS [8] +~~~ +29046725 UP 12 +29046725 2048 255 +29046750 DOWN 12 +29046750 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29046789 homeCount = 116 +29046790 waitCount = 50 +29046790 ripCount = 46 +29046791 locktype1 = 1 +29046792 locktype2 = 8 +29046792 locktype3 = 12 +29046793 goalCount = 0 +29046793 goalTotal = 40 +29046794 otherCount = 54 +~~~ +29046795 CURRENTGOAL IS [8] +~~~ +29046840 UP 12 +29046840 2048 255 +29047066 DOWN 12 +29047066 0 255 +29047070 UP 12 +29047070 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29047101 homeCount = 116 +29047102 waitCount = 50 +29047102 ripCount = 46 +29047103 locktype1 = 1 +29047103 locktype2 = 8 +29047104 locktype3 = 12 +29047104 goalCount = 0 +29047105 goalTotal = 40 +29047105 otherCount = 54 +~~~ +29047106 CURRENTGOAL IS [8] +~~~ +29048094 DOWN 12 +29048094 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29048130 homeCount = 116 +29048131 waitCount = 50 +29048131 ripCount = 46 +29048132 locktype1 = 1 +29048132 locktype2 = 8 +29048133 locktype3 = 12 +29048133 goalCount = 0 +29048134 goalTotal = 40 +29048134 otherCount = 54 +~~~ +29048135 CURRENTGOAL IS [8] +~~~ +29056595 UP 6 +29056595 32 255 +~~~ +~~~ +29057269 DOWN 6 +29057269 0 255 +~~~ +~~~ +29057285 0 254 +~~~ +~~~ +29057287 0 252 +~~~ +~~~ +29057289 0 248 +~~~ +~~~ +29057291 0 240 +~~~ +~~~ +29057292 0 224 +~~~ +~~~ +29057294 0 192 +~~~ +~~~ +29057296 0 128 +~~~ +29057297 32 128 +~~~ +~~~ +29057299 32 0 +~~~ +29057300 32 512 +29057301 homeCount = 116 +29057302 waitCount = 50 +29057302 ripCount = 46 +29057323 locktype1 = 1 +29057324 locktype2 = 8 +29057324 locktype3 = 12 +29057325 goalCount = 0 +29057325 goalTotal = 40 +29057326 otherCount = 55 +~~~ +29057340 DOWN 6 +29057340 0 512 +29061896 UP 10 +29061896 waslock = 0 +29061896 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29061923 512 16777728 +~~~ +29062073 512 512 +29062111 DOWN 10 +29062111 0 512 +~~~ +~~~ +29062139 0 1536 +~~~ +~~~ +29062141 0 1024 +29062142 homeCount = 117 +29062142 waitCount = 50 +29062143 ripCount = 46 +29062143 locktype1 = 1 +29062144 locktype2 = 8 +29062144 locktype3 = 12 +29062145 goalCount = 0 +29062145 goalTotal = 40 +29062146 otherCount = 55 +~~~ +29062222 UP 10 +29062222 waslock = 0 +29062222 512 1024 +~~~ +29066190 DOWN 10 +29066190 0 1024 +~~~ +~~~ +~~~ +~~~ +29066222 homeCount = 117 +29066223 waitCount = 50 +29066223 ripCount = 46 +29066224 locktype1 = 1 +29066224 locktype2 = 8 +29066225 locktype3 = 12 +29066225 goalCount = 0 +29066226 goalTotal = 40 +29066226 otherCount = 55 +~~~ +29068842 UP 11 +29068841 1024 1024 +29077842 BEEP1 +29077842 BEEP2 +~~~ +~~~ +~~~ +29077868 1024 33555456 +~~~ +29078018 1024 1024 +29086532 DOWN 11 +29086532 0 1024 +~~~ +~~~ +29086560 0 0 +~~~ +~~~ +29086561 0 1 +~~~ +~~~ +29086563 0 3 +~~~ +~~~ +29086565 0 7 +~~~ +~~~ +29086567 0 15 +~~~ +~~~ +29086569 0 31 +~~~ +~~~ +29086571 0 63 +~~~ +~~~ +29086572 0 127 +~~~ +~~~ +29086574 0 255 +29086575 homeCount = 117 +29086576 waitCount = 50 +29086576 ripCount = 47 +29086577 locktype1 = 1 +29086577 locktype2 = 8 +29086598 locktype3 = 12 +29086599 goalCount = 0 +29086599 goalTotal = 40 +29086600 otherCount = 55 +~~~ +29086601 CURRENTGOAL IS [8] +~~~ +29086601 UP 11 +29086601 1024 255 +29086651 DOWN 11 +29086651 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29086685 homeCount = 117 +29086685 waitCount = 50 +29086686 ripCount = 47 +29086686 locktype1 = 1 +29086687 locktype2 = 8 +29086687 locktype3 = 12 +29086688 goalCount = 0 +29086688 goalTotal = 40 +29086689 otherCount = 55 +~~~ +29086690 CURRENTGOAL IS [8] +~~~ +29093885 UP 3 +29093885 4 255 +~~~ +~~~ +29094389 DOWN 3 +29094389 0 255 +~~~ +~~~ +29094407 0 254 +~~~ +~~~ +29094409 0 252 +~~~ +~~~ +29094411 0 248 +~~~ +~~~ +29094413 0 240 +~~~ +~~~ +29094414 0 224 +~~~ +~~~ +29094416 0 192 +~~~ +~~~ +29094418 0 128 +~~~ +~~~ +29094420 0 0 +~~~ +~~~ +29094422 0 512 +29094423 homeCount = 117 +29094423 waitCount = 50 +29094424 ripCount = 47 +29094424 locktype1 = 1 +29094445 locktype2 = 8 +29094445 locktype3 = 12 +29094446 goalCount = 0 +29094446 goalTotal = 40 +29094447 otherCount = 56 +~~~ +29094505 4 512 +29094791 DOWN 3 +29094791 0 512 +29098404 UP 10 +29098405 waslock = 0 +29098404 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29098437 512 16777728 +~~~ +29098451 DOWN 10 +29098451 0 16777728 +~~~ +~~~ +29098472 0 16778752 +~~~ +~~~ +29098474 0 16778240 +29098475 homeCount = 118 +29098476 waitCount = 50 +29098476 ripCount = 47 +29098477 locktype1 = 1 +29098477 locktype2 = 8 +29098478 locktype3 = 12 +29098478 goalCount = 0 +29098479 goalTotal = 40 +29098479 otherCount = 56 +~~~ +29098509 UP 10 +29098510 waslock = 0 +29098509 512 16778240 +~~~ +29098587 512 1024 +29098590 DOWN 10 +29098590 0 1024 +~~~ +~~~ +~~~ +~~~ +29098618 homeCount = 118 +29098618 waitCount = 50 +29098619 ripCount = 47 +29098619 locktype1 = 1 +29098620 locktype2 = 8 +29098620 locktype3 = 12 +29098621 goalCount = 0 +29098621 goalTotal = 40 +29098622 otherCount = 56 +~~~ +29098713 UP 10 +29098713 waslock = 0 +29098713 512 1024 +~~~ +29101907 DOWN 10 +29101907 0 1024 +~~~ +~~~ +~~~ +~~~ +29101936 homeCount = 118 +29101937 waitCount = 50 +29101937 ripCount = 47 +29101938 locktype1 = 1 +29101938 locktype2 = 8 +29101939 locktype3 = 12 +29101939 goalCount = 0 +29101940 goalTotal = 40 +29101940 otherCount = 56 +~~~ +29101953 UP 10 +29101953 waslock = 0 +29101953 512 1024 +~~~ +29101998 DOWN 10 +29101998 0 1024 +~~~ +~~~ +~~~ +~~~ +29102018 homeCount = 118 +29102018 waitCount = 50 +29102019 ripCount = 47 +29102019 locktype1 = 1 +29102020 locktype2 = 8 +29102020 locktype3 = 12 +29102021 goalCount = 0 +29102021 goalTotal = 40 +29102022 otherCount = 56 +~~~ +29103694 UP 11 +29103694 1024 1024 +29112694 BEEP1 +29112694 BEEP2 +~~~ +~~~ +~~~ +29112721 1024 33555456 +~~~ +29112871 1024 1024 +29119544 DOWN 11 +29119544 0 1024 +~~~ +~~~ +29119570 0 0 +~~~ +~~~ +29119572 0 1 +~~~ +~~~ +29119574 0 3 +~~~ +~~~ +29119575 0 7 +~~~ +~~~ +29119577 0 15 +~~~ +~~~ +29119579 0 31 +~~~ +~~~ +29119581 0 63 +~~~ +~~~ +29119583 0 127 +~~~ +~~~ +29119585 0 255 +29119586 homeCount = 118 +29119586 waitCount = 50 +29119587 ripCount = 48 +29119587 locktype1 = 1 +29119588 locktype2 = 8 +29119609 locktype3 = 12 +29119609 goalCount = 0 +29119610 goalTotal = 40 +29119610 otherCount = 56 +~~~ +29119611 CURRENTGOAL IS [8] +~~~ +29119612 UP 11 +29119612 1024 255 +29119616 DOWN 11 +29119616 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29119668 homeCount = 118 +29119669 waitCount = 50 +29119669 ripCount = 48 +29119670 locktype1 = 1 +29119670 locktype2 = 8 +29119671 locktype3 = 12 +29119671 goalCount = 0 +29119672 goalTotal = 40 +29119672 otherCount = 56 +~~~ +29119673 CURRENTGOAL IS [8] +~~~ +29122599 UP 8 +29122599 128 255 +~~~ +~~~ +29122624 outer reward +~~~ +29122624 128 8388863 +~~~ +~~~ +29123074 128 255 +29130013 DOWN 8 +29130013 0 255 +~~~ +~~~ +29130032 0 254 +~~~ +~~~ +29130034 0 252 +~~~ +~~~ +29130036 0 248 +~~~ +~~~ +29130037 0 240 +~~~ +~~~ +29130039 0 224 +~~~ +~~~ +29130041 0 192 +~~~ +~~~ +29130043 0 128 +~~~ +~~~ +29130045 0 0 +~~~ +~~~ +29130047 0 512 +29130048 homeCount = 118 +29130048 waitCount = 50 +29130049 ripCount = 48 +29130049 locktype1 = 1 +29130050 locktype2 = 8 +29130071 locktype3 = 12 +29130071 goalCount = 1 +29130072 goalTotal = 41 +29130072 otherCount = 56 +~~~ +29130073 128 512 +29130117 DOWN 8 +29130117 0 512 +29135768 UP 10 +29135768 waslock = 0 +29135767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29135792 512 16777728 +~~~ +29135942 512 512 +29136087 DOWN 10 +29136087 0 512 +~~~ +~~~ +29136106 0 2560 +~~~ +~~~ +29136108 0 2048 +29136109 homeCount = 119 +29136109 waitCount = 50 +29136110 ripCount = 48 +29136110 locktype1 = 1 +29136111 locktype2 = 8 +29136111 locktype3 = 12 +29136112 goalCount = 1 +29136112 goalTotal = 41 +29136113 otherCount = 56 +~~~ +29136174 UP 10 +29136174 waslock = 0 +29136174 512 2048 +~~~ +29140118 DOWN 10 +29140118 0 2048 +~~~ +~~~ +~~~ +~~~ +29140138 homeCount = 119 +29140138 waitCount = 50 +29140139 ripCount = 48 +29140139 locktype1 = 1 +29140140 locktype2 = 8 +29140140 locktype3 = 12 +29140141 goalCount = 1 +29140141 goalTotal = 41 +29140142 otherCount = 56 +~~~ +29140155 UP 10 +29140156 waslock = 0 +29140155 512 2048 +~~~ +29140225 DOWN 10 +29140225 0 2048 +~~~ +~~~ +~~~ +~~~ +29140256 homeCount = 119 +29140257 waitCount = 50 +29140257 ripCount = 48 +29140258 locktype1 = 1 +29140258 locktype2 = 8 +29140259 locktype3 = 12 +29140259 goalCount = 1 +29140260 goalTotal = 41 +29140260 otherCount = 56 +~~~ +29140302 UP 10 +29140302 waslock = 0 +29140302 512 2048 +29140330 DOWN 10 +29140330 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29140355 homeCount = 119 +29140356 waitCount = 50 +29140356 ripCount = 48 +29140357 locktype1 = 1 +29140357 locktype2 = 8 +29140358 locktype3 = 12 +29140358 goalCount = 1 +29140359 goalTotal = 41 +29140359 otherCount = 56 +~~~ +29142523 UP 12 +29142523 2048 2048 +29145524 CLICK1 +29145524 CLICK2 +~~~ +~~~ +~~~ +29145549 2048 67110912 +~~~ +29145699 2048 2048 +29145721 DOWN 12 +29145721 0 2048 +29145728 UP 12 +29145728 2048 2048 +~~~ +~~~ +29145738 2048 0 +~~~ +~~~ +29145740 2048 1 +~~~ +~~~ +29145742 2048 3 +~~~ +~~~ +29145743 2048 7 +~~~ +~~~ +29145745 2048 15 +~~~ +~~~ +29145747 2048 31 +~~~ +~~~ +29145749 2048 63 +~~~ +~~~ +29145751 2048 127 +~~~ +~~~ +29145753 2048 255 +29145754 homeCount = 119 +29145754 waitCount = 51 +29145755 ripCount = 48 +29145775 locktype1 = 1 +29145776 locktype2 = 8 +29145776 locktype3 = 12 +29145777 goalCount = 1 +29145777 goalTotal = 41 +29145778 otherCount = 56 +~~~ +29145779 CURRENTGOAL IS [8] +~~~ +29145803 DOWN 12 +29145803 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29145844 homeCount = 119 +29145845 waitCount = 51 +29145846 ripCount = 48 +29145846 locktype1 = 1 +29145847 locktype2 = 8 +29145847 locktype3 = 12 +29145848 goalCount = 1 +29145848 goalTotal = 41 +29145849 otherCount = 56 +~~~ +29145850 CURRENTGOAL IS [8] +~~~ +29145897 UP 12 +29145897 2048 255 +29151732 DOWN 12 +29151732 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29151764 homeCount = 119 +29151765 waitCount = 51 +29151765 ripCount = 48 +29151766 locktype1 = 1 +29151766 locktype2 = 8 +29151767 locktype3 = 12 +29151767 goalCount = 1 +29151768 goalTotal = 41 +29151768 otherCount = 56 +~~~ +29151769 CURRENTGOAL IS [8] +~~~ +29151798 UP 12 +29151798 2048 255 +29151813 DOWN 12 +29151813 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29151848 homeCount = 119 +29151849 waitCount = 51 +29151849 ripCount = 48 +29151850 locktype1 = 1 +29151850 locktype2 = 8 +29151851 locktype3 = 12 +29151851 goalCount = 1 +29151852 goalTotal = 41 +29151852 otherCount = 56 +~~~ +29151854 CURRENTGOAL IS [8] +~~~ +29157194 UP 1 +29157194 1 255 +~~~ +~~~ +29157720 DOWN 1 +29157720 0 255 +~~~ +~~~ +29157744 0 254 +~~~ +~~~ +29157745 0 252 +~~~ +~~~ +29157747 0 248 +~~~ +~~~ +29157749 0 240 +~~~ +~~~ +29157751 0 224 +~~~ +~~~ +29157753 0 192 +~~~ +~~~ +29157755 0 128 +~~~ +~~~ +29157756 0 0 +~~~ +~~~ +29157758 0 512 +29157759 homeCount = 119 +29157760 waitCount = 51 +29157760 ripCount = 48 +29157761 locktype1 = 1 +29157781 locktype2 = 8 +29157782 locktype3 = 12 +29157782 goalCount = 1 +29157783 goalTotal = 41 +29157784 otherCount = 57 +~~~ +29161043 UP 10 +29161044 waslock = 0 +29161043 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29161070 512 16777728 +~~~ +29161220 512 512 +29167184 DOWN 10 +29167184 0 512 +~~~ +~~~ +29167204 0 2560 +~~~ +~~~ +29167206 0 2048 +29167207 homeCount = 120 +29167208 waitCount = 51 +29167208 ripCount = 48 +29167209 locktype1 = 1 +29167209 locktype2 = 8 +29167210 locktype3 = 12 +29167210 goalCount = 1 +29167211 goalTotal = 41 +29167211 otherCount = 57 +~~~ +29167233 UP 10 +29167233 waslock = 0 +29167233 512 2048 +~~~ +29167284 DOWN 10 +29167283 0 2048 +~~~ +~~~ +~~~ +~~~ +29167308 homeCount = 120 +29167309 waitCount = 51 +29167309 ripCount = 48 +29167310 locktype1 = 1 +29167310 locktype2 = 8 +29167311 locktype3 = 12 +29167311 goalCount = 1 +29167312 goalTotal = 41 +29167312 otherCount = 57 +~~~ +29169240 UP 12 +29169240 2048 2048 +29173241 CLICK1 +29173241 CLICK2 +~~~ +~~~ +~~~ +29173267 2048 67110912 +~~~ +29173417 2048 2048 +29180620 DOWN 12 +29180620 0 2048 +~~~ +~~~ +29180645 0 0 +~~~ +~~~ +29180647 0 1 +~~~ +~~~ +29180649 0 3 +~~~ +~~~ +29180650 0 7 +~~~ +~~~ +29180652 0 15 +~~~ +~~~ +29180654 0 31 +~~~ +~~~ +29180656 0 63 +~~~ +~~~ +29180658 0 127 +~~~ +~~~ +29180660 0 255 +29180661 homeCount = 120 +29180661 waitCount = 52 +29180662 ripCount = 48 +29180662 locktype1 = 1 +29180663 locktype2 = 8 +29180684 locktype3 = 12 +29180684 goalCount = 1 +29180685 goalTotal = 41 +29180685 otherCount = 57 +~~~ +29180686 CURRENTGOAL IS [8] +~~~ +29180699 UP 12 +29180699 2048 255 +29180715 DOWN 12 +29180715 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29180750 homeCount = 120 +29180750 waitCount = 52 +29180751 ripCount = 48 +29180751 locktype1 = 1 +29180752 locktype2 = 8 +29180752 locktype3 = 12 +29180753 goalCount = 1 +29180753 goalTotal = 41 +29180754 otherCount = 57 +~~~ +29180755 CURRENTGOAL IS [8] +~~~ +29185318 UP 1 +29185318 1 255 +~~~ +~~~ +29185916 DOWN 1 +29185916 0 255 +~~~ +~~~ +29185935 0 254 +~~~ +~~~ +29185937 0 252 +~~~ +~~~ +29185939 0 248 +~~~ +~~~ +29185941 0 240 +~~~ +~~~ +29185943 0 224 +~~~ +~~~ +29185944 0 192 +~~~ +~~~ +29185946 0 128 +~~~ +~~~ +29185948 0 0 +~~~ +~~~ +29185950 0 512 +29185951 homeCount = 120 +29185952 waitCount = 52 +29185952 ripCount = 48 +29185953 locktype1 = 1 +29185953 locktype2 = 8 +29185974 locktype3 = 12 +29185975 goalCount = 1 +29185975 goalTotal = 41 +29185976 otherCount = 58 +~~~ +29186163 1 512 +29186492 DOWN 1 +29186492 0 512 +29186605 1 512 +29187016 DOWN 1 +29187016 0 512 +29187039 1 512 +29187068 DOWN 1 +29187068 0 512 +29191463 UP 10 +29191463 waslock = 0 +29191463 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29191495 512 16777728 +~~~ +29191624 DOWN 10 +29191624 0 16777728 +29191645 0 512 +~~~ +~~~ +29191649 0 1536 +~~~ +~~~ +29191651 0 1024 +29191652 homeCount = 121 +29191652 waitCount = 52 +29191653 ripCount = 48 +29191653 locktype1 = 1 +29191654 locktype2 = 8 +29191654 locktype3 = 12 +29191655 goalCount = 1 +29191655 goalTotal = 41 +29191656 otherCount = 58 +~~~ +29191677 UP 10 +29191677 waslock = 0 +29191677 512 1024 +~~~ +29191706 DOWN 10 +29191706 0 1024 +~~~ +~~~ +~~~ +~~~ +29191722 homeCount = 121 +29191722 waitCount = 52 +29191723 ripCount = 48 +29191723 locktype1 = 1 +29191724 locktype2 = 8 +29191724 locktype3 = 12 +29191725 goalCount = 1 +29191725 goalTotal = 41 +29191726 otherCount = 58 +~~~ +29192235 UP 10 +29192235 waslock = 0 +29192235 512 1024 +~~~ +29198177 DOWN 10 +29198177 0 1024 +~~~ +~~~ +~~~ +~~~ +29198200 homeCount = 121 +29198201 waitCount = 52 +29198201 ripCount = 48 +29198202 locktype1 = 1 +29198202 locktype2 = 8 +29198203 locktype3 = 12 +29198203 goalCount = 1 +29198204 goalTotal = 41 +29198204 otherCount = 58 +~~~ +29198220 UP 10 +29198221 waslock = 0 +29198220 512 1024 +29198243 DOWN 10 +29198243 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +29198272 homeCount = 121 +29198272 waitCount = 52 +29198273 ripCount = 48 +29198273 locktype1 = 1 +29198274 locktype2 = 8 +29198274 locktype3 = 12 +29198275 goalCount = 1 +29198275 goalTotal = 41 +29198276 otherCount = 58 +~~~ +29199804 UP 11 +29199804 1024 1024 +29203422 DOWN 11 +29203422 0 1024 +29203433 UP 11 +29203433 1024 1024 +29203804 BEEP1 +29203804 BEEP2 +~~~ +~~~ +~~~ +29203828 1024 33555456 +~~~ +29203978 1024 1024 +29204975 DOWN 11 +29204975 0 1024 +~~~ +~~~ +29205002 0 0 +~~~ +~~~ +29205003 0 1 +~~~ +~~~ +29205005 0 3 +~~~ +~~~ +29205007 0 7 +~~~ +~~~ +29205009 0 15 +~~~ +~~~ +29205011 0 31 +~~~ +~~~ +29205012 0 63 +~~~ +~~~ +29205014 0 127 +~~~ +29205016 UP 11 +29205016 1024 127 +~~~ +29205017 homeCount = 121 +29205018 waitCount = 52 +29205018 ripCount = 49 +29205019 locktype1 = 1 +29205040 locktype2 = 8 +29205041 locktype3 = 12 +29205041 goalCount = 1 +29205042 goalTotal = 41 +29205042 otherCount = 58 +~~~ +29205043 CURRENTGOAL IS [8] +~~~ +29205044 1024 255 +29205098 DOWN 11 +29205098 0 255 +29205104 UP 11 +29205104 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205137 homeCount = 121 +29205138 waitCount = 52 +29205138 ripCount = 49 +29205139 locktype1 = 1 +29205139 locktype2 = 8 +29205140 locktype3 = 12 +29205141 goalCount = 1 +29205141 goalTotal = 41 +29205142 otherCount = 58 +~~~ +29205143 CURRENTGOAL IS [8] +~~~ +29205893 DOWN 11 +29205893 0 255 +29205909 UP 11 +29205909 1024 255 +~~~ +~~~ +~~~ +~~~ +29205929 DOWN 11 +29205929 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205942 homeCount = 121 +29205943 waitCount = 52 +29205943 ripCount = 49 +29205944 locktype1 = 1 +29205944 locktype2 = 8 +29205945 locktype3 = 12 +29205945 goalCount = 1 +29205946 goalTotal = 41 +29205946 otherCount = 58 +~~~ +29205948 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205975 homeCount = 121 +29205976 waitCount = 52 +29205976 ripCount = 49 +29205977 locktype1 = 1 +29205977 locktype2 = 8 +29205978 locktype3 = 12 +29205978 goalCount = 1 +29206000 goalTotal = 41 +29206000 otherCount = 58 +~~~ +29206001 CURRENTGOAL IS [8] +~~~ +29206071 UP 11 +29206071 1024 255 +29206350 DOWN 11 +29206350 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29206391 homeCount = 121 +29206392 waitCount = 52 +29206392 ripCount = 49 +29206393 locktype1 = 1 +29206393 locktype2 = 8 +29206394 locktype3 = 12 +29206395 goalCount = 1 +29206395 goalTotal = 41 +29206396 otherCount = 58 +~~~ +29206397 CURRENTGOAL IS [8] +~~~ +29207308 UP 11 +29207308 1024 255 +29207410 DOWN 11 +29207410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29207449 UP 11 +29207449 1024 255 +~~~ +~~~ +~~~ +~~~ +29207454 homeCount = 121 +29207454 waitCount = 52 +29207455 ripCount = 49 +29207455 locktype1 = 1 +29207456 locktype2 = 8 +29207456 locktype3 = 12 +29207457 goalCount = 1 +29207457 goalTotal = 41 +29207458 otherCount = 58 +~~~ +29207459 CURRENTGOAL IS [8] +~~~ +29208017 DOWN 11 +29208017 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208055 homeCount = 121 +29208055 waitCount = 52 +29208056 ripCount = 49 +29208056 locktype1 = 1 +29208057 locktype2 = 8 +29208057 locktype3 = 12 +29208058 goalCount = 1 +29208058 goalTotal = 41 +29208059 otherCount = 58 +~~~ +29208060 CURRENTGOAL IS [8] +~~~ +29208103 UP 11 +29208103 1024 255 +29208328 DOWN 11 +29208328 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208368 homeCount = 121 +29208368 waitCount = 52 +29208369 ripCount = 49 +29208369 locktype1 = 1 +29208370 locktype2 = 8 +29208370 locktype3 = 12 +29208371 goalCount = 1 +29208371 goalTotal = 41 +29208372 otherCount = 58 +~~~ +29208373 CURRENTGOAL IS [8] +~~~ +29208456 UP 11 +29208456 1024 255 +29208683 DOWN 11 +29208683 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208712 UP 11 +29208712 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +29208717 homeCount = 121 +29208718 waitCount = 52 +29208718 ripCount = 49 +29208719 locktype1 = 1 +29208719 locktype2 = 8 +29208720 locktype3 = 12 +29208720 goalCount = 1 +29208721 goalTotal = 41 +29208721 otherCount = 58 +~~~ +29208722 CURRENTGOAL IS [8] +~~~ +29214121 DOWN 11 +29214121 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214151 UP 11 +29214151 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214158 homeCount = 121 +29214158 waitCount = 52 +29214159 ripCount = 49 +29214159 locktype1 = 1 +29214160 locktype2 = 8 +29214160 locktype3 = 12 +29214161 goalCount = 1 +29214162 goalTotal = 41 +29214162 otherCount = 58 +~~~ +29214163 CURRENTGOAL IS [8] +~~~ +29214210 DOWN 11 +29214210 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214248 homeCount = 121 +29214248 waitCount = 52 +29214249 ripCount = 49 +29214249 locktype1 = 1 +29214250 locktype2 = 8 +29214250 locktype3 = 12 +29214251 goalCount = 1 +29214251 goalTotal = 41 +29214252 otherCount = 58 +~~~ +29214253 CURRENTGOAL IS [8] +~~~ +29218329 UP 7 +29218329 64 255 +~~~ +~~~ +29218784 DOWN 7 +29218784 0 255 +~~~ +~~~ +29218803 0 254 +~~~ +~~~ +29218805 0 252 +~~~ +~~~ +29218807 0 248 +~~~ +~~~ +29218809 0 240 +~~~ +~~~ +29218811 0 224 +~~~ +29218812 64 224 +~~~ +~~~ +29218814 64 192 +~~~ +29218815 64 128 +~~~ +~~~ +29218816 64 0 +~~~ +~~~ +29218818 64 512 +29218819 homeCount = 121 +29218819 waitCount = 52 +29218841 ripCount = 49 +29218841 locktype1 = 1 +29218842 locktype2 = 8 +29218842 locktype3 = 12 +29218843 goalCount = 1 +29218843 goalTotal = 41 +29218844 otherCount = 59 +~~~ +29219408 DOWN 7 +29219408 0 512 +29224639 UP 10 +29224640 waslock = 0 +29224639 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29224670 512 16777728 +~~~ +29224820 512 512 +29224880 DOWN 10 +29224880 0 512 +~~~ +~~~ +29224910 0 2560 +~~~ +~~~ +29224912 0 2048 +29224913 homeCount = 122 +29224913 waitCount = 52 +29224914 ripCount = 49 +29224914 locktype1 = 1 +29224915 locktype2 = 8 +29224915 locktype3 = 12 +29224916 goalCount = 1 +29224916 goalTotal = 41 +29224917 otherCount = 59 +~~~ +29224952 UP 10 +29224952 waslock = 0 +29224952 512 2048 +~~~ +29229705 DOWN 10 +29229705 0 2048 +~~~ +~~~ +~~~ +~~~ +29229726 homeCount = 122 +29229727 waitCount = 52 +29229727 ripCount = 49 +29229728 locktype1 = 1 +29229728 locktype2 = 8 +29229729 locktype3 = 12 +29229729 goalCount = 1 +29229730 goalTotal = 41 +29229730 otherCount = 59 +~~~ +29229738 UP 10 +29229738 waslock = 0 +29229738 512 2048 +~~~ +29229795 DOWN 10 +29229795 0 2048 +~~~ +~~~ +~~~ +~~~ +29229818 homeCount = 122 +29229818 waitCount = 52 +29229819 ripCount = 49 +29229819 locktype1 = 1 +29229820 locktype2 = 8 +29229820 locktype3 = 12 +29229821 goalCount = 1 +29229821 goalTotal = 41 +29229822 otherCount = 59 +~~~ +29232290 UP 12 +29232290 2048 2048 +29232929 DOWN 12 +29232929 0 2048 +29233130 LOCKOUT 3 +~~~ +29233156 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29233162 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29233439 UP 12 +29233439 2048 0 +29233601 DOWN 12 +29233601 0 0 +29233714 UP 12 +29233714 2048 0 +29233929 DOWN 12 +29233929 0 0 +29244665 UP 4 +29244665 8 0 +29244691 DOWN 4 +29244691 0 0 +29244744 8 0 +29245299 DOWN 4 +29245299 0 0 +29245374 8 0 +29245764 DOWN 4 +29245764 0 0 +29256362 512 0 +29256669 0 0 +29256725 512 0 +29257036 0 0 +29257137 512 0 +29257143 0 0 +29258156 LOCKEND +~~~ +~~~ +~~~ +29258176 0 512 +29259266 UP 10 +29259266 waslock = 0 +29259266 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29259291 512 16777728 +~~~ +29259347 DOWN 10 +29259347 0 16777728 +~~~ +~~~ +29259364 0 16778752 +~~~ +~~~ +29259366 0 16778240 +29259367 homeCount = 123 +29259368 waitCount = 52 +29259368 ripCount = 49 +29259369 locktype1 = 1 +29259369 locktype2 = 8 +29259370 locktype3 = 13 +29259370 goalCount = 1 +29259371 goalTotal = 41 +29259371 otherCount = 59 +~~~ +29259392 UP 10 +29259393 waslock = 0 +29259392 512 16778240 +~~~ +29259441 512 1024 +29264964 DOWN 10 +29264964 0 1024 +~~~ +~~~ +~~~ +~~~ +29264987 homeCount = 123 +29264988 waitCount = 52 +29264988 ripCount = 49 +29264989 locktype1 = 1 +29264989 locktype2 = 8 +29264990 locktype3 = 13 +29264990 goalCount = 1 +29264991 goalTotal = 41 +29264991 otherCount = 59 +~~~ +29266921 UP 11 +29266920 1024 1024 +29270765 DOWN 11 +29270765 0 1024 +29270788 UP 11 +29270788 1024 1024 +29275741 DOWN 11 +29275741 0 1024 +29275751 UP 11 +29275750 1024 1024 +29275921 BEEP1 +29275921 BEEP2 +~~~ +~~~ +~~~ +29275948 1024 33555456 +~~~ +29276098 1024 1024 +29284636 DOWN 11 +29284635 0 1024 +~~~ +~~~ +29284655 0 0 +~~~ +~~~ +29284657 0 1 +~~~ +~~~ +29284659 0 3 +~~~ +~~~ +29284661 0 7 +~~~ +~~~ +29284662 0 15 +~~~ +~~~ +29284664 0 31 +~~~ +~~~ +29284666 0 63 +~~~ +~~~ +29284668 0 127 +~~~ +~~~ +29284670 0 255 +29284671 homeCount = 123 +29284671 waitCount = 52 +29284672 ripCount = 50 +29284672 locktype1 = 1 +29284673 locktype2 = 8 +29284694 locktype3 = 13 +29284694 goalCount = 1 +29284695 goalTotal = 41 +29284695 otherCount = 59 +~~~ +29284696 CURRENTGOAL IS [8] +~~~ +29284697 UP 11 +29284697 1024 255 +29284755 DOWN 11 +29284755 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29284796 homeCount = 123 +29284796 waitCount = 52 +29284797 ripCount = 50 +29284797 locktype1 = 1 +29284798 locktype2 = 8 +29284799 locktype3 = 13 +29284799 goalCount = 1 +29284800 goalTotal = 41 +29284800 otherCount = 59 +~~~ +29284801 CURRENTGOAL IS [8] +~~~ +29288212 UP 8 +29288212 128 255 +~~~ +~~~ +29288231 outer reward +~~~ +29288232 128 8388863 +~~~ +~~~ +29288549 DOWN 8 +29288549 0 8388863 +~~~ +~~~ +29288570 0 8388862 +~~~ +~~~ +29288571 0 8388860 +~~~ +~~~ +29288573 0 8388856 +~~~ +29288575 128 8388856 +~~~ +~~~ +29288576 128 8388848 +~~~ +~~~ +29288578 128 8388832 +~~~ +29288579 128 8388800 +~~~ +~~~ +29288581 128 8388736 +~~~ +~~~ +29288582 128 8388608 +~~~ +~~~ +29288584 128 8389120 +29288606 homeCount = 123 +29288607 waitCount = 52 +29288607 ripCount = 50 +29288608 locktype1 = 1 +29288608 locktype2 = 8 +29288609 locktype3 = 13 +29288609 goalCount = 2 +29288610 goalTotal = 42 +29288610 otherCount = 59 +~~~ +29288681 128 512 +29288820 DOWN 8 +29288820 0 512 +29288834 128 512 +29288934 DOWN 8 +29288934 0 512 +29288960 128 512 +29289062 DOWN 8 +29289062 0 512 +29289076 128 512 +29289179 DOWN 8 +29289179 0 512 +29289202 128 512 +29289305 DOWN 8 +29289305 0 512 +29289323 128 512 +29289431 DOWN 8 +29289431 0 512 +29289453 128 512 +29289581 DOWN 8 +29289581 0 512 +29289598 128 512 +29289717 DOWN 8 +29289717 0 512 +29289724 128 512 +29295838 DOWN 8 +29295838 0 512 +29300855 UP 10 +29300856 waslock = 0 +29300855 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29300888 512 16777728 +~~~ +29301038 512 512 +29301135 DOWN 10 +29301135 0 512 +~~~ +~~~ +29301161 0 1536 +~~~ +~~~ +29301163 0 1024 +29301164 homeCount = 124 +29301164 waitCount = 52 +29301165 ripCount = 50 +29301165 locktype1 = 1 +29301166 locktype2 = 8 +29301166 locktype3 = 13 +29301167 goalCount = 2 +29301167 goalTotal = 42 +29301168 otherCount = 59 +~~~ +29301247 UP 10 +29301247 waslock = 0 +29301247 512 1024 +~~~ +29308901 DOWN 10 +29308901 0 1024 +29308911 UP 10 +29308911 waslock = 0 +29308911 512 1024 +~~~ +~~~ +~~~ +~~~ +29308934 homeCount = 124 +29308935 waitCount = 52 +29308936 ripCount = 50 +29308936 locktype1 = 1 +29308937 locktype2 = 8 +29308937 locktype3 = 13 +29308938 goalCount = 2 +29308938 goalTotal = 42 +29308939 otherCount = 59 +~~~ +~~~ +29308997 DOWN 10 +29308997 0 1024 +~~~ +~~~ +~~~ +~~~ +29309025 homeCount = 124 +29309026 waitCount = 52 +29309026 ripCount = 50 +29309027 locktype1 = 1 +29309027 locktype2 = 8 +29309028 locktype3 = 13 +29309028 goalCount = 2 +29309029 goalTotal = 42 +29309029 otherCount = 59 +~~~ +29311128 UP 11 +29311128 1024 1024 +29314264 DOWN 11 +29314264 0 1024 +29314275 UP 11 +29314275 1024 1024 +29318628 BEEP1 +29318628 BEEP2 +~~~ +~~~ +~~~ +29318653 1024 33555456 +~~~ +29318803 1024 1024 +29327074 DOWN 11 +29327074 0 1024 +~~~ +~~~ +29327093 0 0 +~~~ +~~~ +29327095 0 1 +~~~ +~~~ +29327096 0 3 +~~~ +~~~ +29327098 0 7 +~~~ +~~~ +29327100 0 15 +~~~ +~~~ +29327102 0 31 +~~~ +~~~ +29327104 0 63 +~~~ +~~~ +29327105 0 127 +~~~ +~~~ +29327107 0 255 +29327108 homeCount = 124 +29327109 waitCount = 52 +29327109 ripCount = 51 +29327110 locktype1 = 1 +29327110 locktype2 = 8 +29327131 locktype3 = 13 +29327132 goalCount = 2 +29327132 goalTotal = 42 +29327133 otherCount = 59 +~~~ +29327134 CURRENTGOAL IS [8] +~~~ +29327143 UP 11 +29327143 1024 255 +29327191 DOWN 11 +29327191 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29327227 homeCount = 124 +29327228 waitCount = 52 +29327228 ripCount = 51 +29327229 locktype1 = 1 +29327229 locktype2 = 8 +29327230 locktype3 = 13 +29327230 goalCount = 2 +29327231 goalTotal = 42 +29327231 otherCount = 59 +~~~ +29327233 CURRENTGOAL IS [8] +~~~ +29331590 UP 8 +29331590 128 255 +~~~ +~~~ +29331613 outer reward +~~~ +29331614 128 8388863 +~~~ +~~~ +29331812 DOWN 8 +29331812 0 8388863 +~~~ +~~~ +29331833 0 8388862 +~~~ +~~~ +29331835 0 8388860 +~~~ +~~~ +29331837 0 8388856 +~~~ +~~~ +29331838 0 8388848 +~~~ +~~~ +29331840 0 8388832 +~~~ +~~~ +29331842 0 8388800 +~~~ +~~~ +29331844 0 8388736 +~~~ +~~~ +29331846 0 8388608 +~~~ +~~~ +29331848 0 8389120 +29331849 homeCount = 124 +29331849 waitCount = 52 +29331850 ripCount = 51 +29331871 locktype1 = 1 +29331871 locktype2 = 8 +29331872 locktype3 = 13 +29331872 goalCount = 3 +29331873 goalTotal = 43 +29331873 otherCount = 59 +~~~ +29331874 128 8389120 +29332063 128 512 +29332236 DOWN 8 +29332236 0 512 +29332246 128 512 +29332338 DOWN 8 +29332338 0 512 +29332375 128 512 +29332458 DOWN 8 +29332458 0 512 +29332486 128 512 +29332583 DOWN 8 +29332583 0 512 +29332608 128 512 +29332710 DOWN 8 +29332710 0 512 +29332732 128 512 +29332982 DOWN 8 +29332982 0 512 +29332985 128 512 +29333239 DOWN 8 +29333239 0 512 +29333247 128 512 +29338471 DOWN 8 +29338471 0 512 +29344506 UP 10 +29344507 waslock = 0 +29344506 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29344530 512 16777728 +~~~ +29344680 512 512 +29349720 DOWN 10 +29349720 0 512 +~~~ +~~~ +29349745 0 2560 +~~~ +~~~ +29349746 0 2048 +29349747 homeCount = 125 +29349748 waitCount = 52 +29349749 ripCount = 51 +29349749 locktype1 = 1 +29349750 locktype2 = 8 +29349750 locktype3 = 13 +29349751 goalCount = 3 +29349751 goalTotal = 43 +29349752 otherCount = 59 +~~~ +29349773 UP 10 +29349773 waslock = 0 +29349773 512 2048 +~~~ +29349825 DOWN 10 +29349825 0 2048 +~~~ +~~~ +~~~ +~~~ +29349849 homeCount = 125 +29349849 waitCount = 52 +29349850 ripCount = 51 +29349850 locktype1 = 1 +29349851 locktype2 = 8 +29349851 locktype3 = 13 +29349852 goalCount = 3 +29349852 goalTotal = 43 +29349853 otherCount = 59 +~~~ +29352255 UP 12 +29352255 2048 2048 +29352543 DOWN 12 +29352543 0 2048 +29352728 UP 12 +29352728 2048 2048 +29355255 CLICK1 +29355255 CLICK2 +~~~ +~~~ +~~~ +29355278 2048 67110912 +~~~ +29355428 2048 2048 +29362752 DOWN 12 +29362752 0 2048 +~~~ +~~~ +29362776 0 0 +~~~ +~~~ +29362778 0 1 +~~~ +~~~ +29362780 0 3 +~~~ +~~~ +29362782 0 7 +~~~ +~~~ +29362783 0 15 +~~~ +~~~ +29362785 0 31 +~~~ +~~~ +29362787 0 63 +~~~ +~~~ +29362789 0 127 +~~~ +29362790 UP 12 +29362790 2048 127 +~~~ +29362792 homeCount = 125 +29362792 waitCount = 53 +29362793 ripCount = 51 +29362793 locktype1 = 1 +29362815 locktype2 = 8 +29362815 locktype3 = 13 +29362816 goalCount = 3 +29362816 goalTotal = 43 +29362817 otherCount = 59 +~~~ +29362818 CURRENTGOAL IS [8] +~~~ +29362818 2048 255 +29362852 DOWN 12 +29362852 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29362893 homeCount = 125 +29362894 waitCount = 53 +29362894 ripCount = 51 +29362895 locktype1 = 1 +29362895 locktype2 = 8 +29362896 locktype3 = 13 +29362896 goalCount = 3 +29362897 goalTotal = 43 +29362897 otherCount = 59 +~~~ +29362898 CURRENTGOAL IS [8] +~~~ +29367715 UP 8 +29367715 128 255 +~~~ +~~~ +29367735 outer reward +~~~ +29367735 128 8388863 +~~~ +~~~ +29367928 DOWN 8 +29367928 0 8388863 +~~~ +~~~ +29367952 0 8388862 +~~~ +~~~ +29367953 0 8388860 +~~~ +~~~ +29367955 0 8388856 +~~~ +~~~ +29367957 0 8388848 +~~~ +~~~ +29367959 0 8388832 +~~~ +~~~ +29367961 0 8388800 +~~~ +~~~ +29367962 0 8388736 +~~~ +~~~ +29367964 0 8388608 +~~~ +~~~ +29367966 0 8389120 +29367967 homeCount = 125 +29367968 waitCount = 53 +29367968 ripCount = 51 +29367989 locktype1 = 1 +29367990 locktype2 = 8 +29367990 locktype3 = 13 +29367991 goalCount = 4 +29367991 goalTotal = 44 +29367992 otherCount = 59 +~~~ +29367998 128 8389120 +29368185 128 512 +29368242 DOWN 8 +29368242 0 512 +29368254 128 512 +29368363 DOWN 8 +29368363 0 512 +29368371 128 512 +29368479 DOWN 8 +29368479 0 512 +29368499 128 512 +29368596 DOWN 8 +29368596 0 512 +29368622 128 512 +29368726 DOWN 8 +29368726 0 512 +29368746 128 512 +29368850 DOWN 8 +29368850 0 512 +29368886 128 512 +29368991 DOWN 8 +29368991 0 512 +29369005 128 512 +29374850 DOWN 8 +29374850 0 512 +29374897 128 512 +29374950 DOWN 8 +29374950 0 512 +29379956 UP 10 +29379957 waslock = 0 +29379956 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29379988 512 16777728 +~~~ +29380138 512 512 +29383458 DOWN 10 +29383458 0 512 +~~~ +~~~ +29383482 0 1536 +~~~ +~~~ +29383484 0 1024 +29383485 homeCount = 126 +29383485 waitCount = 53 +29383486 ripCount = 51 +29383486 locktype1 = 1 +29383487 locktype2 = 8 +29383487 locktype3 = 13 +29383488 goalCount = 4 +29383488 goalTotal = 44 +29383489 otherCount = 59 +~~~ +29383510 UP 10 +29383510 waslock = 0 +29383510 512 1024 +~~~ +29383556 DOWN 10 +29383556 0 1024 +~~~ +~~~ +~~~ +~~~ +29383589 homeCount = 126 +29383590 waitCount = 53 +29383590 ripCount = 51 +29383591 locktype1 = 1 +29383591 locktype2 = 8 +29383592 locktype3 = 13 +29383592 goalCount = 4 +29383593 goalTotal = 44 +29383593 otherCount = 59 +~~~ +29385874 UP 11 +29385873 1024 1024 +29389139 DOWN 11 +29389138 0 1024 +29389207 UP 11 +29389207 1024 1024 +29390700 DOWN 11 +29390700 0 1024 +29390716 UP 11 +29390716 1024 1024 +29390735 DOWN 11 +29390735 0 1024 +29390772 UP 11 +29390772 1024 1024 +29393374 BEEP1 +29393374 BEEP2 +~~~ +~~~ +~~~ +29393395 1024 33555456 +~~~ +29393545 1024 1024 +29398229 DOWN 11 +29398229 0 1024 +29398250 UP 11 +29398250 1024 1024 +~~~ +~~~ +~~~ +29398252 1024 0 +~~~ +29398253 1024 1 +~~~ +~~~ +29398255 1024 3 +~~~ +~~~ +29398256 1024 7 +~~~ +~~~ +29398258 1024 15 +~~~ +~~~ +29398260 1024 31 +~~~ +~~~ +29398262 1024 63 +~~~ +~~~ +29398264 1024 127 +~~~ +~~~ +29398266 1024 255 +29398267 homeCount = 126 +29398288 waitCount = 53 +29398288 ripCount = 52 +29398289 locktype1 = 1 +29398289 locktype2 = 8 +29398290 locktype3 = 13 +29398290 goalCount = 4 +29398291 goalTotal = 44 +29398291 otherCount = 59 +~~~ +29398292 CURRENTGOAL IS [8] +~~~ +29401721 DOWN 11 +29401721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29401758 homeCount = 126 +29401758 waitCount = 53 +29401759 ripCount = 52 +29401760 locktype1 = 1 +29401760 locktype2 = 8 +29401761 locktype3 = 13 +29401761 goalCount = 4 +29401762 goalTotal = 44 +29401762 otherCount = 59 +~~~ +29401763 CURRENTGOAL IS [8] +~~~ +29401784 UP 11 +29401784 1024 255 +29401846 DOWN 11 +29401846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29401878 homeCount = 126 +29401878 waitCount = 53 +29401879 ripCount = 52 +29401879 locktype1 = 1 +29401880 locktype2 = 8 +29401880 locktype3 = 13 +29401881 goalCount = 4 +29401881 goalTotal = 44 +29401882 otherCount = 59 +~~~ +29401883 CURRENTGOAL IS [8] +~~~ +29406312 UP 8 +29406312 128 255 +~~~ +~~~ +29406334 outer reward +~~~ +29406335 128 8388863 +~~~ +~~~ +29406562 DOWN 8 +29406562 0 8388863 +~~~ +~~~ +29406584 0 8388862 +~~~ +~~~ +29406586 0 8388860 +~~~ +~~~ +29406588 0 8388856 +~~~ +~~~ +29406590 0 8388848 +~~~ +~~~ +29406591 0 8388832 +~~~ +~~~ +29406593 0 8388800 +~~~ +~~~ +29406595 0 8388736 +~~~ +~~~ +29406597 0 8388608 +~~~ +~~~ +29406599 0 8389120 +29406600 homeCount = 126 +29406600 waitCount = 53 +29406601 ripCount = 52 +29406622 locktype1 = 1 +29406623 locktype2 = 8 +29406623 locktype3 = 13 +29406624 goalCount = 5 +29406624 goalTotal = 45 +29406625 otherCount = 59 +~~~ +29406625 128 8389120 +29406784 128 512 +29406967 DOWN 8 +29406967 0 512 +29406996 128 512 +29407085 DOWN 8 +29407085 0 512 +29407104 128 512 +29407202 DOWN 8 +29407202 0 512 +29407224 128 512 +29407338 DOWN 8 +29407338 0 512 +29407357 128 512 +29413909 DOWN 8 +29413909 0 512 +29413959 128 512 +29414006 DOWN 8 +29414006 0 512 +29418802 UP 10 +29418803 waslock = 0 +29418802 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29418830 512 16777728 +~~~ +29418980 512 512 +29419012 DOWN 10 +29419012 0 512 +~~~ +~~~ +29419037 0 2560 +~~~ +~~~ +29419039 0 2048 +29419040 homeCount = 127 +29419040 waitCount = 53 +29419041 ripCount = 52 +29419041 locktype1 = 1 +29419042 locktype2 = 8 +29419042 locktype3 = 13 +29419043 goalCount = 5 +29419043 goalTotal = 45 +29419044 otherCount = 59 +~~~ +29419074 UP 10 +29419075 waslock = 0 +29419074 512 2048 +~~~ +29424344 DOWN 10 +29424344 0 2048 +~~~ +~~~ +~~~ +~~~ +29424367 homeCount = 127 +29424367 waitCount = 53 +29424368 ripCount = 52 +29424368 locktype1 = 1 +29424369 locktype2 = 8 +29424369 locktype3 = 13 +29424370 goalCount = 5 +29424370 goalTotal = 45 +29424371 otherCount = 59 +~~~ +29424380 UP 10 +29424381 waslock = 0 +29424380 512 2048 +~~~ +29424422 DOWN 10 +29424422 0 2048 +~~~ +~~~ +~~~ +~~~ +29424446 homeCount = 127 +29424446 waitCount = 53 +29424447 ripCount = 52 +29424447 locktype1 = 1 +29424448 locktype2 = 8 +29424448 locktype3 = 13 +29424449 goalCount = 5 +29424449 goalTotal = 45 +29424450 otherCount = 59 +~~~ +29430294 UP 10 +29430294 waslock = 0 +29430294 512 2048 +~~~ +29430680 DOWN 10 +29430680 0 2048 +~~~ +~~~ +~~~ +~~~ +29430708 homeCount = 127 +29430708 waitCount = 53 +29430709 ripCount = 52 +29430710 locktype1 = 1 +29430710 locktype2 = 8 +29430711 locktype3 = 13 +29430711 goalCount = 5 +29430712 goalTotal = 45 +29430712 otherCount = 59 +~~~ +29435478 UP 12 +29435478 2048 2048 +29435569 DOWN 12 +29435569 0 2048 +29435769 LOCKOUT 3 +~~~ +29435786 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29435792 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29447190 UP 7 +29447190 64 0 +29447579 DOWN 7 +29447579 0 0 + + description: Statescript log r3 + task_epochs: 6, +] +2021-05-24 19:16:53,864 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-24 19:16:57,487 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-05-24 19:16:57,490 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-05-24 19:16:57,490 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-05-24 19:16:57,492 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-05-24 19:16:57,492 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-05-24 19:16:57,492 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-05-24 19:16:57,495 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-05-24 19:16:57,496 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_01_s1.1. +2021-05-24 19:16:57,498 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_02_r1.1. +2021-05-24 19:16:57,500 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-05-24 19:16:57,500 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-05-24 19:16:57,506 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-05-24 19:16:57,507 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-05-24 19:16:57,509 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-05-24 19:16:57,530 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-05-24 19:16:57,532 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-05-24 19:16:57,534 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-05-24 19:16:57,536 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-05-24 19:18:05,647 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-05-24 19:18:05,651 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-05-24 19:18:28,809 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-05-24 19:18:28,810 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-05-24 19:18:28,810 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-05-24 19:18:28,812 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-05-24 19:18:28,813 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-05-24 19:18:29,669 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 19:18:45,440 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 19:19:33,457 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 19:19:49,090 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 19:20:09,724 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 19:20:26,070 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 19:21:13,554 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 19:21:29,497 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-05-24 19:21:29,503 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-05-24 19:21:30,138 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 19:21:36,844 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 19:21:52,356 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 19:21:57,874 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 19:22:04,717 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 19:22:11,473 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 19:22:27,035 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 19:23:11,748 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-05-24 19:23:13,049 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-05-24 19:23:13,050 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /stelmo/loren/despereaux20191125.nwb +2021-05-24 19:50:22,534 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 19:50:22,535 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 19:50:22,541 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 19:50:22,579 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 19:50:22,817 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 19:50:22,820 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 19:50:45,576 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 19:50:50,880 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 19:50:53,028 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 19:50:59,014 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 19:51:01,027 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 19:51:21,175 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 19:51:28,879 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 19:51:34,688 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 19:55:25,948 rec_to_nwb.processing.builder.nwb_file_builder: INFO /stelmo/loren/despereaux20191125.nwb file has been created. +2021-05-24 20:16:26,627 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : +data_path = /stelmo/loren/ +animal_name = despereaux +parallel_instances = 4 +extract_analog = True +extract_dio = True +extract_time = True +extract_mda = True +extract_lfps = False +extract_spikes = False +overwrite = False +lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') +mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') +analog_export_args = () +time_export_args = () +spikes_export_args = () +dio_export_args = () +trodes_rec_export_args = () + +2021-05-24 20:16:27,009 rec_to_binaries.core: INFO Extracting analog data... +2021-05-24 20:16:27,011 rec_to_binaries.core: INFO Extracting DIO... +2021-05-24 20:16:27,011 rec_to_binaries.core: INFO Extracting mda... +2021-05-24 20:16:27,012 rec_to_binaries.core: INFO Extracting time... +2021-05-24 20:22:51,771 rec_to_binaries.core: INFO Making position directory... +2021-05-24 20:22:53,556 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files +2021-05-24 20:22:53,557 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 +2021-05-24 20:22:53,557 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization +2021-05-24 20:22:53,558 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: +data_path = /stelmo/loren/ +animal_name = despereaux +date = 20191125 +nwb_metadata = Experiment Info: +Experimenter: Anna Gillespie +Description: Sungod control +Session Id: 4 +Subject: Long Evans Rat + +Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] +process_dio = True +process_mda = True +process_analog = True +output_file = /stelmo/loren/despereaux20191125.nwb + +2021-05-24 20:22:54,184 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! + , [] +2021-05-24 20:23:03,987 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB +2021-05-24 20:23:04,013 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior +2021-05-24 20:23:04,013 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior +2021-05-24 20:23:04,013 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks +2021-05-24 20:23:04,014 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks +2021-05-24 20:23:04,014 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files +2021-05-24 20:23:04,014 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files +2021-05-24 20:23:04,015 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files +2021-05-24 20:23:04,015 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files +2021-05-24 20:23:04,015 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog +2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog +2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence +2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence +2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts +2021-05-24 20:23:04,017 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts +2021-05-24 20:23:04,017 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building +2021-05-24 20:23:04,023 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating +2021-05-24 20:23:04,023 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting +2021-05-24 20:23:04,026 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [Statescript1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140511632191056 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +2608699 UP 10 +2608699 waslock = 0 +2608699 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2608722 512 16777728 +~~~ +2608872 512 512 +2608885 DOWN 10 +2608885 0 512 +~~~ +~~~ +2608901 0 1536 +~~~ +~~~ +2608903 0 1024 +2608904 homeCount = 1 +2608904 waitCount = 0 +2608905 ripCount = 0 +2608905 locktype1 = 0 +2608906 locktype2 = 0 +2608906 locktype3 = 0 +2608907 goalCount = 0 +2608907 goalTotal = 0 +2608908 otherCount = 0 +~~~ +2609055 UP 10 +2609055 waslock = 0 +2609054 512 1024 +2609074 DOWN 10 +2609074 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +2609109 homeCount = 1 +2609109 waitCount = 0 +2609109 ripCount = 0 +2609110 locktype1 = 0 +2609110 locktype2 = 0 +2609111 locktype3 = 0 +2609111 goalCount = 0 +2609112 goalTotal = 0 +2609112 otherCount = 0 +~~~ +2609182 UP 10 +2609182 waslock = 0 +2609182 512 1024 +~~~ +2609223 DOWN 10 +2609223 0 1024 +~~~ +~~~ +~~~ +~~~ +2609256 homeCount = 1 +2609257 waitCount = 0 +2609257 ripCount = 0 +2609258 locktype1 = 0 +2609258 locktype2 = 0 +2609259 locktype3 = 0 +2609259 goalCount = 0 +2609260 goalTotal = 0 +2609260 otherCount = 0 +~~~ +2609311 UP 10 +2609311 waslock = 0 +2609311 512 1024 +~~~ +2609574 DOWN 10 +2609574 0 1024 +~~~ +~~~ +~~~ +2609597 UP 10 +2609597 waslock = 0 +2609597 512 1024 +~~~ +2609599 homeCount = 1 +2609600 waitCount = 0 +2609600 ripCount = 0 +2609601 locktype1 = 0 +2609601 locktype2 = 0 +2609602 locktype3 = 0 +2609602 goalCount = 0 +2609602 goalTotal = 0 +2609603 otherCount = 0 +~~~ +~~~ +2609728 DOWN 10 +2609728 0 1024 +~~~ +~~~ +~~~ +~~~ +2609754 homeCount = 1 +2609754 waitCount = 0 +2609755 ripCount = 0 +2609755 locktype1 = 0 +2609756 locktype2 = 0 +2609756 locktype3 = 0 +2609757 goalCount = 0 +2609757 goalTotal = 0 +2609758 otherCount = 0 +~~~ +2609758 UP 10 +2609759 waslock = 0 +2609758 512 1024 +~~~ +2609870 DOWN 10 +2609870 0 1024 +~~~ +~~~ +~~~ +~~~ +2609895 homeCount = 1 +2609896 waitCount = 0 +2609896 ripCount = 0 +2609897 locktype1 = 0 +2609897 locktype2 = 0 +2609898 locktype3 = 0 +2609898 goalCount = 0 +2609898 goalTotal = 0 +2609899 otherCount = 0 +~~~ +2609909 UP 10 +2609910 waslock = 0 +2609909 512 1024 +~~~ +2610022 DOWN 10 +2610022 0 1024 +~~~ +~~~ +~~~ +~~~ +2610045 homeCount = 1 +2610045 waitCount = 0 +2610046 ripCount = 0 +2610046 locktype1 = 0 +2610047 locktype2 = 0 +2610047 locktype3 = 0 +2610048 goalCount = 0 +2610048 goalTotal = 0 +2610049 otherCount = 0 +~~~ +2610059 UP 10 +2610059 waslock = 0 +2610059 512 1024 +~~~ +2610177 DOWN 10 +2610177 0 1024 +~~~ +~~~ +~~~ +~~~ +2610204 homeCount = 1 +2610205 waitCount = 0 +2610205 ripCount = 0 +2610206 locktype1 = 0 +2610206 locktype2 = 0 +2610206 locktype3 = 0 +2610207 goalCount = 0 +2610207 goalTotal = 0 +2610208 otherCount = 0 +~~~ +2610208 UP 10 +2610209 waslock = 0 +2610208 512 1024 +~~~ +2610339 DOWN 10 +2610338 0 1024 +~~~ +~~~ +~~~ +2610363 UP 10 +2610363 waslock = 0 +2610363 512 1024 +~~~ +2610365 homeCount = 1 +2610365 waitCount = 0 +2610366 ripCount = 0 +2610366 locktype1 = 0 +2610367 locktype2 = 0 +2610367 locktype3 = 0 +2610367 goalCount = 0 +2610368 goalTotal = 0 +2610368 otherCount = 0 +~~~ +~~~ +2610495 DOWN 10 +2610495 0 1024 +~~~ +~~~ +~~~ +~~~ +2610515 homeCount = 1 +2610515 waitCount = 0 +2610516 ripCount = 0 +2610516 locktype1 = 0 +2610516 locktype2 = 0 +2610517 locktype3 = 0 +2610517 goalCount = 0 +2610518 goalTotal = 0 +2610518 otherCount = 0 +~~~ +2610526 UP 10 +2610526 waslock = 0 +2610526 512 1024 +~~~ +2610666 DOWN 10 +2610666 0 1024 +2610679 UP 10 +2610680 waslock = 0 +2610679 512 1024 +~~~ +~~~ +~~~ +~~~ +2610696 homeCount = 1 +2610697 waitCount = 0 +2610697 ripCount = 0 +2610698 locktype1 = 0 +2610698 locktype2 = 0 +2610699 locktype3 = 0 +2610699 goalCount = 0 +2610700 goalTotal = 0 +2610700 otherCount = 0 +~~~ +~~~ +2611006 DOWN 10 +2611006 0 1024 +2611013 UP 10 +2611013 waslock = 0 +2611013 512 1024 +~~~ +~~~ +~~~ +~~~ +2611036 homeCount = 1 +2611036 waitCount = 0 +2611037 ripCount = 0 +2611037 locktype1 = 0 +2611038 locktype2 = 0 +2611038 locktype3 = 0 +2611038 goalCount = 0 +2611039 goalTotal = 0 +2611039 otherCount = 0 +~~~ +~~~ +2611156 DOWN 10 +2611156 0 1024 +2611188 UP 10 +2611189 waslock = 0 +2611188 512 1024 +~~~ +~~~ +~~~ +~~~ +2611194 homeCount = 1 +2611195 waitCount = 0 +2611195 ripCount = 0 +2611196 locktype1 = 0 +2611196 locktype2 = 0 +2611196 locktype3 = 0 +2611197 goalCount = 0 +2611197 goalTotal = 0 +2611198 otherCount = 0 +~~~ +~~~ +2611313 DOWN 10 +2611313 0 1024 +~~~ +~~~ +~~~ +~~~ +2611336 homeCount = 1 +2611337 waitCount = 0 +2611337 ripCount = 0 +2611338 locktype1 = 0 +2611338 locktype2 = 0 +2611339 locktype3 = 0 +2611339 goalCount = 0 +2611340 goalTotal = 0 +2611340 otherCount = 0 +~~~ +2611352 UP 10 +2611353 waslock = 0 +2611352 512 1024 +~~~ +2611481 DOWN 10 +2611481 0 1024 +~~~ +~~~ +~~~ +~~~ +2611505 homeCount = 1 +2611506 waitCount = 0 +2611506 ripCount = 0 +2611507 locktype1 = 0 +2611507 locktype2 = 0 +2611508 locktype3 = 0 +2611508 goalCount = 0 +2611508 goalTotal = 0 +2611509 otherCount = 0 +~~~ +2611524 UP 10 +2611524 waslock = 0 +2611524 512 1024 +~~~ +2611655 DOWN 10 +2611655 0 1024 +~~~ +~~~ +~~~ +~~~ +2611675 homeCount = 1 +2611676 waitCount = 0 +2611676 ripCount = 0 +2611677 locktype1 = 0 +2611677 locktype2 = 0 +2611678 locktype3 = 0 +2611678 goalCount = 0 +2611679 goalTotal = 0 +2611679 otherCount = 0 +~~~ +2611701 UP 10 +2611702 waslock = 0 +2611701 512 1024 +~~~ +2611829 DOWN 10 +2611829 0 1024 +~~~ +~~~ +~~~ +~~~ +2611855 homeCount = 1 +2611855 waitCount = 0 +2611856 ripCount = 0 +2611856 locktype1 = 0 +2611857 locktype2 = 0 +2611857 locktype3 = 0 +2611858 goalCount = 0 +2611858 goalTotal = 0 +2611859 otherCount = 0 +~~~ +2611865 UP 10 +2611865 waslock = 0 +2611865 512 1024 +~~~ +2612015 DOWN 10 +2612015 0 1024 +~~~ +~~~ +~~~ +2612033 UP 10 +2612034 waslock = 0 +2612033 512 1024 +~~~ +2612035 homeCount = 1 +2612036 waitCount = 0 +2612036 ripCount = 0 +2612037 locktype1 = 0 +2612037 locktype2 = 0 +2612038 locktype3 = 0 +2612038 goalCount = 0 +2612039 goalTotal = 0 +2612039 otherCount = 0 +~~~ +~~~ +2612181 DOWN 10 +2612180 0 1024 +~~~ +~~~ +~~~ +~~~ +2612207 homeCount = 1 +2612208 waitCount = 0 +2612208 ripCount = 0 +2612209 locktype1 = 0 +2612209 locktype2 = 0 +2612210 locktype3 = 0 +2612210 goalCount = 0 +2612211 goalTotal = 0 +2612211 otherCount = 0 +~~~ +2612229 UP 10 +2612229 waslock = 0 +2612229 512 1024 +~~~ +2612356 DOWN 10 +2612356 0 1024 +~~~ +~~~ +~~~ +~~~ +2612387 homeCount = 1 +2612387 waitCount = 0 +2612388 ripCount = 0 +2612388 locktype1 = 0 +2612389 locktype2 = 0 +2612389 locktype3 = 0 +2612390 goalCount = 0 +2612390 goalTotal = 0 +2612391 otherCount = 0 +~~~ +2612407 UP 10 +2612407 waslock = 0 +2612406 512 1024 +~~~ +2614983 DOWN 10 +2614983 0 1024 +~~~ +~~~ +~~~ +~~~ +2615004 homeCount = 1 +2615005 waitCount = 0 +2615005 ripCount = 0 +2615006 locktype1 = 0 +2615006 locktype2 = 0 +2615007 locktype3 = 0 +2615007 goalCount = 0 +2615008 goalTotal = 0 +2615008 otherCount = 0 +~~~ +2617153 UP 12 +2617154 LOCKOUT 1 +2617153 2048 1024 +~~~ +2617175 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +2617178 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2617366 DOWN 12 +2617366 0 0 +2617491 UP 12 +2617491 2048 0 +2617895 DOWN 12 +2617895 0 0 +2617923 UP 12 +2617923 2048 0 +2618053 DOWN 12 +2618053 0 0 +2618075 UP 12 +2618075 2048 0 +2619271 DOWN 12 +2619271 0 0 +2619295 UP 12 +2619295 2048 0 +2619584 DOWN 12 +2619584 0 0 +2619593 UP 12 +2619593 2048 0 +2621137 DOWN 12 +2621137 0 0 +2622946 UP 11 +2622946 1024 0 +2623563 DOWN 11 +2623563 0 0 +2623582 UP 11 +2623582 1024 0 +2623717 DOWN 11 +2623717 0 0 +2623731 UP 11 +2623731 1024 0 +2623879 DOWN 11 +2623879 0 0 +2623904 UP 11 +2623903 1024 0 +2624051 DOWN 11 +2624051 0 0 +2624056 UP 11 +2624056 1024 0 +2626713 DOWN 11 +2626713 0 0 +2626722 UP 11 +2626722 1024 0 +2627171 DOWN 11 +2627171 0 0 +2631902 UP 7 +2631902 64 0 +2632210 DOWN 7 +2632210 0 0 +2632230 64 0 +2634192 DOWN 7 +2634192 0 0 +2634209 64 0 +2635732 DOWN 7 +2635732 0 0 +2642069 512 0 +2642175 LOCKEND +~~~ +~~~ +~~~ +2642201 512 512 +2642433 DOWN 10 +2642433 0 512 +2642526 UP 10 +2642526 waslock = 0 +2642526 512 512 +2642544 DOWN 10 +2642544 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2642558 0 16777728 +~~~ +~~~ +~~~ +2642570 0 16778752 +~~~ +~~~ +2642571 0 16778240 +2642572 homeCount = 2 +2642573 waitCount = 0 +2642573 ripCount = 0 +2642574 locktype1 = 1 +2642574 locktype2 = 0 +2642575 locktype3 = 0 +2642575 goalCount = 0 +2642576 goalTotal = 0 +2642576 otherCount = 0 +~~~ +2642628 UP 10 +2642629 waslock = 0 +2642628 512 16778240 +~~~ +2642704 DOWN 10 +2642704 0 16778240 +2642706 UP 10 +2642707 waslock = 0 +2642706 512 16778240 +2642708 512 1024 +2642713 DOWN 10 +2642713 0 1024 +2642720 UP 10 +2642720 waslock = 0 +2642720 512 1024 +~~~ +~~~ +~~~ +~~~ +2642742 homeCount = 2 +2642742 waitCount = 0 +2642743 ripCount = 0 +2642743 locktype1 = 1 +2642744 locktype2 = 0 +2642744 locktype3 = 0 +2642745 goalCount = 0 +2642745 goalTotal = 0 +2642746 otherCount = 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2642748 homeCount = 2 +2642770 waitCount = 0 +2642770 ripCount = 0 +2642771 locktype1 = 1 +2642771 locktype2 = 0 +2642772 locktype3 = 0 +2642772 goalCount = 0 +2642772 goalTotal = 0 +2642773 otherCount = 0 +~~~ +~~~ +2643241 DOWN 10 +2643241 0 1024 +2643258 UP 10 +2643258 waslock = 0 +2643258 512 1024 +~~~ +~~~ +~~~ +~~~ +2643268 homeCount = 2 +2643268 waitCount = 0 +2643269 ripCount = 0 +2643269 locktype1 = 1 +2643269 locktype2 = 0 +2643270 locktype3 = 0 +2643270 goalCount = 0 +2643271 goalTotal = 0 +2643271 otherCount = 0 +~~~ +~~~ +2643397 DOWN 10 +2643397 0 1024 +~~~ +~~~ +~~~ +~~~ +2643424 homeCount = 2 +2643424 waitCount = 0 +2643425 ripCount = 0 +2643425 locktype1 = 1 +2643426 locktype2 = 0 +2643426 locktype3 = 0 +2643427 goalCount = 0 +2643427 goalTotal = 0 +2643427 otherCount = 0 +~~~ +2643429 UP 10 +2643429 waslock = 0 +2643429 512 1024 +~~~ +2646784 DOWN 10 +2646784 0 1024 +~~~ +~~~ +~~~ +~~~ +2646812 homeCount = 2 +2646812 waitCount = 0 +2646813 ripCount = 0 +2646813 locktype1 = 1 +2646813 locktype2 = 0 +2646814 locktype3 = 0 +2646814 goalCount = 0 +2646815 goalTotal = 0 +2646815 otherCount = 0 +~~~ +2654547 UP 2 +2654547 2 1024 +~~~ +2654570 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +2654574 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2654848 DOWN 2 +2654848 0 0 +2654865 2 0 +2655008 DOWN 2 +2655008 0 0 +2655030 2 0 +2657028 DOWN 2 +2657028 0 0 +2661794 512 0 +2661810 0 0 +2661854 512 0 +2662303 0 0 +2662318 512 0 +2662471 0 0 +2662483 512 0 +2662646 0 0 +2662676 512 0 +2662753 0 0 +2662824 512 0 +2663410 0 0 +2667214 UP 8 +2667214 128 0 +2667509 DOWN 8 +2667509 0 0 +2667541 128 0 +2667910 DOWN 8 +2667910 0 0 +2667936 128 0 +2668075 DOWN 8 +2668075 0 0 +2668097 128 0 +2668243 DOWN 8 +2668243 0 0 +2668267 128 0 +2668421 DOWN 8 +2668421 0 0 +2668438 128 0 +2668589 DOWN 8 +2668589 0 0 +2668622 128 0 +2668952 DOWN 8 +2668952 0 0 +2668978 128 0 +2669136 DOWN 8 +2669136 0 0 +2669147 128 0 +2670697 DOWN 8 +2670697 0 0 +2670704 128 0 +2670876 DOWN 8 +2670876 0 0 +2670890 128 0 +2673117 DOWN 8 +2673117 0 0 +2673168 128 0 +2673243 DOWN 8 +2673243 0 0 +2673296 128 0 +2673609 DOWN 8 +2673609 0 0 +2673620 128 0 +2674173 DOWN 8 +2674173 0 0 +2674176 128 0 +2674222 DOWN 8 +2674222 0 0 +2674261 128 0 +2674378 DOWN 8 +2674378 0 0 +2674393 128 0 +2674564 DOWN 8 +2674564 0 0 +2674583 128 0 +2674681 DOWN 8 +2674681 0 0 +2679570 LOCKEND +~~~ +~~~ +~~~ +2679589 0 512 +2680342 UP 10 +2680343 waslock = 0 +2680342 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2680378 512 16777728 +~~~ +2680411 DOWN 10 +2680411 0 16777728 +~~~ +~~~ +2680438 0 16779776 +~~~ +~~~ +2680440 0 16779264 +2680441 homeCount = 3 +2680442 waitCount = 0 +2680442 ripCount = 0 +2680443 locktype1 = 1 +2680443 locktype2 = 1 +2680443 locktype3 = 0 +2680444 goalCount = 0 +2680444 goalTotal = 0 +2680445 otherCount = 0 +~~~ +2680525 UP 10 +2680525 waslock = 0 +2680525 512 16779264 +2680528 512 2048 +~~~ +2680573 DOWN 10 +2680573 0 2048 +~~~ +~~~ +~~~ +~~~ +2680601 homeCount = 3 +2680601 waitCount = 0 +2680602 ripCount = 0 +2680602 locktype1 = 1 +2680603 locktype2 = 1 +2680603 locktype3 = 0 +2680604 goalCount = 0 +2680604 goalTotal = 0 +2680605 otherCount = 0 +~~~ +2680677 UP 10 +2680678 waslock = 0 +2680677 512 2048 +~~~ +2681296 DOWN 10 +2681296 0 2048 +~~~ +~~~ +2681318 UP 10 +2681318 waslock = 0 +2681318 512 2048 +~~~ +~~~ +2681321 homeCount = 3 +2681321 waitCount = 0 +2681322 ripCount = 0 +2681322 locktype1 = 1 +2681323 locktype2 = 1 +2681323 locktype3 = 0 +2681324 goalCount = 0 +2681324 goalTotal = 0 +2681325 otherCount = 0 +~~~ +~~~ +2682967 DOWN 10 +2682967 0 2048 +2682978 UP 10 +2682978 waslock = 0 +2682978 512 2048 +~~~ +~~~ +~~~ +~~~ +2683005 homeCount = 3 +2683005 waitCount = 0 +2683006 ripCount = 0 +2683006 locktype1 = 1 +2683007 locktype2 = 1 +2683007 locktype3 = 0 +2683008 goalCount = 0 +2683008 goalTotal = 0 +2683009 otherCount = 0 +~~~ +~~~ +2684230 DOWN 10 +2684230 0 2048 +~~~ +~~~ +~~~ +~~~ +2684252 homeCount = 3 +2684253 waitCount = 0 +2684253 ripCount = 0 +2684254 locktype1 = 1 +2684254 locktype2 = 1 +2684255 locktype3 = 0 +2684255 goalCount = 0 +2684256 goalTotal = 0 +2684256 otherCount = 0 +~~~ +2684266 UP 10 +2684266 waslock = 0 +2684266 512 2048 +~~~ +2684599 DOWN 10 +2684599 0 2048 +~~~ +~~~ +2684620 UP 10 +2684620 waslock = 0 +2684620 512 2048 +~~~ +~~~ +2684623 homeCount = 3 +2684623 waitCount = 0 +2684624 ripCount = 0 +2684624 locktype1 = 1 +2684624 locktype2 = 1 +2684625 locktype3 = 0 +2684625 goalCount = 0 +2684626 goalTotal = 0 +2684626 otherCount = 0 +~~~ +~~~ +2684738 DOWN 10 +2684738 0 2048 +~~~ +~~~ +~~~ +~~~ +2684765 homeCount = 3 +2684765 waitCount = 0 +2684766 ripCount = 0 +2684766 locktype1 = 1 +2684767 locktype2 = 1 +2684767 locktype3 = 0 +2684768 goalCount = 0 +2684768 goalTotal = 0 +2684769 otherCount = 0 +~~~ +2685961 UP 12 +2685961 2048 2048 +2686484 DOWN 12 +2686484 0 2048 +2686519 UP 12 +2686519 2048 2048 +2686961 CLICK1 +2686961 CLICK2 +2686961 DOWN 12 +2686961 0 2048 +~~~ +~~~ +~~~ +2686981 0 67110912 +~~~ +2687006 UP 12 +2687006 2048 67110912 +2687131 2048 2048 +~~~ +~~~ +2687156 2048 0 +~~~ +~~~ +2687157 2048 1 +~~~ +~~~ +2687159 2048 3 +~~~ +~~~ +2687161 2048 7 +~~~ +~~~ +2687163 2048 15 +~~~ +~~~ +2687165 2048 31 +~~~ +~~~ +2687166 2048 63 +~~~ +~~~ +2687168 2048 127 +~~~ +~~~ +2687170 2048 255 +2687171 homeCount = 3 +2687172 waitCount = 1 +2687172 ripCount = 0 +2687173 locktype1 = 1 +2687194 locktype2 = 1 +2687194 locktype3 = 0 +2687195 goalCount = 0 +2687195 goalTotal = 0 +2687196 otherCount = 0 +~~~ +2687197 CURRENTGOAL IS [5] +~~~ +2691575 DOWN 12 +2691575 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2691618 homeCount = 3 +2691619 waitCount = 1 +2691619 ripCount = 0 +2691620 locktype1 = 1 +2691620 locktype2 = 1 +2691621 locktype3 = 0 +2691621 goalCount = 0 +2691621 goalTotal = 0 +2691622 otherCount = 0 +~~~ +2691623 CURRENTGOAL IS [5] +~~~ +2694045 UP 4 +2694045 8 255 +~~~ +~~~ +2694307 DOWN 4 +2694307 0 255 +~~~ +~~~ +2694333 0 254 +~~~ +~~~ +2694335 0 252 +~~~ +~~~ +2694337 0 248 +~~~ +~~~ +2694339 0 240 +~~~ +2694340 8 240 +~~~ +~~~ +2694342 8 224 +~~~ +~~~ +2694344 8 192 +~~~ +2694345 8 128 +~~~ +~~~ +2694346 8 0 +~~~ +~~~ +2694348 8 512 +2694349 homeCount = 3 +2694349 waitCount = 1 +2694350 ripCount = 0 +2694371 locktype1 = 1 +2694371 locktype2 = 1 +2694372 locktype3 = 0 +2694372 goalCount = 0 +2694373 goalTotal = 0 +2694373 otherCount = 1 +~~~ +2697167 DOWN 4 +2697167 0 512 +2700619 UP 10 +2700620 waslock = 0 +2700619 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2700643 512 16777728 +~~~ +2700677 DOWN 10 +2700677 0 16777728 +~~~ +~~~ +2700697 0 16778752 +~~~ +~~~ +2700699 0 16778240 +2700700 homeCount = 4 +2700700 waitCount = 1 +2700701 ripCount = 0 +2700701 locktype1 = 1 +2700702 locktype2 = 1 +2700702 locktype3 = 0 +2700703 goalCount = 0 +2700703 goalTotal = 0 +2700703 otherCount = 1 +~~~ +2700725 UP 10 +2700725 waslock = 0 +2700725 512 16778240 +~~~ +2700793 512 1024 +2700811 DOWN 10 +2700811 0 1024 +~~~ +~~~ +~~~ +~~~ +2700832 homeCount = 4 +2700832 waitCount = 1 +2700833 ripCount = 0 +2700833 locktype1 = 1 +2700834 locktype2 = 1 +2700834 locktype3 = 0 +2700835 goalCount = 0 +2700835 goalTotal = 0 +2700836 otherCount = 1 +~~~ +2700921 UP 10 +2700921 waslock = 0 +2700921 512 1024 +~~~ +2703713 DOWN 10 +2703713 0 1024 +2703727 UP 10 +2703728 waslock = 0 +2703727 512 1024 +~~~ +~~~ +~~~ +~~~ +2703741 homeCount = 4 +2703742 waitCount = 1 +2703742 ripCount = 0 +2703743 locktype1 = 1 +2703743 locktype2 = 1 +2703744 locktype3 = 0 +2703744 goalCount = 0 +2703745 goalTotal = 0 +2703745 otherCount = 1 +~~~ +~~~ +2703764 DOWN 10 +2703764 0 1024 +~~~ +~~~ +~~~ +~~~ +2703786 homeCount = 4 +2703786 waitCount = 1 +2703787 ripCount = 0 +2703787 locktype1 = 1 +2703788 locktype2 = 1 +2703788 locktype3 = 0 +2703789 goalCount = 0 +2703789 goalTotal = 0 +2703790 otherCount = 1 +~~~ +2704753 UP 11 +2704753 1024 1024 +2705597 DOWN 11 +2705597 0 1024 +2705617 UP 11 +2705617 1024 1024 +2705678 DOWN 11 +2705678 0 1024 +2705744 UP 11 +2705744 1024 1024 +2705753 BEEP1 +2705753 BEEP2 +~~~ +~~~ +~~~ +2705772 1024 33555456 +~~~ +2705922 1024 1024 +2709117 DOWN 11 +2709117 0 1024 +~~~ +~~~ +2709138 0 0 +~~~ +~~~ +2709140 0 1 +~~~ +~~~ +2709142 0 3 +~~~ +~~~ +2709144 0 7 +~~~ +~~~ +2709146 0 15 +~~~ +~~~ +2709147 0 31 +~~~ +~~~ +2709149 0 63 +~~~ +~~~ +2709151 0 127 +~~~ +~~~ +2709153 0 255 +2709154 homeCount = 4 +2709154 waitCount = 1 +2709155 ripCount = 1 +2709155 locktype1 = 1 +2709156 locktype2 = 1 +2709156 locktype3 = 0 +2709178 goalCount = 0 +2709178 goalTotal = 0 +2709178 otherCount = 1 +~~~ +2709180 CURRENTGOAL IS [5] +~~~ +2709182 UP 11 +2709182 1024 255 +2709619 DOWN 11 +2709619 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2709655 homeCount = 4 +2709655 waitCount = 1 +2709656 ripCount = 1 +2709656 locktype1 = 1 +2709657 locktype2 = 1 +2709657 locktype3 = 0 +2709658 goalCount = 0 +2709658 goalTotal = 0 +2709659 otherCount = 1 +~~~ +2709660 CURRENTGOAL IS [5] +~~~ +2711925 UP 7 +2711925 64 255 +~~~ +~~~ +2714140 DOWN 7 +2714140 0 255 +~~~ +~~~ +2714164 0 254 +~~~ +~~~ +2714166 0 252 +~~~ +~~~ +2714168 0 248 +~~~ +~~~ +2714170 0 240 +~~~ +~~~ +2714171 0 224 +~~~ +~~~ +2714173 0 192 +~~~ +~~~ +2714175 0 128 +~~~ +~~~ +2714177 0 0 +~~~ +~~~ +2714179 0 512 +2714180 homeCount = 4 +2714180 waitCount = 1 +2714181 ripCount = 1 +2714181 locktype1 = 1 +2714182 locktype2 = 1 +2714203 locktype3 = 0 +2714203 goalCount = 0 +2714204 goalTotal = 0 +2714204 otherCount = 2 +~~~ +2714205 64 512 +2714226 DOWN 7 +2714226 0 512 +2717944 UP 10 +2717945 waslock = 0 +2717944 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2717977 512 16777728 +~~~ +2718127 512 512 +2718153 DOWN 10 +2718153 0 512 +~~~ +~~~ +2718172 0 2560 +~~~ +~~~ +2718174 0 2048 +2718175 homeCount = 5 +2718176 waitCount = 1 +2718176 ripCount = 1 +2718177 locktype1 = 1 +2718177 locktype2 = 1 +2718178 locktype3 = 0 +2718178 goalCount = 0 +2718179 goalTotal = 0 +2718179 otherCount = 2 +~~~ +2718313 UP 10 +2718314 waslock = 0 +2718313 512 2048 +~~~ +2721159 DOWN 10 +2721158 0 2048 +2721177 UP 10 +2721177 waslock = 0 +2721177 512 2048 +~~~ +~~~ +~~~ +~~~ +2721185 homeCount = 5 +2721186 waitCount = 1 +2721186 ripCount = 1 +2721187 locktype1 = 1 +2721187 locktype2 = 1 +2721188 locktype3 = 0 +2721188 goalCount = 0 +2721189 goalTotal = 0 +2721189 otherCount = 2 +~~~ +~~~ +2721253 DOWN 10 +2721253 0 2048 +~~~ +~~~ +~~~ +~~~ +2721276 homeCount = 5 +2721276 waitCount = 1 +2721277 ripCount = 1 +2721277 locktype1 = 1 +2721278 locktype2 = 1 +2721278 locktype3 = 0 +2721279 goalCount = 0 +2721279 goalTotal = 0 +2721280 otherCount = 2 +~~~ +2722359 UP 12 +2722359 2048 2048 +2722798 DOWN 12 +2722798 0 2048 +2722838 UP 12 +2722838 2048 2048 +2723142 DOWN 12 +2723142 0 2048 +2723159 UP 12 +2723159 2048 2048 +2723223 DOWN 12 +2723223 0 2048 +2723288 UP 12 +2723288 2048 2048 +2723859 CLICK1 +2723859 CLICK2 +~~~ +~~~ +~~~ +2723886 2048 67110912 +~~~ +2724036 2048 2048 +2727818 DOWN 12 +2727818 0 2048 +~~~ +~~~ +2727844 0 0 +~~~ +~~~ +2727846 0 1 +~~~ +~~~ +2727847 0 3 +~~~ +~~~ +2727849 0 7 +~~~ +~~~ +2727851 0 15 +~~~ +~~~ +2727853 0 31 +~~~ +~~~ +2727855 0 63 +~~~ +~~~ +2727856 0 127 +~~~ +~~~ +2727858 0 255 +2727859 homeCount = 5 +2727860 waitCount = 2 +2727860 ripCount = 1 +2727861 locktype1 = 1 +2727861 locktype2 = 1 +2727862 locktype3 = 0 +2727883 goalCount = 0 +2727883 goalTotal = 0 +2727884 otherCount = 2 +~~~ +2727885 CURRENTGOAL IS [5] +~~~ +2732529 UP 1 +2732529 1 255 +~~~ +~~~ +2732809 DOWN 1 +2732809 0 255 +2732825 1 255 +~~~ +~~~ +2732828 1 254 +~~~ +~~~ +2732830 1 252 +~~~ +~~~ +2732832 1 248 +~~~ +~~~ +2732833 1 240 +~~~ +~~~ +2732835 1 224 +~~~ +~~~ +2732837 1 192 +~~~ +~~~ +2732839 1 128 +~~~ +~~~ +2732841 1 0 +~~~ +~~~ +2732843 1 512 +2732843 homeCount = 5 +2732844 waitCount = 2 +2732844 ripCount = 1 +2732845 locktype1 = 1 +2732845 locktype2 = 1 +2732866 locktype3 = 0 +2732867 goalCount = 0 +2732867 goalTotal = 0 +2732867 otherCount = 3 +~~~ +2734994 DOWN 1 +2734994 0 512 +2735003 1 512 +2735908 DOWN 1 +2735908 0 512 +2735920 1 512 +2736101 DOWN 1 +2736101 0 512 +2736111 1 512 +2737189 DOWN 1 +2737189 0 512 +2737197 1 512 +2737380 DOWN 1 +2737380 0 512 +2737397 1 512 +2737567 DOWN 1 +2737567 0 512 +2737579 1 512 +2737737 DOWN 1 +2737737 0 512 +2737755 1 512 +2737928 DOWN 1 +2737928 0 512 +2737943 1 512 +2738611 DOWN 1 +2738611 0 512 +2738651 1 512 +2738688 DOWN 1 +2738688 0 512 +2738818 1 512 +2738845 DOWN 1 +2738845 0 512 +2743363 UP 10 +2743363 waslock = 0 +2743363 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2743394 512 16777728 +~~~ +2743521 DOWN 10 +2743520 0 16777728 +2743544 0 512 +~~~ +~~~ +2743560 0 2560 +~~~ +~~~ +2743562 0 2048 +2743563 homeCount = 6 +2743564 waitCount = 2 +2743564 ripCount = 1 +2743565 locktype1 = 1 +2743565 locktype2 = 1 +2743566 locktype3 = 0 +2743566 goalCount = 0 +2743567 goalTotal = 0 +2743567 otherCount = 3 +~~~ +2743579 UP 10 +2743579 waslock = 0 +2743579 512 2048 +~~~ +2748231 DOWN 10 +2748231 0 2048 +~~~ +~~~ +~~~ +~~~ +2748261 homeCount = 6 +2748261 waitCount = 2 +2748262 ripCount = 1 +2748262 locktype1 = 1 +2748263 locktype2 = 1 +2748263 locktype3 = 0 +2748263 goalCount = 0 +2748264 goalTotal = 0 +2748264 otherCount = 3 +~~~ +2748272 UP 10 +2748273 waslock = 0 +2748272 512 2048 +~~~ +2748303 DOWN 10 +2748303 0 2048 +~~~ +~~~ +~~~ +~~~ +2748321 homeCount = 6 +2748322 waitCount = 2 +2748322 ripCount = 1 +2748323 locktype1 = 1 +2748323 locktype2 = 1 +2748324 locktype3 = 0 +2748324 goalCount = 0 +2748325 goalTotal = 0 +2748325 otherCount = 3 +~~~ +2749680 UP 12 +2749680 2048 2048 +2751680 CLICK1 +2751680 CLICK2 +~~~ +~~~ +~~~ +2751702 2048 67110912 +~~~ +2751852 2048 2048 +2755155 DOWN 12 +2755155 0 2048 +~~~ +~~~ +2755179 0 0 +~~~ +2755181 UP 12 +2755181 2048 0 +~~~ +~~~ +2755182 2048 1 +~~~ +~~~ +2755184 2048 3 +~~~ +2755185 2048 7 +~~~ +~~~ +2755187 2048 15 +~~~ +~~~ +2755188 2048 31 +~~~ +~~~ +2755190 2048 63 +~~~ +~~~ +2755192 2048 127 +~~~ +~~~ +2755194 2048 255 +2755195 homeCount = 6 +2755216 waitCount = 3 +2755217 ripCount = 1 +2755217 locktype1 = 1 +2755218 locktype2 = 1 +2755218 locktype3 = 0 +2755218 goalCount = 0 +2755219 goalTotal = 0 +2755219 otherCount = 3 +~~~ +2755220 CURRENTGOAL IS [5] +~~~ +2755257 DOWN 12 +2755257 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2755297 homeCount = 6 +2755297 waitCount = 3 +2755298 ripCount = 1 +2755298 locktype1 = 1 +2755299 locktype2 = 1 +2755299 locktype3 = 0 +2755300 goalCount = 0 +2755300 goalTotal = 0 +2755301 otherCount = 3 +~~~ +2755302 CURRENTGOAL IS [5] +~~~ +2758389 UP 6 +2758389 32 255 +~~~ +~~~ +2762845 DOWN 6 +2762845 0 255 +~~~ +~~~ +2762870 0 254 +~~~ +~~~ +2762872 0 252 +~~~ +~~~ +2762873 0 248 +~~~ +~~~ +2762875 0 240 +~~~ +~~~ +2762877 0 224 +~~~ +~~~ +2762879 0 192 +~~~ +~~~ +2762881 0 128 +~~~ +~~~ +2762882 0 0 +~~~ +~~~ +2762884 0 512 +2762885 homeCount = 6 +2762886 waitCount = 3 +2762886 ripCount = 1 +2762887 locktype1 = 1 +2762887 locktype2 = 1 +2762908 locktype3 = 0 +2762909 goalCount = 0 +2762909 goalTotal = 0 +2762910 otherCount = 4 +~~~ +2766008 UP 10 +2766008 waslock = 0 +2766008 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2766038 512 16777728 +~~~ +2766188 512 512 +2766218 DOWN 10 +2766217 0 512 +~~~ +~~~ +2766243 0 1536 +~~~ +~~~ +2766245 0 1024 +2766246 homeCount = 7 +2766246 waitCount = 3 +2766247 ripCount = 1 +2766247 locktype1 = 1 +2766248 locktype2 = 1 +2766248 locktype3 = 0 +2766249 goalCount = 0 +2766249 goalTotal = 0 +2766250 otherCount = 4 +~~~ +2766305 UP 10 +2766305 waslock = 0 +2766305 512 1024 +~~~ +2770192 DOWN 10 +2770192 0 1024 +~~~ +~~~ +~~~ +~~~ +2770215 homeCount = 7 +2770215 waitCount = 3 +2770216 ripCount = 1 +2770216 locktype1 = 1 +2770217 locktype2 = 1 +2770217 locktype3 = 0 +2770218 goalCount = 0 +2770218 goalTotal = 0 +2770219 otherCount = 4 +~~~ +2771671 UP 11 +2771671 1024 1024 +2771682 DOWN 11 +2771682 0 1024 +2771731 UP 11 +2771731 1024 1024 +2773171 BEEP1 +2773171 BEEP2 +~~~ +~~~ +~~~ +2773194 1024 33555456 +~~~ +2773198 DOWN 11 +2773198 0 33555456 +2773250 UP 11 +2773250 1024 33555456 +2773344 1024 1024 +~~~ +~~~ +2773852 1024 0 +~~~ +~~~ +2773854 1024 1 +~~~ +~~~ +2773856 1024 3 +~~~ +~~~ +2773858 1024 7 +~~~ +~~~ +2773860 1024 15 +~~~ +~~~ +2773861 1024 31 +~~~ +~~~ +2773863 1024 63 +~~~ +~~~ +2773865 1024 127 +~~~ +~~~ +2773867 1024 255 +2773868 homeCount = 7 +2773868 waitCount = 3 +2773869 ripCount = 2 +2773869 locktype1 = 1 +2773890 locktype2 = 1 +2773891 locktype3 = 0 +2773891 goalCount = 0 +2773892 goalTotal = 0 +2773892 otherCount = 4 +~~~ +2773893 CURRENTGOAL IS [5] +~~~ +2778754 DOWN 11 +2778754 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2778788 homeCount = 7 +2778789 waitCount = 3 +2778789 ripCount = 2 +2778790 locktype1 = 1 +2778790 locktype2 = 1 +2778790 locktype3 = 0 +2778791 goalCount = 0 +2778791 goalTotal = 0 +2778792 otherCount = 4 +~~~ +2778793 CURRENTGOAL IS [5] +~~~ +2782128 UP 6 +2782128 32 255 +~~~ +~~~ +2783049 DOWN 6 +2783049 0 255 +~~~ +~~~ +2783075 0 254 +~~~ +~~~ +2783077 0 252 +~~~ +~~~ +2783078 0 248 +~~~ +~~~ +2783080 0 240 +~~~ +~~~ +2783082 0 224 +~~~ +~~~ +2783084 0 192 +~~~ +~~~ +2783086 0 128 +~~~ +~~~ +2783088 0 0 +~~~ +~~~ +2783090 0 512 +2783090 homeCount = 7 +2783091 waitCount = 3 +2783091 ripCount = 2 +2783092 locktype1 = 1 +2783092 locktype2 = 1 +2783114 locktype3 = 0 +2783114 goalCount = 0 +2783114 goalTotal = 0 +2783115 otherCount = 5 +~~~ +2786457 UP 10 +2786457 waslock = 0 +2786457 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2786485 512 16777728 +~~~ +2786635 512 512 +2786717 DOWN 10 +2786716 0 512 +~~~ +~~~ +2786737 0 2560 +~~~ +~~~ +2786739 0 2048 +2786740 homeCount = 8 +2786740 waitCount = 3 +2786741 ripCount = 2 +2786741 locktype1 = 1 +2786742 locktype2 = 1 +2786742 locktype3 = 0 +2786742 goalCount = 0 +2786743 goalTotal = 0 +2786743 otherCount = 5 +~~~ +2786787 UP 10 +2786787 waslock = 0 +2786787 512 2048 +~~~ +2790582 DOWN 10 +2790582 0 2048 +~~~ +~~~ +~~~ +~~~ +2790611 UP 10 +2790611 waslock = 0 +2790610 512 2048 +2790612 homeCount = 8 +2790613 waitCount = 3 +2790613 ripCount = 2 +2790614 locktype1 = 1 +2790614 locktype2 = 1 +2790615 locktype3 = 0 +2790615 goalCount = 0 +2790616 goalTotal = 0 +2790616 otherCount = 5 +~~~ +~~~ +2790655 DOWN 10 +2790655 0 2048 +~~~ +~~~ +~~~ +~~~ +2790682 homeCount = 8 +2790682 waitCount = 3 +2790683 ripCount = 2 +2790683 locktype1 = 1 +2790684 locktype2 = 1 +2790684 locktype3 = 0 +2790685 goalCount = 0 +2790685 goalTotal = 0 +2790686 otherCount = 5 +~~~ +2791798 UP 12 +2791798 2048 2048 +2792281 DOWN 12 +2792281 0 2048 +2792337 UP 12 +2792337 2048 2048 +2792758 DOWN 12 +2792758 0 2048 +2792844 UP 12 +2792844 2048 2048 +2795298 CLICK1 +2795298 CLICK2 +~~~ +~~~ +~~~ +2795318 2048 67110912 +~~~ +2795468 2048 2048 +2799664 DOWN 12 +2799664 0 2048 +~~~ +~~~ +2799687 0 0 +~~~ +~~~ +2799689 0 1 +~~~ +~~~ +2799690 0 3 +~~~ +~~~ +2799692 0 7 +~~~ +~~~ +2799694 0 15 +~~~ +~~~ +2799696 0 31 +~~~ +~~~ +2799698 0 63 +~~~ +~~~ +2799700 0 127 +~~~ +~~~ +2799701 0 255 +2799702 homeCount = 8 +2799703 waitCount = 4 +2799703 ripCount = 2 +2799704 locktype1 = 1 +2799704 locktype2 = 1 +2799705 locktype3 = 0 +2799726 goalCount = 0 +2799727 goalTotal = 0 +2799727 otherCount = 5 +~~~ +2799728 CURRENTGOAL IS [5] +~~~ +2802199 UP 4 +2802199 8 255 +~~~ +~~~ +2802576 DOWN 4 +2802576 0 255 +2802593 8 255 +~~~ +~~~ +2802609 8 254 +~~~ +~~~ +2802611 8 252 +~~~ +~~~ +2802613 8 248 +~~~ +~~~ +2802615 8 240 +~~~ +~~~ +2802616 8 224 +~~~ +~~~ +2802618 8 192 +~~~ +~~~ +2802620 8 128 +~~~ +~~~ +2802622 8 0 +~~~ +~~~ +2802624 8 512 +2802625 homeCount = 8 +2802625 waitCount = 4 +2802626 ripCount = 2 +2802626 locktype1 = 1 +2802627 locktype2 = 1 +2802648 locktype3 = 0 +2802648 goalCount = 0 +2802649 goalTotal = 0 +2802649 otherCount = 6 +~~~ +2803199 DOWN 4 +2803199 0 512 +2806645 UP 10 +2806645 waslock = 0 +2806645 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2806667 512 16777728 +~~~ +2806808 DOWN 10 +2806808 0 16777728 +2806817 0 512 +~~~ +~~~ +2806832 0 2560 +~~~ +~~~ +2806834 0 2048 +2806835 homeCount = 9 +2806836 waitCount = 4 +2806836 ripCount = 2 +2806837 locktype1 = 1 +2806837 locktype2 = 1 +2806838 locktype3 = 0 +2806838 goalCount = 0 +2806838 goalTotal = 0 +2806839 otherCount = 6 +~~~ +2806843 UP 10 +2806843 waslock = 0 +2806843 512 2048 +~~~ +2807597 DOWN 10 +2807597 0 2048 +~~~ +~~~ +~~~ +~~~ +2807626 homeCount = 9 +2807626 waitCount = 4 +2807627 ripCount = 2 +2807627 locktype1 = 1 +2807628 locktype2 = 1 +2807628 locktype3 = 0 +2807629 goalCount = 0 +2807629 goalTotal = 0 +2807630 otherCount = 6 +~~~ +2810696 UP 11 +2810696 LOCKOUT 1 +2810696 1024 2048 +~~~ +2810723 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2810729 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2810753 DOWN 11 +2810753 0 0 +2810768 UP 11 +2810768 1024 0 +2811250 DOWN 11 +2811250 0 0 +2811286 UP 11 +2811286 1024 0 +2811744 DOWN 11 +2811744 0 0 +2811766 UP 11 +2811766 1024 0 +2811807 DOWN 11 +2811807 0 0 +2811850 UP 11 +2811850 1024 0 +2812828 DOWN 11 +2812828 0 0 +2812876 UP 11 +2812876 1024 0 +2813995 DOWN 11 +2813995 0 0 +2814049 UP 11 +2814049 1024 0 +2815505 DOWN 11 +2815505 0 0 +2819543 UP 8 +2819543 128 0 +2819585 DOWN 8 +2819585 0 0 +2819606 128 0 +2819875 DOWN 8 +2819875 0 0 +2819901 128 0 +2819941 DOWN 8 +2819941 0 0 +2824340 512 0 +2824731 0 0 +2824770 512 0 +2827498 0 0 +2827513 512 0 +2827572 0 0 +2835723 LOCKEND +~~~ +~~~ +~~~ +2835743 0 512 +2837111 UP 3 +2837111 4 512 +2837391 DOWN 3 +2837391 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2837428 homeCount = 9 +2837428 waitCount = 4 +2837429 ripCount = 2 +2837429 locktype1 = 2 +2837430 locktype2 = 1 +2837430 locktype3 = 0 +2837431 goalCount = 0 +2837431 goalTotal = 0 +2837432 otherCount = 6 +~~~ +2837436 4 512 +2837822 DOWN 3 +2837822 0 512 +2837860 4 512 +2838167 DOWN 3 +2838167 0 512 +2838177 4 512 +2838316 DOWN 3 +2838316 0 512 +2838347 4 512 +2839028 DOWN 3 +2839028 0 512 +2839041 4 512 +2839199 DOWN 3 +2839199 0 512 +2839209 4 512 +2841094 DOWN 3 +2841094 0 512 +2841119 4 512 +2841151 DOWN 3 +2841151 0 512 +2845140 UP 10 +2845140 waslock = 0 +2845140 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2845169 512 16777728 +~~~ +2845199 DOWN 10 +2845199 0 16777728 +~~~ +~~~ +2845224 0 16778752 +~~~ +~~~ +2845226 0 16778240 +2845227 homeCount = 10 +2845227 waitCount = 4 +2845228 ripCount = 2 +2845228 locktype1 = 2 +2845229 locktype2 = 1 +2845229 locktype3 = 0 +2845230 goalCount = 0 +2845230 goalTotal = 0 +2845231 otherCount = 6 +~~~ +2845259 UP 10 +2845259 waslock = 0 +2845259 512 16778240 +~~~ +2845319 512 1024 +2845324 DOWN 10 +2845324 0 1024 +~~~ +~~~ +~~~ +~~~ +2845350 homeCount = 10 +2845350 waitCount = 4 +2845351 ripCount = 2 +2845351 locktype1 = 2 +2845352 locktype2 = 1 +2845352 locktype3 = 0 +2845353 goalCount = 0 +2845353 goalTotal = 0 +2845354 otherCount = 6 +~~~ +2845370 UP 10 +2845370 waslock = 0 +2845370 512 1024 +~~~ +2846016 DOWN 10 +2846016 0 1024 +~~~ +~~~ +~~~ +~~~ +2846039 homeCount = 10 +2846039 waitCount = 4 +2846040 ripCount = 2 +2846040 locktype1 = 2 +2846041 locktype2 = 1 +2846041 locktype3 = 0 +2846041 goalCount = 0 +2846042 goalTotal = 0 +2846042 otherCount = 6 +~~~ +2846045 UP 10 +2846045 waslock = 0 +2846045 512 1024 +~~~ +2846440 DOWN 10 +2846440 0 1024 +~~~ +~~~ +~~~ +~~~ +2846469 homeCount = 10 +2846470 waitCount = 4 +2846470 ripCount = 2 +2846471 locktype1 = 2 +2846471 locktype2 = 1 +2846472 locktype3 = 0 +2846472 goalCount = 0 +2846473 goalTotal = 0 +2846473 otherCount = 6 +~~~ +2846499 UP 10 +2846499 waslock = 0 +2846498 512 1024 +~~~ +2846565 DOWN 10 +2846565 0 1024 +~~~ +~~~ +~~~ +~~~ +2846591 homeCount = 10 +2846592 waitCount = 4 +2846592 ripCount = 2 +2846593 locktype1 = 2 +2846593 locktype2 = 1 +2846594 locktype3 = 0 +2846594 goalCount = 0 +2846595 goalTotal = 0 +2846595 otherCount = 6 +~~~ +2847849 UP 11 +2847849 1024 1024 +2849371 DOWN 11 +2849371 0 1024 +2849409 UP 11 +2849409 1024 1024 +2849850 BEEP1 +2849850 BEEP2 +~~~ +~~~ +~~~ +2849879 1024 33555456 +~~~ +2850029 1024 1024 +2855199 DOWN 11 +2855199 0 1024 +~~~ +~~~ +2855227 0 0 +~~~ +~~~ +2855228 0 1 +~~~ +~~~ +2855230 0 3 +~~~ +~~~ +2855232 0 7 +~~~ +~~~ +2855234 0 15 +~~~ +~~~ +2855236 0 31 +~~~ +~~~ +2855237 0 63 +~~~ +~~~ +2855239 0 127 +~~~ +~~~ +2855241 0 255 +2855242 homeCount = 10 +2855243 waitCount = 4 +2855243 ripCount = 3 +2855244 locktype1 = 2 +2855244 locktype2 = 1 +2855245 locktype3 = 0 +2855266 goalCount = 0 +2855266 goalTotal = 0 +2855267 otherCount = 6 +~~~ +2855268 CURRENTGOAL IS [5] +~~~ +2857717 UP 7 +2857717 64 255 +~~~ +~~~ +2858426 DOWN 7 +2858426 0 255 +~~~ +~~~ +2858445 0 254 +~~~ +~~~ +2858447 0 252 +~~~ +~~~ +2858449 0 248 +~~~ +~~~ +2858451 0 240 +~~~ +~~~ +2858453 0 224 +~~~ +~~~ +2858455 0 192 +~~~ +~~~ +2858456 0 128 +~~~ +~~~ +2858458 0 0 +~~~ +~~~ +2858460 0 512 +2858461 homeCount = 10 +2858462 waitCount = 4 +2858462 ripCount = 3 +2858463 locktype1 = 2 +2858463 locktype2 = 1 +2858484 locktype3 = 0 +2858485 goalCount = 0 +2858485 goalTotal = 0 +2858486 otherCount = 7 +~~~ +2858682 64 512 +2859243 DOWN 7 +2859243 0 512 +2859279 64 512 +2859326 DOWN 7 +2859326 0 512 +2862459 UP 10 +2862459 waslock = 0 +2862459 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2862493 512 16777728 +~~~ +2862499 DOWN 10 +2862499 0 16777728 +~~~ +~~~ +2862523 0 16778752 +~~~ +~~~ +2862525 0 16778240 +2862526 homeCount = 11 +2862527 waitCount = 4 +2862527 ripCount = 3 +2862528 locktype1 = 2 +2862528 locktype2 = 1 +2862528 locktype3 = 0 +2862529 goalCount = 0 +2862529 goalTotal = 0 +2862530 otherCount = 7 +~~~ +2862551 UP 10 +2862551 waslock = 0 +2862551 512 16778240 +~~~ +2862643 512 1024 +2862760 DOWN 10 +2862760 0 1024 +~~~ +~~~ +~~~ +~~~ +2862797 homeCount = 11 +2862798 waitCount = 4 +2862798 ripCount = 3 +2862799 locktype1 = 2 +2862799 locktype2 = 1 +2862799 locktype3 = 0 +2862800 goalCount = 0 +2862800 goalTotal = 0 +2862801 otherCount = 7 +~~~ +2862809 UP 10 +2862809 waslock = 0 +2862809 512 1024 +~~~ +2868573 DOWN 10 +2868573 0 1024 +~~~ +~~~ +~~~ +~~~ +2868601 homeCount = 11 +2868602 waitCount = 4 +2868602 ripCount = 3 +2868603 locktype1 = 2 +2868603 locktype2 = 1 +2868604 locktype3 = 0 +2868604 goalCount = 0 +2868605 goalTotal = 0 +2868605 otherCount = 7 +~~~ +2870096 UP 11 +2870096 1024 1024 +2870130 DOWN 11 +2870130 0 1024 +2870158 UP 11 +2870158 1024 1024 +2870493 DOWN 11 +2870493 0 1024 +2870497 UP 11 +2870497 1024 1024 +2871248 DOWN 11 +2871248 0 1024 +2871278 UP 11 +2871278 1024 1024 +2871621 DOWN 11 +2871621 0 1024 +2871738 UP 11 +2871738 1024 1024 +2874346 BEEP1 +2874346 BEEP2 +~~~ +~~~ +~~~ +2874367 1024 33555456 +~~~ +2874517 1024 1024 +2880959 DOWN 11 +2880959 0 1024 +~~~ +~~~ +2880977 0 0 +~~~ +~~~ +2880978 0 1 +~~~ +~~~ +2880980 0 3 +~~~ +~~~ +2880982 0 7 +~~~ +~~~ +2880984 0 15 +~~~ +~~~ +2880986 0 31 +~~~ +~~~ +2880988 0 63 +~~~ +~~~ +2880989 0 127 +~~~ +~~~ +2880991 0 255 +2880992 homeCount = 11 +2880993 waitCount = 4 +2880993 ripCount = 4 +2880994 locktype1 = 2 +2880994 locktype2 = 1 +2880995 locktype3 = 0 +2881016 goalCount = 0 +2881016 goalTotal = 0 +2881017 otherCount = 7 +~~~ +2881018 CURRENTGOAL IS [5] +~~~ +2881018 UP 11 +2881018 1024 255 +2881052 DOWN 11 +2881052 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2881094 homeCount = 11 +2881095 waitCount = 4 +2881095 ripCount = 4 +2881096 locktype1 = 2 +2881096 locktype2 = 1 +2881097 locktype3 = 0 +2881097 goalCount = 0 +2881098 goalTotal = 0 +2881098 otherCount = 7 +~~~ +2881099 CURRENTGOAL IS [5] +~~~ +2883804 UP 5 +2883804 16 255 +~~~ +~~~ +2883831 outer reward +~~~ +2883831 16 1048831 +~~~ +~~~ +2884000 DOWN 5 +2884000 0 1048831 +~~~ +~~~ +2884018 0 1048830 +~~~ +~~~ +2884020 0 1048828 +~~~ +~~~ +2884022 0 1048824 +~~~ +~~~ +2884024 0 1048816 +~~~ +~~~ +2884026 0 1048800 +~~~ +~~~ +2884027 0 1048768 +~~~ +~~~ +2884029 0 1048704 +~~~ +~~~ +2884031 0 1048576 +~~~ +~~~ +2884033 0 1049088 +2884034 homeCount = 11 +2884034 waitCount = 4 +2884035 ripCount = 4 +2884056 locktype1 = 2 +2884056 locktype2 = 1 +2884057 locktype3 = 0 +2884057 goalCount = 1 +2884058 goalTotal = 1 +2884058 otherCount = 7 +~~~ +2884085 16 1049088 +2884281 16 512 +2884488 DOWN 5 +2884488 0 512 +2884507 16 512 +2884624 DOWN 5 +2884624 0 512 +2884646 16 512 +2884762 DOWN 5 +2884762 0 512 +2884788 16 512 +2884901 DOWN 5 +2884901 0 512 +2884928 16 512 +2885047 DOWN 5 +2885047 0 512 +2885071 16 512 +2885212 DOWN 5 +2885212 0 512 +2885215 16 512 +2885512 DOWN 5 +2885512 0 512 +2885526 16 512 +2893817 DOWN 5 +2893817 0 512 +2893879 16 512 +2893901 DOWN 5 +2893901 0 512 +2900132 UP 10 +2900132 waslock = 0 +2900132 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2900165 512 16777728 +~~~ +2900270 DOWN 10 +2900270 0 16777728 +~~~ +~~~ +2900289 0 16779776 +~~~ +~~~ +2900291 0 16779264 +2900292 homeCount = 12 +2900292 waitCount = 4 +2900293 ripCount = 4 +2900293 locktype1 = 2 +2900294 locktype2 = 1 +2900294 locktype3 = 0 +2900295 goalCount = 1 +2900295 goalTotal = 1 +2900296 otherCount = 7 +~~~ +2900317 0 2048 +2900502 UP 10 +2900503 waslock = 0 +2900502 512 2048 +~~~ +2904478 DOWN 10 +2904478 0 2048 +~~~ +~~~ +~~~ +~~~ +2904501 homeCount = 12 +2904501 waitCount = 4 +2904502 ripCount = 4 +2904502 locktype1 = 2 +2904503 locktype2 = 1 +2904503 locktype3 = 0 +2904504 goalCount = 1 +2904504 goalTotal = 1 +2904505 otherCount = 7 +~~~ +2906493 UP 12 +2906493 2048 2048 +2907045 DOWN 12 +2907045 0 2048 +2907073 UP 12 +2907073 2048 2048 +2907265 DOWN 12 +2907265 0 2048 +2907322 UP 12 +2907322 2048 2048 +2908818 DOWN 12 +2908818 0 2048 +2908848 UP 12 +2908848 2048 2048 +2908879 DOWN 12 +2908879 0 2048 +2908896 UP 12 +2908896 2048 2048 +2908993 CLICK1 +2908993 CLICK2 +~~~ +~~~ +~~~ +2909022 2048 67110912 +~~~ +2909172 2048 2048 +2917583 DOWN 12 +2917583 0 2048 +~~~ +~~~ +2917608 0 0 +~~~ +~~~ +2917610 0 1 +~~~ +~~~ +2917612 0 3 +~~~ +~~~ +2917614 0 7 +~~~ +~~~ +2917616 0 15 +~~~ +~~~ +2917618 0 31 +~~~ +~~~ +2917619 0 63 +~~~ +~~~ +2917621 0 127 +~~~ +~~~ +2917623 0 255 +2917624 homeCount = 12 +2917624 waitCount = 5 +2917625 ripCount = 4 +2917625 locktype1 = 2 +2917626 locktype2 = 1 +2917626 locktype3 = 0 +2917647 goalCount = 1 +2917648 goalTotal = 1 +2917648 otherCount = 7 +~~~ +2917649 CURRENTGOAL IS [5] +~~~ +2926969 UP 10 +2926969 waslock = 0 +2926969 512 255 +~~~ +2926992 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2926999 512 254 +~~~ +~~~ +2927001 512 252 +~~~ +~~~ +2927003 512 248 +~~~ +~~~ +2927005 512 240 +~~~ +~~~ +2927006 512 224 +~~~ +~~~ +2927008 512 192 +~~~ +~~~ +2927010 512 128 +~~~ +~~~ +2927012 512 0 +~~~ +~~~ +~~~ +2927150 0 0 +2927358 512 0 +2927666 0 0 +2929005 UP 11 +2929005 1024 0 +2930091 DOWN 11 +2930091 0 0 +2930141 UP 11 +2930141 1024 0 +2930869 DOWN 11 +2930869 0 0 +2930890 UP 11 +2930890 1024 0 +2930901 DOWN 11 +2930901 0 0 +2930965 UP 11 +2930965 1024 0 +2932611 DOWN 11 +2932611 0 0 +2932703 UP 11 +2932703 1024 0 +2932933 DOWN 11 +2932933 0 0 +2937462 512 0 +2938258 0 0 +2938311 512 0 +2938361 0 0 +2938456 512 0 +2938511 0 0 +2938584 512 0 +2938784 0 0 +2950209 512 0 +2950384 0 0 +2951992 LOCKEND +~~~ +~~~ +~~~ +2952011 0 512 +2955226 UP 10 +2955226 waslock = 0 +2955226 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2955256 512 16777728 +~~~ +2955406 512 512 +2955469 DOWN 10 +2955469 0 512 +~~~ +~~~ +2955491 0 1536 +~~~ +~~~ +2955492 0 1024 +2955493 homeCount = 13 +2955494 waitCount = 5 +2955494 ripCount = 4 +2955495 locktype1 = 2 +2955495 locktype2 = 2 +2955496 locktype3 = 0 +2955496 goalCount = 1 +2955497 goalTotal = 1 +2955497 otherCount = 7 +~~~ +2955567 UP 10 +2955567 waslock = 0 +2955567 512 1024 +~~~ +2959020 DOWN 10 +2959020 0 1024 +2959034 UP 10 +2959035 waslock = 0 +2959034 512 1024 +~~~ +~~~ +~~~ +~~~ +2959056 homeCount = 13 +2959056 waitCount = 5 +2959057 ripCount = 4 +2959057 locktype1 = 2 +2959057 locktype2 = 2 +2959058 locktype3 = 0 +2959058 goalCount = 1 +2959059 goalTotal = 1 +2959059 otherCount = 7 +~~~ +~~~ +2959132 DOWN 10 +2959132 0 1024 +~~~ +~~~ +~~~ +~~~ +2959154 homeCount = 13 +2959154 waitCount = 5 +2959155 ripCount = 4 +2959155 locktype1 = 2 +2959156 locktype2 = 2 +2959156 locktype3 = 0 +2959157 goalCount = 1 +2959157 goalTotal = 1 +2959158 otherCount = 7 +~~~ +2960777 UP 11 +2960777 1024 1024 +2962087 DOWN 11 +2962087 0 1024 +2962136 UP 11 +2962136 1024 1024 +2964777 BEEP1 +2964777 BEEP2 +~~~ +~~~ +~~~ +2964802 1024 33555456 +~~~ +2964952 1024 1024 +2971806 DOWN 11 +2971806 0 1024 +~~~ +~~~ +2971831 0 0 +~~~ +~~~ +2971833 0 1 +~~~ +~~~ +2971835 0 3 +~~~ +~~~ +2971837 0 7 +~~~ +~~~ +2971838 0 15 +~~~ +~~~ +2971840 0 31 +~~~ +~~~ +2971842 0 63 +~~~ +~~~ +2971844 0 127 +~~~ +~~~ +2971846 0 255 +2971847 homeCount = 13 +2971847 waitCount = 5 +2971848 ripCount = 5 +2971848 locktype1 = 2 +2971849 locktype2 = 2 +2971870 locktype3 = 0 +2971870 goalCount = 1 +2971871 goalTotal = 1 +2971871 otherCount = 7 +~~~ +2971872 CURRENTGOAL IS [5] +~~~ +2971877 UP 11 +2971877 1024 255 +2971903 DOWN 11 +2971903 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +2971937 homeCount = 13 +2971938 waitCount = 5 +2971938 ripCount = 5 +2971939 locktype1 = 2 +2971939 locktype2 = 2 +2971940 locktype3 = 0 +2971940 goalCount = 1 +2971940 goalTotal = 1 +2971941 otherCount = 7 +~~~ +2971942 CURRENTGOAL IS [5] +~~~ +2976396 UP 5 +2976396 16 255 +~~~ +~~~ +2976414 outer reward +~~~ +2976414 16 1048831 +~~~ +~~~ +2976423 DOWN 5 +2976423 0 1048831 +~~~ +~~~ +2976442 0 1048830 +~~~ +~~~ +2976444 0 1048828 +~~~ +~~~ +2976446 0 1048824 +~~~ +~~~ +2976448 0 1048816 +~~~ +~~~ +2976450 0 1048800 +~~~ +~~~ +2976451 0 1048768 +~~~ +~~~ +2976453 0 1048704 +~~~ +~~~ +2976455 0 1048576 +~~~ +~~~ +2976457 0 1049088 +2976458 homeCount = 13 +2976459 waitCount = 5 +2976459 ripCount = 5 +2976480 locktype1 = 2 +2976481 locktype2 = 2 +2976481 locktype3 = 0 +2976482 goalCount = 2 +2976482 goalTotal = 2 +2976483 otherCount = 7 +~~~ +2976745 16 1049088 +2976864 16 512 +2977119 DOWN 5 +2977119 0 512 +2977139 16 512 +2977247 DOWN 5 +2977247 0 512 +2977273 16 512 +2977378 DOWN 5 +2977378 0 512 +2977408 16 512 +2977520 DOWN 5 +2977520 0 512 +2977546 16 512 +2977661 DOWN 5 +2977661 0 512 +2977678 16 512 +2977805 DOWN 5 +2977805 0 512 +2977822 16 512 +2977954 DOWN 5 +2977954 0 512 +2977960 16 512 +2978103 DOWN 5 +2978103 0 512 +2978108 16 512 +2984704 DOWN 5 +2984704 0 512 +2984779 16 512 +2984829 DOWN 5 +2984829 0 512 +2988561 UP 10 +2988561 waslock = 0 +2988561 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +2988589 512 16777728 +~~~ +2988710 DOWN 10 +2988710 0 16777728 +~~~ +~~~ +2988736 0 16779776 +~~~ +~~~ +2988737 0 16779264 +2988738 homeCount = 14 +2988739 waitCount = 5 +2988739 ripCount = 5 +2988740 locktype1 = 2 +2988740 locktype2 = 2 +2988741 locktype3 = 0 +2988741 goalCount = 2 +2988742 goalTotal = 2 +2988742 otherCount = 7 +~~~ +2988763 0 2048 +2988869 UP 10 +2988869 waslock = 0 +2988869 512 2048 +~~~ +2992466 DOWN 10 +2992466 0 2048 +~~~ +~~~ +~~~ +~~~ +2992487 homeCount = 14 +2992487 waitCount = 5 +2992488 ripCount = 5 +2992488 locktype1 = 2 +2992489 locktype2 = 2 +2992489 locktype3 = 0 +2992490 goalCount = 2 +2992490 goalTotal = 2 +2992491 otherCount = 7 +~~~ +2994131 UP 12 +2994131 2048 2048 +2994583 DOWN 12 +2994583 0 2048 +2994618 UP 12 +2994618 2048 2048 +2997762 DOWN 12 +2997762 0 2048 +2997801 UP 12 +2997801 2048 2048 +2998062 DOWN 12 +2998062 0 2048 +2998088 UP 12 +2998088 2048 2048 +2998631 CLICK1 +2998631 CLICK2 +~~~ +~~~ +~~~ +2998655 2048 67110912 +~~~ +2998805 2048 2048 +3004157 DOWN 12 +3004156 0 2048 +~~~ +~~~ +3004183 0 0 +~~~ +~~~ +3004185 0 1 +~~~ +~~~ +3004187 0 3 +~~~ +~~~ +3004188 0 7 +~~~ +~~~ +3004190 0 15 +~~~ +~~~ +3004192 0 31 +~~~ +~~~ +3004194 0 63 +~~~ +~~~ +3004196 0 127 +~~~ +~~~ +3004197 0 255 +3004198 homeCount = 14 +3004199 waitCount = 6 +3004199 ripCount = 5 +3004200 locktype1 = 2 +3004200 locktype2 = 2 +3004201 locktype3 = 0 +3004222 goalCount = 2 +3004222 goalTotal = 2 +3004223 otherCount = 7 +~~~ +3004224 CURRENTGOAL IS [5] +~~~ +3008015 UP 4 +3008015 8 255 +~~~ +~~~ +3008683 DOWN 4 +3008683 0 255 +~~~ +~~~ +3008705 0 254 +~~~ +~~~ +3008706 0 252 +~~~ +~~~ +3008708 0 248 +~~~ +~~~ +3008710 0 240 +~~~ +~~~ +3008712 0 224 +~~~ +~~~ +3008714 0 192 +~~~ +~~~ +3008716 0 128 +~~~ +~~~ +3008717 0 0 +~~~ +~~~ +3008719 0 512 +3008720 homeCount = 14 +3008721 waitCount = 6 +3008721 ripCount = 5 +3008722 locktype1 = 2 +3008722 locktype2 = 2 +3008743 locktype3 = 0 +3008743 goalCount = 2 +3008744 goalTotal = 2 +3008744 otherCount = 8 +~~~ +3008745 8 512 +3008988 DOWN 4 +3008988 0 512 +3012101 UP 10 +3012101 waslock = 0 +3012101 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3012131 512 16777728 +~~~ +3012281 512 512 +3012321 DOWN 10 +3012321 0 512 +3012338 UP 10 +3012338 waslock = 0 +3012338 512 512 +~~~ +~~~ +3012356 512 1536 +~~~ +~~~ +3012358 512 1024 +3012359 homeCount = 15 +3012359 waitCount = 6 +3012360 ripCount = 5 +3012360 locktype1 = 2 +3012361 locktype2 = 2 +3012361 locktype3 = 0 +3012362 goalCount = 2 +3012362 goalTotal = 2 +3012363 otherCount = 8 +~~~ +~~~ +3016884 DOWN 10 +3016884 0 1024 +~~~ +~~~ +~~~ +~~~ +3016910 homeCount = 15 +3016910 waitCount = 6 +3016911 ripCount = 5 +3016911 locktype1 = 2 +3016912 locktype2 = 2 +3016912 locktype3 = 0 +3016913 goalCount = 2 +3016913 goalTotal = 2 +3016913 otherCount = 8 +~~~ +3016929 UP 10 +3016930 waslock = 0 +3016929 512 1024 +~~~ +3016971 DOWN 10 +3016971 0 1024 +~~~ +~~~ +~~~ +~~~ +3017003 homeCount = 15 +3017004 waitCount = 6 +3017004 ripCount = 5 +3017005 locktype1 = 2 +3017005 locktype2 = 2 +3017006 locktype3 = 0 +3017006 goalCount = 2 +3017007 goalTotal = 2 +3017007 otherCount = 8 +~~~ +3018772 UP 11 +3018772 1024 1024 +3022772 BEEP1 +3022772 BEEP2 +~~~ +~~~ +~~~ +3022798 1024 33555456 +~~~ +3022948 1024 1024 +3026798 DOWN 11 +3026798 0 1024 +3026812 UP 11 +3026812 1024 1024 +~~~ +~~~ +3026816 1024 0 +~~~ +~~~ +3026818 1024 1 +~~~ +~~~ +3026820 1024 3 +~~~ +~~~ +3026822 1024 7 +~~~ +~~~ +3026824 1024 15 +~~~ +~~~ +3026826 1024 31 +~~~ +~~~ +3026827 1024 63 +~~~ +~~~ +3026829 1024 127 +~~~ +~~~ +3026831 1024 255 +3026832 homeCount = 15 +3026833 waitCount = 6 +3026833 ripCount = 6 +3026834 locktype1 = 2 +3026855 locktype2 = 2 +3026855 locktype3 = 0 +3026856 goalCount = 2 +3026856 goalTotal = 2 +3026857 otherCount = 8 +~~~ +3026858 CURRENTGOAL IS [5] +~~~ +3029131 DOWN 11 +3029131 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3029172 homeCount = 15 +3029172 waitCount = 6 +3029173 ripCount = 6 +3029173 locktype1 = 2 +3029174 locktype2 = 2 +3029174 locktype3 = 0 +3029175 goalCount = 2 +3029175 goalTotal = 2 +3029176 otherCount = 8 +~~~ +3029177 CURRENTGOAL IS [5] +~~~ +3029180 UP 11 +3029180 1024 255 +3029224 DOWN 11 +3029224 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3029261 homeCount = 15 +3029262 waitCount = 6 +3029262 ripCount = 6 +3029263 locktype1 = 2 +3029263 locktype2 = 2 +3029264 locktype3 = 0 +3029264 goalCount = 2 +3029265 goalTotal = 2 +3029265 otherCount = 8 +~~~ +3029266 CURRENTGOAL IS [5] +~~~ +3033041 UP 5 +3033041 16 255 +~~~ +~~~ +3033069 outer reward +~~~ +3033069 16 1048831 +~~~ +~~~ +3033156 DOWN 5 +3033156 0 1048831 +~~~ +~~~ +3033176 0 1048830 +~~~ +~~~ +3033178 0 1048828 +~~~ +~~~ +3033180 0 1048824 +~~~ +~~~ +3033182 0 1048816 +~~~ +~~~ +3033183 0 1048800 +~~~ +~~~ +3033185 0 1048768 +~~~ +~~~ +3033187 0 1048704 +~~~ +~~~ +3033189 0 1048576 +~~~ +~~~ +3033191 0 1049088 +3033192 homeCount = 15 +3033192 waitCount = 6 +3033193 ripCount = 6 +3033214 locktype1 = 2 +3033214 locktype2 = 2 +3033215 locktype3 = 0 +3033215 goalCount = 3 +3033215 goalTotal = 3 +3033216 otherCount = 8 +~~~ +3033216 16 1049088 +3033519 16 512 +3033749 DOWN 5 +3033749 0 512 +3033766 16 512 +3033865 DOWN 5 +3033865 0 512 +3033899 16 512 +3033999 DOWN 5 +3033999 0 512 +3034031 16 512 +3034141 DOWN 5 +3034141 0 512 +3034169 16 512 +3034280 DOWN 5 +3034280 0 512 +3034309 16 512 +3034429 DOWN 5 +3034429 0 512 +3034450 16 512 +3034576 DOWN 5 +3034576 0 512 +3034597 16 512 +3035054 DOWN 5 +3035054 0 512 +3035067 16 512 +3042062 DOWN 5 +3042062 0 512 +3042075 16 512 +3042174 DOWN 5 +3042174 0 512 +3045701 UP 10 +3045701 waslock = 0 +3045701 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3045733 512 16777728 +~~~ +3045883 512 512 +3045949 DOWN 10 +3045949 0 512 +3045963 UP 10 +3045963 waslock = 0 +3045963 512 512 +~~~ +~~~ +3045967 512 2560 +~~~ +~~~ +3045969 512 2048 +3045970 homeCount = 16 +3045970 waitCount = 6 +3045971 ripCount = 6 +3045971 locktype1 = 2 +3045972 locktype2 = 2 +3045972 locktype3 = 0 +3045973 goalCount = 3 +3045973 goalTotal = 3 +3045973 otherCount = 8 +~~~ +~~~ +3051491 DOWN 10 +3051491 0 2048 +~~~ +~~~ +~~~ +~~~ +3051519 homeCount = 16 +3051520 waitCount = 6 +3051520 ripCount = 6 +3051521 locktype1 = 2 +3051521 locktype2 = 2 +3051522 locktype3 = 0 +3051522 goalCount = 3 +3051523 goalTotal = 3 +3051523 otherCount = 8 +~~~ +3053813 UP 12 +3053813 2048 2048 +3054243 DOWN 12 +3054243 0 2048 +3054339 UP 12 +3054339 2048 2048 +3054607 DOWN 12 +3054607 0 2048 +3054671 UP 12 +3054671 2048 2048 +3056813 CLICK1 +3056813 CLICK2 +~~~ +~~~ +~~~ +3056838 2048 67110912 +~~~ +3056987 2048 2048 +3061603 DOWN 12 +3061603 0 2048 +~~~ +~~~ +3061626 0 0 +~~~ +~~~ +3061627 0 1 +~~~ +~~~ +3061629 0 3 +~~~ +~~~ +3061631 0 7 +~~~ +~~~ +3061633 0 15 +~~~ +~~~ +3061635 0 31 +~~~ +~~~ +3061636 0 63 +~~~ +~~~ +3061638 0 127 +~~~ +~~~ +3061640 0 255 +3061641 homeCount = 16 +3061642 waitCount = 7 +3061642 ripCount = 6 +3061643 locktype1 = 2 +3061643 locktype2 = 2 +3061664 locktype3 = 0 +3061665 goalCount = 3 +3061665 goalTotal = 3 +3061666 otherCount = 8 +~~~ +3061667 CURRENTGOAL IS [5] +~~~ +3065106 UP 5 +3065106 16 255 +~~~ +~~~ +3065129 outer reward +~~~ +3065130 16 1048831 +~~~ +~~~ +3065146 DOWN 5 +3065146 0 1048831 +~~~ +~~~ +3065166 0 1048830 +~~~ +~~~ +3065168 0 1048828 +~~~ +~~~ +3065170 0 1048824 +~~~ +~~~ +3065171 0 1048816 +~~~ +~~~ +3065173 0 1048800 +~~~ +~~~ +3065175 0 1048768 +~~~ +~~~ +3065177 0 1048704 +~~~ +~~~ +3065179 0 1048576 +~~~ +~~~ +3065181 0 1049088 +3065182 homeCount = 16 +3065182 waitCount = 7 +3065183 ripCount = 6 +3065204 locktype1 = 2 +3065204 locktype2 = 2 +3065205 locktype3 = 0 +3065205 goalCount = 4 +3065206 goalTotal = 4 +3065206 otherCount = 8 +~~~ +3065207 16 1049088 +3065270 DOWN 5 +3065270 0 1049088 +3065325 16 1049088 +3065579 16 512 +3065887 DOWN 5 +3065887 0 512 +3065911 16 512 +3066021 DOWN 5 +3066021 0 512 +3066053 16 512 +3066168 DOWN 5 +3066168 0 512 +3066196 16 512 +3066317 DOWN 5 +3066317 0 512 +3066340 16 512 +3074351 DOWN 5 +3074351 0 512 +3074360 16 512 +3075013 DOWN 5 +3075013 0 512 +3075057 16 512 +3076432 DOWN 5 +3076432 0 512 +3080377 UP 10 +3080378 waslock = 0 +3080377 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3080403 512 16777728 +~~~ +3080553 512 512 +3080585 DOWN 10 +3080585 0 512 +~~~ +~~~ +3080606 0 2560 +~~~ +~~~ +3080608 0 2048 +3080609 homeCount = 17 +3080610 waitCount = 7 +3080610 ripCount = 6 +3080611 locktype1 = 2 +3080611 locktype2 = 2 +3080612 locktype3 = 0 +3080612 goalCount = 4 +3080613 goalTotal = 4 +3080613 otherCount = 8 +~~~ +3080614 UP 10 +3080635 waslock = 0 +3080614 512 2048 +~~~ +3084727 DOWN 10 +3084727 0 2048 +~~~ +~~~ +~~~ +3084747 UP 10 +3084747 waslock = 0 +3084747 512 2048 +~~~ +3084749 homeCount = 17 +3084750 waitCount = 7 +3084750 ripCount = 6 +3084751 locktype1 = 2 +3084751 locktype2 = 2 +3084751 locktype3 = 0 +3084752 goalCount = 4 +3084752 goalTotal = 4 +3084753 otherCount = 8 +~~~ +~~~ +3084815 DOWN 10 +3084815 0 2048 +~~~ +~~~ +~~~ +~~~ +3084840 homeCount = 17 +3084840 waitCount = 7 +3084841 ripCount = 6 +3084841 locktype1 = 2 +3084842 locktype2 = 2 +3084842 locktype3 = 0 +3084843 goalCount = 4 +3084843 goalTotal = 4 +3084844 otherCount = 8 +~~~ +3086263 UP 12 +3086263 2048 2048 +3086712 DOWN 12 +3086712 0 2048 +3086759 UP 12 +3086759 2048 2048 +3088514 CLICK1 +3088514 CLICK2 +~~~ +~~~ +~~~ +3088539 2048 67110912 +~~~ +3088689 2048 2048 +3093822 DOWN 12 +3093822 0 2048 +~~~ +~~~ +3093848 0 0 +~~~ +~~~ +3093849 0 1 +~~~ +~~~ +3093851 0 3 +~~~ +~~~ +3093853 0 7 +~~~ +~~~ +3093855 0 15 +~~~ +~~~ +3093857 0 31 +~~~ +~~~ +3093858 0 63 +~~~ +~~~ +3093860 0 127 +~~~ +~~~ +3093862 0 255 +3093863 homeCount = 17 +3093864 waitCount = 8 +3093864 ripCount = 6 +3093865 locktype1 = 2 +3093865 locktype2 = 2 +3093866 locktype3 = 0 +3093887 goalCount = 4 +3093887 goalTotal = 4 +3093888 otherCount = 8 +~~~ +3093889 CURRENTGOAL IS [5] +~~~ +3093890 UP 12 +3093890 2048 255 +3096724 DOWN 12 +3096724 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3096762 homeCount = 17 +3096762 waitCount = 8 +3096763 ripCount = 6 +3096763 locktype1 = 2 +3096764 locktype2 = 2 +3096764 locktype3 = 0 +3096765 goalCount = 4 +3096765 goalTotal = 4 +3096766 otherCount = 8 +~~~ +3096767 CURRENTGOAL IS [5] +~~~ +3096796 UP 12 +3096796 2048 255 +3096833 DOWN 12 +3096833 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3096874 homeCount = 17 +3096874 waitCount = 8 +3096875 ripCount = 6 +3096875 locktype1 = 2 +3096876 locktype2 = 2 +3096876 locktype3 = 0 +3096877 goalCount = 4 +3096877 goalTotal = 4 +3096877 otherCount = 8 +~~~ +3096879 CURRENTGOAL IS [5] +~~~ +3100868 UP 5 +3100868 16 255 +~~~ +~~~ +3100887 outer reward +~~~ +3100888 16 1048831 +~~~ +~~~ +3100913 DOWN 5 +3100913 0 1048831 +~~~ +~~~ +3100937 0 1048830 +~~~ +~~~ +3100939 0 1048828 +~~~ +~~~ +3100941 0 1048824 +~~~ +~~~ +3100942 0 1048816 +~~~ +~~~ +3100944 0 1048800 +~~~ +~~~ +3100946 0 1048768 +~~~ +~~~ +3100948 0 1048704 +~~~ +3100949 16 1048704 +~~~ +~~~ +3100951 16 1048576 +~~~ +3100952 16 1049088 +3100953 homeCount = 17 +3100953 waitCount = 8 +3100974 ripCount = 6 +3100975 locktype1 = 2 +3100975 locktype2 = 2 +3100976 locktype3 = 0 +3100976 goalCount = 5 +3100977 goalTotal = 5 +3100977 otherCount = 8 +~~~ +3101030 DOWN 5 +3101030 0 1049088 +3101085 16 1049088 +3101337 16 512 +3101521 DOWN 5 +3101521 0 512 +3101537 16 512 +3101644 DOWN 5 +3101644 0 512 +3101675 16 512 +3101791 DOWN 5 +3101791 0 512 +3101820 16 512 +3101934 DOWN 5 +3101934 0 512 +3101961 16 512 +3110337 DOWN 5 +3110337 0 512 +3110357 16 512 +3110459 DOWN 5 +3110459 0 512 +3110518 16 512 +3110553 DOWN 5 +3110553 0 512 +3115418 UP 10 +3115418 waslock = 0 +3115418 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3115442 512 16777728 +~~~ +3115592 512 512 +3115661 DOWN 10 +3115661 0 512 +~~~ +~~~ +3115693 0 2560 +~~~ +~~~ +3115694 0 2048 +3115695 homeCount = 18 +3115696 waitCount = 8 +3115696 ripCount = 6 +3115697 locktype1 = 2 +3115697 locktype2 = 2 +3115698 locktype3 = 0 +3115698 goalCount = 5 +3115699 goalTotal = 5 +3115699 otherCount = 8 +~~~ +3115746 UP 10 +3115746 waslock = 0 +3115746 512 2048 +~~~ +3119352 DOWN 10 +3119352 0 2048 +~~~ +~~~ +~~~ +~~~ +3119379 homeCount = 18 +3119379 waitCount = 8 +3119380 ripCount = 6 +3119380 locktype1 = 2 +3119381 locktype2 = 2 +3119381 locktype3 = 0 +3119382 goalCount = 5 +3119382 goalTotal = 5 +3119383 otherCount = 8 +~~~ +3120777 UP 12 +3120777 2048 2048 +3123277 CLICK1 +3123277 CLICK2 +~~~ +~~~ +~~~ +3123299 2048 67110912 +~~~ +3123449 2048 2048 +3130663 DOWN 12 +3130663 0 2048 +~~~ +~~~ +3130687 0 0 +~~~ +~~~ +3130689 0 1 +~~~ +~~~ +3130691 0 3 +~~~ +~~~ +3130693 0 7 +~~~ +~~~ +3130695 0 15 +~~~ +~~~ +3130696 0 31 +~~~ +~~~ +3130698 0 63 +~~~ +~~~ +3130700 0 127 +~~~ +~~~ +3130702 0 255 +3130703 homeCount = 18 +3130703 waitCount = 9 +3130704 ripCount = 6 +3130704 locktype1 = 2 +3130705 locktype2 = 2 +3130705 locktype3 = 0 +3130726 goalCount = 5 +3130726 goalTotal = 5 +3130727 otherCount = 8 +~~~ +3130728 CURRENTGOAL IS [5] +~~~ +3130749 UP 12 +3130749 2048 255 +3130773 DOWN 12 +3130773 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3130808 homeCount = 18 +3130809 waitCount = 9 +3130809 ripCount = 6 +3130810 locktype1 = 2 +3130810 locktype2 = 2 +3130811 locktype3 = 0 +3130811 goalCount = 5 +3130812 goalTotal = 5 +3130812 otherCount = 8 +~~~ +3130813 CURRENTGOAL IS [5] +~~~ +3130908 UP 12 +3130908 2048 255 +3131207 DOWN 12 +3131207 0 255 +3131223 UP 12 +3131223 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131244 homeCount = 18 +3131244 waitCount = 9 +3131245 ripCount = 6 +3131245 locktype1 = 2 +3131246 locktype2 = 2 +3131246 locktype3 = 0 +3131247 goalCount = 5 +3131247 goalTotal = 5 +3131248 otherCount = 8 +~~~ +3131249 CURRENTGOAL IS [5] +~~~ +3131887 DOWN 12 +3131887 0 255 +3131901 UP 12 +3131901 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131929 DOWN 12 +3131929 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131935 homeCount = 18 +3131936 waitCount = 9 +3131936 ripCount = 6 +3131937 locktype1 = 2 +3131937 locktype2 = 2 +3131938 locktype3 = 0 +3131938 goalCount = 5 +3131939 goalTotal = 5 +3131939 otherCount = 8 +~~~ +3131940 CURRENTGOAL IS [5] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3131976 homeCount = 18 +3131977 waitCount = 9 +3131977 ripCount = 6 +3131978 locktype1 = 2 +3131978 locktype2 = 2 +3131978 locktype3 = 0 +3131979 goalCount = 5 +3131979 goalTotal = 5 +3131980 otherCount = 8 +~~~ +3131981 CURRENTGOAL IS [5] +~~~ +3135451 UP 5 +3135451 16 255 +~~~ +~~~ +3135472 outer reward +~~~ +3135472 16 1048831 +~~~ +~~~ +3135498 DOWN 5 +3135498 0 1048831 +~~~ +~~~ +3135518 0 1048830 +~~~ +~~~ +3135520 0 1048828 +~~~ +~~~ +3135521 0 1048824 +~~~ +~~~ +3135523 0 1048816 +~~~ +~~~ +3135525 0 1048800 +~~~ +~~~ +3135527 0 1048768 +~~~ +~~~ +3135529 0 1048704 +~~~ +~~~ +3135531 0 1048576 +~~~ +~~~ +3135533 0 1049088 +3135534 homeCount = 18 +3135534 waitCount = 9 +3135534 ripCount = 6 +3135555 locktype1 = 2 +3135556 locktype2 = 2 +3135556 locktype3 = 0 +3135557 goalCount = 6 +3135557 goalTotal = 6 +3135558 otherCount = 8 +~~~ +3135701 16 1049088 +3135922 16 512 +3136141 DOWN 5 +3136141 0 512 +3136162 16 512 +3136267 DOWN 5 +3136267 0 512 +3136300 16 512 +3136417 DOWN 5 +3136417 0 512 +3136440 16 512 +3136571 DOWN 5 +3136571 0 512 +3136593 16 512 +3136726 DOWN 5 +3136726 0 512 +3136735 16 512 +3144812 DOWN 5 +3144812 0 512 +3144860 16 512 +3144921 DOWN 5 +3144921 0 512 +3149602 UP 10 +3149602 waslock = 0 +3149602 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3149626 512 16777728 +~~~ +3149776 512 512 +3149906 DOWN 10 +3149906 0 512 +~~~ +~~~ +3149930 0 2560 +~~~ +~~~ +3149931 0 2048 +3149932 homeCount = 19 +3149933 waitCount = 9 +3149933 ripCount = 6 +3149934 locktype1 = 2 +3149934 locktype2 = 2 +3149935 locktype3 = 0 +3149935 goalCount = 6 +3149936 goalTotal = 6 +3149936 otherCount = 8 +~~~ +3149950 UP 10 +3149950 waslock = 0 +3149950 512 2048 +~~~ +3154133 DOWN 10 +3154133 0 2048 +~~~ +~~~ +~~~ +~~~ +3154161 homeCount = 19 +3154161 waitCount = 9 +3154162 ripCount = 6 +3154162 locktype1 = 2 +3154163 locktype2 = 2 +3154163 locktype3 = 0 +3154164 goalCount = 6 +3154164 goalTotal = 6 +3154165 otherCount = 8 +~~~ +3155594 UP 12 +3155594 2048 2048 +3158393 DOWN 12 +3158393 0 2048 +3158406 UP 12 +3158406 2048 2048 +3158844 CLICK1 +3158844 CLICK2 +~~~ +~~~ +~~~ +3158876 2048 67110912 +~~~ +3159026 2048 2048 +3163507 DOWN 12 +3163507 0 2048 +~~~ +~~~ +3163529 0 0 +~~~ +~~~ +3163531 0 1 +~~~ +~~~ +3163533 0 3 +~~~ +~~~ +3163535 0 7 +~~~ +~~~ +3163536 0 15 +~~~ +~~~ +3163538 0 31 +~~~ +~~~ +3163540 0 63 +~~~ +~~~ +3163542 0 127 +~~~ +~~~ +3163544 0 255 +3163545 homeCount = 19 +3163545 waitCount = 10 +3163546 ripCount = 6 +3163546 locktype1 = 2 +3163547 locktype2 = 2 +3163568 locktype3 = 0 +3163568 goalCount = 6 +3163569 goalTotal = 6 +3163569 otherCount = 8 +~~~ +3163570 CURRENTGOAL IS [5] +~~~ +3163578 UP 12 +3163578 2048 255 +3163598 DOWN 12 +3163598 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3163638 homeCount = 19 +3163638 waitCount = 10 +3163639 ripCount = 6 +3163639 locktype1 = 2 +3163640 locktype2 = 2 +3163640 locktype3 = 0 +3163641 goalCount = 6 +3163641 goalTotal = 6 +3163642 otherCount = 8 +~~~ +3163643 CURRENTGOAL IS [5] +~~~ +3166713 UP 5 +3166713 16 255 +~~~ +~~~ +3166733 outer reward +~~~ +3166734 16 1048831 +~~~ +~~~ +3166852 DOWN 5 +3166852 0 1048831 +~~~ +~~~ +3166871 0 1048830 +~~~ +~~~ +3166872 0 1048828 +~~~ +~~~ +3166874 0 1048824 +~~~ +~~~ +3166876 0 1048816 +~~~ +~~~ +3166878 0 1048800 +~~~ +~~~ +3166880 0 1048768 +~~~ +~~~ +3166881 0 1048704 +~~~ +~~~ +3166883 0 1048576 +~~~ +~~~ +3166885 0 1049088 +3166886 homeCount = 19 +3166887 waitCount = 10 +3166887 ripCount = 6 +3166908 locktype1 = 2 +3166909 locktype2 = 2 +3166909 locktype3 = 0 +3166910 goalCount = 7 +3166910 goalTotal = 7 +3166911 otherCount = 8 +~~~ +3166920 16 1049088 +3167183 16 512 +3167467 DOWN 5 +3167467 0 512 +3167492 16 512 +3167596 DOWN 5 +3167596 0 512 +3167627 16 512 +3167749 DOWN 5 +3167749 0 512 +3167769 16 512 +3167902 DOWN 5 +3167902 0 512 +3167918 16 512 +3168063 DOWN 5 +3168063 0 512 +3168067 16 512 +3168216 DOWN 5 +3168216 0 512 +3168221 16 512 +3173245 DOWN 5 +3173245 0 512 +3173274 16 512 +3173358 DOWN 5 +3173358 0 512 +3173398 16 512 +3173533 DOWN 5 +3173533 0 512 +3173545 16 512 +3174748 DOWN 5 +3174748 0 512 +3178391 UP 10 +3178391 waslock = 0 +3178391 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3178419 512 16777728 +~~~ +3178513 DOWN 10 +3178513 0 16777728 +~~~ +~~~ +3178533 0 16779776 +~~~ +~~~ +3178535 0 16779264 +3178536 homeCount = 20 +3178536 waitCount = 10 +3178537 ripCount = 6 +3178537 locktype1 = 2 +3178538 locktype2 = 2 +3178538 locktype3 = 0 +3178539 goalCount = 7 +3178539 goalTotal = 7 +3178540 otherCount = 8 +~~~ +3178565 UP 10 +3178565 waslock = 0 +3178565 512 16779264 +3178569 512 2048 +~~~ +3181110 DOWN 10 +3181110 0 2048 +~~~ +~~~ +~~~ +~~~ +3181136 homeCount = 20 +3181137 waitCount = 10 +3181137 ripCount = 6 +3181138 locktype1 = 2 +3181138 locktype2 = 2 +3181138 locktype3 = 0 +3181139 goalCount = 7 +3181139 goalTotal = 7 +3181140 otherCount = 8 +~~~ +3181148 UP 10 +3181148 waslock = 0 +3181148 512 2048 +~~~ +3182879 DOWN 10 +3182879 0 2048 +~~~ +~~~ +~~~ +~~~ +3182909 homeCount = 20 +3182909 waitCount = 10 +3182910 ripCount = 6 +3182910 locktype1 = 2 +3182911 locktype2 = 2 +3182911 locktype3 = 0 +3182912 goalCount = 7 +3182912 goalTotal = 7 +3182912 otherCount = 8 +~~~ +3184248 UP 12 +3184248 2048 2048 +3184441 DOWN 12 +3184441 0 2048 +3184642 LOCKOUT 3 +~~~ +3184664 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3184670 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3184821 UP 12 +3184821 2048 0 +3186676 DOWN 12 +3186676 0 0 +3186687 UP 12 +3186687 2048 0 +3186880 DOWN 12 +3186880 0 0 +3186888 UP 12 +3186888 2048 0 +3192209 DOWN 12 +3192209 0 0 +3203995 512 0 +3204208 0 0 +3204247 512 0 +3204551 0 0 +3209664 LOCKEND +~~~ +~~~ +~~~ +3209684 0 512 +3211290 UP 10 +3211291 waslock = 0 +3211290 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3211319 512 16777728 +~~~ +3211469 512 512 +3211753 DOWN 10 +3211753 0 512 +~~~ +~~~ +3211773 0 2560 +~~~ +~~~ +3211775 0 2048 +3211776 homeCount = 21 +3211776 waitCount = 10 +3211777 ripCount = 6 +3211777 locktype1 = 2 +3211778 locktype2 = 2 +3211778 locktype3 = 1 +3211779 goalCount = 7 +3211779 goalTotal = 7 +3211780 otherCount = 8 +~~~ +3212060 UP 10 +3212061 waslock = 0 +3212060 512 2048 +~~~ +3212477 DOWN 10 +3212477 0 2048 +3212487 UP 10 +3212488 waslock = 0 +3212487 512 2048 +~~~ +~~~ +~~~ +~~~ +3212507 homeCount = 21 +3212508 waitCount = 10 +3212508 ripCount = 6 +3212509 locktype1 = 2 +3212509 locktype2 = 2 +3212510 locktype3 = 1 +3212510 goalCount = 7 +3212511 goalTotal = 7 +3212511 otherCount = 8 +~~~ +~~~ +3215388 DOWN 10 +3215388 0 2048 +3215405 UP 10 +3215405 waslock = 0 +3215405 512 2048 +~~~ +~~~ +~~~ +~~~ +3215428 homeCount = 21 +3215428 waitCount = 10 +3215429 ripCount = 6 +3215429 locktype1 = 2 +3215430 locktype2 = 2 +3215430 locktype3 = 1 +3215431 goalCount = 7 +3215431 goalTotal = 7 +3215432 otherCount = 8 +~~~ +~~~ +3215479 DOWN 10 +3215479 0 2048 +~~~ +~~~ +~~~ +~~~ +3215506 homeCount = 21 +3215506 waitCount = 10 +3215507 ripCount = 6 +3215507 locktype1 = 2 +3215508 locktype2 = 2 +3215508 locktype3 = 1 +3215508 goalCount = 7 +3215509 goalTotal = 7 +3215509 otherCount = 8 +~~~ +3216863 UP 12 +3216863 2048 2048 +3218565 DOWN 12 +3218565 0 2048 +3218574 UP 12 +3218574 2048 2048 +3220863 CLICK1 +3220863 CLICK2 +~~~ +~~~ +~~~ +3220884 2048 67110912 +~~~ +3221034 2048 2048 +3226345 DOWN 12 +3226345 0 2048 +~~~ +~~~ +3226363 0 0 +~~~ +~~~ +3226365 0 1 +~~~ +~~~ +3226367 0 3 +~~~ +~~~ +3226368 0 7 +~~~ +~~~ +3226370 0 15 +~~~ +~~~ +3226372 0 31 +~~~ +~~~ +3226374 0 63 +~~~ +~~~ +3226376 0 127 +~~~ +~~~ +3226377 0 255 +3226378 homeCount = 21 +3226379 waitCount = 11 +3226379 ripCount = 6 +3226380 locktype1 = 2 +3226380 locktype2 = 2 +3226402 locktype3 = 1 +3226402 goalCount = 7 +3226403 goalTotal = 7 +3226403 otherCount = 8 +~~~ +3226404 CURRENTGOAL IS [5] +~~~ +3226405 UP 12 +3226405 2048 255 +3226446 DOWN 12 +3226446 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3226478 homeCount = 21 +3226479 waitCount = 11 +3226479 ripCount = 6 +3226480 locktype1 = 2 +3226480 locktype2 = 2 +3226481 locktype3 = 1 +3226481 goalCount = 7 +3226482 goalTotal = 7 +3226482 otherCount = 8 +~~~ +3226483 CURRENTGOAL IS [5] +~~~ +3229553 UP 5 +3229553 16 255 +~~~ +~~~ +3229574 outer reward +~~~ +3229575 16 1048831 +~~~ +~~~ +3229607 DOWN 5 +3229607 0 1048831 +~~~ +~~~ +3229632 0 1048830 +~~~ +~~~ +3229634 0 1048828 +~~~ +~~~ +3229636 0 1048824 +~~~ +~~~ +3229638 0 1048816 +~~~ +~~~ +3229640 0 1048800 +~~~ +~~~ +3229642 0 1048768 +~~~ +~~~ +3229643 0 1048704 +~~~ +~~~ +3229645 0 1048576 +~~~ +~~~ +3229647 16 1049088 +3229648 homeCount = 21 +3229649 waitCount = 11 +3229649 ripCount = 6 +3229670 locktype1 = 2 +3229671 locktype2 = 2 +3229671 locktype3 = 1 +3229672 goalCount = 8 +3229672 goalTotal = 8 +3229673 otherCount = 8 +~~~ +3229707 DOWN 5 +3229707 0 1049088 +3229782 16 1049088 +3230024 16 512 +3230230 DOWN 5 +3230230 0 512 +3230247 16 512 +3230349 DOWN 5 +3230349 0 512 +3230385 16 512 +3230485 DOWN 5 +3230485 0 512 +3230525 16 512 +3230632 DOWN 5 +3230632 0 512 +3230658 16 512 +3231216 DOWN 5 +3231216 0 512 +3231224 16 512 +3238685 DOWN 5 +3238685 0 512 +3242068 UP 10 +3242068 waslock = 0 +3242068 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3242100 512 16777728 +~~~ +3242250 512 512 +3242279 DOWN 10 +3242279 0 512 +3242291 UP 10 +3242291 waslock = 0 +3242291 512 512 +~~~ +~~~ +3242317 512 1536 +~~~ +~~~ +3242319 512 1024 +3242320 homeCount = 22 +3242321 waitCount = 11 +3242321 ripCount = 6 +3242322 locktype1 = 2 +3242322 locktype2 = 2 +3242322 locktype3 = 1 +3242323 goalCount = 8 +3242323 goalTotal = 8 +3242324 otherCount = 8 +~~~ +~~~ +3245953 DOWN 10 +3245953 0 1024 +~~~ +~~~ +~~~ +~~~ +3245977 homeCount = 22 +3245977 waitCount = 11 +3245978 ripCount = 6 +3245978 locktype1 = 2 +3245979 locktype2 = 2 +3245979 locktype3 = 1 +3245980 goalCount = 8 +3245980 goalTotal = 8 +3245981 otherCount = 8 +~~~ +3248007 UP 11 +3248006 1024 1024 +3248996 DOWN 11 +3248996 0 1024 +3249014 UP 11 +3249014 1024 1024 +3249041 DOWN 11 +3249041 0 1024 +3249053 UP 11 +3249053 1024 1024 +3249157 DOWN 11 +3249157 0 1024 +3249226 UP 11 +3249226 1024 1024 +3250007 BEEP1 +3250007 BEEP2 +~~~ +~~~ +~~~ +3250027 1024 33555456 +~~~ +3250177 1024 1024 +3254636 DOWN 11 +3254636 0 1024 +~~~ +~~~ +3254664 0 0 +~~~ +~~~ +3254666 0 1 +~~~ +~~~ +3254668 0 3 +~~~ +~~~ +3254669 0 7 +~~~ +~~~ +3254671 0 15 +~~~ +~~~ +3254673 0 31 +~~~ +~~~ +3254675 0 63 +~~~ +~~~ +3254677 0 127 +~~~ +~~~ +3254679 0 255 +3254680 homeCount = 22 +3254680 waitCount = 11 +3254681 ripCount = 7 +3254681 locktype1 = 2 +3254682 locktype2 = 2 +3254703 locktype3 = 1 +3254703 goalCount = 8 +3254704 goalTotal = 8 +3254704 otherCount = 8 +~~~ +3254705 CURRENTGOAL IS [5] +~~~ +3254706 UP 11 +3254706 1024 255 +3254903 DOWN 11 +3254903 0 255 +3254916 UP 11 +3254916 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3254954 homeCount = 22 +3254955 waitCount = 11 +3254955 ripCount = 7 +3254956 locktype1 = 2 +3254956 locktype2 = 2 +3254957 locktype3 = 1 +3254957 goalCount = 8 +3254957 goalTotal = 8 +3254958 otherCount = 8 +~~~ +3254959 CURRENTGOAL IS [5] +~~~ +3256704 DOWN 11 +3256704 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3256740 homeCount = 22 +3256741 waitCount = 11 +3256741 ripCount = 7 +3256742 locktype1 = 2 +3256742 locktype2 = 2 +3256743 locktype3 = 1 +3256743 goalCount = 8 +3256744 goalTotal = 8 +3256744 otherCount = 8 +~~~ +3256745 CURRENTGOAL IS [5] +~~~ +3256756 UP 11 +3256756 1024 255 +3256791 DOWN 11 +3256791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3256831 homeCount = 22 +3256832 waitCount = 11 +3256832 ripCount = 7 +3256833 locktype1 = 2 +3256833 locktype2 = 2 +3256834 locktype3 = 1 +3256834 goalCount = 8 +3256835 goalTotal = 8 +3256835 otherCount = 8 +~~~ +3256836 CURRENTGOAL IS [5] +~~~ +3256857 UP 11 +3256857 1024 255 +3259186 DOWN 11 +3259186 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3259222 homeCount = 22 +3259222 waitCount = 11 +3259223 ripCount = 7 +3259223 locktype1 = 2 +3259224 locktype2 = 2 +3259224 locktype3 = 1 +3259225 goalCount = 8 +3259225 goalTotal = 8 +3259226 otherCount = 8 +~~~ +3259227 CURRENTGOAL IS [5] +~~~ +3262562 UP 5 +3262562 16 255 +~~~ +~~~ +3262589 outer reward +~~~ +3262589 16 1048831 +~~~ +~~~ +3262710 DOWN 5 +3262710 0 1048831 +~~~ +~~~ +3262726 0 1048830 +~~~ +~~~ +3262728 0 1048828 +~~~ +~~~ +3262730 0 1048824 +~~~ +~~~ +3262732 0 1048816 +~~~ +~~~ +3262733 0 1048800 +~~~ +~~~ +3262735 0 1048768 +~~~ +~~~ +3262737 0 1048704 +~~~ +~~~ +3262739 0 1048576 +~~~ +~~~ +3262741 0 1049088 +3262742 homeCount = 22 +3262742 waitCount = 11 +3262743 ripCount = 7 +3262764 locktype1 = 2 +3262764 locktype2 = 2 +3262764 locktype3 = 1 +3262765 goalCount = 9 +3262765 goalTotal = 9 +3262766 otherCount = 8 +~~~ +3262801 16 1049088 +3263039 16 512 +3263359 DOWN 5 +3263359 0 512 +3263383 16 512 +3263493 DOWN 5 +3263493 0 512 +3263518 16 512 +3264398 DOWN 5 +3264398 0 512 +3264406 16 512 +3270249 DOWN 5 +3270249 0 512 +3270308 16 512 +3270360 DOWN 5 +3270360 0 512 +3273977 UP 10 +3273977 waslock = 0 +3273977 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3274003 512 16777728 +~~~ +3274153 512 512 +3274201 DOWN 10 +3274201 0 512 +~~~ +~~~ +3274227 0 2560 +~~~ +~~~ +3274229 0 2048 +3274230 homeCount = 23 +3274230 waitCount = 11 +3274231 ripCount = 7 +3274231 locktype1 = 2 +3274232 locktype2 = 2 +3274232 locktype3 = 1 +3274233 goalCount = 9 +3274233 goalTotal = 9 +3274234 otherCount = 8 +~~~ +3274240 UP 10 +3274240 waslock = 0 +3274240 512 2048 +~~~ +3278548 DOWN 10 +3278548 0 2048 +~~~ +~~~ +~~~ +~~~ +3278571 homeCount = 23 +3278571 waitCount = 11 +3278572 ripCount = 7 +3278572 locktype1 = 2 +3278572 locktype2 = 2 +3278573 locktype3 = 1 +3278573 goalCount = 9 +3278574 goalTotal = 9 +3278574 otherCount = 8 +~~~ +3280094 UP 12 +3280093 2048 2048 +3283094 CLICK1 +3283094 CLICK2 +~~~ +~~~ +~~~ +3283119 2048 67110912 +~~~ +3283269 2048 2048 +3287508 DOWN 12 +3287508 0 2048 +~~~ +~~~ +3287532 0 0 +~~~ +~~~ +3287534 0 1 +~~~ +~~~ +3287536 0 3 +~~~ +~~~ +3287538 0 7 +~~~ +~~~ +3287539 0 15 +~~~ +~~~ +3287541 0 31 +~~~ +~~~ +3287543 0 63 +~~~ +~~~ +3287545 0 127 +~~~ +~~~ +3287547 0 255 +3287548 homeCount = 23 +3287548 waitCount = 12 +3287549 ripCount = 7 +3287549 locktype1 = 2 +3287550 locktype2 = 2 +3287550 locktype3 = 1 +3287571 goalCount = 9 +3287572 goalTotal = 9 +3287572 otherCount = 8 +~~~ +3287573 CURRENTGOAL IS [5] +~~~ +3287592 UP 12 +3287592 2048 255 +3289873 DOWN 12 +3289873 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3289914 homeCount = 23 +3289914 waitCount = 12 +3289915 ripCount = 7 +3289915 locktype1 = 2 +3289916 locktype2 = 2 +3289916 locktype3 = 1 +3289917 goalCount = 9 +3289917 goalTotal = 9 +3289918 otherCount = 8 +~~~ +3289919 CURRENTGOAL IS [5] +~~~ +3289919 UP 12 +3289919 2048 255 +3289957 DOWN 12 +3289957 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3289993 homeCount = 23 +3289994 waitCount = 12 +3289994 ripCount = 7 +3289995 locktype1 = 2 +3289995 locktype2 = 2 +3289996 locktype3 = 1 +3289996 goalCount = 9 +3289997 goalTotal = 9 +3289997 otherCount = 8 +~~~ +3289998 CURRENTGOAL IS [5] +~~~ +3293507 UP 5 +3293507 16 255 +~~~ +~~~ +3293531 outer reward +~~~ +3293531 16 1048831 +~~~ +~~~ +3293536 outerreps = 12 +~~~ +~~~ +3293615 DOWN 5 +3293615 0 1048831 +~~~ +~~~ +3293637 0 1048830 +~~~ +~~~ +3293639 0 1048828 +~~~ +~~~ +3293641 0 1048824 +~~~ +~~~ +3293643 0 1048816 +~~~ +~~~ +3293645 0 1048800 +~~~ +~~~ +3293647 0 1048768 +~~~ +~~~ +3293648 0 1048704 +~~~ +~~~ +3293650 0 1048576 +~~~ +~~~ +3293652 0 1049088 +3293653 homeCount = 23 +3293654 waitCount = 12 +3293654 ripCount = 7 +3293675 locktype1 = 2 +3293675 locktype2 = 2 +3293676 locktype3 = 1 +3293676 goalCount = 0 +3293677 goalTotal = 10 +3293677 otherCount = 8 +~~~ +3293737 16 1049088 +3293981 16 512 +3294292 DOWN 5 +3294292 0 512 +3294316 16 512 +3294427 DOWN 5 +3294427 0 512 +3294455 16 512 +3294576 DOWN 5 +3294576 0 512 +3294585 16 512 +3300882 DOWN 5 +3300882 0 512 +3300930 16 512 +3300943 DOWN 5 +3300943 0 512 +3304714 UP 10 +3304714 waslock = 0 +3304714 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3304747 512 16777728 +~~~ +3304897 512 512 +3304898 DOWN 10 +3304898 0 512 +3304908 UP 10 +3304908 waslock = 0 +3304908 512 512 +~~~ +~~~ +3304923 512 1536 +~~~ +~~~ +3304925 512 1024 +3304926 homeCount = 24 +3304927 waitCount = 12 +3304927 ripCount = 7 +3304928 locktype1 = 2 +3304928 locktype2 = 2 +3304928 locktype3 = 1 +3304929 goalCount = 0 +3304929 goalTotal = 10 +3304930 otherCount = 8 +~~~ +~~~ +3308761 DOWN 10 +3308761 0 1024 +~~~ +~~~ +~~~ +~~~ +3308787 homeCount = 24 +3308788 waitCount = 12 +3308788 ripCount = 7 +3308789 locktype1 = 2 +3308789 locktype2 = 2 +3308790 locktype3 = 1 +3308790 goalCount = 0 +3308791 goalTotal = 10 +3308791 otherCount = 8 +~~~ +3308798 UP 10 +3308798 waslock = 0 +3308798 512 1024 +~~~ +3308860 DOWN 10 +3308860 0 1024 +~~~ +~~~ +~~~ +~~~ +3308885 homeCount = 24 +3308886 waitCount = 12 +3308886 ripCount = 7 +3308887 locktype1 = 2 +3308887 locktype2 = 2 +3308888 locktype3 = 1 +3308888 goalCount = 0 +3308889 goalTotal = 10 +3308889 otherCount = 8 +~~~ +3311076 UP 11 +3311076 1024 1024 +3313181 DOWN 11 +3313181 0 1024 +3313192 UP 11 +3313192 1024 1024 +3314077 BEEP1 +3314077 BEEP2 +~~~ +~~~ +~~~ +3314104 1024 33555456 +~~~ +3314254 1024 1024 +3318081 DOWN 11 +3318081 0 1024 +~~~ +3318103 UP 11 +3318103 1024 1024 +~~~ +~~~ +3318105 1024 0 +~~~ +~~~ +3318106 1024 1 +~~~ +3318107 1024 3 +~~~ +~~~ +3318109 1024 7 +~~~ +~~~ +3318111 1024 15 +~~~ +~~~ +3318113 1024 31 +~~~ +~~~ +3318114 1024 63 +~~~ +~~~ +3318116 1024 127 +~~~ +~~~ +3318118 1024 255 +3318119 homeCount = 24 +3318140 waitCount = 12 +3318141 ripCount = 8 +3318141 locktype1 = 2 +3318142 locktype2 = 2 +3318142 locktype3 = 1 +3318142 goalCount = 0 +3318143 goalTotal = 10 +3318143 otherCount = 8 +~~~ +3318144 CURRENTGOAL IS [4] +~~~ +3318210 DOWN 11 +3318210 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3318243 homeCount = 24 +3318243 waitCount = 12 +3318244 ripCount = 8 +3318244 locktype1 = 2 +3318245 locktype2 = 2 +3318245 locktype3 = 1 +3318246 goalCount = 0 +3318246 goalTotal = 10 +3318247 otherCount = 8 +~~~ +3318248 CURRENTGOAL IS [4] +~~~ +3318282 UP 11 +3318282 1024 255 +3320896 DOWN 11 +3320896 0 255 +3320908 UP 11 +3320907 1024 255 +3320920 DOWN 11 +3320920 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3320943 homeCount = 24 +3320944 waitCount = 12 +3320944 ripCount = 8 +3320945 locktype1 = 2 +3320945 locktype2 = 2 +3320946 locktype3 = 1 +3320946 goalCount = 0 +3320947 goalTotal = 10 +3320947 otherCount = 8 +~~~ +3320948 CURRENTGOAL IS [4] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3320976 homeCount = 24 +3320976 waitCount = 12 +3320977 ripCount = 8 +3320977 locktype1 = 2 +3320978 locktype2 = 2 +3320978 locktype3 = 1 +3320979 goalCount = 0 +3320979 goalTotal = 10 +3321000 otherCount = 8 +~~~ +3321001 CURRENTGOAL IS [4] +~~~ +3321002 UP 11 +3321002 1024 255 +3323162 DOWN 11 +3323162 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3323198 homeCount = 24 +3323198 waitCount = 12 +3323199 ripCount = 8 +3323199 locktype1 = 2 +3323200 locktype2 = 2 +3323200 locktype3 = 1 +3323201 goalCount = 0 +3323201 goalTotal = 10 +3323202 otherCount = 8 +~~~ +3323203 CURRENTGOAL IS [4] +~~~ +3326113 UP 5 +3326113 16 255 +~~~ +~~~ +3326327 DOWN 5 +3326327 0 255 +~~~ +~~~ +3326352 0 254 +~~~ +~~~ +3326354 0 252 +~~~ +~~~ +3326356 0 248 +~~~ +~~~ +3326358 0 240 +~~~ +~~~ +3326360 0 224 +~~~ +~~~ +3326361 0 192 +~~~ +~~~ +3326363 0 128 +~~~ +~~~ +3326365 0 0 +~~~ +~~~ +3326367 0 512 +3326368 homeCount = 24 +3326368 waitCount = 12 +3326369 ripCount = 8 +3326369 locktype1 = 2 +3326370 locktype2 = 2 +3326391 locktype3 = 1 +3326392 goalCount = 0 +3326392 goalTotal = 10 +3326392 otherCount = 9 +~~~ +3326393 16 512 +3327275 DOWN 5 +3327275 0 512 +3331483 UP 10 +3331483 waslock = 0 +3331483 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3331515 512 16777728 +~~~ +3331628 DOWN 10 +3331628 0 16777728 +~~~ +~~~ +3331648 0 16779776 +~~~ +~~~ +3331650 0 16779264 +3331651 homeCount = 25 +3331652 waitCount = 12 +3331652 ripCount = 8 +3331653 locktype1 = 2 +3331653 locktype2 = 2 +3331654 locktype3 = 1 +3331654 goalCount = 0 +3331655 goalTotal = 10 +3331655 otherCount = 9 +~~~ +3331676 0 2048 +3331678 UP 10 +3331678 waslock = 0 +3331678 512 2048 +~~~ +3335072 DOWN 10 +3335072 0 2048 +~~~ +~~~ +~~~ +~~~ +3335101 homeCount = 25 +3335102 waitCount = 12 +3335102 ripCount = 8 +3335103 locktype1 = 2 +3335103 locktype2 = 2 +3335104 locktype3 = 1 +3335104 goalCount = 0 +3335105 goalTotal = 10 +3335105 otherCount = 9 +~~~ +3335111 UP 10 +3335111 waslock = 0 +3335111 512 2048 +~~~ +3335173 DOWN 10 +3335173 0 2048 +~~~ +~~~ +~~~ +~~~ +3335201 homeCount = 25 +3335201 waitCount = 12 +3335202 ripCount = 8 +3335202 locktype1 = 2 +3335202 locktype2 = 2 +3335203 locktype3 = 1 +3335203 goalCount = 0 +3335204 goalTotal = 10 +3335204 otherCount = 9 +~~~ +3337393 UP 12 +3337393 2048 2048 +3338245 DOWN 12 +3338245 0 2048 +3338263 UP 12 +3338263 2048 2048 +3338315 DOWN 12 +3338315 0 2048 +3338351 UP 12 +3338351 2048 2048 +3341498 DOWN 12 +3341498 0 2048 +3341509 UP 12 +3341509 2048 2048 +3343393 CLICK1 +3343393 CLICK2 +~~~ +~~~ +~~~ +3343422 2048 67110912 +~~~ +3343572 2048 2048 +3347572 DOWN 12 +3347572 0 2048 +~~~ +~~~ +3347598 0 0 +~~~ +~~~ +3347599 0 1 +~~~ +~~~ +3347601 0 3 +~~~ +~~~ +3347603 0 7 +~~~ +~~~ +3347605 0 15 +~~~ +~~~ +3347607 0 31 +~~~ +~~~ +3347608 0 63 +~~~ +~~~ +3347610 0 127 +~~~ +~~~ +3347612 0 255 +3347613 homeCount = 25 +3347614 waitCount = 13 +3347614 ripCount = 8 +3347615 locktype1 = 2 +3347615 locktype2 = 2 +3347616 locktype3 = 1 +3347636 goalCount = 0 +3347637 goalTotal = 10 +3347637 otherCount = 9 +~~~ +3347638 CURRENTGOAL IS [4] +~~~ +3353871 UP 1 +3353871 1 255 +~~~ +~~~ +3355979 DOWN 1 +3355979 0 255 +~~~ +~~~ +3355998 0 254 +~~~ +~~~ +3355999 0 252 +~~~ +~~~ +3356001 0 248 +~~~ +~~~ +3356003 0 240 +~~~ +~~~ +3356005 0 224 +~~~ +~~~ +3356007 0 192 +~~~ +~~~ +3356008 0 128 +~~~ +~~~ +3356010 0 0 +~~~ +~~~ +3356012 0 512 +3356013 homeCount = 25 +3356014 waitCount = 13 +3356014 ripCount = 8 +3356015 locktype1 = 2 +3356015 locktype2 = 2 +3356036 locktype3 = 1 +3356037 goalCount = 0 +3356037 goalTotal = 10 +3356038 otherCount = 10 +~~~ +3356051 1 512 +3356113 DOWN 1 +3356113 0 512 +3364545 UP 10 +3364546 waslock = 0 +3364545 512 512 +3364564 DOWN 10 +3364564 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3364574 0 16777728 +~~~ +3364586 UP 10 +3364587 waslock = 0 +3364586 512 16777728 +~~~ +~~~ +3364589 512 16779776 +~~~ +~~~ +3364591 512 16779264 +3364592 homeCount = 26 +3364592 waitCount = 13 +3364593 ripCount = 8 +3364593 locktype1 = 2 +3364594 locktype2 = 2 +3364594 locktype3 = 1 +3364595 goalCount = 0 +3364616 goalTotal = 10 +3364616 otherCount = 10 +~~~ +~~~ +3364724 512 2048 +3364785 DOWN 10 +3364785 0 2048 +~~~ +~~~ +~~~ +~~~ +3364814 homeCount = 26 +3364815 waitCount = 13 +3364815 ripCount = 8 +3364816 locktype1 = 2 +3364816 locktype2 = 2 +3364817 locktype3 = 1 +3364817 goalCount = 0 +3364818 goalTotal = 10 +3364818 otherCount = 10 +~~~ +3364820 UP 10 +3364821 waslock = 0 +3364820 512 2048 +~~~ +3369000 DOWN 10 +3369000 0 2048 +~~~ +~~~ +~~~ +~~~ +3369021 homeCount = 26 +3369021 waitCount = 13 +3369022 ripCount = 8 +3369022 locktype1 = 2 +3369023 locktype2 = 2 +3369023 locktype3 = 1 +3369024 goalCount = 0 +3369024 goalTotal = 10 +3369025 otherCount = 10 +~~~ +3371473 UP 12 +3371473 2048 2048 +3371491 DOWN 12 +3371491 0 2048 +3371539 UP 12 +3371539 2048 2048 +3372597 DOWN 12 +3372597 0 2048 +3372605 UP 12 +3372605 2048 2048 +3372635 DOWN 12 +3372635 0 2048 +3372713 UP 12 +3372713 2048 2048 +3374473 CLICK1 +3374473 CLICK2 +~~~ +~~~ +~~~ +3374502 2048 67110912 +~~~ +3374652 2048 2048 +3379419 DOWN 12 +3379419 0 2048 +~~~ +~~~ +3379439 0 0 +~~~ +~~~ +3379441 0 1 +~~~ +3379442 UP 12 +3379442 2048 1 +~~~ +~~~ +3379444 2048 3 +~~~ +~~~ +3379446 2048 7 +~~~ +3379447 2048 15 +~~~ +~~~ +3379448 2048 31 +~~~ +~~~ +3379450 2048 63 +~~~ +~~~ +3379452 2048 127 +~~~ +~~~ +3379454 2048 255 +3379455 homeCount = 26 +3379455 waitCount = 14 +3379476 ripCount = 8 +3379477 locktype1 = 2 +3379477 locktype2 = 2 +3379478 locktype3 = 1 +3379478 goalCount = 0 +3379479 goalTotal = 10 +3379479 otherCount = 10 +~~~ +3379480 CURRENTGOAL IS [4] +~~~ +3379501 DOWN 12 +3379501 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3379536 homeCount = 26 +3379537 waitCount = 14 +3379537 ripCount = 8 +3379538 locktype1 = 2 +3379538 locktype2 = 2 +3379539 locktype3 = 1 +3379539 goalCount = 0 +3379540 goalTotal = 10 +3379540 otherCount = 10 +~~~ +3379541 CURRENTGOAL IS [4] +~~~ +3382877 UP 5 +3382877 16 255 +~~~ +~~~ +3383277 DOWN 5 +3383277 0 255 +~~~ +~~~ +3383303 0 254 +~~~ +~~~ +3383305 0 252 +~~~ +~~~ +3383307 0 248 +~~~ +~~~ +3383309 0 240 +~~~ +~~~ +3383311 0 224 +~~~ +~~~ +3383312 0 192 +~~~ +~~~ +3383314 0 128 +~~~ +~~~ +3383316 0 0 +~~~ +~~~ +3383318 0 512 +3383319 homeCount = 26 +3383319 waitCount = 14 +3383320 ripCount = 8 +3383320 locktype1 = 2 +3383321 locktype2 = 2 +3383342 locktype3 = 1 +3383342 goalCount = 0 +3383343 goalTotal = 10 +3383343 otherCount = 11 +~~~ +3383433 16 512 +3383515 DOWN 5 +3383515 0 512 +3386814 UP 10 +3386815 waslock = 0 +3386814 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3386842 512 16777728 +~~~ +3386992 512 512 +3387046 DOWN 10 +3387046 0 512 +~~~ +~~~ +3387067 0 1536 +~~~ +~~~ +3387069 0 1024 +3387070 homeCount = 27 +3387070 waitCount = 14 +3387071 ripCount = 8 +3387071 locktype1 = 2 +3387072 locktype2 = 2 +3387072 locktype3 = 1 +3387073 goalCount = 0 +3387073 goalTotal = 10 +3387074 otherCount = 11 +~~~ +3387074 UP 10 +3387095 waslock = 0 +3387074 512 1024 +~~~ +3390332 DOWN 10 +3390332 0 1024 +~~~ +~~~ +~~~ +~~~ +3390354 homeCount = 27 +3390354 waitCount = 14 +3390355 ripCount = 8 +3390355 locktype1 = 2 +3390356 locktype2 = 2 +3390356 locktype3 = 1 +3390357 goalCount = 0 +3390357 goalTotal = 10 +3390358 otherCount = 11 +~~~ +3390364 UP 10 +3390364 waslock = 0 +3390363 512 1024 +~~~ +3390422 DOWN 10 +3390422 0 1024 +~~~ +~~~ +~~~ +~~~ +3390446 homeCount = 27 +3390446 waitCount = 14 +3390447 ripCount = 8 +3390447 locktype1 = 2 +3390448 locktype2 = 2 +3390448 locktype3 = 1 +3390449 goalCount = 0 +3390449 goalTotal = 10 +3390450 otherCount = 11 +~~~ +3392373 UP 11 +3392373 1024 1024 +3394624 BEEP1 +3394624 BEEP2 +~~~ +~~~ +~~~ +3394644 1024 33555456 +~~~ +3394794 1024 1024 +3402282 DOWN 11 +3402282 0 1024 +~~~ +~~~ +3402303 0 0 +~~~ +~~~ +3402305 0 1 +~~~ +~~~ +3402307 0 3 +~~~ +~~~ +3402308 0 7 +~~~ +~~~ +3402310 0 15 +~~~ +~~~ +3402312 0 31 +~~~ +~~~ +3402314 0 63 +~~~ +~~~ +3402316 0 127 +~~~ +~~~ +3402317 0 255 +3402318 homeCount = 27 +3402319 waitCount = 14 +3402319 ripCount = 9 +3402320 locktype1 = 2 +3402320 locktype2 = 2 +3402321 locktype3 = 1 +3402342 goalCount = 0 +3402342 goalTotal = 10 +3402343 otherCount = 11 +~~~ +3402344 CURRENTGOAL IS [4] +~~~ +3405003 UP 8 +3405003 128 255 +~~~ +~~~ +3405483 DOWN 8 +3405483 0 255 +3405500 128 255 +~~~ +~~~ +3405509 128 254 +~~~ +~~~ +3405511 128 252 +~~~ +~~~ +3405513 128 248 +~~~ +~~~ +3405515 128 240 +~~~ +~~~ +3405517 128 224 +~~~ +~~~ +3405518 128 192 +~~~ +~~~ +3405520 128 128 +~~~ +~~~ +3405522 128 0 +~~~ +~~~ +3405524 128 512 +3405525 homeCount = 27 +3405526 waitCount = 14 +3405526 ripCount = 9 +3405526 locktype1 = 2 +3405547 locktype2 = 2 +3405548 locktype3 = 1 +3405548 goalCount = 0 +3405549 goalTotal = 10 +3405549 otherCount = 12 +~~~ +3405550 DOWN 8 +3405550 0 512 +3405554 128 512 +3405618 DOWN 8 +3405618 0 512 +3405768 128 512 +3406173 DOWN 8 +3406173 0 512 +3406190 128 512 +3406488 DOWN 8 +3406488 0 512 +3412401 UP 10 +3412402 waslock = 0 +3412401 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3412426 512 16777728 +~~~ +3412576 512 512 +3417283 DOWN 10 +3417283 0 512 +~~~ +~~~ +3417301 0 1536 +~~~ +~~~ +3417303 0 1024 +3417304 homeCount = 28 +3417305 waitCount = 14 +3417305 ripCount = 9 +3417306 locktype1 = 2 +3417306 locktype2 = 2 +3417306 locktype3 = 1 +3417307 goalCount = 0 +3417307 goalTotal = 10 +3417308 otherCount = 12 +~~~ +3417314 UP 10 +3417314 waslock = 0 +3417314 512 1024 +~~~ +3417369 DOWN 10 +3417369 0 1024 +~~~ +~~~ +~~~ +~~~ +3417395 homeCount = 28 +3417395 waitCount = 14 +3417396 ripCount = 9 +3417396 locktype1 = 2 +3417397 locktype2 = 2 +3417397 locktype3 = 1 +3417398 goalCount = 0 +3417398 goalTotal = 10 +3417398 otherCount = 12 +~~~ +3418917 UP 11 +3418917 1024 1024 +3421167 BEEP1 +3421167 BEEP2 +~~~ +~~~ +~~~ +3421193 1024 33555456 +~~~ +3421343 1024 1024 +3426415 DOWN 11 +3426415 0 1024 +~~~ +~~~ +3426441 0 0 +~~~ +3426442 UP 11 +3426442 1024 0 +~~~ +~~~ +3426444 1024 1 +~~~ +~~~ +3426446 1024 3 +~~~ +3426447 1024 7 +~~~ +~~~ +3426448 1024 15 +~~~ +~~~ +3426450 1024 31 +~~~ +~~~ +3426452 1024 63 +~~~ +~~~ +3426453 1024 127 +~~~ +~~~ +3426455 1024 255 +3426456 homeCount = 28 +3426478 waitCount = 14 +3426478 ripCount = 10 +3426478 locktype1 = 2 +3426479 locktype2 = 2 +3426479 locktype3 = 1 +3426480 goalCount = 0 +3426480 goalTotal = 10 +3426481 otherCount = 12 +~~~ +3426482 CURRENTGOAL IS [4] +~~~ +3426484 DOWN 11 +3426484 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3426535 UP 11 +3426535 1024 255 +~~~ +~~~ +~~~ +~~~ +3426539 homeCount = 28 +3426540 waitCount = 14 +3426540 ripCount = 10 +3426541 locktype1 = 2 +3426541 locktype2 = 2 +3426542 locktype3 = 1 +3426542 goalCount = 0 +3426543 goalTotal = 10 +3426543 otherCount = 12 +~~~ +3426544 CURRENTGOAL IS [4] +~~~ +3428785 DOWN 11 +3428785 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3428822 homeCount = 28 +3428823 waitCount = 14 +3428823 ripCount = 10 +3428824 locktype1 = 2 +3428824 locktype2 = 2 +3428825 locktype3 = 1 +3428825 goalCount = 0 +3428826 goalTotal = 10 +3428826 otherCount = 12 +~~~ +3428827 CURRENTGOAL IS [4] +~~~ +3431457 UP 6 +3431457 32 255 +~~~ +~~~ +3433724 DOWN 6 +3433724 0 255 +~~~ +~~~ +3433746 0 254 +~~~ +~~~ +3433747 0 252 +~~~ +~~~ +3433749 0 248 +~~~ +~~~ +3433751 0 240 +~~~ +~~~ +3433753 0 224 +~~~ +~~~ +3433755 0 192 +~~~ +~~~ +3433757 0 128 +~~~ +~~~ +3433758 0 0 +~~~ +~~~ +3433760 0 512 +3433761 homeCount = 28 +3433762 waitCount = 14 +3433762 ripCount = 10 +3433763 locktype1 = 2 +3433763 locktype2 = 2 +3433784 locktype3 = 1 +3433785 goalCount = 0 +3433785 goalTotal = 10 +3433786 otherCount = 13 +~~~ +3433786 32 512 +3433787 DOWN 6 +3433787 0 512 +3437391 UP 10 +3437392 waslock = 0 +3437391 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3437423 512 16777728 +~~~ +3437573 512 512 +3439941 DOWN 10 +3439941 0 512 +~~~ +~~~ +3439966 0 1536 +~~~ +~~~ +3439968 0 1024 +3439969 homeCount = 29 +3439969 waitCount = 14 +3439970 ripCount = 10 +3439970 locktype1 = 2 +3439971 locktype2 = 2 +3439971 locktype3 = 1 +3439971 goalCount = 0 +3439972 goalTotal = 10 +3439972 otherCount = 13 +~~~ +3440045 UP 10 +3440045 waslock = 0 +3440045 512 1024 +~~~ +3443900 DOWN 10 +3443900 0 1024 +~~~ +~~~ +~~~ +~~~ +3443928 homeCount = 29 +3443929 waitCount = 14 +3443929 ripCount = 10 +3443930 locktype1 = 2 +3443930 locktype2 = 2 +3443931 locktype3 = 1 +3443931 goalCount = 0 +3443932 goalTotal = 10 +3443932 otherCount = 13 +~~~ +3443937 UP 10 +3443938 waslock = 0 +3443937 512 1024 +~~~ +3444010 DOWN 10 +3444010 0 1024 +~~~ +~~~ +~~~ +~~~ +3444047 homeCount = 29 +3444048 waitCount = 14 +3444048 ripCount = 10 +3444049 locktype1 = 2 +3444049 locktype2 = 2 +3444050 locktype3 = 1 +3444050 goalCount = 0 +3444051 goalTotal = 10 +3444051 otherCount = 13 +~~~ +3447480 UP 11 +3447480 1024 1024 +3449428 DOWN 11 +3449428 0 1024 +3449534 UP 11 +3449534 1024 1024 +3450480 BEEP1 +3450480 BEEP2 +~~~ +~~~ +~~~ +3450499 1024 33555456 +~~~ +3450520 DOWN 11 +3450520 0 33555456 +3450539 UP 11 +3450539 1024 33555456 +3450649 1024 1024 +3450808 DOWN 11 +3450808 0 1024 +3450838 UP 11 +3450838 1024 1024 +~~~ +~~~ +3451150 1024 0 +~~~ +~~~ +3451152 1024 1 +~~~ +~~~ +3451154 1024 3 +~~~ +~~~ +3451156 1024 7 +~~~ +~~~ +3451158 1024 15 +~~~ +~~~ +3451160 1024 31 +~~~ +~~~ +3451161 1024 63 +~~~ +~~~ +3451163 1024 127 +~~~ +~~~ +3451165 1024 255 +3451166 homeCount = 29 +3451167 waitCount = 14 +3451167 ripCount = 11 +3451168 locktype1 = 2 +3451188 locktype2 = 2 +3451189 locktype3 = 1 +3451189 goalCount = 0 +3451190 goalTotal = 10 +3451190 otherCount = 13 +~~~ +3451191 CURRENTGOAL IS [4] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3451219 homeCount = 29 +3451219 waitCount = 14 +3451220 ripCount = 11 +3451220 locktype1 = 2 +3451221 locktype2 = 2 +3451221 locktype3 = 1 +3451222 goalCount = 0 +3451222 goalTotal = 10 +3451223 otherCount = 13 +~~~ +3451224 CURRENTGOAL IS [4] +~~~ +3455069 DOWN 11 +3455069 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3455110 homeCount = 29 +3455111 waitCount = 14 +3455111 ripCount = 11 +3455112 locktype1 = 2 +3455112 locktype2 = 2 +3455113 locktype3 = 1 +3455113 goalCount = 0 +3455113 goalTotal = 10 +3455114 otherCount = 13 +~~~ +3455115 CURRENTGOAL IS [4] +~~~ +3455116 UP 11 +3455115 1024 255 +3455168 DOWN 11 +3455168 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3455204 homeCount = 29 +3455205 waitCount = 14 +3455205 ripCount = 11 +3455206 locktype1 = 2 +3455206 locktype2 = 2 +3455207 locktype3 = 1 +3455207 goalCount = 0 +3455208 goalTotal = 10 +3455208 otherCount = 13 +~~~ +3455209 CURRENTGOAL IS [4] +~~~ +3467183 UP 5 +3467183 16 255 +~~~ +~~~ +3467241 DOWN 5 +3467241 0 255 +3467259 16 255 +~~~ +~~~ +3467270 16 254 +~~~ +~~~ +3467271 16 252 +~~~ +~~~ +3467273 16 248 +~~~ +~~~ +3467275 16 240 +~~~ +~~~ +3467277 16 224 +~~~ +~~~ +3467279 16 192 +~~~ +~~~ +3467281 16 128 +~~~ +~~~ +3467282 16 0 +~~~ +~~~ +3467284 16 512 +3467285 homeCount = 29 +3467286 waitCount = 14 +3467286 ripCount = 11 +3467287 locktype1 = 2 +3467308 locktype2 = 2 +3467308 locktype3 = 1 +3467309 goalCount = 0 +3467309 goalTotal = 10 +3467310 otherCount = 14 +~~~ +3467494 DOWN 5 +3467494 0 512 +3470785 UP 10 +3470785 waslock = 0 +3470785 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3470815 512 16777728 +~~~ +3470959 DOWN 10 +3470959 0 16777728 +3470965 0 512 +3470971 UP 10 +3470971 waslock = 0 +3470971 512 512 +~~~ +~~~ +3470990 512 1536 +~~~ +~~~ +3470992 512 1024 +3470993 homeCount = 30 +3470994 waitCount = 14 +3470994 ripCount = 11 +3470995 locktype1 = 2 +3470995 locktype2 = 2 +3470996 locktype3 = 1 +3470996 goalCount = 0 +3470997 goalTotal = 10 +3470997 otherCount = 14 +~~~ +~~~ +3471019 DOWN 10 +3471019 0 1024 +~~~ +~~~ +~~~ +~~~ +3471035 homeCount = 30 +3471036 waitCount = 14 +3471036 ripCount = 11 +3471037 locktype1 = 2 +3471037 locktype2 = 2 +3471038 locktype3 = 1 +3471038 goalCount = 0 +3471039 goalTotal = 10 +3471039 otherCount = 14 +~~~ +3471096 UP 10 +3471097 waslock = 0 +3471096 512 1024 +~~~ +3474249 DOWN 10 +3474249 0 1024 +~~~ +~~~ +~~~ +~~~ +3474271 homeCount = 30 +3474271 waitCount = 14 +3474272 ripCount = 11 +3474272 locktype1 = 2 +3474273 locktype2 = 2 +3474273 locktype3 = 1 +3474274 goalCount = 0 +3474274 goalTotal = 10 +3474275 otherCount = 14 +~~~ +3474308 UP 10 +3474308 waslock = 0 +3474307 512 1024 +3474331 DOWN 10 +3474331 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +3474354 homeCount = 30 +3474354 waitCount = 14 +3474355 ripCount = 11 +3474355 locktype1 = 2 +3474356 locktype2 = 2 +3474356 locktype3 = 1 +3474356 goalCount = 0 +3474357 goalTotal = 10 +3474357 otherCount = 14 +~~~ +3476396 UP 11 +3476396 1024 1024 +3476414 DOWN 11 +3476414 0 1024 +3476440 UP 11 +3476440 1024 1024 +3477699 DOWN 11 +3477699 0 1024 +3477756 UP 11 +3477756 1024 1024 +3482397 BEEP1 +3482397 BEEP2 +~~~ +~~~ +~~~ +3482421 1024 33555456 +~~~ +3482571 1024 1024 +3487234 DOWN 11 +3487234 0 1024 +~~~ +~~~ +3487260 0 0 +~~~ +~~~ +3487261 0 1 +~~~ +~~~ +3487263 0 3 +~~~ +~~~ +3487265 0 7 +~~~ +~~~ +3487267 0 15 +~~~ +~~~ +3487269 0 31 +~~~ +~~~ +3487271 0 63 +~~~ +~~~ +3487272 0 127 +~~~ +~~~ +3487274 0 255 +3487275 homeCount = 30 +3487276 waitCount = 14 +3487276 ripCount = 12 +3487277 locktype1 = 2 +3487277 locktype2 = 2 +3487278 locktype3 = 1 +3487299 goalCount = 0 +3487299 goalTotal = 10 +3487299 otherCount = 14 +~~~ +3487301 CURRENTGOAL IS [4] +~~~ +3492075 UP 3 +3492075 4 255 +~~~ +~~~ +3493640 DOWN 3 +3493640 0 255 +~~~ +~~~ +3493660 0 254 +~~~ +~~~ +3493662 0 252 +~~~ +~~~ +3493664 0 248 +~~~ +~~~ +3493666 0 240 +~~~ +~~~ +3493668 0 224 +~~~ +~~~ +3493669 0 192 +~~~ +~~~ +3493671 0 128 +~~~ +~~~ +3493673 0 0 +~~~ +~~~ +3493675 0 512 +3493676 homeCount = 30 +3493676 waitCount = 14 +3493677 ripCount = 12 +3493677 locktype1 = 2 +3493678 locktype2 = 2 +3493699 locktype3 = 1 +3493699 goalCount = 0 +3493700 goalTotal = 10 +3493700 otherCount = 15 +~~~ +3496771 UP 10 +3496771 waslock = 0 +3496771 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3496799 512 16777728 +~~~ +3496949 512 512 +3496960 DOWN 10 +3496959 0 512 +~~~ +~~~ +3496976 0 2560 +~~~ +~~~ +3496978 0 2048 +3496979 homeCount = 31 +3496980 waitCount = 14 +3496980 ripCount = 12 +3496981 locktype1 = 2 +3496981 locktype2 = 2 +3496982 locktype3 = 1 +3496982 goalCount = 0 +3496983 goalTotal = 10 +3496983 otherCount = 15 +~~~ +3496994 UP 10 +3496994 waslock = 0 +3496994 512 2048 +~~~ +3500863 DOWN 10 +3500863 0 2048 +~~~ +~~~ +~~~ +~~~ +3500884 homeCount = 31 +3500884 waitCount = 14 +3500885 ripCount = 12 +3500885 locktype1 = 2 +3500886 locktype2 = 2 +3500886 locktype3 = 1 +3500887 goalCount = 0 +3500887 goalTotal = 10 +3500888 otherCount = 15 +~~~ +3502510 UP 12 +3502510 2048 2048 +3503845 DOWN 12 +3503845 0 2048 +3503872 UP 12 +3503872 2048 2048 +3508139 DOWN 12 +3508139 0 2048 +3508145 UP 12 +3508145 2048 2048 +3508156 DOWN 12 +3508156 0 2048 +3508173 UP 12 +3508173 2048 2048 +3508510 CLICK1 +3508510 CLICK2 +~~~ +~~~ +~~~ +3508533 2048 67110912 +~~~ +3508683 2048 2048 +3515792 DOWN 12 +3515792 0 2048 +~~~ +~~~ +3515814 0 0 +~~~ +~~~ +3515816 0 1 +~~~ +~~~ +3515818 0 3 +~~~ +~~~ +3515820 0 7 +~~~ +~~~ +3515821 0 15 +~~~ +~~~ +3515823 0 31 +~~~ +~~~ +3515825 0 63 +~~~ +~~~ +3515827 0 127 +~~~ +~~~ +3515829 0 255 +3515830 homeCount = 31 +3515830 waitCount = 15 +3515831 ripCount = 12 +3515831 locktype1 = 2 +3515832 locktype2 = 2 +3515853 locktype3 = 1 +3515853 goalCount = 0 +3515854 goalTotal = 10 +3515854 otherCount = 15 +~~~ +3515855 CURRENTGOAL IS [4] +~~~ +3521707 UP 8 +3521707 128 255 +~~~ +~~~ +3522495 DOWN 8 +3522494 0 255 +~~~ +~~~ +3522516 0 254 +~~~ +~~~ +3522517 0 252 +~~~ +~~~ +3522519 0 248 +~~~ +~~~ +3522521 0 240 +~~~ +~~~ +3522523 0 224 +~~~ +~~~ +3522525 0 192 +~~~ +~~~ +3522526 0 128 +~~~ +~~~ +3522528 0 0 +~~~ +~~~ +3522530 0 512 +3522531 homeCount = 31 +3522532 waitCount = 15 +3522532 ripCount = 12 +3522533 locktype1 = 2 +3522533 locktype2 = 2 +3522554 locktype3 = 1 +3522554 goalCount = 0 +3522555 goalTotal = 10 +3522555 otherCount = 16 +~~~ +3528013 UP 10 +3528013 waslock = 0 +3528013 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3528040 512 16777728 +~~~ +3528190 512 512 +3532039 DOWN 10 +3532039 0 512 +3532051 UP 10 +3532051 waslock = 0 +3532051 512 512 +~~~ +~~~ +3532064 512 2560 +~~~ +~~~ +3532066 512 2048 +3532067 homeCount = 32 +3532068 waitCount = 15 +3532068 ripCount = 12 +3532069 locktype1 = 2 +3532069 locktype2 = 2 +3532070 locktype3 = 1 +3532070 goalCount = 0 +3532071 goalTotal = 10 +3532071 otherCount = 16 +~~~ +~~~ +3532129 DOWN 10 +3532129 0 2048 +~~~ +~~~ +~~~ +~~~ +3532159 homeCount = 32 +3532159 waitCount = 15 +3532160 ripCount = 12 +3532160 locktype1 = 2 +3532161 locktype2 = 2 +3532161 locktype3 = 1 +3532162 goalCount = 0 +3532162 goalTotal = 10 +3532163 otherCount = 16 +~~~ +3533716 UP 12 +3533716 2048 2048 +3535140 DOWN 12 +3535140 0 2048 +3535175 UP 12 +3535175 2048 2048 +3535301 DOWN 12 +3535301 0 2048 +3535317 UP 12 +3535317 2048 2048 +3540716 CLICK1 +3540716 CLICK2 +~~~ +~~~ +~~~ +3540738 2048 67110912 +~~~ +3540888 2048 2048 +3547369 DOWN 12 +3547369 0 2048 +~~~ +~~~ +3547388 0 0 +~~~ +~~~ +3547390 0 1 +~~~ +~~~ +3547391 0 3 +~~~ +~~~ +3547393 0 7 +~~~ +~~~ +3547395 0 15 +~~~ +~~~ +3547397 0 31 +~~~ +~~~ +3547399 0 63 +~~~ +~~~ +3547401 0 127 +~~~ +~~~ +3547402 0 255 +3547403 homeCount = 32 +3547404 waitCount = 16 +3547404 ripCount = 12 +3547405 locktype1 = 2 +3547405 locktype2 = 2 +3547427 locktype3 = 1 +3547427 goalCount = 0 +3547428 goalTotal = 10 +3547428 otherCount = 16 +~~~ +3547429 CURRENTGOAL IS [4] +~~~ +3561111 UP 10 +3561112 waslock = 0 +3561111 512 255 +~~~ +3561132 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3561140 512 254 +~~~ +~~~ +3561142 512 252 +~~~ +~~~ +3561143 512 248 +~~~ +~~~ +3561145 512 240 +~~~ +~~~ +3561147 512 224 +~~~ +~~~ +3561149 512 192 +~~~ +~~~ +3561151 512 128 +~~~ +~~~ +3561152 512 0 +~~~ +~~~ +~~~ +3561157 0 0 +3561238 512 0 +3562992 0 0 +3564933 UP 11 +3564933 1024 0 +3565541 DOWN 11 +3565541 0 0 +3565809 UP 11 +3565809 1024 0 +3566154 DOWN 11 +3566154 0 0 +3576441 512 0 +3576538 0 0 +3582894 512 0 +3583443 0 0 +3583733 512 0 +3584225 0 0 +3584278 512 0 +3584343 0 0 +3584390 512 0 +3585280 0 0 +3585494 512 0 +3585871 0 0 +3586132 LOCKEND +~~~ +~~~ +~~~ +3586153 0 512 +3586897 UP 10 +3586897 waslock = 0 +3586897 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3586928 512 16777728 +~~~ +3587078 512 512 +3590979 DOWN 10 +3590979 0 512 +3590998 UP 10 +3590999 waslock = 0 +3590998 512 512 +~~~ +~~~ +3591002 512 1536 +~~~ +~~~ +3591004 512 1024 +3591005 homeCount = 33 +3591005 waitCount = 16 +3591006 ripCount = 12 +3591006 locktype1 = 2 +3591007 locktype2 = 3 +3591007 locktype3 = 1 +3591008 goalCount = 0 +3591008 goalTotal = 10 +3591009 otherCount = 16 +~~~ +~~~ +3591090 DOWN 10 +3591090 0 1024 +~~~ +~~~ +~~~ +~~~ +3591121 homeCount = 33 +3591121 waitCount = 16 +3591122 ripCount = 12 +3591122 locktype1 = 2 +3591123 locktype2 = 3 +3591123 locktype3 = 1 +3591124 goalCount = 0 +3591124 goalTotal = 10 +3591125 otherCount = 16 +~~~ +3591146 UP 10 +3591147 waslock = 0 +3591146 512 1024 +~~~ +3591191 DOWN 10 +3591191 0 1024 +~~~ +~~~ +~~~ +~~~ +3591219 homeCount = 33 +3591219 waitCount = 16 +3591220 ripCount = 12 +3591220 locktype1 = 2 +3591221 locktype2 = 3 +3591221 locktype3 = 1 +3591222 goalCount = 0 +3591222 goalTotal = 10 +3591223 otherCount = 16 +~~~ +3593272 UP 11 +3593272 1024 1024 +3593859 DOWN 11 +3593859 0 1024 +3593918 UP 11 +3593918 1024 1024 +3593945 DOWN 11 +3593945 0 1024 +3593960 UP 11 +3593960 1024 1024 +3594765 DOWN 11 +3594765 0 1024 +3594779 UP 11 +3594779 1024 1024 +3598015 DOWN 11 +3598015 0 1024 +3598034 UP 11 +3598034 1024 1024 +3600272 BEEP1 +3600272 BEEP2 +~~~ +~~~ +~~~ +3600296 1024 33555456 +~~~ +3600445 1024 1024 +3604781 DOWN 11 +3604781 0 1024 +3604791 UP 11 +3604791 1024 1024 +~~~ +~~~ +3604804 1024 0 +~~~ +~~~ +3604806 1024 1 +~~~ +~~~ +3604808 1024 3 +~~~ +~~~ +3604809 1024 7 +~~~ +~~~ +3604811 1024 15 +~~~ +~~~ +3604813 1024 31 +~~~ +~~~ +3604815 1024 63 +~~~ +~~~ +3604817 1024 127 +~~~ +~~~ +3604818 1024 255 +3604819 homeCount = 33 +3604820 waitCount = 16 +3604821 ripCount = 13 +3604821 locktype1 = 2 +3604842 locktype2 = 3 +3604843 locktype3 = 1 +3604843 goalCount = 0 +3604844 goalTotal = 10 +3604844 otherCount = 16 +~~~ +3604845 CURRENTGOAL IS [4] +~~~ +3604903 DOWN 11 +3604903 0 255 +3604925 UP 11 +3604925 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3604942 homeCount = 33 +3604943 waitCount = 16 +3604943 ripCount = 13 +3604944 locktype1 = 2 +3604944 locktype2 = 3 +3604945 locktype3 = 1 +3604945 goalCount = 0 +3604946 goalTotal = 10 +3604946 otherCount = 16 +~~~ +3604947 CURRENTGOAL IS [4] +~~~ +3605028 DOWN 11 +3605028 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3605064 homeCount = 33 +3605064 waitCount = 16 +3605065 ripCount = 13 +3605065 locktype1 = 2 +3605066 locktype2 = 3 +3605066 locktype3 = 1 +3605067 goalCount = 0 +3605067 goalTotal = 10 +3605068 otherCount = 16 +~~~ +3605069 CURRENTGOAL IS [4] +~~~ +3605092 UP 11 +3605092 1024 255 +3608325 DOWN 11 +3608325 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3608364 homeCount = 33 +3608364 waitCount = 16 +3608365 ripCount = 13 +3608365 locktype1 = 2 +3608366 locktype2 = 3 +3608366 locktype3 = 1 +3608367 goalCount = 0 +3608367 goalTotal = 10 +3608368 otherCount = 16 +~~~ +3608369 CURRENTGOAL IS [4] +~~~ +3608378 UP 11 +3608378 1024 255 +3608425 DOWN 11 +3608425 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3608464 homeCount = 33 +3608465 waitCount = 16 +3608465 ripCount = 13 +3608466 locktype1 = 2 +3608466 locktype2 = 3 +3608467 locktype3 = 1 +3608467 goalCount = 0 +3608467 goalTotal = 10 +3608468 otherCount = 16 +~~~ +3608469 CURRENTGOAL IS [4] +~~~ +3616545 UP 10 +3616545 waslock = 0 +3616545 512 255 +~~~ +3616569 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3616577 512 254 +~~~ +~~~ +3616579 512 252 +~~~ +~~~ +3616581 512 248 +~~~ +~~~ +3616582 512 240 +~~~ +~~~ +3616584 512 224 +~~~ +~~~ +3616586 512 192 +~~~ +~~~ +3616588 512 128 +~~~ +~~~ +3616590 512 0 +~~~ +~~~ +~~~ +3617133 0 0 +3617163 512 0 +3617761 0 0 +3617783 512 0 +3617868 0 0 +3618349 512 0 +3618488 0 0 +3620077 512 0 +3620300 0 0 +3623436 UP 12 +3623436 2048 0 +3623470 DOWN 12 +3623470 0 0 +3626087 512 0 +3626274 0 0 +3628560 UP 11 +3628560 1024 0 +3629234 DOWN 11 +3629234 0 0 +3640902 512 0 +3641510 0 0 +3641538 512 0 +3641569 LOCKEND +~~~ +~~~ +~~~ +3641592 512 512 +3641834 DOWN 10 +3641834 0 512 +3642205 UP 10 +3642205 waslock = 0 +3642205 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3642238 512 16777728 +~~~ +3642263 DOWN 10 +3642263 0 16777728 +~~~ +~~~ +3642281 0 16779776 +~~~ +~~~ +3642283 0 16779264 +3642284 homeCount = 34 +3642284 waitCount = 16 +3642285 ripCount = 13 +3642285 locktype1 = 2 +3642286 locktype2 = 4 +3642286 locktype3 = 1 +3642287 goalCount = 0 +3642287 goalTotal = 10 +3642288 otherCount = 16 +~~~ +3642363 UP 10 +3642363 waslock = 0 +3642363 512 16779264 +~~~ +3642386 DOWN 10 +3642386 0 16779264 +3642388 0 2048 +~~~ +~~~ +~~~ +~~~ +3642414 homeCount = 34 +3642415 waitCount = 16 +3642415 ripCount = 13 +3642416 locktype1 = 2 +3642416 locktype2 = 4 +3642416 locktype3 = 1 +3642417 goalCount = 0 +3642417 goalTotal = 10 +3642418 otherCount = 16 +~~~ +3642507 UP 10 +3642507 waslock = 0 +3642506 512 2048 +~~~ +3648667 DOWN 10 +3648667 0 2048 +3648678 UP 10 +3648678 waslock = 0 +3648678 512 2048 +~~~ +~~~ +~~~ +~~~ +3648694 homeCount = 34 +3648695 waitCount = 16 +3648695 ripCount = 13 +3648696 locktype1 = 2 +3648696 locktype2 = 4 +3648697 locktype3 = 1 +3648697 goalCount = 0 +3648698 goalTotal = 10 +3648698 otherCount = 16 +~~~ +~~~ +3648761 DOWN 10 +3648761 0 2048 +~~~ +~~~ +~~~ +~~~ +3648785 homeCount = 34 +3648786 waitCount = 16 +3648786 ripCount = 13 +3648787 locktype1 = 2 +3648787 locktype2 = 4 +3648788 locktype3 = 1 +3648788 goalCount = 0 +3648789 goalTotal = 10 +3648789 otherCount = 16 +~~~ +3648842 UP 10 +3648842 waslock = 0 +3648842 512 2048 +3648864 DOWN 10 +3648864 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3648895 homeCount = 34 +3648895 waitCount = 16 +3648895 ripCount = 13 +3648896 locktype1 = 2 +3648896 locktype2 = 4 +3648897 locktype3 = 1 +3648897 goalCount = 0 +3648898 goalTotal = 10 +3648898 otherCount = 16 +~~~ +3652123 UP 12 +3652123 2048 2048 +3652932 DOWN 12 +3652932 0 2048 +3652964 UP 12 +3652964 2048 2048 +3653181 DOWN 12 +3653181 0 2048 +3653233 UP 12 +3653233 2048 2048 +3654201 DOWN 12 +3654201 0 2048 +3654214 UP 12 +3654214 2048 2048 +3654302 DOWN 12 +3654302 0 2048 +3654322 UP 12 +3654322 2048 2048 +3656123 CLICK1 +3656123 CLICK2 +~~~ +~~~ +~~~ +3656142 2048 67110912 +~~~ +3656292 2048 2048 +3663270 DOWN 12 +3663270 0 2048 +~~~ +~~~ +3663292 0 0 +~~~ +~~~ +3663294 0 1 +~~~ +~~~ +3663295 0 3 +~~~ +~~~ +3663297 0 7 +~~~ +~~~ +3663299 0 15 +~~~ +~~~ +3663301 0 31 +~~~ +~~~ +3663303 0 63 +~~~ +~~~ +3663305 0 127 +~~~ +~~~ +3663306 0 255 +3663307 homeCount = 34 +3663308 waitCount = 17 +3663308 ripCount = 13 +3663309 locktype1 = 2 +3663309 locktype2 = 4 +3663310 locktype3 = 1 +3663331 goalCount = 0 +3663331 goalTotal = 10 +3663332 otherCount = 16 +~~~ +3663333 CURRENTGOAL IS [4] +~~~ +3663342 UP 12 +3663342 2048 255 +3663376 DOWN 12 +3663376 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3663417 homeCount = 34 +3663418 waitCount = 17 +3663418 ripCount = 13 +3663419 locktype1 = 2 +3663419 locktype2 = 4 +3663420 locktype3 = 1 +3663420 goalCount = 0 +3663421 goalTotal = 10 +3663421 otherCount = 16 +~~~ +3663422 CURRENTGOAL IS [4] +~~~ +3667780 UP 8 +3667780 128 255 +~~~ +~~~ +3669059 DOWN 8 +3669059 0 255 +~~~ +~~~ +3669082 0 254 +~~~ +~~~ +3669083 0 252 +~~~ +~~~ +3669085 0 248 +~~~ +~~~ +3669087 0 240 +~~~ +~~~ +3669089 0 224 +~~~ +~~~ +3669091 0 192 +~~~ +~~~ +3669092 0 128 +~~~ +~~~ +3669094 0 0 +~~~ +~~~ +3669096 0 512 +3669097 homeCount = 34 +3669098 waitCount = 17 +3669098 ripCount = 13 +3669099 locktype1 = 2 +3669099 locktype2 = 4 +3669120 locktype3 = 1 +3669120 goalCount = 0 +3669121 goalTotal = 10 +3669121 otherCount = 17 +~~~ +3669122 128 512 +3669779 DOWN 8 +3669778 0 512 +3673367 UP 10 +3673368 waslock = 0 +3673367 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3673398 512 16777728 +~~~ +3673548 512 512 +3674004 DOWN 10 +3674004 0 512 +~~~ +~~~ +3674022 0 2560 +~~~ +~~~ +3674024 0 2048 +3674025 homeCount = 35 +3674026 waitCount = 17 +3674026 ripCount = 13 +3674027 locktype1 = 2 +3674027 locktype2 = 4 +3674028 locktype3 = 1 +3674028 goalCount = 0 +3674029 goalTotal = 10 +3674029 otherCount = 17 +~~~ +3674070 UP 10 +3674071 waslock = 0 +3674070 512 2048 +~~~ +3674098 DOWN 10 +3674098 0 2048 +~~~ +~~~ +~~~ +~~~ +3674117 homeCount = 35 +3674117 waitCount = 17 +3674118 ripCount = 13 +3674118 locktype1 = 2 +3674119 locktype2 = 4 +3674119 locktype3 = 1 +3674120 goalCount = 0 +3674120 goalTotal = 10 +3674121 otherCount = 17 +~~~ +3674174 UP 10 +3674174 waslock = 0 +3674174 512 2048 +~~~ +3674249 DOWN 10 +3674249 0 2048 +~~~ +~~~ +~~~ +~~~ +3674275 homeCount = 35 +3674276 waitCount = 17 +3674276 ripCount = 13 +3674277 locktype1 = 2 +3674277 locktype2 = 4 +3674277 locktype3 = 1 +3674278 goalCount = 0 +3674278 goalTotal = 10 +3674279 otherCount = 17 +~~~ +3674293 UP 10 +3674293 waslock = 0 +3674293 512 2048 +~~~ +3677709 DOWN 10 +3677709 0 2048 +~~~ +~~~ +~~~ +~~~ +3677735 homeCount = 35 +3677736 waitCount = 17 +3677736 ripCount = 13 +3677737 locktype1 = 2 +3677737 locktype2 = 4 +3677738 locktype3 = 1 +3677738 goalCount = 0 +3677738 goalTotal = 10 +3677739 otherCount = 17 +~~~ +3677740 UP 10 +3677740 waslock = 0 +3677740 512 2048 +~~~ +3677816 DOWN 10 +3677816 0 2048 +~~~ +~~~ +~~~ +~~~ +3677847 homeCount = 35 +3677847 waitCount = 17 +3677848 ripCount = 13 +3677848 locktype1 = 2 +3677849 locktype2 = 4 +3677849 locktype3 = 1 +3677850 goalCount = 0 +3677850 goalTotal = 10 +3677851 otherCount = 17 +~~~ +3679816 UP 12 +3679816 2048 2048 +3681588 DOWN 12 +3681588 0 2048 +3681597 UP 12 +3681597 2048 2048 +3684430 DOWN 12 +3684430 0 2048 +3684485 UP 12 +3684485 2048 2048 +3684747 DOWN 12 +3684747 0 2048 +3684948 LOCKOUT 3 +~~~ +3684973 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3684978 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3685030 UP 12 +3685030 2048 0 +3685082 DOWN 12 +3685082 0 0 +3685355 UP 12 +3685355 2048 0 +3692687 DOWN 12 +3692687 0 0 +3692745 UP 12 +3692745 2048 0 +3692881 DOWN 12 +3692881 0 0 +3692939 UP 12 +3692939 2048 0 +3694152 DOWN 12 +3694152 0 0 +3699170 UP 4 +3699170 8 0 +3699650 DOWN 4 +3699650 0 0 +3699701 8 0 +3700017 DOWN 4 +3700017 0 0 +3706263 512 0 +3706530 0 0 +3706569 512 0 +3707502 0 0 +3709664 512 0 +3709973 LOCKEND +~~~ +~~~ +~~~ +3709995 512 512 +3710150 DOWN 10 +3710150 0 512 +3710528 UP 10 +3710528 waslock = 0 +3710528 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3710560 512 16777728 +~~~ +3710592 DOWN 10 +3710592 0 16777728 +~~~ +~~~ +3710613 0 16778752 +~~~ +~~~ +3710615 0 16778240 +3710616 homeCount = 36 +3710616 waitCount = 17 +3710617 ripCount = 13 +3710617 locktype1 = 2 +3710618 locktype2 = 4 +3710618 locktype3 = 2 +3710618 goalCount = 0 +3710619 goalTotal = 10 +3710619 otherCount = 17 +~~~ +3710647 UP 10 +3710647 waslock = 0 +3710647 512 16778240 +~~~ +3710710 512 1024 +3710725 DOWN 10 +3710725 0 1024 +~~~ +~~~ +~~~ +~~~ +3710752 homeCount = 36 +3710752 waitCount = 17 +3710753 ripCount = 13 +3710753 locktype1 = 2 +3710754 locktype2 = 4 +3710754 locktype3 = 2 +3710755 goalCount = 0 +3710755 goalTotal = 10 +3710756 otherCount = 17 +~~~ +3710813 UP 10 +3710813 waslock = 0 +3710813 512 1024 +~~~ +3716169 DOWN 10 +3716169 0 1024 +~~~ +3716193 UP 10 +3716194 waslock = 0 +3716193 512 1024 +~~~ +~~~ +~~~ +3716197 homeCount = 36 +3716197 waitCount = 17 +3716198 ripCount = 13 +3716198 locktype1 = 2 +3716199 locktype2 = 4 +3716199 locktype3 = 2 +3716200 goalCount = 0 +3716200 goalTotal = 10 +3716201 otherCount = 17 +~~~ +~~~ +3716276 DOWN 10 +3716276 0 1024 +~~~ +~~~ +~~~ +~~~ +3716297 homeCount = 36 +3716297 waitCount = 17 +3716298 ripCount = 13 +3716298 locktype1 = 2 +3716299 locktype2 = 4 +3716299 locktype3 = 2 +3716300 goalCount = 0 +3716300 goalTotal = 10 +3716301 otherCount = 17 +~~~ +3717906 UP 11 +3717906 1024 1024 +3723028 DOWN 11 +3723028 0 1024 +3723040 UP 11 +3723040 1024 1024 +3724906 BEEP1 +3724906 BEEP2 +~~~ +~~~ +~~~ +3724926 1024 33555456 +~~~ +3725076 1024 1024 +3731454 DOWN 11 +3731454 0 1024 +~~~ +3731474 UP 11 +3731474 1024 1024 +~~~ +~~~ +3731475 1024 0 +~~~ +3731477 1024 1 +~~~ +~~~ +3731478 1024 3 +~~~ +~~~ +3731480 1024 7 +~~~ +~~~ +3731482 1024 15 +~~~ +~~~ +3731483 1024 31 +~~~ +~~~ +3731485 1024 63 +~~~ +~~~ +3731487 1024 127 +~~~ +~~~ +3731489 1024 255 +3731490 homeCount = 36 +3731490 waitCount = 17 +3731511 ripCount = 14 +3731512 locktype1 = 2 +3731512 locktype2 = 4 +3731513 locktype3 = 2 +3731513 goalCount = 0 +3731514 goalTotal = 10 +3731514 otherCount = 17 +~~~ +3731515 CURRENTGOAL IS [4] +~~~ +3731564 DOWN 11 +3731564 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3731600 homeCount = 36 +3731600 waitCount = 17 +3731601 ripCount = 14 +3731601 locktype1 = 2 +3731602 locktype2 = 4 +3731602 locktype3 = 2 +3731603 goalCount = 0 +3731603 goalTotal = 10 +3731604 otherCount = 17 +~~~ +3731605 CURRENTGOAL IS [4] +~~~ +3731649 UP 11 +3731648 1024 255 +3731667 DOWN 11 +3731667 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3731701 homeCount = 36 +3731702 waitCount = 17 +3731702 ripCount = 14 +3731703 locktype1 = 2 +3731703 locktype2 = 4 +3731704 locktype3 = 2 +3731704 goalCount = 0 +3731705 goalTotal = 10 +3731705 otherCount = 17 +~~~ +3731706 CURRENTGOAL IS [4] +~~~ +3745775 UP 10 +3745776 waslock = 0 +3745775 512 255 +~~~ +3745796 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3745804 512 254 +~~~ +~~~ +3745805 512 252 +~~~ +~~~ +3745807 512 248 +~~~ +~~~ +3745809 512 240 +~~~ +~~~ +3745811 512 224 +~~~ +~~~ +3745813 512 192 +~~~ +~~~ +3745815 512 128 +~~~ +~~~ +3745816 512 0 +~~~ +~~~ +~~~ +3745982 0 0 +3749232 512 0 +3749422 0 0 +3749467 512 0 +3749501 0 0 +3749833 512 0 +3750026 0 0 +3750243 512 0 +3750549 0 0 +3752435 512 0 +3753237 0 0 +3753302 512 0 +3753343 0 0 +3759767 512 0 +3760055 0 0 +3760344 512 0 +3760578 0 0 +3768463 512 0 +3768985 0 0 +3769220 512 0 +3769969 0 0 +3770796 LOCKEND +~~~ +~~~ +~~~ +3770817 0 512 +3771670 UP 10 +3771670 waslock = 0 +3771670 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3771703 512 16777728 +~~~ +3771725 DOWN 10 +3771725 0 16777728 +~~~ +~~~ +3771749 0 16779776 +~~~ +~~~ +3771751 0 16779264 +3771752 homeCount = 37 +3771753 waitCount = 17 +3771753 ripCount = 14 +3771754 locktype1 = 2 +3771754 locktype2 = 5 +3771755 locktype3 = 2 +3771755 goalCount = 0 +3771756 goalTotal = 10 +3771756 otherCount = 17 +~~~ +3771805 UP 10 +3771805 waslock = 0 +3771805 512 16779264 +~~~ +3771853 512 2048 +3776248 DOWN 10 +3776248 0 2048 +3776261 UP 10 +3776261 waslock = 0 +3776261 512 2048 +~~~ +~~~ +~~~ +~~~ +3776269 homeCount = 37 +3776269 waitCount = 17 +3776270 ripCount = 14 +3776270 locktype1 = 2 +3776271 locktype2 = 5 +3776271 locktype3 = 2 +3776272 goalCount = 0 +3776272 goalTotal = 10 +3776272 otherCount = 17 +~~~ +~~~ +3777488 DOWN 10 +3777488 0 2048 +~~~ +~~~ +~~~ +~~~ +3777511 homeCount = 37 +3777511 waitCount = 17 +3777512 ripCount = 14 +3777512 locktype1 = 2 +3777513 locktype2 = 5 +3777513 locktype3 = 2 +3777514 goalCount = 0 +3777514 goalTotal = 10 +3777515 otherCount = 17 +~~~ +3778917 UP 12 +3778916 2048 2048 +3780637 DOWN 12 +3780637 0 2048 +3780645 UP 12 +3780645 2048 2048 +3781520 DOWN 12 +3781520 0 2048 +3781545 UP 12 +3781544 2048 2048 +3781571 DOWN 12 +3781571 0 2048 +3781623 UP 12 +3781623 2048 2048 +3781643 DOWN 12 +3781643 0 2048 +3781678 UP 12 +3781678 2048 2048 +3784417 CLICK1 +3784417 CLICK2 +~~~ +~~~ +~~~ +3784438 2048 67110912 +~~~ +3784588 2048 2048 +3789657 DOWN 12 +3789657 0 2048 +~~~ +~~~ +3789677 0 0 +~~~ +~~~ +3789678 0 1 +~~~ +~~~ +3789680 0 3 +~~~ +~~~ +3789682 0 7 +~~~ +~~~ +3789684 0 15 +~~~ +~~~ +3789686 0 31 +~~~ +~~~ +3789688 0 63 +~~~ +~~~ +3789689 0 127 +~~~ +~~~ +3789691 0 255 +3789692 homeCount = 37 +3789693 waitCount = 18 +3789693 ripCount = 14 +3789694 locktype1 = 2 +3789694 locktype2 = 5 +3789715 locktype3 = 2 +3789716 goalCount = 0 +3789716 goalTotal = 10 +3789717 otherCount = 17 +~~~ +3789718 CURRENTGOAL IS [4] +~~~ +3789718 UP 12 +3789718 2048 255 +3789772 DOWN 12 +3789772 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3789807 homeCount = 37 +3789808 waitCount = 18 +3789808 ripCount = 14 +3789809 locktype1 = 2 +3789809 locktype2 = 5 +3789810 locktype3 = 2 +3789810 goalCount = 0 +3789811 goalTotal = 10 +3789811 otherCount = 17 +~~~ +3789812 CURRENTGOAL IS [4] +~~~ +3794235 UP 5 +3794235 16 255 +~~~ +~~~ +3795367 DOWN 5 +3795367 0 255 +~~~ +~~~ +3795392 0 254 +~~~ +~~~ +3795394 0 252 +~~~ +~~~ +3795396 0 248 +~~~ +~~~ +3795398 0 240 +~~~ +~~~ +3795399 0 224 +~~~ +~~~ +3795401 0 192 +~~~ +~~~ +3795403 0 128 +~~~ +~~~ +3795405 0 0 +~~~ +~~~ +3795407 0 512 +3795408 homeCount = 37 +3795408 waitCount = 18 +3795409 ripCount = 14 +3795409 locktype1 = 2 +3795410 locktype2 = 5 +3795431 locktype3 = 2 +3795431 goalCount = 0 +3795432 goalTotal = 10 +3795432 otherCount = 18 +~~~ +3795433 16 512 +3795632 DOWN 5 +3795632 0 512 +3795657 16 512 +3795681 DOWN 5 +3795681 0 512 +3799735 UP 10 +3799735 waslock = 0 +3799735 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3799766 512 16777728 +~~~ +3799916 512 512 +3800136 DOWN 10 +3800136 0 512 +~~~ +~~~ +3800161 0 2560 +~~~ +~~~ +3800163 0 2048 +3800164 homeCount = 38 +3800165 waitCount = 18 +3800165 ripCount = 14 +3800166 locktype1 = 2 +3800166 locktype2 = 5 +3800167 locktype3 = 2 +3800167 goalCount = 0 +3800168 goalTotal = 10 +3800168 otherCount = 18 +~~~ +3800211 UP 10 +3800211 waslock = 0 +3800211 512 2048 +3800219 DOWN 10 +3800219 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3800237 homeCount = 38 +3800238 waitCount = 18 +3800238 ripCount = 14 +3800239 locktype1 = 2 +3800239 locktype2 = 5 +3800239 locktype3 = 2 +3800240 goalCount = 0 +3800240 goalTotal = 10 +3800241 otherCount = 18 +~~~ +3800339 UP 10 +3800340 waslock = 0 +3800339 512 2048 +~~~ +3800385 DOWN 10 +3800385 0 2048 +3800396 UP 10 +3800396 waslock = 0 +3800396 512 2048 +~~~ +~~~ +~~~ +~~~ +3800409 homeCount = 38 +3800410 waitCount = 18 +3800410 ripCount = 14 +3800411 locktype1 = 2 +3800411 locktype2 = 5 +3800412 locktype3 = 2 +3800412 goalCount = 0 +3800413 goalTotal = 10 +3800413 otherCount = 18 +~~~ +3800414 DOWN 10 +3800414 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +3800451 homeCount = 38 +3800452 waitCount = 18 +3800452 ripCount = 14 +3800453 locktype1 = 2 +3800453 locktype2 = 5 +3800453 locktype3 = 2 +3800454 goalCount = 0 +3800454 goalTotal = 10 +3800455 otherCount = 18 +~~~ +3800468 UP 10 +3800468 waslock = 0 +3800467 512 2048 +~~~ +3803996 DOWN 10 +3803996 0 2048 +~~~ +~~~ +~~~ +~~~ +3804015 homeCount = 38 +3804016 waitCount = 18 +3804016 ripCount = 14 +3804017 locktype1 = 2 +3804017 locktype2 = 5 +3804018 locktype3 = 2 +3804018 goalCount = 0 +3804019 goalTotal = 10 +3804019 otherCount = 18 +~~~ +3804022 UP 10 +3804022 waslock = 0 +3804022 512 2048 +~~~ +3804098 DOWN 10 +3804098 0 2048 +~~~ +~~~ +~~~ +~~~ +3804127 homeCount = 38 +3804128 waitCount = 18 +3804128 ripCount = 14 +3804129 locktype1 = 2 +3804129 locktype2 = 5 +3804129 locktype3 = 2 +3804130 goalCount = 0 +3804130 goalTotal = 10 +3804131 otherCount = 18 +~~~ +3805817 UP 12 +3805817 2048 2048 +3807265 DOWN 12 +3807265 0 2048 +3807349 UP 12 +3807349 2048 2048 +3807359 DOWN 12 +3807359 0 2048 +3807468 UP 12 +3807468 2048 2048 +3807502 DOWN 12 +3807502 0 2048 +3807537 UP 12 +3807537 2048 2048 +3811317 CLICK1 +3811317 CLICK2 +~~~ +~~~ +~~~ +3811334 2048 67110912 +~~~ +3811484 2048 2048 +3817632 DOWN 12 +3817632 0 2048 +~~~ +~~~ +3817654 0 0 +~~~ +~~~ +3817656 0 1 +~~~ +~~~ +3817658 0 3 +~~~ +~~~ +3817660 0 7 +~~~ +~~~ +3817662 0 15 +~~~ +~~~ +3817664 0 31 +~~~ +~~~ +3817665 0 63 +~~~ +~~~ +3817667 0 127 +~~~ +~~~ +3817669 0 255 +3817670 homeCount = 38 +3817671 waitCount = 19 +3817671 ripCount = 14 +3817672 locktype1 = 2 +3817672 locktype2 = 5 +3817673 locktype3 = 2 +3817694 goalCount = 0 +3817694 goalTotal = 10 +3817695 otherCount = 18 +~~~ +3817696 CURRENTGOAL IS [4] +~~~ +3817696 UP 12 +3817696 2048 255 +3817723 DOWN 12 +3817723 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3817760 homeCount = 38 +3817760 waitCount = 19 +3817761 ripCount = 14 +3817761 locktype1 = 2 +3817762 locktype2 = 5 +3817762 locktype3 = 2 +3817763 goalCount = 0 +3817763 goalTotal = 10 +3817764 otherCount = 18 +~~~ +3817765 CURRENTGOAL IS [4] +~~~ +3821477 UP 1 +3821477 1 255 +~~~ +~~~ +3822494 DOWN 1 +3822494 0 255 +~~~ +~~~ +3822514 0 254 +~~~ +~~~ +3822516 0 252 +~~~ +~~~ +3822517 0 248 +~~~ +~~~ +3822519 0 240 +~~~ +~~~ +3822521 0 224 +~~~ +~~~ +3822523 0 192 +~~~ +~~~ +3822525 0 128 +~~~ +~~~ +3822526 0 0 +~~~ +~~~ +3822528 0 512 +3822529 homeCount = 38 +3822530 waitCount = 19 +3822530 ripCount = 14 +3822531 locktype1 = 2 +3822531 locktype2 = 5 +3822552 locktype3 = 2 +3822553 goalCount = 0 +3822553 goalTotal = 10 +3822554 otherCount = 19 +~~~ +3826161 UP 10 +3826161 waslock = 0 +3826161 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3826190 512 16777728 +~~~ +3826340 512 512 +3826395 DOWN 10 +3826395 0 512 +3826408 UP 10 +3826408 waslock = 0 +3826408 512 512 +~~~ +~~~ +3826416 512 1536 +~~~ +~~~ +3826418 512 1024 +3826419 homeCount = 39 +3826420 waitCount = 19 +3826420 ripCount = 14 +3826420 locktype1 = 2 +3826421 locktype2 = 5 +3826421 locktype3 = 2 +3826422 goalCount = 0 +3826422 goalTotal = 10 +3826423 otherCount = 19 +~~~ +~~~ +3829789 DOWN 10 +3829789 0 1024 +~~~ +~~~ +~~~ +~~~ +3829819 homeCount = 39 +3829820 waitCount = 19 +3829820 ripCount = 14 +3829821 locktype1 = 2 +3829821 locktype2 = 5 +3829822 locktype3 = 2 +3829822 goalCount = 0 +3829823 goalTotal = 10 +3829823 otherCount = 19 +~~~ +3829857 UP 10 +3829857 waslock = 0 +3829857 512 1024 +~~~ +3829908 DOWN 10 +3829908 0 1024 +~~~ +~~~ +~~~ +~~~ +3829939 homeCount = 39 +3829939 waitCount = 19 +3829940 ripCount = 14 +3829940 locktype1 = 2 +3829941 locktype2 = 5 +3829941 locktype3 = 2 +3829942 goalCount = 0 +3829942 goalTotal = 10 +3829943 otherCount = 19 +~~~ +3831810 UP 11 +3831810 1024 1024 +3834588 DOWN 11 +3834588 0 1024 +3834611 UP 11 +3834611 1024 1024 +3834810 BEEP1 +3834810 BEEP2 +~~~ +~~~ +~~~ +3834838 1024 33555456 +~~~ +3834988 1024 1024 +3843339 DOWN 11 +3843339 0 1024 +~~~ +~~~ +3843368 0 0 +~~~ +~~~ +3843370 0 1 +~~~ +~~~ +3843372 0 3 +~~~ +~~~ +3843373 0 7 +~~~ +~~~ +3843375 0 15 +~~~ +~~~ +3843377 0 31 +~~~ +~~~ +3843379 0 63 +~~~ +~~~ +3843381 0 127 +~~~ +~~~ +3843382 0 255 +3843383 homeCount = 39 +3843384 waitCount = 19 +3843384 ripCount = 15 +3843385 locktype1 = 2 +3843385 locktype2 = 5 +3843407 locktype3 = 2 +3843407 goalCount = 0 +3843408 goalTotal = 10 +3843408 otherCount = 19 +~~~ +3843409 CURRENTGOAL IS [4] +~~~ +3850007 UP 6 +3850007 32 255 +~~~ +~~~ +3850438 DOWN 6 +3850438 0 255 +~~~ +~~~ +3850460 0 254 +~~~ +~~~ +3850461 0 252 +~~~ +~~~ +3850463 0 248 +~~~ +~~~ +3850465 0 240 +~~~ +~~~ +3850467 0 224 +~~~ +~~~ +3850469 0 192 +~~~ +~~~ +3850471 0 128 +~~~ +~~~ +3850472 0 0 +~~~ +~~~ +3850474 0 512 +3850475 homeCount = 39 +3850476 waitCount = 19 +3850476 ripCount = 15 +3850477 locktype1 = 2 +3850477 locktype2 = 5 +3850498 locktype3 = 2 +3850499 goalCount = 0 +3850499 goalTotal = 10 +3850500 otherCount = 20 +~~~ +3854285 UP 10 +3854285 waslock = 0 +3854285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3854318 512 16777728 +~~~ +3854327 DOWN 10 +3854327 0 16777728 +~~~ +~~~ +3854355 0 16778752 +~~~ +~~~ +3854357 0 16778240 +3854358 homeCount = 40 +3854359 waitCount = 19 +3854359 ripCount = 15 +3854359 locktype1 = 2 +3854360 locktype2 = 5 +3854360 locktype3 = 2 +3854361 goalCount = 0 +3854361 goalTotal = 10 +3854362 otherCount = 20 +~~~ +3854428 UP 10 +3854428 waslock = 0 +3854428 512 16778240 +~~~ +3854468 512 1024 +3854575 DOWN 10 +3854575 0 1024 +3854594 UP 10 +3854594 waslock = 0 +3854594 512 1024 +~~~ +~~~ +~~~ +~~~ +3854615 homeCount = 40 +3854616 waitCount = 19 +3854616 ripCount = 15 +3854617 locktype1 = 2 +3854617 locktype2 = 5 +3854617 locktype3 = 2 +3854618 goalCount = 0 +3854618 goalTotal = 10 +3854619 otherCount = 20 +~~~ +~~~ +3858624 DOWN 10 +3858624 0 1024 +3858631 UP 10 +3858632 waslock = 0 +3858631 512 1024 +~~~ +~~~ +~~~ +~~~ +3858656 homeCount = 40 +3858657 waitCount = 19 +3858657 ripCount = 15 +3858658 locktype1 = 2 +3858658 locktype2 = 5 +3858659 locktype3 = 2 +3858659 goalCount = 0 +3858660 goalTotal = 10 +3858660 otherCount = 20 +~~~ +~~~ +3858741 DOWN 10 +3858741 0 1024 +~~~ +~~~ +~~~ +~~~ +3858764 homeCount = 40 +3858764 waitCount = 19 +3858765 ripCount = 15 +3858765 locktype1 = 2 +3858765 locktype2 = 5 +3858766 locktype3 = 2 +3858766 goalCount = 0 +3858767 goalTotal = 10 +3858767 otherCount = 20 +~~~ +3858768 UP 10 +3858768 waslock = 0 +3858768 512 1024 +~~~ +3858851 DOWN 10 +3858851 0 1024 +~~~ +~~~ +~~~ +~~~ +3858874 homeCount = 40 +3858874 waitCount = 19 +3858875 ripCount = 15 +3858875 locktype1 = 2 +3858876 locktype2 = 5 +3858876 locktype3 = 2 +3858877 goalCount = 0 +3858877 goalTotal = 10 +3858878 otherCount = 20 +~~~ +3861332 UP 11 +3861332 1024 1024 +3864187 DOWN 11 +3864187 0 1024 +3864226 UP 11 +3864226 1024 1024 +3864504 DOWN 11 +3864504 0 1024 +3864515 UP 11 +3864515 1024 1024 +3869332 BEEP1 +3869332 BEEP2 +~~~ +~~~ +~~~ +3869353 1024 33555456 +~~~ +3869503 1024 1024 +3877388 DOWN 11 +3877388 0 1024 +~~~ +~~~ +3877411 0 0 +~~~ +~~~ +3877413 0 1 +~~~ +~~~ +3877415 0 3 +~~~ +~~~ +3877416 0 7 +~~~ +~~~ +3877418 0 15 +~~~ +~~~ +3877420 0 31 +~~~ +~~~ +3877422 0 63 +~~~ +~~~ +3877424 0 127 +~~~ +~~~ +3877425 0 255 +3877426 homeCount = 40 +3877427 waitCount = 19 +3877427 ripCount = 16 +3877428 locktype1 = 2 +3877428 locktype2 = 5 +3877429 locktype3 = 2 +3877450 goalCount = 0 +3877450 goalTotal = 10 +3877451 otherCount = 20 +~~~ +3877452 CURRENTGOAL IS [4] +~~~ +3877452 UP 11 +3877452 1024 255 +3877495 DOWN 11 +3877495 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3877536 homeCount = 40 +3877537 waitCount = 19 +3877537 ripCount = 16 +3877538 locktype1 = 2 +3877538 locktype2 = 5 +3877539 locktype3 = 2 +3877539 goalCount = 0 +3877540 goalTotal = 10 +3877540 otherCount = 20 +~~~ +3877541 CURRENTGOAL IS [4] +~~~ +3888649 UP 10 +3888649 waslock = 0 +3888649 512 255 +~~~ +3888671 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3888679 512 254 +~~~ +~~~ +3888681 512 252 +~~~ +~~~ +3888683 512 248 +~~~ +~~~ +3888684 512 240 +~~~ +~~~ +3888686 512 224 +~~~ +~~~ +3888688 512 192 +~~~ +~~~ +3888690 512 128 +~~~ +~~~ +3888692 512 0 +~~~ +~~~ +~~~ +3888764 0 0 +3888945 512 0 +3889129 0 0 +3892595 UP 11 +3892595 1024 0 +3892720 DOWN 11 +3892720 0 0 +3896362 512 0 +3896505 0 0 +3896586 512 0 +3896737 0 0 +3896765 512 0 +3897158 0 0 +3897194 512 0 +3897289 0 0 +3897321 512 0 +3897709 0 0 +3899622 512 0 +3900148 0 0 +3906959 512 0 +3908083 0 0 +3908132 512 0 +3908168 0 0 +3913671 LOCKEND +~~~ +~~~ +~~~ +3913693 0 512 +3919562 UP 10 +3919562 waslock = 0 +3919562 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3919587 512 16777728 +~~~ +3919709 DOWN 10 +3919709 0 16777728 +3919737 0 512 +~~~ +~~~ +3919739 0 1536 +~~~ +~~~ +3919740 0 1024 +3919741 homeCount = 41 +3919742 waitCount = 19 +3919742 ripCount = 16 +3919743 locktype1 = 2 +3919743 locktype2 = 6 +3919744 locktype3 = 2 +3919744 goalCount = 0 +3919745 goalTotal = 10 +3919745 otherCount = 20 +~~~ +3919773 UP 10 +3919773 waslock = 0 +3919773 512 1024 +3919795 DOWN 10 +3919795 0 1024 +~~~ +3919811 UP 10 +3919811 waslock = 0 +3919811 512 1024 +~~~ +~~~ +~~~ +~~~ +3919830 homeCount = 41 +3919830 waitCount = 19 +3919831 ripCount = 16 +3919831 locktype1 = 2 +3919832 locktype2 = 6 +3919832 locktype3 = 2 +3919833 goalCount = 0 +3919833 goalTotal = 10 +3919834 otherCount = 20 +~~~ +~~~ +3924979 DOWN 10 +3924979 0 1024 +~~~ +~~~ +~~~ +~~~ +3925005 homeCount = 41 +3925006 waitCount = 19 +3925006 ripCount = 16 +3925007 locktype1 = 2 +3925007 locktype2 = 6 +3925008 locktype3 = 2 +3925008 goalCount = 0 +3925008 goalTotal = 10 +3925009 otherCount = 20 +~~~ +3926610 UP 11 +3926610 1024 1024 +3926694 DOWN 11 +3926694 0 1024 +3926742 UP 11 +3926742 1024 1024 +3930573 DOWN 11 +3930573 0 1024 +3930600 UP 11 +3930600 1024 1024 +3930610 BEEP1 +3930610 BEEP2 +~~~ +~~~ +~~~ +3930628 1024 33555456 +~~~ +3930778 1024 1024 +3937964 DOWN 11 +3937964 0 1024 +3937975 UP 11 +3937975 1024 1024 +~~~ +~~~ +3937994 1024 0 +~~~ +~~~ +3937996 1024 1 +~~~ +~~~ +3937997 1024 3 +~~~ +~~~ +3937999 1024 7 +~~~ +~~~ +3938001 1024 15 +~~~ +~~~ +3938003 1024 31 +~~~ +~~~ +3938005 1024 63 +~~~ +~~~ +3938006 1024 127 +~~~ +~~~ +3938008 1024 255 +3938009 homeCount = 41 +3938010 waitCount = 19 +3938010 ripCount = 17 +3938011 locktype1 = 2 +3938031 locktype2 = 6 +3938032 locktype3 = 2 +3938032 goalCount = 0 +3938033 goalTotal = 10 +3938033 otherCount = 20 +~~~ +3938034 CURRENTGOAL IS [4] +~~~ +3938094 DOWN 11 +3938094 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3938130 homeCount = 41 +3938131 waitCount = 19 +3938131 ripCount = 17 +3938132 locktype1 = 2 +3938132 locktype2 = 6 +3938133 locktype3 = 2 +3938133 goalCount = 0 +3938134 goalTotal = 10 +3938134 otherCount = 20 +~~~ +3938135 CURRENTGOAL IS [4] +~~~ +3944182 UP 7 +3944182 64 255 +~~~ +~~~ +3945239 DOWN 7 +3945239 0 255 +~~~ +~~~ +3945265 0 254 +~~~ +~~~ +3945267 0 252 +~~~ +~~~ +3945269 0 248 +~~~ +~~~ +3945271 0 240 +~~~ +~~~ +3945272 0 224 +~~~ +~~~ +3945274 0 192 +~~~ +~~~ +3945276 0 128 +~~~ +~~~ +3945278 0 0 +~~~ +~~~ +3945280 0 512 +3945281 homeCount = 41 +3945281 waitCount = 19 +3945282 ripCount = 17 +3945282 locktype1 = 2 +3945283 locktype2 = 6 +3945304 locktype3 = 2 +3945304 goalCount = 0 +3945305 goalTotal = 10 +3945305 otherCount = 21 +~~~ +3945639 64 512 +3945686 DOWN 7 +3945686 0 512 +3950837 UP 10 +3950838 waslock = 0 +3950837 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3950872 512 16777728 +~~~ +3951022 512 512 +3955553 DOWN 10 +3955553 0 512 +~~~ +~~~ +3955574 0 2560 +~~~ +~~~ +3955576 0 2048 +3955577 homeCount = 42 +3955578 waitCount = 19 +3955578 ripCount = 17 +3955579 locktype1 = 2 +3955579 locktype2 = 6 +3955580 locktype3 = 2 +3955580 goalCount = 0 +3955581 goalTotal = 10 +3955581 otherCount = 21 +~~~ +3955584 UP 10 +3955584 waslock = 0 +3955584 512 2048 +~~~ +3955653 DOWN 10 +3955653 0 2048 +~~~ +~~~ +~~~ +~~~ +3955679 homeCount = 42 +3955679 waitCount = 19 +3955680 ripCount = 17 +3955680 locktype1 = 2 +3955681 locktype2 = 6 +3955681 locktype3 = 2 +3955682 goalCount = 0 +3955682 goalTotal = 10 +3955683 otherCount = 21 +~~~ +3957642 UP 12 +3957642 2048 2048 +3960221 DOWN 12 +3960221 0 2048 +3960243 UP 12 +3960243 2048 2048 +3960399 DOWN 12 +3960399 0 2048 +3960427 UP 12 +3960427 2048 2048 +3960642 CLICK1 +3960642 CLICK2 +~~~ +~~~ +~~~ +3960669 2048 67110912 +~~~ +3960819 2048 2048 +3965466 DOWN 12 +3965465 0 2048 +~~~ +~~~ +3965487 0 0 +~~~ +~~~ +3965489 0 1 +~~~ +~~~ +3965491 0 3 +~~~ +~~~ +3965492 0 7 +~~~ +~~~ +3965494 0 15 +~~~ +~~~ +3965496 0 31 +~~~ +~~~ +3965498 0 63 +~~~ +~~~ +3965500 0 127 +~~~ +~~~ +3965502 0 255 +3965503 homeCount = 42 +3965503 waitCount = 20 +3965504 ripCount = 17 +3965504 locktype1 = 2 +3965505 locktype2 = 6 +3965505 locktype3 = 2 +3965526 goalCount = 0 +3965526 goalTotal = 10 +3965527 otherCount = 21 +~~~ +3965528 CURRENTGOAL IS [4] +~~~ +3965532 UP 12 +3965532 2048 255 +3965567 DOWN 12 +3965567 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +3965604 homeCount = 42 +3965604 waitCount = 20 +3965605 ripCount = 17 +3965605 locktype1 = 2 +3965606 locktype2 = 6 +3965606 locktype3 = 2 +3965607 goalCount = 0 +3965607 goalTotal = 10 +3965608 otherCount = 21 +~~~ +3965609 CURRENTGOAL IS [4] +~~~ +3978210 UP 1 +3978210 1 255 +~~~ +~~~ +3979269 DOWN 1 +3979269 0 255 +~~~ +~~~ +3979288 0 254 +~~~ +~~~ +3979290 0 252 +~~~ +~~~ +3979292 0 248 +~~~ +~~~ +3979294 0 240 +~~~ +~~~ +3979295 0 224 +~~~ +~~~ +3979297 0 192 +~~~ +~~~ +3979299 0 128 +~~~ +~~~ +3979301 0 0 +~~~ +~~~ +3979303 0 512 +3979304 homeCount = 42 +3979304 waitCount = 20 +3979305 ripCount = 17 +3979305 locktype1 = 2 +3979306 locktype2 = 6 +3979326 locktype3 = 2 +3979327 goalCount = 0 +3979327 goalTotal = 10 +3979328 otherCount = 22 +~~~ +3982606 UP 10 +3982607 waslock = 0 +3982606 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +3982633 512 16777728 +~~~ +3982783 512 512 +3982795 DOWN 10 +3982795 0 512 +~~~ +~~~ +3982807 0 1536 +~~~ +~~~ +3982809 0 1024 +3982810 homeCount = 43 +3982811 waitCount = 20 +3982811 ripCount = 17 +3982812 locktype1 = 2 +3982812 locktype2 = 6 +3982813 locktype3 = 2 +3982813 goalCount = 0 +3982814 goalTotal = 10 +3982814 otherCount = 22 +~~~ +3982834 UP 10 +3982834 waslock = 0 +3982834 512 1024 +~~~ +3987599 DOWN 10 +3987599 0 1024 +3987616 UP 10 +3987617 waslock = 0 +3987616 512 1024 +~~~ +~~~ +~~~ +~~~ +3987621 homeCount = 43 +3987622 waitCount = 20 +3987622 ripCount = 17 +3987623 locktype1 = 2 +3987623 locktype2 = 6 +3987624 locktype3 = 2 +3987624 goalCount = 0 +3987625 goalTotal = 10 +3987625 otherCount = 22 +~~~ +~~~ +3987720 DOWN 10 +3987720 0 1024 +~~~ +~~~ +~~~ +~~~ +3987742 homeCount = 43 +3987742 waitCount = 20 +3987743 ripCount = 17 +3987743 locktype1 = 2 +3987744 locktype2 = 6 +3987744 locktype3 = 2 +3987745 goalCount = 0 +3987745 goalTotal = 10 +3987746 otherCount = 22 +~~~ +3987749 UP 10 +3987749 waslock = 0 +3987749 512 1024 +~~~ +3987825 DOWN 10 +3987825 0 1024 +~~~ +~~~ +~~~ +~~~ +3987859 homeCount = 43 +3987860 waitCount = 20 +3987860 ripCount = 17 +3987861 locktype1 = 2 +3987861 locktype2 = 6 +3987862 locktype3 = 2 +3987862 goalCount = 0 +3987862 goalTotal = 10 +3987863 otherCount = 22 +~~~ +3989547 UP 11 +3989547 1024 1024 +3995048 BEEP1 +3995048 BEEP2 +~~~ +~~~ +~~~ +3995074 1024 33555456 +~~~ +3995224 1024 1024 +4000147 DOWN 11 +4000147 0 1024 +~~~ +~~~ +4000174 0 0 +~~~ +~~~ +4000176 UP 11 +4000176 1024 1 +~~~ +~~~ +4000178 1024 3 +~~~ +~~~ +4000180 1024 7 +~~~ +~~~ +4000181 1024 15 +~~~ +~~~ +4000183 1024 31 +~~~ +~~~ +4000185 1024 63 +~~~ +~~~ +4000187 1024 127 +~~~ +~~~ +4000189 1024 255 +4000190 homeCount = 43 +4000190 waitCount = 20 +4000191 ripCount = 18 +4000212 locktype1 = 2 +4000212 locktype2 = 6 +4000213 locktype3 = 2 +4000213 goalCount = 0 +4000214 goalTotal = 10 +4000214 otherCount = 22 +~~~ +4000215 CURRENTGOAL IS [4] +~~~ +4002715 DOWN 11 +4002715 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4002752 homeCount = 43 +4002752 waitCount = 20 +4002753 ripCount = 18 +4002753 locktype1 = 2 +4002754 locktype2 = 6 +4002754 locktype3 = 2 +4002755 goalCount = 0 +4002755 goalTotal = 10 +4002756 otherCount = 22 +~~~ +4002757 CURRENTGOAL IS [4] +~~~ +4002789 UP 11 +4002789 1024 255 +4002814 DOWN 11 +4002814 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4002852 homeCount = 43 +4002853 waitCount = 20 +4002853 ripCount = 18 +4002854 locktype1 = 2 +4002854 locktype2 = 6 +4002855 locktype3 = 2 +4002855 goalCount = 0 +4002855 goalTotal = 10 +4002856 otherCount = 22 +~~~ +4002857 CURRENTGOAL IS [4] +~~~ +4017754 UP 4 +4017754 8 255 +~~~ +~~~ +4017778 outer reward +~~~ +4017778 8 524543 +~~~ +~~~ +4018228 8 255 +4026115 DOWN 4 +4026115 0 255 +4026124 8 255 +~~~ +~~~ +4026135 8 254 +~~~ +~~~ +4026137 8 252 +~~~ +~~~ +4026139 8 248 +~~~ +~~~ +4026141 8 240 +~~~ +~~~ +4026143 8 224 +~~~ +~~~ +4026145 8 192 +~~~ +~~~ +4026146 8 128 +~~~ +~~~ +4026148 8 0 +~~~ +~~~ +4026150 8 512 +4026151 homeCount = 43 +4026152 waitCount = 20 +4026152 ripCount = 18 +4026153 locktype1 = 2 +4026153 locktype2 = 6 +4026174 locktype3 = 2 +4026175 goalCount = 1 +4026175 goalTotal = 11 +4026176 otherCount = 22 +~~~ +4026210 DOWN 4 +4026210 0 512 +4031912 UP 10 +4031913 waslock = 0 +4031912 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4031942 512 16777728 +~~~ +4032092 512 512 +4034692 DOWN 10 +4034692 0 512 +4034708 UP 10 +4034708 waslock = 0 +4034708 512 512 +~~~ +~~~ +4034727 512 1536 +~~~ +~~~ +4034729 512 1024 +4034730 homeCount = 44 +4034730 waitCount = 20 +4034731 ripCount = 18 +4034731 locktype1 = 2 +4034732 locktype2 = 6 +4034732 locktype3 = 2 +4034733 goalCount = 1 +4034733 goalTotal = 11 +4034734 otherCount = 22 +~~~ +~~~ +4034802 DOWN 10 +4034802 0 1024 +~~~ +~~~ +~~~ +~~~ +4034829 homeCount = 44 +4034829 waitCount = 20 +4034830 ripCount = 18 +4034830 locktype1 = 2 +4034831 locktype2 = 6 +4034831 locktype3 = 2 +4034832 goalCount = 1 +4034832 goalTotal = 11 +4034833 otherCount = 22 +~~~ +4034845 UP 10 +4034845 waslock = 0 +4034845 512 1024 +~~~ +4034916 DOWN 10 +4034916 0 1024 +~~~ +~~~ +~~~ +~~~ +4034938 homeCount = 44 +4034939 waitCount = 20 +4034939 ripCount = 18 +4034940 locktype1 = 2 +4034940 locktype2 = 6 +4034941 locktype3 = 2 +4034941 goalCount = 1 +4034942 goalTotal = 11 +4034942 otherCount = 22 +~~~ +4034974 UP 10 +4034974 waslock = 0 +4034974 512 1024 +~~~ +4036788 DOWN 10 +4036788 0 1024 +4036798 UP 10 +4036798 waslock = 0 +4036798 512 1024 +~~~ +~~~ +~~~ +~~~ +4036820 homeCount = 44 +4036821 waitCount = 20 +4036821 ripCount = 18 +4036822 locktype1 = 2 +4036822 locktype2 = 6 +4036823 locktype3 = 2 +4036823 goalCount = 1 +4036824 goalTotal = 11 +4036824 otherCount = 22 +~~~ +~~~ +4036891 DOWN 10 +4036891 0 1024 +~~~ +~~~ +~~~ +~~~ +4036918 homeCount = 44 +4036919 waitCount = 20 +4036919 ripCount = 18 +4036920 locktype1 = 2 +4036920 locktype2 = 6 +4036921 locktype3 = 2 +4036921 goalCount = 1 +4036922 goalTotal = 11 +4036922 otherCount = 22 +~~~ +4039257 UP 11 +4039257 1024 1024 +4040494 DOWN 11 +4040494 0 1024 +4040534 UP 11 +4040534 1024 1024 +4041183 DOWN 11 +4041183 0 1024 +4041188 UP 11 +4041188 1024 1024 +4046257 BEEP1 +4046257 BEEP2 +~~~ +~~~ +~~~ +4046278 1024 33555456 +~~~ +4046428 1024 1024 +4052299 DOWN 11 +4052299 0 1024 +~~~ +~~~ +4052326 0 0 +~~~ +~~~ +4052328 0 1 +~~~ +~~~ +4052330 0 3 +~~~ +~~~ +4052331 0 7 +~~~ +~~~ +4052333 0 15 +~~~ +~~~ +4052335 0 31 +~~~ +~~~ +4052337 0 63 +~~~ +~~~ +4052339 0 127 +~~~ +~~~ +4052340 0 255 +4052341 homeCount = 44 +4052342 waitCount = 20 +4052342 ripCount = 19 +4052343 locktype1 = 2 +4052343 locktype2 = 6 +4052344 locktype3 = 2 +4052365 goalCount = 1 +4052365 goalTotal = 11 +4052366 otherCount = 22 +~~~ +4052367 CURRENTGOAL IS [4] +~~~ +4052367 UP 11 +4052367 1024 255 +4052392 DOWN 11 +4052392 0 255 +4052405 UP 11 +4052405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4052432 homeCount = 44 +4052432 waitCount = 20 +4052433 ripCount = 19 +4052433 locktype1 = 2 +4052434 locktype2 = 6 +4052434 locktype3 = 2 +4052435 goalCount = 1 +4052435 goalTotal = 11 +4052436 otherCount = 22 +~~~ +4052437 CURRENTGOAL IS [4] +~~~ +4055242 DOWN 11 +4055242 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4055281 homeCount = 44 +4055281 waitCount = 20 +4055282 ripCount = 19 +4055282 locktype1 = 2 +4055283 locktype2 = 6 +4055283 locktype3 = 2 +4055284 goalCount = 1 +4055284 goalTotal = 11 +4055285 otherCount = 22 +~~~ +4055286 CURRENTGOAL IS [4] +~~~ +4059122 UP 8 +4059122 128 255 +~~~ +~~~ +4059571 DOWN 8 +4059571 0 255 +~~~ +~~~ +4059595 0 254 +~~~ +~~~ +4059597 0 252 +~~~ +~~~ +4059599 0 248 +~~~ +~~~ +4059601 0 240 +~~~ +~~~ +4059603 0 224 +~~~ +~~~ +4059604 0 192 +~~~ +~~~ +4059606 0 128 +~~~ +~~~ +4059608 0 0 +~~~ +~~~ +4059610 0 512 +4059611 homeCount = 44 +4059611 waitCount = 20 +4059612 ripCount = 19 +4059612 locktype1 = 2 +4059613 locktype2 = 6 +4059634 locktype3 = 2 +4059635 goalCount = 1 +4059635 goalTotal = 11 +4059635 otherCount = 23 +~~~ +4059721 128 512 +4059773 DOWN 8 +4059773 0 512 +4067416 UP 10 +4067416 waslock = 0 +4067416 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4067444 512 16777728 +~~~ +4067594 512 512 +4068209 DOWN 10 +4068209 0 512 +4068223 UP 10 +4068223 waslock = 0 +4068223 512 512 +~~~ +~~~ +4068228 512 1536 +~~~ +~~~ +4068230 512 1024 +4068231 homeCount = 45 +4068231 waitCount = 20 +4068232 ripCount = 19 +4068232 locktype1 = 2 +4068233 locktype2 = 6 +4068233 locktype3 = 2 +4068234 goalCount = 1 +4068234 goalTotal = 11 +4068235 otherCount = 23 +~~~ +~~~ +4068337 DOWN 10 +4068337 0 1024 +~~~ +~~~ +~~~ +~~~ +4068363 homeCount = 45 +4068363 waitCount = 20 +4068364 ripCount = 19 +4068364 locktype1 = 2 +4068365 locktype2 = 6 +4068365 locktype3 = 2 +4068366 goalCount = 1 +4068366 goalTotal = 11 +4068367 otherCount = 23 +~~~ +4068380 UP 10 +4068380 waslock = 0 +4068380 512 1024 +~~~ +4068460 DOWN 10 +4068460 0 1024 +~~~ +~~~ +~~~ +~~~ +4068482 homeCount = 45 +4068482 waitCount = 20 +4068483 ripCount = 19 +4068483 locktype1 = 2 +4068484 locktype2 = 6 +4068484 locktype3 = 2 +4068485 goalCount = 1 +4068485 goalTotal = 11 +4068486 otherCount = 23 +~~~ +4068495 UP 10 +4068496 waslock = 0 +4068495 512 1024 +~~~ +4072504 DOWN 10 +4072504 0 1024 +~~~ +~~~ +~~~ +~~~ +4072531 homeCount = 45 +4072531 waitCount = 20 +4072532 ripCount = 19 +4072532 locktype1 = 2 +4072533 locktype2 = 6 +4072533 locktype3 = 2 +4072534 goalCount = 1 +4072534 goalTotal = 11 +4072535 otherCount = 23 +~~~ +4072546 UP 10 +4072546 waslock = 0 +4072546 512 1024 +~~~ +4072605 DOWN 10 +4072605 0 1024 +~~~ +~~~ +~~~ +~~~ +4072634 homeCount = 45 +4072635 waitCount = 20 +4072635 ripCount = 19 +4072636 locktype1 = 2 +4072636 locktype2 = 6 +4072637 locktype3 = 2 +4072637 goalCount = 1 +4072638 goalTotal = 11 +4072638 otherCount = 23 +~~~ +4074839 UP 11 +4074839 1024 1024 +4077839 BEEP1 +4077839 BEEP2 +~~~ +~~~ +~~~ +4077859 1024 33555456 +~~~ +4078009 1024 1024 +4083791 DOWN 11 +4083791 0 1024 +~~~ +~~~ +4083818 0 0 +~~~ +~~~ +4083820 0 1 +~~~ +~~~ +4083822 0 3 +~~~ +~~~ +4083823 0 7 +~~~ +~~~ +4083825 0 15 +~~~ +4083827 UP 11 +4083826 1024 15 +~~~ +~~~ +4083828 1024 31 +~~~ +~~~ +4083830 1024 63 +~~~ +4083831 1024 127 +~~~ +~~~ +4083833 1024 255 +4083834 homeCount = 45 +4083834 waitCount = 20 +4083855 ripCount = 20 +4083855 locktype1 = 2 +4083856 locktype2 = 6 +4083856 locktype3 = 2 +4083857 goalCount = 1 +4083857 goalTotal = 11 +4083858 otherCount = 23 +~~~ +4083859 CURRENTGOAL IS [4] +~~~ +4083859 DOWN 11 +4083859 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4083907 homeCount = 45 +4083908 waitCount = 20 +4083909 ripCount = 20 +4083909 locktype1 = 2 +4083910 locktype2 = 6 +4083910 locktype3 = 2 +4083911 goalCount = 1 +4083911 goalTotal = 11 +4083911 otherCount = 23 +~~~ +4083913 CURRENTGOAL IS [4] +~~~ +4083913 UP 11 +4083913 1024 255 +4086791 DOWN 11 +4086791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4086829 homeCount = 45 +4086829 waitCount = 20 +4086830 ripCount = 20 +4086830 locktype1 = 2 +4086831 locktype2 = 6 +4086831 locktype3 = 2 +4086832 goalCount = 1 +4086832 goalTotal = 11 +4086833 otherCount = 23 +~~~ +4086834 CURRENTGOAL IS [4] +~~~ +4087998 UP 11 +4087998 1024 255 +4088002 DOWN 11 +4088002 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4088043 homeCount = 45 +4088043 waitCount = 20 +4088044 ripCount = 20 +4088044 locktype1 = 2 +4088045 locktype2 = 6 +4088045 locktype3 = 2 +4088046 goalCount = 1 +4088046 goalTotal = 11 +4088047 otherCount = 23 +~~~ +4088048 CURRENTGOAL IS [4] +~~~ +4090950 UP 5 +4090950 16 255 +~~~ +~~~ +4091298 DOWN 5 +4091297 0 255 +~~~ +~~~ +4091323 0 254 +~~~ +~~~ +4091325 0 252 +~~~ +~~~ +4091327 0 248 +~~~ +~~~ +4091329 0 240 +~~~ +~~~ +4091330 0 224 +~~~ +~~~ +4091332 0 192 +~~~ +~~~ +4091334 0 128 +~~~ +~~~ +4091336 0 0 +~~~ +~~~ +4091338 0 512 +4091339 homeCount = 45 +4091339 waitCount = 20 +4091340 ripCount = 20 +4091340 locktype1 = 2 +4091341 locktype2 = 6 +4091362 locktype3 = 2 +4091362 goalCount = 1 +4091363 goalTotal = 11 +4091363 otherCount = 24 +~~~ +4091364 16 512 +4091503 DOWN 5 +4091503 0 512 +4095890 UP 10 +4095891 waslock = 0 +4095890 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4095915 512 16777728 +~~~ +4096065 512 512 +4096110 DOWN 10 +4096110 0 512 +~~~ +~~~ +4096133 0 2560 +~~~ +~~~ +4096135 0 2048 +4096136 homeCount = 46 +4096137 waitCount = 20 +4096137 ripCount = 20 +4096138 locktype1 = 2 +4096138 locktype2 = 6 +4096139 locktype3 = 2 +4096139 goalCount = 1 +4096140 goalTotal = 11 +4096140 otherCount = 24 +~~~ +4096211 UP 10 +4096211 waslock = 0 +4096211 512 2048 +~~~ +4100984 DOWN 10 +4100984 0 2048 +~~~ +~~~ +~~~ +~~~ +4101012 homeCount = 46 +4101012 waitCount = 20 +4101013 ripCount = 20 +4101013 locktype1 = 2 +4101014 locktype2 = 6 +4101014 locktype3 = 2 +4101015 goalCount = 1 +4101015 goalTotal = 11 +4101016 otherCount = 24 +~~~ +4102585 UP 12 +4102585 2048 2048 +4104563 DOWN 12 +4104563 0 2048 +4104602 UP 12 +4104602 2048 2048 +4106085 CLICK1 +4106085 CLICK2 +~~~ +~~~ +~~~ +4106111 2048 67110912 +~~~ +4106261 2048 2048 +4113653 DOWN 12 +4113653 0 2048 +~~~ +~~~ +4113670 0 0 +~~~ +~~~ +4113672 0 1 +~~~ +~~~ +4113674 0 3 +~~~ +~~~ +4113675 0 7 +~~~ +~~~ +4113677 0 15 +~~~ +~~~ +4113679 0 31 +~~~ +~~~ +4113681 0 63 +~~~ +~~~ +4113683 0 127 +~~~ +~~~ +4113685 0 255 +4113686 homeCount = 46 +4113686 waitCount = 21 +4113687 ripCount = 20 +4113687 locktype1 = 2 +4113688 locktype2 = 6 +4113709 locktype3 = 2 +4113709 goalCount = 1 +4113710 goalTotal = 11 +4113710 otherCount = 24 +~~~ +4113711 CURRENTGOAL IS [4] +~~~ +4113721 UP 12 +4113721 2048 255 +4113777 DOWN 12 +4113777 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4113818 homeCount = 46 +4113819 waitCount = 21 +4113819 ripCount = 20 +4113820 locktype1 = 2 +4113820 locktype2 = 6 +4113821 locktype3 = 2 +4113821 goalCount = 1 +4113822 goalTotal = 11 +4113822 otherCount = 24 +~~~ +4113823 CURRENTGOAL IS [4] +~~~ +4114284 UP 12 +4114284 2048 255 +4114665 DOWN 12 +4114665 0 255 +4114670 UP 12 +4114670 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4114698 homeCount = 46 +4114699 waitCount = 21 +4114699 ripCount = 20 +4114700 locktype1 = 2 +4114700 locktype2 = 6 +4114701 locktype3 = 2 +4114701 goalCount = 1 +4114702 goalTotal = 11 +4114702 otherCount = 24 +~~~ +4114703 CURRENTGOAL IS [4] +~~~ +4114704 DOWN 12 +4114704 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4114761 homeCount = 46 +4114761 waitCount = 21 +4114762 ripCount = 20 +4114763 locktype1 = 2 +4114763 locktype2 = 6 +4114763 locktype3 = 2 +4114764 goalCount = 1 +4114764 goalTotal = 11 +4114765 otherCount = 24 +~~~ +4114766 CURRENTGOAL IS [4] +~~~ +4114819 UP 12 +4114819 2048 255 +4114989 DOWN 12 +4114989 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4115028 homeCount = 46 +4115028 waitCount = 21 +4115029 ripCount = 20 +4115030 locktype1 = 2 +4115030 locktype2 = 6 +4115030 locktype3 = 2 +4115031 goalCount = 1 +4115031 goalTotal = 11 +4115032 otherCount = 24 +~~~ +4115033 CURRENTGOAL IS [4] +~~~ +4115131 UP 12 +4115131 2048 255 +4115180 DOWN 12 +4115180 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4115219 homeCount = 46 +4115220 waitCount = 21 +4115220 ripCount = 20 +4115221 locktype1 = 2 +4115221 locktype2 = 6 +4115222 locktype3 = 2 +4115222 goalCount = 1 +4115223 goalTotal = 11 +4115223 otherCount = 24 +~~~ +4115224 CURRENTGOAL IS [4] +~~~ +4122428 UP 4 +4122428 8 255 +~~~ +~~~ +4122455 outer reward +~~~ +4122456 8 524543 +~~~ +~~~ +4122729 DOWN 4 +4122729 0 524543 +~~~ +~~~ +4122753 0 524542 +~~~ +~~~ +4122755 0 524540 +~~~ +~~~ +4122757 0 524536 +~~~ +~~~ +4122759 0 524528 +~~~ +~~~ +4122761 0 524512 +~~~ +~~~ +4122762 0 524480 +~~~ +~~~ +4122764 0 524416 +~~~ +~~~ +4122766 0 524288 +~~~ +4122767 8 524288 +~~~ +4122769 8 524800 +4122770 homeCount = 46 +4122770 waitCount = 21 +4122791 ripCount = 20 +4122792 locktype1 = 2 +4122792 locktype2 = 6 +4122793 locktype3 = 2 +4122793 goalCount = 2 +4122794 goalTotal = 12 +4122794 otherCount = 24 +~~~ +4122905 8 512 +4123027 DOWN 4 +4123027 0 512 +4123052 8 512 +4123136 DOWN 4 +4123136 0 512 +4123166 8 512 +4123268 DOWN 4 +4123268 0 512 +4123295 8 512 +4123386 DOWN 4 +4123386 0 512 +4123423 8 512 +4123521 DOWN 4 +4123521 0 512 +4123554 8 512 +4123652 DOWN 4 +4123652 0 512 +4123684 8 512 +4123785 DOWN 4 +4123785 0 512 +4123811 8 512 +4123915 DOWN 4 +4123915 0 512 +4123946 8 512 +4124055 DOWN 4 +4124055 0 512 +4124079 8 512 +4124194 DOWN 4 +4124194 0 512 +4124218 8 512 +4124337 DOWN 4 +4124337 0 512 +4124358 8 512 +4124486 DOWN 4 +4124486 0 512 +4124501 8 512 +4124634 DOWN 4 +4124634 0 512 +4124650 8 512 +4124790 DOWN 4 +4124790 0 512 +4124797 8 512 +4125100 DOWN 4 +4125100 0 512 +4125109 8 512 +4128672 DOWN 4 +4128672 0 512 +4128679 8 512 +4128805 DOWN 4 +4128805 0 512 +4128828 8 512 +4130462 DOWN 4 +4130462 0 512 +4134961 UP 10 +4134961 waslock = 0 +4134961 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4134991 512 16777728 +~~~ +4135000 DOWN 10 +4135000 0 16777728 +~~~ +~~~ +4135021 0 16778752 +~~~ +~~~ +4135023 0 16778240 +4135024 homeCount = 47 +4135025 waitCount = 21 +4135025 ripCount = 20 +4135026 locktype1 = 2 +4135026 locktype2 = 6 +4135027 locktype3 = 2 +4135027 goalCount = 2 +4135028 goalTotal = 12 +4135028 otherCount = 24 +~~~ +4135049 UP 10 +4135050 waslock = 0 +4135049 512 16778240 +~~~ +4135141 512 1024 +4135184 DOWN 10 +4135184 0 1024 +~~~ +~~~ +~~~ +~~~ +4135208 homeCount = 47 +4135209 waitCount = 21 +4135209 ripCount = 20 +4135210 locktype1 = 2 +4135210 locktype2 = 6 +4135211 locktype3 = 2 +4135211 goalCount = 2 +4135212 goalTotal = 12 +4135212 otherCount = 24 +~~~ +4135243 UP 10 +4135243 waslock = 0 +4135243 512 1024 +~~~ +4139256 DOWN 10 +4139256 0 1024 +~~~ +~~~ +~~~ +~~~ +4139281 homeCount = 47 +4139281 waitCount = 21 +4139282 ripCount = 20 +4139282 locktype1 = 2 +4139283 locktype2 = 6 +4139283 locktype3 = 2 +4139284 goalCount = 2 +4139284 goalTotal = 12 +4139285 otherCount = 24 +~~~ +4141258 UP 11 +4141258 1024 1024 +4143110 DOWN 11 +4143110 0 1024 +4143119 UP 11 +4143119 1024 1024 +4143125 DOWN 11 +4143125 0 1024 +4143142 UP 11 +4143142 1024 1024 +4143768 DOWN 11 +4143768 0 1024 +4143852 UP 11 +4143852 1024 1024 +4144258 BEEP1 +4144258 BEEP2 +~~~ +~~~ +~~~ +4144279 1024 33555456 +~~~ +4144429 1024 1024 +4148801 DOWN 11 +4148801 0 1024 +4148814 UP 11 +4148814 1024 1024 +~~~ +~~~ +4148830 1024 0 +~~~ +~~~ +4148831 1024 1 +~~~ +~~~ +4148833 1024 3 +~~~ +~~~ +4148835 1024 7 +~~~ +~~~ +4148837 1024 15 +~~~ +~~~ +4148839 1024 31 +~~~ +~~~ +4148841 1024 63 +~~~ +~~~ +4148842 1024 127 +~~~ +~~~ +4148844 1024 255 +4148845 homeCount = 47 +4148846 waitCount = 21 +4148846 ripCount = 21 +4148847 locktype1 = 2 +4148868 locktype2 = 6 +4148868 locktype3 = 2 +4148869 goalCount = 2 +4148869 goalTotal = 12 +4148870 otherCount = 24 +~~~ +4148871 CURRENTGOAL IS [4] +~~~ +4150765 DOWN 11 +4150765 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4150803 homeCount = 47 +4150804 waitCount = 21 +4150805 ripCount = 21 +4150805 locktype1 = 2 +4150806 locktype2 = 6 +4150806 locktype3 = 2 +4150806 goalCount = 2 +4150807 goalTotal = 12 +4150807 otherCount = 24 +~~~ +4150808 CURRENTGOAL IS [4] +~~~ +4150827 UP 11 +4150827 1024 255 +4150902 DOWN 11 +4150902 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4150944 homeCount = 47 +4150944 waitCount = 21 +4150945 ripCount = 21 +4150945 locktype1 = 2 +4150946 locktype2 = 6 +4150946 locktype3 = 2 +4150947 goalCount = 2 +4150947 goalTotal = 12 +4150948 otherCount = 24 +~~~ +4150949 CURRENTGOAL IS [4] +~~~ +4154099 UP 4 +4154099 8 255 +~~~ +~~~ +4154121 outer reward +~~~ +4154121 8 524543 +~~~ +~~~ +4154381 DOWN 4 +4154381 0 524543 +~~~ +~~~ +4154408 0 524542 +~~~ +4154409 8 524542 +~~~ +~~~ +4154411 8 524540 +~~~ +4154412 8 524536 +~~~ +~~~ +4154414 8 524528 +~~~ +~~~ +4154415 8 524512 +~~~ +~~~ +4154417 8 524480 +~~~ +~~~ +4154419 8 524416 +~~~ +~~~ +4154421 8 524288 +~~~ +~~~ +4154423 8 524800 +4154424 homeCount = 47 +4154424 waitCount = 21 +4154445 ripCount = 21 +4154446 locktype1 = 2 +4154446 locktype2 = 6 +4154447 locktype3 = 2 +4154447 goalCount = 3 +4154448 goalTotal = 13 +4154448 otherCount = 24 +~~~ +4154571 8 512 +4154798 DOWN 4 +4154798 0 512 +4154825 8 512 +4154922 DOWN 4 +4154922 0 512 +4154958 8 512 +4155053 DOWN 4 +4155053 0 512 +4155087 8 512 +4155192 DOWN 4 +4155192 0 512 +4155219 8 512 +4155325 DOWN 4 +4155325 0 512 +4155360 8 512 +4155624 DOWN 4 +4155624 0 512 +4155633 8 512 +4156054 DOWN 4 +4156054 0 512 +4156064 8 512 +4162502 DOWN 4 +4162502 0 512 +4162532 8 512 +4162633 DOWN 4 +4162633 0 512 +4162670 8 512 +4162773 DOWN 4 +4162773 0 512 +4167844 UP 10 +4167845 waslock = 0 +4167844 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4167875 512 16777728 +~~~ +4168025 512 512 +4170914 DOWN 10 +4170914 0 512 +~~~ +~~~ +4170942 0 2560 +~~~ +~~~ +4170944 0 2048 +4170945 homeCount = 48 +4170945 waitCount = 21 +4170946 ripCount = 21 +4170946 locktype1 = 2 +4170946 locktype2 = 6 +4170947 locktype3 = 2 +4170947 goalCount = 3 +4170948 goalTotal = 13 +4170948 otherCount = 24 +~~~ +4170949 UP 10 +4170970 waslock = 0 +4170949 512 2048 +~~~ +4171034 DOWN 10 +4171034 0 2048 +~~~ +~~~ +~~~ +~~~ +4171061 homeCount = 48 +4171062 waitCount = 21 +4171062 ripCount = 21 +4171063 locktype1 = 2 +4171063 locktype2 = 6 +4171064 locktype3 = 2 +4171064 goalCount = 3 +4171065 goalTotal = 13 +4171065 otherCount = 24 +~~~ +4171069 UP 10 +4171071 waslock = 0 +4171069 512 2048 +~~~ +4173229 DOWN 10 +4173229 0 2048 +~~~ +~~~ +~~~ +~~~ +4173254 homeCount = 48 +4173254 waitCount = 21 +4173255 ripCount = 21 +4173255 locktype1 = 2 +4173256 locktype2 = 6 +4173256 locktype3 = 2 +4173257 goalCount = 3 +4173257 goalTotal = 13 +4173258 otherCount = 24 +~~~ +4174888 UP 12 +4174888 2048 2048 +4177658 DOWN 12 +4177658 0 2048 +4177681 UP 12 +4177681 2048 2048 +4177889 CLICK1 +4177889 CLICK2 +~~~ +~~~ +~~~ +4177910 2048 67110912 +~~~ +4178060 2048 2048 +4183984 DOWN 12 +4183984 0 2048 +4184003 UP 12 +4184003 2048 2048 +~~~ +~~~ +4184010 2048 0 +~~~ +~~~ +4184012 2048 1 +~~~ +~~~ +4184014 2048 3 +~~~ +~~~ +4184016 2048 7 +~~~ +~~~ +4184018 2048 15 +~~~ +~~~ +4184019 2048 31 +~~~ +~~~ +4184021 2048 63 +~~~ +~~~ +4184023 2048 127 +~~~ +~~~ +4184025 2048 255 +4184026 homeCount = 48 +4184026 waitCount = 22 +4184027 ripCount = 21 +4184027 locktype1 = 2 +4184048 locktype2 = 6 +4184049 locktype3 = 2 +4184049 goalCount = 3 +4184050 goalTotal = 13 +4184050 otherCount = 24 +~~~ +4184051 CURRENTGOAL IS [4] +~~~ +4184071 DOWN 12 +4184071 0 255 +~~~ +~~~ +~~~ +~~~ +4184086 UP 12 +4184086 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184100 homeCount = 48 +4184100 waitCount = 22 +4184101 ripCount = 21 +4184101 locktype1 = 2 +4184102 locktype2 = 6 +4184102 locktype3 = 2 +4184103 goalCount = 3 +4184103 goalTotal = 13 +4184104 otherCount = 24 +~~~ +4184105 CURRENTGOAL IS [4] +~~~ +4184107 DOWN 12 +4184107 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184155 homeCount = 48 +4184155 waitCount = 22 +4184156 ripCount = 21 +4184156 locktype1 = 2 +4184157 locktype2 = 6 +4184157 locktype3 = 2 +4184158 goalCount = 3 +4184158 goalTotal = 13 +4184159 otherCount = 24 +~~~ +4184160 CURRENTGOAL IS [4] +~~~ +4184181 UP 12 +4184181 2048 255 +4184186 DOWN 12 +4184186 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184206 UP 12 +4184206 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184212 homeCount = 48 +4184213 waitCount = 22 +4184213 ripCount = 21 +4184214 locktype1 = 2 +4184214 locktype2 = 6 +4184215 locktype3 = 2 +4184215 goalCount = 3 +4184216 goalTotal = 13 +4184216 otherCount = 24 +~~~ +4184217 CURRENTGOAL IS [4] +~~~ +4184649 DOWN 12 +4184649 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4184690 homeCount = 48 +4184691 waitCount = 22 +4184691 ripCount = 21 +4184692 locktype1 = 2 +4184692 locktype2 = 6 +4184693 locktype3 = 2 +4184693 goalCount = 3 +4184694 goalTotal = 13 +4184694 otherCount = 24 +~~~ +4184695 CURRENTGOAL IS [4] +~~~ +4184704 UP 12 +4184704 2048 255 +4185594 DOWN 12 +4185594 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4185628 homeCount = 48 +4185629 waitCount = 22 +4185629 ripCount = 21 +4185630 locktype1 = 2 +4185630 locktype2 = 6 +4185631 locktype3 = 2 +4185631 goalCount = 3 +4185632 goalTotal = 13 +4185632 otherCount = 24 +~~~ +4185633 CURRENTGOAL IS [4] +~~~ +4185641 UP 12 +4185641 2048 255 +4185708 DOWN 12 +4185707 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4185750 homeCount = 48 +4185750 waitCount = 22 +4185751 ripCount = 21 +4185751 locktype1 = 2 +4185752 locktype2 = 6 +4185752 locktype3 = 2 +4185752 goalCount = 3 +4185753 goalTotal = 13 +4185753 otherCount = 24 +~~~ +4185755 CURRENTGOAL IS [4] +~~~ +4189317 UP 4 +4189317 8 255 +~~~ +~~~ +4189337 outer reward +~~~ +4189337 8 524543 +~~~ +~~~ +4189569 DOWN 4 +4189569 0 524543 +~~~ +~~~ +4189593 0 524542 +~~~ +~~~ +4189595 0 524540 +~~~ +~~~ +4189597 0 524536 +~~~ +~~~ +4189599 0 524528 +~~~ +~~~ +4189601 0 524512 +~~~ +~~~ +4189603 0 524480 +~~~ +~~~ +4189604 0 524416 +~~~ +~~~ +4189606 0 524288 +~~~ +~~~ +4189608 0 524800 +4189609 homeCount = 48 +4189610 waitCount = 22 +4189610 ripCount = 21 +4189611 locktype1 = 2 +4189631 locktype2 = 6 +4189632 locktype3 = 2 +4189632 goalCount = 4 +4189633 goalTotal = 14 +4189633 otherCount = 24 +~~~ +4189634 8 524800 +4189787 8 512 +4190012 DOWN 4 +4190012 0 512 +4190037 8 512 +4190135 DOWN 4 +4190135 0 512 +4190166 8 512 +4190263 DOWN 4 +4190263 0 512 +4190291 8 512 +4190397 DOWN 4 +4190397 0 512 +4190428 8 512 +4190540 DOWN 4 +4190540 0 512 +4190564 8 512 +4190690 DOWN 4 +4190690 0 512 +4190706 8 512 +4190823 DOWN 4 +4190823 0 512 +4190850 8 512 +4190967 DOWN 4 +4190967 0 512 +4190989 8 512 +4191427 DOWN 4 +4191427 0 512 +4191434 8 512 +4196787 DOWN 4 +4196787 0 512 +4196850 8 512 +4196885 DOWN 4 +4196885 0 512 +4201709 UP 10 +4201709 waslock = 0 +4201709 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4201743 512 16777728 +~~~ +4201893 512 512 +4205616 DOWN 10 +4205616 0 512 +~~~ +~~~ +4205637 0 2560 +~~~ +~~~ +4205639 0 2048 +4205640 homeCount = 49 +4205640 waitCount = 22 +4205641 ripCount = 21 +4205641 locktype1 = 2 +4205642 locktype2 = 6 +4205642 locktype3 = 2 +4205643 goalCount = 4 +4205643 goalTotal = 14 +4205644 otherCount = 24 +~~~ +4207370 UP 12 +4207370 2048 2048 +4210795 DOWN 12 +4210795 0 2048 +4210828 UP 12 +4210828 2048 2048 +4213370 CLICK1 +4213370 CLICK2 +~~~ +~~~ +~~~ +4213398 2048 67110912 +~~~ +4213548 2048 2048 +4218738 DOWN 12 +4218738 0 2048 +4218747 UP 12 +4218747 2048 2048 +~~~ +~~~ +4218767 2048 0 +~~~ +~~~ +4218768 2048 1 +~~~ +~~~ +4218770 2048 3 +~~~ +~~~ +4218772 2048 7 +~~~ +~~~ +4218774 2048 15 +~~~ +~~~ +4218776 2048 31 +~~~ +~~~ +4218777 2048 63 +~~~ +~~~ +4218779 2048 127 +~~~ +~~~ +4218781 2048 255 +4218782 homeCount = 49 +4218783 waitCount = 23 +4218783 ripCount = 21 +4218784 locktype1 = 2 +4218805 locktype2 = 6 +4218805 locktype3 = 2 +4218805 goalCount = 4 +4218806 goalTotal = 14 +4218806 otherCount = 24 +~~~ +4218807 CURRENTGOAL IS [4] +~~~ +4218872 DOWN 12 +4218872 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4218914 homeCount = 49 +4218915 waitCount = 23 +4218915 ripCount = 21 +4218916 locktype1 = 2 +4218916 locktype2 = 6 +4218917 locktype3 = 2 +4218917 goalCount = 4 +4218918 goalTotal = 14 +4218918 otherCount = 24 +~~~ +4218919 CURRENTGOAL IS [4] +~~~ +4218920 UP 12 +4218920 2048 255 +4221459 DOWN 12 +4221459 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4221495 homeCount = 49 +4221495 waitCount = 23 +4221496 ripCount = 21 +4221496 locktype1 = 2 +4221497 locktype2 = 6 +4221497 locktype3 = 2 +4221498 goalCount = 4 +4221498 goalTotal = 14 +4221498 otherCount = 24 +~~~ +4221500 CURRENTGOAL IS [4] +~~~ +4224609 UP 4 +4224609 8 255 +~~~ +~~~ +4224631 outer reward +~~~ +4224631 8 524543 +~~~ +~~~ +4224876 DOWN 4 +4224876 0 524543 +~~~ +~~~ +4224899 0 524542 +~~~ +~~~ +4224900 0 524540 +~~~ +~~~ +4224902 0 524536 +~~~ +~~~ +4224904 0 524528 +~~~ +~~~ +4224906 0 524512 +~~~ +~~~ +4224908 0 524480 +~~~ +~~~ +4224909 0 524416 +~~~ +~~~ +4224911 0 524288 +~~~ +~~~ +4224913 0 524800 +4224914 homeCount = 49 +4224915 waitCount = 23 +4224915 ripCount = 21 +4224916 locktype1 = 2 +4224936 locktype2 = 6 +4224937 locktype3 = 2 +4224937 goalCount = 5 +4224938 goalTotal = 15 +4224938 otherCount = 24 +~~~ +4224939 8 524800 +4225081 8 512 +4225313 DOWN 4 +4225313 0 512 +4225326 8 512 +4225439 DOWN 4 +4225439 0 512 +4225457 8 512 +4225572 DOWN 4 +4225572 0 512 +4225586 8 512 +4225707 DOWN 4 +4225707 0 512 +4225724 8 512 +4225835 DOWN 4 +4225835 0 512 +4225858 8 512 +4225971 DOWN 4 +4225971 0 512 +4225988 8 512 +4226102 DOWN 4 +4226102 0 512 +4226123 8 512 +4226240 DOWN 4 +4226240 0 512 +4226257 8 512 +4226379 DOWN 4 +4226379 0 512 +4226390 8 512 +4226527 DOWN 4 +4226527 0 512 +4226533 8 512 +4231515 DOWN 4 +4231515 0 512 +4231529 8 512 +4233369 DOWN 4 +4233369 0 512 +4237735 UP 10 +4237735 waslock = 0 +4237735 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4237765 512 16777728 +~~~ +4237915 512 512 +4241880 DOWN 10 +4241880 0 512 +~~~ +~~~ +4241900 0 1536 +~~~ +~~~ +4241902 0 1024 +4241903 homeCount = 50 +4241903 waitCount = 23 +4241904 ripCount = 21 +4241904 locktype1 = 2 +4241905 locktype2 = 6 +4241905 locktype3 = 2 +4241905 goalCount = 5 +4241906 goalTotal = 15 +4241906 otherCount = 24 +~~~ +4243762 UP 11 +4243762 1024 1024 +4243837 DOWN 11 +4243837 0 1024 +4243952 UP 11 +4243952 1024 1024 +4250763 BEEP1 +4250763 BEEP2 +~~~ +~~~ +~~~ +4250781 1024 33555456 +~~~ +4250931 1024 1024 +4256515 DOWN 11 +4256515 0 1024 +~~~ +~~~ +4256539 0 0 +~~~ +~~~ +4256541 0 1 +~~~ +~~~ +4256543 0 3 +~~~ +~~~ +4256545 0 7 +~~~ +~~~ +4256546 0 15 +~~~ +~~~ +4256548 0 31 +~~~ +~~~ +4256550 0 63 +~~~ +~~~ +4256552 0 127 +~~~ +~~~ +4256554 0 255 +4256555 homeCount = 50 +4256555 waitCount = 23 +4256556 ripCount = 22 +4256556 locktype1 = 2 +4256557 locktype2 = 6 +4256557 locktype3 = 2 +4256578 goalCount = 5 +4256579 goalTotal = 15 +4256579 otherCount = 24 +~~~ +4256580 CURRENTGOAL IS [4] +~~~ +4256581 UP 11 +4256581 1024 255 +4259496 DOWN 11 +4259496 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4259538 homeCount = 50 +4259538 waitCount = 23 +4259539 ripCount = 22 +4259539 locktype1 = 2 +4259540 locktype2 = 6 +4259540 locktype3 = 2 +4259541 goalCount = 5 +4259541 goalTotal = 15 +4259542 otherCount = 24 +~~~ +4259543 CURRENTGOAL IS [4] +~~~ +4265652 UP 4 +4265652 8 255 +~~~ +~~~ +4265674 outer reward +~~~ +4265674 8 524543 +~~~ +~~~ +4265917 DOWN 4 +4265917 0 524543 +~~~ +~~~ +4265942 0 524542 +~~~ +~~~ +4265944 0 524540 +~~~ +~~~ +4265945 0 524536 +~~~ +~~~ +4265947 0 524528 +~~~ +~~~ +4265949 0 524512 +~~~ +~~~ +4265951 0 524480 +~~~ +~~~ +4265953 0 524416 +~~~ +~~~ +4265955 0 524288 +~~~ +~~~ +4265956 0 524800 +4265957 homeCount = 50 +4265958 waitCount = 23 +4265958 ripCount = 22 +4265959 locktype1 = 2 +4265980 locktype2 = 6 +4265980 locktype3 = 2 +4265981 goalCount = 6 +4265981 goalTotal = 16 +4265982 otherCount = 24 +~~~ +4265982 8 524800 +4266107 DOWN 4 +4266107 0 524800 +4266124 0 512 +4266129 8 512 +4266357 DOWN 4 +4266357 0 512 +4266378 8 512 +4266481 DOWN 4 +4266481 0 512 +4266507 8 512 +4266607 DOWN 4 +4266607 0 512 +4266639 8 512 +4266745 DOWN 4 +4266745 0 512 +4266764 8 512 +4266865 DOWN 4 +4266865 0 512 +4266891 8 512 +4266997 DOWN 4 +4266997 0 512 +4267021 8 512 +4267136 DOWN 4 +4267136 0 512 +4267154 8 512 +4274215 DOWN 4 +4274215 0 512 +4280342 UP 10 +4280343 waslock = 0 +4280342 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4280370 512 16777728 +~~~ +4280520 512 512 +4280525 DOWN 10 +4280525 0 512 +4280544 UP 10 +4280544 waslock = 0 +4280544 512 512 +~~~ +~~~ +4280547 512 1536 +~~~ +~~~ +4280549 512 1024 +4280550 homeCount = 51 +4280551 waitCount = 23 +4280551 ripCount = 22 +4280552 locktype1 = 2 +4280552 locktype2 = 6 +4280553 locktype3 = 2 +4280553 goalCount = 6 +4280554 goalTotal = 16 +4280554 otherCount = 24 +~~~ +~~~ +4284174 DOWN 10 +4284174 0 1024 +~~~ +~~~ +~~~ +~~~ +4284198 homeCount = 51 +4284199 waitCount = 23 +4284199 ripCount = 22 +4284200 locktype1 = 2 +4284200 locktype2 = 6 +4284201 locktype3 = 2 +4284201 goalCount = 6 +4284202 goalTotal = 16 +4284202 otherCount = 24 +~~~ +4285958 UP 11 +4285958 1024 1024 +4289670 DOWN 11 +4289669 0 1024 +4289688 UP 11 +4289688 1024 1024 +4290459 BEEP1 +4290459 BEEP2 +~~~ +~~~ +~~~ +4290489 1024 33555456 +~~~ +4290638 1024 1024 +4295683 DOWN 11 +4295683 0 1024 +4295693 UP 11 +4295693 1024 1024 +~~~ +~~~ +4295706 1024 0 +~~~ +~~~ +4295708 1024 1 +~~~ +~~~ +4295710 1024 3 +~~~ +~~~ +4295712 1024 7 +~~~ +~~~ +4295713 1024 15 +~~~ +~~~ +4295715 1024 31 +~~~ +~~~ +4295717 1024 63 +~~~ +~~~ +4295719 1024 127 +~~~ +~~~ +4295721 1024 255 +4295722 homeCount = 51 +4295722 waitCount = 23 +4295723 ripCount = 23 +4295723 locktype1 = 2 +4295744 locktype2 = 6 +4295745 locktype3 = 2 +4295745 goalCount = 6 +4295745 goalTotal = 16 +4295746 otherCount = 24 +~~~ +4295747 CURRENTGOAL IS [4] +~~~ +4295766 DOWN 11 +4295766 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4295801 UP 11 +4295801 1024 255 +4295803 homeCount = 51 +4295803 waitCount = 23 +4295804 ripCount = 23 +4295804 locktype1 = 2 +4295805 locktype2 = 6 +4295805 locktype3 = 2 +4295805 goalCount = 6 +4295806 goalTotal = 16 +4295806 otherCount = 24 +~~~ +4295808 CURRENTGOAL IS [4] +~~~ +4298136 DOWN 11 +4298136 0 255 +4298151 UP 11 +4298150 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298186 homeCount = 51 +4298186 waitCount = 23 +4298187 ripCount = 23 +4298187 locktype1 = 2 +4298188 locktype2 = 6 +4298188 locktype3 = 2 +4298189 goalCount = 6 +4298189 goalTotal = 16 +4298189 otherCount = 24 +~~~ +4298191 CURRENTGOAL IS [4] +~~~ +4298236 DOWN 11 +4298236 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298273 homeCount = 51 +4298274 waitCount = 23 +4298274 ripCount = 23 +4298275 locktype1 = 2 +4298275 locktype2 = 6 +4298276 locktype3 = 2 +4298276 goalCount = 6 +4298277 goalTotal = 16 +4298277 otherCount = 24 +~~~ +4298278 CURRENTGOAL IS [4] +~~~ +4298331 UP 11 +4298331 1024 255 +4298354 DOWN 11 +4298354 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4298397 homeCount = 51 +4298397 waitCount = 23 +4298398 ripCount = 23 +4298399 locktype1 = 2 +4298399 locktype2 = 6 +4298399 locktype3 = 2 +4298400 goalCount = 6 +4298400 goalTotal = 16 +4298401 otherCount = 24 +~~~ +4298402 CURRENTGOAL IS [4] +~~~ +4302468 UP 4 +4302468 8 255 +~~~ +~~~ +4302491 outer reward +~~~ +4302492 8 524543 +~~~ +~~~ +4302679 DOWN 4 +4302679 0 524543 +~~~ +~~~ +4302699 0 524542 +~~~ +~~~ +4302701 0 524540 +~~~ +~~~ +4302703 0 524536 +~~~ +~~~ +4302704 0 524528 +~~~ +~~~ +4302706 0 524512 +~~~ +~~~ +4302708 0 524480 +~~~ +~~~ +4302710 0 524416 +~~~ +~~~ +4302712 0 524288 +~~~ +~~~ +4302714 0 524800 +4302715 homeCount = 51 +4302715 waitCount = 23 +4302716 ripCount = 23 +4302716 locktype1 = 2 +4302737 locktype2 = 6 +4302737 locktype3 = 2 +4302738 goalCount = 7 +4302738 goalTotal = 17 +4302739 otherCount = 24 +~~~ +4302739 8 524800 +4302941 8 512 +4303248 DOWN 4 +4303248 0 512 +4303265 8 512 +4303374 DOWN 4 +4303374 0 512 +4303389 8 512 +4303497 DOWN 4 +4303497 0 512 +4303521 8 512 +4303616 DOWN 4 +4303616 0 512 +4303650 8 512 +4303768 DOWN 4 +4303768 0 512 +4303779 8 512 +4304355 DOWN 4 +4304355 0 512 +4304361 8 512 +4309831 DOWN 4 +4309831 0 512 +4314365 UP 10 +4314365 waslock = 0 +4314365 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4314398 512 16777728 +~~~ +4314518 DOWN 10 +4314518 0 16777728 +~~~ +~~~ +4314541 0 16778752 +~~~ +~~~ +4314543 0 16778240 +4314544 homeCount = 52 +4314544 waitCount = 23 +4314545 ripCount = 23 +4314545 locktype1 = 2 +4314546 locktype2 = 6 +4314546 locktype3 = 2 +4314547 goalCount = 7 +4314547 goalTotal = 17 +4314548 otherCount = 24 +~~~ +4314569 UP 10 +4314569 waslock = 0 +4314569 512 16778240 +4314571 512 1024 +~~~ +4320357 DOWN 10 +4320357 0 1024 +~~~ +~~~ +~~~ +~~~ +4320385 homeCount = 52 +4320385 waitCount = 23 +4320386 ripCount = 23 +4320386 locktype1 = 2 +4320387 locktype2 = 6 +4320387 locktype3 = 2 +4320388 goalCount = 7 +4320388 goalTotal = 17 +4320389 otherCount = 24 +~~~ +4322525 UP 11 +4322525 1024 1024 +4324497 DOWN 11 +4324497 0 1024 +4324536 UP 11 +4324536 1024 1024 +4326525 BEEP1 +4326525 BEEP2 +~~~ +~~~ +~~~ +4326554 1024 33555456 +~~~ +4326703 1024 1024 +4332297 DOWN 11 +4332297 0 1024 +~~~ +~~~ +4332321 0 0 +~~~ +~~~ +4332323 0 1 +~~~ +~~~ +4332325 0 3 +~~~ +~~~ +4332327 0 7 +~~~ +~~~ +4332329 0 15 +~~~ +~~~ +4332331 0 31 +~~~ +~~~ +4332332 0 63 +~~~ +~~~ +4332334 0 127 +~~~ +~~~ +4332336 0 255 +4332337 homeCount = 52 +4332338 waitCount = 23 +4332338 ripCount = 24 +4332339 locktype1 = 2 +4332339 locktype2 = 6 +4332360 locktype3 = 2 +4332361 goalCount = 7 +4332361 goalTotal = 17 +4332362 otherCount = 24 +~~~ +4332363 CURRENTGOAL IS [4] +~~~ +4332363 UP 11 +4332363 1024 255 +4336000 DOWN 11 +4336000 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4336037 homeCount = 52 +4336038 waitCount = 23 +4336038 ripCount = 24 +4336039 locktype1 = 2 +4336039 locktype2 = 6 +4336040 locktype3 = 2 +4336040 goalCount = 7 +4336041 goalTotal = 17 +4336041 otherCount = 24 +~~~ +4336042 CURRENTGOAL IS [4] +~~~ +4336052 UP 11 +4336052 1024 255 +4336156 DOWN 11 +4336156 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4336197 homeCount = 52 +4336198 waitCount = 23 +4336198 ripCount = 24 +4336199 locktype1 = 2 +4336199 locktype2 = 6 +4336200 locktype3 = 2 +4336200 goalCount = 7 +4336201 goalTotal = 17 +4336201 otherCount = 24 +~~~ +4336202 CURRENTGOAL IS [4] +~~~ +4340725 UP 4 +4340725 8 255 +~~~ +~~~ +4340744 outer reward +~~~ +4340745 8 524543 +~~~ +~~~ +4340992 DOWN 4 +4340992 0 524543 +~~~ +~~~ +4341014 0 524542 +~~~ +~~~ +4341016 0 524540 +~~~ +~~~ +4341018 0 524536 +~~~ +~~~ +4341020 0 524528 +~~~ +~~~ +4341022 0 524512 +~~~ +~~~ +4341023 0 524480 +~~~ +~~~ +4341025 0 524416 +~~~ +~~~ +4341027 0 524288 +~~~ +~~~ +4341029 0 524800 +4341030 homeCount = 52 +4341030 waitCount = 23 +4341031 ripCount = 24 +4341031 locktype1 = 2 +4341052 locktype2 = 6 +4341053 locktype3 = 2 +4341053 goalCount = 8 +4341054 goalTotal = 18 +4341054 otherCount = 24 +~~~ +4341055 8 524800 +4341194 8 512 +4341417 DOWN 4 +4341417 0 512 +4341435 8 512 +4341664 DOWN 4 +4341664 0 512 +4341693 8 512 +4341796 DOWN 4 +4341796 0 512 +4341811 8 512 +4341917 DOWN 4 +4341917 0 512 +4341945 8 512 +4342051 DOWN 4 +4342051 0 512 +4342074 8 512 +4342192 DOWN 4 +4342192 0 512 +4342207 8 512 +4342332 DOWN 4 +4342332 0 512 +4342351 8 512 +4342475 DOWN 4 +4342475 0 512 +4342489 8 512 +4342627 DOWN 4 +4342627 0 512 +4342636 8 512 +4342773 DOWN 4 +4342773 0 512 +4342786 8 512 +4342928 DOWN 4 +4342928 0 512 +4342942 8 512 +4343079 DOWN 4 +4343079 0 512 +4343090 8 512 +4345668 DOWN 4 +4345668 0 512 +4345673 8 512 +4347893 DOWN 4 +4347893 0 512 +4347977 8 512 +4347999 DOWN 4 +4347999 0 512 +4352959 UP 10 +4352959 waslock = 0 +4352959 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4352990 512 16777728 +~~~ +4353126 DOWN 10 +4353126 0 16777728 +4353139 0 512 +~~~ +~~~ +4353148 0 1536 +~~~ +~~~ +4353150 0 1024 +4353150 homeCount = 53 +4353151 waitCount = 23 +4353151 ripCount = 24 +4353152 locktype1 = 2 +4353152 locktype2 = 6 +4353153 locktype3 = 2 +4353153 goalCount = 8 +4353154 goalTotal = 18 +4353154 otherCount = 24 +~~~ +4353161 UP 10 +4353161 waslock = 0 +4353161 512 1024 +~~~ +4356494 DOWN 10 +4356494 0 1024 +~~~ +~~~ +~~~ +~~~ +4356516 homeCount = 53 +4356517 waitCount = 23 +4356517 ripCount = 24 +4356518 locktype1 = 2 +4356518 locktype2 = 6 +4356519 locktype3 = 2 +4356519 goalCount = 8 +4356520 goalTotal = 18 +4356520 otherCount = 24 +~~~ +4356538 UP 10 +4356539 waslock = 0 +4356538 512 1024 +~~~ +4356593 DOWN 10 +4356593 0 1024 +~~~ +~~~ +~~~ +~~~ +4356618 homeCount = 53 +4356619 waitCount = 23 +4356619 ripCount = 24 +4356620 locktype1 = 2 +4356620 locktype2 = 6 +4356621 locktype3 = 2 +4356621 goalCount = 8 +4356622 goalTotal = 18 +4356622 otherCount = 24 +~~~ +4358394 UP 11 +4358394 1024 1024 +4361395 BEEP1 +4361395 BEEP2 +~~~ +~~~ +~~~ +4361417 1024 33555456 +~~~ +4361567 1024 1024 +4368629 DOWN 11 +4368629 0 1024 +~~~ +~~~ +4368655 0 0 +~~~ +~~~ +4368657 0 1 +~~~ +~~~ +4368659 0 3 +~~~ +~~~ +4368660 0 7 +~~~ +~~~ +4368662 0 15 +~~~ +~~~ +4368664 0 31 +~~~ +~~~ +4368666 0 63 +~~~ +~~~ +4368668 0 127 +~~~ +~~~ +4368669 0 255 +4368670 homeCount = 53 +4368671 waitCount = 23 +4368672 ripCount = 25 +4368672 locktype1 = 2 +4368673 locktype2 = 6 +4368673 locktype3 = 2 +4368694 goalCount = 8 +4368694 goalTotal = 18 +4368695 otherCount = 24 +~~~ +4368696 CURRENTGOAL IS [4] +~~~ +4368696 UP 11 +4368696 1024 255 +4370757 DOWN 11 +4370757 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4370794 homeCount = 53 +4370794 waitCount = 23 +4370795 ripCount = 25 +4370795 locktype1 = 2 +4370796 locktype2 = 6 +4370796 locktype3 = 2 +4370797 goalCount = 8 +4370797 goalTotal = 18 +4370798 otherCount = 24 +~~~ +4370799 CURRENTGOAL IS [4] +~~~ +4370799 UP 11 +4370799 1024 255 +4370853 DOWN 11 +4370853 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4370893 homeCount = 53 +4370893 waitCount = 23 +4370894 ripCount = 25 +4370894 locktype1 = 2 +4370895 locktype2 = 6 +4370895 locktype3 = 2 +4370896 goalCount = 8 +4370896 goalTotal = 18 +4370897 otherCount = 24 +~~~ +4370898 CURRENTGOAL IS [4] +~~~ +4374044 UP 4 +4374044 8 255 +~~~ +~~~ +4374070 outer reward +~~~ +4374070 8 524543 +~~~ +~~~ +4374256 DOWN 4 +4374256 0 524543 +~~~ +~~~ +4374277 0 524542 +~~~ +~~~ +4374279 0 524540 +~~~ +~~~ +4374281 0 524536 +~~~ +~~~ +4374283 0 524528 +~~~ +~~~ +4374284 0 524512 +~~~ +~~~ +4374286 0 524480 +~~~ +~~~ +4374288 0 524416 +~~~ +~~~ +4374290 0 524288 +~~~ +~~~ +4374292 0 524800 +4374293 homeCount = 53 +4374293 waitCount = 23 +4374294 ripCount = 25 +4374315 locktype1 = 2 +4374315 locktype2 = 6 +4374316 locktype3 = 2 +4374316 goalCount = 9 +4374317 goalTotal = 19 +4374317 otherCount = 24 +~~~ +4374318 8 524800 +4374520 8 512 +4374698 DOWN 4 +4374698 0 512 +4374706 8 512 +4374816 DOWN 4 +4374815 0 512 +4374836 8 512 +4374934 DOWN 4 +4374934 0 512 +4374972 8 512 +4375072 DOWN 4 +4375071 0 512 +4375096 8 512 +4375198 DOWN 4 +4375198 0 512 +4375232 8 512 +4375338 DOWN 4 +4375338 0 512 +4375353 8 512 +4375631 DOWN 4 +4375631 0 512 +4375642 8 512 +4379874 DOWN 4 +4379874 0 512 +4379885 8 512 +4380055 DOWN 4 +4380055 0 512 +4380062 8 512 +4381987 DOWN 4 +4381987 0 512 +4382016 8 512 +4382061 DOWN 4 +4382061 0 512 +4385877 UP 10 +4385878 waslock = 0 +4385877 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4385906 512 16777728 +~~~ +4385914 DOWN 10 +4385913 0 16777728 +~~~ +~~~ +4385944 0 16778752 +~~~ +4385945 UP 10 +4385945 waslock = 0 +4385945 512 16778752 +~~~ +4385947 homeCount = 54 +4385948 waitCount = 23 +4385948 ripCount = 25 +4385949 locktype1 = 2 +4385949 locktype2 = 6 +4385950 locktype3 = 2 +4385950 goalCount = 9 +4385951 goalTotal = 19 +4385972 otherCount = 24 +~~~ +4385972 512 16778240 +~~~ +4386055 512 1024 +4390253 DOWN 10 +4390253 0 1024 +~~~ +~~~ +~~~ +~~~ +4390279 homeCount = 54 +4390280 waitCount = 23 +4390280 ripCount = 25 +4390281 locktype1 = 2 +4390281 locktype2 = 6 +4390282 locktype3 = 2 +4390282 goalCount = 9 +4390283 goalTotal = 19 +4390283 otherCount = 24 +~~~ +4390329 UP 10 +4390330 waslock = 0 +4390329 512 1024 +~~~ +4390375 DOWN 10 +4390375 0 1024 +~~~ +~~~ +~~~ +~~~ +4390398 homeCount = 54 +4390399 waitCount = 23 +4390399 ripCount = 25 +4390400 locktype1 = 2 +4390400 locktype2 = 6 +4390401 locktype3 = 2 +4390401 goalCount = 9 +4390402 goalTotal = 19 +4390402 otherCount = 24 +~~~ +4391799 UP 11 +4391799 1024 1024 +4395467 DOWN 11 +4395467 0 1024 +4395532 UP 11 +4395532 1024 1024 +4398800 BEEP1 +4398800 BEEP2 +~~~ +~~~ +~~~ +4398827 1024 33555456 +~~~ +4398977 1024 1024 +4404797 DOWN 11 +4404797 0 1024 +~~~ +~~~ +4404815 0 0 +~~~ +~~~ +4404817 0 1 +~~~ +~~~ +4404819 0 3 +~~~ +~~~ +4404821 0 7 +~~~ +~~~ +4404823 0 15 +~~~ +4404824 UP 11 +4404824 1024 15 +~~~ +~~~ +~~~ +4404826 1024 63 +~~~ +~~~ +4404828 1024 127 +~~~ +~~~ +4404830 1024 255 +4404831 homeCount = 54 +4404831 waitCount = 23 +4404832 ripCount = 26 +4404853 locktype1 = 2 +4404854 locktype2 = 6 +4404854 locktype3 = 2 +4404855 goalCount = 9 +4404855 goalTotal = 19 +4404856 otherCount = 24 +~~~ +4404857 CURRENTGOAL IS [4] +~~~ +4404857 DOWN 11 +4404857 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +4404890 UP 11 +4404890 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4404902 homeCount = 54 +4404903 waitCount = 23 +4404903 ripCount = 26 +4404904 locktype1 = 2 +4404904 locktype2 = 6 +4404905 locktype3 = 2 +4404905 goalCount = 9 +4404906 goalTotal = 19 +4404906 otherCount = 24 +~~~ +4404907 CURRENTGOAL IS [4] +~~~ +4408442 DOWN 11 +4408442 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4408483 homeCount = 54 +4408483 waitCount = 23 +4408484 ripCount = 26 +4408484 locktype1 = 2 +4408485 locktype2 = 6 +4408485 locktype3 = 2 +4408486 goalCount = 9 +4408486 goalTotal = 19 +4408486 otherCount = 24 +~~~ +4408488 CURRENTGOAL IS [4] +~~~ +4411793 UP 4 +4411793 8 255 +~~~ +~~~ +4411820 outer reward +~~~ +4411820 8 524543 +~~~ +~~~ +4411825 outerreps = 12 +~~~ +~~~ +4412010 DOWN 4 +4412010 0 524543 +~~~ +~~~ +4412036 0 524542 +~~~ +~~~ +4412037 0 524540 +~~~ +~~~ +4412039 0 524536 +~~~ +~~~ +4412041 0 524528 +~~~ +~~~ +4412043 0 524512 +~~~ +~~~ +4412045 0 524480 +~~~ +~~~ +4412047 0 524416 +~~~ +~~~ +4412048 0 524288 +~~~ +~~~ +4412050 0 524800 +4412051 homeCount = 54 +4412052 waitCount = 23 +4412052 ripCount = 26 +4412073 locktype1 = 2 +4412074 locktype2 = 6 +4412074 locktype3 = 2 +4412075 goalCount = 0 +4412075 goalTotal = 20 +4412076 otherCount = 24 +~~~ +4412076 8 524800 +4412270 8 512 +4412461 DOWN 4 +4412461 0 512 +4412488 8 512 +4412620 DOWN 4 +4412620 0 512 +4412641 8 512 +4412756 DOWN 4 +4412756 0 512 +4412785 8 512 +4412892 DOWN 4 +4412892 0 512 +4412925 8 512 +4413034 DOWN 4 +4413034 0 512 +4413058 8 512 +4413170 DOWN 4 +4413170 0 512 +4413199 8 512 +4413313 DOWN 4 +4413313 0 512 +4413341 8 512 +4413460 DOWN 4 +4413460 0 512 +4413480 8 512 +4413605 DOWN 4 +4413605 0 512 +4413626 8 512 +4413754 DOWN 4 +4413754 0 512 +4413772 8 512 +4413907 DOWN 4 +4413907 0 512 +4413921 8 512 +4420599 DOWN 4 +4420599 0 512 +4420642 8 512 +4420716 DOWN 4 +4420716 0 512 +4425492 UP 10 +4425492 waslock = 0 +4425492 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4425523 512 16777728 +~~~ +4425673 512 512 +4428204 DOWN 10 +4428204 0 512 +~~~ +~~~ +4428226 0 2560 +~~~ +~~~ +4428228 0 2048 +4428229 homeCount = 55 +4428229 waitCount = 23 +4428230 ripCount = 26 +4428230 locktype1 = 2 +4428231 locktype2 = 6 +4428231 locktype3 = 2 +4428232 goalCount = 0 +4428232 goalTotal = 20 +4428233 otherCount = 24 +~~~ +4430289 UP 12 +4430289 2048 2048 +4435709 DOWN 12 +4435709 0 2048 +4435765 UP 12 +4435765 2048 2048 +4435789 CLICK1 +4435789 CLICK2 +~~~ +~~~ +~~~ +4435811 2048 67110912 +~~~ +4435961 2048 2048 +4442288 DOWN 12 +4442288 0 2048 +~~~ +~~~ +4442307 0 0 +~~~ +~~~ +4442309 0 1 +~~~ +~~~ +4442310 0 3 +~~~ +~~~ +4442312 0 7 +~~~ +~~~ +4442314 0 15 +~~~ +~~~ +4442316 0 31 +~~~ +~~~ +4442318 0 63 +~~~ +~~~ +4442319 0 127 +~~~ +~~~ +4442321 0 255 +4442322 homeCount = 55 +4442323 waitCount = 24 +4442323 ripCount = 26 +4442324 locktype1 = 2 +4442324 locktype2 = 6 +4442325 locktype3 = 2 +4442346 goalCount = 0 +4442346 goalTotal = 20 +4442347 otherCount = 24 +~~~ +4442348 CURRENTGOAL IS [6] +~~~ +4442348 UP 12 +4442348 2048 255 +4442406 DOWN 12 +4442406 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4442443 homeCount = 55 +4442443 waitCount = 24 +4442444 ripCount = 26 +4442444 locktype1 = 2 +4442445 locktype2 = 6 +4442445 locktype3 = 2 +4442446 goalCount = 0 +4442446 goalTotal = 20 +4442447 otherCount = 24 +~~~ +4442448 CURRENTGOAL IS [6] +~~~ +4442871 UP 12 +4442871 2048 255 +4444133 DOWN 12 +4444133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4444173 homeCount = 55 +4444173 waitCount = 24 +4444174 ripCount = 26 +4444174 locktype1 = 2 +4444175 locktype2 = 6 +4444175 locktype3 = 2 +4444176 goalCount = 0 +4444176 goalTotal = 20 +4444177 otherCount = 24 +~~~ +4444178 CURRENTGOAL IS [6] +~~~ +4446862 UP 4 +4446862 8 255 +~~~ +~~~ +4447080 DOWN 4 +4447080 0 255 +~~~ +~~~ +4447099 0 254 +~~~ +~~~ +4447101 0 252 +~~~ +~~~ +4447102 0 248 +~~~ +~~~ +4447104 0 240 +~~~ +~~~ +4447106 0 224 +~~~ +~~~ +4447108 0 192 +~~~ +~~~ +4447110 0 128 +~~~ +~~~ +4447112 0 0 +~~~ +~~~ +4447113 0 512 +4447114 homeCount = 55 +4447115 waitCount = 24 +4447115 ripCount = 26 +4447116 locktype1 = 2 +4447116 locktype2 = 6 +4447137 locktype3 = 2 +4447138 goalCount = 0 +4447138 goalTotal = 20 +4447139 otherCount = 25 +~~~ +4447139 8 512 +4447799 DOWN 4 +4447799 0 512 +4452075 UP 10 +4452076 waslock = 0 +4452075 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4452106 512 16777728 +~~~ +4452117 DOWN 10 +4452117 0 16777728 +4452125 UP 10 +4452125 waslock = 0 +4452125 512 16777728 +~~~ +~~~ +4452143 512 16779776 +~~~ +~~~ +4452145 512 16779264 +4452146 homeCount = 56 +4452147 waitCount = 24 +4452147 ripCount = 26 +4452148 locktype1 = 2 +4452148 locktype2 = 6 +4452149 locktype3 = 2 +4452149 goalCount = 0 +4452150 goalTotal = 20 +4452150 otherCount = 25 +~~~ +~~~ +4452256 512 2048 +4452265 DOWN 10 +4452265 0 2048 +4452277 UP 10 +4452277 waslock = 0 +4452277 512 2048 +~~~ +~~~ +~~~ +~~~ +4452287 homeCount = 56 +4452287 waitCount = 24 +4452288 ripCount = 26 +4452288 locktype1 = 2 +4452289 locktype2 = 6 +4452289 locktype3 = 2 +4452290 goalCount = 0 +4452290 goalTotal = 20 +4452291 otherCount = 25 +~~~ +~~~ +4456357 DOWN 10 +4456357 0 2048 +~~~ +~~~ +~~~ +~~~ +4456382 homeCount = 56 +4456382 waitCount = 24 +4456383 ripCount = 26 +4456383 locktype1 = 2 +4456384 locktype2 = 6 +4456384 locktype3 = 2 +4456385 goalCount = 0 +4456385 goalTotal = 20 +4456386 otherCount = 25 +~~~ +4458260 UP 12 +4458260 2048 2048 +4461699 DOWN 12 +4461699 0 2048 +4461721 UP 12 +4461721 2048 2048 +4461856 DOWN 12 +4461856 0 2048 +4461869 UP 12 +4461869 2048 2048 +4461961 DOWN 12 +4461961 0 2048 +4461992 UP 12 +4461992 2048 2048 +4462760 CLICK1 +4462760 CLICK2 +~~~ +~~~ +~~~ +4462782 2048 67110912 +~~~ +4462932 2048 2048 +4469122 DOWN 12 +4469122 0 2048 +4469136 UP 12 +4469136 2048 2048 +~~~ +~~~ +4469143 2048 0 +~~~ +~~~ +4469145 2048 1 +~~~ +~~~ +4469146 2048 3 +~~~ +~~~ +4469148 2048 7 +~~~ +~~~ +4469150 2048 15 +~~~ +~~~ +4469152 2048 31 +~~~ +~~~ +4469154 2048 63 +~~~ +~~~ +4469155 2048 127 +~~~ +~~~ +4469157 2048 255 +4469158 homeCount = 56 +4469159 waitCount = 25 +4469159 ripCount = 26 +4469160 locktype1 = 2 +4469181 locktype2 = 6 +4469181 locktype3 = 2 +4469181 goalCount = 0 +4469182 goalTotal = 20 +4469182 otherCount = 25 +~~~ +4469183 CURRENTGOAL IS [6] +~~~ +4469216 DOWN 12 +4469216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4469257 homeCount = 56 +4469258 waitCount = 25 +4469258 ripCount = 26 +4469259 locktype1 = 2 +4469259 locktype2 = 6 +4469260 locktype3 = 2 +4469260 goalCount = 0 +4469261 goalTotal = 20 +4469261 otherCount = 25 +~~~ +4469262 CURRENTGOAL IS [6] +~~~ +4478752 UP 4 +4478752 8 255 +~~~ +~~~ +4479850 DOWN 4 +4479850 0 255 +4479863 8 255 +~~~ +~~~ +4479870 8 254 +~~~ +~~~ +4479872 8 252 +~~~ +~~~ +4479874 8 248 +~~~ +~~~ +4479876 8 240 +~~~ +~~~ +4479877 8 224 +~~~ +~~~ +4479879 8 192 +~~~ +~~~ +4479881 8 128 +~~~ +~~~ +4479883 8 0 +~~~ +~~~ +4479885 8 512 +4479886 homeCount = 56 +4479886 waitCount = 25 +4479887 ripCount = 26 +4479887 locktype1 = 2 +4479888 locktype2 = 6 +4479909 locktype3 = 2 +4479909 goalCount = 0 +4479910 goalTotal = 20 +4479910 otherCount = 26 +~~~ +4480518 DOWN 4 +4480518 0 512 +4480662 8 512 +4480695 DOWN 4 +4480695 0 512 +4488328 UP 10 +4488329 waslock = 0 +4488328 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4488357 512 16777728 +~~~ +4488507 512 512 +4491647 DOWN 10 +4491647 0 512 +~~~ +~~~ +4491671 0 1536 +~~~ +~~~ +4491673 0 1024 +4491674 homeCount = 57 +4491675 waitCount = 25 +4491675 ripCount = 26 +4491676 locktype1 = 2 +4491676 locktype2 = 6 +4491677 locktype3 = 2 +4491677 goalCount = 0 +4491678 goalTotal = 20 +4491678 otherCount = 26 +~~~ +4491681 UP 10 +4491681 waslock = 0 +4491681 512 1024 +~~~ +4491732 DOWN 10 +4491732 0 1024 +~~~ +~~~ +~~~ +~~~ +4491759 homeCount = 57 +4491760 waitCount = 25 +4491760 ripCount = 26 +4491761 locktype1 = 2 +4491761 locktype2 = 6 +4491762 locktype3 = 2 +4491762 goalCount = 0 +4491763 goalTotal = 20 +4491763 otherCount = 26 +~~~ +4493146 UP 11 +4493146 1024 1024 +4496146 BEEP1 +4496146 BEEP2 +~~~ +~~~ +~~~ +4496174 1024 33555456 +~~~ +4496324 1024 1024 +4502061 DOWN 11 +4502061 0 1024 +4502078 UP 11 +4502078 1024 1024 +~~~ +~~~ +4502085 1024 0 +~~~ +~~~ +4502087 1024 1 +~~~ +~~~ +4502089 1024 3 +~~~ +~~~ +4502091 1024 7 +~~~ +~~~ +4502093 1024 15 +~~~ +~~~ +4502094 1024 31 +~~~ +~~~ +4502096 1024 63 +~~~ +~~~ +4502098 1024 127 +~~~ +~~~ +4502100 1024 255 +4502101 homeCount = 57 +4502101 waitCount = 25 +4502102 ripCount = 27 +4502102 locktype1 = 2 +4502123 locktype2 = 6 +4502124 locktype3 = 2 +4502124 goalCount = 0 +4502124 goalTotal = 20 +4502125 otherCount = 26 +~~~ +4502126 CURRENTGOAL IS [6] +~~~ +4502199 DOWN 11 +4502199 0 255 +4502220 UP 11 +4502220 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4502253 homeCount = 57 +4502254 waitCount = 25 +4502254 ripCount = 27 +4502255 locktype1 = 2 +4502255 locktype2 = 6 +4502256 locktype3 = 2 +4502256 goalCount = 0 +4502256 goalTotal = 20 +4502257 otherCount = 26 +~~~ +4502258 CURRENTGOAL IS [6] +~~~ +4503858 DOWN 11 +4503858 0 255 +4503869 UP 11 +4503869 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4503906 homeCount = 57 +4503907 waitCount = 25 +4503907 ripCount = 27 +4503908 locktype1 = 2 +4503908 locktype2 = 6 +4503909 locktype3 = 2 +4503909 goalCount = 0 +4503910 goalTotal = 20 +4503910 otherCount = 26 +~~~ +4503911 CURRENTGOAL IS [6] +~~~ +4503932 DOWN 11 +4503932 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4503967 homeCount = 57 +4503967 waitCount = 25 +4503968 ripCount = 27 +4503968 locktype1 = 2 +4503969 locktype2 = 6 +4503969 locktype3 = 2 +4503970 goalCount = 0 +4503970 goalTotal = 20 +4503971 otherCount = 26 +~~~ +4503972 CURRENTGOAL IS [6] +~~~ +4508236 UP 7 +4508236 64 255 +~~~ +~~~ +4509602 DOWN 7 +4509602 0 255 +~~~ +~~~ +4509629 0 254 +~~~ +~~~ +4509631 0 252 +~~~ +~~~ +4509632 0 248 +~~~ +~~~ +4509634 0 240 +~~~ +~~~ +4509636 0 224 +~~~ +~~~ +4509638 0 192 +~~~ +~~~ +4509640 0 128 +~~~ +~~~ +4509642 0 0 +~~~ +~~~ +4509643 0 512 +4509644 homeCount = 57 +4509645 waitCount = 25 +4509645 ripCount = 27 +4509646 locktype1 = 2 +4509646 locktype2 = 6 +4509667 locktype3 = 2 +4509668 goalCount = 0 +4509668 goalTotal = 20 +4509669 otherCount = 27 +~~~ +4513958 UP 10 +4513958 waslock = 0 +4513958 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4513985 512 16777728 +~~~ +4514134 512 512 +4518768 DOWN 10 +4518768 0 512 +4518781 UP 10 +4518781 waslock = 0 +4518781 512 512 +~~~ +~~~ +4518788 512 2560 +~~~ +~~~ +4518790 512 2048 +4518791 homeCount = 58 +4518792 waitCount = 25 +4518792 ripCount = 27 +4518793 locktype1 = 2 +4518793 locktype2 = 6 +4518794 locktype3 = 2 +4518794 goalCount = 0 +4518795 goalTotal = 20 +4518795 otherCount = 27 +~~~ +~~~ +4518875 DOWN 10 +4518875 0 2048 +~~~ +~~~ +~~~ +~~~ +4518904 homeCount = 58 +4518905 waitCount = 25 +4518905 ripCount = 27 +4518906 locktype1 = 2 +4518906 locktype2 = 6 +4518907 locktype3 = 2 +4518907 goalCount = 0 +4518908 goalTotal = 20 +4518908 otherCount = 27 +~~~ +4518933 UP 10 +4518934 waslock = 0 +4518933 512 2048 +~~~ +4518972 DOWN 10 +4518972 0 2048 +~~~ +~~~ +~~~ +~~~ +4518998 homeCount = 58 +4518998 waitCount = 25 +4518999 ripCount = 27 +4518999 locktype1 = 2 +4519000 locktype2 = 6 +4519000 locktype3 = 2 +4519001 goalCount = 0 +4519001 goalTotal = 20 +4519002 otherCount = 27 +~~~ +4522457 UP 12 +4522457 2048 2048 +4523944 DOWN 12 +4523944 0 2048 +4523959 UP 12 +4523959 2048 2048 +4525297 DOWN 12 +4525297 0 2048 +4525313 UP 12 +4525313 2048 2048 +4525457 CLICK1 +4525457 CLICK2 +~~~ +~~~ +~~~ +4525481 2048 67110912 +~~~ +4525631 2048 2048 +4533270 DOWN 12 +4533270 0 2048 +~~~ +~~~ +4533292 0 0 +~~~ +~~~ +4533294 0 1 +~~~ +~~~ +4533295 0 3 +~~~ +~~~ +4533297 0 7 +~~~ +~~~ +4533299 0 15 +~~~ +~~~ +4533301 0 31 +~~~ +~~~ +4533303 0 63 +~~~ +~~~ +4533304 0 127 +~~~ +~~~ +4533306 0 255 +4533307 homeCount = 58 +4533308 waitCount = 26 +4533308 ripCount = 27 +4533309 locktype1 = 2 +4533309 locktype2 = 6 +4533310 locktype3 = 2 +4533331 goalCount = 0 +4533331 goalTotal = 20 +4533332 otherCount = 27 +~~~ +4533333 CURRENTGOAL IS [6] +~~~ +4536223 UP 1 +4536223 1 255 +~~~ +~~~ +4537485 DOWN 1 +4537485 0 255 +~~~ +~~~ +4537514 0 254 +~~~ +~~~ +4537516 0 252 +~~~ +~~~ +4537518 0 248 +~~~ +~~~ +4537519 0 240 +~~~ +~~~ +4537521 0 224 +~~~ +~~~ +4537523 0 192 +~~~ +~~~ +4537525 0 128 +~~~ +~~~ +4537527 0 0 +~~~ +~~~ +4537529 0 512 +4537530 homeCount = 58 +4537530 waitCount = 26 +4537531 ripCount = 27 +4537531 locktype1 = 2 +4537532 locktype2 = 6 +4537553 locktype3 = 2 +4537553 goalCount = 0 +4537554 goalTotal = 20 +4537554 otherCount = 28 +~~~ +4541072 UP 10 +4541073 waslock = 0 +4541072 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4541100 512 16777728 +~~~ +4541113 DOWN 10 +4541113 0 16777728 +4541130 UP 10 +4541130 waslock = 0 +4541130 512 16777728 +~~~ +~~~ +4541134 512 16779776 +~~~ +~~~ +4541136 512 16779264 +4541137 homeCount = 59 +4541138 waitCount = 26 +4541138 ripCount = 27 +4541139 locktype1 = 2 +4541139 locktype2 = 6 +4541139 locktype3 = 2 +4541140 goalCount = 0 +4541140 goalTotal = 20 +4541162 otherCount = 28 +~~~ +~~~ +4541250 512 2048 +4544625 DOWN 10 +4544625 0 2048 +4544638 UP 10 +4544638 waslock = 0 +4544638 512 2048 +~~~ +~~~ +~~~ +~~~ +4544662 homeCount = 59 +4544663 waitCount = 26 +4544663 ripCount = 27 +4544664 locktype1 = 2 +4544664 locktype2 = 6 +4544665 locktype3 = 2 +4544665 goalCount = 0 +4544666 goalTotal = 20 +4544666 otherCount = 28 +~~~ +~~~ +4544737 DOWN 10 +4544737 0 2048 +~~~ +~~~ +~~~ +~~~ +4544772 homeCount = 59 +4544773 waitCount = 26 +4544773 ripCount = 27 +4544774 locktype1 = 2 +4544774 locktype2 = 6 +4544775 locktype3 = 2 +4544775 goalCount = 0 +4544776 goalTotal = 20 +4544776 otherCount = 28 +~~~ +4544787 UP 10 +4544787 waslock = 0 +4544787 512 2048 +~~~ +4544820 DOWN 10 +4544820 0 2048 +~~~ +~~~ +~~~ +~~~ +4544842 homeCount = 59 +4544842 waitCount = 26 +4544843 ripCount = 27 +4544843 locktype1 = 2 +4544844 locktype2 = 6 +4544844 locktype3 = 2 +4544845 goalCount = 0 +4544845 goalTotal = 20 +4544846 otherCount = 28 +~~~ +4546342 UP 12 +4546342 2048 2048 +4548004 DOWN 12 +4548004 0 2048 +4548042 UP 12 +4548042 2048 2048 +4549331 DOWN 12 +4549331 0 2048 +4549341 UP 12 +4549341 2048 2048 +4549342 CLICK1 +4549343 CLICK2 +~~~ +~~~ +~~~ +4549361 2048 67110912 +~~~ +4549511 2048 2048 +4555132 DOWN 12 +4555132 0 2048 +~~~ +~~~ +4555156 0 0 +~~~ +~~~ +4555158 0 1 +~~~ +~~~ +4555159 0 3 +~~~ +~~~ +4555161 0 7 +~~~ +~~~ +4555163 0 15 +~~~ +~~~ +4555165 0 31 +~~~ +~~~ +4555167 0 63 +~~~ +4555168 UP 12 +4555168 2048 63 +~~~ +~~~ +4555170 2048 127 +~~~ +4555171 homeCount = 59 +4555172 waitCount = 27 +4555172 ripCount = 27 +4555173 locktype1 = 2 +4555194 locktype2 = 6 +4555194 locktype3 = 2 +4555194 goalCount = 0 +4555195 goalTotal = 20 +4555195 otherCount = 28 +~~~ +4555197 CURRENTGOAL IS [6] +~~~ +4555197 2048 255 +4555226 DOWN 12 +4555226 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4555259 homeCount = 59 +4555259 waitCount = 27 +4555260 ripCount = 27 +4555260 locktype1 = 2 +4555261 locktype2 = 6 +4555261 locktype3 = 2 +4555262 goalCount = 0 +4555262 goalTotal = 20 +4555263 otherCount = 28 +~~~ +4555264 CURRENTGOAL IS [6] +~~~ +4578122 UP 1 +4578122 1 255 +~~~ +~~~ +4578407 DOWN 1 +4578407 0 255 +~~~ +~~~ +4578425 0 254 +~~~ +~~~ +4578427 0 252 +~~~ +~~~ +4578428 0 248 +~~~ +~~~ +4578430 0 240 +~~~ +~~~ +4578432 0 224 +~~~ +~~~ +4578434 0 192 +~~~ +~~~ +4578436 0 128 +~~~ +~~~ +4578438 0 0 +~~~ +~~~ +4578439 0 512 +4578440 homeCount = 59 +4578441 waitCount = 27 +4578441 ripCount = 27 +4578442 locktype1 = 2 +4578442 locktype2 = 6 +4578463 locktype3 = 2 +4578464 goalCount = 0 +4578464 goalTotal = 20 +4578465 otherCount = 29 +~~~ +4578465 1 512 +4578663 DOWN 1 +4578663 0 512 +4582924 1 512 +4582970 DOWN 1 +4582970 0 512 +4591382 UP 10 +4591383 waslock = 0 +4591382 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4591413 512 16777728 +~~~ +4591509 DOWN 10 +4591509 0 16777728 +4591521 UP 10 +4591521 waslock = 0 +4591521 512 16777728 +~~~ +~~~ +4591537 512 16779776 +~~~ +~~~ +4591539 512 16779264 +4591540 homeCount = 60 +4591541 waitCount = 27 +4591541 ripCount = 27 +4591542 locktype1 = 2 +4591542 locktype2 = 6 +4591543 locktype3 = 2 +4591543 goalCount = 0 +4591544 goalTotal = 20 +4591544 otherCount = 29 +~~~ +~~~ +4591566 512 2048 +4591576 DOWN 10 +4591576 0 2048 +~~~ +~~~ +~~~ +~~~ +4591602 homeCount = 60 +4591603 waitCount = 27 +4591603 ripCount = 27 +4591604 locktype1 = 2 +4591604 locktype2 = 6 +4591605 locktype3 = 2 +4591605 goalCount = 0 +4591606 goalTotal = 20 +4591606 otherCount = 29 +~~~ +4591669 UP 10 +4591669 waslock = 0 +4591669 512 2048 +~~~ +4591896 DOWN 10 +4591896 0 2048 +4591916 UP 10 +4591917 waslock = 0 +4591916 512 2048 +~~~ +~~~ +~~~ +~~~ +4591922 homeCount = 60 +4591922 waitCount = 27 +4591923 ripCount = 27 +4591923 locktype1 = 2 +4591924 locktype2 = 6 +4591924 locktype3 = 2 +4591925 goalCount = 0 +4591925 goalTotal = 20 +4591926 otherCount = 29 +~~~ +~~~ +4592040 DOWN 10 +4592040 0 2048 +~~~ +~~~ +~~~ +~~~ +4592063 homeCount = 60 +4592064 waitCount = 27 +4592064 ripCount = 27 +4592065 locktype1 = 2 +4592065 locktype2 = 6 +4592066 locktype3 = 2 +4592066 goalCount = 0 +4592067 goalTotal = 20 +4592067 otherCount = 29 +~~~ +4592076 UP 10 +4592076 waslock = 0 +4592076 512 2048 +~~~ +4592555 DOWN 10 +4592555 0 2048 +4592571 UP 10 +4592571 waslock = 0 +4592571 512 2048 +~~~ +~~~ +~~~ +~~~ +4592596 homeCount = 60 +4592597 waitCount = 27 +4592597 ripCount = 27 +4592598 locktype1 = 2 +4592598 locktype2 = 6 +4592599 locktype3 = 2 +4592599 goalCount = 0 +4592600 goalTotal = 20 +4592600 otherCount = 29 +~~~ +~~~ +4596305 DOWN 10 +4596305 0 2048 +4596315 UP 10 +4596315 waslock = 0 +4596315 512 2048 +~~~ +~~~ +~~~ +~~~ +4596335 homeCount = 60 +4596335 waitCount = 27 +4596336 ripCount = 27 +4596336 locktype1 = 2 +4596337 locktype2 = 6 +4596337 locktype3 = 2 +4596338 goalCount = 0 +4596338 goalTotal = 20 +4596338 otherCount = 29 +~~~ +~~~ +4596388 DOWN 10 +4596388 0 2048 +~~~ +~~~ +~~~ +~~~ +4596418 homeCount = 60 +4596418 waitCount = 27 +4596419 ripCount = 27 +4596419 locktype1 = 2 +4596420 locktype2 = 6 +4596420 locktype3 = 2 +4596421 goalCount = 0 +4596421 goalTotal = 20 +4596422 otherCount = 29 +~~~ +4598400 UP 12 +4598400 2048 2048 +4599231 DOWN 12 +4599231 0 2048 +4599308 UP 12 +4599308 2048 2048 +4599343 DOWN 12 +4599343 0 2048 +4599349 UP 12 +4599349 2048 2048 +4599898 DOWN 12 +4599898 0 2048 +4599929 UP 12 +4599929 2048 2048 +4599943 DOWN 12 +4599943 0 2048 +4599987 UP 12 +4599987 2048 2048 +4601873 DOWN 12 +4601873 0 2048 +4601883 UP 12 +4601883 2048 2048 +4601892 DOWN 12 +4601892 0 2048 +4601911 UP 12 +4601911 2048 2048 +4602165 DOWN 12 +4602165 0 2048 +4602189 UP 12 +4602189 2048 2048 +4602226 DOWN 12 +4602226 0 2048 +4602261 UP 12 +4602261 2048 2048 +4602431 DOWN 12 +4602431 0 2048 +4602447 UP 12 +4602447 2048 2048 +4604401 CLICK1 +4604401 CLICK2 +~~~ +~~~ +~~~ +4604423 2048 67110912 +~~~ +4604573 2048 2048 +4611485 DOWN 12 +4611485 0 2048 +~~~ +~~~ +4611512 0 0 +~~~ +~~~ +4611513 0 1 +~~~ +~~~ +4611515 0 3 +~~~ +~~~ +4611517 0 7 +~~~ +~~~ +4611519 0 15 +~~~ +~~~ +4611521 0 31 +~~~ +4611522 UP 12 +4611522 2048 31 +~~~ +~~~ +4611524 2048 63 +~~~ +~~~ +4611526 2048 127 +~~~ +4611527 2048 255 +4611528 homeCount = 60 +4611528 waitCount = 28 +4611529 ripCount = 27 +4611550 locktype1 = 2 +4611550 locktype2 = 6 +4611551 locktype3 = 2 +4611551 goalCount = 0 +4611552 goalTotal = 20 +4611552 otherCount = 29 +~~~ +4611553 CURRENTGOAL IS [6] +~~~ +4611569 DOWN 12 +4611569 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4611608 homeCount = 60 +4611608 waitCount = 28 +4611609 ripCount = 27 +4611609 locktype1 = 2 +4611610 locktype2 = 6 +4611610 locktype3 = 2 +4611611 goalCount = 0 +4611611 goalTotal = 20 +4611612 otherCount = 29 +~~~ +4611613 CURRENTGOAL IS [6] +~~~ +4621158 UP 5 +4621158 16 255 +~~~ +~~~ +4621238 DOWN 5 +4621238 0 255 +~~~ +~~~ +4621262 0 254 +~~~ +~~~ +4621263 0 252 +~~~ +~~~ +4621265 0 248 +~~~ +~~~ +4621267 0 240 +~~~ +~~~ +4621269 0 224 +~~~ +~~~ +4621271 0 192 +~~~ +~~~ +4621272 0 128 +~~~ +~~~ +4621274 0 0 +~~~ +~~~ +4621276 0 512 +4621277 homeCount = 60 +4621278 waitCount = 28 +4621278 ripCount = 27 +4621279 locktype1 = 2 +4621279 locktype2 = 6 +4621300 locktype3 = 2 +4621301 goalCount = 0 +4621301 goalTotal = 20 +4621302 otherCount = 30 +~~~ +4621492 16 512 +4621883 DOWN 5 +4621883 0 512 +4653143 UP 10 +4653144 waslock = 0 +4653143 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4653177 512 16777728 +~~~ +4653234 DOWN 10 +4653234 0 16777728 +~~~ +~~~ +4653265 0 16779776 +~~~ +~~~ +4653267 0 16779264 +4653268 homeCount = 61 +4653269 waitCount = 28 +4653269 ripCount = 27 +4653270 locktype1 = 2 +4653270 locktype2 = 6 +4653271 locktype3 = 2 +4653271 goalCount = 0 +4653272 goalTotal = 20 +4653272 otherCount = 30 +~~~ +4653327 0 2048 +4653569 UP 10 +4653569 waslock = 0 +4653569 512 2048 +~~~ +4659370 DOWN 10 +4659370 0 2048 +~~~ +~~~ +~~~ +~~~ +4659397 homeCount = 61 +4659397 waitCount = 28 +4659398 ripCount = 27 +4659398 locktype1 = 2 +4659399 locktype2 = 6 +4659399 locktype3 = 2 +4659400 goalCount = 0 +4659400 goalTotal = 20 +4659401 otherCount = 30 +~~~ +4659401 UP 10 +4659402 waslock = 0 +4659401 512 2048 +~~~ +4659484 DOWN 10 +4659484 0 2048 +~~~ +~~~ +~~~ +~~~ +4659507 homeCount = 61 +4659507 waitCount = 28 +4659508 ripCount = 27 +4659508 locktype1 = 2 +4659509 locktype2 = 6 +4659509 locktype3 = 2 +4659510 goalCount = 0 +4659510 goalTotal = 20 +4659511 otherCount = 30 +~~~ +4662675 UP 12 +4662675 2048 2048 +4664127 DOWN 12 +4664127 0 2048 +4664217 UP 12 +4664217 2048 2048 +4664276 DOWN 12 +4664276 0 2048 +4664339 UP 12 +4664339 2048 2048 +4664365 DOWN 12 +4664365 0 2048 +4664394 UP 12 +4664394 2048 2048 +4664592 DOWN 12 +4664592 0 2048 +4664696 UP 12 +4664696 2048 2048 +4666175 CLICK1 +4666175 CLICK2 +~~~ +~~~ +~~~ +4666193 2048 67110912 +~~~ +4666343 2048 2048 +4673291 DOWN 12 +4673291 0 2048 +~~~ +~~~ +4673313 0 0 +~~~ +~~~ +4673315 0 1 +~~~ +~~~ +4673317 0 3 +~~~ +~~~ +4673319 0 7 +~~~ +~~~ +4673321 0 15 +~~~ +~~~ +4673322 0 31 +~~~ +~~~ +4673324 0 63 +~~~ +~~~ +4673326 0 127 +~~~ +~~~ +4673328 0 255 +4673329 homeCount = 61 +4673329 waitCount = 29 +4673330 ripCount = 27 +4673330 locktype1 = 2 +4673331 locktype2 = 6 +4673331 locktype3 = 2 +4673352 goalCount = 0 +4673353 goalTotal = 20 +4673353 otherCount = 30 +~~~ +4673354 CURRENTGOAL IS [6] +~~~ +4685779 UP 4 +4685779 8 255 +~~~ +~~~ +4686370 DOWN 4 +4686370 0 255 +~~~ +~~~ +4686393 0 254 +~~~ +~~~ +4686395 0 252 +~~~ +~~~ +4686397 0 248 +~~~ +~~~ +4686399 0 240 +~~~ +~~~ +4686400 0 224 +~~~ +~~~ +4686402 0 192 +~~~ +~~~ +4686404 0 128 +~~~ +~~~ +4686406 0 0 +~~~ +~~~ +4686408 0 512 +4686409 homeCount = 61 +4686409 waitCount = 29 +4686410 ripCount = 27 +4686410 locktype1 = 2 +4686411 locktype2 = 6 +4686432 locktype3 = 2 +4686432 goalCount = 0 +4686433 goalTotal = 20 +4686433 otherCount = 31 +~~~ +4686950 8 512 +4687129 DOWN 4 +4687129 0 512 +4691150 UP 10 +4691150 waslock = 0 +4691150 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4691178 512 16777728 +~~~ +4691328 512 512 +4694660 DOWN 10 +4694660 0 512 +~~~ +~~~ +4694682 0 2560 +~~~ +~~~ +4694684 0 2048 +4694685 homeCount = 62 +4694685 waitCount = 29 +4694686 ripCount = 27 +4694686 locktype1 = 2 +4694687 locktype2 = 6 +4694687 locktype3 = 2 +4694688 goalCount = 0 +4694688 goalTotal = 20 +4694689 otherCount = 31 +~~~ +4697293 UP 12 +4697293 2048 2048 +4698720 DOWN 12 +4698720 0 2048 +4698799 UP 12 +4698799 2048 2048 +4700121 DOWN 12 +4700121 0 2048 +4700144 UP 12 +4700144 2048 2048 +4700294 CLICK1 +4700294 CLICK2 +~~~ +~~~ +~~~ +4700314 2048 67110912 +~~~ +4700464 2048 2048 +4707458 DOWN 12 +4707458 0 2048 +~~~ +~~~ +4707482 0 0 +~~~ +~~~ +4707484 0 1 +~~~ +~~~ +4707485 0 3 +~~~ +~~~ +4707487 0 7 +~~~ +~~~ +4707489 0 15 +~~~ +~~~ +4707491 0 31 +~~~ +~~~ +4707493 0 63 +~~~ +~~~ +4707495 0 127 +~~~ +~~~ +4707496 0 255 +4707497 homeCount = 62 +4707498 waitCount = 30 +4707498 ripCount = 27 +4707499 locktype1 = 2 +4707499 locktype2 = 6 +4707521 locktype3 = 2 +4707521 goalCount = 0 +4707522 goalTotal = 20 +4707522 otherCount = 31 +~~~ +4707523 CURRENTGOAL IS [6] +~~~ +4708450 UP 12 +4708450 2048 255 +4708630 DOWN 12 +4708630 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4708670 homeCount = 62 +4708670 waitCount = 30 +4708671 ripCount = 27 +4708671 locktype1 = 2 +4708672 locktype2 = 6 +4708672 locktype3 = 2 +4708673 goalCount = 0 +4708673 goalTotal = 20 +4708674 otherCount = 31 +~~~ +4708675 CURRENTGOAL IS [6] +~~~ +4712657 UP 8 +4712657 128 255 +~~~ +~~~ +4713151 DOWN 8 +4713151 0 255 +~~~ +~~~ +4713172 0 254 +~~~ +~~~ +4713174 0 252 +~~~ +~~~ +4713176 0 248 +~~~ +~~~ +4713178 0 240 +~~~ +~~~ +4713180 0 224 +~~~ +~~~ +4713181 0 192 +~~~ +~~~ +4713183 0 128 +~~~ +~~~ +4713185 0 0 +~~~ +~~~ +4713187 0 512 +4713188 homeCount = 62 +4713188 waitCount = 30 +4713189 ripCount = 27 +4713189 locktype1 = 2 +4713190 locktype2 = 6 +4713211 locktype3 = 2 +4713211 goalCount = 0 +4713212 goalTotal = 20 +4713212 otherCount = 32 +~~~ +4717890 UP 10 +4717891 waslock = 0 +4717890 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4717919 512 16777728 +~~~ +4718069 512 512 +4718228 DOWN 10 +4718228 0 512 +~~~ +~~~ +4718252 0 2560 +~~~ +~~~ +4718254 0 2048 +4718255 homeCount = 63 +4718256 waitCount = 30 +4718256 ripCount = 27 +4718257 locktype1 = 2 +4718257 locktype2 = 6 +4718258 locktype3 = 2 +4718258 goalCount = 0 +4718259 goalTotal = 20 +4718259 otherCount = 32 +~~~ +4718277 UP 10 +4718277 waslock = 0 +4718277 512 2048 +~~~ +4723383 DOWN 10 +4723383 0 2048 +~~~ +~~~ +~~~ +~~~ +4723407 homeCount = 63 +4723408 waitCount = 30 +4723408 ripCount = 27 +4723409 locktype1 = 2 +4723409 locktype2 = 6 +4723409 locktype3 = 2 +4723410 goalCount = 0 +4723410 goalTotal = 20 +4723411 otherCount = 32 +~~~ +4723434 UP 10 +4723434 waslock = 0 +4723434 512 2048 +~~~ +4723461 DOWN 10 +4723461 0 2048 +~~~ +~~~ +~~~ +~~~ +4723486 homeCount = 63 +4723487 waitCount = 30 +4723487 ripCount = 27 +4723488 locktype1 = 2 +4723488 locktype2 = 6 +4723489 locktype3 = 2 +4723489 goalCount = 0 +4723490 goalTotal = 20 +4723490 otherCount = 32 +~~~ +4725181 UP 12 +4725181 2048 2048 +4730467 DOWN 12 +4730467 0 2048 +4730514 UP 12 +4730514 2048 2048 +4732181 CLICK1 +4732181 CLICK2 +~~~ +~~~ +~~~ +4732205 2048 67110912 +~~~ +4732354 2048 2048 +4741145 DOWN 12 +4741145 0 2048 +~~~ +~~~ +4741163 0 0 +~~~ +~~~ +4741165 0 1 +~~~ +~~~ +4741167 0 3 +~~~ +~~~ +4741169 0 7 +~~~ +~~~ +4741171 0 15 +~~~ +~~~ +4741172 0 31 +~~~ +~~~ +4741174 0 63 +~~~ +~~~ +4741176 0 127 +~~~ +~~~ +4741178 0 255 +4741179 homeCount = 63 +4741179 waitCount = 31 +4741180 ripCount = 27 +4741180 locktype1 = 2 +4741181 locktype2 = 6 +4741202 locktype3 = 2 +4741203 goalCount = 0 +4741203 goalTotal = 20 +4741204 otherCount = 32 +~~~ +4741205 CURRENTGOAL IS [6] +~~~ +4744871 UP 4 +4744871 8 255 +~~~ +~~~ +4745068 DOWN 4 +4745068 0 255 +~~~ +~~~ +4745095 0 254 +~~~ +~~~ +4745097 0 252 +~~~ +~~~ +4745099 0 248 +~~~ +~~~ +4745101 0 240 +~~~ +~~~ +4745102 0 224 +~~~ +~~~ +4745104 0 192 +~~~ +~~~ +4745106 0 128 +~~~ +~~~ +4745108 0 0 +~~~ +~~~ +4745110 0 512 +4745111 homeCount = 63 +4745111 waitCount = 31 +4745112 ripCount = 27 +4745112 locktype1 = 2 +4745113 locktype2 = 6 +4745134 locktype3 = 2 +4745134 goalCount = 0 +4745135 goalTotal = 20 +4745135 otherCount = 33 +~~~ +4749055 UP 10 +4749055 waslock = 0 +4749055 512 512 +4749065 DOWN 10 +4749065 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4749082 0 16777728 +~~~ +~~~ +~~~ +4749085 0 16779776 +~~~ +~~~ +4749087 0 16779264 +4749088 homeCount = 64 +4749088 waitCount = 31 +4749089 ripCount = 27 +4749089 locktype1 = 2 +4749089 locktype2 = 6 +4749090 locktype3 = 2 +4749090 goalCount = 0 +4749091 goalTotal = 20 +4749091 otherCount = 33 +~~~ +4749164 UP 10 +4749165 waslock = 0 +4749164 512 16779264 +~~~ +4749232 512 2048 +4752944 DOWN 10 +4752944 0 2048 +~~~ +~~~ +~~~ +~~~ +4752969 homeCount = 64 +4752969 waitCount = 31 +4752970 ripCount = 27 +4752970 locktype1 = 2 +4752971 locktype2 = 6 +4752971 locktype3 = 2 +4752972 goalCount = 0 +4752972 goalTotal = 20 +4752972 otherCount = 33 +~~~ +4752973 UP 10 +4752973 waslock = 0 +4752973 512 2048 +~~~ +4753030 DOWN 10 +4753030 0 2048 +~~~ +~~~ +~~~ +~~~ +4753060 homeCount = 64 +4753061 waitCount = 31 +4753061 ripCount = 27 +4753062 locktype1 = 2 +4753062 locktype2 = 6 +4753063 locktype3 = 2 +4753063 goalCount = 0 +4753064 goalTotal = 20 +4753064 otherCount = 33 +~~~ +4754833 UP 12 +4754833 2048 2048 +4758334 CLICK1 +4758334 CLICK2 +~~~ +~~~ +~~~ +4758357 2048 67110912 +~~~ +4758507 2048 2048 +4765227 DOWN 12 +4765226 0 2048 +~~~ +~~~ +4765245 0 0 +~~~ +~~~ +4765247 0 1 +~~~ +~~~ +4765249 0 3 +~~~ +~~~ +4765251 0 7 +~~~ +~~~ +4765253 0 15 +~~~ +~~~ +4765254 0 31 +~~~ +~~~ +4765256 0 63 +~~~ +~~~ +4765258 0 127 +~~~ +~~~ +4765260 0 255 +4765261 homeCount = 64 +4765261 waitCount = 32 +4765262 ripCount = 27 +4765262 locktype1 = 2 +4765263 locktype2 = 6 +4765284 locktype3 = 2 +4765284 goalCount = 0 +4765285 goalTotal = 20 +4765285 otherCount = 33 +~~~ +4765286 CURRENTGOAL IS [6] +~~~ +4765287 UP 12 +4765287 2048 255 +4765315 DOWN 12 +4765315 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4765350 homeCount = 64 +4765351 waitCount = 32 +4765351 ripCount = 27 +4765352 locktype1 = 2 +4765352 locktype2 = 6 +4765353 locktype3 = 2 +4765353 goalCount = 0 +4765354 goalTotal = 20 +4765354 otherCount = 33 +~~~ +4765355 CURRENTGOAL IS [6] +~~~ +4770972 UP 2 +4770972 2 255 +~~~ +~~~ +4771352 DOWN 2 +4771352 0 255 +~~~ +~~~ +4771375 0 254 +~~~ +~~~ +4771377 0 252 +~~~ +4771379 2 252 +~~~ +~~~ +4771380 2 248 +~~~ +4771381 2 240 +~~~ +~~~ +4771383 2 224 +~~~ +~~~ +4771384 2 192 +~~~ +~~~ +4771386 2 128 +~~~ +~~~ +4771388 2 0 +~~~ +~~~ +4771390 2 512 +4771391 homeCount = 64 +4771392 waitCount = 32 +4771392 ripCount = 27 +4771393 locktype1 = 2 +4771414 locktype2 = 6 +4771414 locktype3 = 2 +4771415 goalCount = 0 +4771415 goalTotal = 20 +4771416 otherCount = 34 +~~~ +4772044 DOWN 2 +4772044 0 512 +4772070 2 512 +4772136 DOWN 2 +4772136 0 512 +4776301 UP 10 +4776302 waslock = 0 +4776301 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4776334 512 16777728 +~~~ +4776484 512 512 +4780543 DOWN 10 +4780543 0 512 +~~~ +~~~ +4780568 0 1536 +~~~ +~~~ +4780570 0 1024 +4780571 homeCount = 65 +4780572 waitCount = 32 +4780572 ripCount = 27 +4780573 locktype1 = 2 +4780573 locktype2 = 6 +4780574 locktype3 = 2 +4780574 goalCount = 0 +4780574 goalTotal = 20 +4780575 otherCount = 34 +~~~ +4780616 UP 10 +4780616 waslock = 0 +4780616 512 1024 +4780631 DOWN 10 +4780631 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +4780658 homeCount = 65 +4780659 waitCount = 32 +4780659 ripCount = 27 +4780660 locktype1 = 2 +4780660 locktype2 = 6 +4780661 locktype3 = 2 +4780661 goalCount = 0 +4780662 goalTotal = 20 +4780662 otherCount = 34 +~~~ +4782283 UP 11 +4782283 1024 1024 +4785849 DOWN 11 +4785849 0 1024 +4785873 UP 11 +4785873 1024 1024 +4785903 DOWN 11 +4785903 0 1024 +4785929 UP 11 +4785929 1024 1024 +4786783 BEEP1 +4786783 BEEP2 +~~~ +~~~ +~~~ +4786802 1024 33555456 +~~~ +4786952 1024 1024 +4791693 DOWN 11 +4791693 0 1024 +~~~ +~~~ +4791720 0 0 +~~~ +~~~ +4791722 0 1 +~~~ +~~~ +4791724 0 3 +~~~ +~~~ +4791726 0 7 +~~~ +~~~ +4791727 0 15 +~~~ +~~~ +4791729 0 31 +~~~ +~~~ +4791731 0 63 +~~~ +~~~ +4791733 0 127 +~~~ +~~~ +4791735 0 255 +4791736 homeCount = 65 +4791736 waitCount = 32 +4791737 ripCount = 28 +4791737 locktype1 = 2 +4791738 locktype2 = 6 +4791738 locktype3 = 2 +4791759 goalCount = 0 +4791760 goalTotal = 20 +4791760 otherCount = 34 +~~~ +4791761 CURRENTGOAL IS [6] +~~~ +4791762 UP 11 +4791762 1024 255 +4796159 DOWN 11 +4796159 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4796199 homeCount = 65 +4796200 waitCount = 32 +4796200 ripCount = 28 +4796201 locktype1 = 2 +4796201 locktype2 = 6 +4796202 locktype3 = 2 +4796202 goalCount = 0 +4796203 goalTotal = 20 +4796203 otherCount = 34 +~~~ +4796204 CURRENTGOAL IS [6] +~~~ +4803475 UP 6 +4803475 32 255 +~~~ +~~~ +4803496 outer reward +~~~ +4803496 32 2097407 +~~~ +~~~ +4803946 32 255 +4810377 DOWN 6 +4810377 0 255 +~~~ +~~~ +4810403 0 254 +~~~ +~~~ +4810405 0 252 +~~~ +~~~ +4810407 0 248 +~~~ +~~~ +4810408 0 240 +~~~ +~~~ +4810410 0 224 +~~~ +~~~ +4810412 0 192 +~~~ +~~~ +4810414 0 128 +~~~ +~~~ +4810416 0 0 +~~~ +~~~ +4810418 0 512 +4810419 homeCount = 65 +4810419 waitCount = 32 +4810420 ripCount = 28 +4810420 locktype1 = 2 +4810420 locktype2 = 6 +4810442 locktype3 = 2 +4810442 goalCount = 1 +4810442 goalTotal = 21 +4810443 otherCount = 34 +~~~ +4810443 32 512 +4810501 DOWN 6 +4810501 0 512 +4810580 32 512 +4810629 DOWN 6 +4810629 0 512 +4813598 32 512 +4813796 DOWN 6 +4813796 0 512 +4813876 32 512 +4813942 DOWN 6 +4813942 0 512 +4818623 UP 10 +4818623 waslock = 0 +4818623 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4818651 512 16777728 +~~~ +4818801 512 512 +4818900 DOWN 10 +4818900 0 512 +~~~ +~~~ +4818925 0 2560 +~~~ +~~~ +4818927 0 2048 +4818928 homeCount = 66 +4818929 waitCount = 32 +4818929 ripCount = 28 +4818930 locktype1 = 2 +4818930 locktype2 = 6 +4818930 locktype3 = 2 +4818931 goalCount = 1 +4818931 goalTotal = 21 +4818932 otherCount = 34 +~~~ +4818952 UP 10 +4818953 waslock = 0 +4818952 512 2048 +~~~ +4822693 DOWN 10 +4822693 0 2048 +~~~ +~~~ +~~~ +~~~ +4822716 homeCount = 66 +4822717 waitCount = 32 +4822717 ripCount = 28 +4822718 locktype1 = 2 +4822718 locktype2 = 6 +4822719 locktype3 = 2 +4822719 goalCount = 1 +4822720 goalTotal = 21 +4822720 otherCount = 34 +~~~ +4824694 UP 12 +4824694 2048 2048 +4829105 DOWN 12 +4829105 0 2048 +4829150 UP 12 +4829150 2048 2048 +4829195 CLICK1 +4829195 CLICK2 +~~~ +~~~ +~~~ +4829217 2048 67110912 +~~~ +4829366 2048 2048 +4835687 DOWN 12 +4835687 0 2048 +~~~ +~~~ +4835713 0 0 +~~~ +~~~ +4835715 0 1 +~~~ +~~~ +4835717 0 3 +~~~ +~~~ +4835719 0 7 +~~~ +~~~ +4835720 0 15 +~~~ +~~~ +4835722 0 31 +~~~ +~~~ +4835724 0 63 +~~~ +~~~ +4835726 0 127 +~~~ +~~~ +4835728 0 255 +4835729 homeCount = 66 +4835729 waitCount = 33 +4835730 ripCount = 28 +4835730 locktype1 = 2 +4835731 locktype2 = 6 +4835752 locktype3 = 2 +4835752 goalCount = 1 +4835753 goalTotal = 21 +4835753 otherCount = 34 +~~~ +4835754 CURRENTGOAL IS [6] +~~~ +4845023 UP 6 +4845023 32 255 +~~~ +~~~ +4845047 outer reward +~~~ +4845048 32 2097407 +~~~ +~~~ +4845425 DOWN 6 +4845425 0 2097407 +4845446 32 2097407 +~~~ +~~~ +4845448 32 2097406 +~~~ +~~~ +4845449 32 2097404 +~~~ +~~~ +4845451 32 2097400 +~~~ +~~~ +4845453 32 2097392 +~~~ +~~~ +4845455 32 2097376 +~~~ +~~~ +4845457 32 2097344 +~~~ +~~~ +4845458 32 2097280 +~~~ +~~~ +4845460 32 2097152 +~~~ +~~~ +4845462 32 2097664 +4845463 homeCount = 66 +4845464 waitCount = 33 +4845484 ripCount = 28 +4845485 locktype1 = 2 +4845485 locktype2 = 6 +4845486 locktype3 = 2 +4845486 goalCount = 2 +4845487 goalTotal = 22 +4845487 otherCount = 34 +~~~ +4845497 32 512 +4851372 DOWN 6 +4851372 0 512 +4851430 32 512 +4851482 DOWN 6 +4851482 0 512 +4851574 32 512 +4851594 DOWN 6 +4851594 0 512 +4855743 UP 10 +4855743 waslock = 0 +4855743 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4855773 512 16777728 +~~~ +4855923 512 512 +4860434 DOWN 10 +4860434 0 512 +~~~ +~~~ +4860459 0 1536 +~~~ +~~~ +4860461 0 1024 +4860462 homeCount = 67 +4860462 waitCount = 33 +4860463 ripCount = 28 +4860463 locktype1 = 2 +4860464 locktype2 = 6 +4860464 locktype3 = 2 +4860464 goalCount = 2 +4860465 goalTotal = 22 +4860465 otherCount = 34 +~~~ +4862633 UP 11 +4862633 1024 1024 +4864053 DOWN 11 +4864053 0 1024 +4864086 UP 11 +4864086 1024 1024 +4865406 DOWN 11 +4865406 0 1024 +4865441 UP 11 +4865441 1024 1024 +4866186 DOWN 11 +4866186 0 1024 +4866229 UP 11 +4866229 1024 1024 +4866243 DOWN 11 +4866243 0 1024 +4866287 UP 11 +4866287 1024 1024 +4866547 DOWN 11 +4866547 0 1024 +4866559 UP 11 +4866559 1024 1024 +4866633 BEEP1 +4866633 BEEP2 +~~~ +~~~ +~~~ +4866656 1024 33555456 +~~~ +4866806 1024 1024 +4871315 DOWN 11 +4871315 0 1024 +~~~ +~~~ +4871342 0 0 +~~~ +~~~ +4871344 0 1 +~~~ +4871345 UP 11 +4871345 1024 1 +~~~ +~~~ +4871347 1024 3 +~~~ +~~~ +4871348 1024 7 +~~~ +~~~ +4871350 1024 15 +~~~ +4871351 1024 31 +~~~ +~~~ +4871353 1024 63 +~~~ +~~~ +4871354 1024 127 +~~~ +~~~ +4871356 1024 255 +4871357 homeCount = 67 +4871379 waitCount = 33 +4871379 ripCount = 29 +4871380 locktype1 = 2 +4871380 locktype2 = 6 +4871380 locktype3 = 2 +4871381 goalCount = 2 +4871381 goalTotal = 22 +4871382 otherCount = 34 +~~~ +4871383 CURRENTGOAL IS [6] +~~~ +4871383 DOWN 11 +4871383 0 255 +4871405 UP 11 +4871405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4871442 homeCount = 67 +4871442 waitCount = 33 +4871443 ripCount = 29 +4871443 locktype1 = 2 +4871444 locktype2 = 6 +4871444 locktype3 = 2 +4871445 goalCount = 2 +4871445 goalTotal = 22 +4871445 otherCount = 34 +~~~ +4871447 CURRENTGOAL IS [6] +~~~ +4873361 DOWN 11 +4873361 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4873397 homeCount = 67 +4873397 waitCount = 33 +4873398 ripCount = 29 +4873398 locktype1 = 2 +4873399 locktype2 = 6 +4873399 locktype3 = 2 +4873400 goalCount = 2 +4873400 goalTotal = 22 +4873401 otherCount = 34 +~~~ +4873402 CURRENTGOAL IS [6] +~~~ +4873455 UP 11 +4873455 1024 255 +4873472 DOWN 11 +4873472 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +4873497 UP 11 +4873497 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4873509 homeCount = 67 +4873510 waitCount = 33 +4873510 ripCount = 29 +4873511 locktype1 = 2 +4873511 locktype2 = 6 +4873512 locktype3 = 2 +4873512 goalCount = 2 +4873512 goalTotal = 22 +4873513 otherCount = 34 +~~~ +4873514 CURRENTGOAL IS [6] +~~~ +4874404 DOWN 11 +4874404 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4874438 homeCount = 67 +4874438 waitCount = 33 +4874439 ripCount = 29 +4874439 locktype1 = 2 +4874440 locktype2 = 6 +4874440 locktype3 = 2 +4874441 goalCount = 2 +4874441 goalTotal = 22 +4874442 otherCount = 34 +~~~ +4874443 CURRENTGOAL IS [6] +~~~ +4877582 UP 7 +4877582 64 255 +~~~ +~~~ +4878186 DOWN 7 +4878186 0 255 +~~~ +~~~ +4878208 0 254 +~~~ +~~~ +4878210 0 252 +~~~ +~~~ +4878212 0 248 +~~~ +~~~ +4878214 0 240 +~~~ +~~~ +4878215 0 224 +~~~ +~~~ +4878217 0 192 +~~~ +~~~ +4878219 0 128 +~~~ +~~~ +4878221 0 0 +~~~ +~~~ +4878223 0 512 +4878224 homeCount = 67 +4878224 waitCount = 33 +4878225 ripCount = 29 +4878225 locktype1 = 2 +4878226 locktype2 = 6 +4878247 locktype3 = 2 +4878247 goalCount = 2 +4878248 goalTotal = 22 +4878248 otherCount = 35 +~~~ +4878255 64 512 +4878364 DOWN 7 +4878364 0 512 +4888220 UP 6 +4888220 32 512 +~~~ +4888240 WHITENOISE +~~~ +~~~ +~~~ +4888242 32 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4888552 DOWN 6 +4888552 0 0 +4888580 32 0 +4889335 DOWN 6 +4889335 0 0 +4895758 512 0 +4895900 0 0 +4896086 512 0 +4896709 0 0 +4896767 512 0 +4896810 0 0 +4913240 LOCKEND +~~~ +~~~ +~~~ +4913260 0 512 +4913827 UP 10 +4913827 waslock = 0 +4913827 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4913856 512 16777728 +~~~ +4914006 512 512 +4919172 DOWN 10 +4919171 0 512 +~~~ +~~~ +4919189 0 1536 +~~~ +~~~ +4919191 0 1024 +4919192 homeCount = 68 +4919192 waitCount = 33 +4919193 ripCount = 29 +4919193 locktype1 = 2 +4919193 locktype2 = 7 +4919194 locktype3 = 2 +4919194 goalCount = 2 +4919195 goalTotal = 22 +4919195 otherCount = 35 +~~~ +4919208 UP 10 +4919208 waslock = 0 +4919208 512 1024 +~~~ +4919258 DOWN 10 +4919258 0 1024 +~~~ +~~~ +~~~ +~~~ +4919283 homeCount = 68 +4919284 waitCount = 33 +4919284 ripCount = 29 +4919285 locktype1 = 2 +4919285 locktype2 = 7 +4919286 locktype3 = 2 +4919286 goalCount = 2 +4919287 goalTotal = 22 +4919287 otherCount = 35 +~~~ +4920827 UP 11 +4920827 1024 1024 +4923419 DOWN 11 +4923419 0 1024 +4923459 UP 11 +4923459 1024 1024 +4924327 BEEP1 +4924327 BEEP2 +~~~ +~~~ +~~~ +4924356 1024 33555456 +~~~ +4924506 1024 1024 +4930037 DOWN 11 +4930037 0 1024 +~~~ +~~~ +4930062 UP 11 +4930062 1024 0 +~~~ +~~~ +4930064 1024 1 +~~~ +~~~ +4930066 1024 3 +~~~ +~~~ +4930067 1024 7 +~~~ +~~~ +4930069 1024 15 +~~~ +~~~ +4930071 1024 31 +~~~ +~~~ +4930073 1024 63 +~~~ +~~~ +4930075 1024 127 +~~~ +~~~ +4930076 1024 255 +4930078 homeCount = 68 +4930078 waitCount = 33 +4930079 ripCount = 30 +4930100 locktype1 = 2 +4930100 locktype2 = 7 +4930101 locktype3 = 2 +4930101 goalCount = 2 +4930102 goalTotal = 22 +4930102 otherCount = 35 +~~~ +4930103 CURRENTGOAL IS [6] +~~~ +4931788 DOWN 11 +4931788 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4931830 homeCount = 68 +4931831 waitCount = 33 +4931831 ripCount = 30 +4931832 locktype1 = 2 +4931832 locktype2 = 7 +4931833 locktype3 = 2 +4931833 goalCount = 2 +4931834 goalTotal = 22 +4931834 otherCount = 35 +~~~ +4931835 CURRENTGOAL IS [6] +~~~ +4931856 UP 11 +4931856 1024 255 +4931911 DOWN 11 +4931911 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4931949 homeCount = 68 +4931949 waitCount = 33 +4931950 ripCount = 30 +4931950 locktype1 = 2 +4931951 locktype2 = 7 +4931951 locktype3 = 2 +4931952 goalCount = 2 +4931952 goalTotal = 22 +4931953 otherCount = 35 +~~~ +4931954 CURRENTGOAL IS [6] +~~~ +4935641 UP 6 +4935641 32 255 +~~~ +~~~ +4935667 outer reward +~~~ +4935667 32 2097407 +~~~ +~~~ +4935968 DOWN 6 +4935968 0 2097407 +~~~ +4935992 32 2097407 +~~~ +4935993 32 2097406 +~~~ +~~~ +4935995 32 2097404 +~~~ +~~~ +4935997 32 2097400 +~~~ +~~~ +4935999 32 2097392 +~~~ +~~~ +4936000 32 2097376 +~~~ +~~~ +4936002 32 2097344 +~~~ +~~~ +4936004 32 2097280 +~~~ +~~~ +4936006 32 2097152 +~~~ +~~~ +4936008 32 2097664 +4936009 homeCount = 68 +4936029 waitCount = 33 +4936031 ripCount = 30 +4936031 locktype1 = 2 +4936031 locktype2 = 7 +4936032 locktype3 = 2 +4936032 goalCount = 3 +4936033 goalTotal = 23 +4936033 otherCount = 35 +~~~ +4936117 32 512 +4943256 DOWN 6 +4943256 0 512 +4943326 32 512 +4943341 DOWN 6 +4943341 0 512 +4947597 UP 10 +4947597 waslock = 0 +4947597 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4947631 512 16777728 +~~~ +4947780 512 512 +4947829 DOWN 10 +4947829 0 512 +~~~ +~~~ +4947853 0 2560 +~~~ +~~~ +4947855 0 2048 +4947856 homeCount = 69 +4947856 waitCount = 33 +4947857 ripCount = 30 +4947857 locktype1 = 2 +4947858 locktype2 = 7 +4947858 locktype3 = 2 +4947859 goalCount = 3 +4947859 goalTotal = 23 +4947860 otherCount = 35 +~~~ +4947988 UP 10 +4947989 waslock = 0 +4947988 512 2048 +~~~ +4952305 DOWN 10 +4952305 0 2048 +~~~ +~~~ +~~~ +~~~ +4952326 homeCount = 69 +4952326 waitCount = 33 +4952327 ripCount = 30 +4952327 locktype1 = 2 +4952328 locktype2 = 7 +4952328 locktype3 = 2 +4952329 goalCount = 3 +4952329 goalTotal = 23 +4952330 otherCount = 35 +~~~ +4952364 UP 10 +4952365 waslock = 0 +4952364 512 2048 +~~~ +4952401 DOWN 10 +4952401 0 2048 +~~~ +~~~ +~~~ +~~~ +4952421 homeCount = 69 +4952422 waitCount = 33 +4952422 ripCount = 30 +4952423 locktype1 = 2 +4952423 locktype2 = 7 +4952424 locktype3 = 2 +4952424 goalCount = 3 +4952425 goalTotal = 23 +4952425 otherCount = 35 +~~~ +4954268 UP 12 +4954268 2048 2048 +4956332 DOWN 12 +4956332 0 2048 +4956407 UP 12 +4956407 2048 2048 +4957946 DOWN 12 +4957946 0 2048 +4958000 UP 12 +4958000 2048 2048 +4959769 CLICK1 +4959769 CLICK2 +~~~ +~~~ +~~~ +4959795 2048 67110912 +~~~ +4959945 2048 2048 +4966527 DOWN 12 +4966527 0 2048 +~~~ +~~~ +4966544 0 0 +~~~ +~~~ +4966546 0 1 +~~~ +~~~ +4966548 0 3 +~~~ +~~~ +4966550 0 7 +~~~ +~~~ +4966552 0 15 +~~~ +~~~ +4966553 0 31 +~~~ +4966555 UP 12 +4966555 2048 31 +~~~ +~~~ +4966557 2048 63 +~~~ +~~~ +4966558 2048 127 +~~~ +4966559 2048 255 +4966560 homeCount = 69 +4966561 waitCount = 34 +4966562 ripCount = 30 +4966583 locktype1 = 2 +4966583 locktype2 = 7 +4966584 locktype3 = 2 +4966584 goalCount = 3 +4966585 goalTotal = 23 +4966585 otherCount = 35 +~~~ +4966586 CURRENTGOAL IS [6] +~~~ +4966600 DOWN 12 +4966600 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4966632 homeCount = 69 +4966632 waitCount = 34 +4966633 ripCount = 30 +4966633 locktype1 = 2 +4966634 locktype2 = 7 +4966634 locktype3 = 2 +4966635 goalCount = 3 +4966635 goalTotal = 23 +4966636 otherCount = 35 +~~~ +4966637 CURRENTGOAL IS [6] +~~~ +4966668 UP 12 +4966668 2048 255 +4969174 DOWN 12 +4969174 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +4969211 homeCount = 69 +4969212 waitCount = 34 +4969212 ripCount = 30 +4969213 locktype1 = 2 +4969213 locktype2 = 7 +4969214 locktype3 = 2 +4969214 goalCount = 3 +4969215 goalTotal = 23 +4969215 otherCount = 35 +~~~ +4969216 CURRENTGOAL IS [6] +~~~ +4974183 UP 6 +4974183 32 255 +~~~ +~~~ +4974209 outer reward +~~~ +4974209 32 2097407 +~~~ +~~~ +4974418 DOWN 6 +4974418 0 2097407 +~~~ +~~~ +4974436 0 2097406 +~~~ +~~~ +4974438 0 2097404 +~~~ +~~~ +4974440 0 2097400 +~~~ +~~~ +4974442 0 2097392 +~~~ +~~~ +4974444 0 2097376 +~~~ +~~~ +4974445 0 2097344 +~~~ +~~~ +4974447 0 2097280 +~~~ +~~~ +4974449 0 2097152 +~~~ +~~~ +4974451 0 2097664 +4974452 homeCount = 69 +4974453 waitCount = 34 +4974453 ripCount = 30 +4974474 locktype1 = 2 +4974475 locktype2 = 7 +4974475 locktype3 = 2 +4974476 goalCount = 4 +4974476 goalTotal = 24 +4974477 otherCount = 35 +~~~ +4974477 32 2097664 +4974659 32 512 +4975104 DOWN 6 +4975104 0 512 +4975119 32 512 +4975232 DOWN 6 +4975232 0 512 +4975246 32 512 +4975346 DOWN 6 +4975346 0 512 +4975380 32 512 +4975480 DOWN 6 +4975480 0 512 +4975509 32 512 +4975617 DOWN 6 +4975617 0 512 +4975642 32 512 +4975756 DOWN 6 +4975756 0 512 +4975773 32 512 +4975895 DOWN 6 +4975895 0 512 +4975910 32 512 +4980733 DOWN 6 +4980733 0 512 +4980774 32 512 +4980818 DOWN 6 +4980818 0 512 +4984695 UP 10 +4984695 waslock = 0 +4984694 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +4984722 512 16777728 +~~~ +4984872 512 512 +4989193 DOWN 10 +4989193 0 512 +~~~ +~~~ +4989216 0 1536 +~~~ +~~~ +4989218 0 1024 +4989219 homeCount = 70 +4989219 waitCount = 34 +4989220 ripCount = 30 +4989220 locktype1 = 2 +4989221 locktype2 = 7 +4989221 locktype3 = 2 +4989222 goalCount = 4 +4989222 goalTotal = 24 +4989223 otherCount = 35 +~~~ +4989259 UP 10 +4989260 waslock = 0 +4989259 512 1024 +4989279 DOWN 10 +4989279 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +4989301 homeCount = 70 +4989301 waitCount = 34 +4989302 ripCount = 30 +4989302 locktype1 = 2 +4989303 locktype2 = 7 +4989303 locktype3 = 2 +4989304 goalCount = 4 +4989304 goalTotal = 24 +4989305 otherCount = 35 +~~~ +4991305 UP 11 +4991305 1024 1024 +4992871 DOWN 11 +4992871 0 1024 +4992939 UP 11 +4992939 1024 1024 +4992987 DOWN 11 +4992987 0 1024 +4992997 UP 11 +4992997 1024 1024 +4994737 DOWN 11 +4994737 0 1024 +4994747 UP 11 +4994747 1024 1024 +4997651 DOWN 11 +4997651 0 1024 +4997663 UP 11 +4997663 1024 1024 +4998026 DOWN 11 +4998026 0 1024 +4998060 UP 11 +4998060 1024 1024 +4998077 DOWN 11 +4998077 0 1024 +4998088 UP 11 +4998088 1024 1024 +4998306 BEEP1 +4998306 BEEP2 +~~~ +~~~ +~~~ +4998329 1024 33555456 +~~~ +4998478 1024 1024 +5004681 DOWN 11 +5004681 0 1024 +~~~ +~~~ +5004706 0 0 +~~~ +~~~ +5004708 0 1 +~~~ +~~~ +5004710 0 3 +~~~ +~~~ +5004711 UP 11 +5004711 1024 7 +~~~ +~~~ +5004713 1024 15 +~~~ +~~~ +5004715 1024 31 +~~~ +~~~ +5004717 1024 63 +~~~ +~~~ +5004719 1024 127 +~~~ +~~~ +5004720 1024 255 +5004721 homeCount = 70 +5004722 waitCount = 34 +5004723 ripCount = 31 +5004744 locktype1 = 2 +5004744 locktype2 = 7 +5004744 locktype3 = 2 +5004745 goalCount = 4 +5004745 goalTotal = 24 +5004746 otherCount = 35 +~~~ +5004747 CURRENTGOAL IS [6] +~~~ +5004769 DOWN 11 +5004769 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5004805 homeCount = 70 +5004806 waitCount = 34 +5004806 ripCount = 31 +5004807 locktype1 = 2 +5004807 locktype2 = 7 +5004808 locktype3 = 2 +5004808 goalCount = 4 +5004809 goalTotal = 24 +5004809 otherCount = 35 +~~~ +5004810 CURRENTGOAL IS [6] +~~~ +5014643 UP 6 +5014643 32 255 +~~~ +~~~ +5014669 outer reward +~~~ +5014670 32 2097407 +~~~ +~~~ +5014904 DOWN 6 +5014904 0 2097407 +~~~ +~~~ +5014928 0 2097406 +~~~ +~~~ +5014930 0 2097404 +~~~ +~~~ +5014931 0 2097400 +~~~ +~~~ +5014933 0 2097392 +~~~ +~~~ +5014935 0 2097376 +~~~ +~~~ +5014937 0 2097344 +~~~ +~~~ +5014939 0 2097280 +~~~ +~~~ +5014940 0 2097152 +~~~ +~~~ +5014942 0 2097664 +5014943 homeCount = 70 +5014944 waitCount = 34 +5014944 ripCount = 31 +5014966 locktype1 = 2 +5014966 locktype2 = 7 +5014966 locktype3 = 2 +5014967 goalCount = 5 +5014967 goalTotal = 25 +5014968 otherCount = 35 +~~~ +5014968 32 2097664 +5015119 32 512 +5015329 DOWN 6 +5015329 0 512 +5015358 32 512 +5015461 DOWN 6 +5015461 0 512 +5015476 32 512 +5015588 DOWN 6 +5015588 0 512 +5015600 32 512 +5015717 DOWN 6 +5015717 0 512 +5015727 32 512 +5015843 DOWN 6 +5015843 0 512 +5015855 32 512 +5020832 DOWN 6 +5020832 0 512 +5020886 32 512 +5020928 DOWN 6 +5020928 0 512 +5026912 UP 10 +5026912 waslock = 0 +5026912 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5026939 512 16777728 +~~~ +5027086 DOWN 10 +5027086 0 16777728 +5027089 0 512 +~~~ +~~~ +5027104 0 2560 +~~~ +~~~ +5027106 0 2048 +5027107 homeCount = 71 +5027107 waitCount = 34 +5027108 ripCount = 31 +5027108 locktype1 = 2 +5027109 locktype2 = 7 +5027109 locktype3 = 2 +5027110 goalCount = 5 +5027110 goalTotal = 25 +5027111 otherCount = 35 +~~~ +5027415 UP 10 +5027415 waslock = 0 +5027415 512 2048 +~~~ +5032403 DOWN 10 +5032403 0 2048 +5032408 UP 10 +5032409 waslock = 0 +5032408 512 2048 +~~~ +~~~ +~~~ +~~~ +5032426 homeCount = 71 +5032427 waitCount = 34 +5032427 ripCount = 31 +5032428 locktype1 = 2 +5032428 locktype2 = 7 +5032429 locktype3 = 2 +5032429 goalCount = 5 +5032430 goalTotal = 25 +5032430 otherCount = 35 +~~~ +~~~ +5032515 DOWN 10 +5032515 0 2048 +~~~ +~~~ +~~~ +~~~ +5032539 homeCount = 71 +5032539 waitCount = 34 +5032540 ripCount = 31 +5032540 locktype1 = 2 +5032541 locktype2 = 7 +5032541 locktype3 = 2 +5032542 goalCount = 5 +5032542 goalTotal = 25 +5032543 otherCount = 35 +~~~ +5032546 UP 10 +5032546 waslock = 0 +5032546 512 2048 +~~~ +5032613 DOWN 10 +5032613 0 2048 +~~~ +~~~ +~~~ +~~~ +5032639 homeCount = 71 +5032640 waitCount = 34 +5032640 ripCount = 31 +5032641 locktype1 = 2 +5032641 locktype2 = 7 +5032642 locktype3 = 2 +5032642 goalCount = 5 +5032643 goalTotal = 25 +5032643 otherCount = 35 +~~~ +5034484 UP 12 +5034484 2048 2048 +5036958 DOWN 12 +5036958 0 2048 +5037036 UP 12 +5037036 2048 2048 +5040518 DOWN 12 +5040518 0 2048 +5040568 UP 12 +5040568 2048 2048 +5042485 CLICK1 +5042485 CLICK2 +~~~ +~~~ +~~~ +5042506 2048 67110912 +~~~ +5042656 2048 2048 +5047511 DOWN 12 +5047510 0 2048 +5047520 UP 12 +5047520 2048 2048 +~~~ +~~~ +5047534 2048 0 +~~~ +~~~ +5047536 2048 1 +~~~ +~~~ +5047538 2048 3 +~~~ +~~~ +5047540 2048 7 +~~~ +~~~ +5047541 2048 15 +~~~ +~~~ +5047543 2048 31 +~~~ +~~~ +5047545 2048 63 +~~~ +~~~ +5047547 2048 127 +~~~ +~~~ +5047549 2048 255 +5047550 homeCount = 71 +5047550 waitCount = 35 +5047551 ripCount = 31 +5047551 locktype1 = 2 +5047573 locktype2 = 7 +5047573 locktype3 = 2 +5047573 goalCount = 5 +5047574 goalTotal = 25 +5047574 otherCount = 35 +~~~ +5047575 CURRENTGOAL IS [6] +~~~ +5047576 DOWN 12 +5047576 0 255 +5047581 UP 12 +5047581 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5047620 homeCount = 71 +5047621 waitCount = 35 +5047621 ripCount = 31 +5047622 locktype1 = 2 +5047622 locktype2 = 7 +5047623 locktype3 = 2 +5047623 goalCount = 5 +5047624 goalTotal = 25 +5047624 otherCount = 35 +~~~ +5047625 CURRENTGOAL IS [6] +~~~ +5050479 DOWN 12 +5050479 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5050518 homeCount = 71 +5050518 waitCount = 35 +5050519 ripCount = 31 +5050519 locktype1 = 2 +5050520 locktype2 = 7 +5050520 locktype3 = 2 +5050521 goalCount = 5 +5050521 goalTotal = 25 +5050522 otherCount = 35 +~~~ +5050523 CURRENTGOAL IS [6] +~~~ +5065836 UP 6 +5065836 32 255 +~~~ +~~~ +5065861 outer reward +~~~ +5065862 32 2097407 +~~~ +~~~ +5066136 DOWN 6 +5066136 0 2097407 +~~~ +~~~ +5066159 0 2097406 +~~~ +~~~ +5066161 0 2097404 +~~~ +~~~ +5066163 0 2097400 +~~~ +~~~ +5066165 0 2097392 +~~~ +~~~ +5066167 0 2097376 +~~~ +~~~ +5066168 0 2097344 +~~~ +~~~ +5066170 0 2097280 +~~~ +5066172 32 2097280 +~~~ +~~~ +5066173 32 2097152 +~~~ +5066174 32 2097664 +5066176 homeCount = 71 +5066176 waitCount = 35 +5066197 ripCount = 31 +5066197 locktype1 = 2 +5066198 locktype2 = 7 +5066198 locktype3 = 2 +5066199 goalCount = 6 +5066199 goalTotal = 26 +5066200 otherCount = 35 +~~~ +5066311 32 512 +5066557 DOWN 6 +5066557 0 512 +5066572 32 512 +5067050 DOWN 6 +5067050 0 512 +5067083 32 512 +5071100 DOWN 6 +5071100 0 512 +5071143 32 512 +5072577 DOWN 6 +5072577 0 512 +5079381 UP 10 +5079382 waslock = 0 +5079381 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5079405 512 16777728 +~~~ +5079555 512 512 +5084925 DOWN 10 +5084925 0 512 +5084940 UP 10 +5084940 waslock = 0 +5084940 512 512 +~~~ +~~~ +5084949 512 2560 +~~~ +~~~ +5084951 512 2048 +5084952 homeCount = 72 +5084952 waitCount = 35 +5084953 ripCount = 31 +5084953 locktype1 = 2 +5084954 locktype2 = 7 +5084954 locktype3 = 2 +5084955 goalCount = 6 +5084955 goalTotal = 26 +5084955 otherCount = 35 +~~~ +~~~ +5085037 DOWN 10 +5085037 0 2048 +~~~ +~~~ +~~~ +~~~ +5085065 homeCount = 72 +5085066 waitCount = 35 +5085066 ripCount = 31 +5085067 locktype1 = 2 +5085067 locktype2 = 7 +5085068 locktype3 = 2 +5085068 goalCount = 6 +5085069 goalTotal = 26 +5085069 otherCount = 35 +~~~ +5086546 UP 12 +5086546 2048 2048 +5086603 DOWN 12 +5086603 0 2048 +5086685 UP 12 +5086685 2048 2048 +5088393 DOWN 12 +5088393 0 2048 +5088565 UP 12 +5088565 2048 2048 +5089288 DOWN 12 +5089288 0 2048 +5089293 UP 12 +5089293 2048 2048 +5094546 CLICK1 +5094546 CLICK2 +~~~ +~~~ +~~~ +5094571 2048 67110912 +~~~ +5094721 2048 2048 +5100032 DOWN 12 +5100032 0 2048 +5100044 UP 12 +5100044 2048 2048 +~~~ +~~~ +5100049 2048 0 +~~~ +~~~ +5100051 2048 1 +~~~ +~~~ +5100052 2048 3 +~~~ +~~~ +5100054 2048 7 +~~~ +~~~ +5100056 2048 15 +~~~ +~~~ +5100058 2048 31 +~~~ +~~~ +5100060 2048 63 +~~~ +~~~ +5100062 2048 127 +~~~ +~~~ +5100063 2048 255 +5100064 homeCount = 72 +5100065 waitCount = 36 +5100065 ripCount = 31 +5100066 locktype1 = 2 +5100087 locktype2 = 7 +5100088 locktype3 = 2 +5100088 goalCount = 6 +5100089 goalTotal = 26 +5100089 otherCount = 35 +~~~ +5100090 CURRENTGOAL IS [6] +~~~ +5100091 DOWN 12 +5100090 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5100137 homeCount = 72 +5100137 waitCount = 36 +5100138 ripCount = 31 +5100138 locktype1 = 2 +5100139 locktype2 = 7 +5100139 locktype3 = 2 +5100140 goalCount = 6 +5100140 goalTotal = 26 +5100141 otherCount = 35 +~~~ +5100142 CURRENTGOAL IS [6] +~~~ +5100176 UP 12 +5100176 2048 255 +5100497 DOWN 12 +5100497 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5100537 homeCount = 72 +5100538 waitCount = 36 +5100538 ripCount = 31 +5100539 locktype1 = 2 +5100539 locktype2 = 7 +5100540 locktype3 = 2 +5100540 goalCount = 6 +5100541 goalTotal = 26 +5100541 otherCount = 35 +~~~ +5100542 CURRENTGOAL IS [6] +~~~ +5100637 UP 12 +5100637 2048 255 +5102022 DOWN 12 +5102022 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5102060 homeCount = 72 +5102061 waitCount = 36 +5102061 ripCount = 31 +5102062 locktype1 = 2 +5102062 locktype2 = 7 +5102063 locktype3 = 2 +5102063 goalCount = 6 +5102064 goalTotal = 26 +5102064 otherCount = 35 +~~~ +5102065 CURRENTGOAL IS [6] +~~~ +5108521 UP 6 +5108521 32 255 +~~~ +~~~ +5108549 outer reward +~~~ +5108549 32 2097407 +~~~ +~~~ +5108766 DOWN 6 +5108766 0 2097407 +~~~ +~~~ +5108789 0 2097406 +~~~ +~~~ +5108791 0 2097404 +~~~ +~~~ +5108793 0 2097400 +~~~ +~~~ +5108795 0 2097392 +~~~ +~~~ +5108797 0 2097376 +~~~ +~~~ +5108798 0 2097344 +~~~ +~~~ +5108800 0 2097280 +~~~ +~~~ +5108802 0 2097152 +~~~ +~~~ +5108804 0 2097664 +5108805 homeCount = 72 +5108805 waitCount = 36 +5108806 ripCount = 31 +5108827 locktype1 = 2 +5108828 locktype2 = 7 +5108828 locktype3 = 2 +5108829 goalCount = 7 +5108829 goalTotal = 27 +5108830 otherCount = 35 +~~~ +5108830 32 2097664 +5108999 32 512 +5109204 DOWN 6 +5109204 0 512 +5109215 32 512 +5109317 DOWN 6 +5109317 0 512 +5109351 32 512 +5109448 DOWN 6 +5109448 0 512 +5109470 32 512 +5109572 DOWN 6 +5109572 0 512 +5109589 32 512 +5109693 DOWN 6 +5109693 0 512 +5109723 32 512 +5113979 DOWN 6 +5113979 0 512 +5113984 32 512 +5115574 DOWN 6 +5115574 0 512 +5119927 UP 10 +5119927 waslock = 0 +5119927 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5119957 512 16777728 +~~~ +5119972 DOWN 10 +5119971 0 16777728 +~~~ +~~~ +5119990 0 16779776 +~~~ +~~~ +5119992 0 16779264 +5119993 homeCount = 73 +5119994 waitCount = 36 +5119994 ripCount = 31 +5119995 locktype1 = 2 +5119995 locktype2 = 7 +5119996 locktype3 = 2 +5119996 goalCount = 7 +5119997 goalTotal = 27 +5119997 otherCount = 35 +~~~ +5120049 UP 10 +5120049 waslock = 0 +5120049 512 16779264 +~~~ +5120107 512 2048 +5123786 DOWN 10 +5123786 0 2048 +~~~ +~~~ +~~~ +~~~ +5123813 homeCount = 73 +5123813 waitCount = 36 +5123814 ripCount = 31 +5123814 locktype1 = 2 +5123814 locktype2 = 7 +5123815 locktype3 = 2 +5123815 goalCount = 7 +5123816 goalTotal = 27 +5123816 otherCount = 35 +~~~ +5125790 UP 12 +5125790 2048 2048 +5127598 DOWN 12 +5127598 0 2048 +5127629 UP 12 +5127629 2048 2048 +5129445 DOWN 12 +5129445 0 2048 +5129463 UP 12 +5129463 2048 2048 +5130858 DOWN 12 +5130858 0 2048 +5130864 UP 12 +5130864 2048 2048 +5133790 CLICK1 +5133790 CLICK2 +~~~ +~~~ +~~~ +5133813 2048 67110912 +~~~ +5133963 2048 2048 +5138931 DOWN 12 +5138931 0 2048 +5138937 UP 12 +5138937 2048 2048 +~~~ +~~~ +5138950 2048 0 +~~~ +~~~ +5138951 2048 1 +~~~ +~~~ +5138953 2048 3 +~~~ +~~~ +5138955 2048 7 +~~~ +~~~ +5138957 2048 15 +~~~ +~~~ +5138959 2048 31 +~~~ +~~~ +5138961 2048 63 +~~~ +~~~ +5138962 2048 127 +~~~ +~~~ +5138964 2048 255 +5138965 homeCount = 73 +5138966 waitCount = 37 +5138966 ripCount = 31 +5138967 locktype1 = 2 +5138987 locktype2 = 7 +5138988 locktype3 = 2 +5138988 goalCount = 7 +5138989 goalTotal = 27 +5138989 otherCount = 35 +~~~ +5138990 CURRENTGOAL IS [6] +~~~ +5138991 DOWN 12 +5138991 0 255 +5139007 UP 12 +5139007 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5139035 homeCount = 73 +5139035 waitCount = 37 +5139036 ripCount = 31 +5139036 locktype1 = 2 +5139037 locktype2 = 7 +5139037 locktype3 = 2 +5139038 goalCount = 7 +5139038 goalTotal = 27 +5139039 otherCount = 35 +~~~ +5139040 CURRENTGOAL IS [6] +~~~ +5141276 DOWN 12 +5141276 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5141318 homeCount = 73 +5141319 waitCount = 37 +5141319 ripCount = 31 +5141320 locktype1 = 2 +5141320 locktype2 = 7 +5141321 locktype3 = 2 +5141321 goalCount = 7 +5141322 goalTotal = 27 +5141322 otherCount = 35 +~~~ +5141323 CURRENTGOAL IS [6] +~~~ +5147743 UP 6 +5147743 32 255 +~~~ +~~~ +5147763 outer reward +~~~ +5147764 32 2097407 +~~~ +~~~ +5147993 DOWN 6 +5147993 0 2097407 +~~~ +~~~ +5148012 0 2097406 +~~~ +~~~ +5148014 0 2097404 +~~~ +~~~ +5148016 0 2097400 +~~~ +~~~ +5148018 0 2097392 +~~~ +~~~ +5148019 0 2097376 +~~~ +~~~ +5148021 0 2097344 +~~~ +~~~ +5148023 0 2097280 +~~~ +~~~ +5148025 0 2097152 +~~~ +~~~ +5148027 0 2097664 +5148028 homeCount = 73 +5148028 waitCount = 37 +5148029 ripCount = 31 +5148050 locktype1 = 2 +5148050 locktype2 = 7 +5148051 locktype3 = 2 +5148051 goalCount = 8 +5148052 goalTotal = 28 +5148052 otherCount = 35 +~~~ +5148068 32 2097664 +5148213 32 512 +5148335 DOWN 6 +5148335 0 512 +5148358 32 512 +5148457 DOWN 6 +5148457 0 512 +5148501 32 512 +5148589 DOWN 6 +5148589 0 512 +5148618 32 512 +5155375 DOWN 6 +5155374 0 512 +5159939 UP 10 +5159939 waslock = 0 +5159939 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5159964 512 16777728 +~~~ +5160114 512 512 +5160151 DOWN 10 +5160151 0 512 +5160165 UP 10 +5160165 waslock = 0 +5160165 512 512 +~~~ +~~~ +5160171 512 2560 +~~~ +~~~ +5160173 512 2048 +5160174 homeCount = 74 +5160175 waitCount = 37 +5160175 ripCount = 31 +5160176 locktype1 = 2 +5160176 locktype2 = 7 +5160177 locktype3 = 2 +5160177 goalCount = 8 +5160178 goalTotal = 28 +5160178 otherCount = 35 +~~~ +~~~ +5164052 DOWN 10 +5164052 0 2048 +~~~ +~~~ +~~~ +~~~ +5164072 homeCount = 74 +5164073 waitCount = 37 +5164073 ripCount = 31 +5164074 locktype1 = 2 +5164074 locktype2 = 7 +5164075 locktype3 = 2 +5164075 goalCount = 8 +5164076 goalTotal = 28 +5164076 otherCount = 35 +~~~ +5165621 UP 12 +5165621 2048 2048 +5172621 CLICK1 +5172621 CLICK2 +~~~ +~~~ +~~~ +5172641 2048 67110912 +~~~ +5172791 2048 2048 +5178708 DOWN 12 +5178708 0 2048 +5178727 UP 12 +5178727 2048 2048 +~~~ +~~~ +5178729 2048 0 +~~~ +~~~ +5178731 2048 1 +~~~ +~~~ +5178733 2048 3 +~~~ +~~~ +5178735 2048 7 +~~~ +~~~ +5178737 2048 15 +~~~ +~~~ +5178738 2048 31 +~~~ +~~~ +5178740 2048 63 +~~~ +~~~ +5178742 2048 127 +~~~ +~~~ +5178744 2048 255 +5178745 homeCount = 74 +5178745 waitCount = 38 +5178766 ripCount = 31 +5178767 locktype1 = 2 +5178767 locktype2 = 7 +5178768 locktype3 = 2 +5178768 goalCount = 8 +5178769 goalTotal = 28 +5178769 otherCount = 35 +~~~ +5178770 CURRENTGOAL IS [6] +~~~ +5178791 DOWN 12 +5178791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5178818 homeCount = 74 +5178819 waitCount = 38 +5178819 ripCount = 31 +5178820 locktype1 = 2 +5178820 locktype2 = 7 +5178821 locktype3 = 2 +5178821 goalCount = 8 +5178822 goalTotal = 28 +5178822 otherCount = 35 +~~~ +5178823 CURRENTGOAL IS [6] +~~~ +5178824 UP 12 +5178824 2048 255 +5178846 DOWN 12 +5178846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5178877 homeCount = 74 +5178877 waitCount = 38 +5178878 ripCount = 31 +5178878 locktype1 = 2 +5178879 locktype2 = 7 +5178879 locktype3 = 2 +5178880 goalCount = 8 +5178880 goalTotal = 28 +5178881 otherCount = 35 +~~~ +5178882 CURRENTGOAL IS [6] +~~~ +5179006 UP 12 +5179006 2048 255 +5180699 DOWN 12 +5180699 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5180741 homeCount = 74 +5180741 waitCount = 38 +5180742 ripCount = 31 +5180742 locktype1 = 2 +5180743 locktype2 = 7 +5180743 locktype3 = 2 +5180744 goalCount = 8 +5180744 goalTotal = 28 +5180744 otherCount = 35 +~~~ +5180746 CURRENTGOAL IS [6] +~~~ +5185076 UP 6 +5185076 32 255 +~~~ +~~~ +5185099 outer reward +~~~ +5185100 32 2097407 +~~~ +~~~ +5185320 DOWN 6 +5185320 0 2097407 +~~~ +~~~ +5185345 0 2097406 +~~~ +~~~ +5185347 0 2097404 +~~~ +~~~ +5185349 0 2097400 +~~~ +~~~ +5185351 0 2097392 +~~~ +~~~ +5185353 0 2097376 +~~~ +~~~ +5185355 0 2097344 +~~~ +~~~ +5185356 0 2097280 +~~~ +~~~ +5185358 0 2097152 +~~~ +~~~ +5185360 0 2097664 +5185361 homeCount = 74 +5185362 waitCount = 38 +5185362 ripCount = 31 +5185383 locktype1 = 2 +5185384 locktype2 = 7 +5185384 locktype3 = 2 +5185385 goalCount = 9 +5185385 goalTotal = 29 +5185386 otherCount = 35 +~~~ +5185386 32 2097664 +5185549 32 512 +5185758 DOWN 6 +5185757 0 512 +5185784 32 512 +5186141 DOWN 6 +5186141 0 512 +5186165 32 512 +5189858 DOWN 6 +5189857 0 512 +5189864 32 512 +5192101 DOWN 6 +5192101 0 512 +5202397 UP 10 +5202398 waslock = 0 +5202397 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5202424 512 16777728 +~~~ +5202574 512 512 +5202655 DOWN 10 +5202655 0 512 +~~~ +~~~ +5202677 0 1536 +~~~ +~~~ +5202679 0 1024 +5202680 homeCount = 75 +5202680 waitCount = 38 +5202681 ripCount = 31 +5202681 locktype1 = 2 +5202682 locktype2 = 7 +5202682 locktype3 = 2 +5202683 goalCount = 9 +5202683 goalTotal = 29 +5202684 otherCount = 35 +~~~ +5202757 UP 10 +5202758 waslock = 0 +5202757 512 1024 +~~~ +5207019 DOWN 10 +5207019 0 1024 +5207036 UP 10 +5207036 waslock = 0 +5207035 512 1024 +~~~ +~~~ +~~~ +~~~ +5207042 homeCount = 75 +5207042 waitCount = 38 +5207043 ripCount = 31 +5207043 locktype1 = 2 +5207044 locktype2 = 7 +5207044 locktype3 = 2 +5207045 goalCount = 9 +5207045 goalTotal = 29 +5207046 otherCount = 35 +~~~ +~~~ +5207117 DOWN 10 +5207117 0 1024 +~~~ +~~~ +~~~ +~~~ +5207144 homeCount = 75 +5207144 waitCount = 38 +5207145 ripCount = 31 +5207145 locktype1 = 2 +5207146 locktype2 = 7 +5207146 locktype3 = 2 +5207147 goalCount = 9 +5207147 goalTotal = 29 +5207148 otherCount = 35 +~~~ +5209520 UP 11 +5209520 1024 1024 +5211517 DOWN 11 +5211517 0 1024 +5211529 UP 11 +5211529 1024 1024 +5212520 BEEP1 +5212520 BEEP2 +~~~ +~~~ +~~~ +5212541 1024 33555456 +~~~ +5212691 1024 1024 +5217823 DOWN 11 +5217823 0 1024 +5217847 UP 11 +5217847 1024 1024 +~~~ +~~~ +5217850 1024 0 +~~~ +~~~ +5217852 1024 1 +~~~ +~~~ +5217854 1024 3 +~~~ +~~~ +5217856 1024 7 +~~~ +~~~ +5217857 1024 15 +~~~ +~~~ +5217859 1024 31 +~~~ +~~~ +5217861 1024 63 +~~~ +~~~ +5217863 1024 127 +~~~ +~~~ +5217865 1024 255 +5217866 homeCount = 75 +5217866 waitCount = 38 +5217867 ripCount = 32 +5217867 locktype1 = 2 +5217888 locktype2 = 7 +5217889 locktype3 = 2 +5217889 goalCount = 9 +5217889 goalTotal = 29 +5217890 otherCount = 35 +~~~ +5217891 CURRENTGOAL IS [6] +~~~ +5217891 DOWN 11 +5217891 0 255 +5217918 UP 11 +5217918 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5217949 homeCount = 75 +5217949 waitCount = 38 +5217950 ripCount = 32 +5217950 locktype1 = 2 +5217951 locktype2 = 7 +5217951 locktype3 = 2 +5217952 goalCount = 9 +5217952 goalTotal = 29 +5217953 otherCount = 35 +~~~ +5217954 CURRENTGOAL IS [6] +~~~ +5217954 DOWN 11 +5217954 0 255 +5217976 UP 11 +5217976 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5218014 homeCount = 75 +5218015 waitCount = 38 +5218016 ripCount = 32 +5218016 locktype1 = 2 +5218017 locktype2 = 7 +5218017 locktype3 = 2 +5218017 goalCount = 9 +5218018 goalTotal = 29 +5218018 otherCount = 35 +~~~ +5218019 CURRENTGOAL IS [6] +~~~ +5219962 DOWN 11 +5219962 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5219994 homeCount = 75 +5219995 waitCount = 38 +5219996 ripCount = 32 +5219996 locktype1 = 2 +5219997 locktype2 = 7 +5219997 locktype3 = 2 +5219997 goalCount = 9 +5219998 goalTotal = 29 +5219998 otherCount = 35 +~~~ +5219999 CURRENTGOAL IS [6] +~~~ +5220006 UP 11 +5220006 1024 255 +5220095 DOWN 11 +5220095 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5220135 homeCount = 75 +5220135 waitCount = 38 +5220136 ripCount = 32 +5220136 locktype1 = 2 +5220137 locktype2 = 7 +5220137 locktype3 = 2 +5220138 goalCount = 9 +5220138 goalTotal = 29 +5220139 otherCount = 35 +~~~ +5220140 CURRENTGOAL IS [6] +~~~ +5220369 UP 11 +5220369 1024 255 +5220384 DOWN 11 +5220384 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5220420 homeCount = 75 +5220421 waitCount = 38 +5220421 ripCount = 32 +5220422 locktype1 = 2 +5220422 locktype2 = 7 +5220423 locktype3 = 2 +5220423 goalCount = 9 +5220424 goalTotal = 29 +5220424 otherCount = 35 +~~~ +5220425 CURRENTGOAL IS [6] +~~~ +5220756 UP 11 +5220756 1024 255 +5222629 DOWN 11 +5222629 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222658 UP 11 +5222658 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222666 homeCount = 75 +5222666 waitCount = 38 +5222667 ripCount = 32 +5222667 locktype1 = 2 +5222668 locktype2 = 7 +5222668 locktype3 = 2 +5222669 goalCount = 9 +5222669 goalTotal = 29 +5222669 otherCount = 35 +~~~ +5222671 CURRENTGOAL IS [6] +~~~ +5222721 DOWN 11 +5222721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5222756 homeCount = 75 +5222757 waitCount = 38 +5222757 ripCount = 32 +5222758 locktype1 = 2 +5222758 locktype2 = 7 +5222759 locktype3 = 2 +5222759 goalCount = 9 +5222760 goalTotal = 29 +5222760 otherCount = 35 +~~~ +5222761 CURRENTGOAL IS [6] +~~~ +5225752 UP 6 +5225752 32 255 +~~~ +~~~ +5225775 outer reward +~~~ +5225775 32 2097407 +~~~ +~~~ +5225780 outerreps = 8 +~~~ +~~~ +5226029 DOWN 6 +5226029 0 2097407 +~~~ +~~~ +5226052 0 2097406 +~~~ +~~~ +5226053 0 2097404 +~~~ +~~~ +5226055 0 2097400 +~~~ +~~~ +5226057 0 2097392 +~~~ +~~~ +5226059 0 2097376 +~~~ +~~~ +5226061 0 2097344 +~~~ +~~~ +5226062 0 2097280 +~~~ +5226064 32 2097280 +~~~ +~~~ +5226066 32 2097152 +~~~ +5226067 32 2097664 +5226068 homeCount = 75 +5226068 waitCount = 38 +5226089 ripCount = 32 +5226090 locktype1 = 2 +5226090 locktype2 = 7 +5226091 locktype3 = 2 +5226091 goalCount = 0 +5226092 goalTotal = 30 +5226092 otherCount = 35 +~~~ +5226225 32 512 +5234212 DOWN 6 +5234212 0 512 +5234299 32 512 +5234328 DOWN 6 +5234328 0 512 +5238432 UP 10 +5238432 waslock = 0 +5238432 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5238461 512 16777728 +~~~ +5238611 512 512 +5238651 DOWN 10 +5238651 0 512 +5238675 UP 10 +5238675 waslock = 0 +5238675 512 512 +~~~ +~~~ +~~~ +5238678 512 1536 +~~~ +5238679 512 1024 +5238680 homeCount = 76 +5238680 waitCount = 38 +5238681 ripCount = 32 +5238681 locktype1 = 2 +5238682 locktype2 = 7 +5238682 locktype3 = 2 +5238683 goalCount = 0 +5238704 goalTotal = 30 +5238704 otherCount = 35 +~~~ +~~~ +5242681 DOWN 10 +5242681 0 1024 +~~~ +~~~ +5242707 UP 10 +5242707 waslock = 0 +5242707 512 1024 +~~~ +~~~ +5242710 homeCount = 76 +5242710 waitCount = 38 +5242711 ripCount = 32 +5242711 locktype1 = 2 +5242712 locktype2 = 7 +5242712 locktype3 = 2 +5242713 goalCount = 0 +5242713 goalTotal = 30 +5242714 otherCount = 35 +~~~ +~~~ +5242781 DOWN 10 +5242781 0 1024 +~~~ +~~~ +~~~ +~~~ +5242809 homeCount = 76 +5242809 waitCount = 38 +5242810 ripCount = 32 +5242810 locktype1 = 2 +5242811 locktype2 = 7 +5242811 locktype3 = 2 +5242812 goalCount = 0 +5242812 goalTotal = 30 +5242813 otherCount = 35 +~~~ +5244744 UP 11 +5244744 1024 1024 +5245062 DOWN 11 +5245062 0 1024 +5245263 LOCKOUT 3 +~~~ +5245287 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +5245291 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5245390 UP 11 +5245390 1024 0 +5247273 DOWN 11 +5247273 0 0 +5247303 UP 11 +5247303 1024 0 +5248048 DOWN 11 +5248048 0 0 +5248092 UP 11 +5248092 1024 0 +5249639 DOWN 11 +5249639 0 0 +5270287 LOCKEND +~~~ +~~~ +~~~ +5270306 0 512 +5281092 UP 10 +5281092 waslock = 0 +5281092 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5281122 512 16777728 +~~~ +5281134 DOWN 10 +5281134 0 16777728 +~~~ +~~~ +5281155 0 16778752 +~~~ +~~~ +5281157 0 16778240 +5281158 homeCount = 77 +5281159 waitCount = 38 +5281159 ripCount = 32 +5281160 locktype1 = 2 +5281160 locktype2 = 7 +5281161 locktype3 = 3 +5281161 goalCount = 0 +5281162 goalTotal = 30 +5281162 otherCount = 35 +~~~ +5281227 UP 10 +5281228 waslock = 0 +5281227 512 16778240 +~~~ +5281272 512 1024 +5281345 DOWN 10 +5281344 0 1024 +~~~ +~~~ +~~~ +~~~ +5281368 homeCount = 77 +5281369 waitCount = 38 +5281369 ripCount = 32 +5281370 locktype1 = 2 +5281370 locktype2 = 7 +5281371 locktype3 = 3 +5281371 goalCount = 0 +5281372 goalTotal = 30 +5281372 otherCount = 35 +~~~ +5281376 UP 10 +5281376 waslock = 0 +5281376 512 1024 +~~~ +5281500 DOWN 10 +5281500 0 1024 +5281522 UP 10 +5281522 waslock = 0 +5281522 512 1024 +~~~ +~~~ +~~~ +~~~ +5281529 homeCount = 77 +5281530 waitCount = 38 +5281530 ripCount = 32 +5281531 locktype1 = 2 +5281531 locktype2 = 7 +5281532 locktype3 = 3 +5281532 goalCount = 0 +5281533 goalTotal = 30 +5281533 otherCount = 35 +~~~ +~~~ +5281646 DOWN 10 +5281646 0 1024 +~~~ +~~~ +~~~ +~~~ +5281669 homeCount = 77 +5281669 waitCount = 38 +5281670 ripCount = 32 +5281670 locktype1 = 2 +5281671 locktype2 = 7 +5281671 locktype3 = 3 +5281672 goalCount = 0 +5281672 goalTotal = 30 +5281673 otherCount = 35 +~~~ +5281674 UP 10 +5281675 waslock = 0 +5281674 512 1024 +~~~ +5281809 DOWN 10 +5281809 0 1024 +5281818 UP 10 +5281818 waslock = 0 +5281818 512 1024 +~~~ +~~~ +~~~ +~~~ +5281840 homeCount = 77 +5281841 waitCount = 38 +5281841 ripCount = 32 +5281842 locktype1 = 2 +5281842 locktype2 = 7 +5281843 locktype3 = 3 +5281843 goalCount = 0 +5281844 goalTotal = 30 +5281844 otherCount = 35 +~~~ +~~~ +5285763 DOWN 10 +5285763 0 1024 +5285779 UP 10 +5285780 waslock = 0 +5285779 512 1024 +~~~ +~~~ +~~~ +~~~ +5285799 homeCount = 77 +5285800 waitCount = 38 +5285800 ripCount = 32 +5285801 locktype1 = 2 +5285801 locktype2 = 7 +5285802 locktype3 = 3 +5285802 goalCount = 0 +5285803 goalTotal = 30 +5285803 otherCount = 35 +~~~ +~~~ +5285874 DOWN 10 +5285874 0 1024 +~~~ +~~~ +~~~ +~~~ +5285900 homeCount = 77 +5285900 waitCount = 38 +5285901 ripCount = 32 +5285901 locktype1 = 2 +5285902 locktype2 = 7 +5285902 locktype3 = 3 +5285902 goalCount = 0 +5285903 goalTotal = 30 +5285903 otherCount = 35 +~~~ +5285920 UP 10 +5285920 waslock = 0 +5285920 512 1024 +~~~ +5285968 DOWN 10 +5285968 0 1024 +~~~ +~~~ +~~~ +~~~ +5285989 homeCount = 77 +5285990 waitCount = 38 +5285990 ripCount = 32 +5285991 locktype1 = 2 +5285991 locktype2 = 7 +5285992 locktype3 = 3 +5285992 goalCount = 0 +5285993 goalTotal = 30 +5285993 otherCount = 35 +~~~ +5287968 UP 11 +5287968 1024 1024 +5290407 DOWN 11 +5290407 0 1024 +5290421 UP 11 +5290421 1024 1024 +5290437 DOWN 11 +5290437 0 1024 +5290524 UP 11 +5290524 1024 1024 +5290968 BEEP1 +5290968 BEEP2 +~~~ +~~~ +~~~ +5290989 1024 33555456 +~~~ +5291139 1024 1024 +5296670 DOWN 11 +5296670 0 1024 +~~~ +~~~ +5296696 0 0 +~~~ +~~~ +5296698 0 1 +~~~ +~~~ +5296700 0 3 +~~~ +~~~ +5296702 0 7 +~~~ +~~~ +5296703 0 15 +~~~ +~~~ +5296705 0 31 +~~~ +~~~ +5296707 0 63 +~~~ +~~~ +5296709 0 127 +~~~ +~~~ +5296711 0 255 +5296712 homeCount = 77 +5296712 waitCount = 38 +5296713 ripCount = 33 +5296713 locktype1 = 2 +5296714 locktype2 = 7 +5296735 locktype3 = 3 +5296735 goalCount = 0 +5296736 goalTotal = 30 +5296736 otherCount = 35 +~~~ +5296737 CURRENTGOAL IS [3] +~~~ +5296738 UP 11 +5296738 1024 255 +5296936 DOWN 11 +5296936 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5296973 homeCount = 77 +5296973 waitCount = 38 +5296974 ripCount = 33 +5296974 locktype1 = 2 +5296975 locktype2 = 7 +5296975 locktype3 = 3 +5296976 goalCount = 0 +5296976 goalTotal = 30 +5296976 otherCount = 35 +~~~ +5296978 CURRENTGOAL IS [3] +~~~ +5296981 UP 11 +5296981 1024 255 +5300102 DOWN 11 +5300102 0 255 +5300120 UP 11 +5300120 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5300155 homeCount = 77 +5300156 waitCount = 38 +5300156 ripCount = 33 +5300157 locktype1 = 2 +5300157 locktype2 = 7 +5300158 locktype3 = 3 +5300158 goalCount = 0 +5300159 goalTotal = 30 +5300159 otherCount = 35 +~~~ +5300160 CURRENTGOAL IS [3] +~~~ +5302657 DOWN 11 +5302657 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5302699 homeCount = 77 +5302699 waitCount = 38 +5302700 ripCount = 33 +5302700 locktype1 = 2 +5302701 locktype2 = 7 +5302701 locktype3 = 3 +5302702 goalCount = 0 +5302702 goalTotal = 30 +5302703 otherCount = 35 +~~~ +5302704 CURRENTGOAL IS [3] +~~~ +5302808 UP 11 +5302808 1024 255 +5302848 DOWN 11 +5302848 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5302888 homeCount = 77 +5302889 waitCount = 38 +5302889 ripCount = 33 +5302890 locktype1 = 2 +5302890 locktype2 = 7 +5302891 locktype3 = 3 +5302891 goalCount = 0 +5302892 goalTotal = 30 +5302892 otherCount = 35 +~~~ +5302893 CURRENTGOAL IS [3] +~~~ +5306189 UP 8 +5306189 128 255 +~~~ +~~~ +5306730 DOWN 8 +5306730 0 255 +~~~ +~~~ +5306752 0 254 +~~~ +~~~ +5306754 0 252 +~~~ +~~~ +5306756 0 248 +~~~ +~~~ +5306757 0 240 +~~~ +~~~ +5306759 0 224 +~~~ +~~~ +5306761 0 192 +~~~ +~~~ +5306763 0 128 +~~~ +~~~ +5306765 0 0 +~~~ +~~~ +5306767 0 512 +5306768 homeCount = 77 +5306768 waitCount = 38 +5306769 ripCount = 33 +5306769 locktype1 = 2 +5306770 locktype2 = 7 +5306790 locktype3 = 3 +5306791 goalCount = 0 +5306791 goalTotal = 30 +5306792 otherCount = 36 +~~~ +5306792 128 512 +5307532 DOWN 8 +5307532 0 512 +5312695 UP 10 +5312695 waslock = 0 +5312695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5312721 512 16777728 +~~~ +5312871 512 512 +5319453 DOWN 10 +5319453 0 512 +~~~ +~~~ +5319475 0 1536 +~~~ +~~~ +5319477 0 1024 +5319478 homeCount = 78 +5319478 waitCount = 38 +5319479 ripCount = 33 +5319479 locktype1 = 2 +5319480 locktype2 = 7 +5319480 locktype3 = 3 +5319481 goalCount = 0 +5319481 goalTotal = 30 +5319482 otherCount = 36 +~~~ +5319509 UP 10 +5319509 waslock = 0 +5319509 512 1024 +5319535 DOWN 10 +5319535 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +5319565 homeCount = 78 +5319565 waitCount = 38 +5319566 ripCount = 33 +5319566 locktype1 = 2 +5319567 locktype2 = 7 +5319567 locktype3 = 3 +5319568 goalCount = 0 +5319568 goalTotal = 30 +5319569 otherCount = 36 +~~~ +5323431 UP 11 +5323431 1024 1024 +5327431 BEEP1 +5327431 BEEP2 +~~~ +~~~ +~~~ +5327453 1024 33555456 +~~~ +5327603 1024 1024 +5332677 DOWN 11 +5332677 0 1024 +5332695 UP 11 +5332695 1024 1024 +~~~ +~~~ +5332702 1024 0 +~~~ +~~~ +5332704 1024 1 +~~~ +~~~ +5332706 1024 3 +~~~ +~~~ +5332708 1024 7 +~~~ +~~~ +5332709 1024 15 +~~~ +~~~ +5332711 1024 31 +~~~ +~~~ +5332713 1024 63 +~~~ +~~~ +5332715 1024 127 +~~~ +~~~ +5332717 1024 255 +5332718 homeCount = 78 +5332718 waitCount = 38 +5332719 ripCount = 34 +5332719 locktype1 = 2 +5332740 locktype2 = 7 +5332741 locktype3 = 3 +5332741 goalCount = 0 +5332741 goalTotal = 30 +5332742 otherCount = 36 +~~~ +5332743 CURRENTGOAL IS [3] +~~~ +5332814 DOWN 11 +5332814 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5332843 UP 11 +5332842 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +5332848 homeCount = 78 +5332848 waitCount = 38 +5332849 ripCount = 34 +5332849 locktype1 = 2 +5332850 locktype2 = 7 +5332850 locktype3 = 3 +5332851 goalCount = 0 +5332851 goalTotal = 30 +5332852 otherCount = 36 +~~~ +5332853 CURRENTGOAL IS [3] +~~~ +5332941 DOWN 11 +5332941 0 255 +5332961 UP 11 +5332961 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5332978 homeCount = 78 +5332978 waitCount = 38 +5332979 ripCount = 34 +5332979 locktype1 = 2 +5332980 locktype2 = 7 +5332980 locktype3 = 3 +5332981 goalCount = 0 +5332981 goalTotal = 30 +5332982 otherCount = 36 +~~~ +5332983 CURRENTGOAL IS [3] +~~~ +5334881 DOWN 11 +5334881 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5334919 homeCount = 78 +5334919 waitCount = 38 +5334920 ripCount = 34 +5334920 locktype1 = 2 +5334921 locktype2 = 7 +5334921 locktype3 = 3 +5334922 goalCount = 0 +5334922 goalTotal = 30 +5334923 otherCount = 36 +~~~ +5334924 CURRENTGOAL IS [3] +~~~ +5340609 UP 5 +5340608 16 255 +~~~ +~~~ +5340874 DOWN 5 +5340874 0 255 +~~~ +~~~ +5340892 0 254 +~~~ +~~~ +5340894 0 252 +~~~ +~~~ +5340895 0 248 +~~~ +~~~ +5340897 0 240 +~~~ +~~~ +5340899 0 224 +~~~ +~~~ +5340901 0 192 +~~~ +~~~ +5340903 0 128 +~~~ +~~~ +5340904 0 0 +~~~ +~~~ +5340906 0 512 +5340907 homeCount = 78 +5340908 waitCount = 38 +5340908 ripCount = 34 +5340909 locktype1 = 2 +5340909 locktype2 = 7 +5340930 locktype3 = 3 +5340931 goalCount = 0 +5340931 goalTotal = 30 +5340932 otherCount = 37 +~~~ +5345212 UP 10 +5345212 waslock = 0 +5345212 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5345238 512 16777728 +~~~ +5345303 DOWN 10 +5345303 0 16777728 +~~~ +~~~ +5345330 0 16779776 +~~~ +~~~ +5345332 0 16779264 +5345333 homeCount = 79 +5345333 waitCount = 38 +5345334 ripCount = 34 +5345334 locktype1 = 2 +5345335 locktype2 = 7 +5345335 locktype3 = 3 +5345335 goalCount = 0 +5345336 goalTotal = 30 +5345336 otherCount = 37 +~~~ +5345388 0 2048 +5345395 UP 10 +5345395 waslock = 0 +5345395 512 2048 +~~~ +5345443 DOWN 10 +5345443 0 2048 +~~~ +~~~ +~~~ +~~~ +5345465 homeCount = 79 +5345466 waitCount = 38 +5345467 ripCount = 34 +5345467 locktype1 = 2 +5345467 locktype2 = 7 +5345468 locktype3 = 3 +5345468 goalCount = 0 +5345469 goalTotal = 30 +5345469 otherCount = 37 +~~~ +5345470 UP 10 +5345470 waslock = 0 +5345470 512 2048 +~~~ +5345649 DOWN 10 +5345649 0 2048 +~~~ +~~~ +~~~ +~~~ +5345675 homeCount = 79 +5345675 waitCount = 38 +5345676 ripCount = 34 +5345676 locktype1 = 2 +5345677 locktype2 = 7 +5345677 locktype3 = 3 +5345678 goalCount = 0 +5345678 goalTotal = 30 +5345679 otherCount = 37 +~~~ +5345679 UP 10 +5345679 waslock = 0 +5345679 512 2048 +~~~ +5345795 DOWN 10 +5345795 0 2048 +~~~ +~~~ +~~~ +~~~ +5345817 homeCount = 79 +5345818 waitCount = 38 +5345818 ripCount = 34 +5345819 locktype1 = 2 +5345819 locktype2 = 7 +5345819 locktype3 = 3 +5345820 goalCount = 0 +5345820 goalTotal = 30 +5345821 otherCount = 37 +~~~ +5345824 UP 10 +5345825 waslock = 0 +5345824 512 2048 +5345847 DOWN 10 +5345847 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5345864 homeCount = 79 +5345864 waitCount = 38 +5345865 ripCount = 34 +5345865 locktype1 = 2 +5345866 locktype2 = 7 +5345866 locktype3 = 3 +5345867 goalCount = 0 +5345867 goalTotal = 30 +5345868 otherCount = 37 +~~~ +5345956 UP 10 +5345956 waslock = 0 +5345956 512 2048 +5345982 DOWN 10 +5345982 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5346004 UP 10 +5346004 waslock = 0 +5346004 512 2048 +5346006 homeCount = 79 +5346006 waitCount = 38 +5346007 ripCount = 34 +5346007 locktype1 = 2 +5346008 locktype2 = 7 +5346008 locktype3 = 3 +5346009 goalCount = 0 +5346009 goalTotal = 30 +5346010 otherCount = 37 +~~~ +~~~ +5351222 DOWN 10 +5351222 0 2048 +~~~ +~~~ +~~~ +~~~ +5351245 homeCount = 79 +5351246 waitCount = 38 +5351246 ripCount = 34 +5351247 locktype1 = 2 +5351247 locktype2 = 7 +5351247 locktype3 = 3 +5351248 goalCount = 0 +5351248 goalTotal = 30 +5351249 otherCount = 37 +~~~ +5351281 UP 10 +5351281 waslock = 0 +5351281 512 2048 +~~~ +5351364 DOWN 10 +5351364 0 2048 +~~~ +~~~ +~~~ +~~~ +5351388 homeCount = 79 +5351389 waitCount = 38 +5351389 ripCount = 34 +5351390 locktype1 = 2 +5351390 locktype2 = 7 +5351391 locktype3 = 3 +5351391 goalCount = 0 +5351392 goalTotal = 30 +5351392 otherCount = 37 +~~~ +5353583 UP 12 +5353583 2048 2048 +5355776 DOWN 12 +5355776 0 2048 +5355802 UP 12 +5355802 2048 2048 +5355812 DOWN 12 +5355812 0 2048 +5355851 UP 12 +5355851 2048 2048 +5356583 CLICK1 +5356583 CLICK2 +5356595 DOWN 12 +5356595 0 2048 +~~~ +~~~ +~~~ +5356616 0 67110912 +~~~ +5356659 UP 12 +5356659 2048 67110912 +5356766 2048 2048 +~~~ +~~~ +5356769 2048 0 +~~~ +~~~ +5356771 2048 1 +~~~ +~~~ +5356773 2048 3 +~~~ +~~~ +5356774 2048 7 +~~~ +~~~ +5356776 2048 15 +~~~ +~~~ +5356778 2048 31 +~~~ +~~~ +5356780 2048 63 +~~~ +~~~ +5356782 2048 127 +~~~ +~~~ +5356784 2048 255 +5356785 homeCount = 79 +5356785 waitCount = 39 +5356786 ripCount = 34 +5356786 locktype1 = 2 +5356807 locktype2 = 7 +5356808 locktype3 = 3 +5356808 goalCount = 0 +5356809 goalTotal = 30 +5356809 otherCount = 37 +~~~ +5356810 CURRENTGOAL IS [3] +~~~ +5356916 DOWN 12 +5356916 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5356942 UP 12 +5356942 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5356950 homeCount = 79 +5356950 waitCount = 39 +5356951 ripCount = 34 +5356951 locktype1 = 2 +5356952 locktype2 = 7 +5356952 locktype3 = 3 +5356953 goalCount = 0 +5356953 goalTotal = 30 +5356954 otherCount = 37 +~~~ +5356955 CURRENTGOAL IS [3] +~~~ +5362292 DOWN 12 +5362292 0 255 +5362302 UP 12 +5362302 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5362333 homeCount = 79 +5362333 waitCount = 39 +5362334 ripCount = 34 +5362334 locktype1 = 2 +5362335 locktype2 = 7 +5362335 locktype3 = 3 +5362336 goalCount = 0 +5362336 goalTotal = 30 +5362337 otherCount = 37 +~~~ +5362338 CURRENTGOAL IS [3] +~~~ +5365136 DOWN 12 +5365136 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5365170 homeCount = 79 +5365170 waitCount = 39 +5365171 ripCount = 34 +5365171 locktype1 = 2 +5365172 locktype2 = 7 +5365172 locktype3 = 3 +5365173 goalCount = 0 +5365173 goalTotal = 30 +5365174 otherCount = 37 +~~~ +5365175 CURRENTGOAL IS [3] +~~~ +5369259 UP 6 +5369259 32 255 +~~~ +~~~ +5369588 DOWN 6 +5369587 0 255 +~~~ +~~~ +5369606 0 254 +~~~ +~~~ +5369607 0 252 +~~~ +~~~ +5369609 32 248 +~~~ +~~~ +5369611 32 240 +~~~ +~~~ +5369613 32 224 +~~~ +~~~ +5369615 32 192 +~~~ +~~~ +5369616 32 128 +~~~ +~~~ +5369618 32 0 +~~~ +~~~ +5369620 32 512 +5369621 homeCount = 79 +5369622 waitCount = 39 +5369622 ripCount = 34 +5369623 locktype1 = 2 +5369623 locktype2 = 7 +5369644 locktype3 = 3 +5369645 goalCount = 0 +5369645 goalTotal = 30 +5369646 otherCount = 38 +~~~ +5370768 DOWN 6 +5370768 0 512 +5374899 UP 10 +5374899 waslock = 0 +5374899 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5374926 512 16777728 +~~~ +5375076 512 512 +5375078 DOWN 10 +5375077 0 512 +~~~ +~~~ +5375101 0 2560 +~~~ +~~~ +5375103 0 2048 +5375104 homeCount = 80 +5375105 waitCount = 39 +5375105 ripCount = 34 +5375106 locktype1 = 2 +5375106 locktype2 = 7 +5375107 locktype3 = 3 +5375107 goalCount = 0 +5375108 goalTotal = 30 +5375108 otherCount = 38 +~~~ +5375122 UP 10 +5375122 waslock = 0 +5375122 512 2048 +~~~ +5379775 DOWN 10 +5379775 0 2048 +5379790 UP 10 +5379791 waslock = 0 +5379790 512 2048 +~~~ +~~~ +~~~ +~~~ +5379818 homeCount = 80 +5379818 waitCount = 39 +5379819 ripCount = 34 +5379819 locktype1 = 2 +5379820 locktype2 = 7 +5379820 locktype3 = 3 +5379821 goalCount = 0 +5379821 goalTotal = 30 +5379822 otherCount = 38 +~~~ +~~~ +5379874 DOWN 10 +5379874 0 2048 +~~~ +~~~ +~~~ +~~~ +5379897 homeCount = 80 +5379898 waitCount = 39 +5379898 ripCount = 34 +5379899 locktype1 = 2 +5379899 locktype2 = 7 +5379899 locktype3 = 3 +5379900 goalCount = 0 +5379900 goalTotal = 30 +5379901 otherCount = 38 +~~~ +5382027 UP 12 +5382026 2048 2048 +5383448 DOWN 12 +5383447 0 2048 +5383464 UP 12 +5383464 2048 2048 +5384242 DOWN 12 +5384242 0 2048 +5384443 LOCKOUT 3 +~~~ +5384462 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5384468 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5384556 UP 12 +5384556 2048 0 +5384693 DOWN 12 +5384693 0 0 +5384742 UP 12 +5384742 2048 0 +5384902 DOWN 12 +5384902 0 0 +5384936 UP 12 +5384936 2048 0 +5385183 DOWN 12 +5385183 0 0 +5409462 LOCKEND +~~~ +~~~ +~~~ +5409482 0 512 +5421059 UP 10 +5421059 waslock = 0 +5421059 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5421086 512 16777728 +~~~ +5421236 512 512 +5421325 DOWN 10 +5421325 0 512 +5421337 UP 10 +5421337 waslock = 0 +5421337 512 512 +~~~ +~~~ +5421350 512 1536 +~~~ +~~~ +5421352 512 1024 +5421353 homeCount = 81 +5421354 waitCount = 39 +5421354 ripCount = 34 +5421355 locktype1 = 2 +5421355 locktype2 = 7 +5421355 locktype3 = 4 +5421356 goalCount = 0 +5421356 goalTotal = 30 +5421357 otherCount = 38 +~~~ +~~~ +5421379 DOWN 10 +5421379 0 1024 +~~~ +~~~ +~~~ +~~~ +5421398 homeCount = 81 +5421398 waitCount = 39 +5421399 ripCount = 34 +5421399 locktype1 = 2 +5421400 locktype2 = 7 +5421400 locktype3 = 4 +5421401 goalCount = 0 +5421401 goalTotal = 30 +5421402 otherCount = 38 +~~~ +5421457 UP 10 +5421457 waslock = 0 +5421456 512 1024 +~~~ +5424643 DOWN 10 +5424643 0 1024 +~~~ +~~~ +~~~ +~~~ +5424663 homeCount = 81 +5424664 waitCount = 39 +5424664 ripCount = 34 +5424665 locktype1 = 2 +5424665 locktype2 = 7 +5424666 locktype3 = 4 +5424666 goalCount = 0 +5424667 goalTotal = 30 +5424667 otherCount = 38 +~~~ +5424697 UP 10 +5424698 waslock = 0 +5424697 512 1024 +~~~ +5426707 DOWN 10 +5426707 0 1024 +~~~ +~~~ +~~~ +~~~ +5426734 homeCount = 81 +5426734 waitCount = 39 +5426735 ripCount = 34 +5426735 locktype1 = 2 +5426736 locktype2 = 7 +5426736 locktype3 = 4 +5426737 goalCount = 0 +5426737 goalTotal = 30 +5426738 otherCount = 38 +~~~ +5426750 UP 10 +5426750 waslock = 0 +5426750 512 1024 +~~~ +5426812 DOWN 10 +5426812 0 1024 +~~~ +~~~ +~~~ +~~~ +5426833 homeCount = 81 +5426833 waitCount = 39 +5426834 ripCount = 34 +5426834 locktype1 = 2 +5426835 locktype2 = 7 +5426835 locktype3 = 4 +5426836 goalCount = 0 +5426836 goalTotal = 30 +5426837 otherCount = 38 +~~~ +5429056 UP 11 +5429056 1024 1024 +5429109 DOWN 11 +5429109 0 1024 +5429215 UP 11 +5429215 1024 1024 +5433057 BEEP1 +5433057 BEEP2 +~~~ +~~~ +~~~ +5433081 1024 33555456 +~~~ +5433231 1024 1024 +5433241 DOWN 11 +5433241 0 1024 +5433252 UP 11 +5433252 1024 1024 +~~~ +~~~ +5433732 1024 0 +~~~ +~~~ +5433734 1024 1 +~~~ +~~~ +5433736 1024 3 +~~~ +~~~ +5433737 1024 7 +~~~ +~~~ +5433739 1024 15 +~~~ +~~~ +5433741 1024 31 +~~~ +~~~ +5433743 1024 63 +~~~ +~~~ +5433745 1024 127 +~~~ +~~~ +5433746 1024 255 +5433747 homeCount = 81 +5433748 waitCount = 39 +5433749 ripCount = 35 +5433749 locktype1 = 2 +5433770 locktype2 = 7 +5433770 locktype3 = 4 +5433771 goalCount = 0 +5433771 goalTotal = 30 +5433772 otherCount = 38 +~~~ +5433773 CURRENTGOAL IS [3] +~~~ +5439996 DOWN 11 +5439996 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5440032 homeCount = 81 +5440032 waitCount = 39 +5440033 ripCount = 35 +5440033 locktype1 = 2 +5440034 locktype2 = 7 +5440034 locktype3 = 4 +5440035 goalCount = 0 +5440035 goalTotal = 30 +5440035 otherCount = 38 +~~~ +5440037 CURRENTGOAL IS [3] +~~~ +5448817 UP 6 +5448817 32 255 +~~~ +~~~ +5449550 DOWN 6 +5449550 0 255 +~~~ +~~~ +5449577 0 254 +~~~ +~~~ +5449579 0 252 +~~~ +~~~ +5449580 0 248 +~~~ +~~~ +5449582 0 240 +~~~ +~~~ +5449584 0 224 +~~~ +~~~ +5449586 0 192 +~~~ +~~~ +5449588 0 128 +~~~ +~~~ +5449589 0 0 +~~~ +~~~ +5449591 0 512 +5449592 homeCount = 81 +5449593 waitCount = 39 +5449593 ripCount = 35 +5449594 locktype1 = 2 +5449594 locktype2 = 7 +5449615 locktype3 = 4 +5449616 goalCount = 0 +5449616 goalTotal = 30 +5449617 otherCount = 39 +~~~ +5453833 UP 10 +5453833 waslock = 0 +5453833 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5453864 512 16777728 +~~~ +5454014 512 512 +5454054 DOWN 10 +5454054 0 512 +5454062 UP 10 +5454062 waslock = 0 +5454062 512 512 +~~~ +~~~ +5454080 512 2560 +~~~ +~~~ +5454082 512 2048 +5454083 homeCount = 82 +5454084 waitCount = 39 +5454084 ripCount = 35 +5454085 locktype1 = 2 +5454085 locktype2 = 7 +5454086 locktype3 = 4 +5454086 goalCount = 0 +5454087 goalTotal = 30 +5454087 otherCount = 39 +~~~ +~~~ +5454109 DOWN 10 +5454109 0 2048 +~~~ +~~~ +~~~ +~~~ +5454135 homeCount = 82 +5454135 waitCount = 39 +5454136 ripCount = 35 +5454136 locktype1 = 2 +5454137 locktype2 = 7 +5454137 locktype3 = 4 +5454138 goalCount = 0 +5454138 goalTotal = 30 +5454139 otherCount = 39 +~~~ +5454155 UP 10 +5454155 waslock = 0 +5454155 512 2048 +~~~ +5459304 DOWN 10 +5459304 0 2048 +~~~ +~~~ +~~~ +~~~ +5459331 homeCount = 82 +5459331 waitCount = 39 +5459332 ripCount = 35 +5459332 locktype1 = 2 +5459333 locktype2 = 7 +5459333 locktype3 = 4 +5459334 goalCount = 0 +5459334 goalTotal = 30 +5459335 otherCount = 39 +~~~ +5461800 UP 12 +5461800 2048 2048 +5464976 DOWN 12 +5464975 0 2048 +5464998 UP 12 +5464998 2048 2048 +5465058 DOWN 12 +5465058 0 2048 +5465105 UP 12 +5465105 2048 2048 +5465228 DOWN 12 +5465228 0 2048 +5465245 UP 12 +5465245 2048 2048 +5467049 DOWN 12 +5467049 0 2048 +5467092 UP 12 +5467092 2048 2048 +5467349 DOWN 12 +5467349 0 2048 +5467359 UP 12 +5467359 2048 2048 +5468800 CLICK1 +5468800 CLICK2 +~~~ +~~~ +~~~ +5468821 2048 67110912 +~~~ +5468971 2048 2048 +5477415 DOWN 12 +5477415 0 2048 +~~~ +~~~ +5477438 0 0 +~~~ +~~~ +5477440 0 1 +~~~ +~~~ +5477442 0 3 +~~~ +~~~ +5477444 0 7 +~~~ +~~~ +5477446 0 15 +~~~ +~~~ +5477447 0 31 +~~~ +~~~ +5477449 0 63 +~~~ +~~~ +5477451 0 127 +~~~ +~~~ +5477453 0 255 +5477454 homeCount = 82 +5477454 waitCount = 40 +5477455 ripCount = 35 +5477455 locktype1 = 2 +5477456 locktype2 = 7 +5477456 locktype3 = 4 +5477477 goalCount = 0 +5477478 goalTotal = 30 +5477478 otherCount = 39 +~~~ +5477479 CURRENTGOAL IS [3] +~~~ +5481136 UP 3 +5481136 4 255 +~~~ +~~~ +5481155 outer reward +~~~ +5481155 4 262399 +~~~ +~~~ +5481605 4 255 +5487589 DOWN 3 +5487589 0 255 +5487610 4 255 +~~~ +~~~ +5487626 4 254 +~~~ +~~~ +5487628 4 252 +~~~ +~~~ +5487630 4 248 +~~~ +~~~ +5487631 4 240 +~~~ +~~~ +5487633 4 224 +~~~ +~~~ +5487635 4 192 +~~~ +~~~ +5487637 4 128 +~~~ +~~~ +5487639 4 0 +~~~ +~~~ +5487641 4 512 +5487642 homeCount = 82 +5487642 waitCount = 40 +5487643 ripCount = 35 +5487643 locktype1 = 2 +5487644 locktype2 = 7 +5487665 locktype3 = 4 +5487665 goalCount = 1 +5487666 goalTotal = 31 +5487666 otherCount = 39 +~~~ +5487708 DOWN 3 +5487708 0 512 +5487767 4 512 +5487817 DOWN 3 +5487817 0 512 +5492910 UP 10 +5492910 waslock = 0 +5492910 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5492939 512 16777728 +~~~ +5493089 512 512 +5493153 DOWN 10 +5493153 0 512 +~~~ +~~~ +5493174 0 1536 +~~~ +~~~ +5493176 0 1024 +5493177 homeCount = 83 +5493178 waitCount = 40 +5493178 ripCount = 35 +5493179 locktype1 = 2 +5493179 locktype2 = 7 +5493180 locktype3 = 4 +5493180 goalCount = 1 +5493181 goalTotal = 31 +5493181 otherCount = 39 +~~~ +5493182 UP 10 +5493203 waslock = 0 +5493182 512 1024 +~~~ +5496843 DOWN 10 +5496843 0 1024 +~~~ +~~~ +~~~ +~~~ +5496867 homeCount = 83 +5496867 waitCount = 40 +5496868 ripCount = 35 +5496868 locktype1 = 2 +5496869 locktype2 = 7 +5496869 locktype3 = 4 +5496870 goalCount = 1 +5496870 goalTotal = 31 +5496870 otherCount = 39 +~~~ +5496907 UP 10 +5496907 waslock = 0 +5496907 512 1024 +~~~ +5496966 DOWN 10 +5496966 0 1024 +~~~ +~~~ +~~~ +~~~ +5496990 homeCount = 83 +5496990 waitCount = 40 +5496991 ripCount = 35 +5496991 locktype1 = 2 +5496992 locktype2 = 7 +5496992 locktype3 = 4 +5496993 goalCount = 1 +5496993 goalTotal = 31 +5496994 otherCount = 39 +~~~ +5499060 UP 11 +5499060 1024 1024 +5502861 DOWN 11 +5502861 0 1024 +5502900 UP 11 +5502900 1024 1024 +5503033 DOWN 11 +5503033 0 1024 +5503058 UP 11 +5503058 1024 1024 +5503803 DOWN 11 +5503803 0 1024 +5503839 UP 11 +5503839 1024 1024 +5504854 DOWN 11 +5504854 0 1024 +5504881 UP 11 +5504881 1024 1024 +5506061 BEEP1 +5506061 BEEP2 +~~~ +~~~ +~~~ +5506088 1024 33555456 +~~~ +5506238 1024 1024 +5512469 DOWN 11 +5512469 0 1024 +~~~ +~~~ +5512494 0 0 +~~~ +~~~ +5512496 0 1 +~~~ +~~~ +5512497 0 3 +~~~ +~~~ +5512499 0 7 +~~~ +~~~ +5512501 0 15 +~~~ +~~~ +5512503 0 31 +~~~ +~~~ +5512505 0 63 +~~~ +~~~ +5512507 0 127 +~~~ +~~~ +5512508 0 255 +5512509 homeCount = 83 +5512510 waitCount = 40 +5512510 ripCount = 36 +5512511 locktype1 = 2 +5512511 locktype2 = 7 +5512532 locktype3 = 4 +5512533 goalCount = 1 +5512533 goalTotal = 31 +5512534 otherCount = 39 +~~~ +5512535 CURRENTGOAL IS [3] +~~~ +5512585 UP 11 +5512585 1024 255 +5512624 DOWN 11 +5512624 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5512659 homeCount = 83 +5512660 waitCount = 40 +5512660 ripCount = 36 +5512661 locktype1 = 2 +5512661 locktype2 = 7 +5512662 locktype3 = 4 +5512662 goalCount = 1 +5512663 goalTotal = 31 +5512663 otherCount = 39 +~~~ +5512664 CURRENTGOAL IS [3] +~~~ +5512721 UP 11 +5512721 1024 255 +5512757 DOWN 11 +5512757 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5512790 homeCount = 83 +5512791 waitCount = 40 +5512791 ripCount = 36 +5512792 locktype1 = 2 +5512792 locktype2 = 7 +5512793 locktype3 = 4 +5512793 goalCount = 1 +5512794 goalTotal = 31 +5512794 otherCount = 39 +~~~ +5512795 CURRENTGOAL IS [3] +~~~ +5512798 UP 11 +5512798 1024 255 +5515026 DOWN 11 +5515026 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5515062 homeCount = 83 +5515062 waitCount = 40 +5515063 ripCount = 36 +5515063 locktype1 = 2 +5515064 locktype2 = 7 +5515064 locktype3 = 4 +5515065 goalCount = 1 +5515065 goalTotal = 31 +5515066 otherCount = 39 +~~~ +5515067 CURRENTGOAL IS [3] +~~~ +5515067 UP 11 +5515067 1024 255 +5515120 DOWN 11 +5515120 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5515163 homeCount = 83 +5515163 waitCount = 40 +5515164 ripCount = 36 +5515164 locktype1 = 2 +5515165 locktype2 = 7 +5515165 locktype3 = 4 +5515166 goalCount = 1 +5515166 goalTotal = 31 +5515167 otherCount = 39 +~~~ +5515168 CURRENTGOAL IS [3] +~~~ +5522004 UP 7 +5522004 64 255 +~~~ +~~~ +5523259 DOWN 7 +5523259 0 255 +~~~ +~~~ +5523277 0 254 +~~~ +~~~ +5523278 0 252 +~~~ +~~~ +5523280 0 248 +~~~ +~~~ +5523282 0 240 +~~~ +~~~ +5523284 0 224 +~~~ +~~~ +5523286 0 192 +~~~ +~~~ +5523288 0 128 +~~~ +~~~ +5523289 0 0 +~~~ +~~~ +5523291 0 512 +5523292 homeCount = 83 +5523293 waitCount = 40 +5523293 ripCount = 36 +5523294 locktype1 = 2 +5523294 locktype2 = 7 +5523315 locktype3 = 4 +5523316 goalCount = 1 +5523316 goalTotal = 31 +5523317 otherCount = 40 +~~~ +5529655 UP 10 +5529655 waslock = 0 +5529655 512 512 +~~~ +5529677 DOWN 10 +5529677 0 512 +~~~ +~~~ +~~~ +~~~ +5529683 0 16777728 +~~~ +5529696 UP 10 +5529697 waslock = 0 +5529696 512 16777728 +~~~ +~~~ +5529707 512 16779776 +~~~ +~~~ +5529709 512 16779264 +5529710 homeCount = 84 +5529710 waitCount = 40 +5529711 ripCount = 36 +5529711 locktype1 = 2 +5529712 locktype2 = 7 +5529712 locktype3 = 4 +5529713 goalCount = 1 +5529713 goalTotal = 31 +5529713 otherCount = 40 +~~~ +~~~ +5529833 512 2048 +5535219 DOWN 10 +5535219 0 2048 +~~~ +~~~ +~~~ +~~~ +5535242 homeCount = 84 +5535243 waitCount = 40 +5535243 ripCount = 36 +5535244 locktype1 = 2 +5535244 locktype2 = 7 +5535244 locktype3 = 4 +5535245 goalCount = 1 +5535245 goalTotal = 31 +5535246 otherCount = 40 +~~~ +5538565 UP 12 +5538565 2048 2048 +5544549 DOWN 12 +5544549 0 2048 +5544570 UP 12 +5544570 2048 2048 +5545566 CLICK1 +5545566 CLICK2 +~~~ +~~~ +~~~ +5545592 2048 67110912 +~~~ +5545742 2048 2048 +5550885 DOWN 12 +5550885 0 2048 +~~~ +~~~ +5550911 0 0 +~~~ +~~~ +5550912 0 1 +~~~ +~~~ +5550914 0 3 +~~~ +~~~ +5550916 0 7 +~~~ +~~~ +5550918 0 15 +~~~ +~~~ +5550920 0 31 +~~~ +~~~ +5550922 0 63 +~~~ +~~~ +5550923 0 127 +~~~ +~~~ +5550925 0 255 +5550926 homeCount = 84 +5550927 waitCount = 41 +5550927 ripCount = 36 +5550928 locktype1 = 2 +5550928 locktype2 = 7 +5550929 locktype3 = 4 +5550950 goalCount = 1 +5550950 goalTotal = 31 +5550951 otherCount = 40 +~~~ +5550952 CURRENTGOAL IS [3] +~~~ +5550952 UP 12 +5550952 2048 255 +5551037 DOWN 12 +5551037 0 255 +~~~ +~~~ +~~~ +5551057 UP 12 +5551057 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5551071 homeCount = 84 +5551072 waitCount = 41 +5551072 ripCount = 36 +5551073 locktype1 = 2 +5551073 locktype2 = 7 +5551074 locktype3 = 4 +5551074 goalCount = 1 +5551075 goalTotal = 31 +5551075 otherCount = 40 +~~~ +5551076 CURRENTGOAL IS [3] +~~~ +5551164 DOWN 12 +5551164 0 255 +5551176 UP 12 +5551176 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5551213 homeCount = 84 +5551214 waitCount = 41 +5551214 ripCount = 36 +5551215 locktype1 = 2 +5551215 locktype2 = 7 +5551216 locktype3 = 4 +5551216 goalCount = 1 +5551217 goalTotal = 31 +5551217 otherCount = 40 +~~~ +5551218 CURRENTGOAL IS [3] +~~~ +5554861 DOWN 12 +5554861 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5554903 homeCount = 84 +5554904 waitCount = 41 +5554904 ripCount = 36 +5554905 locktype1 = 2 +5554905 locktype2 = 7 +5554906 locktype3 = 4 +5554906 goalCount = 1 +5554907 goalTotal = 31 +5554907 otherCount = 40 +~~~ +5554908 CURRENTGOAL IS [3] +~~~ +5559663 UP 2 +5559663 2 255 +~~~ +~~~ +5561437 DOWN 2 +5561437 0 255 +~~~ +~~~ +5561457 0 254 +~~~ +~~~ +5561459 0 252 +~~~ +~~~ +5561460 0 248 +~~~ +~~~ +5561462 0 240 +~~~ +~~~ +5561464 0 224 +~~~ +~~~ +5561466 0 192 +~~~ +~~~ +5561468 0 128 +~~~ +~~~ +5561469 0 0 +~~~ +~~~ +5561471 0 512 +5561472 homeCount = 84 +5561473 waitCount = 41 +5561473 ripCount = 36 +5561474 locktype1 = 2 +5561474 locktype2 = 7 +5561495 locktype3 = 4 +5561496 goalCount = 1 +5561496 goalTotal = 31 +5561497 otherCount = 41 +~~~ +5564965 UP 10 +5564965 waslock = 0 +5564965 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5564994 512 16777728 +~~~ +5565007 DOWN 10 +5565007 0 16777728 +~~~ +~~~ +5565037 0 16778752 +~~~ +~~~ +5565039 0 16778240 +5565040 homeCount = 85 +5565040 waitCount = 41 +5565041 ripCount = 36 +5565041 locktype1 = 2 +5565042 locktype2 = 7 +5565042 locktype3 = 4 +5565043 goalCount = 1 +5565043 goalTotal = 31 +5565044 otherCount = 41 +~~~ +5565065 UP 10 +5565065 waslock = 0 +5565065 512 16778240 +~~~ +5565144 512 1024 +5565160 DOWN 10 +5565160 0 1024 +5565173 UP 10 +5565173 waslock = 0 +5565173 512 1024 +~~~ +~~~ +~~~ +~~~ +5565194 homeCount = 85 +5565194 waitCount = 41 +5565195 ripCount = 36 +5565195 locktype1 = 2 +5565196 locktype2 = 7 +5565196 locktype3 = 4 +5565196 goalCount = 1 +5565197 goalTotal = 31 +5565197 otherCount = 41 +~~~ +~~~ +5569406 DOWN 10 +5569406 0 1024 +~~~ +~~~ +~~~ +~~~ +5569433 homeCount = 85 +5569433 waitCount = 41 +5569434 ripCount = 36 +5569434 locktype1 = 2 +5569435 locktype2 = 7 +5569435 locktype3 = 4 +5569435 goalCount = 1 +5569436 goalTotal = 31 +5569436 otherCount = 41 +~~~ +5569465 UP 10 +5569466 waslock = 0 +5569465 512 1024 +5569491 DOWN 10 +5569491 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +5569518 homeCount = 85 +5569518 waitCount = 41 +5569519 ripCount = 36 +5569519 locktype1 = 2 +5569520 locktype2 = 7 +5569520 locktype3 = 4 +5569521 goalCount = 1 +5569521 goalTotal = 31 +5569522 otherCount = 41 +~~~ +5571097 UP 11 +5571097 1024 1024 +5574495 DOWN 11 +5574495 0 1024 +5574542 UP 11 +5574542 1024 1024 +5574781 DOWN 11 +5574781 0 1024 +5574802 UP 11 +5574802 1024 1024 +5576598 BEEP1 +5576598 BEEP2 +~~~ +~~~ +~~~ +5576622 1024 33555456 +~~~ +5576771 1024 1024 +5582951 DOWN 11 +5582951 0 1024 +~~~ +~~~ +5582969 0 0 +~~~ +~~~ +5582971 0 1 +~~~ +~~~ +5582973 0 3 +~~~ +~~~ +5582974 0 7 +~~~ +~~~ +5582976 0 15 +~~~ +~~~ +5582978 0 31 +~~~ +~~~ +5582980 0 63 +~~~ +~~~ +5582982 0 127 +~~~ +~~~ +5582984 0 255 +5582985 homeCount = 85 +5582985 waitCount = 41 +5582986 ripCount = 37 +5582986 locktype1 = 2 +5582987 locktype2 = 7 +5582987 locktype3 = 4 +5583008 goalCount = 1 +5583008 goalTotal = 31 +5583009 otherCount = 41 +~~~ +5583010 CURRENTGOAL IS [3] +~~~ +5583073 UP 11 +5583073 1024 255 +5583104 DOWN 11 +5583104 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5583138 homeCount = 85 +5583138 waitCount = 41 +5583139 ripCount = 37 +5583139 locktype1 = 2 +5583140 locktype2 = 7 +5583140 locktype3 = 4 +5583141 goalCount = 1 +5583141 goalTotal = 31 +5583142 otherCount = 41 +~~~ +5583143 CURRENTGOAL IS [3] +~~~ +5583208 UP 11 +5583208 1024 255 +5583225 DOWN 11 +5583225 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5583261 homeCount = 85 +5583262 waitCount = 41 +5583262 ripCount = 37 +5583263 locktype1 = 2 +5583263 locktype2 = 7 +5583264 locktype3 = 4 +5583264 goalCount = 1 +5583265 goalTotal = 31 +5583265 otherCount = 41 +~~~ +5583266 CURRENTGOAL IS [3] +~~~ +5583336 UP 11 +5583336 1024 255 +5585553 DOWN 11 +5585553 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5585591 homeCount = 85 +5585592 waitCount = 41 +5585592 ripCount = 37 +5585593 locktype1 = 2 +5585593 locktype2 = 7 +5585594 locktype3 = 4 +5585594 goalCount = 1 +5585595 goalTotal = 31 +5585595 otherCount = 41 +~~~ +5585596 CURRENTGOAL IS [3] +~~~ +5585606 UP 11 +5585606 1024 255 +5585621 DOWN 11 +5585621 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5585656 homeCount = 85 +5585656 waitCount = 41 +5585657 ripCount = 37 +5585657 locktype1 = 2 +5585658 locktype2 = 7 +5585658 locktype3 = 4 +5585659 goalCount = 1 +5585659 goalTotal = 31 +5585660 otherCount = 41 +~~~ +5585661 CURRENTGOAL IS [3] +~~~ +5589893 UP 4 +5589893 8 255 +~~~ +~~~ +5590508 DOWN 4 +5590508 0 255 +~~~ +~~~ +5590526 0 254 +~~~ +~~~ +5590528 0 252 +~~~ +~~~ +5590530 0 248 +~~~ +~~~ +5590532 0 240 +~~~ +~~~ +5590533 0 224 +~~~ +~~~ +5590535 0 192 +~~~ +~~~ +5590537 0 128 +~~~ +~~~ +5590539 0 0 +~~~ +~~~ +5590541 0 512 +5590542 homeCount = 85 +5590542 waitCount = 41 +5590543 ripCount = 37 +5590543 locktype1 = 2 +5590544 locktype2 = 7 +5590565 locktype3 = 4 +5590565 goalCount = 1 +5590566 goalTotal = 31 +5590566 otherCount = 42 +~~~ +5590567 8 512 +5590669 DOWN 4 +5590669 0 512 +5590754 8 512 +5590937 DOWN 4 +5590937 0 512 +5595749 UP 10 +5595749 waslock = 0 +5595749 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5595775 512 16777728 +~~~ +5595925 512 512 +5595965 DOWN 10 +5595965 0 512 +~~~ +~~~ +5595990 0 2560 +~~~ +5595992 UP 10 +5595992 waslock = 0 +5595992 512 2560 +~~~ +5595994 homeCount = 86 +5595994 waitCount = 41 +5595995 ripCount = 37 +5595995 locktype1 = 2 +5595996 locktype2 = 7 +5595996 locktype3 = 4 +5595997 goalCount = 1 +5595997 goalTotal = 31 +5596018 otherCount = 42 +~~~ +5596019 512 2048 +~~~ +5601517 DOWN 10 +5601517 0 2048 +~~~ +~~~ +~~~ +~~~ +5601544 homeCount = 86 +5601544 waitCount = 41 +5601545 ripCount = 37 +5601545 locktype1 = 2 +5601546 locktype2 = 7 +5601546 locktype3 = 4 +5601547 goalCount = 1 +5601547 goalTotal = 31 +5601548 otherCount = 42 +~~~ +5601560 UP 10 +5601560 waslock = 0 +5601560 512 2048 +~~~ +5601601 DOWN 10 +5601601 0 2048 +~~~ +~~~ +~~~ +~~~ +5601625 homeCount = 86 +5601625 waitCount = 41 +5601626 ripCount = 37 +5601626 locktype1 = 2 +5601627 locktype2 = 7 +5601627 locktype3 = 4 +5601628 goalCount = 1 +5601628 goalTotal = 31 +5601629 otherCount = 42 +~~~ +5603350 UP 12 +5603350 2048 2048 +5607351 CLICK1 +5607351 CLICK2 +~~~ +~~~ +~~~ +5607373 2048 67110912 +~~~ +5607523 2048 2048 +5613771 DOWN 12 +5613771 0 2048 +~~~ +~~~ +5613791 0 0 +~~~ +~~~ +5613793 0 1 +~~~ +~~~ +5613794 0 3 +~~~ +~~~ +5613796 0 7 +~~~ +~~~ +5613798 0 15 +~~~ +~~~ +5613800 0 31 +~~~ +~~~ +5613802 0 63 +~~~ +~~~ +5613803 0 127 +~~~ +~~~ +5613805 0 255 +5613806 homeCount = 86 +5613807 waitCount = 42 +5613807 ripCount = 37 +5613808 locktype1 = 2 +5613808 locktype2 = 7 +5613829 locktype3 = 4 +5613830 goalCount = 1 +5613830 goalTotal = 31 +5613831 otherCount = 42 +~~~ +5613832 CURRENTGOAL IS [3] +~~~ +5613832 UP 12 +5613832 2048 255 +5613856 DOWN 12 +5613856 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5613886 homeCount = 86 +5613886 waitCount = 42 +5613887 ripCount = 37 +5613887 locktype1 = 2 +5613888 locktype2 = 7 +5613888 locktype3 = 4 +5613889 goalCount = 1 +5613889 goalTotal = 31 +5613890 otherCount = 42 +~~~ +5613891 CURRENTGOAL IS [3] +~~~ +5613970 UP 12 +5613970 2048 255 +5613993 DOWN 12 +5613993 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5614033 homeCount = 86 +5614034 waitCount = 42 +5614034 ripCount = 37 +5614035 locktype1 = 2 +5614035 locktype2 = 7 +5614036 locktype3 = 4 +5614036 goalCount = 1 +5614037 goalTotal = 31 +5614037 otherCount = 42 +~~~ +5614038 CURRENTGOAL IS [3] +~~~ +5614039 UP 12 +5614039 2048 255 +5614423 DOWN 12 +5614423 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5614462 homeCount = 86 +5614463 waitCount = 42 +5614463 ripCount = 37 +5614464 locktype1 = 2 +5614464 locktype2 = 7 +5614465 locktype3 = 4 +5614465 goalCount = 1 +5614466 goalTotal = 31 +5614466 otherCount = 42 +~~~ +5614467 CURRENTGOAL IS [3] +~~~ +5617914 UP 1 +5617914 1 255 +~~~ +~~~ +5619242 DOWN 1 +5619242 0 255 +~~~ +~~~ +5619266 0 254 +~~~ +~~~ +5619268 0 252 +~~~ +~~~ +5619270 0 248 +~~~ +~~~ +5619271 0 240 +~~~ +~~~ +5619273 0 224 +~~~ +~~~ +5619275 0 192 +~~~ +~~~ +5619277 0 128 +~~~ +~~~ +5619279 0 0 +~~~ +~~~ +5619281 0 512 +5619282 homeCount = 86 +5619282 waitCount = 42 +5619282 ripCount = 37 +5619283 locktype1 = 2 +5619283 locktype2 = 7 +5619305 locktype3 = 4 +5619305 goalCount = 1 +5619305 goalTotal = 31 +5619306 otherCount = 43 +~~~ +5623329 UP 10 +5623329 waslock = 0 +5623329 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5623362 512 16777728 +~~~ +5623512 512 512 +5623523 DOWN 10 +5623523 0 512 +~~~ +~~~ +5623537 0 2560 +~~~ +~~~ +5623539 0 2048 +5623540 homeCount = 87 +5623540 waitCount = 42 +5623541 ripCount = 37 +5623541 locktype1 = 2 +5623542 locktype2 = 7 +5623542 locktype3 = 4 +5623543 goalCount = 1 +5623543 goalTotal = 31 +5623544 otherCount = 43 +~~~ +5623544 UP 10 +5623565 waslock = 0 +5623544 512 2048 +~~~ +5623698 DOWN 10 +5623698 0 2048 +5623712 UP 10 +5623712 waslock = 0 +5623712 512 2048 +~~~ +~~~ +~~~ +~~~ +5623721 homeCount = 87 +5623722 waitCount = 42 +5623722 ripCount = 37 +5623723 locktype1 = 2 +5623723 locktype2 = 7 +5623723 locktype3 = 4 +5623724 goalCount = 1 +5623724 goalTotal = 31 +5623725 otherCount = 43 +~~~ +~~~ +5627894 DOWN 10 +5627894 0 2048 +~~~ +~~~ +~~~ +~~~ +5627923 homeCount = 87 +5627923 waitCount = 42 +5627924 ripCount = 37 +5627924 locktype1 = 2 +5627925 locktype2 = 7 +5627925 locktype3 = 4 +5627926 goalCount = 1 +5627926 goalTotal = 31 +5627927 otherCount = 43 +~~~ +5629774 UP 12 +5629774 2048 2048 +5635275 CLICK1 +5635275 CLICK2 +~~~ +~~~ +~~~ +5635302 2048 67110912 +~~~ +5635452 2048 2048 +5641984 DOWN 12 +5641984 0 2048 +5642006 UP 12 +5642006 2048 2048 +~~~ +~~~ +5642011 2048 0 +~~~ +~~~ +5642013 2048 1 +~~~ +~~~ +5642015 2048 3 +~~~ +~~~ +5642016 2048 7 +~~~ +~~~ +5642018 2048 15 +~~~ +~~~ +5642020 2048 31 +~~~ +~~~ +5642022 2048 63 +~~~ +~~~ +5642024 2048 127 +~~~ +~~~ +5642026 2048 255 +5642027 homeCount = 87 +5642027 waitCount = 43 +5642028 ripCount = 37 +5642028 locktype1 = 2 +5642049 locktype2 = 7 +5642049 locktype3 = 4 +5642050 goalCount = 1 +5642050 goalTotal = 31 +5642051 otherCount = 43 +~~~ +5642052 CURRENTGOAL IS [3] +~~~ +5642075 DOWN 12 +5642075 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5642117 homeCount = 87 +5642117 waitCount = 43 +5642118 ripCount = 37 +5642118 locktype1 = 2 +5642119 locktype2 = 7 +5642119 locktype3 = 4 +5642120 goalCount = 1 +5642120 goalTotal = 31 +5642121 otherCount = 43 +~~~ +5642122 CURRENTGOAL IS [3] +~~~ +5647230 UP 2 +5647229 2 255 +~~~ +~~~ +5647953 DOWN 2 +5647953 0 255 +~~~ +~~~ +5647972 0 254 +~~~ +~~~ +5647974 0 252 +~~~ +~~~ +5647976 0 248 +~~~ +~~~ +5647977 0 240 +~~~ +~~~ +5647979 0 224 +~~~ +~~~ +5647981 0 192 +~~~ +~~~ +5647983 0 128 +~~~ +~~~ +5647985 0 0 +~~~ +~~~ +5647987 0 512 +5647988 homeCount = 87 +5647988 waitCount = 43 +5647989 ripCount = 37 +5647989 locktype1 = 2 +5647990 locktype2 = 7 +5648010 locktype3 = 4 +5648011 goalCount = 1 +5648011 goalTotal = 31 +5648012 otherCount = 44 +~~~ +5648216 2 512 +5648546 DOWN 2 +5648546 0 512 +5648670 2 512 +5648920 DOWN 2 +5648920 0 512 +5652561 UP 10 +5652561 waslock = 0 +5652561 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5652587 512 16777728 +~~~ +5652737 512 512 +5657217 DOWN 10 +5657217 0 512 +5657227 UP 10 +5657227 waslock = 0 +5657227 512 512 +~~~ +~~~ +5657243 512 2560 +~~~ +~~~ +5657245 512 2048 +5657246 homeCount = 88 +5657247 waitCount = 43 +5657247 ripCount = 37 +5657248 locktype1 = 2 +5657248 locktype2 = 7 +5657248 locktype3 = 4 +5657249 goalCount = 1 +5657249 goalTotal = 31 +5657250 otherCount = 44 +~~~ +~~~ +5657312 DOWN 10 +5657312 0 2048 +~~~ +~~~ +~~~ +~~~ +5657336 homeCount = 88 +5657336 waitCount = 43 +5657337 ripCount = 37 +5657337 locktype1 = 2 +5657338 locktype2 = 7 +5657338 locktype3 = 4 +5657339 goalCount = 1 +5657339 goalTotal = 31 +5657340 otherCount = 44 +~~~ +5659131 UP 12 +5659131 2048 2048 +5662533 DOWN 12 +5662533 0 2048 +5662574 UP 12 +5662574 2048 2048 +5662705 DOWN 12 +5662705 0 2048 +5662761 UP 12 +5662761 2048 2048 +5663131 CLICK1 +5663131 CLICK2 +~~~ +~~~ +~~~ +5663154 2048 67110912 +~~~ +5663304 2048 2048 +5670561 DOWN 12 +5670561 0 2048 +~~~ +~~~ +5670583 0 0 +~~~ +~~~ +5670585 0 1 +~~~ +~~~ +5670587 0 3 +~~~ +~~~ +5670589 0 7 +~~~ +~~~ +5670591 0 15 +~~~ +~~~ +5670592 0 31 +~~~ +~~~ +5670594 0 63 +~~~ +~~~ +5670596 0 127 +~~~ +~~~ +5670598 0 255 +5670599 homeCount = 88 +5670599 waitCount = 44 +5670600 ripCount = 37 +5670600 locktype1 = 2 +5670601 locktype2 = 7 +5670601 locktype3 = 4 +5670622 goalCount = 1 +5670623 goalTotal = 31 +5670623 otherCount = 44 +~~~ +5670624 CURRENTGOAL IS [3] +~~~ +5670625 UP 12 +5670625 2048 255 +5670656 DOWN 12 +5670656 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5670690 homeCount = 88 +5670691 waitCount = 44 +5670691 ripCount = 37 +5670692 locktype1 = 2 +5670692 locktype2 = 7 +5670693 locktype3 = 4 +5670693 goalCount = 1 +5670694 goalTotal = 31 +5670694 otherCount = 44 +~~~ +5670695 CURRENTGOAL IS [3] +~~~ +5677942 UP 2 +5677942 2 255 +~~~ +~~~ +5678387 DOWN 2 +5678387 0 255 +~~~ +~~~ +5678415 0 254 +~~~ +~~~ +5678417 0 252 +~~~ +~~~ +5678419 0 248 +~~~ +~~~ +5678420 0 240 +~~~ +~~~ +5678422 0 224 +~~~ +~~~ +5678424 0 192 +~~~ +~~~ +5678426 0 128 +~~~ +~~~ +5678428 0 0 +~~~ +~~~ +5678430 0 512 +5678431 homeCount = 88 +5678431 waitCount = 44 +5678432 ripCount = 37 +5678432 locktype1 = 2 +5678433 locktype2 = 7 +5678454 locktype3 = 4 +5678454 goalCount = 1 +5678455 goalTotal = 31 +5678455 otherCount = 45 +~~~ +5681630 UP 10 +5681630 waslock = 0 +5681630 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5681661 512 16777728 +~~~ +5681811 512 512 +5686735 DOWN 10 +5686735 0 512 +~~~ +~~~ +5686755 0 1536 +~~~ +~~~ +5686757 0 1024 +5686758 homeCount = 89 +5686759 waitCount = 44 +5686759 ripCount = 37 +5686760 locktype1 = 2 +5686760 locktype2 = 7 +5686761 locktype3 = 4 +5686761 goalCount = 1 +5686761 goalTotal = 31 +5686762 otherCount = 45 +~~~ +5688438 UP 11 +5688438 1024 1024 +5691438 BEEP1 +5691438 BEEP2 +~~~ +~~~ +~~~ +5691457 1024 33555456 +~~~ +5691544 DOWN 11 +5691544 0 33555456 +5691547 UP 11 +5691547 1024 33555456 +5691607 1024 1024 +~~~ +~~~ +5692129 1024 0 +~~~ +~~~ +5692131 1024 1 +~~~ +~~~ +5692133 1024 3 +~~~ +~~~ +5692134 1024 7 +~~~ +~~~ +5692136 1024 15 +~~~ +~~~ +5692138 1024 31 +~~~ +~~~ +5692140 1024 63 +~~~ +~~~ +5692142 1024 127 +~~~ +~~~ +5692144 1024 255 +5692145 homeCount = 89 +5692145 waitCount = 44 +5692146 ripCount = 38 +5692146 locktype1 = 2 +5692167 locktype2 = 7 +5692168 locktype3 = 4 +5692168 goalCount = 1 +5692169 goalTotal = 31 +5692169 otherCount = 45 +~~~ +5692170 CURRENTGOAL IS [3] +~~~ +5697547 DOWN 11 +5697547 0 255 +5697564 UP 11 +5697564 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697582 homeCount = 89 +5697583 waitCount = 44 +5697583 ripCount = 38 +5697584 locktype1 = 2 +5697584 locktype2 = 7 +5697585 locktype3 = 4 +5697585 goalCount = 1 +5697586 goalTotal = 31 +5697586 otherCount = 45 +~~~ +5697587 CURRENTGOAL IS [3] +~~~ +5697675 DOWN 11 +5697675 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697707 UP 11 +5697707 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +5697712 homeCount = 89 +5697713 waitCount = 44 +5697713 ripCount = 38 +5697714 locktype1 = 2 +5697714 locktype2 = 7 +5697715 locktype3 = 4 +5697715 goalCount = 1 +5697716 goalTotal = 31 +5697716 otherCount = 45 +~~~ +5697717 CURRENTGOAL IS [3] +~~~ +5697811 DOWN 11 +5697811 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5697843 UP 11 +5697843 1024 255 +~~~ +~~~ +~~~ +5697846 homeCount = 89 +5697847 waitCount = 44 +5697847 ripCount = 38 +5697848 locktype1 = 2 +5697848 locktype2 = 7 +5697849 locktype3 = 4 +5697849 goalCount = 1 +5697850 goalTotal = 31 +5697850 otherCount = 45 +~~~ +5697851 CURRENTGOAL IS [3] +~~~ +5700488 DOWN 11 +5700488 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5700525 homeCount = 89 +5700526 waitCount = 44 +5700526 ripCount = 38 +5700527 locktype1 = 2 +5700527 locktype2 = 7 +5700528 locktype3 = 4 +5700528 goalCount = 1 +5700528 goalTotal = 31 +5700529 otherCount = 45 +~~~ +5700530 CURRENTGOAL IS [3] +~~~ +5700536 UP 11 +5700536 1024 255 +5700622 DOWN 11 +5700622 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5700656 homeCount = 89 +5700656 waitCount = 44 +5700657 ripCount = 38 +5700657 locktype1 = 2 +5700658 locktype2 = 7 +5700658 locktype3 = 4 +5700659 goalCount = 1 +5700659 goalTotal = 31 +5700660 otherCount = 45 +~~~ +5700661 CURRENTGOAL IS [3] +~~~ +5701175 UP 11 +5701175 1024 255 +5701502 DOWN 11 +5701502 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5701545 homeCount = 89 +5701546 waitCount = 44 +5701547 ripCount = 38 +5701547 locktype1 = 2 +5701548 locktype2 = 7 +5701548 locktype3 = 4 +5701548 goalCount = 1 +5701549 goalTotal = 31 +5701549 otherCount = 45 +~~~ +5701551 CURRENTGOAL IS [3] +~~~ +5701590 UP 11 +5701590 1024 255 +5702159 DOWN 11 +5702159 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5702196 homeCount = 89 +5702196 waitCount = 44 +5702197 ripCount = 38 +5702197 locktype1 = 2 +5702198 locktype2 = 7 +5702198 locktype3 = 4 +5702199 goalCount = 1 +5702199 goalTotal = 31 +5702200 otherCount = 45 +~~~ +5702201 CURRENTGOAL IS [3] +~~~ +5702214 UP 11 +5702214 1024 255 +5703249 DOWN 11 +5703249 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5703287 homeCount = 89 +5703288 waitCount = 44 +5703288 ripCount = 38 +5703289 locktype1 = 2 +5703290 locktype2 = 7 +5703290 locktype3 = 4 +5703290 goalCount = 1 +5703291 goalTotal = 31 +5703291 otherCount = 45 +~~~ +5703292 CURRENTGOAL IS [3] +~~~ +5716846 UP 3 +5716846 4 255 +~~~ +~~~ +5716863 outer reward +~~~ +5716864 4 262399 +~~~ +~~~ +5716866 DOWN 3 +5716866 0 262399 +~~~ +~~~ +5716883 0 262398 +~~~ +~~~ +5716885 0 262396 +~~~ +~~~ +5716887 0 262392 +~~~ +5716888 4 262392 +~~~ +~~~ +5716890 4 262384 +~~~ +~~~ +5716891 4 262368 +~~~ +5716892 4 262336 +~~~ +~~~ +5716894 4 262272 +~~~ +~~~ +5716896 4 262144 +~~~ +~~~ +5716898 4 262656 +5716899 homeCount = 89 +5716899 waitCount = 44 +5716920 ripCount = 38 +5716921 locktype1 = 2 +5716921 locktype2 = 7 +5716922 locktype3 = 4 +5716922 goalCount = 2 +5716923 goalTotal = 32 +5716923 otherCount = 45 +~~~ +5717199 DOWN 3 +5717199 0 262656 +5717223 4 262656 +5717313 4 512 +5717605 DOWN 3 +5717605 0 512 +5717612 4 512 +5717719 DOWN 3 +5717719 0 512 +5717740 4 512 +5717840 DOWN 3 +5717840 0 512 +5717858 4 512 +5717966 DOWN 3 +5717966 0 512 +5717983 4 512 +5718090 DOWN 3 +5718090 0 512 +5718109 4 512 +5723871 DOWN 3 +5723871 0 512 +5723884 4 512 +5724350 DOWN 3 +5724350 0 512 +5724405 4 512 +5724458 DOWN 3 +5724458 0 512 +5728178 UP 10 +5728179 waslock = 0 +5728178 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5728208 512 16777728 +~~~ +5728358 512 512 +5734718 DOWN 10 +5734718 0 512 +5734740 UP 10 +5734740 waslock = 0 +5734740 512 512 +~~~ +~~~ +~~~ +5734743 512 1536 +~~~ +5734744 512 1024 +5734745 homeCount = 90 +5734745 waitCount = 44 +5734746 ripCount = 38 +5734746 locktype1 = 2 +5734747 locktype2 = 7 +5734747 locktype3 = 4 +5734748 goalCount = 2 +5734769 goalTotal = 32 +5734769 otherCount = 45 +~~~ +~~~ +5734818 DOWN 10 +5734818 0 1024 +~~~ +~~~ +~~~ +~~~ +5734839 homeCount = 90 +5734840 waitCount = 44 +5734840 ripCount = 38 +5734841 locktype1 = 2 +5734841 locktype2 = 7 +5734842 locktype3 = 4 +5734842 goalCount = 2 +5734843 goalTotal = 32 +5734843 otherCount = 45 +~~~ +5736341 UP 11 +5736341 1024 1024 +5739841 BEEP1 +5739841 BEEP2 +~~~ +~~~ +~~~ +5739868 1024 33555456 +~~~ +5740018 1024 1024 +5746448 DOWN 11 +5746448 0 1024 +5746457 UP 11 +5746456 1024 1024 +~~~ +~~~ +5746467 1024 0 +~~~ +~~~ +5746469 1024 1 +~~~ +~~~ +5746471 1024 3 +~~~ +~~~ +5746472 1024 7 +~~~ +~~~ +5746474 1024 15 +~~~ +~~~ +5746476 1024 31 +~~~ +~~~ +5746478 1024 63 +~~~ +~~~ +5746480 1024 127 +~~~ +~~~ +5746481 1024 255 +5746482 homeCount = 90 +5746483 waitCount = 44 +5746484 ripCount = 39 +5746484 locktype1 = 2 +5746505 locktype2 = 7 +5746505 locktype3 = 4 +5746506 goalCount = 2 +5746506 goalTotal = 32 +5746507 otherCount = 45 +~~~ +5746508 CURRENTGOAL IS [3] +~~~ +5750211 DOWN 11 +5750211 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5750252 homeCount = 90 +5750253 waitCount = 44 +5750253 ripCount = 39 +5750254 locktype1 = 2 +5750254 locktype2 = 7 +5750255 locktype3 = 4 +5750255 goalCount = 2 +5750256 goalTotal = 32 +5750256 otherCount = 45 +~~~ +5750257 CURRENTGOAL IS [3] +~~~ +5750278 UP 11 +5750278 1024 255 +5751976 DOWN 11 +5751976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5752013 homeCount = 90 +5752013 waitCount = 44 +5752014 ripCount = 39 +5752014 locktype1 = 2 +5752015 locktype2 = 7 +5752015 locktype3 = 4 +5752016 goalCount = 2 +5752016 goalTotal = 32 +5752016 otherCount = 45 +~~~ +5752018 CURRENTGOAL IS [3] +~~~ +5758629 UP 2 +5758629 2 255 +~~~ +~~~ +5759431 DOWN 2 +5759431 0 255 +~~~ +~~~ +5759455 0 254 +~~~ +~~~ +5759457 0 252 +~~~ +~~~ +5759459 0 248 +~~~ +~~~ +5759461 0 240 +~~~ +~~~ +5759463 0 224 +~~~ +~~~ +5759465 0 192 +~~~ +~~~ +5759466 0 128 +~~~ +~~~ +5759468 0 0 +~~~ +~~~ +5759470 0 512 +5759471 homeCount = 90 +5759472 waitCount = 44 +5759472 ripCount = 39 +5759473 locktype1 = 2 +5759473 locktype2 = 7 +5759494 locktype3 = 4 +5759495 goalCount = 2 +5759495 goalTotal = 32 +5759495 otherCount = 46 +~~~ +5759663 2 512 +5759777 DOWN 2 +5759777 0 512 +5765697 UP 10 +5765697 waslock = 0 +5765697 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5765722 512 16777728 +~~~ +5765872 512 512 +5765931 DOWN 10 +5765931 0 512 +5765938 UP 10 +5765938 waslock = 0 +5765938 512 512 +~~~ +~~~ +5765957 512 2560 +~~~ +~~~ +5765959 512 2048 +5765960 homeCount = 91 +5765961 waitCount = 44 +5765961 ripCount = 39 +5765962 locktype1 = 2 +5765962 locktype2 = 7 +5765962 locktype3 = 4 +5765963 goalCount = 2 +5765963 goalTotal = 32 +5765964 otherCount = 46 +~~~ +~~~ +5770516 DOWN 10 +5770516 0 2048 +5770527 UP 10 +5770527 waslock = 0 +5770527 512 2048 +~~~ +~~~ +~~~ +~~~ +5770552 homeCount = 91 +5770553 waitCount = 44 +5770553 ripCount = 39 +5770554 locktype1 = 2 +5770554 locktype2 = 7 +5770555 locktype3 = 4 +5770555 goalCount = 2 +5770556 goalTotal = 32 +5770556 otherCount = 46 +~~~ +~~~ +5770605 DOWN 10 +5770605 0 2048 +~~~ +~~~ +~~~ +~~~ +5770632 homeCount = 91 +5770632 waitCount = 44 +5770633 ripCount = 39 +5770633 locktype1 = 2 +5770634 locktype2 = 7 +5770634 locktype3 = 4 +5770635 goalCount = 2 +5770635 goalTotal = 32 +5770635 otherCount = 46 +~~~ +5772538 UP 12 +5772538 2048 2048 +5774762 DOWN 12 +5774762 0 2048 +5774792 UP 12 +5774792 2048 2048 +5774819 DOWN 12 +5774819 0 2048 +5774837 UP 12 +5774837 2048 2048 +5777111 DOWN 12 +5777111 0 2048 +5777126 UP 12 +5777126 2048 2048 +5780539 CLICK1 +5780539 CLICK2 +~~~ +~~~ +~~~ +5780558 2048 67110912 +~~~ +5780708 2048 2048 +5787618 DOWN 12 +5787618 0 2048 +~~~ +~~~ +5787637 0 0 +~~~ +~~~ +5787639 0 1 +~~~ +~~~ +5787640 0 3 +~~~ +~~~ +5787642 0 7 +~~~ +~~~ +5787644 0 15 +~~~ +~~~ +5787646 0 31 +~~~ +~~~ +5787648 0 63 +~~~ +~~~ +5787649 0 127 +~~~ +~~~ +5787651 0 255 +5787652 homeCount = 91 +5787653 waitCount = 45 +5787653 ripCount = 39 +5787654 locktype1 = 2 +5787654 locktype2 = 7 +5787675 locktype3 = 4 +5787675 goalCount = 2 +5787676 goalTotal = 32 +5787676 otherCount = 46 +~~~ +5787677 CURRENTGOAL IS [3] +~~~ +5787678 UP 12 +5787678 2048 255 +5787722 DOWN 12 +5787722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5787754 homeCount = 91 +5787755 waitCount = 45 +5787755 ripCount = 39 +5787756 locktype1 = 2 +5787756 locktype2 = 7 +5787757 locktype3 = 4 +5787757 goalCount = 2 +5787758 goalTotal = 32 +5787758 otherCount = 46 +~~~ +5787759 CURRENTGOAL IS [3] +~~~ +5795603 UP 7 +5795603 64 255 +~~~ +~~~ +5796010 DOWN 7 +5796010 0 255 +~~~ +~~~ +5796029 0 254 +~~~ +~~~ +5796031 0 252 +~~~ +~~~ +5796033 0 248 +~~~ +~~~ +5796034 0 240 +~~~ +~~~ +5796036 0 224 +~~~ +~~~ +5796038 0 192 +~~~ +~~~ +5796040 0 128 +~~~ +~~~ +5796042 0 0 +~~~ +~~~ +5796044 0 512 +5796045 homeCount = 91 +5796045 waitCount = 45 +5796046 ripCount = 39 +5796046 locktype1 = 2 +5796047 locktype2 = 7 +5796068 locktype3 = 4 +5796068 goalCount = 2 +5796069 goalTotal = 32 +5796069 otherCount = 47 +~~~ +5796070 64 512 +5796533 DOWN 7 +5796533 0 512 +5800125 UP 10 +5800125 waslock = 0 +5800125 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5800149 512 16777728 +~~~ +5800299 512 512 +5800329 DOWN 10 +5800329 0 512 +5800334 UP 10 +5800334 waslock = 0 +5800334 512 512 +~~~ +~~~ +5800353 512 1536 +~~~ +~~~ +5800355 512 1024 +5800356 homeCount = 92 +5800357 waitCount = 45 +5800357 ripCount = 39 +5800358 locktype1 = 2 +5800358 locktype2 = 7 +5800359 locktype3 = 4 +5800359 goalCount = 2 +5800359 goalTotal = 32 +5800360 otherCount = 47 +~~~ +~~~ +5805808 DOWN 10 +5805808 0 1024 +~~~ +~~~ +~~~ +~~~ +5805836 homeCount = 92 +5805836 waitCount = 45 +5805837 ripCount = 39 +5805837 locktype1 = 2 +5805838 locktype2 = 7 +5805838 locktype3 = 4 +5805839 goalCount = 2 +5805839 goalTotal = 32 +5805840 otherCount = 47 +~~~ +5807754 UP 11 +5807754 1024 1024 +5810234 DOWN 11 +5810234 0 1024 +5810278 UP 11 +5810278 1024 1024 +5810754 BEEP1 +5810754 BEEP2 +~~~ +~~~ +~~~ +5810775 1024 33555456 +~~~ +5810925 1024 1024 +5817367 DOWN 11 +5817367 0 1024 +5817376 UP 11 +5817376 1024 1024 +~~~ +~~~ +5817392 1024 0 +~~~ +~~~ +5817394 1024 1 +~~~ +~~~ +5817396 1024 3 +~~~ +~~~ +5817397 1024 7 +~~~ +~~~ +5817399 1024 15 +~~~ +~~~ +5817401 1024 31 +~~~ +~~~ +5817403 1024 63 +~~~ +~~~ +5817405 1024 127 +~~~ +~~~ +5817407 1024 255 +5817408 homeCount = 92 +5817408 waitCount = 45 +5817409 ripCount = 40 +5817409 locktype1 = 2 +5817430 locktype2 = 7 +5817431 locktype3 = 4 +5817431 goalCount = 2 +5817432 goalTotal = 32 +5817432 otherCount = 47 +~~~ +5817433 CURRENTGOAL IS [3] +~~~ +5820017 DOWN 11 +5820017 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5820058 homeCount = 92 +5820059 waitCount = 45 +5820059 ripCount = 40 +5820060 locktype1 = 2 +5820060 locktype2 = 7 +5820061 locktype3 = 4 +5820061 goalCount = 2 +5820061 goalTotal = 32 +5820062 otherCount = 47 +~~~ +5820063 CURRENTGOAL IS [3] +~~~ +5828153 UP 3 +5828153 4 255 +~~~ +~~~ +5828176 outer reward +~~~ +5828176 4 262399 +~~~ +~~~ +5828381 DOWN 3 +5828381 0 262399 +~~~ +~~~ +5828405 0 262398 +~~~ +~~~ +5828407 0 262396 +~~~ +~~~ +5828409 0 262392 +~~~ +~~~ +5828411 0 262384 +~~~ +~~~ +5828412 0 262368 +~~~ +~~~ +5828414 0 262336 +~~~ +5828416 4 262336 +~~~ +~~~ +5828417 4 262272 +~~~ +5828418 4 262144 +~~~ +~~~ +5828420 4 262656 +5828421 homeCount = 92 +5828421 waitCount = 45 +5828442 ripCount = 40 +5828443 locktype1 = 2 +5828443 locktype2 = 7 +5828444 locktype3 = 4 +5828444 goalCount = 3 +5828445 goalTotal = 33 +5828445 otherCount = 47 +~~~ +5828626 4 512 +5828783 DOWN 3 +5828783 0 512 +5828810 4 512 +5828903 DOWN 3 +5828903 0 512 +5828941 4 512 +5829030 DOWN 3 +5829030 0 512 +5829062 4 512 +5829159 DOWN 3 +5829159 0 512 +5829194 4 512 +5829292 DOWN 3 +5829292 0 512 +5829324 4 512 +5829422 DOWN 3 +5829422 0 512 +5829451 4 512 +5829559 DOWN 3 +5829559 0 512 +5829588 4 512 +5829697 DOWN 3 +5829697 0 512 +5829724 4 512 +5829837 DOWN 3 +5829837 0 512 +5829860 4 512 +5829982 DOWN 3 +5829982 0 512 +5830000 4 512 +5830129 DOWN 3 +5830129 0 512 +5830141 4 512 +5830435 DOWN 3 +5830435 0 512 +5830444 4 512 +5833394 DOWN 3 +5833394 0 512 +5833418 4 512 +5834560 DOWN 3 +5834560 0 512 +5834571 4 512 +5834740 DOWN 3 +5834740 0 512 +5834746 4 512 +5836809 DOWN 3 +5836809 0 512 +5836847 4 512 +5836894 DOWN 3 +5836894 0 512 +5840557 UP 10 +5840558 waslock = 0 +5840557 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5840584 512 16777728 +~~~ +5840734 512 512 +5844296 DOWN 10 +5844296 0 512 +~~~ +~~~ +5844316 0 2560 +~~~ +~~~ +5844318 0 2048 +5844319 homeCount = 93 +5844320 waitCount = 45 +5844320 ripCount = 40 +5844321 locktype1 = 2 +5844321 locktype2 = 7 +5844321 locktype3 = 4 +5844322 goalCount = 3 +5844322 goalTotal = 33 +5844323 otherCount = 47 +~~~ +5845949 UP 12 +5845949 2048 2048 +5849054 DOWN 12 +5849054 0 2048 +5849095 UP 12 +5849095 2048 2048 +5849949 CLICK1 +5849949 CLICK2 +~~~ +~~~ +~~~ +5849973 2048 67110912 +~~~ +5850123 2048 2048 +5856550 DOWN 12 +5856550 0 2048 +~~~ +~~~ +5856578 0 0 +~~~ +~~~ +5856580 0 1 +~~~ +~~~ +5856581 0 3 +~~~ +~~~ +5856583 0 7 +~~~ +~~~ +5856585 0 15 +~~~ +~~~ +5856587 0 31 +~~~ +~~~ +5856589 0 63 +~~~ +~~~ +5856590 0 127 +~~~ +~~~ +5856592 0 255 +5856593 homeCount = 93 +5856594 waitCount = 46 +5856594 ripCount = 40 +5856595 locktype1 = 2 +5856595 locktype2 = 7 +5856596 locktype3 = 4 +5856617 goalCount = 3 +5856618 goalTotal = 33 +5856618 otherCount = 47 +~~~ +5856619 CURRENTGOAL IS [3] +~~~ +5856644 UP 12 +5856644 2048 255 +5858693 DOWN 12 +5858693 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5858736 homeCount = 93 +5858736 waitCount = 46 +5858737 ripCount = 40 +5858737 locktype1 = 2 +5858738 locktype2 = 7 +5858738 locktype3 = 4 +5858739 goalCount = 3 +5858739 goalTotal = 33 +5858740 otherCount = 47 +~~~ +5858741 CURRENTGOAL IS [3] +~~~ +5862529 UP 3 +5862529 4 255 +~~~ +~~~ +5862552 outer reward +~~~ +5862552 4 262399 +~~~ +~~~ +5862752 DOWN 3 +5862752 0 262399 +~~~ +~~~ +5862770 0 262398 +~~~ +~~~ +5862772 0 262396 +~~~ +~~~ +5862774 0 262392 +~~~ +~~~ +5862776 0 262384 +~~~ +~~~ +5862777 0 262368 +~~~ +~~~ +5862779 0 262336 +~~~ +~~~ +5862781 0 262272 +~~~ +~~~ +5862783 0 262144 +~~~ +~~~ +5862785 0 262656 +5862786 homeCount = 93 +5862786 waitCount = 46 +5862787 ripCount = 40 +5862808 locktype1 = 2 +5862809 locktype2 = 7 +5862809 locktype3 = 4 +5862809 goalCount = 4 +5862810 goalTotal = 34 +5862810 otherCount = 47 +~~~ +5862811 4 262656 +5863002 4 512 +5863190 DOWN 3 +5863190 0 512 +5863214 4 512 +5863309 DOWN 3 +5863309 0 512 +5863346 4 512 +5863438 DOWN 3 +5863438 0 512 +5863466 4 512 +5863585 DOWN 3 +5863585 0 512 +5863605 4 512 +5863714 DOWN 3 +5863714 0 512 +5863740 4 512 +5863854 DOWN 3 +5863854 0 512 +5863877 4 512 +5863999 DOWN 3 +5863999 0 512 +5864018 4 512 +5864142 DOWN 3 +5864142 0 512 +5864162 4 512 +5864291 DOWN 3 +5864291 0 512 +5864306 4 512 +5864440 DOWN 3 +5864440 0 512 +5864456 4 512 +5870702 DOWN 3 +5870702 0 512 +5870792 4 512 +5870801 DOWN 3 +5870801 0 512 +5874682 UP 10 +5874682 waslock = 0 +5874682 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5874707 512 16777728 +~~~ +5874857 512 512 +5874917 DOWN 10 +5874917 0 512 +5874930 UP 10 +5874931 waslock = 0 +5874930 512 512 +~~~ +~~~ +5874941 512 2560 +~~~ +~~~ +5874943 512 2048 +5874944 homeCount = 94 +5874945 waitCount = 46 +5874945 ripCount = 40 +5874946 locktype1 = 2 +5874946 locktype2 = 7 +5874947 locktype3 = 4 +5874947 goalCount = 4 +5874947 goalTotal = 34 +5874948 otherCount = 47 +~~~ +~~~ +5879193 DOWN 10 +5879193 0 2048 +~~~ +~~~ +~~~ +~~~ +5879215 homeCount = 94 +5879216 waitCount = 46 +5879216 ripCount = 40 +5879217 locktype1 = 2 +5879217 locktype2 = 7 +5879218 locktype3 = 4 +5879218 goalCount = 4 +5879219 goalTotal = 34 +5879219 otherCount = 47 +~~~ +5880914 UP 12 +5880914 2048 2048 +5881174 DOWN 12 +5881174 0 2048 +5881272 UP 12 +5881272 2048 2048 +5881331 DOWN 12 +5881331 0 2048 +5881349 UP 12 +5881349 2048 2048 +5882641 DOWN 12 +5882641 0 2048 +5882721 UP 12 +5882721 2048 2048 +5883785 DOWN 12 +5883785 0 2048 +5883812 UP 12 +5883812 2048 2048 +5886414 CLICK1 +5886414 CLICK2 +~~~ +~~~ +~~~ +5886435 2048 67110912 +~~~ +5886585 2048 2048 +5892947 DOWN 12 +5892947 0 2048 +5892961 UP 12 +5892961 2048 2048 +~~~ +~~~ +5892972 2048 0 +~~~ +~~~ +5892974 2048 1 +~~~ +~~~ +5892976 2048 3 +~~~ +~~~ +5892978 2048 7 +~~~ +~~~ +5892979 2048 15 +~~~ +~~~ +5892981 2048 31 +~~~ +~~~ +5892983 2048 63 +~~~ +~~~ +5892985 2048 127 +~~~ +~~~ +5892987 2048 255 +5892988 homeCount = 94 +5892988 waitCount = 47 +5892989 ripCount = 40 +5892989 locktype1 = 2 +5893010 locktype2 = 7 +5893010 locktype3 = 4 +5893011 goalCount = 4 +5893011 goalTotal = 34 +5893012 otherCount = 47 +~~~ +5893013 CURRENTGOAL IS [3] +~~~ +5893066 DOWN 12 +5893066 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5893100 homeCount = 94 +5893101 waitCount = 47 +5893101 ripCount = 40 +5893102 locktype1 = 2 +5893102 locktype2 = 7 +5893103 locktype3 = 4 +5893103 goalCount = 4 +5893104 goalTotal = 34 +5893104 otherCount = 47 +~~~ +5893105 CURRENTGOAL IS [3] +~~~ +5893124 UP 12 +5893124 2048 255 +5894503 DOWN 12 +5894503 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5894542 homeCount = 94 +5894542 waitCount = 47 +5894543 ripCount = 40 +5894543 locktype1 = 2 +5894544 locktype2 = 7 +5894544 locktype3 = 4 +5894545 goalCount = 4 +5894545 goalTotal = 34 +5894546 otherCount = 47 +~~~ +5894547 CURRENTGOAL IS [3] +~~~ +5898051 UP 3 +5898051 4 255 +~~~ +~~~ +5898075 outer reward +~~~ +5898075 4 262399 +~~~ +~~~ +5898084 DOWN 3 +5898084 0 262399 +~~~ +~~~ +5898105 0 262398 +~~~ +~~~ +5898107 0 262396 +~~~ +~~~ +5898109 0 262392 +~~~ +~~~ +5898111 0 262384 +~~~ +~~~ +5898113 0 262368 +~~~ +~~~ +5898114 0 262336 +~~~ +~~~ +5898116 0 262272 +~~~ +~~~ +5898118 0 262144 +~~~ +5898119 4 262144 +~~~ +5898121 4 262656 +5898121 homeCount = 94 +5898122 waitCount = 47 +5898143 ripCount = 40 +5898143 locktype1 = 2 +5898143 locktype2 = 7 +5898144 locktype3 = 4 +5898144 goalCount = 5 +5898145 goalTotal = 35 +5898145 otherCount = 47 +~~~ +5898295 DOWN 3 +5898295 0 262656 +5898339 4 262656 +5898474 DOWN 3 +5898474 0 262656 +5898485 4 262656 +5898525 4 512 +5898613 DOWN 3 +5898613 0 512 +5898629 4 512 +5898725 DOWN 3 +5898725 0 512 +5898757 4 512 +5899023 DOWN 3 +5899023 0 512 +5899036 4 512 +5899150 DOWN 3 +5899150 0 512 +5899168 4 512 +5899278 DOWN 3 +5899278 0 512 +5899303 4 512 +5899418 DOWN 3 +5899418 0 512 +5899436 4 512 +5899556 DOWN 3 +5899556 0 512 +5899573 4 512 +5900710 DOWN 3 +5900710 0 512 +5900719 4 512 +5901495 DOWN 3 +5901495 0 512 +5901502 4 512 +5907977 DOWN 3 +5907977 0 512 +5907988 4 512 +5908474 DOWN 3 +5908474 0 512 +5908635 4 512 +5908689 DOWN 3 +5908689 0 512 +5913757 UP 10 +5913758 waslock = 0 +5913757 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5913783 512 16777728 +~~~ +5913933 512 512 +5917745 DOWN 10 +5917745 0 512 +~~~ +~~~ +5917767 0 2560 +~~~ +~~~ +5917769 0 2048 +5917770 homeCount = 95 +5917771 waitCount = 47 +5917771 ripCount = 40 +5917771 locktype1 = 2 +5917772 locktype2 = 7 +5917772 locktype3 = 4 +5917773 goalCount = 5 +5917773 goalTotal = 35 +5917774 otherCount = 47 +~~~ +5917777 UP 10 +5917778 waslock = 0 +5917777 512 2048 +5917816 DOWN 10 +5917816 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +5917844 homeCount = 95 +5917844 waitCount = 47 +5917845 ripCount = 40 +5917845 locktype1 = 2 +5917846 locktype2 = 7 +5917846 locktype3 = 4 +5917847 goalCount = 5 +5917847 goalTotal = 35 +5917848 otherCount = 47 +~~~ +5919813 UP 12 +5919813 2048 2048 +5920060 DOWN 12 +5920060 0 2048 +5920260 LOCKOUT 3 +~~~ +5920281 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5920287 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5920319 UP 12 +5920319 2048 0 +5921986 DOWN 12 +5921986 0 0 +5922031 UP 12 +5922031 2048 0 +5928322 DOWN 12 +5928322 0 0 +5928360 UP 12 +5928360 2048 0 +5928730 DOWN 12 +5928729 0 0 +5928859 UP 12 +5928859 2048 0 +5930252 DOWN 12 +5930252 0 0 +5942734 UP 8 +5942734 128 0 +5943812 DOWN 8 +5943812 0 0 +5944012 128 0 +5944110 DOWN 8 +5944110 0 0 +5945254 128 0 +5945281 LOCKEND +~~~ +~~~ +~~~ +5945306 128 512 +5945311 DOWN 8 +5945311 0 512 +5945821 128 512 +5947058 DOWN 8 +5947058 0 512 +5970247 UP 10 +5970248 waslock = 0 +5970247 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +5970272 512 16777728 +~~~ +5970422 512 512 +5972015 DOWN 10 +5972015 0 512 +5972026 UP 10 +5972026 waslock = 0 +5972026 512 512 +~~~ +~~~ +5972046 512 1536 +~~~ +~~~ +5972048 512 1024 +5972049 homeCount = 96 +5972050 waitCount = 47 +5972050 ripCount = 40 +5972051 locktype1 = 2 +5972051 locktype2 = 7 +5972052 locktype3 = 5 +5972052 goalCount = 5 +5972053 goalTotal = 35 +5972053 otherCount = 47 +~~~ +~~~ +5976454 DOWN 10 +5976454 0 1024 +~~~ +~~~ +~~~ +~~~ +5976477 homeCount = 96 +5976477 waitCount = 47 +5976478 ripCount = 40 +5976478 locktype1 = 2 +5976479 locktype2 = 7 +5976479 locktype3 = 5 +5976480 goalCount = 5 +5976480 goalTotal = 35 +5976481 otherCount = 47 +~~~ +5982820 UP 11 +5982820 1024 1024 +5983404 DOWN 11 +5983404 0 1024 +5983449 UP 11 +5983449 1024 1024 +5983553 DOWN 11 +5983553 0 1024 +5983643 UP 11 +5983643 1024 1024 +5984311 DOWN 11 +5984311 0 1024 +5984334 UP 11 +5984334 1024 1024 +5984358 DOWN 11 +5984358 0 1024 +5984404 UP 11 +5984404 1024 1024 +5984446 DOWN 11 +5984446 0 1024 +5984470 UP 11 +5984470 1024 1024 +5985787 DOWN 11 +5985787 0 1024 +5985812 UP 11 +5985812 1024 1024 +5987321 BEEP1 +5987321 BEEP2 +~~~ +~~~ +~~~ +5987346 1024 33555456 +~~~ +5987496 1024 1024 +5995025 DOWN 11 +5995025 0 1024 +~~~ +~~~ +5995044 0 0 +~~~ +~~~ +5995046 0 1 +~~~ +~~~ +5995048 0 3 +~~~ +~~~ +5995050 0 7 +~~~ +~~~ +5995052 0 15 +~~~ +~~~ +5995053 0 31 +~~~ +~~~ +5995055 0 63 +~~~ +~~~ +5995057 0 127 +~~~ +~~~ +5995059 0 255 +5995060 homeCount = 96 +5995060 waitCount = 47 +5995061 ripCount = 41 +5995061 locktype1 = 2 +5995062 locktype2 = 7 +5995062 locktype3 = 5 +5995083 goalCount = 5 +5995084 goalTotal = 35 +5995084 otherCount = 47 +~~~ +5995085 CURRENTGOAL IS [3] +~~~ +5995086 UP 11 +5995086 1024 255 +5995127 DOWN 11 +5995127 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +5995166 homeCount = 96 +5995166 waitCount = 47 +5995167 ripCount = 41 +5995167 locktype1 = 2 +5995168 locktype2 = 7 +5995168 locktype3 = 5 +5995169 goalCount = 5 +5995169 goalTotal = 35 +5995170 otherCount = 47 +~~~ +5995171 CURRENTGOAL IS [3] +~~~ +5998831 UP 6 +5998831 32 255 +~~~ +~~~ +5999406 DOWN 6 +5999406 0 255 +~~~ +~~~ +5999430 0 254 +~~~ +~~~ +5999432 0 252 +~~~ +~~~ +5999434 0 248 +~~~ +~~~ +5999435 0 240 +~~~ +~~~ +5999437 0 224 +~~~ +~~~ +5999439 0 192 +~~~ +~~~ +5999441 0 128 +~~~ +~~~ +5999443 0 0 +~~~ +~~~ +5999445 0 512 +5999446 homeCount = 96 +5999446 waitCount = 47 +5999446 ripCount = 41 +5999447 locktype1 = 2 +5999447 locktype2 = 7 +5999469 locktype3 = 5 +5999469 goalCount = 5 +5999470 goalTotal = 35 +5999470 otherCount = 48 +~~~ +6003715 UP 10 +6003715 waslock = 0 +6003715 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6003747 512 16777728 +~~~ +6003897 512 512 +6003918 DOWN 10 +6003918 0 512 +~~~ +~~~ +6003946 0 1536 +~~~ +6003948 UP 10 +6003948 waslock = 0 +6003948 512 1536 +~~~ +6003950 homeCount = 97 +6003950 waitCount = 47 +6003951 ripCount = 41 +6003951 locktype1 = 2 +6003952 locktype2 = 7 +6003952 locktype3 = 5 +6003953 goalCount = 5 +6003953 goalTotal = 35 +6003974 otherCount = 48 +~~~ +6003975 DOWN 10 +6003975 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6003999 homeCount = 97 +6004000 waitCount = 47 +6004000 ripCount = 41 +6004001 locktype1 = 2 +6004001 locktype2 = 7 +6004002 locktype3 = 5 +6004002 goalCount = 5 +6004003 goalTotal = 35 +6004003 otherCount = 48 +~~~ +6004012 UP 10 +6004013 waslock = 0 +6004012 512 1024 +~~~ +6009857 DOWN 10 +6009857 0 1024 +~~~ +~~~ +~~~ +~~~ +6009879 homeCount = 97 +6009879 waitCount = 47 +6009880 ripCount = 41 +6009880 locktype1 = 2 +6009881 locktype2 = 7 +6009881 locktype3 = 5 +6009882 goalCount = 5 +6009882 goalTotal = 35 +6009883 otherCount = 48 +~~~ +6009933 UP 10 +6009934 waslock = 0 +6009933 512 1024 +6009944 DOWN 10 +6009944 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6009963 homeCount = 97 +6009964 waitCount = 47 +6009964 ripCount = 41 +6009965 locktype1 = 2 +6009965 locktype2 = 7 +6009966 locktype3 = 5 +6009966 goalCount = 5 +6009967 goalTotal = 35 +6009967 otherCount = 48 +~~~ +6012452 UP 11 +6012452 1024 1024 +6015272 DOWN 11 +6015272 0 1024 +6015283 UP 11 +6015283 1024 1024 +6015352 DOWN 11 +6015352 0 1024 +6015388 UP 11 +6015388 1024 1024 +6017952 BEEP1 +6017952 BEEP2 +~~~ +~~~ +~~~ +6017977 1024 33555456 +~~~ +6018127 1024 1024 +6023478 DOWN 11 +6023478 0 1024 +6023492 UP 11 +6023492 1024 1024 +~~~ +~~~ +6023498 1024 0 +~~~ +~~~ +6023499 1024 1 +~~~ +~~~ +6023501 1024 3 +~~~ +~~~ +6023503 1024 7 +~~~ +~~~ +6023505 1024 15 +~~~ +~~~ +6023507 1024 31 +~~~ +~~~ +6023509 1024 63 +~~~ +~~~ +6023510 1024 127 +~~~ +~~~ +6023512 1024 255 +6023513 homeCount = 97 +6023514 waitCount = 47 +6023514 ripCount = 42 +6023515 locktype1 = 2 +6023536 locktype2 = 7 +6023536 locktype3 = 5 +6023537 goalCount = 5 +6023537 goalTotal = 35 +6023538 otherCount = 48 +~~~ +6023539 CURRENTGOAL IS [3] +~~~ +6023606 DOWN 11 +6023606 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023634 UP 11 +6023634 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023643 homeCount = 97 +6023643 waitCount = 47 +6023644 ripCount = 42 +6023644 locktype1 = 2 +6023645 locktype2 = 7 +6023645 locktype3 = 5 +6023646 goalCount = 5 +6023646 goalTotal = 35 +6023647 otherCount = 48 +~~~ +6023648 CURRENTGOAL IS [3] +~~~ +6023702 DOWN 11 +6023702 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023742 homeCount = 97 +6023743 waitCount = 47 +6023743 ripCount = 42 +6023744 locktype1 = 2 +6023744 locktype2 = 7 +6023745 locktype3 = 5 +6023745 goalCount = 5 +6023746 goalTotal = 35 +6023746 otherCount = 48 +~~~ +6023747 CURRENTGOAL IS [3] +~~~ +6023800 UP 11 +6023800 1024 255 +6023848 DOWN 11 +6023848 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6023883 UP 11 +6023883 1024 255 +6023884 homeCount = 97 +6023884 waitCount = 47 +6023885 ripCount = 42 +6023885 locktype1 = 2 +6023886 locktype2 = 7 +6023886 locktype3 = 5 +6023887 goalCount = 5 +6023887 goalTotal = 35 +6023888 otherCount = 48 +~~~ +6023889 CURRENTGOAL IS [3] +~~~ +6023989 DOWN 11 +6023989 0 255 +~~~ +~~~ +~~~ +~~~ +6024013 UP 11 +6024013 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6024026 homeCount = 97 +6024027 waitCount = 47 +6024027 ripCount = 42 +6024028 locktype1 = 2 +6024028 locktype2 = 7 +6024029 locktype3 = 5 +6024029 goalCount = 5 +6024030 goalTotal = 35 +6024030 otherCount = 48 +~~~ +6024031 CURRENTGOAL IS [3] +~~~ +6024163 DOWN 11 +6024163 0 255 +6024176 UP 11 +6024176 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6024197 homeCount = 97 +6024198 waitCount = 47 +6024198 ripCount = 42 +6024199 locktype1 = 2 +6024199 locktype2 = 7 +6024200 locktype3 = 5 +6024200 goalCount = 5 +6024201 goalTotal = 35 +6024201 otherCount = 48 +~~~ +6024202 CURRENTGOAL IS [3] +~~~ +6026519 DOWN 11 +6026519 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6026563 homeCount = 97 +6026563 waitCount = 47 +6026564 ripCount = 42 +6026564 locktype1 = 2 +6026565 locktype2 = 7 +6026565 locktype3 = 5 +6026566 goalCount = 5 +6026566 goalTotal = 35 +6026567 otherCount = 48 +~~~ +6026568 CURRENTGOAL IS [3] +~~~ +6032818 UP 8 +6032818 128 255 +~~~ +~~~ +6033239 DOWN 8 +6033239 0 255 +~~~ +~~~ +6033258 0 254 +~~~ +~~~ +6033259 0 252 +~~~ +~~~ +6033261 0 248 +~~~ +~~~ +6033263 0 240 +~~~ +~~~ +6033265 0 224 +~~~ +~~~ +6033267 0 192 +~~~ +~~~ +6033269 0 128 +~~~ +~~~ +6033270 0 0 +~~~ +~~~ +6033272 0 512 +6033273 homeCount = 97 +6033274 waitCount = 47 +6033274 ripCount = 42 +6033275 locktype1 = 2 +6033275 locktype2 = 7 +6033296 locktype3 = 5 +6033297 goalCount = 5 +6033297 goalTotal = 35 +6033298 otherCount = 49 +~~~ +6033317 128 512 +6033371 DOWN 8 +6033371 0 512 +6038368 UP 10 +6038368 waslock = 0 +6038368 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6038397 512 16777728 +~~~ +6038547 512 512 +6039272 DOWN 10 +6039272 0 512 +~~~ +~~~ +6039291 0 1536 +~~~ +~~~ +6039293 0 1024 +6039294 homeCount = 98 +6039294 waitCount = 47 +6039295 ripCount = 42 +6039295 locktype1 = 2 +6039296 locktype2 = 7 +6039296 locktype3 = 5 +6039297 goalCount = 5 +6039297 goalTotal = 35 +6039297 otherCount = 49 +~~~ +6039298 UP 10 +6039319 waslock = 0 +6039298 512 1024 +~~~ +6044381 DOWN 10 +6044381 0 1024 +~~~ +~~~ +~~~ +~~~ +6044402 homeCount = 98 +6044403 waitCount = 47 +6044403 ripCount = 42 +6044404 locktype1 = 2 +6044404 locktype2 = 7 +6044405 locktype3 = 5 +6044405 goalCount = 5 +6044406 goalTotal = 35 +6044406 otherCount = 49 +~~~ +6044424 UP 10 +6044424 waslock = 0 +6044424 512 1024 +~~~ +6044471 DOWN 10 +6044471 0 1024 +~~~ +~~~ +~~~ +~~~ +6044493 homeCount = 98 +6044493 waitCount = 47 +6044494 ripCount = 42 +6044494 locktype1 = 2 +6044495 locktype2 = 7 +6044495 locktype3 = 5 +6044496 goalCount = 5 +6044496 goalTotal = 35 +6044497 otherCount = 49 +~~~ +6046733 UP 11 +6046733 1024 1024 +6049202 DOWN 11 +6049202 0 1024 +6049248 UP 11 +6049248 1024 1024 +6050940 DOWN 11 +6050940 0 1024 +6050972 UP 11 +6050972 1024 1024 +6053734 BEEP1 +6053734 BEEP2 +~~~ +~~~ +~~~ +6053752 1024 33555456 +~~~ +6053902 1024 1024 +6059069 DOWN 11 +6059069 0 1024 +~~~ +~~~ +6059095 0 0 +~~~ +~~~ +6059097 0 1 +~~~ +6059098 UP 11 +6059098 1024 1 +~~~ +~~~ +6059100 1024 3 +~~~ +~~~ +6059102 1024 7 +~~~ +6059103 1024 15 +~~~ +~~~ +6059104 1024 31 +~~~ +~~~ +6059106 1024 63 +~~~ +~~~ +6059108 1024 127 +~~~ +~~~ +6059110 1024 255 +6059111 homeCount = 98 +6059111 waitCount = 47 +6059132 ripCount = 43 +6059133 locktype1 = 2 +6059133 locktype2 = 7 +6059134 locktype3 = 5 +6059134 goalCount = 5 +6059135 goalTotal = 35 +6059135 otherCount = 49 +~~~ +6059136 CURRENTGOAL IS [3] +~~~ +6059137 DOWN 11 +6059137 0 255 +6059158 UP 11 +6059158 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059192 DOWN 11 +6059192 0 255 +~~~ +6059193 homeCount = 98 +6059194 waitCount = 47 +6059194 ripCount = 43 +6059195 locktype1 = 2 +6059195 locktype2 = 7 +6059196 locktype3 = 5 +6059196 goalCount = 5 +6059197 goalTotal = 35 +6059197 otherCount = 49 +~~~ +6059198 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059242 homeCount = 98 +6059242 waitCount = 47 +6059243 ripCount = 43 +6059243 locktype1 = 2 +6059244 locktype2 = 7 +6059244 locktype3 = 5 +6059245 goalCount = 5 +6059245 goalTotal = 35 +6059246 otherCount = 49 +~~~ +6059247 CURRENTGOAL IS [3] +~~~ +6059274 UP 11 +6059274 1024 255 +6059335 DOWN 11 +6059335 0 255 +6059341 UP 11 +6059341 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6059378 homeCount = 98 +6059378 waitCount = 47 +6059379 ripCount = 43 +6059379 locktype1 = 2 +6059380 locktype2 = 7 +6059380 locktype3 = 5 +6059381 goalCount = 5 +6059381 goalTotal = 35 +6059381 otherCount = 49 +~~~ +6059383 CURRENTGOAL IS [3] +~~~ +6061599 DOWN 11 +6061599 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6061639 homeCount = 98 +6061639 waitCount = 47 +6061640 ripCount = 43 +6061640 locktype1 = 2 +6061641 locktype2 = 7 +6061641 locktype3 = 5 +6061642 goalCount = 5 +6061642 goalTotal = 35 +6061643 otherCount = 49 +~~~ +6061644 CURRENTGOAL IS [3] +~~~ +6061677 UP 11 +6061677 1024 255 +6061721 DOWN 11 +6061721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6061756 homeCount = 98 +6061757 waitCount = 47 +6061757 ripCount = 43 +6061758 locktype1 = 2 +6061758 locktype2 = 7 +6061759 locktype3 = 5 +6061759 goalCount = 5 +6061760 goalTotal = 35 +6061760 otherCount = 49 +~~~ +6061761 CURRENTGOAL IS [3] +~~~ +6067760 UP 6 +6067760 32 255 +~~~ +~~~ +6068412 DOWN 6 +6068412 0 255 +~~~ +~~~ +6068434 0 254 +~~~ +~~~ +6068436 0 252 +~~~ +~~~ +6068438 0 248 +~~~ +~~~ +6068440 0 240 +~~~ +~~~ +6068442 0 224 +~~~ +~~~ +6068443 0 192 +~~~ +~~~ +6068445 0 128 +~~~ +~~~ +6068447 0 0 +~~~ +~~~ +6068449 0 512 +6068450 homeCount = 98 +6068450 waitCount = 47 +6068451 ripCount = 43 +6068451 locktype1 = 2 +6068452 locktype2 = 7 +6068473 locktype3 = 5 +6068474 goalCount = 5 +6068474 goalTotal = 35 +6068474 otherCount = 50 +~~~ +6068505 32 512 +6068699 DOWN 6 +6068699 0 512 +6072218 UP 10 +6072218 waslock = 0 +6072218 512 512 +6072233 DOWN 10 +6072233 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6072251 0 16777728 +~~~ +~~~ +~~~ +6072254 0 16778752 +~~~ +~~~ +6072256 0 16778240 +6072257 homeCount = 99 +6072257 waitCount = 47 +6072258 ripCount = 43 +6072258 locktype1 = 2 +6072258 locktype2 = 7 +6072259 locktype3 = 5 +6072259 goalCount = 5 +6072260 goalTotal = 35 +6072260 otherCount = 50 +~~~ +6072286 UP 10 +6072286 waslock = 0 +6072286 512 16778240 +~~~ +6072401 512 1024 +6072436 DOWN 10 +6072436 0 1024 +~~~ +~~~ +~~~ +~~~ +6072460 homeCount = 99 +6072460 waitCount = 47 +6072461 ripCount = 43 +6072461 locktype1 = 2 +6072462 locktype2 = 7 +6072462 locktype3 = 5 +6072463 goalCount = 5 +6072463 goalTotal = 35 +6072464 otherCount = 50 +~~~ +6072496 UP 10 +6072496 waslock = 0 +6072496 512 1024 +~~~ +6077367 DOWN 10 +6077367 0 1024 +~~~ +~~~ +~~~ +~~~ +6077388 homeCount = 99 +6077388 waitCount = 47 +6077389 ripCount = 43 +6077389 locktype1 = 2 +6077390 locktype2 = 7 +6077390 locktype3 = 5 +6077391 goalCount = 5 +6077391 goalTotal = 35 +6077392 otherCount = 50 +~~~ +6080272 UP 11 +6080272 1024 1024 +6081281 DOWN 11 +6081281 0 1024 +6081297 UP 11 +6081297 1024 1024 +6086272 BEEP1 +6086272 BEEP2 +~~~ +~~~ +~~~ +6086296 1024 33555456 +~~~ +6086446 1024 1024 +6092798 DOWN 11 +6092798 0 1024 +~~~ +~~~ +6092824 0 0 +~~~ +~~~ +6092826 0 1 +~~~ +~~~ +6092828 0 3 +~~~ +~~~ +6092830 0 7 +~~~ +6092831 UP 11 +6092831 1024 7 +~~~ +~~~ +6092833 1024 15 +~~~ +~~~ +6092835 1024 31 +~~~ +~~~ +6092837 1024 63 +~~~ +6092838 1024 127 +~~~ +~~~ +6092839 1024 255 +6092840 homeCount = 99 +6092841 waitCount = 47 +6092862 ripCount = 44 +6092862 locktype1 = 2 +6092863 locktype2 = 7 +6092863 locktype3 = 5 +6092864 goalCount = 5 +6092864 goalTotal = 35 +6092865 otherCount = 50 +~~~ +6092866 CURRENTGOAL IS [3] +~~~ +6095570 DOWN 11 +6095570 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6095610 homeCount = 99 +6095610 waitCount = 47 +6095611 ripCount = 44 +6095611 locktype1 = 2 +6095612 locktype2 = 7 +6095612 locktype3 = 5 +6095613 goalCount = 5 +6095613 goalTotal = 35 +6095614 otherCount = 50 +~~~ +6095615 CURRENTGOAL IS [3] +~~~ +6095619 UP 11 +6095619 1024 255 +6095697 DOWN 11 +6095697 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6095730 homeCount = 99 +6095730 waitCount = 47 +6095731 ripCount = 44 +6095731 locktype1 = 2 +6095732 locktype2 = 7 +6095732 locktype3 = 5 +6095733 goalCount = 5 +6095733 goalTotal = 35 +6095734 otherCount = 50 +~~~ +6095735 CURRENTGOAL IS [3] +~~~ +6100784 UP 4 +6100784 8 255 +~~~ +~~~ +6101758 DOWN 4 +6101758 0 255 +~~~ +~~~ +6101784 0 254 +~~~ +~~~ +6101785 0 252 +~~~ +~~~ +6101787 0 248 +~~~ +~~~ +6101789 0 240 +~~~ +~~~ +6101791 0 224 +~~~ +~~~ +6101793 0 192 +~~~ +~~~ +6101794 0 128 +~~~ +~~~ +6101796 0 0 +~~~ +~~~ +6101798 0 512 +6101799 homeCount = 99 +6101800 waitCount = 47 +6101800 ripCount = 44 +6101801 locktype1 = 2 +6101801 locktype2 = 7 +6101822 locktype3 = 5 +6101823 goalCount = 5 +6101823 goalTotal = 35 +6101824 otherCount = 51 +~~~ +6101824 8 512 +6101854 DOWN 4 +6101854 0 512 +6106062 UP 10 +6106062 waslock = 0 +6106062 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6106095 512 16777728 +~~~ +6106238 DOWN 10 +6106238 0 16777728 +6106245 0 512 +~~~ +~~~ +6106259 0 2560 +~~~ +~~~ +6106261 0 2048 +6106261 homeCount = 100 +6106262 waitCount = 47 +6106262 ripCount = 44 +6106263 locktype1 = 2 +6106263 locktype2 = 7 +6106264 locktype3 = 5 +6106264 goalCount = 5 +6106265 goalTotal = 35 +6106265 otherCount = 51 +~~~ +6106278 UP 10 +6106279 waslock = 0 +6106278 512 2048 +~~~ +6111719 DOWN 10 +6111719 0 2048 +~~~ +~~~ +~~~ +~~~ +6111739 homeCount = 100 +6111739 waitCount = 47 +6111740 ripCount = 44 +6111740 locktype1 = 2 +6111741 locktype2 = 7 +6111741 locktype3 = 5 +6111742 goalCount = 5 +6111742 goalTotal = 35 +6111743 otherCount = 51 +~~~ +6113476 UP 12 +6113476 2048 2048 +6115635 DOWN 12 +6115635 0 2048 +6115646 UP 12 +6115646 2048 2048 +6116424 DOWN 12 +6116424 0 2048 +6116461 UP 12 +6116461 2048 2048 +6119477 CLICK1 +6119477 CLICK2 +~~~ +~~~ +~~~ +6119497 2048 67110912 +~~~ +6119647 2048 2048 +6127039 DOWN 12 +6127039 0 2048 +~~~ +~~~ +6127056 0 0 +~~~ +~~~ +6127058 0 1 +~~~ +~~~ +6127059 0 3 +~~~ +~~~ +6127061 0 7 +~~~ +~~~ +6127063 0 15 +~~~ +~~~ +6127065 0 31 +~~~ +~~~ +6127067 0 63 +~~~ +~~~ +6127069 0 127 +~~~ +~~~ +6127070 UP 12 +6127070 2048 255 +6127072 homeCount = 100 +6127072 waitCount = 48 +6127073 ripCount = 44 +6127073 locktype1 = 2 +6127074 locktype2 = 7 +6127095 locktype3 = 5 +6127096 goalCount = 5 +6127096 goalTotal = 35 +6127097 otherCount = 51 +~~~ +6127098 CURRENTGOAL IS [3] +~~~ +6127133 DOWN 12 +6127133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6127167 homeCount = 100 +6127167 waitCount = 48 +6127168 ripCount = 44 +6127168 locktype1 = 2 +6127169 locktype2 = 7 +6127169 locktype3 = 5 +6127170 goalCount = 5 +6127170 goalTotal = 35 +6127170 otherCount = 51 +~~~ +6127172 CURRENTGOAL IS [3] +~~~ +6131072 UP 3 +6131072 4 255 +~~~ +~~~ +6131101 outer reward +~~~ +6131102 4 262399 +~~~ +~~~ +6131384 DOWN 3 +6131384 0 262399 +~~~ +~~~ +6131407 0 262398 +~~~ +~~~ +6131409 0 262396 +~~~ +~~~ +6131411 0 262392 +~~~ +~~~ +6131413 0 262384 +~~~ +~~~ +6131415 0 262368 +~~~ +~~~ +6131416 0 262336 +~~~ +6131418 4 262336 +~~~ +~~~ +6131419 4 262272 +~~~ +6131420 4 262144 +~~~ +~~~ +6131422 4 262656 +6131423 homeCount = 100 +6131424 waitCount = 48 +6131445 ripCount = 44 +6131445 locktype1 = 2 +6131446 locktype2 = 7 +6131446 locktype3 = 5 +6131446 goalCount = 6 +6131447 goalTotal = 36 +6131447 otherCount = 51 +~~~ +6131551 4 512 +6131811 DOWN 3 +6131811 0 512 +6131828 4 512 +6131927 DOWN 3 +6131927 0 512 +6131955 4 512 +6132052 DOWN 3 +6132052 0 512 +6132082 4 512 +6132182 DOWN 3 +6132182 0 512 +6132209 4 512 +6132313 DOWN 3 +6132313 0 512 +6132339 4 512 +6132450 DOWN 3 +6132450 0 512 +6132471 4 512 +6132587 DOWN 3 +6132587 0 512 +6132610 4 512 +6132731 DOWN 3 +6132731 0 512 +6132748 4 512 +6133033 DOWN 3 +6133033 0 512 +6133043 4 512 +6138943 DOWN 3 +6138943 0 512 +6138970 4 512 +6139046 DOWN 3 +6139046 0 512 +6139128 4 512 +6139165 DOWN 3 +6139165 0 512 +6143292 UP 10 +6143293 waslock = 0 +6143292 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6143325 512 16777728 +~~~ +6143475 512 512 +6147475 DOWN 10 +6147475 0 512 +~~~ +~~~ +6147499 0 1536 +~~~ +~~~ +6147501 0 1024 +6147502 homeCount = 101 +6147502 waitCount = 48 +6147503 ripCount = 44 +6147503 locktype1 = 2 +6147504 locktype2 = 7 +6147504 locktype3 = 5 +6147505 goalCount = 6 +6147505 goalTotal = 36 +6147506 otherCount = 51 +~~~ +6147549 UP 10 +6147549 waslock = 0 +6147549 512 1024 +~~~ +6147584 DOWN 10 +6147584 0 1024 +~~~ +~~~ +~~~ +~~~ +6147612 homeCount = 101 +6147613 waitCount = 48 +6147613 ripCount = 44 +6147614 locktype1 = 2 +6147614 locktype2 = 7 +6147615 locktype3 = 5 +6147615 goalCount = 6 +6147615 goalTotal = 36 +6147616 otherCount = 51 +~~~ +6149443 UP 11 +6149443 1024 1024 +6151946 DOWN 11 +6151946 0 1024 +6152022 UP 11 +6152022 1024 1024 +6152046 DOWN 11 +6152046 0 1024 +6152082 UP 11 +6152082 1024 1024 +6153249 DOWN 11 +6153249 0 1024 +6153276 UP 11 +6153276 1024 1024 +6157443 BEEP1 +6157443 BEEP2 +~~~ +~~~ +~~~ +6157469 1024 33555456 +~~~ +6157619 1024 1024 +6163143 DOWN 11 +6163142 0 1024 +6163159 UP 11 +6163159 1024 1024 +~~~ +~~~ +6163178 1024 0 +~~~ +~~~ +6163180 1024 1 +~~~ +~~~ +6163182 1024 3 +~~~ +~~~ +6163184 1024 7 +~~~ +~~~ +6163185 1024 15 +~~~ +~~~ +6163187 1024 31 +~~~ +~~~ +6163189 1024 63 +~~~ +~~~ +6163191 1024 127 +~~~ +~~~ +6163193 1024 255 +6163194 homeCount = 101 +6163194 waitCount = 48 +6163195 ripCount = 45 +6163195 locktype1 = 2 +6163216 locktype2 = 7 +6163216 locktype3 = 5 +6163217 goalCount = 6 +6163217 goalTotal = 36 +6163218 otherCount = 51 +~~~ +6163219 CURRENTGOAL IS [3] +~~~ +6163273 DOWN 11 +6163273 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +6163305 UP 11 +6163304 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6163317 homeCount = 101 +6163317 waitCount = 48 +6163318 ripCount = 45 +6163318 locktype1 = 2 +6163319 locktype2 = 7 +6163319 locktype3 = 5 +6163320 goalCount = 6 +6163320 goalTotal = 36 +6163321 otherCount = 51 +~~~ +6163322 CURRENTGOAL IS [3] +~~~ +6167538 DOWN 11 +6167538 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6167575 homeCount = 101 +6167576 waitCount = 48 +6167576 ripCount = 45 +6167577 locktype1 = 2 +6167577 locktype2 = 7 +6167578 locktype3 = 5 +6167578 goalCount = 6 +6167579 goalTotal = 36 +6167579 otherCount = 51 +~~~ +6167580 CURRENTGOAL IS [3] +~~~ +6167605 UP 11 +6167605 1024 255 +6167660 DOWN 11 +6167660 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6167698 homeCount = 101 +6167699 waitCount = 48 +6167700 ripCount = 45 +6167700 locktype1 = 2 +6167701 locktype2 = 7 +6167701 locktype3 = 5 +6167701 goalCount = 6 +6167702 goalTotal = 36 +6167702 otherCount = 51 +~~~ +6167704 CURRENTGOAL IS [3] +~~~ +6174471 UP 2 +6174471 2 255 +~~~ +~~~ +6174897 DOWN 2 +6174897 0 255 +~~~ +~~~ +6174923 0 254 +~~~ +~~~ +6174924 0 252 +~~~ +~~~ +6174926 0 248 +~~~ +~~~ +6174928 0 240 +~~~ +~~~ +6174930 0 224 +~~~ +~~~ +6174932 0 192 +~~~ +~~~ +6174934 0 128 +~~~ +~~~ +6174935 0 0 +~~~ +~~~ +6174937 0 512 +6174938 homeCount = 101 +6174939 waitCount = 48 +6174939 ripCount = 45 +6174940 locktype1 = 2 +6174940 locktype2 = 7 +6174961 locktype3 = 5 +6174962 goalCount = 6 +6174962 goalTotal = 36 +6174963 otherCount = 52 +~~~ +6178638 UP 10 +6178638 waslock = 0 +6178638 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6178661 512 16777728 +~~~ +6178781 DOWN 10 +6178781 0 16777728 +6178796 UP 10 +6178797 waslock = 0 +6178796 512 16777728 +6178811 512 512 +~~~ +~~~ +6178815 512 1536 +~~~ +~~~ +6178817 512 1024 +6178818 homeCount = 102 +6178818 waitCount = 48 +6178819 ripCount = 45 +6178819 locktype1 = 2 +6178820 locktype2 = 7 +6178820 locktype3 = 5 +6178821 goalCount = 6 +6178821 goalTotal = 36 +6178822 otherCount = 52 +~~~ +~~~ +6183138 DOWN 10 +6183138 0 1024 +~~~ +~~~ +~~~ +~~~ +6183158 homeCount = 102 +6183159 waitCount = 48 +6183159 ripCount = 45 +6183160 locktype1 = 2 +6183160 locktype2 = 7 +6183161 locktype3 = 5 +6183161 goalCount = 6 +6183161 goalTotal = 36 +6183162 otherCount = 52 +~~~ +6184941 UP 11 +6184941 1024 1024 +6186798 DOWN 11 +6186798 0 1024 +6186827 UP 11 +6186827 1024 1024 +6187258 DOWN 11 +6187258 0 1024 +6187286 UP 11 +6187286 1024 1024 +6188348 DOWN 11 +6188348 0 1024 +6188360 UP 11 +6188360 1024 1024 +6189441 BEEP1 +6189441 BEEP2 +~~~ +~~~ +~~~ +6189469 1024 33555456 +~~~ +6189619 1024 1024 +6190398 DOWN 11 +6190398 0 1024 +6190417 UP 11 +6190417 1024 1024 +~~~ +~~~ +6190424 1024 0 +~~~ +~~~ +6190426 1024 1 +~~~ +~~~ +6190428 1024 3 +~~~ +~~~ +6190429 1024 7 +~~~ +~~~ +6190431 1024 15 +~~~ +~~~ +6190433 1024 31 +~~~ +~~~ +6190435 1024 63 +~~~ +~~~ +6190437 1024 127 +~~~ +~~~ +6190438 1024 255 +6190439 homeCount = 102 +6190440 waitCount = 48 +6190441 ripCount = 46 +6190441 locktype1 = 2 +6190462 locktype2 = 7 +6190462 locktype3 = 5 +6190463 goalCount = 6 +6190463 goalTotal = 36 +6190464 otherCount = 52 +~~~ +6190465 CURRENTGOAL IS [3] +~~~ +6190523 DOWN 11 +6190523 0 255 +6190528 UP 11 +6190528 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190560 homeCount = 102 +6190561 waitCount = 48 +6190561 ripCount = 46 +6190562 locktype1 = 2 +6190562 locktype2 = 7 +6190563 locktype3 = 5 +6190563 goalCount = 6 +6190564 goalTotal = 36 +6190564 otherCount = 52 +~~~ +6190565 CURRENTGOAL IS [3] +~~~ +6190622 DOWN 11 +6190622 0 255 +~~~ +~~~ +~~~ +6190646 UP 11 +6190646 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190660 homeCount = 102 +6190660 waitCount = 48 +6190661 ripCount = 46 +6190661 locktype1 = 2 +6190662 locktype2 = 7 +6190662 locktype3 = 5 +6190663 goalCount = 6 +6190663 goalTotal = 36 +6190664 otherCount = 52 +~~~ +6190665 CURRENTGOAL IS [3] +~~~ +6190698 DOWN 11 +6190698 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190740 homeCount = 102 +6190741 waitCount = 48 +6190741 ripCount = 46 +6190742 locktype1 = 2 +6190742 locktype2 = 7 +6190743 locktype3 = 5 +6190743 goalCount = 6 +6190744 goalTotal = 36 +6190744 otherCount = 52 +~~~ +6190745 CURRENTGOAL IS [3] +~~~ +6190756 UP 11 +6190756 1024 255 +6190794 DOWN 11 +6190794 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6190830 homeCount = 102 +6190830 waitCount = 48 +6190831 ripCount = 46 +6190831 locktype1 = 2 +6190832 locktype2 = 7 +6190832 locktype3 = 5 +6190833 goalCount = 6 +6190833 goalTotal = 36 +6190834 otherCount = 52 +~~~ +6190835 CURRENTGOAL IS [3] +~~~ +6190983 UP 11 +6190983 1024 255 +6191069 DOWN 11 +6191069 0 255 +6191089 UP 11 +6191089 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6191108 DOWN 11 +6191108 0 255 +~~~ +~~~ +6191110 homeCount = 102 +6191111 waitCount = 48 +6191111 ripCount = 46 +6191112 locktype1 = 2 +6191112 locktype2 = 7 +6191113 locktype3 = 5 +6191113 goalCount = 6 +6191114 goalTotal = 36 +6191114 otherCount = 52 +~~~ +6191115 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6191164 homeCount = 102 +6191165 waitCount = 48 +6191165 ripCount = 46 +6191166 locktype1 = 2 +6191166 locktype2 = 7 +6191167 locktype3 = 5 +6191167 goalCount = 6 +6191168 goalTotal = 36 +6191168 otherCount = 52 +~~~ +6191169 CURRENTGOAL IS [3] +~~~ +6191273 UP 11 +6191273 1024 255 +6198093 DOWN 11 +6198093 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6198130 homeCount = 102 +6198130 waitCount = 48 +6198131 ripCount = 46 +6198131 locktype1 = 2 +6198132 locktype2 = 7 +6198132 locktype3 = 5 +6198133 goalCount = 6 +6198133 goalTotal = 36 +6198134 otherCount = 52 +~~~ +6198135 CURRENTGOAL IS [3] +~~~ +6202523 UP 7 +6202523 64 255 +~~~ +~~~ +6203214 DOWN 7 +6203214 0 255 +~~~ +~~~ +6203234 0 254 +~~~ +~~~ +6203236 0 252 +~~~ +~~~ +6203237 0 248 +~~~ +~~~ +6203239 0 240 +~~~ +~~~ +6203241 0 224 +~~~ +~~~ +6203243 0 192 +~~~ +~~~ +6203245 0 128 +~~~ +~~~ +6203247 0 0 +~~~ +~~~ +6203248 0 512 +6203249 homeCount = 102 +6203250 waitCount = 48 +6203250 ripCount = 46 +6203251 locktype1 = 2 +6203251 locktype2 = 7 +6203273 locktype3 = 5 +6203273 goalCount = 6 +6203274 goalTotal = 36 +6203274 otherCount = 53 +~~~ +6207230 UP 10 +6207230 waslock = 0 +6207230 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6207261 512 16777728 +~~~ +6207411 512 512 +6207527 DOWN 10 +6207527 0 512 +~~~ +~~~ +6207550 0 2560 +~~~ +~~~ +6207551 0 2048 +6207552 homeCount = 103 +6207553 waitCount = 48 +6207553 ripCount = 46 +6207554 locktype1 = 2 +6207554 locktype2 = 7 +6207555 locktype3 = 5 +6207555 goalCount = 6 +6207556 goalTotal = 36 +6207556 otherCount = 53 +~~~ +6207598 UP 10 +6207598 waslock = 0 +6207598 512 2048 +~~~ +6212686 DOWN 10 +6212686 0 2048 +~~~ +~~~ +~~~ +~~~ +6212708 homeCount = 103 +6212709 waitCount = 48 +6212709 ripCount = 46 +6212710 locktype1 = 2 +6212710 locktype2 = 7 +6212711 locktype3 = 5 +6212711 goalCount = 6 +6212712 goalTotal = 36 +6212712 otherCount = 53 +~~~ +6212713 UP 10 +6212713 waslock = 0 +6212713 512 2048 +~~~ +6212776 DOWN 10 +6212775 0 2048 +~~~ +~~~ +~~~ +~~~ +6212795 homeCount = 103 +6212796 waitCount = 48 +6212796 ripCount = 46 +6212797 locktype1 = 2 +6212797 locktype2 = 7 +6212798 locktype3 = 5 +6212798 goalCount = 6 +6212799 goalTotal = 36 +6212799 otherCount = 53 +~~~ +6214555 UP 12 +6214555 2048 2048 +6217353 DOWN 12 +6217353 0 2048 +6217356 UP 12 +6217356 2048 2048 +6217399 DOWN 12 +6217398 0 2048 +6217438 UP 12 +6217438 2048 2048 +6217465 DOWN 12 +6217465 0 2048 +6217505 UP 12 +6217505 2048 2048 +6217817 DOWN 12 +6217817 0 2048 +6217832 UP 12 +6217831 2048 2048 +6219593 DOWN 12 +6219593 0 2048 +6219608 UP 12 +6219608 2048 2048 +6219625 DOWN 12 +6219625 0 2048 +6219676 UP 12 +6219676 2048 2048 +6219797 DOWN 12 +6219797 0 2048 +6219831 UP 12 +6219831 2048 2048 +6219937 DOWN 12 +6219937 0 2048 +6219953 UP 12 +6219953 2048 2048 +6221555 CLICK1 +6221555 CLICK2 +~~~ +~~~ +~~~ +6221572 2048 67110912 +~~~ +6221722 2048 2048 +6227526 DOWN 12 +6227526 0 2048 +~~~ +~~~ +6227551 0 0 +~~~ +6227552 UP 12 +6227552 2048 0 +~~~ +~~~ +6227554 2048 1 +~~~ +~~~ +6227556 2048 3 +~~~ +6227557 2048 7 +~~~ +~~~ +6227559 2048 15 +~~~ +~~~ +6227560 2048 31 +~~~ +~~~ +6227562 2048 63 +~~~ +~~~ +6227564 2048 127 +~~~ +~~~ +6227566 2048 255 +6227567 homeCount = 103 +6227588 waitCount = 49 +6227588 ripCount = 46 +6227589 locktype1 = 2 +6227589 locktype2 = 7 +6227590 locktype3 = 5 +6227590 goalCount = 6 +6227591 goalTotal = 36 +6227591 otherCount = 53 +~~~ +6227592 CURRENTGOAL IS [3] +~~~ +6227652 DOWN 12 +6227652 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227689 homeCount = 103 +6227689 waitCount = 49 +6227690 ripCount = 46 +6227690 locktype1 = 2 +6227691 locktype2 = 7 +6227691 locktype3 = 5 +6227692 goalCount = 6 +6227692 goalTotal = 36 +6227693 otherCount = 53 +~~~ +6227694 CURRENTGOAL IS [3] +~~~ +6227745 UP 12 +6227745 2048 255 +6227816 DOWN 12 +6227816 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227853 homeCount = 103 +6227853 waitCount = 49 +6227854 ripCount = 46 +6227854 locktype1 = 2 +6227855 locktype2 = 7 +6227855 locktype3 = 5 +6227856 goalCount = 6 +6227856 goalTotal = 36 +6227857 otherCount = 53 +~~~ +6227858 CURRENTGOAL IS [3] +~~~ +6227893 UP 12 +6227893 2048 255 +6227926 DOWN 12 +6227926 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6227964 homeCount = 103 +6227965 waitCount = 49 +6227966 ripCount = 46 +6227966 locktype1 = 2 +6227967 locktype2 = 7 +6227967 locktype3 = 5 +6227967 goalCount = 6 +6227968 goalTotal = 36 +6227968 otherCount = 53 +~~~ +6227970 CURRENTGOAL IS [3] +~~~ +6231199 UP 3 +6231199 4 255 +~~~ +~~~ +6231224 outer reward +~~~ +6231224 4 262399 +~~~ +~~~ +6231461 DOWN 3 +6231461 0 262399 +~~~ +~~~ +6231481 0 262398 +~~~ +~~~ +6231483 0 262396 +~~~ +~~~ +6231484 0 262392 +~~~ +~~~ +6231486 0 262384 +~~~ +~~~ +6231488 0 262368 +~~~ +~~~ +6231490 0 262336 +~~~ +~~~ +6231492 0 262272 +~~~ +~~~ +6231493 0 262144 +~~~ +~~~ +6231495 0 262656 +6231496 homeCount = 103 +6231497 waitCount = 49 +6231497 ripCount = 46 +6231498 locktype1 = 2 +6231519 locktype2 = 7 +6231519 locktype3 = 5 +6231520 goalCount = 7 +6231520 goalTotal = 37 +6231521 otherCount = 53 +~~~ +6231521 4 262656 +6231674 4 512 +6232282 DOWN 3 +6232282 0 512 +6232288 4 512 +6232415 DOWN 3 +6232415 0 512 +6232423 4 512 +6232682 DOWN 3 +6232682 0 512 +6232691 4 512 +6232821 DOWN 3 +6232821 0 512 +6232830 4 512 +6239654 DOWN 3 +6239654 0 512 +6239693 4 512 +6239759 DOWN 3 +6239759 0 512 +6243665 UP 10 +6243665 waslock = 0 +6243665 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6243697 512 16777728 +~~~ +6243847 512 512 +6247688 DOWN 10 +6247688 0 512 +~~~ +~~~ +6247711 0 2560 +~~~ +~~~ +6247713 0 2048 +6247714 homeCount = 104 +6247714 waitCount = 49 +6247715 ripCount = 46 +6247715 locktype1 = 2 +6247716 locktype2 = 7 +6247716 locktype3 = 5 +6247717 goalCount = 7 +6247717 goalTotal = 37 +6247718 otherCount = 53 +~~~ +6247723 UP 10 +6247723 waslock = 0 +6247723 512 2048 +~~~ +6247911 DOWN 10 +6247911 0 2048 +6247926 UP 10 +6247926 waslock = 0 +6247926 512 2048 +~~~ +~~~ +~~~ +~~~ +6247936 homeCount = 104 +6247937 waitCount = 49 +6247937 ripCount = 46 +6247938 locktype1 = 2 +6247938 locktype2 = 7 +6247939 locktype3 = 5 +6247939 goalCount = 7 +6247940 goalTotal = 37 +6247940 otherCount = 53 +~~~ +6247944 DOWN 10 +6247944 0 2048 +~~~ +6247985 UP 10 +6247986 waslock = 0 +6247985 512 2048 +~~~ +~~~ +~~~ +~~~ +6247991 homeCount = 104 +6247992 waitCount = 49 +6247992 ripCount = 46 +6247993 locktype1 = 2 +6247993 locktype2 = 7 +6247994 locktype3 = 5 +6247994 goalCount = 7 +6247995 goalTotal = 37 +6247995 otherCount = 53 +~~~ +~~~ +6248478 DOWN 10 +6248478 0 2048 +~~~ +~~~ +~~~ +~~~ +6248498 homeCount = 104 +6248498 waitCount = 49 +6248499 ripCount = 46 +6248499 locktype1 = 2 +6248499 locktype2 = 7 +6248500 locktype3 = 5 +6248500 goalCount = 7 +6248501 goalTotal = 37 +6248501 otherCount = 53 +~~~ +6250170 UP 12 +6250170 2048 2048 +6253007 DOWN 12 +6253007 0 2048 +6253018 UP 12 +6253018 2048 2048 +6253170 CLICK1 +6253170 CLICK2 +~~~ +~~~ +~~~ +6253198 2048 67110912 +~~~ +6253274 DOWN 12 +6253274 0 67110912 +6253295 UP 12 +6253295 2048 67110912 +6253348 2048 2048 +~~~ +~~~ +6253374 2048 0 +~~~ +~~~ +6253376 2048 1 +~~~ +~~~ +6253378 2048 3 +~~~ +~~~ +6253380 2048 7 +~~~ +~~~ +6253382 2048 15 +~~~ +~~~ +6253384 2048 31 +~~~ +~~~ +6253385 2048 63 +~~~ +~~~ +6253387 2048 127 +~~~ +~~~ +6253389 2048 255 +6253390 homeCount = 104 +6253390 waitCount = 50 +6253391 ripCount = 46 +6253392 locktype1 = 2 +6253412 locktype2 = 7 +6253413 locktype3 = 5 +6253413 goalCount = 7 +6253414 goalTotal = 37 +6253414 otherCount = 53 +~~~ +6253415 CURRENTGOAL IS [3] +~~~ +6253465 DOWN 12 +6253465 0 255 +6253469 UP 12 +6253469 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6253503 homeCount = 104 +6253504 waitCount = 50 +6253504 ripCount = 46 +6253505 locktype1 = 2 +6253505 locktype2 = 7 +6253506 locktype3 = 5 +6253506 goalCount = 7 +6253507 goalTotal = 37 +6253507 otherCount = 53 +~~~ +6253508 CURRENTGOAL IS [3] +~~~ +6259155 DOWN 12 +6259155 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259190 UP 12 +6259190 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +6259195 homeCount = 104 +6259196 waitCount = 50 +6259196 ripCount = 46 +6259197 locktype1 = 2 +6259197 locktype2 = 7 +6259198 locktype3 = 5 +6259198 goalCount = 7 +6259199 goalTotal = 37 +6259199 otherCount = 53 +~~~ +6259200 CURRENTGOAL IS [3] +~~~ +6259288 DOWN 12 +6259288 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259323 homeCount = 104 +6259324 waitCount = 50 +6259324 ripCount = 46 +6259325 locktype1 = 2 +6259325 locktype2 = 7 +6259326 locktype3 = 5 +6259326 goalCount = 7 +6259326 goalTotal = 37 +6259327 otherCount = 53 +~~~ +6259328 CURRENTGOAL IS [3] +~~~ +6259354 UP 12 +6259354 2048 255 +6259423 DOWN 12 +6259423 0 255 +6259433 UP 12 +6259433 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259464 homeCount = 104 +6259464 waitCount = 50 +6259465 ripCount = 46 +6259465 locktype1 = 2 +6259466 locktype2 = 7 +6259466 locktype3 = 5 +6259467 goalCount = 7 +6259467 goalTotal = 37 +6259468 otherCount = 53 +~~~ +6259469 CURRENTGOAL IS [3] +~~~ +6259556 DOWN 12 +6259556 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6259593 homeCount = 104 +6259593 waitCount = 50 +6259594 ripCount = 46 +6259594 locktype1 = 2 +6259595 locktype2 = 7 +6259595 locktype3 = 5 +6259596 goalCount = 7 +6259596 goalTotal = 37 +6259597 otherCount = 53 +~~~ +6259598 CURRENTGOAL IS [3] +~~~ +6259605 UP 12 +6259605 2048 255 +6262944 DOWN 12 +6262944 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6262983 homeCount = 104 +6262984 waitCount = 50 +6262984 ripCount = 46 +6262985 locktype1 = 2 +6262985 locktype2 = 7 +6262986 locktype3 = 5 +6262986 goalCount = 7 +6262987 goalTotal = 37 +6262987 otherCount = 53 +~~~ +6262988 CURRENTGOAL IS [3] +~~~ +6263015 UP 12 +6263015 2048 255 +6263063 DOWN 12 +6263063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6263105 homeCount = 104 +6263106 waitCount = 50 +6263106 ripCount = 46 +6263107 locktype1 = 2 +6263107 locktype2 = 7 +6263108 locktype3 = 5 +6263108 goalCount = 7 +6263109 goalTotal = 37 +6263109 otherCount = 53 +~~~ +6263110 CURRENTGOAL IS [3] +~~~ +6267639 UP 3 +6267639 4 255 +~~~ +~~~ +6267661 outer reward +~~~ +6267661 4 262399 +~~~ +~~~ +6267664 DOWN 3 +6267664 0 262399 +~~~ +~~~ +6267681 0 262398 +~~~ +~~~ +6267683 0 262396 +~~~ +~~~ +6267685 0 262392 +~~~ +~~~ +6267687 0 262384 +~~~ +~~~ +6267688 0 262368 +~~~ +~~~ +6267690 0 262336 +~~~ +~~~ +6267692 0 262272 +~~~ +~~~ +6267694 0 262144 +~~~ +~~~ +6267696 0 262656 +6267697 homeCount = 104 +6267697 waitCount = 50 +6267698 ripCount = 46 +6267719 locktype1 = 2 +6267719 locktype2 = 7 +6267720 locktype3 = 5 +6267720 goalCount = 8 +6267721 goalTotal = 38 +6267721 otherCount = 53 +~~~ +6267722 4 262656 +6267864 DOWN 3 +6267864 0 262656 +6267907 4 262656 +6268111 4 512 +6268292 DOWN 3 +6268292 0 512 +6268311 4 512 +6268414 DOWN 3 +6268414 0 512 +6268420 4 512 +6268533 DOWN 3 +6268533 0 512 +6268554 4 512 +6268660 DOWN 3 +6268660 0 512 +6268682 4 512 +6268788 DOWN 3 +6268788 0 512 +6268816 4 512 +6268915 DOWN 3 +6268915 0 512 +6268939 4 512 +6269056 DOWN 3 +6269056 0 512 +6269079 4 512 +6269201 DOWN 3 +6269201 0 512 +6269219 4 512 +6269342 DOWN 3 +6269342 0 512 +6269357 4 512 +6275261 DOWN 3 +6275261 0 512 +6275326 4 512 +6275364 DOWN 3 +6275364 0 512 +6279323 UP 10 +6279324 waslock = 0 +6279323 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6279349 512 16777728 +~~~ +6279499 512 512 +6279523 DOWN 10 +6279523 0 512 +~~~ +~~~ +6279540 0 2560 +~~~ +~~~ +6279542 0 2048 +6279543 homeCount = 105 +6279544 waitCount = 50 +6279544 ripCount = 46 +6279545 locktype1 = 2 +6279545 locktype2 = 7 +6279546 locktype3 = 5 +6279546 goalCount = 8 +6279547 goalTotal = 38 +6279547 otherCount = 53 +~~~ +6279555 UP 10 +6279556 waslock = 0 +6279555 512 2048 +~~~ +6284324 DOWN 10 +6284324 0 2048 +~~~ +~~~ +~~~ +~~~ +6284344 homeCount = 105 +6284345 waitCount = 50 +6284345 ripCount = 46 +6284346 locktype1 = 2 +6284346 locktype2 = 7 +6284346 locktype3 = 5 +6284347 goalCount = 8 +6284347 goalTotal = 38 +6284348 otherCount = 53 +~~~ +6286304 UP 12 +6286304 2048 2048 +6287753 DOWN 12 +6287753 0 2048 +6287762 UP 12 +6287762 2048 2048 +6288087 DOWN 12 +6288087 0 2048 +6288126 UP 12 +6288126 2048 2048 +6291804 CLICK1 +6291804 CLICK2 +~~~ +~~~ +~~~ +6291824 2048 67110912 +~~~ +6291974 2048 2048 +6292013 DOWN 12 +6292013 0 2048 +~~~ +6292031 UP 12 +6292031 2048 2048 +~~~ +~~~ +6292033 2048 0 +~~~ +~~~ +6292035 2048 1 +~~~ +6292036 2048 3 +~~~ +~~~ +6292037 2048 7 +~~~ +~~~ +6292039 2048 15 +~~~ +~~~ +6292041 2048 31 +~~~ +~~~ +6292043 2048 63 +~~~ +~~~ +6292044 2048 127 +~~~ +~~~ +6292046 2048 255 +6292047 homeCount = 105 +6292069 waitCount = 51 +6292069 ripCount = 46 +6292069 locktype1 = 2 +6292070 locktype2 = 7 +6292070 locktype3 = 5 +6292071 goalCount = 8 +6292071 goalTotal = 38 +6292072 otherCount = 53 +~~~ +6292073 CURRENTGOAL IS [3] +~~~ +6303041 DOWN 12 +6303041 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6303078 homeCount = 105 +6303078 waitCount = 51 +6303079 ripCount = 46 +6303079 locktype1 = 2 +6303080 locktype2 = 7 +6303080 locktype3 = 5 +6303081 goalCount = 8 +6303081 goalTotal = 38 +6303082 otherCount = 53 +~~~ +6303083 CURRENTGOAL IS [3] +~~~ +6315313 UP 3 +6315313 4 255 +~~~ +~~~ +6315334 outer reward +~~~ +6315334 4 262399 +~~~ +~~~ +6315575 DOWN 3 +6315575 0 262399 +~~~ +~~~ +6315601 0 262398 +~~~ +~~~ +6315603 0 262396 +~~~ +~~~ +6315605 0 262392 +~~~ +~~~ +6315607 0 262384 +~~~ +~~~ +6315609 0 262368 +~~~ +~~~ +6315610 0 262336 +~~~ +~~~ +6315612 0 262272 +~~~ +~~~ +6315614 0 262144 +~~~ +~~~ +6315616 0 262656 +6315617 homeCount = 105 +6315618 waitCount = 51 +6315618 ripCount = 46 +6315618 locktype1 = 2 +6315639 locktype2 = 7 +6315640 locktype3 = 5 +6315640 goalCount = 9 +6315641 goalTotal = 39 +6315641 otherCount = 53 +~~~ +6315642 4 262656 +6315784 4 512 +6316000 DOWN 3 +6316000 0 512 +6316026 4 512 +6316119 DOWN 3 +6316119 0 512 +6316154 4 512 +6316241 DOWN 3 +6316241 0 512 +6316280 4 512 +6316365 DOWN 3 +6316365 0 512 +6316407 4 512 +6316494 DOWN 3 +6316494 0 512 +6316535 4 512 +6316625 DOWN 3 +6316625 0 512 +6316661 4 512 +6316759 DOWN 3 +6316759 0 512 +6316793 4 512 +6316912 DOWN 3 +6316912 0 512 +6316933 4 512 +6317060 DOWN 3 +6317060 0 512 +6317083 4 512 +6317210 DOWN 3 +6317210 0 512 +6317225 4 512 +6317355 DOWN 3 +6317355 0 512 +6317371 4 512 +6320953 DOWN 3 +6320953 0 512 +6320959 4 512 +6323512 DOWN 3 +6323512 0 512 +6323580 4 512 +6323594 DOWN 3 +6323594 0 512 +6329005 UP 10 +6329005 waslock = 0 +6329005 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6329038 512 16777728 +~~~ +6329156 DOWN 10 +6329156 0 16777728 +~~~ +~~~ +6329185 0 16779776 +~~~ +~~~ +6329187 0 16779264 +6329188 homeCount = 106 +6329189 waitCount = 51 +6329189 ripCount = 46 +6329190 locktype1 = 2 +6329190 locktype2 = 7 +6329191 locktype3 = 5 +6329191 goalCount = 9 +6329192 goalTotal = 39 +6329192 otherCount = 53 +~~~ +6329213 UP 10 +6329214 waslock = 0 +6329213 512 2048 +~~~ +6333127 DOWN 10 +6333127 0 2048 +~~~ +~~~ +~~~ +~~~ +6333148 homeCount = 106 +6333149 waitCount = 51 +6333149 ripCount = 46 +6333150 locktype1 = 2 +6333150 locktype2 = 7 +6333151 locktype3 = 5 +6333151 goalCount = 9 +6333151 goalTotal = 39 +6333152 otherCount = 53 +~~~ +6334853 UP 12 +6334853 2048 2048 +6336358 DOWN 12 +6336358 0 2048 +6336394 UP 12 +6336394 2048 2048 +6336421 DOWN 12 +6336421 0 2048 +6336448 UP 12 +6336448 2048 2048 +6339836 DOWN 12 +6339836 0 2048 +6339849 UP 12 +6339849 2048 2048 +6340353 CLICK1 +6340353 CLICK2 +~~~ +~~~ +~~~ +6340372 2048 67110912 +~~~ +6340522 2048 2048 +6348413 DOWN 12 +6348413 0 2048 +~~~ +~~~ +6348439 0 0 +~~~ +~~~ +6348441 0 1 +~~~ +~~~ +6348442 0 3 +~~~ +~~~ +6348444 0 7 +~~~ +~~~ +6348446 0 15 +~~~ +~~~ +6348448 0 31 +~~~ +~~~ +6348450 0 63 +~~~ +~~~ +6348452 0 127 +~~~ +~~~ +6348453 0 255 +6348454 homeCount = 106 +6348455 waitCount = 52 +6348455 ripCount = 46 +6348456 locktype1 = 2 +6348456 locktype2 = 7 +6348478 locktype3 = 5 +6348478 goalCount = 9 +6348479 goalTotal = 39 +6348479 otherCount = 53 +~~~ +6348480 CURRENTGOAL IS [3] +~~~ +6348481 UP 12 +6348481 2048 255 +6348533 DOWN 12 +6348533 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6348567 homeCount = 106 +6348567 waitCount = 52 +6348568 ripCount = 46 +6348568 locktype1 = 2 +6348569 locktype2 = 7 +6348569 locktype3 = 5 +6348570 goalCount = 9 +6348570 goalTotal = 39 +6348571 otherCount = 53 +~~~ +6348572 CURRENTGOAL IS [3] +~~~ +6348593 UP 12 +6348593 2048 255 +6348632 DOWN 12 +6348631 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6348670 homeCount = 106 +6348671 waitCount = 52 +6348671 ripCount = 46 +6348672 locktype1 = 2 +6348672 locktype2 = 7 +6348673 locktype3 = 5 +6348673 goalCount = 9 +6348674 goalTotal = 39 +6348674 otherCount = 53 +~~~ +6348675 CURRENTGOAL IS [3] +~~~ +6348773 UP 12 +6348773 2048 255 +6349353 DOWN 12 +6349352 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6349389 homeCount = 106 +6349389 waitCount = 52 +6349390 ripCount = 46 +6349390 locktype1 = 2 +6349391 locktype2 = 7 +6349391 locktype3 = 5 +6349392 goalCount = 9 +6349392 goalTotal = 39 +6349393 otherCount = 53 +~~~ +6349394 CURRENTGOAL IS [3] +~~~ +6349471 UP 12 +6349471 2048 255 +6349488 DOWN 12 +6349488 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6349526 homeCount = 106 +6349527 waitCount = 52 +6349528 ripCount = 46 +6349528 locktype1 = 2 +6349529 locktype2 = 7 +6349529 locktype3 = 5 +6349529 goalCount = 9 +6349530 goalTotal = 39 +6349530 otherCount = 53 +~~~ +6349531 CURRENTGOAL IS [3] +~~~ +6352357 UP 3 +6352357 4 255 +6352373 DOWN 3 +6352373 0 255 +~~~ +~~~ +6352379 outer reward +~~~ +6352379 0 262399 +~~~ +~~~ +6352384 outerreps = 8 +~~~ +~~~ +~~~ +~~~ +6352397 0 262398 +~~~ +~~~ +6352399 0 262396 +~~~ +~~~ +6352401 0 262392 +~~~ +~~~ +6352403 0 262384 +~~~ +~~~ +6352404 0 262368 +~~~ +~~~ +6352406 0 262336 +~~~ +~~~ +6352408 0 262272 +~~~ +~~~ +6352410 0 262144 +~~~ +~~~ +6352412 0 262656 +6352413 homeCount = 106 +6352413 waitCount = 52 +6352414 ripCount = 46 +6352435 locktype1 = 2 +6352435 locktype2 = 7 +6352436 locktype3 = 5 +6352436 goalCount = 0 +6352437 goalTotal = 40 +6352437 otherCount = 53 +~~~ +6352438 4 262656 +6352613 DOWN 3 +6352613 0 262656 +6352654 4 262656 +6352829 4 512 +6353457 DOWN 3 +6353457 0 512 +6353469 4 512 +6353587 DOWN 3 +6353587 0 512 +6353600 4 512 +6353729 DOWN 3 +6353729 0 512 +6353735 4 512 +6353868 DOWN 3 +6353868 0 512 +6353873 4 512 +6360563 DOWN 3 +6360563 0 512 +6364715 UP 10 +6364715 waslock = 0 +6364715 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6364745 512 16777728 +~~~ +6364878 DOWN 10 +6364878 0 16777728 +6364892 UP 10 +6364892 waslock = 0 +6364891 512 16777728 +6364895 512 512 +~~~ +~~~ +6364910 512 2560 +~~~ +~~~ +6364912 512 2048 +6364913 homeCount = 107 +6364913 waitCount = 52 +6364914 ripCount = 46 +6364914 locktype1 = 2 +6364915 locktype2 = 7 +6364915 locktype3 = 5 +6364916 goalCount = 0 +6364916 goalTotal = 40 +6364917 otherCount = 53 +~~~ +~~~ +6367991 DOWN 10 +6367991 0 2048 +6368002 UP 10 +6368002 waslock = 0 +6368002 512 2048 +~~~ +~~~ +~~~ +~~~ +6368025 homeCount = 107 +6368026 waitCount = 52 +6368026 ripCount = 46 +6368027 locktype1 = 2 +6368027 locktype2 = 7 +6368028 locktype3 = 5 +6368028 goalCount = 0 +6368029 goalTotal = 40 +6368029 otherCount = 53 +~~~ +~~~ +6368090 DOWN 10 +6368090 0 2048 +~~~ +~~~ +~~~ +~~~ +6368115 homeCount = 107 +6368116 waitCount = 52 +6368116 ripCount = 46 +6368117 locktype1 = 2 +6368117 locktype2 = 7 +6368118 locktype3 = 5 +6368118 goalCount = 0 +6368119 goalTotal = 40 +6368119 otherCount = 53 +~~~ +6369955 UP 12 +6369955 2048 2048 +6370697 DOWN 12 +6370697 0 2048 +6370710 UP 12 +6370710 2048 2048 +6372380 DOWN 12 +6372380 0 2048 +6372417 UP 12 +6372417 2048 2048 +6372446 DOWN 12 +6372446 0 2048 +6372474 UP 12 +6372474 2048 2048 +6373955 CLICK1 +6373955 CLICK2 +~~~ +~~~ +~~~ +6373985 2048 67110912 +~~~ +6374135 2048 2048 +6381542 DOWN 12 +6381542 0 2048 +~~~ +~~~ +6381563 0 0 +~~~ +~~~ +6381564 0 1 +~~~ +~~~ +6381566 0 3 +~~~ +~~~ +6381568 0 7 +~~~ +~~~ +6381570 0 15 +~~~ +~~~ +6381572 0 31 +~~~ +~~~ +6381574 0 63 +~~~ +~~~ +6381575 0 127 +~~~ +~~~ +6381577 0 255 +6381578 homeCount = 107 +6381579 waitCount = 53 +6381579 ripCount = 46 +6381580 locktype1 = 2 +6381580 locktype2 = 7 +6381581 locktype3 = 5 +6381602 goalCount = 0 +6381602 goalTotal = 40 +6381603 otherCount = 53 +~~~ +6381604 CURRENTGOAL IS [7] +~~~ +6381604 UP 12 +6381604 2048 255 +6381673 DOWN 12 +6381673 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6381708 homeCount = 107 +6381709 waitCount = 53 +6381709 ripCount = 46 +6381710 locktype1 = 2 +6381710 locktype2 = 7 +6381711 locktype3 = 5 +6381711 goalCount = 0 +6381712 goalTotal = 40 +6381712 otherCount = 53 +~~~ +6381713 CURRENTGOAL IS [7] +~~~ +6381775 UP 12 +6381775 2048 255 +6383359 DOWN 12 +6383359 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6383398 homeCount = 107 +6383399 waitCount = 53 +6383399 ripCount = 46 +6383400 locktype1 = 2 +6383400 locktype2 = 7 +6383401 locktype3 = 5 +6383401 goalCount = 0 +6383402 goalTotal = 40 +6383402 otherCount = 53 +~~~ +6383403 CURRENTGOAL IS [7] +~~~ +6383439 UP 12 +6383439 2048 255 +6383453 DOWN 12 +6383453 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6383489 homeCount = 107 +6383490 waitCount = 53 +6383490 ripCount = 46 +6383491 locktype1 = 2 +6383491 locktype2 = 7 +6383492 locktype3 = 5 +6383492 goalCount = 0 +6383492 goalTotal = 40 +6383493 otherCount = 53 +~~~ +6383494 CURRENTGOAL IS [7] +~~~ +6386266 UP 3 +6386266 4 255 +~~~ +~~~ +6386457 DOWN 3 +6386457 0 255 +~~~ +~~~ +6386481 0 254 +~~~ +~~~ +6386483 0 252 +~~~ +~~~ +6386485 0 248 +~~~ +~~~ +6386486 0 240 +~~~ +~~~ +6386488 0 224 +~~~ +~~~ +6386490 0 192 +~~~ +~~~ +6386492 0 128 +~~~ +~~~ +6386494 0 0 +~~~ +~~~ +6386496 0 512 +6386497 homeCount = 107 +6386497 waitCount = 53 +6386498 ripCount = 46 +6386498 locktype1 = 2 +6386499 locktype2 = 7 +6386520 locktype3 = 5 +6386520 goalCount = 0 +6386521 goalTotal = 40 +6386521 otherCount = 54 +~~~ +6386522 4 512 +6387215 DOWN 3 +6387215 0 512 +6387280 4 512 +6387330 DOWN 3 +6387330 0 512 +6391562 UP 10 +6391563 waslock = 0 +6391562 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6391588 512 16777728 +~~~ +6391612 DOWN 10 +6391612 0 16777728 +~~~ +~~~ +6391632 0 16779776 +~~~ +~~~ +6391634 0 16779264 +6391635 homeCount = 108 +6391635 waitCount = 53 +6391636 ripCount = 46 +6391636 locktype1 = 2 +6391637 locktype2 = 7 +6391637 locktype3 = 5 +6391638 goalCount = 0 +6391638 goalTotal = 40 +6391639 otherCount = 54 +~~~ +6391738 0 2048 +6391756 UP 10 +6391757 waslock = 0 +6391756 512 2048 +~~~ +6396193 DOWN 10 +6396193 0 2048 +~~~ +~~~ +6396213 UP 10 +6396213 waslock = 0 +6396213 512 2048 +~~~ +~~~ +6396215 homeCount = 108 +6396216 waitCount = 53 +6396216 ripCount = 46 +6396217 locktype1 = 2 +6396217 locktype2 = 7 +6396218 locktype3 = 5 +6396218 goalCount = 0 +6396219 goalTotal = 40 +6396219 otherCount = 54 +~~~ +~~~ +6396293 DOWN 10 +6396293 0 2048 +~~~ +~~~ +~~~ +~~~ +6396321 homeCount = 108 +6396321 waitCount = 53 +6396322 ripCount = 46 +6396322 locktype1 = 2 +6396323 locktype2 = 7 +6396323 locktype3 = 5 +6396324 goalCount = 0 +6396324 goalTotal = 40 +6396325 otherCount = 54 +~~~ +6398084 UP 12 +6398084 2048 2048 +6400258 DOWN 12 +6400258 0 2048 +6400290 UP 12 +6400289 2048 2048 +6400802 DOWN 12 +6400802 0 2048 +6400821 UP 12 +6400821 2048 2048 +6403585 CLICK1 +6403585 CLICK2 +~~~ +~~~ +~~~ +6403609 2048 67110912 +~~~ +6403759 2048 2048 +6410651 DOWN 12 +6410651 0 2048 +~~~ +~~~ +6410669 0 0 +~~~ +~~~ +6410670 0 1 +~~~ +~~~ +6410672 0 3 +~~~ +~~~ +6410674 0 7 +~~~ +~~~ +6410676 0 15 +~~~ +~~~ +6410678 0 31 +~~~ +~~~ +6410680 0 63 +~~~ +~~~ +6410681 0 127 +~~~ +~~~ +6410683 0 255 +6410684 homeCount = 108 +6410685 waitCount = 54 +6410685 ripCount = 46 +6410686 locktype1 = 2 +6410686 locktype2 = 7 +6410707 locktype3 = 5 +6410708 goalCount = 0 +6410708 goalTotal = 40 +6410709 otherCount = 54 +~~~ +6410710 CURRENTGOAL IS [7] +~~~ +6410710 UP 12 +6410710 2048 255 +6410790 DOWN 12 +6410790 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6410827 homeCount = 108 +6410827 waitCount = 54 +6410828 ripCount = 46 +6410828 locktype1 = 2 +6410829 locktype2 = 7 +6410829 locktype3 = 5 +6410830 goalCount = 0 +6410830 goalTotal = 40 +6410831 otherCount = 54 +~~~ +6410832 CURRENTGOAL IS [7] +~~~ +6410869 UP 12 +6410869 2048 255 +6410882 DOWN 12 +6410882 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6410918 homeCount = 108 +6410919 waitCount = 54 +6410919 ripCount = 46 +6410920 locktype1 = 2 +6410920 locktype2 = 7 +6410921 locktype3 = 5 +6410921 goalCount = 0 +6410922 goalTotal = 40 +6410922 otherCount = 54 +~~~ +6410923 CURRENTGOAL IS [7] +~~~ +6411007 UP 12 +6411007 2048 255 +6412314 DOWN 12 +6412314 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412351 UP 12 +6412351 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412357 homeCount = 108 +6412358 waitCount = 54 +6412358 ripCount = 46 +6412359 locktype1 = 2 +6412359 locktype2 = 7 +6412360 locktype3 = 5 +6412360 goalCount = 0 +6412361 goalTotal = 40 +6412361 otherCount = 54 +~~~ +6412362 CURRENTGOAL IS [7] +~~~ +6412418 DOWN 12 +6412418 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6412457 homeCount = 108 +6412458 waitCount = 54 +6412458 ripCount = 46 +6412459 locktype1 = 2 +6412459 locktype2 = 7 +6412460 locktype3 = 5 +6412460 goalCount = 0 +6412461 goalTotal = 40 +6412461 otherCount = 54 +~~~ +6412462 CURRENTGOAL IS [7] +~~~ +6416338 UP 3 +6416338 4 255 +~~~ +~~~ +6417568 DOWN 3 +6417568 0 255 +~~~ +~~~ +6417592 0 254 +~~~ +~~~ +6417594 0 252 +~~~ +~~~ +6417596 0 248 +~~~ +~~~ +6417597 0 240 +~~~ +~~~ +6417599 0 224 +~~~ +~~~ +6417601 0 192 +~~~ +~~~ +6417603 0 128 +~~~ +~~~ +6417605 0 0 +~~~ +~~~ +6417607 0 512 +6417608 homeCount = 108 +6417608 waitCount = 54 +6417609 ripCount = 46 +6417609 locktype1 = 2 +6417610 locktype2 = 7 +6417631 locktype3 = 5 +6417631 goalCount = 0 +6417632 goalTotal = 40 +6417632 otherCount = 55 +~~~ +6417933 4 512 +6418142 DOWN 3 +6418142 0 512 +6421661 UP 10 +6421661 waslock = 0 +6421661 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6421689 512 16777728 +~~~ +6421839 512 512 +6425407 DOWN 10 +6425407 0 512 +~~~ +~~~ +6425434 0 2560 +~~~ +~~~ +6425436 0 2048 +6425437 homeCount = 109 +6425437 waitCount = 54 +6425438 ripCount = 46 +6425438 locktype1 = 2 +6425439 locktype2 = 7 +6425439 locktype3 = 5 +6425440 goalCount = 0 +6425440 goalTotal = 40 +6425441 otherCount = 55 +~~~ +6425446 UP 10 +6425446 waslock = 0 +6425446 512 2048 +~~~ +6425482 DOWN 10 +6425482 0 2048 +~~~ +~~~ +~~~ +~~~ +6425507 homeCount = 109 +6425508 waitCount = 54 +6425508 ripCount = 46 +6425509 locktype1 = 2 +6425509 locktype2 = 7 +6425510 locktype3 = 5 +6425510 goalCount = 0 +6425511 goalTotal = 40 +6425511 otherCount = 55 +~~~ +6427001 UP 12 +6427001 2048 2048 +6428272 DOWN 12 +6428272 0 2048 +6428389 UP 12 +6428389 2048 2048 +6429840 DOWN 12 +6429840 0 2048 +6429852 UP 12 +6429852 2048 2048 +6429884 DOWN 12 +6429884 0 2048 +6429912 UP 12 +6429912 2048 2048 +6430001 CLICK1 +6430001 CLICK2 +~~~ +~~~ +~~~ +6430025 2048 67110912 +~~~ +6430175 2048 2048 +6437146 DOWN 12 +6437145 0 2048 +~~~ +~~~ +6437173 0 0 +~~~ +~~~ +6437175 0 1 +~~~ +~~~ +6437176 0 3 +~~~ +~~~ +6437178 0 7 +~~~ +~~~ +6437180 0 15 +~~~ +~~~ +6437182 0 31 +~~~ +~~~ +6437184 0 63 +~~~ +~~~ +6437186 0 127 +~~~ +~~~ +6437187 0 255 +6437188 homeCount = 109 +6437189 waitCount = 55 +6437189 ripCount = 46 +6437190 locktype1 = 2 +6437190 locktype2 = 7 +6437191 locktype3 = 5 +6437212 goalCount = 0 +6437212 goalTotal = 40 +6437213 otherCount = 55 +~~~ +6437214 CURRENTGOAL IS [7] +~~~ +6448275 UP 1 +6448275 1 255 +~~~ +~~~ +6449347 DOWN 1 +6449347 0 255 +~~~ +~~~ +6449367 0 254 +~~~ +~~~ +6449369 0 252 +~~~ +~~~ +6449371 0 248 +~~~ +~~~ +6449373 0 240 +~~~ +~~~ +6449375 0 224 +~~~ +~~~ +6449376 0 192 +~~~ +~~~ +6449378 0 128 +~~~ +~~~ +6449380 0 0 +~~~ +~~~ +6449382 0 512 +6449383 homeCount = 109 +6449384 waitCount = 55 +6449384 ripCount = 46 +6449384 locktype1 = 2 +6449385 locktype2 = 7 +6449405 locktype3 = 5 +6449406 goalCount = 0 +6449406 goalTotal = 40 +6449407 otherCount = 56 +~~~ +6457553 UP 10 +6457553 waslock = 0 +6457553 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6457583 512 16777728 +~~~ +6457733 512 512 +6457762 DOWN 10 +6457762 0 512 +6457777 UP 10 +6457778 waslock = 0 +6457777 512 512 +~~~ +~~~ +6457799 512 2560 +~~~ +~~~ +6457801 512 2048 +6457802 homeCount = 110 +6457802 waitCount = 55 +6457803 ripCount = 46 +6457803 locktype1 = 2 +6457804 locktype2 = 7 +6457804 locktype3 = 5 +6457805 goalCount = 0 +6457805 goalTotal = 40 +6457806 otherCount = 56 +~~~ +~~~ +6463809 DOWN 10 +6463809 0 2048 +~~~ +~~~ +~~~ +~~~ +6463830 homeCount = 110 +6463831 waitCount = 55 +6463831 ripCount = 46 +6463832 locktype1 = 2 +6463832 locktype2 = 7 +6463833 locktype3 = 5 +6463833 goalCount = 0 +6463833 goalTotal = 40 +6463834 otherCount = 56 +~~~ +6463835 UP 10 +6463835 waslock = 0 +6463835 512 2048 +~~~ +6463903 DOWN 10 +6463903 0 2048 +~~~ +~~~ +~~~ +~~~ +6463930 homeCount = 110 +6463930 waitCount = 55 +6463931 ripCount = 46 +6463931 locktype1 = 2 +6463932 locktype2 = 7 +6463932 locktype3 = 5 +6463933 goalCount = 0 +6463933 goalTotal = 40 +6463934 otherCount = 56 +~~~ +6465881 UP 12 +6465881 2048 2048 +6467657 DOWN 12 +6467657 0 2048 +6467693 UP 12 +6467693 2048 2048 +6468741 DOWN 12 +6468741 0 2048 +6468762 UP 12 +6468762 2048 2048 +6468914 DOWN 12 +6468914 0 2048 +6468932 UP 12 +6468932 2048 2048 +6472795 DOWN 12 +6472795 0 2048 +6472832 UP 12 +6472832 2048 2048 +6472881 CLICK1 +6472881 CLICK2 +~~~ +~~~ +~~~ +6472910 2048 67110912 +~~~ +6473060 2048 2048 +6479548 DOWN 12 +6479548 0 2048 +~~~ +~~~ +6479568 0 0 +~~~ +~~~ +6479570 0 1 +~~~ +~~~ +6479572 0 3 +~~~ +~~~ +6479573 0 7 +~~~ +~~~ +6479575 0 15 +~~~ +~~~ +6479577 0 31 +~~~ +~~~ +6479579 0 63 +~~~ +~~~ +6479581 0 127 +~~~ +~~~ +6479583 0 255 +6479584 homeCount = 110 +6479584 waitCount = 56 +6479585 ripCount = 46 +6479585 locktype1 = 2 +6479586 locktype2 = 7 +6479586 locktype3 = 5 +6479607 goalCount = 0 +6479608 goalTotal = 40 +6479608 otherCount = 56 +~~~ +6479609 CURRENTGOAL IS [7] +~~~ +6479609 UP 12 +6479609 2048 255 +6479644 DOWN 12 +6479644 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6479684 homeCount = 110 +6479685 waitCount = 56 +6479685 ripCount = 46 +6479686 locktype1 = 2 +6479686 locktype2 = 7 +6479686 locktype3 = 5 +6479687 goalCount = 0 +6479687 goalTotal = 40 +6479688 otherCount = 56 +~~~ +6479689 CURRENTGOAL IS [7] +~~~ +6485355 UP 8 +6485355 128 255 +~~~ +~~~ +6486346 DOWN 8 +6486346 0 255 +~~~ +~~~ +6486369 0 254 +~~~ +~~~ +6486371 0 252 +~~~ +~~~ +6486372 0 248 +~~~ +~~~ +6486374 0 240 +~~~ +~~~ +6486376 0 224 +~~~ +~~~ +6486378 0 192 +~~~ +~~~ +6486380 0 128 +~~~ +~~~ +6486381 0 0 +~~~ +~~~ +6486383 0 512 +6486384 homeCount = 110 +6486385 waitCount = 56 +6486385 ripCount = 46 +6486386 locktype1 = 2 +6486386 locktype2 = 7 +6486407 locktype3 = 5 +6486408 goalCount = 0 +6486408 goalTotal = 40 +6486409 otherCount = 57 +~~~ +6491312 UP 10 +6491312 waslock = 0 +6491312 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6491343 512 16777728 +~~~ +6491493 512 512 +6497957 DOWN 10 +6497957 0 512 +~~~ +~~~ +6497977 0 1536 +~~~ +~~~ +6497979 0 1024 +6497980 homeCount = 111 +6497981 waitCount = 56 +6497981 ripCount = 46 +6497982 locktype1 = 2 +6497982 locktype2 = 7 +6497983 locktype3 = 5 +6497983 goalCount = 0 +6497984 goalTotal = 40 +6497984 otherCount = 57 +~~~ +6500268 UP 11 +6500268 1024 1024 +6501862 DOWN 11 +6501862 0 1024 +6501896 UP 11 +6501896 1024 1024 +6502555 DOWN 11 +6502555 0 1024 +6502573 UP 11 +6502573 1024 1024 +6502784 DOWN 11 +6502784 0 1024 +6502832 UP 11 +6502832 1024 1024 +6502852 DOWN 11 +6502852 0 1024 +6502873 UP 11 +6502873 1024 1024 +6502971 DOWN 11 +6502971 0 1024 +6502994 UP 11 +6502994 1024 1024 +6503021 DOWN 11 +6503021 0 1024 +6503040 UP 11 +6503040 1024 1024 +6503112 DOWN 11 +6503112 0 1024 +6503129 UP 11 +6503129 1024 1024 +6503268 BEEP1 +6503268 BEEP2 +~~~ +~~~ +~~~ +6503292 1024 33555456 +~~~ +6503442 1024 1024 +6503531 DOWN 11 +6503531 0 1024 +6503557 UP 11 +6503557 1024 1024 +~~~ +~~~ +6503943 1024 0 +~~~ +~~~ +6503945 1024 1 +~~~ +~~~ +6503947 1024 3 +~~~ +~~~ +6503949 1024 7 +~~~ +~~~ +6503950 1024 15 +~~~ +~~~ +6503952 1024 31 +~~~ +~~~ +6503954 1024 63 +~~~ +~~~ +6503956 1024 127 +~~~ +~~~ +6503958 1024 255 +6503959 homeCount = 111 +6503959 waitCount = 56 +6503960 ripCount = 47 +6503960 locktype1 = 2 +6503981 locktype2 = 7 +6503981 locktype3 = 5 +6503982 goalCount = 0 +6503982 goalTotal = 40 +6503983 otherCount = 57 +~~~ +6503984 CURRENTGOAL IS [7] +~~~ +6508798 DOWN 11 +6508798 0 255 +6508816 UP 11 +6508816 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6508838 homeCount = 111 +6508839 waitCount = 56 +6508839 ripCount = 47 +6508840 locktype1 = 2 +6508840 locktype2 = 7 +6508841 locktype3 = 5 +6508841 goalCount = 0 +6508842 goalTotal = 40 +6508842 otherCount = 57 +~~~ +6508843 CURRENTGOAL IS [7] +~~~ +6508920 DOWN 11 +6508920 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6508959 homeCount = 111 +6508959 waitCount = 56 +6508960 ripCount = 47 +6508960 locktype1 = 2 +6508961 locktype2 = 7 +6508961 locktype3 = 5 +6508962 goalCount = 0 +6508962 goalTotal = 40 +6508963 otherCount = 57 +~~~ +6508964 CURRENTGOAL IS [7] +~~~ +6508969 UP 11 +6508969 1024 255 +6511527 DOWN 11 +6511527 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6511571 homeCount = 111 +6511571 waitCount = 56 +6511572 ripCount = 47 +6511572 locktype1 = 2 +6511573 locktype2 = 7 +6511573 locktype3 = 5 +6511574 goalCount = 0 +6511574 goalTotal = 40 +6511574 otherCount = 57 +~~~ +6511576 CURRENTGOAL IS [7] +~~~ +6511576 UP 11 +6511576 1024 255 +6511638 DOWN 11 +6511638 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6511680 homeCount = 111 +6511680 waitCount = 56 +6511681 ripCount = 47 +6511681 locktype1 = 2 +6511682 locktype2 = 7 +6511682 locktype3 = 5 +6511683 goalCount = 0 +6511683 goalTotal = 40 +6511684 otherCount = 57 +~~~ +6511685 CURRENTGOAL IS [7] +~~~ +6512177 UP 11 +6512177 1024 255 +6513881 DOWN 11 +6513881 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6513921 homeCount = 111 +6513921 waitCount = 56 +6513922 ripCount = 47 +6513922 locktype1 = 2 +6513923 locktype2 = 7 +6513923 locktype3 = 5 +6513924 goalCount = 0 +6513924 goalTotal = 40 +6513925 otherCount = 57 +~~~ +6513926 CURRENTGOAL IS [7] +~~~ +6518545 UP 5 +6518545 16 255 +~~~ +~~~ +6518724 DOWN 5 +6518723 0 255 +~~~ +~~~ +6518744 0 254 +~~~ +~~~ +6518745 0 252 +~~~ +~~~ +6518747 0 248 +~~~ +~~~ +6518749 0 240 +~~~ +~~~ +6518751 0 224 +~~~ +~~~ +6518753 0 192 +~~~ +~~~ +6518754 0 128 +~~~ +~~~ +6518756 0 0 +~~~ +~~~ +6518758 0 512 +6518759 homeCount = 111 +6518760 waitCount = 56 +6518760 ripCount = 47 +6518761 locktype1 = 2 +6518761 locktype2 = 7 +6518782 locktype3 = 5 +6518783 goalCount = 0 +6518783 goalTotal = 40 +6518784 otherCount = 58 +~~~ +6518788 16 512 +6519650 DOWN 5 +6519650 0 512 +6524649 UP 10 +6524649 waslock = 0 +6524649 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6524681 512 16777728 +~~~ +6524831 512 512 +6529752 DOWN 10 +6529752 0 512 +~~~ +~~~ +6529776 0 2560 +~~~ +~~~ +6529778 0 2048 +6529779 homeCount = 112 +6529779 waitCount = 56 +6529780 ripCount = 47 +6529780 locktype1 = 2 +6529781 locktype2 = 7 +6529781 locktype3 = 5 +6529782 goalCount = 0 +6529782 goalTotal = 40 +6529783 otherCount = 58 +~~~ +6530785 UP 10 +6530786 waslock = 0 +6530785 512 2048 +~~~ +6531302 DOWN 10 +6531302 0 2048 +~~~ +~~~ +~~~ +~~~ +6531328 homeCount = 112 +6531329 waitCount = 56 +6531329 ripCount = 47 +6531330 locktype1 = 2 +6531330 locktype2 = 7 +6531331 locktype3 = 5 +6531331 goalCount = 0 +6531332 goalTotal = 40 +6531332 otherCount = 58 +~~~ +6533320 UP 12 +6533320 2048 2048 +6536249 DOWN 12 +6536249 0 2048 +6536449 LOCKOUT 3 +~~~ +6536465 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6536471 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6536576 UP 12 +6536576 2048 0 +6536890 DOWN 12 +6536890 0 0 +6561465 LOCKEND +~~~ +~~~ +~~~ +6561485 0 512 +6569294 UP 10 +6569295 waslock = 0 +6569294 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6569321 512 16777728 +~~~ +6569368 DOWN 10 +6569368 0 16777728 +6569397 UP 10 +6569397 waslock = 0 +6569397 512 16777728 +~~~ +~~~ +6569400 512 16778752 +~~~ +~~~ +6569402 512 16778240 +6569403 homeCount = 113 +6569404 waitCount = 56 +6569404 ripCount = 47 +6569405 locktype1 = 2 +6569405 locktype2 = 7 +6569405 locktype3 = 6 +6569406 goalCount = 0 +6569406 goalTotal = 40 +6569428 otherCount = 58 +~~~ +~~~ +6569470 512 1024 +6569498 DOWN 10 +6569498 0 1024 +~~~ +~~~ +~~~ +6569518 UP 10 +6569518 waslock = 0 +6569518 512 1024 +~~~ +6569520 homeCount = 113 +6569520 waitCount = 56 +6569521 ripCount = 47 +6569521 locktype1 = 2 +6569522 locktype2 = 7 +6569522 locktype3 = 6 +6569523 goalCount = 0 +6569523 goalTotal = 40 +6569524 otherCount = 58 +~~~ +~~~ +6569573 DOWN 10 +6569573 0 1024 +~~~ +~~~ +~~~ +~~~ +6569600 homeCount = 113 +6569601 waitCount = 56 +6569601 ripCount = 47 +6569602 locktype1 = 2 +6569602 locktype2 = 7 +6569603 locktype3 = 6 +6569603 goalCount = 0 +6569604 goalTotal = 40 +6569604 otherCount = 58 +~~~ +6569619 UP 10 +6569620 waslock = 0 +6569619 512 1024 +~~~ +6569711 DOWN 10 +6569711 0 1024 +~~~ +~~~ +~~~ +~~~ +6569740 homeCount = 113 +6569741 waitCount = 56 +6569741 ripCount = 47 +6569742 locktype1 = 2 +6569742 locktype2 = 7 +6569742 locktype3 = 6 +6569743 goalCount = 0 +6569743 goalTotal = 40 +6569744 otherCount = 58 +~~~ +6569744 UP 10 +6569745 waslock = 0 +6569744 512 1024 +~~~ +6570069 DOWN 10 +6570069 0 1024 +~~~ +~~~ +~~~ +~~~ +6570090 homeCount = 113 +6570090 waitCount = 56 +6570091 ripCount = 47 +6570091 locktype1 = 2 +6570092 locktype2 = 7 +6570092 locktype3 = 6 +6570093 goalCount = 0 +6570093 goalTotal = 40 +6570094 otherCount = 58 +~~~ +6570155 UP 10 +6570155 waslock = 0 +6570155 512 1024 +~~~ +6570216 DOWN 10 +6570216 0 1024 +~~~ +~~~ +~~~ +~~~ +6570241 homeCount = 113 +6570242 waitCount = 56 +6570242 ripCount = 47 +6570243 locktype1 = 2 +6570243 locktype2 = 7 +6570244 locktype3 = 6 +6570244 goalCount = 0 +6570245 goalTotal = 40 +6570245 otherCount = 58 +~~~ +6570297 UP 10 +6570297 waslock = 0 +6570297 512 1024 +~~~ +6570360 DOWN 10 +6570360 0 1024 +~~~ +~~~ +~~~ +~~~ +6570390 homeCount = 113 +6570390 waitCount = 56 +6570391 ripCount = 47 +6570391 locktype1 = 2 +6570392 locktype2 = 7 +6570392 locktype3 = 6 +6570393 goalCount = 0 +6570393 goalTotal = 40 +6570394 otherCount = 58 +~~~ +6570433 UP 10 +6570433 waslock = 0 +6570432 512 1024 +~~~ +6573876 DOWN 10 +6573876 0 1024 +~~~ +~~~ +~~~ +~~~ +6573901 homeCount = 113 +6573902 waitCount = 56 +6573902 ripCount = 47 +6573903 locktype1 = 2 +6573903 locktype2 = 7 +6573903 locktype3 = 6 +6573904 goalCount = 0 +6573904 goalTotal = 40 +6573905 otherCount = 58 +~~~ +6573934 UP 10 +6573935 waslock = 0 +6573934 512 1024 +~~~ +6573977 DOWN 10 +6573977 0 1024 +~~~ +~~~ +~~~ +~~~ +6574003 homeCount = 113 +6574004 waitCount = 56 +6574004 ripCount = 47 +6574005 locktype1 = 2 +6574005 locktype2 = 7 +6574006 locktype3 = 6 +6574006 goalCount = 0 +6574007 goalTotal = 40 +6574007 otherCount = 58 +~~~ +6575372 UP 11 +6575372 1024 1024 +6576446 DOWN 11 +6576446 0 1024 +6576491 UP 11 +6576491 1024 1024 +6577984 DOWN 11 +6577984 0 1024 +6577998 UP 11 +6577998 1024 1024 +6578373 BEEP1 +6578373 BEEP2 +~~~ +~~~ +~~~ +6578399 1024 33555456 +~~~ +6578549 1024 1024 +6578714 DOWN 11 +6578714 0 1024 +6578721 UP 11 +6578721 1024 1024 +6578866 DOWN 11 +6578866 0 1024 +6578903 UP 11 +6578903 1024 1024 +~~~ +~~~ +6579074 1024 0 +~~~ +~~~ +6579075 1024 1 +~~~ +~~~ +6579077 1024 3 +~~~ +~~~ +6579079 1024 7 +~~~ +~~~ +6579081 1024 15 +~~~ +~~~ +6579083 1024 31 +~~~ +~~~ +6579085 1024 63 +~~~ +~~~ +6579086 1024 127 +~~~ +~~~ +6579088 1024 255 +6579089 homeCount = 113 +6579090 waitCount = 56 +6579090 ripCount = 48 +6579091 locktype1 = 2 +6579112 locktype2 = 7 +6579112 locktype3 = 6 +6579113 goalCount = 0 +6579113 goalTotal = 40 +6579113 otherCount = 58 +~~~ +6579115 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6579142 homeCount = 113 +6579143 waitCount = 56 +6579143 ripCount = 48 +6579144 locktype1 = 2 +6579144 locktype2 = 7 +6579145 locktype3 = 6 +6579145 goalCount = 0 +6579146 goalTotal = 40 +6579146 otherCount = 58 +~~~ +6579147 CURRENTGOAL IS [7] +~~~ +6586385 DOWN 11 +6586385 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6586420 homeCount = 113 +6586421 waitCount = 56 +6586421 ripCount = 48 +6586422 locktype1 = 2 +6586422 locktype2 = 7 +6586422 locktype3 = 6 +6586423 goalCount = 0 +6586423 goalTotal = 40 +6586424 otherCount = 58 +~~~ +6586425 CURRENTGOAL IS [7] +~~~ +6590698 UP 7 +6590698 64 255 +6590720 DOWN 7 +6590720 0 255 +~~~ +~~~ +6590725 outer reward +~~~ +6590725 0 4194559 +~~~ +~~~ +~~~ +~~~ +6590745 0 4194558 +~~~ +~~~ +6590747 0 4194556 +~~~ +~~~ +6590749 0 4194552 +~~~ +~~~ +6590750 0 4194544 +~~~ +~~~ +6590752 0 4194528 +~~~ +~~~ +6590754 0 4194496 +~~~ +~~~ +6590756 0 4194432 +~~~ +~~~ +6590758 0 4194304 +~~~ +~~~ +6590760 0 4194816 +6590761 homeCount = 113 +6590761 waitCount = 56 +6590762 ripCount = 48 +6590782 locktype1 = 2 +6590783 locktype2 = 7 +6590783 locktype3 = 6 +6590784 goalCount = 1 +6590784 goalTotal = 41 +6590785 otherCount = 58 +~~~ +6590785 64 4194816 +6591175 64 512 +6599661 DOWN 7 +6599661 0 512 +6608285 UP 10 +6608286 waslock = 0 +6608285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6608312 512 16777728 +~~~ +6608462 512 512 +6608513 DOWN 10 +6608513 0 512 +~~~ +~~~ +6608534 0 2560 +~~~ +~~~ +6608535 0 2048 +6608536 homeCount = 114 +6608537 waitCount = 56 +6608537 ripCount = 48 +6608538 locktype1 = 2 +6608538 locktype2 = 7 +6608539 locktype3 = 6 +6608539 goalCount = 1 +6608540 goalTotal = 41 +6608540 otherCount = 58 +~~~ +6608630 UP 10 +6608630 waslock = 0 +6608630 512 2048 +~~~ +6613637 DOWN 10 +6613637 0 2048 +~~~ +~~~ +~~~ +~~~ +6613666 homeCount = 114 +6613667 waitCount = 56 +6613667 ripCount = 48 +6613668 locktype1 = 2 +6613668 locktype2 = 7 +6613669 locktype3 = 6 +6613669 goalCount = 1 +6613670 goalTotal = 41 +6613670 otherCount = 58 +~~~ +6616329 UP 12 +6616329 2048 2048 +6619830 CLICK1 +6619830 CLICK2 +~~~ +~~~ +~~~ +6619856 2048 67110912 +~~~ +6620006 2048 2048 +6628530 DOWN 12 +6628530 0 2048 +6628552 UP 12 +6628552 2048 2048 +~~~ +~~~ +6628554 2048 0 +~~~ +~~~ +6628556 2048 1 +~~~ +~~~ +6628557 2048 3 +~~~ +~~~ +6628559 2048 7 +~~~ +~~~ +6628561 2048 15 +~~~ +~~~ +6628563 2048 31 +~~~ +~~~ +6628565 2048 63 +~~~ +~~~ +6628566 2048 127 +~~~ +~~~ +6628568 2048 255 +6628569 homeCount = 114 +6628570 waitCount = 57 +6628591 ripCount = 48 +6628591 locktype1 = 2 +6628592 locktype2 = 7 +6628592 locktype3 = 6 +6628592 goalCount = 1 +6628593 goalTotal = 41 +6628593 otherCount = 58 +~~~ +6628595 CURRENTGOAL IS [7] +~~~ +6628616 DOWN 12 +6628616 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6628645 homeCount = 114 +6628646 waitCount = 57 +6628646 ripCount = 48 +6628647 locktype1 = 2 +6628647 locktype2 = 7 +6628648 locktype3 = 6 +6628648 goalCount = 1 +6628648 goalTotal = 41 +6628649 otherCount = 58 +~~~ +6628650 CURRENTGOAL IS [7] +~~~ +6632543 UP 4 +6632543 8 255 +~~~ +~~~ +6633261 DOWN 4 +6633261 0 255 +~~~ +~~~ +6633284 0 254 +~~~ +~~~ +6633286 0 252 +~~~ +~~~ +6633288 0 248 +~~~ +~~~ +6633289 0 240 +~~~ +~~~ +6633291 0 224 +~~~ +~~~ +6633293 0 192 +~~~ +~~~ +6633295 0 128 +~~~ +~~~ +6633297 0 0 +~~~ +~~~ +6633299 0 512 +6633300 homeCount = 114 +6633300 waitCount = 57 +6633301 ripCount = 48 +6633301 locktype1 = 2 +6633302 locktype2 = 7 +6633323 locktype3 = 6 +6633323 goalCount = 1 +6633324 goalTotal = 41 +6633324 otherCount = 59 +~~~ +6637699 UP 10 +6637699 waslock = 0 +6637699 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6637730 512 16777728 +~~~ +6637866 DOWN 10 +6637866 0 16777728 +6637880 0 512 +~~~ +~~~ +6637887 0 2560 +~~~ +~~~ +6637889 0 2048 +6637890 homeCount = 115 +6637890 waitCount = 57 +6637891 ripCount = 48 +6637891 locktype1 = 2 +6637892 locktype2 = 7 +6637892 locktype3 = 6 +6637893 goalCount = 1 +6637893 goalTotal = 41 +6637894 otherCount = 59 +~~~ +6637949 UP 10 +6637949 waslock = 0 +6637949 512 2048 +~~~ +6640995 DOWN 10 +6640995 0 2048 +~~~ +~~~ +~~~ +~~~ +6641017 homeCount = 115 +6641017 waitCount = 57 +6641018 ripCount = 48 +6641018 locktype1 = 2 +6641019 locktype2 = 7 +6641019 locktype3 = 6 +6641020 goalCount = 1 +6641020 goalTotal = 41 +6641021 otherCount = 59 +~~~ +6642706 UP 12 +6642706 2048 2048 +6645350 DOWN 12 +6645350 0 2048 +6645380 UP 12 +6645380 2048 2048 +6647206 CLICK1 +6647206 CLICK2 +~~~ +~~~ +~~~ +6647227 2048 67110912 +~~~ +6647377 2048 2048 +6657145 DOWN 12 +6657144 0 2048 +~~~ +~~~ +6657165 0 0 +~~~ +~~~ +6657167 0 1 +~~~ +~~~ +6657169 0 3 +~~~ +~~~ +6657170 0 7 +~~~ +~~~ +6657172 0 15 +~~~ +~~~ +6657174 0 31 +~~~ +~~~ +6657176 0 63 +~~~ +~~~ +6657178 0 127 +~~~ +~~~ +6657180 0 255 +6657181 homeCount = 115 +6657181 waitCount = 58 +6657182 ripCount = 48 +6657182 locktype1 = 2 +6657183 locktype2 = 7 +6657204 locktype3 = 6 +6657204 goalCount = 1 +6657205 goalTotal = 41 +6657205 otherCount = 59 +~~~ +6657206 CURRENTGOAL IS [7] +~~~ +6657218 UP 12 +6657218 2048 255 +6657280 DOWN 12 +6657280 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6657313 homeCount = 115 +6657314 waitCount = 58 +6657314 ripCount = 48 +6657315 locktype1 = 2 +6657315 locktype2 = 7 +6657316 locktype3 = 6 +6657316 goalCount = 1 +6657317 goalTotal = 41 +6657317 otherCount = 59 +~~~ +6657318 CURRENTGOAL IS [7] +~~~ +6661264 UP 3 +6661264 4 255 +~~~ +~~~ +6661872 DOWN 3 +6661872 0 255 +~~~ +~~~ +6661892 0 254 +~~~ +~~~ +6661894 0 252 +~~~ +~~~ +6661896 0 248 +~~~ +~~~ +6661898 0 240 +~~~ +~~~ +6661900 0 224 +~~~ +~~~ +6661901 0 192 +~~~ +~~~ +6661903 0 128 +~~~ +~~~ +6661905 0 0 +~~~ +~~~ +6661907 0 512 +6661908 homeCount = 115 +6661909 waitCount = 58 +6661909 ripCount = 48 +6661909 locktype1 = 2 +6661910 locktype2 = 7 +6661931 locktype3 = 6 +6661931 goalCount = 1 +6661932 goalTotal = 41 +6661932 otherCount = 60 +~~~ +6661933 4 512 +6662264 DOWN 3 +6662264 0 512 +6665814 UP 10 +6665814 waslock = 0 +6665814 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6665840 512 16777728 +~~~ +6665975 DOWN 10 +6665975 0 16777728 +6665990 0 512 +~~~ +~~~ +6665993 0 1536 +~~~ +~~~ +6665995 0 1024 +6665996 homeCount = 116 +6665997 waitCount = 58 +6665997 ripCount = 48 +6665998 locktype1 = 2 +6665998 locktype2 = 7 +6665999 locktype3 = 6 +6665999 goalCount = 1 +6666000 goalTotal = 41 +6666000 otherCount = 60 +~~~ +6666060 UP 10 +6666060 waslock = 0 +6666060 512 1024 +~~~ +6671137 DOWN 10 +6671137 0 1024 +~~~ +~~~ +~~~ +~~~ +6671163 homeCount = 116 +6671163 waitCount = 58 +6671164 ripCount = 48 +6671164 locktype1 = 2 +6671165 locktype2 = 7 +6671165 locktype3 = 6 +6671166 goalCount = 1 +6671166 goalTotal = 41 +6671167 otherCount = 60 +~~~ +6671175 UP 10 +6671175 waslock = 0 +6671175 512 1024 +6671210 DOWN 10 +6671210 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +6671233 homeCount = 116 +6671234 waitCount = 58 +6671234 ripCount = 48 +6671235 locktype1 = 2 +6671235 locktype2 = 7 +6671236 locktype3 = 6 +6671236 goalCount = 1 +6671237 goalTotal = 41 +6671237 otherCount = 60 +~~~ +6672888 UP 11 +6672888 1024 1024 +6675281 DOWN 11 +6675281 0 1024 +6675325 UP 11 +6675325 1024 1024 +6675888 BEEP1 +6675888 BEEP2 +~~~ +~~~ +~~~ +6675910 1024 33555456 +~~~ +6676060 1024 1024 +6683979 DOWN 11 +6683979 0 1024 +~~~ +~~~ +6683999 0 0 +~~~ +~~~ +6684001 0 1 +~~~ +~~~ +6684003 0 3 +~~~ +~~~ +6684004 0 7 +~~~ +~~~ +6684006 0 15 +~~~ +~~~ +6684008 0 31 +~~~ +~~~ +6684010 0 63 +~~~ +~~~ +6684012 0 127 +~~~ +~~~ +6684014 0 255 +6684015 homeCount = 116 +6684015 waitCount = 58 +6684016 ripCount = 49 +6684016 locktype1 = 2 +6684017 locktype2 = 7 +6684017 locktype3 = 6 +6684038 goalCount = 1 +6684039 goalTotal = 41 +6684039 otherCount = 60 +~~~ +6684040 CURRENTGOAL IS [7] +~~~ +6684055 UP 11 +6684055 1024 255 +6684116 DOWN 11 +6684116 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6684159 homeCount = 116 +6684159 waitCount = 58 +6684160 ripCount = 49 +6684160 locktype1 = 2 +6684161 locktype2 = 7 +6684161 locktype3 = 6 +6684162 goalCount = 1 +6684162 goalTotal = 41 +6684163 otherCount = 60 +~~~ +6684164 CURRENTGOAL IS [7] +~~~ +6684221 UP 11 +6684221 1024 255 +6684256 DOWN 11 +6684256 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6684297 homeCount = 116 +6684298 waitCount = 58 +6684298 ripCount = 49 +6684299 locktype1 = 2 +6684299 locktype2 = 7 +6684300 locktype3 = 6 +6684300 goalCount = 1 +6684301 goalTotal = 41 +6684301 otherCount = 60 +~~~ +6684302 CURRENTGOAL IS [7] +~~~ +6684474 UP 11 +6684474 1024 255 +6685220 DOWN 11 +6685220 0 255 +6685235 UP 11 +6685235 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685260 DOWN 11 +6685260 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685272 homeCount = 116 +6685272 waitCount = 58 +6685273 ripCount = 49 +6685273 locktype1 = 2 +6685274 locktype2 = 7 +6685274 locktype3 = 6 +6685275 goalCount = 1 +6685275 goalTotal = 41 +6685276 otherCount = 60 +~~~ +6685277 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685304 homeCount = 116 +6685304 waitCount = 58 +6685305 ripCount = 49 +6685305 locktype1 = 2 +6685306 locktype2 = 7 +6685306 locktype3 = 6 +6685307 goalCount = 1 +6685307 goalTotal = 41 +6685308 otherCount = 60 +~~~ +6685309 CURRENTGOAL IS [7] +~~~ +6685357 UP 11 +6685357 1024 255 +6685427 DOWN 11 +6685427 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6685466 homeCount = 116 +6685466 waitCount = 58 +6685467 ripCount = 49 +6685467 locktype1 = 2 +6685468 locktype2 = 7 +6685468 locktype3 = 6 +6685469 goalCount = 1 +6685469 goalTotal = 41 +6685470 otherCount = 60 +~~~ +6685471 CURRENTGOAL IS [7] +~~~ +6691250 UP 8 +6691250 128 255 +~~~ +~~~ +6691294 DOWN 8 +6691294 0 255 +~~~ +6691318 128 255 +~~~ +6691319 128 254 +~~~ +~~~ +6691320 128 252 +~~~ +~~~ +6691322 128 248 +~~~ +~~~ +6691324 128 240 +~~~ +~~~ +6691326 128 224 +~~~ +~~~ +6691328 128 192 +~~~ +~~~ +6691329 128 128 +~~~ +~~~ +6691331 128 0 +~~~ +~~~ +6691333 128 512 +6691334 homeCount = 116 +6691335 waitCount = 58 +6691356 ripCount = 49 +6691356 locktype1 = 2 +6691357 locktype2 = 7 +6691357 locktype3 = 6 +6691358 goalCount = 1 +6691358 goalTotal = 41 +6691359 otherCount = 61 +~~~ +6691705 DOWN 8 +6691705 0 512 +6692128 128 512 +6692970 DOWN 8 +6692969 0 512 +6693144 128 512 +6693170 DOWN 8 +6693170 0 512 +6693199 128 512 +6693388 DOWN 8 +6693388 0 512 +6693402 128 512 +6693443 DOWN 8 +6693443 0 512 +6693515 128 512 +6693538 DOWN 8 +6693538 0 512 +6693619 128 512 +6693648 DOWN 8 +6693648 0 512 +6694010 128 512 +6694839 DOWN 8 +6694838 0 512 +6701433 UP 10 +6701434 waslock = 0 +6701433 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6701465 512 16777728 +~~~ +6701615 512 512 +6701718 DOWN 10 +6701718 0 512 +~~~ +~~~ +6701739 0 1536 +~~~ +~~~ +6701741 0 1024 +6701742 homeCount = 117 +6701743 waitCount = 58 +6701743 ripCount = 49 +6701744 locktype1 = 2 +6701744 locktype2 = 7 +6701745 locktype3 = 6 +6701745 goalCount = 1 +6701746 goalTotal = 41 +6701746 otherCount = 61 +~~~ +6701748 UP 10 +6701748 waslock = 0 +6701748 512 1024 +~~~ +6705821 DOWN 10 +6705821 0 1024 +~~~ +~~~ +~~~ +~~~ +6705843 homeCount = 117 +6705843 waitCount = 58 +6705844 ripCount = 49 +6705844 locktype1 = 2 +6705845 locktype2 = 7 +6705845 locktype3 = 6 +6705846 goalCount = 1 +6705846 goalTotal = 41 +6705847 otherCount = 61 +~~~ +6705847 UP 10 +6705848 waslock = 0 +6705847 512 1024 +~~~ +6705920 DOWN 10 +6705920 0 1024 +~~~ +~~~ +~~~ +~~~ +6705943 homeCount = 117 +6705943 waitCount = 58 +6705944 ripCount = 49 +6705944 locktype1 = 2 +6705944 locktype2 = 7 +6705945 locktype3 = 6 +6705945 goalCount = 1 +6705946 goalTotal = 41 +6705946 otherCount = 61 +~~~ +6708068 UP 11 +6708068 1024 1024 +6708086 DOWN 11 +6708086 0 1024 +6708133 UP 11 +6708133 1024 1024 +6709911 DOWN 11 +6709911 0 1024 +6709920 UP 11 +6709920 1024 1024 +6711114 DOWN 11 +6711114 0 1024 +6711120 UP 11 +6711120 1024 1024 +6711125 DOWN 11 +6711125 0 1024 +6711144 UP 11 +6711144 1024 1024 +6711546 DOWN 11 +6711546 0 1024 +6711576 UP 11 +6711576 1024 1024 +6711611 DOWN 11 +6711611 0 1024 +6711618 UP 11 +6711618 1024 1024 +6715068 BEEP1 +6715068 BEEP2 +~~~ +~~~ +~~~ +6715093 1024 33555456 +~~~ +6715243 1024 1024 +6721928 DOWN 11 +6721928 0 1024 +~~~ +~~~ +6721951 UP 11 +6721951 1024 0 +~~~ +~~~ +6721953 1024 1 +~~~ +~~~ +6721955 1024 3 +~~~ +~~~ +6721956 1024 7 +~~~ +~~~ +6721958 1024 15 +~~~ +~~~ +6721960 1024 31 +~~~ +~~~ +6721962 1024 63 +~~~ +~~~ +6721964 1024 127 +~~~ +~~~ +6721966 1024 255 +6721967 homeCount = 117 +6721967 waitCount = 58 +6721968 ripCount = 50 +6721989 locktype1 = 2 +6721989 locktype2 = 7 +6721990 locktype3 = 6 +6721990 goalCount = 1 +6721991 goalTotal = 41 +6721991 otherCount = 61 +~~~ +6721992 CURRENTGOAL IS [7] +~~~ +6722015 DOWN 11 +6722015 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6722057 homeCount = 117 +6722057 waitCount = 58 +6722058 ripCount = 50 +6722058 locktype1 = 2 +6722059 locktype2 = 7 +6722059 locktype3 = 6 +6722060 goalCount = 1 +6722060 goalTotal = 41 +6722060 otherCount = 61 +~~~ +6722062 CURRENTGOAL IS [7] +~~~ +6725264 UP 6 +6725264 32 255 +~~~ +~~~ +6727484 DOWN 6 +6727484 0 255 +~~~ +~~~ +6727509 0 254 +~~~ +~~~ +6727510 0 252 +~~~ +~~~ +6727512 0 248 +~~~ +~~~ +6727514 0 240 +~~~ +~~~ +6727516 0 224 +~~~ +~~~ +6727518 0 192 +~~~ +~~~ +6727519 0 128 +~~~ +~~~ +6727521 0 0 +~~~ +~~~ +6727523 0 512 +6727524 homeCount = 117 +6727525 waitCount = 58 +6727525 ripCount = 50 +6727526 locktype1 = 2 +6727526 locktype2 = 7 +6727547 locktype3 = 6 +6727548 goalCount = 1 +6727548 goalTotal = 41 +6727549 otherCount = 62 +~~~ +6727577 32 512 +6727791 DOWN 6 +6727791 0 512 +6732072 UP 10 +6732072 waslock = 0 +6732072 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6732099 DOWN 10 +6732099 0 16777728 +~~~ +~~~ +~~~ +6732121 0 16779776 +~~~ +~~~ +6732123 0 16779264 +6732124 homeCount = 118 +6732124 waitCount = 58 +6732125 ripCount = 50 +6732125 locktype1 = 2 +6732126 locktype2 = 7 +6732126 locktype3 = 6 +6732127 goalCount = 1 +6732127 goalTotal = 41 +6732128 otherCount = 62 +~~~ +6732179 UP 10 +6732179 waslock = 0 +6732179 512 16779264 +~~~ +6732249 512 2048 +6732403 DOWN 10 +6732403 0 2048 +~~~ +~~~ +~~~ +~~~ +6732424 homeCount = 118 +6732425 waitCount = 58 +6732425 ripCount = 50 +6732426 locktype1 = 2 +6732426 locktype2 = 7 +6732427 locktype3 = 6 +6732427 goalCount = 1 +6732428 goalTotal = 41 +6732428 otherCount = 62 +~~~ +6732461 UP 10 +6732462 waslock = 0 +6732461 512 2048 +~~~ +6738947 DOWN 10 +6738947 0 2048 +~~~ +~~~ +~~~ +~~~ +6738973 homeCount = 118 +6738973 waitCount = 58 +6738974 ripCount = 50 +6738974 locktype1 = 2 +6738975 locktype2 = 7 +6738975 locktype3 = 6 +6738976 goalCount = 1 +6738976 goalTotal = 41 +6738976 otherCount = 62 +~~~ +6739010 UP 10 +6739010 waslock = 0 +6739010 512 2048 +~~~ +6739045 DOWN 10 +6739045 0 2048 +~~~ +~~~ +~~~ +~~~ +6739064 homeCount = 118 +6739064 waitCount = 58 +6739065 ripCount = 50 +6739065 locktype1 = 2 +6739066 locktype2 = 7 +6739066 locktype3 = 6 +6739067 goalCount = 1 +6739067 goalTotal = 41 +6739068 otherCount = 62 +~~~ +6741119 UP 12 +6741119 2048 2048 +6742871 DOWN 12 +6742871 0 2048 +6742901 UP 12 +6742901 2048 2048 +6744620 CLICK1 +6744620 CLICK2 +~~~ +~~~ +~~~ +6744642 2048 67110912 +~~~ +6744792 2048 2048 +6752291 DOWN 12 +6752291 0 2048 +~~~ +~~~ +6752311 0 0 +~~~ +~~~ +6752313 0 1 +~~~ +~~~ +6752315 0 3 +~~~ +~~~ +6752316 0 7 +~~~ +~~~ +6752318 0 15 +~~~ +~~~ +6752320 0 31 +~~~ +~~~ +6752322 0 63 +~~~ +~~~ +6752324 0 127 +~~~ +~~~ +6752325 0 255 +6752326 homeCount = 118 +6752327 waitCount = 59 +6752328 ripCount = 50 +6752328 locktype1 = 2 +6752329 locktype2 = 7 +6752329 locktype3 = 6 +6752350 goalCount = 1 +6752350 goalTotal = 41 +6752351 otherCount = 62 +~~~ +6752352 CURRENTGOAL IS [7] +~~~ +6752352 UP 12 +6752352 2048 255 +6752415 DOWN 12 +6752415 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6752456 homeCount = 118 +6752456 waitCount = 59 +6752457 ripCount = 50 +6752457 locktype1 = 2 +6752458 locktype2 = 7 +6752458 locktype3 = 6 +6752459 goalCount = 1 +6752459 goalTotal = 41 +6752460 otherCount = 62 +~~~ +6752461 CURRENTGOAL IS [7] +~~~ +6757646 UP 3 +6757646 4 255 +~~~ +~~~ +6758067 DOWN 3 +6758067 0 255 +~~~ +~~~ +6758091 0 254 +~~~ +~~~ +6758093 0 252 +~~~ +~~~ +6758094 0 248 +~~~ +~~~ +6758096 0 240 +~~~ +~~~ +6758098 0 224 +~~~ +~~~ +6758100 0 192 +~~~ +~~~ +6758102 0 128 +~~~ +~~~ +6758103 0 0 +~~~ +~~~ +6758105 0 512 +6758106 homeCount = 118 +6758107 waitCount = 59 +6758107 ripCount = 50 +6758108 locktype1 = 2 +6758108 locktype2 = 7 +6758129 locktype3 = 6 +6758130 goalCount = 1 +6758130 goalTotal = 41 +6758131 otherCount = 63 +~~~ +6761238 UP 10 +6761239 waslock = 0 +6761238 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6761268 512 16777728 +~~~ +6761417 512 512 +6761428 DOWN 10 +6761428 0 512 +~~~ +~~~ +6761445 0 2560 +~~~ +~~~ +6761446 0 2048 +6761447 homeCount = 119 +6761448 waitCount = 59 +6761448 ripCount = 50 +6761449 locktype1 = 2 +6761449 locktype2 = 7 +6761450 locktype3 = 6 +6761450 goalCount = 1 +6761451 goalTotal = 41 +6761451 otherCount = 63 +~~~ +6761468 UP 10 +6761468 waslock = 0 +6761468 512 2048 +~~~ +6768410 DOWN 10 +6768410 0 2048 +~~~ +~~~ +~~~ +~~~ +6768433 homeCount = 119 +6768433 waitCount = 59 +6768434 ripCount = 50 +6768434 locktype1 = 2 +6768434 locktype2 = 7 +6768435 locktype3 = 6 +6768435 goalCount = 1 +6768436 goalTotal = 41 +6768436 otherCount = 63 +~~~ +6770299 UP 12 +6770299 2048 2048 +6772302 DOWN 12 +6772302 0 2048 +6772362 UP 12 +6772362 2048 2048 +6773300 CLICK1 +6773300 CLICK2 +~~~ +~~~ +~~~ +6773325 2048 67110912 +~~~ +6773475 2048 2048 +6779649 DOWN 12 +6779649 0 2048 +~~~ +~~~ +6779670 0 0 +~~~ +~~~ +6779672 0 1 +~~~ +~~~ +6779674 0 3 +~~~ +~~~ +6779676 0 7 +~~~ +~~~ +6779678 0 15 +~~~ +~~~ +6779679 0 31 +~~~ +~~~ +6779681 0 63 +~~~ +~~~ +6779683 0 127 +~~~ +6779684 UP 12 +6779684 2048 127 +~~~ +6779686 homeCount = 119 +6779687 waitCount = 60 +6779687 ripCount = 50 +6779688 locktype1 = 2 +6779708 locktype2 = 7 +6779709 locktype3 = 6 +6779709 goalCount = 1 +6779710 goalTotal = 41 +6779710 otherCount = 63 +~~~ +6779711 CURRENTGOAL IS [7] +~~~ +6779712 2048 255 +6779786 DOWN 12 +6779786 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6779830 homeCount = 119 +6779831 waitCount = 60 +6779831 ripCount = 50 +6779832 locktype1 = 2 +6779832 locktype2 = 7 +6779833 locktype3 = 6 +6779833 goalCount = 1 +6779834 goalTotal = 41 +6779834 otherCount = 63 +~~~ +6779835 CURRENTGOAL IS [7] +~~~ +6779836 UP 12 +6779836 2048 255 +6779858 DOWN 12 +6779858 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6779888 homeCount = 119 +6779888 waitCount = 60 +6779889 ripCount = 50 +6779889 locktype1 = 2 +6779890 locktype2 = 7 +6779890 locktype3 = 6 +6779891 goalCount = 1 +6779891 goalTotal = 41 +6779892 otherCount = 63 +~~~ +6779893 CURRENTGOAL IS [7] +~~~ +6779906 UP 12 +6779906 2048 255 +6783028 DOWN 12 +6783028 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6783069 homeCount = 119 +6783070 waitCount = 60 +6783070 ripCount = 50 +6783071 locktype1 = 2 +6783071 locktype2 = 7 +6783072 locktype3 = 6 +6783072 goalCount = 1 +6783073 goalTotal = 41 +6783073 otherCount = 63 +~~~ +6783074 CURRENTGOAL IS [7] +~~~ +6792931 UP 6 +6792931 32 255 +~~~ +~~~ +6793358 DOWN 6 +6793358 0 255 +~~~ +~~~ +6793374 0 254 +~~~ +~~~ +6793376 0 252 +~~~ +~~~ +6793377 0 248 +~~~ +~~~ +6793379 0 240 +~~~ +~~~ +6793381 0 224 +~~~ +~~~ +6793383 0 192 +~~~ +~~~ +6793385 0 128 +~~~ +~~~ +6793387 0 0 +~~~ +~~~ +6793388 0 512 +6793389 homeCount = 119 +6793390 waitCount = 60 +6793390 ripCount = 50 +6793391 locktype1 = 2 +6793391 locktype2 = 7 +6793413 locktype3 = 6 +6793413 goalCount = 1 +6793414 goalTotal = 41 +6793414 otherCount = 64 +~~~ +6797527 UP 10 +6797527 waslock = 0 +6797527 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6797551 512 16777728 +~~~ +6797585 DOWN 10 +6797585 0 16777728 +~~~ +~~~ +6797604 0 16779776 +~~~ +~~~ +6797606 0 16779264 +6797607 homeCount = 120 +6797608 waitCount = 60 +6797608 ripCount = 50 +6797609 locktype1 = 2 +6797609 locktype2 = 7 +6797610 locktype3 = 6 +6797610 goalCount = 1 +6797611 goalTotal = 41 +6797611 otherCount = 64 +~~~ +6797632 UP 10 +6797633 waslock = 0 +6797632 512 16779264 +~~~ +6797700 DOWN 10 +6797700 0 16779264 +6797701 0 2048 +~~~ +~~~ +~~~ +~~~ +6797728 homeCount = 120 +6797728 waitCount = 60 +6797729 ripCount = 50 +6797729 locktype1 = 2 +6797730 locktype2 = 7 +6797730 locktype3 = 6 +6797731 goalCount = 1 +6797731 goalTotal = 41 +6797732 otherCount = 64 +~~~ +6797848 UP 10 +6797848 waslock = 0 +6797848 512 2048 +~~~ +6804936 DOWN 10 +6804936 0 2048 +~~~ +~~~ +~~~ +~~~ +6804957 homeCount = 120 +6804958 waitCount = 60 +6804958 ripCount = 50 +6804959 locktype1 = 2 +6804959 locktype2 = 7 +6804960 locktype3 = 6 +6804960 goalCount = 1 +6804961 goalTotal = 41 +6804961 otherCount = 64 +~~~ +6804962 UP 10 +6804962 waslock = 0 +6804962 512 2048 +~~~ +6805032 DOWN 10 +6805032 0 2048 +~~~ +~~~ +~~~ +~~~ +6805061 homeCount = 120 +6805061 waitCount = 60 +6805062 ripCount = 50 +6805062 locktype1 = 2 +6805063 locktype2 = 7 +6805063 locktype3 = 6 +6805064 goalCount = 1 +6805064 goalTotal = 41 +6805065 otherCount = 64 +~~~ +6807081 UP 12 +6807081 2048 2048 +6807157 DOWN 12 +6807157 0 2048 +6807196 UP 12 +6807196 2048 2048 +6808281 DOWN 12 +6808281 0 2048 +6808302 UP 12 +6808302 2048 2048 +6811278 DOWN 12 +6811278 0 2048 +6811347 UP 12 +6811347 2048 2048 +6814081 CLICK1 +6814081 CLICK2 +~~~ +~~~ +~~~ +6814107 2048 67110912 +~~~ +6814257 2048 2048 +6819298 DOWN 12 +6819298 0 2048 +~~~ +~~~ +6819318 0 0 +~~~ +~~~ +6819319 0 1 +~~~ +~~~ +6819321 0 3 +~~~ +~~~ +6819323 0 7 +~~~ +~~~ +6819325 0 15 +~~~ +~~~ +6819327 0 31 +~~~ +~~~ +6819329 0 63 +~~~ +~~~ +6819330 0 127 +~~~ +~~~ +6819332 0 255 +6819333 homeCount = 120 +6819334 waitCount = 61 +6819334 ripCount = 50 +6819335 locktype1 = 2 +6819335 locktype2 = 7 +6819336 locktype3 = 6 +6819357 goalCount = 1 +6819357 goalTotal = 41 +6819358 otherCount = 64 +~~~ +6819359 CURRENTGOAL IS [7] +~~~ +6819367 UP 12 +6819367 2048 255 +6819410 DOWN 12 +6819410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6819444 homeCount = 120 +6819444 waitCount = 61 +6819445 ripCount = 50 +6819445 locktype1 = 2 +6819446 locktype2 = 7 +6819446 locktype3 = 6 +6819447 goalCount = 1 +6819447 goalTotal = 41 +6819448 otherCount = 64 +~~~ +6819449 CURRENTGOAL IS [7] +~~~ +6819507 UP 12 +6819507 2048 255 +6819537 DOWN 12 +6819537 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6819574 homeCount = 120 +6819575 waitCount = 61 +6819575 ripCount = 50 +6819576 locktype1 = 2 +6819576 locktype2 = 7 +6819577 locktype3 = 6 +6819577 goalCount = 1 +6819578 goalTotal = 41 +6819578 otherCount = 64 +~~~ +6819579 CURRENTGOAL IS [7] +~~~ +6828002 UP 4 +6828002 8 255 +~~~ +~~~ +6828645 DOWN 4 +6828645 0 255 +~~~ +~~~ +6828668 0 254 +~~~ +~~~ +6828670 0 252 +~~~ +~~~ +6828672 0 248 +~~~ +~~~ +6828673 0 240 +~~~ +~~~ +6828675 0 224 +~~~ +~~~ +6828677 0 192 +~~~ +~~~ +6828679 0 128 +~~~ +~~~ +6828681 0 0 +~~~ +~~~ +6828683 0 512 +6828684 homeCount = 120 +6828684 waitCount = 61 +6828685 ripCount = 50 +6828685 locktype1 = 2 +6828686 locktype2 = 7 +6828707 locktype3 = 6 +6828707 goalCount = 1 +6828708 goalTotal = 41 +6828708 otherCount = 65 +~~~ +6832786 UP 10 +6832787 waslock = 0 +6832786 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6832816 512 16777728 +~~~ +6832958 DOWN 10 +6832958 0 16777728 +6832966 0 512 +~~~ +~~~ +6832983 0 2560 +~~~ +~~~ +6832985 0 2048 +6832986 homeCount = 121 +6832986 waitCount = 61 +6832987 ripCount = 50 +6832987 locktype1 = 2 +6832987 locktype2 = 7 +6832988 locktype3 = 6 +6832988 goalCount = 1 +6832989 goalTotal = 41 +6832989 otherCount = 65 +~~~ +6833089 UP 10 +6833089 waslock = 0 +6833088 512 2048 +~~~ +6833877 DOWN 10 +6833877 0 2048 +~~~ +~~~ +~~~ +~~~ +6833903 homeCount = 121 +6833904 waitCount = 61 +6833904 ripCount = 50 +6833905 locktype1 = 2 +6833905 locktype2 = 7 +6833906 locktype3 = 6 +6833906 goalCount = 1 +6833906 goalTotal = 41 +6833907 otherCount = 65 +~~~ +6833908 UP 10 +6833908 waslock = 0 +6833907 512 2048 +6833930 DOWN 10 +6833930 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +6833955 homeCount = 121 +6833956 waitCount = 61 +6833956 ripCount = 50 +6833957 locktype1 = 2 +6833957 locktype2 = 7 +6833958 locktype3 = 6 +6833958 goalCount = 1 +6833959 goalTotal = 41 +6833959 otherCount = 65 +~~~ +6833962 UP 10 +6833962 waslock = 0 +6833962 512 2048 +~~~ +6837947 DOWN 10 +6837947 0 2048 +~~~ +~~~ +~~~ +~~~ +6837972 homeCount = 121 +6837973 waitCount = 61 +6837973 ripCount = 50 +6837974 locktype1 = 2 +6837974 locktype2 = 7 +6837974 locktype3 = 6 +6837975 goalCount = 1 +6837975 goalTotal = 41 +6837976 otherCount = 65 +~~~ +6837999 UP 10 +6838000 waslock = 0 +6837999 512 2048 +6838018 DOWN 10 +6838018 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +6838043 homeCount = 121 +6838044 waitCount = 61 +6838044 ripCount = 50 +6838045 locktype1 = 2 +6838045 locktype2 = 7 +6838046 locktype3 = 6 +6838046 goalCount = 1 +6838046 goalTotal = 41 +6838047 otherCount = 65 +~~~ +6839502 UP 12 +6839502 2048 2048 +6842503 CLICK1 +6842503 CLICK2 +~~~ +~~~ +~~~ +6842522 2048 67110912 +~~~ +6842672 2048 2048 +6851012 DOWN 12 +6851012 0 2048 +~~~ +~~~ +6851029 0 0 +~~~ +~~~ +6851031 0 1 +~~~ +~~~ +6851033 0 3 +~~~ +~~~ +6851035 0 7 +~~~ +~~~ +6851036 0 15 +~~~ +~~~ +6851038 0 31 +~~~ +~~~ +6851040 0 63 +~~~ +~~~ +6851042 0 127 +~~~ +~~~ +6851044 0 255 +6851045 homeCount = 121 +6851045 waitCount = 62 +6851046 ripCount = 50 +6851046 locktype1 = 2 +6851047 locktype2 = 7 +6851047 locktype3 = 6 +6851068 goalCount = 1 +6851069 goalTotal = 41 +6851069 otherCount = 65 +~~~ +6851070 CURRENTGOAL IS [7] +~~~ +6867037 UP 6 +6867037 32 255 +~~~ +~~~ +6867390 DOWN 6 +6867390 0 255 +~~~ +~~~ +6867410 0 254 +~~~ +~~~ +6867412 0 252 +~~~ +~~~ +6867414 0 248 +~~~ +~~~ +6867416 0 240 +~~~ +~~~ +6867417 0 224 +~~~ +~~~ +6867419 0 192 +~~~ +~~~ +6867421 0 128 +~~~ +~~~ +6867423 0 0 +~~~ +~~~ +6867425 0 512 +6867426 homeCount = 121 +6867426 waitCount = 62 +6867427 ripCount = 50 +6867427 locktype1 = 2 +6867428 locktype2 = 7 +6867449 locktype3 = 6 +6867449 goalCount = 1 +6867450 goalTotal = 41 +6867450 otherCount = 66 +~~~ +6871554 UP 10 +6871554 waslock = 0 +6871553 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6871589 512 16777728 +~~~ +6871739 512 512 +6871848 DOWN 10 +6871848 0 512 +~~~ +~~~ +6871874 0 2560 +~~~ +~~~ +6871876 0 2048 +6871877 homeCount = 122 +6871877 waitCount = 62 +6871878 ripCount = 50 +6871878 locktype1 = 2 +6871879 locktype2 = 7 +6871879 locktype3 = 6 +6871880 goalCount = 1 +6871880 goalTotal = 41 +6871881 otherCount = 66 +~~~ +6871905 UP 10 +6871905 waslock = 0 +6871905 512 2048 +~~~ +6877839 DOWN 10 +6877839 0 2048 +~~~ +~~~ +~~~ +~~~ +6877866 homeCount = 122 +6877867 waitCount = 62 +6877867 ripCount = 50 +6877868 locktype1 = 2 +6877868 locktype2 = 7 +6877869 locktype3 = 6 +6877869 goalCount = 1 +6877869 goalTotal = 41 +6877870 otherCount = 66 +~~~ +6879791 UP 12 +6879791 2048 2048 +6881416 DOWN 12 +6881416 0 2048 +6881430 UP 12 +6881430 2048 2048 +6881961 DOWN 12 +6881961 0 2048 +6881975 UP 12 +6881975 2048 2048 +6883663 DOWN 12 +6883663 0 2048 +6883693 UP 12 +6883693 2048 2048 +6886792 CLICK1 +6886792 CLICK2 +~~~ +~~~ +~~~ +6886815 2048 67110912 +~~~ +6886965 2048 2048 +6893793 DOWN 12 +6893793 0 2048 +~~~ +~~~ +6893814 0 0 +~~~ +~~~ +6893816 0 1 +~~~ +~~~ +6893817 0 3 +~~~ +~~~ +6893819 0 7 +~~~ +~~~ +6893821 0 15 +~~~ +~~~ +6893823 0 31 +~~~ +~~~ +6893825 0 63 +~~~ +~~~ +6893826 0 127 +~~~ +~~~ +6893828 0 255 +6893829 homeCount = 122 +6893830 waitCount = 63 +6893830 ripCount = 50 +6893831 locktype1 = 2 +6893831 locktype2 = 7 +6893832 locktype3 = 6 +6893853 goalCount = 1 +6893853 goalTotal = 41 +6893854 otherCount = 66 +~~~ +6893855 CURRENTGOAL IS [7] +~~~ +6905937 UP 10 +6905938 waslock = 0 +6905937 512 255 +~~~ +6905957 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6905965 512 254 +~~~ +~~~ +6905966 512 252 +~~~ +~~~ +6905968 512 248 +~~~ +~~~ +6905970 512 240 +~~~ +~~~ +6905972 512 224 +~~~ +~~~ +6905974 512 192 +~~~ +~~~ +6905975 512 128 +~~~ +~~~ +6905977 512 0 +~~~ +~~~ +~~~ +6906246 0 0 +6930957 LOCKEND +~~~ +~~~ +~~~ +6930979 0 512 +6934646 UP 10 +6934646 waslock = 0 +6934646 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6934672 512 16777728 +~~~ +6934799 DOWN 10 +6934799 0 16777728 +~~~ +~~~ +6934819 0 16779776 +~~~ +~~~ +6934821 0 16779264 +6934822 homeCount = 123 +6934822 waitCount = 63 +6934823 ripCount = 50 +6934823 locktype1 = 2 +6934824 locktype2 = 8 +6934824 locktype3 = 6 +6934825 goalCount = 1 +6934825 goalTotal = 41 +6934826 otherCount = 66 +~~~ +6934847 0 2048 +6934867 UP 10 +6934867 waslock = 0 +6934867 512 2048 +~~~ +6934893 DOWN 10 +6934893 0 2048 +~~~ +~~~ +~~~ +~~~ +6934910 homeCount = 123 +6934911 waitCount = 63 +6934911 ripCount = 50 +6934912 locktype1 = 2 +6934912 locktype2 = 8 +6934913 locktype3 = 6 +6934913 goalCount = 1 +6934914 goalTotal = 41 +6934914 otherCount = 66 +~~~ +6935112 UP 10 +6935112 waslock = 0 +6935112 512 2048 +~~~ +6935617 DOWN 10 +6935616 0 2048 +~~~ +~~~ +~~~ +~~~ +6935639 homeCount = 123 +6935640 waitCount = 63 +6935640 ripCount = 50 +6935641 locktype1 = 2 +6935641 locktype2 = 8 +6935642 locktype3 = 6 +6935642 goalCount = 1 +6935643 goalTotal = 41 +6935643 otherCount = 66 +~~~ +6935681 UP 10 +6935682 waslock = 0 +6935681 512 2048 +~~~ +6935714 DOWN 10 +6935714 0 2048 +~~~ +~~~ +~~~ +~~~ +6935740 homeCount = 123 +6935741 waitCount = 63 +6935741 ripCount = 50 +6935742 locktype1 = 2 +6935742 locktype2 = 8 +6935743 locktype3 = 6 +6935743 goalCount = 1 +6935744 goalTotal = 41 +6935744 otherCount = 66 +~~~ +6935801 UP 10 +6935801 waslock = 0 +6935801 512 2048 +~~~ +6935843 DOWN 10 +6935843 0 2048 +~~~ +~~~ +~~~ +~~~ +6935871 homeCount = 123 +6935872 waitCount = 63 +6935872 ripCount = 50 +6935873 locktype1 = 2 +6935873 locktype2 = 8 +6935874 locktype3 = 6 +6935874 goalCount = 1 +6935875 goalTotal = 41 +6935875 otherCount = 66 +~~~ +6935918 UP 10 +6935918 waslock = 0 +6935918 512 2048 +~~~ +6935945 DOWN 10 +6935945 0 2048 +~~~ +~~~ +~~~ +~~~ +6935960 homeCount = 123 +6935960 waitCount = 63 +6935961 ripCount = 50 +6935961 locktype1 = 2 +6935962 locktype2 = 8 +6935962 locktype3 = 6 +6935963 goalCount = 1 +6935963 goalTotal = 41 +6935964 otherCount = 66 +~~~ +6936031 UP 10 +6936031 waslock = 0 +6936031 512 2048 +~~~ +6941357 DOWN 10 +6941357 0 2048 +6941366 UP 10 +6941366 waslock = 0 +6941366 512 2048 +~~~ +~~~ +~~~ +~~~ +6941394 homeCount = 123 +6941395 waitCount = 63 +6941395 ripCount = 50 +6941396 locktype1 = 2 +6941396 locktype2 = 8 +6941397 locktype3 = 6 +6941397 goalCount = 1 +6941398 goalTotal = 41 +6941398 otherCount = 66 +~~~ +~~~ +6941466 DOWN 10 +6941466 0 2048 +~~~ +~~~ +~~~ +~~~ +6941491 homeCount = 123 +6941492 waitCount = 63 +6941492 ripCount = 50 +6941493 locktype1 = 2 +6941493 locktype2 = 8 +6941493 locktype3 = 6 +6941494 goalCount = 1 +6941494 goalTotal = 41 +6941495 otherCount = 66 +~~~ +6941496 UP 10 +6941496 waslock = 0 +6941495 512 2048 +~~~ +6941566 DOWN 10 +6941566 0 2048 +~~~ +~~~ +~~~ +~~~ +6941591 homeCount = 123 +6941592 waitCount = 63 +6941592 ripCount = 50 +6941593 locktype1 = 2 +6941593 locktype2 = 8 +6941594 locktype3 = 6 +6941594 goalCount = 1 +6941595 goalTotal = 41 +6941595 otherCount = 66 +~~~ +6943531 UP 12 +6943531 2048 2048 +6945000 DOWN 12 +6945000 0 2048 +6945026 UP 12 +6945026 2048 2048 +6945349 DOWN 12 +6945349 0 2048 +6945363 UP 12 +6945363 2048 2048 +6945387 DOWN 12 +6945387 0 2048 +6945442 UP 12 +6945442 2048 2048 +6947532 CLICK1 +6947532 CLICK2 +~~~ +~~~ +~~~ +6947560 2048 67110912 +~~~ +6947710 2048 2048 +6953981 DOWN 12 +6953981 0 2048 +6953994 UP 12 +6953994 2048 2048 +~~~ +~~~ +6953999 2048 0 +~~~ +~~~ +6954001 2048 1 +~~~ +~~~ +6954002 2048 3 +~~~ +~~~ +6954004 2048 7 +~~~ +~~~ +6954006 2048 15 +~~~ +~~~ +6954008 2048 31 +~~~ +~~~ +6954010 2048 63 +~~~ +~~~ +6954012 2048 127 +~~~ +~~~ +6954013 2048 255 +6954014 homeCount = 123 +6954015 waitCount = 64 +6954015 ripCount = 50 +6954016 locktype1 = 2 +6954037 locktype2 = 8 +6954037 locktype3 = 6 +6954038 goalCount = 1 +6954038 goalTotal = 41 +6954039 otherCount = 66 +~~~ +6954040 CURRENTGOAL IS [7] +~~~ +6954190 DOWN 12 +6954190 0 255 +~~~ +~~~ +~~~ +~~~ +6954214 UP 12 +6954214 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6954227 homeCount = 123 +6954228 waitCount = 64 +6954228 ripCount = 50 +6954229 locktype1 = 2 +6954229 locktype2 = 8 +6954230 locktype3 = 6 +6954230 goalCount = 1 +6954231 goalTotal = 41 +6954231 otherCount = 66 +~~~ +6954232 CURRENTGOAL IS [7] +~~~ +6954328 DOWN 12 +6954328 0 255 +6954335 UP 12 +6954335 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6954367 homeCount = 123 +6954368 waitCount = 64 +6954368 ripCount = 50 +6954369 locktype1 = 2 +6954369 locktype2 = 8 +6954370 locktype3 = 6 +6954370 goalCount = 1 +6954371 goalTotal = 41 +6954371 otherCount = 66 +~~~ +6954372 CURRENTGOAL IS [7] +~~~ +6956456 DOWN 12 +6956456 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +6956490 homeCount = 123 +6956491 waitCount = 64 +6956491 ripCount = 50 +6956492 locktype1 = 2 +6956492 locktype2 = 8 +6956493 locktype3 = 6 +6956493 goalCount = 1 +6956494 goalTotal = 41 +6956494 otherCount = 66 +~~~ +6956495 CURRENTGOAL IS [7] +~~~ +6961679 UP 5 +6961679 16 255 +~~~ +~~~ +6961995 DOWN 5 +6961995 0 255 +~~~ +~~~ +6962013 0 254 +~~~ +~~~ +6962015 0 252 +~~~ +~~~ +6962017 0 248 +~~~ +~~~ +6962019 0 240 +~~~ +~~~ +6962021 0 224 +~~~ +~~~ +6962022 0 192 +~~~ +~~~ +6962024 0 128 +~~~ +~~~ +6962026 0 0 +~~~ +~~~ +6962028 0 512 +6962029 homeCount = 123 +6962030 waitCount = 64 +6962030 ripCount = 50 +6962030 locktype1 = 2 +6962031 locktype2 = 8 +6962052 locktype3 = 6 +6962053 goalCount = 1 +6962053 goalTotal = 41 +6962054 otherCount = 67 +~~~ +6962054 16 512 +6962809 DOWN 5 +6962809 0 512 +6967089 UP 10 +6967089 waslock = 0 +6967089 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +6967119 512 16777728 +~~~ +6967269 512 512 +6973816 DOWN 10 +6973816 0 512 +~~~ +~~~ +6973835 0 2560 +~~~ +~~~ +6973836 0 2048 +6973837 homeCount = 124 +6973838 waitCount = 64 +6973838 ripCount = 50 +6973839 locktype1 = 2 +6973839 locktype2 = 8 +6973840 locktype3 = 6 +6973840 goalCount = 1 +6973841 goalTotal = 41 +6973841 otherCount = 67 +~~~ +6973842 UP 10 +6973863 waslock = 0 +6973842 512 2048 +~~~ +6973904 DOWN 10 +6973904 0 2048 +~~~ +~~~ +~~~ +~~~ +6973929 homeCount = 124 +6973929 waitCount = 64 +6973930 ripCount = 50 +6973930 locktype1 = 2 +6973931 locktype2 = 8 +6973931 locktype3 = 6 +6973932 goalCount = 1 +6973932 goalTotal = 41 +6973933 otherCount = 67 +~~~ +6975942 UP 12 +6975942 2048 2048 +6978569 DOWN 12 +6978569 0 2048 +6978588 UP 12 +6978588 2048 2048 +6980629 DOWN 12 +6980629 0 2048 +6980662 UP 12 +6980662 2048 2048 +6981442 CLICK1 +6981442 CLICK2 +~~~ +~~~ +~~~ +6981468 2048 67110912 +~~~ +6981618 2048 2048 +6987168 DOWN 12 +6987168 0 2048 +~~~ +~~~ +6987185 0 0 +~~~ +~~~ +6987187 0 1 +~~~ +~~~ +6987188 0 3 +~~~ +~~~ +6987190 0 7 +~~~ +~~~ +6987192 0 15 +~~~ +~~~ +6987194 0 31 +~~~ +~~~ +6987196 0 63 +~~~ +~~~ +6987197 0 127 +~~~ +~~~ +6987199 0 255 +6987200 homeCount = 124 +6987201 waitCount = 65 +6987201 ripCount = 50 +6987202 locktype1 = 2 +6987202 locktype2 = 8 +6987203 locktype3 = 6 +6987224 goalCount = 1 +6987224 goalTotal = 41 +6987225 otherCount = 67 +~~~ +6987226 CURRENTGOAL IS [7] +~~~ +6995646 UP 5 +6995646 16 255 +~~~ +~~~ +6996817 DOWN 5 +6996817 0 255 +~~~ +~~~ +6996836 0 254 +~~~ +~~~ +6996838 0 252 +~~~ +~~~ +6996840 0 248 +~~~ +~~~ +6996841 0 240 +~~~ +~~~ +6996843 0 224 +~~~ +~~~ +6996845 0 192 +~~~ +~~~ +6996847 0 128 +~~~ +~~~ +6996849 0 0 +~~~ +~~~ +6996851 0 512 +6996852 homeCount = 124 +6996852 waitCount = 65 +6996853 ripCount = 50 +6996853 locktype1 = 2 +6996854 locktype2 = 8 +6996875 locktype3 = 6 +6996875 goalCount = 1 +6996876 goalTotal = 41 +6996876 otherCount = 68 +~~~ +6996877 16 512 +6996887 DOWN 5 +6996887 0 512 +6997103 16 512 +6997395 DOWN 5 +6997395 0 512 +6997437 16 512 +6997638 DOWN 5 +6997638 0 512 +7003045 UP 10 +7003046 waslock = 0 +7003045 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7003072 512 16777728 +~~~ +7003222 512 512 +7003296 DOWN 10 +7003296 0 512 +~~~ +~~~ +7003317 0 2560 +~~~ +~~~ +7003319 0 2048 +7003320 homeCount = 125 +7003320 waitCount = 65 +7003321 ripCount = 50 +7003321 locktype1 = 2 +7003322 locktype2 = 8 +7003322 locktype3 = 6 +7003323 goalCount = 1 +7003323 goalTotal = 41 +7003324 otherCount = 68 +~~~ +7003445 UP 10 +7003445 waslock = 0 +7003445 512 2048 +~~~ +7003799 DOWN 10 +7003799 0 2048 +~~~ +~~~ +~~~ +~~~ +7003820 homeCount = 125 +7003821 waitCount = 65 +7003821 ripCount = 50 +7003822 locktype1 = 2 +7003822 locktype2 = 8 +7003823 locktype3 = 6 +7003823 goalCount = 1 +7003824 goalTotal = 41 +7003824 otherCount = 68 +~~~ +7003825 UP 10 +7003825 waslock = 0 +7003825 512 2048 +7003847 DOWN 10 +7003847 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +7003870 homeCount = 125 +7003871 waitCount = 65 +7003871 ripCount = 50 +7003872 locktype1 = 2 +7003872 locktype2 = 8 +7003873 locktype3 = 6 +7003873 goalCount = 1 +7003874 goalTotal = 41 +7003874 otherCount = 68 +~~~ +7003892 UP 10 +7003893 waslock = 0 +7003892 512 2048 +~~~ +7008206 DOWN 10 +7008206 0 2048 +~~~ +~~~ +~~~ +~~~ +7008230 homeCount = 125 +7008230 waitCount = 65 +7008231 ripCount = 50 +7008231 locktype1 = 2 +7008232 locktype2 = 8 +7008232 locktype3 = 6 +7008233 goalCount = 1 +7008233 goalTotal = 41 +7008234 otherCount = 68 +~~~ +7008234 UP 10 +7008234 waslock = 0 +7008234 512 2048 +~~~ +7008328 DOWN 10 +7008328 0 2048 +~~~ +~~~ +~~~ +~~~ +7008353 homeCount = 125 +7008353 waitCount = 65 +7008354 ripCount = 50 +7008354 locktype1 = 2 +7008355 locktype2 = 8 +7008355 locktype3 = 6 +7008355 goalCount = 1 +7008356 goalTotal = 41 +7008356 otherCount = 68 +~~~ +7008384 UP 10 +7008385 waslock = 0 +7008384 512 2048 +~~~ +7008410 DOWN 10 +7008410 0 2048 +~~~ +~~~ +~~~ +~~~ +7008432 homeCount = 125 +7008433 waitCount = 65 +7008433 ripCount = 50 +7008434 locktype1 = 2 +7008434 locktype2 = 8 +7008435 locktype3 = 6 +7008435 goalCount = 1 +7008436 goalTotal = 41 +7008436 otherCount = 68 +~~~ +7010275 UP 12 +7010275 2048 2048 +7014339 DOWN 12 +7014339 0 2048 +7014351 UP 12 +7014351 2048 2048 +7015775 CLICK1 +7015775 CLICK2 +~~~ +~~~ +~~~ +7015800 2048 67110912 +~~~ +7015950 2048 2048 +7021725 DOWN 12 +7021725 0 2048 +~~~ +~~~ +7021748 0 0 +~~~ +~~~ +7021750 0 1 +~~~ +~~~ +7021751 0 3 +~~~ +~~~ +7021753 0 7 +~~~ +~~~ +7021755 0 15 +~~~ +~~~ +7021757 0 31 +~~~ +~~~ +7021759 0 63 +~~~ +~~~ +7021760 0 127 +~~~ +~~~ +7021762 0 255 +7021763 homeCount = 125 +7021764 waitCount = 66 +7021764 ripCount = 50 +7021765 locktype1 = 2 +7021765 locktype2 = 8 +7021766 locktype3 = 6 +7021787 goalCount = 1 +7021787 goalTotal = 41 +7021788 otherCount = 68 +~~~ +7021789 CURRENTGOAL IS [7] +~~~ +7029936 UP 11 +7029936 LOCKOUT 2 +7029935 1024 255 +~~~ +7029959 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7029967 1024 254 +~~~ +~~~ +7029969 1024 252 +~~~ +~~~ +7029970 1024 248 +~~~ +~~~ +7029972 1024 240 +~~~ +~~~ +7029974 1024 224 +~~~ +~~~ +7029976 1024 192 +~~~ +~~~ +7029978 1024 128 +~~~ +~~~ +7029980 1024 0 +~~~ +~~~ +7030046 DOWN 11 +7030046 0 0 +7038812 UP 1 +7038812 1 0 +7040163 DOWN 1 +7040163 0 0 +7044450 512 0 +7045274 0 0 +7045315 512 0 +7045409 0 0 +7045452 512 0 +7045487 0 0 +7045609 512 0 +7048059 0 0 +7048119 512 0 +7048160 0 0 +7054959 LOCKEND +~~~ +~~~ +~~~ +7054982 0 512 +7059549 UP 10 +7059549 waslock = 0 +7059549 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7059577 512 16777728 +~~~ +7059727 512 512 +7060080 DOWN 10 +7060080 0 512 +~~~ +~~~ +7060101 0 1536 +~~~ +~~~ +7060103 0 1024 +7060104 homeCount = 126 +7060104 waitCount = 66 +7060105 ripCount = 50 +7060105 locktype1 = 2 +7060106 locktype2 = 9 +7060106 locktype3 = 6 +7060107 goalCount = 1 +7060107 goalTotal = 41 +7060108 otherCount = 68 +~~~ +7060126 UP 10 +7060126 waslock = 0 +7060126 512 1024 +~~~ +7060201 DOWN 10 +7060201 0 1024 +~~~ +~~~ +~~~ +~~~ +7060230 homeCount = 126 +7060231 waitCount = 66 +7060231 ripCount = 50 +7060232 locktype1 = 2 +7060232 locktype2 = 9 +7060233 locktype3 = 6 +7060233 goalCount = 1 +7060234 goalTotal = 41 +7060234 otherCount = 68 +~~~ +7060239 UP 10 +7060240 waslock = 0 +7060239 512 1024 +~~~ +7065567 DOWN 10 +7065567 0 1024 +7065581 UP 10 +7065581 waslock = 0 +7065581 512 1024 +~~~ +~~~ +~~~ +~~~ +7065605 homeCount = 126 +7065605 waitCount = 66 +7065606 ripCount = 50 +7065606 locktype1 = 2 +7065607 locktype2 = 9 +7065607 locktype3 = 6 +7065608 goalCount = 1 +7065608 goalTotal = 41 +7065609 otherCount = 68 +~~~ +~~~ +7065644 DOWN 10 +7065644 0 1024 +~~~ +~~~ +~~~ +~~~ +7065673 homeCount = 126 +7065673 waitCount = 66 +7065674 ripCount = 50 +7065674 locktype1 = 2 +7065675 locktype2 = 9 +7065675 locktype3 = 6 +7065676 goalCount = 1 +7065676 goalTotal = 41 +7065677 otherCount = 68 +~~~ +7067367 UP 11 +7067367 1024 1024 +7069514 DOWN 11 +7069514 0 1024 +7069517 UP 11 +7069517 1024 1024 +7072868 BEEP1 +7072868 BEEP2 +~~~ +~~~ +~~~ +7072891 1024 33555456 +~~~ +7073041 1024 1024 +7079165 DOWN 11 +7079165 0 1024 +7079170 UP 11 +7079170 1024 1024 +~~~ +~~~ +7079193 1024 0 +~~~ +~~~ +7079195 1024 1 +~~~ +~~~ +7079197 1024 3 +~~~ +~~~ +7079199 1024 7 +~~~ +~~~ +7079200 1024 15 +~~~ +~~~ +7079202 1024 31 +~~~ +~~~ +7079204 1024 63 +~~~ +~~~ +7079206 1024 127 +~~~ +~~~ +7079208 1024 255 +7079209 homeCount = 126 +7079209 waitCount = 66 +7079210 ripCount = 51 +7079210 locktype1 = 2 +7079231 locktype2 = 9 +7079231 locktype3 = 6 +7079232 goalCount = 1 +7079232 goalTotal = 41 +7079233 otherCount = 68 +~~~ +7079234 CURRENTGOAL IS [7] +~~~ +7079287 DOWN 11 +7079287 0 255 +7079298 UP 11 +7079298 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7079327 homeCount = 126 +7079328 waitCount = 66 +7079328 ripCount = 51 +7079329 locktype1 = 2 +7079329 locktype2 = 9 +7079330 locktype3 = 6 +7079330 goalCount = 1 +7079331 goalTotal = 41 +7079331 otherCount = 68 +~~~ +7079332 CURRENTGOAL IS [7] +~~~ +7082284 DOWN 11 +7082284 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7082317 homeCount = 126 +7082318 waitCount = 66 +7082318 ripCount = 51 +7082319 locktype1 = 2 +7082319 locktype2 = 9 +7082320 locktype3 = 6 +7082320 goalCount = 1 +7082321 goalTotal = 41 +7082321 otherCount = 68 +~~~ +7082322 CURRENTGOAL IS [7] +~~~ +7085804 UP 7 +7085804 64 255 +~~~ +~~~ +7085824 outer reward +~~~ +7085824 64 4194559 +~~~ +~~~ +7085981 DOWN 7 +7085981 0 4194559 +~~~ +~~~ +7086003 0 4194558 +~~~ +~~~ +7086005 0 4194556 +~~~ +~~~ +7086007 0 4194552 +~~~ +~~~ +7086008 0 4194544 +~~~ +~~~ +7086010 0 4194528 +~~~ +~~~ +7086012 0 4194496 +~~~ +~~~ +7086014 0 4194432 +~~~ +~~~ +7086016 0 4194304 +~~~ +~~~ +7086018 0 4194816 +7086019 homeCount = 126 +7086019 waitCount = 66 +7086020 ripCount = 51 +7086041 locktype1 = 2 +7086041 locktype2 = 9 +7086042 locktype3 = 6 +7086042 goalCount = 2 +7086043 goalTotal = 42 +7086043 otherCount = 68 +~~~ +7086044 64 4194816 +7086274 64 512 +7094087 DOWN 7 +7094087 0 512 +7099767 UP 10 +7099767 waslock = 0 +7099767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7099800 512 16777728 +~~~ +7099950 512 512 +7104805 DOWN 10 +7104805 0 512 +~~~ +~~~ +7104824 0 2560 +~~~ +~~~ +7104826 0 2048 +7104827 homeCount = 127 +7104828 waitCount = 66 +7104828 ripCount = 51 +7104829 locktype1 = 2 +7104829 locktype2 = 9 +7104830 locktype3 = 6 +7104830 goalCount = 2 +7104831 goalTotal = 42 +7104831 otherCount = 68 +~~~ +7106451 UP 12 +7106451 2048 2048 +7108789 DOWN 12 +7108789 0 2048 +7108810 UP 12 +7108810 2048 2048 +7108872 DOWN 12 +7108872 0 2048 +7108884 UP 12 +7108884 2048 2048 +7111310 DOWN 12 +7111310 0 2048 +7111315 UP 12 +7111315 2048 2048 +7111952 CLICK1 +7111952 CLICK2 +~~~ +~~~ +~~~ +7111980 2048 67110912 +~~~ +7112130 2048 2048 +7119398 DOWN 12 +7119398 0 2048 +~~~ +~~~ +7119425 0 0 +~~~ +~~~ +7119426 0 1 +~~~ +~~~ +7119428 0 3 +~~~ +~~~ +7119430 0 7 +~~~ +~~~ +7119432 0 15 +~~~ +~~~ +7119434 0 31 +~~~ +~~~ +7119436 0 63 +~~~ +~~~ +7119437 0 127 +~~~ +7119439 UP 12 +7119439 2048 127 +~~~ +7119440 homeCount = 127 +7119441 waitCount = 67 +7119442 ripCount = 51 +7119442 locktype1 = 2 +7119463 locktype2 = 9 +7119464 locktype3 = 6 +7119464 goalCount = 2 +7119465 goalTotal = 42 +7119465 otherCount = 68 +~~~ +7119466 CURRENTGOAL IS [7] +~~~ +7119467 2048 255 +7121503 DOWN 12 +7121503 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7121544 homeCount = 127 +7121544 waitCount = 67 +7121545 ripCount = 51 +7121545 locktype1 = 2 +7121546 locktype2 = 9 +7121546 locktype3 = 6 +7121547 goalCount = 2 +7121547 goalTotal = 42 +7121548 otherCount = 68 +~~~ +7121549 CURRENTGOAL IS [7] +~~~ +7121574 UP 12 +7121574 2048 255 +7121609 DOWN 12 +7121609 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7121643 homeCount = 127 +7121643 waitCount = 67 +7121644 ripCount = 51 +7121644 locktype1 = 2 +7121645 locktype2 = 9 +7121645 locktype3 = 6 +7121646 goalCount = 2 +7121646 goalTotal = 42 +7121647 otherCount = 68 +~~~ +7121648 CURRENTGOAL IS [7] +~~~ +7126447 UP 7 +7126447 64 255 +~~~ +~~~ +7126469 outer reward +~~~ +7126469 64 4194559 +~~~ +~~~ +7126710 DOWN 7 +7126710 0 4194559 +~~~ +~~~ +7126737 0 4194558 +~~~ +~~~ +7126739 0 4194556 +~~~ +~~~ +7126740 0 4194552 +~~~ +~~~ +7126742 0 4194544 +~~~ +7126744 64 4194544 +~~~ +~~~ +7126745 64 4194528 +~~~ +~~~ +7126747 64 4194496 +~~~ +7126748 64 4194432 +~~~ +~~~ +7126750 64 4194304 +~~~ +~~~ +7126751 64 4194816 +7126752 homeCount = 127 +7126774 waitCount = 67 +7126774 ripCount = 51 +7126775 locktype1 = 2 +7126775 locktype2 = 9 +7126775 locktype3 = 6 +7126776 goalCount = 3 +7126776 goalTotal = 43 +7126777 otherCount = 68 +~~~ +7126919 64 512 +7127253 DOWN 7 +7127253 0 512 +7127273 64 512 +7127534 DOWN 7 +7127534 0 512 +7127543 64 512 +7127670 DOWN 7 +7127670 0 512 +7127680 64 512 +7136565 DOWN 7 +7136565 0 512 +7136647 64 512 +7136665 DOWN 7 +7136665 0 512 +7140698 UP 10 +7140698 waslock = 0 +7140698 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7140726 512 16777728 +~~~ +7140876 512 512 +7147055 DOWN 10 +7147055 0 512 +~~~ +~~~ +7147078 0 1536 +~~~ +~~~ +7147080 0 1024 +7147081 homeCount = 128 +7147081 waitCount = 67 +7147082 ripCount = 51 +7147082 locktype1 = 2 +7147083 locktype2 = 9 +7147083 locktype3 = 6 +7147084 goalCount = 3 +7147084 goalTotal = 43 +7147085 otherCount = 68 +~~~ +7148849 UP 11 +7148849 1024 1024 +7151745 DOWN 11 +7151745 0 1024 +7151771 UP 11 +7151771 1024 1024 +7151783 DOWN 11 +7151783 0 1024 +7151814 UP 11 +7151814 1024 1024 +7151849 BEEP1 +7151849 BEEP2 +~~~ +~~~ +~~~ +7151871 1024 33555456 +~~~ +7152020 1024 1024 +7158055 DOWN 11 +7158055 0 1024 +7158073 UP 11 +7158073 1024 1024 +~~~ +~~~ +7158091 1024 0 +~~~ +~~~ +7158093 1024 1 +~~~ +~~~ +7158095 1024 3 +~~~ +~~~ +7158097 1024 7 +~~~ +~~~ +7158098 1024 15 +~~~ +~~~ +7158100 1024 31 +~~~ +~~~ +7158102 1024 63 +~~~ +~~~ +7158104 1024 127 +~~~ +~~~ +7158106 1024 255 +7158107 homeCount = 128 +7158107 waitCount = 67 +7158108 ripCount = 52 +7158108 locktype1 = 2 +7158130 locktype2 = 9 +7158130 locktype3 = 6 +7158130 goalCount = 3 +7158131 goalTotal = 43 +7158131 otherCount = 68 +~~~ +7158132 CURRENTGOAL IS [7] +~~~ +7160244 DOWN 11 +7160244 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7160279 homeCount = 128 +7160280 waitCount = 67 +7160280 ripCount = 52 +7160281 locktype1 = 2 +7160281 locktype2 = 9 +7160282 locktype3 = 6 +7160282 goalCount = 3 +7160283 goalTotal = 43 +7160283 otherCount = 68 +~~~ +7160284 CURRENTGOAL IS [7] +~~~ +7160372 UP 11 +7160371 1024 255 +7160380 DOWN 11 +7160380 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7160417 homeCount = 128 +7160418 waitCount = 67 +7160418 ripCount = 52 +7160419 locktype1 = 2 +7160419 locktype2 = 9 +7160420 locktype3 = 6 +7160420 goalCount = 3 +7160421 goalTotal = 43 +7160421 otherCount = 68 +~~~ +7160422 CURRENTGOAL IS [7] +~~~ +7163197 UP 7 +7163197 64 255 +~~~ +~~~ +7163218 outer reward +~~~ +7163218 64 4194559 +~~~ +~~~ +7163445 DOWN 7 +7163445 0 4194559 +~~~ +~~~ +7163466 0 4194558 +~~~ +~~~ +7163468 0 4194556 +~~~ +~~~ +7163470 0 4194552 +~~~ +~~~ +7163472 0 4194544 +~~~ +~~~ +7163473 0 4194528 +~~~ +~~~ +7163475 0 4194496 +~~~ +~~~ +7163477 0 4194432 +~~~ +~~~ +7163479 0 4194304 +~~~ +~~~ +7163481 0 4194816 +7163482 homeCount = 128 +7163482 waitCount = 67 +7163483 ripCount = 52 +7163503 locktype1 = 2 +7163504 locktype2 = 9 +7163504 locktype3 = 6 +7163505 goalCount = 4 +7163505 goalTotal = 44 +7163506 otherCount = 68 +~~~ +7163506 64 4194816 +7163668 64 512 +7173399 DOWN 7 +7173399 0 512 +7173483 64 512 +7173516 DOWN 7 +7173516 0 512 +7177879 UP 10 +7177879 waslock = 0 +7177879 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7177905 512 16777728 +~~~ +7178055 512 512 +7185421 DOWN 10 +7185421 0 512 +~~~ +~~~ +7185440 0 1536 +~~~ +~~~ +7185441 0 1024 +7185442 homeCount = 129 +7185443 waitCount = 67 +7185443 ripCount = 52 +7185444 locktype1 = 2 +7185444 locktype2 = 9 +7185445 locktype3 = 6 +7185445 goalCount = 4 +7185446 goalTotal = 44 +7185446 otherCount = 68 +~~~ +7187609 UP 11 +7187609 1024 1024 +7189528 DOWN 11 +7189527 0 1024 +7189561 UP 11 +7189561 1024 1024 +7190448 DOWN 11 +7190448 0 1024 +7190455 UP 11 +7190455 1024 1024 +7190610 BEEP1 +7190610 BEEP2 +~~~ +~~~ +~~~ +7190633 1024 33555456 +~~~ +7190783 1024 1024 +7196165 DOWN 11 +7196165 0 1024 +~~~ +~~~ +7196190 0 0 +~~~ +~~~ +7196192 0 1 +~~~ +~~~ +7196194 0 3 +~~~ +~~~ +7196196 0 7 +~~~ +~~~ +7196198 0 15 +~~~ +~~~ +7196199 0 31 +~~~ +~~~ +7196201 0 63 +~~~ +~~~ +7196203 0 127 +~~~ +~~~ +7196205 0 255 +7196206 homeCount = 129 +7196206 waitCount = 67 +7196207 ripCount = 53 +7196207 locktype1 = 2 +7196208 locktype2 = 9 +7196208 locktype3 = 6 +7196229 goalCount = 4 +7196230 goalTotal = 44 +7196230 otherCount = 68 +~~~ +7196231 CURRENTGOAL IS [7] +~~~ +7196249 UP 11 +7196249 1024 255 +7196252 DOWN 11 +7196252 0 255 +7196254 UP 11 +7196254 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7196289 homeCount = 129 +7196290 waitCount = 67 +7196290 ripCount = 53 +7196291 locktype1 = 2 +7196291 locktype2 = 9 +7196291 locktype3 = 6 +7196292 goalCount = 4 +7196292 goalTotal = 44 +7196293 otherCount = 68 +~~~ +7196294 CURRENTGOAL IS [7] +~~~ +7196297 DOWN 11 +7196297 0 255 +7196324 UP 11 +7196324 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7196352 homeCount = 129 +7196352 waitCount = 67 +7196353 ripCount = 53 +7196353 locktype1 = 2 +7196354 locktype2 = 9 +7196354 locktype3 = 6 +7196355 goalCount = 4 +7196355 goalTotal = 44 +7196356 otherCount = 68 +~~~ +7196357 CURRENTGOAL IS [7] +~~~ +7198389 DOWN 11 +7198389 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198425 homeCount = 129 +7198426 waitCount = 67 +7198426 ripCount = 53 +7198427 locktype1 = 2 +7198428 locktype2 = 9 +7198428 locktype3 = 6 +7198428 goalCount = 4 +7198429 goalTotal = 44 +7198429 otherCount = 68 +~~~ +7198430 CURRENTGOAL IS [7] +~~~ +7198437 UP 11 +7198437 1024 255 +7198523 DOWN 11 +7198523 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198559 homeCount = 129 +7198560 waitCount = 67 +7198560 ripCount = 53 +7198561 locktype1 = 2 +7198561 locktype2 = 9 +7198562 locktype3 = 6 +7198562 goalCount = 4 +7198563 goalTotal = 44 +7198563 otherCount = 68 +~~~ +7198564 CURRENTGOAL IS [7] +~~~ +7198624 UP 11 +7198624 1024 255 +7198644 DOWN 11 +7198644 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198681 homeCount = 129 +7198682 waitCount = 67 +7198682 ripCount = 53 +7198683 locktype1 = 2 +7198683 locktype2 = 9 +7198684 locktype3 = 6 +7198684 goalCount = 4 +7198685 goalTotal = 44 +7198685 otherCount = 68 +~~~ +7198686 CURRENTGOAL IS [7] +~~~ +7198805 UP 11 +7198805 1024 255 +7198849 DOWN 11 +7198849 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7198882 homeCount = 129 +7198883 waitCount = 67 +7198883 ripCount = 53 +7198884 locktype1 = 2 +7198884 locktype2 = 9 +7198885 locktype3 = 6 +7198885 goalCount = 4 +7198885 goalTotal = 44 +7198886 otherCount = 68 +~~~ +7198887 CURRENTGOAL IS [7] +~~~ +7201380 UP 7 +7201380 64 255 +~~~ +~~~ +7201408 outer reward +~~~ +7201408 64 4194559 +~~~ +~~~ +7201633 DOWN 7 +7201633 0 4194559 +~~~ +~~~ +7201656 0 4194558 +~~~ +~~~ +7201657 0 4194556 +~~~ +~~~ +7201659 0 4194552 +~~~ +~~~ +7201661 0 4194544 +~~~ +~~~ +7201663 0 4194528 +~~~ +~~~ +7201665 0 4194496 +~~~ +~~~ +7201666 0 4194432 +~~~ +~~~ +7201668 0 4194304 +~~~ +~~~ +7201670 0 4194816 +7201671 homeCount = 129 +7201672 waitCount = 67 +7201672 ripCount = 53 +7201693 locktype1 = 2 +7201694 locktype2 = 9 +7201694 locktype3 = 6 +7201695 goalCount = 5 +7201695 goalTotal = 45 +7201696 otherCount = 68 +~~~ +7201696 64 4194816 +7201858 64 512 +7212005 DOWN 7 +7212005 0 512 +7212062 64 512 +7212101 DOWN 7 +7212101 0 512 +7216582 UP 10 +7216582 waslock = 0 +7216582 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7216613 512 16777728 +~~~ +7216763 512 512 +7216790 DOWN 10 +7216790 0 512 +~~~ +~~~ +7216807 0 2560 +~~~ +~~~ +7216809 0 2048 +7216810 homeCount = 130 +7216810 waitCount = 67 +7216811 ripCount = 53 +7216811 locktype1 = 2 +7216812 locktype2 = 9 +7216812 locktype3 = 6 +7216813 goalCount = 5 +7216813 goalTotal = 45 +7216813 otherCount = 68 +~~~ +7216851 UP 10 +7216851 waslock = 0 +7216851 512 2048 +~~~ +7222018 DOWN 10 +7222018 0 2048 +7222030 UP 10 +7222030 waslock = 0 +7222030 512 2048 +~~~ +~~~ +~~~ +~~~ +7222052 homeCount = 130 +7222052 waitCount = 67 +7222053 ripCount = 53 +7222053 locktype1 = 2 +7222054 locktype2 = 9 +7222054 locktype3 = 6 +7222054 goalCount = 5 +7222055 goalTotal = 45 +7222055 otherCount = 68 +~~~ +~~~ +7222139 DOWN 10 +7222139 0 2048 +~~~ +~~~ +~~~ +~~~ +7222164 homeCount = 130 +7222165 waitCount = 67 +7222165 ripCount = 53 +7222166 locktype1 = 2 +7222166 locktype2 = 9 +7222167 locktype3 = 6 +7222167 goalCount = 5 +7222167 goalTotal = 45 +7222168 otherCount = 68 +~~~ +7224209 UP 12 +7224208 2048 2048 +7226515 DOWN 12 +7226515 0 2048 +7226537 UP 12 +7226537 2048 2048 +7226794 DOWN 12 +7226794 0 2048 +7226874 UP 12 +7226874 2048 2048 +7227064 DOWN 12 +7227064 0 2048 +7227084 UP 12 +7227084 2048 2048 +7227343 DOWN 12 +7227343 0 2048 +7227375 UP 12 +7227375 2048 2048 +7227423 DOWN 12 +7227423 0 2048 +7227448 UP 12 +7227447 2048 2048 +7227489 DOWN 12 +7227489 0 2048 +7227575 UP 12 +7227575 2048 2048 +7227698 DOWN 12 +7227698 0 2048 +7227728 UP 12 +7227727 2048 2048 +7230295 DOWN 12 +7230295 0 2048 +7230303 UP 12 +7230303 2048 2048 +7230405 DOWN 12 +7230405 0 2048 +7230418 UP 12 +7230418 2048 2048 +7231209 CLICK1 +7231209 CLICK2 +~~~ +~~~ +~~~ +7231238 2048 67110912 +~~~ +7231388 2048 2048 +7238786 DOWN 12 +7238786 0 2048 +~~~ +~~~ +7238809 0 0 +~~~ +~~~ +7238810 0 1 +~~~ +~~~ +7238812 0 3 +~~~ +~~~ +7238814 0 7 +~~~ +~~~ +7238816 0 15 +~~~ +~~~ +7238818 0 31 +~~~ +~~~ +7238820 0 63 +~~~ +~~~ +7238821 0 127 +~~~ +~~~ +7238823 0 255 +7238824 homeCount = 130 +7238825 waitCount = 68 +7238825 ripCount = 53 +7238826 locktype1 = 2 +7238826 locktype2 = 9 +7238848 locktype3 = 6 +7238848 goalCount = 5 +7238848 goalTotal = 45 +7238849 otherCount = 68 +~~~ +7238850 CURRENTGOAL IS [7] +~~~ +7238850 UP 12 +7238850 2048 255 +7238885 DOWN 12 +7238885 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7238925 homeCount = 130 +7238926 waitCount = 68 +7238926 ripCount = 53 +7238927 locktype1 = 2 +7238927 locktype2 = 9 +7238928 locktype3 = 6 +7238928 goalCount = 5 +7238929 goalTotal = 45 +7238929 otherCount = 68 +~~~ +7238930 CURRENTGOAL IS [7] +~~~ +7239004 UP 12 +7239004 2048 255 +7241346 DOWN 12 +7241346 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7241387 homeCount = 130 +7241388 waitCount = 68 +7241388 ripCount = 53 +7241389 locktype1 = 2 +7241389 locktype2 = 9 +7241390 locktype3 = 6 +7241390 goalCount = 5 +7241391 goalTotal = 45 +7241391 otherCount = 68 +~~~ +7241392 CURRENTGOAL IS [7] +~~~ +7241393 UP 12 +7241393 2048 255 +7241448 DOWN 12 +7241448 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7241486 homeCount = 130 +7241487 waitCount = 68 +7241487 ripCount = 53 +7241488 locktype1 = 2 +7241488 locktype2 = 9 +7241489 locktype3 = 6 +7241489 goalCount = 5 +7241490 goalTotal = 45 +7241490 otherCount = 68 +~~~ +7241491 CURRENTGOAL IS [7] +~~~ +7246047 UP 7 +7246047 64 255 +~~~ +~~~ +7246073 outer reward +~~~ +7246073 64 4194559 +~~~ +~~~ +7246239 DOWN 7 +7246239 0 4194559 +~~~ +~~~ +7246263 0 4194558 +~~~ +~~~ +7246265 0 4194556 +~~~ +~~~ +7246267 0 4194552 +~~~ +~~~ +7246269 0 4194544 +~~~ +~~~ +7246271 0 4194528 +~~~ +~~~ +7246273 0 4194496 +~~~ +~~~ +7246274 0 4194432 +~~~ +~~~ +7246276 0 4194304 +~~~ +~~~ +7246278 0 4194816 +7246279 homeCount = 130 +7246280 waitCount = 68 +7246280 ripCount = 53 +7246301 locktype1 = 2 +7246302 locktype2 = 9 +7246302 locktype3 = 6 +7246303 goalCount = 6 +7246303 goalTotal = 46 +7246304 otherCount = 68 +~~~ +7246304 64 4194816 +7246523 64 512 +7246844 DOWN 7 +7246844 0 512 +7246865 64 512 +7246981 DOWN 7 +7246981 0 512 +7246989 64 512 +7247265 DOWN 7 +7247265 0 512 +7247273 64 512 +7253973 DOWN 7 +7253973 0 512 +7253988 64 512 +7255948 DOWN 7 +7255948 0 512 +7260197 UP 10 +7260197 waslock = 0 +7260197 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7260223 512 16777728 +~~~ +7260373 512 512 +7264997 DOWN 10 +7264997 0 512 +~~~ +~~~ +7265017 0 1536 +~~~ +~~~ +7265019 0 1024 +7265020 homeCount = 131 +7265021 waitCount = 68 +7265021 ripCount = 53 +7265022 locktype1 = 2 +7265022 locktype2 = 9 +7265023 locktype3 = 6 +7265023 goalCount = 6 +7265024 goalTotal = 46 +7265024 otherCount = 68 +~~~ +7267139 UP 11 +7267139 1024 1024 +7267176 DOWN 11 +7267176 0 1024 +7267210 UP 11 +7267210 1024 1024 +7267240 DOWN 11 +7267240 0 1024 +7267440 LOCKOUT 3 +~~~ +7267457 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +7267461 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7267592 UP 11 +7267592 1024 0 +7269771 DOWN 11 +7269771 0 0 +7269794 UP 11 +7269794 1024 0 +7271659 DOWN 11 +7271659 0 0 +7271674 UP 11 +7271674 1024 0 +7275691 DOWN 11 +7275691 0 0 +7282884 UP 8 +7282884 128 0 +7283366 DOWN 8 +7283366 0 0 +7292457 LOCKEND +~~~ +~~~ +~~~ +7292478 0 512 +7293423 UP 10 +7293423 waslock = 0 +7293423 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7293452 512 16777728 +~~~ +7293602 512 512 +7298559 DOWN 10 +7298559 0 512 +~~~ +~~~ +7298577 0 2560 +~~~ +~~~ +7298579 0 2048 +7298580 homeCount = 132 +7298580 waitCount = 68 +7298581 ripCount = 53 +7298581 locktype1 = 2 +7298582 locktype2 = 9 +7298582 locktype3 = 7 +7298583 goalCount = 6 +7298583 goalTotal = 46 +7298584 otherCount = 68 +~~~ +7298630 UP 10 +7298630 waslock = 0 +7298630 512 2048 +~~~ +7298656 DOWN 10 +7298656 0 2048 +~~~ +~~~ +~~~ +~~~ +7298670 homeCount = 132 +7298670 waitCount = 68 +7298671 ripCount = 53 +7298671 locktype1 = 2 +7298672 locktype2 = 9 +7298672 locktype3 = 7 +7298673 goalCount = 6 +7298673 goalTotal = 46 +7298674 otherCount = 68 +~~~ +7300525 UP 12 +7300525 2048 2048 +7303861 DOWN 12 +7303861 0 2048 +7303914 UP 12 +7303914 2048 2048 +7304045 DOWN 12 +7304045 0 2048 +7304061 UP 12 +7304061 2048 2048 +7308526 CLICK1 +7308526 CLICK2 +~~~ +~~~ +~~~ +7308548 2048 67110912 +~~~ +7308698 2048 2048 +7317748 DOWN 12 +7317748 0 2048 +~~~ +~~~ +7317770 0 0 +~~~ +~~~ +7317772 0 1 +~~~ +~~~ +7317774 0 3 +~~~ +~~~ +7317776 0 7 +~~~ +~~~ +7317777 0 15 +~~~ +~~~ +7317779 0 31 +~~~ +~~~ +7317781 0 63 +~~~ +~~~ +7317783 0 127 +~~~ +~~~ +7317785 0 255 +7317786 homeCount = 132 +7317786 waitCount = 69 +7317787 ripCount = 53 +7317787 locktype1 = 2 +7317788 locktype2 = 9 +7317809 locktype3 = 7 +7317809 goalCount = 6 +7317810 goalTotal = 46 +7317810 otherCount = 68 +~~~ +7317811 CURRENTGOAL IS [7] +~~~ +7326698 UP 7 +7326698 64 255 +~~~ +~~~ +7326722 outer reward +~~~ +7326722 64 4194559 +~~~ +~~~ +7327001 DOWN 7 +7327001 0 4194559 +~~~ +~~~ +7327021 0 4194558 +~~~ +~~~ +7327022 0 4194556 +~~~ +~~~ +7327024 0 4194552 +~~~ +~~~ +7327026 0 4194544 +~~~ +~~~ +7327028 0 4194528 +~~~ +~~~ +7327030 0 4194496 +~~~ +~~~ +7327032 0 4194432 +~~~ +~~~ +7327033 0 4194304 +~~~ +~~~ +7327035 0 4194816 +7327036 homeCount = 132 +7327037 waitCount = 69 +7327037 ripCount = 53 +7327058 locktype1 = 2 +7327059 locktype2 = 9 +7327059 locktype3 = 7 +7327059 goalCount = 7 +7327060 goalTotal = 47 +7327060 otherCount = 68 +~~~ +7327061 64 4194816 +7327172 64 512 +7327436 DOWN 7 +7327436 0 512 +7327444 64 512 +7335677 DOWN 7 +7335677 0 512 +7335702 64 512 +7335769 DOWN 7 +7335769 0 512 +7340817 UP 10 +7340817 waslock = 0 +7340817 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7340846 512 16777728 +~~~ +7340996 512 512 +7341059 DOWN 10 +7341059 0 512 +~~~ +~~~ +7341080 0 1536 +~~~ +~~~ +7341082 0 1024 +7341083 homeCount = 133 +7341084 waitCount = 69 +7341084 ripCount = 53 +7341085 locktype1 = 2 +7341085 locktype2 = 9 +7341086 locktype3 = 7 +7341086 goalCount = 7 +7341087 goalTotal = 47 +7341087 otherCount = 68 +~~~ +7341163 UP 10 +7341163 waslock = 0 +7341163 512 1024 +~~~ +7345850 DOWN 10 +7345850 0 1024 +7345862 UP 10 +7345862 waslock = 0 +7345862 512 1024 +~~~ +~~~ +~~~ +~~~ +7345873 homeCount = 133 +7345873 waitCount = 69 +7345874 ripCount = 53 +7345874 locktype1 = 2 +7345875 locktype2 = 9 +7345875 locktype3 = 7 +7345876 goalCount = 7 +7345876 goalTotal = 47 +7345876 otherCount = 68 +~~~ +~~~ +7345957 DOWN 10 +7345957 0 1024 +~~~ +~~~ +~~~ +~~~ +7345984 homeCount = 133 +7345985 waitCount = 69 +7345985 ripCount = 53 +7345986 locktype1 = 2 +7345986 locktype2 = 9 +7345987 locktype3 = 7 +7345987 goalCount = 7 +7345988 goalTotal = 47 +7345988 otherCount = 68 +~~~ +7346012 UP 10 +7346012 waslock = 0 +7346012 512 1024 +~~~ +7346063 DOWN 10 +7346063 0 1024 +~~~ +~~~ +~~~ +~~~ +7346083 homeCount = 133 +7346083 waitCount = 69 +7346084 ripCount = 53 +7346084 locktype1 = 2 +7346085 locktype2 = 9 +7346085 locktype3 = 7 +7346086 goalCount = 7 +7346086 goalTotal = 47 +7346087 otherCount = 68 +~~~ +7348564 UP 11 +7348564 1024 1024 +7348580 DOWN 11 +7348580 0 1024 +7348605 UP 11 +7348605 1024 1024 +7350658 DOWN 11 +7350658 0 1024 +7350674 UP 11 +7350674 1024 1024 +7351121 DOWN 11 +7351121 0 1024 +7351136 UP 11 +7351136 1024 1024 +7353064 BEEP1 +7353064 BEEP2 +~~~ +~~~ +~~~ +7353083 1024 33555456 +~~~ +7353233 1024 1024 +7360547 DOWN 11 +7360547 0 1024 +~~~ +~~~ +7360571 0 0 +~~~ +~~~ +7360573 0 1 +~~~ +~~~ +7360575 0 3 +~~~ +~~~ +7360577 0 7 +~~~ +~~~ +7360578 0 15 +~~~ +~~~ +7360580 0 31 +~~~ +~~~ +7360582 0 63 +~~~ +~~~ +7360584 0 127 +~~~ +~~~ +7360586 0 255 +7360587 homeCount = 133 +7360587 waitCount = 69 +7360588 ripCount = 54 +7360588 locktype1 = 2 +7360589 locktype2 = 9 +7360610 locktype3 = 7 +7360610 goalCount = 7 +7360611 goalTotal = 47 +7360611 otherCount = 68 +~~~ +7360612 CURRENTGOAL IS [7] +~~~ +7360641 UP 11 +7360641 1024 255 +7360672 DOWN 11 +7360672 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7360707 homeCount = 133 +7360708 waitCount = 69 +7360708 ripCount = 54 +7360709 locktype1 = 2 +7360709 locktype2 = 9 +7360710 locktype3 = 7 +7360710 goalCount = 7 +7360711 goalTotal = 47 +7360711 otherCount = 68 +~~~ +7360712 CURRENTGOAL IS [7] +~~~ +7360721 UP 11 +7360721 1024 255 +7362656 DOWN 11 +7362656 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7362697 homeCount = 133 +7362698 waitCount = 69 +7362698 ripCount = 54 +7362699 locktype1 = 2 +7362699 locktype2 = 9 +7362700 locktype3 = 7 +7362700 goalCount = 7 +7362701 goalTotal = 47 +7362701 otherCount = 68 +~~~ +7362702 CURRENTGOAL IS [7] +~~~ +7365352 UP 7 +7365352 64 255 +~~~ +~~~ +7365373 outer reward +~~~ +7365374 64 4194559 +~~~ +~~~ +7365536 DOWN 7 +7365536 0 4194559 +~~~ +~~~ +7365562 0 4194558 +~~~ +~~~ +7365563 0 4194556 +~~~ +~~~ +7365565 0 4194552 +~~~ +~~~ +7365567 0 4194544 +~~~ +~~~ +7365569 0 4194528 +~~~ +~~~ +7365571 0 4194496 +~~~ +~~~ +7365572 0 4194432 +~~~ +~~~ +7365574 0 4194304 +~~~ +~~~ +7365576 0 4194816 +7365577 homeCount = 133 +7365578 waitCount = 69 +7365578 ripCount = 54 +7365599 locktype1 = 2 +7365599 locktype2 = 9 +7365600 locktype3 = 7 +7365600 goalCount = 8 +7365601 goalTotal = 48 +7365601 otherCount = 68 +~~~ +7365605 64 4194816 +7365823 64 512 +7366174 DOWN 7 +7366174 0 512 +7366179 64 512 +7374623 DOWN 7 +7374623 0 512 +7379786 UP 10 +7379786 waslock = 0 +7379786 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7379809 512 16777728 +~~~ +7379959 512 512 +7384922 DOWN 10 +7384922 0 512 +~~~ +~~~ +7384944 0 1536 +~~~ +~~~ +7384946 0 1024 +7384947 homeCount = 134 +7384948 waitCount = 69 +7384948 ripCount = 54 +7384948 locktype1 = 2 +7384949 locktype2 = 9 +7384949 locktype3 = 7 +7384950 goalCount = 8 +7384950 goalTotal = 48 +7384951 otherCount = 68 +~~~ +7384996 UP 10 +7384996 waslock = 0 +7384996 512 1024 +7385026 DOWN 10 +7385026 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +7385048 homeCount = 134 +7385048 waitCount = 69 +7385049 ripCount = 54 +7385049 locktype1 = 2 +7385050 locktype2 = 9 +7385050 locktype3 = 7 +7385051 goalCount = 8 +7385051 goalTotal = 48 +7385052 otherCount = 68 +~~~ +7387275 UP 11 +7387275 1024 1024 +7389347 DOWN 11 +7389347 0 1024 +7389404 UP 11 +7389404 1024 1024 +7393276 BEEP1 +7393276 BEEP2 +~~~ +~~~ +~~~ +7393295 1024 33555456 +~~~ +7393445 1024 1024 +7402954 DOWN 11 +7402954 0 1024 +~~~ +~~~ +7402973 0 0 +~~~ +~~~ +7402975 0 1 +~~~ +~~~ +7402977 0 3 +~~~ +~~~ +7402979 0 7 +~~~ +~~~ +7402981 0 15 +~~~ +~~~ +7402982 0 31 +~~~ +~~~ +7402984 0 63 +~~~ +~~~ +7402986 0 127 +~~~ +~~~ +7402988 0 255 +7402989 homeCount = 134 +7402989 waitCount = 69 +7402990 ripCount = 55 +7402990 locktype1 = 2 +7402991 locktype2 = 9 +7403012 locktype3 = 7 +7403013 goalCount = 8 +7403013 goalTotal = 48 +7403013 otherCount = 68 +~~~ +7403015 CURRENTGOAL IS [7] +~~~ +7403015 UP 11 +7403015 1024 255 +7403061 DOWN 11 +7403061 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7403099 homeCount = 134 +7403100 waitCount = 69 +7403100 ripCount = 55 +7403101 locktype1 = 2 +7403101 locktype2 = 9 +7403102 locktype3 = 7 +7403102 goalCount = 8 +7403103 goalTotal = 48 +7403103 otherCount = 68 +~~~ +7403104 CURRENTGOAL IS [7] +~~~ +7406281 UP 7 +7406281 64 255 +~~~ +~~~ +7406307 outer reward +~~~ +7406307 64 4194559 +~~~ +~~~ +7406343 DOWN 7 +7406343 0 4194559 +~~~ +~~~ +7406364 0 4194558 +~~~ +~~~ +7406366 0 4194556 +~~~ +~~~ +7406368 0 4194552 +~~~ +7406369 64 4194552 +~~~ +~~~ +7406371 64 4194544 +~~~ +~~~ +7406373 64 4194528 +~~~ +7406374 64 4194496 +~~~ +~~~ +7406375 64 4194432 +~~~ +~~~ +7406377 64 4194304 +~~~ +~~~ +7406379 64 4194816 +7406380 homeCount = 134 +7406401 waitCount = 69 +7406402 ripCount = 55 +7406402 locktype1 = 2 +7406403 locktype2 = 9 +7406403 locktype3 = 7 +7406404 goalCount = 9 +7406404 goalTotal = 49 +7406405 otherCount = 68 +~~~ +7406561 DOWN 7 +7406561 0 4194816 +7406594 64 4194816 +7406757 64 512 +7415726 DOWN 7 +7415726 0 512 +7415737 64 512 +7417333 DOWN 7 +7417333 0 512 +7417337 64 512 +7417494 DOWN 7 +7417494 0 512 +7417522 64 512 +7417596 DOWN 7 +7417596 0 512 +7425090 UP 10 +7425090 waslock = 0 +7425090 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7425120 512 16777728 +~~~ +7425270 512 512 +7431156 DOWN 10 +7431156 0 512 +7431172 UP 10 +7431172 waslock = 0 +7431172 512 512 +~~~ +~~~ +7431176 512 1536 +~~~ +~~~ +7431178 512 1024 +7431179 homeCount = 135 +7431179 waitCount = 69 +7431180 ripCount = 55 +7431180 locktype1 = 2 +7431181 locktype2 = 9 +7431181 locktype3 = 7 +7431181 goalCount = 9 +7431182 goalTotal = 49 +7431182 otherCount = 68 +~~~ +~~~ +7431273 DOWN 10 +7431273 0 1024 +~~~ +~~~ +~~~ +~~~ +7431299 homeCount = 135 +7431300 waitCount = 69 +7431300 ripCount = 55 +7431301 locktype1 = 2 +7431301 locktype2 = 9 +7431302 locktype3 = 7 +7431302 goalCount = 9 +7431303 goalTotal = 49 +7431303 otherCount = 68 +~~~ +7431350 UP 10 +7431350 waslock = 0 +7431350 512 1024 +7431373 DOWN 10 +7431373 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +7431399 homeCount = 135 +7431399 waitCount = 69 +7431400 ripCount = 55 +7431400 locktype1 = 2 +7431401 locktype2 = 9 +7431401 locktype3 = 7 +7431402 goalCount = 9 +7431402 goalTotal = 49 +7431403 otherCount = 68 +~~~ +7433644 UP 11 +7433644 1024 1024 +7435685 DOWN 11 +7435685 0 1024 +7435694 UP 11 +7435694 1024 1024 +7435696 DOWN 11 +7435696 0 1024 +7435712 UP 11 +7435712 1024 1024 +7435877 DOWN 11 +7435877 0 1024 +7435902 UP 11 +7435902 1024 1024 +7436645 BEEP1 +7436645 BEEP2 +~~~ +~~~ +~~~ +7436666 1024 33555456 +~~~ +7436816 1024 1024 +7444254 DOWN 11 +7444254 0 1024 +~~~ +~~~ +7444275 0 0 +~~~ +~~~ +7444277 0 1 +~~~ +~~~ +7444279 0 3 +~~~ +~~~ +7444281 0 7 +~~~ +~~~ +7444283 0 15 +~~~ +~~~ +7444285 0 31 +~~~ +~~~ +7444286 0 63 +~~~ +~~~ +7444288 0 127 +~~~ +~~~ +7444290 0 255 +7444291 homeCount = 135 +7444292 waitCount = 69 +7444292 ripCount = 56 +7444293 locktype1 = 2 +7444293 locktype2 = 9 +7444294 locktype3 = 7 +7444315 goalCount = 9 +7444315 goalTotal = 49 +7444316 otherCount = 68 +~~~ +7444317 CURRENTGOAL IS [7] +~~~ +7444336 UP 11 +7444336 1024 255 +7446175 DOWN 11 +7446175 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7446211 homeCount = 135 +7446212 waitCount = 69 +7446212 ripCount = 56 +7446213 locktype1 = 2 +7446213 locktype2 = 9 +7446214 locktype3 = 7 +7446214 goalCount = 9 +7446215 goalTotal = 49 +7446215 otherCount = 68 +~~~ +7446216 CURRENTGOAL IS [7] +~~~ +7448886 UP 7 +7448886 64 255 +~~~ +~~~ +7448911 outer reward +~~~ +7448911 64 4194559 +~~~ +~~~ +7448916 outerreps = 8 +~~~ +~~~ +7449078 DOWN 7 +7449078 0 4194559 +~~~ +~~~ +7449097 0 4194558 +~~~ +~~~ +7449099 0 4194556 +~~~ +~~~ +7449100 0 4194552 +~~~ +~~~ +7449102 0 4194544 +~~~ +~~~ +7449104 0 4194528 +~~~ +~~~ +7449106 0 4194496 +~~~ +~~~ +7449108 0 4194432 +~~~ +~~~ +7449110 0 4194304 +~~~ +~~~ +7449111 0 4194816 +7449112 homeCount = 135 +7449113 waitCount = 69 +7449113 ripCount = 56 +7449134 locktype1 = 2 +7449135 locktype2 = 9 +7449135 locktype3 = 7 +7449136 goalCount = 0 +7449136 goalTotal = 50 +7449137 otherCount = 68 +~~~ +7449142 64 4194816 +7449361 64 512 +7449716 DOWN 7 +7449716 0 512 +7449737 64 512 +7450009 DOWN 7 +7450009 0 512 +7450016 64 512 +7460272 DOWN 7 +7460272 0 512 +7460347 64 512 +7460391 DOWN 7 +7460391 0 512 +7460925 64 512 +7460936 DOWN 7 +7460936 0 512 +7466038 UP 10 +7466038 waslock = 0 +7466038 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7466064 512 16777728 +~~~ +7466214 512 512 +7466234 DOWN 10 +7466234 0 512 +~~~ +~~~ +7466261 0 2560 +~~~ +~~~ +7466262 0 2048 +7466263 homeCount = 136 +7466264 waitCount = 69 +7466264 ripCount = 56 +7466265 locktype1 = 2 +7466265 locktype2 = 9 +7466266 locktype3 = 7 +7466266 goalCount = 0 +7466267 goalTotal = 50 +7466267 otherCount = 68 +~~~ +7466338 UP 10 +7466339 waslock = 0 +7466338 512 2048 +~~~ +7473072 DOWN 10 +7473072 0 2048 +~~~ +~~~ +~~~ +~~~ +7473098 homeCount = 136 +7473099 waitCount = 69 +7473099 ripCount = 56 +7473100 locktype1 = 2 +7473100 locktype2 = 9 +7473100 locktype3 = 7 +7473101 goalCount = 0 +7473101 goalTotal = 50 +7473102 otherCount = 68 +~~~ +7473122 UP 10 +7473122 waslock = 0 +7473122 512 2048 +~~~ +7473189 DOWN 10 +7473189 0 2048 +~~~ +~~~ +~~~ +~~~ +7473215 homeCount = 136 +7473216 waitCount = 69 +7473216 ripCount = 56 +7473217 locktype1 = 2 +7473217 locktype2 = 9 +7473218 locktype3 = 7 +7473218 goalCount = 0 +7473219 goalTotal = 50 +7473219 otherCount = 68 +~~~ +7473271 UP 10 +7473271 waslock = 0 +7473271 512 2048 +7473287 DOWN 10 +7473287 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +7473310 homeCount = 136 +7473310 waitCount = 69 +7473311 ripCount = 56 +7473311 locktype1 = 2 +7473312 locktype2 = 9 +7473312 locktype3 = 7 +7473313 goalCount = 0 +7473313 goalTotal = 50 +7473314 otherCount = 68 +~~~ +7475182 UP 12 +7475182 2048 2048 +7478357 DOWN 12 +7478357 0 2048 +7478404 UP 12 +7478404 2048 2048 +7478682 CLICK1 +7478682 CLICK2 +~~~ +~~~ +~~~ +7478704 2048 67110912 +~~~ +7478854 2048 2048 +7487545 DOWN 12 +7487545 0 2048 +~~~ +~~~ +7487563 0 0 +~~~ +~~~ +7487565 0 1 +~~~ +~~~ +7487567 0 3 +~~~ +~~~ +7487569 0 7 +~~~ +~~~ +7487571 0 15 +~~~ +~~~ +7487572 0 31 +~~~ +~~~ +7487574 0 63 +~~~ +~~~ +7487576 0 127 +~~~ +~~~ +7487578 0 255 +7487579 homeCount = 136 +7487579 waitCount = 70 +7487580 ripCount = 56 +7487580 locktype1 = 2 +7487581 locktype2 = 9 +7487581 locktype3 = 7 +7487602 goalCount = 0 +7487603 goalTotal = 50 +7487603 otherCount = 68 +~~~ +7487604 CURRENTGOAL IS [1] +~~~ +7487614 UP 12 +7487614 2048 255 +7487665 DOWN 12 +7487665 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7487702 homeCount = 136 +7487703 waitCount = 70 +7487703 ripCount = 56 +7487704 locktype1 = 2 +7487704 locktype2 = 9 +7487705 locktype3 = 7 +7487705 goalCount = 0 +7487706 goalTotal = 50 +7487706 otherCount = 68 +~~~ +7487707 CURRENTGOAL IS [1] +~~~ +7497495 UP 7 +7497495 64 255 +~~~ +~~~ +7497692 DOWN 7 +7497692 0 255 +~~~ +~~~ +7497716 0 254 +~~~ +~~~ +7497718 0 252 +~~~ +~~~ +7497719 0 248 +~~~ +~~~ +7497721 0 240 +~~~ +~~~ +7497723 0 224 +~~~ +~~~ +7497725 0 192 +~~~ +~~~ +7497727 0 128 +~~~ +~~~ +7497728 0 0 +~~~ +~~~ +7497730 0 512 +7497731 homeCount = 136 +7497732 waitCount = 70 +7497732 ripCount = 56 +7497733 locktype1 = 2 +7497733 locktype2 = 9 +7497754 locktype3 = 7 +7497754 goalCount = 0 +7497755 goalTotal = 50 +7497755 otherCount = 69 +~~~ +7497775 64 512 +7498876 DOWN 7 +7498876 0 512 +7498954 64 512 +7498988 DOWN 7 +7498988 0 512 +7503794 UP 10 +7503795 waslock = 0 +7503794 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7503825 512 16777728 +~~~ +7503975 512 512 +7504038 DOWN 10 +7504038 0 512 +~~~ +~~~ +7504058 0 2560 +~~~ +~~~ +7504060 0 2048 +7504061 homeCount = 137 +7504062 waitCount = 70 +7504062 ripCount = 56 +7504063 locktype1 = 2 +7504063 locktype2 = 9 +7504064 locktype3 = 7 +7504064 goalCount = 0 +7504065 goalTotal = 50 +7504065 otherCount = 69 +~~~ +7504073 UP 10 +7504073 waslock = 0 +7504073 512 2048 +~~~ +7509916 DOWN 10 +7509916 0 2048 +~~~ +~~~ +~~~ +~~~ +7509944 homeCount = 137 +7509945 waitCount = 70 +7509945 ripCount = 56 +7509946 locktype1 = 2 +7509946 locktype2 = 9 +7509947 locktype3 = 7 +7509947 goalCount = 0 +7509948 goalTotal = 50 +7509948 otherCount = 69 +~~~ +7509968 UP 10 +7509968 waslock = 0 +7509968 512 2048 +~~~ +7510017 DOWN 10 +7510017 0 2048 +~~~ +~~~ +~~~ +~~~ +7510044 homeCount = 137 +7510045 waitCount = 70 +7510045 ripCount = 56 +7510046 locktype1 = 2 +7510046 locktype2 = 9 +7510047 locktype3 = 7 +7510047 goalCount = 0 +7510048 goalTotal = 50 +7510048 otherCount = 69 +~~~ +7512207 UP 12 +7512207 2048 2048 +7515181 DOWN 12 +7515181 0 2048 +7515189 UP 12 +7515189 2048 2048 +7515191 DOWN 12 +7515191 0 2048 +7515212 UP 12 +7515212 2048 2048 +7518208 CLICK1 +7518208 CLICK2 +~~~ +~~~ +~~~ +7518231 2048 67110912 +~~~ +7518381 2048 2048 +7527917 DOWN 12 +7527917 0 2048 +~~~ +~~~ +7527940 0 0 +~~~ +~~~ +7527942 0 1 +~~~ +~~~ +7527944 0 3 +~~~ +~~~ +7527946 0 7 +~~~ +~~~ +7527948 0 15 +~~~ +~~~ +7527949 0 31 +~~~ +~~~ +7527951 0 63 +~~~ +~~~ +7527953 0 127 +~~~ +~~~ +7527955 0 255 +7527956 homeCount = 137 +7527956 waitCount = 71 +7527957 ripCount = 56 +7527957 locktype1 = 2 +7527958 locktype2 = 9 +7527958 locktype3 = 7 +7527979 goalCount = 0 +7527980 goalTotal = 50 +7527980 otherCount = 69 +~~~ +7527981 CURRENTGOAL IS [1] +~~~ +7535073 UP 7 +7535073 64 255 +~~~ +~~~ +7535887 DOWN 7 +7535887 0 255 +~~~ +~~~ +7535912 0 254 +~~~ +~~~ +7535914 0 252 +~~~ +~~~ +7535916 0 248 +~~~ +~~~ +7535917 0 240 +~~~ +~~~ +7535919 0 224 +~~~ +~~~ +7535921 0 192 +~~~ +~~~ +7535923 0 128 +~~~ +~~~ +7535925 0 0 +~~~ +~~~ +7535927 0 512 +7535928 homeCount = 137 +7535928 waitCount = 71 +7535929 ripCount = 56 +7535929 locktype1 = 2 +7535930 locktype2 = 9 +7535951 locktype3 = 7 +7535951 goalCount = 0 +7535952 goalTotal = 50 +7535952 otherCount = 70 +~~~ +7541930 UP 10 +7541931 waslock = 0 +7541930 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7541958 512 16777728 +~~~ +7542108 512 512 +7542121 DOWN 10 +7542121 0 512 +~~~ +~~~ +7542138 0 2560 +~~~ +~~~ +7542140 0 2048 +7542141 homeCount = 138 +7542142 waitCount = 71 +7542142 ripCount = 56 +7542143 locktype1 = 2 +7542143 locktype2 = 9 +7542144 locktype3 = 7 +7542144 goalCount = 0 +7542145 goalTotal = 50 +7542145 otherCount = 70 +~~~ +7542404 UP 10 +7542404 waslock = 0 +7542404 512 2048 +~~~ +7548488 DOWN 10 +7548488 0 2048 +~~~ +~~~ +~~~ +~~~ +7548516 homeCount = 138 +7548516 waitCount = 71 +7548517 ripCount = 56 +7548517 locktype1 = 2 +7548517 locktype2 = 9 +7548518 locktype3 = 7 +7548518 goalCount = 0 +7548519 goalTotal = 50 +7548519 otherCount = 70 +~~~ +7548548 UP 10 +7548549 waslock = 0 +7548548 512 2048 +~~~ +7548586 DOWN 10 +7548586 0 2048 +~~~ +~~~ +~~~ +~~~ +7548609 homeCount = 138 +7548609 waitCount = 71 +7548610 ripCount = 56 +7548610 locktype1 = 2 +7548611 locktype2 = 9 +7548611 locktype3 = 7 +7548612 goalCount = 0 +7548612 goalTotal = 50 +7548613 otherCount = 70 +~~~ +7550864 UP 12 +7550864 2048 2048 +7551269 DOWN 12 +7551269 0 2048 +7551469 LOCKOUT 3 +~~~ +7551491 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7551497 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7551703 UP 12 +7551703 2048 0 +7552563 DOWN 12 +7552563 0 0 +7556268 512 0 +7557015 0 0 +7557777 512 0 +7557804 0 0 +7570040 512 0 +7570455 0 0 +7570527 512 0 +7570550 0 0 +7576491 LOCKEND +~~~ +~~~ +~~~ +7576514 0 512 +7579140 UP 10 +7579140 waslock = 0 +7579140 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7579169 512 16777728 +~~~ +7579319 512 512 +7579898 DOWN 10 +7579898 0 512 +7579912 UP 10 +7579913 waslock = 0 +7579912 512 512 +~~~ +~~~ +7579932 512 1536 +~~~ +~~~ +7579934 512 1024 +7579935 homeCount = 139 +7579936 waitCount = 71 +7579936 ripCount = 56 +7579937 locktype1 = 2 +7579937 locktype2 = 9 +7579938 locktype3 = 8 +7579938 goalCount = 0 +7579939 goalTotal = 50 +7579939 otherCount = 70 +~~~ +~~~ +7589333 DOWN 10 +7589333 0 1024 +~~~ +~~~ +~~~ +~~~ +7589354 homeCount = 139 +7589354 waitCount = 71 +7589355 ripCount = 56 +7589355 locktype1 = 2 +7589356 locktype2 = 9 +7589356 locktype3 = 8 +7589357 goalCount = 0 +7589357 goalTotal = 50 +7589358 otherCount = 70 +~~~ +7589393 UP 10 +7589393 waslock = 0 +7589393 512 1024 +~~~ +7589430 DOWN 10 +7589430 0 1024 +~~~ +~~~ +~~~ +~~~ +7589457 homeCount = 139 +7589458 waitCount = 71 +7589458 ripCount = 56 +7589459 locktype1 = 2 +7589459 locktype2 = 9 +7589460 locktype3 = 8 +7589460 goalCount = 0 +7589461 goalTotal = 50 +7589461 otherCount = 70 +~~~ +7590928 UP 11 +7590928 1024 1024 +7592834 DOWN 11 +7592834 0 1024 +7592866 UP 11 +7592866 1024 1024 +7593816 DOWN 11 +7593816 0 1024 +7593925 UP 11 +7593925 1024 1024 +7593962 DOWN 11 +7593962 0 1024 +7594016 UP 11 +7594016 1024 1024 +7594027 DOWN 11 +7594027 0 1024 +7594053 UP 11 +7594053 1024 1024 +7596310 DOWN 11 +7596310 0 1024 +7596336 UP 11 +7596336 1024 1024 +7596428 BEEP1 +7596428 BEEP2 +~~~ +~~~ +~~~ +7596454 1024 33555456 +~~~ +7596604 1024 1024 +7604212 DOWN 11 +7604212 0 1024 +~~~ +~~~ +7604232 0 0 +~~~ +~~~ +7604234 0 1 +~~~ +~~~ +7604236 0 3 +~~~ +~~~ +7604238 0 7 +~~~ +~~~ +7604240 0 15 +~~~ +~~~ +7604241 0 31 +~~~ +~~~ +7604243 0 63 +~~~ +~~~ +7604245 0 127 +~~~ +7604246 UP 11 +7604246 1024 127 +~~~ +7604248 homeCount = 139 +7604249 waitCount = 71 +7604249 ripCount = 57 +7604250 locktype1 = 2 +7604250 locktype2 = 9 +7604271 locktype3 = 8 +7604272 goalCount = 0 +7604272 goalTotal = 50 +7604273 otherCount = 70 +~~~ +7604274 CURRENTGOAL IS [1] +~~~ +7604274 1024 255 +7607328 DOWN 11 +7607328 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7607363 homeCount = 139 +7607363 waitCount = 71 +7607364 ripCount = 57 +7607364 locktype1 = 2 +7607365 locktype2 = 9 +7607365 locktype3 = 8 +7607366 goalCount = 0 +7607366 goalTotal = 50 +7607367 otherCount = 70 +~~~ +7607368 CURRENTGOAL IS [1] +~~~ +7608096 UP 11 +7608096 1024 255 +7608235 DOWN 11 +7608235 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7608273 homeCount = 139 +7608273 waitCount = 71 +7608274 ripCount = 57 +7608274 locktype1 = 2 +7608275 locktype2 = 9 +7608275 locktype3 = 8 +7608276 goalCount = 0 +7608276 goalTotal = 50 +7608277 otherCount = 70 +~~~ +7608278 CURRENTGOAL IS [1] +~~~ +7613872 UP 5 +7613872 16 255 +~~~ +~~~ +7614090 DOWN 5 +7614090 0 255 +~~~ +~~~ +7614106 0 254 +~~~ +~~~ +7614108 0 252 +~~~ +~~~ +7614110 0 248 +~~~ +~~~ +7614112 0 240 +~~~ +~~~ +7614113 0 224 +~~~ +~~~ +7614115 0 192 +~~~ +~~~ +7614117 0 128 +~~~ +~~~ +7614119 0 0 +~~~ +~~~ +7614121 0 512 +7614122 homeCount = 139 +7614122 waitCount = 71 +7614123 ripCount = 57 +7614123 locktype1 = 2 +7614124 locktype2 = 9 +7614145 locktype3 = 8 +7614145 goalCount = 0 +7614146 goalTotal = 50 +7614146 otherCount = 71 +~~~ +7614151 16 512 +7614918 DOWN 5 +7614918 0 512 +7615042 16 512 +7615066 DOWN 5 +7615066 0 512 +7620314 UP 10 +7620314 waslock = 0 +7620314 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7620344 512 16777728 +~~~ +7620494 512 512 +7620617 DOWN 10 +7620617 0 512 +~~~ +~~~ +7620642 0 2560 +~~~ +~~~ +7620644 0 2048 +7620645 homeCount = 140 +7620646 waitCount = 71 +7620646 ripCount = 57 +7620647 locktype1 = 2 +7620647 locktype2 = 9 +7620648 locktype3 = 8 +7620648 goalCount = 0 +7620649 goalTotal = 50 +7620649 otherCount = 71 +~~~ +7620663 UP 10 +7620663 waslock = 0 +7620663 512 2048 +~~~ +7624814 DOWN 10 +7624814 0 2048 +~~~ +~~~ +~~~ +~~~ +7624833 homeCount = 140 +7624834 waitCount = 71 +7624834 ripCount = 57 +7624835 locktype1 = 2 +7624835 locktype2 = 9 +7624836 locktype3 = 8 +7624836 goalCount = 0 +7624837 goalTotal = 50 +7624837 otherCount = 71 +~~~ +7624849 UP 10 +7624849 waslock = 0 +7624849 512 2048 +~~~ +7624910 DOWN 10 +7624910 0 2048 +~~~ +~~~ +~~~ +~~~ +7624933 homeCount = 140 +7624934 waitCount = 71 +7624934 ripCount = 57 +7624935 locktype1 = 2 +7624935 locktype2 = 9 +7624936 locktype3 = 8 +7624936 goalCount = 0 +7624937 goalTotal = 50 +7624937 otherCount = 71 +~~~ +7627214 UP 12 +7627214 2048 2048 +7629405 DOWN 12 +7629405 0 2048 +7629414 UP 12 +7629414 2048 2048 +7630600 DOWN 12 +7630600 0 2048 +7630608 UP 12 +7630608 2048 2048 +7630610 DOWN 12 +7630610 0 2048 +7630629 UP 12 +7630629 2048 2048 +7631348 DOWN 12 +7631348 0 2048 +7631373 UP 12 +7631373 2048 2048 +7631500 DOWN 12 +7631500 0 2048 +7631549 UP 12 +7631549 2048 2048 +7632751 DOWN 12 +7632751 0 2048 +7632791 UP 12 +7632791 2048 2048 +7634214 CLICK1 +7634214 CLICK2 +~~~ +~~~ +~~~ +7634234 2048 67110912 +~~~ +7634384 2048 2048 +7641364 DOWN 12 +7641364 0 2048 +~~~ +~~~ +7641390 0 0 +~~~ +~~~ +7641392 0 1 +~~~ +~~~ +7641394 0 3 +~~~ +~~~ +7641396 0 7 +~~~ +~~~ +7641398 0 15 +~~~ +~~~ +7641400 0 31 +~~~ +~~~ +7641401 0 63 +~~~ +~~~ +7641403 UP 12 +7641403 2048 127 +~~~ +~~~ +7641405 2048 255 +7641406 homeCount = 140 +7641407 waitCount = 72 +7641407 ripCount = 57 +7641408 locktype1 = 2 +7641429 locktype2 = 9 +7641429 locktype3 = 8 +7641429 goalCount = 0 +7641430 goalTotal = 50 +7641430 otherCount = 71 +~~~ +7641432 CURRENTGOAL IS [1] +~~~ +7641495 DOWN 12 +7641495 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7641537 homeCount = 140 +7641537 waitCount = 72 +7641538 ripCount = 57 +7641538 locktype1 = 2 +7641539 locktype2 = 9 +7641539 locktype3 = 8 +7641540 goalCount = 0 +7641540 goalTotal = 50 +7641540 otherCount = 71 +~~~ +7641542 CURRENTGOAL IS [1] +~~~ +7646776 UP 2 +7646776 2 255 +~~~ +~~~ +7647342 DOWN 2 +7647342 0 255 +~~~ +~~~ +7647363 0 254 +~~~ +~~~ +7647365 0 252 +~~~ +~~~ +7647367 0 248 +~~~ +~~~ +7647368 0 240 +~~~ +~~~ +7647370 0 224 +~~~ +~~~ +7647372 0 192 +~~~ +~~~ +7647374 0 128 +~~~ +~~~ +7647376 0 0 +~~~ +~~~ +7647377 0 512 +7647378 homeCount = 140 +7647379 waitCount = 72 +7647379 ripCount = 57 +7647380 locktype1 = 2 +7647380 locktype2 = 9 +7647402 locktype3 = 8 +7647402 goalCount = 0 +7647403 goalTotal = 50 +7647403 otherCount = 72 +~~~ +7651568 UP 10 +7651569 waslock = 0 +7651568 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7651599 512 16777728 +~~~ +7651749 512 512 +7651776 DOWN 10 +7651776 0 512 +~~~ +~~~ +7651794 0 2560 +~~~ +~~~ +7651796 0 2048 +7651797 homeCount = 141 +7651797 waitCount = 72 +7651798 ripCount = 57 +7651798 locktype1 = 2 +7651799 locktype2 = 9 +7651799 locktype3 = 8 +7651800 goalCount = 0 +7651800 goalTotal = 50 +7651801 otherCount = 72 +~~~ +7651924 UP 10 +7651924 waslock = 0 +7651924 512 2048 +~~~ +7657794 DOWN 10 +7657794 0 2048 +~~~ +~~~ +~~~ +~~~ +7657816 homeCount = 141 +7657816 waitCount = 72 +7657817 ripCount = 57 +7657817 locktype1 = 2 +7657817 locktype2 = 9 +7657818 locktype3 = 8 +7657818 goalCount = 0 +7657819 goalTotal = 50 +7657819 otherCount = 72 +~~~ +7657839 UP 10 +7657839 waslock = 0 +7657839 512 2048 +~~~ +7657896 DOWN 10 +7657896 0 2048 +~~~ +~~~ +~~~ +~~~ +7657929 homeCount = 141 +7657929 waitCount = 72 +7657930 ripCount = 57 +7657930 locktype1 = 2 +7657931 locktype2 = 9 +7657931 locktype3 = 8 +7657932 goalCount = 0 +7657932 goalTotal = 50 +7657933 otherCount = 72 +~~~ +7657955 UP 10 +7657956 waslock = 0 +7657955 512 2048 +~~~ +7658197 DOWN 10 +7658197 0 2048 +~~~ +~~~ +~~~ +~~~ +7658232 homeCount = 141 +7658232 waitCount = 72 +7658233 ripCount = 57 +7658233 locktype1 = 2 +7658234 locktype2 = 9 +7658234 locktype3 = 8 +7658235 goalCount = 0 +7658235 goalTotal = 50 +7658235 otherCount = 72 +~~~ +7658246 UP 10 +7658246 waslock = 0 +7658246 512 2048 +~~~ +7659679 DOWN 10 +7659679 0 2048 +~~~ +~~~ +~~~ +~~~ +7659709 homeCount = 141 +7659710 waitCount = 72 +7659710 ripCount = 57 +7659711 locktype1 = 2 +7659711 locktype2 = 9 +7659712 locktype3 = 8 +7659712 goalCount = 0 +7659712 goalTotal = 50 +7659713 otherCount = 72 +~~~ +7661563 UP 12 +7661563 2048 2048 +7662992 DOWN 12 +7662992 0 2048 +7663010 UP 12 +7663010 2048 2048 +7665836 DOWN 12 +7665836 0 2048 +7665848 UP 12 +7665848 2048 2048 +7667063 CLICK1 +7667063 CLICK2 +~~~ +~~~ +~~~ +7667083 2048 67110912 +~~~ +7667233 2048 2048 +7673720 DOWN 12 +7673720 0 2048 +~~~ +~~~ +7673742 0 0 +~~~ +~~~ +7673744 0 1 +~~~ +~~~ +7673746 0 3 +~~~ +~~~ +7673747 0 7 +~~~ +~~~ +7673749 0 15 +~~~ +~~~ +7673751 0 31 +~~~ +~~~ +7673753 0 63 +~~~ +~~~ +7673755 0 127 +~~~ +~~~ +7673757 0 255 +7673758 homeCount = 141 +7673758 waitCount = 73 +7673759 ripCount = 57 +7673759 locktype1 = 2 +7673760 locktype2 = 9 +7673760 locktype3 = 8 +7673781 goalCount = 0 +7673782 goalTotal = 50 +7673782 otherCount = 72 +~~~ +7673783 CURRENTGOAL IS [1] +~~~ +7701490 UP 6 +7701490 32 255 +~~~ +~~~ +7702442 DOWN 6 +7702442 0 255 +~~~ +~~~ +7702466 0 254 +~~~ +~~~ +7702468 0 252 +~~~ +~~~ +7702470 0 248 +~~~ +~~~ +7702472 0 240 +~~~ +~~~ +7702474 0 224 +~~~ +~~~ +7702476 0 192 +~~~ +~~~ +7702477 0 128 +~~~ +~~~ +7702479 0 0 +~~~ +~~~ +7702481 0 512 +7702482 homeCount = 141 +7702483 waitCount = 73 +7702483 ripCount = 57 +7702484 locktype1 = 2 +7702484 locktype2 = 9 +7702505 locktype3 = 8 +7702506 goalCount = 0 +7702506 goalTotal = 50 +7702507 otherCount = 73 +~~~ +7702548 32 512 +7702742 DOWN 6 +7702742 0 512 +7707698 UP 10 +7707698 waslock = 0 +7707698 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7707722 512 16777728 +~~~ +7707872 512 512 +7707990 DOWN 10 +7707990 0 512 +~~~ +~~~ +7708015 0 1536 +~~~ +~~~ +7708016 0 1024 +7708017 homeCount = 142 +7708018 waitCount = 73 +7708018 ripCount = 57 +7708019 locktype1 = 2 +7708019 locktype2 = 9 +7708020 locktype3 = 8 +7708020 goalCount = 0 +7708021 goalTotal = 50 +7708021 otherCount = 73 +~~~ +7708107 UP 10 +7708107 waslock = 0 +7708107 512 1024 +~~~ +7712341 DOWN 10 +7712341 0 1024 +~~~ +~~~ +~~~ +~~~ +7712370 homeCount = 142 +7712371 waitCount = 73 +7712371 ripCount = 57 +7712372 locktype1 = 2 +7712372 locktype2 = 9 +7712373 locktype3 = 8 +7712373 goalCount = 0 +7712374 goalTotal = 50 +7712374 otherCount = 73 +~~~ +7714949 UP 11 +7714949 1024 1024 +7715014 DOWN 11 +7715014 0 1024 +7715081 UP 11 +7715081 1024 1024 +7717142 DOWN 11 +7717142 0 1024 +7717158 UP 11 +7717158 1024 1024 +7718192 DOWN 11 +7718192 0 1024 +7718202 UP 11 +7718202 1024 1024 +7720449 BEEP1 +7720449 BEEP2 +~~~ +~~~ +~~~ +7720468 1024 33555456 +~~~ +7720618 1024 1024 +7720992 DOWN 11 +7720992 0 1024 +7721019 UP 11 +7721019 1024 1024 +~~~ +~~~ +7721117 1024 0 +~~~ +~~~ +7721119 1024 1 +~~~ +~~~ +7721121 1024 3 +~~~ +~~~ +7721123 1024 7 +~~~ +~~~ +7721124 1024 15 +~~~ +~~~ +7721126 1024 31 +~~~ +~~~ +7721128 1024 63 +~~~ +~~~ +7721130 1024 127 +~~~ +~~~ +7721132 1024 255 +7721133 homeCount = 142 +7721133 waitCount = 73 +7721134 ripCount = 58 +7721134 locktype1 = 2 +7721155 locktype2 = 9 +7721155 locktype3 = 8 +7721156 goalCount = 0 +7721156 goalTotal = 50 +7721157 otherCount = 73 +~~~ +7721158 CURRENTGOAL IS [1] +~~~ +7721158 DOWN 11 +7721158 0 255 +7721177 UP 11 +7721177 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7721207 homeCount = 142 +7721208 waitCount = 73 +7721208 ripCount = 58 +7721209 locktype1 = 2 +7721209 locktype2 = 9 +7721210 locktype3 = 8 +7721210 goalCount = 0 +7721211 goalTotal = 50 +7721211 otherCount = 73 +~~~ +7721213 CURRENTGOAL IS [1] +~~~ +7728036 DOWN 11 +7728036 0 255 +7728055 UP 11 +7728055 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7728075 homeCount = 142 +7728076 waitCount = 73 +7728076 ripCount = 58 +7728077 locktype1 = 2 +7728077 locktype2 = 9 +7728078 locktype3 = 8 +7728078 goalCount = 0 +7728079 goalTotal = 50 +7728079 otherCount = 73 +~~~ +7728080 CURRENTGOAL IS [1] +~~~ +7728150 DOWN 11 +7728150 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7728188 homeCount = 142 +7728189 waitCount = 73 +7728189 ripCount = 58 +7728190 locktype1 = 2 +7728190 locktype2 = 9 +7728191 locktype3 = 8 +7728191 goalCount = 0 +7728192 goalTotal = 50 +7728192 otherCount = 73 +~~~ +7728193 CURRENTGOAL IS [1] +~~~ +7732180 UP 8 +7732180 128 255 +~~~ +~~~ +7732779 DOWN 8 +7732779 0 255 +~~~ +~~~ +7732803 0 254 +~~~ +~~~ +7732805 0 252 +~~~ +~~~ +7732807 0 248 +~~~ +~~~ +7732809 0 240 +~~~ +~~~ +7732811 0 224 +~~~ +~~~ +7732812 0 192 +~~~ +~~~ +7732814 0 128 +~~~ +~~~ +7732816 0 0 +~~~ +~~~ +7732818 0 512 +7732819 homeCount = 142 +7732819 waitCount = 73 +7732820 ripCount = 58 +7732820 locktype1 = 2 +7732821 locktype2 = 9 +7732842 locktype3 = 8 +7732842 goalCount = 0 +7732843 goalTotal = 50 +7732843 otherCount = 74 +~~~ +7738334 UP 10 +7738334 waslock = 0 +7738334 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7738360 512 16777728 +~~~ +7738509 512 512 +7743306 DOWN 10 +7743306 0 512 +~~~ +~~~ +7743322 0 1536 +~~~ +~~~ +7743324 0 1024 +7743325 homeCount = 143 +7743326 waitCount = 73 +7743326 ripCount = 58 +7743327 locktype1 = 2 +7743327 locktype2 = 9 +7743328 locktype3 = 8 +7743328 goalCount = 0 +7743329 goalTotal = 50 +7743329 otherCount = 74 +~~~ +7743362 UP 10 +7743363 waslock = 0 +7743362 512 1024 +~~~ +7743405 DOWN 10 +7743405 0 1024 +~~~ +~~~ +~~~ +~~~ +7743418 homeCount = 143 +7743418 waitCount = 73 +7743419 ripCount = 58 +7743419 locktype1 = 2 +7743419 locktype2 = 9 +7743420 locktype3 = 8 +7743420 goalCount = 0 +7743421 goalTotal = 50 +7743421 otherCount = 74 +~~~ +7745977 UP 11 +7745977 1024 1024 +7748173 DOWN 11 +7748173 0 1024 +7748196 UP 11 +7748196 1024 1024 +7748905 DOWN 11 +7748905 0 1024 +7748925 UP 11 +7748925 1024 1024 +7748966 DOWN 11 +7748966 0 1024 +7748995 UP 11 +7748995 1024 1024 +7749281 DOWN 11 +7749281 0 1024 +7749328 UP 11 +7749328 1024 1024 +7749977 BEEP1 +7749977 BEEP2 +~~~ +~~~ +~~~ +7750008 1024 33555456 +~~~ +7750158 1024 1024 +7750253 DOWN 11 +7750253 0 1024 +7750272 UP 11 +7750272 1024 1024 +7750402 DOWN 11 +7750402 0 1024 +7750430 UP 11 +7750430 1024 1024 +~~~ +~~~ +7750674 1024 0 +~~~ +~~~ +7750675 1024 1 +~~~ +~~~ +7750677 1024 3 +~~~ +~~~ +7750679 1024 7 +~~~ +~~~ +7750681 1024 15 +~~~ +~~~ +7750683 1024 31 +~~~ +~~~ +7750685 1024 63 +~~~ +~~~ +7750686 1024 127 +~~~ +~~~ +7750688 1024 255 +7750689 homeCount = 143 +7750690 waitCount = 73 +7750690 ripCount = 59 +7750691 locktype1 = 2 +7750711 locktype2 = 9 +7750712 locktype3 = 8 +7750712 goalCount = 0 +7750713 goalTotal = 50 +7750713 otherCount = 74 +~~~ +7750714 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7750742 homeCount = 143 +7750743 waitCount = 73 +7750743 ripCount = 59 +7750744 locktype1 = 2 +7750744 locktype2 = 9 +7750744 locktype3 = 8 +7750745 goalCount = 0 +7750745 goalTotal = 50 +7750746 otherCount = 74 +~~~ +7750747 CURRENTGOAL IS [1] +~~~ +7757155 DOWN 11 +7757155 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7757187 UP 11 +7757187 1024 255 +~~~ +~~~ +~~~ +7757191 homeCount = 143 +7757191 waitCount = 73 +7757192 ripCount = 59 +7757192 locktype1 = 2 +7757193 locktype2 = 9 +7757193 locktype3 = 8 +7757194 goalCount = 0 +7757194 goalTotal = 50 +7757195 otherCount = 74 +~~~ +7757196 CURRENTGOAL IS [1] +~~~ +7757216 DOWN 11 +7757216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7757258 homeCount = 143 +7757259 waitCount = 73 +7757259 ripCount = 59 +7757260 locktype1 = 2 +7757260 locktype2 = 9 +7757261 locktype3 = 8 +7757261 goalCount = 0 +7757262 goalTotal = 50 +7757262 otherCount = 74 +~~~ +7757263 CURRENTGOAL IS [1] +~~~ +7757290 UP 11 +7757290 1024 255 +7758580 DOWN 11 +7758580 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +7758604 UP 11 +7758604 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758616 homeCount = 143 +7758617 waitCount = 73 +7758617 ripCount = 59 +7758618 locktype1 = 2 +7758618 locktype2 = 9 +7758619 locktype3 = 8 +7758619 goalCount = 0 +7758620 goalTotal = 50 +7758620 otherCount = 74 +~~~ +7758621 CURRENTGOAL IS [1] +~~~ +7758633 DOWN 11 +7758633 0 255 +7758654 UP 11 +7758654 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758676 homeCount = 143 +7758677 waitCount = 73 +7758677 ripCount = 59 +7758678 locktype1 = 2 +7758678 locktype2 = 9 +7758679 locktype3 = 8 +7758679 goalCount = 0 +7758680 goalTotal = 50 +7758680 otherCount = 74 +~~~ +7758681 CURRENTGOAL IS [1] +~~~ +7758900 DOWN 11 +7758900 0 255 +7758918 UP 11 +7758918 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7758939 homeCount = 143 +7758939 waitCount = 73 +7758940 ripCount = 59 +7758940 locktype1 = 2 +7758941 locktype2 = 9 +7758941 locktype3 = 8 +7758942 goalCount = 0 +7758942 goalTotal = 50 +7758943 otherCount = 74 +~~~ +7758944 CURRENTGOAL IS [1] +~~~ +7758953 DOWN 11 +7758953 0 255 +7758981 UP 11 +7758981 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7759001 homeCount = 143 +7759001 waitCount = 73 +7759002 ripCount = 59 +7759002 locktype1 = 2 +7759003 locktype2 = 9 +7759003 locktype3 = 8 +7759004 goalCount = 0 +7759004 goalTotal = 50 +7759005 otherCount = 74 +~~~ +7759006 CURRENTGOAL IS [1] +~~~ +7760612 DOWN 11 +7760612 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7760649 homeCount = 143 +7760649 waitCount = 73 +7760650 ripCount = 59 +7760650 locktype1 = 2 +7760651 locktype2 = 9 +7760651 locktype3 = 8 +7760652 goalCount = 0 +7760652 goalTotal = 50 +7760653 otherCount = 74 +~~~ +7760654 CURRENTGOAL IS [1] +~~~ +7766970 UP 4 +7766970 8 255 +~~~ +~~~ +7767557 DOWN 4 +7767557 0 255 +~~~ +~~~ +7767576 0 254 +~~~ +~~~ +7767578 0 252 +~~~ +~~~ +7767579 0 248 +~~~ +~~~ +7767581 0 240 +~~~ +~~~ +7767583 0 224 +~~~ +~~~ +7767585 0 192 +~~~ +~~~ +7767587 0 128 +~~~ +~~~ +7767589 0 0 +~~~ +~~~ +7767591 0 512 +7767591 homeCount = 143 +7767592 waitCount = 73 +7767592 ripCount = 59 +7767593 locktype1 = 2 +7767593 locktype2 = 9 +7767615 locktype3 = 8 +7767615 goalCount = 0 +7767616 goalTotal = 50 +7767616 otherCount = 75 +~~~ +7772489 UP 10 +7772489 waslock = 0 +7772489 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7772523 512 16777728 +~~~ +7772673 512 512 +7772757 DOWN 10 +7772757 0 512 +~~~ +~~~ +7772776 0 1536 +~~~ +~~~ +7772778 0 1024 +7772779 homeCount = 144 +7772780 waitCount = 73 +7772780 ripCount = 59 +7772781 locktype1 = 2 +7772781 locktype2 = 9 +7772782 locktype3 = 8 +7772782 goalCount = 0 +7772783 goalTotal = 50 +7772783 otherCount = 75 +~~~ +7772786 UP 10 +7772786 waslock = 0 +7772786 512 1024 +~~~ +7776498 DOWN 10 +7776498 0 1024 +~~~ +~~~ +~~~ +~~~ +7776519 homeCount = 144 +7776520 waitCount = 73 +7776520 ripCount = 59 +7776521 locktype1 = 2 +7776521 locktype2 = 9 +7776522 locktype3 = 8 +7776522 goalCount = 0 +7776523 goalTotal = 50 +7776523 otherCount = 75 +~~~ +7778339 UP 11 +7778339 1024 1024 +7781339 BEEP1 +7781339 BEEP2 +~~~ +~~~ +~~~ +7781360 1024 33555456 +~~~ +7781510 1024 1024 +7790808 DOWN 11 +7790808 0 1024 +~~~ +~~~ +7790827 0 0 +~~~ +~~~ +7790829 0 1 +~~~ +~~~ +7790831 0 3 +~~~ +~~~ +7790833 0 7 +~~~ +~~~ +7790835 0 15 +~~~ +~~~ +7790836 0 31 +~~~ +~~~ +7790838 0 63 +~~~ +~~~ +7790840 0 127 +~~~ +~~~ +7790842 0 255 +7790843 homeCount = 144 +7790843 waitCount = 73 +7790844 ripCount = 60 +7790844 locktype1 = 2 +7790845 locktype2 = 9 +7790866 locktype3 = 8 +7790866 goalCount = 0 +7790867 goalTotal = 50 +7790867 otherCount = 75 +~~~ +7790868 CURRENTGOAL IS [1] +~~~ +7817653 UP 5 +7817653 16 255 +~~~ +~~~ +7817945 DOWN 5 +7817945 0 255 +~~~ +~~~ +7817966 0 254 +~~~ +~~~ +7817968 0 252 +~~~ +~~~ +7817970 0 248 +~~~ +~~~ +7817972 0 240 +~~~ +~~~ +7817974 0 224 +~~~ +~~~ +7817976 0 192 +~~~ +~~~ +7817977 0 128 +~~~ +~~~ +7817979 0 0 +~~~ +~~~ +7817981 0 512 +7817982 homeCount = 144 +7817983 waitCount = 73 +7817983 ripCount = 60 +7817984 locktype1 = 2 +7817984 locktype2 = 9 +7818005 locktype3 = 8 +7818005 goalCount = 0 +7818006 goalTotal = 50 +7818006 otherCount = 76 +~~~ +7818129 16 512 +7819084 DOWN 5 +7819084 0 512 +7819102 16 512 +7819229 DOWN 5 +7819229 0 512 +7819556 16 512 +7819594 DOWN 5 +7819594 0 512 +7824936 UP 10 +7824937 waslock = 0 +7824936 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7824966 512 16777728 +~~~ +7825116 512 512 +7825293 DOWN 10 +7825293 0 512 +~~~ +~~~ +7825317 0 1536 +~~~ +~~~ +7825319 0 1024 +7825320 homeCount = 145 +7825321 waitCount = 73 +7825321 ripCount = 60 +7825322 locktype1 = 2 +7825322 locktype2 = 9 +7825323 locktype3 = 8 +7825323 goalCount = 0 +7825324 goalTotal = 50 +7825324 otherCount = 76 +~~~ +7825341 UP 10 +7825341 waslock = 0 +7825341 512 1024 +~~~ +7829403 DOWN 10 +7829403 0 1024 +~~~ +~~~ +~~~ +~~~ +7829431 homeCount = 145 +7829431 waitCount = 73 +7829432 ripCount = 60 +7829432 locktype1 = 2 +7829433 locktype2 = 9 +7829433 locktype3 = 8 +7829434 goalCount = 0 +7829434 goalTotal = 50 +7829435 otherCount = 76 +~~~ +7829941 UP 10 +7829941 waslock = 0 +7829941 512 1024 +~~~ +7831848 DOWN 10 +7831848 0 1024 +~~~ +~~~ +~~~ +~~~ +7831870 homeCount = 145 +7831871 waitCount = 73 +7831871 ripCount = 60 +7831872 locktype1 = 2 +7831872 locktype2 = 9 +7831872 locktype3 = 8 +7831873 goalCount = 0 +7831873 goalTotal = 50 +7831874 otherCount = 76 +~~~ +7831894 UP 10 +7831894 waslock = 0 +7831894 512 1024 +~~~ +7831944 DOWN 10 +7831944 0 1024 +~~~ +~~~ +~~~ +~~~ +7831972 homeCount = 145 +7831972 waitCount = 73 +7831973 ripCount = 60 +7831973 locktype1 = 2 +7831974 locktype2 = 9 +7831974 locktype3 = 8 +7831975 goalCount = 0 +7831975 goalTotal = 50 +7831976 otherCount = 76 +~~~ +7835528 UP 11 +7835528 1024 1024 +7837151 DOWN 11 +7837151 0 1024 +7837163 UP 11 +7837163 1024 1024 +7837648 DOWN 11 +7837648 0 1024 +7837684 UP 11 +7837684 1024 1024 +7838242 DOWN 11 +7838242 0 1024 +7838271 UP 11 +7838271 1024 1024 +7840891 DOWN 11 +7840891 0 1024 +7840902 UP 11 +7840902 1024 1024 +7842529 BEEP1 +7842529 BEEP2 +~~~ +~~~ +~~~ +7842549 1024 33555456 +~~~ +7842699 1024 1024 +7849088 DOWN 11 +7849088 0 1024 +~~~ +~~~ +7849110 0 0 +~~~ +~~~ +7849112 0 1 +~~~ +~~~ +7849114 0 3 +~~~ +~~~ +7849116 0 7 +~~~ +~~~ +7849118 0 15 +~~~ +~~~ +7849119 0 31 +~~~ +~~~ +7849121 0 63 +~~~ +~~~ +7849123 0 127 +~~~ +~~~ +7849125 0 255 +7849126 homeCount = 145 +7849126 waitCount = 73 +7849127 ripCount = 61 +7849127 locktype1 = 2 +7849128 locktype2 = 9 +7849128 locktype3 = 8 +7849149 goalCount = 0 +7849150 goalTotal = 50 +7849150 otherCount = 76 +~~~ +7849151 CURRENTGOAL IS [1] +~~~ +7855904 UP 1 +7855904 1 255 +~~~ +~~~ +7855933 outer reward +~~~ +7855933 1 65791 +~~~ +~~~ +7856383 1 255 +7864549 DOWN 1 +7864549 0 255 +~~~ +~~~ +7864571 0 254 +~~~ +~~~ +7864573 0 252 +~~~ +~~~ +7864574 0 248 +~~~ +~~~ +7864576 0 240 +~~~ +~~~ +7864578 0 224 +~~~ +~~~ +7864580 0 192 +~~~ +~~~ +7864582 0 128 +~~~ +~~~ +7864583 0 0 +~~~ +~~~ +7864585 0 512 +7864586 homeCount = 145 +7864587 waitCount = 73 +7864587 ripCount = 61 +7864588 locktype1 = 2 +7864588 locktype2 = 9 +7864610 locktype3 = 8 +7864610 goalCount = 1 +7864610 goalTotal = 51 +7864611 otherCount = 76 +~~~ +7868827 UP 10 +7868828 waslock = 0 +7868827 512 512 +~~~ +~~~ +7868851 DOWN 10 +7868851 0 512 +~~~ +~~~ +~~~ +7868854 0 16777728 +~~~ +7868866 UP 10 +7868866 waslock = 0 +7868866 512 16777728 +~~~ +~~~ +7868870 512 16779776 +~~~ +~~~ +7868872 512 16779264 +7868873 homeCount = 146 +7868873 waitCount = 73 +7868874 ripCount = 61 +7868874 locktype1 = 2 +7868875 locktype2 = 9 +7868875 locktype3 = 8 +7868876 goalCount = 1 +7868876 goalTotal = 51 +7868897 otherCount = 76 +~~~ +~~~ +7869004 512 2048 +7872166 DOWN 10 +7872166 0 2048 +~~~ +~~~ +~~~ +7872190 UP 10 +7872191 waslock = 0 +7872190 512 2048 +~~~ +7872192 homeCount = 146 +7872193 waitCount = 73 +7872193 ripCount = 61 +7872194 locktype1 = 2 +7872194 locktype2 = 9 +7872195 locktype3 = 8 +7872195 goalCount = 1 +7872196 goalTotal = 51 +7872196 otherCount = 76 +~~~ +~~~ +7872268 DOWN 10 +7872268 0 2048 +~~~ +~~~ +~~~ +~~~ +7872293 homeCount = 146 +7872293 waitCount = 73 +7872294 ripCount = 61 +7872294 locktype1 = 2 +7872295 locktype2 = 9 +7872295 locktype3 = 8 +7872296 goalCount = 1 +7872296 goalTotal = 51 +7872297 otherCount = 76 +~~~ +7872341 UP 10 +7872341 waslock = 0 +7872341 512 2048 +~~~ +7872384 DOWN 10 +7872384 0 2048 +~~~ +~~~ +~~~ +~~~ +7872419 homeCount = 146 +7872419 waitCount = 73 +7872420 ripCount = 61 +7872420 locktype1 = 2 +7872421 locktype2 = 9 +7872421 locktype3 = 8 +7872421 goalCount = 1 +7872422 goalTotal = 51 +7872422 otherCount = 76 +~~~ +7874412 UP 12 +7874412 2048 2048 +7877331 DOWN 12 +7877331 0 2048 +7877347 UP 12 +7877347 2048 2048 +7877792 DOWN 12 +7877792 0 2048 +7877797 UP 12 +7877796 2048 2048 +7877912 CLICK1 +7877912 CLICK2 +~~~ +~~~ +~~~ +7877935 2048 67110912 +~~~ +7878085 2048 2048 +7885038 DOWN 12 +7885038 0 2048 +~~~ +~~~ +7885060 0 0 +~~~ +~~~ +7885062 0 1 +~~~ +~~~ +7885064 0 3 +~~~ +~~~ +7885065 0 7 +~~~ +~~~ +7885067 0 15 +~~~ +~~~ +7885069 0 31 +~~~ +~~~ +7885071 0 63 +~~~ +~~~ +7885073 0 127 +~~~ +~~~ +7885074 0 255 +7885075 homeCount = 146 +7885076 waitCount = 74 +7885077 ripCount = 61 +7885077 locktype1 = 2 +7885078 locktype2 = 9 +7885099 locktype3 = 8 +7885099 goalCount = 1 +7885100 goalTotal = 51 +7885100 otherCount = 76 +~~~ +7885101 CURRENTGOAL IS [1] +~~~ +7894917 UP 8 +7894917 128 255 +~~~ +~~~ +7895450 DOWN 8 +7895450 0 255 +~~~ +~~~ +7895471 0 254 +~~~ +~~~ +7895473 0 252 +~~~ +~~~ +7895474 0 248 +~~~ +~~~ +7895476 0 240 +~~~ +~~~ +7895478 0 224 +~~~ +~~~ +7895480 0 192 +~~~ +~~~ +7895482 0 128 +~~~ +~~~ +7895484 0 0 +~~~ +~~~ +7895485 0 512 +7895486 homeCount = 146 +7895487 waitCount = 74 +7895487 ripCount = 61 +7895488 locktype1 = 2 +7895488 locktype2 = 9 +7895510 locktype3 = 8 +7895510 goalCount = 1 +7895511 goalTotal = 51 +7895511 otherCount = 77 +~~~ +7895776 128 512 +7895968 DOWN 8 +7895968 0 512 +7896139 128 512 +7896189 DOWN 8 +7896189 0 512 +7900458 UP 10 +7900458 waslock = 0 +7900458 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7900487 512 16777728 +~~~ +7900637 512 512 +7900779 DOWN 10 +7900779 0 512 +~~~ +~~~ +7900802 0 2560 +~~~ +~~~ +7900804 0 2048 +7900805 homeCount = 147 +7900805 waitCount = 74 +7900806 ripCount = 61 +7900806 locktype1 = 2 +7900807 locktype2 = 9 +7900807 locktype3 = 8 +7900808 goalCount = 1 +7900808 goalTotal = 51 +7900809 otherCount = 77 +~~~ +7900813 UP 10 +7900814 waslock = 0 +7900813 512 2048 +~~~ +7906111 DOWN 10 +7906111 0 2048 +~~~ +~~~ +~~~ +~~~ +7906135 homeCount = 147 +7906135 waitCount = 74 +7906136 ripCount = 61 +7906136 locktype1 = 2 +7906137 locktype2 = 9 +7906137 locktype3 = 8 +7906137 goalCount = 1 +7906138 goalTotal = 51 +7906138 otherCount = 77 +~~~ +7906159 UP 10 +7906159 waslock = 0 +7906159 512 2048 +~~~ +7906195 DOWN 10 +7906195 0 2048 +~~~ +~~~ +~~~ +~~~ +7906236 homeCount = 147 +7906236 waitCount = 74 +7906237 ripCount = 61 +7906237 locktype1 = 2 +7906238 locktype2 = 9 +7906238 locktype3 = 8 +7906239 goalCount = 1 +7906239 goalTotal = 51 +7906240 otherCount = 77 +~~~ +7908017 UP 12 +7908017 2048 2048 +7911017 CLICK1 +7911017 CLICK2 +~~~ +~~~ +~~~ +7911043 2048 67110912 +~~~ +7911193 2048 2048 +7911194 DOWN 12 +7911194 0 2048 +7911200 UP 12 +7911200 2048 2048 +~~~ +~~~ +7911226 2048 0 +~~~ +~~~ +7911228 2048 1 +~~~ +~~~ +7911230 2048 3 +~~~ +~~~ +7911232 2048 7 +~~~ +~~~ +7911233 2048 15 +~~~ +~~~ +7911235 2048 31 +~~~ +~~~ +7911237 2048 63 +~~~ +~~~ +7911239 2048 127 +~~~ +~~~ +7911241 2048 255 +7911242 homeCount = 147 +7911242 waitCount = 75 +7911243 ripCount = 61 +7911243 locktype1 = 2 +7911264 locktype2 = 9 +7911265 locktype3 = 8 +7911265 goalCount = 1 +7911265 goalTotal = 51 +7911266 otherCount = 77 +~~~ +7911267 CURRENTGOAL IS [1] +~~~ +7911361 DOWN 12 +7911361 0 255 +7911380 UP 12 +7911380 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7911397 homeCount = 147 +7911398 waitCount = 75 +7911399 ripCount = 61 +7911399 locktype1 = 2 +7911400 locktype2 = 9 +7911400 locktype3 = 8 +7911400 goalCount = 1 +7911401 goalTotal = 51 +7911401 otherCount = 77 +~~~ +7911403 CURRENTGOAL IS [1] +~~~ +7919722 DOWN 12 +7919722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7919758 homeCount = 147 +7919759 waitCount = 75 +7919759 ripCount = 61 +7919760 locktype1 = 2 +7919760 locktype2 = 9 +7919761 locktype3 = 8 +7919761 goalCount = 1 +7919762 goalTotal = 51 +7919762 otherCount = 77 +~~~ +7919763 CURRENTGOAL IS [1] +~~~ +7919799 UP 12 +7919799 2048 255 +7919845 DOWN 12 +7919845 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7919877 homeCount = 147 +7919877 waitCount = 75 +7919878 ripCount = 61 +7919878 locktype1 = 2 +7919879 locktype2 = 9 +7919879 locktype3 = 8 +7919880 goalCount = 1 +7919880 goalTotal = 51 +7919881 otherCount = 77 +~~~ +7919882 CURRENTGOAL IS [1] +~~~ +7928018 UP 3 +7928018 4 255 +~~~ +~~~ +7928533 DOWN 3 +7928533 0 255 +~~~ +~~~ +7928553 0 254 +~~~ +~~~ +7928555 0 252 +~~~ +~~~ +7928557 0 248 +~~~ +~~~ +7928558 0 240 +~~~ +~~~ +7928560 0 224 +~~~ +~~~ +7928562 0 192 +~~~ +~~~ +7928564 0 128 +~~~ +~~~ +7928566 0 0 +~~~ +~~~ +7928568 0 512 +7928569 homeCount = 147 +7928569 waitCount = 75 +7928570 ripCount = 61 +7928570 locktype1 = 2 +7928570 locktype2 = 9 +7928592 locktype3 = 8 +7928592 goalCount = 1 +7928593 goalTotal = 51 +7928593 otherCount = 78 +~~~ +7932281 UP 10 +7932281 waslock = 0 +7932281 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7932304 512 16777728 +~~~ +7932453 512 512 +7932498 DOWN 10 +7932498 0 512 +~~~ +7932518 UP 10 +7932518 waslock = 0 +7932518 512 512 +~~~ +~~~ +~~~ +7932520 512 2048 +7932521 homeCount = 148 +7932522 waitCount = 75 +7932522 ripCount = 61 +7932523 locktype1 = 2 +7932523 locktype2 = 9 +7932524 locktype3 = 8 +7932524 goalCount = 1 +7932525 goalTotal = 51 +7932546 otherCount = 78 +~~~ +~~~ +7933232 DOWN 10 +7933232 0 2048 +~~~ +~~~ +~~~ +~~~ +7933254 homeCount = 148 +7933255 waitCount = 75 +7933255 ripCount = 61 +7933256 locktype1 = 2 +7933256 locktype2 = 9 +7933256 locktype3 = 8 +7933257 goalCount = 1 +7933257 goalTotal = 51 +7933258 otherCount = 78 +~~~ +7933259 UP 10 +7933259 waslock = 0 +7933258 512 2048 +~~~ +7936681 DOWN 10 +7936681 0 2048 +~~~ +~~~ +~~~ +~~~ +7936705 homeCount = 148 +7936705 waitCount = 75 +7936706 ripCount = 61 +7936706 locktype1 = 2 +7936706 locktype2 = 9 +7936707 locktype3 = 8 +7936707 goalCount = 1 +7936708 goalTotal = 51 +7936708 otherCount = 78 +~~~ +7938394 UP 12 +7938394 2048 2048 +7941781 DOWN 12 +7941781 0 2048 +7941837 UP 12 +7941837 2048 2048 +7941956 DOWN 12 +7941956 0 2048 +7941983 UP 12 +7941983 2048 2048 +7943894 CLICK1 +7943894 CLICK2 +~~~ +~~~ +~~~ +7943913 2048 67110912 +~~~ +7944063 2048 2048 +7950204 DOWN 12 +7950204 0 2048 +~~~ +~~~ +7950231 0 0 +~~~ +~~~ +7950233 0 1 +~~~ +~~~ +7950235 0 3 +~~~ +~~~ +7950237 0 7 +~~~ +~~~ +7950238 0 15 +~~~ +~~~ +7950240 0 31 +~~~ +~~~ +7950242 0 63 +~~~ +~~~ +7950244 0 127 +~~~ +~~~ +7950246 0 255 +7950247 homeCount = 148 +7950247 waitCount = 76 +7950248 ripCount = 61 +7950248 locktype1 = 2 +7950249 locktype2 = 9 +7950249 locktype3 = 8 +7950270 goalCount = 1 +7950271 goalTotal = 51 +7950271 otherCount = 78 +~~~ +7950272 CURRENTGOAL IS [1] +~~~ +7956075 UP 1 +7956075 1 255 +~~~ +~~~ +7956097 outer reward +~~~ +7956097 1 65791 +~~~ +~~~ +7956547 1 255 +7965194 DOWN 1 +7965194 0 255 +~~~ +~~~ +7965214 0 254 +~~~ +~~~ +7965216 0 252 +~~~ +~~~ +7965217 0 248 +~~~ +~~~ +7965219 0 240 +~~~ +~~~ +7965221 0 224 +~~~ +~~~ +7965223 0 192 +~~~ +~~~ +7965225 0 128 +~~~ +~~~ +7965226 0 0 +~~~ +~~~ +7965228 0 512 +7965229 homeCount = 148 +7965230 waitCount = 76 +7965230 ripCount = 61 +7965231 locktype1 = 2 +7965231 locktype2 = 9 +7965252 locktype3 = 8 +7965253 goalCount = 2 +7965253 goalTotal = 52 +7965254 otherCount = 78 +~~~ +7965254 1 512 +7965322 DOWN 1 +7965322 0 512 +7965364 1 512 +7969410 DOWN 1 +7969410 0 512 +7973544 UP 10 +7973544 waslock = 0 +7973543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +7973568 512 16777728 +~~~ +7973718 512 512 +7978713 DOWN 10 +7978713 0 512 +~~~ +~~~ +7978733 0 1536 +~~~ +~~~ +7978735 0 1024 +7978736 homeCount = 149 +7978736 waitCount = 76 +7978737 ripCount = 61 +7978737 locktype1 = 2 +7978738 locktype2 = 9 +7978738 locktype3 = 8 +7978739 goalCount = 2 +7978739 goalTotal = 52 +7978740 otherCount = 78 +~~~ +7978779 UP 10 +7978779 waslock = 0 +7978779 512 1024 +~~~ +7978830 DOWN 10 +7978830 0 1024 +~~~ +~~~ +~~~ +~~~ +7978858 homeCount = 149 +7978859 waitCount = 76 +7978859 ripCount = 61 +7978860 locktype1 = 2 +7978860 locktype2 = 9 +7978861 locktype3 = 8 +7978861 goalCount = 2 +7978862 goalTotal = 52 +7978862 otherCount = 78 +~~~ +7980517 UP 11 +7980517 1024 1024 +7983057 DOWN 11 +7983057 0 1024 +7983112 UP 11 +7983112 1024 1024 +7984017 BEEP1 +7984017 BEEP2 +~~~ +~~~ +~~~ +7984035 1024 33555456 +~~~ +7984185 1024 1024 +7992797 DOWN 11 +7992797 0 1024 +~~~ +~~~ +7992824 0 0 +~~~ +7992825 UP 11 +7992825 1024 0 +~~~ +~~~ +7992827 1024 1 +~~~ +~~~ +7992829 1024 3 +~~~ +7992830 1024 7 +~~~ +~~~ +7992831 1024 15 +~~~ +~~~ +7992833 1024 31 +~~~ +~~~ +7992835 1024 63 +~~~ +~~~ +7992837 1024 127 +~~~ +~~~ +7992838 1024 255 +7992840 homeCount = 149 +7992861 waitCount = 76 +7992861 ripCount = 62 +7992862 locktype1 = 2 +7992862 locktype2 = 9 +7992863 locktype3 = 8 +7992863 goalCount = 2 +7992864 goalTotal = 52 +7992864 otherCount = 78 +~~~ +7992865 CURRENTGOAL IS [1] +~~~ +7994733 DOWN 11 +7994733 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7994771 homeCount = 149 +7994772 waitCount = 76 +7994772 ripCount = 62 +7994773 locktype1 = 2 +7994773 locktype2 = 9 +7994774 locktype3 = 8 +7994774 goalCount = 2 +7994775 goalTotal = 52 +7994775 otherCount = 78 +~~~ +7994776 CURRENTGOAL IS [1] +~~~ +7994783 UP 11 +7994783 1024 255 +7994819 DOWN 11 +7994819 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +7994853 homeCount = 149 +7994853 waitCount = 76 +7994854 ripCount = 62 +7994854 locktype1 = 2 +7994855 locktype2 = 9 +7994855 locktype3 = 8 +7994856 goalCount = 2 +7994856 goalTotal = 52 +7994856 otherCount = 78 +~~~ +7994858 CURRENTGOAL IS [1] +~~~ +7999561 UP 1 +7999561 1 255 +~~~ +~~~ +7999580 outer reward +~~~ +7999581 1 65791 +~~~ +~~~ +7999876 DOWN 1 +7999876 0 65791 +7999895 1 65791 +~~~ +~~~ +7999897 1 65790 +~~~ +~~~ +7999899 1 65788 +~~~ +~~~ +7999901 1 65784 +~~~ +~~~ +7999903 1 65776 +~~~ +~~~ +7999905 1 65760 +~~~ +~~~ +7999907 1 65728 +~~~ +~~~ +7999908 1 65664 +~~~ +~~~ +7999910 1 65536 +~~~ +~~~ +7999912 1 66048 +7999913 homeCount = 149 +7999914 waitCount = 76 +7999914 ripCount = 62 +7999915 locktype1 = 2 +7999935 locktype2 = 9 +7999936 locktype3 = 8 +7999936 goalCount = 3 +7999937 goalTotal = 53 +7999937 otherCount = 78 +~~~ +8000030 1 512 +8010845 DOWN 1 +8010845 0 512 +8010907 1 512 +8010958 DOWN 1 +8010958 0 512 +8011043 1 512 +8011084 DOWN 1 +8011084 0 512 +8015421 UP 10 +8015421 waslock = 0 +8015421 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +8015455 512 16777728 +~~~ +8015605 512 512 +8018818 DOWN 10 +8018818 0 512 +~~~ +~~~ +8018839 0 2560 +~~~ +~~~ +8018841 0 2048 +8018842 homeCount = 150 +8018843 waitCount = 76 +8018843 ripCount = 62 +8018844 locktype1 = 2 +8018844 locktype2 = 9 +8018845 locktype3 = 8 +8018845 goalCount = 3 +8018846 goalTotal = 53 +8018846 otherCount = 78 +~~~ +8018847 UP 10 +8018867 waslock = 0 +8018847 512 2048 +~~~ +8018914 DOWN 10 +8018913 0 2048 +~~~ +~~~ +~~~ +~~~ +8018945 homeCount = 150 +8018945 waitCount = 76 +8018946 ripCount = 62 +8018946 locktype1 = 2 +8018946 locktype2 = 9 +8018947 locktype3 = 8 +8018947 goalCount = 3 +8018948 goalTotal = 53 +8018948 otherCount = 78 +~~~ +8020546 UP 12 +8020546 2048 2048 +8023546 CLICK1 +8023546 CLICK2 +~~~ +~~~ +~~~ +8023571 2048 67110912 +~~~ +8023721 2048 2048 +8031115 DOWN 12 +8031115 0 2048 +~~~ +~~~ +8031138 0 0 +~~~ +8031140 UP 12 +8031140 2048 0 +~~~ +~~~ +8031142 2048 1 +~~~ +~~~ +8031143 2048 3 +~~~ +8031144 2048 7 +~~~ +~~~ +8031146 2048 15 +~~~ +~~~ +8031148 2048 31 +~~~ +~~~ +8031149 2048 63 +~~~ +~~~ +8031151 2048 127 +~~~ +~~~ +8031153 2048 255 +8031154 homeCount = 150 +8031175 waitCount = 77 +8031176 ripCount = 62 +8031176 locktype1 = 2 +8031177 locktype2 = 9 +8031177 locktype3 = 8 +8031178 goalCount = 3 +8031178 goalTotal = 53 +8031179 otherCount = 78 +~~~ +8031180 CURRENTGOAL IS [1] +~~~ +8031198 DOWN 12 +8031198 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8031228 homeCount = 150 +8031228 waitCount = 77 +8031229 ripCount = 62 +8031229 locktype1 = 2 +8031230 locktype2 = 9 +8031230 locktype3 = 8 +8031231 goalCount = 3 +8031231 goalTotal = 53 +8031231 otherCount = 78 +~~~ +8031233 CURRENTGOAL IS [1] +~~~ +8031282 UP 12 +8031282 2048 255 +8032109 DOWN 12 +8032109 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8032146 homeCount = 150 +8032146 waitCount = 77 +8032147 ripCount = 62 +8032148 locktype1 = 2 +8032148 locktype2 = 9 +8032148 locktype3 = 8 +8032149 goalCount = 3 +8032149 goalTotal = 53 +8032150 otherCount = 78 +~~~ +8032151 CURRENTGOAL IS [1] +~~~ +8032154 UP 12 +8032154 2048 255 +8032202 DOWN 12 +8032202 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +8032236 homeCount = 150 +8032236 waitCount = 77 +8032237 ripCount = 62 +8032237 locktype1 = 2 +8032238 locktype2 = 9 +8032238 locktype3 = 8 +8032239 goalCount = 3 +8032239 goalTotal = 53 +8032240 otherCount = 78 +~~~ +8032241 CURRENTGOAL IS [1] +~~~ +8035149 UP 1 +8035149 1 255 +~~~ +~~~ +8035173 outer reward +~~~ +8035174 1 65791 +~~~ +~~~ +8035421 DOWN 1 +8035421 0 65791 +~~~ +~~~ +8035442 0 65790 +~~~ +~~~ +8035444 0 65788 +~~~ +~~~ +8035445 0 65784 +~~~ +~~~ +8035447 0 65776 +~~~ +~~~ +8035449 0 65760 +~~~ +~~~ +8035451 0 65728 +~~~ +~~~ +8035453 0 65664 +~~~ +8035454 1 65664 +~~~ +~~~ +8035456 1 65536 +~~~ +8035457 1 66048 +8035458 homeCount = 150 +8035458 waitCount = 77 +8035459 ripCount = 62 +8035480 locktype1 = 2 +8035481 locktype2 = 9 +8035481 locktype3 = 8 +8035481 goalCount = 4 +8035482 goalTotal = 54 +8035482 otherCount = 78 +~~~ +8035623 1 512 +8047000 DOWN 1 +8047000 0 512 +8047011 1 512 +8047114 DOWN 1 +8047114 0 512 +8047158 1 512 +8047251 DOWN 1 +8047251 0 512 +8047290 1 512 +8047390 DOWN 1 +8047390 0 512 +8047404 1 512 +8047629 DOWN 1 +8047629 0 512 +8051873 UP 10 +8051873 waslock = 0 +8051873 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +8051906 512 16777728 +~~~ +8052056 512 512 +8057856 DOWN 10 +8057856 0 512 +~~~ +~~~ +8057882 0 1536 +~~~ +~~~ +8057884 0 1024 +8057885 homeCount = 151 +8057886 waitCount = 77 +8057886 ripCount = 62 +8057887 locktype1 = 2 +8057887 locktype2 = 9 +8057888 locktype3 = 8 +8057888 goalCount = 4 +8057889 goalTotal = 54 +8057889 otherCount = 78 +~~~ +8057925 UP 10 +8057925 waslock = 0 +8057925 512 1024 +~~~ +8057961 DOWN 10 +8057961 0 1024 +~~~ +~~~ +~~~ +~~~ +8057985 homeCount = 151 +8057985 waitCount = 77 +8057986 ripCount = 62 +8057986 locktype1 = 2 +8057987 locktype2 = 9 +8057987 locktype3 = 8 +8057988 goalCount = 4 +8057988 goalTotal = 54 +8057989 otherCount = 78 +~~~ +8059817 UP 11 +8059817 1024 1024 +8063817 BEEP1 +8063817 BEEP2 +~~~ +~~~ +~~~ +8063842 1024 33555456 +~~~ +8063992 1024 1024 +8074007 DOWN 11 +8074007 0 1024 +~~~ +~~~ +8074031 0 0 +~~~ +~~~ +8074033 0 1 +~~~ +~~~ +8074035 0 3 +~~~ +~~~ +8074037 0 7 +~~~ +~~~ +8074039 0 15 +~~~ +~~~ +8074041 0 31 +~~~ +~~~ +8074042 0 63 +~~~ +~~~ +8074044 0 127 +~~~ +~~~ +8074046 0 255 +8074047 homeCount = 151 +8074048 waitCount = 77 +8074048 ripCount = 63 +8074049 locktype1 = 2 +8074049 locktype2 = 9 +8074070 locktype3 = 8 +8074071 goalCount = 4 +8074071 goalTotal = 54 +8074072 otherCount = 78 +~~~ +8074073 CURRENTGOAL IS [1] +~~~ + + description: Statescript log r1 + task_epochs: 2, +, Statescript2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140511632191184 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +# +#import math +#import struct +#import re +#import time +#import random +#import numpy as np +#import pyaudio +#import wave +#from statistics import mean +## V8pre_forage +## visits to incorrect wells cause 5s lockout +## exception is repeat visit to prior well (is ok, no lockout) +## can go to any outer well, any number of times +## lockout from getting rip/wait wells wrong is also 5s +# +# +## decide what type of up trigger was just recieved; act accordingly +#def pokeIn(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# doHome() +# +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# doOuter(num) +# +## decide what type of down trigger was just recieved; act accordingly +#def pokeOut(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# global lastWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# endHome() +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# endWait() +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# endOuter() +# lastWell = currWell +# +##home poke: decide trial type and upcoming wait length; turn on lights accordingly +#def doHome(): +# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout +# global homePump +# global lastWell +# global currWell +# #global waitdist +# +# if trialtype == 0: +# opts = [1, 2] +# randnum = np.random.randint(0,2) #-1 +# trialtype = opts[randnum] +# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #randnum = np.random.randint(0,8) +# delaytime = chooseDelay() +# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") +# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime +# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC +# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") +# print("SCQTMESSAGE: trigger(1);\n") # deliver reward +# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: +# lockout([2,2]) +# +#def chooseDelay(): +# global trialtype +# global RWcount +# global waitdist +# global startwaitdist +# +# print(RWcount) +# +# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short +# return startwaitdist[RWcount[trialtype-1]] +# +# else: +# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist +# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) +# +# else: +# return int(np.random.choice(waitdist,1)) +# +# +#def endHome(): +# global trialtype +# global lastWell +# global homeWell +# global waitWells +# +# if trialtype == 1 or trialtype == 2: +# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +# +#def click(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# +# #generate_click() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC +# +#def beep(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# #generate_beep() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC +# +#def endWait(): +# global trialtype +# global goalWell +# global currWell +# global outerWells +# +# if trialtype == 3: # wait complete +# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): # turn on outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") +# +# +#def doOuter(val): +# global outerPumps +# global trialtype +# global allGoal +# global thisGoal +# global goalWell +# global outerReps +# global currWell +# global lastWell +# global homeWell +# global numgoals +# global validOuterWells +# global waslock +# +# if trialtype == 3: +# trialtype = 0 # outer satisfied, head home next +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# if currWell in goalWell : # repeated; reward +# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") +# print("SCQTMESSAGE: trigger(2);\n") # deliver reward +# allGoal+=1 +# thisGoal+=1 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC +# +# if thisGoal >= outerReps: #maxed repeats reached, time to switch +# print("time to choose new goalS!") +# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats +# chooseGoal() +# else: +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection +# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection +# print(goalWell) +# +# thisGoal = 0 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# +# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) +# goalWell = [currWell] +# +# else: # wrong well; add to forage record if newly visited +# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC +# +# elif trialtype < 3 and waslock<1: +# lockout([2,2]) +# +#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal +# global goalWell +# global oldGoals +# global numgoals +# global outerWells +# global forageNum +# #global outerReps +# +# oldGoals.append(goalWell) +# print(oldGoals) +# +# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms +# forageNum = 1 +# +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# if len(oldGoals)>7: # if all outers have been goal, reset +# print("resetting oldgoals") +# oldGoals = [None] +# +# while any(i in goalWell for i in oldGoals): #if any common elements +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# print(goalWell) +# +# outerReps = np.random.randint(4,13) +# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# print("new goal is "+str(goalWell)+"\n") +# +#def endOuter(): +# global trialtype +# global outerWells +# global homeWell +# global lastWell +# global currWell +# +# if trialtype == 0 and lastWell != currWell: # outer satisfied +# for num in range(len(outerWells)): # turn off outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +#def lockout(val): # turn off all lights for certain amount of time +# global waitWells +# global outerWells +# global lastWell +# global trialtype +# global waslock +# +# locktype = int(val[1]) +# trialtype = 4 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE +# #turn off all lights +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(waitWells)): #turn off all wait and outer well lights +# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# waslock=1 +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well +# if locktype == 1: +# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well +# if locktype == 2: +# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC +# if locktype == 3: +# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors +# +# +#def lockend(): +# global trialtype +# global homeWell +# +# trialtype = 0 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well +# print("SCQTMESSAGE: trigger(3);\n") +# +#def updateWaslock(val): +# global waslock +# +# waslock = int(val[1]) +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") +# +## Function: generate click sound +#def generate_click(): +# +# File='ZippoClick_short.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +## Function: generate cowbell sound +#def generate_beep(): +# +# File='Beep.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +#def makewhitenoise(): #play white noise for duration of lockout +# global locksoundlength +# +# soundlength = int(44100*locksoundlength/1000) +# p = pyaudio.PyAudio() +# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) +# whitenoise = np.random.randint(700,size = soundlength) +# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) +# stream.write(data) +# stream.close() +# p.terminate() +# +# +## This is the custom callback function. When events occur, addScQtEvent will +## call this function. This function MUST BE NAMED 'callback'!!!! +#def callback(line): +# +# global waslock +# +# if line.find("UP") >= 0: #input triggered +# pokeIn(re.findall(r'\d+',line)) +# if line.find("DOWN") >= 0: #input triggered +# pokeOut(re.findall(r'\d+',line)) +# if line.find("BEEP1") >= 0: # make a beep and deliver reward +# beep() +# if line.find("BEEP2") >= 0: # make a beep and deliver reward +# generate_beep() +# if line.find("CLICK1") >= 0: # make a click and deliver reward +# click() +# if line.find("CLICK2") >= 0: # make a click and deliver reward +# generate_click() +# if line.find("LOCKOUT") >= 0: # lockout procedure +# lockout(re.findall(r'\d+',line)) +# if line.find("LOCKEND") >= 0: # reset trialtype to 0 +# lockend() +# if line.find("WHITENOISE") >= 0: # make noise during lockout +# makewhitenoise() +# if line.find("waslock") >= 0: #update waslock value +# updateWaslock(re.findall(r'\d+',line)) +# +# +## define wells +#homeWell = 10 +#waitWells = [11,12] +#outerWells = [1,2,3,4,5,6,7,8] +##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num +## define pumps +#homePump = 25 +#waitPumps = [26, 27] +#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] +# +##global variables +#lastWell = -1 +#currWell = -1 +#trialtype = 0 +#outerReps = 10 +##outerReps = np.random.randint(4,13) #10 +#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# +#allGoal = 0 +#thisGoal = 0 +#numgoals = 1 # number of outer arms rewarded +#forageNum = 1 +#if numgoals == 1: +# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells +#else: +# goalWell = np.random.choice(outerWells,numgoals,replace=False) +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) +# +#oldGoals = [] #initialize with any wells to exclude from being goal +##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] +#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] +# +#startwaitdist = [1000, 1500, 2000] +# +#locksoundlength = 1000 +#print(goalWell) +#waslock=0 +#RWcount = [0,0 +# +17097908 UP 10 +17097909 waslock = 0 +17097908 512 512 +~~~ +~~~ +17097929 DOWN 10 +17097929 0 512 +~~~ +~~~ +~~~ +17097934 0 16777728 +~~~ +~~~ +~~~ +17097954 0 16779776 +~~~ +~~~ +17097956 0 16779264 +17097957 homeCount = 1 +17097957 waitCount = 0 +17097958 ripCount = 0 +17097958 locktype1 = 0 +17097959 locktype2 = 0 +17097959 locktype3 = 0 +17097960 goalCount = 0 +17097960 goalTotal = 0 +17097960 otherCount = 0 +~~~ +17098084 0 2048 +17098097 UP 10 +17098097 waslock = 0 +17098097 512 2048 +17098115 DOWN 10 +17098115 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098140 homeCount = 1 +17098140 waitCount = 0 +17098141 ripCount = 0 +17098141 locktype1 = 0 +17098142 locktype2 = 0 +17098142 locktype3 = 0 +17098143 goalCount = 0 +17098143 goalTotal = 0 +17098144 otherCount = 0 +~~~ +17098196 UP 10 +17098196 waslock = 0 +17098196 512 2048 +17098203 DOWN 10 +17098203 0 2048 +17098215 UP 10 +17098215 waslock = 0 +17098215 512 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098224 homeCount = 1 +17098224 waitCount = 0 +17098225 ripCount = 0 +17098225 locktype1 = 0 +17098226 locktype2 = 0 +17098226 locktype3 = 0 +17098227 goalCount = 0 +17098227 goalTotal = 0 +17098228 otherCount = 0 +~~~ +17098232 DOWN 10 +17098232 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098271 homeCount = 1 +17098271 waitCount = 0 +17098272 ripCount = 0 +17098272 locktype1 = 0 +17098273 locktype2 = 0 +17098273 locktype3 = 0 +17098274 goalCount = 0 +17098274 goalTotal = 0 +17098275 otherCount = 0 +~~~ +17098313 UP 10 +17098314 waslock = 0 +17098313 512 2048 +17098325 DOWN 10 +17098325 0 2048 +~~~ +~~~ +~~~ +17098341 UP 10 +17098341 waslock = 0 +17098340 512 2048 +~~~ +~~~ +17098343 homeCount = 1 +17098344 waitCount = 0 +17098344 ripCount = 0 +17098345 locktype1 = 0 +17098345 locktype2 = 0 +17098346 locktype3 = 0 +17098346 goalCount = 0 +17098347 goalTotal = 0 +17098368 otherCount = 0 +~~~ +17098368 DOWN 10 +17098368 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17098389 homeCount = 1 +17098389 waitCount = 0 +17098390 ripCount = 0 +17098390 locktype1 = 0 +17098391 locktype2 = 0 +17098391 locktype3 = 0 +17098392 goalCount = 0 +17098392 goalTotal = 0 +17098393 otherCount = 0 +~~~ +17098443 UP 10 +17098443 waslock = 0 +17098443 512 2048 +~~~ +17098479 DOWN 10 +17098479 0 2048 +~~~ +~~~ +~~~ +~~~ +17098504 homeCount = 1 +17098504 waitCount = 0 +17098505 ripCount = 0 +17098505 locktype1 = 0 +17098505 locktype2 = 0 +17098506 locktype3 = 0 +17098506 goalCount = 0 +17098507 goalTotal = 0 +17098507 otherCount = 0 +~~~ +17098562 UP 10 +17098562 waslock = 0 +17098562 512 2048 +~~~ +17098607 DOWN 10 +17098607 0 2048 +~~~ +~~~ +~~~ +~~~ +17098626 homeCount = 1 +17098627 waitCount = 0 +17098627 ripCount = 0 +17098628 locktype1 = 0 +17098628 locktype2 = 0 +17098629 locktype3 = 0 +17098629 goalCount = 0 +17098630 goalTotal = 0 +17098630 otherCount = 0 +~~~ +17098693 UP 10 +17098693 waslock = 0 +17098693 512 2048 +~~~ +17098737 DOWN 10 +17098737 0 2048 +~~~ +~~~ +~~~ +~~~ +17098764 homeCount = 1 +17098764 waitCount = 0 +17098765 ripCount = 0 +17098765 locktype1 = 0 +17098766 locktype2 = 0 +17098766 locktype3 = 0 +17098767 goalCount = 0 +17098767 goalTotal = 0 +17098768 otherCount = 0 +~~~ +17098821 UP 10 +17098822 waslock = 0 +17098821 512 2048 +~~~ +17098866 DOWN 10 +17098866 0 2048 +~~~ +~~~ +~~~ +~~~ +17098893 homeCount = 1 +17098894 waitCount = 0 +17098895 ripCount = 0 +17098895 locktype1 = 0 +17098895 locktype2 = 0 +17098896 locktype3 = 0 +17098896 goalCount = 0 +17098897 goalTotal = 0 +17098897 otherCount = 0 +~~~ +17098951 UP 10 +17098951 waslock = 0 +17098951 512 2048 +~~~ +17098997 DOWN 10 +17098997 0 2048 +~~~ +~~~ +~~~ +~~~ +17099024 homeCount = 1 +17099024 waitCount = 0 +17099025 ripCount = 0 +17099025 locktype1 = 0 +17099026 locktype2 = 0 +17099026 locktype3 = 0 +17099027 goalCount = 0 +17099027 goalTotal = 0 +17099028 otherCount = 0 +~~~ +17099078 UP 10 +17099078 waslock = 0 +17099078 512 2048 +~~~ +17099137 DOWN 10 +17099137 0 2048 +~~~ +~~~ +~~~ +~~~ +17099164 homeCount = 1 +17099164 waitCount = 0 +17099165 ripCount = 0 +17099165 locktype1 = 0 +17099166 locktype2 = 0 +17099166 locktype3 = 0 +17099167 goalCount = 0 +17099167 goalTotal = 0 +17099168 otherCount = 0 +~~~ +17099210 UP 10 +17099210 waslock = 0 +17099209 512 2048 +~~~ +17099274 DOWN 10 +17099274 0 2048 +~~~ +~~~ +~~~ +~~~ +17099295 homeCount = 1 +17099295 waitCount = 0 +17099296 ripCount = 0 +17099296 locktype1 = 0 +17099297 locktype2 = 0 +17099297 locktype3 = 0 +17099298 goalCount = 0 +17099298 goalTotal = 0 +17099299 otherCount = 0 +~~~ +17099341 UP 10 +17099342 waslock = 0 +17099341 512 2048 +~~~ +17099412 DOWN 10 +17099412 0 2048 +~~~ +~~~ +~~~ +~~~ +17099438 homeCount = 1 +17099438 waitCount = 0 +17099439 ripCount = 0 +17099439 locktype1 = 0 +17099440 locktype2 = 0 +17099440 locktype3 = 0 +17099441 goalCount = 0 +17099441 goalTotal = 0 +17099442 otherCount = 0 +~~~ +17099483 UP 10 +17099483 waslock = 0 +17099483 512 2048 +~~~ +17099557 DOWN 10 +17099557 0 2048 +17099566 UP 10 +17099566 waslock = 0 +17099566 512 2048 +~~~ +~~~ +~~~ +~~~ +17099587 homeCount = 1 +17099588 waitCount = 0 +17099588 ripCount = 0 +17099589 locktype1 = 0 +17099589 locktype2 = 0 +17099590 locktype3 = 0 +17099590 goalCount = 0 +17099591 goalTotal = 0 +17099591 otherCount = 0 +~~~ +~~~ +17099696 DOWN 10 +17099696 0 2048 +17099699 UP 10 +17099699 waslock = 0 +17099699 512 2048 +~~~ +~~~ +~~~ +~~~ +17099724 homeCount = 1 +17099724 waitCount = 0 +17099725 ripCount = 0 +17099725 locktype1 = 0 +17099726 locktype2 = 0 +17099726 locktype3 = 0 +17099727 goalCount = 0 +17099727 goalTotal = 0 +17099728 otherCount = 0 +~~~ +~~~ +17100772 DOWN 10 +17100772 0 2048 +17100789 UP 10 +17100789 waslock = 0 +17100789 512 2048 +~~~ +~~~ +~~~ +~~~ +17100795 homeCount = 1 +17100795 waitCount = 0 +17100796 ripCount = 0 +17100796 locktype1 = 0 +17100797 locktype2 = 0 +17100797 locktype3 = 0 +17100798 goalCount = 0 +17100798 goalTotal = 0 +17100799 otherCount = 0 +~~~ +~~~ +17100909 DOWN 10 +17100909 0 2048 +~~~ +~~~ +~~~ +~~~ +17100938 homeCount = 1 +17100938 waitCount = 0 +17100939 ripCount = 0 +17100939 locktype1 = 0 +17100940 locktype2 = 0 +17100940 locktype3 = 0 +17100941 goalCount = 0 +17100941 goalTotal = 0 +17100942 otherCount = 0 +~~~ +17100945 UP 10 +17100945 waslock = 0 +17100945 512 2048 +~~~ +17101065 DOWN 10 +17101065 0 2048 +~~~ +~~~ +~~~ +~~~ +17101093 homeCount = 1 +17101093 waitCount = 0 +17101094 ripCount = 0 +17101094 locktype1 = 0 +17101095 locktype2 = 0 +17101095 locktype3 = 0 +17101096 goalCount = 0 +17101096 goalTotal = 0 +17101097 otherCount = 0 +~~~ +17101099 UP 10 +17101100 waslock = 0 +17101099 512 2048 +~~~ +17101243 DOWN 10 +17101243 0 2048 +~~~ +~~~ +~~~ +~~~ +17101263 UP 10 +17101264 waslock = 0 +17101263 512 2048 +17101265 homeCount = 1 +17101266 waitCount = 0 +17101266 ripCount = 0 +17101267 locktype1 = 0 +17101267 locktype2 = 0 +17101268 locktype3 = 0 +17101268 goalCount = 0 +17101269 goalTotal = 0 +17101269 otherCount = 0 +~~~ +~~~ +17101399 DOWN 10 +17101399 0 2048 +17101416 UP 10 +17101416 waslock = 0 +17101416 512 2048 +~~~ +~~~ +~~~ +~~~ +17101424 homeCount = 1 +17101424 waitCount = 0 +17101425 ripCount = 0 +17101425 locktype1 = 0 +17101425 locktype2 = 0 +17101426 locktype3 = 0 +17101426 goalCount = 0 +17101427 goalTotal = 0 +17101427 otherCount = 0 +~~~ +~~~ +17101561 DOWN 10 +17101561 0 2048 +17101572 UP 10 +17101572 waslock = 0 +17101572 512 2048 +~~~ +~~~ +~~~ +~~~ +17101596 homeCount = 1 +17101596 waitCount = 0 +17101597 ripCount = 0 +17101597 locktype1 = 0 +17101598 locktype2 = 0 +17101598 locktype3 = 0 +17101599 goalCount = 0 +17101599 goalTotal = 0 +17101600 otherCount = 0 +~~~ +~~~ +17101896 DOWN 10 +17101896 0 2048 +17101911 UP 10 +17101911 waslock = 0 +17101911 512 2048 +~~~ +~~~ +~~~ +~~~ +17101939 homeCount = 1 +17101940 waitCount = 0 +17101940 ripCount = 0 +17101940 locktype1 = 0 +17101941 locktype2 = 0 +17101941 locktype3 = 0 +17101942 goalCount = 0 +17101942 goalTotal = 0 +17101943 otherCount = 0 +~~~ +~~~ +17102043 DOWN 10 +17102043 0 2048 +~~~ +~~~ +~~~ +~~~ +17102068 homeCount = 1 +17102069 waitCount = 0 +17102069 ripCount = 0 +17102070 locktype1 = 0 +17102070 locktype2 = 0 +17102071 locktype3 = 0 +17102071 goalCount = 0 +17102072 goalTotal = 0 +17102072 otherCount = 0 +~~~ +17102073 UP 10 +17102073 waslock = 0 +17102073 512 2048 +~~~ +17102213 DOWN 10 +17102213 0 2048 +~~~ +17102236 UP 10 +17102236 waslock = 0 +17102236 512 2048 +~~~ +~~~ +~~~ +17102240 homeCount = 1 +17102240 waitCount = 0 +17102241 ripCount = 0 +17102241 locktype1 = 0 +17102242 locktype2 = 0 +17102242 locktype3 = 0 +17102242 goalCount = 0 +17102243 goalTotal = 0 +17102243 otherCount = 0 +~~~ +~~~ +17102394 DOWN 10 +17102394 0 2048 +17102404 UP 10 +17102404 waslock = 0 +17102404 512 2048 +~~~ +~~~ +~~~ +~~~ +17102428 homeCount = 1 +17102429 waitCount = 0 +17102429 ripCount = 0 +17102430 locktype1 = 0 +17102430 locktype2 = 0 +17102431 locktype3 = 0 +17102431 goalCount = 0 +17102431 goalTotal = 0 +17102432 otherCount = 0 +~~~ +~~~ +17102533 DOWN 10 +17102532 0 2048 +~~~ +~~~ +~~~ +~~~ +17102555 homeCount = 1 +17102556 waitCount = 0 +17102556 ripCount = 0 +17102557 locktype1 = 0 +17102557 locktype2 = 0 +17102558 locktype3 = 0 +17102558 goalCount = 0 +17102559 goalTotal = 0 +17102559 otherCount = 0 +~~~ +17102568 UP 10 +17102568 waslock = 0 +17102568 512 2048 +~~~ +17105160 DOWN 10 +17105160 0 2048 +17105166 UP 10 +17105167 waslock = 0 +17105166 512 2048 +~~~ +~~~ +~~~ +~~~ +17105185 homeCount = 1 +17105186 waitCount = 0 +17105186 ripCount = 0 +17105187 locktype1 = 0 +17105187 locktype2 = 0 +17105188 locktype3 = 0 +17105188 goalCount = 0 +17105189 goalTotal = 0 +17105189 otherCount = 0 +~~~ +~~~ +17105317 DOWN 10 +17105317 0 2048 +17105343 UP 10 +17105343 waslock = 0 +17105343 512 2048 +~~~ +~~~ +~~~ +~~~ +17105348 homeCount = 1 +17105348 waitCount = 0 +17105349 ripCount = 0 +17105349 locktype1 = 0 +17105350 locktype2 = 0 +17105350 locktype3 = 0 +17105351 goalCount = 0 +17105351 goalTotal = 0 +17105352 otherCount = 0 +~~~ +~~~ +17105443 DOWN 10 +17105443 0 2048 +~~~ +~~~ +~~~ +~~~ +17105469 homeCount = 1 +17105469 waitCount = 0 +17105470 ripCount = 0 +17105470 locktype1 = 0 +17105471 locktype2 = 0 +17105471 locktype3 = 0 +17105472 goalCount = 0 +17105472 goalTotal = 0 +17105473 otherCount = 0 +~~~ +17105486 UP 10 +17105486 waslock = 0 +17105486 512 2048 +~~~ +17105600 DOWN 10 +17105600 0 2048 +~~~ +~~~ +~~~ +~~~ +17105628 homeCount = 1 +17105628 waitCount = 0 +17105629 ripCount = 0 +17105629 locktype1 = 0 +17105629 locktype2 = 0 +17105630 locktype3 = 0 +17105630 goalCount = 0 +17105631 goalTotal = 0 +17105631 otherCount = 0 +~~~ +17105636 UP 10 +17105636 waslock = 0 +17105636 512 2048 +~~~ +17105791 DOWN 10 +17105791 0 2048 +~~~ +17105814 UP 10 +17105814 waslock = 0 +17105814 512 2048 +~~~ +~~~ +~~~ +17105817 homeCount = 1 +17105818 waitCount = 0 +17105818 ripCount = 0 +17105819 locktype1 = 0 +17105819 locktype2 = 0 +17105820 locktype3 = 0 +17105820 goalCount = 0 +17105821 goalTotal = 0 +17105821 otherCount = 0 +~~~ +~~~ +17105974 DOWN 10 +17105974 0 2048 +17105987 UP 10 +17105988 waslock = 0 +17105987 512 2048 +~~~ +~~~ +~~~ +~~~ +17106001 homeCount = 1 +17106002 waitCount = 0 +17106002 ripCount = 0 +17106003 locktype1 = 0 +17106003 locktype2 = 0 +17106004 locktype3 = 0 +17106004 goalCount = 0 +17106005 goalTotal = 0 +17106005 otherCount = 0 +~~~ +~~~ +17106145 DOWN 10 +17106145 0 2048 +17106156 UP 10 +17106156 waslock = 0 +17106156 512 2048 +~~~ +~~~ +~~~ +~~~ +17106177 homeCount = 1 +17106177 waitCount = 0 +17106178 ripCount = 0 +17106178 locktype1 = 0 +17106179 locktype2 = 0 +17106179 locktype3 = 0 +17106180 goalCount = 0 +17106180 goalTotal = 0 +17106181 otherCount = 0 +~~~ +~~~ +17106662 DOWN 10 +17106662 0 2048 +17106678 UP 10 +17106679 waslock = 0 +17106678 512 2048 +~~~ +~~~ +~~~ +~~~ +17106686 homeCount = 1 +17106686 waitCount = 0 +17106687 ripCount = 0 +17106687 locktype1 = 0 +17106688 locktype2 = 0 +17106688 locktype3 = 0 +17106689 goalCount = 0 +17106689 goalTotal = 0 +17106689 otherCount = 0 +~~~ +~~~ +17107378 DOWN 10 +17107378 0 2048 +17107394 UP 10 +17107395 waslock = 0 +17107394 512 2048 +~~~ +~~~ +~~~ +~~~ +17107416 homeCount = 1 +17107416 waitCount = 0 +17107417 ripCount = 0 +17107417 locktype1 = 0 +17107418 locktype2 = 0 +17107418 locktype3 = 0 +17107419 goalCount = 0 +17107419 goalTotal = 0 +17107420 otherCount = 0 +~~~ +~~~ +17110357 DOWN 10 +17110357 0 2048 +17110367 UP 10 +17110368 waslock = 0 +17110367 512 2048 +~~~ +~~~ +~~~ +~~~ +17110384 homeCount = 1 +17110384 waitCount = 0 +17110385 ripCount = 0 +17110385 locktype1 = 0 +17110386 locktype2 = 0 +17110386 locktype3 = 0 +17110387 goalCount = 0 +17110387 goalTotal = 0 +17110388 otherCount = 0 +~~~ +~~~ +17111248 DOWN 10 +17111248 0 2048 +~~~ +~~~ +~~~ +~~~ +17111278 homeCount = 1 +17111278 waitCount = 0 +17111279 ripCount = 0 +17111279 locktype1 = 0 +17111280 locktype2 = 0 +17111280 locktype3 = 0 +17111281 goalCount = 0 +17111281 goalTotal = 0 +17111282 otherCount = 0 +~~~ +17112980 UP 12 +17112980 2048 2048 +17113019 DOWN 12 +17113019 0 2048 +17113078 UP 12 +17113078 2048 2048 +17113162 DOWN 12 +17113162 0 2048 +17113362 LOCKOUT 3 +~~~ +17113381 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17113387 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17115071 UP 12 +17115071 2048 0 +17115080 DOWN 12 +17115080 0 0 +17115215 UP 12 +17115215 2048 0 +17115221 DOWN 12 +17115221 0 0 +17115349 UP 12 +17115349 2048 0 +17115363 DOWN 12 +17115363 0 0 +17115440 UP 12 +17115440 2048 0 +17115466 DOWN 12 +17115466 0 0 +17115645 UP 12 +17115645 2048 0 +17115657 DOWN 12 +17115657 0 0 +17115667 UP 12 +17115666 2048 0 +17115675 DOWN 12 +17115675 0 0 +17115780 UP 12 +17115780 2048 0 +17115801 DOWN 12 +17115801 0 0 +17115810 UP 12 +17115810 2048 0 +17115816 DOWN 12 +17115816 0 0 +17115955 UP 12 +17115955 2048 0 +17115960 DOWN 12 +17115960 0 0 +17116066 UP 12 +17116066 2048 0 +17116100 DOWN 12 +17116100 0 0 +17116204 UP 12 +17116204 2048 0 +17116257 DOWN 12 +17116257 0 0 +17116327 UP 12 +17116326 2048 0 +17116902 DOWN 12 +17116902 0 0 +17116938 UP 12 +17116938 2048 0 +17117078 DOWN 12 +17117078 0 0 +17117106 UP 12 +17117106 2048 0 +17117247 DOWN 12 +17117247 0 0 +17117269 UP 12 +17117269 2048 0 +17117395 DOWN 12 +17117394 0 0 +17117444 UP 12 +17117443 2048 0 +17117560 DOWN 12 +17117560 0 0 +17117578 UP 12 +17117578 2048 0 +17120536 DOWN 12 +17120536 0 0 +17120564 UP 12 +17120564 2048 0 +17120692 DOWN 12 +17120692 0 0 +17120734 UP 12 +17120734 2048 0 +17122749 DOWN 12 +17122749 0 0 +17122862 UP 12 +17122862 2048 0 +17122925 DOWN 12 +17122925 0 0 +17122966 UP 12 +17122966 2048 0 +17122985 DOWN 12 +17122985 0 0 +17126115 UP 11 +17126115 1024 0 +17126590 DOWN 11 +17126590 0 0 +17126628 UP 11 +17126628 1024 0 +17126735 DOWN 11 +17126735 0 0 +17126767 UP 11 +17126767 1024 0 +17126848 DOWN 11 +17126848 0 0 +17126961 UP 11 +17126961 1024 0 +17127005 DOWN 11 +17127005 0 0 +17127070 UP 11 +17127070 1024 0 +17127268 DOWN 11 +17127268 0 0 +17127323 UP 11 +17127323 1024 0 +17127360 DOWN 11 +17127360 0 0 +17128371 UP 11 +17128371 1024 0 +17128378 DOWN 11 +17128378 0 0 +17128512 UP 11 +17128512 1024 0 +17128520 DOWN 11 +17128520 0 0 +17128657 UP 11 +17128657 1024 0 +17128664 DOWN 11 +17128664 0 0 +17128799 UP 11 +17128799 1024 0 +17128814 DOWN 11 +17128814 0 0 +17128924 UP 11 +17128924 1024 0 +17128955 DOWN 11 +17128955 0 0 +17129072 UP 11 +17129072 1024 0 +17129121 DOWN 11 +17129121 0 0 +17129193 UP 11 +17129193 1024 0 +17129199 DOWN 11 +17129199 0 0 +17129206 UP 11 +17129206 1024 0 +17129273 DOWN 11 +17129273 0 0 +17129339 UP 11 +17129339 1024 0 +17129427 DOWN 11 +17129427 0 0 +17129465 UP 11 +17129465 1024 0 +17129478 DOWN 11 +17129478 0 0 +17129493 UP 11 +17129493 1024 0 +17129584 DOWN 11 +17129584 0 0 +17129604 UP 11 +17129604 1024 0 +17129642 DOWN 11 +17129642 0 0 +17129647 UP 11 +17129647 1024 0 +17129741 DOWN 11 +17129741 0 0 +17129755 UP 11 +17129755 1024 0 +17129913 DOWN 11 +17129913 0 0 +17129916 UP 11 +17129916 1024 0 +17131282 DOWN 11 +17131282 0 0 +17131290 UP 11 +17131290 1024 0 +17131452 DOWN 11 +17131452 0 0 +17131471 UP 11 +17131471 1024 0 +17131613 DOWN 11 +17131613 0 0 +17131648 UP 11 +17131648 1024 0 +17134290 DOWN 11 +17134290 0 0 +17134769 UP 11 +17134769 1024 0 +17134823 DOWN 11 +17134823 0 0 +17138381 LOCKEND +~~~ +~~~ +~~~ +17138406 0 512 +17139837 UP 10 +17139837 waslock = 0 +17139837 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17139872 512 16777728 +~~~ +17139893 DOWN 10 +17139893 0 16777728 +~~~ +~~~ +17139915 0 16779776 +~~~ +~~~ +17139917 0 16779264 +17139918 homeCount = 2 +17139918 waitCount = 0 +17139919 ripCount = 0 +17139919 locktype1 = 0 +17139920 locktype2 = 0 +17139920 locktype3 = 1 +17139921 goalCount = 0 +17139921 goalTotal = 0 +17139922 otherCount = 0 +~~~ +17139950 UP 10 +17139950 waslock = 0 +17139950 512 16779264 +~~~ +17140022 512 2048 +17140065 DOWN 10 +17140065 0 2048 +~~~ +~~~ +~~~ +~~~ +17140088 homeCount = 2 +17140089 waitCount = 0 +17140089 ripCount = 0 +17140090 locktype1 = 0 +17140090 locktype2 = 0 +17140091 locktype3 = 1 +17140091 goalCount = 0 +17140092 goalTotal = 0 +17140092 otherCount = 0 +~~~ +17140101 UP 10 +17140101 waslock = 0 +17140101 512 2048 +~~~ +17140240 DOWN 10 +17140240 0 2048 +17140257 UP 10 +17140257 waslock = 0 +17140257 512 2048 +~~~ +~~~ +~~~ +~~~ +17140270 homeCount = 2 +17140270 waitCount = 0 +17140271 ripCount = 0 +17140271 locktype1 = 0 +17140272 locktype2 = 0 +17140272 locktype3 = 1 +17140273 goalCount = 0 +17140273 goalTotal = 0 +17140274 otherCount = 0 +~~~ +~~~ +17140410 DOWN 10 +17140410 0 2048 +17140426 UP 10 +17140427 waslock = 0 +17140426 512 2048 +~~~ +~~~ +~~~ +~~~ +17140449 homeCount = 2 +17140449 waitCount = 0 +17140450 ripCount = 0 +17140450 locktype1 = 0 +17140451 locktype2 = 0 +17140451 locktype3 = 1 +17140452 goalCount = 0 +17140452 goalTotal = 0 +17140453 otherCount = 0 +~~~ +~~~ +17140577 DOWN 10 +17140577 0 2048 +17140594 UP 10 +17140594 waslock = 0 +17140594 512 2048 +~~~ +~~~ +~~~ +~~~ +17140620 homeCount = 2 +17140621 waitCount = 0 +17140621 ripCount = 0 +17140622 locktype1 = 0 +17140622 locktype2 = 0 +17140623 locktype3 = 1 +17140623 goalCount = 0 +17140624 goalTotal = 0 +17140624 otherCount = 0 +~~~ +~~~ +17142212 DOWN 10 +17142212 0 2048 +17142228 UP 10 +17142229 waslock = 0 +17142228 512 2048 +~~~ +~~~ +~~~ +~~~ +17142249 homeCount = 2 +17142250 waitCount = 0 +17142250 ripCount = 0 +17142251 locktype1 = 0 +17142251 locktype2 = 0 +17142252 locktype3 = 1 +17142252 goalCount = 0 +17142253 goalTotal = 0 +17142253 otherCount = 0 +~~~ +~~~ +17142366 DOWN 10 +17142366 0 2048 +~~~ +~~~ +~~~ +~~~ +17142389 homeCount = 2 +17142389 waitCount = 0 +17142390 ripCount = 0 +17142390 locktype1 = 0 +17142391 locktype2 = 0 +17142391 locktype3 = 1 +17142391 goalCount = 0 +17142392 goalTotal = 0 +17142392 otherCount = 0 +~~~ +17142404 UP 10 +17142405 waslock = 0 +17142404 512 2048 +~~~ +17142467 DOWN 10 +17142467 0 2048 +~~~ +~~~ +~~~ +~~~ +17142488 homeCount = 2 +17142489 waitCount = 0 +17142489 ripCount = 0 +17142490 locktype1 = 0 +17142490 locktype2 = 0 +17142491 locktype3 = 1 +17142491 goalCount = 0 +17142492 goalTotal = 0 +17142492 otherCount = 0 +~~~ +17145618 UP 7 +17145618 64 2048 +~~~ +17145638 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17145644 64 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17145661 DOWN 7 +17145661 0 0 +~~~ +17145688 64 0 +17145936 DOWN 7 +17145935 0 0 +17145982 64 0 +17146406 DOWN 7 +17146406 0 0 +17146420 64 0 +17148954 DOWN 7 +17148954 0 0 +17148975 64 0 +17149053 DOWN 7 +17149053 0 0 +17156173 512 0 +17156617 0 0 +17156641 512 0 +17156974 0 0 +17156988 512 0 +17157127 0 0 +17157152 512 0 +17157306 0 0 +17157321 512 0 +17157477 0 0 +17157493 512 0 +17157661 0 0 +17157668 512 0 +17158019 0 0 +17158039 512 0 +17158176 0 0 +17158207 512 0 +17158364 0 0 +17158393 512 0 +17158518 0 0 +17160113 UP 12 +17160113 2048 0 +17160307 DOWN 12 +17160307 0 0 +17164258 UP 2 +17164258 2 0 +17164330 DOWN 2 +17164330 0 0 +17164364 2 0 +17164660 DOWN 2 +17164660 0 0 +17164694 2 0 +17165098 DOWN 2 +17165098 0 0 +17165116 2 0 +17165603 DOWN 2 +17165603 0 0 +17165620 2 0 +17165783 DOWN 2 +17165783 0 0 +17165803 2 0 +17165960 DOWN 2 +17165960 0 0 +17165976 2 0 +17166139 DOWN 2 +17166139 0 0 +17166149 2 0 +17167551 DOWN 2 +17167551 0 0 +17167564 2 0 +17167726 DOWN 2 +17167726 0 0 +17167754 2 0 +17167812 DOWN 2 +17167812 0 0 +17167901 2 0 +17168006 DOWN 2 +17168006 0 0 +17168074 2 0 +17168160 DOWN 2 +17168160 0 0 +17168269 2 0 +17168360 DOWN 2 +17168360 0 0 +17168390 2 0 +17168528 DOWN 2 +17168528 0 0 +17168554 2 0 +17168701 DOWN 2 +17168701 0 0 +17168770 2 0 +17168793 DOWN 2 +17168793 0 0 +17170638 LOCKEND +~~~ +~~~ +~~~ +17170656 0 512 +17173427 UP 10 +17173427 waslock = 0 +17173427 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17173450 512 16777728 +~~~ +17173481 DOWN 10 +17173481 0 16777728 +~~~ +~~~ +17173505 0 16778752 +~~~ +~~~ +17173507 0 16778240 +17173508 homeCount = 3 +17173509 waitCount = 0 +17173509 ripCount = 0 +17173510 locktype1 = 0 +17173510 locktype2 = 1 +17173511 locktype3 = 1 +17173511 goalCount = 0 +17173512 goalTotal = 0 +17173512 otherCount = 0 +~~~ +17173600 0 1024 +17173629 UP 10 +17173629 waslock = 0 +17173629 512 1024 +~~~ +17177285 DOWN 10 +17177285 0 1024 +17177297 UP 10 +17177298 waslock = 0 +17177297 512 1024 +~~~ +~~~ +~~~ +~~~ +17177320 homeCount = 3 +17177320 waitCount = 0 +17177321 ripCount = 0 +17177321 locktype1 = 0 +17177322 locktype2 = 1 +17177322 locktype3 = 1 +17177322 goalCount = 0 +17177323 goalTotal = 0 +17177323 otherCount = 0 +~~~ +~~~ +17177371 DOWN 10 +17177371 0 1024 +~~~ +~~~ +~~~ +~~~ +17177399 homeCount = 3 +17177399 waitCount = 0 +17177400 ripCount = 0 +17177400 locktype1 = 0 +17177401 locktype2 = 1 +17177401 locktype3 = 1 +17177402 goalCount = 0 +17177402 goalTotal = 0 +17177403 otherCount = 0 +~~~ +17178689 UP 11 +17178689 1024 1024 +17179443 DOWN 11 +17179443 0 1024 +17179507 UP 11 +17179507 1024 1024 +17179689 BEEP1 +17179689 BEEP2 +~~~ +~~~ +~~~ +17179722 1024 33555456 +~~~ +17179872 1024 1024 +17185130 DOWN 11 +17185130 0 1024 +~~~ +~~~ +17185149 0 0 +~~~ +~~~ +17185151 0 1 +~~~ +~~~ +17185153 0 3 +~~~ +~~~ +17185155 0 7 +~~~ +~~~ +17185157 0 15 +~~~ +~~~ +17185159 0 31 +~~~ +~~~ +17185160 0 63 +~~~ +~~~ +17185162 0 127 +~~~ +~~~ +17185164 0 255 +17185165 homeCount = 3 +17185166 waitCount = 0 +17185166 ripCount = 1 +17185167 locktype1 = 0 +17185167 locktype2 = 1 +17185188 locktype3 = 1 +17185189 goalCount = 0 +17185189 goalTotal = 0 +17185190 otherCount = 0 +~~~ +17185191 CURRENTGOAL IS [8] +~~~ +17185191 UP 11 +17185191 1024 255 +17185193 DOWN 11 +17185193 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17185237 homeCount = 3 +17185238 waitCount = 0 +17185238 ripCount = 1 +17185239 locktype1 = 0 +17185239 locktype2 = 1 +17185240 locktype3 = 1 +17185240 goalCount = 0 +17185241 goalTotal = 0 +17185241 otherCount = 0 +~~~ +17185242 CURRENTGOAL IS [8] +~~~ +17187525 UP 8 +17187525 128 255 +17187540 DOWN 8 +17187540 0 255 +17187549 128 255 +~~~ +~~~ +17187564 outer reward +~~~ +17187564 128 8388863 +~~~ +~~~ +~~~ +~~~ +17187568 128 8388862 +~~~ +~~~ +17187570 128 8388860 +~~~ +~~~ +17187572 128 8388856 +~~~ +~~~ +17187574 128 8388848 +~~~ +~~~ +17187575 128 8388832 +~~~ +~~~ +17187577 128 8388800 +~~~ +~~~ +17187579 128 8388736 +~~~ +~~~ +17187581 128 8388608 +~~~ +~~~ +17187583 128 8389120 +17187604 homeCount = 3 +17187605 waitCount = 0 +17187605 ripCount = 1 +17187606 locktype1 = 0 +17187606 locktype2 = 1 +17187607 locktype3 = 1 +17187607 goalCount = 1 +17187608 goalTotal = 1 +17187608 otherCount = 0 +~~~ +17188014 128 512 +17188249 DOWN 8 +17188248 0 512 +17188270 128 512 +17188380 DOWN 8 +17188380 0 512 +17188411 128 512 +17188512 DOWN 8 +17188512 0 512 +17188550 128 512 +17188649 DOWN 8 +17188649 0 512 +17188680 128 512 +17188804 DOWN 8 +17188804 0 512 +17188815 128 512 +17188947 DOWN 8 +17188947 0 512 +17188964 128 512 +17190940 DOWN 8 +17190940 0 512 +17190964 128 512 +17193457 DOWN 8 +17193457 0 512 +17193811 128 512 +17193844 DOWN 8 +17193844 0 512 +17199369 UP 10 +17199369 waslock = 0 +17199369 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17199397 512 16777728 +~~~ +17199547 512 512 +17199572 DOWN 10 +17199572 0 512 +~~~ +~~~ +17199595 0 2560 +~~~ +~~~ +17199596 0 2048 +17199597 homeCount = 4 +17199598 waitCount = 0 +17199598 ripCount = 1 +17199599 locktype1 = 0 +17199599 locktype2 = 1 +17199600 locktype3 = 1 +17199600 goalCount = 1 +17199601 goalTotal = 1 +17199601 otherCount = 0 +~~~ +17199646 UP 10 +17199646 waslock = 0 +17199645 512 2048 +~~~ +17199747 DOWN 10 +17199747 0 2048 +~~~ +~~~ +~~~ +~~~ +17199774 homeCount = 4 +17199775 waitCount = 0 +17199775 ripCount = 1 +17199776 locktype1 = 0 +17199776 locktype2 = 1 +17199777 locktype3 = 1 +17199777 goalCount = 1 +17199778 goalTotal = 1 +17199778 otherCount = 0 +~~~ +17199781 UP 10 +17199781 waslock = 0 +17199781 512 2048 +~~~ +17199882 DOWN 10 +17199882 0 2048 +~~~ +~~~ +~~~ +~~~ +17199908 homeCount = 4 +17199909 waitCount = 0 +17199909 ripCount = 1 +17199909 locktype1 = 0 +17199910 locktype2 = 1 +17199910 locktype3 = 1 +17199911 goalCount = 1 +17199911 goalTotal = 1 +17199912 otherCount = 0 +~~~ +17199918 UP 10 +17199919 waslock = 0 +17199918 512 2048 +~~~ +17200055 DOWN 10 +17200055 0 2048 +~~~ +~~~ +~~~ +~~~ +17200079 UP 10 +17200079 waslock = 0 +17200079 512 2048 +17200080 homeCount = 4 +17200081 waitCount = 0 +17200081 ripCount = 1 +17200082 locktype1 = 0 +17200082 locktype2 = 1 +17200083 locktype3 = 1 +17200083 goalCount = 1 +17200084 goalTotal = 1 +17200084 otherCount = 0 +~~~ +~~~ +17200203 DOWN 10 +17200203 0 2048 +~~~ +~~~ +~~~ +17200231 UP 10 +17200231 waslock = 0 +17200231 512 2048 +~~~ +17200233 homeCount = 4 +17200234 waitCount = 0 +17200234 ripCount = 1 +17200235 locktype1 = 0 +17200235 locktype2 = 1 +17200235 locktype3 = 1 +17200236 goalCount = 1 +17200236 goalTotal = 1 +17200258 otherCount = 0 +~~~ +~~~ +17200369 DOWN 10 +17200369 0 2048 +17200387 UP 10 +17200388 waslock = 0 +17200387 512 2048 +~~~ +~~~ +~~~ +~~~ +17200392 homeCount = 4 +17200393 waitCount = 0 +17200393 ripCount = 1 +17200394 locktype1 = 0 +17200394 locktype2 = 1 +17200395 locktype3 = 1 +17200395 goalCount = 1 +17200396 goalTotal = 1 +17200396 otherCount = 0 +~~~ +~~~ +17200549 DOWN 10 +17200549 0 2048 +17200555 UP 10 +17200555 waslock = 0 +17200555 512 2048 +~~~ +~~~ +~~~ +~~~ +17200573 homeCount = 4 +17200574 waitCount = 0 +17200574 ripCount = 1 +17200575 locktype1 = 0 +17200575 locktype2 = 1 +17200576 locktype3 = 1 +17200576 goalCount = 1 +17200577 goalTotal = 1 +17200577 otherCount = 0 +~~~ +~~~ +17201066 DOWN 10 +17201066 0 2048 +17201087 UP 10 +17201087 waslock = 0 +17201086 512 2048 +~~~ +~~~ +~~~ +~~~ +17201094 homeCount = 4 +17201095 waitCount = 0 +17201095 ripCount = 1 +17201096 locktype1 = 0 +17201096 locktype2 = 1 +17201097 locktype3 = 1 +17201097 goalCount = 1 +17201098 goalTotal = 1 +17201098 otherCount = 0 +~~~ +~~~ +17201975 DOWN 10 +17201975 0 2048 +~~~ +~~~ +~~~ +17202002 UP 10 +17202003 waslock = 0 +17202002 512 2048 +~~~ +17202005 homeCount = 4 +17202005 waitCount = 0 +17202005 ripCount = 1 +17202006 locktype1 = 0 +17202006 locktype2 = 1 +17202007 locktype3 = 1 +17202007 goalCount = 1 +17202008 goalTotal = 1 +17202029 otherCount = 0 +~~~ +~~~ +17202166 DOWN 10 +17202166 0 2048 +17202183 UP 10 +17202183 waslock = 0 +17202183 512 2048 +~~~ +~~~ +~~~ +~~~ +17202206 homeCount = 4 +17202207 waitCount = 0 +17202207 ripCount = 1 +17202208 locktype1 = 0 +17202208 locktype2 = 1 +17202209 locktype3 = 1 +17202209 goalCount = 1 +17202210 goalTotal = 1 +17202210 otherCount = 0 +~~~ +~~~ +17202352 DOWN 10 +17202352 0 2048 +~~~ +~~~ +~~~ +17202373 UP 10 +17202373 waslock = 0 +17202372 512 2048 +~~~ +17202375 homeCount = 4 +17202375 waitCount = 0 +17202376 ripCount = 1 +17202376 locktype1 = 0 +17202377 locktype2 = 1 +17202377 locktype3 = 1 +17202378 goalCount = 1 +17202378 goalTotal = 1 +17202378 otherCount = 0 +~~~ +~~~ +17202533 DOWN 10 +17202533 0 2048 +17202545 UP 10 +17202545 waslock = 0 +17202545 512 2048 +~~~ +~~~ +~~~ +~~~ +17202570 homeCount = 4 +17202570 waitCount = 0 +17202571 ripCount = 1 +17202571 locktype1 = 0 +17202572 locktype2 = 1 +17202572 locktype3 = 1 +17202572 goalCount = 1 +17202573 goalTotal = 1 +17202573 otherCount = 0 +~~~ +~~~ +17202723 DOWN 10 +17202723 0 2048 +17202740 UP 10 +17202740 waslock = 0 +17202740 512 2048 +~~~ +~~~ +~~~ +~~~ +17202747 homeCount = 4 +17202747 waitCount = 0 +17202748 ripCount = 1 +17202748 locktype1 = 0 +17202749 locktype2 = 1 +17202749 locktype3 = 1 +17202750 goalCount = 1 +17202750 goalTotal = 1 +17202751 otherCount = 0 +~~~ +~~~ +17202889 DOWN 10 +17202889 0 2048 +~~~ +~~~ +~~~ +~~~ +17202917 homeCount = 4 +17202918 waitCount = 0 +17202918 ripCount = 1 +17202919 locktype1 = 0 +17202919 locktype2 = 1 +17202920 locktype3 = 1 +17202920 goalCount = 1 +17202921 goalTotal = 1 +17202921 otherCount = 0 +~~~ +17202922 UP 10 +17202922 waslock = 0 +17202922 512 2048 +~~~ +17203082 DOWN 10 +17203082 0 2048 +~~~ +~~~ +~~~ +~~~ +17203107 homeCount = 4 +17203107 waitCount = 0 +17203108 ripCount = 1 +17203108 locktype1 = 0 +17203109 locktype2 = 1 +17203109 locktype3 = 1 +17203110 goalCount = 1 +17203110 goalTotal = 1 +17203111 otherCount = 0 +~~~ +17203111 UP 10 +17203112 waslock = 0 +17203111 512 2048 +~~~ +17203454 DOWN 10 +17203454 0 2048 +~~~ +~~~ +~~~ +~~~ +17203476 homeCount = 4 +17203476 waitCount = 0 +17203477 ripCount = 1 +17203477 locktype1 = 0 +17203478 locktype2 = 1 +17203478 locktype3 = 1 +17203479 goalCount = 1 +17203479 goalTotal = 1 +17203480 otherCount = 0 +~~~ +17203503 UP 10 +17203504 waslock = 0 +17203503 512 2048 +~~~ +17203529 DOWN 10 +17203529 0 2048 +~~~ +~~~ +~~~ +~~~ +17203551 homeCount = 4 +17203551 waitCount = 0 +17203552 ripCount = 1 +17203552 locktype1 = 0 +17203553 locktype2 = 1 +17203553 locktype3 = 1 +17203554 goalCount = 1 +17203554 goalTotal = 1 +17203555 otherCount = 0 +~~~ +17204874 UP 12 +17204874 2048 2048 +17205289 DOWN 12 +17205289 0 2048 +17205350 UP 12 +17205350 2048 2048 +17205874 CLICK1 +17205874 CLICK2 +~~~ +~~~ +~~~ +17205897 2048 67110912 +~~~ +17206047 2048 2048 +17209020 DOWN 12 +17209019 0 2048 +17209027 UP 12 +17209027 2048 2048 +~~~ +~~~ +17209045 2048 0 +~~~ +~~~ +17209047 2048 1 +~~~ +~~~ +17209049 2048 3 +~~~ +~~~ +17209051 2048 7 +~~~ +~~~ +17209053 2048 15 +~~~ +~~~ +17209054 2048 31 +~~~ +~~~ +17209056 2048 63 +~~~ +~~~ +17209058 2048 127 +~~~ +~~~ +17209060 2048 255 +17209061 homeCount = 4 +17209061 waitCount = 1 +17209062 ripCount = 1 +17209083 locktype1 = 0 +17209084 locktype2 = 1 +17209084 locktype3 = 1 +17209085 goalCount = 1 +17209085 goalTotal = 1 +17209086 otherCount = 0 +~~~ +17209087 CURRENTGOAL IS [8] +~~~ +17209208 DOWN 12 +17209207 0 255 +17209215 UP 12 +17209215 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209252 homeCount = 4 +17209253 waitCount = 1 +17209253 ripCount = 1 +17209254 locktype1 = 0 +17209254 locktype2 = 1 +17209255 locktype3 = 1 +17209255 goalCount = 1 +17209256 goalTotal = 1 +17209256 otherCount = 0 +~~~ +17209257 CURRENTGOAL IS [8] +~~~ +17209297 DOWN 12 +17209297 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209333 homeCount = 4 +17209333 waitCount = 1 +17209334 ripCount = 1 +17209334 locktype1 = 0 +17209335 locktype2 = 1 +17209335 locktype3 = 1 +17209336 goalCount = 1 +17209336 goalTotal = 1 +17209337 otherCount = 0 +~~~ +17209338 CURRENTGOAL IS [8] +~~~ +17209367 UP 12 +17209367 2048 255 +17209442 DOWN 12 +17209441 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209482 homeCount = 4 +17209482 waitCount = 1 +17209483 ripCount = 1 +17209483 locktype1 = 0 +17209484 locktype2 = 1 +17209484 locktype3 = 1 +17209485 goalCount = 1 +17209485 goalTotal = 1 +17209486 otherCount = 0 +~~~ +17209487 CURRENTGOAL IS [8] +~~~ +17209521 UP 12 +17209521 2048 255 +17209548 DOWN 12 +17209548 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17209584 homeCount = 4 +17209584 waitCount = 1 +17209585 ripCount = 1 +17209585 locktype1 = 0 +17209586 locktype2 = 1 +17209586 locktype3 = 1 +17209587 goalCount = 1 +17209587 goalTotal = 1 +17209588 otherCount = 0 +~~~ +17209589 CURRENTGOAL IS [8] +~~~ +17214096 UP 3 +17214096 4 255 +~~~ +~~~ +17214382 DOWN 3 +17214382 0 255 +~~~ +~~~ +17214406 0 254 +~~~ +~~~ +17214408 0 252 +~~~ +~~~ +17214410 0 248 +~~~ +~~~ +17214412 0 240 +~~~ +~~~ +17214413 0 224 +~~~ +~~~ +17214415 0 192 +~~~ +17214417 4 192 +~~~ +~~~ +17214418 4 128 +~~~ +17214419 4 0 +~~~ +~~~ +17214421 4 512 +17214422 homeCount = 4 +17214422 waitCount = 1 +17214423 ripCount = 1 +17214444 locktype1 = 0 +17214444 locktype2 = 1 +17214445 locktype3 = 1 +17214445 goalCount = 1 +17214446 goalTotal = 1 +17214446 otherCount = 1 +~~~ +17216429 DOWN 3 +17216429 0 512 +17221376 UP 5 +17221376 16 512 +~~~ +17221403 WHITENOISE +~~~ +~~~ +~~~ +17221405 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17221498 DOWN 5 +17221498 0 0 +17221556 16 0 +17221956 DOWN 5 +17221956 0 0 +17221991 16 0 +17222305 DOWN 5 +17222305 0 0 +17222315 16 0 +17224674 DOWN 5 +17224674 0 0 +17229229 512 0 +17229265 0 0 +17229285 512 0 +17229569 0 0 +17229641 512 0 +17230107 0 0 +17230128 512 0 +17230800 0 0 +17230861 512 0 +17230891 0 0 +17241365 UP 1 +17241365 1 0 +17243735 DOWN 1 +17243735 0 0 +17243748 1 0 +17243765 DOWN 1 +17243765 0 0 +17246403 LOCKEND +~~~ +~~~ +~~~ +17246427 0 512 +17248354 UP 10 +17248354 waslock = 0 +17248354 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17248382 512 16777728 +~~~ +17248431 DOWN 10 +17248431 0 16777728 +~~~ +~~~ +17248459 0 16778752 +~~~ +~~~ +17248461 0 16778240 +17248462 homeCount = 5 +17248462 waitCount = 1 +17248463 ripCount = 1 +17248463 locktype1 = 0 +17248464 locktype2 = 2 +17248464 locktype3 = 1 +17248465 goalCount = 1 +17248465 goalTotal = 1 +17248466 otherCount = 1 +~~~ +17248532 0 1024 +17248648 UP 10 +17248648 waslock = 0 +17248648 512 1024 +~~~ +17252377 DOWN 10 +17252377 0 1024 +~~~ +~~~ +~~~ +~~~ +17252397 homeCount = 5 +17252398 waitCount = 1 +17252399 ripCount = 1 +17252399 locktype1 = 0 +17252400 locktype2 = 2 +17252400 locktype3 = 1 +17252400 goalCount = 1 +17252401 goalTotal = 1 +17252401 otherCount = 1 +~~~ +17252421 UP 10 +17252421 waslock = 0 +17252421 512 1024 +~~~ +17252951 DOWN 10 +17252951 0 1024 +~~~ +~~~ +~~~ +~~~ +17252980 homeCount = 5 +17252980 waitCount = 1 +17252981 ripCount = 1 +17252981 locktype1 = 0 +17252981 locktype2 = 2 +17252982 locktype3 = 1 +17252982 goalCount = 1 +17252983 goalTotal = 1 +17252983 otherCount = 1 +~~~ +17254005 UP 11 +17254004 1024 1024 +17254582 DOWN 11 +17254582 0 1024 +17254724 UP 11 +17254724 1024 1024 +17255505 BEEP1 +17255505 BEEP2 +~~~ +~~~ +~~~ +17255528 1024 33555456 +~~~ +17255678 1024 1024 +17260300 DOWN 11 +17260300 0 1024 +~~~ +~~~ +17260324 0 0 +~~~ +~~~ +17260326 0 1 +~~~ +~~~ +17260328 0 3 +~~~ +~~~ +17260330 0 7 +~~~ +~~~ +17260331 0 15 +~~~ +~~~ +17260333 0 31 +~~~ +~~~ +17260335 0 63 +~~~ +~~~ +17260337 0 127 +~~~ +~~~ +17260339 0 255 +17260340 homeCount = 5 +17260340 waitCount = 1 +17260341 ripCount = 2 +17260341 locktype1 = 0 +17260342 locktype2 = 2 +17260363 locktype3 = 1 +17260363 goalCount = 1 +17260364 goalTotal = 1 +17260364 otherCount = 1 +~~~ +17260365 CURRENTGOAL IS [8] +~~~ +17260366 UP 11 +17260366 1024 255 +17260390 DOWN 11 +17260390 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17260428 homeCount = 5 +17260428 waitCount = 1 +17260429 ripCount = 2 +17260429 locktype1 = 0 +17260430 locktype2 = 2 +17260430 locktype3 = 1 +17260431 goalCount = 1 +17260431 goalTotal = 1 +17260432 otherCount = 1 +~~~ +17260433 CURRENTGOAL IS [8] +~~~ +17262731 UP 7 +17262731 64 255 +~~~ +~~~ +17262993 DOWN 7 +17262993 0 255 +~~~ +~~~ +17263010 0 254 +~~~ +~~~ +17263012 0 252 +~~~ +~~~ +17263013 0 248 +~~~ +~~~ +17263015 0 240 +~~~ +~~~ +17263017 0 224 +~~~ +~~~ +17263019 0 192 +~~~ +~~~ +17263021 0 128 +~~~ +~~~ +17263023 0 0 +~~~ +~~~ +17263024 0 512 +17263025 homeCount = 5 +17263026 waitCount = 1 +17263026 ripCount = 2 +17263027 locktype1 = 0 +17263047 locktype2 = 2 +17263048 locktype3 = 1 +17263048 goalCount = 1 +17263049 goalTotal = 1 +17263049 otherCount = 2 +~~~ +17263101 64 512 +17263724 DOWN 7 +17263724 0 512 +17267314 UP 10 +17267315 waslock = 0 +17267314 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17267339 512 16777728 +~~~ +17267489 512 512 +17267798 DOWN 10 +17267798 0 512 +~~~ +~~~ +17267824 0 1536 +~~~ +~~~ +17267826 0 1024 +17267827 homeCount = 6 +17267827 waitCount = 1 +17267828 ripCount = 2 +17267828 locktype1 = 0 +17267829 locktype2 = 2 +17267829 locktype3 = 1 +17267830 goalCount = 1 +17267830 goalTotal = 1 +17267831 otherCount = 2 +~~~ +17267852 UP 10 +17267852 waslock = 0 +17267852 512 1024 +~~~ +17271549 DOWN 10 +17271549 0 1024 +~~~ +~~~ +~~~ +~~~ +17271577 homeCount = 6 +17271577 waitCount = 1 +17271578 ripCount = 2 +17271578 locktype1 = 0 +17271579 locktype2 = 2 +17271579 locktype3 = 1 +17271580 goalCount = 1 +17271580 goalTotal = 1 +17271580 otherCount = 2 +~~~ +17273398 UP 11 +17273398 1024 1024 +17275399 BEEP1 +17275399 BEEP2 +~~~ +~~~ +~~~ +17275425 1024 33555456 +~~~ +17275575 1024 1024 +17280164 DOWN 11 +17280164 0 1024 +~~~ +~~~ +17280183 0 0 +~~~ +~~~ +17280185 0 1 +~~~ +~~~ +17280187 0 3 +~~~ +~~~ +17280189 0 7 +~~~ +~~~ +17280190 0 15 +~~~ +~~~ +17280192 0 31 +~~~ +~~~ +17280194 0 63 +~~~ +~~~ +17280196 0 127 +~~~ +~~~ +17280198 0 255 +17280199 homeCount = 6 +17280199 waitCount = 1 +17280200 ripCount = 3 +17280200 locktype1 = 0 +17280201 locktype2 = 2 +17280222 locktype3 = 1 +17280222 goalCount = 1 +17280223 goalTotal = 1 +17280223 otherCount = 2 +~~~ +17280224 CURRENTGOAL IS [8] +~~~ +17283276 UP 6 +17283276 32 255 +~~~ +~~~ +17287545 DOWN 6 +17287545 0 255 +~~~ +~~~ +17287566 0 254 +~~~ +~~~ +17287568 0 252 +~~~ +~~~ +17287570 0 248 +~~~ +~~~ +17287572 0 240 +~~~ +~~~ +17287574 0 224 +~~~ +~~~ +17287576 0 192 +~~~ +~~~ +17287577 0 128 +~~~ +~~~ +17287579 0 0 +~~~ +~~~ +17287581 0 512 +17287582 homeCount = 6 +17287583 waitCount = 1 +17287583 ripCount = 3 +17287584 locktype1 = 0 +17287584 locktype2 = 2 +17287605 locktype3 = 1 +17287606 goalCount = 1 +17287606 goalTotal = 1 +17287607 otherCount = 3 +~~~ +17292442 UP 10 +17292442 waslock = 0 +17292442 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17292474 512 16777728 +~~~ +17292624 512 512 +17292916 DOWN 10 +17292916 0 512 +~~~ +~~~ +17292940 0 2560 +~~~ +~~~ +17292942 0 2048 +17292943 homeCount = 7 +17292943 waitCount = 1 +17292944 ripCount = 3 +17292944 locktype1 = 0 +17292945 locktype2 = 2 +17292945 locktype3 = 1 +17292946 goalCount = 1 +17292946 goalTotal = 1 +17292947 otherCount = 3 +~~~ +17292968 UP 10 +17292968 waslock = 0 +17292968 512 2048 +~~~ +17295724 DOWN 10 +17295724 0 2048 +~~~ +~~~ +~~~ +~~~ +17295752 homeCount = 7 +17295753 waitCount = 1 +17295753 ripCount = 3 +17295754 locktype1 = 0 +17295754 locktype2 = 2 +17295755 locktype3 = 1 +17295755 goalCount = 1 +17295756 goalTotal = 1 +17295756 otherCount = 3 +~~~ +17297251 UP 12 +17297251 2048 2048 +17298067 DOWN 12 +17298067 0 2048 +17298091 UP 12 +17298090 2048 2048 +17298405 DOWN 12 +17298404 0 2048 +17298448 UP 12 +17298448 2048 2048 +17298503 DOWN 12 +17298503 0 2048 +17298517 UP 12 +17298517 2048 2048 +17298751 CLICK1 +17298751 CLICK2 +~~~ +~~~ +~~~ +17298774 2048 67110912 +~~~ +17298924 2048 2048 +17303723 DOWN 12 +17303723 0 2048 +~~~ +~~~ +17303749 0 0 +~~~ +~~~ +17303751 0 1 +~~~ +~~~ +17303753 0 3 +~~~ +~~~ +17303755 0 7 +~~~ +~~~ +17303757 0 15 +~~~ +~~~ +17303758 0 31 +~~~ +~~~ +17303760 0 63 +~~~ +~~~ +17303762 0 127 +~~~ +~~~ +17303764 0 255 +17303765 homeCount = 7 +17303765 waitCount = 2 +17303766 ripCount = 3 +17303766 locktype1 = 0 +17303767 locktype2 = 2 +17303788 locktype3 = 1 +17303789 goalCount = 1 +17303789 goalTotal = 1 +17303789 otherCount = 3 +~~~ +17303791 CURRENTGOAL IS [8] +~~~ +17306124 UP 3 +17306124 4 255 +~~~ +~~~ +17306596 DOWN 3 +17306596 0 255 +~~~ +~~~ +17306619 0 254 +~~~ +~~~ +17306621 0 252 +~~~ +~~~ +17306623 0 248 +~~~ +~~~ +17306625 0 240 +~~~ +~~~ +17306626 0 224 +~~~ +17306628 4 224 +~~~ +~~~ +17306630 4 192 +~~~ +~~~ +17306631 4 128 +~~~ +17306632 4 0 +~~~ +~~~ +17306634 4 512 +17306635 homeCount = 7 +17306635 waitCount = 2 +17306657 ripCount = 3 +17306657 locktype1 = 0 +17306657 locktype2 = 2 +17306658 locktype3 = 1 +17306658 goalCount = 1 +17306659 goalTotal = 1 +17306659 otherCount = 4 +~~~ +17306899 DOWN 3 +17306899 0 512 +17310805 UP 10 +17310806 waslock = 0 +17310805 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17310836 512 16777728 +~~~ +17310985 512 512 +17311009 DOWN 10 +17311009 0 512 +~~~ +~~~ +17311029 0 2560 +~~~ +~~~ +17311031 0 2048 +17311032 homeCount = 8 +17311033 waitCount = 2 +17311033 ripCount = 3 +17311034 locktype1 = 0 +17311034 locktype2 = 2 +17311034 locktype3 = 1 +17311035 goalCount = 1 +17311035 goalTotal = 1 +17311036 otherCount = 4 +~~~ +17311057 UP 10 +17311058 waslock = 0 +17311057 512 2048 +~~~ +17316712 DOWN 10 +17316712 0 2048 +~~~ +~~~ +~~~ +~~~ +17316732 homeCount = 8 +17316733 waitCount = 2 +17316733 ripCount = 3 +17316734 locktype1 = 0 +17316734 locktype2 = 2 +17316735 locktype3 = 1 +17316735 goalCount = 1 +17316736 goalTotal = 1 +17316736 otherCount = 4 +~~~ +17318338 UP 12 +17318338 2048 2048 +17319026 DOWN 12 +17319026 0 2048 +17319032 UP 12 +17319032 2048 2048 +17319678 DOWN 12 +17319678 0 2048 +17319738 UP 12 +17319738 2048 2048 +17320338 CLICK1 +17320338 CLICK2 +~~~ +~~~ +~~~ +17320363 2048 67110912 +~~~ +17320513 2048 2048 +17326725 DOWN 12 +17326725 0 2048 +~~~ +~~~ +17326751 0 0 +~~~ +~~~ +17326753 0 1 +~~~ +~~~ +17326755 0 3 +~~~ +~~~ +17326757 0 7 +~~~ +~~~ +17326758 0 15 +~~~ +~~~ +17326760 0 31 +~~~ +~~~ +17326762 0 63 +~~~ +~~~ +17326764 0 127 +~~~ +~~~ +17326766 0 255 +17326767 homeCount = 8 +17326767 waitCount = 3 +17326768 ripCount = 3 +17326768 locktype1 = 0 +17326769 locktype2 = 2 +17326790 locktype3 = 1 +17326790 goalCount = 1 +17326791 goalTotal = 1 +17326791 otherCount = 4 +~~~ +17326792 CURRENTGOAL IS [8] +~~~ +17329863 UP 8 +17329863 128 255 +~~~ +~~~ +17329893 outer reward +~~~ +17329893 128 8388863 +~~~ +~~~ +17330172 DOWN 8 +17330172 0 8388863 +~~~ +~~~ +17330190 0 8388862 +~~~ +~~~ +17330192 0 8388860 +~~~ +~~~ +17330194 0 8388856 +~~~ +17330195 128 8388856 +~~~ +~~~ +17330197 128 8388848 +~~~ +~~~ +17330198 128 8388832 +~~~ +~~~ +17330200 128 8388800 +~~~ +17330201 128 8388736 +~~~ +~~~ +17330203 128 8388608 +~~~ +~~~ +17330225 homeCount = 8 +17330226 waitCount = 3 +17330226 ripCount = 3 +17330227 locktype1 = 0 +17330227 locktype2 = 2 +17330228 locktype3 = 1 +17330228 goalCount = 2 +17330229 goalTotal = 2 +17330229 otherCount = 4 +~~~ +17330230 128 8389120 +17330343 128 512 +17330465 DOWN 8 +17330465 0 512 +17330476 128 512 +17330578 DOWN 8 +17330578 0 512 +17330607 128 512 +17330830 DOWN 8 +17330830 0 512 +17330847 128 512 +17330966 DOWN 8 +17330966 0 512 +17330984 128 512 +17331109 DOWN 8 +17331109 0 512 +17331117 128 512 +17333342 DOWN 8 +17333342 0 512 +17333351 128 512 +17333497 DOWN 8 +17333497 0 512 +17333526 128 512 +17336388 DOWN 8 +17336388 0 512 +17336425 128 512 +17336477 DOWN 8 +17336477 0 512 +17340374 UP 10 +17340375 waslock = 0 +17340374 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17340400 512 16777728 +~~~ +17340550 512 512 +17340693 DOWN 10 +17340693 0 512 +~~~ +~~~ +17340713 0 1536 +~~~ +~~~ +17340715 0 1024 +17340716 homeCount = 9 +17340716 waitCount = 3 +17340717 ripCount = 3 +17340717 locktype1 = 0 +17340718 locktype2 = 2 +17340718 locktype3 = 1 +17340719 goalCount = 2 +17340719 goalTotal = 2 +17340720 otherCount = 4 +~~~ +17340741 UP 10 +17340741 waslock = 0 +17340741 512 1024 +~~~ +17340763 DOWN 10 +17340763 0 1024 +~~~ +~~~ +~~~ +~~~ +17340794 homeCount = 9 +17340795 waitCount = 3 +17340795 ripCount = 3 +17340796 locktype1 = 0 +17340796 locktype2 = 2 +17340797 locktype3 = 1 +17340797 goalCount = 2 +17340798 goalTotal = 2 +17340798 otherCount = 4 +~~~ +17340826 UP 10 +17340826 waslock = 0 +17340826 512 1024 +~~~ +17341139 DOWN 10 +17341139 0 1024 +~~~ +17341164 UP 10 +17341164 waslock = 0 +17341164 512 1024 +~~~ +~~~ +~~~ +17341168 homeCount = 9 +17341168 waitCount = 3 +17341168 ripCount = 3 +17341169 locktype1 = 0 +17341169 locktype2 = 2 +17341170 locktype3 = 1 +17341170 goalCount = 2 +17341171 goalTotal = 2 +17341171 otherCount = 4 +~~~ +~~~ +17341287 DOWN 10 +17341287 0 1024 +~~~ +~~~ +~~~ +~~~ +17341311 homeCount = 9 +17341312 waitCount = 3 +17341312 ripCount = 3 +17341312 locktype1 = 0 +17341313 locktype2 = 2 +17341313 locktype3 = 1 +17341314 goalCount = 2 +17341314 goalTotal = 2 +17341315 otherCount = 4 +~~~ +17341319 UP 10 +17341319 waslock = 0 +17341319 512 1024 +~~~ +17345688 DOWN 10 +17345688 0 1024 +~~~ +~~~ +~~~ +~~~ +17345716 homeCount = 9 +17345716 waitCount = 3 +17345717 ripCount = 3 +17345717 locktype1 = 0 +17345718 locktype2 = 2 +17345718 locktype3 = 1 +17345719 goalCount = 2 +17345719 goalTotal = 2 +17345720 otherCount = 4 +~~~ +17345720 UP 10 +17345721 waslock = 0 +17345720 512 1024 +~~~ +17346020 DOWN 10 +17346020 0 1024 +~~~ +~~~ +~~~ +~~~ +17346050 homeCount = 9 +17346051 waitCount = 3 +17346051 ripCount = 3 +17346052 locktype1 = 0 +17346052 locktype2 = 2 +17346053 locktype3 = 1 +17346053 goalCount = 2 +17346054 goalTotal = 2 +17346054 otherCount = 4 +~~~ +17346061 UP 10 +17346061 waslock = 0 +17346061 512 1024 +~~~ +17346109 DOWN 10 +17346109 0 1024 +~~~ +~~~ +~~~ +~~~ +17346131 homeCount = 9 +17346132 waitCount = 3 +17346132 ripCount = 3 +17346133 locktype1 = 0 +17346133 locktype2 = 2 +17346134 locktype3 = 1 +17346134 goalCount = 2 +17346135 goalTotal = 2 +17346135 otherCount = 4 +~~~ +17348173 UP 11 +17348173 1024 1024 +17348892 DOWN 11 +17348892 0 1024 +17348931 UP 11 +17348931 1024 1024 +17349733 DOWN 11 +17349733 0 1024 +17349791 UP 11 +17349791 1024 1024 +17352368 DOWN 11 +17352368 0 1024 +17352424 UP 11 +17352424 1024 1024 +17353673 BEEP1 +17353673 BEEP2 +~~~ +~~~ +~~~ +17353696 1024 33555456 +~~~ +17353846 1024 1024 +17358269 DOWN 11 +17358269 0 1024 +~~~ +~~~ +17358285 0 0 +~~~ +~~~ +17358286 0 1 +~~~ +~~~ +17358288 0 3 +~~~ +~~~ +17358290 0 7 +~~~ +~~~ +17358292 0 15 +~~~ +~~~ +17358294 0 31 +~~~ +~~~ +17358295 0 63 +~~~ +~~~ +17358297 0 127 +~~~ +~~~ +17358299 0 255 +17358300 homeCount = 9 +17358301 waitCount = 3 +17358301 ripCount = 4 +17358302 locktype1 = 0 +17358302 locktype2 = 2 +17358323 locktype3 = 1 +17358323 goalCount = 2 +17358324 goalTotal = 2 +17358324 otherCount = 4 +~~~ +17358325 CURRENTGOAL IS [8] +~~~ +17365570 UP 5 +17365570 16 255 +~~~ +~~~ +17365592 DOWN 5 +17365592 0 255 +~~~ +~~~ +17365610 0 254 +~~~ +~~~ +17365612 0 252 +~~~ +~~~ +17365613 0 248 +~~~ +~~~ +17365615 0 240 +~~~ +~~~ +17365617 0 224 +~~~ +~~~ +17365619 0 192 +~~~ +~~~ +17365621 0 128 +~~~ +~~~ +17365623 0 0 +~~~ +~~~ +17365624 0 512 +17365625 homeCount = 9 +17365626 waitCount = 3 +17365626 ripCount = 4 +17365627 locktype1 = 0 +17365627 locktype2 = 2 +17365648 locktype3 = 1 +17365649 goalCount = 2 +17365649 goalTotal = 2 +17365650 otherCount = 5 +~~~ +17365781 16 512 +17365998 DOWN 5 +17365998 0 512 +17366057 16 512 +17366358 DOWN 5 +17366358 0 512 +17370017 UP 10 +17370017 waslock = 0 +17370016 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17370044 512 16777728 +~~~ +17370086 DOWN 10 +17370086 0 16777728 +17370102 UP 10 +17370102 waslock = 0 +17370102 512 16777728 +~~~ +~~~ +17370109 512 16779776 +~~~ +~~~ +17370110 512 16779264 +17370111 homeCount = 10 +17370112 waitCount = 3 +17370112 ripCount = 4 +17370113 locktype1 = 0 +17370113 locktype2 = 2 +17370114 locktype3 = 1 +17370114 goalCount = 2 +17370115 goalTotal = 2 +17370115 otherCount = 5 +~~~ +~~~ +17370194 512 2048 +17370314 DOWN 10 +17370314 0 2048 +~~~ +~~~ +~~~ +~~~ +17370342 homeCount = 10 +17370342 waitCount = 3 +17370343 ripCount = 4 +17370343 locktype1 = 0 +17370344 locktype2 = 2 +17370344 locktype3 = 1 +17370345 goalCount = 2 +17370345 goalTotal = 2 +17370346 otherCount = 5 +~~~ +17370349 UP 10 +17370350 waslock = 0 +17370349 512 2048 +~~~ +17375317 DOWN 10 +17375317 0 2048 +~~~ +~~~ +~~~ +~~~ +17375343 homeCount = 10 +17375343 waitCount = 3 +17375344 ripCount = 4 +17375344 locktype1 = 0 +17375345 locktype2 = 2 +17375345 locktype3 = 1 +17375346 goalCount = 2 +17375346 goalTotal = 2 +17375347 otherCount = 5 +~~~ +17376808 UP 12 +17376808 2048 2048 +17377545 DOWN 12 +17377545 0 2048 +17377568 UP 12 +17377568 2048 2048 +17377991 DOWN 12 +17377991 0 2048 +17378027 UP 12 +17378027 2048 2048 +17378035 DOWN 12 +17378035 0 2048 +17378077 UP 12 +17378077 2048 2048 +17379308 CLICK1 +17379308 CLICK2 +~~~ +~~~ +~~~ +17379331 2048 67110912 +~~~ +17379481 2048 2048 +17385850 DOWN 12 +17385850 0 2048 +~~~ +~~~ +17385870 0 0 +~~~ +~~~ +17385872 0 1 +~~~ +~~~ +17385874 0 3 +~~~ +~~~ +17385876 0 7 +~~~ +~~~ +17385878 0 15 +~~~ +~~~ +17385879 0 31 +~~~ +~~~ +17385881 0 63 +~~~ +~~~ +17385883 0 127 +~~~ +~~~ +17385885 0 255 +17385886 homeCount = 10 +17385886 waitCount = 4 +17385887 ripCount = 4 +17385887 locktype1 = 0 +17385888 locktype2 = 2 +17385909 locktype3 = 1 +17385910 goalCount = 2 +17385910 goalTotal = 2 +17385911 otherCount = 5 +~~~ +17385912 CURRENTGOAL IS [8] +~~~ +17388562 UP 4 +17388562 8 255 +~~~ +~~~ +17388885 DOWN 4 +17388885 0 255 +~~~ +~~~ +17388905 0 254 +~~~ +~~~ +17388907 0 252 +~~~ +~~~ +17388909 0 248 +~~~ +~~~ +17388911 0 240 +~~~ +~~~ +17388913 0 224 +~~~ +~~~ +17388915 0 192 +~~~ +~~~ +17388916 0 128 +~~~ +~~~ +17388918 0 0 +~~~ +~~~ +17388920 0 512 +17388921 homeCount = 10 +17388922 waitCount = 4 +17388922 ripCount = 4 +17388923 locktype1 = 0 +17388923 locktype2 = 2 +17388944 locktype3 = 1 +17388945 goalCount = 2 +17388945 goalTotal = 2 +17388946 otherCount = 6 +~~~ +17388946 8 512 +17390803 DOWN 4 +17390803 0 512 +17390805 8 512 +17390813 DOWN 4 +17390813 0 512 +17390818 8 512 +17392370 DOWN 4 +17392370 0 512 +17392384 8 512 +17392555 DOWN 4 +17392555 0 512 +17392566 8 512 +17392739 DOWN 4 +17392739 0 512 +17392749 8 512 +17393053 DOWN 4 +17393053 0 512 +17397905 UP 10 +17397905 waslock = 0 +17397905 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17397935 512 16777728 +~~~ +17397959 DOWN 10 +17397959 0 16777728 +~~~ +~~~ +17397988 0 16778752 +~~~ +~~~ +17397989 0 16778240 +17397990 homeCount = 11 +17397991 waitCount = 4 +17397991 ripCount = 4 +17397992 locktype1 = 0 +17397992 locktype2 = 2 +17397993 locktype3 = 1 +17397993 goalCount = 2 +17397994 goalTotal = 2 +17397994 otherCount = 6 +~~~ +17398015 UP 10 +17398015 waslock = 0 +17398015 512 16778240 +~~~ +17398085 512 1024 +17398135 DOWN 10 +17398135 0 1024 +~~~ +~~~ +~~~ +~~~ +17398161 homeCount = 11 +17398161 waitCount = 4 +17398162 ripCount = 4 +17398162 locktype1 = 0 +17398163 locktype2 = 2 +17398163 locktype3 = 1 +17398164 goalCount = 2 +17398164 goalTotal = 2 +17398165 otherCount = 6 +~~~ +17398199 UP 10 +17398200 waslock = 0 +17398199 512 1024 +~~~ +17401566 DOWN 10 +17401566 0 1024 +~~~ +~~~ +~~~ +~~~ +17401591 homeCount = 11 +17401591 waitCount = 4 +17401592 ripCount = 4 +17401592 locktype1 = 0 +17401593 locktype2 = 2 +17401593 locktype3 = 1 +17401594 goalCount = 2 +17401594 goalTotal = 2 +17401595 otherCount = 6 +~~~ +17401630 UP 10 +17401630 waslock = 0 +17401630 512 1024 +17401646 DOWN 10 +17401646 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +17401673 homeCount = 11 +17401673 waitCount = 4 +17401674 ripCount = 4 +17401674 locktype1 = 0 +17401674 locktype2 = 2 +17401675 locktype3 = 1 +17401675 goalCount = 2 +17401676 goalTotal = 2 +17401676 otherCount = 6 +~~~ +17403114 UP 11 +17403114 1024 1024 +17403966 DOWN 11 +17403966 0 1024 +17404015 UP 11 +17404015 1024 1024 +17404028 DOWN 11 +17404028 0 1024 +17404049 UP 11 +17404049 1024 1024 +17405538 DOWN 11 +17405538 0 1024 +17405561 UP 11 +17405561 1024 1024 +17407114 BEEP1 +17407114 BEEP2 +~~~ +~~~ +~~~ +17407139 1024 33555456 +~~~ +17407289 1024 1024 +17411324 DOWN 11 +17411324 0 1024 +17411329 UP 11 +17411329 1024 1024 +~~~ +~~~ +17411346 1024 0 +~~~ +~~~ +17411348 1024 1 +~~~ +~~~ +17411350 1024 3 +~~~ +~~~ +17411352 1024 7 +~~~ +~~~ +17411353 1024 15 +~~~ +~~~ +17411355 1024 31 +~~~ +~~~ +17411357 1024 63 +~~~ +~~~ +17411359 1024 127 +~~~ +~~~ +17411361 1024 255 +17411362 homeCount = 11 +17411362 waitCount = 4 +17411363 ripCount = 5 +17411384 locktype1 = 0 +17411384 locktype2 = 2 +17411385 locktype3 = 1 +17411385 goalCount = 2 +17411386 goalTotal = 2 +17411386 otherCount = 6 +~~~ +17411387 CURRENTGOAL IS [8] +~~~ +17411388 DOWN 11 +17411388 0 255 +17411400 UP 11 +17411400 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411443 homeCount = 11 +17411444 waitCount = 4 +17411444 ripCount = 5 +17411445 locktype1 = 0 +17411445 locktype2 = 2 +17411446 locktype3 = 1 +17411446 goalCount = 2 +17411447 goalTotal = 2 +17411447 otherCount = 6 +~~~ +17411448 CURRENTGOAL IS [8] +~~~ +17411594 DOWN 11 +17411594 0 255 +17411605 UP 11 +17411605 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411634 homeCount = 11 +17411635 waitCount = 4 +17411636 ripCount = 5 +17411636 locktype1 = 0 +17411637 locktype2 = 2 +17411637 locktype3 = 1 +17411638 goalCount = 2 +17411638 goalTotal = 2 +17411638 otherCount = 6 +~~~ +17411640 CURRENTGOAL IS [8] +~~~ +17411643 DOWN 11 +17411643 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411684 UP 11 +17411684 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411695 homeCount = 11 +17411696 waitCount = 4 +17411696 ripCount = 5 +17411697 locktype1 = 0 +17411697 locktype2 = 2 +17411698 locktype3 = 1 +17411698 goalCount = 2 +17411699 goalTotal = 2 +17411699 otherCount = 6 +~~~ +17411700 CURRENTGOAL IS [8] +~~~ +17411725 DOWN 11 +17411725 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17411763 homeCount = 11 +17411764 waitCount = 4 +17411765 ripCount = 5 +17411765 locktype1 = 0 +17411766 locktype2 = 2 +17411766 locktype3 = 1 +17411766 goalCount = 2 +17411767 goalTotal = 2 +17411767 otherCount = 6 +~~~ +17411769 CURRENTGOAL IS [8] +~~~ +17414174 UP 8 +17414174 128 255 +~~~ +~~~ +17414201 outer reward +~~~ +17414202 128 8388863 +~~~ +~~~ +17414479 DOWN 8 +17414479 0 8388863 +17414498 128 8388863 +~~~ +~~~ +17414500 128 8388862 +~~~ +~~~ +17414502 128 8388860 +~~~ +~~~ +17414503 128 8388856 +~~~ +~~~ +17414505 128 8388848 +~~~ +~~~ +17414507 128 8388832 +~~~ +~~~ +17414509 128 8388800 +~~~ +~~~ +17414511 128 8388736 +~~~ +~~~ +17414513 128 8388608 +~~~ +~~~ +17414514 128 8389120 +17414536 homeCount = 11 +17414537 waitCount = 4 +17414537 ripCount = 5 +17414537 locktype1 = 0 +17414538 locktype2 = 2 +17414538 locktype3 = 1 +17414539 goalCount = 3 +17414539 goalTotal = 3 +17414540 otherCount = 6 +~~~ +17414651 128 512 +17414876 DOWN 8 +17414876 0 512 +17414889 128 512 +17421666 DOWN 8 +17421666 0 512 +17426251 UP 10 +17426251 waslock = 0 +17426251 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17426278 512 16777728 +~~~ +17426428 512 512 +17426438 DOWN 10 +17426438 0 512 +~~~ +~~~ +17426454 0 1536 +~~~ +~~~ +17426456 0 1024 +17426457 homeCount = 12 +17426458 waitCount = 4 +17426458 ripCount = 5 +17426459 locktype1 = 0 +17426459 locktype2 = 2 +17426460 locktype3 = 1 +17426460 goalCount = 3 +17426461 goalTotal = 3 +17426461 otherCount = 6 +~~~ +17426536 UP 10 +17426537 waslock = 0 +17426536 512 1024 +~~~ +17430663 DOWN 10 +17430663 0 1024 +~~~ +~~~ +~~~ +~~~ +17430685 homeCount = 12 +17430685 waitCount = 4 +17430686 ripCount = 5 +17430686 locktype1 = 0 +17430687 locktype2 = 2 +17430687 locktype3 = 1 +17430688 goalCount = 3 +17430688 goalTotal = 3 +17430689 otherCount = 6 +~~~ +17432753 UP 11 +17432753 1024 1024 +17433614 DOWN 11 +17433614 0 1024 +17433672 UP 11 +17433672 1024 1024 +17434770 DOWN 11 +17434770 0 1024 +17434790 UP 11 +17434790 1024 1024 +17437253 DOWN 11 +17437253 0 1024 +17437320 UP 11 +17437320 1024 1024 +17437753 BEEP1 +17437753 BEEP2 +~~~ +~~~ +~~~ +17437773 1024 33555456 +~~~ +17437923 1024 1024 +17443197 DOWN 11 +17443197 0 1024 +~~~ +~~~ +17443221 0 0 +~~~ +~~~ +17443222 0 1 +~~~ +~~~ +17443224 0 3 +~~~ +~~~ +17443226 0 7 +~~~ +~~~ +17443228 0 15 +~~~ +~~~ +17443230 0 31 +~~~ +~~~ +17443232 0 63 +~~~ +~~~ +17443233 0 127 +~~~ +17443235 UP 11 +17443235 1024 127 +~~~ +17443236 homeCount = 12 +17443237 waitCount = 4 +17443237 ripCount = 6 +17443238 locktype1 = 0 +17443259 locktype2 = 2 +17443259 locktype3 = 1 +17443260 goalCount = 3 +17443260 goalTotal = 3 +17443261 otherCount = 6 +~~~ +17443262 CURRENTGOAL IS [8] +~~~ +17443262 1024 255 +17443287 DOWN 11 +17443287 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17443317 homeCount = 12 +17443318 waitCount = 4 +17443318 ripCount = 6 +17443319 locktype1 = 0 +17443319 locktype2 = 2 +17443320 locktype3 = 1 +17443320 goalCount = 3 +17443320 goalTotal = 3 +17443321 otherCount = 6 +~~~ +17443322 CURRENTGOAL IS [8] +~~~ +17443352 UP 11 +17443352 1024 255 +17443995 DOWN 11 +17443995 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444028 homeCount = 12 +17444028 waitCount = 4 +17444029 ripCount = 6 +17444029 locktype1 = 0 +17444030 locktype2 = 2 +17444030 locktype3 = 1 +17444031 goalCount = 3 +17444031 goalTotal = 3 +17444032 otherCount = 6 +~~~ +17444033 CURRENTGOAL IS [8] +~~~ +17444354 UP 11 +17444354 1024 255 +17444599 DOWN 11 +17444599 0 255 +17444616 UP 11 +17444616 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444637 homeCount = 12 +17444637 waitCount = 4 +17444638 ripCount = 6 +17444638 locktype1 = 0 +17444639 locktype2 = 2 +17444639 locktype3 = 1 +17444640 goalCount = 3 +17444640 goalTotal = 3 +17444641 otherCount = 6 +~~~ +17444642 CURRENTGOAL IS [8] +~~~ +17444645 DOWN 11 +17444645 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17444702 homeCount = 12 +17444702 waitCount = 4 +17444703 ripCount = 6 +17444703 locktype1 = 0 +17444704 locktype2 = 2 +17444704 locktype3 = 1 +17444705 goalCount = 3 +17444705 goalTotal = 3 +17444706 otherCount = 6 +~~~ +17444707 CURRENTGOAL IS [8] +~~~ +17448341 UP 8 +17448341 128 255 +~~~ +~~~ +17448364 outer reward +~~~ +17448364 128 8388863 +~~~ +~~~ +17448537 DOWN 8 +17448537 0 8388863 +~~~ +~~~ +17448561 0 8388862 +~~~ +~~~ +17448563 0 8388860 +~~~ +~~~ +17448564 0 8388856 +~~~ +~~~ +17448566 0 8388848 +~~~ +~~~ +17448568 0 8388832 +~~~ +~~~ +17448570 0 8388800 +~~~ +~~~ +17448572 0 8388736 +~~~ +~~~ +17448573 0 8388608 +~~~ +~~~ +17448575 0 8389120 +17448576 homeCount = 12 +17448577 waitCount = 4 +17448598 ripCount = 6 +17448598 locktype1 = 0 +17448599 locktype2 = 2 +17448599 locktype3 = 1 +17448600 goalCount = 4 +17448600 goalTotal = 4 +17448601 otherCount = 6 +~~~ +17448601 128 8389120 +17448814 128 512 +17448949 DOWN 8 +17448949 0 512 +17448983 128 512 +17449076 DOWN 8 +17449076 0 512 +17449099 128 512 +17449201 DOWN 8 +17449201 0 512 +17449231 128 512 +17449326 DOWN 8 +17449326 0 512 +17449363 128 512 +17449462 DOWN 8 +17449462 0 512 +17449484 128 512 +17454977 DOWN 8 +17454977 0 512 +17461792 UP 10 +17461793 waslock = 0 +17461792 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17461817 512 16777728 +~~~ +17461948 DOWN 10 +17461948 0 16777728 +17461967 0 512 +~~~ +~~~ +17461972 0 2560 +~~~ +~~~ +17461974 0 2048 +17461975 homeCount = 13 +17461975 waitCount = 4 +17461976 ripCount = 6 +17461976 locktype1 = 0 +17461977 locktype2 = 2 +17461977 locktype3 = 1 +17461978 goalCount = 4 +17461978 goalTotal = 4 +17461979 otherCount = 6 +~~~ +17462000 UP 10 +17462000 waslock = 0 +17462000 512 2048 +~~~ +17465243 DOWN 10 +17465243 0 2048 +~~~ +~~~ +~~~ +~~~ +17465265 homeCount = 13 +17465266 waitCount = 4 +17465266 ripCount = 6 +17465267 locktype1 = 0 +17465267 locktype2 = 2 +17465268 locktype3 = 1 +17465268 goalCount = 4 +17465269 goalTotal = 4 +17465269 otherCount = 6 +~~~ +17465307 UP 10 +17465308 waslock = 0 +17465307 512 2048 +17465331 DOWN 10 +17465331 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +17465361 homeCount = 13 +17465362 waitCount = 4 +17465362 ripCount = 6 +17465362 locktype1 = 0 +17465363 locktype2 = 2 +17465363 locktype3 = 1 +17465364 goalCount = 4 +17465364 goalTotal = 4 +17465365 otherCount = 6 +~~~ +17466887 UP 12 +17466887 2048 2048 +17466953 DOWN 12 +17466953 0 2048 +17466965 UP 12 +17466965 2048 2048 +17467866 DOWN 12 +17467866 0 2048 +17467881 UP 12 +17467881 2048 2048 +17468821 DOWN 12 +17468821 0 2048 +17468850 UP 12 +17468850 2048 2048 +17470138 CLICK1 +17470138 CLICK2 +~~~ +~~~ +~~~ +17470157 2048 67110912 +~~~ +17470307 2048 2048 +17478019 DOWN 12 +17478019 0 2048 +~~~ +~~~ +17478045 0 0 +~~~ +~~~ +17478047 0 1 +~~~ +~~~ +17478049 0 3 +~~~ +~~~ +17478051 0 7 +~~~ +~~~ +17478052 0 15 +~~~ +~~~ +17478054 0 31 +~~~ +~~~ +17478056 0 63 +~~~ +~~~ +17478058 0 127 +~~~ +~~~ +17478060 0 255 +17478061 homeCount = 13 +17478061 waitCount = 5 +17478062 ripCount = 6 +17478062 locktype1 = 0 +17478063 locktype2 = 2 +17478084 locktype3 = 1 +17478084 goalCount = 4 +17478085 goalTotal = 4 +17478085 otherCount = 6 +~~~ +17478086 CURRENTGOAL IS [8] +~~~ +17483323 UP 8 +17483323 128 255 +~~~ +~~~ +17483350 outer reward +~~~ +17483351 128 8388863 +~~~ +~~~ +17483557 DOWN 8 +17483557 0 8388863 +~~~ +~~~ +17483578 0 8388862 +~~~ +~~~ +17483580 0 8388860 +~~~ +~~~ +17483582 0 8388856 +~~~ +~~~ +17483584 0 8388848 +~~~ +~~~ +17483585 0 8388832 +~~~ +~~~ +17483587 0 8388800 +~~~ +~~~ +17483589 0 8388736 +~~~ +~~~ +17483591 0 8388608 +~~~ +~~~ +17483593 0 8389120 +17483594 homeCount = 13 +17483594 waitCount = 5 +17483616 ripCount = 6 +17483616 locktype1 = 0 +17483616 locktype2 = 2 +17483617 locktype3 = 1 +17483617 goalCount = 5 +17483618 goalTotal = 5 +17483618 otherCount = 6 +~~~ +17483619 128 8389120 +17483800 128 512 +17483845 DOWN 8 +17483845 0 512 +17483863 128 512 +17483965 DOWN 8 +17483965 0 512 +17483990 128 512 +17484079 DOWN 8 +17484079 0 512 +17484114 128 512 +17484192 DOWN 8 +17484192 0 512 +17484238 128 512 +17484318 DOWN 8 +17484318 0 512 +17484367 128 512 +17484450 DOWN 8 +17484450 0 512 +17484491 128 512 +17486711 DOWN 8 +17486711 0 512 +17486727 128 512 +17489526 DOWN 8 +17489526 0 512 +17489546 128 512 +17489608 DOWN 8 +17489608 0 512 +17493929 UP 10 +17493929 waslock = 0 +17493929 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17493954 512 16777728 +~~~ +17494104 512 512 +17494144 DOWN 10 +17494144 0 512 +17494153 UP 10 +17494153 waslock = 0 +17494153 512 512 +~~~ +~~~ +17494169 512 1536 +~~~ +~~~ +17494171 512 1024 +17494172 homeCount = 14 +17494172 waitCount = 5 +17494173 ripCount = 6 +17494173 locktype1 = 0 +17494174 locktype2 = 2 +17494174 locktype3 = 1 +17494175 goalCount = 5 +17494175 goalTotal = 5 +17494176 otherCount = 6 +~~~ +~~~ +17497685 DOWN 10 +17497685 0 1024 +~~~ +~~~ +~~~ +~~~ +17497711 homeCount = 14 +17497712 waitCount = 5 +17497712 ripCount = 6 +17497713 locktype1 = 0 +17497713 locktype2 = 2 +17497714 locktype3 = 1 +17497714 goalCount = 5 +17497715 goalTotal = 5 +17497715 otherCount = 6 +~~~ +17497748 UP 10 +17497748 waslock = 0 +17497748 512 1024 +17497761 DOWN 10 +17497761 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +17497787 homeCount = 14 +17497788 waitCount = 5 +17497788 ripCount = 6 +17497789 locktype1 = 0 +17497789 locktype2 = 2 +17497790 locktype3 = 1 +17497790 goalCount = 5 +17497790 goalTotal = 5 +17497791 otherCount = 6 +~~~ +17499720 UP 11 +17499720 1024 1024 +17501721 BEEP1 +17501721 BEEP2 +~~~ +~~~ +~~~ +17501741 1024 33555456 +~~~ +17501890 1024 1024 +17506486 DOWN 11 +17506486 0 1024 +17506499 UP 11 +17506499 1024 1024 +~~~ +~~~ +17506521 1024 0 +~~~ +~~~ +17506523 1024 1 +~~~ +~~~ +17506525 1024 3 +~~~ +~~~ +17506527 1024 7 +~~~ +~~~ +17506529 1024 15 +~~~ +~~~ +17506530 1024 31 +~~~ +~~~ +17506532 1024 63 +~~~ +~~~ +17506534 1024 127 +~~~ +~~~ +17506536 1024 255 +17506537 homeCount = 14 +17506537 waitCount = 5 +17506538 ripCount = 7 +17506559 locktype1 = 0 +17506560 locktype2 = 2 +17506560 locktype3 = 1 +17506561 goalCount = 5 +17506561 goalTotal = 5 +17506561 otherCount = 6 +~~~ +17506563 CURRENTGOAL IS [8] +~~~ +17506564 DOWN 11 +17506564 0 255 +17506596 UP 11 +17506596 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17506617 homeCount = 14 +17506617 waitCount = 5 +17506618 ripCount = 7 +17506618 locktype1 = 0 +17506619 locktype2 = 2 +17506619 locktype3 = 1 +17506620 goalCount = 5 +17506620 goalTotal = 5 +17506621 otherCount = 6 +~~~ +17506622 CURRENTGOAL IS [8] +~~~ +17509072 DOWN 11 +17509072 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17509109 homeCount = 14 +17509110 waitCount = 5 +17509110 ripCount = 7 +17509111 locktype1 = 0 +17509111 locktype2 = 2 +17509112 locktype3 = 1 +17509112 goalCount = 5 +17509113 goalTotal = 5 +17509113 otherCount = 6 +~~~ +17509114 CURRENTGOAL IS [8] +~~~ +17512927 UP 8 +17512927 128 255 +~~~ +~~~ +17512955 outer reward +~~~ +17512955 128 8388863 +~~~ +~~~ +17513181 DOWN 8 +17513181 0 8388863 +~~~ +~~~ +17513203 0 8388862 +~~~ +~~~ +17513205 0 8388860 +~~~ +~~~ +17513207 0 8388856 +~~~ +~~~ +17513209 0 8388848 +~~~ +~~~ +17513211 0 8388832 +~~~ +~~~ +17513213 0 8388800 +~~~ +~~~ +17513214 0 8388736 +~~~ +~~~ +17513216 0 8388608 +~~~ +~~~ +17513218 0 8389120 +17513219 homeCount = 14 +17513220 waitCount = 5 +17513240 ripCount = 7 +17513241 locktype1 = 0 +17513241 locktype2 = 2 +17513242 locktype3 = 1 +17513242 goalCount = 6 +17513243 goalTotal = 6 +17513243 otherCount = 6 +~~~ +17513244 128 8389120 +17513405 128 512 +17513479 DOWN 8 +17513479 0 512 +17513494 128 512 +17513590 DOWN 8 +17513590 0 512 +17513629 128 512 +17513711 DOWN 8 +17513711 0 512 +17513756 128 512 +17513838 DOWN 8 +17513838 0 512 +17513885 128 512 +17513986 DOWN 8 +17513986 0 512 +17514007 128 512 +17514134 DOWN 8 +17514134 0 512 +17514141 128 512 +17514281 DOWN 8 +17514281 0 512 +17514290 128 512 +17514893 DOWN 8 +17514893 0 512 +17514904 128 512 +17518932 DOWN 8 +17518932 0 512 +17518938 128 512 +17519269 DOWN 8 +17519269 0 512 +17519335 128 512 +17519347 DOWN 8 +17519347 0 512 +17524157 UP 10 +17524157 waslock = 0 +17524157 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17524183 512 16777728 +~~~ +17524333 512 512 +17529362 DOWN 10 +17529362 0 512 +~~~ +~~~ +17529386 0 2560 +~~~ +~~~ +17529388 0 2048 +17529389 homeCount = 15 +17529390 waitCount = 5 +17529390 ripCount = 7 +17529391 locktype1 = 0 +17529391 locktype2 = 2 +17529392 locktype3 = 1 +17529392 goalCount = 6 +17529393 goalTotal = 6 +17529393 otherCount = 6 +~~~ +17530797 UP 12 +17530797 2048 2048 +17532183 DOWN 12 +17532183 0 2048 +17532260 UP 12 +17532260 2048 2048 +17533139 DOWN 12 +17533139 0 2048 +17533154 UP 12 +17533154 2048 2048 +17533246 DOWN 12 +17533246 0 2048 +17533274 UP 12 +17533274 2048 2048 +17534047 CLICK1 +17534047 CLICK2 +~~~ +~~~ +~~~ +17534071 2048 67110912 +~~~ +17534221 2048 2048 +17540436 DOWN 12 +17540436 0 2048 +~~~ +~~~ +17540456 0 0 +~~~ +~~~ +17540458 0 1 +~~~ +~~~ +17540460 UP 12 +17540460 2048 3 +~~~ +~~~ +17540462 2048 7 +~~~ +~~~ +17540463 2048 15 +~~~ +~~~ +17540465 2048 31 +~~~ +~~~ +17540467 2048 63 +~~~ +~~~ +17540469 2048 127 +~~~ +~~~ +17540471 2048 255 +17540472 homeCount = 15 +17540472 waitCount = 6 +17540494 ripCount = 7 +17540494 locktype1 = 0 +17540494 locktype2 = 2 +17540495 locktype3 = 1 +17540495 goalCount = 6 +17540496 goalTotal = 6 +17540496 otherCount = 6 +~~~ +17540497 CURRENTGOAL IS [8] +~~~ +17541587 DOWN 12 +17541587 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17541625 homeCount = 15 +17541625 waitCount = 6 +17541626 ripCount = 7 +17541626 locktype1 = 0 +17541627 locktype2 = 2 +17541627 locktype3 = 1 +17541628 goalCount = 6 +17541628 goalTotal = 6 +17541629 otherCount = 6 +~~~ +17541630 CURRENTGOAL IS [8] +~~~ +17541658 UP 12 +17541658 2048 255 +17541921 DOWN 12 +17541921 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17541955 homeCount = 15 +17541956 waitCount = 6 +17541956 ripCount = 7 +17541957 locktype1 = 0 +17541957 locktype2 = 2 +17541958 locktype3 = 1 +17541958 goalCount = 6 +17541959 goalTotal = 6 +17541959 otherCount = 6 +~~~ +17541960 CURRENTGOAL IS [8] +~~~ +17545684 UP 8 +17545684 128 255 +~~~ +~~~ +17545712 outer reward +~~~ +17545712 128 8388863 +~~~ +~~~ +17545903 DOWN 8 +17545903 0 8388863 +~~~ +~~~ +17545920 0 8388862 +~~~ +~~~ +17545921 0 8388860 +~~~ +~~~ +17545923 0 8388856 +~~~ +~~~ +17545925 0 8388848 +~~~ +~~~ +17545927 0 8388832 +~~~ +~~~ +17545929 0 8388800 +~~~ +~~~ +17545930 0 8388736 +~~~ +~~~ +17545932 0 8388608 +~~~ +~~~ +17545934 0 8389120 +17545935 homeCount = 15 +17545936 waitCount = 6 +17545957 ripCount = 7 +17545957 locktype1 = 0 +17545958 locktype2 = 2 +17545958 locktype3 = 1 +17545959 goalCount = 7 +17545959 goalTotal = 7 +17545960 otherCount = 6 +~~~ +17545973 128 8389120 +17546162 128 512 +17546357 DOWN 8 +17546357 0 512 +17546382 128 512 +17546476 DOWN 8 +17546476 0 512 +17546510 128 512 +17546604 DOWN 8 +17546604 0 512 +17546636 128 512 +17546732 DOWN 8 +17546732 0 512 +17546771 128 512 +17546862 DOWN 8 +17546862 0 512 +17546900 128 512 +17547009 DOWN 8 +17547009 0 512 +17547028 128 512 +17549002 DOWN 8 +17549002 0 512 +17549012 128 512 +17551604 DOWN 8 +17551604 0 512 +17551642 128 512 +17551692 DOWN 8 +17551692 0 512 +17555613 UP 10 +17555614 waslock = 0 +17555613 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17555639 512 16777728 +~~~ +17555789 512 512 +17555789 DOWN 10 +17555789 0 512 +~~~ +~~~ +17555815 0 2560 +~~~ +~~~ +17555817 0 2048 +17555818 homeCount = 16 +17555819 waitCount = 6 +17555819 ripCount = 7 +17555820 locktype1 = 0 +17555820 locktype2 = 2 +17555821 locktype3 = 1 +17555821 goalCount = 7 +17555822 goalTotal = 7 +17555822 otherCount = 6 +~~~ +17555873 UP 10 +17555874 waslock = 0 +17555873 512 2048 +~~~ +17560044 DOWN 10 +17560044 0 2048 +~~~ +~~~ +~~~ +~~~ +17560066 homeCount = 16 +17560066 waitCount = 6 +17560067 ripCount = 7 +17560067 locktype1 = 0 +17560068 locktype2 = 2 +17560068 locktype3 = 1 +17560069 goalCount = 7 +17560069 goalTotal = 7 +17560070 otherCount = 6 +~~~ +17561628 UP 12 +17561628 2048 2048 +17563348 DOWN 12 +17563348 0 2048 +17563378 UP 12 +17563378 2048 2048 +17563628 CLICK1 +17563628 CLICK2 +~~~ +~~~ +~~~ +17563654 2048 67110912 +~~~ +17563804 2048 2048 +17569146 DOWN 12 +17569146 0 2048 +~~~ +~~~ +17569173 0 0 +~~~ +~~~ +17569175 0 1 +~~~ +~~~ +17569177 0 3 +~~~ +~~~ +17569179 0 7 +~~~ +~~~ +17569180 0 15 +~~~ +~~~ +17569182 0 31 +~~~ +~~~ +17569184 0 63 +~~~ +~~~ +17569186 0 127 +~~~ +17569187 UP 12 +17569187 2048 127 +~~~ +17569189 homeCount = 16 +17569189 waitCount = 7 +17569190 ripCount = 7 +17569190 locktype1 = 0 +17569211 locktype2 = 2 +17569212 locktype3 = 1 +17569212 goalCount = 7 +17569212 goalTotal = 7 +17569213 otherCount = 6 +~~~ +17569214 CURRENTGOAL IS [8] +~~~ +17569214 DOWN 12 +17569214 0 255 +17569225 UP 12 +17569225 2048 255 +17569227 DOWN 12 +17569226 0 255 +17569253 UP 12 +17569253 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17569271 homeCount = 16 +17569271 waitCount = 7 +17569272 ripCount = 7 +17569272 locktype1 = 0 +17569273 locktype2 = 2 +17569273 locktype3 = 1 +17569274 goalCount = 7 +17569274 goalTotal = 7 +17569275 otherCount = 6 +~~~ +17569276 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17569304 homeCount = 16 +17569304 waitCount = 7 +17569305 ripCount = 7 +17569305 locktype1 = 0 +17569306 locktype2 = 2 +17569306 locktype3 = 1 +17569307 goalCount = 7 +17569328 goalTotal = 7 +17569328 otherCount = 6 +~~~ +17569329 CURRENTGOAL IS [8] +~~~ +17570621 DOWN 12 +17570621 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17570647 UP 12 +17570647 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17570656 homeCount = 16 +17570656 waitCount = 7 +17570657 ripCount = 7 +17570657 locktype1 = 0 +17570658 locktype2 = 2 +17570658 locktype3 = 1 +17570659 goalCount = 7 +17570659 goalTotal = 7 +17570660 otherCount = 6 +~~~ +17570661 CURRENTGOAL IS [8] +~~~ +17572075 DOWN 12 +17572075 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17572108 homeCount = 16 +17572109 waitCount = 7 +17572109 ripCount = 7 +17572110 locktype1 = 0 +17572110 locktype2 = 2 +17572111 locktype3 = 1 +17572111 goalCount = 7 +17572112 goalTotal = 7 +17572112 otherCount = 6 +~~~ +17572113 CURRENTGOAL IS [8] +~~~ +17576141 UP 8 +17576141 128 255 +~~~ +~~~ +17576167 outer reward +~~~ +17576167 128 8388863 +~~~ +~~~ +17576274 DOWN 8 +17576274 0 8388863 +~~~ +~~~ +17576295 0 8388862 +~~~ +~~~ +17576297 0 8388860 +~~~ +~~~ +17576299 0 8388856 +~~~ +~~~ +17576301 0 8388848 +~~~ +~~~ +17576303 0 8388832 +~~~ +~~~ +17576304 0 8388800 +~~~ +~~~ +17576306 0 8388736 +~~~ +~~~ +17576308 0 8388608 +~~~ +~~~ +17576310 0 8389120 +17576311 homeCount = 16 +17576311 waitCount = 7 +17576333 ripCount = 7 +17576333 locktype1 = 0 +17576334 locktype2 = 2 +17576334 locktype3 = 1 +17576335 goalCount = 8 +17576335 goalTotal = 8 +17576336 otherCount = 6 +~~~ +17576336 128 8389120 +17576457 DOWN 8 +17576457 0 8389120 +17576472 128 8389120 +17576617 128 512 +17576727 DOWN 8 +17576727 0 512 +17576733 128 512 +17576842 DOWN 8 +17576842 0 512 +17576862 128 512 +17576969 DOWN 8 +17576969 0 512 +17576981 128 512 +17577099 DOWN 8 +17577099 0 512 +17577112 128 512 +17577236 DOWN 8 +17577236 0 512 +17577241 128 512 +17582498 DOWN 8 +17582498 0 512 +17586638 UP 10 +17586638 waslock = 0 +17586638 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17586667 512 16777728 +~~~ +17586817 512 512 +17586841 DOWN 10 +17586841 0 512 +~~~ +~~~ +17586860 0 1536 +~~~ +~~~ +17586862 0 1024 +17586863 homeCount = 17 +17586863 waitCount = 7 +17586864 ripCount = 7 +17586864 locktype1 = 0 +17586865 locktype2 = 2 +17586865 locktype3 = 1 +17586866 goalCount = 8 +17586866 goalTotal = 8 +17586867 otherCount = 6 +~~~ +17586888 UP 10 +17586888 waslock = 0 +17586888 512 1024 +~~~ +17591203 DOWN 10 +17591203 0 1024 +~~~ +~~~ +~~~ +~~~ +17591232 homeCount = 17 +17591233 waitCount = 7 +17591233 ripCount = 7 +17591234 locktype1 = 0 +17591234 locktype2 = 2 +17591235 locktype3 = 1 +17591235 goalCount = 8 +17591236 goalTotal = 8 +17591236 otherCount = 6 +~~~ +17591254 UP 10 +17591255 waslock = 0 +17591254 512 1024 +~~~ +17591283 DOWN 10 +17591283 0 1024 +~~~ +~~~ +~~~ +~~~ +17591304 homeCount = 17 +17591305 waitCount = 7 +17591305 ripCount = 7 +17591306 locktype1 = 0 +17591306 locktype2 = 2 +17591307 locktype3 = 1 +17591307 goalCount = 8 +17591308 goalTotal = 8 +17591308 otherCount = 6 +~~~ +17593343 UP 11 +17593343 1024 1024 +17594782 DOWN 11 +17594782 0 1024 +17594806 UP 11 +17594806 1024 1024 +17596343 BEEP1 +17596343 BEEP2 +~~~ +~~~ +~~~ +17596371 1024 33555456 +~~~ +17596521 1024 1024 +17602296 DOWN 11 +17602296 0 1024 +~~~ +~~~ +17602317 0 0 +~~~ +~~~ +17602319 0 1 +~~~ +~~~ +17602321 0 3 +~~~ +~~~ +17602323 0 7 +~~~ +~~~ +17602324 0 15 +~~~ +~~~ +17602326 0 31 +~~~ +~~~ +17602328 0 63 +~~~ +~~~ +17602330 0 127 +~~~ +17602331 UP 11 +17602331 1024 127 +~~~ +17602333 homeCount = 17 +17602333 waitCount = 7 +17602334 ripCount = 8 +17602334 locktype1 = 0 +17602355 locktype2 = 2 +17602356 locktype3 = 1 +17602356 goalCount = 8 +17602357 goalTotal = 8 +17602357 otherCount = 6 +~~~ +17602358 CURRENTGOAL IS [8] +~~~ +17602358 1024 255 +17602389 DOWN 11 +17602389 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17602424 homeCount = 17 +17602424 waitCount = 7 +17602425 ripCount = 8 +17602425 locktype1 = 0 +17602426 locktype2 = 2 +17602426 locktype3 = 1 +17602427 goalCount = 8 +17602427 goalTotal = 8 +17602428 otherCount = 6 +~~~ +17602429 CURRENTGOAL IS [8] +~~~ +17605378 UP 8 +17605378 128 255 +~~~ +~~~ +17605400 outer reward +~~~ +17605401 128 8388863 +~~~ +~~~ +17605620 DOWN 8 +17605620 0 8388863 +~~~ +~~~ +17605639 0 8388862 +~~~ +~~~ +17605641 0 8388860 +~~~ +~~~ +17605643 0 8388856 +~~~ +~~~ +17605644 0 8388848 +~~~ +~~~ +17605646 0 8388832 +~~~ +~~~ +17605648 0 8388800 +~~~ +~~~ +17605650 0 8388736 +~~~ +~~~ +17605652 0 8388608 +~~~ +~~~ +17605654 0 8389120 +17605655 homeCount = 17 +17605655 waitCount = 7 +17605676 ripCount = 8 +17605677 locktype1 = 0 +17605677 locktype2 = 2 +17605678 locktype3 = 1 +17605678 goalCount = 9 +17605679 goalTotal = 9 +17605679 otherCount = 6 +~~~ +17605680 128 8389120 +17605850 128 512 +17606053 DOWN 8 +17606053 0 512 +17606073 128 512 +17606178 DOWN 8 +17606178 0 512 +17606191 128 512 +17606307 DOWN 8 +17606307 0 512 +17606321 128 512 +17606437 DOWN 8 +17606437 0 512 +17606454 128 512 +17606881 DOWN 8 +17606881 0 512 +17606887 128 512 +17611622 DOWN 8 +17611622 0 512 +17611648 128 512 +17611713 DOWN 8 +17611713 0 512 +17616088 UP 10 +17616088 waslock = 0 +17616088 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17616116 512 16777728 +~~~ +17616256 DOWN 10 +17616256 0 16777728 +17616266 0 512 +~~~ +~~~ +17616281 0 1536 +~~~ +~~~ +17616283 0 1024 +17616284 homeCount = 18 +17616285 waitCount = 7 +17616285 ripCount = 8 +17616286 locktype1 = 0 +17616286 locktype2 = 2 +17616286 locktype3 = 1 +17616287 goalCount = 9 +17616287 goalTotal = 9 +17616288 otherCount = 6 +~~~ +17616317 UP 10 +17616318 waslock = 0 +17616317 512 1024 +~~~ +17619930 DOWN 10 +17619930 0 1024 +~~~ +~~~ +~~~ +~~~ +17619958 homeCount = 18 +17619958 waitCount = 7 +17619959 ripCount = 8 +17619959 locktype1 = 0 +17619960 locktype2 = 2 +17619960 locktype3 = 1 +17619961 goalCount = 9 +17619961 goalTotal = 9 +17619962 otherCount = 6 +~~~ +17619966 UP 10 +17619966 waslock = 0 +17619966 512 1024 +~~~ +17620023 DOWN 10 +17620022 0 1024 +~~~ +~~~ +~~~ +~~~ +17620051 homeCount = 18 +17620051 waitCount = 7 +17620052 ripCount = 8 +17620052 locktype1 = 0 +17620053 locktype2 = 2 +17620053 locktype3 = 1 +17620054 goalCount = 9 +17620054 goalTotal = 9 +17620055 otherCount = 6 +~~~ +17622132 UP 11 +17622132 1024 1024 +17623222 DOWN 11 +17623222 0 1024 +17623251 UP 11 +17623251 1024 1024 +17624459 DOWN 11 +17624459 0 1024 +17624483 UP 11 +17624483 1024 1024 +17624883 BEEP1 +17624883 BEEP2 +~~~ +~~~ +~~~ +17624910 1024 33555456 +~~~ +17625060 1024 1024 +17629415 DOWN 11 +17629415 0 1024 +~~~ +~~~ +17629435 0 0 +~~~ +~~~ +17629437 0 1 +~~~ +~~~ +17629439 0 3 +~~~ +~~~ +17629440 0 7 +~~~ +~~~ +17629442 0 15 +~~~ +~~~ +17629444 UP 11 +17629444 1024 31 +~~~ +~~~ +17629446 1024 63 +~~~ +~~~ +17629448 1024 127 +~~~ +~~~ +17629450 1024 255 +17629451 homeCount = 18 +17629451 waitCount = 7 +17629452 ripCount = 9 +17629473 locktype1 = 0 +17629473 locktype2 = 2 +17629474 locktype3 = 1 +17629474 goalCount = 9 +17629475 goalTotal = 9 +17629475 otherCount = 6 +~~~ +17629476 CURRENTGOAL IS [8] +~~~ +17629477 DOWN 11 +17629477 0 255 +17629481 UP 11 +17629481 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17629533 homeCount = 18 +17629533 waitCount = 7 +17629534 ripCount = 9 +17629534 locktype1 = 0 +17629535 locktype2 = 2 +17629535 locktype3 = 1 +17629536 goalCount = 9 +17629536 goalTotal = 9 +17629537 otherCount = 6 +~~~ +17629538 CURRENTGOAL IS [8] +~~~ +17631515 DOWN 11 +17631515 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17631553 homeCount = 18 +17631553 waitCount = 7 +17631554 ripCount = 9 +17631554 locktype1 = 0 +17631555 locktype2 = 2 +17631556 locktype3 = 1 +17631556 goalCount = 9 +17631556 goalTotal = 9 +17631557 otherCount = 6 +~~~ +17631558 CURRENTGOAL IS [8] +~~~ +17634612 UP 8 +17634612 128 255 +~~~ +~~~ +17634638 outer reward +~~~ +17634638 128 8388863 +~~~ +~~~ +17634643 outerreps = 8 +~~~ +~~~ +17634881 DOWN 8 +17634881 0 8388863 +~~~ +~~~ +17634905 0 8388862 +~~~ +~~~ +17634907 0 8388860 +~~~ +~~~ +17634909 0 8388856 +~~~ +~~~ +17634911 0 8388848 +~~~ +~~~ +17634913 0 8388832 +~~~ +~~~ +17634914 0 8388800 +~~~ +~~~ +17634916 0 8388736 +~~~ +~~~ +17634918 0 8388608 +~~~ +~~~ +17634920 0 8389120 +17634921 homeCount = 18 +17634922 waitCount = 7 +17634942 ripCount = 9 +17634943 locktype1 = 0 +17634943 locktype2 = 2 +17634944 locktype3 = 1 +17634944 goalCount = 0 +17634945 goalTotal = 10 +17634945 otherCount = 6 +~~~ +17634946 128 8389120 +17635088 128 512 +17635186 DOWN 8 +17635186 0 512 +17635204 128 512 +17635303 DOWN 8 +17635303 0 512 +17635337 128 512 +17635422 DOWN 8 +17635422 0 512 +17635469 128 512 +17635548 DOWN 8 +17635548 0 512 +17635588 128 512 +17635675 DOWN 8 +17635675 0 512 +17635720 128 512 +17635815 DOWN 8 +17635815 0 512 +17635847 128 512 +17635966 DOWN 8 +17635966 0 512 +17635980 128 512 +17641244 DOWN 8 +17641243 0 512 +17646112 UP 10 +17646112 waslock = 0 +17646112 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17646140 512 16777728 +~~~ +17646290 512 512 +17646421 DOWN 10 +17646421 0 512 +~~~ +~~~ +17646445 0 2560 +~~~ +~~~ +17646447 0 2048 +17646448 homeCount = 19 +17646449 waitCount = 7 +17646449 ripCount = 9 +17646450 locktype1 = 0 +17646450 locktype2 = 2 +17646451 locktype3 = 1 +17646451 goalCount = 0 +17646452 goalTotal = 10 +17646452 otherCount = 6 +~~~ +17646474 UP 10 +17646474 waslock = 0 +17646474 512 2048 +~~~ +17650594 DOWN 10 +17650594 0 2048 +~~~ +~~~ +~~~ +~~~ +17650618 homeCount = 19 +17650619 waitCount = 7 +17650619 ripCount = 9 +17650620 locktype1 = 0 +17650620 locktype2 = 2 +17650621 locktype3 = 1 +17650621 goalCount = 0 +17650621 goalTotal = 10 +17650622 otherCount = 6 +~~~ +17650651 UP 10 +17650651 waslock = 0 +17650651 512 2048 +~~~ +17650683 DOWN 10 +17650683 0 2048 +~~~ +~~~ +~~~ +~~~ +17650701 homeCount = 19 +17650702 waitCount = 7 +17650702 ripCount = 9 +17650703 locktype1 = 0 +17650703 locktype2 = 2 +17650704 locktype3 = 1 +17650704 goalCount = 0 +17650705 goalTotal = 10 +17650705 otherCount = 6 +~~~ +17652063 UP 12 +17652063 2048 2048 +17654813 CLICK1 +17654813 CLICK2 +~~~ +~~~ +~~~ +17654838 2048 67110912 +~~~ +17654988 2048 2048 +17661976 DOWN 12 +17661976 0 2048 +~~~ +~~~ +17661996 0 0 +~~~ +~~~ +17661998 0 1 +~~~ +~~~ +17662000 0 3 +~~~ +~~~ +17662002 0 7 +~~~ +~~~ +17662004 0 15 +~~~ +~~~ +17662005 0 31 +~~~ +~~~ +17662007 0 63 +~~~ +~~~ +17662009 0 127 +~~~ +~~~ +17662011 0 255 +17662012 homeCount = 19 +17662012 waitCount = 8 +17662013 ripCount = 9 +17662014 locktype1 = 0 +17662014 locktype2 = 2 +17662035 locktype3 = 1 +17662035 goalCount = 0 +17662036 goalTotal = 10 +17662036 otherCount = 6 +~~~ +17662037 CURRENTGOAL IS [2] +~~~ +17662039 UP 12 +17662039 2048 255 +17662076 DOWN 12 +17662076 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17662113 homeCount = 19 +17662113 waitCount = 8 +17662114 ripCount = 9 +17662114 locktype1 = 0 +17662115 locktype2 = 2 +17662115 locktype3 = 1 +17662116 goalCount = 0 +17662116 goalTotal = 10 +17662117 otherCount = 6 +~~~ +17662118 CURRENTGOAL IS [2] +~~~ +17666107 UP 8 +17666107 128 255 +~~~ +~~~ +17666295 DOWN 8 +17666295 0 255 +~~~ +~~~ +17666317 0 254 +~~~ +~~~ +17666319 0 252 +~~~ +~~~ +17666321 0 248 +~~~ +~~~ +17666323 0 240 +~~~ +~~~ +17666324 0 224 +~~~ +~~~ +17666326 0 192 +~~~ +~~~ +17666328 0 128 +~~~ +~~~ +17666330 0 0 +~~~ +~~~ +17666332 0 512 +17666333 homeCount = 19 +17666333 waitCount = 8 +17666334 ripCount = 9 +17666334 locktype1 = 0 +17666355 locktype2 = 2 +17666356 locktype3 = 1 +17666356 goalCount = 0 +17666357 goalTotal = 10 +17666357 otherCount = 7 +~~~ +17666359 128 512 +17666796 DOWN 8 +17666796 0 512 +17671204 UP 10 +17671204 waslock = 0 +17671204 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17671234 512 16777728 +~~~ +17671353 DOWN 10 +17671353 0 16777728 +~~~ +~~~ +17671381 0 16779776 +~~~ +~~~ +17671382 0 16779264 +17671383 homeCount = 20 +17671384 waitCount = 8 +17671384 ripCount = 9 +17671385 locktype1 = 0 +17671385 locktype2 = 2 +17671386 locktype3 = 1 +17671386 goalCount = 0 +17671387 goalTotal = 10 +17671387 otherCount = 7 +~~~ +17671408 0 2048 +17671450 UP 10 +17671450 waslock = 0 +17671450 512 2048 +~~~ +17674585 DOWN 10 +17674585 0 2048 +~~~ +~~~ +~~~ +~~~ +17674611 homeCount = 20 +17674611 waitCount = 8 +17674612 ripCount = 9 +17674612 locktype1 = 0 +17674613 locktype2 = 2 +17674613 locktype3 = 1 +17674614 goalCount = 0 +17674614 goalTotal = 10 +17674615 otherCount = 7 +~~~ +17676314 UP 12 +17676314 2048 2048 +17676340 DOWN 12 +17676340 0 2048 +17676358 UP 12 +17676358 2048 2048 +17678656 DOWN 12 +17678656 0 2048 +17678662 UP 12 +17678662 2048 2048 +17681064 CLICK1 +17681064 CLICK2 +~~~ +~~~ +~~~ +17681098 2048 67110912 +~~~ +17681199 DOWN 12 +17681199 0 67110912 +17681207 UP 12 +17681207 2048 67110912 +17681248 2048 2048 +~~~ +~~~ +17681272 2048 0 +~~~ +~~~ +17681273 2048 1 +~~~ +~~~ +17681275 2048 3 +~~~ +~~~ +17681277 2048 7 +~~~ +~~~ +17681279 2048 15 +~~~ +~~~ +17681281 2048 31 +~~~ +~~~ +17681282 2048 63 +~~~ +~~~ +17681284 2048 127 +~~~ +~~~ +17681286 2048 255 +17681287 homeCount = 20 +17681288 waitCount = 9 +17681288 ripCount = 9 +17681309 locktype1 = 0 +17681309 locktype2 = 2 +17681310 locktype3 = 1 +17681310 goalCount = 0 +17681311 goalTotal = 10 +17681311 otherCount = 7 +~~~ +17681313 CURRENTGOAL IS [2] +~~~ +17687455 DOWN 12 +17687455 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17687496 homeCount = 20 +17687497 waitCount = 9 +17687497 ripCount = 9 +17687498 locktype1 = 0 +17687498 locktype2 = 2 +17687499 locktype3 = 1 +17687499 goalCount = 0 +17687500 goalTotal = 10 +17687500 otherCount = 7 +~~~ +17687501 CURRENTGOAL IS [2] +~~~ +17693473 UP 2 +17693473 2 255 +~~~ +~~~ +17693497 outer reward +~~~ +17693498 2 131327 +~~~ +~~~ +17693506 DOWN 2 +17693506 0 131327 +~~~ +~~~ +17693527 0 131326 +~~~ +~~~ +17693529 0 131324 +~~~ +~~~ +17693531 0 131320 +~~~ +~~~ +17693532 0 131312 +~~~ +~~~ +17693534 0 131296 +~~~ +~~~ +17693536 0 131264 +~~~ +~~~ +17693538 0 131200 +~~~ +~~~ +17693540 0 131072 +~~~ +~~~ +17693542 0 131584 +17693543 homeCount = 20 +17693543 waitCount = 9 +17693544 ripCount = 9 +17693565 locktype1 = 0 +17693565 locktype2 = 2 +17693566 locktype3 = 1 +17693566 goalCount = 1 +17693567 goalTotal = 11 +17693567 otherCount = 7 +~~~ +17693568 2 131584 +17693947 2 512 +17699688 DOWN 2 +17699687 0 512 +17699753 2 512 +17699799 DOWN 2 +17699799 0 512 +17705120 UP 10 +17705121 waslock = 0 +17705120 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17705153 512 16777728 +~~~ +17705303 512 512 +17708019 DOWN 10 +17708019 0 512 +~~~ +~~~ +17708036 0 2560 +~~~ +~~~ +17708038 0 2048 +17708039 homeCount = 21 +17708039 waitCount = 9 +17708040 ripCount = 9 +17708040 locktype1 = 0 +17708041 locktype2 = 2 +17708041 locktype3 = 1 +17708042 goalCount = 1 +17708042 goalTotal = 11 +17708043 otherCount = 7 +~~~ +17708064 UP 10 +17708064 waslock = 0 +17708064 512 2048 +~~~ +17708128 DOWN 10 +17708128 0 2048 +~~~ +~~~ +~~~ +~~~ +17708149 homeCount = 21 +17708150 waitCount = 9 +17708150 ripCount = 9 +17708151 locktype1 = 0 +17708151 locktype2 = 2 +17708152 locktype3 = 1 +17708152 goalCount = 1 +17708153 goalTotal = 11 +17708153 otherCount = 7 +~~~ +17710005 UP 12 +17710005 2048 2048 +17710933 DOWN 12 +17710933 0 2048 +17710973 UP 12 +17710973 2048 2048 +17711488 DOWN 12 +17711488 0 2048 +17711505 UP 12 +17711505 2048 2048 +17713006 CLICK1 +17713006 CLICK2 +~~~ +~~~ +~~~ +17713029 2048 67110912 +~~~ +17713179 2048 2048 +17718698 DOWN 12 +17718698 0 2048 +17718711 UP 12 +17718711 2048 2048 +~~~ +~~~ +17718718 2048 0 +~~~ +~~~ +17718719 2048 1 +~~~ +~~~ +17718721 2048 3 +~~~ +~~~ +17718723 2048 7 +~~~ +~~~ +17718725 2048 15 +~~~ +~~~ +17718727 2048 31 +~~~ +~~~ +17718728 2048 63 +~~~ +~~~ +17718730 2048 127 +~~~ +~~~ +17718732 2048 255 +17718733 homeCount = 21 +17718734 waitCount = 10 +17718734 ripCount = 9 +17718755 locktype1 = 0 +17718756 locktype2 = 2 +17718756 locktype3 = 1 +17718757 goalCount = 1 +17718757 goalTotal = 11 +17718758 otherCount = 7 +~~~ +17718759 CURRENTGOAL IS [2] +~~~ +17718770 DOWN 12 +17718770 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17718805 homeCount = 21 +17718805 waitCount = 10 +17718806 ripCount = 9 +17718806 locktype1 = 0 +17718807 locktype2 = 2 +17718807 locktype3 = 1 +17718808 goalCount = 1 +17718808 goalTotal = 11 +17718809 otherCount = 7 +~~~ +17718810 CURRENTGOAL IS [2] +~~~ +17718839 UP 12 +17718839 2048 255 +17719213 DOWN 12 +17719213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17719257 homeCount = 21 +17719258 waitCount = 10 +17719258 ripCount = 9 +17719259 locktype1 = 0 +17719259 locktype2 = 2 +17719260 locktype3 = 1 +17719260 goalCount = 1 +17719261 goalTotal = 11 +17719261 otherCount = 7 +~~~ +17719262 CURRENTGOAL IS [2] +~~~ +17719283 UP 12 +17719283 2048 255 +17719362 DOWN 12 +17719362 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17719398 homeCount = 21 +17719399 waitCount = 10 +17719399 ripCount = 9 +17719400 locktype1 = 0 +17719400 locktype2 = 2 +17719401 locktype3 = 1 +17719401 goalCount = 1 +17719402 goalTotal = 11 +17719402 otherCount = 7 +~~~ +17719403 CURRENTGOAL IS [2] +~~~ +17726146 UP 8 +17726146 128 255 +~~~ +~~~ +17726549 DOWN 8 +17726549 0 255 +~~~ +~~~ +17726574 0 254 +~~~ +~~~ +17726576 0 252 +~~~ +~~~ +17726578 0 248 +~~~ +~~~ +17726580 0 240 +~~~ +~~~ +17726582 0 224 +~~~ +~~~ +17726584 0 192 +~~~ +~~~ +17726585 0 128 +~~~ +~~~ +17726587 0 0 +~~~ +~~~ +17726589 0 512 +17726590 homeCount = 21 +17726591 waitCount = 10 +17726591 ripCount = 9 +17726592 locktype1 = 0 +17726592 locktype2 = 2 +17726613 locktype3 = 1 +17726614 goalCount = 1 +17726614 goalTotal = 11 +17726615 otherCount = 8 +~~~ +17729916 UP 10 +17729917 waslock = 0 +17729916 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17729943 512 16777728 +~~~ +17730093 512 512 +17733254 DOWN 10 +17733254 0 512 +~~~ +~~~ +17733279 0 1536 +~~~ +~~~ +17733281 0 1024 +17733282 homeCount = 22 +17733282 waitCount = 10 +17733283 ripCount = 9 +17733283 locktype1 = 0 +17733284 locktype2 = 2 +17733284 locktype3 = 1 +17733284 goalCount = 1 +17733285 goalTotal = 11 +17733285 otherCount = 8 +~~~ +17733307 UP 10 +17733307 waslock = 0 +17733307 512 1024 +~~~ +17733339 DOWN 10 +17733339 0 1024 +~~~ +~~~ +~~~ +~~~ +17733373 homeCount = 22 +17733373 waitCount = 10 +17733374 ripCount = 9 +17733374 locktype1 = 0 +17733375 locktype2 = 2 +17733375 locktype3 = 1 +17733376 goalCount = 1 +17733376 goalTotal = 11 +17733377 otherCount = 8 +~~~ +17735628 UP 11 +17735628 1024 1024 +17736890 DOWN 11 +17736890 0 1024 +17736924 UP 11 +17736924 1024 1024 +17736932 DOWN 11 +17736931 0 1024 +17736962 UP 11 +17736962 1024 1024 +17739879 BEEP1 +17739879 BEEP2 +~~~ +~~~ +~~~ +17739899 1024 33555456 +~~~ +17740049 1024 1024 +17746662 DOWN 11 +17746662 0 1024 +~~~ +~~~ +17746687 0 0 +~~~ +~~~ +17746689 0 1 +~~~ +~~~ +17746691 0 3 +~~~ +~~~ +17746692 0 7 +~~~ +~~~ +17746694 0 15 +~~~ +~~~ +17746696 0 31 +~~~ +~~~ +17746698 0 63 +~~~ +~~~ +17746700 0 127 +~~~ +~~~ +17746701 0 255 +17746703 homeCount = 22 +17746703 waitCount = 10 +17746704 ripCount = 10 +17746704 locktype1 = 0 +17746705 locktype2 = 2 +17746726 locktype3 = 1 +17746726 goalCount = 1 +17746727 goalTotal = 11 +17746727 otherCount = 8 +~~~ +17746728 CURRENTGOAL IS [2] +~~~ +17751159 UP 6 +17751159 32 255 +~~~ +~~~ +17752137 DOWN 6 +17752137 0 255 +~~~ +~~~ +17752159 0 254 +~~~ +~~~ +17752160 0 252 +~~~ +~~~ +17752162 0 248 +~~~ +~~~ +17752164 0 240 +~~~ +~~~ +17752166 0 224 +~~~ +~~~ +17752168 0 192 +~~~ +~~~ +17752169 0 128 +~~~ +~~~ +17752171 0 0 +~~~ +~~~ +17752173 0 512 +17752174 homeCount = 22 +17752175 waitCount = 10 +17752175 ripCount = 10 +17752176 locktype1 = 0 +17752197 locktype2 = 2 +17752197 locktype3 = 1 +17752198 goalCount = 1 +17752198 goalTotal = 11 +17752199 otherCount = 9 +~~~ +17755821 UP 10 +17755821 waslock = 0 +17755821 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17755853 512 16777728 +~~~ +17756003 512 512 +17756059 DOWN 10 +17756059 0 512 +~~~ +~~~ +17756076 UP 10 +17756076 waslock = 0 +17756076 512 2560 +~~~ +~~~ +17756078 512 2048 +17756079 homeCount = 23 +17756080 waitCount = 10 +17756080 ripCount = 10 +17756081 locktype1 = 0 +17756081 locktype2 = 2 +17756082 locktype3 = 1 +17756082 goalCount = 1 +17756104 goalTotal = 11 +17756104 otherCount = 9 +~~~ +~~~ +17759339 DOWN 10 +17759339 0 2048 +~~~ +~~~ +~~~ +~~~ +17759360 homeCount = 23 +17759361 waitCount = 10 +17759361 ripCount = 10 +17759362 locktype1 = 0 +17759362 locktype2 = 2 +17759363 locktype3 = 1 +17759363 goalCount = 1 +17759364 goalTotal = 11 +17759364 otherCount = 9 +~~~ +17761118 UP 12 +17761118 2048 2048 +17762724 DOWN 12 +17762724 0 2048 +17762734 UP 12 +17762734 2048 2048 +17762739 DOWN 12 +17762739 0 2048 +17762757 UP 12 +17762757 2048 2048 +17763369 CLICK1 +17763369 CLICK2 +~~~ +~~~ +~~~ +17763395 2048 67110912 +~~~ +17763545 2048 2048 +17768970 DOWN 12 +17768970 0 2048 +~~~ +~~~ +17768992 0 0 +~~~ +~~~ +17768994 0 1 +~~~ +~~~ +17768996 0 3 +~~~ +~~~ +17768997 0 7 +~~~ +~~~ +17768999 0 15 +~~~ +~~~ +17769001 0 31 +~~~ +~~~ +17769003 0 63 +~~~ +~~~ +17769005 0 127 +~~~ +~~~ +17769006 0 255 +17769008 homeCount = 23 +17769008 waitCount = 11 +17769009 ripCount = 10 +17769009 locktype1 = 0 +17769010 locktype2 = 2 +17769030 locktype3 = 1 +17769031 goalCount = 1 +17769031 goalTotal = 11 +17769032 otherCount = 9 +~~~ +17769033 CURRENTGOAL IS [2] +~~~ +17772566 UP 1 +17772566 1 255 +~~~ +~~~ +17774132 DOWN 1 +17774132 0 255 +~~~ +~~~ +17774151 0 254 +~~~ +~~~ +17774153 0 252 +~~~ +~~~ +17774155 0 248 +~~~ +~~~ +17774157 0 240 +~~~ +~~~ +17774159 0 224 +~~~ +~~~ +17774161 0 192 +~~~ +~~~ +17774162 0 128 +~~~ +~~~ +17774164 0 0 +~~~ +~~~ +17774166 0 512 +17774167 homeCount = 23 +17774168 waitCount = 11 +17774168 ripCount = 10 +17774169 locktype1 = 0 +17774190 locktype2 = 2 +17774190 locktype3 = 1 +17774191 goalCount = 1 +17774191 goalTotal = 11 +17774192 otherCount = 10 +~~~ +17777742 UP 10 +17777742 waslock = 0 +17777742 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17777769 512 16777728 +~~~ +17777919 512 512 +17777993 DOWN 10 +17777993 0 512 +~~~ +~~~ +17778017 0 1536 +~~~ +~~~ +17778019 0 1024 +17778020 homeCount = 24 +17778020 waitCount = 11 +17778021 ripCount = 10 +17778021 locktype1 = 0 +17778022 locktype2 = 2 +17778022 locktype3 = 1 +17778023 goalCount = 1 +17778023 goalTotal = 11 +17778024 otherCount = 10 +~~~ +17778045 UP 10 +17778045 waslock = 0 +17778045 512 1024 +~~~ +17781684 DOWN 10 +17781684 0 1024 +~~~ +~~~ +~~~ +~~~ +17781705 homeCount = 24 +17781706 waitCount = 11 +17781706 ripCount = 10 +17781707 locktype1 = 0 +17781707 locktype2 = 2 +17781707 locktype3 = 1 +17781708 goalCount = 1 +17781708 goalTotal = 11 +17781709 otherCount = 10 +~~~ +17781741 UP 10 +17781741 waslock = 0 +17781741 512 1024 +~~~ +17781763 DOWN 10 +17781763 0 1024 +~~~ +~~~ +~~~ +~~~ +17781788 homeCount = 24 +17781788 waitCount = 11 +17781789 ripCount = 10 +17781789 locktype1 = 0 +17781790 locktype2 = 2 +17781790 locktype3 = 1 +17781791 goalCount = 1 +17781791 goalTotal = 11 +17781792 otherCount = 10 +~~~ +17783131 UP 11 +17783131 1024 1024 +17786131 BEEP1 +17786131 BEEP2 +~~~ +~~~ +~~~ +17786156 1024 33555456 +~~~ +17786306 1024 1024 +17793507 DOWN 11 +17793507 0 1024 +~~~ +~~~ +17793532 0 0 +~~~ +~~~ +17793534 0 1 +~~~ +~~~ +17793536 0 3 +~~~ +~~~ +17793538 0 7 +~~~ +~~~ +17793540 0 15 +~~~ +~~~ +17793541 0 31 +~~~ +~~~ +17793543 0 63 +~~~ +~~~ +17793545 0 127 +~~~ +~~~ +17793547 0 255 +17793548 homeCount = 24 +17793548 waitCount = 11 +17793549 ripCount = 11 +17793549 locktype1 = 0 +17793550 locktype2 = 2 +17793571 locktype3 = 1 +17793571 goalCount = 1 +17793572 goalTotal = 11 +17793572 otherCount = 10 +~~~ +17793573 CURRENTGOAL IS [2] +~~~ +17799331 UP 7 +17799331 64 255 +~~~ +~~~ +17799555 DOWN 7 +17799555 0 255 +~~~ +~~~ +17799574 0 254 +~~~ +~~~ +17799576 0 252 +~~~ +~~~ +17799578 0 248 +~~~ +~~~ +17799579 0 240 +~~~ +~~~ +17799581 0 224 +~~~ +~~~ +17799583 0 192 +~~~ +~~~ +17799585 0 128 +~~~ +~~~ +17799587 0 0 +~~~ +~~~ +17799588 0 512 +17799589 homeCount = 24 +17799590 waitCount = 11 +17799591 ripCount = 11 +17799591 locktype1 = 0 +17799612 locktype2 = 2 +17799612 locktype3 = 1 +17799613 goalCount = 1 +17799613 goalTotal = 11 +17799614 otherCount = 11 +~~~ +17799621 64 512 +17800053 DOWN 7 +17800053 0 512 +17804037 UP 10 +17804037 waslock = 0 +17804037 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17804064 512 16777728 +~~~ +17804214 512 512 +17804372 DOWN 10 +17804372 0 512 +17804384 UP 10 +17804385 waslock = 0 +17804384 512 512 +~~~ +~~~ +17804404 512 2560 +~~~ +~~~ +17804406 512 2048 +17804407 homeCount = 25 +17804408 waitCount = 11 +17804408 ripCount = 11 +17804409 locktype1 = 0 +17804409 locktype2 = 2 +17804410 locktype3 = 1 +17804410 goalCount = 1 +17804411 goalTotal = 11 +17804411 otherCount = 11 +~~~ +~~~ +17808182 DOWN 10 +17808182 0 2048 +~~~ +~~~ +~~~ +~~~ +17808210 homeCount = 25 +17808211 waitCount = 11 +17808211 ripCount = 11 +17808212 locktype1 = 0 +17808212 locktype2 = 2 +17808213 locktype3 = 1 +17808213 goalCount = 1 +17808214 goalTotal = 11 +17808214 otherCount = 11 +~~~ +17809982 UP 12 +17809982 2048 2048 +17811792 DOWN 12 +17811792 0 2048 +17811817 UP 12 +17811817 2048 2048 +17813483 CLICK1 +17813483 CLICK2 +~~~ +~~~ +~~~ +17813510 2048 67110912 +~~~ +17813658 DOWN 12 +17813658 0 67110912 +17813660 0 2048 +17813687 UP 12 +17813687 2048 2048 +~~~ +~~~ +17813690 2048 0 +~~~ +~~~ +17813692 2048 1 +~~~ +~~~ +17813693 2048 3 +~~~ +~~~ +17813695 2048 7 +~~~ +~~~ +17813697 2048 15 +~~~ +~~~ +17813699 2048 31 +~~~ +~~~ +17813701 2048 63 +~~~ +~~~ +17813703 2048 127 +~~~ +~~~ +17813704 2048 255 +17813706 homeCount = 25 +17813706 waitCount = 12 +17813727 ripCount = 11 +17813727 locktype1 = 0 +17813728 locktype2 = 2 +17813728 locktype3 = 1 +17813729 goalCount = 1 +17813729 goalTotal = 11 +17813730 otherCount = 11 +~~~ +17813731 CURRENTGOAL IS [2] +~~~ +17818291 DOWN 12 +17818291 0 255 +17818296 UP 12 +17818296 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17818326 homeCount = 25 +17818327 waitCount = 12 +17818327 ripCount = 11 +17818328 locktype1 = 0 +17818328 locktype2 = 2 +17818329 locktype3 = 1 +17818329 goalCount = 1 +17818330 goalTotal = 11 +17818330 otherCount = 11 +~~~ +17818331 CURRENTGOAL IS [2] +~~~ +17818368 DOWN 12 +17818368 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17818405 homeCount = 25 +17818406 waitCount = 12 +17818406 ripCount = 11 +17818407 locktype1 = 0 +17818407 locktype2 = 2 +17818408 locktype3 = 1 +17818408 goalCount = 1 +17818409 goalTotal = 11 +17818409 otherCount = 11 +~~~ +17818410 CURRENTGOAL IS [2] +~~~ +17823832 UP 2 +17823832 2 255 +~~~ +~~~ +17823852 outer reward +~~~ +17823852 2 131327 +~~~ +~~~ +17824185 DOWN 2 +17824185 0 131327 +~~~ +17824208 2 131327 +~~~ +17824210 2 131326 +~~~ +~~~ +17824211 2 131324 +~~~ +~~~ +17824213 2 131320 +~~~ +~~~ +17824215 2 131312 +~~~ +~~~ +17824216 2 131296 +~~~ +~~~ +17824218 2 131264 +~~~ +~~~ +17824220 2 131200 +~~~ +~~~ +17824222 2 131072 +~~~ +~~~ +17824224 2 131584 +17824225 homeCount = 25 +17824225 waitCount = 12 +17824247 ripCount = 11 +17824247 locktype1 = 0 +17824248 locktype2 = 2 +17824248 locktype3 = 1 +17824249 goalCount = 2 +17824249 goalTotal = 12 +17824250 otherCount = 11 +~~~ +17824302 2 512 +17824581 DOWN 2 +17824581 0 512 +17824598 2 512 +17824700 DOWN 2 +17824700 0 512 +17824721 2 512 +17824823 DOWN 2 +17824823 0 512 +17824846 2 512 +17824949 DOWN 2 +17824949 0 512 +17824965 2 512 +17829925 DOWN 2 +17829925 0 512 +17829977 2 512 +17830030 DOWN 2 +17830030 0 512 +17830113 2 512 +17830135 DOWN 2 +17830135 0 512 +17835168 UP 10 +17835169 waslock = 0 +17835168 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17835195 512 16777728 +~~~ +17835345 512 512 +17835401 DOWN 10 +17835401 0 512 +~~~ +~~~ +17835421 0 2560 +~~~ +17835422 UP 10 +17835423 waslock = 0 +17835422 512 2560 +~~~ +17835424 homeCount = 26 +17835425 waitCount = 12 +17835425 ripCount = 11 +17835426 locktype1 = 0 +17835426 locktype2 = 2 +17835427 locktype3 = 1 +17835427 goalCount = 2 +17835448 goalTotal = 12 +17835449 otherCount = 11 +~~~ +~~~ +17835450 512 2048 +17839165 DOWN 10 +17839165 0 2048 +~~~ +~~~ +~~~ +~~~ +17839192 homeCount = 26 +17839192 waitCount = 12 +17839193 ripCount = 11 +17839193 locktype1 = 0 +17839194 locktype2 = 2 +17839194 locktype3 = 1 +17839195 goalCount = 2 +17839195 goalTotal = 12 +17839196 otherCount = 11 +~~~ +17839209 UP 10 +17839210 waslock = 0 +17839209 512 2048 +~~~ +17839245 DOWN 10 +17839245 0 2048 +~~~ +~~~ +~~~ +~~~ +17839268 homeCount = 26 +17839268 waitCount = 12 +17839269 ripCount = 11 +17839269 locktype1 = 0 +17839270 locktype2 = 2 +17839270 locktype3 = 1 +17839271 goalCount = 2 +17839271 goalTotal = 12 +17839272 otherCount = 11 +~~~ +17840917 UP 12 +17840917 2048 2048 +17843738 DOWN 12 +17843738 0 2048 +17843774 UP 12 +17843774 2048 2048 +17844418 CLICK1 +17844418 CLICK2 +~~~ +~~~ +~~~ +17844442 2048 67110912 +~~~ +17844592 2048 2048 +17849626 DOWN 12 +17849626 0 2048 +~~~ +~~~ +17849650 0 0 +~~~ +~~~ +17849652 0 1 +~~~ +~~~ +17849653 0 3 +~~~ +~~~ +17849655 0 7 +~~~ +~~~ +17849657 0 15 +~~~ +~~~ +17849659 0 31 +~~~ +~~~ +17849661 0 63 +~~~ +~~~ +17849663 0 127 +~~~ +~~~ +17849664 0 255 +17849665 homeCount = 26 +17849666 waitCount = 13 +17849666 ripCount = 11 +17849667 locktype1 = 0 +17849667 locktype2 = 2 +17849688 locktype3 = 1 +17849689 goalCount = 2 +17849689 goalTotal = 12 +17849690 otherCount = 11 +~~~ +17849691 CURRENTGOAL IS [2] +~~~ +17849708 UP 12 +17849708 2048 255 +17849722 DOWN 12 +17849722 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17849759 homeCount = 26 +17849760 waitCount = 13 +17849760 ripCount = 11 +17849761 locktype1 = 0 +17849761 locktype2 = 2 +17849762 locktype3 = 1 +17849762 goalCount = 2 +17849763 goalTotal = 12 +17849763 otherCount = 11 +~~~ +17849764 CURRENTGOAL IS [2] +~~~ +17853717 UP 2 +17853717 2 255 +~~~ +~~~ +17853745 outer reward +~~~ +17853745 2 131327 +~~~ +~~~ +17853940 DOWN 2 +17853940 0 131327 +~~~ +~~~ +17853964 0 131326 +~~~ +~~~ +17853966 0 131324 +~~~ +~~~ +17853967 0 131320 +~~~ +~~~ +17853969 0 131312 +~~~ +~~~ +17853971 0 131296 +~~~ +~~~ +17853973 0 131264 +~~~ +~~~ +17853975 0 131200 +~~~ +~~~ +17853977 0 131072 +~~~ +~~~ +17853978 0 131584 +17853979 homeCount = 26 +17853980 waitCount = 13 +17853981 ripCount = 11 +17854002 locktype1 = 0 +17854002 locktype2 = 2 +17854003 locktype3 = 1 +17854003 goalCount = 3 +17854004 goalTotal = 13 +17854004 otherCount = 11 +~~~ +17854005 2 131584 +17854195 2 512 +17854610 DOWN 2 +17854610 0 512 +17854627 2 512 +17854734 DOWN 2 +17854734 0 512 +17854760 2 512 +17854858 DOWN 2 +17854858 0 512 +17854884 2 512 +17854994 DOWN 2 +17854994 0 512 +17855017 2 512 +17855122 DOWN 2 +17855122 0 512 +17855152 2 512 +17855268 DOWN 2 +17855268 0 512 +17855283 2 512 +17861087 DOWN 2 +17861087 0 512 +17866371 UP 10 +17866371 waslock = 0 +17866371 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17866401 512 16777728 +~~~ +17866500 DOWN 10 +17866500 0 16777728 +17866522 UP 10 +17866522 waslock = 0 +17866522 512 16777728 +~~~ +~~~ +17866529 512 16778752 +~~~ +~~~ +17866531 512 16778240 +17866532 homeCount = 27 +17866532 waitCount = 13 +17866533 ripCount = 11 +17866533 locktype1 = 0 +17866534 locktype2 = 2 +17866534 locktype3 = 1 +17866535 goalCount = 3 +17866535 goalTotal = 13 +17866536 otherCount = 11 +~~~ +17866557 512 1024 +~~~ +17871309 DOWN 10 +17871309 0 1024 +~~~ +~~~ +~~~ +~~~ +17871338 homeCount = 27 +17871338 waitCount = 13 +17871339 ripCount = 11 +17871339 locktype1 = 0 +17871340 locktype2 = 2 +17871340 locktype3 = 1 +17871341 goalCount = 3 +17871341 goalTotal = 13 +17871342 otherCount = 11 +~~~ +17872797 UP 11 +17872797 1024 1024 +17876092 DOWN 11 +17876092 0 1024 +17876102 UP 11 +17876102 1024 1024 +17880683 DOWN 11 +17880683 0 1024 +17880710 UP 11 +17880710 1024 1024 +17880798 BEEP1 +17880798 BEEP2 +~~~ +~~~ +~~~ +17880819 1024 33555456 +~~~ +17880968 1024 1024 +17885726 DOWN 11 +17885726 0 1024 +~~~ +~~~ +17885745 0 0 +~~~ +~~~ +17885747 0 1 +~~~ +~~~ +17885748 0 3 +~~~ +~~~ +17885750 0 7 +~~~ +~~~ +17885752 0 15 +~~~ +~~~ +17885754 0 31 +~~~ +~~~ +17885756 0 63 +~~~ +~~~ +17885757 0 127 +~~~ +~~~ +17885759 0 255 +17885760 homeCount = 27 +17885761 waitCount = 13 +17885761 ripCount = 12 +17885762 locktype1 = 0 +17885783 locktype2 = 2 +17885784 locktype3 = 1 +17885784 goalCount = 3 +17885785 goalTotal = 13 +17885785 otherCount = 11 +~~~ +17885786 CURRENTGOAL IS [2] +~~~ +17885798 UP 11 +17885798 1024 255 +17887457 DOWN 11 +17887457 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887486 UP 11 +17887486 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887492 homeCount = 27 +17887493 waitCount = 13 +17887493 ripCount = 12 +17887494 locktype1 = 0 +17887494 locktype2 = 2 +17887495 locktype3 = 1 +17887495 goalCount = 3 +17887496 goalTotal = 13 +17887496 otherCount = 11 +~~~ +17887497 CURRENTGOAL IS [2] +~~~ +17887540 DOWN 11 +17887540 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17887582 homeCount = 27 +17887583 waitCount = 13 +17887583 ripCount = 12 +17887584 locktype1 = 0 +17887584 locktype2 = 2 +17887585 locktype3 = 1 +17887585 goalCount = 3 +17887586 goalTotal = 13 +17887586 otherCount = 11 +~~~ +17887587 CURRENTGOAL IS [2] +~~~ +17891303 UP 2 +17891303 2 255 +~~~ +~~~ +17891329 outer reward +~~~ +17891329 2 131327 +~~~ +~~~ +17891504 DOWN 2 +17891504 0 131327 +~~~ +~~~ +17891528 0 131326 +~~~ +~~~ +17891530 0 131324 +~~~ +~~~ +17891531 0 131320 +~~~ +~~~ +17891533 0 131312 +~~~ +~~~ +17891535 0 131296 +~~~ +~~~ +17891537 0 131264 +~~~ +~~~ +17891539 0 131200 +~~~ +~~~ +17891540 0 131072 +~~~ +~~~ +17891542 0 131584 +17891543 homeCount = 27 +17891544 waitCount = 13 +17891544 ripCount = 12 +17891566 locktype1 = 0 +17891566 locktype2 = 2 +17891567 locktype3 = 1 +17891567 goalCount = 4 +17891568 goalTotal = 14 +17891568 otherCount = 11 +~~~ +17891569 2 131584 +17891779 2 512 +17892060 DOWN 2 +17892060 0 512 +17892075 2 512 +17892185 DOWN 2 +17892185 0 512 +17892200 2 512 +17898873 DOWN 2 +17898873 0 512 +17898936 2 512 +17898969 DOWN 2 +17898969 0 512 +17903622 UP 10 +17903623 waslock = 0 +17903622 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17903655 512 16777728 +~~~ +17903805 512 512 +17907190 DOWN 10 +17907190 0 512 +~~~ +~~~ +17907209 0 1536 +~~~ +~~~ +17907211 0 1024 +17907212 homeCount = 28 +17907212 waitCount = 13 +17907213 ripCount = 12 +17907213 locktype1 = 0 +17907214 locktype2 = 2 +17907214 locktype3 = 1 +17907215 goalCount = 4 +17907215 goalTotal = 14 +17907216 otherCount = 11 +~~~ +17907245 UP 10 +17907245 waslock = 0 +17907245 512 1024 +~~~ +17907292 DOWN 10 +17907292 0 1024 +~~~ +~~~ +~~~ +~~~ +17907315 homeCount = 28 +17907316 waitCount = 13 +17907316 ripCount = 12 +17907317 locktype1 = 0 +17907317 locktype2 = 2 +17907318 locktype3 = 1 +17907318 goalCount = 4 +17907319 goalTotal = 14 +17907319 otherCount = 11 +~~~ +17908743 UP 11 +17908743 1024 1024 +17911424 DOWN 11 +17911424 0 1024 +17911439 UP 11 +17911439 1024 1024 +17914044 DOWN 11 +17914044 0 1024 +17914054 UP 11 +17914054 1024 1024 +17914744 BEEP1 +17914744 BEEP2 +~~~ +~~~ +~~~ +17914764 1024 33555456 +~~~ +17914914 1024 1024 +17920379 DOWN 11 +17920379 0 1024 +17920399 UP 11 +17920399 1024 1024 +~~~ +~~~ +17920402 1024 0 +~~~ +~~~ +17920404 1024 1 +~~~ +~~~ +17920406 1024 3 +~~~ +~~~ +17920408 1024 7 +~~~ +~~~ +17920409 1024 15 +~~~ +~~~ +17920411 1024 31 +~~~ +~~~ +17920413 1024 63 +~~~ +~~~ +17920415 1024 127 +~~~ +~~~ +17920417 1024 255 +17920418 homeCount = 28 +17920418 waitCount = 13 +17920439 ripCount = 13 +17920440 locktype1 = 0 +17920440 locktype2 = 2 +17920441 locktype3 = 1 +17920441 goalCount = 4 +17920442 goalTotal = 14 +17920442 otherCount = 11 +~~~ +17920443 CURRENTGOAL IS [2] +~~~ +17920510 DOWN 11 +17920510 0 255 +17920518 UP 11 +17920517 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17920542 homeCount = 28 +17920543 waitCount = 13 +17920543 ripCount = 13 +17920544 locktype1 = 0 +17920544 locktype2 = 2 +17920545 locktype3 = 1 +17920545 goalCount = 4 +17920546 goalTotal = 14 +17920546 otherCount = 11 +~~~ +17920547 CURRENTGOAL IS [2] +~~~ +17922012 DOWN 11 +17922012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17922052 homeCount = 28 +17922053 waitCount = 13 +17922054 ripCount = 13 +17922054 locktype1 = 0 +17922055 locktype2 = 2 +17922055 locktype3 = 1 +17922055 goalCount = 4 +17922056 goalTotal = 14 +17922056 otherCount = 11 +~~~ +17922058 CURRENTGOAL IS [2] +~~~ +17925749 UP 2 +17925749 2 255 +~~~ +~~~ +17925768 outer reward +~~~ +17925768 2 131327 +~~~ +~~~ +17925771 DOWN 2 +17925771 0 131327 +~~~ +~~~ +17925792 0 131326 +~~~ +~~~ +17925794 0 131324 +~~~ +~~~ +17925796 0 131320 +~~~ +~~~ +17925797 0 131312 +~~~ +~~~ +17925799 0 131296 +~~~ +~~~ +17925801 0 131264 +~~~ +~~~ +17925803 0 131200 +~~~ +17925804 2 131200 +~~~ +~~~ +17925806 2 131072 +~~~ +17925807 2 131584 +17925808 homeCount = 28 +17925809 waitCount = 13 +17925830 ripCount = 13 +17925830 locktype1 = 0 +17925831 locktype2 = 2 +17925831 locktype3 = 1 +17925832 goalCount = 5 +17925832 goalTotal = 15 +17925833 otherCount = 11 +~~~ +17926043 DOWN 2 +17926043 0 131584 +17926080 2 131584 +17926218 2 512 +17926346 DOWN 2 +17926346 0 512 +17926352 2 512 +17926453 DOWN 2 +17926453 0 512 +17926478 2 512 +17926574 DOWN 2 +17926574 0 512 +17926610 2 512 +17926695 DOWN 2 +17926695 0 512 +17926739 2 512 +17926820 DOWN 2 +17926820 0 512 +17926863 2 512 +17926961 DOWN 2 +17926961 0 512 +17926990 2 512 +17927108 DOWN 2 +17927108 0 512 +17927126 2 512 +17932908 DOWN 2 +17932908 0 512 +17937014 UP 10 +17937014 waslock = 0 +17937014 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17937042 512 16777728 +~~~ +17937192 512 512 +17941745 DOWN 10 +17941745 0 512 +~~~ +~~~ +17941767 0 2560 +~~~ +~~~ +17941769 0 2048 +17941770 homeCount = 29 +17941771 waitCount = 13 +17941771 ripCount = 13 +17941772 locktype1 = 0 +17941772 locktype2 = 2 +17941772 locktype3 = 1 +17941773 goalCount = 5 +17941773 goalTotal = 15 +17941774 otherCount = 11 +~~~ +17943411 UP 12 +17943411 2048 2048 +17945337 DOWN 12 +17945337 0 2048 +17945386 UP 12 +17945386 2048 2048 +17951411 CLICK1 +17951411 CLICK2 +~~~ +~~~ +~~~ +17951429 2048 67110912 +~~~ +17951579 2048 2048 +17957761 DOWN 12 +17957761 0 2048 +~~~ +~~~ +17957779 0 0 +~~~ +~~~ +17957781 0 1 +~~~ +~~~ +17957783 0 3 +~~~ +~~~ +17957784 0 7 +~~~ +~~~ +17957786 0 15 +~~~ +~~~ +17957788 0 31 +~~~ +~~~ +17957790 0 63 +~~~ +~~~ +17957792 0 127 +~~~ +~~~ +17957794 0 255 +17957795 homeCount = 29 +17957795 waitCount = 14 +17957796 ripCount = 13 +17957796 locktype1 = 0 +17957797 locktype2 = 2 +17957817 locktype3 = 1 +17957818 goalCount = 5 +17957818 goalTotal = 15 +17957819 otherCount = 11 +~~~ +17957820 CURRENTGOAL IS [2] +~~~ +17957820 UP 12 +17957820 2048 255 +17957860 DOWN 12 +17957860 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +17957900 homeCount = 29 +17957900 waitCount = 14 +17957901 ripCount = 13 +17957902 locktype1 = 0 +17957902 locktype2 = 2 +17957903 locktype3 = 1 +17957903 goalCount = 5 +17957903 goalTotal = 15 +17957904 otherCount = 11 +~~~ +17957905 CURRENTGOAL IS [2] +~~~ +17960837 UP 2 +17960837 2 255 +~~~ +~~~ +17960865 outer reward +~~~ +17960866 2 131327 +~~~ +~~~ +17960983 DOWN 2 +17960983 0 131327 +~~~ +~~~ +17961004 0 131326 +~~~ +~~~ +17961006 0 131324 +~~~ +~~~ +17961008 0 131320 +~~~ +~~~ +17961009 0 131312 +~~~ +~~~ +17961011 0 131296 +~~~ +~~~ +17961013 0 131264 +~~~ +~~~ +17961015 0 131200 +~~~ +~~~ +17961017 0 131072 +~~~ +~~~ +17961019 0 131584 +17961020 homeCount = 29 +17961020 waitCount = 14 +17961021 ripCount = 13 +17961042 locktype1 = 0 +17961042 locktype2 = 2 +17961043 locktype3 = 1 +17961043 goalCount = 6 +17961044 goalTotal = 16 +17961044 otherCount = 11 +~~~ +17961051 2 131584 +17961315 2 512 +17961832 DOWN 2 +17961832 0 512 +17961853 2 512 +17961968 DOWN 2 +17961968 0 512 +17961983 2 512 +17962107 DOWN 2 +17962107 0 512 +17962114 2 512 +17962230 DOWN 2 +17962230 0 512 +17962255 2 512 +17969076 DOWN 2 +17969076 0 512 +17969149 2 512 +17969179 DOWN 2 +17969179 0 512 +17973719 UP 10 +17973719 waslock = 0 +17973719 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +17973748 512 16777728 +~~~ +17973898 512 512 +17978571 DOWN 10 +17978571 0 512 +~~~ +~~~ +17978594 0 1536 +~~~ +~~~ +17978596 0 1024 +17978597 homeCount = 30 +17978597 waitCount = 14 +17978598 ripCount = 13 +17978598 locktype1 = 0 +17978599 locktype2 = 2 +17978599 locktype3 = 1 +17978600 goalCount = 6 +17978600 goalTotal = 16 +17978601 otherCount = 11 +~~~ +17978622 UP 10 +17978622 waslock = 0 +17978622 512 1024 +~~~ +17978673 DOWN 10 +17978673 0 1024 +~~~ +~~~ +~~~ +~~~ +17978698 homeCount = 30 +17978699 waitCount = 14 +17978699 ripCount = 13 +17978700 locktype1 = 0 +17978700 locktype2 = 2 +17978701 locktype3 = 1 +17978701 goalCount = 6 +17978702 goalTotal = 16 +17978702 otherCount = 11 +~~~ +17980140 UP 11 +17980140 1024 1024 +17982129 DOWN 11 +17982129 0 1024 +17982145 UP 11 +17982145 1024 1024 +17987640 BEEP1 +17987640 BEEP2 +~~~ +~~~ +~~~ +17987665 1024 33555456 +~~~ +17987815 1024 1024 +17995055 DOWN 11 +17995055 0 1024 +~~~ +~~~ +17995073 0 0 +~~~ +~~~ +17995075 0 1 +~~~ +~~~ +17995077 0 3 +~~~ +~~~ +17995079 0 7 +~~~ +~~~ +17995081 0 15 +~~~ +~~~ +17995083 0 31 +~~~ +~~~ +17995084 0 63 +~~~ +~~~ +17995086 0 127 +~~~ +~~~ +17995088 0 255 +17995089 homeCount = 30 +17995090 waitCount = 14 +17995090 ripCount = 14 +17995091 locktype1 = 0 +17995112 locktype2 = 2 +17995112 locktype3 = 1 +17995113 goalCount = 6 +17995113 goalTotal = 16 +17995114 otherCount = 11 +~~~ +17995115 CURRENTGOAL IS [2] +~~~ +17999238 UP 2 +17999238 2 255 +~~~ +~~~ +17999256 outer reward +~~~ +17999256 2 131327 +~~~ +~~~ +17999414 DOWN 2 +17999414 0 131327 +~~~ +~~~ +17999435 0 131326 +~~~ +~~~ +17999437 0 131324 +~~~ +~~~ +17999438 0 131320 +~~~ +~~~ +17999440 0 131312 +~~~ +~~~ +17999442 0 131296 +~~~ +~~~ +17999444 0 131264 +~~~ +~~~ +17999446 0 131200 +~~~ +~~~ +17999448 0 131072 +~~~ +~~~ +17999449 0 131584 +17999451 homeCount = 30 +17999451 waitCount = 14 +17999452 ripCount = 14 +17999472 locktype1 = 0 +17999473 locktype2 = 2 +17999473 locktype3 = 1 +17999474 goalCount = 7 +17999474 goalTotal = 17 +17999475 otherCount = 11 +~~~ +17999475 2 131584 +17999706 2 512 +17999969 DOWN 2 +17999969 0 512 +17999988 2 512 +18000082 DOWN 2 +18000082 0 512 +18000121 2 512 +18000212 DOWN 2 +18000212 0 512 +18000243 2 512 +18000338 DOWN 2 +18000338 0 512 +18000379 2 512 +18000475 DOWN 2 +18000475 0 512 +18000502 2 512 +18001062 DOWN 2 +18001062 0 512 +18001075 2 512 +18006367 DOWN 2 +18006367 0 512 +18006392 2 512 +18006463 DOWN 2 +18006463 0 512 +18011267 UP 10 +18011267 waslock = 0 +18011267 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18011300 512 16777728 +~~~ +18011450 512 512 +18011639 DOWN 10 +18011639 0 512 +18011656 UP 10 +18011656 waslock = 0 +18011656 512 512 +~~~ +~~~ +18011664 512 1536 +~~~ +~~~ +18011666 512 1024 +18011667 homeCount = 31 +18011668 waitCount = 14 +18011668 ripCount = 14 +18011669 locktype1 = 0 +18011669 locktype2 = 2 +18011670 locktype3 = 1 +18011670 goalCount = 7 +18011671 goalTotal = 17 +18011671 otherCount = 11 +~~~ +~~~ +18014768 DOWN 10 +18014768 0 1024 +~~~ +~~~ +~~~ +~~~ +18014787 homeCount = 31 +18014788 waitCount = 14 +18014788 ripCount = 14 +18014789 locktype1 = 0 +18014789 locktype2 = 2 +18014789 locktype3 = 1 +18014790 goalCount = 7 +18014790 goalTotal = 17 +18014791 otherCount = 11 +~~~ +18014805 UP 10 +18014805 waslock = 0 +18014804 512 1024 +~~~ +18014873 DOWN 10 +18014873 0 1024 +~~~ +~~~ +~~~ +~~~ +18014898 homeCount = 31 +18014899 waitCount = 14 +18014899 ripCount = 14 +18014900 locktype1 = 0 +18014900 locktype2 = 2 +18014901 locktype3 = 1 +18014901 goalCount = 7 +18014902 goalTotal = 17 +18014902 otherCount = 11 +~~~ +18016371 UP 11 +18016371 1024 1024 +18019466 DOWN 11 +18019466 0 1024 +18019477 UP 11 +18019477 1024 1024 +18020371 BEEP1 +18020371 BEEP2 +~~~ +~~~ +~~~ +18020397 1024 33555456 +~~~ +18020547 1024 1024 +18025455 DOWN 11 +18025454 0 1024 +18025472 UP 11 +18025472 1024 1024 +~~~ +~~~ +18025475 1024 0 +~~~ +~~~ +18025477 1024 1 +~~~ +~~~ +18025479 1024 3 +~~~ +~~~ +18025480 1024 7 +~~~ +~~~ +18025482 1024 15 +~~~ +~~~ +18025484 1024 31 +~~~ +~~~ +18025486 1024 63 +~~~ +~~~ +18025488 1024 127 +~~~ +~~~ +18025490 1024 255 +18025491 homeCount = 31 +18025491 waitCount = 14 +18025492 ripCount = 15 +18025513 locktype1 = 0 +18025513 locktype2 = 2 +18025514 locktype3 = 1 +18025514 goalCount = 7 +18025514 goalTotal = 17 +18025515 otherCount = 11 +~~~ +18025516 CURRENTGOAL IS [2] +~~~ +18025534 DOWN 11 +18025534 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18025574 homeCount = 31 +18025574 waitCount = 14 +18025575 ripCount = 15 +18025575 locktype1 = 0 +18025576 locktype2 = 2 +18025576 locktype3 = 1 +18025577 goalCount = 7 +18025577 goalTotal = 17 +18025578 otherCount = 11 +~~~ +18025579 CURRENTGOAL IS [2] +~~~ +18025617 UP 11 +18025617 1024 255 +18028361 DOWN 11 +18028361 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18028404 homeCount = 31 +18028404 waitCount = 14 +18028405 ripCount = 15 +18028405 locktype1 = 0 +18028406 locktype2 = 2 +18028406 locktype3 = 1 +18028407 goalCount = 7 +18028407 goalTotal = 17 +18028408 otherCount = 11 +~~~ +18028409 CURRENTGOAL IS [2] +~~~ +18028430 UP 11 +18028430 1024 255 +18028451 DOWN 11 +18028451 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18028494 homeCount = 31 +18028494 waitCount = 14 +18028495 ripCount = 15 +18028495 locktype1 = 0 +18028496 locktype2 = 2 +18028496 locktype3 = 1 +18028497 goalCount = 7 +18028497 goalTotal = 17 +18028498 otherCount = 11 +~~~ +18028499 CURRENTGOAL IS [2] +~~~ +18032808 UP 2 +18032808 2 255 +~~~ +~~~ +18032831 outer reward +~~~ +18032831 2 131327 +~~~ +~~~ +18033013 DOWN 2 +18033013 0 131327 +~~~ +~~~ +18033039 0 131326 +~~~ +~~~ +18033040 0 131324 +~~~ +~~~ +18033042 0 131320 +~~~ +~~~ +18033044 0 131312 +~~~ +~~~ +18033046 0 131296 +~~~ +~~~ +18033048 0 131264 +~~~ +~~~ +18033050 0 131200 +~~~ +~~~ +18033051 0 131072 +~~~ +~~~ +18033053 0 131584 +18033054 homeCount = 31 +18033055 waitCount = 14 +18033055 ripCount = 15 +18033076 locktype1 = 0 +18033077 locktype2 = 2 +18033077 locktype3 = 1 +18033078 goalCount = 8 +18033078 goalTotal = 18 +18033079 otherCount = 11 +~~~ +18033079 2 131584 +18033281 2 512 +18033570 DOWN 2 +18033570 0 512 +18033590 2 512 +18033697 DOWN 2 +18033697 0 512 +18033720 2 512 +18033834 DOWN 2 +18033834 0 512 +18033851 2 512 +18033956 DOWN 2 +18033956 0 512 +18033979 2 512 +18034089 DOWN 2 +18034089 0 512 +18034108 2 512 +18034220 DOWN 2 +18034220 0 512 +18034238 2 512 +18034509 DOWN 2 +18034509 0 512 +18034533 2 512 +18043258 DOWN 2 +18043258 0 512 +18057543 UP 10 +18057543 waslock = 0 +18057543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18057574 512 16777728 +~~~ +18057724 512 512 +18062627 DOWN 10 +18062627 0 512 +~~~ +~~~ +18062649 0 2560 +~~~ +~~~ +18062651 0 2048 +18062652 homeCount = 32 +18062653 waitCount = 14 +18062653 ripCount = 15 +18062654 locktype1 = 0 +18062654 locktype2 = 2 +18062655 locktype3 = 1 +18062655 goalCount = 8 +18062656 goalTotal = 18 +18062656 otherCount = 11 +~~~ +18064275 UP 12 +18064275 2048 2048 +18065776 DOWN 12 +18065776 0 2048 +18065788 UP 12 +18065788 2048 2048 +18066962 DOWN 12 +18066962 0 2048 +18066982 UP 12 +18066982 2048 2048 +18069995 DOWN 12 +18069995 0 2048 +18070016 UP 12 +18070016 2048 2048 +18070275 CLICK1 +18070275 CLICK2 +~~~ +~~~ +~~~ +18070302 2048 67110912 +~~~ +18070452 2048 2048 +18076097 DOWN 12 +18076097 0 2048 +~~~ +~~~ +18076120 0 0 +~~~ +~~~ +18076122 0 1 +~~~ +18076123 UP 12 +18076123 2048 1 +~~~ +~~~ +18076125 2048 3 +~~~ +~~~ +18076127 2048 7 +~~~ +~~~ +18076128 2048 15 +~~~ +18076129 2048 31 +~~~ +~~~ +18076131 2048 63 +~~~ +~~~ +18076132 2048 127 +~~~ +~~~ +18076134 2048 255 +18076135 homeCount = 32 +18076156 waitCount = 15 +18076157 ripCount = 15 +18076157 locktype1 = 0 +18076158 locktype2 = 2 +18076158 locktype3 = 1 +18076159 goalCount = 8 +18076159 goalTotal = 18 +18076160 otherCount = 11 +~~~ +18076161 CURRENTGOAL IS [2] +~~~ +18076417 DOWN 12 +18076417 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076446 UP 12 +18076446 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076455 homeCount = 32 +18076456 waitCount = 15 +18076456 ripCount = 15 +18076457 locktype1 = 0 +18076457 locktype2 = 2 +18076458 locktype3 = 1 +18076458 goalCount = 8 +18076459 goalTotal = 18 +18076459 otherCount = 11 +~~~ +18076460 CURRENTGOAL IS [2] +~~~ +18076482 DOWN 12 +18076481 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18076512 homeCount = 32 +18076512 waitCount = 15 +18076513 ripCount = 15 +18076513 locktype1 = 0 +18076514 locktype2 = 2 +18076514 locktype3 = 1 +18076515 goalCount = 8 +18076515 goalTotal = 18 +18076516 otherCount = 11 +~~~ +18076517 CURRENTGOAL IS [2] +~~~ +18076538 UP 12 +18076538 2048 255 +18078783 DOWN 12 +18078783 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078807 UP 12 +18078807 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078818 homeCount = 32 +18078818 waitCount = 15 +18078819 ripCount = 15 +18078819 locktype1 = 0 +18078820 locktype2 = 2 +18078820 locktype3 = 1 +18078821 goalCount = 8 +18078821 goalTotal = 18 +18078822 otherCount = 11 +~~~ +18078823 CURRENTGOAL IS [2] +~~~ +18078844 DOWN 12 +18078844 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18078877 homeCount = 32 +18078878 waitCount = 15 +18078878 ripCount = 15 +18078879 locktype1 = 0 +18078879 locktype2 = 2 +18078880 locktype3 = 1 +18078880 goalCount = 8 +18078881 goalTotal = 18 +18078881 otherCount = 11 +~~~ +18078882 CURRENTGOAL IS [2] +~~~ +18082583 UP 2 +18082583 2 255 +~~~ +~~~ +18082608 outer reward +~~~ +18082608 2 131327 +~~~ +~~~ +18082618 DOWN 2 +18082618 0 131327 +~~~ +~~~ +18082642 0 131326 +~~~ +~~~ +18082644 0 131324 +~~~ +~~~ +18082646 0 131320 +~~~ +~~~ +18082647 0 131312 +~~~ +~~~ +18082649 0 131296 +~~~ +~~~ +18082651 0 131264 +~~~ +~~~ +18082653 0 131200 +~~~ +~~~ +18082655 0 131072 +~~~ +~~~ +18082657 0 131584 +18082658 homeCount = 32 +18082658 waitCount = 15 +18082659 ripCount = 15 +18082679 locktype1 = 0 +18082680 locktype2 = 2 +18082680 locktype3 = 1 +18082681 goalCount = 9 +18082681 goalTotal = 19 +18082682 otherCount = 11 +~~~ +18082682 2 131584 +18082895 DOWN 2 +18082895 0 131584 +18082932 2 131584 +18083058 2 512 +18083217 DOWN 2 +18083217 0 512 +18083238 2 512 +18083329 DOWN 2 +18083329 0 512 +18083357 2 512 +18083584 DOWN 2 +18083584 0 512 +18083594 2 512 +18083695 DOWN 2 +18083695 0 512 +18083729 2 512 +18083842 DOWN 2 +18083842 0 512 +18083852 2 512 +18089144 DOWN 2 +18089144 0 512 +18089198 2 512 +18089250 DOWN 2 +18089250 0 512 +18095222 UP 10 +18095222 waslock = 0 +18095222 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18095251 512 16777728 +~~~ +18095401 512 512 +18095403 DOWN 10 +18095403 0 512 +~~~ +~~~ +18095434 0 1536 +~~~ +~~~ +18095436 0 1024 +18095437 homeCount = 33 +18095437 waitCount = 15 +18095438 ripCount = 15 +18095438 locktype1 = 0 +18095439 locktype2 = 2 +18095439 locktype3 = 1 +18095440 goalCount = 9 +18095440 goalTotal = 19 +18095441 otherCount = 11 +~~~ +18095462 UP 10 +18095462 waslock = 0 +18095462 512 1024 +~~~ +18098815 DOWN 10 +18098815 0 1024 +~~~ +~~~ +~~~ +~~~ +18098837 homeCount = 33 +18098837 waitCount = 15 +18098838 ripCount = 15 +18098838 locktype1 = 0 +18098839 locktype2 = 2 +18098839 locktype3 = 1 +18098840 goalCount = 9 +18098840 goalTotal = 19 +18098841 otherCount = 11 +~~~ +18098841 UP 10 +18098842 waslock = 0 +18098841 512 1024 +~~~ +18098941 DOWN 10 +18098941 0 1024 +~~~ +~~~ +~~~ +~~~ +18098969 homeCount = 33 +18098969 waitCount = 15 +18098970 ripCount = 15 +18098970 locktype1 = 0 +18098971 locktype2 = 2 +18098971 locktype3 = 1 +18098972 goalCount = 9 +18098972 goalTotal = 19 +18098973 otherCount = 11 +~~~ +18100646 UP 11 +18100646 1024 1024 +18102966 DOWN 11 +18102966 0 1024 +18102978 UP 11 +18102978 1024 1024 +18104195 DOWN 11 +18104195 0 1024 +18104215 UP 11 +18104215 1024 1024 +18106646 BEEP1 +18106646 BEEP2 +~~~ +~~~ +~~~ +18106667 1024 33555456 +~~~ +18106817 1024 1024 +18106960 DOWN 11 +18106959 0 1024 +18107054 UP 11 +18107054 1024 1024 +~~~ +~~~ +18107351 1024 0 +~~~ +~~~ +18107353 1024 1 +~~~ +~~~ +18107355 1024 3 +~~~ +~~~ +18107357 1024 7 +~~~ +~~~ +18107359 1024 15 +~~~ +~~~ +18107361 1024 31 +~~~ +~~~ +18107362 1024 63 +~~~ +~~~ +18107364 1024 127 +~~~ +~~~ +18107366 1024 255 +18107367 homeCount = 33 +18107368 waitCount = 15 +18107368 ripCount = 16 +18107389 locktype1 = 0 +18107390 locktype2 = 2 +18107390 locktype3 = 1 +18107391 goalCount = 9 +18107391 goalTotal = 19 +18107392 otherCount = 11 +~~~ +18107393 CURRENTGOAL IS [2] +~~~ +18113951 DOWN 11 +18113951 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18113992 homeCount = 33 +18113993 waitCount = 15 +18113993 ripCount = 16 +18113994 locktype1 = 0 +18113994 locktype2 = 2 +18113995 locktype3 = 1 +18113995 goalCount = 9 +18113996 goalTotal = 19 +18113996 otherCount = 11 +~~~ +18113997 CURRENTGOAL IS [2] +~~~ +18114018 UP 11 +18114018 1024 255 +18114037 DOWN 11 +18114037 0 255 +18114051 UP 11 +18114051 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18114071 homeCount = 33 +18114072 waitCount = 15 +18114072 ripCount = 16 +18114073 locktype1 = 0 +18114073 locktype2 = 2 +18114074 locktype3 = 1 +18114074 goalCount = 9 +18114075 goalTotal = 19 +18114075 otherCount = 11 +~~~ +18114076 CURRENTGOAL IS [2] +~~~ +18115869 DOWN 11 +18115869 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18115903 homeCount = 33 +18115904 waitCount = 15 +18115904 ripCount = 16 +18115905 locktype1 = 0 +18115905 locktype2 = 2 +18115906 locktype3 = 1 +18115906 goalCount = 9 +18115907 goalTotal = 19 +18115907 otherCount = 11 +~~~ +18115908 CURRENTGOAL IS [2] +~~~ +18115930 UP 11 +18115929 1024 255 +18115962 DOWN 11 +18115962 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18116001 homeCount = 33 +18116002 waitCount = 15 +18116003 ripCount = 16 +18116003 locktype1 = 0 +18116004 locktype2 = 2 +18116004 locktype3 = 1 +18116005 goalCount = 9 +18116005 goalTotal = 19 +18116005 otherCount = 11 +~~~ +18116007 CURRENTGOAL IS [2] +~~~ +18119662 UP 2 +18119662 2 255 +~~~ +~~~ +18119689 outer reward +~~~ +18119690 2 131327 +~~~ +~~~ +18119694 outerreps = 6 +~~~ +~~~ +18119938 DOWN 2 +18119938 0 131327 +~~~ +~~~ +18119956 0 131326 +~~~ +~~~ +18119958 0 131324 +~~~ +~~~ +18119960 0 131320 +~~~ +~~~ +18119962 0 131312 +~~~ +~~~ +18119964 0 131296 +~~~ +~~~ +18119965 0 131264 +~~~ +~~~ +18119967 0 131200 +~~~ +~~~ +18119969 0 131072 +~~~ +~~~ +18119971 0 131584 +18119972 homeCount = 33 +18119972 waitCount = 15 +18119973 ripCount = 16 +18119994 locktype1 = 0 +18119995 locktype2 = 2 +18119995 locktype3 = 1 +18119996 goalCount = 0 +18119996 goalTotal = 20 +18119997 otherCount = 11 +~~~ +18119997 2 131584 +18120139 2 512 +18120369 DOWN 2 +18120369 0 512 +18120413 2 512 +18120500 DOWN 2 +18120500 0 512 +18120526 2 512 +18120623 DOWN 2 +18120623 0 512 +18120657 2 512 +18120748 DOWN 2 +18120748 0 512 +18120794 2 512 +18120885 DOWN 2 +18120885 0 512 +18120911 2 512 +18121020 DOWN 2 +18121020 0 512 +18121047 2 512 +18121152 DOWN 2 +18121152 0 512 +18121183 2 512 +18122677 DOWN 2 +18122677 0 512 +18122709 2 512 +18125125 DOWN 2 +18125125 0 512 +18125302 2 512 +18125328 DOWN 2 +18125328 0 512 +18125357 2 512 +18128345 DOWN 2 +18128345 0 512 +18128359 2 512 +18128526 DOWN 2 +18128525 0 512 +18128539 2 512 +18128866 DOWN 2 +18128866 0 512 +18133826 UP 10 +18133826 waslock = 0 +18133826 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18133854 512 16777728 +~~~ +18134004 512 512 +18139345 DOWN 10 +18139345 0 512 +~~~ +~~~ +18139368 0 2560 +~~~ +~~~ +18139370 0 2048 +18139371 homeCount = 34 +18139371 waitCount = 15 +18139372 ripCount = 16 +18139372 locktype1 = 0 +18139373 locktype2 = 2 +18139373 locktype3 = 1 +18139374 goalCount = 0 +18139374 goalTotal = 20 +18139375 otherCount = 11 +~~~ +18139396 UP 10 +18139396 waslock = 0 +18139396 512 2048 +~~~ +18139449 DOWN 10 +18139449 0 2048 +~~~ +~~~ +~~~ +~~~ +18139471 homeCount = 34 +18139471 waitCount = 15 +18139472 ripCount = 16 +18139472 locktype1 = 0 +18139473 locktype2 = 2 +18139473 locktype3 = 1 +18139474 goalCount = 0 +18139474 goalTotal = 20 +18139475 otherCount = 11 +~~~ +18141355 UP 12 +18141355 2048 2048 +18143540 DOWN 12 +18143540 0 2048 +18143589 UP 12 +18143589 2048 2048 +18144355 CLICK1 +18144355 CLICK2 +~~~ +~~~ +~~~ +18144383 2048 67110912 +~~~ +18144533 2048 2048 +18149565 DOWN 12 +18149565 0 2048 +18149572 UP 12 +18149572 2048 2048 +~~~ +~~~ +18149589 2048 0 +~~~ +~~~ +18149591 2048 1 +~~~ +~~~ +18149593 2048 3 +~~~ +~~~ +18149595 2048 7 +~~~ +~~~ +18149596 2048 15 +~~~ +~~~ +18149598 2048 31 +~~~ +~~~ +18149600 2048 63 +~~~ +~~~ +18149602 2048 127 +~~~ +~~~ +18149604 2048 255 +18149605 homeCount = 34 +18149605 waitCount = 16 +18149606 ripCount = 16 +18149627 locktype1 = 0 +18149627 locktype2 = 2 +18149628 locktype3 = 1 +18149628 goalCount = 0 +18149629 goalTotal = 20 +18149629 otherCount = 11 +~~~ +18149630 CURRENTGOAL IS [3] +~~~ +18149645 DOWN 12 +18149645 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18149687 homeCount = 34 +18149688 waitCount = 16 +18149688 ripCount = 16 +18149689 locktype1 = 0 +18149689 locktype2 = 2 +18149690 locktype3 = 1 +18149690 goalCount = 0 +18149691 goalTotal = 20 +18149691 otherCount = 11 +~~~ +18149692 CURRENTGOAL IS [3] +~~~ +18149746 UP 12 +18149746 2048 255 +18153121 DOWN 12 +18153121 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18153157 homeCount = 34 +18153158 waitCount = 16 +18153158 ripCount = 16 +18153159 locktype1 = 0 +18153159 locktype2 = 2 +18153160 locktype3 = 1 +18153160 goalCount = 0 +18153161 goalTotal = 20 +18153161 otherCount = 11 +~~~ +18153162 CURRENTGOAL IS [3] +~~~ +18155871 UP 2 +18155871 2 255 +~~~ +~~~ +18156143 DOWN 2 +18156143 0 255 +~~~ +~~~ +18156160 0 254 +~~~ +~~~ +18156162 0 252 +~~~ +~~~ +18156163 0 248 +~~~ +~~~ +18156165 0 240 +~~~ +~~~ +18156167 0 224 +~~~ +~~~ +18156169 0 192 +~~~ +~~~ +18156171 0 128 +~~~ +~~~ +18156172 0 0 +~~~ +~~~ +18156174 0 512 +18156175 homeCount = 34 +18156176 waitCount = 16 +18156176 ripCount = 16 +18156177 locktype1 = 0 +18156198 locktype2 = 2 +18156199 locktype3 = 1 +18156199 goalCount = 0 +18156200 goalTotal = 20 +18156200 otherCount = 12 +~~~ +18156201 2 512 +18156901 DOWN 2 +18156901 0 512 +18163599 UP 10 +18163599 waslock = 0 +18163599 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18163626 512 16777728 +18163628 DOWN 10 +18163628 0 16777728 +~~~ +~~~ +18163651 UP 10 +18163651 waslock = 0 +18163651 512 16777728 +~~~ +~~~ +~~~ +18163654 512 16778240 +18163655 homeCount = 35 +18163655 waitCount = 16 +18163656 ripCount = 16 +18163656 locktype1 = 0 +18163657 locktype2 = 2 +18163657 locktype3 = 1 +18163658 goalCount = 0 +18163679 goalTotal = 20 +18163679 otherCount = 12 +~~~ +~~~ +18163776 512 1024 +18168791 DOWN 10 +18168791 0 1024 +~~~ +~~~ +~~~ +~~~ +18168813 homeCount = 35 +18168814 waitCount = 16 +18168814 ripCount = 16 +18168815 locktype1 = 0 +18168815 locktype2 = 2 +18168816 locktype3 = 1 +18168816 goalCount = 0 +18168817 goalTotal = 20 +18168817 otherCount = 12 +~~~ +18170139 UP 11 +18170139 1024 1024 +18172433 DOWN 11 +18172433 0 1024 +18172442 UP 11 +18172442 1024 1024 +18174140 BEEP1 +18174140 BEEP2 +~~~ +~~~ +~~~ +18174161 1024 33555456 +~~~ +18174311 1024 1024 +18174484 DOWN 11 +18174484 0 1024 +18174503 UP 11 +18174503 1024 1024 +~~~ +~~~ +18174835 1024 0 +~~~ +~~~ +18174837 1024 1 +~~~ +~~~ +18174839 1024 3 +~~~ +~~~ +18174841 1024 7 +~~~ +~~~ +18174842 1024 15 +~~~ +~~~ +18174844 1024 31 +~~~ +~~~ +18174846 1024 63 +~~~ +~~~ +18174848 1024 127 +~~~ +~~~ +18174850 1024 255 +18174851 homeCount = 35 +18174851 waitCount = 16 +18174852 ripCount = 17 +18174873 locktype1 = 0 +18174873 locktype2 = 2 +18174874 locktype3 = 1 +18174874 goalCount = 0 +18174875 goalTotal = 20 +18174875 otherCount = 12 +~~~ +18174876 CURRENTGOAL IS [3] +~~~ +18179712 DOWN 11 +18179712 0 255 +18179726 UP 11 +18179726 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18179746 homeCount = 35 +18179747 waitCount = 16 +18179747 ripCount = 17 +18179748 locktype1 = 0 +18179748 locktype2 = 2 +18179749 locktype3 = 1 +18179749 goalCount = 0 +18179750 goalTotal = 20 +18179750 otherCount = 12 +~~~ +18179751 CURRENTGOAL IS [3] +~~~ +18179980 DOWN 11 +18179980 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18180007 UP 11 +18180007 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18180016 homeCount = 35 +18180017 waitCount = 16 +18180017 ripCount = 17 +18180018 locktype1 = 0 +18180018 locktype2 = 2 +18180019 locktype3 = 1 +18180019 goalCount = 0 +18180020 goalTotal = 20 +18180020 otherCount = 12 +~~~ +18180021 CURRENTGOAL IS [3] +~~~ +18182924 DOWN 11 +18182924 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18182966 homeCount = 35 +18182966 waitCount = 16 +18182967 ripCount = 17 +18182967 locktype1 = 0 +18182968 locktype2 = 2 +18182968 locktype3 = 1 +18182969 goalCount = 0 +18182969 goalTotal = 20 +18182970 otherCount = 12 +~~~ +18182971 CURRENTGOAL IS [3] +~~~ +18185764 UP 8 +18185764 128 255 +~~~ +~~~ +18185790 DOWN 8 +18185790 0 255 +~~~ +~~~ +18185804 0 254 +~~~ +~~~ +18185806 0 252 +~~~ +~~~ +18185808 0 248 +~~~ +~~~ +18185809 0 240 +~~~ +~~~ +18185811 0 224 +~~~ +~~~ +18185813 0 192 +~~~ +~~~ +18185815 0 128 +~~~ +~~~ +18185817 0 0 +~~~ +~~~ +18185819 0 512 +18185820 homeCount = 35 +18185820 waitCount = 16 +18185821 ripCount = 17 +18185821 locktype1 = 0 +18185842 locktype2 = 2 +18185843 locktype3 = 1 +18185843 goalCount = 0 +18185844 goalTotal = 20 +18185844 otherCount = 13 +~~~ +18185900 128 512 +18186287 DOWN 8 +18186287 0 512 +18186568 128 512 +18186592 DOWN 8 +18186592 0 512 +18196202 UP 10 +18196202 waslock = 0 +18196202 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18196229 512 16777728 +~~~ +18196378 512 512 +18200273 DOWN 10 +18200273 0 512 +~~~ +~~~ +18200292 0 1536 +~~~ +~~~ +18200294 0 1024 +18200295 homeCount = 36 +18200296 waitCount = 16 +18200296 ripCount = 17 +18200297 locktype1 = 0 +18200297 locktype2 = 2 +18200298 locktype3 = 1 +18200298 goalCount = 0 +18200299 goalTotal = 20 +18200299 otherCount = 13 +~~~ +18208210 UP 11 +18208210 1024 1024 +18208226 DOWN 11 +18208226 0 1024 +18208284 UP 11 +18208284 1024 1024 +18209774 DOWN 11 +18209774 0 1024 +18209820 UP 11 +18209820 1024 1024 +18210790 DOWN 11 +18210790 0 1024 +18210798 UP 11 +18210798 1024 1024 +18216211 BEEP1 +18216211 BEEP2 +~~~ +~~~ +~~~ +18216234 1024 33555456 +~~~ +18216384 1024 1024 +18223775 DOWN 11 +18223775 0 1024 +~~~ +~~~ +18223793 0 0 +~~~ +~~~ +18223795 0 1 +~~~ +~~~ +18223797 0 3 +~~~ +~~~ +18223798 0 7 +~~~ +~~~ +18223800 0 15 +~~~ +~~~ +18223802 0 31 +~~~ +~~~ +18223804 0 63 +~~~ +~~~ +18223806 0 127 +~~~ +~~~ +18223807 0 255 +18223808 homeCount = 36 +18223809 waitCount = 16 +18223810 ripCount = 18 +18223810 locktype1 = 0 +18223811 locktype2 = 2 +18223831 locktype3 = 1 +18223832 goalCount = 0 +18223832 goalTotal = 20 +18223833 otherCount = 13 +~~~ +18223834 CURRENTGOAL IS [3] +~~~ +18227228 UP 5 +18227228 16 255 +~~~ +18227252 DOWN 5 +18227252 0 255 +~~~ +~~~ +~~~ +18227283 0 254 +~~~ +~~~ +18227284 0 252 +~~~ +~~~ +18227286 0 248 +~~~ +~~~ +18227288 0 240 +~~~ +~~~ +18227290 0 224 +~~~ +~~~ +18227292 0 192 +~~~ +~~~ +18227294 0 128 +~~~ +~~~ +18227295 0 0 +~~~ +~~~ +18227297 0 512 +18227298 homeCount = 36 +18227299 waitCount = 16 +18227299 ripCount = 18 +18227300 locktype1 = 0 +18227321 locktype2 = 2 +18227321 locktype3 = 1 +18227322 goalCount = 0 +18227322 goalTotal = 20 +18227323 otherCount = 14 +~~~ +18227714 16 512 +18228137 DOWN 5 +18228137 0 512 +18235161 UP 10 +18235161 waslock = 0 +18235161 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18235189 512 16777728 +~~~ +18235339 512 512 +18235410 DOWN 10 +18235410 0 512 +18235431 UP 10 +18235431 waslock = 0 +18235431 512 512 +~~~ +~~~ +~~~ +18235434 512 1536 +~~~ +18235435 512 1024 +18235436 homeCount = 37 +18235436 waitCount = 16 +18235437 ripCount = 18 +18235437 locktype1 = 0 +18235438 locktype2 = 2 +18235438 locktype3 = 1 +18235460 goalCount = 0 +18235460 goalTotal = 20 +18235460 otherCount = 14 +~~~ +~~~ +18235511 DOWN 10 +18235511 0 1024 +~~~ +~~~ +~~~ +~~~ +18235536 homeCount = 37 +18235537 waitCount = 16 +18235537 ripCount = 18 +18235538 locktype1 = 0 +18235538 locktype2 = 2 +18235539 locktype3 = 1 +18235539 goalCount = 0 +18235540 goalTotal = 20 +18235540 otherCount = 14 +~~~ +18235607 UP 10 +18235607 waslock = 0 +18235607 512 1024 +~~~ +18239208 DOWN 10 +18239208 0 1024 +18239219 UP 10 +18239220 waslock = 0 +18239219 512 1024 +~~~ +~~~ +~~~ +~~~ +18239239 homeCount = 37 +18239239 waitCount = 16 +18239240 ripCount = 18 +18239240 locktype1 = 0 +18239241 locktype2 = 2 +18239241 locktype3 = 1 +18239242 goalCount = 0 +18239242 goalTotal = 20 +18239243 otherCount = 14 +~~~ +~~~ +18239327 DOWN 10 +18239327 0 1024 +~~~ +~~~ +~~~ +~~~ +18239348 homeCount = 37 +18239348 waitCount = 16 +18239349 ripCount = 18 +18239349 locktype1 = 0 +18239350 locktype2 = 2 +18239350 locktype3 = 1 +18239351 goalCount = 0 +18239351 goalTotal = 20 +18239352 otherCount = 14 +~~~ +18239392 UP 10 +18239393 waslock = 0 +18239392 512 1024 +18239414 DOWN 10 +18239414 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +18239439 homeCount = 37 +18239439 waitCount = 16 +18239440 ripCount = 18 +18239440 locktype1 = 0 +18239441 locktype2 = 2 +18239441 locktype3 = 1 +18239442 goalCount = 0 +18239442 goalTotal = 20 +18239443 otherCount = 14 +~~~ +18242195 UP 11 +18242195 1024 1024 +18242247 DOWN 11 +18242247 0 1024 +18242425 UP 11 +18242425 1024 1024 +18242444 DOWN 11 +18242444 0 1024 +18242544 UP 11 +18242544 1024 1024 +18245225 DOWN 11 +18245225 0 1024 +18245246 UP 11 +18245246 1024 1024 +18246696 BEEP1 +18246696 BEEP2 +~~~ +~~~ +~~~ +18246717 1024 33555456 +~~~ +18246867 1024 1024 +18252109 DOWN 11 +18252109 0 1024 +18252130 UP 11 +18252130 1024 1024 +~~~ +~~~ +18252136 1024 0 +~~~ +~~~ +18252138 1024 1 +~~~ +~~~ +18252140 1024 3 +~~~ +~~~ +18252142 1024 7 +~~~ +~~~ +18252144 1024 15 +~~~ +~~~ +18252145 1024 31 +~~~ +~~~ +18252147 1024 63 +~~~ +~~~ +18252149 1024 127 +~~~ +~~~ +18252151 1024 255 +18252152 homeCount = 37 +18252153 waitCount = 16 +18252153 ripCount = 19 +18252174 locktype1 = 0 +18252175 locktype2 = 2 +18252175 locktype3 = 1 +18252176 goalCount = 0 +18252176 goalTotal = 20 +18252177 otherCount = 14 +~~~ +18252178 CURRENTGOAL IS [3] +~~~ +18254872 DOWN 11 +18254872 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18254913 homeCount = 37 +18254913 waitCount = 16 +18254914 ripCount = 19 +18254914 locktype1 = 0 +18254915 locktype2 = 2 +18254915 locktype3 = 1 +18254916 goalCount = 0 +18254916 goalTotal = 20 +18254917 otherCount = 14 +~~~ +18254918 CURRENTGOAL IS [3] +~~~ +18258249 UP 4 +18258249 8 255 +~~~ +~~~ +18258276 DOWN 4 +18258276 0 255 +~~~ +~~~ +18258294 0 254 +~~~ +~~~ +18258296 0 252 +~~~ +~~~ +18258298 0 248 +~~~ +~~~ +18258300 0 240 +~~~ +~~~ +18258301 0 224 +~~~ +~~~ +18258303 0 192 +~~~ +~~~ +18258305 0 128 +~~~ +~~~ +18258307 0 0 +~~~ +~~~ +18258309 0 512 +18258310 homeCount = 37 +18258310 waitCount = 16 +18258311 ripCount = 19 +18258311 locktype1 = 0 +18258333 locktype2 = 2 +18258333 locktype3 = 1 +18258333 goalCount = 0 +18258334 goalTotal = 20 +18258334 otherCount = 15 +~~~ +18258335 8 512 +18259587 DOWN 4 +18259587 0 512 +18266478 UP 10 +18266478 waslock = 0 +18266477 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18266509 512 16777728 +~~~ +18266659 512 512 +18266771 DOWN 10 +18266771 0 512 +~~~ +~~~ +18266793 0 2560 +~~~ +~~~ +18266795 0 2048 +18266796 homeCount = 38 +18266796 waitCount = 16 +18266797 ripCount = 19 +18266797 locktype1 = 0 +18266798 locktype2 = 2 +18266798 locktype3 = 1 +18266799 goalCount = 0 +18266799 goalTotal = 20 +18266800 otherCount = 15 +~~~ +18266821 UP 10 +18266821 waslock = 0 +18266821 512 2048 +~~~ +18272909 DOWN 10 +18272909 0 2048 +~~~ +~~~ +~~~ +~~~ +18272936 homeCount = 38 +18272936 waitCount = 16 +18272937 ripCount = 19 +18272937 locktype1 = 0 +18272938 locktype2 = 2 +18272938 locktype3 = 1 +18272939 goalCount = 0 +18272939 goalTotal = 20 +18272940 otherCount = 15 +~~~ +18274852 UP 12 +18274852 2048 2048 +18278279 DOWN 12 +18278279 0 2048 +18278286 UP 12 +18278286 2048 2048 +18278290 DOWN 12 +18278290 0 2048 +18278305 UP 12 +18278305 2048 2048 +18281568 DOWN 12 +18281568 0 2048 +18281603 UP 12 +18281603 2048 2048 +18282352 CLICK1 +18282352 CLICK2 +~~~ +~~~ +~~~ +18282379 2048 67110912 +~~~ +18282529 2048 2048 +18288085 DOWN 12 +18288085 0 2048 +~~~ +~~~ +18288103 0 0 +~~~ +~~~ +18288105 0 1 +~~~ +18288106 UP 12 +18288106 2048 1 +~~~ +~~~ +~~~ +18288109 2048 7 +~~~ +~~~ +18288110 2048 15 +~~~ +~~~ +18288112 2048 31 +~~~ +~~~ +18288114 2048 63 +~~~ +~~~ +18288116 2048 127 +~~~ +~~~ +18288118 2048 255 +18288119 homeCount = 38 +18288119 waitCount = 17 +18288140 ripCount = 19 +18288140 locktype1 = 0 +18288141 locktype2 = 2 +18288141 locktype3 = 1 +18288142 goalCount = 0 +18288142 goalTotal = 20 +18288143 otherCount = 15 +~~~ +18288144 CURRENTGOAL IS [3] +~~~ +18288166 DOWN 12 +18288166 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18288203 homeCount = 38 +18288203 waitCount = 17 +18288204 ripCount = 19 +18288204 locktype1 = 0 +18288205 locktype2 = 2 +18288205 locktype3 = 1 +18288206 goalCount = 0 +18288206 goalTotal = 20 +18288207 otherCount = 15 +~~~ +18288208 CURRENTGOAL IS [3] +~~~ +18292311 UP 3 +18292311 4 255 +~~~ +~~~ +18292337 outer reward +~~~ +18292338 4 262399 +~~~ +~~~ +18292624 DOWN 3 +18292624 0 262399 +~~~ +~~~ +18292648 0 262398 +~~~ +~~~ +18292650 0 262396 +~~~ +~~~ +18292651 0 262392 +~~~ +~~~ +18292653 0 262384 +~~~ +~~~ +18292655 0 262368 +~~~ +18292656 4 262368 +~~~ +~~~ +18292658 4 262336 +~~~ +~~~ +18292660 4 262272 +~~~ +18292661 4 262144 +~~~ +~~~ +18292662 4 262656 +18292663 homeCount = 38 +18292684 waitCount = 17 +18292685 ripCount = 19 +18292685 locktype1 = 0 +18292686 locktype2 = 2 +18292686 locktype3 = 1 +18292687 goalCount = 1 +18292687 goalTotal = 21 +18292688 otherCount = 15 +~~~ +18292787 4 512 +18293056 DOWN 3 +18293056 0 512 +18293081 4 512 +18293179 DOWN 3 +18293179 0 512 +18293201 4 512 +18293306 DOWN 3 +18293306 0 512 +18293327 4 512 +18293431 DOWN 3 +18293431 0 512 +18293456 4 512 +18293561 DOWN 3 +18293561 0 512 +18293585 4 512 +18293698 DOWN 3 +18293698 0 512 +18293718 4 512 +18293833 DOWN 3 +18293833 0 512 +18293855 4 512 +18293976 DOWN 3 +18293976 0 512 +18293991 4 512 +18294119 DOWN 3 +18294119 0 512 +18294131 4 512 +18299516 DOWN 3 +18299516 0 512 +18299584 4 512 +18299611 DOWN 3 +18299611 0 512 +18305797 UP 10 +18305797 waslock = 0 +18305797 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18305825 512 16777728 +~~~ +18305975 512 512 +18311404 DOWN 10 +18311404 0 512 +~~~ +~~~ +18311429 0 1536 +~~~ +~~~ +18311431 0 1024 +18311432 homeCount = 39 +18311432 waitCount = 17 +18311433 ripCount = 19 +18311433 locktype1 = 0 +18311434 locktype2 = 2 +18311434 locktype3 = 1 +18311435 goalCount = 1 +18311435 goalTotal = 21 +18311436 otherCount = 15 +~~~ +18311457 UP 10 +18311457 waslock = 0 +18311457 512 1024 +~~~ +18311489 DOWN 10 +18311489 0 1024 +~~~ +~~~ +~~~ +~~~ +18311503 homeCount = 39 +18311503 waitCount = 17 +18311504 ripCount = 19 +18311504 locktype1 = 0 +18311505 locktype2 = 2 +18311505 locktype3 = 1 +18311506 goalCount = 1 +18311506 goalTotal = 21 +18311507 otherCount = 15 +~~~ +18313122 UP 11 +18313122 1024 1024 +18322122 BEEP1 +18322122 BEEP2 +~~~ +~~~ +~~~ +18322144 1024 33555456 +~~~ +18322294 1024 1024 +18326944 DOWN 11 +18326944 0 1024 +18326951 UP 11 +18326951 1024 1024 +~~~ +~~~ +18326969 1024 0 +~~~ +~~~ +18326971 1024 1 +~~~ +~~~ +18326973 1024 3 +~~~ +~~~ +18326975 1024 7 +~~~ +~~~ +18326976 1024 15 +~~~ +~~~ +18326978 1024 31 +~~~ +~~~ +18326980 1024 63 +~~~ +~~~ +18326982 1024 127 +~~~ +~~~ +18326984 1024 255 +18326985 homeCount = 39 +18326985 waitCount = 17 +18326986 ripCount = 20 +18327007 locktype1 = 0 +18327007 locktype2 = 2 +18327008 locktype3 = 1 +18327008 goalCount = 1 +18327009 goalTotal = 21 +18327009 otherCount = 15 +~~~ +18327010 CURRENTGOAL IS [3] +~~~ +18327218 DOWN 11 +18327218 0 255 +~~~ +~~~ +~~~ +18327242 UP 11 +18327242 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18327257 homeCount = 39 +18327257 waitCount = 17 +18327258 ripCount = 20 +18327258 locktype1 = 0 +18327259 locktype2 = 2 +18327259 locktype3 = 1 +18327260 goalCount = 1 +18327260 goalTotal = 21 +18327261 otherCount = 15 +~~~ +18327262 CURRENTGOAL IS [3] +~~~ +18330417 DOWN 11 +18330417 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18330460 homeCount = 39 +18330461 waitCount = 17 +18330461 ripCount = 20 +18330462 locktype1 = 0 +18330462 locktype2 = 2 +18330463 locktype3 = 1 +18330463 goalCount = 1 +18330464 goalTotal = 21 +18330464 otherCount = 15 +~~~ +18330465 CURRENTGOAL IS [3] +~~~ +18335296 UP 2 +18335296 2 255 +~~~ +~~~ +18335330 DOWN 2 +18335330 0 255 +~~~ +18335345 2 255 +~~~ +~~~ +18335347 2 254 +~~~ +~~~ +18335348 2 252 +~~~ +18335350 2 248 +~~~ +~~~ +18335351 2 240 +~~~ +~~~ +18335353 2 224 +~~~ +~~~ +18335355 2 192 +~~~ +~~~ +18335357 2 128 +~~~ +~~~ +18335358 2 0 +~~~ +~~~ +18335360 2 512 +18335361 homeCount = 39 +18335362 waitCount = 17 +18335362 ripCount = 20 +18335384 locktype1 = 0 +18335384 locktype2 = 2 +18335385 locktype3 = 1 +18335385 goalCount = 1 +18335385 goalTotal = 21 +18335386 otherCount = 16 +~~~ +18335768 DOWN 2 +18335768 0 512 +18335780 2 512 +18336120 DOWN 2 +18336120 0 512 +18336346 2 512 +18336362 DOWN 2 +18336362 0 512 +18336949 2 512 +18337029 DOWN 2 +18337029 0 512 +18340544 UP 10 +18340544 waslock = 0 +18340544 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18340570 512 16777728 +~~~ +18340720 512 512 +18344340 DOWN 10 +18344340 0 512 +~~~ +~~~ +18344365 0 2560 +~~~ +~~~ +18344367 0 2048 +18344368 homeCount = 40 +18344368 waitCount = 17 +18344369 ripCount = 20 +18344369 locktype1 = 0 +18344370 locktype2 = 2 +18344370 locktype3 = 1 +18344371 goalCount = 1 +18344371 goalTotal = 21 +18344372 otherCount = 16 +~~~ +18344393 UP 10 +18344393 waslock = 0 +18344393 512 2048 +~~~ +18344426 DOWN 10 +18344426 0 2048 +~~~ +~~~ +~~~ +~~~ +18344451 homeCount = 40 +18344451 waitCount = 17 +18344452 ripCount = 20 +18344452 locktype1 = 0 +18344453 locktype2 = 2 +18344453 locktype3 = 1 +18344454 goalCount = 1 +18344454 goalTotal = 21 +18344455 otherCount = 16 +~~~ +18346034 UP 12 +18346034 2048 2048 +18353034 CLICK1 +18353034 CLICK2 +~~~ +~~~ +~~~ +18353058 2048 67110912 +~~~ +18353208 2048 2048 +18353356 DOWN 12 +18353356 0 2048 +~~~ +~~~ +18353377 0 0 +~~~ +~~~ +18353379 0 1 +~~~ +~~~ +18353381 0 3 +~~~ +~~~ +18353383 0 7 +~~~ +~~~ +18353385 0 15 +~~~ +~~~ +18353387 0 31 +~~~ +~~~ +18353388 0 63 +~~~ +~~~ +18353390 0 127 +~~~ +~~~ +18353392 0 255 +18353393 homeCount = 40 +18353394 waitCount = 18 +18353394 ripCount = 20 +18353395 locktype1 = 0 +18353395 locktype2 = 2 +18353416 locktype3 = 1 +18353417 goalCount = 1 +18353417 goalTotal = 21 +18353418 otherCount = 16 +~~~ +18353419 CURRENTGOAL IS [3] +~~~ +18353419 UP 12 +18353419 2048 255 +18359231 DOWN 12 +18359231 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18359273 homeCount = 40 +18359274 waitCount = 18 +18359274 ripCount = 20 +18359275 locktype1 = 0 +18359276 locktype2 = 2 +18359276 locktype3 = 1 +18359276 goalCount = 1 +18359277 goalTotal = 21 +18359277 otherCount = 16 +~~~ +18359279 CURRENTGOAL IS [3] +~~~ +18359318 UP 12 +18359318 2048 255 +18359326 DOWN 12 +18359326 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18359353 homeCount = 40 +18359354 waitCount = 18 +18359354 ripCount = 20 +18359355 locktype1 = 0 +18359355 locktype2 = 2 +18359356 locktype3 = 1 +18359356 goalCount = 1 +18359357 goalTotal = 21 +18359357 otherCount = 16 +~~~ +18359358 CURRENTGOAL IS [3] +~~~ +18367152 UP 10 +18367152 waslock = 0 +18367152 512 255 +~~~ +18367170 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18367178 512 254 +~~~ +~~~ +18367180 512 252 +~~~ +~~~ +18367181 512 248 +~~~ +~~~ +18367183 512 240 +~~~ +~~~ +18367185 512 224 +~~~ +~~~ +18367187 512 192 +~~~ +~~~ +18367189 512 128 +~~~ +~~~ +18367191 512 0 +~~~ +~~~ +~~~ +18367431 0 0 +18367494 512 0 +18368467 0 0 +18370070 512 0 +18370115 0 0 +18390750 512 0 +18390835 0 0 +18390853 512 0 +18391792 0 0 +18391867 512 0 +18392170 LOCKEND +~~~ +~~~ +~~~ +18392191 512 512 +18392406 DOWN 10 +18392406 0 512 +18392474 UP 10 +18392474 waslock = 0 +18392474 512 512 +18392493 DOWN 10 +18392493 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18392519 0 16777728 +~~~ +~~~ +~~~ +18392522 0 16778752 +~~~ +~~~ +18392524 0 16778240 +18392525 homeCount = 41 +18392525 waitCount = 18 +18392526 ripCount = 20 +18392526 locktype1 = 0 +18392527 locktype2 = 3 +18392527 locktype3 = 1 +18392528 goalCount = 1 +18392528 goalTotal = 21 +18392529 otherCount = 16 +~~~ +18392654 UP 10 +18392654 waslock = 0 +18392654 512 16778240 +18392669 512 1024 +~~~ +18392693 DOWN 10 +18392693 0 1024 +~~~ +~~~ +~~~ +~~~ +18392714 homeCount = 41 +18392715 waitCount = 18 +18392715 ripCount = 20 +18392716 locktype1 = 0 +18392716 locktype2 = 3 +18392717 locktype3 = 1 +18392717 goalCount = 1 +18392718 goalTotal = 21 +18392718 otherCount = 16 +~~~ +18392893 UP 10 +18392894 waslock = 0 +18392893 512 1024 +~~~ +18399200 DOWN 10 +18399200 0 1024 +~~~ +~~~ +~~~ +~~~ +18399223 homeCount = 41 +18399224 waitCount = 18 +18399224 ripCount = 20 +18399225 locktype1 = 0 +18399225 locktype2 = 3 +18399226 locktype3 = 1 +18399226 goalCount = 1 +18399227 goalTotal = 21 +18399227 otherCount = 16 +~~~ +18399231 UP 10 +18399231 waslock = 0 +18399231 512 1024 +~~~ +18399278 DOWN 10 +18399278 0 1024 +~~~ +~~~ +~~~ +~~~ +18399297 homeCount = 41 +18399297 waitCount = 18 +18399298 ripCount = 20 +18399298 locktype1 = 0 +18399299 locktype2 = 3 +18399299 locktype3 = 1 +18399300 goalCount = 1 +18399300 goalTotal = 21 +18399301 otherCount = 16 +~~~ +18402849 UP 11 +18402849 1024 1024 +18403841 DOWN 11 +18403841 0 1024 +18403876 UP 11 +18403876 1024 1024 +18404665 DOWN 11 +18404665 0 1024 +18404719 UP 11 +18404719 1024 1024 +18405850 BEEP1 +18405850 BEEP2 +~~~ +~~~ +~~~ +18405873 1024 33555456 +~~~ +18406023 1024 1024 +18411287 DOWN 11 +18411286 0 1024 +~~~ +~~~ +18411311 0 0 +~~~ +~~~ +18411313 0 1 +~~~ +~~~ +18411315 0 3 +~~~ +~~~ +18411317 UP 11 +18411317 1024 7 +~~~ +~~~ +18411319 1024 15 +~~~ +~~~ +18411320 1024 31 +~~~ +~~~ +18411322 1024 63 +~~~ +~~~ +18411324 1024 127 +~~~ +~~~ +18411326 1024 255 +18411327 homeCount = 41 +18411327 waitCount = 18 +18411349 ripCount = 21 +18411349 locktype1 = 0 +18411349 locktype2 = 3 +18411350 locktype3 = 1 +18411350 goalCount = 1 +18411351 goalTotal = 21 +18411352 otherCount = 16 +~~~ +18411353 CURRENTGOAL IS [3] +~~~ +18411418 DOWN 11 +18411418 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18411461 homeCount = 41 +18411461 waitCount = 18 +18411462 ripCount = 21 +18411462 locktype1 = 0 +18411463 locktype2 = 3 +18411463 locktype3 = 1 +18411464 goalCount = 1 +18411464 goalTotal = 21 +18411465 otherCount = 16 +~~~ +18411466 CURRENTGOAL IS [3] +~~~ +18411487 UP 11 +18411487 1024 255 +18411552 DOWN 11 +18411552 0 255 +18411570 UP 11 +18411570 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18411606 homeCount = 41 +18411606 waitCount = 18 +18411607 ripCount = 21 +18411607 locktype1 = 0 +18411608 locktype2 = 3 +18411608 locktype3 = 1 +18411609 goalCount = 1 +18411609 goalTotal = 21 +18411610 otherCount = 16 +~~~ +18411611 CURRENTGOAL IS [3] +~~~ +18413548 DOWN 11 +18413548 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18413589 homeCount = 41 +18413590 waitCount = 18 +18413590 ripCount = 21 +18413591 locktype1 = 0 +18413591 locktype2 = 3 +18413592 locktype3 = 1 +18413592 goalCount = 1 +18413593 goalTotal = 21 +18413593 otherCount = 16 +~~~ +18413594 CURRENTGOAL IS [3] +~~~ +18413618 UP 11 +18413618 1024 255 +18413653 DOWN 11 +18413653 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18413689 homeCount = 41 +18413690 waitCount = 18 +18413691 ripCount = 21 +18413691 locktype1 = 0 +18413692 locktype2 = 3 +18413692 locktype3 = 1 +18413693 goalCount = 1 +18413693 goalTotal = 21 +18413694 otherCount = 16 +~~~ +18413695 CURRENTGOAL IS [3] +~~~ +18427752 UP 3 +18427752 4 255 +~~~ +~~~ +18427780 outer reward +~~~ +18427781 4 262399 +~~~ +~~~ +18428037 DOWN 3 +18428037 0 262399 +~~~ +~~~ +18428056 0 262398 +~~~ +~~~ +18428057 0 262396 +~~~ +~~~ +18428059 0 262392 +~~~ +~~~ +18428061 0 262384 +~~~ +~~~ +18428063 0 262368 +~~~ +~~~ +18428065 0 262336 +~~~ +~~~ +18428067 0 262272 +~~~ +~~~ +18428068 0 262144 +~~~ +~~~ +18428070 0 262656 +18428071 homeCount = 41 +18428072 waitCount = 18 +18428072 ripCount = 21 +18428093 locktype1 = 0 +18428094 locktype2 = 3 +18428094 locktype3 = 1 +18428095 goalCount = 2 +18428095 goalTotal = 22 +18428096 otherCount = 16 +~~~ +18428096 4 262656 +18428230 4 512 +18428443 DOWN 3 +18428443 0 512 +18428476 4 512 +18428561 DOWN 3 +18428561 0 512 +18428599 4 512 +18428685 DOWN 3 +18428685 0 512 +18428724 4 512 +18428808 DOWN 3 +18428808 0 512 +18428850 4 512 +18428934 DOWN 3 +18428934 0 512 +18428970 4 512 +18429072 DOWN 3 +18429072 0 512 +18429100 4 512 +18429211 DOWN 3 +18429211 0 512 +18429239 4 512 +18429351 DOWN 3 +18429351 0 512 +18429374 4 512 +18429495 DOWN 3 +18429495 0 512 +18429514 4 512 +18429638 DOWN 3 +18429638 0 512 +18429655 4 512 +18435540 DOWN 3 +18435540 0 512 +18435579 4 512 +18435628 DOWN 3 +18435628 0 512 +18441200 UP 10 +18441200 waslock = 0 +18441200 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18441225 512 16777728 +~~~ +18441375 512 512 +18446646 DOWN 10 +18446646 0 512 +18446663 UP 10 +18446663 waslock = 0 +18446663 512 512 +~~~ +~~~ +18446669 512 1536 +~~~ +~~~ +18446671 512 1024 +18446672 homeCount = 42 +18446673 waitCount = 18 +18446673 ripCount = 21 +18446674 locktype1 = 0 +18446674 locktype2 = 3 +18446675 locktype3 = 1 +18446675 goalCount = 2 +18446676 goalTotal = 22 +18446676 otherCount = 16 +~~~ +~~~ +18446731 DOWN 10 +18446731 0 1024 +~~~ +~~~ +~~~ +~~~ +18446752 homeCount = 42 +18446752 waitCount = 18 +18446753 ripCount = 21 +18446753 locktype1 = 0 +18446754 locktype2 = 3 +18446754 locktype3 = 1 +18446755 goalCount = 2 +18446755 goalTotal = 22 +18446756 otherCount = 16 +~~~ +18449519 UP 11 +18449519 1024 1024 +18449878 DOWN 11 +18449878 0 1024 +18450078 LOCKOUT 3 +~~~ +18450101 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +18450105 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18463180 UP 1 +18463180 1 0 +18465562 DOWN 1 +18465562 0 0 +18465583 1 0 +18465670 DOWN 1 +18465670 0 0 +18465744 1 0 +18465767 DOWN 1 +18465767 0 0 +18475101 LOCKEND +~~~ +~~~ +~~~ +18475120 0 512 +18476607 UP 10 +18476608 waslock = 0 +18476607 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18476638 512 16777728 +~~~ +18476788 512 512 +18476832 DOWN 10 +18476832 0 512 +18476847 UP 10 +18476848 waslock = 0 +18476847 512 512 +~~~ +~~~ +18476852 512 2560 +~~~ +~~~ +18476854 512 2048 +18476855 homeCount = 43 +18476855 waitCount = 18 +18476856 ripCount = 21 +18476856 locktype1 = 0 +18476857 locktype2 = 3 +18476857 locktype3 = 2 +18476858 goalCount = 2 +18476858 goalTotal = 22 +18476859 otherCount = 16 +~~~ +~~~ +18477271 DOWN 10 +18477271 0 2048 +~~~ +~~~ +~~~ +~~~ +18477297 homeCount = 43 +18477297 waitCount = 18 +18477298 ripCount = 21 +18477298 locktype1 = 0 +18477299 locktype2 = 3 +18477299 locktype3 = 2 +18477299 goalCount = 2 +18477300 goalTotal = 22 +18477300 otherCount = 16 +~~~ +18477304 UP 10 +18477305 waslock = 0 +18477304 512 2048 +~~~ +18480504 DOWN 10 +18480503 0 2048 +~~~ +~~~ +~~~ +~~~ +18480533 homeCount = 43 +18480533 waitCount = 18 +18480534 ripCount = 21 +18480534 locktype1 = 0 +18480535 locktype2 = 3 +18480535 locktype3 = 2 +18480535 goalCount = 2 +18480536 goalTotal = 22 +18480536 otherCount = 16 +~~~ +18486382 UP 12 +18486382 2048 2048 +18489050 DOWN 12 +18489050 0 2048 +18489054 UP 12 +18489054 2048 2048 +18489417 DOWN 12 +18489417 0 2048 +18489429 UP 12 +18489429 2048 2048 +18492382 CLICK1 +18492382 CLICK2 +~~~ +~~~ +~~~ +18492402 2048 67110912 +~~~ +18492552 2048 2048 +18499697 DOWN 12 +18499697 0 2048 +~~~ +~~~ +18499721 0 0 +~~~ +~~~ +18499722 0 1 +~~~ +~~~ +18499724 0 3 +~~~ +~~~ +18499726 0 7 +~~~ +~~~ +18499728 0 15 +~~~ +~~~ +18499730 0 31 +~~~ +~~~ +18499731 0 63 +~~~ +~~~ +18499733 0 127 +~~~ +~~~ +18499735 0 255 +18499736 homeCount = 43 +18499737 waitCount = 19 +18499737 ripCount = 21 +18499738 locktype1 = 0 +18499738 locktype2 = 3 +18499759 locktype3 = 2 +18499759 goalCount = 2 +18499760 goalTotal = 22 +18499760 otherCount = 16 +~~~ +18499761 CURRENTGOAL IS [3] +~~~ +18499762 UP 12 +18499762 2048 255 +18499791 DOWN 12 +18499791 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18499824 homeCount = 43 +18499824 waitCount = 19 +18499825 ripCount = 21 +18499825 locktype1 = 0 +18499826 locktype2 = 3 +18499826 locktype3 = 2 +18499827 goalCount = 2 +18499827 goalTotal = 22 +18499828 otherCount = 16 +~~~ +18499829 CURRENTGOAL IS [3] +~~~ +18503006 UP 3 +18503006 4 255 +~~~ +~~~ +18503026 outer reward +~~~ +18503026 4 262399 +~~~ +~~~ +18503213 DOWN 3 +18503213 0 262399 +~~~ +~~~ +18503234 0 262398 +~~~ +~~~ +18503236 0 262396 +~~~ +~~~ +18503238 0 262392 +~~~ +~~~ +18503240 0 262384 +~~~ +~~~ +18503242 0 262368 +~~~ +~~~ +18503243 0 262336 +~~~ +~~~ +18503245 0 262272 +~~~ +~~~ +18503247 0 262144 +~~~ +~~~ +18503249 0 262656 +18503250 homeCount = 43 +18503250 waitCount = 19 +18503251 ripCount = 21 +18503272 locktype1 = 0 +18503273 locktype2 = 3 +18503273 locktype3 = 2 +18503274 goalCount = 3 +18503274 goalTotal = 23 +18503275 otherCount = 16 +~~~ +18503279 4 262656 +18503402 DOWN 3 +18503402 0 262656 +18503448 4 262656 +18503476 4 512 +18503554 DOWN 3 +18503554 0 512 +18503589 4 512 +18504212 DOWN 3 +18504212 0 512 +18504219 4 512 +18504339 DOWN 3 +18504339 0 512 +18504353 4 512 +18504473 DOWN 3 +18504473 0 512 +18504487 4 512 +18504613 DOWN 3 +18504613 0 512 +18504623 4 512 +18511674 DOWN 3 +18511674 0 512 +18516945 UP 10 +18516945 waslock = 0 +18516944 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18516972 512 16777728 +~~~ +18517021 DOWN 10 +18517021 0 16777728 +~~~ +~~~ +18517045 0 16779776 +~~~ +~~~ +18517047 0 16779264 +18517048 homeCount = 44 +18517049 waitCount = 19 +18517049 ripCount = 21 +18517050 locktype1 = 0 +18517050 locktype2 = 3 +18517051 locktype3 = 2 +18517051 goalCount = 3 +18517052 goalTotal = 23 +18517052 otherCount = 16 +~~~ +18517073 UP 10 +18517073 waslock = 0 +18517073 512 16779264 +~~~ +18517122 512 2048 +18517244 DOWN 10 +18517244 0 2048 +~~~ +~~~ +~~~ +~~~ +18517267 homeCount = 44 +18517268 waitCount = 19 +18517268 ripCount = 21 +18517269 locktype1 = 0 +18517269 locktype2 = 3 +18517270 locktype3 = 2 +18517270 goalCount = 3 +18517271 goalTotal = 23 +18517271 otherCount = 16 +~~~ +18517332 UP 10 +18517332 waslock = 0 +18517332 512 2048 +~~~ +18523840 DOWN 10 +18523840 0 2048 +~~~ +~~~ +~~~ +~~~ +18523866 homeCount = 44 +18523867 waitCount = 19 +18523867 ripCount = 21 +18523868 locktype1 = 0 +18523868 locktype2 = 3 +18523869 locktype3 = 2 +18523869 goalCount = 3 +18523870 goalTotal = 23 +18523870 otherCount = 16 +~~~ +18523918 UP 10 +18523918 waslock = 0 +18523918 512 2048 +~~~ +18523968 DOWN 10 +18523968 0 2048 +~~~ +~~~ +~~~ +~~~ +18524000 homeCount = 44 +18524000 waitCount = 19 +18524001 ripCount = 21 +18524001 locktype1 = 0 +18524002 locktype2 = 3 +18524002 locktype3 = 2 +18524003 goalCount = 3 +18524003 goalTotal = 23 +18524004 otherCount = 16 +~~~ +18526588 UP 12 +18526588 2048 2048 +18528844 DOWN 12 +18528844 0 2048 +18528979 UP 12 +18528979 2048 2048 +18530361 DOWN 12 +18530361 0 2048 +18530370 UP 12 +18530370 2048 2048 +18533589 CLICK1 +18533589 CLICK2 +~~~ +~~~ +~~~ +18533616 2048 67110912 +~~~ +18533766 2048 2048 +18539900 DOWN 12 +18539900 0 2048 +18539915 UP 12 +18539915 2048 2048 +~~~ +~~~ +18539936 2048 0 +~~~ +~~~ +18539938 2048 1 +~~~ +~~~ +18539940 2048 3 +~~~ +~~~ +18539942 2048 7 +~~~ +~~~ +18539944 2048 15 +~~~ +~~~ +18539945 2048 31 +~~~ +~~~ +18539947 2048 63 +~~~ +~~~ +18539949 2048 127 +~~~ +~~~ +18539951 2048 255 +18539952 homeCount = 44 +18539952 waitCount = 20 +18539953 ripCount = 21 +18539974 locktype1 = 0 +18539974 locktype2 = 3 +18539975 locktype3 = 2 +18539975 goalCount = 3 +18539976 goalTotal = 23 +18539976 otherCount = 16 +~~~ +18539978 CURRENTGOAL IS [3] +~~~ +18539978 DOWN 12 +18539978 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18540031 homeCount = 44 +18540031 waitCount = 20 +18540032 ripCount = 21 +18540032 locktype1 = 0 +18540033 locktype2 = 3 +18540033 locktype3 = 2 +18540034 goalCount = 3 +18540034 goalTotal = 23 +18540035 otherCount = 16 +~~~ +18540036 CURRENTGOAL IS [3] +~~~ +18540070 UP 12 +18540070 2048 255 +18541775 DOWN 12 +18541775 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18541811 homeCount = 44 +18541811 waitCount = 20 +18541812 ripCount = 21 +18541812 locktype1 = 0 +18541813 locktype2 = 3 +18541813 locktype3 = 2 +18541814 goalCount = 3 +18541814 goalTotal = 23 +18541815 otherCount = 16 +~~~ +18541816 CURRENTGOAL IS [3] +~~~ +18546659 UP 3 +18546659 4 255 +18546682 DOWN 3 +18546682 0 255 +~~~ +~~~ +18546687 outer reward +~~~ +18546687 0 262399 +~~~ +~~~ +~~~ +~~~ +18546705 0 262398 +~~~ +~~~ +18546707 0 262396 +~~~ +~~~ +18546708 0 262392 +~~~ +~~~ +18546710 0 262384 +~~~ +~~~ +18546712 0 262368 +~~~ +~~~ +18546714 0 262336 +~~~ +~~~ +18546716 0 262272 +~~~ +~~~ +18546718 0 262144 +~~~ +~~~ +18546720 0 262656 +18546721 homeCount = 44 +18546721 waitCount = 20 +18546722 ripCount = 21 +18546743 locktype1 = 0 +18546743 locktype2 = 3 +18546744 locktype3 = 2 +18546744 goalCount = 4 +18546745 goalTotal = 24 +18546745 otherCount = 16 +~~~ +18546749 4 262656 +18546765 DOWN 3 +18546765 0 262656 +18546772 4 262656 +18547009 DOWN 3 +18547009 0 262656 +18547054 4 262656 +18547137 4 512 +18547322 DOWN 3 +18547322 0 512 +18547332 4 512 +18547439 DOWN 3 +18547439 0 512 +18547461 4 512 +18547566 DOWN 3 +18547566 0 512 +18547594 4 512 +18547707 DOWN 3 +18547707 0 512 +18547728 4 512 +18547850 DOWN 3 +18547850 0 512 +18547867 4 512 +18547995 DOWN 3 +18547995 0 512 +18548006 4 512 +18548140 DOWN 3 +18548140 0 512 +18548148 4 512 +18554299 DOWN 3 +18554299 0 512 +18554342 4 512 +18554410 DOWN 3 +18554410 0 512 +18559726 UP 10 +18559727 waslock = 0 +18559726 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18559752 512 16777728 +~~~ +18559902 512 512 +18559951 DOWN 10 +18559951 0 512 +18559967 UP 10 +18559967 waslock = 0 +18559967 512 512 +~~~ +~~~ +18559990 512 2560 +~~~ +~~~ +18559992 512 2048 +18559993 homeCount = 45 +18559994 waitCount = 20 +18559994 ripCount = 21 +18559995 locktype1 = 0 +18559995 locktype2 = 3 +18559996 locktype3 = 2 +18559996 goalCount = 4 +18559997 goalTotal = 24 +18559997 otherCount = 16 +~~~ +~~~ +18564270 DOWN 10 +18564270 0 2048 +~~~ +~~~ +~~~ +~~~ +18564299 homeCount = 45 +18564299 waitCount = 20 +18564300 ripCount = 21 +18564300 locktype1 = 0 +18564301 locktype2 = 3 +18564301 locktype3 = 2 +18564302 goalCount = 4 +18564302 goalTotal = 24 +18564303 otherCount = 16 +~~~ +18564342 UP 10 +18564343 waslock = 0 +18564342 512 2048 +18564366 DOWN 10 +18564366 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +18564389 homeCount = 45 +18564389 waitCount = 20 +18564390 ripCount = 21 +18564390 locktype1 = 0 +18564391 locktype2 = 3 +18564391 locktype3 = 2 +18564392 goalCount = 4 +18564392 goalTotal = 24 +18564393 otherCount = 16 +~~~ +18567704 UP 12 +18567704 2048 2048 +18569618 DOWN 12 +18569618 0 2048 +18569670 UP 12 +18569670 2048 2048 +18570808 DOWN 12 +18570808 0 2048 +18570818 UP 12 +18570818 2048 2048 +18572697 DOWN 12 +18572697 0 2048 +18572719 UP 12 +18572719 2048 2048 +18576704 CLICK1 +18576704 CLICK2 +~~~ +~~~ +~~~ +18576729 2048 67110912 +~~~ +18576879 2048 2048 +18583757 DOWN 12 +18583757 0 2048 +~~~ +~~~ +18583777 0 0 +~~~ +~~~ +18583779 0 1 +~~~ +~~~ +18583781 0 3 +~~~ +~~~ +18583783 0 7 +~~~ +~~~ +18583785 0 15 +~~~ +~~~ +18583786 0 31 +~~~ +~~~ +18583788 0 63 +~~~ +~~~ +18583790 0 127 +~~~ +~~~ +18583792 0 255 +18583793 homeCount = 45 +18583793 waitCount = 21 +18583794 ripCount = 21 +18583794 locktype1 = 0 +18583815 locktype2 = 3 +18583816 locktype3 = 2 +18583816 goalCount = 4 +18583817 goalTotal = 24 +18583817 otherCount = 16 +~~~ +18583819 CURRENTGOAL IS [3] +~~~ +18587416 UP 3 +18587416 4 255 +~~~ +~~~ +18587438 outer reward +~~~ +18587438 4 262399 +~~~ +~~~ +18587710 DOWN 3 +18587710 0 262399 +~~~ +~~~ +18587736 0 262398 +~~~ +~~~ +18587738 0 262396 +~~~ +~~~ +18587739 0 262392 +~~~ +~~~ +18587741 0 262384 +~~~ +~~~ +18587743 0 262368 +~~~ +~~~ +18587745 0 262336 +~~~ +~~~ +18587747 0 262272 +~~~ +~~~ +18587748 0 262144 +~~~ +~~~ +18587750 0 262656 +18587752 homeCount = 45 +18587752 waitCount = 21 +18587753 ripCount = 21 +18587774 locktype1 = 0 +18587774 locktype2 = 3 +18587775 locktype3 = 2 +18587775 goalCount = 5 +18587776 goalTotal = 25 +18587776 otherCount = 16 +~~~ +18587777 4 262656 +18587888 4 512 +18588129 DOWN 3 +18588129 0 512 +18588142 4 512 +18588388 DOWN 3 +18588388 0 512 +18588399 4 512 +18588514 DOWN 3 +18588514 0 512 +18588530 4 512 +18588647 DOWN 3 +18588647 0 512 +18588665 4 512 +18588781 DOWN 3 +18588781 0 512 +18588798 4 512 +18593276 DOWN 3 +18593276 0 512 +18593288 4 512 +18596652 DOWN 3 +18596652 0 512 +18602809 UP 10 +18602809 waslock = 0 +18602809 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18602835 512 16777728 +~~~ +18602985 512 512 +18606263 DOWN 10 +18606263 0 512 +~~~ +~~~ +18606286 0 2560 +~~~ +~~~ +18606288 0 2048 +18606289 homeCount = 46 +18606290 waitCount = 21 +18606290 ripCount = 21 +18606291 locktype1 = 0 +18606291 locktype2 = 3 +18606292 locktype3 = 2 +18606292 goalCount = 5 +18606293 goalTotal = 25 +18606293 otherCount = 16 +~~~ +18608915 UP 12 +18608915 2048 2048 +18610847 DOWN 12 +18610847 0 2048 +18610865 UP 12 +18610865 2048 2048 +18616415 CLICK1 +18616415 CLICK2 +~~~ +~~~ +~~~ +18616441 2048 67110912 +~~~ +18616590 2048 2048 +18621494 DOWN 12 +18621494 0 2048 +~~~ +~~~ +18621517 0 0 +~~~ +~~~ +18621519 0 1 +~~~ +~~~ +18621521 0 3 +~~~ +~~~ +18621522 0 7 +~~~ +~~~ +18621524 0 15 +~~~ +~~~ +18621526 0 31 +~~~ +~~~ +18621528 0 63 +~~~ +~~~ +18621530 0 127 +~~~ +~~~ +18621532 0 255 +18621533 homeCount = 46 +18621533 waitCount = 22 +18621534 ripCount = 21 +18621534 locktype1 = 0 +18621535 locktype2 = 3 +18621556 locktype3 = 2 +18621556 goalCount = 5 +18621557 goalTotal = 25 +18621557 otherCount = 16 +~~~ +18621558 CURRENTGOAL IS [3] +~~~ +18621560 UP 12 +18621560 2048 255 +18621597 DOWN 12 +18621597 0 255 +18621612 UP 12 +18621612 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18621629 DOWN 12 +18621629 0 255 +~~~ +~~~ +18621631 homeCount = 46 +18621632 waitCount = 22 +18621632 ripCount = 21 +18621633 locktype1 = 0 +18621633 locktype2 = 3 +18621634 locktype3 = 2 +18621634 goalCount = 5 +18621635 goalTotal = 25 +18621635 otherCount = 16 +~~~ +18621657 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18621682 homeCount = 46 +18621682 waitCount = 22 +18621683 ripCount = 21 +18621683 locktype1 = 0 +18621684 locktype2 = 3 +18621684 locktype3 = 2 +18621685 goalCount = 5 +18621685 goalTotal = 25 +18621686 otherCount = 16 +~~~ +18621687 CURRENTGOAL IS [3] +~~~ +18624994 UP 3 +18624994 4 255 +~~~ +~~~ +18625017 outer reward +~~~ +18625018 4 262399 +~~~ +~~~ +18625215 DOWN 3 +18625215 0 262399 +~~~ +~~~ +18625239 0 262398 +~~~ +~~~ +18625241 0 262396 +~~~ +~~~ +18625243 0 262392 +~~~ +~~~ +18625244 0 262384 +~~~ +~~~ +18625246 0 262368 +~~~ +~~~ +18625248 0 262336 +~~~ +~~~ +18625250 0 262272 +~~~ +~~~ +18625252 0 262144 +~~~ +~~~ +18625254 0 262656 +18625255 homeCount = 46 +18625255 waitCount = 22 +18625256 ripCount = 21 +18625277 locktype1 = 0 +18625277 locktype2 = 3 +18625278 locktype3 = 2 +18625278 goalCount = 6 +18625279 goalTotal = 26 +18625279 otherCount = 16 +~~~ +18625280 4 262656 +18625467 4 512 +18625771 DOWN 3 +18625771 0 512 +18625792 4 512 +18625894 DOWN 3 +18625894 0 512 +18625916 4 512 +18626018 DOWN 3 +18626018 0 512 +18626045 4 512 +18626149 DOWN 3 +18626149 0 512 +18626175 4 512 +18626293 DOWN 3 +18626293 0 512 +18626309 4 512 +18626446 DOWN 3 +18626446 0 512 +18626455 4 512 +18626598 DOWN 3 +18626598 0 512 +18626604 4 512 +18628358 DOWN 3 +18628358 0 512 +18628374 4 512 +18633219 DOWN 3 +18633219 0 512 +18633229 4 512 +18633558 DOWN 3 +18633558 0 512 +18640894 UP 10 +18640895 waslock = 0 +18640894 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18640921 512 16777728 +~~~ +18641071 512 512 +18641125 DOWN 10 +18641125 0 512 +~~~ +~~~ +18641147 0 1536 +~~~ +~~~ +18641149 0 1024 +18641150 homeCount = 47 +18641151 waitCount = 22 +18641151 ripCount = 21 +18641152 locktype1 = 0 +18641152 locktype2 = 3 +18641152 locktype3 = 2 +18641153 goalCount = 6 +18641153 goalTotal = 26 +18641154 otherCount = 16 +~~~ +18641175 UP 10 +18641175 waslock = 0 +18641175 512 1024 +~~~ +18644766 DOWN 10 +18644766 0 1024 +~~~ +~~~ +~~~ +~~~ +18644789 homeCount = 47 +18644790 waitCount = 22 +18644790 ripCount = 21 +18644791 locktype1 = 0 +18644791 locktype2 = 3 +18644792 locktype3 = 2 +18644792 goalCount = 6 +18644793 goalTotal = 26 +18644793 otherCount = 16 +~~~ +18644817 UP 10 +18644817 waslock = 0 +18644817 512 1024 +~~~ +18644873 DOWN 10 +18644873 0 1024 +~~~ +~~~ +~~~ +~~~ +18644899 homeCount = 47 +18644900 waitCount = 22 +18644900 ripCount = 21 +18644901 locktype1 = 0 +18644901 locktype2 = 3 +18644902 locktype3 = 2 +18644902 goalCount = 6 +18644903 goalTotal = 26 +18644903 otherCount = 16 +~~~ +18647367 UP 11 +18647367 1024 1024 +18647805 DOWN 11 +18647805 0 1024 +18647964 UP 11 +18647964 1024 1024 +18648007 DOWN 11 +18648007 0 1024 +18648039 UP 11 +18648039 1024 1024 +18649073 DOWN 11 +18649073 0 1024 +18649104 UP 11 +18649104 1024 1024 +18650368 BEEP1 +18650368 BEEP2 +~~~ +~~~ +~~~ +18650388 1024 33555456 +~~~ +18650538 1024 1024 +18658120 DOWN 11 +18658120 0 1024 +~~~ +~~~ +18658145 0 0 +~~~ +~~~ +18658147 0 1 +~~~ +~~~ +18658149 0 3 +~~~ +~~~ +18658150 0 7 +~~~ +~~~ +18658152 0 15 +~~~ +~~~ +18658154 0 31 +~~~ +18658155 UP 11 +18658155 1024 31 +~~~ +~~~ +18658157 1024 63 +~~~ +~~~ +18658159 1024 127 +~~~ +18658160 1024 255 +18658161 homeCount = 47 +18658162 waitCount = 22 +18658183 ripCount = 22 +18658183 locktype1 = 0 +18658184 locktype2 = 3 +18658184 locktype3 = 2 +18658185 goalCount = 6 +18658185 goalTotal = 26 +18658186 otherCount = 16 +~~~ +18658187 CURRENTGOAL IS [3] +~~~ +18658213 DOWN 11 +18658213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +18658239 UP 11 +18658239 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18658251 DOWN 11 +18658250 0 255 +18658252 homeCount = 47 +18658252 waitCount = 22 +18658253 ripCount = 22 +18658253 locktype1 = 0 +18658254 locktype2 = 3 +18658254 locktype3 = 2 +18658255 goalCount = 6 +18658255 goalTotal = 26 +18658256 otherCount = 16 +~~~ +18658278 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18658306 homeCount = 47 +18658307 waitCount = 22 +18658307 ripCount = 22 +18658308 locktype1 = 0 +18658308 locktype2 = 3 +18658309 locktype3 = 2 +18658309 goalCount = 6 +18658310 goalTotal = 26 +18658310 otherCount = 16 +~~~ +18658311 CURRENTGOAL IS [3] +~~~ +18658333 UP 11 +18658332 1024 255 +18660179 DOWN 11 +18660179 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18660213 homeCount = 47 +18660214 waitCount = 22 +18660214 ripCount = 22 +18660215 locktype1 = 0 +18660215 locktype2 = 3 +18660216 locktype3 = 2 +18660216 goalCount = 6 +18660217 goalTotal = 26 +18660217 otherCount = 16 +~~~ +18660218 CURRENTGOAL IS [3] +~~~ +18669161 UP 4 +18669161 8 255 +~~~ +~~~ +18669847 DOWN 4 +18669847 0 255 +~~~ +~~~ +18669867 0 254 +~~~ +~~~ +18669869 0 252 +~~~ +~~~ +18669871 0 248 +~~~ +~~~ +18669873 0 240 +~~~ +~~~ +18669874 0 224 +~~~ +~~~ +18669876 0 192 +~~~ +~~~ +18669878 0 128 +~~~ +~~~ +18669880 0 0 +~~~ +~~~ +18669882 0 512 +18669883 homeCount = 47 +18669883 waitCount = 22 +18669884 ripCount = 22 +18669884 locktype1 = 0 +18669906 locktype2 = 3 +18669906 locktype3 = 2 +18669907 goalCount = 6 +18669907 goalTotal = 26 +18669907 otherCount = 17 +~~~ +18675216 UP 10 +18675217 waslock = 0 +18675216 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18675244 512 16777728 +~~~ +18675394 512 512 +18675464 DOWN 10 +18675464 0 512 +~~~ +~~~ +18675487 0 1536 +~~~ +~~~ +18675489 0 1024 +18675490 homeCount = 48 +18675491 waitCount = 22 +18675491 ripCount = 22 +18675492 locktype1 = 0 +18675492 locktype2 = 3 +18675493 locktype3 = 2 +18675493 goalCount = 6 +18675494 goalTotal = 26 +18675494 otherCount = 17 +~~~ +18675516 UP 10 +18675516 waslock = 0 +18675516 512 1024 +~~~ +18678929 DOWN 10 +18678929 0 1024 +~~~ +~~~ +~~~ +~~~ +18678952 homeCount = 48 +18678953 waitCount = 22 +18678953 ripCount = 22 +18678954 locktype1 = 0 +18678954 locktype2 = 3 +18678955 locktype3 = 2 +18678955 goalCount = 6 +18678956 goalTotal = 26 +18678956 otherCount = 17 +~~~ +18680811 UP 11 +18680810 1024 1024 +18683346 DOWN 11 +18683346 0 1024 +18683354 UP 11 +18683354 1024 1024 +18683811 BEEP1 +18683811 BEEP2 +~~~ +~~~ +~~~ +18683831 1024 33555456 +~~~ +18683981 1024 1024 +18690848 DOWN 11 +18690848 0 1024 +~~~ +~~~ +18690870 0 0 +~~~ +~~~ +18690872 0 1 +~~~ +~~~ +18690874 0 3 +~~~ +~~~ +18690876 0 7 +~~~ +~~~ +18690878 0 15 +~~~ +~~~ +18690879 0 31 +~~~ +~~~ +18690881 0 63 +~~~ +~~~ +18690883 0 127 +~~~ +~~~ +18690885 0 255 +18690886 homeCount = 48 +18690886 waitCount = 22 +18690887 ripCount = 23 +18690888 locktype1 = 0 +18690888 locktype2 = 3 +18690909 locktype3 = 2 +18690909 goalCount = 6 +18690910 goalTotal = 26 +18690910 otherCount = 17 +~~~ +18690911 CURRENTGOAL IS [3] +~~~ +18690912 UP 11 +18690912 1024 255 +18690951 DOWN 11 +18690951 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18690988 homeCount = 48 +18690989 waitCount = 22 +18690989 ripCount = 23 +18690990 locktype1 = 0 +18690990 locktype2 = 3 +18690991 locktype3 = 2 +18690991 goalCount = 6 +18690992 goalTotal = 26 +18690992 otherCount = 17 +~~~ +18690993 CURRENTGOAL IS [3] +~~~ +18691033 UP 11 +18691033 1024 255 +18693082 DOWN 11 +18693082 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18693117 homeCount = 48 +18693118 waitCount = 22 +18693118 ripCount = 23 +18693119 locktype1 = 0 +18693119 locktype2 = 3 +18693120 locktype3 = 2 +18693120 goalCount = 6 +18693121 goalTotal = 26 +18693121 otherCount = 17 +~~~ +18693123 CURRENTGOAL IS [3] +~~~ +18698599 UP 2 +18698599 2 255 +~~~ +~~~ +18699845 DOWN 2 +18699845 0 255 +~~~ +~~~ +18699870 0 254 +~~~ +~~~ +18699872 0 252 +~~~ +~~~ +18699874 0 248 +~~~ +~~~ +18699876 0 240 +~~~ +~~~ +18699877 0 224 +~~~ +~~~ +18699879 0 192 +~~~ +~~~ +18699881 0 128 +~~~ +~~~ +18699883 0 0 +~~~ +~~~ +18699885 0 512 +18699886 homeCount = 48 +18699886 waitCount = 22 +18699887 ripCount = 23 +18699887 locktype1 = 0 +18699908 locktype2 = 3 +18699908 locktype3 = 2 +18699909 goalCount = 6 +18699909 goalTotal = 26 +18699910 otherCount = 18 +~~~ +18699963 2 512 +18700182 DOWN 2 +18700182 0 512 +18700384 2 512 +18700951 DOWN 2 +18700951 0 512 +18704490 UP 10 +18704491 waslock = 0 +18704490 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18704517 512 16777728 +~~~ +18704667 512 512 +18704708 DOWN 10 +18704708 0 512 +~~~ +~~~ +18704735 0 2560 +~~~ +~~~ +18704737 0 2048 +18704738 homeCount = 49 +18704738 waitCount = 22 +18704739 ripCount = 23 +18704739 locktype1 = 0 +18704740 locktype2 = 3 +18704740 locktype3 = 2 +18704741 goalCount = 6 +18704741 goalTotal = 26 +18704741 otherCount = 18 +~~~ +18704814 UP 10 +18704814 waslock = 0 +18704814 512 2048 +~~~ +18710733 DOWN 10 +18710733 0 2048 +18710750 UP 10 +18710750 waslock = 0 +18710750 512 2048 +~~~ +~~~ +~~~ +~~~ +18710758 homeCount = 49 +18710759 waitCount = 22 +18710759 ripCount = 23 +18710760 locktype1 = 0 +18710760 locktype2 = 3 +18710761 locktype3 = 2 +18710761 goalCount = 6 +18710762 goalTotal = 26 +18710762 otherCount = 18 +~~~ +~~~ +18710824 DOWN 10 +18710824 0 2048 +~~~ +~~~ +~~~ +~~~ +18710848 homeCount = 49 +18710848 waitCount = 22 +18710849 ripCount = 23 +18710849 locktype1 = 0 +18710850 locktype2 = 3 +18710850 locktype3 = 2 +18710851 goalCount = 6 +18710851 goalTotal = 26 +18710852 otherCount = 18 +~~~ +18712891 UP 12 +18712891 2048 2048 +18714448 DOWN 12 +18714448 0 2048 +18714495 UP 12 +18714495 2048 2048 +18719953 DOWN 12 +18719953 0 2048 +18719966 UP 12 +18719966 2048 2048 +18721892 CLICK1 +18721892 CLICK2 +~~~ +~~~ +~~~ +18721916 2048 67110912 +~~~ +18722066 2048 2048 +18727895 DOWN 12 +18727895 0 2048 +~~~ +~~~ +18727917 0 0 +~~~ +~~~ +18727919 0 1 +~~~ +~~~ +18727921 0 3 +~~~ +~~~ +18727923 0 7 +~~~ +~~~ +18727925 0 15 +~~~ +~~~ +18727926 0 31 +~~~ +~~~ +18727928 0 63 +~~~ +~~~ +18727930 0 127 +~~~ +~~~ +18727932 0 255 +18727933 homeCount = 49 +18727933 waitCount = 23 +18727934 ripCount = 23 +18727934 locktype1 = 0 +18727935 locktype2 = 3 +18727956 locktype3 = 2 +18727956 goalCount = 6 +18727957 goalTotal = 26 +18727957 otherCount = 18 +~~~ +18727958 CURRENTGOAL IS [3] +~~~ +18727959 UP 12 +18727959 2048 255 +18727992 DOWN 12 +18727992 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18728034 homeCount = 49 +18728035 waitCount = 23 +18728035 ripCount = 23 +18728036 locktype1 = 0 +18728036 locktype2 = 3 +18728037 locktype3 = 2 +18728037 goalCount = 6 +18728038 goalTotal = 26 +18728038 otherCount = 18 +~~~ +18728039 CURRENTGOAL IS [3] +~~~ +18755525 UP 10 +18755525 waslock = 0 +18755525 512 255 +~~~ +18755550 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18755557 512 254 +~~~ +~~~ +18755559 512 252 +~~~ +~~~ +18755561 512 248 +~~~ +~~~ +18755563 512 240 +~~~ +~~~ +18755565 512 224 +~~~ +~~~ +18755566 512 192 +~~~ +~~~ +18755568 512 128 +~~~ +~~~ +18755570 512 0 +~~~ +~~~ +~~~ +18755790 0 0 +18755827 512 0 +18756881 0 0 +18756920 512 0 +18756992 0 0 +18757067 512 0 +18757128 0 0 +18757165 512 0 +18757749 0 0 +18757778 512 0 +18757848 0 0 +18779443 UP 2 +18779443 2 0 +18779457 DOWN 2 +18779457 0 0 +18779539 2 0 +18779749 DOWN 2 +18779749 0 0 +18780550 LOCKEND +~~~ +~~~ +~~~ +18780570 0 512 +18787322 UP 10 +18787322 waslock = 0 +18787322 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18787355 512 16777728 +~~~ +18787505 512 512 +18787570 DOWN 10 +18787570 0 512 +~~~ +~~~ +18787590 0 2560 +~~~ +~~~ +18787592 0 2048 +18787593 homeCount = 50 +18787593 waitCount = 23 +18787594 ripCount = 23 +18787594 locktype1 = 0 +18787595 locktype2 = 4 +18787595 locktype3 = 2 +18787596 goalCount = 6 +18787596 goalTotal = 26 +18787597 otherCount = 18 +~~~ +18787721 UP 10 +18787721 waslock = 0 +18787721 512 2048 +~~~ +18788131 DOWN 10 +18788130 0 2048 +~~~ +~~~ +~~~ +~~~ +18788152 homeCount = 50 +18788153 waitCount = 23 +18788153 ripCount = 23 +18788154 locktype1 = 0 +18788155 locktype2 = 4 +18788155 locktype3 = 2 +18788156 goalCount = 6 +18788156 goalTotal = 26 +18788156 otherCount = 18 +~~~ +18788200 UP 10 +18788200 waslock = 0 +18788200 512 2048 +~~~ +18788239 DOWN 10 +18788239 0 2048 +~~~ +~~~ +~~~ +~~~ +18788265 homeCount = 50 +18788265 waitCount = 23 +18788266 ripCount = 23 +18788266 locktype1 = 0 +18788267 locktype2 = 4 +18788267 locktype3 = 2 +18788268 goalCount = 6 +18788268 goalTotal = 26 +18788269 otherCount = 18 +~~~ +18788360 UP 10 +18788360 waslock = 0 +18788360 512 2048 +~~~ +18788394 DOWN 10 +18788394 0 2048 +~~~ +~~~ +~~~ +~~~ +18788420 homeCount = 50 +18788420 waitCount = 23 +18788421 ripCount = 23 +18788421 locktype1 = 0 +18788422 locktype2 = 4 +18788422 locktype3 = 2 +18788423 goalCount = 6 +18788423 goalTotal = 26 +18788424 otherCount = 18 +~~~ +18788497 UP 10 +18788497 waslock = 0 +18788497 512 2048 +~~~ +18792370 DOWN 10 +18792370 0 2048 +~~~ +~~~ +~~~ +~~~ +18792392 homeCount = 50 +18792393 waitCount = 23 +18792393 ripCount = 23 +18792394 locktype1 = 0 +18792394 locktype2 = 4 +18792395 locktype3 = 2 +18792395 goalCount = 6 +18792396 goalTotal = 26 +18792396 otherCount = 18 +~~~ +18794314 UP 12 +18794314 2048 2048 +18798314 CLICK1 +18798314 CLICK2 +~~~ +~~~ +~~~ +18798335 2048 67110912 +~~~ +18798485 2048 2048 +18798830 DOWN 12 +18798830 0 2048 +~~~ +~~~ +18798852 0 0 +~~~ +~~~ +18798854 0 1 +~~~ +~~~ +18798856 0 3 +~~~ +~~~ +18798858 0 7 +~~~ +~~~ +18798860 0 15 +~~~ +~~~ +18798861 0 31 +~~~ +~~~ +18798863 0 63 +~~~ +~~~ +18798865 0 127 +~~~ +~~~ +18798867 0 255 +18798868 homeCount = 50 +18798868 waitCount = 24 +18798869 ripCount = 23 +18798869 locktype1 = 0 +18798870 locktype2 = 4 +18798891 locktype3 = 2 +18798891 goalCount = 6 +18798892 goalTotal = 26 +18798892 otherCount = 18 +~~~ +18798893 CURRENTGOAL IS [3] +~~~ +18799141 UP 12 +18799141 2048 255 +18805238 DOWN 12 +18805238 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18805280 homeCount = 50 +18805281 waitCount = 24 +18805281 ripCount = 23 +18805282 locktype1 = 0 +18805282 locktype2 = 4 +18805283 locktype3 = 2 +18805283 goalCount = 6 +18805284 goalTotal = 26 +18805284 otherCount = 18 +~~~ +18805285 CURRENTGOAL IS [3] +~~~ +18816138 UP 3 +18816138 4 255 +~~~ +~~~ +18816163 outer reward +~~~ +18816164 4 262399 +~~~ +~~~ +18816446 DOWN 3 +18816446 0 262399 +~~~ +~~~ +18816472 0 262398 +~~~ +~~~ +18816474 0 262396 +~~~ +~~~ +18816476 0 262392 +~~~ +~~~ +18816477 0 262384 +~~~ +~~~ +18816479 0 262368 +~~~ +~~~ +18816481 0 262336 +~~~ +~~~ +18816483 0 262272 +~~~ +~~~ +18816485 0 262144 +~~~ +~~~ +18816487 0 262656 +18816488 homeCount = 50 +18816488 waitCount = 24 +18816489 ripCount = 23 +18816510 locktype1 = 0 +18816510 locktype2 = 4 +18816511 locktype3 = 2 +18816511 goalCount = 7 +18816512 goalTotal = 27 +18816512 otherCount = 18 +~~~ +18816513 4 262656 +18816613 4 512 +18816865 DOWN 3 +18816865 0 512 +18816894 4 512 +18816982 DOWN 3 +18816982 0 512 +18817017 4 512 +18817107 DOWN 3 +18817107 0 512 +18817140 4 512 +18817244 DOWN 3 +18817244 0 512 +18817270 4 512 +18817376 DOWN 3 +18817376 0 512 +18817404 4 512 +18817518 DOWN 3 +18817518 0 512 +18817544 4 512 +18817665 DOWN 3 +18817665 0 512 +18817685 4 512 +18817810 DOWN 3 +18817810 0 512 +18817828 4 512 +18817959 DOWN 3 +18817959 0 512 +18817972 4 512 +18818112 DOWN 3 +18818112 0 512 +18818118 4 512 +18824909 DOWN 3 +18824909 0 512 +18824934 4 512 +18825030 DOWN 3 +18825030 0 512 +18825078 4 512 +18825125 DOWN 3 +18825125 0 512 +18830803 UP 10 +18830803 waslock = 0 +18830803 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18830828 512 16777728 +~~~ +18830978 512 512 +18831044 DOWN 10 +18831044 0 512 +~~~ +~~~ +18831064 0 1536 +~~~ +~~~ +18831066 0 1024 +18831067 homeCount = 51 +18831068 waitCount = 24 +18831068 ripCount = 23 +18831069 locktype1 = 0 +18831069 locktype2 = 4 +18831070 locktype3 = 2 +18831070 goalCount = 7 +18831071 goalTotal = 27 +18831071 otherCount = 18 +~~~ +18831092 UP 10 +18831093 waslock = 0 +18831092 512 1024 +~~~ +18838139 DOWN 10 +18838139 0 1024 +~~~ +~~~ +~~~ +~~~ +18838168 homeCount = 51 +18838169 waitCount = 24 +18838169 ripCount = 23 +18838170 locktype1 = 0 +18838170 locktype2 = 4 +18838171 locktype3 = 2 +18838171 goalCount = 7 +18838172 goalTotal = 27 +18838172 otherCount = 18 +~~~ +18840028 UP 11 +18840028 1024 1024 +18843430 DOWN 11 +18843430 0 1024 +18843441 UP 11 +18843441 1024 1024 +18844015 DOWN 11 +18844015 0 1024 +18844035 UP 11 +18844035 1024 1024 +18844730 DOWN 11 +18844730 0 1024 +18844737 UP 11 +18844737 1024 1024 +18844739 DOWN 11 +18844739 0 1024 +18844762 UP 11 +18844762 1024 1024 +18846028 BEEP1 +18846028 BEEP2 +~~~ +~~~ +~~~ +18846047 1024 33555456 +~~~ +18846197 1024 1024 +18851283 DOWN 11 +18851283 0 1024 +~~~ +~~~ +18851304 0 0 +~~~ +18851305 UP 11 +18851305 1024 0 +~~~ +~~~ +18851307 1024 1 +~~~ +~~~ +18851308 1024 3 +~~~ +~~~ +18851310 1024 7 +~~~ +18851311 1024 15 +~~~ +~~~ +18851313 1024 31 +~~~ +~~~ +18851314 1024 63 +~~~ +~~~ +18851316 1024 127 +~~~ +~~~ +18851318 1024 255 +18851319 homeCount = 51 +18851340 waitCount = 24 +18851341 ripCount = 24 +18851341 locktype1 = 0 +18851342 locktype2 = 4 +18851342 locktype3 = 2 +18851342 goalCount = 7 +18851343 goalTotal = 27 +18851343 otherCount = 18 +~~~ +18851345 CURRENTGOAL IS [3] +~~~ +18851424 DOWN 11 +18851424 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851453 UP 11 +18851453 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851460 homeCount = 51 +18851460 waitCount = 24 +18851461 ripCount = 24 +18851461 locktype1 = 0 +18851462 locktype2 = 4 +18851462 locktype3 = 2 +18851463 goalCount = 7 +18851463 goalTotal = 27 +18851464 otherCount = 18 +~~~ +18851465 CURRENTGOAL IS [3] +~~~ +18851571 DOWN 11 +18851571 0 255 +18851591 UP 11 +18851591 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18851623 homeCount = 51 +18851624 waitCount = 24 +18851624 ripCount = 24 +18851625 locktype1 = 0 +18851625 locktype2 = 4 +18851626 locktype3 = 2 +18851626 goalCount = 7 +18851627 goalTotal = 27 +18851627 otherCount = 18 +~~~ +18851628 CURRENTGOAL IS [3] +~~~ +18854817 DOWN 11 +18854817 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18854855 homeCount = 51 +18854856 waitCount = 24 +18854856 ripCount = 24 +18854857 locktype1 = 0 +18854857 locktype2 = 4 +18854858 locktype3 = 2 +18854858 goalCount = 7 +18854859 goalTotal = 27 +18854859 otherCount = 18 +~~~ +18854860 CURRENTGOAL IS [3] +~~~ +18859075 UP 7 +18859075 64 255 +~~~ +~~~ +18860364 DOWN 7 +18860364 0 255 +~~~ +~~~ +18860388 0 254 +~~~ +~~~ +18860390 0 252 +~~~ +~~~ +18860392 0 248 +~~~ +~~~ +18860394 0 240 +~~~ +~~~ +18860396 0 224 +~~~ +~~~ +18860397 0 192 +~~~ +~~~ +18860399 0 128 +~~~ +~~~ +18860401 0 0 +~~~ +~~~ +18860403 0 512 +18860404 homeCount = 51 +18860404 waitCount = 24 +18860405 ripCount = 24 +18860405 locktype1 = 0 +18860426 locktype2 = 4 +18860426 locktype3 = 2 +18860427 goalCount = 7 +18860427 goalTotal = 27 +18860428 otherCount = 19 +~~~ +18866353 UP 10 +18866353 waslock = 0 +18866353 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18866384 512 16777728 +~~~ +18866534 512 512 +18866683 DOWN 10 +18866683 0 512 +18866707 UP 10 +18866707 waslock = 0 +18866707 512 512 +~~~ +~~~ +18866712 512 1536 +~~~ +~~~ +18866713 512 1024 +18866715 homeCount = 52 +18866715 waitCount = 24 +18866716 ripCount = 24 +18866716 locktype1 = 0 +18866716 locktype2 = 4 +18866717 locktype3 = 2 +18866717 goalCount = 7 +18866718 goalTotal = 27 +18866718 otherCount = 19 +~~~ +~~~ +18872118 DOWN 10 +18872118 0 1024 +18872136 UP 10 +18872136 waslock = 0 +18872136 512 1024 +~~~ +~~~ +~~~ +~~~ +18872142 homeCount = 52 +18872143 waitCount = 24 +18872143 ripCount = 24 +18872144 locktype1 = 0 +18872144 locktype2 = 4 +18872145 locktype3 = 2 +18872145 goalCount = 7 +18872146 goalTotal = 27 +18872146 otherCount = 19 +~~~ +~~~ +18872215 DOWN 10 +18872215 0 1024 +~~~ +~~~ +~~~ +~~~ +18872244 homeCount = 52 +18872245 waitCount = 24 +18872245 ripCount = 24 +18872246 locktype1 = 0 +18872246 locktype2 = 4 +18872247 locktype3 = 2 +18872247 goalCount = 7 +18872248 goalTotal = 27 +18872248 otherCount = 19 +~~~ +18876242 UP 11 +18876242 1024 1024 +18880510 DOWN 11 +18880510 0 1024 +18880546 UP 11 +18880546 1024 1024 +18883742 BEEP1 +18883742 BEEP2 +~~~ +~~~ +~~~ +18883760 1024 33555456 +~~~ +18883910 1024 1024 +18890371 DOWN 11 +18890371 0 1024 +~~~ +~~~ +18890388 0 0 +~~~ +~~~ +18890390 0 1 +~~~ +~~~ +18890392 0 3 +~~~ +~~~ +18890394 0 7 +~~~ +~~~ +18890396 0 15 +~~~ +~~~ +18890397 0 31 +~~~ +~~~ +18890399 0 63 +~~~ +~~~ +18890401 0 127 +~~~ +~~~ +18890403 0 255 +18890404 homeCount = 52 +18890404 waitCount = 24 +18890405 ripCount = 25 +18890405 locktype1 = 0 +18890427 locktype2 = 4 +18890427 locktype3 = 2 +18890428 goalCount = 7 +18890428 goalTotal = 27 +18890429 otherCount = 19 +~~~ +18890430 CURRENTGOAL IS [3] +~~~ +18890451 UP 11 +18890451 1024 255 +18893254 DOWN 11 +18893254 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18893297 homeCount = 52 +18893297 waitCount = 24 +18893298 ripCount = 25 +18893298 locktype1 = 0 +18893299 locktype2 = 4 +18893299 locktype3 = 2 +18893300 goalCount = 7 +18893300 goalTotal = 27 +18893301 otherCount = 19 +~~~ +18893302 CURRENTGOAL IS [3] +~~~ +18900482 UP 3 +18900482 4 255 +~~~ +~~~ +18900502 outer reward +~~~ +18900502 4 262399 +~~~ +~~~ +18900730 DOWN 3 +18900730 0 262399 +~~~ +~~~ +18900753 0 262398 +~~~ +~~~ +18900755 0 262396 +~~~ +~~~ +18900756 0 262392 +~~~ +~~~ +18900758 0 262384 +~~~ +~~~ +18900760 0 262368 +~~~ +~~~ +18900762 0 262336 +~~~ +~~~ +18900764 0 262272 +~~~ +~~~ +18900765 0 262144 +~~~ +~~~ +18900767 0 262656 +18900768 homeCount = 52 +18900769 waitCount = 24 +18900769 ripCount = 25 +18900791 locktype1 = 0 +18900791 locktype2 = 4 +18900792 locktype3 = 2 +18900792 goalCount = 8 +18900793 goalTotal = 28 +18900793 otherCount = 19 +~~~ +18900794 4 262656 +18900903 DOWN 3 +18900903 0 262656 +18900920 4 262656 +18900952 4 512 +18901039 DOWN 3 +18901039 0 512 +18901060 4 512 +18901156 DOWN 3 +18901156 0 512 +18901187 4 512 +18901292 DOWN 3 +18901292 0 512 +18901310 4 512 +18901420 DOWN 3 +18901420 0 512 +18901440 4 512 +18901546 DOWN 3 +18901546 0 512 +18901573 4 512 +18901676 DOWN 3 +18901676 0 512 +18901702 4 512 +18901804 DOWN 3 +18901804 0 512 +18901832 4 512 +18901936 DOWN 3 +18901936 0 512 +18901964 4 512 +18902072 DOWN 3 +18902072 0 512 +18902098 4 512 +18902211 DOWN 3 +18902211 0 512 +18902233 4 512 +18902355 DOWN 3 +18902355 0 512 +18902378 4 512 +18909942 DOWN 3 +18909942 0 512 +18922266 UP 10 +18922267 waslock = 0 +18922266 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +18922297 512 16777728 +~~~ +18922447 512 512 +18929052 DOWN 10 +18929052 0 512 +~~~ +~~~ +18929069 0 1536 +~~~ +~~~ +18929071 0 1024 +18929072 homeCount = 53 +18929073 waitCount = 24 +18929073 ripCount = 25 +18929074 locktype1 = 0 +18929074 locktype2 = 4 +18929075 locktype3 = 2 +18929075 goalCount = 8 +18929076 goalTotal = 28 +18929076 otherCount = 19 +~~~ +18929098 UP 10 +18929098 waslock = 0 +18929097 512 1024 +~~~ +18929166 DOWN 10 +18929166 0 1024 +~~~ +~~~ +~~~ +~~~ +18929193 homeCount = 53 +18929194 waitCount = 24 +18929194 ripCount = 25 +18929194 locktype1 = 0 +18929195 locktype2 = 4 +18929195 locktype3 = 2 +18929196 goalCount = 8 +18929196 goalTotal = 28 +18929197 otherCount = 19 +~~~ +18934312 UP 11 +18934312 1024 1024 +18935944 DOWN 11 +18935944 0 1024 +18935995 UP 11 +18935995 1024 1024 +18937812 BEEP1 +18937812 BEEP2 +~~~ +~~~ +~~~ +18937832 1024 33555456 +~~~ +18937982 1024 1024 +18944487 DOWN 11 +18944487 0 1024 +18944496 UP 11 +18944496 1024 1024 +~~~ +~~~ +18944510 1024 0 +~~~ +~~~ +18944512 1024 1 +~~~ +~~~ +18944513 1024 3 +~~~ +~~~ +18944515 1024 7 +~~~ +~~~ +18944517 1024 15 +~~~ +~~~ +18944519 1024 31 +~~~ +~~~ +18944521 1024 63 +~~~ +~~~ +18944523 1024 127 +~~~ +~~~ +18944524 1024 255 +18944525 homeCount = 53 +18944526 waitCount = 24 +18944526 ripCount = 26 +18944548 locktype1 = 0 +18944548 locktype2 = 4 +18944548 locktype3 = 2 +18944549 goalCount = 8 +18944549 goalTotal = 28 +18944550 otherCount = 19 +~~~ +18944551 CURRENTGOAL IS [3] +~~~ +18944560 DOWN 11 +18944560 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18944597 UP 11 +18944597 1024 255 +18944599 homeCount = 53 +18944599 waitCount = 24 +18944600 ripCount = 26 +18944600 locktype1 = 0 +18944601 locktype2 = 4 +18944601 locktype3 = 2 +18944602 goalCount = 8 +18944602 goalTotal = 28 +18944603 otherCount = 19 +~~~ +18944625 CURRENTGOAL IS [3] +~~~ +18947334 DOWN 11 +18947334 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +18947369 homeCount = 53 +18947369 waitCount = 24 +18947370 ripCount = 26 +18947370 locktype1 = 0 +18947371 locktype2 = 4 +18947371 locktype3 = 2 +18947372 goalCount = 8 +18947372 goalTotal = 28 +18947373 otherCount = 19 +~~~ +18947374 CURRENTGOAL IS [3] +~~~ +18958627 UP 3 +18958627 4 255 +~~~ +~~~ +18958649 outer reward +~~~ +18958650 4 262399 +~~~ +~~~ +18958918 DOWN 3 +18958918 0 262399 +~~~ +~~~ +18958945 0 262398 +~~~ +~~~ +18958947 0 262396 +~~~ +~~~ +18958948 0 262392 +~~~ +~~~ +18958950 0 262384 +~~~ +~~~ +18958952 0 262368 +~~~ +~~~ +18958954 0 262336 +~~~ +~~~ +18958956 0 262272 +~~~ +~~~ +18958958 0 262144 +~~~ +~~~ +18958959 0 262656 +18958960 homeCount = 53 +18958961 waitCount = 24 +18958961 ripCount = 26 +18958983 locktype1 = 0 +18958983 locktype2 = 4 +18958984 locktype3 = 2 +18958984 goalCount = 9 +18958985 goalTotal = 29 +18958985 otherCount = 19 +~~~ +18958986 4 262656 +18959099 4 512 +18959236 DOWN 3 +18959236 0 512 +18959257 4 512 +18959354 DOWN 3 +18959354 0 512 +18959373 4 512 +18959476 DOWN 3 +18959476 0 512 +18959502 4 512 +18959605 DOWN 3 +18959605 0 512 +18959631 4 512 +18959734 DOWN 3 +18959734 0 512 +18959764 4 512 +18959869 DOWN 3 +18959869 0 512 +18959901 4 512 +18960009 DOWN 3 +18960009 0 512 +18960036 4 512 +18960155 DOWN 3 +18960155 0 512 +18960176 4 512 +18960303 DOWN 3 +18960303 0 512 +18960314 4 512 +18964481 DOWN 3 +18964481 0 512 +18964498 4 512 +18967799 DOWN 3 +18967799 0 512 +18967877 4 512 +18967898 DOWN 3 +18967898 0 512 + + description: Statescript log r2 + task_epochs: 4, +, Statescript3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140511632188176 +Fields: + content: # +#% PROGRAM NAME: V8pre_goal_nowait +#% AUTHOR: AKG +#% DESCRIPTION: pretraining regime +# +#% constants +#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait +#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells +#int lockoutPeriod= 25000 % length of lockout, 10sec +#int proxTime = 200 % amount of time allowed to be away from nose poke +#% variables +#int rewardWell = 0 +#int currWell = 0 +#int lastWell = 0 +#int dio = 0 +#int homeCount = 0 % number of times rewarded at home +#int waitCount = 0 % number of times rewarded at wait well +#int ripCount = 0 %number of times rewarded at rip well +#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well +#int locktype2 = 0 % number of times lockout out by making other order error +#int locktype3 = 0 % number of times lockout from not holding in rip or wait +#int trialtype = 0 +#int goalCount = 0 % cumulative num outer visits +#int goalTotal = 0 +#int otherCount = 0 +#int waittime = 0 +#int proximity = 0 +#int waslock = 0 +# +#int outerreps = 0 +# +#% initialize +#portout[1] = 0 +#portout[2] = 0 +#portout[3] = 0 +#portout[4] = 0 +#portout[5] = 0 +#portout[6] = 0 +#portout[7] = 0 +#portout[8] = 0 +#portout[10] = 1 +#portout[11] = 0 +#portout[12] = 0 +#; +# +#% function to deliver reward to box wells +#function 1 +# portout[rewardWell]=1 % reward +# do in deliverPeriodBox +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% function to deliver reward to outer wells +#function 2 +# disp('outer reward') +# portout[rewardWell]=1 % reward +# do in deliverPeriodOuter +# portout[rewardWell]=0 % reset reward +# end +#end; +# +#% Function to turn on output +#function 3 +# portout[dio]=1 +#end; +# +#% function to turn off output +#function 4 +# portout[dio]=0 +#end; +# +#%display status +#function 5 +# disp(homeCount) +# disp(waitCount) +# disp(ripCount) +# disp(locktype1) +# disp(locktype2) +# disp(locktype3) +# disp(goalCount) +# disp(goalTotal) +# disp(otherCount) +#end; +# +#function 6 % end lockout and reactivate home +# disp('WHITENOISE') +# do in lockoutPeriod +# disp('LOCKEND') +# end +#end; +# +# +#% CALLBACKS -- EVENT-DRIVEN TRIGGERS +#callback portin[10] up +# if trialtype != 4 do +# currWell = 10 +# disp('UP 10') +# waslock = 0 +# disp(waslock) +# end +#end; +# +#callback portin[10] down +# if trialtype != 4 do +# lastWell = 10 +# disp('DOWN 10') +# end +#end; +# +#callback portin[11] up % Rip well +# currWell = 11 % well currently active +# disp('UP 11') +# +# if trialtype == 1 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('BEEP1') +# disp('BEEP2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 2 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +# +#end; +# +#callback portin[11] down +# lastWell=11 % well left, now last well +# disp('DOWN 11') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[12] up % wait well +# currWell = 12 % well currently active +# disp('UP 12') +# if trialtype == 2 do +# if lastWell != currWell do +# proximity = 1 +# do in waittime +# if proximity > 0 do +# proximity = 0 +# trialtype = 3 +# disp('CLICK1') +# disp('CLICK2') +# end +# end +# else do +# proximity=proximity+1 +# end +# else do +# if (trialtype != 4 && currWell != lastWell && waslock != 1) do +# if trialtype == 1 do +# disp('LOCKOUT 1') +# else do +# disp('LOCKOUT 2') +# end +# end +# end +#end; +# +#callback portin[12] down +# lastWell=12 % well left, now last well +# disp('DOWN 12') +# if proximity>0 do +# do in proxTime +# proximity=proximity-1 +# if (proximity <1 && trialtype <3) do +# disp('LOCKOUT 3') +# end +# end +# end +#end; +# +#callback portin[1] up +# currWell = 1 +# if currWell != lastWell do +# disp('UP 1') +# end +#end; +# +#callback portin[1] down +# lastWell = 1 +# disp('DOWN 1') +#end; +# +#callback portin[2] up +# currWell = 2 +# if currWell != lastWell do +# disp('UP 2') +# end +#end; +# +#callback portin[2] down +# lastWell = 2 +# disp('DOWN 2') +#end; +# +#callback portin[3] up +# currWell = 3 +# if currWell != lastWell do +# disp('UP 3') +# end +#end; +# +#callback portin[3] down +# lastWell = 3 +# disp('DOWN 3') +#end; +# +#callback portin[4] up +# currWell = 4 +# if currWell != lastWell do +# disp('UP 4') +# end +#end; +# +#callback portin[4] down +# lastWell = 4 +# +# disp('DOWN 4') +#end; +# +#callback portin[5] up +# currWell = 5 +# if currWell != lastWell do +# disp('UP 5') +# end +#end; +# +#callback portin[5] down +# lastWell = 5 +# disp('DOWN 5') +#end; +# +#callback portin[6] up +# currWell = 6 +# if currWell != lastWell do +# disp('UP 6') +# end +#end; +# +#callback portin[6] down +# lastWell = 6 +# disp('DOWN 6') +#end; +# +#callback portin[7] up +# currWell = 7 +# if currWell != lastWell do +# disp('UP 7') +# end +#end; +# +#callback portin[7] down +# lastWell = 7 +# disp('DOWN 7') +#end; +# +#callback portin[8] up +# currWell = 8 +# if currWell != lastWell do +# disp('UP 8') +# end +#end; +# +#callback portin[8] down +# lastWell = 8 +# disp('DOWN 8') +#end; +# +# +#import math +#import struct +#import re +#import time +#import random +#import numpy as np +#import pyaudio +#import wave +#from statistics import mean +## V8pre_forage +## visits to incorrect wells cause 5s lockout +## exception is repeat visit to prior well (is ok, no lockout) +## can go to any outer well, any number of times +## lockout from getting rip/wait wells wrong is also 5s +# +# +## decide what type of up trigger was just recieved; act accordingly +#def pokeIn(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# doHome() +# +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# doOuter(num) +# +## decide what type of down trigger was just recieved; act accordingly +#def pokeOut(dio): +# global homeWell +# global waitWells +# global outerWells +# global currWell +# global lastWell +# +# currWell = int(dio[1]) +# if currWell == homeWell: +# endHome() +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# endWait() +# for num in range(len(outerWells)): +# if currWell == outerWells[num]: +# endOuter() +# lastWell = currWell +# +##home poke: decide trial type and upcoming wait length; turn on lights accordingly +#def doHome(): +# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout +# global homePump +# global lastWell +# global currWell +# #global waitdist +# +# if trialtype == 0: +# opts = [1, 2] +# randnum = np.random.randint(0,2) #-1 +# trialtype = opts[randnum] +# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #randnum = np.random.randint(0,8) +# delaytime = chooseDelay() +# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") +# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime +# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC +# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") +# print("SCQTMESSAGE: trigger(1);\n") # deliver reward +# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: +# lockout([2,2]) +# +#def chooseDelay(): +# global trialtype +# global RWcount +# global waitdist +# global startwaitdist +# +# print(RWcount) +# +# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short +# return startwaitdist[RWcount[trialtype-1]] +# +# else: +# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist +# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) +# +# else: +# return int(np.random.choice(waitdist,1)) +# +# +#def endHome(): +# global trialtype +# global lastWell +# global homeWell +# global waitWells +# +# if trialtype == 1 or trialtype == 2: +# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +# +#def click(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# +# #generate_click() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC +# +#def beep(): +# global waitPumps +# global waitWells +# global trialtype +# global currWell +# global RWcount +# +# RWcount[trialtype-1]+=1 +# #generate_beep() +# trialtype = 3 # ready for outer visit +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# #deliver reward +# for num in range(len(waitWells)): +# if currWell == waitWells[num]: +# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") +# print("SCQTMESSAGE: trigger(1);\n") +# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC +# +#def endWait(): +# global trialtype +# global goalWell +# global currWell +# global outerWells +# +# if trialtype == 3: # wait complete +# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): # turn on outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") +# +# +#def doOuter(val): +# global outerPumps +# global trialtype +# global allGoal +# global thisGoal +# global goalWell +# global outerReps +# global currWell +# global lastWell +# global homeWell +# global numgoals +# global validOuterWells +# global waslock +# +# if trialtype == 3: +# trialtype = 0 # outer satisfied, head home next +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# if currWell in goalWell : # repeated; reward +# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") +# print("SCQTMESSAGE: trigger(2);\n") # deliver reward +# allGoal+=1 +# thisGoal+=1 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC +# +# if thisGoal >= outerReps: #maxed repeats reached, time to switch +# print("time to choose new goalS!") +# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats +# chooseGoal() +# else: +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection +# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection +# print(goalWell) +# +# thisGoal = 0 +# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC +# +# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) +# goalWell = [currWell] +# +# else: # wrong well; add to forage record if newly visited +# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC +# +# elif trialtype < 3 and waslock<1: +# lockout([2,2]) +# +#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal +# global goalWell +# global oldGoals +# global numgoals +# global outerWells +# global forageNum +# #global outerReps +# +# oldGoals.append(goalWell) +# print(oldGoals) +# +# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms +# forageNum = 1 +# +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# if len(oldGoals)>7: # if all outers have been goal, reset +# print("resetting oldgoals") +# oldGoals = [None] +# +# while any(i in goalWell for i in oldGoals): #if any common elements +# goalWell = np.random.choice(outerWells,forageNum,replace=False) +# print(goalWell) +# +# outerReps = np.random.randint(4,13) +# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# print("new goal is "+str(goalWell)+"\n") +# +#def endOuter(): +# global trialtype +# global outerWells +# global homeWell +# global lastWell +# global currWell +# +# if trialtype == 0 and lastWell != currWell: # outer satisfied +# for num in range(len(outerWells)): # turn off outer lights +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on +# print("SCQTMESSAGE: trigger(3);\n") +# print("SCQTMESSAGE: trigger(5);\n") # display stats +# +#def lockout(val): # turn off all lights for certain amount of time +# global waitWells +# global outerWells +# global lastWell +# global trialtype +# global waslock +# +# locktype = int(val[1]) +# trialtype = 4 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE +# #turn off all lights +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(waitWells)): #turn off all wait and outer well lights +# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# for num in range(len(outerWells)): +# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") +# print("SCQTMESSAGE: trigger(4);\n") +# waslock=1 +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well +# if locktype == 1: +# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well +# if locktype == 2: +# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC +# if locktype == 3: +# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors +# +# +#def lockend(): +# global trialtype +# global homeWell +# +# trialtype = 0 +# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") +# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well +# print("SCQTMESSAGE: trigger(3);\n") +# +#def updateWaslock(val): +# global waslock +# +# waslock = int(val[1]) +# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") +# +## Function: generate click sound +#def generate_click(): +# +# File='ZippoClick_short.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +## Function: generate cowbell sound +#def generate_beep(): +# +# File='Beep.wav' +# spf = wave.open(File, 'rb') +# signal = spf.readframes(-1) +# signal = np.fromstring(signal, 'Int16') +# p = pyaudio.PyAudio() +# stream = p.open(format = +# p.get_format_from_width(spf.getsampwidth()), +# channels = 1, +# rate = spf.getframerate(), +# output = True) +# #play +# data = struct.pack("%dh"%(len(signal)), *list(signal)) +# stream.write(data) +# stream.close() +# p.terminate() +# +#def makewhitenoise(): #play white noise for duration of lockout +# global locksoundlength +# +# soundlength = int(44100*locksoundlength/1000) +# p = pyaudio.PyAudio() +# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) +# whitenoise = np.random.randint(700,size = soundlength) +# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) +# stream.write(data) +# stream.close() +# p.terminate() +# +# +## This is the custom callback function. When events occur, addScQtEvent will +## call this function. This function MUST BE NAMED 'callback'!!!! +#def callback(line): +# +# global waslock +# +# if line.find("UP") >= 0: #input triggered +# pokeIn(re.findall(r'\d+',line)) +# if line.find("DOWN") >= 0: #input triggered +# pokeOut(re.findall(r'\d+',line)) +# if line.find("BEEP1") >= 0: # make a beep and deliver reward +# beep() +# if line.find("BEEP2") >= 0: # make a beep and deliver reward +# generate_beep() +# if line.find("CLICK1") >= 0: # make a click and deliver reward +# click() +# if line.find("CLICK2") >= 0: # make a click and deliver reward +# generate_click() +# if line.find("LOCKOUT") >= 0: # lockout procedure +# lockout(re.findall(r'\d+',line)) +# if line.find("LOCKEND") >= 0: # reset trialtype to 0 +# lockend() +# if line.find("WHITENOISE") >= 0: # make noise during lockout +# makewhitenoise() +# if line.find("waslock") >= 0: #update waslock value +# updateWaslock(re.findall(r'\d+',line)) +# +# +## define wells +#homeWell = 10 +#waitWells = [11,12] +#outerWells = [1,2,3,4,5,6,7,8] +##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num +## define pumps +#homePump = 25 +#waitPumps = [26, 27] +#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] +# +##global variables +#lastWell = -1 +#currWell = -1 +#trialtype = 0 +#outerReps = 10 +##outerReps = np.random.randint(4,13) #10 +#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") +# +#allGoal = 0 +#thisGoal = 0 +#numgoals = 1 # number of outer arms rewarded +#forageNum = 1 +#if numgoals == 1: +# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells +#else: +# goalWell = np.random.choice(outerWells,numgoals,replace=False) +# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) +# +#oldGoals = [] #initialize with any wells to exclude from being goal +##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] +#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] +# +#startwaitdist = [1000, 1500, 2000] +# +#locksoundlength = 1000 +#print(goalWell) +#waslock=0 +#RWcount = [0,0 +# +24056604 UP 10 +24056604 waslock = 0 +24056604 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24056628 512 16777728 +~~~ +24056778 512 512 +24056821 DOWN 10 +24056821 0 512 +~~~ +~~~ +24056843 0 1536 +~~~ +~~~ +24056845 0 1024 +24056846 homeCount = 1 +24056846 waitCount = 0 +24056847 ripCount = 0 +24056847 locktype1 = 0 +24056848 locktype2 = 0 +24056848 locktype3 = 0 +24056849 goalCount = 0 +24056849 goalTotal = 0 +24056850 otherCount = 0 +~~~ +24057124 UP 10 +24057124 waslock = 0 +24057124 512 1024 +24057128 DOWN 10 +24057128 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057147 homeCount = 1 +24057147 waitCount = 0 +24057148 ripCount = 0 +24057148 locktype1 = 0 +24057149 locktype2 = 0 +24057149 locktype3 = 0 +24057150 goalCount = 0 +24057150 goalTotal = 0 +24057151 otherCount = 0 +~~~ +24057247 UP 10 +24057247 waslock = 0 +24057247 512 1024 +24057257 DOWN 10 +24057256 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057278 homeCount = 1 +24057279 waitCount = 0 +24057280 ripCount = 0 +24057280 locktype1 = 0 +24057281 locktype2 = 0 +24057281 locktype3 = 0 +24057281 goalCount = 0 +24057282 goalTotal = 0 +24057282 otherCount = 0 +~~~ +24057380 UP 10 +24057380 waslock = 0 +24057379 512 1024 +24057390 DOWN 10 +24057390 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057406 homeCount = 1 +24057407 waitCount = 0 +24057407 ripCount = 0 +24057408 locktype1 = 0 +24057408 locktype2 = 0 +24057409 locktype3 = 0 +24057409 goalCount = 0 +24057410 goalTotal = 0 +24057410 otherCount = 0 +~~~ +24057508 UP 10 +24057508 waslock = 0 +24057508 512 1024 +24057525 DOWN 10 +24057525 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24057549 homeCount = 1 +24057549 waitCount = 0 +24057550 ripCount = 0 +24057550 locktype1 = 0 +24057551 locktype2 = 0 +24057551 locktype3 = 0 +24057552 goalCount = 0 +24057552 goalTotal = 0 +24057553 otherCount = 0 +~~~ +24057634 UP 10 +24057634 waslock = 0 +24057634 512 1024 +~~~ +24057659 DOWN 10 +24057659 0 1024 +~~~ +~~~ +~~~ +~~~ +24057678 homeCount = 1 +24057679 waitCount = 0 +24057679 ripCount = 0 +24057680 locktype1 = 0 +24057680 locktype2 = 0 +24057681 locktype3 = 0 +24057681 goalCount = 0 +24057682 goalTotal = 0 +24057682 otherCount = 0 +~~~ +24057752 UP 10 +24057752 waslock = 0 +24057752 512 1024 +~~~ +24057792 DOWN 10 +24057792 0 1024 +~~~ +~~~ +~~~ +~~~ +24057817 homeCount = 1 +24057818 waitCount = 0 +24057818 ripCount = 0 +24057819 locktype1 = 0 +24057819 locktype2 = 0 +24057820 locktype3 = 0 +24057820 goalCount = 0 +24057821 goalTotal = 0 +24057821 otherCount = 0 +~~~ +24057884 UP 10 +24057884 waslock = 0 +24057884 512 1024 +~~~ +24057931 DOWN 10 +24057931 0 1024 +~~~ +~~~ +~~~ +~~~ +24057955 homeCount = 1 +24057956 waitCount = 0 +24057956 ripCount = 0 +24057957 locktype1 = 0 +24057957 locktype2 = 0 +24057958 locktype3 = 0 +24057958 goalCount = 0 +24057959 goalTotal = 0 +24057959 otherCount = 0 +~~~ +24058025 UP 10 +24058025 waslock = 0 +24058025 512 1024 +~~~ +24058092 DOWN 10 +24058092 0 1024 +~~~ +~~~ +~~~ +~~~ +24058115 homeCount = 1 +24058115 waitCount = 0 +24058116 ripCount = 0 +24058116 locktype1 = 0 +24058117 locktype2 = 0 +24058117 locktype3 = 0 +24058118 goalCount = 0 +24058118 goalTotal = 0 +24058119 otherCount = 0 +~~~ +24058171 UP 10 +24058172 waslock = 0 +24058171 512 1024 +~~~ +24058243 DOWN 10 +24058243 0 1024 +24058250 UP 10 +24058251 waslock = 0 +24058250 512 1024 +24058271 DOWN 10 +24058271 0 1024 +~~~ +~~~ +~~~ +~~~ +24058277 homeCount = 1 +24058278 waitCount = 0 +24058278 ripCount = 0 +24058279 locktype1 = 0 +24058279 locktype2 = 0 +24058280 locktype3 = 0 +24058280 goalCount = 0 +24058281 goalTotal = 0 +24058281 otherCount = 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24058307 homeCount = 1 +24058307 waitCount = 0 +24058308 ripCount = 0 +24058308 locktype1 = 0 +24058309 locktype2 = 0 +24058309 locktype3 = 0 +24058310 goalCount = 0 +24058310 goalTotal = 0 +24058311 otherCount = 0 +~~~ +24058325 UP 10 +24058325 waslock = 0 +24058325 512 1024 +~~~ +24058429 DOWN 10 +24058429 0 1024 +24058443 UP 10 +24058443 waslock = 0 +24058443 512 1024 +~~~ +~~~ +~~~ +~~~ +24058462 homeCount = 1 +24058463 waitCount = 0 +24058463 ripCount = 0 +24058464 locktype1 = 0 +24058464 locktype2 = 0 +24058465 locktype3 = 0 +24058465 goalCount = 0 +24058466 goalTotal = 0 +24058466 otherCount = 0 +~~~ +~~~ +24058585 DOWN 10 +24058585 0 1024 +24058597 UP 10 +24058597 waslock = 0 +24058597 512 1024 +~~~ +~~~ +~~~ +~~~ +24058624 homeCount = 1 +24058625 waitCount = 0 +24058625 ripCount = 0 +24058626 locktype1 = 0 +24058626 locktype2 = 0 +24058627 locktype3 = 0 +24058627 goalCount = 0 +24058628 goalTotal = 0 +24058628 otherCount = 0 +~~~ +~~~ +24058732 DOWN 10 +24058732 0 1024 +24058752 UP 10 +24058752 waslock = 0 +24058752 512 1024 +~~~ +~~~ +~~~ +~~~ +24058759 homeCount = 1 +24058759 waitCount = 0 +24058760 ripCount = 0 +24058760 locktype1 = 0 +24058761 locktype2 = 0 +24058761 locktype3 = 0 +24058762 goalCount = 0 +24058762 goalTotal = 0 +24058763 otherCount = 0 +~~~ +~~~ +24059043 DOWN 10 +24059043 0 1024 +~~~ +24059062 UP 10 +24059063 waslock = 0 +24059062 512 1024 +~~~ +~~~ +~~~ +24059066 homeCount = 1 +24059067 waitCount = 0 +24059067 ripCount = 0 +24059068 locktype1 = 0 +24059068 locktype2 = 0 +24059069 locktype3 = 0 +24059069 goalCount = 0 +24059070 goalTotal = 0 +24059070 otherCount = 0 +~~~ +~~~ +24059196 DOWN 10 +24059196 0 1024 +~~~ +~~~ +~~~ +~~~ +24059218 homeCount = 1 +24059218 waitCount = 0 +24059219 ripCount = 0 +24059219 locktype1 = 0 +24059220 locktype2 = 0 +24059220 locktype3 = 0 +24059221 goalCount = 0 +24059221 goalTotal = 0 +24059222 otherCount = 0 +~~~ +24059223 UP 10 +24059223 waslock = 0 +24059223 512 1024 +~~~ +24059360 DOWN 10 +24059360 0 1024 +24059385 UP 10 +24059385 waslock = 0 +24059385 512 1024 +~~~ +~~~ +~~~ +~~~ +24059399 homeCount = 1 +24059399 waitCount = 0 +24059400 ripCount = 0 +24059400 locktype1 = 0 +24059401 locktype2 = 0 +24059401 locktype3 = 0 +24059402 goalCount = 0 +24059402 goalTotal = 0 +24059403 otherCount = 0 +~~~ +~~~ +24059519 DOWN 10 +24059519 0 1024 +~~~ +~~~ +~~~ +~~~ +24059539 homeCount = 1 +24059539 waitCount = 0 +24059540 ripCount = 0 +24059540 locktype1 = 0 +24059541 locktype2 = 0 +24059541 locktype3 = 0 +24059542 goalCount = 0 +24059542 goalTotal = 0 +24059543 otherCount = 0 +~~~ +24059548 UP 10 +24059548 waslock = 0 +24059547 512 1024 +~~~ +24059681 DOWN 10 +24059681 0 1024 +~~~ +~~~ +~~~ +~~~ +24059713 homeCount = 1 +24059713 waitCount = 0 +24059714 ripCount = 0 +24059714 locktype1 = 0 +24059715 locktype2 = 0 +24059715 locktype3 = 0 +24059716 goalCount = 0 +24059716 goalTotal = 0 +24059717 otherCount = 0 +~~~ +24059717 UP 10 +24059718 waslock = 0 +24059717 512 1024 +~~~ +24059856 DOWN 10 +24059856 0 1024 +~~~ +~~~ +~~~ +~~~ +24059881 homeCount = 1 +24059882 waitCount = 0 +24059882 ripCount = 0 +24059883 locktype1 = 0 +24059883 locktype2 = 0 +24059884 locktype3 = 0 +24059884 goalCount = 0 +24059885 goalTotal = 0 +24059885 otherCount = 0 +~~~ +24059888 UP 10 +24059889 waslock = 0 +24059888 512 1024 +~~~ +24060002 DOWN 10 +24060002 0 1024 +~~~ +~~~ +~~~ +~~~ +24060036 homeCount = 1 +24060037 waitCount = 0 +24060037 ripCount = 0 +24060038 locktype1 = 0 +24060038 locktype2 = 0 +24060039 locktype3 = 0 +24060039 goalCount = 0 +24060040 goalTotal = 0 +24060040 otherCount = 0 +~~~ +24060057 UP 10 +24060058 waslock = 0 +24060057 512 1024 +~~~ +24060155 DOWN 10 +24060155 0 1024 +~~~ +~~~ +~~~ +~~~ +24060183 homeCount = 1 +24060184 waitCount = 0 +24060184 ripCount = 0 +24060185 locktype1 = 0 +24060185 locktype2 = 0 +24060186 locktype3 = 0 +24060186 goalCount = 0 +24060187 goalTotal = 0 +24060187 otherCount = 0 +~~~ +24060218 UP 10 +24060219 waslock = 0 +24060218 512 1024 +~~~ +24060311 DOWN 10 +24060311 0 1024 +~~~ +~~~ +~~~ +~~~ +24060333 homeCount = 1 +24060333 waitCount = 0 +24060334 ripCount = 0 +24060334 locktype1 = 0 +24060335 locktype2 = 0 +24060335 locktype3 = 0 +24060336 goalCount = 0 +24060336 goalTotal = 0 +24060337 otherCount = 0 +~~~ +24060384 UP 10 +24060384 waslock = 0 +24060383 512 1024 +~~~ +24060470 DOWN 10 +24060470 0 1024 +~~~ +~~~ +~~~ +~~~ +24060494 homeCount = 1 +24060494 waitCount = 0 +24060495 ripCount = 0 +24060495 locktype1 = 0 +24060496 locktype2 = 0 +24060496 locktype3 = 0 +24060497 goalCount = 0 +24060497 goalTotal = 0 +24060498 otherCount = 0 +~~~ +24060541 UP 10 +24060542 waslock = 0 +24060541 512 1024 +~~~ +24060656 DOWN 10 +24060656 0 1024 +~~~ +~~~ +~~~ +~~~ +24060683 homeCount = 1 +24060683 waitCount = 0 +24060684 ripCount = 0 +24060684 locktype1 = 0 +24060685 locktype2 = 0 +24060685 locktype3 = 0 +24060686 goalCount = 0 +24060686 goalTotal = 0 +24060687 otherCount = 0 +~~~ +24060718 UP 10 +24060718 waslock = 0 +24060718 512 1024 +~~~ +24060821 DOWN 10 +24060821 0 1024 +~~~ +~~~ +~~~ +~~~ +24060844 homeCount = 1 +24060844 waitCount = 0 +24060845 ripCount = 0 +24060845 locktype1 = 0 +24060846 locktype2 = 0 +24060846 locktype3 = 0 +24060847 goalCount = 0 +24060847 goalTotal = 0 +24060848 otherCount = 0 +~~~ +24060875 UP 10 +24060875 waslock = 0 +24060875 512 1024 +~~~ +24061011 DOWN 10 +24061011 0 1024 +~~~ +~~~ +~~~ +~~~ +24061035 homeCount = 1 +24061035 waitCount = 0 +24061036 ripCount = 0 +24061036 locktype1 = 0 +24061037 locktype2 = 0 +24061037 locktype3 = 0 +24061038 goalCount = 0 +24061038 goalTotal = 0 +24061039 otherCount = 0 +~~~ +24061064 UP 10 +24061065 waslock = 0 +24061064 512 1024 +~~~ +24061209 DOWN 10 +24061209 0 1024 +24061222 UP 10 +24061223 waslock = 0 +24061222 512 1024 +~~~ +~~~ +~~~ +~~~ +24061246 homeCount = 1 +24061247 waitCount = 0 +24061247 ripCount = 0 +24061248 locktype1 = 0 +24061248 locktype2 = 0 +24061249 locktype3 = 0 +24061249 goalCount = 0 +24061250 goalTotal = 0 +24061250 otherCount = 0 +~~~ +~~~ +24061545 DOWN 10 +24061545 0 1024 +24061560 UP 10 +24061560 waslock = 0 +24061560 512 1024 +~~~ +~~~ +~~~ +~~~ +24061597 homeCount = 1 +24061598 waitCount = 0 +24061598 ripCount = 0 +24061599 locktype1 = 0 +24061599 locktype2 = 0 +24061600 locktype3 = 0 +24061600 goalCount = 0 +24061601 goalTotal = 0 +24061601 otherCount = 0 +~~~ +~~~ +24063988 DOWN 10 +24063988 0 1024 +24064005 UP 10 +24064006 waslock = 0 +24064005 512 1024 +~~~ +~~~ +~~~ +~~~ +24064014 homeCount = 1 +24064014 waitCount = 0 +24064015 ripCount = 0 +24064015 locktype1 = 0 +24064016 locktype2 = 0 +24064016 locktype3 = 0 +24064017 goalCount = 0 +24064017 goalTotal = 0 +24064018 otherCount = 0 +~~~ +~~~ +24064723 DOWN 10 +24064723 0 1024 +~~~ +~~~ +24064751 UP 10 +24064751 waslock = 0 +24064751 512 1024 +~~~ +~~~ +24064754 homeCount = 1 +24064754 waitCount = 0 +24064755 ripCount = 0 +24064755 locktype1 = 0 +24064756 locktype2 = 0 +24064756 locktype3 = 0 +24064757 goalCount = 0 +24064757 goalTotal = 0 +24064778 otherCount = 0 +~~~ +~~~ +24065124 DOWN 10 +24065124 0 1024 +24065130 UP 10 +24065130 waslock = 0 +24065130 512 1024 +~~~ +~~~ +~~~ +~~~ +24065153 homeCount = 1 +24065153 waitCount = 0 +24065154 ripCount = 0 +24065154 locktype1 = 0 +24065155 locktype2 = 0 +24065155 locktype3 = 0 +24065156 goalCount = 0 +24065156 goalTotal = 0 +24065157 otherCount = 0 +~~~ +~~~ +24065460 DOWN 10 +24065460 0 1024 +~~~ +~~~ +~~~ +~~~ +24065484 homeCount = 1 +24065484 waitCount = 0 +24065485 ripCount = 0 +24065485 locktype1 = 0 +24065486 locktype2 = 0 +24065486 locktype3 = 0 +24065487 goalCount = 0 +24065487 goalTotal = 0 +24065488 otherCount = 0 +~~~ +24065532 UP 10 +24065532 waslock = 0 +24065531 512 1024 +~~~ +24065573 DOWN 10 +24065573 0 1024 +~~~ +~~~ +~~~ +~~~ +24065598 homeCount = 1 +24065598 waitCount = 0 +24065599 ripCount = 0 +24065599 locktype1 = 0 +24065600 locktype2 = 0 +24065600 locktype3 = 0 +24065601 goalCount = 0 +24065601 goalTotal = 0 +24065602 otherCount = 0 +~~~ +24065685 UP 10 +24065685 waslock = 0 +24065685 512 1024 +24065713 DOWN 10 +24065713 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24065736 homeCount = 1 +24065737 waitCount = 0 +24065737 ripCount = 0 +24065738 locktype1 = 0 +24065738 locktype2 = 0 +24065739 locktype3 = 0 +24065739 goalCount = 0 +24065740 goalTotal = 0 +24065740 otherCount = 0 +~~~ +24067490 UP 12 +24067490 LOCKOUT 1 +24067490 2048 1024 +~~~ +24067512 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +24067516 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24067665 DOWN 12 +24067665 0 0 +24067738 UP 12 +24067738 2048 0 +24067825 DOWN 12 +24067825 0 0 +24067873 UP 12 +24067873 2048 0 +24067961 DOWN 12 +24067961 0 0 +24068038 UP 12 +24068038 2048 0 +24068088 DOWN 12 +24068088 0 0 +24068334 UP 12 +24068334 2048 0 +24068564 DOWN 12 +24068564 0 0 +24068910 UP 12 +24068910 2048 0 +24068985 DOWN 12 +24068985 0 0 +24069745 UP 12 +24069745 2048 0 +24069769 DOWN 12 +24069769 0 0 +24070207 UP 12 +24070207 2048 0 +24070211 DOWN 12 +24070211 0 0 +24070465 UP 12 +24070465 2048 0 +24070485 DOWN 12 +24070485 0 0 +24070493 UP 12 +24070493 2048 0 +24070500 DOWN 12 +24070500 0 0 +24070608 UP 12 +24070608 2048 0 +24070632 DOWN 12 +24070632 0 0 +24070641 UP 12 +24070641 2048 0 +24070650 DOWN 12 +24070650 0 0 +24070709 UP 12 +24070709 2048 0 +24070737 DOWN 12 +24070737 0 0 +24070752 UP 12 +24070752 2048 0 +24070796 DOWN 12 +24070796 0 0 +24070859 UP 12 +24070859 2048 0 +24070876 DOWN 12 +24070876 0 0 +24070898 UP 12 +24070898 2048 0 +24070949 DOWN 12 +24070949 0 0 +24071006 UP 12 +24071006 2048 0 +24071024 DOWN 12 +24071024 0 0 +24071048 UP 12 +24071048 2048 0 +24071100 DOWN 12 +24071100 0 0 +24071199 UP 12 +24071199 2048 0 +24071254 DOWN 12 +24071254 0 0 +24071325 UP 12 +24071325 2048 0 +24071406 DOWN 12 +24071406 0 0 +24071413 UP 12 +24071413 2048 0 +24071565 DOWN 12 +24071565 0 0 +24071569 UP 12 +24071569 2048 0 +24072422 DOWN 12 +24072422 0 0 +24072431 UP 12 +24072430 2048 0 +24072582 DOWN 12 +24072582 0 0 +24072603 UP 12 +24072603 2048 0 +24072753 DOWN 12 +24072753 0 0 +24072770 UP 12 +24072770 2048 0 +24072935 DOWN 12 +24072935 0 0 +24072956 UP 12 +24072956 2048 0 +24073295 DOWN 12 +24073295 0 0 +24073309 UP 12 +24073309 2048 0 +24073471 DOWN 12 +24073471 0 0 +24073494 UP 12 +24073494 2048 0 +24073657 DOWN 12 +24073657 0 0 +24073677 UP 12 +24073677 2048 0 +24073837 DOWN 12 +24073837 0 0 +24073859 UP 12 +24073859 2048 0 +24076260 DOWN 12 +24076260 0 0 +24076298 UP 12 +24076298 2048 0 +24076357 DOWN 12 +24076357 0 0 +24078484 UP 11 +24078484 1024 0 +24078510 DOWN 11 +24078510 0 0 +24078583 UP 11 +24078583 1024 0 +24078838 DOWN 11 +24078838 0 0 +24078872 UP 11 +24078872 1024 0 +24078960 DOWN 11 +24078960 0 0 +24081253 UP 11 +24081253 1024 0 +24081256 DOWN 11 +24081256 0 0 +24081403 UP 11 +24081403 1024 0 +24081408 DOWN 11 +24081408 0 0 +24081555 UP 11 +24081555 1024 0 +24081559 DOWN 11 +24081559 0 0 +24081780 UP 11 +24081780 1024 0 +24081797 DOWN 11 +24081797 0 0 +24081990 UP 11 +24081990 1024 0 +24081998 DOWN 11 +24081998 0 0 +24082137 UP 11 +24082137 1024 0 +24082165 DOWN 11 +24082165 0 0 +24082275 UP 11 +24082275 1024 0 +24082334 DOWN 11 +24082334 0 0 +24082411 UP 11 +24082411 1024 0 +24082495 DOWN 11 +24082495 0 0 +24082530 UP 11 +24082530 1024 0 +24082553 DOWN 11 +24082553 0 0 +24082562 UP 11 +24082562 1024 0 +24082667 DOWN 11 +24082667 0 0 +24082693 UP 11 +24082693 1024 0 +24082844 DOWN 11 +24082844 0 0 +24082860 UP 11 +24082860 1024 0 +24083018 DOWN 11 +24083018 0 0 +24083043 UP 11 +24083043 1024 0 +24083092 DOWN 11 +24083092 0 0 +24083101 UP 11 +24083101 1024 0 +24083201 DOWN 11 +24083201 0 0 +24083211 UP 11 +24083211 1024 0 +24083378 DOWN 11 +24083378 0 0 +24083382 UP 11 +24083382 1024 0 +24083552 DOWN 11 +24083552 0 0 +24083557 UP 11 +24083557 1024 0 +24083729 DOWN 11 +24083729 0 0 +24083743 UP 11 +24083743 1024 0 +24083912 DOWN 11 +24083912 0 0 +24083936 UP 11 +24083936 1024 0 +24084098 DOWN 11 +24084098 0 0 +24084109 UP 11 +24084108 1024 0 +24086825 DOWN 11 +24086825 0 0 +24086849 UP 11 +24086849 1024 0 +24086884 DOWN 11 +24086884 0 0 +24086917 UP 11 +24086917 1024 0 +24086937 DOWN 11 +24086937 0 0 +24086949 UP 11 +24086949 1024 0 +24087030 DOWN 11 +24087030 0 0 +24087064 UP 11 +24087064 1024 0 +24087088 DOWN 11 +24087088 0 0 +24087108 UP 11 +24087108 1024 0 +24087213 DOWN 11 +24087213 0 0 +24087245 UP 11 +24087245 1024 0 +24087271 DOWN 11 +24087271 0 0 +24087277 UP 11 +24087277 1024 0 +24087389 DOWN 11 +24087389 0 0 +24087403 UP 11 +24087403 1024 0 +24087574 DOWN 11 +24087574 0 0 +24087584 UP 11 +24087584 1024 0 +24088308 DOWN 11 +24088308 0 0 +24088330 UP 11 +24088330 1024 0 +24088411 DOWN 11 +24088411 0 0 +24088480 UP 11 +24088480 1024 0 +24088557 DOWN 11 +24088557 0 0 +24088788 UP 11 +24088788 1024 0 +24089081 DOWN 11 +24089081 0 0 +24092512 LOCKEND +~~~ +~~~ +~~~ +24092533 0 512 +24094091 UP 7 +24094091 64 512 +24094400 DOWN 7 +24094399 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24094430 64 512 +~~~ +~~~ +~~~ +24094434 homeCount = 1 +24094434 waitCount = 0 +24094435 ripCount = 0 +24094435 locktype1 = 1 +24094436 locktype2 = 0 +24094436 locktype3 = 0 +24094437 goalCount = 0 +24094437 goalTotal = 0 +24094438 otherCount = 0 +~~~ +24095843 DOWN 7 +24095843 0 512 +24100125 UP 10 +24100125 waslock = 0 +24100125 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24100155 512 16777728 +~~~ +24100304 512 512 +24100517 DOWN 10 +24100517 0 512 +~~~ +~~~ +24100541 0 2560 +~~~ +~~~ +24100543 0 2048 +24100544 homeCount = 2 +24100545 waitCount = 0 +24100545 ripCount = 0 +24100546 locktype1 = 1 +24100546 locktype2 = 0 +24100547 locktype3 = 0 +24100547 goalCount = 0 +24100548 goalTotal = 0 +24100548 otherCount = 0 +~~~ +24100569 UP 10 +24100570 waslock = 0 +24100569 512 2048 +~~~ +24100616 DOWN 10 +24100616 0 2048 +~~~ +~~~ +~~~ +~~~ +24100646 homeCount = 2 +24100646 waitCount = 0 +24100647 ripCount = 0 +24100647 locktype1 = 1 +24100648 locktype2 = 0 +24100648 locktype3 = 0 +24100649 goalCount = 0 +24100649 goalTotal = 0 +24100650 otherCount = 0 +~~~ +24100783 UP 10 +24100783 waslock = 0 +24100783 512 2048 +~~~ +24100815 DOWN 10 +24100815 0 2048 +~~~ +~~~ +~~~ +~~~ +24100843 homeCount = 2 +24100843 waitCount = 0 +24100844 ripCount = 0 +24100844 locktype1 = 1 +24100845 locktype2 = 0 +24100845 locktype3 = 0 +24100846 goalCount = 0 +24100846 goalTotal = 0 +24100847 otherCount = 0 +~~~ +24100909 UP 10 +24100909 waslock = 0 +24100909 512 2048 +~~~ +24100989 DOWN 10 +24100989 0 2048 +~~~ +~~~ +~~~ +~~~ +24101013 homeCount = 2 +24101013 waitCount = 0 +24101014 ripCount = 0 +24101014 locktype1 = 1 +24101015 locktype2 = 0 +24101015 locktype3 = 0 +24101016 goalCount = 0 +24101016 goalTotal = 0 +24101017 otherCount = 0 +~~~ +24101018 UP 10 +24101018 waslock = 0 +24101018 512 2048 +~~~ +24101542 DOWN 10 +24101542 0 2048 +24101568 UP 10 +24101569 waslock = 0 +24101568 512 2048 +~~~ +~~~ +~~~ +~~~ +24101575 homeCount = 2 +24101575 waitCount = 0 +24101576 ripCount = 0 +24101576 locktype1 = 1 +24101577 locktype2 = 0 +24101577 locktype3 = 0 +24101578 goalCount = 0 +24101578 goalTotal = 0 +24101579 otherCount = 0 +~~~ +~~~ +24101712 DOWN 10 +24101712 0 2048 +~~~ +24101739 UP 10 +24101739 waslock = 0 +24101739 512 2048 +~~~ +~~~ +~~~ +24101742 homeCount = 2 +24101743 waitCount = 0 +24101743 ripCount = 0 +24101744 locktype1 = 1 +24101744 locktype2 = 0 +24101745 locktype3 = 0 +24101745 goalCount = 0 +24101746 goalTotal = 0 +24101746 otherCount = 0 +~~~ +~~~ +24101900 DOWN 10 +24101900 0 2048 +24101911 UP 10 +24101911 waslock = 0 +24101911 512 2048 +~~~ +~~~ +~~~ +~~~ +24101935 homeCount = 2 +24101935 waitCount = 0 +24101936 ripCount = 0 +24101936 locktype1 = 1 +24101937 locktype2 = 0 +24101937 locktype3 = 0 +24101938 goalCount = 0 +24101938 goalTotal = 0 +24101939 otherCount = 0 +~~~ +~~~ +24102072 DOWN 10 +24102071 0 2048 +24102086 UP 10 +24102086 waslock = 0 +24102086 512 2048 +~~~ +~~~ +~~~ +~~~ +24102094 homeCount = 2 +24102095 waitCount = 0 +24102095 ripCount = 0 +24102096 locktype1 = 1 +24102096 locktype2 = 0 +24102097 locktype3 = 0 +24102097 goalCount = 0 +24102098 goalTotal = 0 +24102098 otherCount = 0 +~~~ +~~~ +24103807 DOWN 10 +24103807 0 2048 +24103823 UP 10 +24103823 waslock = 0 +24103823 512 2048 +~~~ +~~~ +~~~ +~~~ +24103831 homeCount = 2 +24103831 waitCount = 0 +24103832 ripCount = 0 +24103832 locktype1 = 1 +24103833 locktype2 = 0 +24103833 locktype3 = 0 +24103834 goalCount = 0 +24103834 goalTotal = 0 +24103835 otherCount = 0 +~~~ +~~~ +24103981 DOWN 10 +24103981 0 2048 +~~~ +~~~ +~~~ +~~~ +24104009 homeCount = 2 +24104010 waitCount = 0 +24104010 ripCount = 0 +24104011 locktype1 = 1 +24104011 locktype2 = 0 +24104012 locktype3 = 0 +24104012 goalCount = 0 +24104013 goalTotal = 0 +24104013 otherCount = 0 +~~~ +24104014 UP 10 +24104014 waslock = 0 +24104014 512 2048 +~~~ +24104173 DOWN 10 +24104173 0 2048 +~~~ +~~~ +~~~ +~~~ +24104198 homeCount = 2 +24104199 waitCount = 0 +24104199 ripCount = 0 +24104200 locktype1 = 1 +24104200 locktype2 = 0 +24104201 locktype3 = 0 +24104201 goalCount = 0 +24104202 goalTotal = 0 +24104202 otherCount = 0 +~~~ +24116229 UP 12 +24116229 2048 2048 +24116292 DOWN 12 +24116292 0 2048 +24116492 LOCKOUT 3 +~~~ +24116519 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24116525 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24116631 UP 12 +24116631 2048 0 +24116733 DOWN 12 +24116732 0 0 +24116782 UP 12 +24116782 2048 0 +24116880 DOWN 12 +24116880 0 0 +24116947 UP 12 +24116947 2048 0 +24117083 DOWN 12 +24117083 0 0 +24117145 UP 12 +24117145 2048 0 +24117245 DOWN 12 +24117245 0 0 +24120977 UP 3 +24120976 4 0 +24121186 DOWN 3 +24121186 0 0 +24121258 4 0 +24121715 DOWN 3 +24121715 0 0 +24121728 4 0 +24121872 DOWN 3 +24121872 0 0 +24121886 4 0 +24122597 DOWN 3 +24122597 0 0 +24122606 4 0 +24123130 DOWN 3 +24123130 0 0 +24123149 4 0 +24124151 DOWN 3 +24124151 0 0 +24124156 4 0 +24124181 DOWN 3 +24124181 0 0 +24133999 512 0 +24134020 0 0 +24134058 512 0 +24134337 0 0 +24134372 512 0 +24134413 0 0 +24134490 512 0 +24134977 0 0 +24134997 512 0 +24135340 0 0 +24135350 512 0 +24135514 0 0 +24135570 512 0 +24135615 0 0 +24139773 UP 8 +24139773 128 0 +24139806 DOWN 8 +24139806 0 0 +24139876 128 0 +24140057 DOWN 8 +24140057 0 0 +24140110 128 0 +24140388 DOWN 8 +24140388 0 0 +24140409 128 0 +24140533 DOWN 8 +24140533 0 0 +24140560 128 0 +24140693 DOWN 8 +24140693 0 0 +24140720 128 0 +24140869 DOWN 8 +24140869 0 0 +24140886 128 0 +24141045 DOWN 8 +24141045 0 0 +24141064 128 0 +24141211 DOWN 8 +24141211 0 0 +24141242 128 0 +24141397 DOWN 8 +24141397 0 0 +24141423 128 0 +24141519 LOCKEND +~~~ +~~~ +~~~ +24141542 128 512 +24141565 DOWN 8 +24141565 0 512 +24141596 128 512 +24141750 DOWN 8 +24141750 0 512 +24141766 128 512 +24142090 DOWN 8 +24142090 0 512 +24142106 128 512 +24143455 DOWN 8 +24143455 0 512 +24149708 UP 10 +24149708 waslock = 0 +24149708 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24149735 512 16777728 +~~~ +24149823 DOWN 10 +24149823 0 16777728 +24149841 UP 10 +24149842 waslock = 0 +24149841 512 16777728 +~~~ +~~~ +24149848 512 16779776 +~~~ +~~~ +24149850 512 16779264 +24149851 homeCount = 3 +24149852 waitCount = 0 +24149852 ripCount = 0 +24149853 locktype1 = 1 +24149853 locktype2 = 0 +24149854 locktype3 = 1 +24149854 goalCount = 0 +24149855 goalTotal = 0 +24149855 otherCount = 0 +~~~ +~~~ +24149885 512 2048 +24150195 DOWN 10 +24150195 0 2048 +~~~ +~~~ +~~~ +~~~ +24150224 homeCount = 3 +24150224 waitCount = 0 +24150225 ripCount = 0 +24150225 locktype1 = 1 +24150226 locktype2 = 0 +24150226 locktype3 = 1 +24150227 goalCount = 0 +24150227 goalTotal = 0 +24150228 otherCount = 0 +~~~ +24150237 UP 10 +24150237 waslock = 0 +24150236 512 2048 +~~~ +24150377 DOWN 10 +24150377 0 2048 +~~~ +~~~ +~~~ +~~~ +24150405 homeCount = 3 +24150405 waitCount = 0 +24150406 ripCount = 0 +24150406 locktype1 = 1 +24150407 locktype2 = 0 +24150407 locktype3 = 1 +24150408 goalCount = 0 +24150408 goalTotal = 0 +24150409 otherCount = 0 +~~~ +24150410 UP 10 +24150410 waslock = 0 +24150410 512 2048 +~~~ +24150548 DOWN 10 +24150547 0 2048 +~~~ +~~~ +~~~ +~~~ +24150574 homeCount = 3 +24150574 waitCount = 0 +24150575 ripCount = 0 +24150575 locktype1 = 1 +24150576 locktype2 = 0 +24150576 locktype3 = 1 +24150577 goalCount = 0 +24150577 goalTotal = 0 +24150578 otherCount = 0 +~~~ +24150582 UP 10 +24150582 waslock = 0 +24150582 512 2048 +~~~ +24150712 DOWN 10 +24150712 0 2048 +~~~ +~~~ +~~~ +~~~ +24150732 homeCount = 3 +24150732 waitCount = 0 +24150733 ripCount = 0 +24150733 locktype1 = 1 +24150734 locktype2 = 0 +24150734 locktype3 = 1 +24150735 goalCount = 0 +24150735 goalTotal = 0 +24150736 otherCount = 0 +~~~ +24150746 UP 10 +24150747 waslock = 0 +24150746 512 2048 +~~~ +24150885 DOWN 10 +24150885 0 2048 +~~~ +~~~ +~~~ +~~~ +24150911 homeCount = 3 +24150912 waitCount = 0 +24150912 ripCount = 0 +24150913 locktype1 = 1 +24150913 locktype2 = 0 +24150914 locktype3 = 1 +24150914 goalCount = 0 +24150915 goalTotal = 0 +24150915 otherCount = 0 +~~~ +24150922 UP 10 +24150922 waslock = 0 +24150922 512 2048 +~~~ +24151063 DOWN 10 +24151063 0 2048 +~~~ +~~~ +~~~ +~~~ +24151091 homeCount = 3 +24151092 waitCount = 0 +24151092 ripCount = 0 +24151093 locktype1 = 1 +24151093 locktype2 = 0 +24151094 locktype3 = 1 +24151094 goalCount = 0 +24151095 goalTotal = 0 +24151095 otherCount = 0 +~~~ +24151096 UP 10 +24151096 waslock = 0 +24151096 512 2048 +~~~ +24151239 DOWN 10 +24151239 0 2048 +~~~ +~~~ +~~~ +~~~ +24151264 homeCount = 3 +24151264 waitCount = 0 +24151265 ripCount = 0 +24151265 locktype1 = 1 +24151266 locktype2 = 0 +24151266 locktype3 = 1 +24151267 goalCount = 0 +24151267 goalTotal = 0 +24151268 otherCount = 0 +~~~ +24151272 UP 10 +24151273 waslock = 0 +24151272 512 2048 +~~~ +24151430 DOWN 10 +24151430 0 2048 +~~~ +~~~ +~~~ +~~~ +24151453 homeCount = 3 +24151454 waitCount = 0 +24151454 ripCount = 0 +24151455 locktype1 = 1 +24151455 locktype2 = 0 +24151456 locktype3 = 1 +24151456 goalCount = 0 +24151457 goalTotal = 0 +24151457 otherCount = 0 +~~~ +24151458 UP 10 +24151458 waslock = 0 +24151458 512 2048 +~~~ +24151611 DOWN 10 +24151610 0 2048 +~~~ +~~~ +~~~ +~~~ +24151634 homeCount = 3 +24151635 waitCount = 0 +24151635 ripCount = 0 +24151636 locktype1 = 1 +24151636 locktype2 = 0 +24151637 locktype3 = 1 +24151637 goalCount = 0 +24151638 goalTotal = 0 +24151638 otherCount = 0 +~~~ +24151641 UP 10 +24151642 waslock = 0 +24151641 512 2048 +~~~ +24151782 DOWN 10 +24151782 0 2048 +~~~ +~~~ +~~~ +~~~ +24151805 homeCount = 3 +24151805 waitCount = 0 +24151806 ripCount = 0 +24151806 locktype1 = 1 +24151807 locktype2 = 0 +24151807 locktype3 = 1 +24151808 goalCount = 0 +24151808 goalTotal = 0 +24151809 otherCount = 0 +~~~ +24151823 UP 10 +24151824 waslock = 0 +24151823 512 2048 +~~~ +24151978 DOWN 10 +24151978 0 2048 +24152002 UP 10 +24152003 waslock = 0 +24152002 512 2048 +~~~ +~~~ +~~~ +~~~ +24152007 homeCount = 3 +24152007 waitCount = 0 +24152008 ripCount = 0 +24152008 locktype1 = 1 +24152009 locktype2 = 0 +24152009 locktype3 = 1 +24152010 goalCount = 0 +24152010 goalTotal = 0 +24152011 otherCount = 0 +~~~ +~~~ +24152184 DOWN 10 +24152184 0 2048 +24152194 UP 10 +24152195 waslock = 0 +24152194 512 2048 +~~~ +~~~ +~~~ +~~~ +24152213 homeCount = 3 +24152213 waitCount = 0 +24152214 ripCount = 0 +24152214 locktype1 = 1 +24152215 locktype2 = 0 +24152215 locktype3 = 1 +24152216 goalCount = 0 +24152216 goalTotal = 0 +24152217 otherCount = 0 +~~~ +~~~ +24152367 DOWN 10 +24152367 0 2048 +~~~ +~~~ +~~~ +~~~ +24152395 homeCount = 3 +24152395 waitCount = 0 +24152396 ripCount = 0 +24152396 locktype1 = 1 +24152397 locktype2 = 0 +24152397 locktype3 = 1 +24152398 goalCount = 0 +24152398 goalTotal = 0 +24152399 otherCount = 0 +~~~ +24152402 UP 10 +24152403 waslock = 0 +24152402 512 2048 +~~~ +24152539 DOWN 10 +24152539 0 2048 +~~~ +~~~ +~~~ +~~~ +24152564 homeCount = 3 +24152564 waitCount = 0 +24152565 ripCount = 0 +24152565 locktype1 = 1 +24152566 locktype2 = 0 +24152566 locktype3 = 1 +24152567 goalCount = 0 +24152567 goalTotal = 0 +24152568 otherCount = 0 +~~~ +24152572 UP 10 +24152573 waslock = 0 +24152572 512 2048 +~~~ +24152741 DOWN 10 +24152741 0 2048 +24152759 UP 10 +24152760 waslock = 0 +24152759 512 2048 +~~~ +~~~ +~~~ +~~~ +24152763 homeCount = 3 +24152764 waitCount = 0 +24152764 ripCount = 0 +24152765 locktype1 = 1 +24152765 locktype2 = 0 +24152766 locktype3 = 1 +24152766 goalCount = 0 +24152767 goalTotal = 0 +24152767 otherCount = 0 +~~~ +~~~ +24153497 DOWN 10 +24153497 0 2048 +~~~ +~~~ +~~~ +~~~ +24153532 homeCount = 3 +24153532 waitCount = 0 +24153533 ripCount = 0 +24153533 locktype1 = 1 +24153534 locktype2 = 0 +24153534 locktype3 = 1 +24153535 goalCount = 0 +24153535 goalTotal = 0 +24153536 otherCount = 0 +~~~ +24153539 UP 10 +24153539 waslock = 0 +24153539 512 2048 +~~~ +24153665 DOWN 10 +24153665 0 2048 +~~~ +~~~ +24153684 UP 10 +24153684 waslock = 0 +24153684 512 2048 +~~~ +~~~ +24153686 homeCount = 3 +24153687 waitCount = 0 +24153687 ripCount = 0 +24153688 locktype1 = 1 +24153688 locktype2 = 0 +24153689 locktype3 = 1 +24153689 goalCount = 0 +24153690 goalTotal = 0 +24153711 otherCount = 0 +~~~ +~~~ +24153879 DOWN 10 +24153879 0 2048 +~~~ +~~~ +~~~ +~~~ +24153906 UP 10 +24153906 waslock = 0 +24153906 512 2048 +24153907 homeCount = 3 +24153908 waitCount = 0 +24153908 ripCount = 0 +24153909 locktype1 = 1 +24153909 locktype2 = 0 +24153910 locktype3 = 1 +24153910 goalCount = 0 +24153911 goalTotal = 0 +24153911 otherCount = 0 +~~~ +~~~ +24154063 DOWN 10 +24154063 0 2048 +~~~ +~~~ +24154084 UP 10 +24154084 waslock = 0 +24154084 512 2048 +~~~ +~~~ +24154087 homeCount = 3 +24154087 waitCount = 0 +24154088 ripCount = 0 +24154088 locktype1 = 1 +24154089 locktype2 = 0 +24154089 locktype3 = 1 +24154090 goalCount = 0 +24154090 goalTotal = 0 +24154111 otherCount = 0 +~~~ +~~~ +24154734 DOWN 10 +24154734 0 2048 +~~~ +24154753 UP 10 +24154753 waslock = 0 +24154753 512 2048 +~~~ +~~~ +~~~ +24154757 homeCount = 3 +24154757 waitCount = 0 +24154758 ripCount = 0 +24154758 locktype1 = 1 +24154759 locktype2 = 0 +24154759 locktype3 = 1 +24154760 goalCount = 0 +24154760 goalTotal = 0 +24154761 otherCount = 0 +~~~ +~~~ +24155139 DOWN 10 +24155139 0 2048 +24155152 UP 10 +24155152 waslock = 0 +24155152 512 2048 +~~~ +~~~ +~~~ +~~~ +24155162 homeCount = 3 +24155163 waitCount = 0 +24155163 ripCount = 0 +24155163 locktype1 = 1 +24155164 locktype2 = 0 +24155164 locktype3 = 1 +24155165 goalCount = 0 +24155165 goalTotal = 0 +24155166 otherCount = 0 +~~~ +~~~ +24155249 DOWN 10 +24155249 0 2048 +~~~ +~~~ +~~~ +~~~ +24155276 homeCount = 3 +24155276 waitCount = 0 +24155277 ripCount = 0 +24155277 locktype1 = 1 +24155278 locktype2 = 0 +24155278 locktype3 = 1 +24155279 goalCount = 0 +24155279 goalTotal = 0 +24155280 otherCount = 0 +~~~ +24155317 UP 10 +24155317 waslock = 0 +24155317 512 2048 +~~~ +24155370 DOWN 10 +24155370 0 2048 +~~~ +~~~ +~~~ +~~~ +24155391 homeCount = 3 +24155392 waitCount = 0 +24155392 ripCount = 0 +24155393 locktype1 = 1 +24155393 locktype2 = 0 +24155394 locktype3 = 1 +24155394 goalCount = 0 +24155395 goalTotal = 0 +24155395 otherCount = 0 +~~~ +24157118 UP 12 +24157118 2048 2048 +24158118 CLICK1 +24158118 CLICK2 +~~~ +~~~ +~~~ +24158143 2048 67110912 +~~~ +24158293 2048 2048 +24162037 DOWN 12 +24162037 0 2048 +24162046 UP 12 +24162046 2048 2048 +~~~ +~~~ +24162059 2048 0 +~~~ +~~~ +24162061 2048 1 +~~~ +~~~ +24162063 2048 3 +~~~ +~~~ +24162065 2048 7 +~~~ +~~~ +24162066 2048 15 +~~~ +~~~ +24162068 2048 31 +~~~ +~~~ +24162070 2048 63 +~~~ +~~~ +24162072 2048 127 +~~~ +~~~ +24162074 2048 255 +24162075 homeCount = 3 +24162075 waitCount = 1 +24162076 ripCount = 0 +24162076 locktype1 = 1 +24162097 locktype2 = 0 +24162098 locktype3 = 1 +24162098 goalCount = 0 +24162099 goalTotal = 0 +24162099 otherCount = 0 +~~~ +24162100 CURRENTGOAL IS [2] +~~~ +24164104 DOWN 12 +24164104 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24164146 homeCount = 3 +24164147 waitCount = 1 +24164147 ripCount = 0 +24164148 locktype1 = 1 +24164148 locktype2 = 0 +24164149 locktype3 = 1 +24164149 goalCount = 0 +24164150 goalTotal = 0 +24164150 otherCount = 0 +~~~ +24164151 CURRENTGOAL IS [2] +~~~ +24166882 UP 3 +24166882 4 255 +~~~ +~~~ +24167174 DOWN 3 +24167174 0 255 +~~~ +~~~ +24167201 0 254 +~~~ +~~~ +24167203 0 252 +~~~ +~~~ +24167205 0 248 +~~~ +~~~ +24167207 0 240 +~~~ +~~~ +24167209 0 224 +~~~ +~~~ +24167211 0 192 +~~~ +~~~ +24167212 0 128 +~~~ +~~~ +24167214 0 0 +~~~ +~~~ +24167216 0 512 +24167217 homeCount = 3 +24167218 waitCount = 1 +24167218 ripCount = 0 +24167219 locktype1 = 1 +24167219 locktype2 = 0 +24167240 locktype3 = 1 +24167240 goalCount = 0 +24167241 goalTotal = 0 +24167241 otherCount = 1 +~~~ +24167242 4 512 +24167909 DOWN 3 +24167909 0 512 +24167987 4 512 +24167998 DOWN 3 +24167998 0 512 +24171196 UP 10 +24171196 waslock = 0 +24171196 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24171228 512 16777728 +~~~ +24171232 DOWN 10 +24171232 0 16777728 +~~~ +~~~ +24171244 0 16778752 +~~~ +~~~ +24171246 0 16778240 +24171247 homeCount = 4 +24171247 waitCount = 1 +24171248 ripCount = 0 +24171248 locktype1 = 1 +24171249 locktype2 = 0 +24171249 locktype3 = 1 +24171250 goalCount = 0 +24171250 goalTotal = 0 +24171251 otherCount = 1 +~~~ +24171296 UP 10 +24171296 waslock = 0 +24171296 512 16778240 +~~~ +24171323 DOWN 10 +24171323 0 16778240 +~~~ +~~~ +~~~ +~~~ +24171346 homeCount = 4 +24171346 waitCount = 1 +24171347 ripCount = 0 +24171347 locktype1 = 1 +24171348 locktype2 = 0 +24171348 locktype3 = 1 +24171349 goalCount = 0 +24171349 goalTotal = 0 +24171350 otherCount = 1 +~~~ +24171378 0 1024 +24171850 UP 10 +24171850 waslock = 0 +24171850 512 1024 +~~~ +24172122 DOWN 10 +24172122 0 1024 +~~~ +~~~ +~~~ +~~~ +24172155 homeCount = 4 +24172156 waitCount = 1 +24172156 ripCount = 0 +24172157 locktype1 = 1 +24172157 locktype2 = 0 +24172158 locktype3 = 1 +24172158 goalCount = 0 +24172159 goalTotal = 0 +24172159 otherCount = 1 +~~~ +24172177 UP 10 +24172177 waslock = 0 +24172177 512 1024 +24172206 DOWN 10 +24172206 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24172253 homeCount = 4 +24172254 waitCount = 1 +24172254 ripCount = 0 +24172255 locktype1 = 1 +24172255 locktype2 = 0 +24172256 locktype3 = 1 +24172256 goalCount = 0 +24172257 goalTotal = 0 +24172257 otherCount = 1 +~~~ +24172303 UP 10 +24172303 waslock = 0 +24172303 512 1024 +~~~ +24172431 DOWN 10 +24172431 0 1024 +24172454 UP 10 +24172454 waslock = 0 +24172454 512 1024 +~~~ +~~~ +~~~ +~~~ +24172460 homeCount = 4 +24172461 waitCount = 1 +24172461 ripCount = 0 +24172462 locktype1 = 1 +24172462 locktype2 = 0 +24172463 locktype3 = 1 +24172463 goalCount = 0 +24172464 goalTotal = 0 +24172464 otherCount = 1 +~~~ +~~~ +24176002 DOWN 10 +24176002 0 1024 +~~~ +~~~ +~~~ +~~~ +24176021 homeCount = 4 +24176022 waitCount = 1 +24176022 ripCount = 0 +24176023 locktype1 = 1 +24176023 locktype2 = 0 +24176024 locktype3 = 1 +24176024 goalCount = 0 +24176025 goalTotal = 0 +24176025 otherCount = 1 +~~~ +24176057 UP 10 +24176057 waslock = 0 +24176057 512 1024 +~~~ +24176101 DOWN 10 +24176101 0 1024 +~~~ +~~~ +~~~ +~~~ +24176131 homeCount = 4 +24176131 waitCount = 1 +24176132 ripCount = 0 +24176132 locktype1 = 1 +24176133 locktype2 = 0 +24176133 locktype3 = 1 +24176134 goalCount = 0 +24176134 goalTotal = 0 +24176135 otherCount = 1 +~~~ +24177410 UP 11 +24177410 1024 1024 +24177464 DOWN 11 +24177464 0 1024 +24177493 UP 11 +24177493 1024 1024 +24178180 DOWN 11 +24178180 0 1024 +24178233 UP 11 +24178233 1024 1024 +24178411 BEEP1 +24178411 BEEP2 +~~~ +~~~ +~~~ +24178442 1024 33555456 +~~~ +24178528 DOWN 11 +24178528 0 33555456 +24178550 UP 11 +24178550 1024 33555456 +24178592 1024 1024 +~~~ +~~~ +24179111 1024 0 +~~~ +~~~ +24179113 1024 1 +~~~ +~~~ +24179115 1024 3 +~~~ +~~~ +24179116 1024 7 +~~~ +~~~ +24179118 1024 15 +~~~ +~~~ +24179120 1024 31 +~~~ +24179121 DOWN 11 +24179121 0 31 +~~~ +~~~ +24179123 0 63 +~~~ +~~~ +24179125 0 127 +~~~ +24179126 0 255 +24179127 homeCount = 4 +24179128 waitCount = 1 +24179149 ripCount = 1 +24179149 locktype1 = 1 +24179150 locktype2 = 0 +24179150 locktype3 = 1 +24179151 goalCount = 0 +24179151 goalTotal = 0 +24179152 otherCount = 1 +~~~ +24179153 CURRENTGOAL IS [2] +~~~ +24179153 UP 11 +24179153 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24179182 homeCount = 4 +24179183 waitCount = 1 +24179183 ripCount = 1 +24179184 locktype1 = 1 +24179184 locktype2 = 0 +24179185 locktype3 = 1 +24179185 goalCount = 0 +24179206 goalTotal = 0 +24179207 otherCount = 1 +~~~ +24179208 CURRENTGOAL IS [2] +~~~ +24183586 DOWN 11 +24183586 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24183630 homeCount = 4 +24183630 waitCount = 1 +24183631 ripCount = 1 +24183631 locktype1 = 1 +24183632 locktype2 = 0 +24183632 locktype3 = 1 +24183633 goalCount = 0 +24183633 goalTotal = 0 +24183634 otherCount = 1 +~~~ +24183635 CURRENTGOAL IS [2] +~~~ +24186519 UP 7 +24186519 64 255 +24186539 DOWN 7 +24186539 0 255 +~~~ +~~~ +~~~ +~~~ +24186563 0 254 +~~~ +~~~ +24186565 0 252 +~~~ +~~~ +24186567 0 248 +~~~ +~~~ +24186569 0 240 +~~~ +~~~ +24186571 0 224 +~~~ +~~~ +24186573 0 192 +~~~ +~~~ +24186574 0 128 +~~~ +~~~ +24186576 0 0 +~~~ +~~~ +24186578 0 512 +24186579 homeCount = 4 +24186580 waitCount = 1 +24186580 ripCount = 1 +24186581 locktype1 = 1 +24186581 locktype2 = 0 +24186602 locktype3 = 1 +24186602 goalCount = 0 +24186603 goalTotal = 0 +24186603 otherCount = 2 +~~~ +24186624 64 512 +24186990 DOWN 7 +24186990 0 512 +24187012 64 512 +24189589 DOWN 7 +24189589 0 512 +24189637 64 512 +24189704 DOWN 7 +24189704 0 512 +24196352 UP 10 +24196352 waslock = 0 +24196352 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24196378 512 16777728 +~~~ +24196528 512 512 +24196681 DOWN 10 +24196680 0 512 +~~~ +~~~ +24196702 0 1536 +~~~ +~~~ +24196704 0 1024 +24196705 homeCount = 5 +24196706 waitCount = 1 +24196706 ripCount = 1 +24196707 locktype1 = 1 +24196707 locktype2 = 0 +24196708 locktype3 = 1 +24196708 goalCount = 0 +24196709 goalTotal = 0 +24196709 otherCount = 2 +~~~ +24196730 UP 10 +24196731 waslock = 0 +24196730 512 1024 +~~~ +24200930 DOWN 10 +24200930 0 1024 +~~~ +~~~ +~~~ +~~~ +24200956 homeCount = 5 +24200957 waitCount = 1 +24200957 ripCount = 1 +24200958 locktype1 = 1 +24200958 locktype2 = 0 +24200959 locktype3 = 1 +24200960 goalCount = 0 +24200960 goalTotal = 0 +24200960 otherCount = 2 +~~~ +24200961 UP 10 +24200961 waslock = 0 +24200961 512 1024 +~~~ +24201037 DOWN 10 +24201037 0 1024 +~~~ +~~~ +~~~ +~~~ +24201065 homeCount = 5 +24201065 waitCount = 1 +24201066 ripCount = 1 +24201066 locktype1 = 1 +24201067 locktype2 = 0 +24201067 locktype3 = 1 +24201068 goalCount = 0 +24201068 goalTotal = 0 +24201069 otherCount = 2 +~~~ +24203157 UP 11 +24203157 1024 1024 +24203186 DOWN 11 +24203186 0 1024 +24203242 UP 11 +24203242 1024 1024 +24204343 DOWN 11 +24204343 0 1024 +24204378 UP 11 +24204378 1024 1024 +24204450 DOWN 11 +24204450 0 1024 +24204510 UP 11 +24204510 1024 1024 +24204657 BEEP1 +24204657 BEEP2 +~~~ +~~~ +~~~ +24204685 1024 33555456 +~~~ +24204835 1024 1024 +24208431 DOWN 11 +24208431 0 1024 +24208433 UP 11 +24208433 1024 1024 +~~~ +~~~ +24208455 1024 0 +~~~ +~~~ +24208457 1024 1 +~~~ +~~~ +24208459 1024 3 +~~~ +~~~ +24208460 1024 7 +~~~ +~~~ +24208462 1024 15 +~~~ +~~~ +24208464 1024 31 +~~~ +~~~ +24208466 1024 63 +~~~ +~~~ +24208468 1024 127 +~~~ +~~~ +24208469 1024 255 +24208470 homeCount = 5 +24208471 waitCount = 1 +24208472 ripCount = 2 +24208472 locktype1 = 1 +24208493 locktype2 = 0 +24208493 locktype3 = 1 +24208494 goalCount = 0 +24208494 goalTotal = 0 +24208495 otherCount = 2 +~~~ +24208496 CURRENTGOAL IS [2] +~~~ +24208558 DOWN 11 +24208558 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208599 UP 11 +24208599 1024 255 +24208600 homeCount = 5 +24208601 waitCount = 1 +24208601 ripCount = 2 +24208602 locktype1 = 1 +24208602 locktype2 = 0 +24208603 locktype3 = 1 +24208603 goalCount = 0 +24208604 goalTotal = 0 +24208604 otherCount = 2 +~~~ +24208626 CURRENTGOAL IS [2] +~~~ +24208626 DOWN 11 +24208626 0 255 +24208640 UP 11 +24208640 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208681 homeCount = 5 +24208682 waitCount = 1 +24208682 ripCount = 2 +24208683 locktype1 = 1 +24208684 locktype2 = 0 +24208684 locktype3 = 1 +24208685 goalCount = 0 +24208685 goalTotal = 0 +24208686 otherCount = 2 +~~~ +24208687 CURRENTGOAL IS [2] +~~~ +24208711 DOWN 11 +24208711 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208740 homeCount = 5 +24208741 waitCount = 1 +24208741 ripCount = 2 +24208742 locktype1 = 1 +24208742 locktype2 = 0 +24208743 locktype3 = 1 +24208743 goalCount = 0 +24208744 goalTotal = 0 +24208744 otherCount = 2 +~~~ +24208745 CURRENTGOAL IS [2] +~~~ +24208812 UP 11 +24208812 1024 255 +24208850 DOWN 11 +24208850 0 255 +24208860 UP 11 +24208860 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24208893 homeCount = 5 +24208893 waitCount = 1 +24208894 ripCount = 2 +24208894 locktype1 = 1 +24208895 locktype2 = 0 +24208895 locktype3 = 1 +24208896 goalCount = 0 +24208896 goalTotal = 0 +24208897 otherCount = 2 +~~~ +24208898 CURRENTGOAL IS [2] +~~~ +24209074 DOWN 11 +24209074 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209106 UP 11 +24209106 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +24209112 homeCount = 5 +24209112 waitCount = 1 +24209113 ripCount = 2 +24209113 locktype1 = 1 +24209114 locktype2 = 0 +24209114 locktype3 = 1 +24209115 goalCount = 0 +24209115 goalTotal = 0 +24209116 otherCount = 2 +~~~ +24209117 CURRENTGOAL IS [2] +~~~ +24209145 DOWN 11 +24209145 0 255 +24209163 UP 11 +24209163 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209187 homeCount = 5 +24209188 waitCount = 1 +24209188 ripCount = 2 +24209189 locktype1 = 1 +24209189 locktype2 = 0 +24209190 locktype3 = 1 +24209190 goalCount = 0 +24209191 goalTotal = 0 +24209191 otherCount = 2 +~~~ +24209192 CURRENTGOAL IS [2] +~~~ +24209289 DOWN 11 +24209289 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24209331 homeCount = 5 +24209332 waitCount = 1 +24209332 ripCount = 2 +24209333 locktype1 = 1 +24209333 locktype2 = 0 +24209334 locktype3 = 1 +24209334 goalCount = 0 +24209335 goalTotal = 0 +24209335 otherCount = 2 +~~~ +24209337 CURRENTGOAL IS [2] +~~~ +24212126 UP 5 +24212126 16 255 +~~~ +24212146 DOWN 5 +24212146 0 255 +~~~ +~~~ +~~~ +24212177 0 254 +~~~ +~~~ +24212178 0 252 +~~~ +~~~ +24212180 0 248 +~~~ +~~~ +24212182 0 240 +~~~ +~~~ +24212184 0 224 +~~~ +~~~ +24212186 0 192 +~~~ +~~~ +24212187 0 128 +~~~ +~~~ +24212189 0 0 +~~~ +~~~ +24212191 0 512 +24212192 homeCount = 5 +24212193 waitCount = 1 +24212193 ripCount = 2 +24212194 locktype1 = 1 +24212194 locktype2 = 0 +24212215 locktype3 = 1 +24212215 goalCount = 0 +24212216 goalTotal = 0 +24212216 otherCount = 3 +~~~ +24212469 16 512 +24212756 DOWN 5 +24212756 0 512 +24212762 16 512 +24213578 DOWN 5 +24213578 0 512 +24213590 16 512 +24213754 DOWN 5 +24213754 0 512 +24213774 16 512 +24214290 DOWN 5 +24214290 0 512 +24214316 16 512 +24214469 DOWN 5 +24214469 0 512 +24214501 16 512 +24214663 DOWN 5 +24214663 0 512 +24214680 16 512 +24214843 DOWN 5 +24214843 0 512 +24214884 16 512 +24215375 DOWN 5 +24215375 0 512 +24215398 16 512 +24215554 DOWN 5 +24215554 0 512 +24215575 16 512 +24216148 DOWN 5 +24216148 0 512 +24216172 16 512 +24216867 DOWN 5 +24216867 0 512 +24216888 16 512 +24216954 DOWN 5 +24216954 0 512 +24216960 16 512 +24217048 DOWN 5 +24217048 0 512 +24217080 16 512 +24217982 DOWN 5 +24217982 0 512 +24218106 16 512 +24218201 DOWN 5 +24218201 0 512 +24218225 16 512 +24218393 DOWN 5 +24218393 0 512 +24218402 16 512 +24218595 DOWN 5 +24218595 0 512 +24218607 16 512 +24218777 DOWN 5 +24218777 0 512 +24218799 16 512 +24218818 DOWN 5 +24218818 0 512 +24218852 16 512 +24218964 DOWN 5 +24218964 0 512 +24218986 16 512 +24219001 DOWN 5 +24219001 0 512 +24219056 16 512 +24219074 DOWN 5 +24219074 0 512 +24233913 UP 10 +24233913 waslock = 0 +24233913 512 512 +24233926 DOWN 10 +24233926 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24233953 0 16777728 +~~~ +~~~ +~~~ +24233956 0 16779776 +~~~ +~~~ +24233958 0 16779264 +24233959 homeCount = 6 +24233959 waitCount = 1 +24233960 ripCount = 2 +24233960 locktype1 = 1 +24233961 locktype2 = 0 +24233961 locktype3 = 1 +24233962 goalCount = 0 +24233962 goalTotal = 0 +24233963 otherCount = 3 +~~~ +24234035 UP 10 +24234035 waslock = 0 +24234035 512 16779264 +~~~ +24234103 512 2048 +24234151 DOWN 10 +24234151 0 2048 +~~~ +~~~ +~~~ +~~~ +24234174 homeCount = 6 +24234175 waitCount = 1 +24234175 ripCount = 2 +24234176 locktype1 = 1 +24234176 locktype2 = 0 +24234177 locktype3 = 1 +24234177 goalCount = 0 +24234178 goalTotal = 0 +24234178 otherCount = 3 +~~~ +24234246 UP 10 +24234246 waslock = 0 +24234246 512 2048 +~~~ +24234719 DOWN 10 +24234719 0 2048 +24234733 UP 10 +24234733 waslock = 0 +24234733 512 2048 +~~~ +~~~ +~~~ +~~~ +24234756 homeCount = 6 +24234757 waitCount = 1 +24234757 ripCount = 2 +24234758 locktype1 = 1 +24234758 locktype2 = 0 +24234759 locktype3 = 1 +24234759 goalCount = 0 +24234760 goalTotal = 0 +24234760 otherCount = 3 +~~~ +~~~ +24234879 DOWN 10 +24234879 0 2048 +24234898 UP 10 +24234899 waslock = 0 +24234898 512 2048 +~~~ +~~~ +~~~ +~~~ +24234904 homeCount = 6 +24234904 waitCount = 1 +24234905 ripCount = 2 +24234905 locktype1 = 1 +24234906 locktype2 = 0 +24234906 locktype3 = 1 +24234907 goalCount = 0 +24234907 goalTotal = 0 +24234908 otherCount = 3 +~~~ +~~~ +24235038 DOWN 10 +24235038 0 2048 +24235063 UP 10 +24235064 waslock = 0 +24235063 512 2048 +~~~ +~~~ +~~~ +~~~ +24235074 homeCount = 6 +24235074 waitCount = 1 +24235075 ripCount = 2 +24235075 locktype1 = 1 +24235076 locktype2 = 0 +24235076 locktype3 = 1 +24235077 goalCount = 0 +24235077 goalTotal = 0 +24235078 otherCount = 3 +~~~ +~~~ +24238546 DOWN 10 +24238546 0 2048 +24238564 UP 10 +24238564 waslock = 0 +24238564 512 2048 +~~~ +~~~ +~~~ +~~~ +24238587 homeCount = 6 +24238588 waitCount = 1 +24238588 ripCount = 2 +24238589 locktype1 = 1 +24238589 locktype2 = 0 +24238590 locktype3 = 1 +24238590 goalCount = 0 +24238591 goalTotal = 0 +24238591 otherCount = 3 +~~~ +~~~ +24238665 DOWN 10 +24238665 0 2048 +~~~ +~~~ +~~~ +~~~ +24238694 homeCount = 6 +24238694 waitCount = 1 +24238695 ripCount = 2 +24238695 locktype1 = 1 +24238696 locktype2 = 0 +24238696 locktype3 = 1 +24238697 goalCount = 0 +24238697 goalTotal = 0 +24238698 otherCount = 3 +~~~ +24238715 UP 10 +24238715 waslock = 0 +24238715 512 2048 +~~~ +24238760 DOWN 10 +24238760 0 2048 +~~~ +~~~ +~~~ +~~~ +24238786 homeCount = 6 +24238787 waitCount = 1 +24238787 ripCount = 2 +24238788 locktype1 = 1 +24238788 locktype2 = 0 +24238789 locktype3 = 1 +24238789 goalCount = 0 +24238790 goalTotal = 0 +24238790 otherCount = 3 +~~~ +24240420 UP 12 +24240420 2048 2048 +24241195 DOWN 12 +24241195 0 2048 +24241237 UP 12 +24241237 2048 2048 +24241466 DOWN 12 +24241466 0 2048 +24241603 UP 12 +24241603 2048 2048 +24241920 CLICK1 +24241920 CLICK2 +~~~ +~~~ +~~~ +24241942 2048 67110912 +~~~ +24242092 2048 2048 +24248498 DOWN 12 +24248498 0 2048 +~~~ +~~~ +24248521 0 0 +~~~ +~~~ +24248523 UP 12 +24248523 2048 1 +~~~ +~~~ +24248525 2048 3 +~~~ +~~~ +24248526 2048 7 +~~~ +~~~ +24248528 2048 15 +~~~ +~~~ +24248530 2048 31 +~~~ +~~~ +24248532 2048 63 +~~~ +~~~ +24248533 2048 127 +~~~ +~~~ +24248535 2048 255 +24248536 homeCount = 6 +24248537 waitCount = 2 +24248537 ripCount = 2 +24248559 locktype1 = 1 +24248559 locktype2 = 0 +24248560 locktype3 = 1 +24248560 goalCount = 0 +24248561 goalTotal = 0 +24248561 otherCount = 3 +~~~ +24248562 CURRENTGOAL IS [2] +~~~ +24248563 DOWN 12 +24248563 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24248619 homeCount = 6 +24248619 waitCount = 2 +24248620 ripCount = 2 +24248620 locktype1 = 1 +24248621 locktype2 = 0 +24248621 locktype3 = 1 +24248622 goalCount = 0 +24248622 goalTotal = 0 +24248623 otherCount = 3 +~~~ +24248624 CURRENTGOAL IS [2] +~~~ +24251525 UP 1 +24251524 1 255 +~~~ +~~~ +24252734 DOWN 1 +24252734 0 255 +24252741 1 255 +~~~ +~~~ +24252757 1 254 +~~~ +~~~ +24252759 1 252 +~~~ +~~~ +24252760 1 248 +~~~ +~~~ +24252762 1 240 +~~~ +~~~ +24252764 1 224 +~~~ +~~~ +24252766 1 192 +~~~ +~~~ +24252768 1 128 +~~~ +~~~ +24252769 1 0 +~~~ +~~~ +24252771 1 512 +24252772 homeCount = 6 +24252773 waitCount = 2 +24252773 ripCount = 2 +24252774 locktype1 = 1 +24252774 locktype2 = 0 +24252795 locktype3 = 1 +24252796 goalCount = 0 +24252796 goalTotal = 0 +24252797 otherCount = 4 +~~~ +24253082 DOWN 1 +24253082 0 512 +24253096 1 512 +24253270 DOWN 1 +24253270 0 512 +24253278 1 512 +24253999 DOWN 1 +24253999 0 512 +24254012 1 512 +24254185 DOWN 1 +24254185 0 512 +24254197 1 512 +24254296 DOWN 1 +24254296 0 512 +24254647 1 512 +24254672 DOWN 1 +24254672 0 512 +24262772 UP 10 +24262773 waslock = 0 +24262772 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24262798 512 16777728 +~~~ +24262832 DOWN 10 +24262832 0 16777728 +~~~ +~~~ +24262851 0 16778752 +~~~ +~~~ +24262853 0 16778240 +24262854 homeCount = 7 +24262855 waitCount = 2 +24262855 ripCount = 2 +24262856 locktype1 = 1 +24262856 locktype2 = 0 +24262857 locktype3 = 1 +24262857 goalCount = 0 +24262858 goalTotal = 0 +24262858 otherCount = 4 +~~~ +24262879 UP 10 +24262879 waslock = 0 +24262879 512 16778240 +~~~ +24262948 512 1024 +24262970 DOWN 10 +24262970 0 1024 +~~~ +~~~ +~~~ +~~~ +24262994 homeCount = 7 +24262995 waitCount = 2 +24262995 ripCount = 2 +24262996 locktype1 = 1 +24262996 locktype2 = 0 +24262997 locktype3 = 1 +24262997 goalCount = 0 +24262998 goalTotal = 0 +24262998 otherCount = 4 +~~~ +24263099 UP 10 +24263099 waslock = 0 +24263099 512 1024 +~~~ +24263849 DOWN 10 +24263849 0 1024 +24263863 UP 10 +24263863 waslock = 0 +24263863 512 1024 +~~~ +~~~ +~~~ +~~~ +24263874 homeCount = 7 +24263874 waitCount = 2 +24263875 ripCount = 2 +24263875 locktype1 = 1 +24263876 locktype2 = 0 +24263876 locktype3 = 1 +24263877 goalCount = 0 +24263877 goalTotal = 0 +24263878 otherCount = 4 +~~~ +~~~ +24266888 DOWN 10 +24266888 0 1024 +~~~ +~~~ +~~~ +~~~ +24266911 homeCount = 7 +24266912 waitCount = 2 +24266912 ripCount = 2 +24266913 locktype1 = 1 +24266913 locktype2 = 0 +24266914 locktype3 = 1 +24266914 goalCount = 0 +24266915 goalTotal = 0 +24266915 otherCount = 4 +~~~ +24266933 UP 10 +24266933 waslock = 0 +24266933 512 1024 +~~~ +24266988 DOWN 10 +24266988 0 1024 +~~~ +~~~ +~~~ +~~~ +24267015 homeCount = 7 +24267016 waitCount = 2 +24267016 ripCount = 2 +24267017 locktype1 = 1 +24267017 locktype2 = 0 +24267018 locktype3 = 1 +24267018 goalCount = 0 +24267019 goalTotal = 0 +24267019 otherCount = 4 +~~~ +24271770 UP 11 +24271770 1024 1024 +24273771 BEEP1 +24273771 BEEP2 +~~~ +~~~ +~~~ +24273793 1024 33555456 +~~~ +24273943 1024 1024 +24277448 DOWN 11 +24277448 0 1024 +~~~ +~~~ +24277475 0 0 +~~~ +~~~ +24277476 0 1 +~~~ +~~~ +24277478 0 3 +~~~ +~~~ +24277480 0 7 +~~~ +~~~ +24277482 0 15 +~~~ +~~~ +24277484 0 31 +~~~ +24277485 UP 11 +24277485 1024 31 +~~~ +~~~ +24277487 1024 63 +~~~ +~~~ +24277489 1024 127 +~~~ +24277490 1024 255 +24277491 homeCount = 7 +24277491 waitCount = 2 +24277512 ripCount = 3 +24277513 locktype1 = 1 +24277513 locktype2 = 0 +24277514 locktype3 = 1 +24277514 goalCount = 0 +24277515 goalTotal = 0 +24277515 otherCount = 4 +~~~ +24277517 CURRENTGOAL IS [2] +~~~ +24277552 DOWN 11 +24277552 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24277592 homeCount = 7 +24277593 waitCount = 2 +24277593 ripCount = 3 +24277594 locktype1 = 1 +24277594 locktype2 = 0 +24277595 locktype3 = 1 +24277596 goalCount = 0 +24277596 goalTotal = 0 +24277597 otherCount = 4 +~~~ +24277598 CURRENTGOAL IS [2] +~~~ +24281549 UP 8 +24281549 128 255 +~~~ +~~~ +24281853 DOWN 8 +24281853 0 255 +~~~ +~~~ +24281878 0 254 +~~~ +~~~ +24281880 0 252 +~~~ +~~~ +24281882 0 248 +~~~ +~~~ +24281883 0 240 +~~~ +~~~ +24281885 0 224 +~~~ +~~~ +24281887 0 192 +~~~ +~~~ +24281889 0 128 +~~~ +~~~ +24281891 0 0 +~~~ +~~~ +24281893 0 512 +24281893 homeCount = 7 +24281894 waitCount = 2 +24281895 ripCount = 3 +24281895 locktype1 = 1 +24281895 locktype2 = 0 +24281916 locktype3 = 1 +24281917 goalCount = 0 +24281917 goalTotal = 0 +24281918 otherCount = 5 +~~~ +24281918 128 512 +24282421 DOWN 8 +24282421 0 512 +24286521 UP 10 +24286521 waslock = 0 +24286521 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24286555 512 16777728 +~~~ +24286705 512 512 +24286795 DOWN 10 +24286795 0 512 +~~~ +~~~ +24286820 0 2560 +~~~ +~~~ +24286822 0 2048 +24286823 homeCount = 8 +24286823 waitCount = 2 +24286824 ripCount = 3 +24286824 locktype1 = 1 +24286825 locktype2 = 0 +24286825 locktype3 = 1 +24286826 goalCount = 0 +24286826 goalTotal = 0 +24286827 otherCount = 5 +~~~ +24286920 UP 10 +24286920 waslock = 0 +24286920 512 2048 +~~~ +24287572 DOWN 10 +24287572 0 2048 +24287592 UP 10 +24287592 waslock = 0 +24287592 512 2048 +~~~ +~~~ +~~~ +~~~ +24287596 homeCount = 8 +24287597 waitCount = 2 +24287597 ripCount = 3 +24287598 locktype1 = 1 +24287598 locktype2 = 0 +24287599 locktype3 = 1 +24287599 goalCount = 0 +24287600 goalTotal = 0 +24287600 otherCount = 5 +~~~ +~~~ +24291624 DOWN 10 +24291624 0 2048 +~~~ +~~~ +~~~ +~~~ +24291653 homeCount = 8 +24291653 waitCount = 2 +24291654 ripCount = 3 +24291654 locktype1 = 1 +24291655 locktype2 = 0 +24291655 locktype3 = 1 +24291656 goalCount = 0 +24291656 goalTotal = 0 +24291657 otherCount = 5 +~~~ +24291697 UP 10 +24291698 waslock = 0 +24291697 512 2048 +24291715 DOWN 10 +24291715 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +24291743 homeCount = 8 +24291743 waitCount = 2 +24291744 ripCount = 3 +24291744 locktype1 = 1 +24291745 locktype2 = 0 +24291745 locktype3 = 1 +24291746 goalCount = 0 +24291746 goalTotal = 0 +24291746 otherCount = 5 +~~~ +24293130 UP 12 +24293130 2048 2048 +24293155 DOWN 12 +24293155 0 2048 +24293209 UP 12 +24293209 2048 2048 +24294378 DOWN 12 +24294378 0 2048 +24294428 UP 12 +24294428 2048 2048 +24295131 CLICK1 +24295131 CLICK2 +~~~ +~~~ +~~~ +24295153 2048 67110912 +~~~ +24295303 2048 2048 +24300097 DOWN 12 +24300097 0 2048 +~~~ +~~~ +24300119 0 0 +~~~ +~~~ +24300121 0 1 +~~~ +~~~ +24300123 0 3 +~~~ +~~~ +24300125 0 7 +~~~ +~~~ +24300127 0 15 +~~~ +~~~ +24300129 0 31 +~~~ +~~~ +24300130 0 63 +~~~ +~~~ +24300132 0 127 +~~~ +~~~ +24300134 0 255 +24300135 homeCount = 8 +24300136 waitCount = 3 +24300136 ripCount = 3 +24300137 locktype1 = 1 +24300137 locktype2 = 0 +24300158 locktype3 = 1 +24300158 goalCount = 0 +24300159 goalTotal = 0 +24300159 otherCount = 5 +~~~ +24300160 CURRENTGOAL IS [2] +~~~ +24303861 UP 3 +24303861 4 255 +~~~ +~~~ +24304128 DOWN 3 +24304128 0 255 +~~~ +~~~ +24304149 0 254 +~~~ +~~~ +24304151 0 252 +~~~ +~~~ +24304153 0 248 +~~~ +~~~ +24304155 0 240 +~~~ +~~~ +24304157 0 224 +~~~ +~~~ +24304158 0 192 +~~~ +~~~ +24304160 0 128 +~~~ +~~~ +24304162 0 0 +~~~ +~~~ +24304164 0 512 +24304165 homeCount = 8 +24304165 waitCount = 3 +24304166 ripCount = 3 +24304166 locktype1 = 1 +24304188 locktype2 = 0 +24304188 locktype3 = 1 +24304189 goalCount = 0 +24304189 goalTotal = 0 +24304190 otherCount = 6 +~~~ +24305317 4 512 +24305742 DOWN 3 +24305742 0 512 +24309794 UP 10 +24309795 waslock = 0 +24309794 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24309826 512 16777728 +~~~ +24309976 512 512 +24310016 DOWN 10 +24310016 0 512 +~~~ +~~~ +24310043 0 1536 +~~~ +~~~ +24310045 0 1024 +24310046 homeCount = 9 +24310047 waitCount = 3 +24310047 ripCount = 3 +24310048 locktype1 = 1 +24310048 locktype2 = 0 +24310049 locktype3 = 1 +24310049 goalCount = 0 +24310050 goalTotal = 0 +24310050 otherCount = 6 +~~~ +24310071 UP 10 +24310072 waslock = 0 +24310071 512 1024 +~~~ +24316271 DOWN 10 +24316271 0 1024 +~~~ +~~~ +~~~ +~~~ +24316293 homeCount = 9 +24316294 waitCount = 3 +24316294 ripCount = 3 +24316295 locktype1 = 1 +24316295 locktype2 = 0 +24316296 locktype3 = 1 +24316296 goalCount = 0 +24316297 goalTotal = 0 +24316297 otherCount = 6 +~~~ +24316327 UP 10 +24316327 waslock = 0 +24316327 512 1024 +~~~ +24316347 DOWN 10 +24316347 0 1024 +~~~ +~~~ +~~~ +~~~ +24316382 homeCount = 9 +24316383 waitCount = 3 +24316383 ripCount = 3 +24316384 locktype1 = 1 +24316384 locktype2 = 0 +24316385 locktype3 = 1 +24316385 goalCount = 0 +24316386 goalTotal = 0 +24316386 otherCount = 6 +~~~ +24317934 UP 11 +24317934 1024 1024 +24319937 DOWN 11 +24319937 0 1024 +24319996 UP 11 +24319996 1024 1024 +24321434 BEEP1 +24321434 BEEP2 +~~~ +~~~ +~~~ +24321456 1024 33555456 +~~~ +24321606 1024 1024 +24325737 DOWN 11 +24325737 0 1024 +~~~ +~~~ +24325761 0 0 +~~~ +~~~ +24325762 0 1 +~~~ +~~~ +24325764 0 3 +~~~ +~~~ +24325766 0 7 +~~~ +24325767 UP 11 +24325767 1024 7 +~~~ +~~~ +24325769 1024 15 +~~~ +~~~ +24325771 1024 31 +~~~ +~~~ +24325773 1024 63 +~~~ +24325774 1024 127 +~~~ +~~~ +24325775 1024 255 +24325776 homeCount = 9 +24325777 waitCount = 3 +24325798 ripCount = 4 +24325799 locktype1 = 1 +24325799 locktype2 = 0 +24325800 locktype3 = 1 +24325800 goalCount = 0 +24325801 goalTotal = 0 +24325801 otherCount = 6 +~~~ +24325802 CURRENTGOAL IS [2] +~~~ +24325834 DOWN 11 +24325834 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24325867 homeCount = 9 +24325867 waitCount = 3 +24325868 ripCount = 4 +24325868 locktype1 = 1 +24325869 locktype2 = 0 +24325870 locktype3 = 1 +24325870 goalCount = 0 +24325871 goalTotal = 0 +24325871 otherCount = 6 +~~~ +24325872 CURRENTGOAL IS [2] +~~~ +24328994 UP 7 +24328994 64 255 +~~~ +~~~ +24329409 DOWN 7 +24329409 0 255 +~~~ +~~~ +24329431 0 254 +~~~ +~~~ +24329433 0 252 +~~~ +~~~ +24329434 0 248 +~~~ +~~~ +24329436 0 240 +~~~ +~~~ +24329438 0 224 +~~~ +~~~ +24329440 0 192 +~~~ +~~~ +24329442 0 128 +~~~ +~~~ +24329444 0 0 +~~~ +~~~ +24329445 0 512 +24329446 homeCount = 9 +24329447 waitCount = 3 +24329447 ripCount = 4 +24329448 locktype1 = 1 +24329448 locktype2 = 0 +24329470 locktype3 = 1 +24329470 goalCount = 0 +24329471 goalTotal = 0 +24329471 otherCount = 7 +~~~ +24329556 64 512 +24330105 DOWN 7 +24330105 0 512 +24330111 64 512 +24330227 DOWN 7 +24330227 0 512 +24330263 64 512 +24330369 DOWN 7 +24330369 0 512 +24334809 UP 10 +24334810 waslock = 0 +24334809 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24334837 512 16777728 +~~~ +24334987 512 512 +24335207 DOWN 10 +24335207 0 512 +~~~ +~~~ +24335235 0 2560 +~~~ +~~~ +24335237 0 2048 +24335238 homeCount = 10 +24335238 waitCount = 3 +24335239 ripCount = 4 +24335239 locktype1 = 1 +24335240 locktype2 = 0 +24335240 locktype3 = 1 +24335241 goalCount = 0 +24335241 goalTotal = 0 +24335242 otherCount = 7 +~~~ +24335265 UP 10 +24335265 waslock = 0 +24335265 512 2048 +~~~ +24338650 DOWN 10 +24338650 0 2048 +~~~ +~~~ +~~~ +~~~ +24338675 homeCount = 10 +24338675 waitCount = 3 +24338676 ripCount = 4 +24338676 locktype1 = 1 +24338677 locktype2 = 0 +24338677 locktype3 = 1 +24338678 goalCount = 0 +24338678 goalTotal = 0 +24338679 otherCount = 7 +~~~ +24340261 UP 12 +24340261 2048 2048 +24342412 DOWN 12 +24342411 0 2048 +24342434 UP 12 +24342434 2048 2048 +24343011 CLICK1 +24343011 CLICK2 +~~~ +~~~ +~~~ +24343038 2048 67110912 +~~~ +24343188 2048 2048 +24349505 DOWN 12 +24349505 0 2048 +~~~ +~~~ +24349532 0 0 +~~~ +~~~ +24349534 0 1 +~~~ +~~~ +24349536 0 3 +~~~ +~~~ +24349538 0 7 +~~~ +~~~ +24349540 0 15 +~~~ +~~~ +24349541 0 31 +~~~ +~~~ +24349543 0 63 +~~~ +~~~ +24349545 0 127 +~~~ +~~~ +24349547 0 255 +24349548 homeCount = 10 +24349548 waitCount = 4 +24349549 ripCount = 4 +24349549 locktype1 = 1 +24349550 locktype2 = 0 +24349571 locktype3 = 1 +24349571 goalCount = 0 +24349572 goalTotal = 0 +24349572 otherCount = 7 +~~~ +24349573 CURRENTGOAL IS [2] +~~~ +24349574 UP 12 +24349574 2048 255 +24349612 DOWN 12 +24349612 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24349653 homeCount = 10 +24349653 waitCount = 4 +24349654 ripCount = 4 +24349654 locktype1 = 1 +24349655 locktype2 = 0 +24349655 locktype3 = 1 +24349656 goalCount = 0 +24349656 goalTotal = 0 +24349657 otherCount = 7 +~~~ +24349658 CURRENTGOAL IS [2] +~~~ +24357745 UP 4 +24357745 8 255 +~~~ +~~~ +24358074 DOWN 4 +24358074 0 255 +~~~ +~~~ +24358096 0 254 +~~~ +~~~ +24358098 0 252 +~~~ +24358099 8 252 +~~~ +~~~ +24358101 8 248 +~~~ +24358102 8 240 +~~~ +~~~ +24358104 8 224 +~~~ +~~~ +24358105 8 192 +~~~ +~~~ +24358107 8 128 +~~~ +~~~ +24358109 8 0 +~~~ +~~~ +24358111 8 512 +24358112 homeCount = 10 +24358112 waitCount = 4 +24358113 ripCount = 4 +24358134 locktype1 = 1 +24358135 locktype2 = 0 +24358135 locktype3 = 1 +24358136 goalCount = 0 +24358136 goalTotal = 0 +24358137 otherCount = 8 +~~~ +24361306 DOWN 4 +24361306 0 512 +24361341 8 512 +24361402 DOWN 4 +24361402 0 512 +24368998 UP 10 +24368998 waslock = 0 +24368998 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24369024 512 16777728 +~~~ +24369174 512 512 +24369202 DOWN 10 +24369202 0 512 +~~~ +~~~ +24369219 0 2560 +~~~ +~~~ +24369221 0 2048 +24369222 homeCount = 11 +24369222 waitCount = 4 +24369223 ripCount = 4 +24369223 locktype1 = 1 +24369224 locktype2 = 0 +24369224 locktype3 = 1 +24369225 goalCount = 0 +24369225 goalTotal = 0 +24369226 otherCount = 8 +~~~ +24369297 UP 10 +24369297 waslock = 0 +24369297 512 2048 +~~~ +24369593 DOWN 10 +24369593 0 2048 +24369603 UP 10 +24369604 waslock = 0 +24369603 512 2048 +~~~ +~~~ +~~~ +~~~ +24369622 homeCount = 11 +24369622 waitCount = 4 +24369623 ripCount = 4 +24369623 locktype1 = 1 +24369624 locktype2 = 0 +24369624 locktype3 = 1 +24369625 goalCount = 0 +24369625 goalTotal = 0 +24369626 otherCount = 8 +~~~ +~~~ +24373779 DOWN 10 +24373779 0 2048 +24373792 UP 10 +24373793 waslock = 0 +24373792 512 2048 +~~~ +~~~ +~~~ +~~~ +24373815 homeCount = 11 +24373816 waitCount = 4 +24373816 ripCount = 4 +24373817 locktype1 = 1 +24373817 locktype2 = 0 +24373818 locktype3 = 1 +24373818 goalCount = 0 +24373819 goalTotal = 0 +24373819 otherCount = 8 +~~~ +~~~ +24373870 DOWN 10 +24373870 0 2048 +~~~ +~~~ +~~~ +~~~ +24373899 homeCount = 11 +24373899 waitCount = 4 +24373900 ripCount = 4 +24373900 locktype1 = 1 +24373901 locktype2 = 0 +24373901 locktype3 = 1 +24373902 goalCount = 0 +24373902 goalTotal = 0 +24373903 otherCount = 8 +~~~ +24375836 UP 12 +24375835 2048 2048 +24378836 CLICK1 +24378836 CLICK2 +~~~ +~~~ +~~~ +24378857 2048 67110912 +~~~ +24379007 2048 2048 +24384231 DOWN 12 +24384231 0 2048 +~~~ +~~~ +24384256 0 0 +~~~ +~~~ +24384258 0 1 +~~~ +~~~ +24384260 0 3 +~~~ +~~~ +24384262 0 7 +~~~ +~~~ +24384263 0 15 +~~~ +~~~ +24384265 0 31 +~~~ +~~~ +24384267 0 63 +~~~ +~~~ +24384269 0 127 +~~~ +~~~ +24384271 0 255 +24384272 homeCount = 11 +24384272 waitCount = 5 +24384273 ripCount = 4 +24384273 locktype1 = 1 +24384274 locktype2 = 0 +24384295 locktype3 = 1 +24384296 goalCount = 0 +24384296 goalTotal = 0 +24384297 otherCount = 8 +~~~ +24384298 CURRENTGOAL IS [2] +~~~ +24384298 UP 12 +24384298 2048 255 +24384325 DOWN 12 +24384325 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24384360 homeCount = 11 +24384361 waitCount = 5 +24384361 ripCount = 4 +24384362 locktype1 = 1 +24384362 locktype2 = 0 +24384363 locktype3 = 1 +24384363 goalCount = 0 +24384364 goalTotal = 0 +24384364 otherCount = 8 +~~~ +24384365 CURRENTGOAL IS [2] +~~~ +24389237 UP 6 +24389236 32 255 +~~~ +~~~ +24389519 DOWN 6 +24389519 0 255 +24389542 32 255 +~~~ +~~~ +24389544 32 254 +~~~ +~~~ +24389546 32 252 +~~~ +~~~ +24389548 32 248 +~~~ +~~~ +24389549 32 240 +~~~ +~~~ +24389551 32 224 +~~~ +~~~ +24389553 32 192 +~~~ +~~~ +24389555 32 128 +~~~ +~~~ +24389557 32 0 +~~~ +~~~ +24389559 32 512 +24389560 homeCount = 11 +24389560 waitCount = 5 +24389561 ripCount = 4 +24389582 locktype1 = 1 +24389582 locktype2 = 0 +24389583 locktype3 = 1 +24389583 goalCount = 0 +24389584 goalTotal = 0 +24389584 otherCount = 9 +~~~ +24392219 DOWN 6 +24392219 0 512 +24392230 32 512 +24393458 DOWN 6 +24393458 0 512 +24393466 32 512 +24393642 DOWN 6 +24393642 0 512 +24393651 32 512 +24393817 DOWN 6 +24393817 0 512 +24393821 32 512 +24393825 DOWN 6 +24393825 0 512 +24393836 32 512 +24394208 DOWN 6 +24394207 0 512 +24394217 32 512 +24394415 DOWN 6 +24394415 0 512 +24394427 32 512 +24394798 DOWN 6 +24394798 0 512 +24394811 32 512 +24394998 DOWN 6 +24394998 0 512 +24395017 32 512 +24395073 DOWN 6 +24395073 0 512 +24395092 32 512 +24395192 DOWN 6 +24395192 0 512 +24395196 32 512 +24395200 DOWN 6 +24395200 0 512 +24395237 32 512 +24395252 DOWN 6 +24395252 0 512 +24395263 32 512 +24395284 DOWN 6 +24395284 0 512 +24395295 32 512 +24395361 DOWN 6 +24395361 0 512 +24395449 32 512 +24395489 DOWN 6 +24395489 0 512 +24402448 UP 10 +24402449 waslock = 0 +24402448 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24402483 512 16777728 +~~~ +24402602 DOWN 10 +24402602 0 16777728 +~~~ +~~~ +24402626 0 16778752 +~~~ +~~~ +24402628 0 16778240 +24402629 homeCount = 12 +24402630 waitCount = 5 +24402630 ripCount = 4 +24402631 locktype1 = 1 +24402631 locktype2 = 0 +24402632 locktype3 = 1 +24402632 goalCount = 0 +24402633 goalTotal = 0 +24402633 otherCount = 9 +~~~ +24402654 0 1024 +24402740 UP 10 +24402740 waslock = 0 +24402740 512 1024 +~~~ +24408234 DOWN 10 +24408234 0 1024 +~~~ +~~~ +~~~ +~~~ +24408258 homeCount = 12 +24408259 waitCount = 5 +24408259 ripCount = 4 +24408260 locktype1 = 1 +24408260 locktype2 = 0 +24408261 locktype3 = 1 +24408261 goalCount = 0 +24408262 goalTotal = 0 +24408262 otherCount = 9 +~~~ +24408263 UP 10 +24408263 waslock = 0 +24408263 512 1024 +~~~ +24408328 DOWN 10 +24408328 0 1024 +~~~ +~~~ +~~~ +~~~ +24408348 homeCount = 12 +24408349 waitCount = 5 +24408349 ripCount = 4 +24408350 locktype1 = 1 +24408350 locktype2 = 0 +24408351 locktype3 = 1 +24408351 goalCount = 0 +24408352 goalTotal = 0 +24408352 otherCount = 9 +~~~ +24410668 UP 11 +24410668 1024 1024 +24411491 DOWN 11 +24411491 0 1024 +24411562 UP 11 +24411562 1024 1024 +24412763 DOWN 11 +24412763 0 1024 +24412794 UP 11 +24412794 1024 1024 +24415418 BEEP1 +24415418 BEEP2 +~~~ +~~~ +~~~ +24415438 1024 33555456 +~~~ +24415588 1024 1024 +24420194 DOWN 11 +24420194 0 1024 +~~~ +~~~ +24420218 0 0 +~~~ +~~~ +24420220 0 1 +~~~ +~~~ +24420222 0 3 +~~~ +~~~ +24420223 0 7 +~~~ +~~~ +24420225 0 15 +~~~ +24420227 UP 11 +24420227 1024 15 +~~~ +~~~ +24420229 1024 31 +~~~ +~~~ +24420230 1024 63 +~~~ +~~~ +24420232 1024 127 +~~~ +24420233 1024 255 +24420234 homeCount = 12 +24420235 waitCount = 5 +24420256 ripCount = 5 +24420256 locktype1 = 1 +24420257 locktype2 = 0 +24420257 locktype3 = 1 +24420258 goalCount = 0 +24420258 goalTotal = 0 +24420259 otherCount = 9 +~~~ +24420260 CURRENTGOAL IS [2] +~~~ +24420296 DOWN 11 +24420296 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24420332 homeCount = 12 +24420332 waitCount = 5 +24420333 ripCount = 5 +24420333 locktype1 = 1 +24420334 locktype2 = 0 +24420334 locktype3 = 1 +24420335 goalCount = 0 +24420335 goalTotal = 0 +24420336 otherCount = 9 +~~~ +24420337 CURRENTGOAL IS [2] +~~~ +24426866 UP 5 +24426866 16 255 +~~~ +~~~ +24426890 DOWN 5 +24426890 0 255 +~~~ +~~~ +24426907 0 254 +~~~ +~~~ +24426909 0 252 +~~~ +~~~ +24426911 0 248 +~~~ +~~~ +24426913 0 240 +~~~ +~~~ +24426915 0 224 +~~~ +~~~ +24426917 0 192 +~~~ +~~~ +24426918 0 128 +~~~ +~~~ +24426920 0 0 +~~~ +~~~ +24426922 0 512 +24426923 homeCount = 12 +24426924 waitCount = 5 +24426924 ripCount = 5 +24426925 locktype1 = 1 +24426925 locktype2 = 0 +24426946 locktype3 = 1 +24426946 goalCount = 0 +24426947 goalTotal = 0 +24426947 otherCount = 10 +~~~ +24426979 16 512 +24427073 DOWN 5 +24427072 0 512 +24427218 16 512 +24429575 DOWN 5 +24429575 0 512 +24434372 UP 10 +24434372 waslock = 0 +24434372 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24434403 512 16777728 +~~~ +24434419 DOWN 10 +24434419 0 16777728 +~~~ +~~~ +24434438 0 16778752 +~~~ +~~~ +24434440 0 16778240 +24434441 homeCount = 13 +24434441 waitCount = 5 +24434442 ripCount = 5 +24434442 locktype1 = 1 +24434443 locktype2 = 0 +24434443 locktype3 = 1 +24434444 goalCount = 0 +24434444 goalTotal = 0 +24434445 otherCount = 10 +~~~ +24434477 UP 10 +24434477 waslock = 0 +24434477 512 16778240 +~~~ +24434553 512 1024 +24434651 DOWN 10 +24434651 0 1024 +~~~ +~~~ +~~~ +~~~ +24434677 homeCount = 13 +24434677 waitCount = 5 +24434678 ripCount = 5 +24434678 locktype1 = 1 +24434679 locktype2 = 0 +24434679 locktype3 = 1 +24434680 goalCount = 0 +24434680 goalTotal = 0 +24434681 otherCount = 10 +~~~ +24434692 UP 10 +24434692 waslock = 0 +24434692 512 1024 +~~~ +24438070 DOWN 10 +24438070 0 1024 +~~~ +~~~ +~~~ +~~~ +24438094 homeCount = 13 +24438095 waitCount = 5 +24438096 ripCount = 5 +24438096 locktype1 = 1 +24438096 locktype2 = 0 +24438097 locktype3 = 1 +24438097 goalCount = 0 +24438098 goalTotal = 0 +24438098 otherCount = 10 +~~~ +24438103 UP 10 +24438103 waslock = 0 +24438103 512 1024 +~~~ +24438161 DOWN 10 +24438161 0 1024 +~~~ +~~~ +~~~ +~~~ +24438185 homeCount = 13 +24438186 waitCount = 5 +24438186 ripCount = 5 +24438187 locktype1 = 1 +24438187 locktype2 = 0 +24438188 locktype3 = 1 +24438188 goalCount = 0 +24438189 goalTotal = 0 +24438189 otherCount = 10 +~~~ +24440662 UP 11 +24440662 1024 1024 +24442855 DOWN 11 +24442855 0 1024 +24442904 UP 11 +24442904 1024 1024 +24443662 BEEP1 +24443662 BEEP2 +~~~ +~~~ +~~~ +24443685 1024 33555456 +~~~ +24443834 1024 1024 +24451080 DOWN 11 +24451079 0 1024 +~~~ +~~~ +24451102 0 0 +~~~ +~~~ +24451104 0 1 +~~~ +~~~ +24451106 0 3 +~~~ +~~~ +24451108 0 7 +~~~ +~~~ +24451109 0 15 +~~~ +~~~ +24451111 0 31 +~~~ +~~~ +24451113 0 63 +~~~ +~~~ +24451115 0 127 +~~~ +~~~ +24451117 0 255 +24451118 homeCount = 13 +24451118 waitCount = 5 +24451119 ripCount = 6 +24451119 locktype1 = 1 +24451120 locktype2 = 0 +24451141 locktype3 = 1 +24451141 goalCount = 0 +24451142 goalTotal = 0 +24451142 otherCount = 10 +~~~ +24451143 CURRENTGOAL IS [2] +~~~ +24460605 UP 3 +24460605 4 255 +~~~ +~~~ +24461083 DOWN 3 +24461083 0 255 +~~~ +~~~ +24461101 0 254 +~~~ +~~~ +24461102 0 252 +~~~ +~~~ +24461104 0 248 +~~~ +~~~ +24461106 0 240 +~~~ +~~~ +24461108 0 224 +~~~ +~~~ +24461110 0 192 +~~~ +~~~ +24461112 0 128 +~~~ +~~~ +24461113 0 0 +~~~ +~~~ +24461115 0 512 +24461116 homeCount = 13 +24461117 waitCount = 5 +24461117 ripCount = 6 +24461118 locktype1 = 1 +24461118 locktype2 = 0 +24461139 locktype3 = 1 +24461139 goalCount = 0 +24461140 goalTotal = 0 +24461140 otherCount = 11 +~~~ +24470566 UP 10 +24470566 waslock = 0 +24470566 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24470600 512 16777728 +~~~ +24470618 DOWN 10 +24470618 0 16777728 +~~~ +~~~ +24470642 0 16779776 +~~~ +~~~ +24470644 0 16779264 +24470645 homeCount = 14 +24470646 waitCount = 5 +24470646 ripCount = 6 +24470647 locktype1 = 1 +24470647 locktype2 = 0 +24470648 locktype3 = 1 +24470648 goalCount = 0 +24470649 goalTotal = 0 +24470649 otherCount = 11 +~~~ +24470750 0 2048 +24470776 UP 10 +24470777 waslock = 0 +24470776 512 2048 +~~~ +24471246 DOWN 10 +24471246 0 2048 +~~~ +~~~ +~~~ +~~~ +24471267 homeCount = 14 +24471268 waitCount = 5 +24471268 ripCount = 6 +24471269 locktype1 = 1 +24471269 locktype2 = 0 +24471270 locktype3 = 1 +24471270 goalCount = 0 +24471271 goalTotal = 0 +24471271 otherCount = 11 +~~~ +24471304 UP 10 +24471304 waslock = 0 +24471304 512 2048 +~~~ +24474135 DOWN 10 +24474135 0 2048 +~~~ +~~~ +~~~ +~~~ +24474157 homeCount = 14 +24474158 waitCount = 5 +24474158 ripCount = 6 +24474159 locktype1 = 1 +24474159 locktype2 = 0 +24474160 locktype3 = 1 +24474160 goalCount = 0 +24474161 goalTotal = 0 +24474161 otherCount = 11 +~~~ +24474162 UP 10 +24474162 waslock = 0 +24474162 512 2048 +~~~ +24474229 DOWN 10 +24474229 0 2048 +~~~ +~~~ +~~~ +~~~ +24474257 homeCount = 14 +24474257 waitCount = 5 +24474258 ripCount = 6 +24474258 locktype1 = 1 +24474259 locktype2 = 0 +24474259 locktype3 = 1 +24474260 goalCount = 0 +24474260 goalTotal = 0 +24474261 otherCount = 11 +~~~ +24476866 UP 12 +24476866 2048 2048 +24478171 DOWN 12 +24478171 0 2048 +24478314 UP 12 +24478314 2048 2048 +24478478 DOWN 12 +24478478 0 2048 +24478534 UP 12 +24478534 2048 2048 +24479866 CLICK1 +24479866 CLICK2 +~~~ +~~~ +~~~ +24479885 2048 67110912 +~~~ +24480035 2048 2048 +24480170 DOWN 12 +24480169 0 2048 +24480191 UP 12 +24480191 2048 2048 +~~~ +~~~ +24480194 2048 0 +~~~ +~~~ +24480196 2048 1 +~~~ +~~~ +24480198 2048 3 +~~~ +~~~ +24480200 2048 7 +~~~ +~~~ +24480201 2048 15 +~~~ +~~~ +24480203 2048 31 +~~~ +~~~ +24480205 2048 63 +~~~ +~~~ +24480207 2048 127 +~~~ +~~~ +24480209 2048 255 +24480210 homeCount = 14 +24480210 waitCount = 6 +24480211 ripCount = 6 +24480211 locktype1 = 1 +24480232 locktype2 = 0 +24480233 locktype3 = 1 +24480233 goalCount = 0 +24480234 goalTotal = 0 +24480234 otherCount = 11 +~~~ +24480235 CURRENTGOAL IS [2] +~~~ +24480236 DOWN 12 +24480236 0 255 +24480241 UP 12 +24480241 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24480291 homeCount = 14 +24480292 waitCount = 6 +24480292 ripCount = 6 +24480293 locktype1 = 1 +24480293 locktype2 = 0 +24480294 locktype3 = 1 +24480294 goalCount = 0 +24480295 goalTotal = 0 +24480295 otherCount = 11 +~~~ +24480296 CURRENTGOAL IS [2] +~~~ +24486384 DOWN 12 +24486384 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24486422 homeCount = 14 +24486423 waitCount = 6 +24486423 ripCount = 6 +24486424 locktype1 = 1 +24486424 locktype2 = 0 +24486425 locktype3 = 1 +24486425 goalCount = 0 +24486426 goalTotal = 0 +24486426 otherCount = 11 +~~~ +24486427 CURRENTGOAL IS [2] +~~~ +24486451 UP 12 +24486451 2048 255 +24486485 DOWN 12 +24486485 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24486522 homeCount = 14 +24486523 waitCount = 6 +24486523 ripCount = 6 +24486524 locktype1 = 1 +24486524 locktype2 = 0 +24486525 locktype3 = 1 +24486525 goalCount = 0 +24486526 goalTotal = 0 +24486526 otherCount = 11 +~~~ +24486528 CURRENTGOAL IS [2] +~~~ +24495698 UP 10 +24495698 waslock = 0 +24495698 512 255 +~~~ +24495716 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24495724 512 254 +~~~ +~~~ +24495726 512 252 +~~~ +~~~ +24495728 512 248 +~~~ +~~~ +24495730 512 240 +~~~ +~~~ +24495731 512 224 +~~~ +~~~ +24495733 512 192 +~~~ +~~~ +24495735 512 128 +~~~ +~~~ +24495737 512 0 +~~~ +~~~ +~~~ +24495945 0 0 +24495963 512 0 +24496559 0 0 +24506369 UP 4 +24506369 8 0 +24506413 DOWN 4 +24506413 0 0 +24506422 8 0 +24506707 DOWN 4 +24506707 0 0 +24506736 8 0 +24507337 DOWN 4 +24507337 0 0 +24507431 8 0 +24507448 DOWN 4 +24507448 0 0 +24516898 512 0 +24517038 0 0 +24517058 512 0 +24517301 0 0 +24517347 512 0 +24517934 0 0 +24518002 512 0 +24518042 0 0 +24518118 512 0 +24518339 0 0 +24518366 512 0 +24518604 0 0 +24520716 LOCKEND +~~~ +~~~ +~~~ +24520736 0 512 +24521787 UP 10 +24521788 waslock = 0 +24521787 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24521813 512 16777728 +~~~ +24521815 DOWN 10 +24521815 0 16777728 +~~~ +~~~ +24521838 0 16778752 +~~~ +~~~ +24521840 0 16778240 +24521841 homeCount = 15 +24521842 waitCount = 6 +24521842 ripCount = 6 +24521843 locktype1 = 1 +24521843 locktype2 = 1 +24521844 locktype3 = 1 +24521844 goalCount = 0 +24521845 goalTotal = 0 +24521845 otherCount = 11 +~~~ +24521869 UP 10 +24521869 waslock = 0 +24521869 512 16778240 +~~~ +24521963 512 1024 +24521981 DOWN 10 +24521981 0 1024 +~~~ +24522000 UP 10 +24522000 waslock = 0 +24522000 512 1024 +~~~ +~~~ +~~~ +24522004 homeCount = 15 +24522004 waitCount = 6 +24522005 ripCount = 6 +24522005 locktype1 = 1 +24522006 locktype2 = 1 +24522006 locktype3 = 1 +24522007 goalCount = 0 +24522007 goalTotal = 0 +24522008 otherCount = 11 +~~~ +~~~ +24522130 DOWN 10 +24522130 0 1024 +24522156 UP 10 +24522156 waslock = 0 +24522156 512 1024 +~~~ +~~~ +~~~ +~~~ +24522160 homeCount = 15 +24522161 waitCount = 6 +24522161 ripCount = 6 +24522162 locktype1 = 1 +24522162 locktype2 = 1 +24522163 locktype3 = 1 +24522163 goalCount = 0 +24522164 goalTotal = 0 +24522164 otherCount = 11 +~~~ +~~~ +24522270 DOWN 10 +24522270 0 1024 +24522292 UP 10 +24522292 waslock = 0 +24522292 512 1024 +~~~ +~~~ +~~~ +~~~ +24522296 homeCount = 15 +24522297 waitCount = 6 +24522298 ripCount = 6 +24522298 locktype1 = 1 +24522299 locktype2 = 1 +24522299 locktype3 = 1 +24522300 goalCount = 0 +24522300 goalTotal = 0 +24522301 otherCount = 11 +~~~ +~~~ +24526070 DOWN 10 +24526069 0 1024 +~~~ +~~~ +~~~ +~~~ +24526094 homeCount = 15 +24526094 waitCount = 6 +24526095 ripCount = 6 +24526095 locktype1 = 1 +24526096 locktype2 = 1 +24526096 locktype3 = 1 +24526097 goalCount = 0 +24526097 goalTotal = 0 +24526098 otherCount = 11 +~~~ +24526110 UP 10 +24526110 waslock = 0 +24526110 512 1024 +~~~ +24526164 DOWN 10 +24526164 0 1024 +~~~ +~~~ +~~~ +~~~ +24526194 homeCount = 15 +24526194 waitCount = 6 +24526195 ripCount = 6 +24526195 locktype1 = 1 +24526196 locktype2 = 1 +24526196 locktype3 = 1 +24526197 goalCount = 0 +24526197 goalTotal = 0 +24526198 otherCount = 11 +~~~ +24528059 UP 11 +24528059 1024 1024 +24529285 DOWN 11 +24529285 0 1024 +24529326 UP 11 +24529326 1024 1024 +24530226 DOWN 11 +24530226 0 1024 +24530258 UP 11 +24530258 1024 1024 +24530559 BEEP1 +24530559 BEEP2 +~~~ +~~~ +~~~ +24530584 1024 33555456 +~~~ +24530734 1024 1024 +24535727 DOWN 11 +24535727 0 1024 +~~~ +~~~ +24535750 0 0 +~~~ +~~~ +24535752 0 1 +~~~ +~~~ +24535754 0 3 +~~~ +~~~ +24535756 0 7 +~~~ +~~~ +24535757 0 15 +~~~ +~~~ +24535759 0 31 +~~~ +~~~ +24535761 0 63 +~~~ +~~~ +24535763 0 127 +~~~ +~~~ +24535765 0 255 +24535766 homeCount = 15 +24535766 waitCount = 6 +24535767 ripCount = 7 +24535767 locktype1 = 1 +24535768 locktype2 = 1 +24535789 locktype3 = 1 +24535789 goalCount = 0 +24535790 goalTotal = 0 +24535790 otherCount = 11 +~~~ +24535791 CURRENTGOAL IS [2] +~~~ +24535792 UP 11 +24535792 1024 255 +24535865 DOWN 11 +24535865 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24535907 homeCount = 15 +24535907 waitCount = 6 +24535908 ripCount = 7 +24535909 locktype1 = 1 +24535909 locktype2 = 1 +24535910 locktype3 = 1 +24535910 goalCount = 0 +24535911 goalTotal = 0 +24535911 otherCount = 11 +~~~ +24535912 CURRENTGOAL IS [2] +~~~ +24535936 UP 11 +24535936 1024 255 +24535954 DOWN 11 +24535954 0 255 +24535969 UP 11 +24535969 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24535990 homeCount = 15 +24535990 waitCount = 6 +24535991 ripCount = 7 +24535991 locktype1 = 1 +24535992 locktype2 = 1 +24535992 locktype3 = 1 +24535993 goalCount = 0 +24535993 goalTotal = 0 +24535994 otherCount = 11 +~~~ +24535995 CURRENTGOAL IS [2] +~~~ +24536278 DOWN 11 +24536278 0 255 +24536289 UP 11 +24536289 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24536318 homeCount = 15 +24536318 waitCount = 6 +24536319 ripCount = 7 +24536319 locktype1 = 1 +24536320 locktype2 = 1 +24536320 locktype3 = 1 +24536321 goalCount = 0 +24536321 goalTotal = 0 +24536322 otherCount = 11 +~~~ +24536323 CURRENTGOAL IS [2] +~~~ +24536680 DOWN 11 +24536680 0 255 +24536699 UP 11 +24536699 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24536718 homeCount = 15 +24536718 waitCount = 6 +24536719 ripCount = 7 +24536719 locktype1 = 1 +24536720 locktype2 = 1 +24536720 locktype3 = 1 +24536721 goalCount = 0 +24536721 goalTotal = 0 +24536722 otherCount = 11 +~~~ +24536723 CURRENTGOAL IS [2] +~~~ +24539066 DOWN 11 +24539066 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24539109 homeCount = 15 +24539110 waitCount = 6 +24539110 ripCount = 7 +24539111 locktype1 = 1 +24539111 locktype2 = 1 +24539112 locktype3 = 1 +24539112 goalCount = 0 +24539113 goalTotal = 0 +24539113 otherCount = 11 +~~~ +24539114 CURRENTGOAL IS [2] +~~~ +24545155 UP 8 +24545155 128 255 +~~~ +~~~ +24545193 DOWN 8 +24545193 0 255 +~~~ +~~~ +24545213 0 254 +~~~ +~~~ +24545215 0 252 +~~~ +~~~ +24545217 0 248 +~~~ +~~~ +24545219 0 240 +~~~ +~~~ +24545220 0 224 +~~~ +~~~ +24545222 0 192 +~~~ +~~~ +24545224 0 128 +~~~ +~~~ +24545226 0 0 +~~~ +~~~ +24545228 0 512 +24545229 homeCount = 15 +24545229 waitCount = 6 +24545230 ripCount = 7 +24545230 locktype1 = 1 +24545231 locktype2 = 1 +24545252 locktype3 = 1 +24545252 goalCount = 0 +24545253 goalTotal = 0 +24545253 otherCount = 12 +~~~ +24545254 128 512 +24545775 DOWN 8 +24545775 0 512 +24549428 UP 10 +24549428 waslock = 0 +24549428 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24549451 512 16777728 +~~~ +24549601 512 512 +24549640 DOWN 10 +24549640 0 512 +~~~ +~~~ +24549668 0 2560 +~~~ +~~~ +24549670 0 2048 +24549671 homeCount = 16 +24549672 waitCount = 6 +24549672 ripCount = 7 +24549673 locktype1 = 1 +24549673 locktype2 = 1 +24549674 locktype3 = 1 +24549674 goalCount = 0 +24549675 goalTotal = 0 +24549675 otherCount = 12 +~~~ +24549810 UP 10 +24549810 waslock = 0 +24549810 512 2048 +~~~ +24553189 DOWN 10 +24553189 0 2048 +~~~ +~~~ +~~~ +~~~ +24553217 homeCount = 16 +24553218 waitCount = 6 +24553218 ripCount = 7 +24553219 locktype1 = 1 +24553219 locktype2 = 1 +24553220 locktype3 = 1 +24553220 goalCount = 0 +24553221 goalTotal = 0 +24553221 otherCount = 12 +~~~ +24553222 UP 10 +24553222 waslock = 0 +24553222 512 2048 +~~~ +24553263 DOWN 10 +24553263 0 2048 +~~~ +~~~ +~~~ +~~~ +24553290 homeCount = 16 +24553291 waitCount = 6 +24553291 ripCount = 7 +24553292 locktype1 = 1 +24553292 locktype2 = 1 +24553293 locktype3 = 1 +24553293 goalCount = 0 +24553294 goalTotal = 0 +24553294 otherCount = 12 +~~~ +24561352 UP 12 +24561352 2048 2048 +24562969 DOWN 12 +24562969 0 2048 +24563044 UP 12 +24563044 2048 2048 +24565353 CLICK1 +24565353 CLICK2 +~~~ +~~~ +~~~ +24565378 2048 67110912 +~~~ +24565527 2048 2048 +24569179 DOWN 12 +24569179 0 2048 +~~~ +~~~ +24569206 0 0 +~~~ +~~~ +24569208 0 1 +~~~ +~~~ +24569210 0 3 +~~~ +~~~ +24569212 0 7 +~~~ +~~~ +24569214 0 15 +~~~ +~~~ +24569215 0 31 +~~~ +~~~ +24569217 0 63 +~~~ +~~~ +24569219 0 127 +~~~ +24569220 UP 12 +24569220 2048 127 +~~~ +24569222 homeCount = 16 +24569223 waitCount = 7 +24569223 ripCount = 7 +24569224 locktype1 = 1 +24569245 locktype2 = 1 +24569245 locktype3 = 1 +24569246 goalCount = 0 +24569246 goalTotal = 0 +24569247 otherCount = 12 +~~~ +24569248 CURRENTGOAL IS [2] +~~~ +24569248 DOWN 12 +24569248 0 255 +24569257 UP 12 +24569256 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569303 homeCount = 16 +24569304 waitCount = 7 +24569304 ripCount = 7 +24569305 locktype1 = 1 +24569305 locktype2 = 1 +24569306 locktype3 = 1 +24569306 goalCount = 0 +24569307 goalTotal = 0 +24569307 otherCount = 12 +~~~ +24569308 CURRENTGOAL IS [2] +~~~ +24569329 DOWN 12 +24569329 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569365 homeCount = 16 +24569366 waitCount = 7 +24569366 ripCount = 7 +24569367 locktype1 = 1 +24569367 locktype2 = 1 +24569368 locktype3 = 1 +24569368 goalCount = 0 +24569369 goalTotal = 0 +24569369 otherCount = 12 +~~~ +24569370 CURRENTGOAL IS [2] +~~~ +24569392 UP 12 +24569392 2048 255 +24569399 DOWN 12 +24569399 0 255 +24569404 UP 12 +24569404 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569430 DOWN 12 +24569430 0 255 +~~~ +~~~ +~~~ +24569434 homeCount = 16 +24569434 waitCount = 7 +24569435 ripCount = 7 +24569435 locktype1 = 1 +24569436 locktype2 = 1 +24569436 locktype3 = 1 +24569437 goalCount = 0 +24569437 goalTotal = 0 +24569438 otherCount = 12 +~~~ +24569439 CURRENTGOAL IS [2] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569466 homeCount = 16 +24569467 waitCount = 7 +24569467 ripCount = 7 +24569468 locktype1 = 1 +24569468 locktype2 = 1 +24569469 locktype3 = 1 +24569490 goalCount = 0 +24569491 goalTotal = 0 +24569491 otherCount = 12 +~~~ +24569492 CURRENTGOAL IS [2] +~~~ +24569541 UP 12 +24569541 2048 255 +24569575 DOWN 12 +24569575 0 255 +24569590 UP 12 +24569590 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569628 homeCount = 16 +24569629 waitCount = 7 +24569630 ripCount = 7 +24569630 locktype1 = 1 +24569631 locktype2 = 1 +24569631 locktype3 = 1 +24569632 goalCount = 0 +24569632 goalTotal = 0 +24569633 otherCount = 12 +~~~ +24569634 CURRENTGOAL IS [2] +~~~ +24569745 DOWN 12 +24569745 0 255 +24569762 UP 12 +24569762 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24569779 homeCount = 16 +24569780 waitCount = 7 +24569781 ripCount = 7 +24569781 locktype1 = 1 +24569782 locktype2 = 1 +24569782 locktype3 = 1 +24569783 goalCount = 0 +24569783 goalTotal = 0 +24569784 otherCount = 12 +~~~ +24569785 CURRENTGOAL IS [2] +~~~ +24571050 DOWN 12 +24571050 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24571089 homeCount = 16 +24571090 waitCount = 7 +24571091 ripCount = 7 +24571091 locktype1 = 1 +24571092 locktype2 = 1 +24571092 locktype3 = 1 +24571093 goalCount = 0 +24571093 goalTotal = 0 +24571094 otherCount = 12 +~~~ +24571095 CURRENTGOAL IS [2] +~~~ +24581925 UP 5 +24581925 16 255 +~~~ +~~~ +24582431 DOWN 5 +24582431 0 255 +~~~ +~~~ +24582453 0 254 +~~~ +~~~ +24582454 0 252 +~~~ +~~~ +24582456 0 248 +~~~ +~~~ +24582458 0 240 +~~~ +~~~ +24582460 0 224 +~~~ +~~~ +24582462 0 192 +~~~ +~~~ +24582463 0 128 +~~~ +~~~ +24582465 0 0 +~~~ +~~~ +24582467 0 512 +24582468 homeCount = 16 +24582469 waitCount = 7 +24582469 ripCount = 7 +24582470 locktype1 = 1 +24582491 locktype2 = 1 +24582491 locktype3 = 1 +24582492 goalCount = 0 +24582492 goalTotal = 0 +24582493 otherCount = 13 +~~~ +24587390 UP 10 +24587390 waslock = 0 +24587390 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24587414 512 16777728 +~~~ +24587539 DOWN 10 +24587539 0 16777728 +24587564 0 512 +~~~ +~~~ +24587570 0 2560 +~~~ +~~~ +24587572 0 2048 +24587573 homeCount = 17 +24587574 waitCount = 7 +24587574 ripCount = 7 +24587575 locktype1 = 1 +24587575 locktype2 = 1 +24587576 locktype3 = 1 +24587576 goalCount = 0 +24587577 goalTotal = 0 +24587577 otherCount = 13 +~~~ +24587616 UP 10 +24587617 waslock = 0 +24587616 512 2048 +~~~ +24592258 DOWN 10 +24592258 0 2048 +24592272 UP 10 +24592273 waslock = 0 +24592272 512 2048 +~~~ +~~~ +~~~ +~~~ +24592280 homeCount = 17 +24592280 waitCount = 7 +24592281 ripCount = 7 +24592281 locktype1 = 1 +24592282 locktype2 = 1 +24592282 locktype3 = 1 +24592283 goalCount = 0 +24592283 goalTotal = 0 +24592284 otherCount = 13 +~~~ +~~~ +24592358 DOWN 10 +24592358 0 2048 +~~~ +~~~ +~~~ +~~~ +24592383 homeCount = 17 +24592383 waitCount = 7 +24592384 ripCount = 7 +24592384 locktype1 = 1 +24592385 locktype2 = 1 +24592385 locktype3 = 1 +24592386 goalCount = 0 +24592386 goalTotal = 0 +24592387 otherCount = 13 +~~~ +24616551 UP 12 +24616551 2048 2048 +24617583 DOWN 12 +24617583 0 2048 +24617639 UP 12 +24617639 2048 2048 +24617756 DOWN 12 +24617756 0 2048 +24617784 UP 12 +24617784 2048 2048 +24618319 DOWN 12 +24618319 0 2048 +24618357 UP 12 +24618357 2048 2048 +24618387 DOWN 12 +24618386 0 2048 +24618449 UP 12 +24618449 2048 2048 +24620577 DOWN 12 +24620577 0 2048 +24620632 UP 12 +24620632 2048 2048 +24621302 CLICK1 +24621302 CLICK2 +~~~ +~~~ +~~~ +24621333 2048 67110912 +~~~ +24621483 2048 2048 +24625570 DOWN 12 +24625570 0 2048 +~~~ +~~~ +24625587 0 0 +~~~ +~~~ +24625589 0 1 +~~~ +~~~ +24625591 0 3 +~~~ +~~~ +24625593 0 7 +~~~ +~~~ +24625595 0 15 +~~~ +~~~ +24625596 0 31 +~~~ +~~~ +24625598 0 63 +~~~ +~~~ +24625600 0 127 +~~~ +~~~ +24625602 0 255 +24625603 homeCount = 17 +24625603 waitCount = 8 +24625604 ripCount = 7 +24625604 locktype1 = 1 +24625605 locktype2 = 1 +24625626 locktype3 = 1 +24625627 goalCount = 0 +24625627 goalTotal = 0 +24625628 otherCount = 13 +~~~ +24625629 CURRENTGOAL IS [2] +~~~ +24625629 UP 12 +24625629 2048 255 +24625651 DOWN 12 +24625651 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24625689 homeCount = 17 +24625689 waitCount = 8 +24625690 ripCount = 7 +24625690 locktype1 = 1 +24625691 locktype2 = 1 +24625691 locktype3 = 1 +24625692 goalCount = 0 +24625692 goalTotal = 0 +24625693 otherCount = 13 +~~~ +24625694 CURRENTGOAL IS [2] +~~~ +24642952 UP 1 +24642952 1 255 +~~~ +~~~ +24645925 DOWN 1 +24645925 0 255 +~~~ +~~~ +24645946 0 254 +~~~ +~~~ +24645948 0 252 +~~~ +~~~ +24645949 0 248 +~~~ +~~~ +24645951 0 240 +~~~ +~~~ +24645953 0 224 +~~~ +~~~ +24645955 0 192 +~~~ +~~~ +24645957 0 128 +~~~ +~~~ +24645959 0 0 +~~~ +~~~ +24645960 0 512 +24645961 homeCount = 17 +24645962 waitCount = 8 +24645963 ripCount = 7 +24645963 locktype1 = 1 +24645964 locktype2 = 1 +24645984 locktype3 = 1 +24645985 goalCount = 0 +24645985 goalTotal = 0 +24645986 otherCount = 14 +~~~ +24651763 UP 10 +24651763 waslock = 0 +24651763 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24651793 512 16777728 +~~~ +24651860 DOWN 10 +24651860 0 16777728 +~~~ +~~~ +24651887 0 16778752 +~~~ +~~~ +24651889 0 16778240 +24651890 homeCount = 18 +24651890 waitCount = 8 +24651891 ripCount = 7 +24651891 locktype1 = 1 +24651892 locktype2 = 1 +24651892 locktype3 = 1 +24651893 goalCount = 0 +24651893 goalTotal = 0 +24651894 otherCount = 14 +~~~ +24651915 UP 10 +24651915 waslock = 0 +24651915 512 16778240 +~~~ +24651942 512 1024 +24652117 DOWN 10 +24652117 0 1024 +~~~ +~~~ +~~~ +~~~ +24652140 homeCount = 18 +24652141 waitCount = 8 +24652141 ripCount = 7 +24652142 locktype1 = 1 +24652142 locktype2 = 1 +24652143 locktype3 = 1 +24652143 goalCount = 0 +24652144 goalTotal = 0 +24652144 otherCount = 14 +~~~ +24652150 UP 10 +24652150 waslock = 0 +24652150 512 1024 +~~~ +24655008 DOWN 10 +24655008 0 1024 +~~~ +~~~ +~~~ +~~~ +24655031 homeCount = 18 +24655032 waitCount = 8 +24655032 ripCount = 7 +24655033 locktype1 = 1 +24655033 locktype2 = 1 +24655034 locktype3 = 1 +24655034 goalCount = 0 +24655035 goalTotal = 0 +24655035 otherCount = 14 +~~~ +24655066 UP 10 +24655066 waslock = 0 +24655066 512 1024 +~~~ +24655104 DOWN 10 +24655104 0 1024 +~~~ +~~~ +~~~ +~~~ +24655122 homeCount = 18 +24655122 waitCount = 8 +24655123 ripCount = 7 +24655123 locktype1 = 1 +24655124 locktype2 = 1 +24655124 locktype3 = 1 +24655125 goalCount = 0 +24655125 goalTotal = 0 +24655126 otherCount = 14 +~~~ +24657381 UP 11 +24657381 1024 1024 +24658427 DOWN 11 +24658427 0 1024 +24658437 UP 11 +24658437 1024 1024 +24661881 BEEP1 +24661881 BEEP2 +~~~ +~~~ +~~~ +24661900 1024 33555456 +~~~ +24662050 1024 1024 +24667500 DOWN 11 +24667500 0 1024 +~~~ +~~~ +24667519 0 0 +~~~ +~~~ +24667520 0 1 +~~~ +~~~ +24667522 0 3 +~~~ +~~~ +24667524 0 7 +~~~ +~~~ +24667526 0 15 +~~~ +~~~ +24667528 0 31 +~~~ +~~~ +24667529 0 63 +~~~ +~~~ +24667531 0 127 +~~~ +~~~ +24667533 0 255 +24667534 homeCount = 18 +24667535 waitCount = 8 +24667535 ripCount = 8 +24667536 locktype1 = 1 +24667536 locktype2 = 1 +24667557 locktype3 = 1 +24667557 goalCount = 0 +24667558 goalTotal = 0 +24667558 otherCount = 14 +~~~ +24667559 CURRENTGOAL IS [2] +~~~ +24731227 UP 11 +24731227 1024 255 +24732218 DOWN 11 +24732218 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24732257 homeCount = 18 +24732258 waitCount = 8 +24732258 ripCount = 8 +24732259 locktype1 = 1 +24732259 locktype2 = 1 +24732260 locktype3 = 1 +24732260 goalCount = 0 +24732261 goalTotal = 0 +24732261 otherCount = 14 +~~~ +24732262 CURRENTGOAL IS [2] +~~~ +24744749 UP 4 +24744749 8 255 +~~~ +~~~ +24745153 DOWN 4 +24745153 0 255 +~~~ +~~~ +24745173 0 254 +~~~ +~~~ +24745175 0 252 +~~~ +~~~ +24745177 0 248 +~~~ +~~~ +24745178 0 240 +~~~ +~~~ +24745180 0 224 +~~~ +~~~ +24745182 0 192 +~~~ +24745183 8 192 +~~~ +~~~ +24745185 8 128 +~~~ +24745186 8 0 +~~~ +~~~ +24745188 8 512 +24745189 homeCount = 18 +24745189 waitCount = 8 +24745190 ripCount = 8 +24745211 locktype1 = 1 +24745211 locktype2 = 1 +24745212 locktype3 = 1 +24745212 goalCount = 0 +24745213 goalTotal = 0 +24745213 otherCount = 15 +~~~ +24746821 DOWN 4 +24746821 0 512 +24746860 8 512 +24746902 DOWN 4 +24746901 0 512 +24752241 UP 10 +24752241 waslock = 0 +24752241 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24752270 512 16777728 +~~~ +24752379 DOWN 10 +24752379 0 16777728 +~~~ +~~~ +24752404 0 16779776 +~~~ +~~~ +24752406 0 16779264 +24752407 homeCount = 19 +24752407 waitCount = 8 +24752408 ripCount = 8 +24752408 locktype1 = 1 +24752409 locktype2 = 1 +24752409 locktype3 = 1 +24752410 goalCount = 0 +24752410 goalTotal = 0 +24752411 otherCount = 15 +~~~ +24752431 0 2048 +24752545 UP 10 +24752545 waslock = 0 +24752545 512 2048 +~~~ +24753086 DOWN 10 +24753086 0 2048 +24753096 UP 10 +24753096 waslock = 0 +24753096 512 2048 +~~~ +~~~ +~~~ +~~~ +24753119 homeCount = 19 +24753119 waitCount = 8 +24753120 ripCount = 8 +24753120 locktype1 = 1 +24753121 locktype2 = 1 +24753121 locktype3 = 1 +24753122 goalCount = 0 +24753122 goalTotal = 0 +24753123 otherCount = 15 +~~~ +~~~ +24758163 DOWN 10 +24758163 0 2048 +~~~ +~~~ +~~~ +~~~ +24758187 homeCount = 19 +24758187 waitCount = 8 +24758188 ripCount = 8 +24758188 locktype1 = 1 +24758189 locktype2 = 1 +24758189 locktype3 = 1 +24758190 goalCount = 0 +24758190 goalTotal = 0 +24758191 otherCount = 15 +~~~ +24760831 UP 12 +24760831 2048 2048 +24761455 DOWN 12 +24761455 0 2048 +24761656 LOCKOUT 3 +~~~ +24761677 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24761683 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24762044 UP 12 +24762044 2048 0 +24762069 DOWN 12 +24762069 0 0 +24762110 UP 12 +24762110 2048 0 +24762804 DOWN 12 +24762804 0 0 +24786677 LOCKEND +~~~ +~~~ +~~~ +24786697 0 512 +24787613 UP 10 +24787613 waslock = 0 +24787613 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24787645 512 16777728 +~~~ +24787699 DOWN 10 +24787699 0 16777728 +24787723 UP 10 +24787723 waslock = 0 +24787723 512 16777728 +~~~ +~~~ +24787726 512 16779776 +~~~ +~~~ +24787728 512 16779264 +24787729 homeCount = 20 +24787730 waitCount = 8 +24787730 ripCount = 8 +24787731 locktype1 = 1 +24787731 locktype2 = 1 +24787732 locktype3 = 2 +24787732 goalCount = 0 +24787733 goalTotal = 0 +24787754 otherCount = 15 +~~~ +~~~ +24787795 512 2048 +24788471 DOWN 10 +24788471 0 2048 +~~~ +~~~ +~~~ +~~~ +24788500 homeCount = 20 +24788500 waitCount = 8 +24788501 ripCount = 8 +24788501 locktype1 = 1 +24788502 locktype2 = 1 +24788502 locktype3 = 2 +24788503 goalCount = 0 +24788503 goalTotal = 0 +24788504 otherCount = 15 +~~~ +24788523 UP 10 +24788523 waslock = 0 +24788523 512 2048 +~~~ +24793994 DOWN 10 +24793994 0 2048 +~~~ +~~~ +~~~ +~~~ +24794018 homeCount = 20 +24794019 waitCount = 8 +24794019 ripCount = 8 +24794020 locktype1 = 1 +24794020 locktype2 = 1 +24794021 locktype3 = 2 +24794021 goalCount = 0 +24794022 goalTotal = 0 +24794022 otherCount = 15 +~~~ +24833942 UP 12 +24833942 2048 2048 +24834649 DOWN 12 +24834649 0 2048 +24834690 UP 12 +24834690 2048 2048 +24835479 DOWN 12 +24835479 0 2048 +24835513 UP 12 +24835513 2048 2048 +24835759 DOWN 12 +24835759 0 2048 +24835877 UP 12 +24835877 2048 2048 +24835927 DOWN 12 +24835927 0 2048 +24835951 UP 12 +24835951 2048 2048 +24836281 DOWN 12 +24836281 0 2048 +24836323 UP 12 +24836323 2048 2048 +24836439 DOWN 12 +24836439 0 2048 +24836452 UP 12 +24836452 2048 2048 +24836649 DOWN 12 +24836649 0 2048 +24836676 UP 12 +24836676 2048 2048 +24836942 CLICK1 +24836942 CLICK2 +~~~ +~~~ +~~~ +24836972 2048 67110912 +~~~ +24837059 DOWN 12 +24837059 0 67110912 +24837122 0 2048 +24837133 UP 12 +24837133 2048 2048 +~~~ +~~~ +24837144 2048 0 +~~~ +~~~ +24837146 2048 1 +~~~ +~~~ +24837148 2048 3 +~~~ +~~~ +24837150 2048 7 +~~~ +~~~ +24837152 2048 15 +~~~ +~~~ +24837153 2048 31 +~~~ +~~~ +24837155 2048 63 +~~~ +~~~ +24837157 2048 127 +~~~ +~~~ +24837159 2048 255 +24837160 homeCount = 20 +24837160 waitCount = 9 +24837161 ripCount = 8 +24837182 locktype1 = 1 +24837183 locktype2 = 1 +24837183 locktype3 = 2 +24837184 goalCount = 0 +24837184 goalTotal = 0 +24837185 otherCount = 15 +~~~ +24837186 CURRENTGOAL IS [2] +~~~ +24837229 DOWN 12 +24837229 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24837272 homeCount = 20 +24837272 waitCount = 9 +24837273 ripCount = 8 +24837273 locktype1 = 1 +24837274 locktype2 = 1 +24837274 locktype3 = 2 +24837275 goalCount = 0 +24837275 goalTotal = 0 +24837276 otherCount = 15 +~~~ +24837277 CURRENTGOAL IS [2] +~~~ +24837298 UP 12 +24837298 2048 255 +24842976 DOWN 12 +24842976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24843011 homeCount = 20 +24843011 waitCount = 9 +24843012 ripCount = 8 +24843012 locktype1 = 1 +24843013 locktype2 = 1 +24843013 locktype3 = 2 +24843014 goalCount = 0 +24843014 goalTotal = 0 +24843015 otherCount = 15 +~~~ +24843016 CURRENTGOAL IS [2] +~~~ +24848553 UP 4 +24848553 8 255 +~~~ +~~~ +24848589 DOWN 4 +24848589 0 255 +~~~ +~~~ +24848608 0 254 +~~~ +~~~ +24848610 0 252 +~~~ +~~~ +24848612 0 248 +~~~ +~~~ +24848613 0 240 +~~~ +~~~ +24848615 0 224 +~~~ +~~~ +24848617 0 192 +~~~ +~~~ +24848619 0 128 +~~~ +~~~ +24848621 0 0 +~~~ +~~~ +24848623 0 512 +24848624 homeCount = 20 +24848624 waitCount = 9 +24848625 ripCount = 8 +24848625 locktype1 = 1 +24848646 locktype2 = 1 +24848647 locktype3 = 2 +24848647 goalCount = 0 +24848648 goalTotal = 0 +24848648 otherCount = 16 +~~~ +24848649 8 512 +24848856 DOWN 4 +24848856 0 512 +24857480 UP 10 +24857481 waslock = 0 +24857480 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24857509 512 16777728 +~~~ +24857659 512 512 +24858225 DOWN 10 +24858225 0 512 +~~~ +24858250 UP 10 +24858251 waslock = 0 +24858250 512 512 +~~~ +~~~ +~~~ +24858253 512 2048 +24858254 homeCount = 21 +24858255 waitCount = 9 +24858255 ripCount = 8 +24858256 locktype1 = 1 +24858256 locktype2 = 1 +24858257 locktype3 = 2 +24858257 goalCount = 0 +24858278 goalTotal = 0 +24858279 otherCount = 16 +~~~ +~~~ +24862400 DOWN 10 +24862400 0 2048 +24862418 UP 10 +24862419 waslock = 0 +24862418 512 2048 +~~~ +~~~ +~~~ +~~~ +24862426 homeCount = 21 +24862426 waitCount = 9 +24862427 ripCount = 8 +24862427 locktype1 = 1 +24862428 locktype2 = 1 +24862428 locktype3 = 2 +24862429 goalCount = 0 +24862429 goalTotal = 0 +24862430 otherCount = 16 +~~~ +~~~ +24862493 DOWN 10 +24862493 0 2048 +~~~ +~~~ +~~~ +~~~ +24862522 homeCount = 21 +24862523 waitCount = 9 +24862523 ripCount = 8 +24862524 locktype1 = 1 +24862524 locktype2 = 1 +24862525 locktype3 = 2 +24862525 goalCount = 0 +24862526 goalTotal = 0 +24862526 otherCount = 16 +~~~ +24930514 UP 10 +24930515 waslock = 0 +24930514 512 2048 +~~~ +24930785 DOWN 10 +24930785 0 2048 +~~~ +~~~ +~~~ +~~~ +24930806 homeCount = 21 +24930806 waitCount = 9 +24930807 ripCount = 8 +24930807 locktype1 = 1 +24930808 locktype2 = 1 +24930808 locktype3 = 2 +24930809 goalCount = 0 +24930809 goalTotal = 0 +24930810 otherCount = 16 +~~~ +24930873 UP 10 +24930874 waslock = 0 +24930873 512 2048 +~~~ +24931398 DOWN 10 +24931398 0 2048 +~~~ +~~~ +~~~ +~~~ +24931425 homeCount = 21 +24931426 waitCount = 9 +24931426 ripCount = 8 +24931427 locktype1 = 1 +24931427 locktype2 = 1 +24931428 locktype3 = 2 +24931428 goalCount = 0 +24931429 goalTotal = 0 +24931429 otherCount = 16 +~~~ +24931444 UP 10 +24931445 waslock = 0 +24931444 512 2048 +~~~ +24932304 DOWN 10 +24932304 0 2048 +24932319 UP 10 +24932320 waslock = 0 +24932319 512 2048 +~~~ +~~~ +~~~ +~~~ +24932326 homeCount = 21 +24932327 waitCount = 9 +24932327 ripCount = 8 +24932328 locktype1 = 1 +24932328 locktype2 = 1 +24932329 locktype3 = 2 +24932329 goalCount = 0 +24932330 goalTotal = 0 +24932330 otherCount = 16 +~~~ +~~~ +24933504 DOWN 10 +24933504 0 2048 +~~~ +~~~ +~~~ +~~~ +24933528 homeCount = 21 +24933529 waitCount = 9 +24933529 ripCount = 8 +24933530 locktype1 = 1 +24933530 locktype2 = 1 +24933531 locktype3 = 2 +24933531 goalCount = 0 +24933532 goalTotal = 0 +24933532 otherCount = 16 +~~~ +24933557 UP 10 +24933558 waslock = 0 +24933557 512 2048 +~~~ +24933598 DOWN 10 +24933598 0 2048 +~~~ +~~~ +~~~ +~~~ +24933626 homeCount = 21 +24933627 waitCount = 9 +24933627 ripCount = 8 +24933628 locktype1 = 1 +24933628 locktype2 = 1 +24933629 locktype3 = 2 +24933629 goalCount = 0 +24933630 goalTotal = 0 +24933630 otherCount = 16 +~~~ +24937095 UP 12 +24937095 2048 2048 +24939013 DOWN 12 +24939013 0 2048 +24939059 UP 12 +24939059 2048 2048 +24940772 DOWN 12 +24940772 0 2048 +24940815 UP 12 +24940815 2048 2048 +24940959 DOWN 12 +24940959 0 2048 +24940980 UP 12 +24940980 2048 2048 +24941345 CLICK1 +24941345 CLICK2 +~~~ +~~~ +~~~ +24941365 2048 67110912 +~~~ +24941515 2048 2048 +24946106 DOWN 12 +24946105 0 2048 +~~~ +~~~ +24946124 0 0 +~~~ +~~~ +24946126 0 1 +~~~ +~~~ +24946128 0 3 +~~~ +~~~ +24946130 0 7 +~~~ +~~~ +24946132 0 15 +~~~ +~~~ +24946133 0 31 +~~~ +~~~ +24946135 0 63 +~~~ +~~~ +24946137 0 127 +~~~ +~~~ +24946139 0 255 +24946140 homeCount = 21 +24946140 waitCount = 10 +24946141 ripCount = 8 +24946141 locktype1 = 1 +24946142 locktype2 = 1 +24946163 locktype3 = 2 +24946163 goalCount = 0 +24946164 goalTotal = 0 +24946164 otherCount = 16 +~~~ +24946165 CURRENTGOAL IS [2] +~~~ +24946181 UP 12 +24946181 2048 255 +24946208 DOWN 12 +24946208 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24946241 homeCount = 21 +24946241 waitCount = 10 +24946242 ripCount = 8 +24946242 locktype1 = 1 +24946243 locktype2 = 1 +24946243 locktype3 = 2 +24946244 goalCount = 0 +24946244 goalTotal = 0 +24946245 otherCount = 16 +~~~ +24946246 CURRENTGOAL IS [2] +~~~ +24950351 UP 1 +24950351 1 255 +~~~ +~~~ +24951379 DOWN 1 +24951379 0 255 +~~~ +~~~ +24951405 0 254 +~~~ +~~~ +24951406 0 252 +~~~ +~~~ +24951408 0 248 +~~~ +~~~ +24951410 0 240 +~~~ +~~~ +24951412 0 224 +~~~ +~~~ +24951414 0 192 +~~~ +~~~ +24951415 0 128 +~~~ +~~~ +24951417 0 0 +~~~ +~~~ +24951419 0 512 +24951420 homeCount = 21 +24951421 waitCount = 10 +24951421 ripCount = 8 +24951422 locktype1 = 1 +24951422 locktype2 = 1 +24951443 locktype3 = 2 +24951443 goalCount = 0 +24951444 goalTotal = 0 +24951444 otherCount = 17 +~~~ +24955122 UP 10 +24955122 waslock = 0 +24955122 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24955153 512 16777728 +~~~ +24955284 DOWN 10 +24955284 0 16777728 +24955303 0 512 +24955318 UP 10 +24955319 waslock = 0 +24955318 512 512 +~~~ +~~~ +24955321 512 1536 +~~~ +~~~ +24955323 512 1024 +24955324 homeCount = 22 +24955324 waitCount = 10 +24955325 ripCount = 8 +24955325 locktype1 = 1 +24955326 locktype2 = 1 +24955326 locktype3 = 2 +24955327 goalCount = 0 +24955348 goalTotal = 0 +24955348 otherCount = 17 +~~~ +~~~ +24955745 DOWN 10 +24955745 0 1024 +~~~ +~~~ +~~~ +24955771 UP 10 +24955771 waslock = 0 +24955771 512 1024 +~~~ +24955773 homeCount = 22 +24955774 waitCount = 10 +24955774 ripCount = 8 +24955775 locktype1 = 1 +24955775 locktype2 = 1 +24955776 locktype3 = 2 +24955776 goalCount = 0 +24955777 goalTotal = 0 +24955798 otherCount = 17 +~~~ +~~~ +24958679 DOWN 10 +24958679 0 1024 +~~~ +~~~ +~~~ +~~~ +24958701 homeCount = 22 +24958702 waitCount = 10 +24958702 ripCount = 8 +24958703 locktype1 = 1 +24958703 locktype2 = 1 +24958704 locktype3 = 2 +24958704 goalCount = 0 +24958705 goalTotal = 0 +24958705 otherCount = 17 +~~~ +24958730 UP 10 +24958730 waslock = 0 +24958730 512 1024 +24958749 DOWN 10 +24958749 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +24958773 homeCount = 22 +24958773 waitCount = 10 +24958774 ripCount = 8 +24958774 locktype1 = 1 +24958775 locktype2 = 1 +24958775 locktype3 = 2 +24958776 goalCount = 0 +24958776 goalTotal = 0 +24958777 otherCount = 17 +~~~ +24960062 UP 11 +24960062 1024 1024 +24961852 DOWN 11 +24961852 0 1024 +24961864 UP 11 +24961864 1024 1024 +24962813 BEEP1 +24962813 BEEP2 +~~~ +~~~ +~~~ +24962837 1024 33555456 +~~~ +24962987 1024 1024 +24963064 DOWN 11 +24963064 0 1024 +24963077 UP 11 +24963077 1024 1024 +~~~ +~~~ +24963504 1024 0 +~~~ +~~~ +24963505 1024 1 +~~~ +~~~ +24963507 1024 3 +~~~ +~~~ +24963509 1024 7 +~~~ +~~~ +24963511 1024 15 +~~~ +~~~ +24963513 1024 31 +~~~ +~~~ +24963514 1024 63 +~~~ +~~~ +24963516 1024 127 +~~~ +~~~ +24963518 1024 255 +24963519 homeCount = 22 +24963520 waitCount = 10 +24963520 ripCount = 9 +24963521 locktype1 = 1 +24963542 locktype2 = 1 +24963542 locktype3 = 2 +24963543 goalCount = 0 +24963543 goalTotal = 0 +24963544 otherCount = 17 +~~~ +24963545 CURRENTGOAL IS [2] +~~~ +24968316 DOWN 11 +24968316 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24968356 homeCount = 22 +24968357 waitCount = 10 +24968357 ripCount = 9 +24968358 locktype1 = 1 +24968358 locktype2 = 1 +24968359 locktype3 = 2 +24968359 goalCount = 0 +24968360 goalTotal = 0 +24968360 otherCount = 17 +~~~ +24968361 CURRENTGOAL IS [2] +~~~ +24968382 UP 11 +24968382 1024 255 +24968404 DOWN 11 +24968404 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +24968438 homeCount = 22 +24968439 waitCount = 10 +24968439 ripCount = 9 +24968440 locktype1 = 1 +24968441 locktype2 = 1 +24968441 locktype3 = 2 +24968442 goalCount = 0 +24968442 goalTotal = 0 +24968443 otherCount = 17 +~~~ +24968444 CURRENTGOAL IS [2] +~~~ +24971124 UP 7 +24971124 64 255 +~~~ +~~~ +24971481 DOWN 7 +24971481 0 255 +~~~ +~~~ +24971503 0 254 +~~~ +~~~ +24971505 0 252 +~~~ +~~~ +24971506 0 248 +~~~ +~~~ +24971508 0 240 +~~~ +~~~ +24971510 0 224 +~~~ +~~~ +24971512 0 192 +~~~ +~~~ +24971514 64 128 +~~~ +~~~ +24971515 64 0 +~~~ +~~~ +24971517 64 512 +24971518 homeCount = 22 +24971519 waitCount = 10 +24971519 ripCount = 9 +24971520 locktype1 = 1 +24971541 locktype2 = 1 +24971542 locktype3 = 2 +24971542 goalCount = 0 +24971543 goalTotal = 0 +24971543 otherCount = 18 +~~~ +24972028 DOWN 7 +24972028 0 512 +24972049 64 512 +24972113 DOWN 7 +24972113 0 512 +24978577 UP 10 +24978578 waslock = 0 +24978577 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +24978604 512 16777728 +~~~ +24978753 512 512 +24978766 DOWN 10 +24978766 0 512 +~~~ +~~~ +24978786 0 1536 +~~~ +~~~ +24978788 0 1024 +24978789 homeCount = 23 +24978789 waitCount = 10 +24978790 ripCount = 9 +24978790 locktype1 = 1 +24978791 locktype2 = 1 +24978791 locktype3 = 2 +24978792 goalCount = 0 +24978792 goalTotal = 0 +24978793 otherCount = 18 +~~~ +24978850 UP 10 +24978851 waslock = 0 +24978850 512 1024 +~~~ +24978958 DOWN 10 +24978958 0 1024 +24978966 UP 10 +24978966 waslock = 0 +24978966 512 1024 +~~~ +~~~ +~~~ +~~~ +24978988 homeCount = 23 +24978989 waitCount = 10 +24978989 ripCount = 9 +24978990 locktype1 = 1 +24978990 locktype2 = 1 +24978991 locktype3 = 2 +24978991 goalCount = 0 +24978992 goalTotal = 0 +24978992 otherCount = 18 +~~~ +~~~ +24978997 DOWN 10 +24978997 0 1024 +~~~ +~~~ +~~~ +~~~ +24979033 homeCount = 23 +24979034 waitCount = 10 +24979034 ripCount = 9 +24979035 locktype1 = 1 +24979035 locktype2 = 1 +24979036 locktype3 = 2 +24979036 goalCount = 0 +24979037 goalTotal = 0 +24979037 otherCount = 18 +~~~ +24979055 UP 10 +24979055 waslock = 0 +24979055 512 1024 +~~~ +24983166 DOWN 10 +24983166 0 1024 +~~~ +~~~ +~~~ +~~~ +24983190 homeCount = 23 +24983190 waitCount = 10 +24983191 ripCount = 9 +24983191 locktype1 = 1 +24983192 locktype2 = 1 +24983192 locktype3 = 2 +24983193 goalCount = 0 +24983193 goalTotal = 0 +24983194 otherCount = 18 +~~~ +24983202 UP 10 +24983202 waslock = 0 +24983202 512 1024 +~~~ +24983259 DOWN 10 +24983259 0 1024 +~~~ +~~~ +~~~ +~~~ +24983280 homeCount = 23 +24983281 waitCount = 10 +24983281 ripCount = 9 +24983282 locktype1 = 1 +24983282 locktype2 = 1 +24983283 locktype3 = 2 +24983283 goalCount = 0 +24983284 goalTotal = 0 +24983284 otherCount = 18 +~~~ +24992949 UP 10 +24992949 waslock = 0 +24992948 512 1024 +~~~ +24993619 DOWN 10 +24993619 0 1024 +~~~ +~~~ +~~~ +~~~ +24993640 homeCount = 23 +24993641 waitCount = 10 +24993641 ripCount = 9 +24993642 locktype1 = 1 +24993642 locktype2 = 1 +24993643 locktype3 = 2 +24993643 goalCount = 0 +24993644 goalTotal = 0 +24993644 otherCount = 18 +~~~ +24993658 UP 10 +24993658 waslock = 0 +24993658 512 1024 +~~~ +24993819 DOWN 10 +24993819 0 1024 +~~~ +~~~ +~~~ +~~~ +24993845 homeCount = 23 +24993845 waitCount = 10 +24993846 ripCount = 9 +24993846 locktype1 = 1 +24993847 locktype2 = 1 +24993847 locktype3 = 2 +24993848 goalCount = 0 +24993848 goalTotal = 0 +24993849 otherCount = 18 +~~~ +24993855 UP 10 +24993855 waslock = 0 +24993855 512 1024 +~~~ +24994083 DOWN 10 +24994083 0 1024 +~~~ +~~~ +~~~ +~~~ +24994116 homeCount = 23 +24994117 waitCount = 10 +24994117 ripCount = 9 +24994118 locktype1 = 1 +24994118 locktype2 = 1 +24994119 locktype3 = 2 +24994119 goalCount = 0 +24994120 goalTotal = 0 +24994120 otherCount = 18 +~~~ +25014055 UP 10 +25014055 waslock = 0 +25014055 512 1024 +~~~ +25014332 DOWN 10 +25014332 0 1024 +~~~ +~~~ +~~~ +~~~ +25014361 homeCount = 23 +25014361 waitCount = 10 +25014362 ripCount = 9 +25014362 locktype1 = 1 +25014363 locktype2 = 1 +25014363 locktype3 = 2 +25014364 goalCount = 0 +25014364 goalTotal = 0 +25014365 otherCount = 18 +~~~ +25014825 UP 10 +25014825 waslock = 0 +25014825 512 1024 +~~~ +25015812 DOWN 10 +25015812 0 1024 +~~~ +~~~ +~~~ +~~~ +25015841 homeCount = 23 +25015841 waitCount = 10 +25015842 ripCount = 9 +25015842 locktype1 = 1 +25015843 locktype2 = 1 +25015843 locktype3 = 2 +25015844 goalCount = 0 +25015844 goalTotal = 0 +25015845 otherCount = 18 +~~~ +25015866 UP 10 +25015866 waslock = 0 +25015866 512 1024 +~~~ +25015908 DOWN 10 +25015908 0 1024 +~~~ +~~~ +~~~ +~~~ +25015937 homeCount = 23 +25015938 waitCount = 10 +25015938 ripCount = 9 +25015939 locktype1 = 1 +25015940 locktype2 = 1 +25015940 locktype3 = 2 +25015941 goalCount = 0 +25015941 goalTotal = 0 +25015942 otherCount = 18 +~~~ +25026289 UP 11 +25026289 1024 1024 +25027542 DOWN 11 +25027542 0 1024 +25027560 UP 11 +25027560 1024 1024 +25027600 DOWN 11 +25027600 0 1024 +25027621 UP 11 +25027621 1024 1024 +25028239 DOWN 11 +25028239 0 1024 +25028248 UP 11 +25028248 1024 1024 +25028279 DOWN 11 +25028279 0 1024 +25028295 UP 11 +25028295 1024 1024 +25029519 DOWN 11 +25029519 0 1024 +25029539 UP 11 +25029539 1024 1024 +25031039 BEEP1 +25031039 BEEP2 +~~~ +~~~ +~~~ +25031065 1024 33555456 +~~~ +25031215 1024 1024 +25034863 DOWN 11 +25034863 0 1024 +~~~ +~~~ +25034883 0 0 +~~~ +~~~ +25034884 0 1 +~~~ +~~~ +25034886 0 3 +~~~ +~~~ +25034888 0 7 +~~~ +~~~ +25034890 0 15 +~~~ +~~~ +25034892 0 31 +~~~ +~~~ +25034893 0 63 +~~~ +~~~ +25034895 0 127 +~~~ +~~~ +25034897 0 255 +25034898 homeCount = 23 +25034899 waitCount = 10 +25034899 ripCount = 10 +25034900 locktype1 = 1 +25034900 locktype2 = 1 +25034921 locktype3 = 2 +25034922 goalCount = 0 +25034922 goalTotal = 0 +25034923 otherCount = 18 +~~~ +25034924 CURRENTGOAL IS [2] +~~~ +25034924 UP 11 +25034924 1024 255 +25034974 DOWN 11 +25034974 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25035007 homeCount = 23 +25035008 waitCount = 10 +25035008 ripCount = 10 +25035009 locktype1 = 1 +25035010 locktype2 = 1 +25035010 locktype3 = 2 +25035011 goalCount = 0 +25035011 goalTotal = 0 +25035012 otherCount = 18 +~~~ +25035013 CURRENTGOAL IS [2] +~~~ +25037912 UP 8 +25037912 128 255 +~~~ +~~~ +25038494 DOWN 8 +25038494 0 255 +~~~ +~~~ +25038511 0 254 +~~~ +~~~ +25038513 0 252 +~~~ +~~~ +25038514 0 248 +~~~ +~~~ +25038516 0 240 +~~~ +~~~ +25038518 0 224 +~~~ +~~~ +25038520 0 192 +~~~ +~~~ +25038522 0 128 +~~~ +~~~ +25038524 0 0 +~~~ +~~~ +25038525 0 512 +25038526 homeCount = 23 +25038527 waitCount = 10 +25038527 ripCount = 10 +25038528 locktype1 = 1 +25038528 locktype2 = 1 +25038549 locktype3 = 2 +25038550 goalCount = 0 +25038550 goalTotal = 0 +25038551 otherCount = 19 +~~~ +25043144 UP 10 +25043144 waslock = 0 +25043144 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25043167 512 16777728 +~~~ +25043317 512 512 +25043535 DOWN 10 +25043535 0 512 +~~~ +~~~ +25043565 0 2560 +~~~ +~~~ +25043567 0 2048 +25043568 homeCount = 24 +25043568 waitCount = 10 +25043569 ripCount = 10 +25043569 locktype1 = 1 +25043570 locktype2 = 1 +25043570 locktype3 = 2 +25043571 goalCount = 0 +25043571 goalTotal = 0 +25043572 otherCount = 19 +~~~ +25043738 UP 10 +25043738 waslock = 0 +25043738 512 2048 +~~~ +25047500 DOWN 10 +25047500 0 2048 +~~~ +~~~ +25047525 UP 10 +25047526 waslock = 0 +25047525 512 2048 +~~~ +~~~ +25047528 homeCount = 24 +25047528 waitCount = 10 +25047529 ripCount = 10 +25047529 locktype1 = 1 +25047530 locktype2 = 1 +25047530 locktype3 = 2 +25047531 goalCount = 0 +25047531 goalTotal = 0 +25047552 otherCount = 19 +~~~ +~~~ +25047584 DOWN 10 +25047584 0 2048 +~~~ +~~~ +~~~ +~~~ +25047608 homeCount = 24 +25047608 waitCount = 10 +25047609 ripCount = 10 +25047609 locktype1 = 1 +25047610 locktype2 = 1 +25047610 locktype3 = 2 +25047611 goalCount = 0 +25047611 goalTotal = 0 +25047612 otherCount = 19 +~~~ +25052125 UP 12 +25052125 2048 2048 +25054402 DOWN 12 +25054401 0 2048 +25054425 UP 12 +25054425 2048 2048 +25054523 DOWN 12 +25054523 0 2048 +25054564 UP 12 +25054564 2048 2048 +25054625 CLICK1 +25054625 CLICK2 +~~~ +~~~ +~~~ +25054647 2048 67110912 +~~~ +25054797 2048 2048 +25060172 DOWN 12 +25060172 0 2048 +25060192 UP 12 +25060192 2048 2048 +~~~ +~~~ +25060196 2048 0 +~~~ +~~~ +25060198 2048 1 +~~~ +~~~ +25060199 2048 3 +~~~ +~~~ +25060201 2048 7 +~~~ +~~~ +25060203 2048 15 +~~~ +~~~ +25060205 2048 31 +~~~ +~~~ +25060207 2048 63 +~~~ +~~~ +25060209 2048 127 +~~~ +~~~ +25060210 2048 255 +25060211 homeCount = 24 +25060212 waitCount = 11 +25060213 ripCount = 10 +25060213 locktype1 = 1 +25060234 locktype2 = 1 +25060235 locktype3 = 2 +25060235 goalCount = 0 +25060236 goalTotal = 0 +25060236 otherCount = 19 +~~~ +25060237 CURRENTGOAL IS [2] +~~~ +25060249 DOWN 12 +25060249 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25060289 homeCount = 24 +25060289 waitCount = 11 +25060290 ripCount = 10 +25060290 locktype1 = 1 +25060291 locktype2 = 1 +25060291 locktype3 = 2 +25060292 goalCount = 0 +25060292 goalTotal = 0 +25060293 otherCount = 19 +~~~ +25060294 CURRENTGOAL IS [2] +~~~ +25063141 UP 3 +25063141 4 255 +~~~ +~~~ +25063547 DOWN 3 +25063547 0 255 +~~~ +~~~ +25063565 0 254 +~~~ +~~~ +25063567 0 252 +~~~ +~~~ +25063569 0 248 +~~~ +~~~ +25063570 0 240 +~~~ +~~~ +25063572 0 224 +~~~ +~~~ +25063574 0 192 +~~~ +~~~ +25063576 0 128 +~~~ +~~~ +25063578 0 0 +~~~ +~~~ +25063580 0 512 +25063581 homeCount = 24 +25063581 waitCount = 11 +25063582 ripCount = 10 +25063582 locktype1 = 1 +25063603 locktype2 = 1 +25063604 locktype3 = 2 +25063604 goalCount = 0 +25063605 goalTotal = 0 +25063605 otherCount = 20 +~~~ +25067425 UP 10 +25067425 waslock = 0 +25067425 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25067452 512 16777728 +~~~ +25067602 512 512 +25067687 DOWN 10 +25067687 0 512 +~~~ +~~~ +25067706 0 1536 +~~~ +~~~ +25067708 0 1024 +25067709 homeCount = 25 +25067710 waitCount = 11 +25067710 ripCount = 10 +25067711 locktype1 = 1 +25067711 locktype2 = 1 +25067712 locktype3 = 2 +25067712 goalCount = 0 +25067713 goalTotal = 0 +25067713 otherCount = 20 +~~~ +25067735 UP 10 +25067735 waslock = 0 +25067735 512 1024 +~~~ +25071823 DOWN 10 +25071823 0 1024 +~~~ +~~~ +~~~ +~~~ +25071852 homeCount = 25 +25071853 waitCount = 11 +25071853 ripCount = 10 +25071854 locktype1 = 1 +25071854 locktype2 = 1 +25071855 locktype3 = 2 +25071855 goalCount = 0 +25071856 goalTotal = 0 +25071856 otherCount = 20 +~~~ +25073297 UP 11 +25073297 1024 1024 +25075903 DOWN 11 +25075903 0 1024 +25075949 UP 11 +25075949 1024 1024 +25076047 BEEP1 +25076047 BEEP2 +~~~ +~~~ +~~~ +25076076 1024 33555456 +~~~ +25076226 1024 1024 +25080864 DOWN 11 +25080864 0 1024 +25080887 UP 11 +25080887 1024 1024 +~~~ +~~~ +25080891 1024 0 +~~~ +~~~ +25080892 1024 1 +~~~ +~~~ +25080894 1024 3 +~~~ +~~~ +25080896 1024 7 +~~~ +~~~ +25080898 1024 15 +~~~ +~~~ +25080900 1024 31 +~~~ +~~~ +25080901 1024 63 +~~~ +~~~ +25080903 1024 127 +~~~ +~~~ +25080905 1024 255 +25080906 homeCount = 25 +25080907 waitCount = 11 +25080907 ripCount = 11 +25080928 locktype1 = 1 +25080929 locktype2 = 1 +25080929 locktype3 = 2 +25080930 goalCount = 0 +25080930 goalTotal = 0 +25080931 otherCount = 20 +~~~ +25080932 CURRENTGOAL IS [2] +~~~ +25080976 DOWN 11 +25080976 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25081015 homeCount = 25 +25081015 waitCount = 11 +25081016 ripCount = 11 +25081016 locktype1 = 1 +25081017 locktype2 = 1 +25081018 locktype3 = 2 +25081018 goalCount = 0 +25081018 goalTotal = 0 +25081019 otherCount = 20 +~~~ +25081020 CURRENTGOAL IS [2] +~~~ +25084278 UP 6 +25084278 32 255 +~~~ +~~~ +25085001 DOWN 6 +25085001 0 255 +25085013 32 255 +~~~ +~~~ +25085032 32 254 +~~~ +~~~ +25085034 32 252 +~~~ +~~~ +25085036 32 248 +~~~ +~~~ +25085037 32 240 +~~~ +~~~ +25085039 32 224 +~~~ +~~~ +25085041 32 192 +~~~ +~~~ +25085043 32 128 +~~~ +~~~ +25085045 32 0 +~~~ +~~~ +25085047 32 512 +25085048 homeCount = 25 +25085048 waitCount = 11 +25085049 ripCount = 11 +25085049 locktype1 = 1 +25085070 locktype2 = 1 +25085070 locktype3 = 2 +25085071 goalCount = 0 +25085071 goalTotal = 0 +25085072 otherCount = 21 +~~~ +25085490 DOWN 6 +25085490 0 512 +25089559 UP 10 +25089560 waslock = 0 +25089559 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25089592 512 16777728 +~~~ +25089594 DOWN 10 +25089594 0 16777728 +~~~ +~~~ +25089613 0 16779776 +~~~ +~~~ +25089615 0 16779264 +25089616 homeCount = 26 +25089616 waitCount = 11 +25089617 ripCount = 11 +25089617 locktype1 = 1 +25089618 locktype2 = 1 +25089618 locktype3 = 2 +25089619 goalCount = 0 +25089619 goalTotal = 0 +25089620 otherCount = 21 +~~~ +25089742 0 2048 +25089753 UP 10 +25089753 waslock = 0 +25089753 512 2048 +~~~ +25090106 DOWN 10 +25090106 0 2048 +~~~ +~~~ +~~~ +~~~ +25090129 homeCount = 26 +25090129 waitCount = 11 +25090130 ripCount = 11 +25090130 locktype1 = 1 +25090131 locktype2 = 1 +25090131 locktype3 = 2 +25090132 goalCount = 0 +25090132 goalTotal = 0 +25090133 otherCount = 21 +~~~ +25090343 UP 10 +25090344 waslock = 0 +25090343 512 2048 +~~~ +25093735 DOWN 10 +25093735 0 2048 +~~~ +~~~ +~~~ +25093757 UP 10 +25093757 waslock = 0 +25093757 512 2048 +~~~ +25093759 homeCount = 26 +25093759 waitCount = 11 +25093760 ripCount = 11 +25093760 locktype1 = 1 +25093761 locktype2 = 1 +25093761 locktype3 = 2 +25093762 goalCount = 0 +25093762 goalTotal = 0 +25093763 otherCount = 21 +~~~ +~~~ +25093831 DOWN 10 +25093831 0 2048 +~~~ +~~~ +~~~ +~~~ +25093859 homeCount = 26 +25093859 waitCount = 11 +25093860 ripCount = 11 +25093860 locktype1 = 1 +25093861 locktype2 = 1 +25093861 locktype3 = 2 +25093862 goalCount = 0 +25093862 goalTotal = 0 +25093863 otherCount = 21 +~~~ +25095923 UP 12 +25095923 2048 2048 +25099423 CLICK1 +25099423 CLICK2 +~~~ +~~~ +~~~ +25099447 2048 67110912 +~~~ +25099548 DOWN 12 +25099548 0 67110912 +25099570 UP 12 +25099570 2048 67110912 +25099596 2048 2048 +~~~ +~~~ +25099615 2048 0 +~~~ +~~~ +25099616 2048 1 +~~~ +~~~ +25099618 2048 3 +~~~ +~~~ +25099620 2048 7 +~~~ +~~~ +25099622 2048 15 +~~~ +~~~ +25099624 2048 31 +~~~ +~~~ +25099625 2048 63 +~~~ +~~~ +25099627 2048 127 +~~~ +~~~ +25099629 2048 255 +25099630 homeCount = 26 +25099631 waitCount = 12 +25099631 ripCount = 11 +25099652 locktype1 = 1 +25099653 locktype2 = 1 +25099653 locktype3 = 2 +25099654 goalCount = 0 +25099654 goalTotal = 0 +25099655 otherCount = 21 +~~~ +25099656 CURRENTGOAL IS [2] +~~~ +25103441 DOWN 12 +25103441 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25103483 homeCount = 26 +25103484 waitCount = 12 +25103484 ripCount = 11 +25103485 locktype1 = 1 +25103485 locktype2 = 1 +25103486 locktype3 = 2 +25103486 goalCount = 0 +25103487 goalTotal = 0 +25103487 otherCount = 21 +~~~ +25103488 CURRENTGOAL IS [2] +~~~ +25107617 UP 2 +25107617 2 255 +~~~ +~~~ +25107640 outer reward +~~~ +25107640 2 131327 +~~~ +~~~ +25108090 2 255 +25108090 DOWN 2 +25108090 0 255 +~~~ +~~~ +25108124 0 254 +~~~ +~~~ +25108126 0 252 +~~~ +~~~ +25108128 0 248 +~~~ +~~~ +25108129 0 240 +~~~ +~~~ +25108131 0 224 +~~~ +~~~ +25108133 0 192 +~~~ +~~~ +25108135 0 128 +~~~ +~~~ +25108137 0 0 +~~~ +~~~ +25108139 0 512 +25108139 homeCount = 26 +25108140 waitCount = 12 +25108141 ripCount = 11 +25108141 locktype1 = 1 +25108162 locktype2 = 1 +25108163 locktype3 = 2 +25108163 goalCount = 1 +25108164 goalTotal = 1 +25108164 otherCount = 21 +~~~ +25108165 2 512 +25108303 DOWN 2 +25108303 0 512 +25108337 2 512 +25108404 DOWN 2 +25108404 0 512 +25108444 2 512 +25108534 DOWN 2 +25108534 0 512 +25108561 2 512 +25108675 DOWN 2 +25108675 0 512 +25108681 2 512 +25108797 DOWN 2 +25108797 0 512 +25108808 2 512 +25108923 DOWN 2 +25108923 0 512 +25108940 2 512 +25109063 DOWN 2 +25109063 0 512 +25109079 2 512 +25109213 DOWN 2 +25109213 0 512 +25109221 2 512 +25111989 DOWN 2 +25111989 0 512 +25111997 2 512 +25112095 DOWN 2 +25112095 0 512 +25112143 2 512 +25112170 DOWN 2 +25112170 0 512 +25112175 2 512 +25112334 DOWN 2 +25112334 0 512 +25112350 2 512 +25112437 DOWN 2 +25112437 0 512 +25112458 2 512 +25112510 DOWN 2 +25112510 0 512 +25112516 2 512 +25112519 DOWN 2 +25112519 0 512 +25112525 2 512 +25112616 DOWN 2 +25112616 0 512 +25112644 2 512 +25112863 DOWN 2 +25112863 0 512 +25112875 2 512 +25112908 DOWN 2 +25112908 0 512 +25112924 2 512 +25112973 DOWN 2 +25112973 0 512 +25112985 2 512 +25113064 DOWN 2 +25113064 0 512 +25113068 2 512 +25113165 DOWN 2 +25113165 0 512 +25113182 2 512 +25113240 DOWN 2 +25113240 0 512 +25113268 2 512 +25113362 DOWN 2 +25113362 0 512 +25113405 2 512 +25113427 DOWN 2 +25113427 0 512 +25113453 2 512 +25113486 DOWN 2 +25113486 0 512 +25113492 2 512 +25113607 DOWN 2 +25113607 0 512 +25113626 2 512 +25114161 DOWN 2 +25114161 0 512 +25114185 2 512 +25114363 DOWN 2 +25114363 0 512 +25114372 2 512 +25114757 DOWN 2 +25114757 0 512 +25114769 2 512 +25114897 DOWN 2 +25114897 0 512 +25114923 2 512 +25115469 DOWN 2 +25115469 0 512 +25115493 2 512 +25115664 DOWN 2 +25115664 0 512 +25115679 2 512 +25118445 DOWN 2 +25118445 0 512 +25118505 2 512 +25118523 DOWN 2 +25118523 0 512 +25123502 UP 10 +25123502 waslock = 0 +25123502 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25123535 512 16777728 +~~~ +25123685 512 512 +25123787 DOWN 10 +25123787 0 512 +~~~ +~~~ +25123809 0 2560 +~~~ +~~~ +25123811 0 2048 +25123812 homeCount = 27 +25123812 waitCount = 12 +25123813 ripCount = 11 +25123813 locktype1 = 1 +25123814 locktype2 = 1 +25123814 locktype3 = 2 +25123815 goalCount = 1 +25123815 goalTotal = 1 +25123816 otherCount = 21 +~~~ +25123946 UP 10 +25123946 waslock = 0 +25123946 512 2048 +~~~ +25128830 DOWN 10 +25128830 0 2048 +~~~ +~~~ +~~~ +~~~ +25128851 homeCount = 27 +25128852 waitCount = 12 +25128852 ripCount = 11 +25128853 locktype1 = 1 +25128853 locktype2 = 1 +25128854 locktype3 = 2 +25128854 goalCount = 1 +25128855 goalTotal = 1 +25128855 otherCount = 21 +~~~ +25130706 UP 12 +25130706 2048 2048 +25132114 DOWN 12 +25132114 0 2048 +25132126 UP 12 +25132126 2048 2048 +25133707 CLICK1 +25133707 CLICK2 +~~~ +~~~ +~~~ +25133732 2048 67110912 +~~~ +25133881 2048 2048 +25138417 DOWN 12 +25138417 0 2048 +~~~ +~~~ +25138438 0 0 +~~~ +~~~ +25138440 0 1 +~~~ +~~~ +25138441 0 3 +~~~ +~~~ +25138443 0 7 +~~~ +~~~ +25138445 0 15 +~~~ +~~~ +25138447 0 31 +~~~ +~~~ +25138449 0 63 +~~~ +~~~ +25138451 0 127 +~~~ +~~~ +25138452 0 255 +25138453 homeCount = 27 +25138454 waitCount = 13 +25138454 ripCount = 11 +25138455 locktype1 = 1 +25138456 locktype2 = 1 +25138476 locktype3 = 2 +25138477 goalCount = 1 +25138477 goalTotal = 1 +25138478 otherCount = 21 +~~~ +25138479 CURRENTGOAL IS [2] +~~~ +25138480 UP 12 +25138479 2048 255 +25138526 DOWN 12 +25138526 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25138567 homeCount = 27 +25138567 waitCount = 13 +25138568 ripCount = 11 +25138568 locktype1 = 1 +25138569 locktype2 = 1 +25138569 locktype3 = 2 +25138570 goalCount = 1 +25138570 goalTotal = 1 +25138571 otherCount = 21 +~~~ +25138572 CURRENTGOAL IS [2] +~~~ +25142186 UP 2 +25142186 2 255 +~~~ +~~~ +25142212 outer reward +~~~ +25142212 2 131327 +~~~ +~~~ +25142409 DOWN 2 +25142409 0 131327 +~~~ +~~~ +25142429 0 131326 +~~~ +~~~ +25142431 0 131324 +~~~ +~~~ +25142433 0 131320 +~~~ +~~~ +25142435 0 131312 +~~~ +~~~ +25142437 0 131296 +~~~ +~~~ +25142438 0 131264 +~~~ +~~~ +25142440 0 131200 +~~~ +~~~ +25142442 0 131072 +~~~ +~~~ +25142444 0 131584 +25142445 homeCount = 27 +25142445 waitCount = 13 +25142446 ripCount = 11 +25142467 locktype1 = 1 +25142467 locktype2 = 1 +25142468 locktype3 = 2 +25142468 goalCount = 2 +25142469 goalTotal = 2 +25142469 otherCount = 21 +~~~ +25142514 2 131584 +25142662 2 512 +25142890 DOWN 2 +25142890 0 512 +25142916 2 512 +25143005 DOWN 2 +25143005 0 512 +25143054 2 512 +25143131 DOWN 2 +25143131 0 512 +25143167 2 512 +25143275 DOWN 2 +25143275 0 512 +25143289 2 512 +25143415 DOWN 2 +25143415 0 512 +25143426 2 512 +25143556 DOWN 2 +25143556 0 512 +25143574 2 512 +25143700 DOWN 2 +25143700 0 512 +25143717 2 512 +25143855 DOWN 2 +25143855 0 512 +25143873 2 512 +25145835 DOWN 2 +25145835 0 512 +25145862 2 512 +25146013 DOWN 2 +25146013 0 512 +25146025 2 512 +25146180 DOWN 2 +25146180 0 512 +25146196 2 512 +25146245 DOWN 2 +25146245 0 512 +25146262 2 512 +25146416 DOWN 2 +25146416 0 512 +25146444 2 512 +25146594 DOWN 2 +25146594 0 512 +25146604 2 512 +25146772 DOWN 2 +25146772 0 512 +25146776 2 512 +25146903 DOWN 2 +25146903 0 512 +25146914 2 512 +25147108 DOWN 2 +25147108 0 512 +25147157 2 512 +25147264 DOWN 2 +25147264 0 512 +25147283 2 512 +25147322 DOWN 2 +25147322 0 512 +25147326 2 512 +25147510 DOWN 2 +25147510 0 512 +25147517 2 512 +25149784 DOWN 2 +25149784 0 512 +25149798 2 512 +25149902 DOWN 2 +25149902 0 512 +25154660 UP 10 +25154660 waslock = 0 +25154660 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25154687 512 16777728 +~~~ +25154837 512 512 +25154873 DOWN 10 +25154873 0 512 +~~~ +~~~ +25154890 0 1536 +~~~ +~~~ +25154892 0 1024 +25154893 homeCount = 28 +25154893 waitCount = 13 +25154894 ripCount = 11 +25154894 locktype1 = 1 +25154895 locktype2 = 1 +25154895 locktype3 = 2 +25154896 goalCount = 2 +25154896 goalTotal = 2 +25154897 otherCount = 21 +~~~ +25154918 UP 10 +25154919 waslock = 0 +25154918 512 1024 +~~~ +25159969 DOWN 10 +25159969 0 1024 +~~~ +~~~ +~~~ +~~~ +25159992 homeCount = 28 +25159992 waitCount = 13 +25159993 ripCount = 11 +25159993 locktype1 = 1 +25159994 locktype2 = 1 +25159994 locktype3 = 2 +25159995 goalCount = 2 +25159995 goalTotal = 2 +25159996 otherCount = 21 +~~~ +25161799 UP 11 +25161799 1024 1024 +25164091 DOWN 11 +25164091 0 1024 +25164144 UP 11 +25164144 1024 1024 +25164160 DOWN 11 +25164160 0 1024 +25164179 UP 11 +25164179 1024 1024 +25164800 BEEP1 +25164800 BEEP2 +~~~ +~~~ +~~~ +25164824 1024 33555456 +~~~ +25164974 1024 1024 +25169371 DOWN 11 +25169371 0 1024 +~~~ +~~~ +25169390 0 0 +~~~ +~~~ +25169392 0 1 +~~~ +~~~ +25169394 0 3 +~~~ +~~~ +25169396 0 7 +~~~ +~~~ +25169398 0 15 +~~~ +~~~ +25169400 0 31 +~~~ +~~~ +25169401 0 63 +~~~ +~~~ +25169403 0 127 +~~~ +~~~ +25169405 0 255 +25169406 homeCount = 28 +25169407 waitCount = 13 +25169407 ripCount = 12 +25169408 locktype1 = 1 +25169408 locktype2 = 1 +25169429 locktype3 = 2 +25169430 goalCount = 2 +25169430 goalTotal = 2 +25169431 otherCount = 21 +~~~ +25169432 CURRENTGOAL IS [2] +~~~ +25169432 UP 11 +25169432 1024 255 +25171560 DOWN 11 +25171560 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25171599 homeCount = 28 +25171599 waitCount = 13 +25171600 ripCount = 12 +25171600 locktype1 = 1 +25171601 locktype2 = 1 +25171601 locktype3 = 2 +25171602 goalCount = 2 +25171602 goalTotal = 2 +25171603 otherCount = 21 +~~~ +25171604 CURRENTGOAL IS [2] +~~~ +25175596 UP 2 +25175596 2 255 +~~~ +~~~ +25175623 outer reward +~~~ +25175624 2 131327 +~~~ +~~~ +25175843 DOWN 2 +25175843 0 131327 +~~~ +~~~ +25175862 0 131326 +~~~ +~~~ +25175863 0 131324 +~~~ +~~~ +25175865 0 131320 +~~~ +~~~ +25175867 0 131312 +~~~ +~~~ +25175869 0 131296 +~~~ +~~~ +25175871 0 131264 +~~~ +~~~ +25175872 0 131200 +~~~ +~~~ +25175874 0 131072 +~~~ +~~~ +25175876 0 131584 +25175877 homeCount = 28 +25175878 waitCount = 13 +25175878 ripCount = 12 +25175899 locktype1 = 1 +25175899 locktype2 = 1 +25175900 locktype3 = 2 +25175900 goalCount = 3 +25175901 goalTotal = 3 +25175901 otherCount = 21 +~~~ +25175912 2 131584 +25176073 2 512 +25176303 DOWN 2 +25176303 0 512 +25176332 2 512 +25176429 DOWN 2 +25176428 0 512 +25176458 2 512 +25176562 DOWN 2 +25176562 0 512 +25176589 2 512 +25176708 DOWN 2 +25176707 0 512 +25176725 2 512 +25176848 DOWN 2 +25176848 0 512 +25176866 2 512 +25176998 DOWN 2 +25176998 0 512 +25177012 2 512 +25177155 DOWN 2 +25177155 0 512 +25177160 2 512 +25179505 DOWN 2 +25179505 0 512 +25179517 2 512 +25179928 DOWN 2 +25179928 0 512 +25179960 2 512 +25180105 DOWN 2 +25180105 0 512 +25180114 2 512 +25180168 DOWN 2 +25180168 0 512 +25180175 2 512 +25180180 DOWN 2 +25180180 0 512 +25180183 2 512 +25180269 DOWN 2 +25180269 0 512 +25180276 2 512 +25180707 DOWN 2 +25180707 0 512 +25180712 2 512 +25180718 DOWN 2 +25180718 0 512 +25180730 2 512 +25180907 DOWN 2 +25180907 0 512 +25180911 2 512 +25180916 DOWN 2 +25180916 0 512 +25180927 2 512 +25181086 DOWN 2 +25181086 0 512 +25181088 2 512 +25181094 DOWN 2 +25181094 0 512 +25181102 2 512 +25182687 DOWN 2 +25182687 0 512 +25182694 2 512 +25182785 DOWN 2 +25182785 0 512 +25188753 UP 10 +25188754 waslock = 0 +25188753 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25188782 512 16777728 +~~~ +25188784 DOWN 10 +25188784 0 16777728 +~~~ +~~~ +25188799 0 16779776 +~~~ +~~~ +25188801 0 16779264 +25188802 homeCount = 29 +25188803 waitCount = 13 +25188803 ripCount = 12 +25188804 locktype1 = 1 +25188804 locktype2 = 1 +25188805 locktype3 = 2 +25188805 goalCount = 3 +25188806 goalTotal = 3 +25188806 otherCount = 21 +~~~ +25188827 UP 10 +25188827 waslock = 0 +25188827 512 16779264 +~~~ +25188932 512 2048 +25188960 DOWN 10 +25188960 0 2048 +25188979 UP 10 +25188980 waslock = 0 +25188979 512 2048 +~~~ +~~~ +~~~ +~~~ +25188986 homeCount = 29 +25188987 waitCount = 13 +25188987 ripCount = 12 +25188988 locktype1 = 1 +25188988 locktype2 = 1 +25188989 locktype3 = 2 +25188989 goalCount = 3 +25188990 goalTotal = 3 +25188990 otherCount = 21 +~~~ +~~~ +25193421 DOWN 10 +25193421 0 2048 +~~~ +~~~ +~~~ +~~~ +25193442 homeCount = 29 +25193442 waitCount = 13 +25193443 ripCount = 12 +25193443 locktype1 = 1 +25193444 locktype2 = 1 +25193444 locktype3 = 2 +25193445 goalCount = 3 +25193445 goalTotal = 3 +25193446 otherCount = 21 +~~~ +25195698 UP 12 +25195698 2048 2048 +25198392 DOWN 12 +25198392 0 2048 +25198421 UP 12 +25198421 2048 2048 +25198445 DOWN 12 +25198445 0 2048 +25198456 UP 12 +25198456 2048 2048 +25198532 DOWN 12 +25198532 0 2048 +25198548 UP 12 +25198548 2048 2048 +25201743 DOWN 12 +25201743 0 2048 +25201782 UP 12 +25201782 2048 2048 +25203699 CLICK1 +25203699 CLICK2 +~~~ +~~~ +~~~ +25203727 2048 67110912 +~~~ +25203877 2048 2048 +25209218 DOWN 12 +25209218 0 2048 +~~~ +~~~ +25209234 0 0 +~~~ +~~~ +25209236 0 1 +~~~ +~~~ +25209238 0 3 +~~~ +~~~ +25209240 0 7 +~~~ +~~~ +25209241 0 15 +~~~ +~~~ +25209243 0 31 +~~~ +~~~ +25209245 0 63 +~~~ +~~~ +25209247 0 127 +~~~ +~~~ +25209249 0 255 +25209250 homeCount = 29 +25209250 waitCount = 14 +25209251 ripCount = 12 +25209251 locktype1 = 1 +25209252 locktype2 = 1 +25209273 locktype3 = 2 +25209273 goalCount = 3 +25209274 goalTotal = 3 +25209274 otherCount = 21 +~~~ +25209275 CURRENTGOAL IS [2] +~~~ +25209277 UP 12 +25209277 2048 255 +25209310 DOWN 12 +25209310 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25209342 homeCount = 29 +25209342 waitCount = 14 +25209343 ripCount = 12 +25209343 locktype1 = 1 +25209344 locktype2 = 1 +25209344 locktype3 = 2 +25209345 goalCount = 3 +25209345 goalTotal = 3 +25209346 otherCount = 21 +~~~ +25209347 CURRENTGOAL IS [2] +~~~ +25224023 UP 2 +25224023 2 255 +~~~ +~~~ +25224050 outer reward +~~~ +25224051 2 131327 +~~~ +~~~ +25224076 DOWN 2 +25224076 0 131327 +~~~ +~~~ +25224097 0 131326 +~~~ +~~~ +25224098 0 131324 +~~~ +~~~ +25224100 0 131320 +~~~ +~~~ +25224102 0 131312 +~~~ +~~~ +25224104 0 131296 +~~~ +~~~ +25224106 0 131264 +~~~ +~~~ +25224107 0 131200 +~~~ +~~~ +25224109 0 131072 +~~~ +~~~ +25224111 0 131584 +25224112 homeCount = 29 +25224113 waitCount = 14 +25224113 ripCount = 12 +25224134 locktype1 = 1 +25224134 locktype2 = 1 +25224135 locktype3 = 2 +25224135 goalCount = 4 +25224136 goalTotal = 4 +25224136 otherCount = 21 +~~~ +25224137 2 131584 +25224348 DOWN 2 +25224348 0 131584 +25224404 2 131584 +25224500 2 512 +25224662 DOWN 2 +25224662 0 512 +25224678 2 512 +25224773 DOWN 2 +25224773 0 512 +25224805 2 512 +25224898 DOWN 2 +25224898 0 512 +25224928 2 512 +25225017 DOWN 2 +25225017 0 512 +25225059 2 512 +25225149 DOWN 2 +25225149 0 512 +25225185 2 512 +25225285 DOWN 2 +25225285 0 512 +25225318 2 512 +25225427 DOWN 2 +25225427 0 512 +25225455 2 512 +25225579 DOWN 2 +25225579 0 512 +25225598 2 512 +25225730 DOWN 2 +25225730 0 512 +25225749 2 512 +25226040 DOWN 2 +25226040 0 512 +25226046 2 512 +25228169 DOWN 2 +25228169 0 512 +25228174 2 512 +25228345 DOWN 2 +25228345 0 512 +25228356 2 512 +25228509 DOWN 2 +25228509 0 512 +25228532 2 512 +25230264 DOWN 2 +25230264 0 512 +25230289 2 512 +25230334 DOWN 2 +25230334 0 512 +25234295 UP 10 +25234295 waslock = 0 +25234295 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25234324 512 16777728 +~~~ +25234474 512 512 +25234489 DOWN 10 +25234488 0 512 +25234502 UP 10 +25234503 waslock = 0 +25234502 512 512 +~~~ +~~~ +25234510 512 2560 +~~~ +~~~ +25234511 512 2048 +25234512 homeCount = 30 +25234513 waitCount = 14 +25234514 ripCount = 12 +25234514 locktype1 = 1 +25234515 locktype2 = 1 +25234515 locktype3 = 2 +25234516 goalCount = 4 +25234516 goalTotal = 4 +25234517 otherCount = 21 +~~~ +~~~ +25238280 DOWN 10 +25238280 0 2048 +~~~ +~~~ +~~~ +~~~ +25238301 homeCount = 30 +25238301 waitCount = 14 +25238302 ripCount = 12 +25238302 locktype1 = 1 +25238303 locktype2 = 1 +25238303 locktype3 = 2 +25238304 goalCount = 4 +25238304 goalTotal = 4 +25238305 otherCount = 21 +~~~ +25239988 UP 12 +25239988 2048 2048 +25248189 DOWN 12 +25248189 0 2048 +25248207 UP 12 +25248207 2048 2048 +25248906 DOWN 12 +25248906 0 2048 +25248913 UP 12 +25248913 2048 2048 +25248988 CLICK1 +25248988 CLICK2 +~~~ +~~~ +~~~ +25249009 2048 67110912 +~~~ +25249159 2048 2048 +25254041 DOWN 12 +25254041 0 2048 +~~~ +~~~ +25254067 0 0 +~~~ +~~~ +25254068 0 1 +~~~ +~~~ +25254070 0 3 +~~~ +~~~ +25254072 0 7 +~~~ +~~~ +25254074 0 15 +~~~ +~~~ +25254076 0 31 +~~~ +~~~ +25254077 0 63 +~~~ +~~~ +25254079 0 127 +~~~ +~~~ +25254081 0 255 +25254082 homeCount = 30 +25254083 waitCount = 15 +25254083 ripCount = 12 +25254084 locktype1 = 1 +25254084 locktype2 = 1 +25254105 locktype3 = 2 +25254106 goalCount = 4 +25254106 goalTotal = 4 +25254107 otherCount = 21 +~~~ +25254108 CURRENTGOAL IS [2] +~~~ +25254108 UP 12 +25254108 2048 255 +25254169 DOWN 12 +25254169 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25254205 homeCount = 30 +25254206 waitCount = 15 +25254206 ripCount = 12 +25254207 locktype1 = 1 +25254207 locktype2 = 1 +25254208 locktype3 = 2 +25254208 goalCount = 4 +25254209 goalTotal = 4 +25254209 otherCount = 21 +~~~ +25254211 CURRENTGOAL IS [2] +~~~ +25258239 UP 2 +25258239 2 255 +~~~ +~~~ +25258262 outer reward +~~~ +25258263 2 131327 +~~~ +~~~ +25258296 DOWN 2 +25258296 0 131327 +~~~ +~~~ +25258319 0 131326 +~~~ +~~~ +25258321 0 131324 +~~~ +~~~ +25258323 0 131320 +~~~ +~~~ +25258325 0 131312 +~~~ +~~~ +25258326 0 131296 +~~~ +~~~ +25258328 0 131264 +~~~ +~~~ +25258330 2 131200 +~~~ +~~~ +25258332 2 131072 +~~~ +~~~ +25258334 2 131584 +25258335 homeCount = 30 +25258335 waitCount = 15 +25258336 ripCount = 12 +25258357 locktype1 = 1 +25258357 locktype2 = 1 +25258358 locktype3 = 2 +25258358 goalCount = 5 +25258359 goalTotal = 5 +25258359 otherCount = 21 +~~~ +25258494 DOWN 2 +25258494 0 131584 +25258540 2 131584 +25258712 2 512 +25258902 DOWN 2 +25258902 0 512 +25258920 2 512 +25259017 DOWN 2 +25259017 0 512 +25259045 2 512 +25259135 DOWN 2 +25259135 0 512 +25259172 2 512 +25259262 DOWN 2 +25259262 0 512 +25259297 2 512 +25259389 DOWN 2 +25259389 0 512 +25259433 2 512 +25259522 DOWN 2 +25259522 0 512 +25259562 2 512 +25259655 DOWN 2 +25259655 0 512 +25259693 2 512 +25259792 DOWN 2 +25259792 0 512 +25259825 2 512 +25259938 DOWN 2 +25259938 0 512 +25259963 2 512 +25260096 DOWN 2 +25260096 0 512 +25260109 2 512 +25260255 DOWN 2 +25260255 0 512 +25260267 2 512 +25260407 DOWN 2 +25260407 0 512 +25260417 2 512 +25260562 DOWN 2 +25260562 0 512 +25260572 2 512 +25264430 DOWN 2 +25264430 0 512 +25264465 2 512 +25264520 DOWN 2 +25264520 0 512 +25268595 UP 10 +25268595 waslock = 0 +25268595 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25268618 512 16777728 +~~~ +25268768 512 512 +25268819 DOWN 10 +25268819 0 512 +25268840 UP 10 +25268840 waslock = 0 +25268839 512 512 +~~~ +~~~ +25268846 512 1536 +~~~ +~~~ +25268848 512 1024 +25268849 homeCount = 31 +25268850 waitCount = 15 +25268850 ripCount = 12 +25268851 locktype1 = 1 +25268851 locktype2 = 1 +25268852 locktype3 = 2 +25268852 goalCount = 5 +25268853 goalTotal = 5 +25268853 otherCount = 21 +~~~ +~~~ +25271996 DOWN 10 +25271996 0 1024 +~~~ +~~~ +~~~ +~~~ +25272015 homeCount = 31 +25272015 waitCount = 15 +25272016 ripCount = 12 +25272016 locktype1 = 1 +25272017 locktype2 = 1 +25272017 locktype3 = 2 +25272018 goalCount = 5 +25272018 goalTotal = 5 +25272019 otherCount = 21 +~~~ +25273511 UP 11 +25273511 1024 1024 +25275924 DOWN 11 +25275924 0 1024 +25275938 UP 11 +25275938 1024 1024 +25277719 DOWN 11 +25277719 0 1024 +25277728 UP 11 +25277728 1024 1024 +25280511 BEEP1 +25280511 BEEP2 +~~~ +~~~ +~~~ +25280536 1024 33555456 +~~~ +25280686 1024 1024 +25285951 DOWN 11 +25285951 0 1024 +~~~ +~~~ +25285973 0 0 +~~~ +~~~ +25285975 0 1 +~~~ +~~~ +25285976 0 3 +~~~ +~~~ +25285978 0 7 +~~~ +~~~ +25285980 0 15 +~~~ +~~~ +25285982 0 31 +~~~ +~~~ +25285984 0 63 +~~~ +~~~ +25285986 0 127 +~~~ +~~~ +25285987 0 255 +25285988 homeCount = 31 +25285989 waitCount = 15 +25285990 ripCount = 13 +25285990 locktype1 = 1 +25285991 locktype2 = 1 +25286011 locktype3 = 2 +25286012 goalCount = 5 +25286012 goalTotal = 5 +25286013 otherCount = 21 +~~~ +25286014 CURRENTGOAL IS [2] +~~~ +25286014 UP 11 +25286014 1024 255 +25288352 DOWN 11 +25288352 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288383 UP 11 +25288383 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288393 homeCount = 31 +25288394 waitCount = 15 +25288394 ripCount = 13 +25288395 locktype1 = 1 +25288395 locktype2 = 1 +25288396 locktype3 = 2 +25288396 goalCount = 5 +25288397 goalTotal = 5 +25288397 otherCount = 21 +~~~ +25288398 CURRENTGOAL IS [2] +~~~ +25288446 DOWN 11 +25288446 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25288484 homeCount = 31 +25288485 waitCount = 15 +25288485 ripCount = 13 +25288486 locktype1 = 1 +25288486 locktype2 = 1 +25288487 locktype3 = 2 +25288487 goalCount = 5 +25288488 goalTotal = 5 +25288488 otherCount = 21 +~~~ +25288489 CURRENTGOAL IS [2] +~~~ +25292276 UP 2 +25292276 2 255 +~~~ +~~~ +25292299 outer reward +~~~ +25292300 2 131327 +~~~ +~~~ +25292481 DOWN 2 +25292481 0 131327 +~~~ +~~~ +25292508 0 131326 +~~~ +~~~ +25292510 0 131324 +~~~ +~~~ +25292511 0 131320 +~~~ +~~~ +25292513 0 131312 +~~~ +~~~ +25292515 0 131296 +~~~ +~~~ +25292517 0 131264 +~~~ +~~~ +25292519 0 131200 +~~~ +~~~ +25292521 0 131072 +~~~ +~~~ +25292522 0 131584 +25292523 homeCount = 31 +25292524 waitCount = 15 +25292525 ripCount = 13 +25292545 locktype1 = 1 +25292546 locktype2 = 1 +25292546 locktype3 = 2 +25292547 goalCount = 6 +25292547 goalTotal = 6 +25292548 otherCount = 21 +~~~ +25292548 2 131584 +25292749 2 512 +25292894 DOWN 2 +25292894 0 512 +25292922 2 512 +25293016 DOWN 2 +25293016 0 512 +25293052 2 512 +25293153 DOWN 2 +25293153 0 512 +25293173 2 512 +25294024 DOWN 2 +25294024 0 512 +25294050 2 512 +25299590 DOWN 2 +25299590 0 512 +25303635 UP 10 +25303636 waslock = 0 +25303635 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25303667 512 16777728 +~~~ +25303817 512 512 +25307585 DOWN 10 +25307585 0 512 +~~~ +~~~ +25307608 0 1536 +~~~ +~~~ +25307610 0 1024 +25307611 homeCount = 32 +25307611 waitCount = 15 +25307612 ripCount = 13 +25307613 locktype1 = 1 +25307613 locktype2 = 1 +25307614 locktype3 = 2 +25307614 goalCount = 6 +25307615 goalTotal = 6 +25307615 otherCount = 21 +~~~ +25309251 UP 11 +25309251 1024 1024 +25311815 DOWN 11 +25311815 0 1024 +25311837 UP 11 +25311837 1024 1024 +25313752 BEEP1 +25313752 BEEP2 +~~~ +~~~ +~~~ +25313771 1024 33555456 +~~~ +25313921 1024 1024 +25318968 DOWN 11 +25318968 0 1024 +~~~ +~~~ +25318989 0 0 +~~~ +~~~ +25318991 0 1 +~~~ +~~~ +25318993 0 3 +~~~ +~~~ +25318995 0 7 +~~~ +~~~ +25318997 0 15 +~~~ +~~~ +25318998 0 31 +~~~ +~~~ +25319000 0 63 +~~~ +~~~ +25319002 0 127 +~~~ +~~~ +25319004 0 255 +25319005 homeCount = 32 +25319005 waitCount = 15 +25319006 ripCount = 14 +25319007 locktype1 = 1 +25319007 locktype2 = 1 +25319028 locktype3 = 2 +25319028 goalCount = 6 +25319029 goalTotal = 6 +25319029 otherCount = 21 +~~~ +25319031 CURRENTGOAL IS [2] +~~~ +25319045 UP 11 +25319045 1024 255 +25319211 DOWN 11 +25319211 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25319245 homeCount = 32 +25319246 waitCount = 15 +25319246 ripCount = 14 +25319247 locktype1 = 1 +25319247 locktype2 = 1 +25319248 locktype3 = 2 +25319248 goalCount = 6 +25319249 goalTotal = 6 +25319249 otherCount = 21 +~~~ +25319251 CURRENTGOAL IS [2] +~~~ +25319272 UP 11 +25319272 1024 255 +25321213 DOWN 11 +25321213 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25321245 homeCount = 32 +25321246 waitCount = 15 +25321246 ripCount = 14 +25321247 locktype1 = 1 +25321247 locktype2 = 1 +25321248 locktype3 = 2 +25321248 goalCount = 6 +25321249 goalTotal = 6 +25321249 otherCount = 21 +~~~ +25321250 CURRENTGOAL IS [2] +~~~ +25324835 UP 2 +25324835 2 255 +~~~ +~~~ +25324860 outer reward +~~~ +25324861 2 131327 +~~~ +~~~ +25325077 DOWN 2 +25325077 0 131327 +~~~ +~~~ +25325099 0 131326 +~~~ +~~~ +25325101 0 131324 +~~~ +~~~ +25325103 0 131320 +~~~ +~~~ +25325105 0 131312 +~~~ +~~~ +25325106 0 131296 +~~~ +~~~ +25325108 0 131264 +~~~ +~~~ +25325110 0 131200 +~~~ +~~~ +25325112 0 131072 +~~~ +~~~ +25325114 0 131584 +25325115 homeCount = 32 +25325115 waitCount = 15 +25325116 ripCount = 14 +25325136 locktype1 = 1 +25325137 locktype2 = 1 +25325137 locktype3 = 2 +25325138 goalCount = 7 +25325138 goalTotal = 7 +25325139 otherCount = 21 +~~~ +25325141 2 131584 +25325310 2 512 +25325492 DOWN 2 +25325492 0 512 +25325540 2 512 +25325616 DOWN 2 +25325616 0 512 +25325662 2 512 +25325755 DOWN 2 +25325754 0 512 +25325776 2 512 +25326611 DOWN 2 +25326611 0 512 +25326629 2 512 +25329406 DOWN 2 +25329406 0 512 +25329419 2 512 +25329757 DOWN 2 +25329757 0 512 +25329760 2 512 +25329762 DOWN 2 +25329762 0 512 +25329781 2 512 +25329935 DOWN 2 +25329935 0 512 +25329937 2 512 +25329945 DOWN 2 +25329945 0 512 +25329953 2 512 +25331774 DOWN 2 +25331774 0 512 +25331786 2 512 +25331865 DOWN 2 +25331865 0 512 +25335687 UP 10 +25335687 waslock = 0 +25335687 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25335716 512 16777728 +~~~ +25335866 512 512 +25339372 DOWN 10 +25339372 0 512 +~~~ +~~~ +25339390 0 1536 +~~~ +~~~ +25339392 0 1024 +25339393 homeCount = 33 +25339394 waitCount = 15 +25339394 ripCount = 14 +25339395 locktype1 = 1 +25339395 locktype2 = 1 +25339396 locktype3 = 2 +25339396 goalCount = 7 +25339397 goalTotal = 7 +25339397 otherCount = 21 +~~~ +25339425 UP 10 +25339425 waslock = 0 +25339425 512 1024 +25339438 DOWN 10 +25339438 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25339466 homeCount = 33 +25339466 waitCount = 15 +25339467 ripCount = 14 +25339467 locktype1 = 1 +25339468 locktype2 = 1 +25339468 locktype3 = 2 +25339469 goalCount = 7 +25339469 goalTotal = 7 +25339470 otherCount = 21 +~~~ +25341420 UP 11 +25341420 1024 1024 +25341496 DOWN 11 +25341496 0 1024 +25341560 UP 11 +25341560 1024 1024 +25343328 DOWN 11 +25343328 0 1024 +25343349 UP 11 +25343349 1024 1024 +25349420 BEEP1 +25349420 BEEP2 +~~~ +~~~ +~~~ +25349444 1024 33555456 +~~~ +25349594 1024 1024 +25355080 DOWN 11 +25355080 0 1024 +~~~ +~~~ +25355104 0 0 +~~~ +~~~ +25355105 0 1 +~~~ +~~~ +25355107 0 3 +~~~ +25355109 UP 11 +25355108 1024 3 +~~~ +~~~ +25355110 1024 7 +~~~ +~~~ +25355112 1024 15 +~~~ +~~~ +25355114 1024 31 +~~~ +25355115 1024 63 +~~~ +~~~ +25355116 1024 127 +~~~ +~~~ +25355118 1024 255 +25355119 homeCount = 33 +25355140 waitCount = 15 +25355141 ripCount = 15 +25355141 locktype1 = 1 +25355142 locktype2 = 1 +25355142 locktype3 = 2 +25355143 goalCount = 7 +25355143 goalTotal = 7 +25355144 otherCount = 21 +~~~ +25355145 CURRENTGOAL IS [2] +~~~ +25357469 DOWN 11 +25357469 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25357509 homeCount = 33 +25357510 waitCount = 15 +25357510 ripCount = 15 +25357511 locktype1 = 1 +25357511 locktype2 = 1 +25357512 locktype3 = 2 +25357512 goalCount = 7 +25357513 goalTotal = 7 +25357513 otherCount = 21 +~~~ +25357514 CURRENTGOAL IS [2] +~~~ +25361464 UP 2 +25361464 2 255 +~~~ +~~~ +25361487 outer reward +~~~ +25361487 2 131327 +~~~ +~~~ +25361745 DOWN 2 +25361745 0 131327 +~~~ +~~~ +25361763 0 131326 +~~~ +~~~ +25361765 0 131324 +~~~ +~~~ +25361766 0 131320 +~~~ +~~~ +25361768 0 131312 +~~~ +~~~ +25361770 0 131296 +~~~ +~~~ +25361772 0 131264 +~~~ +~~~ +25361774 0 131200 +~~~ +~~~ +25361776 0 131072 +~~~ +~~~ +25361778 0 131584 +25361779 homeCount = 33 +25361779 waitCount = 15 +25361780 ripCount = 15 +25361800 locktype1 = 1 +25361801 locktype2 = 1 +25361801 locktype3 = 2 +25361802 goalCount = 8 +25361802 goalTotal = 8 +25361803 otherCount = 21 +~~~ +25361803 2 131584 +25361937 2 512 +25362139 DOWN 2 +25362139 0 512 +25362176 2 512 +25362263 DOWN 2 +25362263 0 512 +25362291 2 512 +25362386 DOWN 2 +25362386 0 512 +25362422 2 512 +25362510 DOWN 2 +25362510 0 512 +25362553 2 512 +25362641 DOWN 2 +25362641 0 512 +25362682 2 512 +25362795 DOWN 2 +25362795 0 512 +25362813 2 512 +25362939 DOWN 2 +25362939 0 512 +25362959 2 512 +25363093 DOWN 2 +25363093 0 512 +25363099 2 512 +25363241 DOWN 2 +25363241 0 512 +25363246 2 512 +25363391 DOWN 2 +25363391 0 512 +25363399 2 512 +25366031 DOWN 2 +25366031 0 512 +25366037 2 512 +25366210 DOWN 2 +25366210 0 512 +25366218 2 512 +25368328 DOWN 2 +25368328 0 512 +25368391 2 512 +25368427 DOWN 2 +25368427 0 512 +25371877 UP 10 +25371877 waslock = 0 +25371877 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25371903 512 16777728 +~~~ +25372053 512 512 +25379887 DOWN 10 +25379887 0 512 +~~~ +~~~ +25379906 0 1536 +~~~ +~~~ +25379908 0 1024 +25379909 homeCount = 34 +25379909 waitCount = 15 +25379910 ripCount = 15 +25379910 locktype1 = 1 +25379911 locktype2 = 1 +25379911 locktype3 = 2 +25379912 goalCount = 8 +25379912 goalTotal = 8 +25379913 otherCount = 21 +~~~ +25379964 UP 10 +25379964 waslock = 0 +25379964 512 1024 +~~~ +25380013 DOWN 10 +25380013 0 1024 +~~~ +~~~ +~~~ +~~~ +25380044 homeCount = 34 +25380044 waitCount = 15 +25380045 ripCount = 15 +25380045 locktype1 = 1 +25380046 locktype2 = 1 +25380046 locktype3 = 2 +25380047 goalCount = 8 +25380047 goalTotal = 8 +25380048 otherCount = 21 +~~~ +25381643 UP 10 +25381644 waslock = 0 +25381643 512 1024 +25381658 DOWN 10 +25381658 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25381684 homeCount = 34 +25381685 waitCount = 15 +25381685 ripCount = 15 +25381686 locktype1 = 1 +25381686 locktype2 = 1 +25381687 locktype3 = 2 +25381687 goalCount = 8 +25381688 goalTotal = 8 +25381688 otherCount = 21 +~~~ +25383621 UP 11 +25383621 1024 1024 +25388121 BEEP1 +25388121 BEEP2 +~~~ +~~~ +~~~ +25388149 1024 33555456 +~~~ +25388299 1024 1024 +25394043 DOWN 11 +25394043 0 1024 +~~~ +~~~ +25394066 0 0 +~~~ +~~~ +25394068 0 1 +~~~ +~~~ +25394070 0 3 +~~~ +~~~ +25394072 0 7 +~~~ +~~~ +25394074 UP 11 +25394073 1024 15 +~~~ +~~~ +25394076 1024 31 +~~~ +~~~ +25394077 1024 63 +~~~ +~~~ +25394079 1024 127 +~~~ +~~~ +25394081 1024 255 +25394082 homeCount = 34 +25394082 waitCount = 15 +25394083 ripCount = 16 +25394104 locktype1 = 1 +25394104 locktype2 = 1 +25394105 locktype3 = 2 +25394105 goalCount = 8 +25394106 goalTotal = 8 +25394106 otherCount = 21 +~~~ +25394108 CURRENTGOAL IS [2] +~~~ +25394133 DOWN 11 +25394133 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25394169 homeCount = 34 +25394170 waitCount = 15 +25394170 ripCount = 16 +25394171 locktype1 = 1 +25394171 locktype2 = 1 +25394172 locktype3 = 2 +25394172 goalCount = 8 +25394173 goalTotal = 8 +25394173 otherCount = 21 +~~~ +25394174 CURRENTGOAL IS [2] +~~~ +25394253 UP 11 +25394253 1024 255 +25394289 DOWN 11 +25394289 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25394325 homeCount = 34 +25394325 waitCount = 15 +25394326 ripCount = 16 +25394326 locktype1 = 1 +25394327 locktype2 = 1 +25394327 locktype3 = 2 +25394328 goalCount = 8 +25394328 goalTotal = 8 +25394329 otherCount = 21 +~~~ +25394330 CURRENTGOAL IS [2] +~~~ +25394940 UP 11 +25394940 1024 255 +25394971 DOWN 11 +25394971 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25395007 UP 11 +25395007 1024 255 +25395008 homeCount = 34 +25395009 waitCount = 15 +25395009 ripCount = 16 +25395010 locktype1 = 1 +25395010 locktype2 = 1 +25395011 locktype3 = 2 +25395011 goalCount = 8 +25395012 goalTotal = 8 +25395012 otherCount = 21 +~~~ +25395034 CURRENTGOAL IS [2] +~~~ +25398455 DOWN 11 +25398455 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25398496 homeCount = 34 +25398496 waitCount = 15 +25398497 ripCount = 16 +25398497 locktype1 = 1 +25398498 locktype2 = 1 +25398498 locktype3 = 2 +25398499 goalCount = 8 +25398499 goalTotal = 8 +25398500 otherCount = 21 +~~~ +25398501 CURRENTGOAL IS [2] +~~~ +25411077 UP 8 +25411077 128 255 +~~~ +~~~ +25411117 DOWN 8 +25411117 0 255 +~~~ +~~~ +25411143 0 254 +~~~ +~~~ +25411145 0 252 +~~~ +~~~ +25411147 0 248 +~~~ +~~~ +25411149 0 240 +~~~ +~~~ +25411151 0 224 +~~~ +~~~ +25411152 0 192 +~~~ +~~~ +25411154 0 128 +~~~ +~~~ +25411156 0 0 +~~~ +~~~ +25411158 0 512 +25411159 homeCount = 34 +25411160 waitCount = 15 +25411160 ripCount = 16 +25411161 locktype1 = 1 +25411161 locktype2 = 1 +25411182 locktype3 = 2 +25411182 goalCount = 8 +25411183 goalTotal = 8 +25411183 otherCount = 22 +~~~ +25411186 128 512 +25411487 DOWN 8 +25411487 0 512 +25415389 UP 10 +25415390 waslock = 0 +25415389 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25415415 512 16777728 +~~~ +25415564 DOWN 10 +25415564 0 16777728 +25415565 0 512 +~~~ +~~~ +25415591 0 1536 +~~~ +~~~ +25415593 0 1024 +25415594 homeCount = 35 +25415595 waitCount = 15 +25415595 ripCount = 16 +25415596 locktype1 = 1 +25415596 locktype2 = 1 +25415597 locktype3 = 2 +25415597 goalCount = 8 +25415598 goalTotal = 8 +25415598 otherCount = 22 +~~~ +25415732 UP 10 +25415732 waslock = 0 +25415732 512 1024 +~~~ +25421067 DOWN 10 +25421067 0 1024 +~~~ +~~~ +~~~ +~~~ +25421092 homeCount = 35 +25421093 waitCount = 15 +25421093 ripCount = 16 +25421094 locktype1 = 1 +25421094 locktype2 = 1 +25421095 locktype3 = 2 +25421095 goalCount = 8 +25421096 goalTotal = 8 +25421096 otherCount = 22 +~~~ +25421137 UP 10 +25421137 waslock = 0 +25421137 512 1024 +25421143 DOWN 10 +25421143 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +25421169 homeCount = 35 +25421169 waitCount = 15 +25421170 ripCount = 16 +25421170 locktype1 = 1 +25421171 locktype2 = 1 +25421171 locktype3 = 2 +25421172 goalCount = 8 +25421172 goalTotal = 8 +25421173 otherCount = 22 +~~~ +25424199 UP 11 +25424199 1024 1024 +25431199 BEEP1 +25431199 BEEP2 +~~~ +~~~ +~~~ +25431220 1024 33555456 +~~~ +25431370 1024 1024 +25436615 DOWN 11 +25436615 0 1024 +~~~ +~~~ +25436639 0 0 +~~~ +~~~ +25436641 0 1 +~~~ +~~~ +25436643 0 3 +~~~ +~~~ +25436645 0 7 +~~~ +~~~ +25436646 0 15 +~~~ +25436648 UP 11 +25436648 1024 15 +~~~ +~~~ +25436650 1024 31 +~~~ +~~~ +25436651 1024 63 +~~~ +~~~ +25436653 1024 127 +~~~ +25436654 1024 255 +25436655 homeCount = 35 +25436656 waitCount = 15 +25436677 ripCount = 17 +25436677 locktype1 = 1 +25436678 locktype2 = 1 +25436678 locktype3 = 2 +25436679 goalCount = 8 +25436679 goalTotal = 8 +25436680 otherCount = 22 +~~~ +25436681 CURRENTGOAL IS [2] +~~~ +25436836 DOWN 11 +25436836 0 255 +25436857 UP 11 +25436857 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25436874 homeCount = 35 +25436875 waitCount = 15 +25436875 ripCount = 17 +25436876 locktype1 = 1 +25436876 locktype2 = 1 +25436877 locktype3 = 2 +25436877 goalCount = 8 +25436878 goalTotal = 8 +25436878 otherCount = 22 +~~~ +25436880 CURRENTGOAL IS [2] +~~~ +25436901 DOWN 11 +25436901 0 255 +25436910 UP 11 +25436910 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25436946 homeCount = 35 +25436947 waitCount = 15 +25436947 ripCount = 17 +25436948 locktype1 = 1 +25436948 locktype2 = 1 +25436949 locktype3 = 2 +25436949 goalCount = 8 +25436950 goalTotal = 8 +25436950 otherCount = 22 +~~~ +25436951 CURRENTGOAL IS [2] +~~~ +25438811 DOWN 11 +25438811 0 255 +25438829 UP 11 +25438829 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25438864 homeCount = 35 +25438864 waitCount = 15 +25438865 ripCount = 17 +25438866 locktype1 = 1 +25438866 locktype2 = 1 +25438867 locktype3 = 2 +25438867 goalCount = 8 +25438868 goalTotal = 8 +25438868 otherCount = 22 +~~~ +25438869 CURRENTGOAL IS [2] +~~~ +25438892 DOWN 11 +25438892 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25438927 homeCount = 35 +25438927 waitCount = 15 +25438928 ripCount = 17 +25438928 locktype1 = 1 +25438929 locktype2 = 1 +25438929 locktype3 = 2 +25438930 goalCount = 8 +25438930 goalTotal = 8 +25438931 otherCount = 22 +~~~ +25438932 CURRENTGOAL IS [2] +~~~ +25443046 UP 2 +25443046 2 255 +~~~ +~~~ +25443074 outer reward +~~~ +25443075 2 131327 +~~~ +~~~ +25443261 DOWN 2 +25443261 0 131327 +~~~ +~~~ +25443281 0 131326 +~~~ +~~~ +25443283 0 131324 +~~~ +~~~ +25443285 0 131320 +~~~ +~~~ +25443287 0 131312 +~~~ +~~~ +25443288 0 131296 +~~~ +~~~ +25443290 0 131264 +~~~ +~~~ +25443292 0 131200 +~~~ +~~~ +25443294 0 131072 +~~~ +~~~ +25443296 0 131584 +25443297 homeCount = 35 +25443297 waitCount = 15 +25443298 ripCount = 17 +25443319 locktype1 = 1 +25443319 locktype2 = 1 +25443320 locktype3 = 2 +25443320 goalCount = 9 +25443321 goalTotal = 9 +25443321 otherCount = 22 +~~~ +25443322 2 131584 +25443524 2 512 +25443802 DOWN 2 +25443802 0 512 +25443828 2 512 +25443922 DOWN 2 +25443922 0 512 +25443955 2 512 +25444050 DOWN 2 +25444050 0 512 +25444072 2 512 +25444174 DOWN 2 +25444174 0 512 +25444198 2 512 +25444307 DOWN 2 +25444307 0 512 +25444329 2 512 +25444444 DOWN 2 +25444444 0 512 +25444465 2 512 +25444596 DOWN 2 +25444596 0 512 +25444605 2 512 +25445036 DOWN 2 +25445036 0 512 +25445047 2 512 +25448195 DOWN 2 +25448195 0 512 +25448235 2 512 +25450273 DOWN 2 +25450273 0 512 +25450339 2 512 +25450371 DOWN 2 +25450371 0 512 +25454316 UP 10 +25454317 waslock = 0 +25454316 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25454349 512 16777728 +~~~ +25454499 512 512 +25457148 DOWN 10 +25457148 0 512 +~~~ +~~~ +25457174 0 2560 +~~~ +~~~ +25457176 0 2048 +25457177 homeCount = 36 +25457178 waitCount = 15 +25457178 ripCount = 17 +25457179 locktype1 = 1 +25457179 locktype2 = 1 +25457180 locktype3 = 2 +25457180 goalCount = 9 +25457181 goalTotal = 9 +25457181 otherCount = 22 +~~~ +25459795 UP 12 +25459795 2048 2048 +25463795 CLICK1 +25463795 CLICK2 +~~~ +~~~ +~~~ +25463815 2048 67110912 +~~~ +25463965 2048 2048 +25469814 DOWN 12 +25469814 0 2048 +~~~ +~~~ +25469833 0 0 +~~~ +~~~ +25469835 0 1 +~~~ +~~~ +25469837 0 3 +~~~ +~~~ +25469838 0 7 +~~~ +~~~ +25469840 0 15 +~~~ +~~~ +25469842 0 31 +~~~ +~~~ +25469844 0 63 +~~~ +~~~ +25469846 0 127 +~~~ +~~~ +25469848 0 255 +25469849 homeCount = 36 +25469849 waitCount = 16 +25469850 ripCount = 17 +25469850 locktype1 = 1 +25469851 locktype2 = 1 +25469872 locktype3 = 2 +25469872 goalCount = 9 +25469873 goalTotal = 9 +25469873 otherCount = 22 +~~~ +25469874 CURRENTGOAL IS [2] +~~~ +25469921 UP 12 +25469921 2048 255 +25469955 DOWN 12 +25469955 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25469988 homeCount = 36 +25469989 waitCount = 16 +25469990 ripCount = 17 +25469990 locktype1 = 1 +25469991 locktype2 = 1 +25469991 locktype3 = 2 +25469992 goalCount = 9 +25469992 goalTotal = 9 +25469993 otherCount = 22 +~~~ +25469994 CURRENTGOAL IS [2] +~~~ +25470055 UP 12 +25470055 2048 255 +25471638 DOWN 12 +25471638 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25471678 homeCount = 36 +25471679 waitCount = 16 +25471680 ripCount = 17 +25471680 locktype1 = 1 +25471681 locktype2 = 1 +25471681 locktype3 = 2 +25471682 goalCount = 9 +25471682 goalTotal = 9 +25471683 otherCount = 22 +~~~ +25471684 CURRENTGOAL IS [2] +~~~ +25474558 UP 2 +25474558 2 255 +~~~ +~~~ +25474587 outer reward +~~~ +25474588 2 131327 +~~~ +~~~ +25474593 outerreps = 7 +~~~ +~~~ +25474839 DOWN 2 +25474839 0 131327 +~~~ +~~~ +25474864 0 131326 +~~~ +~~~ +25474866 0 131324 +~~~ +~~~ +25474868 0 131320 +~~~ +~~~ +25474869 0 131312 +~~~ +~~~ +25474871 0 131296 +~~~ +~~~ +25474873 0 131264 +~~~ +~~~ +25474875 0 131200 +~~~ +~~~ +25474877 0 131072 +~~~ +~~~ +25474879 0 131584 +25474880 homeCount = 36 +25474880 waitCount = 16 +25474881 ripCount = 17 +25474901 locktype1 = 1 +25474902 locktype2 = 1 +25474902 locktype3 = 2 +25474903 goalCount = 0 +25474903 goalTotal = 10 +25474904 otherCount = 22 +~~~ +25474904 2 131584 +25475037 2 512 +25475141 DOWN 2 +25475141 0 512 +25475149 2 512 +25475254 DOWN 2 +25475254 0 512 +25475276 2 512 +25475378 DOWN 2 +25475378 0 512 +25475399 2 512 +25475501 DOWN 2 +25475501 0 512 +25475524 2 512 +25475623 DOWN 2 +25475623 0 512 +25475660 2 512 +25480617 DOWN 2 +25480617 0 512 +25480646 2 512 +25480707 DOWN 2 +25480707 0 512 +25484920 UP 10 +25484920 waslock = 0 +25484920 512 512 +~~~ +~~~ +~~~ +25484949 DOWN 10 +25484949 0 512 +~~~ +~~~ +25484951 0 16777728 +~~~ +~~~ +~~~ +25484971 0 16779776 +~~~ +~~~ +25484973 0 16779264 +25484974 homeCount = 37 +25484974 waitCount = 16 +25484975 ripCount = 17 +25484975 locktype1 = 1 +25484976 locktype2 = 1 +25484976 locktype3 = 2 +25484977 goalCount = 0 +25484977 goalTotal = 10 +25484978 otherCount = 22 +~~~ +25484999 UP 10 +25484999 waslock = 0 +25484999 512 16779264 +~~~ +25485101 DOWN 10 +25485101 0 16779264 +25485102 0 2048 +~~~ +~~~ +~~~ +25485124 UP 10 +25485125 waslock = 0 +25485124 512 2048 +~~~ +25485126 homeCount = 37 +25485127 waitCount = 16 +25485127 ripCount = 17 +25485128 locktype1 = 1 +25485128 locktype2 = 1 +25485129 locktype3 = 2 +25485129 goalCount = 0 +25485130 goalTotal = 10 +25485151 otherCount = 22 +~~~ +~~~ +25490231 DOWN 10 +25490231 0 2048 +~~~ +~~~ +~~~ +~~~ +25490257 homeCount = 37 +25490257 waitCount = 16 +25490258 ripCount = 17 +25490258 locktype1 = 1 +25490259 locktype2 = 1 +25490259 locktype3 = 2 +25490260 goalCount = 0 +25490260 goalTotal = 10 +25490261 otherCount = 22 +~~~ +25492166 UP 12 +25492166 2048 2048 +25496488 DOWN 12 +25496488 0 2048 +25496519 UP 12 +25496519 2048 2048 +25498167 CLICK1 +25498167 CLICK2 +~~~ +~~~ +~~~ +25498195 2048 67110912 +~~~ +25498345 2048 2048 +25504762 DOWN 12 +25504762 0 2048 +~~~ +~~~ +25504784 0 0 +~~~ +~~~ +25504786 0 1 +~~~ +~~~ +25504788 0 3 +~~~ +~~~ +25504790 0 7 +~~~ +~~~ +25504791 0 15 +~~~ +~~~ +25504793 0 31 +~~~ +~~~ +25504795 0 63 +~~~ +~~~ +25504797 0 127 +~~~ +~~~ +25504799 0 255 +25504800 homeCount = 37 +25504800 waitCount = 17 +25504801 ripCount = 17 +25504801 locktype1 = 1 +25504802 locktype2 = 1 +25504823 locktype3 = 2 +25504823 goalCount = 0 +25504824 goalTotal = 10 +25504824 otherCount = 22 +~~~ +25504825 CURRENTGOAL IS [3] +~~~ +25504829 UP 12 +25504829 2048 255 +25504904 DOWN 12 +25504904 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25504941 homeCount = 37 +25504941 waitCount = 17 +25504942 ripCount = 17 +25504942 locktype1 = 1 +25504943 locktype2 = 1 +25504943 locktype3 = 2 +25504944 goalCount = 0 +25504944 goalTotal = 10 +25504945 otherCount = 22 +~~~ +25504946 CURRENTGOAL IS [3] +~~~ +25504979 UP 12 +25504979 2048 255 +25505014 DOWN 12 +25505014 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25505051 homeCount = 37 +25505051 waitCount = 17 +25505052 ripCount = 17 +25505052 locktype1 = 1 +25505053 locktype2 = 1 +25505053 locktype3 = 2 +25505054 goalCount = 0 +25505054 goalTotal = 10 +25505055 otherCount = 22 +~~~ +25505056 CURRENTGOAL IS [3] +~~~ +25505126 UP 12 +25505126 2048 255 +25505144 DOWN 12 +25505144 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25505183 homeCount = 37 +25505184 waitCount = 17 +25505184 ripCount = 17 +25505185 locktype1 = 1 +25505186 locktype2 = 1 +25505186 locktype3 = 2 +25505187 goalCount = 0 +25505187 goalTotal = 10 +25505188 otherCount = 22 +~~~ +25505189 CURRENTGOAL IS [3] +~~~ +25505306 UP 12 +25505306 2048 255 +25506646 DOWN 12 +25506646 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25506682 homeCount = 37 +25506683 waitCount = 17 +25506683 ripCount = 17 +25506684 locktype1 = 1 +25506684 locktype2 = 1 +25506685 locktype3 = 2 +25506685 goalCount = 0 +25506686 goalTotal = 10 +25506686 otherCount = 22 +~~~ +25506687 CURRENTGOAL IS [3] +~~~ +25509308 UP 2 +25509308 2 255 +25509319 DOWN 2 +25509319 0 255 +~~~ +~~~ +~~~ +~~~ +25509347 0 254 +~~~ +~~~ +25509349 0 252 +~~~ +~~~ +25509351 0 248 +~~~ +~~~ +25509353 0 240 +~~~ +~~~ +25509354 0 224 +~~~ +~~~ +25509356 0 192 +~~~ +~~~ +25509358 0 128 +~~~ +~~~ +25509360 0 0 +~~~ +~~~ +25509362 0 512 +25509363 homeCount = 37 +25509363 waitCount = 17 +25509364 ripCount = 17 +25509364 locktype1 = 1 +25509386 locktype2 = 1 +25509386 locktype3 = 2 +25509387 goalCount = 0 +25509387 goalTotal = 10 +25509388 otherCount = 23 +~~~ +25509398 2 512 +25509552 DOWN 2 +25509552 0 512 +25509607 2 512 +25510174 DOWN 2 +25510174 0 512 +25513834 UP 10 +25513835 waslock = 0 +25513834 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25513865 512 16777728 +~~~ +25514015 512 512 +25517951 DOWN 10 +25517951 0 512 +~~~ +~~~ +25517967 0 1536 +~~~ +~~~ +25517969 0 1024 +25517970 homeCount = 38 +25517971 waitCount = 17 +25517971 ripCount = 17 +25517972 locktype1 = 1 +25517972 locktype2 = 1 +25517973 locktype3 = 2 +25517973 goalCount = 0 +25517974 goalTotal = 10 +25517974 otherCount = 23 +~~~ +25520064 UP 11 +25520064 1024 1024 +25521046 DOWN 11 +25521046 0 1024 +25521134 UP 11 +25521134 1024 1024 +25521986 DOWN 11 +25521986 0 1024 +25522013 UP 11 +25522013 1024 1024 +25527064 BEEP1 +25527064 BEEP2 +~~~ +~~~ +~~~ +25527092 1024 33555456 +~~~ +25527242 1024 1024 +25534001 DOWN 11 +25534001 0 1024 +~~~ +~~~ +25534020 0 0 +~~~ +~~~ +25534021 0 1 +~~~ +~~~ +25534023 0 3 +~~~ +~~~ +25534025 0 7 +~~~ +~~~ +25534027 0 15 +~~~ +~~~ +25534029 0 31 +~~~ +~~~ +25534030 0 63 +~~~ +~~~ +25534032 0 127 +~~~ +~~~ +25534034 0 255 +25534035 homeCount = 38 +25534036 waitCount = 17 +25534036 ripCount = 18 +25534037 locktype1 = 1 +25534037 locktype2 = 1 +25534058 locktype3 = 2 +25534059 goalCount = 0 +25534059 goalTotal = 10 +25534060 otherCount = 23 +~~~ +25534061 CURRENTGOAL IS [3] +~~~ +25536586 UP 6 +25536586 32 255 +~~~ +~~~ +25537282 DOWN 6 +25537282 0 255 +~~~ +~~~ +25537299 0 254 +~~~ +~~~ +25537301 0 252 +~~~ +~~~ +25537303 0 248 +~~~ +~~~ +25537305 0 240 +~~~ +~~~ +25537307 0 224 +~~~ +~~~ +25537308 0 192 +~~~ +~~~ +25537310 0 128 +~~~ +~~~ +25537312 0 0 +~~~ +~~~ +25537314 0 512 +25537315 homeCount = 38 +25537316 waitCount = 17 +25537316 ripCount = 18 +25537317 locktype1 = 1 +25537338 locktype2 = 1 +25537338 locktype3 = 2 +25537339 goalCount = 0 +25537339 goalTotal = 10 +25537340 otherCount = 24 +~~~ +25542032 UP 10 +25542033 waslock = 0 +25542032 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25542057 512 16777728 +~~~ +25542207 512 512 +25542256 DOWN 10 +25542256 0 512 +25542264 UP 10 +25542265 waslock = 0 +25542264 512 512 +~~~ +~~~ +25542284 512 1536 +~~~ +~~~ +25542286 512 1024 +25542287 homeCount = 39 +25542287 waitCount = 17 +25542288 ripCount = 18 +25542288 locktype1 = 1 +25542289 locktype2 = 1 +25542289 locktype3 = 2 +25542290 goalCount = 0 +25542290 goalTotal = 10 +25542291 otherCount = 24 +~~~ +~~~ +25545602 DOWN 10 +25545602 0 1024 +~~~ +~~~ +~~~ +~~~ +25545626 homeCount = 39 +25545626 waitCount = 17 +25545627 ripCount = 18 +25545627 locktype1 = 1 +25545628 locktype2 = 1 +25545628 locktype3 = 2 +25545629 goalCount = 0 +25545629 goalTotal = 10 +25545630 otherCount = 24 +~~~ +25545632 UP 10 +25545632 waslock = 0 +25545632 512 1024 +~~~ +25545696 DOWN 10 +25545696 0 1024 +~~~ +~~~ +~~~ +~~~ +25545720 homeCount = 39 +25545721 waitCount = 17 +25545721 ripCount = 18 +25545722 locktype1 = 1 +25545722 locktype2 = 1 +25545723 locktype3 = 2 +25545723 goalCount = 0 +25545724 goalTotal = 10 +25545724 otherCount = 24 +~~~ +25549079 UP 11 +25549079 1024 1024 +25549392 DOWN 11 +25549392 0 1024 +25549592 LOCKOUT 3 +~~~ +25549617 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +25549620 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25549678 UP 11 +25549678 1024 0 +25549870 DOWN 11 +25549870 0 0 +25557733 UP 1 +25557733 1 0 +25558031 DOWN 1 +25558031 0 0 +25560934 1 0 +25560938 DOWN 1 +25560938 0 0 +25569322 512 0 +25569441 0 0 +25571157 512 0 +25571190 0 0 +25574617 LOCKEND +~~~ +~~~ +~~~ +25574638 0 512 +25577445 UP 3 +25577445 4 512 +25577923 DOWN 3 +25577923 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25577963 homeCount = 39 +25577963 waitCount = 17 +25577964 ripCount = 18 +25577964 locktype1 = 1 +25577965 locktype2 = 1 +25577965 locktype3 = 3 +25577966 goalCount = 0 +25577966 goalTotal = 10 +25577967 otherCount = 24 +~~~ +25578067 4 512 +25578092 DOWN 3 +25578092 0 512 +25585413 UP 10 +25585413 waslock = 0 +25585413 512 512 +~~~ +~~~ +25585438 DOWN 10 +25585438 0 512 +~~~ +~~~ +~~~ +25585443 0 16777728 +~~~ +~~~ +~~~ +25585465 0 16778752 +~~~ +~~~ +25585467 0 16778240 +25585468 homeCount = 40 +25585468 waitCount = 17 +25585469 ripCount = 18 +25585469 locktype1 = 1 +25585470 locktype2 = 1 +25585470 locktype3 = 3 +25585471 goalCount = 0 +25585471 goalTotal = 10 +25585472 otherCount = 24 +~~~ +25585592 0 1024 +25585685 UP 10 +25585686 waslock = 0 +25585685 512 1024 +~~~ +25590182 DOWN 10 +25590182 0 1024 +~~~ +~~~ +~~~ +~~~ +25590209 homeCount = 40 +25590210 waitCount = 17 +25590210 ripCount = 18 +25590211 locktype1 = 1 +25590211 locktype2 = 1 +25590212 locktype3 = 3 +25590212 goalCount = 0 +25590213 goalTotal = 10 +25590213 otherCount = 24 +~~~ +25609245 UP 8 +25609245 128 1024 +25609250 DOWN 8 +25609250 0 1024 +~~~ +25609266 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +25609270 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25615729 128 0 +25617512 DOWN 8 +25617512 0 0 +25618844 128 0 +25619296 DOWN 8 +25619296 0 0 +25625955 512 0 +25626331 0 0 +25626436 512 0 +25626571 0 0 +25626586 512 0 +25626882 0 0 +25627022 512 0 +25627063 0 0 +25627287 512 0 +25627295 0 0 +25627379 512 0 +25627437 0 0 +25630940 512 0 +25631248 0 0 +25634266 LOCKEND +~~~ +~~~ +~~~ +25634286 0 512 +25659806 UP 10 +25659806 waslock = 0 +25659806 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25659833 512 16777728 +~~~ +25659979 DOWN 10 +25659979 0 16777728 +25659983 0 512 +~~~ +~~~ +25660007 0 2560 +~~~ +~~~ +25660009 0 2048 +25660010 homeCount = 41 +25660010 waitCount = 17 +25660011 ripCount = 18 +25660011 locktype1 = 1 +25660012 locktype2 = 2 +25660012 locktype3 = 3 +25660013 goalCount = 0 +25660013 goalTotal = 10 +25660014 otherCount = 24 +~~~ +25660095 UP 10 +25660096 waslock = 0 +25660095 512 2048 +~~~ +25660160 DOWN 10 +25660160 0 2048 +~~~ +~~~ +~~~ +~~~ +25660189 homeCount = 41 +25660190 waitCount = 17 +25660190 ripCount = 18 +25660191 locktype1 = 1 +25660191 locktype2 = 2 +25660192 locktype3 = 3 +25660192 goalCount = 0 +25660193 goalTotal = 10 +25660193 otherCount = 24 +~~~ +25660261 UP 10 +25660261 waslock = 0 +25660261 512 2048 +~~~ +25660934 DOWN 10 +25660934 0 2048 +25660947 UP 10 +25660947 waslock = 0 +25660947 512 2048 +~~~ +~~~ +~~~ +~~~ +25660969 homeCount = 41 +25660970 waitCount = 17 +25660970 ripCount = 18 +25660971 locktype1 = 1 +25660971 locktype2 = 2 +25660972 locktype3 = 3 +25660972 goalCount = 0 +25660973 goalTotal = 10 +25660973 otherCount = 24 +~~~ +~~~ +25666236 DOWN 10 +25666236 0 2048 +~~~ +~~~ +~~~ +~~~ +25666259 homeCount = 41 +25666259 waitCount = 17 +25666260 ripCount = 18 +25666260 locktype1 = 1 +25666261 locktype2 = 2 +25666261 locktype3 = 3 +25666262 goalCount = 0 +25666262 goalTotal = 10 +25666263 otherCount = 24 +~~~ +25666276 UP 10 +25666277 waslock = 0 +25666276 512 2048 +~~~ +25666339 DOWN 10 +25666339 0 2048 +~~~ +~~~ +~~~ +~~~ +25666369 homeCount = 41 +25666370 waitCount = 17 +25666370 ripCount = 18 +25666371 locktype1 = 1 +25666371 locktype2 = 2 +25666372 locktype3 = 3 +25666372 goalCount = 0 +25666373 goalTotal = 10 +25666373 otherCount = 24 +~~~ +25685376 UP 12 +25685376 2048 2048 +25686651 DOWN 12 +25686651 0 2048 +25686705 UP 12 +25686705 2048 2048 +25686732 DOWN 12 +25686732 0 2048 +25686786 UP 12 +25686786 2048 2048 +25688376 CLICK1 +25688376 CLICK2 +~~~ +~~~ +~~~ +25688399 2048 67110912 +~~~ +25688549 2048 2048 +25694671 DOWN 12 +25694671 0 2048 +~~~ +~~~ +25694697 0 0 +~~~ +~~~ +25694699 0 1 +~~~ +~~~ +25694701 0 3 +~~~ +~~~ +25694703 0 7 +~~~ +~~~ +25694705 0 15 +~~~ +~~~ +25694706 0 31 +~~~ +~~~ +25694708 0 63 +~~~ +~~~ +25694710 0 127 +~~~ +~~~ +25694712 0 255 +25694713 homeCount = 41 +25694713 waitCount = 18 +25694714 ripCount = 18 +25694714 locktype1 = 1 +25694715 locktype2 = 2 +25694736 locktype3 = 3 +25694736 goalCount = 0 +25694737 goalTotal = 10 +25694737 otherCount = 24 +~~~ +25694738 CURRENTGOAL IS [3] +~~~ +25698435 UP 2 +25698435 2 255 +~~~ +~~~ +25698854 DOWN 2 +25698854 0 255 +~~~ +~~~ +25698879 0 254 +~~~ +~~~ +25698881 0 252 +~~~ +~~~ +25698882 0 248 +~~~ +~~~ +25698884 0 240 +~~~ +~~~ +25698886 0 224 +~~~ +~~~ +25698888 0 192 +~~~ +~~~ +25698890 0 128 +~~~ +~~~ +25698891 0 0 +~~~ +~~~ +25698893 0 512 +25698894 homeCount = 41 +25698895 waitCount = 18 +25698895 ripCount = 18 +25698896 locktype1 = 1 +25698917 locktype2 = 2 +25698918 locktype3 = 3 +25698918 goalCount = 0 +25698919 goalTotal = 10 +25698919 otherCount = 25 +~~~ +25698948 2 512 +25699154 DOWN 2 +25699154 0 512 +25703394 UP 10 +25703394 waslock = 0 +25703394 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25703424 512 16777728 +~~~ +25703574 512 512 +25708617 DOWN 10 +25708617 0 512 +~~~ +~~~ +25708639 0 2560 +~~~ +~~~ +25708641 0 2048 +25708642 homeCount = 42 +25708642 waitCount = 18 +25708643 ripCount = 18 +25708643 locktype1 = 1 +25708644 locktype2 = 2 +25708644 locktype3 = 3 +25708645 goalCount = 0 +25708645 goalTotal = 10 +25708646 otherCount = 25 +~~~ +25708690 UP 10 +25708690 waslock = 0 +25708690 512 2048 +25708696 DOWN 10 +25708696 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +25708728 homeCount = 42 +25708728 waitCount = 18 +25708729 ripCount = 18 +25708729 locktype1 = 1 +25708730 locktype2 = 2 +25708730 locktype3 = 3 +25708731 goalCount = 0 +25708731 goalTotal = 10 +25708732 otherCount = 25 +~~~ +25711186 UP 12 +25711186 2048 2048 +25712394 DOWN 12 +25712394 0 2048 +25712398 UP 12 +25712398 2048 2048 +25713214 DOWN 12 +25713214 0 2048 +25713244 UP 12 +25713244 2048 2048 +25715186 CLICK1 +25715186 CLICK2 +~~~ +~~~ +~~~ +25715209 2048 67110912 +~~~ +25715359 2048 2048 +25721807 DOWN 12 +25721807 0 2048 +~~~ +~~~ +25721829 0 0 +~~~ +~~~ +25721830 0 1 +~~~ +~~~ +25721832 0 3 +~~~ +~~~ +25721834 0 7 +~~~ +~~~ +25721836 0 15 +~~~ +~~~ +25721838 0 31 +~~~ +~~~ +25721840 0 63 +~~~ +~~~ +25721841 0 127 +~~~ +~~~ +25721843 0 255 +25721844 homeCount = 42 +25721845 waitCount = 19 +25721845 ripCount = 18 +25721846 locktype1 = 1 +25721846 locktype2 = 2 +25721867 locktype3 = 3 +25721868 goalCount = 0 +25721868 goalTotal = 10 +25721869 otherCount = 25 +~~~ +25721870 CURRENTGOAL IS [3] +~~~ +25726763 UP 3 +25726762 4 255 +~~~ +~~~ +25726783 outer reward +~~~ +25726783 4 262399 +~~~ +~~~ +25727233 4 255 +25734068 DOWN 3 +25734068 0 255 +~~~ +~~~ +25734091 0 254 +~~~ +~~~ +25734093 0 252 +~~~ +~~~ +25734094 0 248 +~~~ +~~~ +25734096 0 240 +~~~ +~~~ +25734098 0 224 +~~~ +~~~ +25734100 0 192 +~~~ +~~~ +25734102 0 128 +~~~ +~~~ +25734104 0 0 +~~~ +~~~ +25734105 0 512 +25734106 homeCount = 42 +25734107 waitCount = 19 +25734107 ripCount = 18 +25734108 locktype1 = 1 +25734108 locktype2 = 2 +25734129 locktype3 = 3 +25734130 goalCount = 1 +25734130 goalTotal = 11 +25734131 otherCount = 25 +~~~ +25738531 UP 10 +25738531 waslock = 0 +25738531 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25738557 512 16777728 +~~~ +25738707 512 512 +25738767 DOWN 10 +25738767 0 512 +25738784 UP 10 +25738784 waslock = 0 +25738784 512 512 +~~~ +~~~ +25738803 512 1536 +~~~ +~~~ +25738805 512 1024 +25738806 homeCount = 43 +25738806 waitCount = 19 +25738807 ripCount = 18 +25738807 locktype1 = 1 +25738808 locktype2 = 2 +25738808 locktype3 = 3 +25738809 goalCount = 1 +25738809 goalTotal = 11 +25738810 otherCount = 25 +~~~ +~~~ +25742304 DOWN 10 +25742304 0 1024 +~~~ +~~~ +~~~ +~~~ +25742326 homeCount = 43 +25742327 waitCount = 19 +25742327 ripCount = 18 +25742328 locktype1 = 1 +25742328 locktype2 = 2 +25742329 locktype3 = 3 +25742329 goalCount = 1 +25742330 goalTotal = 11 +25742330 otherCount = 25 +~~~ +25744264 UP 11 +25744264 1024 1024 +25746728 DOWN 11 +25746728 0 1024 +25746745 UP 11 +25746745 1024 1024 +25748072 DOWN 11 +25748072 0 1024 +25748099 UP 11 +25748099 1024 1024 +25748764 BEEP1 +25748764 BEEP2 +~~~ +~~~ +~~~ +25748784 1024 33555456 +~~~ +25748934 1024 1024 +25755625 DOWN 11 +25755625 0 1024 +~~~ +~~~ +25755651 0 0 +~~~ +~~~ +25755653 0 1 +~~~ +25755654 UP 11 +25755654 1024 1 +~~~ +~~~ +25755656 1024 3 +~~~ +~~~ +25755657 1024 7 +~~~ +25755658 1024 15 +~~~ +~~~ +25755660 1024 31 +~~~ +~~~ +25755662 1024 63 +~~~ +~~~ +25755663 1024 127 +~~~ +~~~ +25755665 1024 255 +25755666 homeCount = 43 +25755688 waitCount = 19 +25755688 ripCount = 19 +25755689 locktype1 = 1 +25755689 locktype2 = 2 +25755690 locktype3 = 3 +25755690 goalCount = 1 +25755691 goalTotal = 11 +25755691 otherCount = 25 +~~~ +25755692 CURRENTGOAL IS [3] +~~~ +25755708 DOWN 11 +25755708 0 255 +25755722 UP 11 +25755722 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25755751 homeCount = 43 +25755751 waitCount = 19 +25755752 ripCount = 19 +25755753 locktype1 = 1 +25755753 locktype2 = 2 +25755754 locktype3 = 3 +25755754 goalCount = 1 +25755755 goalTotal = 11 +25755755 otherCount = 25 +~~~ +25755756 CURRENTGOAL IS [3] +~~~ +25758703 DOWN 11 +25758703 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25758737 homeCount = 43 +25758737 waitCount = 19 +25758738 ripCount = 19 +25758738 locktype1 = 1 +25758739 locktype2 = 2 +25758739 locktype3 = 3 +25758740 goalCount = 1 +25758740 goalTotal = 11 +25758741 otherCount = 25 +~~~ +25758742 CURRENTGOAL IS [3] +~~~ +25762427 UP 2 +25762427 2 255 +~~~ +~~~ +25763276 DOWN 2 +25763276 0 255 +~~~ +~~~ +25763302 0 254 +~~~ +~~~ +25763304 0 252 +~~~ +~~~ +25763306 0 248 +~~~ +~~~ +25763307 0 240 +~~~ +~~~ +25763309 0 224 +~~~ +~~~ +25763311 0 192 +~~~ +~~~ +25763313 0 128 +~~~ +~~~ +25763315 0 0 +~~~ +~~~ +25763317 0 512 +25763318 homeCount = 43 +25763318 waitCount = 19 +25763319 ripCount = 19 +25763319 locktype1 = 1 +25763320 locktype2 = 2 +25763341 locktype3 = 3 +25763341 goalCount = 1 +25763342 goalTotal = 11 +25763342 otherCount = 26 +~~~ +25763466 2 512 +25763664 DOWN 2 +25763664 0 512 +25768061 UP 10 +25768061 waslock = 0 +25768061 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25768092 512 16777728 +~~~ +25768220 DOWN 10 +25768220 0 16777728 +~~~ +25768242 0 512 +~~~ +25768243 0 1536 +~~~ +~~~ +25768244 0 1024 +25768245 homeCount = 44 +25768246 waitCount = 19 +25768246 ripCount = 19 +25768247 locktype1 = 1 +25768247 locktype2 = 2 +25768248 locktype3 = 3 +25768248 goalCount = 1 +25768249 goalTotal = 11 +25768270 otherCount = 26 +~~~ +25768271 UP 10 +25768271 waslock = 0 +25768271 512 1024 +~~~ +25771738 DOWN 10 +25771738 0 1024 +~~~ +~~~ +~~~ +~~~ +25771767 homeCount = 44 +25771768 waitCount = 19 +25771768 ripCount = 19 +25771769 locktype1 = 1 +25771769 locktype2 = 2 +25771770 locktype3 = 3 +25771770 goalCount = 1 +25771771 goalTotal = 11 +25771771 otherCount = 26 +~~~ +25773584 UP 11 +25773584 1024 1024 +25778369 DOWN 11 +25778369 0 1024 +25778378 UP 11 +25778378 1024 1024 +25781584 BEEP1 +25781584 BEEP2 +~~~ +~~~ +~~~ +25781606 1024 33555456 +~~~ +25781756 1024 1024 +25787347 DOWN 11 +25787347 0 1024 +~~~ +~~~ +25787363 0 0 +~~~ +~~~ +25787365 0 1 +~~~ +~~~ +25787367 0 3 +~~~ +~~~ +25787369 0 7 +~~~ +~~~ +25787370 0 15 +~~~ +~~~ +25787372 0 31 +~~~ +~~~ +25787374 0 63 +~~~ +~~~ +25787376 0 127 +~~~ +~~~ +25787378 0 255 +25787379 homeCount = 44 +25787379 waitCount = 19 +25787380 ripCount = 20 +25787380 locktype1 = 1 +25787381 locktype2 = 2 +25787402 locktype3 = 3 +25787402 goalCount = 1 +25787403 goalTotal = 11 +25787403 otherCount = 26 +~~~ +25787404 CURRENTGOAL IS [3] +~~~ +25790514 UP 6 +25790514 32 255 +~~~ +~~~ +25791449 DOWN 6 +25791449 0 255 +~~~ +~~~ +25791474 0 254 +~~~ +~~~ +25791476 0 252 +~~~ +~~~ +25791477 0 248 +~~~ +~~~ +25791479 0 240 +~~~ +~~~ +25791481 0 224 +~~~ +~~~ +25791483 0 192 +~~~ +~~~ +25791485 0 128 +~~~ +~~~ +25791486 0 0 +~~~ +~~~ +25791488 0 512 +25791489 homeCount = 44 +25791490 waitCount = 19 +25791490 ripCount = 20 +25791491 locktype1 = 1 +25791491 locktype2 = 2 +25791512 locktype3 = 3 +25791513 goalCount = 1 +25791513 goalTotal = 11 +25791514 otherCount = 27 +~~~ +25795603 UP 10 +25795603 waslock = 0 +25795603 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25795630 512 16777728 +~~~ +25795780 512 512 +25795823 DOWN 10 +25795823 0 512 +~~~ +~~~ +25795843 0 2560 +~~~ +~~~ +25795845 0 2048 +25795846 homeCount = 45 +25795846 waitCount = 19 +25795847 ripCount = 20 +25795847 locktype1 = 1 +25795848 locktype2 = 2 +25795848 locktype3 = 3 +25795849 goalCount = 1 +25795849 goalTotal = 11 +25795850 otherCount = 27 +~~~ +25796003 UP 10 +25796003 waslock = 0 +25796003 512 2048 +~~~ +25801292 DOWN 10 +25801292 0 2048 +~~~ +~~~ +~~~ +~~~ +25801318 homeCount = 45 +25801318 waitCount = 19 +25801319 ripCount = 20 +25801319 locktype1 = 1 +25801320 locktype2 = 2 +25801320 locktype3 = 3 +25801321 goalCount = 1 +25801321 goalTotal = 11 +25801322 otherCount = 27 +~~~ +25803540 UP 12 +25803540 2048 2048 +25805479 DOWN 12 +25805479 0 2048 +25805510 UP 12 +25805510 2048 2048 +25805675 DOWN 12 +25805675 0 2048 +25805730 UP 12 +25805730 2048 2048 +25806962 DOWN 12 +25806962 0 2048 +25806974 UP 12 +25806974 2048 2048 +25807043 DOWN 12 +25807043 0 2048 +25807214 UP 12 +25807214 2048 2048 +25807283 DOWN 12 +25807283 0 2048 +25807346 UP 12 +25807346 2048 2048 +25809540 CLICK1 +25809540 CLICK2 +~~~ +~~~ +~~~ +25809566 2048 67110912 +~~~ +25809716 2048 2048 +25815767 DOWN 12 +25815767 0 2048 +~~~ +~~~ +25815784 0 0 +~~~ +~~~ +25815786 0 1 +~~~ +~~~ +25815788 0 3 +~~~ +~~~ +25815789 0 7 +~~~ +25815791 UP 12 +25815791 2048 7 +~~~ +~~~ +25815793 2048 15 +~~~ +~~~ +25815794 2048 31 +~~~ +25815795 2048 63 +~~~ +~~~ +25815797 2048 127 +~~~ +~~~ +25815798 2048 255 +25815800 homeCount = 45 +25815821 waitCount = 20 +25815821 ripCount = 20 +25815822 locktype1 = 1 +25815822 locktype2 = 2 +25815823 locktype3 = 3 +25815823 goalCount = 1 +25815824 goalTotal = 11 +25815824 otherCount = 27 +~~~ +25815825 CURRENTGOAL IS [3] +~~~ +25815864 DOWN 12 +25815864 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25815903 homeCount = 45 +25815903 waitCount = 20 +25815904 ripCount = 20 +25815904 locktype1 = 1 +25815905 locktype2 = 2 +25815905 locktype3 = 3 +25815906 goalCount = 1 +25815906 goalTotal = 11 +25815907 otherCount = 27 +~~~ +25815908 CURRENTGOAL IS [3] +~~~ +25819190 UP 2 +25819190 2 255 +~~~ +~~~ +25820057 DOWN 2 +25820057 0 255 +~~~ +~~~ +25820079 0 254 +~~~ +~~~ +25820081 0 252 +~~~ +~~~ +25820083 0 248 +~~~ +~~~ +25820084 0 240 +~~~ +~~~ +25820086 0 224 +~~~ +~~~ +25820088 0 192 +~~~ +~~~ +25820090 0 128 +~~~ +~~~ +25820092 0 0 +~~~ +~~~ +25820094 0 512 +25820095 homeCount = 45 +25820095 waitCount = 20 +25820096 ripCount = 20 +25820096 locktype1 = 1 +25820097 locktype2 = 2 +25820118 locktype3 = 3 +25820118 goalCount = 1 +25820119 goalTotal = 11 +25820119 otherCount = 28 +~~~ +25820242 2 512 +25820365 DOWN 2 +25820365 0 512 +25823770 UP 10 +25823770 waslock = 0 +25823769 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25823798 512 16777728 +~~~ +25823948 512 512 +25823994 DOWN 10 +25823994 0 512 +~~~ +~~~ +25824011 0 2560 +~~~ +~~~ +25824013 0 2048 +25824014 homeCount = 46 +25824015 waitCount = 20 +25824015 ripCount = 20 +25824016 locktype1 = 1 +25824016 locktype2 = 2 +25824017 locktype3 = 3 +25824017 goalCount = 1 +25824018 goalTotal = 11 +25824018 otherCount = 28 +~~~ +25824040 UP 10 +25824040 waslock = 0 +25824040 512 2048 +~~~ +25829907 DOWN 10 +25829907 0 2048 +~~~ +~~~ +~~~ +~~~ +25829936 homeCount = 46 +25829936 waitCount = 20 +25829937 ripCount = 20 +25829937 locktype1 = 1 +25829938 locktype2 = 2 +25829938 locktype3 = 3 +25829939 goalCount = 1 +25829939 goalTotal = 11 +25829940 otherCount = 28 +~~~ +25831818 UP 12 +25831818 2048 2048 +25834819 CLICK1 +25834819 CLICK2 +~~~ +~~~ +~~~ +25834844 2048 67110912 +~~~ +25834994 2048 2048 +25840649 DOWN 12 +25840649 0 2048 +~~~ +~~~ +25840671 0 0 +~~~ +~~~ +25840673 0 1 +~~~ +~~~ +25840675 0 3 +~~~ +~~~ +25840677 0 7 +~~~ +~~~ +25840678 0 15 +~~~ +~~~ +25840680 0 31 +~~~ +~~~ +25840682 0 63 +~~~ +~~~ +25840684 0 127 +~~~ +~~~ +25840686 0 255 +25840687 homeCount = 46 +25840687 waitCount = 21 +25840688 ripCount = 20 +25840688 locktype1 = 1 +25840689 locktype2 = 2 +25840709 locktype3 = 3 +25840710 goalCount = 1 +25840710 goalTotal = 11 +25840711 otherCount = 28 +~~~ +25840712 CURRENTGOAL IS [3] +~~~ +25840713 UP 12 +25840712 2048 255 +25840753 DOWN 12 +25840753 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25840790 homeCount = 46 +25840791 waitCount = 21 +25840791 ripCount = 20 +25840792 locktype1 = 1 +25840792 locktype2 = 2 +25840793 locktype3 = 3 +25840793 goalCount = 1 +25840794 goalTotal = 11 +25840794 otherCount = 28 +~~~ +25840795 CURRENTGOAL IS [3] +~~~ +25846229 UP 3 +25846229 4 255 +~~~ +~~~ +25846247 outer reward +~~~ +25846248 4 262399 +~~~ +~~~ +25846289 DOWN 3 +25846289 0 262399 +25846303 4 262399 +~~~ +~~~ +25846306 4 262398 +~~~ +~~~ +25846308 4 262396 +~~~ +~~~ +25846310 4 262392 +~~~ +~~~ +25846311 4 262384 +~~~ +~~~ +25846313 4 262368 +~~~ +~~~ +25846315 4 262336 +~~~ +~~~ +25846317 4 262272 +~~~ +~~~ +25846319 4 262144 +~~~ +~~~ +25846321 4 262656 +25846322 homeCount = 46 +25846322 waitCount = 21 +25846323 ripCount = 20 +25846343 locktype1 = 1 +25846344 locktype2 = 2 +25846344 locktype3 = 3 +25846345 goalCount = 2 +25846345 goalTotal = 12 +25846346 otherCount = 28 +~~~ +25846482 DOWN 3 +25846482 0 262656 +25846517 4 262656 +25846697 4 512 +25846875 DOWN 3 +25846875 0 512 +25846903 4 512 +25846998 DOWN 3 +25846998 0 512 +25847030 4 512 +25847129 DOWN 3 +25847129 0 512 +25847156 4 512 +25847253 DOWN 3 +25847253 0 512 +25847287 4 512 +25847385 DOWN 3 +25847385 0 512 +25847417 4 512 +25847522 DOWN 3 +25847522 0 512 +25847548 4 512 +25847656 DOWN 3 +25847656 0 512 +25847682 4 512 +25847794 DOWN 3 +25847794 0 512 +25847816 4 512 +25847942 DOWN 3 +25847942 0 512 +25847958 4 512 +25848087 DOWN 3 +25848087 0 512 +25848099 4 512 +25853342 DOWN 3 +25853342 0 512 +25853409 4 512 +25853445 DOWN 3 +25853445 0 512 +25911695 UP 10 +25911695 waslock = 0 +25911695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +25911722 512 16777728 +~~~ +25911797 DOWN 10 +25911797 0 16777728 +~~~ +~~~ +25911816 0 16779776 +~~~ +~~~ +25911818 0 16779264 +25911819 homeCount = 47 +25911820 waitCount = 21 +25911820 ripCount = 20 +25911821 locktype1 = 1 +25911821 locktype2 = 2 +25911822 locktype3 = 3 +25911822 goalCount = 2 +25911823 goalTotal = 12 +25911823 otherCount = 28 +~~~ +25911872 0 2048 +25911895 UP 10 +25911895 waslock = 0 +25911895 512 2048 +~~~ +25915776 DOWN 10 +25915776 0 2048 +~~~ +~~~ +~~~ +~~~ +25915802 homeCount = 47 +25915802 waitCount = 21 +25915803 ripCount = 20 +25915803 locktype1 = 1 +25915804 locktype2 = 2 +25915804 locktype3 = 3 +25915805 goalCount = 2 +25915805 goalTotal = 12 +25915806 otherCount = 28 +~~~ +25915830 UP 10 +25915830 waslock = 0 +25915830 512 2048 +25915843 DOWN 10 +25915843 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +25915863 homeCount = 47 +25915864 waitCount = 21 +25915864 ripCount = 20 +25915865 locktype1 = 1 +25915865 locktype2 = 2 +25915866 locktype3 = 3 +25915866 goalCount = 2 +25915867 goalTotal = 12 +25915867 otherCount = 28 +~~~ +25917690 UP 12 +25917690 2048 2048 +25918023 DOWN 12 +25918023 0 2048 +25918224 LOCKOUT 3 +~~~ +25918241 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25918247 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +25929828 UP 3 +25929828 4 0 +25930022 DOWN 3 +25930022 0 0 +25930052 4 0 +25930295 DOWN 3 +25930295 0 0 +25930361 4 0 +25930673 DOWN 3 +25930673 0 0 +25930706 4 0 +25930744 DOWN 3 +25930744 0 0 +25942332 UP 5 +25942332 16 0 +25942648 DOWN 5 +25942648 0 0 +25942755 16 0 +25943167 DOWN 5 +25943166 0 0 +25943232 16 0 +25943241 LOCKEND +25943251 DOWN 5 +25943251 0 0 +~~~ +~~~ +~~~ +25943255 0 512 +26002769 UP 10 +26002770 waslock = 0 +26002769 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26002799 512 16777728 +~~~ +26002899 DOWN 10 +26002899 0 16777728 +26002914 UP 10 +26002914 waslock = 0 +26002914 512 16777728 +~~~ +~~~ +26002925 512 16778752 +~~~ +~~~ +26002927 512 16778240 +26002928 homeCount = 48 +26002928 waitCount = 21 +26002929 ripCount = 20 +26002929 locktype1 = 1 +26002930 locktype2 = 2 +26002930 locktype3 = 4 +26002931 goalCount = 2 +26002931 goalTotal = 12 +26002932 otherCount = 28 +~~~ +~~~ +26002954 512 1024 +26003187 DOWN 10 +26003187 0 1024 +~~~ +~~~ +~~~ +~~~ +26003216 homeCount = 48 +26003216 waitCount = 21 +26003217 ripCount = 20 +26003217 locktype1 = 1 +26003218 locktype2 = 2 +26003218 locktype3 = 4 +26003219 goalCount = 2 +26003219 goalTotal = 12 +26003220 otherCount = 28 +~~~ +26003230 UP 10 +26003230 waslock = 0 +26003230 512 1024 +~~~ +26003679 DOWN 10 +26003679 0 1024 +26003691 UP 10 +26003691 waslock = 0 +26003691 512 1024 +~~~ +~~~ +~~~ +~~~ +26003719 homeCount = 48 +26003719 waitCount = 21 +26003720 ripCount = 20 +26003721 locktype1 = 1 +26003721 locktype2 = 2 +26003722 locktype3 = 4 +26003722 goalCount = 2 +26003723 goalTotal = 12 +26003723 otherCount = 28 +~~~ +~~~ +26003834 DOWN 10 +26003834 0 1024 +26003848 UP 10 +26003848 waslock = 0 +26003848 512 1024 +~~~ +~~~ +~~~ +~~~ +26003862 homeCount = 48 +26003863 waitCount = 21 +26003863 ripCount = 20 +26003864 locktype1 = 1 +26003864 locktype2 = 2 +26003865 locktype3 = 4 +26003865 goalCount = 2 +26003866 goalTotal = 12 +26003866 otherCount = 28 +~~~ +~~~ +26003992 DOWN 10 +26003992 0 1024 +26004002 UP 10 +26004003 waslock = 0 +26004002 512 1024 +~~~ +~~~ +~~~ +~~~ +26004018 homeCount = 48 +26004018 waitCount = 21 +26004019 ripCount = 20 +26004020 locktype1 = 1 +26004020 locktype2 = 2 +26004021 locktype3 = 4 +26004021 goalCount = 2 +26004022 goalTotal = 12 +26004022 otherCount = 28 +~~~ +~~~ +26007545 DOWN 10 +26007545 0 1024 +26007568 UP 10 +26007568 waslock = 0 +26007568 512 1024 +~~~ +~~~ +~~~ +~~~ +26007576 homeCount = 48 +26007576 waitCount = 21 +26007577 ripCount = 20 +26007577 locktype1 = 1 +26007578 locktype2 = 2 +26007578 locktype3 = 4 +26007579 goalCount = 2 +26007579 goalTotal = 12 +26007580 otherCount = 28 +~~~ +~~~ +26007655 DOWN 10 +26007655 0 1024 +~~~ +~~~ +~~~ +~~~ +26007677 homeCount = 48 +26007677 waitCount = 21 +26007678 ripCount = 20 +26007679 locktype1 = 1 +26007679 locktype2 = 2 +26007680 locktype3 = 4 +26007680 goalCount = 2 +26007681 goalTotal = 12 +26007681 otherCount = 28 +~~~ +26043997 UP 10 +26043997 waslock = 0 +26043997 512 1024 +~~~ +26044753 DOWN 10 +26044753 0 1024 +~~~ +~~~ +~~~ +~~~ +26044775 homeCount = 48 +26044776 waitCount = 21 +26044776 ripCount = 20 +26044777 locktype1 = 1 +26044777 locktype2 = 2 +26044778 locktype3 = 4 +26044778 goalCount = 2 +26044779 goalTotal = 12 +26044779 otherCount = 28 +~~~ +26046836 UP 11 +26046836 1024 1024 +26047796 DOWN 11 +26047796 0 1024 +26047996 LOCKOUT 3 +~~~ +26048015 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26048019 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26048033 UP 11 +26048033 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +26048065 DOWN 11 +26048065 0 0 +26048110 UP 11 +26048110 1024 0 +26048521 DOWN 11 +26048521 0 0 +26048580 UP 11 +26048580 1024 0 +26050905 DOWN 11 +26050905 0 0 +26050915 UP 11 +26050915 1024 0 +26054064 DOWN 11 +26054064 0 0 +26054111 UP 11 +26054111 1024 0 +26055170 DOWN 11 +26055170 0 0 +26055174 UP 11 +26055174 1024 0 +26060757 DOWN 11 +26060757 0 0 +26065042 UP 8 +26065042 128 0 +26065099 DOWN 8 +26065099 0 0 +26065152 128 0 +26065553 DOWN 8 +26065553 0 0 +26073015 LOCKEND +~~~ +~~~ +~~~ +26073040 0 512 +26074095 UP 10 +26074095 waslock = 0 +26074095 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26074124 512 16777728 +~~~ +26074274 512 512 +26074286 DOWN 10 +26074286 0 512 +~~~ +~~~ +26074307 0 1536 +~~~ +~~~ +26074309 0 1024 +26074310 homeCount = 49 +26074311 waitCount = 21 +26074311 ripCount = 20 +26074312 locktype1 = 1 +26074312 locktype2 = 2 +26074313 locktype3 = 5 +26074313 goalCount = 2 +26074314 goalTotal = 12 +26074314 otherCount = 28 +~~~ +26074335 UP 10 +26074336 waslock = 0 +26074335 512 1024 +~~~ +26079241 DOWN 10 +26079241 0 1024 +26079255 UP 10 +26079255 waslock = 0 +26079255 512 1024 +~~~ +~~~ +~~~ +~~~ +26079262 homeCount = 49 +26079262 waitCount = 21 +26079263 ripCount = 20 +26079263 locktype1 = 1 +26079264 locktype2 = 2 +26079264 locktype3 = 5 +26079265 goalCount = 2 +26079265 goalTotal = 12 +26079266 otherCount = 28 +~~~ +~~~ +26079356 DOWN 10 +26079356 0 1024 +~~~ +~~~ +~~~ +~~~ +26079382 homeCount = 49 +26079382 waitCount = 21 +26079383 ripCount = 20 +26079383 locktype1 = 1 +26079384 locktype2 = 2 +26079384 locktype3 = 5 +26079385 goalCount = 2 +26079385 goalTotal = 12 +26079386 otherCount = 28 +~~~ +26079397 UP 10 +26079398 waslock = 0 +26079397 512 1024 +~~~ +26079458 DOWN 10 +26079458 0 1024 +~~~ +~~~ +~~~ +~~~ +26079482 homeCount = 49 +26079482 waitCount = 21 +26079483 ripCount = 20 +26079483 locktype1 = 1 +26079484 locktype2 = 2 +26079484 locktype3 = 5 +26079485 goalCount = 2 +26079485 goalTotal = 12 +26079486 otherCount = 28 +~~~ +26082385 UP 11 +26082384 1024 1024 +26086385 BEEP1 +26086385 BEEP2 +~~~ +~~~ +~~~ +26086410 1024 33555456 +~~~ +26086560 1024 1024 +26093563 DOWN 11 +26093563 0 1024 +~~~ +~~~ +26093584 0 0 +~~~ +~~~ +26093585 0 1 +~~~ +~~~ +26093587 0 3 +~~~ +~~~ +26093589 0 7 +~~~ +~~~ +26093591 0 15 +~~~ +~~~ +26093593 0 31 +~~~ +26093594 UP 11 +26093594 1024 31 +~~~ +~~~ +26093596 1024 63 +~~~ +~~~ +26093598 1024 127 +~~~ +26093599 1024 255 +26093600 homeCount = 49 +26093600 waitCount = 21 +26093622 ripCount = 21 +26093622 locktype1 = 1 +26093623 locktype2 = 2 +26093623 locktype3 = 5 +26093624 goalCount = 2 +26093624 goalTotal = 12 +26093625 otherCount = 28 +~~~ +26093626 CURRENTGOAL IS [3] +~~~ +26093680 DOWN 11 +26093680 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26093719 homeCount = 49 +26093720 waitCount = 21 +26093721 ripCount = 21 +26093721 locktype1 = 1 +26093722 locktype2 = 2 +26093722 locktype3 = 5 +26093723 goalCount = 2 +26093723 goalTotal = 12 +26093724 otherCount = 28 +~~~ +26093725 CURRENTGOAL IS [3] +~~~ +26093746 UP 11 +26093746 1024 255 +26093773 DOWN 11 +26093773 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26093808 homeCount = 49 +26093808 waitCount = 21 +26093809 ripCount = 21 +26093809 locktype1 = 1 +26093810 locktype2 = 2 +26093810 locktype3 = 5 +26093811 goalCount = 2 +26093811 goalTotal = 12 +26093812 otherCount = 28 +~~~ +26093813 CURRENTGOAL IS [3] +~~~ +26096717 UP 6 +26096717 32 255 +~~~ +~~~ +26097351 DOWN 6 +26097351 0 255 +~~~ +~~~ +26097373 0 254 +~~~ +~~~ +26097375 0 252 +~~~ +~~~ +26097377 0 248 +~~~ +~~~ +26097379 0 240 +~~~ +~~~ +26097380 0 224 +~~~ +~~~ +26097382 0 192 +~~~ +~~~ +26097384 0 128 +~~~ +~~~ +26097386 0 0 +~~~ +~~~ +26097388 0 512 +26097389 homeCount = 49 +26097389 waitCount = 21 +26097390 ripCount = 21 +26097390 locktype1 = 1 +26097391 locktype2 = 2 +26097412 locktype3 = 5 +26097412 goalCount = 2 +26097413 goalTotal = 12 +26097413 otherCount = 29 +~~~ +26104495 UP 10 +26104495 waslock = 0 +26104495 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26104524 512 16777728 +~~~ +26104673 512 512 +26104700 DOWN 10 +26104700 0 512 +~~~ +~~~ +26104727 0 2560 +~~~ +~~~ +26104729 0 2048 +26104730 homeCount = 50 +26104730 waitCount = 21 +26104731 ripCount = 21 +26104731 locktype1 = 1 +26104732 locktype2 = 2 +26104732 locktype3 = 5 +26104733 goalCount = 2 +26104733 goalTotal = 12 +26104734 otherCount = 29 +~~~ +26104857 UP 10 +26104858 waslock = 0 +26104857 512 2048 +~~~ +26109785 DOWN 10 +26109785 0 2048 +~~~ +~~~ +~~~ +~~~ +26109809 homeCount = 50 +26109809 waitCount = 21 +26109810 ripCount = 21 +26109810 locktype1 = 1 +26109811 locktype2 = 2 +26109811 locktype3 = 5 +26109812 goalCount = 2 +26109812 goalTotal = 12 +26109813 otherCount = 29 +~~~ +26109830 UP 10 +26109830 waslock = 0 +26109830 512 2048 +~~~ +26109886 DOWN 10 +26109886 0 2048 +~~~ +~~~ +~~~ +~~~ +26109910 homeCount = 50 +26109910 waitCount = 21 +26109911 ripCount = 21 +26109911 locktype1 = 1 +26109912 locktype2 = 2 +26109912 locktype3 = 5 +26109913 goalCount = 2 +26109913 goalTotal = 12 +26109914 otherCount = 29 +~~~ +26112362 UP 12 +26112362 2048 2048 +26113374 DOWN 12 +26113374 0 2048 +26113418 UP 12 +26113418 2048 2048 +26113943 DOWN 12 +26113943 0 2048 +26114024 UP 12 +26114024 2048 2048 +26115863 CLICK1 +26115863 CLICK2 +~~~ +~~~ +~~~ +26115889 2048 67110912 +~~~ +26116039 2048 2048 +26122109 DOWN 12 +26122109 0 2048 +~~~ +~~~ +26122129 0 0 +~~~ +~~~ +26122131 0 1 +~~~ +~~~ +26122132 0 3 +~~~ +~~~ +26122134 0 7 +~~~ +~~~ +26122136 0 15 +~~~ +~~~ +26122138 0 31 +~~~ +~~~ +26122140 0 63 +~~~ +~~~ +26122142 0 127 +~~~ +~~~ +26122143 0 255 +26122145 homeCount = 50 +26122145 waitCount = 22 +26122146 ripCount = 21 +26122146 locktype1 = 1 +26122147 locktype2 = 2 +26122167 locktype3 = 5 +26122168 goalCount = 2 +26122168 goalTotal = 12 +26122169 otherCount = 29 +~~~ +26122170 CURRENTGOAL IS [3] +~~~ +26126211 UP 3 +26126210 4 255 +26126231 DOWN 3 +26126231 0 255 +~~~ +~~~ +26126237 outer reward +~~~ +26126238 0 262399 +~~~ +~~~ +26126244 4 262399 +~~~ +~~~ +26126256 4 262398 +~~~ +~~~ +26126257 4 262396 +~~~ +~~~ +26126259 4 262392 +~~~ +~~~ +26126261 4 262384 +~~~ +~~~ +26126263 4 262368 +~~~ +~~~ +26126265 4 262336 +~~~ +~~~ +26126267 4 262272 +~~~ +~~~ +26126268 4 262144 +~~~ +~~~ +26126270 4 262656 +26126271 homeCount = 50 +26126272 waitCount = 22 +26126272 ripCount = 21 +26126293 locktype1 = 1 +26126294 locktype2 = 2 +26126294 locktype3 = 5 +26126295 goalCount = 3 +26126295 goalTotal = 13 +26126296 otherCount = 29 +~~~ +26126454 DOWN 3 +26126453 0 262656 +26126503 4 262656 +26126687 4 512 +26126888 DOWN 3 +26126888 0 512 +26126906 4 512 +26127010 DOWN 3 +26127010 0 512 +26127033 4 512 +26127136 DOWN 3 +26127136 0 512 +26127161 4 512 +26127269 DOWN 3 +26127269 0 512 +26127292 4 512 +26127399 DOWN 3 +26127399 0 512 +26127422 4 512 +26127527 DOWN 3 +26127527 0 512 +26127551 4 512 +26127663 DOWN 3 +26127662 0 512 +26127684 4 512 +26127810 DOWN 3 +26127810 0 512 +26127825 4 512 +26127960 DOWN 3 +26127960 0 512 +26127966 4 512 +26132825 DOWN 3 +26132825 0 512 +26132840 4 512 +26132983 DOWN 3 +26132983 0 512 +26132987 4 512 +26133827 DOWN 3 +26133827 0 512 +26133837 4 512 +26134015 DOWN 3 +26134015 0 512 +26134023 4 512 +26135949 DOWN 3 +26135949 0 512 +26140435 UP 10 +26140435 waslock = 0 +26140435 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26140463 512 16777728 +~~~ +26140613 512 512 +26140699 DOWN 10 +26140698 0 512 +~~~ +~~~ +26140719 0 1536 +~~~ +~~~ +26140720 0 1024 +26140722 homeCount = 51 +26140722 waitCount = 22 +26140723 ripCount = 21 +26140723 locktype1 = 1 +26140724 locktype2 = 2 +26140724 locktype3 = 5 +26140725 goalCount = 3 +26140725 goalTotal = 13 +26140726 otherCount = 29 +~~~ +26140747 UP 10 +26140747 waslock = 0 +26140747 512 1024 +~~~ +26144504 DOWN 10 +26144504 0 1024 +~~~ +~~~ +~~~ +~~~ +26144530 homeCount = 51 +26144531 waitCount = 22 +26144531 ripCount = 21 +26144532 locktype1 = 1 +26144532 locktype2 = 2 +26144533 locktype3 = 5 +26144533 goalCount = 3 +26144534 goalTotal = 13 +26144534 otherCount = 29 +~~~ +26144553 UP 10 +26144553 waslock = 0 +26144552 512 1024 +~~~ +26144607 DOWN 10 +26144607 0 1024 +~~~ +~~~ +~~~ +~~~ +26144630 homeCount = 51 +26144631 waitCount = 22 +26144631 ripCount = 21 +26144632 locktype1 = 1 +26144632 locktype2 = 2 +26144633 locktype3 = 5 +26144633 goalCount = 3 +26144634 goalTotal = 13 +26144634 otherCount = 29 +~~~ +26146769 UP 11 +26146769 1024 1024 +26151953 DOWN 11 +26151953 0 1024 +26151979 UP 11 +26151979 1024 1024 +26154269 BEEP1 +26154269 BEEP2 +~~~ +~~~ +~~~ +26154291 1024 33555456 +~~~ +26154441 1024 1024 +26160782 DOWN 11 +26160782 0 1024 +26160794 UP 11 +26160794 1024 1024 +~~~ +~~~ +26160806 1024 0 +~~~ +~~~ +26160808 1024 1 +~~~ +~~~ +26160810 1024 3 +~~~ +~~~ +26160812 1024 7 +~~~ +~~~ +26160814 1024 15 +~~~ +~~~ +26160815 1024 31 +~~~ +~~~ +26160817 1024 63 +~~~ +~~~ +26160819 1024 127 +~~~ +~~~ +26160821 1024 255 +26160822 homeCount = 51 +26160822 waitCount = 22 +26160823 ripCount = 22 +26160844 locktype1 = 1 +26160845 locktype2 = 2 +26160845 locktype3 = 5 +26160846 goalCount = 3 +26160846 goalTotal = 13 +26160847 otherCount = 29 +~~~ +26160848 CURRENTGOAL IS [3] +~~~ +26160904 DOWN 11 +26160904 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26160942 homeCount = 51 +26160943 waitCount = 22 +26160943 ripCount = 22 +26160944 locktype1 = 1 +26160945 locktype2 = 2 +26160945 locktype3 = 5 +26160946 goalCount = 3 +26160946 goalTotal = 13 +26160947 otherCount = 29 +~~~ +26160948 CURRENTGOAL IS [3] +~~~ +26160969 UP 11 +26160969 1024 255 +26160984 DOWN 11 +26160984 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26161023 homeCount = 51 +26161023 waitCount = 22 +26161024 ripCount = 22 +26161024 locktype1 = 1 +26161025 locktype2 = 2 +26161025 locktype3 = 5 +26161026 goalCount = 3 +26161026 goalTotal = 13 +26161027 otherCount = 29 +~~~ +26161028 CURRENTGOAL IS [3] +~~~ +26161049 UP 11 +26161049 1024 255 +26163216 DOWN 11 +26163216 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26163255 homeCount = 51 +26163255 waitCount = 22 +26163256 ripCount = 22 +26163256 locktype1 = 1 +26163257 locktype2 = 2 +26163257 locktype3 = 5 +26163258 goalCount = 3 +26163258 goalTotal = 13 +26163259 otherCount = 29 +~~~ +26163260 CURRENTGOAL IS [3] +~~~ +26176641 UP 4 +26176641 8 255 +~~~ +~~~ +26177975 DOWN 4 +26177975 0 255 +~~~ +~~~ +26178001 0 254 +~~~ +~~~ +26178003 0 252 +~~~ +~~~ +26178005 0 248 +~~~ +~~~ +26178006 0 240 +~~~ +~~~ +26178008 0 224 +~~~ +~~~ +26178010 0 192 +~~~ +~~~ +26178012 0 128 +~~~ +~~~ +26178014 0 0 +~~~ +~~~ +26178016 0 512 +26178017 homeCount = 51 +26178017 waitCount = 22 +26178018 ripCount = 22 +26178018 locktype1 = 1 +26178019 locktype2 = 2 +26178040 locktype3 = 5 +26178040 goalCount = 3 +26178041 goalTotal = 13 +26178041 otherCount = 30 +~~~ +26183987 UP 10 +26183987 waslock = 0 +26183986 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26184016 512 16777728 +~~~ +26184166 512 512 +26184227 DOWN 10 +26184227 0 512 +~~~ +26184253 UP 10 +26184253 waslock = 0 +26184253 512 512 +~~~ +~~~ +~~~ +26184256 512 2048 +26184257 homeCount = 52 +26184257 waitCount = 22 +26184258 ripCount = 22 +26184258 locktype1 = 1 +26184259 locktype2 = 2 +26184259 locktype3 = 5 +26184260 goalCount = 3 +26184280 goalTotal = 13 +26184281 otherCount = 30 +~~~ +~~~ +26190484 DOWN 10 +26190484 0 2048 +26190501 UP 10 +26190501 waslock = 0 +26190501 512 2048 +~~~ +~~~ +~~~ +~~~ +26190525 homeCount = 52 +26190525 waitCount = 22 +26190526 ripCount = 22 +26190526 locktype1 = 1 +26190527 locktype2 = 2 +26190527 locktype3 = 5 +26190528 goalCount = 3 +26190528 goalTotal = 13 +26190529 otherCount = 30 +~~~ +~~~ +26190590 DOWN 10 +26190590 0 2048 +~~~ +~~~ +~~~ +~~~ +26190618 homeCount = 52 +26190619 waitCount = 22 +26190619 ripCount = 22 +26190620 locktype1 = 1 +26190620 locktype2 = 2 +26190621 locktype3 = 5 +26190621 goalCount = 3 +26190622 goalTotal = 13 +26190622 otherCount = 30 +~~~ +26192739 UP 12 +26192739 2048 2048 +26197344 DOWN 12 +26197344 0 2048 +26197364 UP 12 +26197364 2048 2048 +26200239 CLICK1 +26200239 CLICK2 +~~~ +~~~ +~~~ +26200261 2048 67110912 +~~~ +26200411 2048 2048 +26205923 DOWN 12 +26205923 0 2048 +~~~ +~~~ +26205949 0 0 +~~~ +~~~ +26205951 0 1 +~~~ +~~~ +26205953 0 3 +~~~ +~~~ +26205955 0 7 +~~~ +~~~ +26205957 0 15 +~~~ +~~~ +26205959 0 31 +~~~ +~~~ +26205960 0 63 +~~~ +~~~ +26205962 0 127 +~~~ +~~~ +26205964 0 255 +26205965 homeCount = 52 +26205966 waitCount = 23 +26205966 ripCount = 22 +26205967 locktype1 = 1 +26205967 locktype2 = 2 +26205988 locktype3 = 5 +26205989 goalCount = 3 +26205989 goalTotal = 13 +26205990 otherCount = 30 +~~~ +26205991 CURRENTGOAL IS [3] +~~~ +26205991 UP 12 +26205991 2048 255 +26206044 DOWN 12 +26206044 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26206086 homeCount = 52 +26206087 waitCount = 23 +26206088 ripCount = 22 +26206088 locktype1 = 1 +26206089 locktype2 = 2 +26206089 locktype3 = 5 +26206090 goalCount = 3 +26206090 goalTotal = 13 +26206091 otherCount = 30 +~~~ +26206092 CURRENTGOAL IS [3] +~~~ +26211547 UP 3 +26211547 4 255 +~~~ +~~~ +26211574 outer reward +~~~ +26211574 4 262399 +~~~ +~~~ +26211584 DOWN 3 +26211584 0 262399 +26211594 4 262399 +~~~ +~~~ +26211604 4 262398 +~~~ +~~~ +26211605 4 262396 +~~~ +~~~ +26211607 4 262392 +~~~ +~~~ +26211609 4 262384 +~~~ +~~~ +26211611 4 262368 +~~~ +~~~ +26211613 4 262336 +~~~ +~~~ +26211614 4 262272 +~~~ +~~~ +26211616 4 262144 +~~~ +~~~ +26211618 4 262656 +26211619 homeCount = 52 +26211620 waitCount = 23 +26211620 ripCount = 22 +26211641 locktype1 = 1 +26211641 locktype2 = 2 +26211642 locktype3 = 5 +26211642 goalCount = 4 +26211643 goalTotal = 14 +26211643 otherCount = 30 +~~~ +26211753 DOWN 3 +26211753 0 262656 +26211803 4 262656 +26212024 4 512 +26212186 DOWN 3 +26212186 0 512 +26212197 4 512 +26212288 DOWN 3 +26212288 0 512 +26212324 4 512 +26212415 DOWN 3 +26212415 0 512 +26212448 4 512 +26212545 DOWN 3 +26212545 0 512 +26212578 4 512 +26212679 DOWN 3 +26212679 0 512 +26212713 4 512 +26212817 DOWN 3 +26212817 0 512 +26212848 4 512 +26212954 DOWN 3 +26212954 0 512 +26212985 4 512 +26213104 DOWN 3 +26213103 0 512 +26213127 4 512 +26213255 DOWN 3 +26213255 0 512 +26213277 4 512 +26213411 DOWN 3 +26213411 0 512 +26213421 4 512 +26213565 DOWN 3 +26213565 0 512 +26213573 4 512 +26213710 DOWN 3 +26213710 0 512 +26213718 4 512 +26219060 DOWN 3 +26219060 0 512 +26219068 4 512 +26221652 DOWN 3 +26221652 0 512 +26229831 UP 10 +26229831 waslock = 0 +26229831 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26229859 512 16777728 +~~~ +26229926 DOWN 10 +26229926 0 16777728 +26229942 UP 10 +26229942 waslock = 0 +26229942 512 16777728 +~~~ +~~~ +26229952 512 16778752 +~~~ +~~~ +26229954 512 16778240 +26229955 homeCount = 53 +26229956 waitCount = 23 +26229957 ripCount = 22 +26229957 locktype1 = 1 +26229958 locktype2 = 2 +26229958 locktype3 = 5 +26229959 goalCount = 4 +26229959 goalTotal = 14 +26229960 otherCount = 30 +~~~ +~~~ +26230009 512 1024 +26230077 DOWN 10 +26230077 0 1024 +~~~ +~~~ +~~~ +~~~ +26230108 homeCount = 53 +26230109 waitCount = 23 +26230109 ripCount = 22 +26230110 locktype1 = 1 +26230110 locktype2 = 2 +26230111 locktype3 = 5 +26230111 goalCount = 4 +26230112 goalTotal = 14 +26230112 otherCount = 30 +~~~ +26230121 UP 10 +26230122 waslock = 0 +26230121 512 1024 +~~~ +26233087 DOWN 10 +26233087 0 1024 +~~~ +~~~ +~~~ +~~~ +26233108 homeCount = 53 +26233108 waitCount = 23 +26233109 ripCount = 22 +26233109 locktype1 = 1 +26233110 locktype2 = 2 +26233110 locktype3 = 5 +26233111 goalCount = 4 +26233111 goalTotal = 14 +26233112 otherCount = 30 +~~~ +26233148 UP 10 +26233148 waslock = 0 +26233148 512 1024 +26233177 DOWN 10 +26233177 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +26233199 homeCount = 53 +26233200 waitCount = 23 +26233200 ripCount = 22 +26233201 locktype1 = 1 +26233201 locktype2 = 2 +26233202 locktype3 = 5 +26233202 goalCount = 4 +26233203 goalTotal = 14 +26233203 otherCount = 30 +~~~ +26247738 UP 11 +26247738 1024 1024 +26248518 DOWN 11 +26248518 0 1024 +26248528 UP 11 +26248528 1024 1024 +26248828 DOWN 11 +26248828 0 1024 +26248837 UP 11 +26248837 1024 1024 +26255739 BEEP1 +26255739 BEEP2 +~~~ +~~~ +~~~ +26255767 1024 33555456 +~~~ +26255917 1024 1024 +26262091 DOWN 11 +26262091 0 1024 +~~~ +~~~ +26262114 0 0 +~~~ +~~~ +26262116 0 1 +~~~ +~~~ +26262118 0 3 +~~~ +~~~ +26262120 0 7 +~~~ +~~~ +26262122 0 15 +~~~ +~~~ +26262123 0 31 +~~~ +~~~ +26262125 0 63 +~~~ +~~~ +26262127 0 127 +~~~ +~~~ +26262129 0 255 +26262130 homeCount = 53 +26262130 waitCount = 23 +26262131 ripCount = 23 +26262131 locktype1 = 1 +26262132 locktype2 = 2 +26262153 locktype3 = 5 +26262153 goalCount = 4 +26262154 goalTotal = 14 +26262154 otherCount = 30 +~~~ +26262156 CURRENTGOAL IS [3] +~~~ +26266855 UP 2 +26266855 2 255 +~~~ +~~~ +26267703 DOWN 2 +26267703 0 255 +~~~ +~~~ +26267724 0 254 +~~~ +~~~ +26267726 0 252 +~~~ +~~~ +26267727 0 248 +~~~ +~~~ +26267729 0 240 +~~~ +~~~ +26267731 0 224 +~~~ +~~~ +26267733 0 192 +~~~ +~~~ +26267735 0 128 +~~~ +~~~ +26267737 0 0 +~~~ +~~~ +26267738 0 512 +26267739 homeCount = 53 +26267740 waitCount = 23 +26267740 ripCount = 23 +26267741 locktype1 = 1 +26267742 locktype2 = 2 +26267762 locktype3 = 5 +26267763 goalCount = 4 +26267763 goalTotal = 14 +26267764 otherCount = 31 +~~~ +26271543 UP 10 +26271543 waslock = 0 +26271543 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26271574 512 16777728 +~~~ +26271724 512 512 +26271742 DOWN 10 +26271742 0 512 +~~~ +26271766 UP 10 +26271767 waslock = 0 +26271766 512 512 +~~~ +~~~ +~~~ +26271769 512 1024 +26271770 homeCount = 54 +26271770 waitCount = 23 +26271771 ripCount = 23 +26271771 locktype1 = 1 +26271772 locktype2 = 2 +26271772 locktype3 = 5 +26271773 goalCount = 4 +26271794 goalTotal = 14 +26271794 otherCount = 31 +~~~ +~~~ +26276322 DOWN 10 +26276322 0 1024 +~~~ +~~~ +~~~ +26276348 UP 10 +26276348 waslock = 0 +26276348 512 1024 +~~~ +26276350 homeCount = 54 +26276351 waitCount = 23 +26276351 ripCount = 23 +26276352 locktype1 = 1 +26276352 locktype2 = 2 +26276353 locktype3 = 5 +26276353 goalCount = 4 +26276354 goalTotal = 14 +26276354 otherCount = 31 +~~~ +~~~ +26276422 DOWN 10 +26276422 0 1024 +~~~ +~~~ +~~~ +~~~ +26276450 homeCount = 54 +26276451 waitCount = 23 +26276451 ripCount = 23 +26276452 locktype1 = 1 +26276452 locktype2 = 2 +26276453 locktype3 = 5 +26276453 goalCount = 4 +26276454 goalTotal = 14 +26276454 otherCount = 31 +~~~ +26278218 UP 11 +26278218 1024 1024 +26278776 DOWN 11 +26278776 0 1024 +26278976 LOCKOUT 3 +~~~ +26278999 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26279003 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26279119 UP 11 +26279119 1024 0 +26280486 DOWN 11 +26280486 0 0 +26280724 UP 11 +26280724 1024 0 +26281454 DOWN 11 +26281454 0 0 +26281479 UP 11 +26281479 1024 0 +26283087 DOWN 11 +26283087 0 0 +26287949 UP 7 +26287949 64 0 +26288421 DOWN 7 +26288421 0 0 +26288485 64 0 +26289335 DOWN 7 +26289335 0 0 +26299747 512 0 +26300083 0 0 +26303999 LOCKEND +~~~ +~~~ +~~~ +26304019 0 512 +26306470 UP 10 +26306471 waslock = 0 +26306470 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26306503 512 16777728 +~~~ +26306653 512 512 +26306805 DOWN 10 +26306805 0 512 +~~~ +~~~ +26306827 0 1536 +~~~ +~~~ +26306829 0 1024 +26306830 homeCount = 55 +26306831 waitCount = 23 +26306831 ripCount = 23 +26306832 locktype1 = 1 +26306832 locktype2 = 2 +26306833 locktype3 = 6 +26306833 goalCount = 4 +26306834 goalTotal = 14 +26306834 otherCount = 31 +~~~ +26307269 UP 10 +26307269 waslock = 0 +26307269 512 1024 +~~~ +26311394 DOWN 10 +26311394 0 1024 +~~~ +~~~ +~~~ +~~~ +26311414 homeCount = 55 +26311415 waitCount = 23 +26311415 ripCount = 23 +26311416 locktype1 = 1 +26311416 locktype2 = 2 +26311417 locktype3 = 6 +26311417 goalCount = 4 +26311418 goalTotal = 14 +26311418 otherCount = 31 +~~~ +26351737 UP 10 +26351737 waslock = 0 +26351737 512 1024 +26351742 DOWN 10 +26351742 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +26351768 homeCount = 55 +26351768 waitCount = 23 +26351769 ripCount = 23 +26351769 locktype1 = 1 +26351770 locktype2 = 2 +26351770 locktype3 = 6 +26351771 goalCount = 4 +26351771 goalTotal = 14 +26351772 otherCount = 31 +~~~ +26372865 UP 1 +26372865 1 1024 +~~~ +26372883 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26372886 1 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26375957 DOWN 1 +26375957 0 0 +26385649 512 0 +26385845 0 0 +26386178 512 0 +26386431 0 0 +26386459 512 0 +26386675 0 0 +26386743 512 0 +26386792 0 0 +26386863 512 0 +26386871 0 0 +26392652 UP 12 +26392652 2048 0 +26393059 DOWN 12 +26393059 0 0 +26397883 LOCKEND +~~~ +~~~ +~~~ +26397903 0 512 +26399587 UP 12 +26399587 2048 512 +26399913 DOWN 12 +26399913 0 512 +26400043 UP 12 +26400043 2048 512 +26400088 DOWN 12 +26400088 0 512 +26400350 UP 12 +26400350 2048 512 +26400466 DOWN 12 +26400466 0 512 +26400557 UP 12 +26400557 2048 512 +26401146 DOWN 12 +26401146 0 512 +26401657 UP 12 +26401657 2048 512 +26401745 DOWN 12 +26401745 0 512 +26401786 UP 12 +26401785 2048 512 +26402161 DOWN 12 +26402161 0 512 +26412119 UP 10 +26412120 waslock = 0 +26412119 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26412148 512 16777728 +~~~ +26412157 DOWN 10 +26412157 0 16777728 +~~~ +~~~ +26412181 0 16778752 +~~~ +~~~ +26412183 0 16778240 +26412184 homeCount = 56 +26412185 waitCount = 23 +26412185 ripCount = 23 +26412186 locktype1 = 1 +26412186 locktype2 = 3 +26412187 locktype3 = 6 +26412187 goalCount = 4 +26412188 goalTotal = 14 +26412188 otherCount = 31 +~~~ +26412209 UP 10 +26412209 waslock = 0 +26412209 512 16778240 +~~~ +26412298 512 1024 +26412306 DOWN 10 +26412306 0 1024 +~~~ +~~~ +~~~ +~~~ +26412325 homeCount = 56 +26412326 waitCount = 23 +26412326 ripCount = 23 +26412327 locktype1 = 1 +26412327 locktype2 = 3 +26412328 locktype3 = 6 +26412328 goalCount = 4 +26412329 goalTotal = 14 +26412329 otherCount = 31 +~~~ +26412346 UP 10 +26412346 waslock = 0 +26412346 512 1024 +~~~ +26412417 DOWN 10 +26412417 0 1024 +~~~ +~~~ +~~~ +~~~ +26412448 homeCount = 56 +26412448 waitCount = 23 +26412449 ripCount = 23 +26412449 locktype1 = 1 +26412450 locktype2 = 3 +26412450 locktype3 = 6 +26412451 goalCount = 4 +26412451 goalTotal = 14 +26412452 otherCount = 31 +~~~ +26412489 UP 10 +26412489 waslock = 0 +26412489 512 1024 +~~~ +26412539 DOWN 10 +26412539 0 1024 +~~~ +~~~ +~~~ +~~~ +26412565 homeCount = 56 +26412566 waitCount = 23 +26412566 ripCount = 23 +26412567 locktype1 = 1 +26412567 locktype2 = 3 +26412568 locktype3 = 6 +26412568 goalCount = 4 +26412569 goalTotal = 14 +26412569 otherCount = 31 +~~~ +26412617 UP 10 +26412618 waslock = 0 +26412617 512 1024 +~~~ +26418530 DOWN 10 +26418530 0 1024 +~~~ +~~~ +~~~ +~~~ +26418559 homeCount = 56 +26418559 waitCount = 23 +26418560 ripCount = 23 +26418560 locktype1 = 1 +26418561 locktype2 = 3 +26418561 locktype3 = 6 +26418562 goalCount = 4 +26418562 goalTotal = 14 +26418563 otherCount = 31 +~~~ +26430877 UP 2 +26430877 2 1024 +~~~ +26430896 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26430900 2 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26431379 DOWN 2 +26431379 0 0 +26445486 512 0 +26445500 0 0 +26446355 512 0 +26446424 0 0 +26446456 512 0 +26446528 0 0 +26451352 UP 1 +26451352 1 0 +26451385 DOWN 1 +26451385 0 0 +26451422 1 0 +26452043 DOWN 1 +26452043 0 0 +26452263 1 0 +26452275 DOWN 1 +26452275 0 0 +26455896 LOCKEND +~~~ +~~~ +~~~ +26455917 0 512 +26474835 UP 10 +26474835 waslock = 0 +26474835 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26474862 512 16777728 +~~~ +26474896 DOWN 10 +26474896 0 16777728 +~~~ +~~~ +26474916 0 16778752 +~~~ +~~~ +26474918 0 16778240 +26474919 homeCount = 57 +26474920 waitCount = 23 +26474920 ripCount = 23 +26474921 locktype1 = 1 +26474921 locktype2 = 4 +26474922 locktype3 = 6 +26474922 goalCount = 4 +26474923 goalTotal = 14 +26474923 otherCount = 31 +~~~ +26474944 UP 10 +26474944 waslock = 0 +26474944 512 16778240 +~~~ +26475012 512 1024 +26475064 DOWN 10 +26475064 0 1024 +~~~ +~~~ +~~~ +~~~ +26475094 homeCount = 57 +26475095 waitCount = 23 +26475095 ripCount = 23 +26475096 locktype1 = 1 +26475096 locktype2 = 4 +26475097 locktype3 = 6 +26475097 goalCount = 4 +26475098 goalTotal = 14 +26475098 otherCount = 31 +~~~ +26475180 UP 10 +26475180 waslock = 0 +26475180 512 1024 +~~~ +26475308 DOWN 10 +26475308 0 1024 +~~~ +~~~ +~~~ +~~~ +26475331 homeCount = 57 +26475331 waitCount = 23 +26475332 ripCount = 23 +26475332 locktype1 = 1 +26475333 locktype2 = 4 +26475333 locktype3 = 6 +26475334 goalCount = 4 +26475334 goalTotal = 14 +26475335 otherCount = 31 +~~~ +26475336 UP 10 +26475336 waslock = 0 +26475335 512 1024 +~~~ +26480573 DOWN 10 +26480573 0 1024 +~~~ +~~~ +~~~ +~~~ +26480600 homeCount = 57 +26480600 waitCount = 23 +26480601 ripCount = 23 +26480601 locktype1 = 1 +26480602 locktype2 = 4 +26480602 locktype3 = 6 +26480603 goalCount = 4 +26480603 goalTotal = 14 +26480604 otherCount = 31 +~~~ +26482063 UP 11 +26482063 1024 1024 +26482260 DOWN 11 +26482260 0 1024 +26482460 LOCKOUT 3 +~~~ +26482478 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26482482 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26486116 UP 7 +26486116 64 0 +26486575 DOWN 7 +26486575 0 0 +26502358 512 0 +26502527 0 0 +26507478 LOCKEND +~~~ +~~~ +~~~ +26507497 0 512 +26610111 UP 10 +26610111 waslock = 0 +26610111 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26610142 512 16777728 +~~~ +26610292 512 512 +26610742 DOWN 10 +26610742 0 512 +~~~ +~~~ +26610767 0 1536 +~~~ +~~~ +26610769 0 1024 +26610770 homeCount = 58 +26610771 waitCount = 23 +26610771 ripCount = 23 +26610772 locktype1 = 1 +26610772 locktype2 = 4 +26610773 locktype3 = 7 +26610773 goalCount = 4 +26610774 goalTotal = 14 +26610774 otherCount = 31 +~~~ +26610795 UP 10 +26610796 waslock = 0 +26610795 512 1024 +~~~ +26611050 DOWN 10 +26611050 0 1024 +26611074 UP 10 +26611075 waslock = 0 +26611074 512 1024 +~~~ +~~~ +~~~ +~~~ +26611083 homeCount = 58 +26611083 waitCount = 23 +26611084 ripCount = 23 +26611084 locktype1 = 1 +26611085 locktype2 = 4 +26611085 locktype3 = 7 +26611086 goalCount = 4 +26611086 goalTotal = 14 +26611087 otherCount = 31 +~~~ +~~~ +26611219 DOWN 10 +26611219 0 1024 +~~~ +~~~ +~~~ +~~~ +26611240 homeCount = 58 +26611240 waitCount = 23 +26611241 ripCount = 23 +26611241 locktype1 = 1 +26611242 locktype2 = 4 +26611242 locktype3 = 7 +26611243 goalCount = 4 +26611243 goalTotal = 14 +26611244 otherCount = 31 +~~~ +26611244 UP 10 +26611245 waslock = 0 +26611244 512 1024 +~~~ +26611380 DOWN 10 +26611380 0 1024 +~~~ +26611412 UP 10 +26611412 waslock = 0 +26611412 512 1024 +~~~ +~~~ +~~~ +26611415 homeCount = 58 +26611416 waitCount = 23 +26611416 ripCount = 23 +26611417 locktype1 = 1 +26611417 locktype2 = 4 +26611418 locktype3 = 7 +26611418 goalCount = 4 +26611419 goalTotal = 14 +26611419 otherCount = 31 +~~~ +~~~ +26611544 DOWN 10 +26611544 0 1024 +26611573 UP 10 +26611573 waslock = 0 +26611573 512 1024 +~~~ +~~~ +~~~ +~~~ +26611579 homeCount = 58 +26611579 waitCount = 23 +26611580 ripCount = 23 +26611580 locktype1 = 1 +26611581 locktype2 = 4 +26611581 locktype3 = 7 +26611582 goalCount = 4 +26611582 goalTotal = 14 +26611583 otherCount = 31 +~~~ +~~~ +26611731 DOWN 10 +26611731 0 1024 +~~~ +~~~ +~~~ +~~~ +26611755 homeCount = 58 +26611756 waitCount = 23 +26611756 ripCount = 23 +26611757 locktype1 = 1 +26611757 locktype2 = 4 +26611758 locktype3 = 7 +26611758 goalCount = 4 +26611759 goalTotal = 14 +26611759 otherCount = 31 +~~~ +26611760 UP 10 +26611760 waslock = 0 +26611760 512 1024 +~~~ +26611907 DOWN 10 +26611907 0 1024 +~~~ +~~~ +~~~ +~~~ +26611935 homeCount = 58 +26611935 waitCount = 23 +26611936 ripCount = 23 +26611936 locktype1 = 1 +26611937 locktype2 = 4 +26611937 locktype3 = 7 +26611938 goalCount = 4 +26611938 goalTotal = 14 +26611939 otherCount = 31 +~~~ +26611943 UP 10 +26611943 waslock = 0 +26611943 512 1024 +~~~ +26612078 DOWN 10 +26612078 0 1024 +26612098 UP 10 +26612098 waslock = 0 +26612098 512 1024 +~~~ +~~~ +~~~ +~~~ +26612110 homeCount = 58 +26612111 waitCount = 23 +26612111 ripCount = 23 +26612112 locktype1 = 1 +26612112 locktype2 = 4 +26612113 locktype3 = 7 +26612113 goalCount = 4 +26612114 goalTotal = 14 +26612114 otherCount = 31 +~~~ +~~~ +26613140 DOWN 10 +26613140 0 1024 +26613146 UP 10 +26613146 waslock = 0 +26613146 512 1024 +~~~ +~~~ +~~~ +~~~ +26613168 homeCount = 58 +26613169 waitCount = 23 +26613169 ripCount = 23 +26613170 locktype1 = 1 +26613170 locktype2 = 4 +26613171 locktype3 = 7 +26613171 goalCount = 4 +26613172 goalTotal = 14 +26613172 otherCount = 31 +~~~ +~~~ +26613312 DOWN 10 +26613312 0 1024 +26613330 UP 10 +26613330 waslock = 0 +26613330 512 1024 +~~~ +~~~ +~~~ +~~~ +26613338 homeCount = 58 +26613339 waitCount = 23 +26613339 ripCount = 23 +26613340 locktype1 = 1 +26613340 locktype2 = 4 +26613341 locktype3 = 7 +26613341 goalCount = 4 +26613342 goalTotal = 14 +26613342 otherCount = 31 +~~~ +~~~ +26613483 DOWN 10 +26613483 0 1024 +~~~ +~~~ +~~~ +~~~ +26613506 homeCount = 58 +26613507 waitCount = 23 +26613508 ripCount = 23 +26613508 locktype1 = 1 +26613509 locktype2 = 4 +26613509 locktype3 = 7 +26613510 goalCount = 4 +26613510 goalTotal = 14 +26613511 otherCount = 31 +~~~ +26613513 UP 10 +26613514 waslock = 0 +26613513 512 1024 +~~~ +26614355 DOWN 10 +26614355 0 1024 +26614372 UP 10 +26614373 waslock = 0 +26614372 512 1024 +~~~ +~~~ +~~~ +~~~ +26614377 homeCount = 58 +26614378 waitCount = 23 +26614378 ripCount = 23 +26614379 locktype1 = 1 +26614379 locktype2 = 4 +26614380 locktype3 = 7 +26614380 goalCount = 4 +26614381 goalTotal = 14 +26614381 otherCount = 31 +~~~ +~~~ +26614729 DOWN 10 +26614729 0 1024 +26614735 UP 10 +26614735 waslock = 0 +26614735 512 1024 +~~~ +~~~ +~~~ +~~~ +26614757 homeCount = 58 +26614758 waitCount = 23 +26614758 ripCount = 23 +26614759 locktype1 = 1 +26614759 locktype2 = 4 +26614760 locktype3 = 7 +26614760 goalCount = 4 +26614761 goalTotal = 14 +26614761 otherCount = 31 +~~~ +~~~ +26614892 DOWN 10 +26614892 0 1024 +~~~ +26614914 UP 10 +26614914 waslock = 0 +26614914 512 1024 +~~~ +~~~ +~~~ +26614917 homeCount = 58 +26614918 waitCount = 23 +26614918 ripCount = 23 +26614919 locktype1 = 1 +26614919 locktype2 = 4 +26614920 locktype3 = 7 +26614920 goalCount = 4 +26614921 goalTotal = 14 +26614921 otherCount = 31 +~~~ +~~~ +26615008 DOWN 10 +26615008 0 1024 +~~~ +~~~ +~~~ +~~~ +26615036 homeCount = 58 +26615037 waitCount = 23 +26615038 ripCount = 23 +26615038 locktype1 = 1 +26615039 locktype2 = 4 +26615039 locktype3 = 7 +26615040 goalCount = 4 +26615040 goalTotal = 14 +26615041 otherCount = 31 +~~~ +26638056 UP 5 +26638056 16 1024 +~~~ +26638084 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26638088 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26638140 DOWN 5 +26638140 0 0 +26638216 16 0 +26638335 DOWN 5 +26638335 0 0 +26638492 16 0 +26638740 DOWN 5 +26638740 0 0 +26663084 LOCKEND +~~~ +~~~ +~~~ +26663104 0 512 +26828055 UP 10 +26828055 waslock = 0 +26828055 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26828081 512 16777728 +~~~ +26828231 512 512 +26828398 DOWN 10 +26828398 0 512 +~~~ +~~~ +26828424 0 1536 +~~~ +~~~ +26828426 0 1024 +26828427 homeCount = 59 +26828427 waitCount = 23 +26828428 ripCount = 23 +26828428 locktype1 = 1 +26828429 locktype2 = 5 +26828429 locktype3 = 7 +26828430 goalCount = 4 +26828430 goalTotal = 14 +26828431 otherCount = 31 +~~~ +26828487 UP 10 +26828488 waslock = 0 +26828487 512 1024 +~~~ +26828917 DOWN 10 +26828917 0 1024 +~~~ +~~~ +~~~ +26828938 UP 10 +26828938 waslock = 0 +26828938 512 1024 +~~~ +26828940 homeCount = 59 +26828940 waitCount = 23 +26828941 ripCount = 23 +26828941 locktype1 = 1 +26828942 locktype2 = 5 +26828942 locktype3 = 7 +26828943 goalCount = 4 +26828943 goalTotal = 14 +26828944 otherCount = 31 +~~~ +~~~ +26829068 DOWN 10 +26829068 0 1024 +26829088 UP 10 +26829088 waslock = 0 +26829088 512 1024 +~~~ +~~~ +~~~ +~~~ +26829100 homeCount = 59 +26829100 waitCount = 23 +26829101 ripCount = 23 +26829101 locktype1 = 1 +26829102 locktype2 = 5 +26829102 locktype3 = 7 +26829103 goalCount = 4 +26829103 goalTotal = 14 +26829104 otherCount = 31 +~~~ +~~~ +26829218 DOWN 10 +26829218 0 1024 +26829240 UP 10 +26829240 waslock = 0 +26829240 512 1024 +~~~ +~~~ +~~~ +~~~ +26829251 homeCount = 59 +26829252 waitCount = 23 +26829252 ripCount = 23 +26829253 locktype1 = 1 +26829253 locktype2 = 5 +26829254 locktype3 = 7 +26829254 goalCount = 4 +26829255 goalTotal = 14 +26829256 otherCount = 31 +~~~ +~~~ +26829378 DOWN 10 +26829378 0 1024 +26829396 UP 10 +26829397 waslock = 0 +26829396 512 1024 +~~~ +~~~ +~~~ +~~~ +26829421 homeCount = 59 +26829422 waitCount = 23 +26829422 ripCount = 23 +26829423 locktype1 = 1 +26829423 locktype2 = 5 +26829424 locktype3 = 7 +26829424 goalCount = 4 +26829425 goalTotal = 14 +26829425 otherCount = 31 +~~~ +~~~ +26829533 DOWN 10 +26829533 0 1024 +26829546 UP 10 +26829546 waslock = 0 +26829546 512 1024 +~~~ +~~~ +~~~ +~~~ +26829570 homeCount = 59 +26829571 waitCount = 23 +26829571 ripCount = 23 +26829572 locktype1 = 1 +26829572 locktype2 = 5 +26829573 locktype3 = 7 +26829573 goalCount = 4 +26829574 goalTotal = 14 +26829574 otherCount = 31 +~~~ +~~~ +26836773 DOWN 10 +26836773 0 1024 +~~~ +~~~ +~~~ +~~~ +26836797 homeCount = 59 +26836798 waitCount = 23 +26836798 ripCount = 23 +26836799 locktype1 = 1 +26836799 locktype2 = 5 +26836800 locktype3 = 7 +26836800 goalCount = 4 +26836801 goalTotal = 14 +26836801 otherCount = 31 +~~~ +26836807 UP 10 +26836807 waslock = 0 +26836807 512 1024 +~~~ +26836875 DOWN 10 +26836875 0 1024 +~~~ +~~~ +~~~ +~~~ +26836898 homeCount = 59 +26836899 waitCount = 23 +26836899 ripCount = 23 +26836900 locktype1 = 1 +26836900 locktype2 = 5 +26836901 locktype3 = 7 +26836901 goalCount = 4 +26836902 goalTotal = 14 +26836902 otherCount = 31 +~~~ +26840595 UP 11 +26840595 1024 1024 +26841373 DOWN 11 +26841373 0 1024 +26841547 UP 11 +26841547 1024 1024 +26842677 DOWN 11 +26842677 0 1024 +26842764 UP 11 +26842764 1024 1024 +26844956 DOWN 11 +26844956 0 1024 +26845156 LOCKOUT 3 +~~~ +26845172 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +26845176 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26845183 UP 11 +26845183 1024 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26845256 DOWN 11 +26845256 0 0 +26845365 UP 11 +26845365 1024 0 +26845641 DOWN 11 +26845641 0 0 +26846066 UP 11 +26846066 1024 0 +26846157 DOWN 11 +26846157 0 0 +26866622 UP 8 +26866622 128 0 +26866677 DOWN 8 +26866677 0 0 +26866696 128 0 +26867041 DOWN 8 +26867041 0 0 +26867078 128 0 +26867109 DOWN 8 +26867109 0 0 +26870172 LOCKEND +~~~ +~~~ +~~~ +26870193 0 512 +26877037 UP 10 +26877037 waslock = 0 +26877037 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26877067 512 16777728 +~~~ +26877073 DOWN 10 +26877073 0 16777728 +~~~ +~~~ +26877082 0 16778752 +~~~ +~~~ +26877084 0 16778240 +26877085 homeCount = 60 +26877085 waitCount = 23 +26877086 ripCount = 23 +26877086 locktype1 = 1 +26877087 locktype2 = 5 +26877087 locktype3 = 8 +26877088 goalCount = 4 +26877088 goalTotal = 14 +26877089 otherCount = 31 +~~~ +26877151 UP 10 +26877151 waslock = 0 +26877151 512 16778240 +~~~ +26877201 DOWN 10 +26877201 0 16778240 +26877217 0 1024 +~~~ +~~~ +~~~ +~~~ +26877224 homeCount = 60 +26877225 waitCount = 23 +26877225 ripCount = 23 +26877226 locktype1 = 1 +26877226 locktype2 = 5 +26877227 locktype3 = 8 +26877227 goalCount = 4 +26877228 goalTotal = 14 +26877228 otherCount = 31 +~~~ +26877534 UP 10 +26877535 waslock = 0 +26877534 512 1024 +~~~ +26877694 DOWN 10 +26877694 0 1024 +~~~ +~~~ +~~~ +26877715 UP 10 +26877715 waslock = 0 +26877715 512 1024 +~~~ +26877717 homeCount = 60 +26877718 waitCount = 23 +26877718 ripCount = 23 +26877719 locktype1 = 1 +26877719 locktype2 = 5 +26877720 locktype3 = 8 +26877720 goalCount = 4 +26877721 goalTotal = 14 +26877742 otherCount = 31 +~~~ +~~~ +26877844 DOWN 10 +26877844 0 1024 +~~~ +~~~ +~~~ +~~~ +26877866 homeCount = 60 +26877866 waitCount = 23 +26877867 ripCount = 23 +26877867 locktype1 = 1 +26877868 locktype2 = 5 +26877868 locktype3 = 8 +26877869 goalCount = 4 +26877869 goalTotal = 14 +26877870 otherCount = 31 +~~~ +26877872 UP 10 +26877873 waslock = 0 +26877872 512 1024 +~~~ +26877995 DOWN 10 +26877994 0 1024 +~~~ +~~~ +~~~ +~~~ +26878015 homeCount = 60 +26878016 waitCount = 23 +26878016 ripCount = 23 +26878017 locktype1 = 1 +26878017 locktype2 = 5 +26878018 locktype3 = 8 +26878018 goalCount = 4 +26878019 goalTotal = 14 +26878019 otherCount = 31 +~~~ +26878027 UP 10 +26878027 waslock = 0 +26878027 512 1024 +~~~ +26878159 DOWN 10 +26878159 0 1024 +26878173 UP 10 +26878174 waslock = 0 +26878173 512 1024 +~~~ +~~~ +~~~ +~~~ +26878196 homeCount = 60 +26878196 waitCount = 23 +26878197 ripCount = 23 +26878197 locktype1 = 1 +26878198 locktype2 = 5 +26878198 locktype3 = 8 +26878199 goalCount = 4 +26878199 goalTotal = 14 +26878200 otherCount = 31 +~~~ +~~~ +26878498 DOWN 10 +26878498 0 1024 +26878503 UP 10 +26878503 waslock = 0 +26878503 512 1024 +~~~ +~~~ +~~~ +~~~ +26878527 homeCount = 60 +26878528 waitCount = 23 +26878528 ripCount = 23 +26878529 locktype1 = 1 +26878529 locktype2 = 5 +26878530 locktype3 = 8 +26878530 goalCount = 4 +26878531 goalTotal = 14 +26878531 otherCount = 31 +~~~ +~~~ +26882217 DOWN 10 +26882217 0 1024 +26882229 UP 10 +26882229 waslock = 0 +26882229 512 1024 +~~~ +~~~ +~~~ +~~~ +26882244 homeCount = 60 +26882245 waitCount = 23 +26882245 ripCount = 23 +26882246 locktype1 = 1 +26882246 locktype2 = 5 +26882247 locktype3 = 8 +26882247 goalCount = 4 +26882248 goalTotal = 14 +26882248 otherCount = 31 +~~~ +~~~ +26882330 DOWN 10 +26882330 0 1024 +~~~ +~~~ +~~~ +~~~ +26882359 homeCount = 60 +26882360 waitCount = 23 +26882360 ripCount = 23 +26882361 locktype1 = 1 +26882361 locktype2 = 5 +26882362 locktype3 = 8 +26882362 goalCount = 4 +26882363 goalTotal = 14 +26882363 otherCount = 31 +~~~ +26882377 UP 10 +26882378 waslock = 0 +26882377 512 1024 +~~~ +26882442 DOWN 10 +26882442 0 1024 +~~~ +~~~ +~~~ +~~~ +26882465 homeCount = 60 +26882465 waitCount = 23 +26882466 ripCount = 23 +26882466 locktype1 = 1 +26882467 locktype2 = 5 +26882467 locktype3 = 8 +26882468 goalCount = 4 +26882468 goalTotal = 14 +26882469 otherCount = 31 +~~~ +26885557 UP 11 +26885557 1024 1024 +26886036 DOWN 11 +26886036 0 1024 +26886087 UP 11 +26886087 1024 1024 +26888031 DOWN 11 +26888031 0 1024 +26888091 UP 11 +26888091 1024 1024 +26889084 DOWN 11 +26889084 0 1024 +26889112 UP 11 +26889112 1024 1024 +26889129 DOWN 11 +26889129 0 1024 +26889167 UP 11 +26889167 1024 1024 +26892557 BEEP1 +26892557 BEEP2 +~~~ +~~~ +~~~ +26892586 1024 33555456 +~~~ +26892736 1024 1024 +26899793 DOWN 11 +26899793 0 1024 +~~~ +~~~ +26899812 0 0 +~~~ +~~~ +26899814 0 1 +~~~ +~~~ +26899816 0 3 +~~~ +~~~ +26899818 0 7 +~~~ +~~~ +26899820 0 15 +~~~ +~~~ +26899821 0 31 +~~~ +~~~ +26899823 0 63 +~~~ +~~~ +26899825 0 127 +~~~ +~~~ +26899827 0 255 +26899828 homeCount = 60 +26899828 waitCount = 23 +26899829 ripCount = 24 +26899830 locktype1 = 1 +26899830 locktype2 = 5 +26899851 locktype3 = 8 +26899852 goalCount = 4 +26899852 goalTotal = 14 +26899853 otherCount = 31 +~~~ +26899854 CURRENTGOAL IS [3] +~~~ +26899854 UP 11 +26899854 1024 255 +26899916 DOWN 11 +26899916 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26899951 homeCount = 60 +26899951 waitCount = 23 +26899952 ripCount = 24 +26899952 locktype1 = 1 +26899953 locktype2 = 5 +26899953 locktype3 = 8 +26899954 goalCount = 4 +26899954 goalTotal = 14 +26899955 otherCount = 31 +~~~ +26899956 CURRENTGOAL IS [3] +~~~ +26903241 UP 6 +26903241 32 255 +~~~ +~~~ +26903783 DOWN 6 +26903783 0 255 +~~~ +~~~ +26903805 0 254 +~~~ +~~~ +26903807 0 252 +~~~ +~~~ +26903809 0 248 +~~~ +~~~ +26903810 0 240 +~~~ +~~~ +26903812 0 224 +~~~ +~~~ +26903814 0 192 +~~~ +~~~ +26903816 0 128 +~~~ +~~~ +26903818 0 0 +~~~ +~~~ +26903820 0 512 +26903821 homeCount = 60 +26903821 waitCount = 23 +26903822 ripCount = 24 +26903822 locktype1 = 1 +26903823 locktype2 = 5 +26903844 locktype3 = 8 +26903844 goalCount = 4 +26903845 goalTotal = 14 +26903845 otherCount = 32 +~~~ +26911555 UP 10 +26911555 waslock = 0 +26911555 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26911582 512 16777728 +~~~ +26911731 512 512 +26912233 DOWN 10 +26912233 0 512 +~~~ +~~~ +26912255 0 2560 +~~~ +~~~ +26912257 0 2048 +26912258 homeCount = 61 +26912259 waitCount = 23 +26912259 ripCount = 24 +26912260 locktype1 = 1 +26912260 locktype2 = 5 +26912261 locktype3 = 8 +26912261 goalCount = 4 +26912262 goalTotal = 14 +26912262 otherCount = 32 +~~~ +26912287 UP 10 +26912287 waslock = 0 +26912287 512 2048 +~~~ +26920292 DOWN 10 +26920292 0 2048 +~~~ +~~~ +~~~ +~~~ +26920320 homeCount = 61 +26920320 waitCount = 23 +26920321 ripCount = 24 +26920321 locktype1 = 1 +26920322 locktype2 = 5 +26920322 locktype3 = 8 +26920323 goalCount = 4 +26920323 goalTotal = 14 +26920324 otherCount = 32 +~~~ +26920339 UP 10 +26920340 waslock = 0 +26920339 512 2048 +~~~ +26920386 DOWN 10 +26920386 0 2048 +~~~ +~~~ +~~~ +~~~ +26920410 homeCount = 61 +26920411 waitCount = 23 +26920411 ripCount = 24 +26920412 locktype1 = 1 +26920412 locktype2 = 5 +26920413 locktype3 = 8 +26920413 goalCount = 4 +26920414 goalTotal = 14 +26920414 otherCount = 32 +~~~ +26923784 UP 12 +26923784 2048 2048 +26925861 DOWN 12 +26925861 0 2048 +26925884 UP 12 +26925884 2048 2048 +26925973 DOWN 12 +26925973 0 2048 +26926052 UP 12 +26926052 2048 2048 +26926816 DOWN 12 +26926816 0 2048 +26926864 UP 12 +26926864 2048 2048 +26926874 DOWN 12 +26926874 0 2048 +26926909 UP 12 +26926909 2048 2048 +26926925 DOWN 12 +26926925 0 2048 +26926989 UP 12 +26926989 2048 2048 +26926999 DOWN 12 +26926999 0 2048 +26927041 UP 12 +26927041 2048 2048 +26927325 DOWN 12 +26927325 0 2048 +26927356 UP 12 +26927356 2048 2048 +26927785 CLICK1 +26927785 CLICK2 +~~~ +~~~ +~~~ +26927811 2048 67110912 +~~~ +26927961 2048 2048 +26928178 DOWN 12 +26928178 0 2048 +26928199 UP 12 +26928199 2048 2048 +~~~ +~~~ +26928218 2048 0 +~~~ +~~~ +26928220 2048 1 +~~~ +~~~ +26928222 2048 3 +~~~ +~~~ +26928224 2048 7 +~~~ +~~~ +26928226 2048 15 +~~~ +~~~ +26928227 2048 31 +~~~ +~~~ +26928229 2048 63 +~~~ +~~~ +26928231 2048 127 +~~~ +~~~ +26928233 2048 255 +26928234 homeCount = 61 +26928234 waitCount = 24 +26928235 ripCount = 24 +26928256 locktype1 = 1 +26928256 locktype2 = 5 +26928257 locktype3 = 8 +26928257 goalCount = 4 +26928258 goalTotal = 14 +26928258 otherCount = 32 +~~~ +26928259 CURRENTGOAL IS [3] +~~~ +26933900 DOWN 12 +26933900 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26933935 homeCount = 61 +26933936 waitCount = 24 +26933937 ripCount = 24 +26933937 locktype1 = 1 +26933938 locktype2 = 5 +26933938 locktype3 = 8 +26933939 goalCount = 4 +26933939 goalTotal = 14 +26933940 otherCount = 32 +~~~ +26933941 CURRENTGOAL IS [3] +~~~ +26933962 UP 12 +26933962 2048 255 +26933994 DOWN 12 +26933994 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +26934035 homeCount = 61 +26934036 waitCount = 24 +26934036 ripCount = 24 +26934037 locktype1 = 1 +26934037 locktype2 = 5 +26934038 locktype3 = 8 +26934038 goalCount = 4 +26934039 goalTotal = 14 +26934039 otherCount = 32 +~~~ +26934040 CURRENTGOAL IS [3] +~~~ +26937185 UP 3 +26937185 4 255 +~~~ +~~~ +26937210 outer reward +~~~ +26937210 4 262399 +~~~ +~~~ +26937426 DOWN 3 +26937426 0 262399 +~~~ +~~~ +26937450 0 262398 +~~~ +~~~ +26937452 0 262396 +~~~ +~~~ +26937453 0 262392 +~~~ +~~~ +26937455 0 262384 +~~~ +~~~ +26937457 0 262368 +~~~ +~~~ +26937459 0 262336 +~~~ +~~~ +26937461 0 262272 +~~~ +~~~ +26937463 0 262144 +~~~ +~~~ +26937464 0 262656 +26937465 homeCount = 61 +26937466 waitCount = 24 +26937466 ripCount = 24 +26937487 locktype1 = 1 +26937488 locktype2 = 5 +26937488 locktype3 = 8 +26937489 goalCount = 5 +26937489 goalTotal = 15 +26937490 otherCount = 32 +~~~ +26937490 4 262656 +26937660 4 512 +26937920 DOWN 3 +26937920 0 512 +26937928 4 512 +26938037 DOWN 3 +26938037 0 512 +26938051 4 512 +26938169 DOWN 3 +26938169 0 512 +26938180 4 512 +26938303 DOWN 3 +26938303 0 512 +26938316 4 512 +26938445 DOWN 3 +26938445 0 512 +26938449 4 512 +26947063 DOWN 3 +26947063 0 512 +26947088 4 512 +26947159 DOWN 3 +26947159 0 512 +26953706 UP 10 +26953707 waslock = 0 +26953706 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26953737 512 16777728 +~~~ +26953887 512 512 +26957615 DOWN 10 +26957615 0 512 +~~~ +~~~ +26957638 0 2560 +~~~ +~~~ +26957640 0 2048 +26957641 homeCount = 62 +26957641 waitCount = 24 +26957642 ripCount = 24 +26957642 locktype1 = 1 +26957643 locktype2 = 5 +26957643 locktype3 = 8 +26957644 goalCount = 5 +26957644 goalTotal = 15 +26957645 otherCount = 32 +~~~ +26957681 UP 10 +26957681 waslock = 0 +26957681 512 2048 +26957700 DOWN 10 +26957700 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +26957724 homeCount = 62 +26957724 waitCount = 24 +26957725 ripCount = 24 +26957725 locktype1 = 1 +26957726 locktype2 = 5 +26957726 locktype3 = 8 +26957727 goalCount = 5 +26957727 goalTotal = 15 +26957728 otherCount = 32 +~~~ +26962052 UP 12 +26962052 2048 2048 +26964338 DOWN 12 +26964338 0 2048 +26964404 UP 12 +26964404 2048 2048 +26964424 DOWN 12 +26964424 0 2048 +26964540 UP 12 +26964540 2048 2048 +26965052 CLICK1 +26965052 CLICK2 +~~~ +~~~ +~~~ +26965081 2048 67110912 +~~~ +26965231 2048 2048 +26973280 DOWN 12 +26973280 0 2048 +~~~ +~~~ +26973298 0 0 +~~~ +~~~ +26973300 0 1 +~~~ +~~~ +26973302 0 3 +~~~ +~~~ +26973303 0 7 +~~~ +~~~ +26973305 0 15 +~~~ +~~~ +26973307 0 31 +~~~ +~~~ +26973309 0 63 +~~~ +~~~ +26973311 0 127 +~~~ +~~~ +26973312 0 255 +26973314 homeCount = 62 +26973314 waitCount = 25 +26973315 ripCount = 24 +26973315 locktype1 = 1 +26973316 locktype2 = 5 +26973337 locktype3 = 8 +26973337 goalCount = 5 +26973338 goalTotal = 15 +26973338 otherCount = 32 +~~~ +26973339 CURRENTGOAL IS [3] +~~~ +26977815 UP 3 +26977815 4 255 +~~~ +~~~ +26977840 DOWN 3 +26977840 0 255 +26977841 outer reward +~~~ +~~~ +26977843 0 262399 +~~~ +~~~ +~~~ +26977869 0 262398 +~~~ +~~~ +26977871 0 262396 +~~~ +~~~ +26977873 0 262392 +~~~ +~~~ +26977875 0 262384 +~~~ +~~~ +26977876 0 262368 +~~~ +~~~ +26977878 0 262336 +~~~ +~~~ +26977880 0 262272 +~~~ +~~~ +26977882 0 262144 +~~~ +~~~ +26977884 0 262656 +26977885 homeCount = 62 +26977885 waitCount = 25 +26977886 ripCount = 24 +26977907 locktype1 = 1 +26977907 locktype2 = 5 +26977908 locktype3 = 8 +26977908 goalCount = 6 +26977909 goalTotal = 16 +26977909 otherCount = 32 +~~~ +26977915 4 262656 +26978097 DOWN 3 +26978097 0 262656 +26978154 4 262656 +26978291 4 512 +26978403 DOWN 3 +26978403 0 512 +26978408 4 512 +26978514 DOWN 3 +26978514 0 512 +26978539 4 512 +26978642 DOWN 3 +26978642 0 512 +26978666 4 512 +26978769 DOWN 3 +26978769 0 512 +26978798 4 512 +26978909 DOWN 3 +26978909 0 512 +26978930 4 512 +26979051 DOWN 3 +26979051 0 512 +26979070 4 512 +26979189 DOWN 3 +26979189 0 512 +26979206 4 512 +26979331 DOWN 3 +26979331 0 512 +26979347 4 512 +26979473 DOWN 3 +26979473 0 512 +26979486 4 512 +26986107 DOWN 3 +26986107 0 512 +26986116 4 512 +26986209 DOWN 3 +26986209 0 512 +26996165 UP 10 +26996165 waslock = 0 +26996165 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +26996194 512 16777728 +~~~ +26996209 DOWN 10 +26996209 0 16777728 +~~~ +~~~ +26996229 0 16778752 +~~~ +~~~ +26996231 0 16778240 +26996232 homeCount = 63 +26996233 waitCount = 25 +26996233 ripCount = 24 +26996234 locktype1 = 1 +26996234 locktype2 = 5 +26996235 locktype3 = 8 +26996235 goalCount = 6 +26996236 goalTotal = 16 +26996236 otherCount = 32 +~~~ +26996334 UP 10 +26996335 waslock = 0 +26996334 512 16778240 +26996344 512 1024 +~~~ +26999145 DOWN 10 +26999145 0 1024 +~~~ +~~~ +~~~ +~~~ +26999172 homeCount = 63 +26999173 waitCount = 25 +26999173 ripCount = 24 +26999174 locktype1 = 1 +26999174 locktype2 = 5 +26999175 locktype3 = 8 +26999175 goalCount = 6 +26999176 goalTotal = 16 +26999176 otherCount = 32 +~~~ +26999205 UP 10 +26999205 waslock = 0 +26999205 512 1024 +~~~ +26999233 DOWN 10 +26999233 0 1024 +~~~ +~~~ +~~~ +~~~ +26999253 homeCount = 63 +26999254 waitCount = 25 +26999255 ripCount = 24 +26999255 locktype1 = 1 +26999256 locktype2 = 5 +26999256 locktype3 = 8 +26999257 goalCount = 6 +26999257 goalTotal = 16 +26999258 otherCount = 32 +~~~ +27001162 UP 11 +27001162 1024 1024 +27001306 DOWN 11 +27001306 0 1024 +27001401 UP 11 +27001401 1024 1024 +27003166 DOWN 11 +27003166 0 1024 +27003171 UP 11 +27003171 1024 1024 +27004049 DOWN 11 +27004049 0 1024 +27004086 UP 11 +27004086 1024 1024 +27007946 DOWN 11 +27007946 0 1024 +27008003 UP 11 +27008003 1024 1024 +27008162 BEEP1 +27008162 BEEP2 +~~~ +~~~ +~~~ +27008181 1024 33555456 +~~~ +27008331 1024 1024 +27014589 DOWN 11 +27014589 0 1024 +27014597 UP 11 +27014597 1024 1024 +~~~ +~~~ +27014609 1024 0 +~~~ +~~~ +27014611 1024 1 +~~~ +~~~ +27014613 1024 3 +~~~ +~~~ +27014615 1024 7 +~~~ +~~~ +27014617 1024 15 +~~~ +~~~ +27014618 1024 31 +~~~ +~~~ +27014620 1024 63 +~~~ +~~~ +27014622 1024 127 +~~~ +~~~ +27014624 1024 255 +27014625 homeCount = 63 +27014625 waitCount = 25 +27014626 ripCount = 25 +27014626 locktype1 = 1 +27014648 locktype2 = 5 +27014648 locktype3 = 8 +27014649 goalCount = 6 +27014649 goalTotal = 16 +27014650 otherCount = 32 +~~~ +27014651 CURRENTGOAL IS [3] +~~~ +27014657 DOWN 11 +27014657 0 255 +27014686 UP 11 +27014686 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27014706 homeCount = 63 +27014707 waitCount = 25 +27014707 ripCount = 25 +27014708 locktype1 = 1 +27014708 locktype2 = 5 +27014709 locktype3 = 8 +27014709 goalCount = 6 +27014710 goalTotal = 16 +27014710 otherCount = 32 +~~~ +27014712 CURRENTGOAL IS [3] +~~~ +27017012 DOWN 11 +27017012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27017052 homeCount = 63 +27017052 waitCount = 25 +27017053 ripCount = 25 +27017053 locktype1 = 1 +27017054 locktype2 = 5 +27017054 locktype3 = 8 +27017055 goalCount = 6 +27017055 goalTotal = 16 +27017056 otherCount = 32 +~~~ +27017057 CURRENTGOAL IS [3] +~~~ +27021381 UP 3 +27021381 4 255 +~~~ +27021406 DOWN 3 +27021406 0 255 +~~~ +27021408 outer reward +~~~ +27021408 0 262399 +~~~ +~~~ +~~~ +~~~ +27021428 0 262398 +~~~ +~~~ +27021429 0 262396 +~~~ +~~~ +27021431 0 262392 +~~~ +~~~ +27021433 0 262384 +~~~ +~~~ +27021435 0 262368 +~~~ +~~~ +27021437 0 262336 +~~~ +~~~ +27021439 0 262272 +~~~ +~~~ +27021440 0 262144 +~~~ +~~~ +27021442 0 262656 +27021443 homeCount = 63 +27021444 waitCount = 25 +27021444 ripCount = 25 +27021465 locktype1 = 1 +27021466 locktype2 = 5 +27021466 locktype3 = 8 +27021467 goalCount = 7 +27021467 goalTotal = 17 +27021468 otherCount = 32 +~~~ +27021468 4 262656 +27021652 DOWN 3 +27021652 0 262656 +27021699 4 262656 +27021858 4 512 +27021932 DOWN 3 +27021932 0 512 +27021941 4 512 +27022042 DOWN 3 +27022042 0 512 +27022076 4 512 +27022167 DOWN 3 +27022167 0 512 +27022203 4 512 +27022292 DOWN 3 +27022292 0 512 +27022330 4 512 +27022423 DOWN 3 +27022423 0 512 +27022459 4 512 +27022563 DOWN 3 +27022563 0 512 +27022595 4 512 +27022716 DOWN 3 +27022716 0 512 +27022736 4 512 +27022857 DOWN 3 +27022857 0 512 +27022878 4 512 +27023007 DOWN 3 +27023007 0 512 +27023021 4 512 +27023155 DOWN 3 +27023155 0 512 +27023169 4 512 +27023313 DOWN 3 +27023313 0 512 +27023320 4 512 +27023931 DOWN 3 +27023931 0 512 +27023939 4 512 +27030753 DOWN 3 +27030753 0 512 +27036671 UP 10 +27036671 waslock = 0 +27036671 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27036703 512 16777728 +~~~ +27036738 DOWN 10 +27036738 0 16777728 +~~~ +~~~ +27036757 0 16778752 +~~~ +~~~ +27036759 0 16778240 +27036760 homeCount = 64 +27036761 waitCount = 25 +27036761 ripCount = 25 +27036762 locktype1 = 1 +27036762 locktype2 = 5 +27036763 locktype3 = 8 +27036763 goalCount = 7 +27036764 goalTotal = 17 +27036764 otherCount = 32 +~~~ +27036785 UP 10 +27036786 waslock = 0 +27036785 512 16778240 +~~~ +27036853 512 1024 +27036868 DOWN 10 +27036868 0 1024 +~~~ +~~~ +~~~ +~~~ +27036891 homeCount = 64 +27036892 waitCount = 25 +27036892 ripCount = 25 +27036893 locktype1 = 1 +27036893 locktype2 = 5 +27036894 locktype3 = 8 +27036894 goalCount = 7 +27036895 goalTotal = 17 +27036895 otherCount = 32 +~~~ +27036905 UP 10 +27036905 waslock = 0 +27036905 512 1024 +~~~ +27041635 DOWN 10 +27041635 0 1024 +~~~ +~~~ +~~~ +~~~ +27041661 homeCount = 64 +27041661 waitCount = 25 +27041662 ripCount = 25 +27041662 locktype1 = 1 +27041663 locktype2 = 5 +27041663 locktype3 = 8 +27041664 goalCount = 7 +27041664 goalTotal = 17 +27041665 otherCount = 32 +~~~ +27043061 UP 11 +27043061 1024 1024 +27046061 BEEP1 +27046061 BEEP2 +~~~ +~~~ +~~~ +27046079 1024 33555456 +~~~ +27046120 DOWN 11 +27046120 0 33555456 +27046136 UP 11 +27046136 1024 33555456 +27046229 1024 1024 +~~~ +~~~ +27046756 1024 0 +~~~ +~~~ +27046758 1024 1 +~~~ +~~~ +27046760 1024 3 +~~~ +~~~ +27046762 1024 7 +~~~ +~~~ +27046764 1024 15 +~~~ +~~~ +27046765 1024 31 +~~~ +~~~ +27046767 1024 63 +~~~ +~~~ +27046769 1024 127 +~~~ +~~~ +27046771 1024 255 +27046772 homeCount = 64 +27046773 waitCount = 25 +27046773 ripCount = 26 +27046774 locktype1 = 1 +27046795 locktype2 = 5 +27046795 locktype3 = 8 +27046796 goalCount = 7 +27046796 goalTotal = 17 +27046797 otherCount = 32 +~~~ +27046798 CURRENTGOAL IS [3] +~~~ +27053631 DOWN 11 +27053631 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27053669 UP 11 +27053669 1024 255 +~~~ +~~~ +~~~ +~~~ +27053674 homeCount = 64 +27053674 waitCount = 25 +27053675 ripCount = 26 +27053675 locktype1 = 1 +27053676 locktype2 = 5 +27053676 locktype3 = 8 +27053677 goalCount = 7 +27053677 goalTotal = 17 +27053678 otherCount = 32 +~~~ +27053679 CURRENTGOAL IS [3] +~~~ +27053700 DOWN 11 +27053700 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27053736 homeCount = 64 +27053736 waitCount = 25 +27053737 ripCount = 26 +27053737 locktype1 = 1 +27053738 locktype2 = 5 +27053739 locktype3 = 8 +27053739 goalCount = 7 +27053740 goalTotal = 17 +27053740 otherCount = 32 +~~~ +27053741 CURRENTGOAL IS [3] +~~~ +27053762 UP 11 +27053762 1024 255 +27056774 DOWN 11 +27056774 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27056816 homeCount = 64 +27056816 waitCount = 25 +27056817 ripCount = 26 +27056817 locktype1 = 1 +27056818 locktype2 = 5 +27056818 locktype3 = 8 +27056819 goalCount = 7 +27056819 goalTotal = 17 +27056820 otherCount = 32 +~~~ +27056821 CURRENTGOAL IS [3] +~~~ +27062933 UP 3 +27062933 4 255 +~~~ +~~~ +27062952 outer reward +~~~ +27062952 4 262399 +~~~ +~~~ +27063104 DOWN 3 +27063104 0 262399 +~~~ +~~~ +27063129 0 262398 +~~~ +~~~ +27063131 0 262396 +~~~ +~~~ +27063133 0 262392 +~~~ +~~~ +27063134 0 262384 +~~~ +~~~ +27063136 0 262368 +~~~ +~~~ +27063138 0 262336 +~~~ +~~~ +27063140 0 262272 +~~~ +~~~ +27063142 0 262144 +~~~ +~~~ +27063144 0 262656 +27063145 homeCount = 64 +27063145 waitCount = 25 +27063146 ripCount = 26 +27063167 locktype1 = 1 +27063167 locktype2 = 5 +27063168 locktype3 = 8 +27063168 goalCount = 8 +27063169 goalTotal = 18 +27063169 otherCount = 32 +~~~ +27063170 4 262656 +27063263 DOWN 3 +27063263 0 262656 +27063290 4 262656 +27063402 4 512 +27063542 DOWN 3 +27063542 0 512 +27063554 4 512 +27063660 DOWN 3 +27063660 0 512 +27063683 4 512 +27063784 DOWN 3 +27063784 0 512 +27063813 4 512 +27063917 DOWN 3 +27063917 0 512 +27063947 4 512 +27064050 DOWN 3 +27064050 0 512 +27064081 4 512 +27064190 DOWN 3 +27064190 0 512 +27064217 4 512 +27064327 DOWN 3 +27064327 0 512 +27064350 4 512 +27064474 DOWN 3 +27064474 0 512 +27064492 4 512 +27064630 DOWN 3 +27064630 0 512 +27064639 4 512 +27064937 DOWN 3 +27064937 0 512 +27064946 4 512 +27071303 DOWN 3 +27071303 0 512 +27071339 4 512 +27071394 DOWN 3 +27071394 0 512 +27082226 UP 10 +27082226 waslock = 0 +27082226 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27082258 512 16777728 +~~~ +27082277 DOWN 10 +27082277 0 16777728 +~~~ +~~~ +27082306 0 16779776 +~~~ +~~~ +27082308 0 16779264 +27082309 homeCount = 65 +27082310 waitCount = 25 +27082310 ripCount = 26 +27082311 locktype1 = 1 +27082311 locktype2 = 5 +27082312 locktype3 = 8 +27082312 goalCount = 8 +27082313 goalTotal = 18 +27082313 otherCount = 32 +~~~ +27082334 UP 10 +27082335 waslock = 0 +27082334 512 16779264 +~~~ +27082408 512 2048 +27082466 DOWN 10 +27082466 0 2048 +~~~ +~~~ +~~~ +~~~ +27082492 homeCount = 65 +27082493 waitCount = 25 +27082493 ripCount = 26 +27082494 locktype1 = 1 +27082494 locktype2 = 5 +27082495 locktype3 = 8 +27082495 goalCount = 8 +27082496 goalTotal = 18 +27082496 otherCount = 32 +~~~ +27082497 UP 10 +27082497 waslock = 0 +27082497 512 2048 +~~~ +27087311 DOWN 10 +27087311 0 2048 +~~~ +~~~ +~~~ +~~~ +27087333 homeCount = 65 +27087334 waitCount = 25 +27087334 ripCount = 26 +27087335 locktype1 = 1 +27087335 locktype2 = 5 +27087336 locktype3 = 8 +27087336 goalCount = 8 +27087337 goalTotal = 18 +27087337 otherCount = 32 +~~~ +27089424 UP 12 +27089424 2048 2048 +27090682 DOWN 12 +27090682 0 2048 +27090773 UP 12 +27090773 2048 2048 +27091335 DOWN 12 +27091335 0 2048 +27091389 UP 12 +27091389 2048 2048 +27091472 DOWN 12 +27091472 0 2048 +27091539 UP 12 +27091539 2048 2048 +27094269 DOWN 12 +27094268 0 2048 +27094323 UP 12 +27094323 2048 2048 +27094359 DOWN 12 +27094359 0 2048 +27094535 UP 12 +27094535 2048 2048 +27097424 CLICK1 +27097424 CLICK2 +~~~ +~~~ +~~~ +27097442 2048 67110912 +~~~ +27097592 2048 2048 +27103685 DOWN 12 +27103685 0 2048 +~~~ +~~~ +27103710 0 0 +~~~ +~~~ +27103712 0 1 +~~~ +~~~ +27103714 0 3 +~~~ +~~~ +27103715 0 7 +~~~ +~~~ +27103717 0 15 +~~~ +~~~ +27103719 0 31 +~~~ +~~~ +27103721 0 63 +~~~ +~~~ +27103723 0 127 +~~~ +~~~ +27103725 0 255 +27103726 homeCount = 65 +27103726 waitCount = 26 +27103727 ripCount = 26 +27103727 locktype1 = 1 +27103728 locktype2 = 5 +27103749 locktype3 = 8 +27103749 goalCount = 8 +27103750 goalTotal = 18 +27103750 otherCount = 32 +~~~ +27103751 CURRENTGOAL IS [3] +~~~ +27103752 UP 12 +27103752 2048 255 +27103785 DOWN 12 +27103785 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27103821 homeCount = 65 +27103822 waitCount = 26 +27103822 ripCount = 26 +27103823 locktype1 = 1 +27103824 locktype2 = 5 +27103824 locktype3 = 8 +27103825 goalCount = 8 +27103825 goalTotal = 18 +27103826 otherCount = 32 +~~~ +27103827 CURRENTGOAL IS [3] +~~~ +27108255 UP 2 +27108255 2 255 +27108270 DOWN 2 +27108270 0 255 +~~~ +~~~ +~~~ +~~~ +27108294 0 254 +~~~ +~~~ +27108296 0 252 +~~~ +~~~ +27108298 0 248 +~~~ +~~~ +27108300 0 240 +~~~ +~~~ +27108302 0 224 +~~~ +~~~ +27108303 0 192 +~~~ +~~~ +27108305 0 128 +~~~ +~~~ +27108307 0 0 +~~~ +~~~ +27108309 0 512 +27108310 homeCount = 65 +27108310 waitCount = 26 +27108311 ripCount = 26 +27108311 locktype1 = 1 +27108332 locktype2 = 5 +27108333 locktype3 = 8 +27108333 goalCount = 8 +27108334 goalTotal = 18 +27108334 otherCount = 33 +~~~ +27108335 2 512 +27109045 DOWN 2 +27109045 0 512 +27109118 2 512 +27109129 DOWN 2 +27109129 0 512 +27114052 UP 10 +27114052 waslock = 0 +27114052 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27114082 512 16777728 +~~~ +27114122 DOWN 10 +27114122 0 16777728 +~~~ +~~~ +27114145 0 16779776 +~~~ +~~~ +27114147 0 16779264 +27114148 homeCount = 66 +27114149 waitCount = 26 +27114149 ripCount = 26 +27114150 locktype1 = 1 +27114150 locktype2 = 5 +27114152 locktype3 = 8 +27114152 goalCount = 8 +27114152 goalTotal = 18 +27114152 otherCount = 33 +~~~ +27114173 UP 10 +27114173 waslock = 0 +27114173 512 16779264 +~~~ +27114232 512 2048 +27114292 DOWN 10 +27114292 0 2048 +~~~ +~~~ +27114320 UP 10 +27114320 waslock = 0 +27114320 512 2048 +~~~ +~~~ +27114323 homeCount = 66 +27114323 waitCount = 26 +27114324 ripCount = 26 +27114324 locktype1 = 1 +27114325 locktype2 = 5 +27114325 locktype3 = 8 +27114326 goalCount = 8 +27114326 goalTotal = 18 +27114347 otherCount = 33 +~~~ +~~~ +27117113 DOWN 10 +27117113 0 2048 +~~~ +~~~ +~~~ +~~~ +27117139 homeCount = 66 +27117140 waitCount = 26 +27117140 ripCount = 26 +27117141 locktype1 = 1 +27117141 locktype2 = 5 +27117142 locktype3 = 8 +27117142 goalCount = 8 +27117143 goalTotal = 18 +27117143 otherCount = 33 +~~~ +27117158 UP 10 +27117159 waslock = 0 +27117158 512 2048 +~~~ +27117200 DOWN 10 +27117200 0 2048 +~~~ +~~~ +~~~ +~~~ +27117221 homeCount = 66 +27117222 waitCount = 26 +27117222 ripCount = 26 +27117223 locktype1 = 1 +27117223 locktype2 = 5 +27117224 locktype3 = 8 +27117224 goalCount = 8 +27117225 goalTotal = 18 +27117225 otherCount = 33 +~~~ +27119113 UP 12 +27119113 2048 2048 +27121174 DOWN 12 +27121174 0 2048 +27121261 UP 12 +27121261 2048 2048 +27121838 DOWN 12 +27121838 0 2048 +27121887 UP 12 +27121887 2048 2048 +27121905 DOWN 12 +27121905 0 2048 +27121986 UP 12 +27121986 2048 2048 +27122114 CLICK1 +27122114 CLICK2 +~~~ +~~~ +~~~ +27122139 2048 67110912 +~~~ +27122289 2048 2048 +27127218 DOWN 12 +27127218 0 2048 +~~~ +~~~ +27127238 0 0 +~~~ +~~~ +27127239 0 1 +~~~ +~~~ +27127241 0 3 +~~~ +~~~ +27127243 0 7 +~~~ +~~~ +27127245 0 15 +~~~ +~~~ +27127247 0 31 +~~~ +~~~ +27127248 0 63 +~~~ +~~~ +27127250 0 127 +~~~ +~~~ +27127252 0 255 +27127253 homeCount = 66 +27127254 waitCount = 27 +27127254 ripCount = 26 +27127255 locktype1 = 1 +27127255 locktype2 = 5 +27127276 locktype3 = 8 +27127277 goalCount = 8 +27127277 goalTotal = 18 +27127278 otherCount = 33 +~~~ +27127279 CURRENTGOAL IS [3] +~~~ +27130040 UP 3 +27130040 4 255 +~~~ +~~~ +27130059 outer reward +~~~ +27130059 4 262399 +~~~ +~~~ +27130264 DOWN 3 +27130264 0 262399 +~~~ +~~~ +27130288 0 262398 +~~~ +~~~ +27130289 0 262396 +~~~ +~~~ +27130291 0 262392 +~~~ +~~~ +27130293 0 262384 +~~~ +~~~ +27130295 0 262368 +~~~ +~~~ +27130297 0 262336 +~~~ +~~~ +27130299 0 262272 +~~~ +~~~ +27130300 0 262144 +~~~ +~~~ +27130302 0 262656 +27130303 homeCount = 66 +27130304 waitCount = 27 +27130304 ripCount = 26 +27130325 locktype1 = 1 +27130325 locktype2 = 5 +27130326 locktype3 = 8 +27130326 goalCount = 9 +27130327 goalTotal = 19 +27130327 otherCount = 33 +~~~ +27130328 4 262656 +27130509 4 512 +27130691 DOWN 3 +27130691 0 512 +27130708 4 512 +27130810 DOWN 3 +27130810 0 512 +27130833 4 512 +27130933 DOWN 3 +27130933 0 512 +27130961 4 512 +27131066 DOWN 3 +27131066 0 512 +27131090 4 512 +27131199 DOWN 3 +27131199 0 512 +27131228 4 512 +27131361 DOWN 3 +27131361 0 512 +27131369 4 512 +27131503 DOWN 3 +27131503 0 512 +27131514 4 512 +27131656 DOWN 3 +27131656 0 512 +27131664 4 512 +27137144 DOWN 3 +27137144 0 512 +27137148 4 512 +27137802 DOWN 3 +27137802 0 512 +27137820 4 512 +27137905 DOWN 3 +27137905 0 512 +27144403 UP 10 +27144403 waslock = 0 +27144403 512 512 +27144418 DOWN 10 +27144418 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27144434 0 16777728 +~~~ +~~~ +~~~ +27144437 0 16779776 +~~~ +~~~ +27144439 0 16779264 +27144440 homeCount = 67 +27144441 waitCount = 27 +27144441 ripCount = 26 +27144442 locktype1 = 1 +27144442 locktype2 = 5 +27144443 locktype3 = 8 +27144443 goalCount = 9 +27144444 goalTotal = 19 +27144465 otherCount = 33 +~~~ +27144570 UP 10 +27144570 waslock = 0 +27144569 512 16779264 +27144584 512 2048 +~~~ +27147490 DOWN 10 +27147489 0 2048 +~~~ +~~~ +~~~ +~~~ +27147518 homeCount = 67 +27147519 waitCount = 27 +27147519 ripCount = 26 +27147520 locktype1 = 1 +27147520 locktype2 = 5 +27147521 locktype3 = 8 +27147521 goalCount = 9 +27147522 goalTotal = 19 +27147522 otherCount = 33 +~~~ +27149811 UP 12 +27149811 2048 2048 +27150616 DOWN 12 +27150616 0 2048 +27150637 UP 12 +27150637 2048 2048 +27150660 DOWN 12 +27150660 0 2048 +27150819 UP 12 +27150819 2048 2048 +27153312 CLICK1 +27153312 CLICK2 +~~~ +~~~ +~~~ +27153335 2048 67110912 +~~~ +27153484 2048 2048 +27157877 DOWN 12 +27157877 0 2048 +~~~ +~~~ +27157896 0 0 +~~~ +~~~ +27157897 0 1 +~~~ +~~~ +27157899 0 3 +~~~ +~~~ +27157901 0 7 +~~~ +~~~ +27157903 0 15 +~~~ +~~~ +27157905 0 31 +~~~ +~~~ +27157906 0 63 +~~~ +~~~ +27157908 0 127 +~~~ +~~~ +27157910 0 255 +27157911 homeCount = 67 +27157912 waitCount = 28 +27157912 ripCount = 26 +27157913 locktype1 = 1 +27157913 locktype2 = 5 +27157934 locktype3 = 8 +27157935 goalCount = 9 +27157935 goalTotal = 19 +27157936 otherCount = 33 +~~~ +27157937 CURRENTGOAL IS [3] +~~~ +27157937 UP 12 +27157937 2048 255 +27157959 DOWN 12 +27157959 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27157999 homeCount = 67 +27157999 waitCount = 28 +27158000 ripCount = 26 +27158000 locktype1 = 1 +27158001 locktype2 = 5 +27158001 locktype3 = 8 +27158002 goalCount = 9 +27158002 goalTotal = 19 +27158003 otherCount = 33 +~~~ +27158004 CURRENTGOAL IS [3] +~~~ +27158025 UP 12 +27158025 2048 255 +27158102 DOWN 12 +27158102 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158130 UP 12 +27158130 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158138 DOWN 12 +27158138 0 255 +~~~ +~~~ +~~~ +27158142 homeCount = 67 +27158142 waitCount = 28 +27158143 ripCount = 26 +27158143 locktype1 = 1 +27158144 locktype2 = 5 +27158145 locktype3 = 8 +27158145 goalCount = 9 +27158146 goalTotal = 19 +27158146 otherCount = 33 +~~~ +27158147 CURRENTGOAL IS [3] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158175 homeCount = 67 +27158176 waitCount = 28 +27158176 ripCount = 26 +27158177 locktype1 = 1 +27158177 locktype2 = 5 +27158178 locktype3 = 8 +27158199 goalCount = 9 +27158199 goalTotal = 19 +27158200 otherCount = 33 +~~~ +27158201 CURRENTGOAL IS [3] +~~~ +27158201 UP 12 +27158201 2048 255 +27158224 DOWN 12 +27158223 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158250 homeCount = 67 +27158251 waitCount = 28 +27158251 ripCount = 26 +27158252 locktype1 = 1 +27158252 locktype2 = 5 +27158253 locktype3 = 8 +27158253 goalCount = 9 +27158254 goalTotal = 19 +27158254 otherCount = 33 +~~~ +27158255 CURRENTGOAL IS [3] +~~~ +27158327 UP 12 +27158327 2048 255 +27158356 DOWN 12 +27158356 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158391 homeCount = 67 +27158392 waitCount = 28 +27158392 ripCount = 26 +27158393 locktype1 = 1 +27158393 locktype2 = 5 +27158394 locktype3 = 8 +27158394 goalCount = 9 +27158395 goalTotal = 19 +27158395 otherCount = 33 +~~~ +27158396 CURRENTGOAL IS [3] +~~~ +27158417 UP 12 +27158417 2048 255 +27158500 DOWN 12 +27158500 0 255 +27158522 UP 12 +27158522 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27158542 homeCount = 67 +27158543 waitCount = 28 +27158543 ripCount = 26 +27158544 locktype1 = 1 +27158544 locktype2 = 5 +27158545 locktype3 = 8 +27158545 goalCount = 9 +27158546 goalTotal = 19 +27158546 otherCount = 33 +~~~ +27158548 CURRENTGOAL IS [3] +~~~ +27160569 DOWN 12 +27160569 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27160604 homeCount = 67 +27160605 waitCount = 28 +27160606 ripCount = 26 +27160606 locktype1 = 1 +27160607 locktype2 = 5 +27160607 locktype3 = 8 +27160608 goalCount = 9 +27160608 goalTotal = 19 +27160609 otherCount = 33 +~~~ +27160610 CURRENTGOAL IS [3] +~~~ +27160631 UP 12 +27160631 2048 255 +27160668 DOWN 12 +27160668 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27160706 homeCount = 67 +27160707 waitCount = 28 +27160707 ripCount = 26 +27160708 locktype1 = 1 +27160708 locktype2 = 5 +27160709 locktype3 = 8 +27160709 goalCount = 9 +27160710 goalTotal = 19 +27160710 otherCount = 33 +~~~ +27160711 CURRENTGOAL IS [3] +~~~ +27163334 UP 3 +27163334 4 255 +27163351 DOWN 3 +27163351 0 255 +~~~ +~~~ +27163374 outer reward +~~~ +27163375 0 262399 +~~~ +~~~ +27163379 outerreps = 8 +~~~ +~~~ +~~~ +~~~ +27163382 0 262398 +~~~ +~~~ +27163384 0 262396 +~~~ +~~~ +27163386 0 262392 +~~~ +~~~ +27163388 0 262384 +~~~ +~~~ +27163389 0 262368 +~~~ +~~~ +27163391 0 262336 +~~~ +~~~ +27163393 0 262272 +~~~ +~~~ +27163395 0 262144 +~~~ +~~~ +27163397 0 262656 +27163398 homeCount = 67 +27163398 waitCount = 28 +27163420 ripCount = 26 +27163420 locktype1 = 1 +27163421 locktype2 = 5 +27163421 locktype3 = 8 +27163422 goalCount = 0 +27163422 goalTotal = 20 +27163423 otherCount = 33 +~~~ +27163423 4 262656 +27163560 DOWN 3 +27163560 0 262656 +27163618 4 262656 +27163824 4 512 +27163981 DOWN 3 +27163981 0 512 +27164002 4 512 +27164107 DOWN 3 +27164107 0 512 +27164122 4 512 +27164237 DOWN 3 +27164237 0 512 +27164261 4 512 +27164373 DOWN 3 +27164373 0 512 +27164398 4 512 +27164523 DOWN 3 +27164523 0 512 +27164537 4 512 +27164678 DOWN 3 +27164677 0 512 +27164687 4 512 +27164824 DOWN 3 +27164824 0 512 +27164832 4 512 +27164973 DOWN 3 +27164973 0 512 +27164981 4 512 +27165435 DOWN 3 +27165435 0 512 +27165447 4 512 +27168176 DOWN 3 +27168176 0 512 +27168182 4 512 +27168186 DOWN 3 +27168186 0 512 +27168193 4 512 +27171704 DOWN 3 +27171704 0 512 +27171738 4 512 +27171814 DOWN 3 +27171814 0 512 +27176949 UP 10 +27176949 waslock = 0 +27176949 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27176979 512 16777728 +~~~ +27177102 DOWN 10 +27177102 0 16777728 +~~~ +~~~ +27177125 0 16778752 +~~~ +~~~ +27177127 0 16778240 +27177128 homeCount = 68 +27177129 waitCount = 28 +27177129 ripCount = 26 +27177130 locktype1 = 1 +27177130 locktype2 = 5 +27177131 locktype3 = 8 +27177131 goalCount = 0 +27177132 goalTotal = 20 +27177132 otherCount = 33 +~~~ +27177153 UP 10 +27177153 waslock = 0 +27177153 512 16778240 +27177155 512 1024 +~~~ +27183894 DOWN 10 +27183894 0 1024 +~~~ +~~~ +~~~ +~~~ +27183916 homeCount = 68 +27183917 waitCount = 28 +27183917 ripCount = 26 +27183918 locktype1 = 1 +27183918 locktype2 = 5 +27183919 locktype3 = 8 +27183919 goalCount = 0 +27183920 goalTotal = 20 +27183920 otherCount = 33 +~~~ +27186228 UP 11 +27186228 1024 1024 +27187560 DOWN 11 +27187560 0 1024 +27187573 UP 11 +27187573 1024 1024 +27187589 DOWN 11 +27187589 0 1024 +27187640 UP 11 +27187640 1024 1024 +27192229 BEEP1 +27192229 BEEP2 +~~~ +~~~ +~~~ +27192256 1024 33555456 +~~~ +27192406 1024 1024 +27198684 DOWN 11 +27198684 0 1024 +~~~ +~~~ +27198705 0 0 +~~~ +~~~ +27198707 0 1 +~~~ +~~~ +27198709 0 3 +~~~ +~~~ +27198711 0 7 +~~~ +~~~ +27198712 0 15 +~~~ +~~~ +27198714 0 31 +~~~ +~~~ +27198716 0 63 +~~~ +~~~ +27198718 0 127 +~~~ +~~~ +27198720 0 255 +27198721 homeCount = 68 +27198721 waitCount = 28 +27198722 ripCount = 27 +27198722 locktype1 = 1 +27198723 locktype2 = 5 +27198744 locktype3 = 8 +27198744 goalCount = 0 +27198745 goalTotal = 20 +27198745 otherCount = 33 +~~~ +27198746 CURRENTGOAL IS [1] +~~~ +27198766 UP 11 +27198766 1024 255 +27200991 DOWN 11 +27200991 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27201031 homeCount = 68 +27201031 waitCount = 28 +27201032 ripCount = 27 +27201032 locktype1 = 1 +27201033 locktype2 = 5 +27201033 locktype3 = 8 +27201034 goalCount = 0 +27201034 goalTotal = 20 +27201035 otherCount = 33 +~~~ +27201036 CURRENTGOAL IS [1] +~~~ +27201067 UP 11 +27201067 1024 255 +27201082 DOWN 11 +27201082 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27201121 homeCount = 68 +27201122 waitCount = 28 +27201122 ripCount = 27 +27201123 locktype1 = 1 +27201123 locktype2 = 5 +27201124 locktype3 = 8 +27201124 goalCount = 0 +27201125 goalTotal = 20 +27201125 otherCount = 33 +~~~ +27201127 CURRENTGOAL IS [1] +~~~ +27206452 UP 2 +27206452 2 255 +27206462 DOWN 2 +27206462 0 255 +~~~ +~~~ +~~~ +~~~ +27206480 0 254 +~~~ +~~~ +27206482 0 252 +~~~ +~~~ +27206484 0 248 +~~~ +~~~ +27206486 0 240 +~~~ +~~~ +27206487 0 224 +~~~ +~~~ +27206489 0 192 +~~~ +~~~ +27206491 0 128 +~~~ +~~~ +27206493 0 0 +~~~ +~~~ +27206495 0 512 +27206496 homeCount = 68 +27206496 waitCount = 28 +27206497 ripCount = 27 +27206497 locktype1 = 1 +27206519 locktype2 = 5 +27206519 locktype3 = 8 +27206520 goalCount = 0 +27206520 goalTotal = 20 +27206521 otherCount = 34 +~~~ +27206534 2 512 +27207052 DOWN 2 +27207052 0 512 +27212399 UP 10 +27212399 waslock = 0 +27212399 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27212427 512 16777728 +~~~ +27212435 DOWN 10 +27212435 0 16777728 +~~~ +~~~ +27212452 0 16778752 +~~~ +27212453 UP 10 +27212453 waslock = 0 +27212453 512 16778752 +~~~ +27212455 homeCount = 69 +27212456 waitCount = 28 +27212456 ripCount = 27 +27212457 locktype1 = 1 +27212457 locktype2 = 5 +27212458 locktype3 = 8 +27212458 goalCount = 0 +27212479 goalTotal = 20 +27212480 otherCount = 34 +~~~ +27212480 512 16778240 +~~~ +27212557 DOWN 10 +27212557 0 16778240 +27212577 0 1024 +27212591 UP 10 +27212591 waslock = 0 +27212591 512 1024 +~~~ +~~~ +~~~ +~~~ +27212598 homeCount = 69 +27212598 waitCount = 28 +27212599 ripCount = 27 +27212599 locktype1 = 1 +27212600 locktype2 = 5 +27212600 locktype3 = 8 +27212601 goalCount = 0 +27212601 goalTotal = 20 +27212602 otherCount = 34 +~~~ +~~~ +27216740 DOWN 10 +27216740 0 1024 +~~~ +~~~ +~~~ +~~~ +27216765 homeCount = 69 +27216765 waitCount = 28 +27216766 ripCount = 27 +27216766 locktype1 = 1 +27216767 locktype2 = 5 +27216767 locktype3 = 8 +27216768 goalCount = 0 +27216768 goalTotal = 20 +27216769 otherCount = 34 +~~~ +27221107 UP 11 +27221107 1024 1024 +27230108 BEEP1 +27230108 BEEP2 +~~~ +~~~ +~~~ +27230134 1024 33555456 +~~~ +27230284 1024 1024 +27237176 DOWN 11 +27237176 0 1024 +~~~ +~~~ +27237202 0 0 +~~~ +~~~ +27237203 0 1 +~~~ +~~~ +27237205 0 3 +~~~ +~~~ +27237207 0 7 +~~~ +~~~ +27237209 0 15 +~~~ +~~~ +27237211 0 31 +~~~ +~~~ +27237213 0 63 +~~~ +~~~ +27237214 0 127 +~~~ +~~~ +27237216 0 255 +27237217 homeCount = 69 +27237218 waitCount = 28 +27237218 ripCount = 28 +27237219 locktype1 = 1 +27237219 locktype2 = 5 +27237240 locktype3 = 8 +27237241 goalCount = 0 +27237241 goalTotal = 20 +27237242 otherCount = 34 +~~~ +27237243 CURRENTGOAL IS [1] +~~~ +27237243 UP 11 +27237243 1024 255 +27237293 DOWN 11 +27237293 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27237330 homeCount = 69 +27237330 waitCount = 28 +27237331 ripCount = 28 +27237331 locktype1 = 1 +27237332 locktype2 = 5 +27237332 locktype3 = 8 +27237333 goalCount = 0 +27237333 goalTotal = 20 +27237334 otherCount = 34 +~~~ +27237335 CURRENTGOAL IS [1] +~~~ +27244806 UP 3 +27244806 4 255 +27244824 DOWN 3 +27244824 0 255 +~~~ +~~~ +~~~ +~~~ +27244845 0 254 +~~~ +~~~ +27244846 0 252 +~~~ +~~~ +27244848 0 248 +~~~ +~~~ +27244850 0 240 +~~~ +~~~ +27244852 0 224 +~~~ +~~~ +27244854 0 192 +~~~ +~~~ +27244856 0 128 +~~~ +~~~ +27244857 0 0 +~~~ +~~~ +27244859 0 512 +27244860 homeCount = 69 +27244861 waitCount = 28 +27244861 ripCount = 28 +27244862 locktype1 = 1 +27244883 locktype2 = 5 +27244884 locktype3 = 8 +27244884 goalCount = 0 +27244885 goalTotal = 20 +27244885 otherCount = 35 +~~~ +27244896 4 512 +27245112 DOWN 3 +27245112 0 512 +27245162 4 512 +27245949 DOWN 3 +27245949 0 512 +27246153 4 512 +27247409 DOWN 3 +27247409 0 512 +27252323 UP 10 +27252323 waslock = 0 +27252323 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27252354 512 16777728 +~~~ +27252487 DOWN 10 +27252487 0 16777728 +27252504 0 512 +~~~ +~~~ +27252509 0 2560 +~~~ +~~~ +27252511 0 2048 +27252512 homeCount = 70 +27252513 waitCount = 28 +27252513 ripCount = 28 +27252514 locktype1 = 1 +27252514 locktype2 = 5 +27252515 locktype3 = 8 +27252515 goalCount = 0 +27252516 goalTotal = 20 +27252516 otherCount = 35 +~~~ +27252537 UP 10 +27252538 waslock = 0 +27252537 512 2048 +~~~ +27257198 DOWN 10 +27257198 0 2048 +~~~ +~~~ +~~~ +~~~ +27257221 homeCount = 70 +27257221 waitCount = 28 +27257222 ripCount = 28 +27257222 locktype1 = 1 +27257223 locktype2 = 5 +27257223 locktype3 = 8 +27257224 goalCount = 0 +27257224 goalTotal = 20 +27257225 otherCount = 35 +~~~ +27257233 UP 10 +27257233 waslock = 0 +27257233 512 2048 +~~~ +27257298 DOWN 10 +27257298 0 2048 +~~~ +~~~ +~~~ +~~~ +27257321 homeCount = 70 +27257322 waitCount = 28 +27257322 ripCount = 28 +27257323 locktype1 = 1 +27257323 locktype2 = 5 +27257324 locktype3 = 8 +27257324 goalCount = 0 +27257325 goalTotal = 20 +27257325 otherCount = 35 +~~~ +27259477 UP 12 +27259477 2048 2048 +27262833 DOWN 12 +27262833 0 2048 +27262866 UP 12 +27262866 2048 2048 +27262907 DOWN 12 +27262907 0 2048 +27262994 UP 12 +27262994 2048 2048 +27263034 DOWN 12 +27263034 0 2048 +27263046 UP 12 +27263046 2048 2048 +27267477 CLICK1 +27267477 CLICK2 +~~~ +~~~ +~~~ +27267503 2048 67110912 +~~~ +27267653 2048 2048 +27274654 DOWN 12 +27274654 0 2048 +~~~ +~~~ +27274672 0 0 +~~~ +~~~ +27274674 0 1 +~~~ +~~~ +27274676 0 3 +~~~ +~~~ +27274677 0 7 +~~~ +~~~ +27274679 0 15 +~~~ +~~~ +27274681 0 31 +~~~ +~~~ +27274683 0 63 +~~~ +~~~ +27274685 0 127 +~~~ +~~~ +27274686 0 255 +27274687 homeCount = 70 +27274688 waitCount = 29 +27274689 ripCount = 28 +27274689 locktype1 = 1 +27274690 locktype2 = 5 +27274710 locktype3 = 8 +27274711 goalCount = 0 +27274711 goalTotal = 20 +27274712 otherCount = 35 +~~~ +27274713 CURRENTGOAL IS [1] +~~~ +27278587 UP 3 +27278587 4 255 +~~~ +~~~ +27278893 DOWN 3 +27278893 0 255 +~~~ +~~~ +27278912 0 254 +~~~ +~~~ +27278914 0 252 +~~~ +~~~ +27278916 0 248 +~~~ +~~~ +27278917 0 240 +~~~ +~~~ +27278919 0 224 +~~~ +~~~ +27278921 0 192 +~~~ +~~~ +27278923 0 128 +~~~ +~~~ +27278925 0 0 +~~~ +~~~ +27278927 0 512 +27278928 homeCount = 70 +27278928 waitCount = 29 +27278929 ripCount = 28 +27278929 locktype1 = 1 +27278930 locktype2 = 5 +27278951 locktype3 = 8 +27278951 goalCount = 0 +27278952 goalTotal = 20 +27278952 otherCount = 36 +~~~ +27278953 4 512 +27279428 DOWN 3 +27279428 0 512 +27279473 4 512 +27279495 DOWN 3 +27279495 0 512 +27283748 UP 10 +27283748 waslock = 0 +27283748 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27283772 512 16777728 +~~~ +27283922 512 512 +27288098 DOWN 10 +27288098 0 512 +~~~ +~~~ +27288117 0 1536 +~~~ +~~~ +27288119 0 1024 +27288120 homeCount = 71 +27288120 waitCount = 29 +27288121 ripCount = 28 +27288121 locktype1 = 1 +27288122 locktype2 = 5 +27288122 locktype3 = 8 +27288123 goalCount = 0 +27288123 goalTotal = 20 +27288124 otherCount = 36 +~~~ +27288158 UP 10 +27288158 waslock = 0 +27288158 512 1024 +~~~ +27288186 DOWN 10 +27288186 0 1024 +~~~ +~~~ +~~~ +~~~ +27288215 homeCount = 71 +27288215 waitCount = 29 +27288216 ripCount = 28 +27288216 locktype1 = 1 +27288217 locktype2 = 5 +27288217 locktype3 = 8 +27288218 goalCount = 0 +27288218 goalTotal = 20 +27288219 otherCount = 36 +~~~ +27303216 UP 4 +27303216 8 1024 +~~~ +27303239 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +27303243 8 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27304347 DOWN 4 +27304347 0 0 +27321209 512 0 +27321279 0 0 +27328239 LOCKEND +~~~ +~~~ +~~~ +27328258 0 512 +27338600 UP 5 +27338600 16 512 +27338629 DOWN 5 +27338629 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27338662 homeCount = 71 +27338663 waitCount = 29 +27338663 ripCount = 28 +27338664 locktype1 = 1 +27338664 locktype2 = 6 +27338665 locktype3 = 8 +27338665 goalCount = 0 +27338666 goalTotal = 20 +27338666 otherCount = 36 +~~~ +27338727 16 512 +27338920 DOWN 5 +27338920 0 512 +27339036 16 512 +27339061 DOWN 5 +27339061 0 512 +27339130 16 512 +27339491 DOWN 5 +27339491 0 512 +27349519 UP 10 +27349520 waslock = 0 +27349519 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27349543 512 16777728 +~~~ +27349693 512 512 +27349747 DOWN 10 +27349747 0 512 +~~~ +~~~ +27349772 0 2560 +~~~ +~~~ +27349774 0 2048 +27349775 homeCount = 72 +27349776 waitCount = 29 +27349776 ripCount = 28 +27349777 locktype1 = 1 +27349777 locktype2 = 6 +27349778 locktype3 = 8 +27349778 goalCount = 0 +27349779 goalTotal = 20 +27349779 otherCount = 36 +~~~ +27349887 UP 10 +27349888 waslock = 0 +27349887 512 2048 +~~~ +27355800 DOWN 10 +27355800 0 2048 +~~~ +~~~ +~~~ +~~~ +27355821 homeCount = 72 +27355821 waitCount = 29 +27355822 ripCount = 28 +27355822 locktype1 = 1 +27355823 locktype2 = 6 +27355823 locktype3 = 8 +27355824 goalCount = 0 +27355824 goalTotal = 20 +27355825 otherCount = 36 +~~~ +27355830 UP 10 +27355831 waslock = 0 +27355830 512 2048 +~~~ +27355896 DOWN 10 +27355896 0 2048 +~~~ +~~~ +~~~ +~~~ +27355921 homeCount = 72 +27355921 waitCount = 29 +27355922 ripCount = 28 +27355922 locktype1 = 1 +27355923 locktype2 = 6 +27355923 locktype3 = 8 +27355924 goalCount = 0 +27355924 goalTotal = 20 +27355925 otherCount = 36 +~~~ +27359955 UP 12 +27359955 2048 2048 +27361229 DOWN 12 +27361229 0 2048 +27361429 LOCKOUT 3 +~~~ +27361449 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27361455 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27361545 UP 12 +27361545 2048 0 +27363005 DOWN 12 +27363005 0 0 +27363061 UP 12 +27363061 2048 0 +27363086 DOWN 12 +27363086 0 0 +27363176 UP 12 +27363176 2048 0 +27363450 DOWN 12 +27363450 0 0 +27363499 UP 12 +27363498 2048 0 +27363784 DOWN 12 +27363784 0 0 +27363793 UP 12 +27363792 2048 0 +27367425 DOWN 12 +27367425 0 0 +27367513 UP 12 +27367513 2048 0 +27367580 DOWN 12 +27367580 0 0 +27367680 UP 12 +27367680 2048 0 +27373426 DOWN 12 +27373426 0 0 +27373444 UP 12 +27373444 2048 0 +27373471 DOWN 12 +27373471 0 0 +27373514 UP 12 +27373514 2048 0 +27373617 DOWN 12 +27373617 0 0 +27373720 UP 12 +27373720 2048 0 +27375640 DOWN 12 +27375640 0 0 +27386449 LOCKEND +~~~ +~~~ +~~~ +27386471 0 512 +27392770 UP 10 +27392770 waslock = 0 +27392770 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27392793 512 16777728 +~~~ +27392943 512 512 +27392954 DOWN 10 +27392954 0 512 +~~~ +~~~ +27392972 0 1536 +~~~ +~~~ +27392974 0 1024 +27392975 homeCount = 73 +27392976 waitCount = 29 +27392976 ripCount = 28 +27392977 locktype1 = 1 +27392977 locktype2 = 6 +27392978 locktype3 = 9 +27392978 goalCount = 0 +27392979 goalTotal = 20 +27392979 otherCount = 36 +~~~ +27393151 UP 10 +27393152 waslock = 0 +27393151 512 1024 +~~~ +27393293 DOWN 10 +27393293 0 1024 +~~~ +~~~ +27393320 UP 10 +27393320 waslock = 0 +27393320 512 1024 +~~~ +~~~ +27393323 homeCount = 73 +27393323 waitCount = 29 +27393324 ripCount = 28 +27393324 locktype1 = 1 +27393325 locktype2 = 6 +27393325 locktype3 = 9 +27393326 goalCount = 0 +27393326 goalTotal = 20 +27393347 otherCount = 36 +~~~ +~~~ +27393593 DOWN 10 +27393593 0 1024 +27393607 UP 10 +27393607 waslock = 0 +27393607 512 1024 +~~~ +~~~ +~~~ +~~~ +27393623 homeCount = 73 +27393623 waitCount = 29 +27393624 ripCount = 28 +27393624 locktype1 = 1 +27393625 locktype2 = 6 +27393625 locktype3 = 9 +27393626 goalCount = 0 +27393626 goalTotal = 20 +27393627 otherCount = 36 +~~~ +~~~ +27393753 DOWN 10 +27393753 0 1024 +27393770 UP 10 +27393770 waslock = 0 +27393770 512 1024 +~~~ +~~~ +~~~ +~~~ +27393782 homeCount = 73 +27393782 waitCount = 29 +27393783 ripCount = 28 +27393783 locktype1 = 1 +27393784 locktype2 = 6 +27393784 locktype3 = 9 +27393785 goalCount = 0 +27393785 goalTotal = 20 +27393786 otherCount = 36 +~~~ +~~~ +27393918 DOWN 10 +27393918 0 1024 +~~~ +~~~ +~~~ +27393940 UP 10 +27393940 waslock = 0 +27393940 512 1024 +~~~ +27393942 homeCount = 73 +27393942 waitCount = 29 +27393943 ripCount = 28 +27393943 locktype1 = 1 +27393944 locktype2 = 6 +27393944 locktype3 = 9 +27393945 goalCount = 0 +27393945 goalTotal = 20 +27393946 otherCount = 36 +~~~ +~~~ +27397740 DOWN 10 +27397740 0 1024 +~~~ +~~~ +~~~ +~~~ +27397761 homeCount = 73 +27397761 waitCount = 29 +27397762 ripCount = 28 +27397762 locktype1 = 1 +27397763 locktype2 = 6 +27397763 locktype3 = 9 +27397764 goalCount = 0 +27397764 goalTotal = 20 +27397765 otherCount = 36 +~~~ +27397767 UP 10 +27397767 waslock = 0 +27397767 512 1024 +~~~ +27397836 DOWN 10 +27397836 0 1024 +~~~ +~~~ +~~~ +~~~ +27397863 homeCount = 73 +27397863 waitCount = 29 +27397864 ripCount = 28 +27397865 locktype1 = 1 +27397865 locktype2 = 6 +27397866 locktype3 = 9 +27397866 goalCount = 0 +27397867 goalTotal = 20 +27397867 otherCount = 36 +~~~ +27401205 UP 11 +27401205 1024 1024 +27405837 DOWN 11 +27405837 0 1024 +27405869 UP 11 +27405869 1024 1024 +27405991 DOWN 11 +27405991 0 1024 +27406002 UP 11 +27406002 1024 1024 +27408205 BEEP1 +27408205 BEEP2 +~~~ +~~~ +~~~ +27408231 1024 33555456 +~~~ +27408381 1024 1024 +27415414 DOWN 11 +27415414 0 1024 +27415427 UP 11 +27415427 1024 1024 +27415439 DOWN 11 +27415439 0 1024 +~~~ +~~~ +27415441 0 0 +~~~ +~~~ +27415442 0 1 +~~~ +~~~ +27415444 0 3 +~~~ +~~~ +27415446 0 7 +~~~ +~~~ +27415447 0 15 +~~~ +~~~ +27415449 0 31 +~~~ +~~~ +27415451 0 63 +~~~ +~~~ +27415453 0 127 +~~~ +~~~ +27415455 0 255 +27415456 homeCount = 73 +27415456 waitCount = 29 +27415457 ripCount = 29 +27415478 locktype1 = 1 +27415478 locktype2 = 6 +27415479 locktype3 = 9 +27415479 goalCount = 0 +27415480 goalTotal = 20 +27415480 otherCount = 36 +~~~ +27415481 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27415509 homeCount = 73 +27415509 waitCount = 29 +27415510 ripCount = 29 +27415510 locktype1 = 1 +27415511 locktype2 = 6 +27415511 locktype3 = 9 +27415512 goalCount = 0 +27415512 goalTotal = 20 +27415513 otherCount = 36 +~~~ +27415534 CURRENTGOAL IS [1] +~~~ +27415535 UP 11 +27415535 1024 255 +27417762 DOWN 11 +27417762 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27417797 homeCount = 73 +27417798 waitCount = 29 +27417798 ripCount = 29 +27417799 locktype1 = 1 +27417799 locktype2 = 6 +27417800 locktype3 = 9 +27417800 goalCount = 0 +27417801 goalTotal = 20 +27417801 otherCount = 36 +~~~ +27417802 CURRENTGOAL IS [1] +~~~ +27420577 UP 6 +27420577 32 255 +~~~ +~~~ +27421351 DOWN 6 +27421351 0 255 +~~~ +~~~ +27421370 0 254 +~~~ +~~~ +27421372 0 252 +~~~ +~~~ +27421374 0 248 +~~~ +~~~ +27421376 0 240 +~~~ +~~~ +27421377 0 224 +~~~ +~~~ +27421379 0 192 +~~~ +~~~ +27421381 0 128 +~~~ +~~~ +27421383 0 0 +~~~ +~~~ +27421385 0 512 +27421386 homeCount = 73 +27421386 waitCount = 29 +27421387 ripCount = 29 +27421387 locktype1 = 1 +27421388 locktype2 = 6 +27421409 locktype3 = 9 +27421409 goalCount = 0 +27421410 goalTotal = 20 +27421410 otherCount = 37 +~~~ +27426117 UP 10 +27426118 waslock = 0 +27426117 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27426143 512 16777728 +~~~ +27426293 512 512 +27426356 DOWN 10 +27426355 0 512 +~~~ +~~~ +27426378 0 2560 +~~~ +~~~ +27426380 0 2048 +27426381 homeCount = 74 +27426381 waitCount = 29 +27426382 ripCount = 29 +27426382 locktype1 = 1 +27426383 locktype2 = 6 +27426383 locktype3 = 9 +27426384 goalCount = 0 +27426384 goalTotal = 20 +27426385 otherCount = 37 +~~~ +27426406 UP 10 +27426406 waslock = 0 +27426406 512 2048 +~~~ +27431666 DOWN 10 +27431666 0 2048 +~~~ +~~~ +~~~ +~~~ +27431691 homeCount = 74 +27431691 waitCount = 29 +27431692 ripCount = 29 +27431692 locktype1 = 1 +27431693 locktype2 = 6 +27431693 locktype3 = 9 +27431694 goalCount = 0 +27431694 goalTotal = 20 +27431695 otherCount = 37 +~~~ +27431705 UP 10 +27431705 waslock = 0 +27431704 512 2048 +~~~ +27431767 DOWN 10 +27431767 0 2048 +~~~ +~~~ +~~~ +~~~ +27431791 homeCount = 74 +27431792 waitCount = 29 +27431792 ripCount = 29 +27431793 locktype1 = 1 +27431793 locktype2 = 6 +27431794 locktype3 = 9 +27431794 goalCount = 0 +27431795 goalTotal = 20 +27431795 otherCount = 37 +~~~ +27434661 UP 12 +27434661 2048 2048 +27435489 DOWN 12 +27435489 0 2048 +27435670 UP 12 +27435670 2048 2048 +27437661 CLICK1 +27437661 CLICK2 +~~~ +~~~ +~~~ +27437680 2048 67110912 +~~~ +27437830 2048 2048 +27446647 DOWN 12 +27446647 0 2048 +~~~ +~~~ +27446668 0 0 +~~~ +~~~ +27446670 0 1 +~~~ +~~~ +27446672 0 3 +~~~ +~~~ +27446673 0 7 +~~~ +~~~ +27446675 0 15 +~~~ +~~~ +27446677 0 31 +~~~ +~~~ +27446679 0 63 +~~~ +~~~ +27446681 0 127 +~~~ +~~~ +27446683 0 255 +27446684 homeCount = 74 +27446684 waitCount = 30 +27446685 ripCount = 29 +27446685 locktype1 = 1 +27446686 locktype2 = 6 +27446706 locktype3 = 9 +27446707 goalCount = 0 +27446707 goalTotal = 20 +27446708 otherCount = 37 +~~~ +27446709 CURRENTGOAL IS [1] +~~~ +27449877 UP 3 +27449877 4 255 +~~~ +~~~ +27450268 DOWN 3 +27450268 0 255 +~~~ +~~~ +27450290 0 254 +~~~ +~~~ +27450292 0 252 +~~~ +~~~ +27450294 0 248 +~~~ +~~~ +27450296 0 240 +~~~ +~~~ +27450298 0 224 +~~~ +~~~ +27450299 0 192 +~~~ +~~~ +27450301 0 128 +~~~ +~~~ +27450303 0 0 +~~~ +~~~ +27450305 0 512 +27450306 homeCount = 74 +27450306 waitCount = 30 +27450307 ripCount = 29 +27450307 locktype1 = 1 +27450329 locktype2 = 6 +27450329 locktype3 = 9 +27450330 goalCount = 0 +27450330 goalTotal = 20 +27450331 otherCount = 38 +~~~ +27454527 UP 10 +27454527 waslock = 0 +27454527 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27454559 512 16777728 +~~~ +27454581 DOWN 10 +27454581 0 16777728 +~~~ +~~~ +27454604 0 16779776 +~~~ +~~~ +27454606 0 16779264 +27454607 homeCount = 75 +27454607 waitCount = 30 +27454608 ripCount = 29 +27454608 locktype1 = 1 +27454609 locktype2 = 6 +27454609 locktype3 = 9 +27454610 goalCount = 0 +27454610 goalTotal = 20 +27454611 otherCount = 38 +~~~ +27454632 UP 10 +27454633 waslock = 0 +27454632 512 16779264 +~~~ +27454709 512 2048 +27454756 DOWN 10 +27454756 0 2048 +~~~ +~~~ +~~~ +~~~ +27454777 homeCount = 75 +27454777 waitCount = 30 +27454778 ripCount = 29 +27454778 locktype1 = 1 +27454779 locktype2 = 6 +27454779 locktype3 = 9 +27454780 goalCount = 0 +27454780 goalTotal = 20 +27454781 otherCount = 38 +~~~ +27454826 UP 10 +27454826 waslock = 0 +27454826 512 2048 +~~~ +27458766 DOWN 10 +27458766 0 2048 +~~~ +~~~ +~~~ +~~~ +27458789 homeCount = 75 +27458789 waitCount = 30 +27458790 ripCount = 29 +27458790 locktype1 = 1 +27458791 locktype2 = 6 +27458791 locktype3 = 9 +27458792 goalCount = 0 +27458792 goalTotal = 20 +27458793 otherCount = 38 +~~~ +27460839 UP 12 +27460839 2048 2048 +27460866 DOWN 12 +27460866 0 2048 +27460888 UP 12 +27460888 2048 2048 +27465667 DOWN 12 +27465667 0 2048 +27465757 UP 12 +27465757 2048 2048 +27468839 CLICK1 +27468839 CLICK2 +~~~ +~~~ +~~~ +27468867 2048 67110912 +~~~ +27469017 2048 2048 +27475004 DOWN 12 +27475004 0 2048 +~~~ +~~~ +27475026 0 0 +~~~ +~~~ +27475027 0 1 +~~~ +~~~ +27475029 0 3 +~~~ +~~~ +27475031 0 7 +~~~ +~~~ +27475033 0 15 +~~~ +~~~ +27475035 0 31 +~~~ +~~~ +27475037 0 63 +~~~ +~~~ +27475038 0 127 +~~~ +~~~ +27475040 0 255 +27475041 homeCount = 75 +27475042 waitCount = 31 +27475042 ripCount = 29 +27475043 locktype1 = 1 +27475043 locktype2 = 6 +27475064 locktype3 = 9 +27475065 goalCount = 0 +27475065 goalTotal = 20 +27475066 otherCount = 38 +~~~ +27475067 CURRENTGOAL IS [1] +~~~ +27475072 UP 12 +27475072 2048 255 +27475103 DOWN 12 +27475103 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27475142 homeCount = 75 +27475143 waitCount = 31 +27475143 ripCount = 29 +27475144 locktype1 = 1 +27475144 locktype2 = 6 +27475145 locktype3 = 9 +27475145 goalCount = 0 +27475146 goalTotal = 20 +27475147 otherCount = 38 +~~~ +27475148 CURRENTGOAL IS [1] +~~~ +27482092 UP 2 +27482092 2 255 +~~~ +~~~ +27482690 DOWN 2 +27482690 0 255 +~~~ +~~~ +27482709 0 254 +~~~ +~~~ +27482711 0 252 +~~~ +~~~ +27482712 0 248 +~~~ +~~~ +27482714 0 240 +~~~ +~~~ +27482716 0 224 +~~~ +~~~ +27482718 0 192 +~~~ +~~~ +27482720 0 128 +~~~ +~~~ +27482722 0 0 +~~~ +~~~ +27482723 0 512 +27482724 homeCount = 75 +27482725 waitCount = 31 +27482725 ripCount = 29 +27482726 locktype1 = 1 +27482747 locktype2 = 6 +27482748 locktype3 = 9 +27482748 goalCount = 0 +27482749 goalTotal = 20 +27482749 otherCount = 39 +~~~ +27487605 UP 10 +27487606 waslock = 0 +27487605 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27487635 512 16777728 +~~~ +27487754 DOWN 10 +27487754 0 16777728 +~~~ +~~~ +27487779 0 16778752 +~~~ +~~~ +27487781 0 16778240 +27487782 homeCount = 76 +27487782 waitCount = 31 +27487783 ripCount = 29 +27487783 locktype1 = 1 +27487784 locktype2 = 6 +27487784 locktype3 = 9 +27487785 goalCount = 0 +27487785 goalTotal = 20 +27487786 otherCount = 39 +~~~ +27487807 0 1024 +27487838 UP 10 +27487838 waslock = 0 +27487838 512 1024 +~~~ +27487993 DOWN 10 +27487993 0 1024 +27488009 UP 10 +27488009 waslock = 0 +27488009 512 1024 +~~~ +~~~ +~~~ +~~~ +27488022 homeCount = 76 +27488022 waitCount = 31 +27488023 ripCount = 29 +27488023 locktype1 = 1 +27488024 locktype2 = 6 +27488024 locktype3 = 9 +27488025 goalCount = 0 +27488025 goalTotal = 20 +27488026 otherCount = 39 +~~~ +~~~ +27492613 DOWN 10 +27492613 0 1024 +~~~ +~~~ +~~~ +~~~ +27492643 homeCount = 76 +27492644 waitCount = 31 +27492644 ripCount = 29 +27492645 locktype1 = 1 +27492645 locktype2 = 6 +27492646 locktype3 = 9 +27492646 goalCount = 0 +27492647 goalTotal = 20 +27492647 otherCount = 39 +~~~ +27492656 UP 10 +27492656 waslock = 0 +27492656 512 1024 +~~~ +27492718 DOWN 10 +27492718 0 1024 +~~~ +~~~ +~~~ +~~~ +27492751 homeCount = 76 +27492752 waitCount = 31 +27492752 ripCount = 29 +27492753 locktype1 = 1 +27492753 locktype2 = 6 +27492754 locktype3 = 9 +27492754 goalCount = 0 +27492755 goalTotal = 20 +27492755 otherCount = 39 +~~~ +27495022 UP 11 +27495022 1024 1024 +27497784 DOWN 11 +27497784 0 1024 +27497812 UP 11 +27497812 1024 1024 +27498522 BEEP1 +27498522 BEEP2 +~~~ +~~~ +~~~ +27498543 1024 33555456 +~~~ +27498693 1024 1024 +27505621 DOWN 11 +27505621 0 1024 +~~~ +~~~ +27505642 0 0 +~~~ +~~~ +27505644 0 1 +~~~ +~~~ +27505646 0 3 +~~~ +~~~ +27505647 0 7 +~~~ +~~~ +27505649 0 15 +~~~ +~~~ +27505651 0 31 +~~~ +~~~ +27505653 0 63 +~~~ +~~~ +27505655 0 127 +~~~ +~~~ +27505657 0 255 +27505658 homeCount = 76 +27505658 waitCount = 31 +27505659 ripCount = 30 +27505659 locktype1 = 1 +27505660 locktype2 = 6 +27505681 locktype3 = 9 +27505681 goalCount = 0 +27505682 goalTotal = 20 +27505682 otherCount = 39 +~~~ +27505683 CURRENTGOAL IS [1] +~~~ +27509309 UP 7 +27509309 64 255 +27509329 DOWN 7 +27509329 0 255 +~~~ +~~~ +~~~ +~~~ +27509353 0 254 +~~~ +~~~ +27509355 0 252 +~~~ +~~~ +27509356 0 248 +~~~ +~~~ +27509358 0 240 +~~~ +~~~ +27509360 0 224 +~~~ +~~~ +27509362 0 192 +~~~ +~~~ +27509364 0 128 +~~~ +~~~ +27509366 0 0 +~~~ +~~~ +27509367 0 512 +27509368 homeCount = 76 +27509369 waitCount = 31 +27509369 ripCount = 30 +27509370 locktype1 = 1 +27509370 locktype2 = 6 +27509391 locktype3 = 9 +27509392 goalCount = 0 +27509392 goalTotal = 20 +27509393 otherCount = 40 +~~~ +27509408 64 512 +27510460 DOWN 7 +27510460 0 512 +27515208 UP 10 +27515208 waslock = 0 +27515208 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27515238 512 16777728 +~~~ +27515387 512 512 +27515447 DOWN 10 +27515447 0 512 +~~~ +~~~ +27515474 0 1536 +~~~ +~~~ +27515476 0 1024 +27515477 homeCount = 77 +27515477 waitCount = 31 +27515478 ripCount = 30 +27515478 locktype1 = 1 +27515479 locktype2 = 6 +27515479 locktype3 = 9 +27515480 goalCount = 0 +27515480 goalTotal = 20 +27515481 otherCount = 40 +~~~ +27515502 UP 10 +27515502 waslock = 0 +27515502 512 1024 +~~~ +27519901 DOWN 10 +27519901 0 1024 +27519912 UP 10 +27519912 waslock = 0 +27519912 512 1024 +~~~ +~~~ +~~~ +~~~ +27519937 homeCount = 77 +27519937 waitCount = 31 +27519938 ripCount = 30 +27519938 locktype1 = 1 +27519939 locktype2 = 6 +27519939 locktype3 = 9 +27519940 goalCount = 0 +27519940 goalTotal = 20 +27519941 otherCount = 40 +~~~ +~~~ +27520005 DOWN 10 +27520005 0 1024 +~~~ +~~~ +~~~ +~~~ +27520037 homeCount = 77 +27520037 waitCount = 31 +27520038 ripCount = 30 +27520038 locktype1 = 1 +27520039 locktype2 = 6 +27520039 locktype3 = 9 +27520040 goalCount = 0 +27520040 goalTotal = 20 +27520041 otherCount = 40 +~~~ +27522612 UP 11 +27522612 1024 1024 +27526612 BEEP1 +27526612 BEEP2 +~~~ +~~~ +~~~ +27526634 1024 33555456 +~~~ +27526784 1024 1024 +27534399 DOWN 11 +27534399 0 1024 +~~~ +~~~ +27534424 0 0 +~~~ +~~~ +27534425 0 1 +~~~ +~~~ +27534427 0 3 +~~~ +~~~ +27534429 0 7 +~~~ +~~~ +27534431 0 15 +~~~ +~~~ +27534433 0 31 +~~~ +~~~ +27534435 0 63 +~~~ +~~~ +27534436 0 127 +~~~ +~~~ +27534438 0 255 +27534439 homeCount = 77 +27534440 waitCount = 31 +27534440 ripCount = 31 +27534441 locktype1 = 1 +27534441 locktype2 = 6 +27534462 locktype3 = 9 +27534463 goalCount = 0 +27534463 goalTotal = 20 +27534464 otherCount = 40 +~~~ +27534465 CURRENTGOAL IS [1] +~~~ +27539259 UP 5 +27539259 16 255 +~~~ +~~~ +27539345 DOWN 5 +27539345 0 255 +~~~ +~~~ +27539365 0 254 +~~~ +~~~ +27539366 0 252 +~~~ +~~~ +27539368 0 248 +~~~ +~~~ +27539370 0 240 +~~~ +~~~ +27539372 0 224 +~~~ +~~~ +27539374 0 192 +~~~ +~~~ +27539375 0 128 +~~~ +~~~ +27539377 0 0 +~~~ +~~~ +27539379 0 512 +27539380 homeCount = 77 +27539381 waitCount = 31 +27539381 ripCount = 31 +27539382 locktype1 = 1 +27539382 locktype2 = 6 +27539403 locktype3 = 9 +27539404 goalCount = 0 +27539404 goalTotal = 20 +27539405 otherCount = 41 +~~~ +27539853 16 512 +27540465 DOWN 5 +27540465 0 512 +27540535 16 512 +27540559 DOWN 5 +27540559 0 512 +27545443 UP 10 +27545443 waslock = 0 +27545442 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27545472 512 16777728 +~~~ +27545622 512 512 +27545710 DOWN 10 +27545710 0 512 +~~~ +~~~ +27545737 0 1536 +~~~ +~~~ +27545739 0 1024 +27545740 homeCount = 78 +27545741 waitCount = 31 +27545741 ripCount = 31 +27545742 locktype1 = 1 +27545742 locktype2 = 6 +27545743 locktype3 = 9 +27545743 goalCount = 0 +27545744 goalTotal = 20 +27545744 otherCount = 41 +~~~ +27545765 UP 10 +27545766 waslock = 0 +27545765 512 1024 +~~~ +27552068 DOWN 10 +27552068 0 1024 +~~~ +~~~ +~~~ +~~~ +27552094 homeCount = 78 +27552095 waitCount = 31 +27552095 ripCount = 31 +27552096 locktype1 = 1 +27552096 locktype2 = 6 +27552097 locktype3 = 9 +27552097 goalCount = 0 +27552098 goalTotal = 20 +27552098 otherCount = 41 +~~~ +27552127 UP 10 +27552127 waslock = 0 +27552127 512 1024 +~~~ +27552162 DOWN 10 +27552162 0 1024 +~~~ +~~~ +~~~ +~~~ +27552191 homeCount = 78 +27552191 waitCount = 31 +27552192 ripCount = 31 +27552192 locktype1 = 1 +27552193 locktype2 = 6 +27552193 locktype3 = 9 +27552194 goalCount = 0 +27552194 goalTotal = 20 +27552195 otherCount = 41 +~~~ +27555522 UP 11 +27555522 1024 1024 +27555840 DOWN 11 +27555840 0 1024 +27555878 UP 11 +27555878 1024 1024 +27555985 DOWN 11 +27555985 0 1024 +27556185 LOCKOUT 3 +~~~ +27556203 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +27556206 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27561528 UP 11 +27561528 1024 0 +27561696 DOWN 11 +27561696 0 0 +27569980 UP 1 +27569980 1 0 +27570625 DOWN 1 +27570625 0 0 +27570643 1 0 +27570978 DOWN 1 +27570978 0 0 +27579623 512 0 +27579824 0 0 +27581203 LOCKEND +~~~ +~~~ +~~~ +27581224 0 512 +27582044 UP 10 +27582044 waslock = 0 +27582044 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27582081 512 16777728 +~~~ +27582231 512 512 +27582274 DOWN 10 +27582274 0 512 +~~~ +~~~ +27582292 0 2560 +~~~ +~~~ +27582294 0 2048 +27582295 homeCount = 79 +27582295 waitCount = 31 +27582296 ripCount = 31 +27582296 locktype1 = 1 +27582297 locktype2 = 6 +27582297 locktype3 = 10 +27582298 goalCount = 0 +27582298 goalTotal = 20 +27582299 otherCount = 41 +~~~ +27582320 UP 10 +27582321 waslock = 0 +27582320 512 2048 +~~~ +27582472 DOWN 10 +27582472 0 2048 +~~~ +~~~ +~~~ +~~~ +27582495 homeCount = 79 +27582495 waitCount = 31 +27582496 ripCount = 31 +27582496 locktype1 = 1 +27582497 locktype2 = 6 +27582497 locktype3 = 10 +27582498 goalCount = 0 +27582498 goalTotal = 20 +27582499 otherCount = 41 +~~~ +27582502 UP 10 +27582503 waslock = 0 +27582502 512 2048 +~~~ +27587012 DOWN 10 +27587012 0 2048 +27587023 UP 10 +27587024 waslock = 0 +27587023 512 2048 +~~~ +~~~ +~~~ +~~~ +27587035 homeCount = 79 +27587035 waitCount = 31 +27587036 ripCount = 31 +27587036 locktype1 = 1 +27587037 locktype2 = 6 +27587037 locktype3 = 10 +27587038 goalCount = 0 +27587038 goalTotal = 20 +27587039 otherCount = 41 +~~~ +~~~ +27587107 DOWN 10 +27587107 0 2048 +~~~ +~~~ +~~~ +~~~ +27587134 homeCount = 79 +27587135 waitCount = 31 +27587135 ripCount = 31 +27587136 locktype1 = 1 +27587136 locktype2 = 6 +27587137 locktype3 = 10 +27587137 goalCount = 0 +27587138 goalTotal = 20 +27587139 otherCount = 41 +~~~ +27589509 UP 12 +27589509 2048 2048 +27591426 DOWN 12 +27591426 0 2048 +27591493 UP 12 +27591493 2048 2048 +27595563 DOWN 12 +27595563 0 2048 +27595758 UP 12 +27595758 2048 2048 +27597010 CLICK1 +27597010 CLICK2 +~~~ +~~~ +~~~ +27597035 2048 67110912 +~~~ +27597185 2048 2048 +27603647 DOWN 12 +27603647 0 2048 +~~~ +~~~ +27603673 0 0 +~~~ +~~~ +27603675 0 1 +~~~ +~~~ +27603677 0 3 +~~~ +~~~ +27603679 0 7 +~~~ +~~~ +27603680 0 15 +~~~ +~~~ +27603682 0 31 +~~~ +~~~ +27603684 0 63 +~~~ +~~~ +27603686 0 127 +~~~ +~~~ +27603688 0 255 +27603689 homeCount = 79 +27603689 waitCount = 32 +27603690 ripCount = 31 +27603690 locktype1 = 1 +27603691 locktype2 = 6 +27603712 locktype3 = 10 +27603712 goalCount = 0 +27603713 goalTotal = 20 +27603713 otherCount = 41 +~~~ +27603715 CURRENTGOAL IS [1] +~~~ +27607433 UP 4 +27607433 8 255 +~~~ +~~~ +27608146 DOWN 4 +27608146 0 255 +~~~ +~~~ +27608171 0 254 +~~~ +~~~ +27608173 0 252 +~~~ +~~~ +27608174 0 248 +~~~ +~~~ +27608176 0 240 +~~~ +~~~ +27608178 0 224 +~~~ +~~~ +27608180 0 192 +~~~ +~~~ +27608182 0 128 +~~~ +~~~ +27608184 0 0 +~~~ +~~~ +27608186 0 512 +27608186 homeCount = 79 +27608187 waitCount = 32 +27608188 ripCount = 31 +27608188 locktype1 = 1 +27608209 locktype2 = 6 +27608210 locktype3 = 10 +27608210 goalCount = 0 +27608211 goalTotal = 20 +27608211 otherCount = 42 +~~~ +27613875 UP 10 +27613875 waslock = 0 +27613875 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27613908 512 16777728 +~~~ +27613925 DOWN 10 +27613925 0 16777728 +~~~ +~~~ +27613944 0 16779776 +~~~ +~~~ +27613946 0 16779264 +27613947 homeCount = 80 +27613948 waitCount = 32 +27613948 ripCount = 31 +27613949 locktype1 = 1 +27613949 locktype2 = 6 +27613950 locktype3 = 10 +27613950 goalCount = 0 +27613951 goalTotal = 20 +27613951 otherCount = 42 +~~~ +27613972 UP 10 +27613973 waslock = 0 +27613972 512 16779264 +~~~ +27614058 512 2048 +27614058 DOWN 10 +27614058 0 2048 +~~~ +~~~ +~~~ +~~~ +27614087 homeCount = 80 +27614087 waitCount = 32 +27614088 ripCount = 31 +27614088 locktype1 = 1 +27614089 locktype2 = 6 +27614089 locktype3 = 10 +27614090 goalCount = 0 +27614090 goalTotal = 20 +27614091 otherCount = 42 +~~~ +27614158 UP 10 +27614158 waslock = 0 +27614158 512 2048 +~~~ +27620143 DOWN 10 +27620143 0 2048 +~~~ +~~~ +~~~ +~~~ +27620166 homeCount = 80 +27620166 waitCount = 32 +27620167 ripCount = 31 +27620167 locktype1 = 1 +27620168 locktype2 = 6 +27620168 locktype3 = 10 +27620169 goalCount = 0 +27620169 goalTotal = 20 +27620170 otherCount = 42 +~~~ +27623236 UP 12 +27623236 2048 2048 +27625528 DOWN 12 +27625527 0 2048 +27625543 UP 12 +27625543 2048 2048 +27625606 DOWN 12 +27625606 0 2048 +27625661 UP 12 +27625661 2048 2048 +27626237 CLICK1 +27626237 CLICK2 +~~~ +~~~ +~~~ +27626266 2048 67110912 +~~~ +27626416 2048 2048 +27631910 DOWN 12 +27631910 0 2048 +~~~ +27631934 UP 12 +27631934 2048 2048 +~~~ +~~~ +27631936 2048 0 +~~~ +~~~ +27631937 2048 1 +~~~ +27631938 2048 3 +~~~ +~~~ +27631940 2048 7 +~~~ +~~~ +27631942 2048 15 +~~~ +~~~ +27631943 2048 31 +~~~ +~~~ +27631945 2048 63 +~~~ +~~~ +27631947 2048 127 +~~~ +~~~ +27631949 2048 255 +27631950 homeCount = 80 +27631971 waitCount = 33 +27631971 ripCount = 31 +27631972 locktype1 = 1 +27631972 locktype2 = 6 +27631973 locktype3 = 10 +27631973 goalCount = 0 +27631974 goalTotal = 20 +27631974 otherCount = 42 +~~~ +27631975 CURRENTGOAL IS [1] +~~~ +27632012 DOWN 12 +27632012 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27632045 homeCount = 80 +27632045 waitCount = 33 +27632046 ripCount = 31 +27632047 locktype1 = 1 +27632047 locktype2 = 6 +27632048 locktype3 = 10 +27632048 goalCount = 0 +27632049 goalTotal = 20 +27632049 otherCount = 42 +~~~ +27632050 CURRENTGOAL IS [1] +~~~ +27632101 UP 12 +27632101 2048 255 +27632109 DOWN 12 +27632109 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27632148 homeCount = 80 +27632149 waitCount = 33 +27632150 ripCount = 31 +27632150 locktype1 = 1 +27632151 locktype2 = 6 +27632151 locktype3 = 10 +27632152 goalCount = 0 +27632152 goalTotal = 20 +27632153 otherCount = 42 +~~~ +27632154 CURRENTGOAL IS [1] +~~~ +27635610 UP 3 +27635610 4 255 +~~~ +~~~ +27636256 DOWN 3 +27636256 0 255 +~~~ +~~~ +27636278 0 254 +~~~ +~~~ +27636280 0 252 +~~~ +~~~ +27636282 0 248 +~~~ +~~~ +27636284 0 240 +~~~ +~~~ +27636286 0 224 +~~~ +~~~ +27636287 0 192 +~~~ +~~~ +27636289 0 128 +~~~ +~~~ +27636291 0 0 +~~~ +~~~ +27636293 0 512 +27636294 homeCount = 80 +27636294 waitCount = 33 +27636295 ripCount = 31 +27636295 locktype1 = 1 +27636317 locktype2 = 6 +27636317 locktype3 = 10 +27636318 goalCount = 0 +27636318 goalTotal = 20 +27636319 otherCount = 43 +~~~ +27639801 UP 10 +27639801 waslock = 0 +27639801 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27639826 512 16777728 +~~~ +27639833 DOWN 10 +27639833 0 16777728 +~~~ +~~~ +27639856 0 16779776 +~~~ +~~~ +27639858 0 16779264 +27639859 homeCount = 81 +27639860 waitCount = 33 +27639860 ripCount = 31 +27639861 locktype1 = 1 +27639861 locktype2 = 6 +27639862 locktype3 = 10 +27639862 goalCount = 0 +27639863 goalTotal = 20 +27639863 otherCount = 43 +~~~ +27639884 UP 10 +27639884 waslock = 0 +27639884 512 16779264 +~~~ +27639976 512 2048 +27640009 DOWN 10 +27640009 0 2048 +27640033 UP 10 +27640033 waslock = 0 +27640033 512 2048 +~~~ +~~~ +~~~ +~~~ +27640042 homeCount = 81 +27640042 waitCount = 33 +27640043 ripCount = 31 +27640043 locktype1 = 1 +27640044 locktype2 = 6 +27640044 locktype3 = 10 +27640045 goalCount = 0 +27640045 goalTotal = 20 +27640046 otherCount = 43 +~~~ +~~~ +27644807 DOWN 10 +27644807 0 2048 +~~~ +~~~ +~~~ +~~~ +27644834 homeCount = 81 +27644834 waitCount = 33 +27644835 ripCount = 31 +27644835 locktype1 = 1 +27644836 locktype2 = 6 +27644836 locktype3 = 10 +27644837 goalCount = 0 +27644837 goalTotal = 20 +27644838 otherCount = 43 +~~~ +27646984 UP 12 +27646984 2048 2048 +27651484 CLICK1 +27651484 CLICK2 +~~~ +~~~ +~~~ +27651502 2048 67110912 +~~~ +27651652 2048 2048 +27656240 DOWN 12 +27656240 0 2048 +27656249 UP 12 +27656249 2048 2048 +~~~ +~~~ +27656262 2048 0 +~~~ +~~~ +27656264 2048 1 +~~~ +~~~ +27656266 2048 3 +~~~ +~~~ +27656268 2048 7 +~~~ +~~~ +27656270 2048 15 +~~~ +~~~ +27656271 2048 31 +~~~ +~~~ +27656273 2048 63 +~~~ +~~~ +27656275 2048 127 +~~~ +~~~ +27656277 2048 255 +27656278 homeCount = 81 +27656278 waitCount = 34 +27656279 ripCount = 31 +27656280 locktype1 = 1 +27656301 locktype2 = 6 +27656301 locktype3 = 10 +27656302 goalCount = 0 +27656302 goalTotal = 20 +27656303 otherCount = 43 +~~~ +27656304 CURRENTGOAL IS [1] +~~~ +27656327 DOWN 12 +27656327 0 255 +27656335 UP 12 +27656335 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656365 DOWN 12 +27656365 0 255 +~~~ +~~~ +~~~ +27656369 homeCount = 81 +27656369 waitCount = 34 +27656370 ripCount = 31 +27656371 locktype1 = 1 +27656371 locktype2 = 6 +27656372 locktype3 = 10 +27656372 goalCount = 0 +27656373 goalTotal = 20 +27656373 otherCount = 43 +~~~ +27656374 CURRENTGOAL IS [1] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656412 homeCount = 81 +27656413 waitCount = 34 +27656413 ripCount = 31 +27656414 locktype1 = 1 +27656414 locktype2 = 6 +27656415 locktype3 = 10 +27656415 goalCount = 0 +27656416 goalTotal = 20 +27656416 otherCount = 43 +~~~ +27656417 CURRENTGOAL IS [1] +~~~ +27656456 UP 12 +27656456 2048 255 +27656502 DOWN 12 +27656502 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656539 homeCount = 81 +27656540 waitCount = 34 +27656540 ripCount = 31 +27656541 locktype1 = 1 +27656541 locktype2 = 6 +27656542 locktype3 = 10 +27656542 goalCount = 0 +27656543 goalTotal = 20 +27656543 otherCount = 43 +~~~ +27656544 CURRENTGOAL IS [1] +~~~ +27656604 UP 12 +27656604 2048 255 +27656632 DOWN 12 +27656632 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656669 homeCount = 81 +27656670 waitCount = 34 +27656670 ripCount = 31 +27656671 locktype1 = 1 +27656671 locktype2 = 6 +27656672 locktype3 = 10 +27656672 goalCount = 0 +27656673 goalTotal = 20 +27656673 otherCount = 43 +~~~ +27656674 CURRENTGOAL IS [1] +~~~ +27656745 UP 12 +27656745 2048 255 +27656777 DOWN 12 +27656776 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656824 homeCount = 81 +27656825 waitCount = 34 +27656825 ripCount = 31 +27656826 locktype1 = 1 +27656826 locktype2 = 6 +27656827 locktype3 = 10 +27656827 goalCount = 0 +27656828 goalTotal = 20 +27656828 otherCount = 43 +~~~ +27656829 CURRENTGOAL IS [1] +~~~ +27656904 UP 12 +27656904 2048 255 +27656933 DOWN 12 +27656933 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27656975 homeCount = 81 +27656975 waitCount = 34 +27656976 ripCount = 31 +27656976 locktype1 = 1 +27656977 locktype2 = 6 +27656977 locktype3 = 10 +27656978 goalCount = 0 +27656978 goalTotal = 20 +27656979 otherCount = 43 +~~~ +27656980 CURRENTGOAL IS [1] +~~~ +27657042 UP 12 +27657042 2048 255 +27657070 DOWN 12 +27657070 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657106 homeCount = 81 +27657106 waitCount = 34 +27657107 ripCount = 31 +27657107 locktype1 = 1 +27657108 locktype2 = 6 +27657108 locktype3 = 10 +27657109 goalCount = 0 +27657109 goalTotal = 20 +27657110 otherCount = 43 +~~~ +27657111 CURRENTGOAL IS [1] +~~~ +27657177 UP 12 +27657177 2048 255 +27657218 DOWN 12 +27657217 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657256 homeCount = 81 +27657256 waitCount = 34 +27657257 ripCount = 31 +27657257 locktype1 = 1 +27657258 locktype2 = 6 +27657258 locktype3 = 10 +27657259 goalCount = 0 +27657259 goalTotal = 20 +27657260 otherCount = 43 +~~~ +27657261 CURRENTGOAL IS [1] +~~~ +27657282 UP 12 +27657282 2048 255 +27657301 DOWN 12 +27657301 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657335 homeCount = 81 +27657335 waitCount = 34 +27657336 ripCount = 31 +27657337 locktype1 = 1 +27657337 locktype2 = 6 +27657338 locktype3 = 10 +27657338 goalCount = 0 +27657339 goalTotal = 20 +27657339 otherCount = 43 +~~~ +27657340 CURRENTGOAL IS [1] +~~~ +27657361 UP 12 +27657361 2048 255 +27657380 DOWN 12 +27657380 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657415 homeCount = 81 +27657415 waitCount = 34 +27657416 ripCount = 31 +27657416 locktype1 = 1 +27657417 locktype2 = 6 +27657417 locktype3 = 10 +27657418 goalCount = 0 +27657418 goalTotal = 20 +27657419 otherCount = 43 +~~~ +27657420 CURRENTGOAL IS [1] +~~~ +27657492 UP 12 +27657492 2048 255 +27657528 DOWN 12 +27657528 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27657567 homeCount = 81 +27657568 waitCount = 34 +27657568 ripCount = 31 +27657569 locktype1 = 1 +27657569 locktype2 = 6 +27657570 locktype3 = 10 +27657570 goalCount = 0 +27657571 goalTotal = 20 +27657571 otherCount = 43 +~~~ +27657572 CURRENTGOAL IS [1] +~~~ +27657594 UP 12 +27657593 2048 255 +27659986 DOWN 12 +27659986 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27660019 homeCount = 81 +27660019 waitCount = 34 +27660020 ripCount = 31 +27660020 locktype1 = 1 +27660021 locktype2 = 6 +27660021 locktype3 = 10 +27660022 goalCount = 0 +27660022 goalTotal = 20 +27660023 otherCount = 43 +~~~ +27660024 CURRENTGOAL IS [1] +~~~ +27660045 UP 12 +27660045 2048 255 +27660067 DOWN 12 +27660067 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27660108 homeCount = 81 +27660108 waitCount = 34 +27660109 ripCount = 31 +27660109 locktype1 = 1 +27660110 locktype2 = 6 +27660110 locktype3 = 10 +27660111 goalCount = 0 +27660111 goalTotal = 20 +27660112 otherCount = 43 +~~~ +27660113 CURRENTGOAL IS [1] +~~~ +27663773 UP 1 +27663773 1 255 +~~~ +~~~ +27663794 outer reward +~~~ +27663794 1 65791 +~~~ +~~~ +27664244 1 255 +27674160 DOWN 1 +27674160 0 255 +~~~ +~~~ +27674180 0 254 +~~~ +~~~ +27674182 0 252 +~~~ +~~~ +27674184 0 248 +~~~ +~~~ +27674186 0 240 +~~~ +~~~ +27674188 0 224 +~~~ +~~~ +27674189 0 192 +~~~ +~~~ +27674191 0 128 +~~~ +~~~ +27674193 0 0 +~~~ +~~~ +27674195 0 512 +27674196 homeCount = 81 +27674196 waitCount = 34 +27674197 ripCount = 31 +27674197 locktype1 = 1 +27674198 locktype2 = 6 +27674219 locktype3 = 10 +27674220 goalCount = 1 +27674220 goalTotal = 21 +27674221 otherCount = 43 +~~~ +27674221 1 512 +27674272 DOWN 1 +27674272 0 512 +27678680 UP 10 +27678680 waslock = 0 +27678679 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27678707 512 16777728 +~~~ +27678857 512 512 +27682040 DOWN 10 +27682040 0 512 +~~~ +~~~ +27682061 0 1536 +~~~ +~~~ +27682062 0 1024 +27682063 homeCount = 82 +27682064 waitCount = 34 +27682065 ripCount = 31 +27682065 locktype1 = 1 +27682066 locktype2 = 6 +27682066 locktype3 = 10 +27682067 goalCount = 1 +27682067 goalTotal = 21 +27682068 otherCount = 43 +~~~ +27682089 UP 10 +27682089 waslock = 0 +27682089 512 1024 +~~~ +27682132 DOWN 10 +27682132 0 1024 +~~~ +~~~ +~~~ +~~~ +27682163 homeCount = 82 +27682164 waitCount = 34 +27682164 ripCount = 31 +27682165 locktype1 = 1 +27682165 locktype2 = 6 +27682166 locktype3 = 10 +27682166 goalCount = 1 +27682167 goalTotal = 21 +27682167 otherCount = 43 +~~~ +27684669 UP 11 +27684669 1024 1024 +27684805 DOWN 11 +27684805 0 1024 +27684823 UP 11 +27684823 1024 1024 +27692669 BEEP1 +27692669 BEEP2 +~~~ +~~~ +~~~ +27692694 1024 33555456 +~~~ +27692843 1024 1024 +27699461 DOWN 11 +27699461 0 1024 +~~~ +~~~ +27699484 0 0 +~~~ +~~~ +27699486 0 1 +~~~ +~~~ +27699488 0 3 +~~~ +~~~ +27699489 0 7 +~~~ +~~~ +27699491 0 15 +~~~ +~~~ +27699493 0 31 +~~~ +~~~ +27699495 0 63 +~~~ +~~~ +27699497 0 127 +~~~ +~~~ +27699498 0 255 +27699499 homeCount = 82 +27699500 waitCount = 34 +27699501 ripCount = 32 +27699501 locktype1 = 1 +27699502 locktype2 = 6 +27699523 locktype3 = 10 +27699523 goalCount = 1 +27699524 goalTotal = 21 +27699524 otherCount = 43 +~~~ +27699525 CURRENTGOAL IS [1] +~~~ +27699526 UP 11 +27699526 1024 255 +27699618 DOWN 11 +27699618 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27699659 homeCount = 82 +27699659 waitCount = 34 +27699660 ripCount = 32 +27699660 locktype1 = 1 +27699661 locktype2 = 6 +27699661 locktype3 = 10 +27699662 goalCount = 1 +27699662 goalTotal = 21 +27699663 otherCount = 43 +~~~ +27699664 CURRENTGOAL IS [1] +~~~ +27699703 UP 11 +27699703 1024 255 +27701657 DOWN 11 +27701657 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27701692 homeCount = 82 +27701692 waitCount = 34 +27701693 ripCount = 32 +27701693 locktype1 = 1 +27701694 locktype2 = 6 +27701694 locktype3 = 10 +27701695 goalCount = 1 +27701695 goalTotal = 21 +27701696 otherCount = 43 +~~~ +27701697 CURRENTGOAL IS [1] +~~~ +27704975 UP 7 +27704975 64 255 +~~~ +~~~ +27705020 DOWN 7 +27705020 0 255 +~~~ +~~~ +27705045 0 254 +~~~ +~~~ +27705047 0 252 +~~~ +~~~ +27705049 0 248 +~~~ +~~~ +27705051 0 240 +~~~ +~~~ +27705053 0 224 +~~~ +~~~ +27705054 0 192 +~~~ +~~~ +27705056 0 128 +~~~ +~~~ +27705058 0 0 +~~~ +~~~ +27705060 0 512 +27705061 homeCount = 82 +27705062 waitCount = 34 +27705062 ripCount = 32 +27705063 locktype1 = 1 +27705063 locktype2 = 6 +27705084 locktype3 = 10 +27705084 goalCount = 1 +27705085 goalTotal = 21 +27705085 otherCount = 44 +~~~ +27705086 64 512 +27705608 DOWN 7 +27705608 0 512 +27709885 UP 10 +27709885 waslock = 0 +27709884 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27709910 512 16777728 +~~~ +27710060 512 512 +27710125 DOWN 10 +27710125 0 512 +27710138 UP 10 +27710139 waslock = 0 +27710138 512 512 +~~~ +~~~ +27710156 512 1536 +~~~ +~~~ +27710158 512 1024 +27710159 homeCount = 83 +27710160 waitCount = 34 +27710160 ripCount = 32 +27710161 locktype1 = 1 +27710161 locktype2 = 6 +27710162 locktype3 = 10 +27710162 goalCount = 1 +27710163 goalTotal = 21 +27710163 otherCount = 44 +~~~ +~~~ +27715361 DOWN 10 +27715361 0 1024 +~~~ +~~~ +~~~ +~~~ +27715381 homeCount = 83 +27715382 waitCount = 34 +27715382 ripCount = 32 +27715383 locktype1 = 1 +27715383 locktype2 = 6 +27715384 locktype3 = 10 +27715384 goalCount = 1 +27715385 goalTotal = 21 +27715385 otherCount = 44 +~~~ +27715396 UP 10 +27715396 waslock = 0 +27715396 512 1024 +~~~ +27715460 DOWN 10 +27715460 0 1024 +~~~ +~~~ +~~~ +~~~ +27715482 homeCount = 83 +27715483 waitCount = 34 +27715483 ripCount = 32 +27715484 locktype1 = 1 +27715484 locktype2 = 6 +27715485 locktype3 = 10 +27715485 goalCount = 1 +27715486 goalTotal = 21 +27715486 otherCount = 44 +~~~ +27718462 UP 11 +27718462 1024 1024 +27725622 DOWN 11 +27725622 0 1024 +27725640 UP 11 +27725639 1024 1024 +27725962 BEEP1 +27725962 BEEP2 +~~~ +~~~ +~~~ +27725991 1024 33555456 +~~~ +27726141 1024 1024 +27732734 DOWN 11 +27732734 0 1024 +~~~ +~~~ +27732758 0 0 +~~~ +~~~ +27732760 0 1 +~~~ +~~~ +27732761 0 3 +~~~ +~~~ +27732763 0 7 +~~~ +~~~ +27732765 0 15 +~~~ +~~~ +27732767 0 31 +~~~ +~~~ +27732769 0 63 +~~~ +~~~ +27732771 0 127 +~~~ +~~~ +27732772 0 255 +27732773 homeCount = 83 +27732774 waitCount = 34 +27732774 ripCount = 33 +27732775 locktype1 = 1 +27732775 locktype2 = 6 +27732796 locktype3 = 10 +27732797 goalCount = 1 +27732797 goalTotal = 21 +27732798 otherCount = 44 +~~~ +27732799 CURRENTGOAL IS [1] +~~~ +27732799 UP 11 +27732799 1024 255 +27732846 DOWN 11 +27732846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27732883 homeCount = 83 +27732883 waitCount = 34 +27732884 ripCount = 33 +27732884 locktype1 = 1 +27732885 locktype2 = 6 +27732885 locktype3 = 10 +27732886 goalCount = 1 +27732886 goalTotal = 21 +27732887 otherCount = 44 +~~~ +27732888 CURRENTGOAL IS [1] +~~~ +27732921 UP 11 +27732921 1024 255 +27732964 DOWN 11 +27732964 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27733006 homeCount = 83 +27733006 waitCount = 34 +27733007 ripCount = 33 +27733007 locktype1 = 1 +27733008 locktype2 = 6 +27733008 locktype3 = 10 +27733009 goalCount = 1 +27733009 goalTotal = 21 +27733010 otherCount = 44 +~~~ +27733011 CURRENTGOAL IS [1] +~~~ +27740748 UP 1 +27740748 1 255 +~~~ +~~~ +27740772 outer reward +~~~ +27740772 1 65791 +~~~ +~~~ +27741222 1 255 +27751154 DOWN 1 +27751154 0 255 +~~~ +~~~ +27751180 0 254 +~~~ +~~~ +27751182 0 252 +~~~ +~~~ +27751184 0 248 +~~~ +~~~ +27751186 0 240 +~~~ +~~~ +27751188 0 224 +~~~ +~~~ +27751189 0 192 +~~~ +~~~ +27751191 0 128 +~~~ +~~~ +27751193 0 0 +~~~ +~~~ +27751195 0 512 +27751196 homeCount = 83 +27751196 waitCount = 34 +27751197 ripCount = 33 +27751197 locktype1 = 1 +27751219 locktype2 = 6 +27751219 locktype3 = 10 +27751220 goalCount = 2 +27751220 goalTotal = 22 +27751221 otherCount = 44 +~~~ +27755454 UP 10 +27755454 waslock = 0 +27755454 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27755488 512 16777728 +~~~ +27755637 512 512 +27760423 DOWN 10 +27760423 0 512 +~~~ +~~~ +27760440 0 2560 +~~~ +~~~ +27760442 0 2048 +27760443 homeCount = 84 +27760444 waitCount = 34 +27760444 ripCount = 33 +27760445 locktype1 = 1 +27760445 locktype2 = 6 +27760446 locktype3 = 10 +27760446 goalCount = 2 +27760447 goalTotal = 22 +27760447 otherCount = 44 +~~~ +27760475 UP 10 +27760475 waslock = 0 +27760475 512 2048 +~~~ +27760523 DOWN 10 +27760523 0 2048 +~~~ +~~~ +~~~ +~~~ +27760554 homeCount = 84 +27760555 waitCount = 34 +27760555 ripCount = 33 +27760556 locktype1 = 1 +27760556 locktype2 = 6 +27760557 locktype3 = 10 +27760557 goalCount = 2 +27760558 goalTotal = 22 +27760559 otherCount = 44 +~~~ +27765567 UP 12 +27765567 2048 2048 +27768756 DOWN 12 +27768756 0 2048 +27768842 UP 12 +27768842 2048 2048 +27768908 DOWN 12 +27768908 0 2048 +27769091 UP 12 +27769091 2048 2048 +27769107 DOWN 12 +27769107 0 2048 +27769128 UP 12 +27769128 2048 2048 +27771567 CLICK1 +27771567 CLICK2 +~~~ +~~~ +~~~ +27771592 2048 67110912 +~~~ +27771742 2048 2048 +27776734 DOWN 12 +27776734 0 2048 +~~~ +~~~ +27776751 0 0 +~~~ +~~~ +27776753 0 1 +~~~ +~~~ +27776754 0 3 +~~~ +~~~ +27776756 0 7 +~~~ +~~~ +27776758 0 15 +~~~ +~~~ +27776760 0 31 +~~~ +~~~ +27776762 0 63 +~~~ +~~~ +27776764 0 127 +~~~ +~~~ +27776765 UP 12 +27776765 2048 255 +27776767 homeCount = 84 +27776767 waitCount = 35 +27776768 ripCount = 33 +27776768 locktype1 = 1 +27776789 locktype2 = 6 +27776790 locktype3 = 10 +27776790 goalCount = 2 +27776791 goalTotal = 22 +27776791 otherCount = 44 +~~~ +27776792 CURRENTGOAL IS [1] +~~~ +27776832 DOWN 12 +27776832 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27776867 homeCount = 84 +27776868 waitCount = 35 +27776869 ripCount = 33 +27776869 locktype1 = 1 +27776870 locktype2 = 6 +27776870 locktype3 = 10 +27776871 goalCount = 2 +27776871 goalTotal = 22 +27776872 otherCount = 44 +~~~ +27776873 CURRENTGOAL IS [1] +~~~ +27789324 UP 1 +27789324 1 255 +~~~ +~~~ +27789343 outer reward +~~~ +27789344 1 65791 +~~~ +~~~ +27789793 1 255 +27798609 DOWN 1 +27798609 0 255 +~~~ +~~~ +27798631 0 254 +~~~ +~~~ +27798633 0 252 +~~~ +~~~ +27798635 0 248 +~~~ +~~~ +27798637 0 240 +~~~ +~~~ +27798638 0 224 +~~~ +~~~ +27798640 0 192 +~~~ +~~~ +27798642 0 128 +~~~ +~~~ +27798644 0 0 +~~~ +~~~ +27798646 0 512 +27798647 homeCount = 84 +27798647 waitCount = 35 +27798648 ripCount = 33 +27798648 locktype1 = 1 +27798649 locktype2 = 6 +27798670 locktype3 = 10 +27798670 goalCount = 3 +27798671 goalTotal = 23 +27798671 otherCount = 44 +~~~ +27805587 UP 10 +27805587 waslock = 0 +27805587 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27805621 512 16777728 +~~~ +27805771 512 512 +27805806 DOWN 10 +27805806 0 512 +~~~ +27805822 UP 10 +27805822 waslock = 0 +27805822 512 512 +~~~ +~~~ +~~~ +27805825 512 2048 +27805826 homeCount = 85 +27805826 waitCount = 35 +27805827 ripCount = 33 +27805827 locktype1 = 1 +27805828 locktype2 = 6 +27805828 locktype3 = 10 +27805829 goalCount = 3 +27805849 goalTotal = 23 +27805850 otherCount = 44 +~~~ +~~~ +27811079 DOWN 10 +27811078 0 2048 +~~~ +~~~ +~~~ +~~~ +27811106 homeCount = 85 +27811107 waitCount = 35 +27811107 ripCount = 33 +27811108 locktype1 = 1 +27811108 locktype2 = 6 +27811109 locktype3 = 10 +27811109 goalCount = 3 +27811110 goalTotal = 23 +27811110 otherCount = 44 +~~~ +27811131 UP 10 +27811132 waslock = 0 +27811131 512 2048 +~~~ +27811175 DOWN 10 +27811175 0 2048 +~~~ +~~~ +~~~ +~~~ +27811202 homeCount = 85 +27811202 waitCount = 35 +27811203 ripCount = 33 +27811203 locktype1 = 1 +27811204 locktype2 = 6 +27811204 locktype3 = 10 +27811205 goalCount = 3 +27811205 goalTotal = 23 +27811206 otherCount = 44 +~~~ +27813456 UP 12 +27813456 2048 2048 +27815579 DOWN 12 +27815579 0 2048 +27815618 UP 12 +27815618 2048 2048 +27818639 DOWN 12 +27818639 0 2048 +27818723 UP 12 +27818723 2048 2048 +27821456 CLICK1 +27821456 CLICK2 +~~~ +~~~ +~~~ +27821480 2048 67110912 +~~~ +27821630 2048 2048 +27830770 DOWN 12 +27830770 0 2048 +~~~ +~~~ +27830788 0 0 +~~~ +~~~ +27830790 0 1 +~~~ +~~~ +27830792 0 3 +~~~ +~~~ +27830794 0 7 +~~~ +~~~ +27830796 0 15 +~~~ +~~~ +27830797 0 31 +~~~ +~~~ +27830799 0 63 +~~~ +~~~ +27830801 0 127 +~~~ +~~~ +27830803 0 255 +27830804 homeCount = 85 +27830805 waitCount = 36 +27830805 ripCount = 33 +27830806 locktype1 = 1 +27830806 locktype2 = 6 +27830827 locktype3 = 10 +27830828 goalCount = 3 +27830828 goalTotal = 23 +27830829 otherCount = 44 +~~~ +27830830 CURRENTGOAL IS [1] +~~~ +27836086 UP 1 +27836086 1 255 +~~~ +~~~ +27836109 outer reward +~~~ +27836110 1 65791 +~~~ +~~~ +27836346 DOWN 1 +27836346 0 65791 +~~~ +~~~ +27836368 0 65790 +~~~ +~~~ +27836369 0 65788 +~~~ +~~~ +27836371 0 65784 +~~~ +~~~ +27836373 0 65776 +~~~ +~~~ +27836375 0 65760 +~~~ +27836376 1 65760 +~~~ +~~~ +27836378 1 65728 +~~~ +27836379 1 65664 +~~~ +~~~ +27836381 1 65536 +~~~ +~~~ +27836382 1 66048 +27836383 homeCount = 85 +27836384 waitCount = 36 +27836405 ripCount = 33 +27836405 locktype1 = 1 +27836406 locktype2 = 6 +27836406 locktype3 = 10 +27836407 goalCount = 4 +27836407 goalTotal = 24 +27836408 otherCount = 44 +~~~ +27836559 1 512 +27845893 DOWN 1 +27845893 0 512 +27845965 1 512 +27846024 DOWN 1 +27846024 0 512 +27846085 1 512 +27846137 DOWN 1 +27846137 0 512 +27850834 UP 10 +27850834 waslock = 0 +27850834 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27850864 512 16777728 +~~~ +27851011 DOWN 10 +27851010 0 16777728 +27851014 0 512 +~~~ +~~~ +27851029 0 1536 +~~~ +~~~ +27851031 0 1024 +27851032 homeCount = 86 +27851033 waitCount = 36 +27851033 ripCount = 33 +27851034 locktype1 = 1 +27851034 locktype2 = 6 +27851035 locktype3 = 10 +27851035 goalCount = 4 +27851036 goalTotal = 24 +27851036 otherCount = 44 +~~~ +27851057 UP 10 +27851058 waslock = 0 +27851057 512 1024 +~~~ +27853817 DOWN 10 +27853817 0 1024 +~~~ +~~~ +~~~ +~~~ +27853841 homeCount = 86 +27853841 waitCount = 36 +27853842 ripCount = 33 +27853842 locktype1 = 1 +27853843 locktype2 = 6 +27853843 locktype3 = 10 +27853844 goalCount = 4 +27853844 goalTotal = 24 +27853845 otherCount = 44 +~~~ +27856740 UP 11 +27856740 1024 1024 +27860921 DOWN 11 +27860921 0 1024 +27860925 UP 11 +27860925 1024 1024 +27864241 BEEP1 +27864241 BEEP2 +~~~ +~~~ +~~~ +27864260 1024 33555456 +~~~ +27864410 1024 1024 +27870387 DOWN 11 +27870387 0 1024 +27870394 UP 11 +27870394 1024 1024 +~~~ +~~~ +27870408 1024 0 +~~~ +~~~ +27870410 1024 1 +~~~ +~~~ +27870412 1024 3 +~~~ +~~~ +27870413 1024 7 +~~~ +~~~ +27870415 1024 15 +~~~ +~~~ +27870417 1024 31 +~~~ +~~~ +27870419 1024 63 +~~~ +~~~ +27870421 1024 127 +~~~ +~~~ +27870423 1024 255 +27870424 homeCount = 86 +27870424 waitCount = 36 +27870425 ripCount = 34 +27870425 locktype1 = 1 +27870446 locktype2 = 6 +27870447 locktype3 = 10 +27870447 goalCount = 4 +27870448 goalTotal = 24 +27870448 otherCount = 44 +~~~ +27870450 CURRENTGOAL IS [1] +~~~ +27872522 DOWN 11 +27872522 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872551 UP 11 +27872551 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872557 homeCount = 86 +27872557 waitCount = 36 +27872558 ripCount = 34 +27872559 locktype1 = 1 +27872559 locktype2 = 6 +27872560 locktype3 = 10 +27872560 goalCount = 4 +27872561 goalTotal = 24 +27872561 otherCount = 44 +~~~ +27872562 CURRENTGOAL IS [1] +~~~ +27872619 DOWN 11 +27872619 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27872660 homeCount = 86 +27872661 waitCount = 36 +27872661 ripCount = 34 +27872662 locktype1 = 1 +27872662 locktype2 = 6 +27872663 locktype3 = 10 +27872663 goalCount = 4 +27872664 goalTotal = 24 +27872664 otherCount = 44 +~~~ +27872666 CURRENTGOAL IS [1] +~~~ +27877231 UP 1 +27877231 1 255 +~~~ +~~~ +27877255 outer reward +~~~ +27877255 1 65791 +~~~ +~~~ +27877705 1 255 +27886848 DOWN 1 +27886848 0 255 +~~~ +~~~ +27886873 0 254 +~~~ +~~~ +27886875 0 252 +~~~ +~~~ +27886877 0 248 +~~~ +~~~ +27886879 0 240 +~~~ +~~~ +27886880 0 224 +~~~ +~~~ +27886882 0 192 +~~~ +~~~ +27886884 0 128 +~~~ +~~~ +27886886 0 0 +~~~ +~~~ +27886888 0 512 +27886889 homeCount = 86 +27886889 waitCount = 36 +27886890 ripCount = 34 +27886890 locktype1 = 1 +27886911 locktype2 = 6 +27886912 locktype3 = 10 +27886912 goalCount = 5 +27886913 goalTotal = 25 +27886913 otherCount = 44 +~~~ +27886914 1 512 +27888622 DOWN 1 +27888622 0 512 +27888710 1 512 +27888740 DOWN 1 +27888740 0 512 +27893642 UP 10 +27893642 waslock = 0 +27893642 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27893669 512 16777728 +~~~ +27893815 DOWN 10 +27893815 0 16777728 +27893819 0 512 +~~~ +~~~ +27893834 0 1536 +~~~ +~~~ +27893836 0 1024 +27893837 homeCount = 87 +27893837 waitCount = 36 +27893838 ripCount = 34 +27893838 locktype1 = 1 +27893839 locktype2 = 6 +27893839 locktype3 = 10 +27893840 goalCount = 5 +27893840 goalTotal = 25 +27893841 otherCount = 44 +~~~ +27893862 UP 10 +27893862 waslock = 0 +27893862 512 1024 +~~~ +27899216 DOWN 10 +27899216 0 1024 +~~~ +~~~ +~~~ +~~~ +27899236 homeCount = 87 +27899237 waitCount = 36 +27899238 ripCount = 34 +27899238 locktype1 = 1 +27899239 locktype2 = 6 +27899239 locktype3 = 10 +27899240 goalCount = 5 +27899240 goalTotal = 25 +27899241 otherCount = 44 +~~~ +27899293 UP 10 +27899294 waslock = 0 +27899293 512 1024 +~~~ +27899323 DOWN 10 +27899323 0 1024 +~~~ +~~~ +~~~ +~~~ +27899339 homeCount = 87 +27899340 waitCount = 36 +27899340 ripCount = 34 +27899341 locktype1 = 1 +27899341 locktype2 = 6 +27899342 locktype3 = 10 +27899342 goalCount = 5 +27899343 goalTotal = 25 +27899343 otherCount = 44 +~~~ +27902072 UP 11 +27902072 1024 1024 +27905909 DOWN 11 +27905909 0 1024 +27905926 UP 11 +27905926 1024 1024 +27911073 BEEP1 +27911073 BEEP2 +~~~ +~~~ +~~~ +27911096 1024 33555456 +~~~ +27911190 DOWN 11 +27911190 0 33555456 +27911215 UP 11 +27911215 1024 33555456 +27911245 1024 1024 +~~~ +~~~ +27911764 1024 0 +~~~ +~~~ +27911766 1024 1 +~~~ +~~~ +27911768 1024 3 +~~~ +~~~ +27911770 1024 7 +~~~ +~~~ +27911771 1024 15 +~~~ +~~~ +27911773 1024 31 +~~~ +~~~ +27911775 1024 63 +~~~ +~~~ +27911777 1024 127 +~~~ +~~~ +27911779 1024 255 +27911780 homeCount = 87 +27911780 waitCount = 36 +27911781 ripCount = 35 +27911781 locktype1 = 1 +27911803 locktype2 = 6 +27911803 locktype3 = 10 +27911804 goalCount = 5 +27911804 goalTotal = 25 +27911805 otherCount = 44 +~~~ +27911806 CURRENTGOAL IS [1] +~~~ +27918132 DOWN 11 +27918132 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27918170 homeCount = 87 +27918171 waitCount = 36 +27918171 ripCount = 35 +27918172 locktype1 = 1 +27918172 locktype2 = 6 +27918173 locktype3 = 10 +27918173 goalCount = 5 +27918174 goalTotal = 25 +27918174 otherCount = 44 +~~~ +27918175 CURRENTGOAL IS [1] +~~~ +27918197 UP 11 +27918197 1024 255 +27920410 DOWN 11 +27920410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27920453 homeCount = 87 +27920453 waitCount = 36 +27920454 ripCount = 35 +27920454 locktype1 = 1 +27920455 locktype2 = 6 +27920455 locktype3 = 10 +27920456 goalCount = 5 +27920456 goalTotal = 25 +27920457 otherCount = 44 +~~~ +27920458 CURRENTGOAL IS [1] +~~~ +27920480 UP 11 +27920479 1024 255 +27920515 DOWN 11 +27920515 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27920551 homeCount = 87 +27920552 waitCount = 36 +27920552 ripCount = 35 +27920553 locktype1 = 1 +27920553 locktype2 = 6 +27920554 locktype3 = 10 +27920554 goalCount = 5 +27920555 goalTotal = 25 +27920555 otherCount = 44 +~~~ +27920556 CURRENTGOAL IS [1] +~~~ +27925246 UP 1 +27925246 1 255 +~~~ +~~~ +27925268 outer reward +~~~ +27925268 1 65791 +~~~ +~~~ +27925717 1 255 +27936444 DOWN 1 +27936444 0 255 +~~~ +~~~ +27936465 0 254 +~~~ +~~~ +27936467 0 252 +~~~ +~~~ +27936469 0 248 +~~~ +~~~ +27936471 0 240 +~~~ +~~~ +27936472 0 224 +~~~ +~~~ +27936474 0 192 +~~~ +~~~ +27936476 0 128 +~~~ +~~~ +27936478 0 0 +~~~ +~~~ +27936480 0 512 +27936481 homeCount = 87 +27936481 waitCount = 36 +27936482 ripCount = 35 +27936482 locktype1 = 1 +27936503 locktype2 = 6 +27936504 locktype3 = 10 +27936504 goalCount = 6 +27936505 goalTotal = 26 +27936505 otherCount = 44 +~~~ +27936515 1 512 +27936544 DOWN 1 +27936544 0 512 +27942299 UP 10 +27942299 waslock = 0 +27942299 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27942333 512 16777728 +~~~ +27942483 512 512 +27942510 DOWN 10 +27942510 0 512 +~~~ +~~~ +27942536 0 1536 +~~~ +~~~ +27942538 0 1024 +27942539 homeCount = 88 +27942540 waitCount = 36 +27942540 ripCount = 35 +27942541 locktype1 = 1 +27942541 locktype2 = 6 +27942542 locktype3 = 10 +27942542 goalCount = 6 +27942543 goalTotal = 26 +27942543 otherCount = 44 +~~~ +27942565 UP 10 +27942565 waslock = 0 +27942565 512 1024 +~~~ +27945190 DOWN 10 +27945190 0 1024 +~~~ +~~~ +~~~ +~~~ +27945220 homeCount = 88 +27945221 waitCount = 36 +27945221 ripCount = 35 +27945222 locktype1 = 1 +27945222 locktype2 = 6 +27945223 locktype3 = 10 +27945223 goalCount = 6 +27945224 goalTotal = 26 +27945224 otherCount = 44 +~~~ +27945226 UP 10 +27945226 waslock = 0 +27945226 512 1024 +~~~ +27945285 DOWN 10 +27945285 0 1024 +~~~ +~~~ +~~~ +~~~ +27945311 homeCount = 88 +27945311 waitCount = 36 +27945312 ripCount = 35 +27945312 locktype1 = 1 +27945313 locktype2 = 6 +27945313 locktype3 = 10 +27945314 goalCount = 6 +27945314 goalTotal = 26 +27945315 otherCount = 44 +~~~ +27947700 UP 11 +27947700 1024 1024 +27951200 BEEP1 +27951200 BEEP2 +~~~ +~~~ +~~~ +27951222 1024 33555456 +~~~ +27951371 1024 1024 +27957662 DOWN 11 +27957662 0 1024 +27957672 UP 11 +27957672 1024 1024 +~~~ +~~~ +27957680 1024 0 +~~~ +~~~ +27957681 1024 1 +~~~ +~~~ +27957683 1024 3 +~~~ +~~~ +27957685 1024 7 +~~~ +~~~ +27957687 1024 15 +~~~ +~~~ +27957689 1024 31 +~~~ +~~~ +27957691 1024 63 +~~~ +~~~ +27957692 1024 127 +~~~ +~~~ +27957694 1024 255 +27957695 homeCount = 88 +27957696 waitCount = 36 +27957696 ripCount = 36 +27957718 locktype1 = 1 +27957718 locktype2 = 6 +27957719 locktype3 = 10 +27957719 goalCount = 6 +27957720 goalTotal = 26 +27957720 otherCount = 44 +~~~ +27957721 CURRENTGOAL IS [1] +~~~ +27957739 DOWN 11 +27957739 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27957767 UP 11 +27957767 1024 255 +~~~ +27957769 homeCount = 88 +27957769 waitCount = 36 +27957770 ripCount = 36 +27957770 locktype1 = 1 +27957771 locktype2 = 6 +27957771 locktype3 = 10 +27957772 goalCount = 6 +27957772 goalTotal = 26 +27957773 otherCount = 44 +~~~ +27957795 CURRENTGOAL IS [1] +~~~ +27959629 DOWN 11 +27959629 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +27959667 homeCount = 88 +27959667 waitCount = 36 +27959668 ripCount = 36 +27959669 locktype1 = 1 +27959669 locktype2 = 6 +27959670 locktype3 = 10 +27959670 goalCount = 6 +27959671 goalTotal = 26 +27959671 otherCount = 44 +~~~ +27959672 CURRENTGOAL IS [1] +~~~ +27963580 UP 1 +27963580 1 255 +~~~ +~~~ +27963607 outer reward +~~~ +27963607 1 65791 +~~~ +~~~ +27964057 1 255 +27975016 DOWN 1 +27975016 0 255 +~~~ +~~~ +27975037 0 254 +~~~ +~~~ +27975039 0 252 +~~~ +~~~ +27975041 0 248 +~~~ +~~~ +27975043 0 240 +~~~ +~~~ +27975045 0 224 +~~~ +~~~ +27975046 0 192 +~~~ +~~~ +27975048 0 128 +~~~ +~~~ +27975050 0 0 +~~~ +~~~ +27975052 0 512 +27975053 homeCount = 88 +27975053 waitCount = 36 +27975054 ripCount = 36 +27975054 locktype1 = 1 +27975055 locktype2 = 6 +27975076 locktype3 = 10 +27975076 goalCount = 7 +27975077 goalTotal = 27 +27975077 otherCount = 44 +~~~ +27975084 1 512 +27975144 DOWN 1 +27975144 0 512 +27980896 UP 10 +27980896 waslock = 0 +27980896 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +27980921 512 16777728 +~~~ +27980997 DOWN 10 +27980997 0 16777728 +~~~ +~~~ +27981015 0 16778752 +~~~ +~~~ +27981017 0 16778240 +27981018 homeCount = 89 +27981018 waitCount = 36 +27981019 ripCount = 36 +27981019 locktype1 = 1 +27981020 locktype2 = 6 +27981020 locktype3 = 10 +27981021 goalCount = 7 +27981021 goalTotal = 27 +27981022 otherCount = 44 +~~~ +27981043 UP 10 +27981043 waslock = 0 +27981043 512 16778240 +~~~ +27981071 512 1024 +27987553 DOWN 10 +27987553 0 1024 +~~~ +~~~ +~~~ +~~~ +27987580 homeCount = 89 +27987580 waitCount = 36 +27987581 ripCount = 36 +27987581 locktype1 = 1 +27987582 locktype2 = 6 +27987582 locktype3 = 10 +27987583 goalCount = 7 +27987583 goalTotal = 27 +27987584 otherCount = 44 +~~~ +27989439 UP 11 +27989439 1024 1024 +27992292 DOWN 11 +27992292 0 1024 +27992302 UP 11 +27992302 1024 1024 +27997439 BEEP1 +27997439 BEEP2 +~~~ +~~~ +~~~ +27997459 1024 33555456 +~~~ +27997609 1024 1024 +28004157 DOWN 11 +28004157 0 1024 +~~~ +~~~ +28004178 0 0 +~~~ +~~~ +28004180 0 1 +~~~ +~~~ +28004182 0 3 +~~~ +~~~ +28004184 0 7 +~~~ +~~~ +28004185 0 15 +~~~ +~~~ +28004187 0 31 +~~~ +~~~ +28004189 0 63 +~~~ +~~~ +28004191 0 127 +~~~ +~~~ +28004193 0 255 +28004194 homeCount = 89 +28004194 waitCount = 36 +28004195 ripCount = 37 +28004195 locktype1 = 1 +28004196 locktype2 = 6 +28004217 locktype3 = 10 +28004218 goalCount = 7 +28004218 goalTotal = 27 +28004219 otherCount = 44 +~~~ +28004220 CURRENTGOAL IS [1] +~~~ +28008115 UP 1 +28008115 1 255 +~~~ +~~~ +28008134 outer reward +~~~ +28008134 1 65791 +~~~ +~~~ +28008353 DOWN 1 +28008353 0 65791 +28008370 1 65791 +~~~ +~~~ +28008372 1 65790 +~~~ +~~~ +28008374 1 65788 +~~~ +~~~ +28008376 1 65784 +~~~ +~~~ +28008378 1 65776 +~~~ +~~~ +28008380 1 65760 +~~~ +~~~ +28008382 1 65728 +~~~ +~~~ +28008383 1 65664 +~~~ +~~~ +28008385 1 65536 +~~~ +~~~ +28008387 1 66048 +28008388 homeCount = 89 +28008389 waitCount = 36 +28008389 ripCount = 37 +28008410 locktype1 = 1 +28008410 locktype2 = 6 +28008411 locktype3 = 10 +28008411 goalCount = 8 +28008412 goalTotal = 28 +28008412 otherCount = 44 +~~~ +28008584 1 512 +28018306 DOWN 1 +28018306 0 512 +28018329 1 512 +28018420 DOWN 1 +28018420 0 512 +28018472 1 512 +28019511 DOWN 1 +28019511 0 512 +28019538 1 512 +28019606 DOWN 1 +28019606 0 512 +28026274 UP 10 +28026274 waslock = 0 +28026274 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28026301 512 16777728 +~~~ +28026429 DOWN 10 +28026429 0 16777728 +28026451 0 512 +~~~ +~~~ +28026456 0 1536 +~~~ +~~~ +28026457 0 1024 +28026458 homeCount = 90 +28026459 waitCount = 36 +28026460 ripCount = 37 +28026460 locktype1 = 1 +28026461 locktype2 = 6 +28026461 locktype3 = 10 +28026462 goalCount = 8 +28026462 goalTotal = 28 +28026463 otherCount = 44 +~~~ +28026642 UP 10 +28026643 waslock = 0 +28026642 512 1024 +~~~ +28026762 DOWN 10 +28026762 0 1024 +28026776 UP 10 +28026777 waslock = 0 +28026776 512 1024 +~~~ +~~~ +~~~ +~~~ +28026799 homeCount = 90 +28026799 waitCount = 36 +28026800 ripCount = 37 +28026800 locktype1 = 1 +28026801 locktype2 = 6 +28026801 locktype3 = 10 +28026802 goalCount = 8 +28026802 goalTotal = 28 +28026803 otherCount = 44 +~~~ +~~~ +28031965 DOWN 10 +28031965 0 1024 +~~~ +~~~ +~~~ +~~~ +28031988 homeCount = 90 +28031988 waitCount = 36 +28031989 ripCount = 37 +28031989 locktype1 = 1 +28031990 locktype2 = 6 +28031990 locktype3 = 10 +28031991 goalCount = 8 +28031991 goalTotal = 28 +28031992 otherCount = 44 +~~~ +28033822 UP 11 +28033822 1024 1024 +28036822 BEEP1 +28036822 BEEP2 +~~~ +~~~ +~~~ +28036845 1024 33555456 +~~~ +28036995 1024 1024 +28042883 DOWN 11 +28042883 0 1024 +~~~ +~~~ +28042903 0 0 +~~~ +~~~ +28042905 0 1 +~~~ +28042907 UP 11 +28042907 1024 1 +~~~ +~~~ +28042909 1024 3 +~~~ +~~~ +28042910 1024 7 +~~~ +~~~ +28042912 1024 15 +~~~ +28042913 1024 31 +~~~ +~~~ +28042914 1024 63 +~~~ +~~~ +28042916 1024 127 +~~~ +~~~ +28042918 1024 255 +28042919 homeCount = 90 +28042940 waitCount = 36 +28042941 ripCount = 38 +28042941 locktype1 = 1 +28042942 locktype2 = 6 +28042942 locktype3 = 10 +28042943 goalCount = 8 +28042943 goalTotal = 28 +28042944 otherCount = 44 +~~~ +28042945 CURRENTGOAL IS [1] +~~~ +28046203 DOWN 11 +28046203 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28046238 homeCount = 90 +28046239 waitCount = 36 +28046239 ripCount = 38 +28046240 locktype1 = 1 +28046240 locktype2 = 6 +28046241 locktype3 = 10 +28046241 goalCount = 8 +28046242 goalTotal = 28 +28046242 otherCount = 44 +~~~ +28046243 CURRENTGOAL IS [1] +~~~ +28050087 UP 1 +28050087 1 255 +~~~ +~~~ +28050115 outer reward +~~~ +28050116 1 65791 +~~~ +~~~ +28050301 DOWN 1 +28050301 0 65791 +~~~ +~~~ +28050323 0 65790 +~~~ +~~~ +28050325 0 65788 +~~~ +~~~ +28050326 0 65784 +~~~ +~~~ +28050328 0 65776 +~~~ +~~~ +28050330 0 65760 +~~~ +~~~ +28050332 0 65728 +~~~ +~~~ +28050334 0 65664 +~~~ +28050335 1 65664 +~~~ +~~~ +28050337 1 65536 +~~~ +28050338 1 66048 +28050339 homeCount = 90 +28050340 waitCount = 36 +28050361 ripCount = 38 +28050361 locktype1 = 1 +28050362 locktype2 = 6 +28050362 locktype3 = 10 +28050363 goalCount = 9 +28050363 goalTotal = 29 +28050364 otherCount = 44 +~~~ +28050565 1 512 +28059860 DOWN 1 +28059860 0 512 +28064424 UP 10 +28064425 waslock = 0 +28064424 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28064452 512 16777728 +~~~ +28064602 512 512 +28068806 DOWN 10 +28068806 0 512 +~~~ +~~~ +28068826 0 2560 +~~~ +~~~ +28068828 0 2048 +28068829 homeCount = 91 +28068829 waitCount = 36 +28068830 ripCount = 38 +28068830 locktype1 = 1 +28068831 locktype2 = 6 +28068831 locktype3 = 10 +28068832 goalCount = 9 +28068832 goalTotal = 29 +28068833 otherCount = 44 +~~~ +28068854 UP 10 +28068854 waslock = 0 +28068853 512 2048 +28068875 DOWN 10 +28068875 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28068899 homeCount = 91 +28068899 waitCount = 36 +28068900 ripCount = 38 +28068900 locktype1 = 1 +28068901 locktype2 = 6 +28068901 locktype3 = 10 +28068902 goalCount = 9 +28068902 goalTotal = 29 +28068903 otherCount = 44 +~~~ +28071033 UP 12 +28071033 2048 2048 +28071048 DOWN 12 +28071048 0 2048 +28071231 UP 12 +28071231 2048 2048 +28071271 DOWN 12 +28071271 0 2048 +28071314 UP 12 +28071314 2048 2048 +28074234 DOWN 12 +28074234 0 2048 +28074316 UP 12 +28074316 2048 2048 +28078155 DOWN 12 +28078155 0 2048 +28078237 UP 12 +28078237 2048 2048 +28079033 CLICK1 +28079033 CLICK2 +~~~ +~~~ +~~~ +28079058 2048 67110912 +~~~ +28079208 2048 2048 +28086231 DOWN 12 +28086231 0 2048 +~~~ +~~~ +28086256 0 0 +~~~ +~~~ +28086258 0 1 +~~~ +28086259 UP 12 +28086259 2048 1 +~~~ +~~~ +28086261 2048 3 +~~~ +~~~ +28086262 2048 7 +~~~ +28086263 2048 15 +~~~ +~~~ +28086265 2048 31 +~~~ +~~~ +28086267 2048 63 +~~~ +~~~ +28086268 2048 127 +~~~ +~~~ +28086270 2048 255 +28086271 homeCount = 91 +28086292 waitCount = 37 +28086293 ripCount = 38 +28086293 locktype1 = 1 +28086294 locktype2 = 6 +28086294 locktype3 = 10 +28086295 goalCount = 9 +28086295 goalTotal = 29 +28086296 otherCount = 44 +~~~ +28086297 CURRENTGOAL IS [1] +~~~ +28086333 DOWN 12 +28086333 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28086372 homeCount = 91 +28086372 waitCount = 37 +28086373 ripCount = 38 +28086374 locktype1 = 1 +28086374 locktype2 = 6 +28086375 locktype3 = 10 +28086375 goalCount = 9 +28086376 goalTotal = 29 +28086376 otherCount = 44 +~~~ +28086377 CURRENTGOAL IS [1] +~~~ +28089464 UP 1 +28089464 1 255 +~~~ +~~~ +28089492 outer reward +~~~ +28089492 1 65791 +~~~ +~~~ +28089497 outerreps = 4 +~~~ +~~~ +28089754 DOWN 1 +28089754 0 65791 +~~~ +~~~ +28089778 0 65790 +~~~ +~~~ +28089780 0 65788 +~~~ +~~~ +28089782 0 65784 +~~~ +~~~ +28089784 0 65776 +~~~ +28089785 1 65776 +~~~ +~~~ +28089787 1 65760 +~~~ +28089788 1 65728 +~~~ +~~~ +28089789 1 65664 +~~~ +~~~ +28089791 1 65536 +~~~ +~~~ +28089793 1 66048 +28089794 homeCount = 91 +28089794 waitCount = 37 +28089815 ripCount = 38 +28089815 locktype1 = 1 +28089816 locktype2 = 6 +28089816 locktype3 = 10 +28089817 goalCount = 0 +28089817 goalTotal = 30 +28089818 otherCount = 44 +~~~ +28089942 1 512 +28099533 DOWN 1 +28099533 0 512 +28099580 1 512 +28099664 DOWN 1 +28099664 0 512 +28103844 UP 10 +28103844 waslock = 0 +28103844 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28103875 512 16777728 +~~~ +28104025 512 512 +28104040 DOWN 10 +28104040 0 512 +28104053 UP 10 +28104053 waslock = 0 +28104053 512 512 +~~~ +~~~ +28104060 512 1536 +~~~ +~~~ +28104062 512 1024 +28104063 homeCount = 92 +28104063 waitCount = 37 +28104064 ripCount = 38 +28104064 locktype1 = 1 +28104065 locktype2 = 6 +28104065 locktype3 = 10 +28104066 goalCount = 0 +28104066 goalTotal = 30 +28104067 otherCount = 44 +~~~ +~~~ +28104223 DOWN 10 +28104223 0 1024 +28104230 UP 10 +28104231 waslock = 0 +28104230 512 1024 +~~~ +~~~ +~~~ +~~~ +28104246 homeCount = 92 +28104246 waitCount = 37 +28104247 ripCount = 38 +28104247 locktype1 = 1 +28104248 locktype2 = 6 +28104249 locktype3 = 10 +28104249 goalCount = 0 +28104250 goalTotal = 30 +28104250 otherCount = 44 +~~~ +~~~ +28107687 DOWN 10 +28107687 0 1024 +~~~ +~~~ +~~~ +~~~ +28107717 homeCount = 92 +28107718 waitCount = 37 +28107718 ripCount = 38 +28107719 locktype1 = 1 +28107719 locktype2 = 6 +28107720 locktype3 = 10 +28107720 goalCount = 0 +28107721 goalTotal = 30 +28107721 otherCount = 44 +~~~ +28107757 UP 10 +28107757 waslock = 0 +28107757 512 1024 +28107772 DOWN 10 +28107772 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28107791 homeCount = 92 +28107792 waitCount = 37 +28107793 ripCount = 38 +28107793 locktype1 = 1 +28107794 locktype2 = 6 +28107794 locktype3 = 10 +28107795 goalCount = 0 +28107795 goalTotal = 30 +28107796 otherCount = 44 +~~~ +28110492 UP 11 +28110492 1024 1024 +28113993 BEEP1 +28113993 BEEP2 +~~~ +~~~ +~~~ +28114015 1024 33555456 +~~~ +28114165 1024 1024 +28114440 DOWN 11 +28114440 0 1024 +28114465 UP 11 +28114465 1024 1024 +~~~ +~~~ +28114682 1024 0 +~~~ +~~~ +28114684 1024 1 +~~~ +~~~ +28114686 1024 3 +~~~ +~~~ +28114688 1024 7 +~~~ +~~~ +28114689 1024 15 +~~~ +~~~ +28114691 1024 31 +~~~ +~~~ +28114693 1024 63 +~~~ +~~~ +28114695 1024 127 +~~~ +~~~ +28114697 1024 255 +28114698 homeCount = 92 +28114698 waitCount = 37 +28114699 ripCount = 39 +28114720 locktype1 = 1 +28114721 locktype2 = 6 +28114721 locktype3 = 10 +28114722 goalCount = 0 +28114722 goalTotal = 30 +28114723 otherCount = 44 +~~~ +28114724 CURRENTGOAL IS [7] +~~~ +28123147 DOWN 11 +28123147 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28123189 homeCount = 92 +28123189 waitCount = 37 +28123190 ripCount = 39 +28123191 locktype1 = 1 +28123191 locktype2 = 6 +28123192 locktype3 = 10 +28123192 goalCount = 0 +28123193 goalTotal = 30 +28123193 otherCount = 44 +~~~ +28123194 CURRENTGOAL IS [7] +~~~ +28123265 UP 11 +28123265 1024 255 +28123279 DOWN 11 +28123279 0 255 +28123296 UP 11 +28123296 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28123312 homeCount = 92 +28123313 waitCount = 37 +28123313 ripCount = 39 +28123314 locktype1 = 1 +28123315 locktype2 = 6 +28123315 locktype3 = 10 +28123316 goalCount = 0 +28123316 goalTotal = 30 +28123317 otherCount = 44 +~~~ +28123318 CURRENTGOAL IS [7] +~~~ +28125461 DOWN 11 +28125461 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28125501 homeCount = 92 +28125502 waitCount = 37 +28125502 ripCount = 39 +28125503 locktype1 = 1 +28125503 locktype2 = 6 +28125504 locktype3 = 10 +28125504 goalCount = 0 +28125505 goalTotal = 30 +28125505 otherCount = 44 +~~~ +28125506 CURRENTGOAL IS [7] +~~~ +28129280 UP 1 +28129280 1 255 +~~~ +~~~ +28129542 DOWN 1 +28129542 0 255 +~~~ +~~~ +28129565 0 254 +~~~ +~~~ +28129567 0 252 +~~~ +28129569 1 252 +~~~ +~~~ +28129570 1 248 +~~~ +28129571 1 240 +~~~ +~~~ +28129573 1 224 +~~~ +~~~ +28129575 1 192 +~~~ +~~~ +28129576 1 128 +~~~ +~~~ +28129578 1 0 +~~~ +~~~ +28129580 1 512 +28129581 homeCount = 92 +28129582 waitCount = 37 +28129582 ripCount = 39 +28129603 locktype1 = 1 +28129604 locktype2 = 6 +28129604 locktype3 = 10 +28129605 goalCount = 0 +28129605 goalTotal = 30 +28129606 otherCount = 45 +~~~ +28132434 DOWN 1 +28132434 0 512 +28135996 UP 10 +28135996 waslock = 0 +28135996 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28136023 512 16777728 +~~~ +28136173 512 512 +28136193 DOWN 10 +28136193 0 512 +~~~ +~~~ +28136216 0 1536 +~~~ +~~~ +28136218 0 1024 +28136219 homeCount = 93 +28136220 waitCount = 37 +28136220 ripCount = 39 +28136221 locktype1 = 1 +28136221 locktype2 = 6 +28136222 locktype3 = 10 +28136222 goalCount = 0 +28136223 goalTotal = 30 +28136223 otherCount = 45 +~~~ +28136245 UP 10 +28136245 waslock = 0 +28136245 512 1024 +~~~ +28138668 DOWN 10 +28138668 0 1024 +~~~ +~~~ +~~~ +~~~ +28138688 homeCount = 93 +28138688 waitCount = 37 +28138689 ripCount = 39 +28138689 locktype1 = 1 +28138690 locktype2 = 6 +28138690 locktype3 = 10 +28138691 goalCount = 0 +28138691 goalTotal = 30 +28138692 otherCount = 45 +~~~ +28138714 UP 10 +28138714 waslock = 0 +28138714 512 1024 +~~~ +28138749 DOWN 10 +28138748 0 1024 +~~~ +~~~ +~~~ +~~~ +28138770 homeCount = 93 +28138770 waitCount = 37 +28138771 ripCount = 39 +28138771 locktype1 = 1 +28138772 locktype2 = 6 +28138772 locktype3 = 10 +28138773 goalCount = 0 +28138773 goalTotal = 30 +28138774 otherCount = 45 +~~~ +28140396 UP 11 +28140396 1024 1024 +28143396 BEEP1 +28143396 BEEP2 +~~~ +~~~ +~~~ +28143421 1024 33555456 +~~~ +28143571 1024 1024 +28150234 DOWN 11 +28150234 0 1024 +~~~ +~~~ +28150260 0 0 +~~~ +~~~ +28150262 0 1 +~~~ +~~~ +28150264 0 3 +~~~ +~~~ +28150265 0 7 +~~~ +~~~ +28150267 0 15 +~~~ +~~~ +28150269 0 31 +~~~ +~~~ +28150271 0 63 +~~~ +~~~ +28150273 0 127 +~~~ +~~~ +28150275 0 255 +28150276 homeCount = 93 +28150276 waitCount = 37 +28150277 ripCount = 40 +28150277 locktype1 = 1 +28150278 locktype2 = 6 +28150299 locktype3 = 10 +28150299 goalCount = 0 +28150300 goalTotal = 30 +28150300 otherCount = 45 +~~~ +28150301 CURRENTGOAL IS [7] +~~~ +28150330 UP 11 +28150330 1024 255 +28150374 DOWN 11 +28150374 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28150408 homeCount = 93 +28150409 waitCount = 37 +28150410 ripCount = 40 +28150410 locktype1 = 1 +28150411 locktype2 = 6 +28150411 locktype3 = 10 +28150412 goalCount = 0 +28150412 goalTotal = 30 +28150413 otherCount = 45 +~~~ +28150414 CURRENTGOAL IS [7] +~~~ +28150482 UP 11 +28150482 1024 255 +28150504 DOWN 11 +28150504 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28150538 homeCount = 93 +28150539 waitCount = 37 +28150539 ripCount = 40 +28150540 locktype1 = 1 +28150541 locktype2 = 6 +28150541 locktype3 = 10 +28150542 goalCount = 0 +28150542 goalTotal = 30 +28150543 otherCount = 45 +~~~ +28150544 CURRENTGOAL IS [7] +~~~ +28150614 UP 11 +28150614 1024 255 +28152416 DOWN 11 +28152416 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28152462 homeCount = 93 +28152462 waitCount = 37 +28152463 ripCount = 40 +28152463 locktype1 = 1 +28152464 locktype2 = 6 +28152464 locktype3 = 10 +28152465 goalCount = 0 +28152465 goalTotal = 30 +28152466 otherCount = 45 +~~~ +28152467 CURRENTGOAL IS [7] +~~~ +28155346 UP 7 +28155346 64 255 +~~~ +~~~ +28155366 outer reward +~~~ +28155367 64 4194559 +~~~ +~~~ +28155389 DOWN 7 +28155389 0 4194559 +~~~ +~~~ +28155414 0 4194558 +~~~ +~~~ +28155416 0 4194556 +~~~ +~~~ +28155417 0 4194552 +~~~ +~~~ +28155419 0 4194544 +~~~ +~~~ +28155421 0 4194528 +~~~ +~~~ +28155423 0 4194496 +~~~ +~~~ +28155425 0 4194432 +~~~ +~~~ +28155426 0 4194304 +~~~ +~~~ +28155428 0 4194816 +28155429 homeCount = 93 +28155430 waitCount = 37 +28155430 ripCount = 40 +28155451 locktype1 = 1 +28155452 locktype2 = 6 +28155452 locktype3 = 10 +28155453 goalCount = 1 +28155453 goalTotal = 31 +28155454 otherCount = 45 +~~~ +28155455 64 4194816 +28155816 64 512 +28162953 DOWN 7 +28162953 0 512 +28162983 64 512 +28163080 DOWN 7 +28163080 0 512 +28163122 64 512 +28163206 DOWN 7 +28163206 0 512 +28163287 64 512 +28163352 DOWN 7 +28163352 0 512 +28171612 UP 10 +28171613 waslock = 0 +28171612 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28171642 512 16777728 +~~~ +28171792 512 512 +28171878 DOWN 10 +28171878 0 512 +~~~ +~~~ +28171904 0 2560 +~~~ +~~~ +28171906 0 2048 +28171907 homeCount = 94 +28171908 waitCount = 37 +28171908 ripCount = 40 +28171909 locktype1 = 1 +28171909 locktype2 = 6 +28171910 locktype3 = 10 +28171910 goalCount = 1 +28171911 goalTotal = 31 +28171911 otherCount = 45 +~~~ +28173078 UP 10 +28173078 waslock = 0 +28173078 512 2048 +~~~ +28177126 DOWN 10 +28177126 0 2048 +~~~ +~~~ +~~~ +~~~ +28177147 homeCount = 94 +28177147 waitCount = 37 +28177148 ripCount = 40 +28177148 locktype1 = 1 +28177149 locktype2 = 6 +28177149 locktype3 = 10 +28177150 goalCount = 1 +28177150 goalTotal = 31 +28177151 otherCount = 45 +~~~ +28177189 UP 10 +28177189 waslock = 0 +28177189 512 2048 +~~~ +28177225 DOWN 10 +28177225 0 2048 +~~~ +~~~ +~~~ +~~~ +28177251 homeCount = 94 +28177252 waitCount = 37 +28177252 ripCount = 40 +28177253 locktype1 = 1 +28177253 locktype2 = 6 +28177254 locktype3 = 10 +28177254 goalCount = 1 +28177255 goalTotal = 31 +28177255 otherCount = 45 +~~~ +28179849 UP 12 +28179849 2048 2048 +28182849 CLICK1 +28182849 CLICK2 +~~~ +~~~ +~~~ +28182876 2048 67110912 +~~~ +28183026 2048 2048 +28183159 DOWN 12 +28183159 0 2048 +~~~ +~~~ +28183186 0 0 +~~~ +~~~ +28183188 0 1 +~~~ +~~~ +28183190 0 3 +~~~ +~~~ +28183192 0 7 +~~~ +~~~ +28183194 0 15 +~~~ +~~~ +28183195 0 31 +~~~ +~~~ +28183197 0 63 +~~~ +~~~ +28183199 0 127 +~~~ +~~~ +28183201 0 255 +28183202 homeCount = 94 +28183202 waitCount = 38 +28183203 ripCount = 40 +28183204 locktype1 = 1 +28183204 locktype2 = 6 +28183225 locktype3 = 10 +28183225 goalCount = 1 +28183226 goalTotal = 31 +28183226 otherCount = 45 +~~~ +28183228 CURRENTGOAL IS [7] +~~~ +28183266 UP 12 +28183266 2048 255 +28183306 DOWN 12 +28183306 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28183343 UP 12 +28183343 2048 255 +~~~ +28183344 homeCount = 94 +28183345 waitCount = 38 +28183345 ripCount = 40 +28183346 locktype1 = 1 +28183346 locktype2 = 6 +28183347 locktype3 = 10 +28183347 goalCount = 1 +28183348 goalTotal = 31 +28183349 otherCount = 45 +~~~ +28183370 CURRENTGOAL IS [7] +~~~ +28190586 DOWN 12 +28190586 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28190625 homeCount = 94 +28190626 waitCount = 38 +28190626 ripCount = 40 +28190627 locktype1 = 1 +28190627 locktype2 = 6 +28190628 locktype3 = 10 +28190628 goalCount = 1 +28190629 goalTotal = 31 +28190629 otherCount = 45 +~~~ +28190630 CURRENTGOAL IS [7] +~~~ +28196854 UP 8 +28196854 128 255 +~~~ +~~~ +28197377 DOWN 8 +28197377 0 255 +~~~ +~~~ +28197398 0 254 +~~~ +~~~ +28197400 0 252 +~~~ +~~~ +28197402 0 248 +~~~ +~~~ +28197404 0 240 +~~~ +~~~ +28197405 0 224 +~~~ +~~~ +28197407 0 192 +~~~ +~~~ +28197409 0 128 +~~~ +~~~ +28197411 0 0 +~~~ +~~~ +28197413 0 512 +28197414 homeCount = 94 +28197414 waitCount = 38 +28197415 ripCount = 40 +28197415 locktype1 = 1 +28197416 locktype2 = 6 +28197437 locktype3 = 10 +28197437 goalCount = 1 +28197438 goalTotal = 31 +28197438 otherCount = 46 +~~~ +28197589 128 512 +28197873 DOWN 8 +28197873 0 512 +28201996 UP 10 +28201996 waslock = 0 +28201996 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28202028 512 16777728 +~~~ +28202178 512 512 +28202268 DOWN 10 +28202268 0 512 +~~~ +~~~ +28202293 0 2560 +~~~ +~~~ +28202295 0 2048 +28202296 homeCount = 95 +28202297 waitCount = 38 +28202297 ripCount = 40 +28202298 locktype1 = 1 +28202298 locktype2 = 6 +28202299 locktype3 = 10 +28202299 goalCount = 1 +28202300 goalTotal = 31 +28202300 otherCount = 46 +~~~ +28202321 UP 10 +28202321 waslock = 0 +28202321 512 2048 +~~~ +28208913 DOWN 10 +28208913 0 2048 +~~~ +~~~ +~~~ +~~~ +28208936 homeCount = 95 +28208936 waitCount = 38 +28208937 ripCount = 40 +28208937 locktype1 = 1 +28208938 locktype2 = 6 +28208938 locktype3 = 10 +28208939 goalCount = 1 +28208939 goalTotal = 31 +28208940 otherCount = 46 +~~~ +28208955 UP 10 +28208955 waslock = 0 +28208955 512 2048 +~~~ +28209014 DOWN 10 +28209014 0 2048 +~~~ +~~~ +~~~ +~~~ +28209035 homeCount = 95 +28209036 waitCount = 38 +28209036 ripCount = 40 +28209037 locktype1 = 1 +28209037 locktype2 = 6 +28209038 locktype3 = 10 +28209038 goalCount = 1 +28209039 goalTotal = 31 +28209039 otherCount = 46 +~~~ +28210982 UP 12 +28210982 2048 2048 +28215482 CLICK1 +28215482 CLICK2 +~~~ +~~~ +~~~ +28215506 2048 67110912 +~~~ +28215656 2048 2048 +28223085 DOWN 12 +28223084 0 2048 +~~~ +~~~ +28223104 0 0 +~~~ +~~~ +28223106 0 1 +~~~ +~~~ +28223108 0 3 +~~~ +~~~ +28223110 0 7 +~~~ +~~~ +28223111 0 15 +~~~ +~~~ +28223113 0 31 +~~~ +~~~ +28223115 0 63 +~~~ +~~~ +28223117 0 127 +~~~ +~~~ +28223119 0 255 +28223120 homeCount = 95 +28223120 waitCount = 39 +28223121 ripCount = 40 +28223121 locktype1 = 1 +28223122 locktype2 = 6 +28223142 locktype3 = 10 +28223143 goalCount = 1 +28223143 goalTotal = 31 +28223144 otherCount = 46 +~~~ +28223145 CURRENTGOAL IS [7] +~~~ +28223146 UP 12 +28223146 2048 255 +28223185 DOWN 12 +28223185 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28223222 homeCount = 95 +28223222 waitCount = 39 +28223223 ripCount = 40 +28223223 locktype1 = 1 +28223224 locktype2 = 6 +28223224 locktype3 = 10 +28223225 goalCount = 1 +28223225 goalTotal = 31 +28223226 otherCount = 46 +~~~ +28223227 CURRENTGOAL IS [7] +~~~ +28233647 UP 7 +28233647 64 255 +~~~ +~~~ +28233670 outer reward +~~~ +28233670 64 4194559 +~~~ +~~~ +28233821 DOWN 7 +28233821 0 4194559 +~~~ +~~~ +28233837 0 4194558 +~~~ +~~~ +28233839 0 4194556 +~~~ +~~~ +28233841 0 4194552 +~~~ +~~~ +28233843 0 4194544 +~~~ +~~~ +28233845 0 4194528 +~~~ +~~~ +28233847 0 4194496 +~~~ +~~~ +28233848 0 4194432 +~~~ +~~~ +28233850 0 4194304 +~~~ +~~~ +28233852 0 4194816 +28233853 homeCount = 95 +28233854 waitCount = 39 +28233854 ripCount = 40 +28233875 locktype1 = 1 +28233876 locktype2 = 6 +28233876 locktype3 = 10 +28233877 goalCount = 2 +28233877 goalTotal = 32 +28233878 otherCount = 46 +~~~ +28233878 64 4194816 +28234120 64 512 +28243031 DOWN 7 +28243031 0 512 +28243057 64 512 +28243146 DOWN 7 +28243146 0 512 +28248129 UP 10 +28248129 waslock = 0 +28248129 512 512 +~~~ +~~~ +~~~ +~~~ +28248154 DOWN 10 +28248154 0 512 +~~~ +28248156 0 16777728 +~~~ +~~~ +~~~ +28248171 0 16779776 +~~~ +~~~ +28248172 0 16779264 +28248173 homeCount = 96 +28248174 waitCount = 39 +28248174 ripCount = 40 +28248175 locktype1 = 1 +28248175 locktype2 = 6 +28248176 locktype3 = 10 +28248176 goalCount = 2 +28248177 goalTotal = 32 +28248178 otherCount = 46 +~~~ +28248236 UP 10 +28248236 waslock = 0 +28248236 512 16779264 +~~~ +28248306 512 2048 +28248640 DOWN 10 +28248640 0 2048 +28248654 UP 10 +28248654 waslock = 0 +28248654 512 2048 +~~~ +~~~ +~~~ +~~~ +28248674 homeCount = 96 +28248675 waitCount = 39 +28248675 ripCount = 40 +28248676 locktype1 = 1 +28248676 locktype2 = 6 +28248677 locktype3 = 10 +28248677 goalCount = 2 +28248678 goalTotal = 32 +28248678 otherCount = 46 +~~~ +~~~ +28252124 DOWN 10 +28252124 0 2048 +28252140 UP 10 +28252141 waslock = 0 +28252140 512 2048 +~~~ +~~~ +~~~ +~~~ +28252165 homeCount = 96 +28252166 waitCount = 39 +28252166 ripCount = 40 +28252167 locktype1 = 1 +28252167 locktype2 = 6 +28252168 locktype3 = 10 +28252168 goalCount = 2 +28252169 goalTotal = 32 +28252169 otherCount = 46 +~~~ +~~~ +28252230 DOWN 10 +28252230 0 2048 +~~~ +~~~ +~~~ +~~~ +28252253 homeCount = 96 +28252254 waitCount = 39 +28252254 ripCount = 40 +28252255 locktype1 = 1 +28252255 locktype2 = 6 +28252256 locktype3 = 10 +28252256 goalCount = 2 +28252257 goalTotal = 32 +28252257 otherCount = 46 +~~~ +28252286 UP 10 +28252286 waslock = 0 +28252286 512 2048 +~~~ +28252324 DOWN 10 +28252324 0 2048 +~~~ +~~~ +~~~ +~~~ +28252352 homeCount = 96 +28252352 waitCount = 39 +28252353 ripCount = 40 +28252353 locktype1 = 1 +28252354 locktype2 = 6 +28252354 locktype3 = 10 +28252355 goalCount = 2 +28252355 goalTotal = 32 +28252356 otherCount = 46 +~~~ +28254088 UP 12 +28254088 2048 2048 +28259672 DOWN 12 +28259672 0 2048 +28259689 UP 12 +28259689 2048 2048 +28259725 DOWN 12 +28259725 0 2048 +28259759 UP 12 +28259759 2048 2048 +28259931 DOWN 12 +28259930 0 2048 +28259941 UP 12 +28259941 2048 2048 +28260607 DOWN 12 +28260607 0 2048 +28260622 UP 12 +28260621 2048 2048 +28263088 CLICK1 +28263088 CLICK2 +~~~ +~~~ +~~~ +28263111 2048 67110912 +~~~ +28263261 2048 2048 +28269902 DOWN 12 +28269902 0 2048 +28269928 UP 12 +28269928 2048 2048 +~~~ +~~~ +28269931 2048 0 +~~~ +~~~ +28269932 2048 1 +~~~ +~~~ +28269934 2048 3 +~~~ +~~~ +28269936 2048 7 +~~~ +~~~ +28269938 2048 15 +~~~ +~~~ +28269940 2048 31 +~~~ +~~~ +28269942 2048 63 +~~~ +~~~ +28269943 2048 127 +~~~ +~~~ +28269945 2048 255 +28269946 homeCount = 96 +28269947 waitCount = 40 +28269968 ripCount = 40 +28269969 locktype1 = 1 +28269969 locktype2 = 6 +28269970 locktype3 = 10 +28269970 goalCount = 2 +28269971 goalTotal = 32 +28269971 otherCount = 46 +~~~ +28269972 CURRENTGOAL IS [7] +~~~ +28269986 DOWN 12 +28269986 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28270027 homeCount = 96 +28270027 waitCount = 40 +28270028 ripCount = 40 +28270028 locktype1 = 1 +28270029 locktype2 = 6 +28270029 locktype3 = 10 +28270030 goalCount = 2 +28270030 goalTotal = 32 +28270031 otherCount = 46 +~~~ +28270032 CURRENTGOAL IS [7] +~~~ +28276085 UP 7 +28276085 64 255 +~~~ +~~~ +28276113 outer reward +~~~ +28276113 64 4194559 +~~~ +~~~ +28276119 DOWN 7 +28276118 0 4194559 +~~~ +~~~ +28276132 0 4194558 +~~~ +~~~ +28276133 0 4194556 +~~~ +~~~ +28276135 0 4194552 +~~~ +~~~ +28276137 0 4194544 +~~~ +~~~ +28276139 0 4194528 +~~~ +~~~ +28276141 0 4194496 +~~~ +~~~ +28276142 0 4194432 +~~~ +~~~ +28276144 0 4194304 +~~~ +~~~ +28276146 0 4194816 +28276147 homeCount = 96 +28276148 waitCount = 40 +28276148 ripCount = 40 +28276169 locktype1 = 1 +28276170 locktype2 = 6 +28276170 locktype3 = 10 +28276171 goalCount = 3 +28276171 goalTotal = 33 +28276172 otherCount = 46 +~~~ +28276172 64 4194816 +28276185 DOWN 7 +28276185 0 4194816 +28276189 64 4194816 +28276301 DOWN 7 +28276301 0 4194816 +28276362 64 4194816 +28276473 DOWN 7 +28276473 0 4194816 +28276504 64 4194816 +28276563 64 512 +28276768 DOWN 7 +28276768 0 512 +28276782 64 512 +28277032 DOWN 7 +28277032 0 512 +28277039 64 512 +28285770 DOWN 7 +28285770 0 512 +28290802 UP 10 +28290802 waslock = 0 +28290802 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28290828 512 16777728 +~~~ +28290978 512 512 +28291074 DOWN 10 +28291074 0 512 +~~~ +~~~ +28291097 0 2560 +~~~ +~~~ +28291099 0 2048 +28291100 homeCount = 97 +28291101 waitCount = 40 +28291101 ripCount = 40 +28291102 locktype1 = 1 +28291102 locktype2 = 6 +28291103 locktype3 = 10 +28291103 goalCount = 3 +28291104 goalTotal = 33 +28291104 otherCount = 46 +~~~ +28291157 UP 10 +28291157 waslock = 0 +28291157 512 2048 +~~~ +28298203 DOWN 10 +28298203 0 2048 +~~~ +~~~ +28298222 UP 10 +28298222 waslock = 0 +28298222 512 2048 +~~~ +~~~ +28298224 homeCount = 97 +28298225 waitCount = 40 +28298225 ripCount = 40 +28298226 locktype1 = 1 +28298226 locktype2 = 6 +28298227 locktype3 = 10 +28298227 goalCount = 3 +28298228 goalTotal = 33 +28298249 otherCount = 46 +~~~ +~~~ +28298313 DOWN 10 +28298313 0 2048 +~~~ +~~~ +~~~ +~~~ +28298336 homeCount = 97 +28298336 waitCount = 40 +28298337 ripCount = 40 +28298337 locktype1 = 1 +28298338 locktype2 = 6 +28298338 locktype3 = 10 +28298339 goalCount = 3 +28298339 goalTotal = 33 +28298340 otherCount = 46 +~~~ +28298386 UP 10 +28298386 waslock = 0 +28298386 512 2048 +28298408 DOWN 10 +28298408 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28298435 homeCount = 97 +28298436 waitCount = 40 +28298436 ripCount = 40 +28298437 locktype1 = 1 +28298437 locktype2 = 6 +28298438 locktype3 = 10 +28298438 goalCount = 3 +28298439 goalTotal = 33 +28298439 otherCount = 46 +~~~ +28300760 UP 12 +28300760 2048 2048 +28302267 DOWN 12 +28302267 0 2048 +28302282 UP 12 +28302282 2048 2048 +28303163 DOWN 12 +28303163 0 2048 +28303230 UP 12 +28303230 2048 2048 +28303340 DOWN 12 +28303340 0 2048 +28303346 UP 12 +28303346 2048 2048 +28303760 CLICK1 +28303760 CLICK2 +~~~ +~~~ +~~~ +28303783 2048 67110912 +~~~ +28303933 2048 2048 +28304129 DOWN 12 +28304129 0 2048 +28304147 UP 12 +28304147 2048 2048 +~~~ +~~~ +28304150 2048 0 +~~~ +~~~ +28304152 2048 1 +~~~ +~~~ +28304154 2048 3 +~~~ +~~~ +28304156 2048 7 +~~~ +~~~ +28304158 2048 15 +~~~ +~~~ +28304159 2048 31 +~~~ +~~~ +28304161 2048 63 +~~~ +~~~ +28304163 2048 127 +~~~ +~~~ +28304165 2048 255 +28304166 homeCount = 97 +28304167 waitCount = 41 +28304167 ripCount = 40 +28304188 locktype1 = 1 +28304188 locktype2 = 6 +28304189 locktype3 = 10 +28304189 goalCount = 3 +28304190 goalTotal = 33 +28304190 otherCount = 46 +~~~ +28304192 CURRENTGOAL IS [7] +~~~ +28311063 DOWN 12 +28311063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28311100 homeCount = 97 +28311101 waitCount = 41 +28311102 ripCount = 40 +28311102 locktype1 = 1 +28311103 locktype2 = 6 +28311103 locktype3 = 10 +28311104 goalCount = 3 +28311104 goalTotal = 33 +28311105 otherCount = 46 +~~~ +28311106 CURRENTGOAL IS [7] +~~~ +28311127 UP 12 +28311127 2048 255 +28311173 DOWN 12 +28311173 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28311212 homeCount = 97 +28311213 waitCount = 41 +28311213 ripCount = 40 +28311214 locktype1 = 1 +28311214 locktype2 = 6 +28311215 locktype3 = 10 +28311215 goalCount = 3 +28311216 goalTotal = 33 +28311216 otherCount = 46 +~~~ +28311217 CURRENTGOAL IS [7] +~~~ +28311282 UP 12 +28311282 2048 255 +28313151 DOWN 12 +28313151 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28313192 homeCount = 97 +28313193 waitCount = 41 +28313193 ripCount = 40 +28313194 locktype1 = 1 +28313194 locktype2 = 6 +28313195 locktype3 = 10 +28313195 goalCount = 3 +28313196 goalTotal = 33 +28313196 otherCount = 46 +~~~ +28313197 CURRENTGOAL IS [7] +~~~ +28318089 UP 7 +28318089 64 255 +~~~ +~~~ +28318108 outer reward +~~~ +28318108 64 4194559 +~~~ +~~~ +28318332 DOWN 7 +28318332 0 4194559 +~~~ +~~~ +28318355 0 4194558 +~~~ +~~~ +28318357 0 4194556 +~~~ +~~~ +28318359 0 4194552 +~~~ +~~~ +28318361 0 4194544 +~~~ +~~~ +28318362 0 4194528 +~~~ +~~~ +28318364 0 4194496 +~~~ +~~~ +28318366 0 4194432 +~~~ +~~~ +28318368 0 4194304 +~~~ +~~~ +28318370 0 4194816 +28318371 homeCount = 97 +28318371 waitCount = 41 +28318372 ripCount = 40 +28318393 locktype1 = 1 +28318393 locktype2 = 6 +28318394 locktype3 = 10 +28318394 goalCount = 4 +28318395 goalTotal = 34 +28318395 otherCount = 46 +~~~ +28318396 64 4194816 +28318558 64 512 +28318784 DOWN 7 +28318784 0 512 +28318799 64 512 +28326513 DOWN 7 +28326513 0 512 +28326537 64 512 +28326605 DOWN 7 +28326605 0 512 +28331412 UP 10 +28331413 waslock = 0 +28331412 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28331443 512 16777728 +~~~ +28331593 512 512 +28331648 DOWN 10 +28331648 0 512 +~~~ +~~~ +28331669 0 2560 +~~~ +~~~ +28331671 0 2048 +28331672 homeCount = 98 +28331672 waitCount = 41 +28331673 ripCount = 40 +28331673 locktype1 = 1 +28331674 locktype2 = 6 +28331674 locktype3 = 10 +28331675 goalCount = 4 +28331675 goalTotal = 34 +28331676 otherCount = 46 +~~~ +28331697 UP 10 +28331697 waslock = 0 +28331697 512 2048 +~~~ +28334733 DOWN 10 +28334733 0 2048 +~~~ +~~~ +~~~ +~~~ +28334758 homeCount = 98 +28334759 waitCount = 41 +28334759 ripCount = 40 +28334760 locktype1 = 1 +28334760 locktype2 = 6 +28334761 locktype3 = 10 +28334761 goalCount = 4 +28334762 goalTotal = 34 +28334762 otherCount = 46 +~~~ +28334797 UP 10 +28334797 waslock = 0 +28334797 512 2048 +~~~ +28334845 DOWN 10 +28334845 0 2048 +~~~ +~~~ +~~~ +~~~ +28334877 homeCount = 98 +28334877 waitCount = 41 +28334878 ripCount = 40 +28334878 locktype1 = 1 +28334879 locktype2 = 6 +28334879 locktype3 = 10 +28334880 goalCount = 4 +28334880 goalTotal = 34 +28334881 otherCount = 46 +~~~ +28336994 UP 12 +28336994 2048 2048 +28339137 DOWN 12 +28339137 0 2048 +28339153 UP 12 +28339152 2048 2048 +28339517 DOWN 12 +28339517 0 2048 +28339545 UP 12 +28339545 2048 2048 +28340452 DOWN 12 +28340452 0 2048 +28340540 UP 12 +28340540 2048 2048 +28340551 DOWN 12 +28340551 0 2048 +28340555 UP 12 +28340555 2048 2048 +28340569 DOWN 12 +28340569 0 2048 +28340589 UP 12 +28340589 2048 2048 +28340861 DOWN 12 +28340861 0 2048 +28340868 UP 12 +28340868 2048 2048 +28342994 CLICK1 +28342994 CLICK2 +~~~ +~~~ +~~~ +28343019 2048 67110912 +~~~ +28343169 2048 2048 +28347975 DOWN 12 +28347975 0 2048 +28347979 UP 12 +28347979 2048 2048 +~~~ +~~~ +28348001 2048 0 +~~~ +~~~ +28348003 2048 1 +~~~ +~~~ +28348004 2048 3 +~~~ +~~~ +28348006 2048 7 +~~~ +~~~ +28348008 2048 15 +~~~ +~~~ +28348010 2048 31 +~~~ +~~~ +28348012 2048 63 +~~~ +~~~ +28348014 DOWN 12 +28348013 0 127 +~~~ +~~~ +28348015 0 255 +28348016 homeCount = 98 +28348017 waitCount = 42 +28348018 ripCount = 40 +28348039 locktype1 = 1 +28348039 locktype2 = 6 +28348040 locktype3 = 10 +28348040 goalCount = 4 +28348041 goalTotal = 34 +28348041 otherCount = 46 +~~~ +28348042 CURRENTGOAL IS [7] +~~~ +28348046 UP 12 +28348046 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28348075 homeCount = 98 +28348075 waitCount = 42 +28348076 ripCount = 40 +28348076 locktype1 = 1 +28348077 locktype2 = 6 +28348077 locktype3 = 10 +28348078 goalCount = 4 +28348078 goalTotal = 34 +28348079 otherCount = 46 +~~~ +28348080 CURRENTGOAL IS [7] +~~~ +28348143 DOWN 12 +28348143 0 255 +28348159 UP 12 +28348159 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28348186 homeCount = 98 +28348186 waitCount = 42 +28348187 ripCount = 40 +28348187 locktype1 = 1 +28348188 locktype2 = 6 +28348188 locktype3 = 10 +28348189 goalCount = 4 +28348189 goalTotal = 34 +28348190 otherCount = 46 +~~~ +28348191 CURRENTGOAL IS [7] +~~~ +28350762 DOWN 12 +28350762 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28350795 homeCount = 98 +28350796 waitCount = 42 +28350796 ripCount = 40 +28350797 locktype1 = 1 +28350797 locktype2 = 6 +28350798 locktype3 = 10 +28350798 goalCount = 4 +28350799 goalTotal = 34 +28350799 otherCount = 46 +~~~ +28350800 CURRENTGOAL IS [7] +~~~ +28354630 UP 7 +28354630 64 255 +~~~ +~~~ +28354651 outer reward +~~~ +28354651 64 4194559 +~~~ +~~~ +28354678 DOWN 7 +28354678 0 4194559 +~~~ +~~~ +28354698 0 4194558 +~~~ +~~~ +28354700 0 4194556 +~~~ +~~~ +28354702 0 4194552 +~~~ +~~~ +28354704 0 4194544 +~~~ +~~~ +28354706 0 4194528 +~~~ +28354707 64 4194528 +~~~ +~~~ +28354709 64 4194496 +~~~ +~~~ +28354710 64 4194432 +~~~ +28354711 64 4194304 +~~~ +~~~ +28354713 64 4194816 +28354714 homeCount = 98 +28354735 waitCount = 42 +28354736 ripCount = 40 +28354736 locktype1 = 1 +28354737 locktype2 = 6 +28354737 locktype3 = 10 +28354738 goalCount = 5 +28354738 goalTotal = 35 +28354739 otherCount = 46 +~~~ +28354868 DOWN 7 +28354868 0 4194816 +28354919 64 4194816 +28355101 64 512 +28363140 DOWN 7 +28363140 0 512 +28363188 64 512 +28363237 DOWN 7 +28363237 0 512 +28367403 UP 10 +28367403 waslock = 0 +28367403 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28367436 512 16777728 +~~~ +28367557 DOWN 10 +28367557 0 16777728 +~~~ +~~~ +28367580 0 16778752 +~~~ +~~~ +28367581 0 16778240 +28367583 homeCount = 99 +28367583 waitCount = 42 +28367584 ripCount = 40 +28367584 locktype1 = 1 +28367585 locktype2 = 6 +28367585 locktype3 = 10 +28367586 goalCount = 5 +28367586 goalTotal = 35 +28367587 otherCount = 46 +~~~ +28367608 UP 10 +28367608 waslock = 0 +28367608 512 16778240 +28367609 512 1024 +~~~ +28367951 DOWN 10 +28367951 0 1024 +~~~ +~~~ +~~~ +~~~ +28367974 homeCount = 99 +28367975 waitCount = 42 +28367975 ripCount = 40 +28367976 locktype1 = 1 +28367976 locktype2 = 6 +28367977 locktype3 = 10 +28367977 goalCount = 5 +28367978 goalTotal = 35 +28367978 otherCount = 46 +~~~ +28368002 UP 10 +28368003 waslock = 0 +28368002 512 1024 +~~~ +28371913 DOWN 10 +28371913 0 1024 +~~~ +~~~ +~~~ +~~~ +28371933 homeCount = 99 +28371934 waitCount = 42 +28371934 ripCount = 40 +28371935 locktype1 = 1 +28371935 locktype2 = 6 +28371936 locktype3 = 10 +28371936 goalCount = 5 +28371937 goalTotal = 35 +28371937 otherCount = 46 +~~~ +28371983 UP 10 +28371983 waslock = 0 +28371983 512 1024 +~~~ +28372017 DOWN 10 +28372017 0 1024 +~~~ +~~~ +~~~ +~~~ +28372043 homeCount = 99 +28372044 waitCount = 42 +28372044 ripCount = 40 +28372045 locktype1 = 1 +28372045 locktype2 = 6 +28372046 locktype3 = 10 +28372046 goalCount = 5 +28372047 goalTotal = 35 +28372047 otherCount = 46 +~~~ +28374860 UP 11 +28374860 1024 1024 +28375214 DOWN 11 +28375214 0 1024 +28375405 UP 11 +28375405 1024 1024 +28375439 DOWN 11 +28375439 0 1024 +28375489 UP 11 +28375489 1024 1024 +28377737 DOWN 11 +28377737 0 1024 +28377747 UP 11 +28377746 1024 1024 +28378861 BEEP1 +28378861 BEEP2 +~~~ +~~~ +~~~ +28378886 1024 33555456 +~~~ +28379036 1024 1024 +28385014 DOWN 11 +28385013 0 1024 +28385028 UP 11 +28385028 1024 1024 +~~~ +~~~ +28385030 1024 0 +~~~ +~~~ +28385032 1024 1 +~~~ +~~~ +28385034 1024 3 +~~~ +~~~ +28385035 1024 7 +~~~ +~~~ +28385037 1024 15 +~~~ +~~~ +28385039 1024 31 +~~~ +~~~ +28385041 1024 63 +~~~ +~~~ +28385043 1024 127 +~~~ +~~~ +28385045 1024 255 +28385046 homeCount = 99 +28385046 waitCount = 42 +28385067 ripCount = 41 +28385067 locktype1 = 1 +28385068 locktype2 = 6 +28385068 locktype3 = 10 +28385069 goalCount = 5 +28385069 goalTotal = 35 +28385070 otherCount = 46 +~~~ +28385071 CURRENTGOAL IS [7] +~~~ +28388281 DOWN 11 +28388281 0 255 +28388298 UP 11 +28388298 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28388317 homeCount = 99 +28388317 waitCount = 42 +28388318 ripCount = 41 +28388318 locktype1 = 1 +28388319 locktype2 = 6 +28388319 locktype3 = 10 +28388320 goalCount = 5 +28388320 goalTotal = 35 +28388321 otherCount = 46 +~~~ +28388322 CURRENTGOAL IS [7] +~~~ +28388394 DOWN 11 +28388394 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28388438 homeCount = 99 +28388438 waitCount = 42 +28388439 ripCount = 41 +28388439 locktype1 = 1 +28388440 locktype2 = 6 +28388440 locktype3 = 10 +28388441 goalCount = 5 +28388441 goalTotal = 35 +28388442 otherCount = 46 +~~~ +28388443 CURRENTGOAL IS [7] +~~~ +28391127 UP 7 +28391127 64 255 +~~~ +28391152 DOWN 7 +28391152 0 255 +~~~ +28391154 outer reward +~~~ +28391154 0 4194559 +~~~ +~~~ +~~~ +~~~ +28391173 0 4194558 +~~~ +28391175 64 4194558 +~~~ +~~~ +28391176 64 4194556 +~~~ +~~~ +28391178 64 4194552 +~~~ +28391179 64 4194544 +~~~ +~~~ +28391181 64 4194528 +~~~ +~~~ +28391182 64 4194496 +~~~ +~~~ +28391184 64 4194432 +~~~ +~~~ +28391186 64 4194304 +~~~ +~~~ +28391188 64 4194816 +28391210 homeCount = 99 +28391210 waitCount = 42 +28391211 ripCount = 41 +28391211 locktype1 = 1 +28391212 locktype2 = 6 +28391212 locktype3 = 10 +28391213 goalCount = 6 +28391213 goalTotal = 36 +28391214 otherCount = 46 +~~~ +28391352 DOWN 7 +28391352 0 4194816 +28391410 64 4194816 +28391604 64 512 +28401070 DOWN 7 +28401070 0 512 +28405631 UP 10 +28405631 waslock = 0 +28405631 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28405662 512 16777728 +~~~ +28405812 512 512 +28405858 DOWN 10 +28405858 0 512 +28405879 UP 10 +28405880 waslock = 0 +28405879 512 512 +~~~ +~~~ +28405884 512 1536 +~~~ +~~~ +28405886 512 1024 +28405887 homeCount = 100 +28405887 waitCount = 42 +28405888 ripCount = 41 +28405888 locktype1 = 1 +28405889 locktype2 = 6 +28405889 locktype3 = 10 +28405890 goalCount = 6 +28405890 goalTotal = 36 +28405891 otherCount = 46 +~~~ +~~~ +28411150 DOWN 10 +28411150 0 1024 +~~~ +~~~ +~~~ +~~~ +28411176 homeCount = 100 +28411177 waitCount = 42 +28411177 ripCount = 41 +28411178 locktype1 = 1 +28411178 locktype2 = 6 +28411179 locktype3 = 10 +28411179 goalCount = 6 +28411180 goalTotal = 36 +28411180 otherCount = 46 +~~~ +28411204 UP 10 +28411205 waslock = 0 +28411204 512 1024 +~~~ +28411240 DOWN 10 +28411240 0 1024 +~~~ +~~~ +~~~ +~~~ +28411267 homeCount = 100 +28411268 waitCount = 42 +28411268 ripCount = 41 +28411269 locktype1 = 1 +28411269 locktype2 = 6 +28411270 locktype3 = 10 +28411270 goalCount = 6 +28411271 goalTotal = 36 +28411271 otherCount = 46 +~~~ +28413812 UP 11 +28413812 1024 1024 +28415393 DOWN 11 +28415393 0 1024 +28415594 LOCKOUT 3 +~~~ +28415615 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +28415619 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28416951 UP 11 +28416951 1024 0 +28434365 DOWN 11 +28434365 0 0 +28440615 LOCKEND +~~~ +~~~ +~~~ +28440635 0 512 +28442032 UP 7 +28442032 64 512 +28442581 DOWN 7 +28442581 0 512 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28442619 homeCount = 100 +28442620 waitCount = 42 +28442620 ripCount = 41 +28442621 locktype1 = 1 +28442621 locktype2 = 6 +28442622 locktype3 = 11 +28442622 goalCount = 6 +28442623 goalTotal = 36 +28442623 otherCount = 46 +~~~ +28447649 UP 10 +28447649 waslock = 0 +28447649 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28447681 512 16777728 +~~~ +28447831 512 512 +28451216 DOWN 10 +28451216 0 512 +~~~ +~~~ +28451236 0 2560 +~~~ +~~~ +28451238 0 2048 +28451239 homeCount = 101 +28451239 waitCount = 42 +28451240 ripCount = 41 +28451240 locktype1 = 1 +28451241 locktype2 = 6 +28451241 locktype3 = 11 +28451242 goalCount = 6 +28451242 goalTotal = 36 +28451243 otherCount = 46 +~~~ +28451279 UP 10 +28451279 waslock = 0 +28451279 512 2048 +~~~ +28451321 DOWN 10 +28451321 0 2048 +~~~ +~~~ +~~~ +~~~ +28451352 homeCount = 101 +28451352 waitCount = 42 +28451353 ripCount = 41 +28451353 locktype1 = 1 +28451354 locktype2 = 6 +28451354 locktype3 = 11 +28451355 goalCount = 6 +28451355 goalTotal = 36 +28451356 otherCount = 46 +~~~ +28454622 UP 12 +28454622 2048 2048 +28455640 DOWN 12 +28455640 0 2048 +28455828 UP 12 +28455828 2048 2048 +28457622 CLICK1 +28457622 CLICK2 +~~~ +~~~ +~~~ +28457646 2048 67110912 +~~~ +28457700 DOWN 12 +28457700 0 67110912 +28457745 UP 12 +28457745 2048 67110912 +28457796 2048 2048 +~~~ +~~~ +28457831 2048 0 +~~~ +~~~ +28457833 2048 1 +~~~ +~~~ +28457835 2048 3 +~~~ +~~~ +28457837 2048 7 +~~~ +~~~ +28457839 2048 15 +~~~ +~~~ +28457841 2048 31 +~~~ +~~~ +28457842 2048 63 +~~~ +~~~ +28457844 2048 127 +~~~ +~~~ +28457846 2048 255 +28457847 homeCount = 101 +28457848 waitCount = 43 +28457848 ripCount = 41 +28457869 locktype1 = 1 +28457869 locktype2 = 6 +28457870 locktype3 = 11 +28457870 goalCount = 6 +28457871 goalTotal = 36 +28457871 otherCount = 46 +~~~ +28457872 CURRENTGOAL IS [7] +~~~ +28457923 DOWN 12 +28457923 0 255 +28457931 UP 12 +28457931 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28457961 homeCount = 101 +28457962 waitCount = 43 +28457962 ripCount = 41 +28457963 locktype1 = 1 +28457963 locktype2 = 6 +28457964 locktype3 = 11 +28457964 goalCount = 6 +28457965 goalTotal = 36 +28457965 otherCount = 46 +~~~ +28457966 CURRENTGOAL IS [7] +~~~ +28458047 DOWN 12 +28458046 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28458081 homeCount = 101 +28458081 waitCount = 43 +28458082 ripCount = 41 +28458082 locktype1 = 1 +28458083 locktype2 = 6 +28458083 locktype3 = 11 +28458084 goalCount = 6 +28458084 goalTotal = 36 +28458085 otherCount = 46 +~~~ +28458086 CURRENTGOAL IS [7] +~~~ +28458107 UP 12 +28458107 2048 255 +28458209 DOWN 12 +28458209 0 255 +28458222 UP 12 +28458222 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28458251 homeCount = 101 +28458252 waitCount = 43 +28458252 ripCount = 41 +28458253 locktype1 = 1 +28458253 locktype2 = 6 +28458254 locktype3 = 11 +28458254 goalCount = 6 +28458255 goalTotal = 36 +28458255 otherCount = 46 +~~~ +28458257 CURRENTGOAL IS [7] +~~~ +28464145 DOWN 12 +28464145 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464183 homeCount = 101 +28464183 waitCount = 43 +28464184 ripCount = 41 +28464184 locktype1 = 1 +28464185 locktype2 = 6 +28464185 locktype3 = 11 +28464186 goalCount = 6 +28464186 goalTotal = 36 +28464187 otherCount = 46 +~~~ +28464188 CURRENTGOAL IS [7] +~~~ +28464211 UP 12 +28464211 2048 255 +28464279 DOWN 12 +28464279 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464314 homeCount = 101 +28464314 waitCount = 43 +28464315 ripCount = 41 +28464315 locktype1 = 1 +28464316 locktype2 = 6 +28464316 locktype3 = 11 +28464317 goalCount = 6 +28464317 goalTotal = 36 +28464318 otherCount = 46 +~~~ +28464319 CURRENTGOAL IS [7] +~~~ +28464343 UP 12 +28464343 2048 255 +28464552 DOWN 12 +28464552 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464592 homeCount = 101 +28464593 waitCount = 43 +28464594 ripCount = 41 +28464594 locktype1 = 1 +28464595 locktype2 = 6 +28464595 locktype3 = 11 +28464596 goalCount = 6 +28464596 goalTotal = 36 +28464597 otherCount = 46 +~~~ +28464598 CURRENTGOAL IS [7] +~~~ +28464678 UP 12 +28464678 2048 255 +28464954 DOWN 12 +28464954 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28464994 homeCount = 101 +28464994 waitCount = 43 +28464995 ripCount = 41 +28464995 locktype1 = 1 +28464996 locktype2 = 6 +28464997 locktype3 = 11 +28464997 goalCount = 6 +28464998 goalTotal = 36 +28464998 otherCount = 46 +~~~ +28464999 CURRENTGOAL IS [7] +~~~ +28465040 UP 12 +28465040 2048 255 +28466476 DOWN 12 +28466476 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28466513 homeCount = 101 +28466514 waitCount = 43 +28466514 ripCount = 41 +28466515 locktype1 = 1 +28466515 locktype2 = 6 +28466516 locktype3 = 11 +28466516 goalCount = 6 +28466517 goalTotal = 36 +28466517 otherCount = 46 +~~~ +28466518 CURRENTGOAL IS [7] +~~~ +28466540 UP 12 +28466540 2048 255 +28466558 DOWN 12 +28466558 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28466594 homeCount = 101 +28466594 waitCount = 43 +28466595 ripCount = 41 +28466596 locktype1 = 1 +28466596 locktype2 = 6 +28466597 locktype3 = 11 +28466597 goalCount = 6 +28466598 goalTotal = 36 +28466598 otherCount = 46 +~~~ +28466599 CURRENTGOAL IS [7] +~~~ +28473374 UP 3 +28473374 4 255 +~~~ +~~~ +28474863 DOWN 3 +28474863 0 255 +~~~ +~~~ +28474888 0 254 +~~~ +~~~ +28474890 0 252 +~~~ +~~~ +28474892 0 248 +~~~ +~~~ +28474894 0 240 +~~~ +~~~ +28474896 0 224 +~~~ +~~~ +28474897 0 192 +~~~ +~~~ +28474899 0 128 +~~~ +~~~ +28474901 0 0 +~~~ +~~~ +28474903 0 512 +28474904 homeCount = 101 +28474904 waitCount = 43 +28474905 ripCount = 41 +28474905 locktype1 = 1 +28474906 locktype2 = 6 +28474927 locktype3 = 11 +28474928 goalCount = 6 +28474928 goalTotal = 36 +28474929 otherCount = 47 +~~~ +28474947 4 512 +28474978 DOWN 3 +28474978 0 512 +28479683 UP 10 +28479683 waslock = 0 +28479683 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28479707 512 16777728 +~~~ +28479857 512 512 +28479857 DOWN 10 +28479857 0 512 +~~~ +~~~ +28479883 0 2560 +~~~ +~~~ +28479885 0 2048 +28479886 homeCount = 102 +28479886 waitCount = 43 +28479887 ripCount = 41 +28479887 locktype1 = 1 +28479888 locktype2 = 6 +28479888 locktype3 = 11 +28479889 goalCount = 6 +28479889 goalTotal = 36 +28479890 otherCount = 47 +~~~ +28479911 UP 10 +28479911 waslock = 0 +28479911 512 2048 +~~~ +28485096 DOWN 10 +28485096 0 2048 +~~~ +~~~ +~~~ +~~~ +28485121 UP 10 +28485121 waslock = 0 +28485121 512 2048 +28485123 homeCount = 102 +28485123 waitCount = 43 +28485124 ripCount = 41 +28485124 locktype1 = 1 +28485125 locktype2 = 6 +28485125 locktype3 = 11 +28485126 goalCount = 6 +28485126 goalTotal = 36 +28485127 otherCount = 47 +~~~ +~~~ +28485197 DOWN 10 +28485197 0 2048 +~~~ +~~~ +~~~ +~~~ +28485222 homeCount = 102 +28485222 waitCount = 43 +28485223 ripCount = 41 +28485223 locktype1 = 1 +28485224 locktype2 = 6 +28485224 locktype3 = 11 +28485225 goalCount = 6 +28485225 goalTotal = 36 +28485226 otherCount = 47 +~~~ +28487348 UP 12 +28487348 2048 2048 +28489141 DOWN 12 +28489141 0 2048 +28489173 UP 12 +28489173 2048 2048 +28489765 DOWN 12 +28489765 0 2048 +28489810 UP 12 +28489810 2048 2048 +28490348 CLICK1 +28490348 CLICK2 +~~~ +~~~ +~~~ +28490373 2048 67110912 +~~~ +28490523 2048 2048 +28490662 DOWN 12 +28490662 0 2048 +28490664 UP 12 +28490664 2048 2048 +~~~ +~~~ +28490680 2048 0 +~~~ +~~~ +28490682 2048 1 +~~~ +~~~ +28490684 2048 3 +~~~ +~~~ +28490686 2048 7 +~~~ +~~~ +28490688 2048 15 +~~~ +~~~ +28490689 2048 31 +~~~ +~~~ +28490691 2048 63 +~~~ +~~~ +28490693 2048 127 +~~~ +~~~ +28490695 2048 255 +28490696 homeCount = 102 +28490696 waitCount = 44 +28490697 ripCount = 41 +28490718 locktype1 = 1 +28490719 locktype2 = 6 +28490719 locktype3 = 11 +28490720 goalCount = 6 +28490720 goalTotal = 36 +28490721 otherCount = 47 +~~~ +28490722 CURRENTGOAL IS [7] +~~~ +28490802 DOWN 12 +28490802 0 255 +28490812 UP 12 +28490812 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28490850 homeCount = 102 +28490850 waitCount = 44 +28490851 ripCount = 41 +28490851 locktype1 = 1 +28490852 locktype2 = 6 +28490853 locktype3 = 11 +28490853 goalCount = 6 +28490854 goalTotal = 36 +28490854 otherCount = 47 +~~~ +28490855 CURRENTGOAL IS [7] +~~~ +28499180 DOWN 12 +28499180 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28499217 homeCount = 102 +28499218 waitCount = 44 +28499218 ripCount = 41 +28499219 locktype1 = 1 +28499220 locktype2 = 6 +28499220 locktype3 = 11 +28499221 goalCount = 6 +28499221 goalTotal = 36 +28499222 otherCount = 47 +~~~ +28499223 CURRENTGOAL IS [7] +~~~ +28502930 UP 4 +28502930 8 255 +~~~ +~~~ +28504240 DOWN 4 +28504240 0 255 +~~~ +~~~ +28504264 0 254 +~~~ +~~~ +28504266 0 252 +~~~ +~~~ +28504268 0 248 +~~~ +~~~ +28504269 0 240 +~~~ +~~~ +28504271 0 224 +~~~ +~~~ +28504273 0 192 +~~~ +~~~ +28504275 0 128 +~~~ +~~~ +28504277 0 0 +~~~ +~~~ +28504279 0 512 +28504280 homeCount = 102 +28504280 waitCount = 44 +28504281 ripCount = 41 +28504281 locktype1 = 1 +28504282 locktype2 = 6 +28504303 locktype3 = 11 +28504303 goalCount = 6 +28504304 goalTotal = 36 +28504304 otherCount = 48 +~~~ +28510764 UP 10 +28510764 waslock = 0 +28510764 512 512 +~~~ +~~~ +28510787 DOWN 10 +28510786 0 512 +~~~ +~~~ +~~~ +28510790 0 16777728 +~~~ +28510807 UP 10 +28510807 waslock = 0 +28510807 512 16777728 +~~~ +~~~ +~~~ +28510810 512 16778752 +~~~ +28510811 512 16778240 +28510812 homeCount = 103 +28510812 waitCount = 44 +28510813 ripCount = 41 +28510813 locktype1 = 1 +28510814 locktype2 = 6 +28510814 locktype3 = 11 +28510836 goalCount = 6 +28510836 goalTotal = 36 +28510837 otherCount = 48 +~~~ +~~~ +28510940 512 1024 +28511036 DOWN 10 +28511036 0 1024 +~~~ +~~~ +~~~ +~~~ +28511057 homeCount = 103 +28511058 waitCount = 44 +28511058 ripCount = 41 +28511059 locktype1 = 1 +28511059 locktype2 = 6 +28511060 locktype3 = 11 +28511060 goalCount = 6 +28511061 goalTotal = 36 +28511061 otherCount = 48 +~~~ +28511079 UP 10 +28511079 waslock = 0 +28511079 512 1024 +~~~ +28516182 DOWN 10 +28516182 0 1024 +~~~ +~~~ +~~~ +~~~ +28516207 homeCount = 103 +28516207 waitCount = 44 +28516208 ripCount = 41 +28516208 locktype1 = 1 +28516209 locktype2 = 6 +28516209 locktype3 = 11 +28516210 goalCount = 6 +28516210 goalTotal = 36 +28516211 otherCount = 48 +~~~ +28516242 UP 10 +28516242 waslock = 0 +28516242 512 1024 +28516260 DOWN 10 +28516260 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28516286 homeCount = 103 +28516287 waitCount = 44 +28516287 ripCount = 41 +28516288 locktype1 = 1 +28516288 locktype2 = 6 +28516289 locktype3 = 11 +28516289 goalCount = 6 +28516290 goalTotal = 36 +28516290 otherCount = 48 +~~~ +28518090 UP 11 +28518090 1024 1024 +28522590 BEEP1 +28522590 BEEP2 +~~~ +~~~ +~~~ +28522616 1024 33555456 +~~~ +28522635 DOWN 11 +28522635 0 33555456 +28522652 UP 11 +28522652 1024 33555456 +28522766 1024 1024 +28522899 DOWN 11 +28522899 0 1024 +28522967 UP 11 +28522967 1024 1024 +28523180 DOWN 11 +28523180 0 1024 +28523192 UP 11 +28523192 1024 1024 +~~~ +~~~ +28523290 1024 0 +~~~ +~~~ +28523292 1024 1 +~~~ +~~~ +28523293 1024 3 +~~~ +~~~ +28523295 1024 7 +~~~ +~~~ +28523297 1024 15 +~~~ +~~~ +28523299 1024 31 +~~~ +~~~ +28523301 1024 63 +~~~ +~~~ +28523302 1024 127 +~~~ +~~~ +28523304 1024 255 +28523305 homeCount = 103 +28523306 waitCount = 44 +28523306 ripCount = 42 +28523327 locktype1 = 1 +28523328 locktype2 = 6 +28523329 locktype3 = 11 +28523329 goalCount = 6 +28523330 goalTotal = 36 +28523330 otherCount = 48 +~~~ +28523331 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28523359 homeCount = 103 +28523360 waitCount = 44 +28523360 ripCount = 42 +28523361 locktype1 = 1 +28523361 locktype2 = 6 +28523362 locktype3 = 11 +28523362 goalCount = 6 +28523363 goalTotal = 36 +28523363 otherCount = 48 +~~~ +28523385 CURRENTGOAL IS [7] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28523392 homeCount = 103 +28523392 waitCount = 44 +28523393 ripCount = 42 +28523393 locktype1 = 1 +28523394 locktype2 = 6 +28523394 locktype3 = 11 +28523415 goalCount = 6 +28523416 goalTotal = 36 +28523416 otherCount = 48 +~~~ +28523417 CURRENTGOAL IS [7] +~~~ +28529119 DOWN 11 +28529119 0 255 +~~~ +~~~ +28529139 UP 11 +28529139 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529154 homeCount = 103 +28529155 waitCount = 44 +28529155 ripCount = 42 +28529156 locktype1 = 1 +28529157 locktype2 = 6 +28529157 locktype3 = 11 +28529158 goalCount = 6 +28529158 goalTotal = 36 +28529159 otherCount = 48 +~~~ +28529160 CURRENTGOAL IS [7] +~~~ +28529243 DOWN 11 +28529243 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529278 UP 11 +28529278 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529285 homeCount = 103 +28529286 waitCount = 44 +28529286 ripCount = 42 +28529287 locktype1 = 1 +28529287 locktype2 = 6 +28529288 locktype3 = 11 +28529288 goalCount = 6 +28529289 goalTotal = 36 +28529289 otherCount = 48 +~~~ +28529291 CURRENTGOAL IS [7] +~~~ +28529377 DOWN 11 +28529377 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529405 UP 11 +28529405 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28529413 homeCount = 103 +28529413 waitCount = 44 +28529414 ripCount = 42 +28529415 locktype1 = 1 +28529415 locktype2 = 6 +28529416 locktype3 = 11 +28529416 goalCount = 6 +28529417 goalTotal = 36 +28529417 otherCount = 48 +~~~ +28529418 CURRENTGOAL IS [7] +~~~ +28531283 DOWN 11 +28531283 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28531322 homeCount = 103 +28531323 waitCount = 44 +28531323 ripCount = 42 +28531324 locktype1 = 1 +28531324 locktype2 = 6 +28531325 locktype3 = 11 +28531325 goalCount = 6 +28531326 goalTotal = 36 +28531326 otherCount = 48 +~~~ +28531327 CURRENTGOAL IS [7] +~~~ +28535334 UP 7 +28535334 64 255 +~~~ +~~~ +28535359 outer reward +~~~ +28535359 64 4194559 +~~~ +~~~ +28535740 DOWN 7 +28535740 0 4194559 +~~~ +~~~ +28535756 0 4194558 +~~~ +~~~ +28535758 0 4194556 +~~~ +~~~ +28535760 0 4194552 +~~~ +~~~ +28535762 0 4194544 +~~~ +~~~ +28535764 0 4194528 +~~~ +~~~ +28535765 0 4194496 +~~~ +~~~ +28535767 0 4194432 +~~~ +~~~ +28535769 0 4194304 +~~~ +28535770 64 4194304 +~~~ +28535772 64 4194816 +28535773 homeCount = 103 +28535793 waitCount = 44 +28535794 ripCount = 42 +28535794 locktype1 = 1 +28535795 locktype2 = 6 +28535795 locktype3 = 11 +28535796 goalCount = 7 +28535796 goalTotal = 37 +28535797 otherCount = 48 +~~~ +28535809 64 512 +28543837 DOWN 7 +28543837 0 512 +28548438 UP 10 +28548438 waslock = 0 +28548438 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28548463 512 16777728 +~~~ +28548613 512 512 +28548656 DOWN 10 +28548656 0 512 +28548677 UP 10 +28548678 waslock = 0 +28548677 512 512 +~~~ +~~~ +~~~ +28548680 512 1536 +~~~ +28548682 homeCount = 104 +28548682 waitCount = 44 +28548683 ripCount = 42 +28548683 locktype1 = 1 +28548684 locktype2 = 6 +28548684 locktype3 = 11 +28548685 goalCount = 7 +28548705 goalTotal = 37 +28548706 otherCount = 48 +~~~ +~~~ +28548707 512 1024 +28553037 DOWN 10 +28553037 0 1024 +~~~ +~~~ +~~~ +~~~ +28553060 homeCount = 104 +28553061 waitCount = 44 +28553061 ripCount = 42 +28553062 locktype1 = 1 +28553063 locktype2 = 6 +28553063 locktype3 = 11 +28553064 goalCount = 7 +28553064 goalTotal = 37 +28553065 otherCount = 48 +~~~ +28555797 UP 11 +28555797 1024 1024 +28558797 BEEP1 +28558797 BEEP2 +~~~ +~~~ +~~~ +28558819 1024 33555456 +~~~ +28558969 1024 1024 +28566484 DOWN 11 +28566484 0 1024 +28566489 UP 11 +28566489 1024 1024 +~~~ +~~~ +28566507 1024 0 +~~~ +~~~ +28566509 1024 1 +~~~ +~~~ +28566511 1024 3 +~~~ +~~~ +28566513 1024 7 +~~~ +~~~ +28566515 1024 15 +~~~ +~~~ +28566516 1024 31 +~~~ +~~~ +28566518 1024 63 +~~~ +~~~ +28566520 1024 127 +~~~ +~~~ +28566522 1024 255 +28566523 homeCount = 104 +28566524 waitCount = 44 +28566524 ripCount = 43 +28566525 locktype1 = 1 +28566546 locktype2 = 6 +28566546 locktype3 = 11 +28566547 goalCount = 7 +28566547 goalTotal = 37 +28566548 otherCount = 48 +~~~ +28566549 CURRENTGOAL IS [7] +~~~ +28568685 DOWN 11 +28568685 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28568725 homeCount = 104 +28568726 waitCount = 44 +28568726 ripCount = 43 +28568727 locktype1 = 1 +28568728 locktype2 = 6 +28568728 locktype3 = 11 +28568729 goalCount = 7 +28568729 goalTotal = 37 +28568730 otherCount = 48 +~~~ +28568731 CURRENTGOAL IS [7] +~~~ +28571533 UP 7 +28571533 64 255 +28571553 DOWN 7 +28571553 0 255 +~~~ +~~~ +28571574 outer reward +~~~ +28571574 0 4194559 +~~~ +~~~ +~~~ +~~~ +28571578 0 4194558 +~~~ +~~~ +28571580 0 4194556 +~~~ +~~~ +28571582 0 4194552 +~~~ +~~~ +28571584 0 4194544 +~~~ +~~~ +28571585 0 4194528 +~~~ +~~~ +28571587 0 4194496 +~~~ +~~~ +28571589 0 4194432 +~~~ +~~~ +28571591 0 4194304 +~~~ +~~~ +28571593 0 4194816 +28571594 homeCount = 104 +28571615 waitCount = 44 +28571615 ripCount = 43 +28571616 locktype1 = 1 +28571616 locktype2 = 6 +28571617 locktype3 = 11 +28571617 goalCount = 8 +28571618 goalTotal = 38 +28571618 otherCount = 48 +~~~ +28571624 64 4194816 +28571719 DOWN 7 +28571719 0 4194816 +28571813 64 4194816 +28572024 64 512 +28581184 DOWN 7 +28581184 0 512 +28585695 UP 10 +28585696 waslock = 0 +28585695 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28585719 512 16777728 +~~~ +28585869 512 512 +28585923 DOWN 10 +28585923 0 512 +~~~ +~~~ +28585947 0 2560 +~~~ +~~~ +28585948 0 2048 +28585949 homeCount = 105 +28585950 waitCount = 44 +28585950 ripCount = 43 +28585951 locktype1 = 1 +28585951 locktype2 = 6 +28585952 locktype3 = 11 +28585952 goalCount = 8 +28585953 goalTotal = 38 +28585954 otherCount = 48 +~~~ +28585975 UP 10 +28585975 waslock = 0 +28585975 512 2048 +~~~ +28589699 DOWN 10 +28589699 0 2048 +~~~ +~~~ +~~~ +~~~ +28589726 homeCount = 105 +28589726 waitCount = 44 +28589727 ripCount = 43 +28589727 locktype1 = 1 +28589728 locktype2 = 6 +28589728 locktype3 = 11 +28589729 goalCount = 8 +28589729 goalTotal = 38 +28589730 otherCount = 48 +~~~ +28589736 UP 10 +28589737 waslock = 0 +28589736 512 2048 +~~~ +28589793 DOWN 10 +28589793 0 2048 +~~~ +~~~ +~~~ +~~~ +28589817 homeCount = 105 +28589818 waitCount = 44 +28589818 ripCount = 43 +28589819 locktype1 = 1 +28589819 locktype2 = 6 +28589820 locktype3 = 11 +28589820 goalCount = 8 +28589821 goalTotal = 38 +28589821 otherCount = 48 +~~~ +28591883 UP 12 +28591883 2048 2048 +28594999 DOWN 12 +28594999 0 2048 +28595008 UP 12 +28595008 2048 2048 +28596384 CLICK1 +28596384 CLICK2 +~~~ +~~~ +~~~ +28596405 2048 67110912 +~~~ +28596555 2048 2048 +28602879 DOWN 12 +28602879 0 2048 +~~~ +~~~ +28602904 0 0 +~~~ +~~~ +28602906 0 1 +~~~ +~~~ +28602908 0 3 +~~~ +~~~ +28602910 0 7 +~~~ +~~~ +28602912 0 15 +~~~ +~~~ +28602913 0 31 +~~~ +~~~ +28602915 0 63 +~~~ +~~~ +28602917 0 127 +~~~ +~~~ +28602919 0 255 +28602920 homeCount = 105 +28602920 waitCount = 45 +28602921 ripCount = 43 +28602921 locktype1 = 1 +28602922 locktype2 = 6 +28602943 locktype3 = 11 +28602944 goalCount = 8 +28602944 goalTotal = 38 +28602945 otherCount = 48 +~~~ +28602946 CURRENTGOAL IS [7] +~~~ +28602948 UP 12 +28602948 2048 255 +28602980 DOWN 12 +28602980 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603008 UP 12 +28603008 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603014 homeCount = 105 +28603015 waitCount = 45 +28603015 ripCount = 43 +28603016 locktype1 = 1 +28603016 locktype2 = 6 +28603017 locktype3 = 11 +28603017 goalCount = 8 +28603018 goalTotal = 38 +28603018 otherCount = 48 +~~~ +28603020 CURRENTGOAL IS [7] +~~~ +28603548 DOWN 12 +28603548 0 255 +28603564 UP 12 +28603564 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28603599 homeCount = 105 +28603599 waitCount = 45 +28603600 ripCount = 43 +28603601 locktype1 = 1 +28603601 locktype2 = 6 +28603602 locktype3 = 11 +28603602 goalCount = 8 +28603603 goalTotal = 38 +28603603 otherCount = 48 +~~~ +28603604 CURRENTGOAL IS [7] +~~~ +28605256 DOWN 12 +28605256 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28605289 homeCount = 105 +28605290 waitCount = 45 +28605290 ripCount = 43 +28605291 locktype1 = 1 +28605291 locktype2 = 6 +28605292 locktype3 = 11 +28605292 goalCount = 8 +28605293 goalTotal = 38 +28605293 otherCount = 48 +~~~ +28605295 CURRENTGOAL IS [7] +~~~ +28605316 UP 12 +28605316 2048 255 +28605340 DOWN 12 +28605340 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28605382 homeCount = 105 +28605382 waitCount = 45 +28605383 ripCount = 43 +28605383 locktype1 = 1 +28605384 locktype2 = 6 +28605384 locktype3 = 11 +28605385 goalCount = 8 +28605385 goalTotal = 38 +28605386 otherCount = 48 +~~~ +28605387 CURRENTGOAL IS [7] +~~~ +28610041 UP 7 +28610041 64 255 +~~~ +~~~ +28610066 outer reward +~~~ +28610066 64 4194559 +~~~ +~~~ +28610080 DOWN 7 +28610080 0 4194559 +~~~ +~~~ +28610104 0 4194558 +~~~ +~~~ +28610106 0 4194556 +~~~ +~~~ +28610108 0 4194552 +~~~ +~~~ +28610110 0 4194544 +~~~ +~~~ +28610112 0 4194528 +~~~ +~~~ +28610113 0 4194496 +~~~ +~~~ +28610115 0 4194432 +~~~ +~~~ +28610117 0 4194304 +~~~ +~~~ +28610119 0 4194816 +28610120 homeCount = 105 +28610120 waitCount = 45 +28610121 ripCount = 43 +28610142 locktype1 = 1 +28610143 locktype2 = 6 +28610143 locktype3 = 11 +28610144 goalCount = 9 +28610144 goalTotal = 39 +28610145 otherCount = 48 +~~~ +28610145 64 4194816 +28610263 DOWN 7 +28610263 0 4194816 +28610325 64 4194816 +28610516 64 512 +28610711 DOWN 7 +28610711 0 512 +28610728 64 512 +28618901 DOWN 7 +28618901 0 512 +28624410 UP 10 +28624410 waslock = 0 +28624410 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28624433 512 16777728 +~~~ +28624583 512 512 +28629207 DOWN 10 +28629207 0 512 +~~~ +~~~ +28629227 0 1536 +~~~ +~~~ +28629229 0 1024 +28629230 homeCount = 106 +28629230 waitCount = 45 +28629231 ripCount = 43 +28629231 locktype1 = 1 +28629232 locktype2 = 6 +28629232 locktype3 = 11 +28629233 goalCount = 9 +28629233 goalTotal = 39 +28629234 otherCount = 48 +~~~ +28629267 UP 10 +28629268 waslock = 0 +28629267 512 1024 +28629281 DOWN 10 +28629281 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +28629317 homeCount = 106 +28629318 waitCount = 45 +28629318 ripCount = 43 +28629319 locktype1 = 1 +28629319 locktype2 = 6 +28629320 locktype3 = 11 +28629320 goalCount = 9 +28629321 goalTotal = 39 +28629321 otherCount = 48 +~~~ +28631683 UP 11 +28631683 1024 1024 +28635339 DOWN 11 +28635339 0 1024 +28635349 UP 11 +28635349 1024 1024 +28635683 BEEP1 +28635683 BEEP2 +~~~ +~~~ +~~~ +28635709 1024 33555456 +~~~ +28635859 1024 1024 +28642049 DOWN 11 +28642048 0 1024 +~~~ +~~~ +28642066 0 0 +~~~ +28642067 UP 11 +28642067 1024 0 +~~~ +~~~ +28642069 1024 1 +~~~ +~~~ +28642071 1024 3 +~~~ +~~~ +28642072 1024 7 +~~~ +28642073 1024 15 +~~~ +~~~ +28642075 1024 31 +~~~ +~~~ +28642076 1024 63 +~~~ +~~~ +28642078 1024 127 +~~~ +~~~ +28642080 1024 255 +28642081 homeCount = 106 +28642102 waitCount = 45 +28642102 ripCount = 44 +28642103 locktype1 = 1 +28642103 locktype2 = 6 +28642104 locktype3 = 11 +28642104 goalCount = 9 +28642105 goalTotal = 39 +28642105 otherCount = 48 +~~~ +28642107 CURRENTGOAL IS [7] +~~~ +28642132 DOWN 11 +28642132 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642162 homeCount = 106 +28642162 waitCount = 45 +28642163 ripCount = 44 +28642163 locktype1 = 1 +28642164 locktype2 = 6 +28642164 locktype3 = 11 +28642165 goalCount = 9 +28642165 goalTotal = 39 +28642166 otherCount = 48 +~~~ +28642167 CURRENTGOAL IS [7] +~~~ +28642188 UP 11 +28642188 1024 255 +28642197 DOWN 11 +28642197 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642220 UP 11 +28642220 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642227 homeCount = 106 +28642228 waitCount = 45 +28642228 ripCount = 44 +28642229 locktype1 = 1 +28642229 locktype2 = 6 +28642230 locktype3 = 11 +28642230 goalCount = 9 +28642231 goalTotal = 39 +28642231 otherCount = 48 +~~~ +28642232 CURRENTGOAL IS [7] +~~~ +28642272 DOWN 11 +28642272 0 255 +28642296 UP 11 +28642296 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28642313 homeCount = 106 +28642314 waitCount = 45 +28642314 ripCount = 44 +28642315 locktype1 = 1 +28642315 locktype2 = 6 +28642316 locktype3 = 11 +28642316 goalCount = 9 +28642317 goalTotal = 39 +28642317 otherCount = 48 +~~~ +28642318 CURRENTGOAL IS [7] +~~~ +28643982 DOWN 11 +28643982 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28644022 homeCount = 106 +28644022 waitCount = 45 +28644023 ripCount = 44 +28644023 locktype1 = 1 +28644024 locktype2 = 6 +28644024 locktype3 = 11 +28644025 goalCount = 9 +28644025 goalTotal = 39 +28644026 otherCount = 48 +~~~ +28644027 CURRENTGOAL IS [7] +~~~ +28644048 UP 11 +28644048 1024 255 +28644071 DOWN 11 +28644071 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28644112 homeCount = 106 +28644113 waitCount = 45 +28644113 ripCount = 44 +28644114 locktype1 = 1 +28644114 locktype2 = 6 +28644115 locktype3 = 11 +28644115 goalCount = 9 +28644116 goalTotal = 39 +28644116 otherCount = 48 +~~~ +28644118 CURRENTGOAL IS [7] +~~~ +28646624 UP 7 +28646624 64 255 +~~~ +~~~ +28646652 outer reward +~~~ +28646652 64 4194559 +~~~ +~~~ +28646657 outerreps = 6 +~~~ +~~~ +28646820 DOWN 7 +28646820 0 4194559 +~~~ +~~~ +28646837 0 4194558 +~~~ +~~~ +28646838 0 4194556 +~~~ +~~~ +28646840 0 4194552 +~~~ +~~~ +28646842 0 4194544 +~~~ +~~~ +28646844 0 4194528 +~~~ +~~~ +28646846 0 4194496 +~~~ +~~~ +28646848 0 4194432 +~~~ +~~~ +28646849 0 4194304 +~~~ +~~~ +28646851 0 4194816 +28646852 homeCount = 106 +28646853 waitCount = 45 +28646874 ripCount = 44 +28646875 locktype1 = 1 +28646875 locktype2 = 6 +28646876 locktype3 = 11 +28646876 goalCount = 0 +28646877 goalTotal = 40 +28646877 otherCount = 48 +~~~ +28646881 64 4194816 +28647102 64 512 +28654098 DOWN 7 +28654098 0 512 +28654128 64 512 +28655573 DOWN 7 +28655573 0 512 +28659979 UP 10 +28659979 waslock = 0 +28659979 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28660003 512 16777728 +~~~ +28660153 512 512 +28660172 DOWN 10 +28660172 0 512 +~~~ +~~~ +28660192 0 2560 +~~~ +~~~ +28660194 0 2048 +28660195 homeCount = 107 +28660196 waitCount = 45 +28660196 ripCount = 44 +28660197 locktype1 = 1 +28660197 locktype2 = 6 +28660198 locktype3 = 11 +28660198 goalCount = 0 +28660199 goalTotal = 40 +28660199 otherCount = 48 +~~~ +28660221 UP 10 +28660221 waslock = 0 +28660221 512 2048 +~~~ +28664181 DOWN 10 +28664181 0 2048 +~~~ +~~~ +~~~ +~~~ +28664200 homeCount = 107 +28664201 waitCount = 45 +28664201 ripCount = 44 +28664202 locktype1 = 1 +28664202 locktype2 = 6 +28664203 locktype3 = 11 +28664203 goalCount = 0 +28664204 goalTotal = 40 +28664204 otherCount = 48 +~~~ +28664242 UP 10 +28664242 waslock = 0 +28664242 512 2048 +~~~ +28664282 DOWN 10 +28664282 0 2048 +~~~ +~~~ +~~~ +~~~ +28664301 homeCount = 107 +28664301 waitCount = 45 +28664302 ripCount = 44 +28664302 locktype1 = 1 +28664303 locktype2 = 6 +28664303 locktype3 = 11 +28664304 goalCount = 0 +28664304 goalTotal = 40 +28664305 otherCount = 48 +~~~ +28666679 UP 12 +28666679 2048 2048 +28669418 DOWN 12 +28669418 0 2048 +28669421 UP 12 +28669421 2048 2048 +28670180 CLICK1 +28670180 CLICK2 +~~~ +~~~ +~~~ +28670200 2048 67110912 +~~~ +28670350 2048 2048 +28675738 DOWN 12 +28675738 0 2048 +28675753 UP 12 +28675753 2048 2048 +~~~ +~~~ +28675758 2048 0 +~~~ +~~~ +28675760 2048 1 +~~~ +~~~ +28675761 2048 3 +~~~ +~~~ +28675763 2048 7 +~~~ +~~~ +28675765 2048 15 +~~~ +~~~ +28675767 2048 31 +~~~ +~~~ +28675769 2048 63 +~~~ +~~~ +28675771 2048 127 +~~~ +~~~ +28675772 2048 255 +28675773 homeCount = 107 +28675774 waitCount = 46 +28675775 ripCount = 44 +28675796 locktype1 = 1 +28675796 locktype2 = 6 +28675797 locktype3 = 11 +28675797 goalCount = 0 +28675798 goalTotal = 40 +28675798 otherCount = 48 +~~~ +28675799 CURRENTGOAL IS [8] +~~~ +28675955 DOWN 12 +28675955 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28675995 homeCount = 107 +28675996 waitCount = 46 +28675996 ripCount = 44 +28675997 locktype1 = 1 +28675997 locktype2 = 6 +28675998 locktype3 = 11 +28675998 goalCount = 0 +28675999 goalTotal = 40 +28675999 otherCount = 48 +~~~ +28676000 CURRENTGOAL IS [8] +~~~ +28676059 UP 12 +28676058 2048 255 +28676099 DOWN 12 +28676099 0 255 +28676107 UP 12 +28676107 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676134 homeCount = 107 +28676135 waitCount = 46 +28676135 ripCount = 44 +28676136 locktype1 = 1 +28676136 locktype2 = 6 +28676137 locktype3 = 11 +28676137 goalCount = 0 +28676138 goalTotal = 40 +28676138 otherCount = 48 +~~~ +28676139 CURRENTGOAL IS [8] +~~~ +28676193 DOWN 12 +28676193 0 255 +~~~ +~~~ +~~~ +28676221 UP 12 +28676221 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676236 homeCount = 107 +28676236 waitCount = 46 +28676237 ripCount = 44 +28676238 locktype1 = 1 +28676238 locktype2 = 6 +28676239 locktype3 = 11 +28676239 goalCount = 0 +28676240 goalTotal = 40 +28676240 otherCount = 48 +~~~ +28676241 CURRENTGOAL IS [8] +~~~ +28676262 DOWN 12 +28676262 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676294 homeCount = 107 +28676294 waitCount = 46 +28676295 ripCount = 44 +28676296 locktype1 = 1 +28676296 locktype2 = 6 +28676297 locktype3 = 11 +28676297 goalCount = 0 +28676298 goalTotal = 40 +28676298 otherCount = 48 +~~~ +28676299 CURRENTGOAL IS [8] +~~~ +28676341 UP 12 +28676341 2048 255 +28676567 DOWN 12 +28676567 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676604 homeCount = 107 +28676605 waitCount = 46 +28676606 ripCount = 44 +28676606 locktype1 = 1 +28676607 locktype2 = 6 +28676607 locktype3 = 11 +28676608 goalCount = 0 +28676608 goalTotal = 40 +28676609 otherCount = 48 +~~~ +28676610 CURRENTGOAL IS [8] +~~~ +28676631 UP 12 +28676631 2048 255 +28676674 DOWN 12 +28676674 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676715 homeCount = 107 +28676716 waitCount = 46 +28676717 ripCount = 44 +28676717 locktype1 = 1 +28676718 locktype2 = 6 +28676718 locktype3 = 11 +28676719 goalCount = 0 +28676719 goalTotal = 40 +28676720 otherCount = 48 +~~~ +28676721 CURRENTGOAL IS [8] +~~~ +28676794 UP 12 +28676794 2048 255 +28676813 DOWN 12 +28676813 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28676847 homeCount = 107 +28676848 waitCount = 46 +28676848 ripCount = 44 +28676849 locktype1 = 1 +28676849 locktype2 = 6 +28676850 locktype3 = 11 +28676850 goalCount = 0 +28676851 goalTotal = 40 +28676851 otherCount = 48 +~~~ +28676853 CURRENTGOAL IS [8] +~~~ +28681987 UP 7 +28681987 64 255 +~~~ +~~~ +28682178 DOWN 7 +28682178 0 255 +~~~ +~~~ +28682199 0 254 +~~~ +~~~ +28682201 0 252 +~~~ +~~~ +28682203 0 248 +~~~ +~~~ +28682205 0 240 +~~~ +~~~ +28682206 0 224 +~~~ +~~~ +28682208 0 192 +~~~ +~~~ +28682210 0 128 +~~~ +~~~ +28682212 0 0 +~~~ +~~~ +28682214 0 512 +28682215 homeCount = 107 +28682215 waitCount = 46 +28682216 ripCount = 44 +28682216 locktype1 = 1 +28682237 locktype2 = 6 +28682237 locktype3 = 11 +28682238 goalCount = 0 +28682238 goalTotal = 40 +28682239 otherCount = 49 +~~~ +28682242 64 512 +28682805 DOWN 7 +28682805 0 512 +28687242 UP 10 +28687242 waslock = 0 +28687242 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28687267 512 16777728 +~~~ +28687417 512 512 +28692614 DOWN 10 +28692614 0 512 +~~~ +~~~ +28692630 0 1536 +~~~ +~~~ +28692632 0 1024 +28692633 homeCount = 108 +28692633 waitCount = 46 +28692634 ripCount = 44 +28692634 locktype1 = 1 +28692635 locktype2 = 6 +28692635 locktype3 = 11 +28692636 goalCount = 0 +28692636 goalTotal = 40 +28692637 otherCount = 49 +~~~ +28722460 UP 5 +28722460 16 1024 +~~~ +28722481 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +28722485 16 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28722793 DOWN 5 +28722793 0 0 +28722950 16 0 +28723527 DOWN 5 +28723527 0 0 +28723945 16 0 +28723961 DOWN 5 +28723961 0 0 +28731390 512 0 +28731607 0 0 +28734719 512 0 +28740000 0 0 +28740067 512 0 +28740107 0 0 +28747481 LOCKEND +~~~ +~~~ +~~~ +28747502 0 512 +28779978 UP 10 +28779978 waslock = 0 +28779978 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28780008 512 16777728 +~~~ +28780038 DOWN 10 +28780038 0 16777728 +~~~ +~~~ +28780067 0 16779776 +~~~ +~~~ +28780069 0 16779264 +28780070 homeCount = 109 +28780070 waitCount = 46 +28780071 ripCount = 44 +28780071 locktype1 = 1 +28780072 locktype2 = 7 +28780072 locktype3 = 11 +28780073 goalCount = 0 +28780073 goalTotal = 40 +28780074 otherCount = 49 +~~~ +28780103 UP 10 +28780103 waslock = 0 +28780103 512 16779264 +28780132 DOWN 10 +28780132 0 16779264 +~~~ +~~~ +~~~ +~~~ +~~~ +28780155 homeCount = 109 +28780155 waitCount = 46 +28780156 ripCount = 44 +28780156 locktype1 = 1 +28780157 locktype2 = 7 +28780157 locktype3 = 11 +28780158 goalCount = 0 +28780158 goalTotal = 40 +28780159 otherCount = 49 +~~~ +28780159 0 2048 +28780313 UP 10 +28780314 waslock = 0 +28780313 512 2048 +~~~ +28780367 DOWN 10 +28780367 0 2048 +~~~ +~~~ +~~~ +~~~ +28780397 homeCount = 109 +28780397 waitCount = 46 +28780398 ripCount = 44 +28780398 locktype1 = 1 +28780399 locktype2 = 7 +28780399 locktype3 = 11 +28780400 goalCount = 0 +28780400 goalTotal = 40 +28780401 otherCount = 49 +~~~ +28780413 UP 10 +28780414 waslock = 0 +28780413 512 2048 +~~~ +28780850 DOWN 10 +28780850 0 2048 +~~~ +~~~ +~~~ +~~~ +28780875 homeCount = 109 +28780875 waitCount = 46 +28780876 ripCount = 44 +28780877 locktype1 = 1 +28780877 locktype2 = 7 +28780878 locktype3 = 11 +28780878 goalCount = 0 +28780879 goalTotal = 40 +28780879 otherCount = 49 +~~~ +28780890 UP 10 +28780890 waslock = 0 +28780890 512 2048 +28780908 DOWN 10 +28780908 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28780933 homeCount = 109 +28780933 waitCount = 46 +28780934 ripCount = 44 +28780934 locktype1 = 1 +28780935 locktype2 = 7 +28780935 locktype3 = 11 +28780936 goalCount = 0 +28780936 goalTotal = 40 +28780937 otherCount = 49 +~~~ +28781017 UP 10 +28781017 waslock = 0 +28781017 512 2048 +28781032 DOWN 10 +28781032 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28781058 homeCount = 109 +28781058 waitCount = 46 +28781059 ripCount = 44 +28781059 locktype1 = 1 +28781060 locktype2 = 7 +28781060 locktype3 = 11 +28781061 goalCount = 0 +28781061 goalTotal = 40 +28781062 otherCount = 49 +~~~ +28781144 UP 10 +28781144 waslock = 0 +28781144 512 2048 +28781154 DOWN 10 +28781154 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28781175 homeCount = 109 +28781176 waitCount = 46 +28781176 ripCount = 44 +28781177 locktype1 = 1 +28781177 locktype2 = 7 +28781178 locktype3 = 11 +28781178 goalCount = 0 +28781179 goalTotal = 40 +28781179 otherCount = 49 +~~~ +28781262 UP 10 +28781263 waslock = 0 +28781262 512 2048 +~~~ +28783973 DOWN 10 +28783973 0 2048 +~~~ +~~~ +~~~ +~~~ +28783999 homeCount = 109 +28783999 waitCount = 46 +28784000 ripCount = 44 +28784000 locktype1 = 1 +28784001 locktype2 = 7 +28784001 locktype3 = 11 +28784002 goalCount = 0 +28784002 goalTotal = 40 +28784003 otherCount = 49 +~~~ +28784018 UP 10 +28784019 waslock = 0 +28784018 512 2048 +~~~ +28784075 DOWN 10 +28784075 0 2048 +~~~ +~~~ +~~~ +~~~ +28784099 homeCount = 109 +28784099 waitCount = 46 +28784100 ripCount = 44 +28784100 locktype1 = 1 +28784101 locktype2 = 7 +28784101 locktype3 = 11 +28784102 goalCount = 0 +28784103 goalTotal = 40 +28784103 otherCount = 49 +~~~ +28797858 UP 1 +28797858 1 2048 +28797882 DOWN 1 +28797882 0 2048 +~~~ +28797884 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28797889 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28797959 1 0 +28798533 DOWN 1 +28798533 0 0 +28805298 512 0 +28805377 0 0 +28805484 512 0 +28805569 0 0 +28812038 512 0 +28812315 0 0 +28812347 512 0 +28812391 0 0 +28812415 512 0 +28812432 0 0 +28822884 LOCKEND +~~~ +~~~ +~~~ +28822907 0 512 +28824977 UP 10 +28824977 waslock = 0 +28824977 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28825010 512 16777728 +~~~ +28825030 DOWN 10 +28825030 0 16777728 +~~~ +~~~ +28825053 0 16778752 +~~~ +~~~ +28825055 0 16778240 +28825056 homeCount = 110 +28825057 waitCount = 46 +28825057 ripCount = 44 +28825058 locktype1 = 1 +28825058 locktype2 = 8 +28825059 locktype3 = 11 +28825059 goalCount = 0 +28825060 goalTotal = 40 +28825060 otherCount = 49 +~~~ +28825081 UP 10 +28825082 waslock = 0 +28825081 512 16778240 +~~~ +28825160 512 1024 +28829576 DOWN 10 +28829576 0 1024 +~~~ +~~~ +~~~ +~~~ +28829597 homeCount = 110 +28829597 waitCount = 46 +28829598 ripCount = 44 +28829599 locktype1 = 1 +28829599 locktype2 = 8 +28829600 locktype3 = 11 +28829600 goalCount = 0 +28829601 goalTotal = 40 +28829601 otherCount = 49 +~~~ +28829635 UP 10 +28829635 waslock = 0 +28829635 512 1024 +~~~ +28829692 DOWN 10 +28829692 0 1024 +~~~ +~~~ +~~~ +~~~ +28829717 homeCount = 110 +28829717 waitCount = 46 +28829718 ripCount = 44 +28829718 locktype1 = 1 +28829719 locktype2 = 8 +28829719 locktype3 = 11 +28829720 goalCount = 0 +28829720 goalTotal = 40 +28829721 otherCount = 49 +~~~ +28829775 UP 10 +28829775 waslock = 0 +28829775 512 1024 +~~~ +28829802 DOWN 10 +28829802 0 1024 +~~~ +~~~ +~~~ +~~~ +28829831 homeCount = 110 +28829832 waitCount = 46 +28829832 ripCount = 44 +28829833 locktype1 = 1 +28829833 locktype2 = 8 +28829834 locktype3 = 11 +28829834 goalCount = 0 +28829835 goalTotal = 40 +28829835 otherCount = 49 +~~~ +28832575 UP 11 +28832575 1024 1024 +28836075 BEEP1 +28836075 BEEP2 +~~~ +~~~ +~~~ +28836096 1024 33555456 +~~~ +28836246 1024 1024 +28842504 DOWN 11 +28842504 0 1024 +~~~ +28842524 UP 11 +28842524 1024 1024 +~~~ +~~~ +28842526 1024 0 +~~~ +~~~ +28842527 1024 1 +~~~ +28842529 1024 3 +~~~ +~~~ +28842530 1024 7 +~~~ +~~~ +28842532 1024 15 +~~~ +~~~ +28842534 1024 31 +~~~ +~~~ +28842536 1024 63 +~~~ +~~~ +28842537 1024 127 +~~~ +~~~ +28842539 1024 255 +28842540 homeCount = 110 +28842561 waitCount = 46 +28842562 ripCount = 45 +28842562 locktype1 = 1 +28842563 locktype2 = 8 +28842563 locktype3 = 11 +28842564 goalCount = 0 +28842564 goalTotal = 40 +28842565 otherCount = 49 +~~~ +28842566 CURRENTGOAL IS [8] +~~~ +28842627 DOWN 11 +28842627 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28842665 homeCount = 110 +28842666 waitCount = 46 +28842666 ripCount = 45 +28842667 locktype1 = 1 +28842667 locktype2 = 8 +28842668 locktype3 = 11 +28842668 goalCount = 0 +28842669 goalTotal = 40 +28842669 otherCount = 49 +~~~ +28842670 CURRENTGOAL IS [8] +~~~ +28842708 UP 11 +28842708 1024 255 +28842766 DOWN 11 +28842766 0 255 +28842777 UP 11 +28842777 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28842817 homeCount = 110 +28842818 waitCount = 46 +28842819 ripCount = 45 +28842819 locktype1 = 1 +28842820 locktype2 = 8 +28842820 locktype3 = 11 +28842821 goalCount = 0 +28842821 goalTotal = 40 +28842822 otherCount = 49 +~~~ +28842823 CURRENTGOAL IS [8] +~~~ +28844915 DOWN 11 +28844915 0 255 +28844936 UP 11 +28844936 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28844956 homeCount = 110 +28844956 waitCount = 46 +28844957 ripCount = 45 +28844957 locktype1 = 1 +28844958 locktype2 = 8 +28844958 locktype3 = 11 +28844959 goalCount = 0 +28844959 goalTotal = 40 +28844960 otherCount = 49 +~~~ +28844961 CURRENTGOAL IS [8] +~~~ +28845000 DOWN 11 +28845000 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28845037 homeCount = 110 +28845037 waitCount = 46 +28845038 ripCount = 45 +28845038 locktype1 = 1 +28845039 locktype2 = 8 +28845039 locktype3 = 11 +28845040 goalCount = 0 +28845040 goalTotal = 40 +28845041 otherCount = 49 +~~~ +28845042 CURRENTGOAL IS [8] +~~~ +28848013 UP 6 +28848013 32 255 +~~~ +~~~ +28848533 DOWN 6 +28848533 0 255 +~~~ +~~~ +28848550 0 254 +~~~ +~~~ +28848552 0 252 +~~~ +~~~ +28848554 0 248 +~~~ +~~~ +28848556 0 240 +~~~ +~~~ +28848558 0 224 +~~~ +~~~ +28848560 0 192 +~~~ +~~~ +28848561 0 128 +~~~ +~~~ +28848563 0 0 +~~~ +~~~ +28848565 0 512 +28848566 homeCount = 110 +28848567 waitCount = 46 +28848567 ripCount = 45 +28848568 locktype1 = 1 +28848589 locktype2 = 8 +28848589 locktype3 = 11 +28848590 goalCount = 0 +28848590 goalTotal = 40 +28848591 otherCount = 50 +~~~ +28853286 UP 10 +28853286 waslock = 0 +28853285 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28853310 512 16777728 +~~~ +28853460 512 512 +28853551 DOWN 10 +28853551 0 512 +~~~ +~~~ +28853578 0 2560 +~~~ +~~~ +28853580 0 2048 +28853581 homeCount = 111 +28853582 waitCount = 46 +28853582 ripCount = 45 +28853583 locktype1 = 1 +28853583 locktype2 = 8 +28853584 locktype3 = 11 +28853584 goalCount = 0 +28853585 goalTotal = 40 +28853585 otherCount = 50 +~~~ +28853607 UP 10 +28853607 waslock = 0 +28853607 512 2048 +~~~ +28858404 DOWN 10 +28858404 0 2048 +~~~ +~~~ +~~~ +~~~ +28858432 homeCount = 111 +28858433 waitCount = 46 +28858433 ripCount = 45 +28858434 locktype1 = 1 +28858434 locktype2 = 8 +28858435 locktype3 = 11 +28858435 goalCount = 0 +28858436 goalTotal = 40 +28858436 otherCount = 50 +~~~ +28860886 UP 12 +28860886 2048 2048 +28863790 DOWN 12 +28863790 0 2048 +28863828 UP 12 +28863828 2048 2048 +28863856 DOWN 12 +28863856 0 2048 +28863886 CLICK1 +28863886 CLICK2 +~~~ +~~~ +~~~ +28863919 0 67110912 +~~~ +28863922 UP 12 +28863922 2048 67110912 +28864069 2048 2048 +28864196 DOWN 12 +28864196 0 2048 +~~~ +~~~ +28864220 0 0 +~~~ +~~~ +28864222 0 1 +~~~ +~~~ +28864224 0 3 +~~~ +~~~ +28864226 0 7 +~~~ +~~~ +28864228 0 15 +~~~ +~~~ +28864229 0 31 +~~~ +~~~ +28864231 0 63 +~~~ +~~~ +28864233 0 127 +~~~ +~~~ +28864235 0 255 +28864236 homeCount = 111 +28864236 waitCount = 47 +28864237 ripCount = 45 +28864238 locktype1 = 1 +28864238 locktype2 = 8 +28864259 locktype3 = 11 +28864260 goalCount = 0 +28864260 goalTotal = 40 +28864261 otherCount = 50 +~~~ +28864262 CURRENTGOAL IS [8] +~~~ +28864299 UP 12 +28864299 2048 255 +28870550 DOWN 12 +28870550 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28870587 homeCount = 111 +28870587 waitCount = 47 +28870588 ripCount = 45 +28870588 locktype1 = 1 +28870589 locktype2 = 8 +28870589 locktype3 = 11 +28870590 goalCount = 0 +28870590 goalTotal = 40 +28870591 otherCount = 50 +~~~ +28870592 CURRENTGOAL IS [8] +~~~ +28870613 UP 12 +28870613 2048 255 +28870653 DOWN 12 +28870653 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28870688 homeCount = 111 +28870689 waitCount = 47 +28870689 ripCount = 45 +28870690 locktype1 = 1 +28870690 locktype2 = 8 +28870691 locktype3 = 11 +28870692 goalCount = 0 +28870692 goalTotal = 40 +28870693 otherCount = 50 +~~~ +28870694 CURRENTGOAL IS [8] +~~~ +28874529 UP 4 +28874529 8 255 +~~~ +~~~ +28875631 DOWN 4 +28875631 0 255 +~~~ +~~~ +28875652 0 254 +~~~ +~~~ +28875654 0 252 +~~~ +~~~ +28875655 0 248 +~~~ +~~~ +28875657 0 240 +~~~ +~~~ +28875659 0 224 +~~~ +~~~ +28875661 0 192 +~~~ +~~~ +28875663 0 128 +~~~ +~~~ +28875664 0 0 +~~~ +~~~ +28875666 0 512 +28875667 homeCount = 111 +28875668 waitCount = 47 +28875668 ripCount = 45 +28875669 locktype1 = 1 +28875690 locktype2 = 8 +28875691 locktype3 = 11 +28875691 goalCount = 0 +28875692 goalTotal = 40 +28875692 otherCount = 51 +~~~ +28883393 UP 10 +28883394 waslock = 0 +28883393 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28883422 512 16777728 +~~~ +28883439 DOWN 10 +28883439 0 16777728 +~~~ +~~~ +28883466 0 16779776 +~~~ +~~~ +28883468 0 16779264 +28883469 homeCount = 112 +28883470 waitCount = 47 +28883470 ripCount = 45 +28883471 locktype1 = 1 +28883471 locktype2 = 8 +28883472 locktype3 = 11 +28883472 goalCount = 0 +28883473 goalTotal = 40 +28883473 otherCount = 51 +~~~ +28883509 UP 10 +28883509 waslock = 0 +28883509 512 16779264 +~~~ +28883572 512 2048 +28883585 DOWN 10 +28883585 0 2048 +~~~ +~~~ +~~~ +~~~ +28883605 homeCount = 112 +28883605 waitCount = 47 +28883606 ripCount = 45 +28883606 locktype1 = 1 +28883607 locktype2 = 8 +28883607 locktype3 = 11 +28883608 goalCount = 0 +28883608 goalTotal = 40 +28883609 otherCount = 51 +~~~ +28883764 UP 10 +28883764 waslock = 0 +28883764 512 2048 +~~~ +28888011 DOWN 10 +28888011 0 2048 +~~~ +~~~ +~~~ +~~~ +28888031 homeCount = 112 +28888032 waitCount = 47 +28888032 ripCount = 45 +28888033 locktype1 = 1 +28888033 locktype2 = 8 +28888034 locktype3 = 11 +28888034 goalCount = 0 +28888035 goalTotal = 40 +28888035 otherCount = 51 +~~~ +28888049 UP 10 +28888050 waslock = 0 +28888049 512 2048 +~~~ +28888103 DOWN 10 +28888103 0 2048 +~~~ +~~~ +~~~ +~~~ +28888134 homeCount = 112 +28888134 waitCount = 47 +28888135 ripCount = 45 +28888135 locktype1 = 1 +28888136 locktype2 = 8 +28888136 locktype3 = 11 +28888137 goalCount = 0 +28888137 goalTotal = 40 +28888138 otherCount = 51 +~~~ +28890034 UP 12 +28890034 2048 2048 +28893690 DOWN 12 +28893690 0 2048 +28893790 UP 12 +28893790 2048 2048 +28893861 DOWN 12 +28893861 0 2048 +28893878 UP 12 +28893878 2048 2048 +28893921 DOWN 12 +28893921 0 2048 +28893942 UP 12 +28893942 2048 2048 +28893949 DOWN 12 +28893949 0 2048 +28893954 UP 12 +28893954 2048 2048 +28893964 DOWN 12 +28893964 0 2048 +28893989 UP 12 +28893989 2048 2048 +28898611 DOWN 12 +28898611 0 2048 +28898680 UP 12 +28898680 2048 2048 +28899034 CLICK1 +28899034 CLICK2 +~~~ +~~~ +~~~ +28899062 2048 67110912 +~~~ +28899212 2048 2048 +28908224 DOWN 12 +28908224 0 2048 +~~~ +~~~ +28908245 0 0 +~~~ +~~~ +28908247 0 1 +~~~ +~~~ +28908249 0 3 +~~~ +~~~ +28908251 0 7 +~~~ +~~~ +28908253 0 15 +~~~ +~~~ +28908255 0 31 +~~~ +~~~ +28908256 0 63 +~~~ +~~~ +28908258 0 127 +~~~ +~~~ +28908260 0 255 +28908261 homeCount = 112 +28908262 waitCount = 48 +28908262 ripCount = 45 +28908263 locktype1 = 1 +28908263 locktype2 = 8 +28908284 locktype3 = 11 +28908285 goalCount = 0 +28908285 goalTotal = 40 +28908286 otherCount = 51 +~~~ +28908287 CURRENTGOAL IS [8] +~~~ +28908287 UP 12 +28908287 2048 255 +28908312 DOWN 12 +28908312 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28908355 homeCount = 112 +28908356 waitCount = 48 +28908356 ripCount = 45 +28908357 locktype1 = 1 +28908357 locktype2 = 8 +28908358 locktype3 = 11 +28908358 goalCount = 0 +28908359 goalTotal = 40 +28908359 otherCount = 51 +~~~ +28908361 CURRENTGOAL IS [8] +~~~ +28912740 UP 1 +28912740 1 255 +~~~ +~~~ +28913834 DOWN 1 +28913834 0 255 +~~~ +~~~ +28913860 0 254 +~~~ +~~~ +28913862 0 252 +~~~ +~~~ +28913864 0 248 +~~~ +~~~ +28913866 0 240 +~~~ +~~~ +28913867 0 224 +~~~ +~~~ +28913869 0 192 +~~~ +~~~ +28913871 0 128 +~~~ +~~~ +28913873 0 0 +~~~ +~~~ +28913875 0 512 +28913876 homeCount = 112 +28913876 waitCount = 48 +28913877 ripCount = 45 +28913877 locktype1 = 1 +28913878 locktype2 = 8 +28913899 locktype3 = 11 +28913899 goalCount = 0 +28913900 goalTotal = 40 +28913900 otherCount = 52 +~~~ +28917360 UP 10 +28917360 waslock = 0 +28917360 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28917386 512 16777728 +~~~ +28917536 512 512 +28923452 DOWN 10 +28923452 0 512 +28923462 UP 10 +28923462 waslock = 0 +28923462 512 512 +~~~ +~~~ +28923482 512 2560 +~~~ +~~~ +28923484 512 2048 +28923485 homeCount = 113 +28923486 waitCount = 48 +28923486 ripCount = 45 +28923487 locktype1 = 1 +28923487 locktype2 = 8 +28923488 locktype3 = 11 +28923488 goalCount = 0 +28923489 goalTotal = 40 +28923489 otherCount = 52 +~~~ +~~~ +28923558 DOWN 10 +28923558 0 2048 +~~~ +~~~ +~~~ +~~~ +28923583 homeCount = 113 +28923584 waitCount = 48 +28923584 ripCount = 45 +28923585 locktype1 = 1 +28923585 locktype2 = 8 +28923586 locktype3 = 11 +28923586 goalCount = 0 +28923587 goalTotal = 40 +28923587 otherCount = 52 +~~~ +28923618 UP 10 +28923619 waslock = 0 +28923618 512 2048 +~~~ +28923656 DOWN 10 +28923656 0 2048 +~~~ +~~~ +~~~ +~~~ +28923679 homeCount = 113 +28923680 waitCount = 48 +28923680 ripCount = 45 +28923681 locktype1 = 1 +28923681 locktype2 = 8 +28923682 locktype3 = 11 +28923682 goalCount = 0 +28923683 goalTotal = 40 +28923683 otherCount = 52 +~~~ +28925345 UP 12 +28925345 2048 2048 +28926820 DOWN 12 +28926820 0 2048 +28926832 UP 12 +28926832 2048 2048 +28927113 DOWN 12 +28927113 0 2048 +28927174 UP 12 +28927174 2048 2048 +28928345 CLICK1 +28928345 CLICK2 +~~~ +~~~ +~~~ +28928364 2048 67110912 +~~~ +28928481 DOWN 12 +28928481 0 67110912 +28928514 0 2048 +28928534 UP 12 +28928534 2048 2048 +28928545 DOWN 12 +28928545 0 2048 +~~~ +~~~ +28928551 0 0 +~~~ +~~~ +28928553 0 1 +~~~ +~~~ +28928555 0 3 +~~~ +~~~ +28928557 0 7 +~~~ +~~~ +28928558 0 15 +~~~ +~~~ +28928560 0 31 +~~~ +~~~ +28928562 0 63 +~~~ +~~~ +28928564 0 127 +~~~ +~~~ +28928566 0 255 +28928567 homeCount = 113 +28928567 waitCount = 49 +28928568 ripCount = 45 +28928568 locktype1 = 1 +28928569 locktype2 = 8 +28928590 locktype3 = 11 +28928590 goalCount = 0 +28928591 goalTotal = 40 +28928592 otherCount = 52 +~~~ +28928593 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28928600 homeCount = 113 +28928621 waitCount = 49 +28928621 ripCount = 45 +28928622 locktype1 = 1 +28928622 locktype2 = 8 +28928623 locktype3 = 11 +28928623 goalCount = 0 +28928624 goalTotal = 40 +28928624 otherCount = 52 +~~~ +28928625 CURRENTGOAL IS [8] +~~~ +28928626 UP 12 +28928626 2048 255 +28934970 DOWN 12 +28934970 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28935004 homeCount = 113 +28935004 waitCount = 49 +28935005 ripCount = 45 +28935006 locktype1 = 1 +28935006 locktype2 = 8 +28935007 locktype3 = 11 +28935007 goalCount = 0 +28935008 goalTotal = 40 +28935008 otherCount = 52 +~~~ +28935009 CURRENTGOAL IS [8] +~~~ +28935030 UP 12 +28935030 2048 255 +28935063 DOWN 12 +28935063 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28935104 homeCount = 113 +28935104 waitCount = 49 +28935105 ripCount = 45 +28935105 locktype1 = 1 +28935106 locktype2 = 8 +28935107 locktype3 = 11 +28935107 goalCount = 0 +28935108 goalTotal = 40 +28935108 otherCount = 52 +~~~ +28935109 CURRENTGOAL IS [8] +~~~ +28939803 UP 4 +28939803 8 255 +~~~ +~~~ +28940719 DOWN 4 +28940719 0 255 +~~~ +~~~ +28940736 0 254 +~~~ +~~~ +28940738 0 252 +~~~ +~~~ +28940740 0 248 +~~~ +~~~ +28940741 0 240 +~~~ +~~~ +28940743 0 224 +~~~ +~~~ +28940745 0 192 +~~~ +~~~ +28940747 0 128 +~~~ +~~~ +28940749 0 0 +~~~ +~~~ +28940751 0 512 +28940752 homeCount = 113 +28940752 waitCount = 49 +28940753 ripCount = 45 +28940753 locktype1 = 1 +28940774 locktype2 = 8 +28940775 locktype3 = 11 +28940775 goalCount = 0 +28940776 goalTotal = 40 +28940776 otherCount = 53 +~~~ +28940844 8 512 +28941165 DOWN 4 +28941165 0 512 +28944970 UP 10 +28944970 waslock = 0 +28944970 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28944999 512 16777728 +~~~ +28945149 512 512 +28945191 DOWN 10 +28945191 0 512 +~~~ +~~~ +28945214 0 1536 +~~~ +~~~ +28945216 0 1024 +28945217 homeCount = 114 +28945217 waitCount = 49 +28945218 ripCount = 45 +28945218 locktype1 = 1 +28945219 locktype2 = 8 +28945219 locktype3 = 11 +28945220 goalCount = 0 +28945220 goalTotal = 40 +28945221 otherCount = 53 +~~~ +28945242 UP 10 +28945242 waslock = 0 +28945242 512 1024 +~~~ +28952252 DOWN 10 +28952252 0 1024 +~~~ +~~~ +~~~ +~~~ +28952276 homeCount = 114 +28952276 waitCount = 49 +28952277 ripCount = 45 +28952277 locktype1 = 1 +28952278 locktype2 = 8 +28952278 locktype3 = 11 +28952279 goalCount = 0 +28952279 goalTotal = 40 +28952280 otherCount = 53 +~~~ +28954847 UP 11 +28954847 1024 1024 +28958772 DOWN 11 +28958772 0 1024 +28958793 UP 11 +28958793 1024 1024 +28958938 DOWN 11 +28958938 0 1024 +28958951 UP 11 +28958951 1024 1024 +28962347 BEEP1 +28962347 BEEP2 +~~~ +~~~ +~~~ +28962376 1024 33555456 +~~~ +28962526 1024 1024 +28969334 DOWN 11 +28969334 0 1024 +~~~ +~~~ +28969353 0 0 +~~~ +~~~ +28969355 0 1 +~~~ +~~~ +28969357 0 3 +~~~ +~~~ +28969359 0 7 +~~~ +~~~ +28969361 0 15 +~~~ +~~~ +28969363 0 31 +~~~ +~~~ +28969364 0 63 +~~~ +~~~ +28969366 0 127 +~~~ +~~~ +28969368 0 255 +28969369 homeCount = 114 +28969370 waitCount = 49 +28969370 ripCount = 46 +28969371 locktype1 = 1 +28969371 locktype2 = 8 +28969392 locktype3 = 11 +28969393 goalCount = 0 +28969393 goalTotal = 40 +28969394 otherCount = 53 +~~~ +28969395 CURRENTGOAL IS [8] +~~~ +28969395 UP 11 +28969395 1024 255 +28969432 DOWN 11 +28969432 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28969472 homeCount = 114 +28969472 waitCount = 49 +28969473 ripCount = 46 +28969473 locktype1 = 1 +28969474 locktype2 = 8 +28969474 locktype3 = 11 +28969475 goalCount = 0 +28969475 goalTotal = 40 +28969476 otherCount = 53 +~~~ +28969477 CURRENTGOAL IS [8] +~~~ +28972662 UP 7 +28972662 64 255 +~~~ +~~~ +28973269 DOWN 7 +28973269 0 255 +~~~ +~~~ +28973295 0 254 +~~~ +~~~ +28973297 0 252 +~~~ +~~~ +28973299 0 248 +~~~ +~~~ +28973301 0 240 +~~~ +~~~ +28973303 0 224 +~~~ +~~~ +28973305 0 192 +~~~ +~~~ +28973306 0 128 +~~~ +~~~ +28973308 0 0 +~~~ +~~~ +28973310 0 512 +28973311 homeCount = 114 +28973312 waitCount = 49 +28973312 ripCount = 46 +28973313 locktype1 = 1 +28973313 locktype2 = 8 +28973334 locktype3 = 11 +28973335 goalCount = 0 +28973335 goalTotal = 40 +28973336 otherCount = 54 +~~~ +28977764 UP 10 +28977764 waslock = 0 +28977764 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +28977794 512 16777728 +~~~ +28977944 512 512 +28978037 DOWN 10 +28978037 0 512 +~~~ +~~~ +28978059 0 2560 +~~~ +~~~ +28978060 0 2048 +28978061 homeCount = 115 +28978062 waitCount = 49 +28978063 ripCount = 46 +28978063 locktype1 = 1 +28978064 locktype2 = 8 +28978064 locktype3 = 11 +28978065 goalCount = 0 +28978065 goalTotal = 40 +28978066 otherCount = 54 +~~~ +28978087 UP 10 +28978087 waslock = 0 +28978087 512 2048 +~~~ +28978234 DOWN 10 +28978234 0 2048 +28978250 UP 10 +28978250 waslock = 0 +28978250 512 2048 +~~~ +~~~ +~~~ +~~~ +28978273 homeCount = 115 +28978273 waitCount = 49 +28978274 ripCount = 46 +28978275 locktype1 = 1 +28978275 locktype2 = 8 +28978276 locktype3 = 11 +28978276 goalCount = 0 +28978277 goalTotal = 40 +28978277 otherCount = 54 +~~~ +~~~ +28978477 DOWN 10 +28978477 0 2048 +~~~ +~~~ +~~~ +~~~ +28978501 homeCount = 115 +28978501 waitCount = 49 +28978502 ripCount = 46 +28978502 locktype1 = 1 +28978503 locktype2 = 8 +28978503 locktype3 = 11 +28978504 goalCount = 0 +28978504 goalTotal = 40 +28978505 otherCount = 54 +~~~ +28978551 UP 10 +28978551 waslock = 0 +28978551 512 2048 +28978570 DOWN 10 +28978570 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +28978599 homeCount = 115 +28978600 waitCount = 49 +28978600 ripCount = 46 +28978601 locktype1 = 1 +28978601 locktype2 = 8 +28978602 locktype3 = 11 +28978602 goalCount = 0 +28978603 goalTotal = 40 +28978603 otherCount = 54 +~~~ +28978681 UP 10 +28978681 waslock = 0 +28978681 512 2048 +~~~ +28985257 DOWN 10 +28985257 0 2048 +~~~ +~~~ +~~~ +~~~ +28985282 homeCount = 115 +28985282 waitCount = 49 +28985283 ripCount = 46 +28985283 locktype1 = 1 +28985284 locktype2 = 8 +28985284 locktype3 = 11 +28985285 goalCount = 0 +28985286 goalTotal = 40 +28985286 otherCount = 54 +~~~ +28995900 UP 12 +28995900 2048 2048 +28997144 DOWN 12 +28997144 0 2048 +28997344 LOCKOUT 3 +28997347 UP 12 +28997347 2048 2048 +~~~ +28997369 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28997375 2048 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +28997612 DOWN 12 +28997612 0 0 +28997634 UP 12 +28997634 2048 0 +29001991 DOWN 12 +29001991 0 0 +29002007 UP 12 +29002007 2048 0 +29002019 DOWN 12 +29002018 0 0 +29002056 UP 12 +29002056 2048 0 +29002152 DOWN 12 +29002152 0 0 +29002178 UP 12 +29002178 2048 0 +29002188 DOWN 12 +29002188 0 0 +29002210 UP 12 +29002210 2048 0 +29007757 DOWN 12 +29007757 0 0 +29007782 UP 12 +29007782 2048 0 +29007799 DOWN 12 +29007799 0 0 +29007825 UP 12 +29007825 2048 0 +29009658 DOWN 12 +29009658 0 0 +29009698 UP 12 +29009698 2048 0 +29009727 DOWN 12 +29009727 0 0 +29009797 UP 12 +29009797 2048 0 +29009830 DOWN 12 +29009830 0 0 +29011177 UP 12 +29011177 2048 0 +29011199 DOWN 12 +29011199 0 0 +29011358 UP 12 +29011358 2048 0 +29012274 DOWN 12 +29012274 0 0 +29022369 LOCKEND +~~~ +~~~ +~~~ +29022391 0 512 +29026767 UP 10 +29026767 waslock = 0 +29026767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29026795 512 16777728 +~~~ +29026842 DOWN 10 +29026842 0 16777728 +~~~ +~~~ +29026871 0 16779776 +~~~ +~~~ +29026873 0 16779264 +29026874 homeCount = 116 +29026874 waitCount = 49 +29026875 ripCount = 46 +29026875 locktype1 = 1 +29026876 locktype2 = 8 +29026876 locktype3 = 12 +29026877 goalCount = 0 +29026877 goalTotal = 40 +29026878 otherCount = 54 +~~~ +29026908 UP 10 +29026908 waslock = 0 +29026908 512 16779264 +~~~ +29026944 512 2048 +29026962 DOWN 10 +29026962 0 2048 +~~~ +~~~ +~~~ +~~~ +29026992 homeCount = 116 +29026992 waitCount = 49 +29026993 ripCount = 46 +29026994 locktype1 = 1 +29026994 locktype2 = 8 +29026995 locktype3 = 12 +29026995 goalCount = 0 +29026996 goalTotal = 40 +29026996 otherCount = 54 +~~~ +29026998 UP 10 +29026998 waslock = 0 +29026998 512 2048 +29027028 DOWN 10 +29027028 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29027062 homeCount = 116 +29027062 waitCount = 49 +29027063 ripCount = 46 +29027063 locktype1 = 1 +29027064 locktype2 = 8 +29027064 locktype3 = 12 +29027065 goalCount = 0 +29027065 goalTotal = 40 +29027066 otherCount = 54 +~~~ +29027296 UP 10 +29027296 waslock = 0 +29027296 512 2048 +~~~ +29027830 DOWN 10 +29027830 0 2048 +~~~ +~~~ +~~~ +~~~ +29027855 homeCount = 116 +29027856 waitCount = 49 +29027857 ripCount = 46 +29027857 locktype1 = 1 +29027858 locktype2 = 8 +29027858 locktype3 = 12 +29027859 goalCount = 0 +29027859 goalTotal = 40 +29027860 otherCount = 54 +~~~ +29027895 UP 10 +29027895 waslock = 0 +29027895 512 2048 +~~~ +29027938 DOWN 10 +29027938 0 2048 +~~~ +~~~ +~~~ +~~~ +29027966 homeCount = 116 +29027966 waitCount = 49 +29027967 ripCount = 46 +29027967 locktype1 = 1 +29027968 locktype2 = 8 +29027968 locktype3 = 12 +29027969 goalCount = 0 +29027969 goalTotal = 40 +29027970 otherCount = 54 +~~~ +29028014 UP 10 +29028015 waslock = 0 +29028014 512 2048 +~~~ +29029618 DOWN 10 +29029618 0 2048 +~~~ +~~~ +~~~ +29029641 UP 10 +29029641 waslock = 0 +29029640 512 2048 +~~~ +29029643 homeCount = 116 +29029643 waitCount = 49 +29029644 ripCount = 46 +29029644 locktype1 = 1 +29029645 locktype2 = 8 +29029645 locktype3 = 12 +29029646 goalCount = 0 +29029646 goalTotal = 40 +29029667 otherCount = 54 +~~~ +29029668 DOWN 10 +29029668 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29029695 homeCount = 116 +29029696 waitCount = 49 +29029697 ripCount = 46 +29029697 locktype1 = 1 +29029698 locktype2 = 8 +29029698 locktype3 = 12 +29029699 goalCount = 0 +29029699 goalTotal = 40 +29029700 otherCount = 54 +~~~ +29030443 UP 10 +29030443 waslock = 0 +29030443 512 2048 +~~~ +29033311 DOWN 10 +29033311 0 2048 +~~~ +~~~ +~~~ +~~~ +29033333 homeCount = 116 +29033333 waitCount = 49 +29033334 ripCount = 46 +29033334 locktype1 = 1 +29033335 locktype2 = 8 +29033335 locktype3 = 12 +29033336 goalCount = 0 +29033336 goalTotal = 40 +29033337 otherCount = 54 +~~~ +29035977 UP 12 +29035977 2048 2048 +29037448 DOWN 12 +29037448 0 2048 +29037516 UP 12 +29037516 2048 2048 +29038598 DOWN 12 +29038598 0 2048 +29038676 UP 12 +29038676 2048 2048 +29038784 DOWN 12 +29038784 0 2048 +29038806 UP 12 +29038806 2048 2048 +29040477 CLICK1 +29040477 CLICK2 +~~~ +~~~ +~~~ +29040503 2048 67110912 +~~~ +29040653 2048 2048 +29046553 DOWN 12 +29046553 0 2048 +~~~ +~~~ +29046571 0 0 +~~~ +~~~ +29046573 0 1 +~~~ +~~~ +29046575 0 3 +~~~ +~~~ +29046577 0 7 +~~~ +29046578 UP 12 +29046578 2048 7 +~~~ +~~~ +29046580 2048 15 +~~~ +~~~ +29046581 2048 31 +~~~ +~~~ +29046583 2048 63 +~~~ +29046584 2048 127 +~~~ +~~~ +29046586 2048 255 +29046587 homeCount = 116 +29046608 waitCount = 50 +29046608 ripCount = 46 +29046609 locktype1 = 1 +29046609 locktype2 = 8 +29046610 locktype3 = 12 +29046610 goalCount = 0 +29046611 goalTotal = 40 +29046611 otherCount = 54 +~~~ +29046612 CURRENTGOAL IS [8] +~~~ +29046660 DOWN 12 +29046660 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29046699 homeCount = 116 +29046699 waitCount = 50 +29046700 ripCount = 46 +29046700 locktype1 = 1 +29046701 locktype2 = 8 +29046701 locktype3 = 12 +29046702 goalCount = 0 +29046702 goalTotal = 40 +29046703 otherCount = 54 +~~~ +29046704 CURRENTGOAL IS [8] +~~~ +29046725 UP 12 +29046725 2048 255 +29046750 DOWN 12 +29046750 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29046789 homeCount = 116 +29046790 waitCount = 50 +29046790 ripCount = 46 +29046791 locktype1 = 1 +29046792 locktype2 = 8 +29046792 locktype3 = 12 +29046793 goalCount = 0 +29046793 goalTotal = 40 +29046794 otherCount = 54 +~~~ +29046795 CURRENTGOAL IS [8] +~~~ +29046840 UP 12 +29046840 2048 255 +29047066 DOWN 12 +29047066 0 255 +29047070 UP 12 +29047070 2048 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29047101 homeCount = 116 +29047102 waitCount = 50 +29047102 ripCount = 46 +29047103 locktype1 = 1 +29047103 locktype2 = 8 +29047104 locktype3 = 12 +29047104 goalCount = 0 +29047105 goalTotal = 40 +29047105 otherCount = 54 +~~~ +29047106 CURRENTGOAL IS [8] +~~~ +29048094 DOWN 12 +29048094 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29048130 homeCount = 116 +29048131 waitCount = 50 +29048131 ripCount = 46 +29048132 locktype1 = 1 +29048132 locktype2 = 8 +29048133 locktype3 = 12 +29048133 goalCount = 0 +29048134 goalTotal = 40 +29048134 otherCount = 54 +~~~ +29048135 CURRENTGOAL IS [8] +~~~ +29056595 UP 6 +29056595 32 255 +~~~ +~~~ +29057269 DOWN 6 +29057269 0 255 +~~~ +~~~ +29057285 0 254 +~~~ +~~~ +29057287 0 252 +~~~ +~~~ +29057289 0 248 +~~~ +~~~ +29057291 0 240 +~~~ +~~~ +29057292 0 224 +~~~ +~~~ +29057294 0 192 +~~~ +~~~ +29057296 0 128 +~~~ +29057297 32 128 +~~~ +~~~ +29057299 32 0 +~~~ +29057300 32 512 +29057301 homeCount = 116 +29057302 waitCount = 50 +29057302 ripCount = 46 +29057323 locktype1 = 1 +29057324 locktype2 = 8 +29057324 locktype3 = 12 +29057325 goalCount = 0 +29057325 goalTotal = 40 +29057326 otherCount = 55 +~~~ +29057340 DOWN 6 +29057340 0 512 +29061896 UP 10 +29061896 waslock = 0 +29061896 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29061923 512 16777728 +~~~ +29062073 512 512 +29062111 DOWN 10 +29062111 0 512 +~~~ +~~~ +29062139 0 1536 +~~~ +~~~ +29062141 0 1024 +29062142 homeCount = 117 +29062142 waitCount = 50 +29062143 ripCount = 46 +29062143 locktype1 = 1 +29062144 locktype2 = 8 +29062144 locktype3 = 12 +29062145 goalCount = 0 +29062145 goalTotal = 40 +29062146 otherCount = 55 +~~~ +29062222 UP 10 +29062222 waslock = 0 +29062222 512 1024 +~~~ +29066190 DOWN 10 +29066190 0 1024 +~~~ +~~~ +~~~ +~~~ +29066222 homeCount = 117 +29066223 waitCount = 50 +29066223 ripCount = 46 +29066224 locktype1 = 1 +29066224 locktype2 = 8 +29066225 locktype3 = 12 +29066225 goalCount = 0 +29066226 goalTotal = 40 +29066226 otherCount = 55 +~~~ +29068842 UP 11 +29068841 1024 1024 +29077842 BEEP1 +29077842 BEEP2 +~~~ +~~~ +~~~ +29077868 1024 33555456 +~~~ +29078018 1024 1024 +29086532 DOWN 11 +29086532 0 1024 +~~~ +~~~ +29086560 0 0 +~~~ +~~~ +29086561 0 1 +~~~ +~~~ +29086563 0 3 +~~~ +~~~ +29086565 0 7 +~~~ +~~~ +29086567 0 15 +~~~ +~~~ +29086569 0 31 +~~~ +~~~ +29086571 0 63 +~~~ +~~~ +29086572 0 127 +~~~ +~~~ +29086574 0 255 +29086575 homeCount = 117 +29086576 waitCount = 50 +29086576 ripCount = 47 +29086577 locktype1 = 1 +29086577 locktype2 = 8 +29086598 locktype3 = 12 +29086599 goalCount = 0 +29086599 goalTotal = 40 +29086600 otherCount = 55 +~~~ +29086601 CURRENTGOAL IS [8] +~~~ +29086601 UP 11 +29086601 1024 255 +29086651 DOWN 11 +29086651 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29086685 homeCount = 117 +29086685 waitCount = 50 +29086686 ripCount = 47 +29086686 locktype1 = 1 +29086687 locktype2 = 8 +29086687 locktype3 = 12 +29086688 goalCount = 0 +29086688 goalTotal = 40 +29086689 otherCount = 55 +~~~ +29086690 CURRENTGOAL IS [8] +~~~ +29093885 UP 3 +29093885 4 255 +~~~ +~~~ +29094389 DOWN 3 +29094389 0 255 +~~~ +~~~ +29094407 0 254 +~~~ +~~~ +29094409 0 252 +~~~ +~~~ +29094411 0 248 +~~~ +~~~ +29094413 0 240 +~~~ +~~~ +29094414 0 224 +~~~ +~~~ +29094416 0 192 +~~~ +~~~ +29094418 0 128 +~~~ +~~~ +29094420 0 0 +~~~ +~~~ +29094422 0 512 +29094423 homeCount = 117 +29094423 waitCount = 50 +29094424 ripCount = 47 +29094424 locktype1 = 1 +29094445 locktype2 = 8 +29094445 locktype3 = 12 +29094446 goalCount = 0 +29094446 goalTotal = 40 +29094447 otherCount = 56 +~~~ +29094505 4 512 +29094791 DOWN 3 +29094791 0 512 +29098404 UP 10 +29098405 waslock = 0 +29098404 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29098437 512 16777728 +~~~ +29098451 DOWN 10 +29098451 0 16777728 +~~~ +~~~ +29098472 0 16778752 +~~~ +~~~ +29098474 0 16778240 +29098475 homeCount = 118 +29098476 waitCount = 50 +29098476 ripCount = 47 +29098477 locktype1 = 1 +29098477 locktype2 = 8 +29098478 locktype3 = 12 +29098478 goalCount = 0 +29098479 goalTotal = 40 +29098479 otherCount = 56 +~~~ +29098509 UP 10 +29098510 waslock = 0 +29098509 512 16778240 +~~~ +29098587 512 1024 +29098590 DOWN 10 +29098590 0 1024 +~~~ +~~~ +~~~ +~~~ +29098618 homeCount = 118 +29098618 waitCount = 50 +29098619 ripCount = 47 +29098619 locktype1 = 1 +29098620 locktype2 = 8 +29098620 locktype3 = 12 +29098621 goalCount = 0 +29098621 goalTotal = 40 +29098622 otherCount = 56 +~~~ +29098713 UP 10 +29098713 waslock = 0 +29098713 512 1024 +~~~ +29101907 DOWN 10 +29101907 0 1024 +~~~ +~~~ +~~~ +~~~ +29101936 homeCount = 118 +29101937 waitCount = 50 +29101937 ripCount = 47 +29101938 locktype1 = 1 +29101938 locktype2 = 8 +29101939 locktype3 = 12 +29101939 goalCount = 0 +29101940 goalTotal = 40 +29101940 otherCount = 56 +~~~ +29101953 UP 10 +29101953 waslock = 0 +29101953 512 1024 +~~~ +29101998 DOWN 10 +29101998 0 1024 +~~~ +~~~ +~~~ +~~~ +29102018 homeCount = 118 +29102018 waitCount = 50 +29102019 ripCount = 47 +29102019 locktype1 = 1 +29102020 locktype2 = 8 +29102020 locktype3 = 12 +29102021 goalCount = 0 +29102021 goalTotal = 40 +29102022 otherCount = 56 +~~~ +29103694 UP 11 +29103694 1024 1024 +29112694 BEEP1 +29112694 BEEP2 +~~~ +~~~ +~~~ +29112721 1024 33555456 +~~~ +29112871 1024 1024 +29119544 DOWN 11 +29119544 0 1024 +~~~ +~~~ +29119570 0 0 +~~~ +~~~ +29119572 0 1 +~~~ +~~~ +29119574 0 3 +~~~ +~~~ +29119575 0 7 +~~~ +~~~ +29119577 0 15 +~~~ +~~~ +29119579 0 31 +~~~ +~~~ +29119581 0 63 +~~~ +~~~ +29119583 0 127 +~~~ +~~~ +29119585 0 255 +29119586 homeCount = 118 +29119586 waitCount = 50 +29119587 ripCount = 48 +29119587 locktype1 = 1 +29119588 locktype2 = 8 +29119609 locktype3 = 12 +29119609 goalCount = 0 +29119610 goalTotal = 40 +29119610 otherCount = 56 +~~~ +29119611 CURRENTGOAL IS [8] +~~~ +29119612 UP 11 +29119612 1024 255 +29119616 DOWN 11 +29119616 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29119668 homeCount = 118 +29119669 waitCount = 50 +29119669 ripCount = 48 +29119670 locktype1 = 1 +29119670 locktype2 = 8 +29119671 locktype3 = 12 +29119671 goalCount = 0 +29119672 goalTotal = 40 +29119672 otherCount = 56 +~~~ +29119673 CURRENTGOAL IS [8] +~~~ +29122599 UP 8 +29122599 128 255 +~~~ +~~~ +29122624 outer reward +~~~ +29122624 128 8388863 +~~~ +~~~ +29123074 128 255 +29130013 DOWN 8 +29130013 0 255 +~~~ +~~~ +29130032 0 254 +~~~ +~~~ +29130034 0 252 +~~~ +~~~ +29130036 0 248 +~~~ +~~~ +29130037 0 240 +~~~ +~~~ +29130039 0 224 +~~~ +~~~ +29130041 0 192 +~~~ +~~~ +29130043 0 128 +~~~ +~~~ +29130045 0 0 +~~~ +~~~ +29130047 0 512 +29130048 homeCount = 118 +29130048 waitCount = 50 +29130049 ripCount = 48 +29130049 locktype1 = 1 +29130050 locktype2 = 8 +29130071 locktype3 = 12 +29130071 goalCount = 1 +29130072 goalTotal = 41 +29130072 otherCount = 56 +~~~ +29130073 128 512 +29130117 DOWN 8 +29130117 0 512 +29135768 UP 10 +29135768 waslock = 0 +29135767 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29135792 512 16777728 +~~~ +29135942 512 512 +29136087 DOWN 10 +29136087 0 512 +~~~ +~~~ +29136106 0 2560 +~~~ +~~~ +29136108 0 2048 +29136109 homeCount = 119 +29136109 waitCount = 50 +29136110 ripCount = 48 +29136110 locktype1 = 1 +29136111 locktype2 = 8 +29136111 locktype3 = 12 +29136112 goalCount = 1 +29136112 goalTotal = 41 +29136113 otherCount = 56 +~~~ +29136174 UP 10 +29136174 waslock = 0 +29136174 512 2048 +~~~ +29140118 DOWN 10 +29140118 0 2048 +~~~ +~~~ +~~~ +~~~ +29140138 homeCount = 119 +29140138 waitCount = 50 +29140139 ripCount = 48 +29140139 locktype1 = 1 +29140140 locktype2 = 8 +29140140 locktype3 = 12 +29140141 goalCount = 1 +29140141 goalTotal = 41 +29140142 otherCount = 56 +~~~ +29140155 UP 10 +29140156 waslock = 0 +29140155 512 2048 +~~~ +29140225 DOWN 10 +29140225 0 2048 +~~~ +~~~ +~~~ +~~~ +29140256 homeCount = 119 +29140257 waitCount = 50 +29140257 ripCount = 48 +29140258 locktype1 = 1 +29140258 locktype2 = 8 +29140259 locktype3 = 12 +29140259 goalCount = 1 +29140260 goalTotal = 41 +29140260 otherCount = 56 +~~~ +29140302 UP 10 +29140302 waslock = 0 +29140302 512 2048 +29140330 DOWN 10 +29140330 0 2048 +~~~ +~~~ +~~~ +~~~ +~~~ +29140355 homeCount = 119 +29140356 waitCount = 50 +29140356 ripCount = 48 +29140357 locktype1 = 1 +29140357 locktype2 = 8 +29140358 locktype3 = 12 +29140358 goalCount = 1 +29140359 goalTotal = 41 +29140359 otherCount = 56 +~~~ +29142523 UP 12 +29142523 2048 2048 +29145524 CLICK1 +29145524 CLICK2 +~~~ +~~~ +~~~ +29145549 2048 67110912 +~~~ +29145699 2048 2048 +29145721 DOWN 12 +29145721 0 2048 +29145728 UP 12 +29145728 2048 2048 +~~~ +~~~ +29145738 2048 0 +~~~ +~~~ +29145740 2048 1 +~~~ +~~~ +29145742 2048 3 +~~~ +~~~ +29145743 2048 7 +~~~ +~~~ +29145745 2048 15 +~~~ +~~~ +29145747 2048 31 +~~~ +~~~ +29145749 2048 63 +~~~ +~~~ +29145751 2048 127 +~~~ +~~~ +29145753 2048 255 +29145754 homeCount = 119 +29145754 waitCount = 51 +29145755 ripCount = 48 +29145775 locktype1 = 1 +29145776 locktype2 = 8 +29145776 locktype3 = 12 +29145777 goalCount = 1 +29145777 goalTotal = 41 +29145778 otherCount = 56 +~~~ +29145779 CURRENTGOAL IS [8] +~~~ +29145803 DOWN 12 +29145803 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29145844 homeCount = 119 +29145845 waitCount = 51 +29145846 ripCount = 48 +29145846 locktype1 = 1 +29145847 locktype2 = 8 +29145847 locktype3 = 12 +29145848 goalCount = 1 +29145848 goalTotal = 41 +29145849 otherCount = 56 +~~~ +29145850 CURRENTGOAL IS [8] +~~~ +29145897 UP 12 +29145897 2048 255 +29151732 DOWN 12 +29151732 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29151764 homeCount = 119 +29151765 waitCount = 51 +29151765 ripCount = 48 +29151766 locktype1 = 1 +29151766 locktype2 = 8 +29151767 locktype3 = 12 +29151767 goalCount = 1 +29151768 goalTotal = 41 +29151768 otherCount = 56 +~~~ +29151769 CURRENTGOAL IS [8] +~~~ +29151798 UP 12 +29151798 2048 255 +29151813 DOWN 12 +29151813 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29151848 homeCount = 119 +29151849 waitCount = 51 +29151849 ripCount = 48 +29151850 locktype1 = 1 +29151850 locktype2 = 8 +29151851 locktype3 = 12 +29151851 goalCount = 1 +29151852 goalTotal = 41 +29151852 otherCount = 56 +~~~ +29151854 CURRENTGOAL IS [8] +~~~ +29157194 UP 1 +29157194 1 255 +~~~ +~~~ +29157720 DOWN 1 +29157720 0 255 +~~~ +~~~ +29157744 0 254 +~~~ +~~~ +29157745 0 252 +~~~ +~~~ +29157747 0 248 +~~~ +~~~ +29157749 0 240 +~~~ +~~~ +29157751 0 224 +~~~ +~~~ +29157753 0 192 +~~~ +~~~ +29157755 0 128 +~~~ +~~~ +29157756 0 0 +~~~ +~~~ +29157758 0 512 +29157759 homeCount = 119 +29157760 waitCount = 51 +29157760 ripCount = 48 +29157761 locktype1 = 1 +29157781 locktype2 = 8 +29157782 locktype3 = 12 +29157782 goalCount = 1 +29157783 goalTotal = 41 +29157784 otherCount = 57 +~~~ +29161043 UP 10 +29161044 waslock = 0 +29161043 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29161070 512 16777728 +~~~ +29161220 512 512 +29167184 DOWN 10 +29167184 0 512 +~~~ +~~~ +29167204 0 2560 +~~~ +~~~ +29167206 0 2048 +29167207 homeCount = 120 +29167208 waitCount = 51 +29167208 ripCount = 48 +29167209 locktype1 = 1 +29167209 locktype2 = 8 +29167210 locktype3 = 12 +29167210 goalCount = 1 +29167211 goalTotal = 41 +29167211 otherCount = 57 +~~~ +29167233 UP 10 +29167233 waslock = 0 +29167233 512 2048 +~~~ +29167284 DOWN 10 +29167283 0 2048 +~~~ +~~~ +~~~ +~~~ +29167308 homeCount = 120 +29167309 waitCount = 51 +29167309 ripCount = 48 +29167310 locktype1 = 1 +29167310 locktype2 = 8 +29167311 locktype3 = 12 +29167311 goalCount = 1 +29167312 goalTotal = 41 +29167312 otherCount = 57 +~~~ +29169240 UP 12 +29169240 2048 2048 +29173241 CLICK1 +29173241 CLICK2 +~~~ +~~~ +~~~ +29173267 2048 67110912 +~~~ +29173417 2048 2048 +29180620 DOWN 12 +29180620 0 2048 +~~~ +~~~ +29180645 0 0 +~~~ +~~~ +29180647 0 1 +~~~ +~~~ +29180649 0 3 +~~~ +~~~ +29180650 0 7 +~~~ +~~~ +29180652 0 15 +~~~ +~~~ +29180654 0 31 +~~~ +~~~ +29180656 0 63 +~~~ +~~~ +29180658 0 127 +~~~ +~~~ +29180660 0 255 +29180661 homeCount = 120 +29180661 waitCount = 52 +29180662 ripCount = 48 +29180662 locktype1 = 1 +29180663 locktype2 = 8 +29180684 locktype3 = 12 +29180684 goalCount = 1 +29180685 goalTotal = 41 +29180685 otherCount = 57 +~~~ +29180686 CURRENTGOAL IS [8] +~~~ +29180699 UP 12 +29180699 2048 255 +29180715 DOWN 12 +29180715 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29180750 homeCount = 120 +29180750 waitCount = 52 +29180751 ripCount = 48 +29180751 locktype1 = 1 +29180752 locktype2 = 8 +29180752 locktype3 = 12 +29180753 goalCount = 1 +29180753 goalTotal = 41 +29180754 otherCount = 57 +~~~ +29180755 CURRENTGOAL IS [8] +~~~ +29185318 UP 1 +29185318 1 255 +~~~ +~~~ +29185916 DOWN 1 +29185916 0 255 +~~~ +~~~ +29185935 0 254 +~~~ +~~~ +29185937 0 252 +~~~ +~~~ +29185939 0 248 +~~~ +~~~ +29185941 0 240 +~~~ +~~~ +29185943 0 224 +~~~ +~~~ +29185944 0 192 +~~~ +~~~ +29185946 0 128 +~~~ +~~~ +29185948 0 0 +~~~ +~~~ +29185950 0 512 +29185951 homeCount = 120 +29185952 waitCount = 52 +29185952 ripCount = 48 +29185953 locktype1 = 1 +29185953 locktype2 = 8 +29185974 locktype3 = 12 +29185975 goalCount = 1 +29185975 goalTotal = 41 +29185976 otherCount = 58 +~~~ +29186163 1 512 +29186492 DOWN 1 +29186492 0 512 +29186605 1 512 +29187016 DOWN 1 +29187016 0 512 +29187039 1 512 +29187068 DOWN 1 +29187068 0 512 +29191463 UP 10 +29191463 waslock = 0 +29191463 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29191495 512 16777728 +~~~ +29191624 DOWN 10 +29191624 0 16777728 +29191645 0 512 +~~~ +~~~ +29191649 0 1536 +~~~ +~~~ +29191651 0 1024 +29191652 homeCount = 121 +29191652 waitCount = 52 +29191653 ripCount = 48 +29191653 locktype1 = 1 +29191654 locktype2 = 8 +29191654 locktype3 = 12 +29191655 goalCount = 1 +29191655 goalTotal = 41 +29191656 otherCount = 58 +~~~ +29191677 UP 10 +29191677 waslock = 0 +29191677 512 1024 +~~~ +29191706 DOWN 10 +29191706 0 1024 +~~~ +~~~ +~~~ +~~~ +29191722 homeCount = 121 +29191722 waitCount = 52 +29191723 ripCount = 48 +29191723 locktype1 = 1 +29191724 locktype2 = 8 +29191724 locktype3 = 12 +29191725 goalCount = 1 +29191725 goalTotal = 41 +29191726 otherCount = 58 +~~~ +29192235 UP 10 +29192235 waslock = 0 +29192235 512 1024 +~~~ +29198177 DOWN 10 +29198177 0 1024 +~~~ +~~~ +~~~ +~~~ +29198200 homeCount = 121 +29198201 waitCount = 52 +29198201 ripCount = 48 +29198202 locktype1 = 1 +29198202 locktype2 = 8 +29198203 locktype3 = 12 +29198203 goalCount = 1 +29198204 goalTotal = 41 +29198204 otherCount = 58 +~~~ +29198220 UP 10 +29198221 waslock = 0 +29198220 512 1024 +29198243 DOWN 10 +29198243 0 1024 +~~~ +~~~ +~~~ +~~~ +~~~ +29198272 homeCount = 121 +29198272 waitCount = 52 +29198273 ripCount = 48 +29198273 locktype1 = 1 +29198274 locktype2 = 8 +29198274 locktype3 = 12 +29198275 goalCount = 1 +29198275 goalTotal = 41 +29198276 otherCount = 58 +~~~ +29199804 UP 11 +29199804 1024 1024 +29203422 DOWN 11 +29203422 0 1024 +29203433 UP 11 +29203433 1024 1024 +29203804 BEEP1 +29203804 BEEP2 +~~~ +~~~ +~~~ +29203828 1024 33555456 +~~~ +29203978 1024 1024 +29204975 DOWN 11 +29204975 0 1024 +~~~ +~~~ +29205002 0 0 +~~~ +~~~ +29205003 0 1 +~~~ +~~~ +29205005 0 3 +~~~ +~~~ +29205007 0 7 +~~~ +~~~ +29205009 0 15 +~~~ +~~~ +29205011 0 31 +~~~ +~~~ +29205012 0 63 +~~~ +~~~ +29205014 0 127 +~~~ +29205016 UP 11 +29205016 1024 127 +~~~ +29205017 homeCount = 121 +29205018 waitCount = 52 +29205018 ripCount = 49 +29205019 locktype1 = 1 +29205040 locktype2 = 8 +29205041 locktype3 = 12 +29205041 goalCount = 1 +29205042 goalTotal = 41 +29205042 otherCount = 58 +~~~ +29205043 CURRENTGOAL IS [8] +~~~ +29205044 1024 255 +29205098 DOWN 11 +29205098 0 255 +29205104 UP 11 +29205104 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205137 homeCount = 121 +29205138 waitCount = 52 +29205138 ripCount = 49 +29205139 locktype1 = 1 +29205139 locktype2 = 8 +29205140 locktype3 = 12 +29205141 goalCount = 1 +29205141 goalTotal = 41 +29205142 otherCount = 58 +~~~ +29205143 CURRENTGOAL IS [8] +~~~ +29205893 DOWN 11 +29205893 0 255 +29205909 UP 11 +29205909 1024 255 +~~~ +~~~ +~~~ +~~~ +29205929 DOWN 11 +29205929 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205942 homeCount = 121 +29205943 waitCount = 52 +29205943 ripCount = 49 +29205944 locktype1 = 1 +29205944 locktype2 = 8 +29205945 locktype3 = 12 +29205945 goalCount = 1 +29205946 goalTotal = 41 +29205946 otherCount = 58 +~~~ +29205948 CURRENTGOAL IS [8] +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29205975 homeCount = 121 +29205976 waitCount = 52 +29205976 ripCount = 49 +29205977 locktype1 = 1 +29205977 locktype2 = 8 +29205978 locktype3 = 12 +29205978 goalCount = 1 +29206000 goalTotal = 41 +29206000 otherCount = 58 +~~~ +29206001 CURRENTGOAL IS [8] +~~~ +29206071 UP 11 +29206071 1024 255 +29206350 DOWN 11 +29206350 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29206391 homeCount = 121 +29206392 waitCount = 52 +29206392 ripCount = 49 +29206393 locktype1 = 1 +29206393 locktype2 = 8 +29206394 locktype3 = 12 +29206395 goalCount = 1 +29206395 goalTotal = 41 +29206396 otherCount = 58 +~~~ +29206397 CURRENTGOAL IS [8] +~~~ +29207308 UP 11 +29207308 1024 255 +29207410 DOWN 11 +29207410 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29207449 UP 11 +29207449 1024 255 +~~~ +~~~ +~~~ +~~~ +29207454 homeCount = 121 +29207454 waitCount = 52 +29207455 ripCount = 49 +29207455 locktype1 = 1 +29207456 locktype2 = 8 +29207456 locktype3 = 12 +29207457 goalCount = 1 +29207457 goalTotal = 41 +29207458 otherCount = 58 +~~~ +29207459 CURRENTGOAL IS [8] +~~~ +29208017 DOWN 11 +29208017 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208055 homeCount = 121 +29208055 waitCount = 52 +29208056 ripCount = 49 +29208056 locktype1 = 1 +29208057 locktype2 = 8 +29208057 locktype3 = 12 +29208058 goalCount = 1 +29208058 goalTotal = 41 +29208059 otherCount = 58 +~~~ +29208060 CURRENTGOAL IS [8] +~~~ +29208103 UP 11 +29208103 1024 255 +29208328 DOWN 11 +29208328 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208368 homeCount = 121 +29208368 waitCount = 52 +29208369 ripCount = 49 +29208369 locktype1 = 1 +29208370 locktype2 = 8 +29208370 locktype3 = 12 +29208371 goalCount = 1 +29208371 goalTotal = 41 +29208372 otherCount = 58 +~~~ +29208373 CURRENTGOAL IS [8] +~~~ +29208456 UP 11 +29208456 1024 255 +29208683 DOWN 11 +29208683 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29208712 UP 11 +29208712 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +29208717 homeCount = 121 +29208718 waitCount = 52 +29208718 ripCount = 49 +29208719 locktype1 = 1 +29208719 locktype2 = 8 +29208720 locktype3 = 12 +29208720 goalCount = 1 +29208721 goalTotal = 41 +29208721 otherCount = 58 +~~~ +29208722 CURRENTGOAL IS [8] +~~~ +29214121 DOWN 11 +29214121 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214151 UP 11 +29214151 1024 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214158 homeCount = 121 +29214158 waitCount = 52 +29214159 ripCount = 49 +29214159 locktype1 = 1 +29214160 locktype2 = 8 +29214160 locktype3 = 12 +29214161 goalCount = 1 +29214162 goalTotal = 41 +29214162 otherCount = 58 +~~~ +29214163 CURRENTGOAL IS [8] +~~~ +29214210 DOWN 11 +29214210 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29214248 homeCount = 121 +29214248 waitCount = 52 +29214249 ripCount = 49 +29214249 locktype1 = 1 +29214250 locktype2 = 8 +29214250 locktype3 = 12 +29214251 goalCount = 1 +29214251 goalTotal = 41 +29214252 otherCount = 58 +~~~ +29214253 CURRENTGOAL IS [8] +~~~ +29218329 UP 7 +29218329 64 255 +~~~ +~~~ +29218784 DOWN 7 +29218784 0 255 +~~~ +~~~ +29218803 0 254 +~~~ +~~~ +29218805 0 252 +~~~ +~~~ +29218807 0 248 +~~~ +~~~ +29218809 0 240 +~~~ +~~~ +29218811 0 224 +~~~ +29218812 64 224 +~~~ +~~~ +29218814 64 192 +~~~ +29218815 64 128 +~~~ +~~~ +29218816 64 0 +~~~ +~~~ +29218818 64 512 +29218819 homeCount = 121 +29218819 waitCount = 52 +29218841 ripCount = 49 +29218841 locktype1 = 1 +29218842 locktype2 = 8 +29218842 locktype3 = 12 +29218843 goalCount = 1 +29218843 goalTotal = 41 +29218844 otherCount = 59 +~~~ +29219408 DOWN 7 +29219408 0 512 +29224639 UP 10 +29224640 waslock = 0 +29224639 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29224670 512 16777728 +~~~ +29224820 512 512 +29224880 DOWN 10 +29224880 0 512 +~~~ +~~~ +29224910 0 2560 +~~~ +~~~ +29224912 0 2048 +29224913 homeCount = 122 +29224913 waitCount = 52 +29224914 ripCount = 49 +29224914 locktype1 = 1 +29224915 locktype2 = 8 +29224915 locktype3 = 12 +29224916 goalCount = 1 +29224916 goalTotal = 41 +29224917 otherCount = 59 +~~~ +29224952 UP 10 +29224952 waslock = 0 +29224952 512 2048 +~~~ +29229705 DOWN 10 +29229705 0 2048 +~~~ +~~~ +~~~ +~~~ +29229726 homeCount = 122 +29229727 waitCount = 52 +29229727 ripCount = 49 +29229728 locktype1 = 1 +29229728 locktype2 = 8 +29229729 locktype3 = 12 +29229729 goalCount = 1 +29229730 goalTotal = 41 +29229730 otherCount = 59 +~~~ +29229738 UP 10 +29229738 waslock = 0 +29229738 512 2048 +~~~ +29229795 DOWN 10 +29229795 0 2048 +~~~ +~~~ +~~~ +~~~ +29229818 homeCount = 122 +29229818 waitCount = 52 +29229819 ripCount = 49 +29229819 locktype1 = 1 +29229820 locktype2 = 8 +29229820 locktype3 = 12 +29229821 goalCount = 1 +29229821 goalTotal = 41 +29229822 otherCount = 59 +~~~ +29232290 UP 12 +29232290 2048 2048 +29232929 DOWN 12 +29232929 0 2048 +29233130 LOCKOUT 3 +~~~ +29233156 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29233162 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29233439 UP 12 +29233439 2048 0 +29233601 DOWN 12 +29233601 0 0 +29233714 UP 12 +29233714 2048 0 +29233929 DOWN 12 +29233929 0 0 +29244665 UP 4 +29244665 8 0 +29244691 DOWN 4 +29244691 0 0 +29244744 8 0 +29245299 DOWN 4 +29245299 0 0 +29245374 8 0 +29245764 DOWN 4 +29245764 0 0 +29256362 512 0 +29256669 0 0 +29256725 512 0 +29257036 0 0 +29257137 512 0 +29257143 0 0 +29258156 LOCKEND +~~~ +~~~ +~~~ +29258176 0 512 +29259266 UP 10 +29259266 waslock = 0 +29259266 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29259291 512 16777728 +~~~ +29259347 DOWN 10 +29259347 0 16777728 +~~~ +~~~ +29259364 0 16778752 +~~~ +~~~ +29259366 0 16778240 +29259367 homeCount = 123 +29259368 waitCount = 52 +29259368 ripCount = 49 +29259369 locktype1 = 1 +29259369 locktype2 = 8 +29259370 locktype3 = 13 +29259370 goalCount = 1 +29259371 goalTotal = 41 +29259371 otherCount = 59 +~~~ +29259392 UP 10 +29259393 waslock = 0 +29259392 512 16778240 +~~~ +29259441 512 1024 +29264964 DOWN 10 +29264964 0 1024 +~~~ +~~~ +~~~ +~~~ +29264987 homeCount = 123 +29264988 waitCount = 52 +29264988 ripCount = 49 +29264989 locktype1 = 1 +29264989 locktype2 = 8 +29264990 locktype3 = 13 +29264990 goalCount = 1 +29264991 goalTotal = 41 +29264991 otherCount = 59 +~~~ +29266921 UP 11 +29266920 1024 1024 +29270765 DOWN 11 +29270765 0 1024 +29270788 UP 11 +29270788 1024 1024 +29275741 DOWN 11 +29275741 0 1024 +29275751 UP 11 +29275750 1024 1024 +29275921 BEEP1 +29275921 BEEP2 +~~~ +~~~ +~~~ +29275948 1024 33555456 +~~~ +29276098 1024 1024 +29284636 DOWN 11 +29284635 0 1024 +~~~ +~~~ +29284655 0 0 +~~~ +~~~ +29284657 0 1 +~~~ +~~~ +29284659 0 3 +~~~ +~~~ +29284661 0 7 +~~~ +~~~ +29284662 0 15 +~~~ +~~~ +29284664 0 31 +~~~ +~~~ +29284666 0 63 +~~~ +~~~ +29284668 0 127 +~~~ +~~~ +29284670 0 255 +29284671 homeCount = 123 +29284671 waitCount = 52 +29284672 ripCount = 50 +29284672 locktype1 = 1 +29284673 locktype2 = 8 +29284694 locktype3 = 13 +29284694 goalCount = 1 +29284695 goalTotal = 41 +29284695 otherCount = 59 +~~~ +29284696 CURRENTGOAL IS [8] +~~~ +29284697 UP 11 +29284697 1024 255 +29284755 DOWN 11 +29284755 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29284796 homeCount = 123 +29284796 waitCount = 52 +29284797 ripCount = 50 +29284797 locktype1 = 1 +29284798 locktype2 = 8 +29284799 locktype3 = 13 +29284799 goalCount = 1 +29284800 goalTotal = 41 +29284800 otherCount = 59 +~~~ +29284801 CURRENTGOAL IS [8] +~~~ +29288212 UP 8 +29288212 128 255 +~~~ +~~~ +29288231 outer reward +~~~ +29288232 128 8388863 +~~~ +~~~ +29288549 DOWN 8 +29288549 0 8388863 +~~~ +~~~ +29288570 0 8388862 +~~~ +~~~ +29288571 0 8388860 +~~~ +~~~ +29288573 0 8388856 +~~~ +29288575 128 8388856 +~~~ +~~~ +29288576 128 8388848 +~~~ +~~~ +29288578 128 8388832 +~~~ +29288579 128 8388800 +~~~ +~~~ +29288581 128 8388736 +~~~ +~~~ +29288582 128 8388608 +~~~ +~~~ +29288584 128 8389120 +29288606 homeCount = 123 +29288607 waitCount = 52 +29288607 ripCount = 50 +29288608 locktype1 = 1 +29288608 locktype2 = 8 +29288609 locktype3 = 13 +29288609 goalCount = 2 +29288610 goalTotal = 42 +29288610 otherCount = 59 +~~~ +29288681 128 512 +29288820 DOWN 8 +29288820 0 512 +29288834 128 512 +29288934 DOWN 8 +29288934 0 512 +29288960 128 512 +29289062 DOWN 8 +29289062 0 512 +29289076 128 512 +29289179 DOWN 8 +29289179 0 512 +29289202 128 512 +29289305 DOWN 8 +29289305 0 512 +29289323 128 512 +29289431 DOWN 8 +29289431 0 512 +29289453 128 512 +29289581 DOWN 8 +29289581 0 512 +29289598 128 512 +29289717 DOWN 8 +29289717 0 512 +29289724 128 512 +29295838 DOWN 8 +29295838 0 512 +29300855 UP 10 +29300856 waslock = 0 +29300855 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29300888 512 16777728 +~~~ +29301038 512 512 +29301135 DOWN 10 +29301135 0 512 +~~~ +~~~ +29301161 0 1536 +~~~ +~~~ +29301163 0 1024 +29301164 homeCount = 124 +29301164 waitCount = 52 +29301165 ripCount = 50 +29301165 locktype1 = 1 +29301166 locktype2 = 8 +29301166 locktype3 = 13 +29301167 goalCount = 2 +29301167 goalTotal = 42 +29301168 otherCount = 59 +~~~ +29301247 UP 10 +29301247 waslock = 0 +29301247 512 1024 +~~~ +29308901 DOWN 10 +29308901 0 1024 +29308911 UP 10 +29308911 waslock = 0 +29308911 512 1024 +~~~ +~~~ +~~~ +~~~ +29308934 homeCount = 124 +29308935 waitCount = 52 +29308936 ripCount = 50 +29308936 locktype1 = 1 +29308937 locktype2 = 8 +29308937 locktype3 = 13 +29308938 goalCount = 2 +29308938 goalTotal = 42 +29308939 otherCount = 59 +~~~ +~~~ +29308997 DOWN 10 +29308997 0 1024 +~~~ +~~~ +~~~ +~~~ +29309025 homeCount = 124 +29309026 waitCount = 52 +29309026 ripCount = 50 +29309027 locktype1 = 1 +29309027 locktype2 = 8 +29309028 locktype3 = 13 +29309028 goalCount = 2 +29309029 goalTotal = 42 +29309029 otherCount = 59 +~~~ +29311128 UP 11 +29311128 1024 1024 +29314264 DOWN 11 +29314264 0 1024 +29314275 UP 11 +29314275 1024 1024 +29318628 BEEP1 +29318628 BEEP2 +~~~ +~~~ +~~~ +29318653 1024 33555456 +~~~ +29318803 1024 1024 +29327074 DOWN 11 +29327074 0 1024 +~~~ +~~~ +29327093 0 0 +~~~ +~~~ +29327095 0 1 +~~~ +~~~ +29327096 0 3 +~~~ +~~~ +29327098 0 7 +~~~ +~~~ +29327100 0 15 +~~~ +~~~ +29327102 0 31 +~~~ +~~~ +29327104 0 63 +~~~ +~~~ +29327105 0 127 +~~~ +~~~ +29327107 0 255 +29327108 homeCount = 124 +29327109 waitCount = 52 +29327109 ripCount = 51 +29327110 locktype1 = 1 +29327110 locktype2 = 8 +29327131 locktype3 = 13 +29327132 goalCount = 2 +29327132 goalTotal = 42 +29327133 otherCount = 59 +~~~ +29327134 CURRENTGOAL IS [8] +~~~ +29327143 UP 11 +29327143 1024 255 +29327191 DOWN 11 +29327191 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29327227 homeCount = 124 +29327228 waitCount = 52 +29327228 ripCount = 51 +29327229 locktype1 = 1 +29327229 locktype2 = 8 +29327230 locktype3 = 13 +29327230 goalCount = 2 +29327231 goalTotal = 42 +29327231 otherCount = 59 +~~~ +29327233 CURRENTGOAL IS [8] +~~~ +29331590 UP 8 +29331590 128 255 +~~~ +~~~ +29331613 outer reward +~~~ +29331614 128 8388863 +~~~ +~~~ +29331812 DOWN 8 +29331812 0 8388863 +~~~ +~~~ +29331833 0 8388862 +~~~ +~~~ +29331835 0 8388860 +~~~ +~~~ +29331837 0 8388856 +~~~ +~~~ +29331838 0 8388848 +~~~ +~~~ +29331840 0 8388832 +~~~ +~~~ +29331842 0 8388800 +~~~ +~~~ +29331844 0 8388736 +~~~ +~~~ +29331846 0 8388608 +~~~ +~~~ +29331848 0 8389120 +29331849 homeCount = 124 +29331849 waitCount = 52 +29331850 ripCount = 51 +29331871 locktype1 = 1 +29331871 locktype2 = 8 +29331872 locktype3 = 13 +29331872 goalCount = 3 +29331873 goalTotal = 43 +29331873 otherCount = 59 +~~~ +29331874 128 8389120 +29332063 128 512 +29332236 DOWN 8 +29332236 0 512 +29332246 128 512 +29332338 DOWN 8 +29332338 0 512 +29332375 128 512 +29332458 DOWN 8 +29332458 0 512 +29332486 128 512 +29332583 DOWN 8 +29332583 0 512 +29332608 128 512 +29332710 DOWN 8 +29332710 0 512 +29332732 128 512 +29332982 DOWN 8 +29332982 0 512 +29332985 128 512 +29333239 DOWN 8 +29333239 0 512 +29333247 128 512 +29338471 DOWN 8 +29338471 0 512 +29344506 UP 10 +29344507 waslock = 0 +29344506 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29344530 512 16777728 +~~~ +29344680 512 512 +29349720 DOWN 10 +29349720 0 512 +~~~ +~~~ +29349745 0 2560 +~~~ +~~~ +29349746 0 2048 +29349747 homeCount = 125 +29349748 waitCount = 52 +29349749 ripCount = 51 +29349749 locktype1 = 1 +29349750 locktype2 = 8 +29349750 locktype3 = 13 +29349751 goalCount = 3 +29349751 goalTotal = 43 +29349752 otherCount = 59 +~~~ +29349773 UP 10 +29349773 waslock = 0 +29349773 512 2048 +~~~ +29349825 DOWN 10 +29349825 0 2048 +~~~ +~~~ +~~~ +~~~ +29349849 homeCount = 125 +29349849 waitCount = 52 +29349850 ripCount = 51 +29349850 locktype1 = 1 +29349851 locktype2 = 8 +29349851 locktype3 = 13 +29349852 goalCount = 3 +29349852 goalTotal = 43 +29349853 otherCount = 59 +~~~ +29352255 UP 12 +29352255 2048 2048 +29352543 DOWN 12 +29352543 0 2048 +29352728 UP 12 +29352728 2048 2048 +29355255 CLICK1 +29355255 CLICK2 +~~~ +~~~ +~~~ +29355278 2048 67110912 +~~~ +29355428 2048 2048 +29362752 DOWN 12 +29362752 0 2048 +~~~ +~~~ +29362776 0 0 +~~~ +~~~ +29362778 0 1 +~~~ +~~~ +29362780 0 3 +~~~ +~~~ +29362782 0 7 +~~~ +~~~ +29362783 0 15 +~~~ +~~~ +29362785 0 31 +~~~ +~~~ +29362787 0 63 +~~~ +~~~ +29362789 0 127 +~~~ +29362790 UP 12 +29362790 2048 127 +~~~ +29362792 homeCount = 125 +29362792 waitCount = 53 +29362793 ripCount = 51 +29362793 locktype1 = 1 +29362815 locktype2 = 8 +29362815 locktype3 = 13 +29362816 goalCount = 3 +29362816 goalTotal = 43 +29362817 otherCount = 59 +~~~ +29362818 CURRENTGOAL IS [8] +~~~ +29362818 2048 255 +29362852 DOWN 12 +29362852 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29362893 homeCount = 125 +29362894 waitCount = 53 +29362894 ripCount = 51 +29362895 locktype1 = 1 +29362895 locktype2 = 8 +29362896 locktype3 = 13 +29362896 goalCount = 3 +29362897 goalTotal = 43 +29362897 otherCount = 59 +~~~ +29362898 CURRENTGOAL IS [8] +~~~ +29367715 UP 8 +29367715 128 255 +~~~ +~~~ +29367735 outer reward +~~~ +29367735 128 8388863 +~~~ +~~~ +29367928 DOWN 8 +29367928 0 8388863 +~~~ +~~~ +29367952 0 8388862 +~~~ +~~~ +29367953 0 8388860 +~~~ +~~~ +29367955 0 8388856 +~~~ +~~~ +29367957 0 8388848 +~~~ +~~~ +29367959 0 8388832 +~~~ +~~~ +29367961 0 8388800 +~~~ +~~~ +29367962 0 8388736 +~~~ +~~~ +29367964 0 8388608 +~~~ +~~~ +29367966 0 8389120 +29367967 homeCount = 125 +29367968 waitCount = 53 +29367968 ripCount = 51 +29367989 locktype1 = 1 +29367990 locktype2 = 8 +29367990 locktype3 = 13 +29367991 goalCount = 4 +29367991 goalTotal = 44 +29367992 otherCount = 59 +~~~ +29367998 128 8389120 +29368185 128 512 +29368242 DOWN 8 +29368242 0 512 +29368254 128 512 +29368363 DOWN 8 +29368363 0 512 +29368371 128 512 +29368479 DOWN 8 +29368479 0 512 +29368499 128 512 +29368596 DOWN 8 +29368596 0 512 +29368622 128 512 +29368726 DOWN 8 +29368726 0 512 +29368746 128 512 +29368850 DOWN 8 +29368850 0 512 +29368886 128 512 +29368991 DOWN 8 +29368991 0 512 +29369005 128 512 +29374850 DOWN 8 +29374850 0 512 +29374897 128 512 +29374950 DOWN 8 +29374950 0 512 +29379956 UP 10 +29379957 waslock = 0 +29379956 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29379988 512 16777728 +~~~ +29380138 512 512 +29383458 DOWN 10 +29383458 0 512 +~~~ +~~~ +29383482 0 1536 +~~~ +~~~ +29383484 0 1024 +29383485 homeCount = 126 +29383485 waitCount = 53 +29383486 ripCount = 51 +29383486 locktype1 = 1 +29383487 locktype2 = 8 +29383487 locktype3 = 13 +29383488 goalCount = 4 +29383488 goalTotal = 44 +29383489 otherCount = 59 +~~~ +29383510 UP 10 +29383510 waslock = 0 +29383510 512 1024 +~~~ +29383556 DOWN 10 +29383556 0 1024 +~~~ +~~~ +~~~ +~~~ +29383589 homeCount = 126 +29383590 waitCount = 53 +29383590 ripCount = 51 +29383591 locktype1 = 1 +29383591 locktype2 = 8 +29383592 locktype3 = 13 +29383592 goalCount = 4 +29383593 goalTotal = 44 +29383593 otherCount = 59 +~~~ +29385874 UP 11 +29385873 1024 1024 +29389139 DOWN 11 +29389138 0 1024 +29389207 UP 11 +29389207 1024 1024 +29390700 DOWN 11 +29390700 0 1024 +29390716 UP 11 +29390716 1024 1024 +29390735 DOWN 11 +29390735 0 1024 +29390772 UP 11 +29390772 1024 1024 +29393374 BEEP1 +29393374 BEEP2 +~~~ +~~~ +~~~ +29393395 1024 33555456 +~~~ +29393545 1024 1024 +29398229 DOWN 11 +29398229 0 1024 +29398250 UP 11 +29398250 1024 1024 +~~~ +~~~ +~~~ +29398252 1024 0 +~~~ +29398253 1024 1 +~~~ +~~~ +29398255 1024 3 +~~~ +~~~ +29398256 1024 7 +~~~ +~~~ +29398258 1024 15 +~~~ +~~~ +29398260 1024 31 +~~~ +~~~ +29398262 1024 63 +~~~ +~~~ +29398264 1024 127 +~~~ +~~~ +29398266 1024 255 +29398267 homeCount = 126 +29398288 waitCount = 53 +29398288 ripCount = 52 +29398289 locktype1 = 1 +29398289 locktype2 = 8 +29398290 locktype3 = 13 +29398290 goalCount = 4 +29398291 goalTotal = 44 +29398291 otherCount = 59 +~~~ +29398292 CURRENTGOAL IS [8] +~~~ +29401721 DOWN 11 +29401721 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29401758 homeCount = 126 +29401758 waitCount = 53 +29401759 ripCount = 52 +29401760 locktype1 = 1 +29401760 locktype2 = 8 +29401761 locktype3 = 13 +29401761 goalCount = 4 +29401762 goalTotal = 44 +29401762 otherCount = 59 +~~~ +29401763 CURRENTGOAL IS [8] +~~~ +29401784 UP 11 +29401784 1024 255 +29401846 DOWN 11 +29401846 0 255 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29401878 homeCount = 126 +29401878 waitCount = 53 +29401879 ripCount = 52 +29401879 locktype1 = 1 +29401880 locktype2 = 8 +29401880 locktype3 = 13 +29401881 goalCount = 4 +29401881 goalTotal = 44 +29401882 otherCount = 59 +~~~ +29401883 CURRENTGOAL IS [8] +~~~ +29406312 UP 8 +29406312 128 255 +~~~ +~~~ +29406334 outer reward +~~~ +29406335 128 8388863 +~~~ +~~~ +29406562 DOWN 8 +29406562 0 8388863 +~~~ +~~~ +29406584 0 8388862 +~~~ +~~~ +29406586 0 8388860 +~~~ +~~~ +29406588 0 8388856 +~~~ +~~~ +29406590 0 8388848 +~~~ +~~~ +29406591 0 8388832 +~~~ +~~~ +29406593 0 8388800 +~~~ +~~~ +29406595 0 8388736 +~~~ +~~~ +29406597 0 8388608 +~~~ +~~~ +29406599 0 8389120 +29406600 homeCount = 126 +29406600 waitCount = 53 +29406601 ripCount = 52 +29406622 locktype1 = 1 +29406623 locktype2 = 8 +29406623 locktype3 = 13 +29406624 goalCount = 5 +29406624 goalTotal = 45 +29406625 otherCount = 59 +~~~ +29406625 128 8389120 +29406784 128 512 +29406967 DOWN 8 +29406967 0 512 +29406996 128 512 +29407085 DOWN 8 +29407085 0 512 +29407104 128 512 +29407202 DOWN 8 +29407202 0 512 +29407224 128 512 +29407338 DOWN 8 +29407338 0 512 +29407357 128 512 +29413909 DOWN 8 +29413909 0 512 +29413959 128 512 +29414006 DOWN 8 +29414006 0 512 +29418802 UP 10 +29418803 waslock = 0 +29418802 512 512 +~~~ +~~~ +~~~ +~~~ +~~~ +29418830 512 16777728 +~~~ +29418980 512 512 +29419012 DOWN 10 +29419012 0 512 +~~~ +~~~ +29419037 0 2560 +~~~ +~~~ +29419039 0 2048 +29419040 homeCount = 127 +29419040 waitCount = 53 +29419041 ripCount = 52 +29419041 locktype1 = 1 +29419042 locktype2 = 8 +29419042 locktype3 = 13 +29419043 goalCount = 5 +29419043 goalTotal = 45 +29419044 otherCount = 59 +~~~ +29419074 UP 10 +29419075 waslock = 0 +29419074 512 2048 +~~~ +29424344 DOWN 10 +29424344 0 2048 +~~~ +~~~ +~~~ +~~~ +29424367 homeCount = 127 +29424367 waitCount = 53 +29424368 ripCount = 52 +29424368 locktype1 = 1 +29424369 locktype2 = 8 +29424369 locktype3 = 13 +29424370 goalCount = 5 +29424370 goalTotal = 45 +29424371 otherCount = 59 +~~~ +29424380 UP 10 +29424381 waslock = 0 +29424380 512 2048 +~~~ +29424422 DOWN 10 +29424422 0 2048 +~~~ +~~~ +~~~ +~~~ +29424446 homeCount = 127 +29424446 waitCount = 53 +29424447 ripCount = 52 +29424447 locktype1 = 1 +29424448 locktype2 = 8 +29424448 locktype3 = 13 +29424449 goalCount = 5 +29424449 goalTotal = 45 +29424450 otherCount = 59 +~~~ +29430294 UP 10 +29430294 waslock = 0 +29430294 512 2048 +~~~ +29430680 DOWN 10 +29430680 0 2048 +~~~ +~~~ +~~~ +~~~ +29430708 homeCount = 127 +29430708 waitCount = 53 +29430709 ripCount = 52 +29430710 locktype1 = 1 +29430710 locktype2 = 8 +29430711 locktype3 = 13 +29430711 goalCount = 5 +29430712 goalTotal = 45 +29430712 otherCount = 59 +~~~ +29435478 UP 12 +29435478 2048 2048 +29435569 DOWN 12 +29435569 0 2048 +29435769 LOCKOUT 3 +~~~ +29435786 WHITENOISE +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29435792 0 0 +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +~~~ +29447190 UP 7 +29447190 64 0 +29447579 DOWN 7 +29447579 0 0 + + description: Statescript log r3 + task_epochs: 6, +] +2021-05-24 20:23:04,030 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building +2021-05-24 20:23:07,787 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating +2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule +2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking +2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building +2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating +2021-05-24 20:23:07,792 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building +2021-05-24 20:23:07,792 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating +2021-05-24 20:23:07,793 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building +2021-05-24 20:23:07,793 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes +2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB +2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building +2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice +2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB +2021-05-24 20:23:07,795 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building +2021-05-24 20:23:07,795 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating +2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB +2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building +2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating +2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB +2021-05-24 20:23:07,797 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_01_s1.1. +2021-05-24 20:23:07,800 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_02_r1.1. +2021-05-24 20:23:07,805 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building +2021-05-24 20:23:07,806 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating +2021-05-24 20:23:07,815 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB +2021-05-24 20:23:07,817 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building +2021-05-24 20:23:07,820 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB +2021-05-24 20:23:07,850 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building +2021-05-24 20:23:07,853 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB +2021-05-24 20:23:07,855 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building +2021-05-24 20:23:07,856 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating +2021-05-24 20:24:18,001 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting +2021-05-24 20:24:18,005 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building +2021-05-24 20:24:40,527 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting +2021-05-24 20:24:40,528 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building +2021-05-24 20:24:40,528 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating +2021-05-24 20:24:40,529 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule +2021-05-24 20:24:40,529 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building +2021-05-24 20:24:41,468 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting +2021-05-24 20:24:41,468 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories +2021-05-24 20:24:41,468 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files +2021-05-24 20:24:41,469 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data +2021-05-24 20:24:41,473 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 20:24:56,820 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 20:25:43,731 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 20:25:58,949 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 20:26:19,096 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 20:26:35,027 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 20:27:21,161 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 20:27:36,679 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building +2021-05-24 20:27:36,685 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB +2021-05-24 20:27:37,384 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 20:27:44,344 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 20:27:59,956 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 20:28:05,912 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 20:28:12,878 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 20:28:19,841 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 20:28:34,982 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 20:29:18,915 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building +2021-05-24 20:29:20,331 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting +2021-05-24 20:29:20,332 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /stelmo/loren/despereaux20191125.nwb +2021-05-24 20:59:26,303 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 20:59:26,308 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 20:59:26,310 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 20:59:26,347 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 20:59:26,587 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 20:59:26,590 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 20:59:50,508 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 20:59:55,909 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat +2021-05-24 20:59:58,203 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat +2021-05-24 21:00:04,321 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat +2021-05-24 21:00:06,423 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat +2021-05-24 21:00:09,090 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat +2021-05-24 21:00:11,414 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat +2021-05-24 21:00:33,357 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat +2021-05-24 21:12:46,070 rec_to_nwb.processing.builder.nwb_file_builder: INFO /stelmo/loren/despereaux20191125.nwb file has been created. diff --git a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py index 86b86cc4e..5ebc69ccc 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py @@ -72,13 +72,25 @@ def create_probe_electrode(cls, probes_metadata: list, electrode_groups_metadata @classmethod def create_ref_elect_id(cls, spike_n_trodes: list, ntrode_metadata: dict): + # create a list of ntrode_ids, channels, and their indices + ntrode_elect_id = dict() + elect_id = 0 + for ntrode in ntrode_metadata: + ntrode_id = ntrode['ntrode_id'] + ntrode_elect_id[ntrode_id] = dict() + for chan in ntrode["map"]: + # adjust for 1 based channel numbers in rec file header: ntrode["map"] is 0 based, so we have to add 1 to the zero based number to get the index + # that corresponds to spike_n_trode.ref_chan below + ntrode_elect_id[ntrode_id][int(chan)+1] = elect_id + elect_id+=1 + ref_elect_id = [] for spike_n_trode in spike_n_trodes: if spike_n_trode.ref_n_trode_id: for ntrode in ntrode_metadata: if int(ntrode["ntrode_id"]) == int(spike_n_trode.ref_n_trode_id): ref_elect_id.extend( - [ntrode["map"][spike_n_trode.ref_chan]] + [ntrode_elect_id[spike_n_trode.ref_n_trode_id][int(spike_n_trode.ref_chan)]] * len(spike_n_trode.spike_channels) ) else: From 2ae5c7c039c78c5a557dc4bcafa8627ffc2dd8c9 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 18 Jun 2021 12:13:52 -0700 Subject: [PATCH 046/205] Fix underscore in experimenter name --- README.md | 2 +- rec_to_nwb/processing/builder/nwb_file_builder.py | 2 +- rec_to_nwb/processing/metadata/metadata_manager.py | 2 +- .../processing/validation/metadata_section_validator.py | 4 ++-- rec_to_nwb/test/processing/dio/test_dioInjector.py | 2 +- rec_to_nwb/test/processing/metadata/test_metadataManager.py | 2 +- rec_to_nwb/test/processing/res/jaq_metadata.yml | 2 +- rec_to_nwb/test/processing/res/metadata.yml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ac5d17663..b9f648869 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Important note: right now the code assumes that the electrode groups listed belo ``` # general information about the experiment - experimenter name: Alison Comrie + experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco experiment description: Reinforcement learning diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 22bf3d85d..be2a0e7e3 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -295,7 +295,7 @@ def build(self): logger.info('Building components for NWB') nwb_content = NWBFile( session_description=self.metadata['session description'], - experimenter=self.metadata['experimenter name'], + experimenter=self.metadata['experimenter_name'], lab=self.metadata['lab'], institution=self.metadata['institution'], session_start_time=self.session_start_time, diff --git a/rec_to_nwb/processing/metadata/metadata_manager.py b/rec_to_nwb/processing/metadata/metadata_manager.py index 5c2d3983c..3718160e5 100644 --- a/rec_to_nwb/processing/metadata/metadata_manager.py +++ b/rec_to_nwb/processing/metadata/metadata_manager.py @@ -39,7 +39,7 @@ def __get_probes(self, probes_paths): return self.fl_probes_extractor.extract_probes_metadata(probes_paths) def __str__(self): - metadata_info = 'Experimenter: ' + self.metadata['experimenter name'] + \ + metadata_info = 'Experimenter: ' + self.metadata['experimenter_name'] + \ '\nDescription: ' + self.metadata['experiment description'] + \ '\nSession Id: ' + self.metadata['session_id'] + \ '\nSubject: ' + self.metadata['subject']['description'] diff --git a/rec_to_nwb/processing/validation/metadata_section_validator.py b/rec_to_nwb/processing/validation/metadata_section_validator.py index 4d279ce24..efe7f2264 100644 --- a/rec_to_nwb/processing/validation/metadata_section_validator.py +++ b/rec_to_nwb/processing/validation/metadata_section_validator.py @@ -7,8 +7,8 @@ def __init__(self, metadata): self.metadata = metadata def validate_sections(self): - if 'experimenter name' not in self.metadata: - raise MissingDataException('metadata is missing experimenter name') + if 'experimenter_name' not in self.metadata: + raise MissingDataException('metadata is missing experimenter_name') if 'lab' not in self.metadata: raise MissingDataException('metadata is missing lab') if 'institution' not in self.metadata: diff --git a/rec_to_nwb/test/processing/dio/test_dioInjector.py b/rec_to_nwb/test/processing/dio/test_dioInjector.py index 77f4020aa..5737b3310 100644 --- a/rec_to_nwb/test/processing/dio/test_dioInjector.py +++ b/rec_to_nwb/test/processing/dio/test_dioInjector.py @@ -19,7 +19,7 @@ class TestDioManager(unittest.TestCase): def setUp(self): self.nwb_content = NWBFile( session_description='session description', - experimenter='experimenter name', + experimenter='experimenter_name', lab='lab', institution='institution', session_start_time=start_time, diff --git a/rec_to_nwb/test/processing/metadata/test_metadataManager.py b/rec_to_nwb/test/processing/metadata/test_metadataManager.py index 0b876dc70..6454527fc 100644 --- a/rec_to_nwb/test/processing/metadata/test_metadataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_metadataManager.py @@ -21,7 +21,7 @@ def test_metadata_manager_reading_metadata_successfully(self): ) metadata_fields = nwb_metadata.metadata.keys() - self.assertIn('experimenter name', metadata_fields) + self.assertIn('experimenter_name', metadata_fields) self.assertIn('lab', metadata_fields) self.assertIn('institution', metadata_fields) self.assertIn('session_id', metadata_fields) diff --git a/rec_to_nwb/test/processing/res/jaq_metadata.yml b/rec_to_nwb/test/processing/res/jaq_metadata.yml index db09554c6..fea6a3df8 100644 --- a/rec_to_nwb/test/processing/res/jaq_metadata.yml +++ b/rec_to_nwb/test/processing/res/jaq_metadata.yml @@ -1,4 +1,4 @@ -experimenter name: Alison Comrie +experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco experiment description: Reinforcement learning diff --git a/rec_to_nwb/test/processing/res/metadata.yml b/rec_to_nwb/test/processing/res/metadata.yml index fc6e1e0f7..bbd328ed2 100644 --- a/rec_to_nwb/test/processing/res/metadata.yml +++ b/rec_to_nwb/test/processing/res/metadata.yml @@ -1,4 +1,4 @@ -experimenter name: Alison Comrie +experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco experiment description: Reinforcement learning From f75ed96fad7dfacb547975258944c98380fa5714 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 18 Jun 2021 12:14:50 -0700 Subject: [PATCH 047/205] Fix underscore in experiment description --- README.md | 2 +- rec_to_nwb/processing/builder/nwb_file_builder.py | 2 +- rec_to_nwb/processing/metadata/metadata_manager.py | 2 +- .../processing/validation/metadata_section_validator.py | 4 ++-- rec_to_nwb/test/processing/dio/test_dioInjector.py | 2 +- rec_to_nwb/test/processing/metadata/test_metadataManager.py | 2 +- rec_to_nwb/test/processing/res/jaq_metadata.yml | 2 +- rec_to_nwb/test/processing/res/metadata.yml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b9f648869..23507e723 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Important note: right now the code assumes that the electrode groups listed belo experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco - experiment description: Reinforcement learning + experiment_description: Reinforcement learning session description: Reinforcement leaarning session_id: beans_01 subject: diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index be2a0e7e3..ea8a44211 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -303,7 +303,7 @@ def build(self): identifier=str(uuid.uuid1()), session_id=self.metadata['session_id'], notes=self.link_to_notes, - experiment_description=self.metadata['experiment description'], + experiment_description=self.metadata['experiment_description'], subject=Subject( description=self.metadata['subject']['description'], genotype=self.metadata['subject']['genotype'], diff --git a/rec_to_nwb/processing/metadata/metadata_manager.py b/rec_to_nwb/processing/metadata/metadata_manager.py index 3718160e5..3a9a117bb 100644 --- a/rec_to_nwb/processing/metadata/metadata_manager.py +++ b/rec_to_nwb/processing/metadata/metadata_manager.py @@ -40,7 +40,7 @@ def __get_probes(self, probes_paths): def __str__(self): metadata_info = 'Experimenter: ' + self.metadata['experimenter_name'] + \ - '\nDescription: ' + self.metadata['experiment description'] + \ + '\nDescription: ' + self.metadata['experiment_description'] + \ '\nSession Id: ' + self.metadata['session_id'] + \ '\nSubject: ' + self.metadata['subject']['description'] diff --git a/rec_to_nwb/processing/validation/metadata_section_validator.py b/rec_to_nwb/processing/validation/metadata_section_validator.py index efe7f2264..e0e40ef0b 100644 --- a/rec_to_nwb/processing/validation/metadata_section_validator.py +++ b/rec_to_nwb/processing/validation/metadata_section_validator.py @@ -13,8 +13,8 @@ def validate_sections(self): raise MissingDataException('metadata is missing lab') if 'institution' not in self.metadata: raise MissingDataException('metadata is missing institution') - if 'experiment description' not in self.metadata: - raise MissingDataException('metadata is missing experiment description') + if 'experiment_description' not in self.metadata: + raise MissingDataException('metadata is missing experiment_description') if 'session description' not in self.metadata: raise MissingDataException('metadata is missing session description') if 'session_id' not in self.metadata: diff --git a/rec_to_nwb/test/processing/dio/test_dioInjector.py b/rec_to_nwb/test/processing/dio/test_dioInjector.py index 5737b3310..447930ede 100644 --- a/rec_to_nwb/test/processing/dio/test_dioInjector.py +++ b/rec_to_nwb/test/processing/dio/test_dioInjector.py @@ -24,7 +24,7 @@ def setUp(self): institution='institution', session_start_time=start_time, identifier='identifier', - experiment_description='experiment description') + experiment_description='experiment_description') processing_module = ProcessingModule(name='test_processing_module_name', description='test_description') self.nwb_content.add_processing_module(processing_module) diff --git a/rec_to_nwb/test/processing/metadata/test_metadataManager.py b/rec_to_nwb/test/processing/metadata/test_metadataManager.py index 6454527fc..8684e38cc 100644 --- a/rec_to_nwb/test/processing/metadata/test_metadataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_metadataManager.py @@ -25,7 +25,7 @@ def test_metadata_manager_reading_metadata_successfully(self): self.assertIn('lab', metadata_fields) self.assertIn('institution', metadata_fields) self.assertIn('session_id', metadata_fields) - self.assertIn('experiment description', metadata_fields) + self.assertIn('experiment_description', metadata_fields) self.assertIn('session description', metadata_fields) self.assertIn('subject', metadata_fields) self.assertIn('tasks', metadata_fields) diff --git a/rec_to_nwb/test/processing/res/jaq_metadata.yml b/rec_to_nwb/test/processing/res/jaq_metadata.yml index fea6a3df8..4b029bec7 100644 --- a/rec_to_nwb/test/processing/res/jaq_metadata.yml +++ b/rec_to_nwb/test/processing/res/jaq_metadata.yml @@ -1,7 +1,7 @@ experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco -experiment description: Reinforcement learning +experiment_description: Reinforcement learning session description: Reinforcement leaarning session_id: jaq_01 subject: diff --git a/rec_to_nwb/test/processing/res/metadata.yml b/rec_to_nwb/test/processing/res/metadata.yml index bbd328ed2..a86990459 100644 --- a/rec_to_nwb/test/processing/res/metadata.yml +++ b/rec_to_nwb/test/processing/res/metadata.yml @@ -1,7 +1,7 @@ experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco -experiment description: Reinforcement learning +experiment_description: Reinforcement learning session description: Reinforcement leaarning session_id: beans_01 subject: From 5daf7fc500a0b9b38e5ebaf65e1441d2260607f9 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 18 Jun 2021 12:16:17 -0700 Subject: [PATCH 048/205] Make data acq device have underscores --- README.md | 53 +++++++++---------- .../processing/builder/nwb_file_builder.py | 2 +- .../validation/metadata_section_validator.py | 4 +- rec_to_nwb/test/processing/res/metadata.yml | 2 +- 4 files changed, 30 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index 23507e723..e9f903f75 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Important note: right now the code assumes that the electrode groups listed belo ``` - # general information about the experiment + # general information about the experiment experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco @@ -74,8 +74,8 @@ Important note: right now the code assumes that the electrode groups listed belo units: analog: 'unspecified' behavioral_events: 'unspecified' - #data acq device used in experiment - data acq device: + #data_acq_device used in experiment + data_acq_device: - name: acq_0 system: sample_system amplifier: sample_amplifier @@ -125,14 +125,14 @@ Important note: right now the code assumes that the electrode groups listed belo to avoid creating invalid times in case of only small deviations. (optional parameter, default 1.5) times_period_multiplier: 1.5 # Din/Dout events which filter out files from DIO data in data directory. Each name has to be unique. Stored in behavioral_events section in output nwb file. - behavioral_events: + behavioral_events: - name: Poke2 description: Din2 # Device name. Stored in output nwb file. - device: + device: name: - Trodes - # Electrode Groups list used in experiment. Each Id has to be unique, device_type has to refer to existing device_type in probe.yml. Target_x,y,z fields describe the specified location where this group should be. Possible value of units: 'um' or 'mm' + # Electrode Groups list used in experiment. Each Id has to be unique, device_type has to refer to existing device_type in probe.yml. Target_x,y,z fields describe the specified location where this group should be. Possible value of units: 'um' or 'mm' electrode groups: - id: 0 location: mPFC @@ -155,8 +155,8 @@ Important note: right now the code assumes that the electrode groups listed belo # Ntrodes list which refer 1:1 to elements from xml header existing in rec binary file. # ntrode_id has to match to SpikeNTrode id, electrode_group_id refers to electrode group, # bad_channels is a list of broken channels in the map, where map corresponds to the electrode channels - - ntrode_id: 1 - electrode_group_id: 0 + - ntrode_id: 1 + electrode_group_id: 0 bad_channels: [0,2] map: 0: 0 @@ -230,9 +230,9 @@ If you don't want mda or pos invalid/valid times in your nwb, set accordingly fl **dates** = `list of strings` names of folders that contain experiment data
**nwb_metadata** = `MetadataManager` object with metadata.yml and probes.yml
- + **output_path** = `string` path specifying location and name of result file (dafault 'output.nwb')
- + **video_path** = `string` path specifying location of video files .h264 where those are copied **extract_analog** = `boolean` flag specifying if analog data should be extracted from raw (default True)
@@ -246,22 +246,22 @@ If you don't want mda or pos invalid/valid times in your nwb, set accordingly fl **extract_mda** = `boolean` flag specifying if mda data should be extracted from raw (default True)
**parallel_instances** = `int` number of threads, optimal value highly depends on hardware (default 4)
- + **overwrite** = `boolean` If true, will overwrite existing files. (default True)
- + **trodes_rec_export_args** = `tuple of strings` path to rec header file which overrides all headers existing in rec binary files e.g `_DEFAULT_TRODES_REC_EXPORT_ARGS = ('-reconfig', str(path) + '/test/processing/res/reconfig_header.xml')`
build_nwb arguments: **process_mda_valid_time** = 'boolean' True if the mda valid times should be build and append to nwb. Need the mda data inside the nwb. (default True)
- + **process_mda_invalid_time** = 'boolean' True if the mda invalid times should be build and append to nwb. Need the mda data inside the nwb. (default True)
- + **process_pos_valid_time** = 'boolean' True if the pos valid times should be build and append to nwb. Need the pos data inside the nwb. (default True)
- + **process_pos_invalid_time** = 'boolean' True if the pos invalid times should be build and append to nwb. Need the pos data inside the nwb. (default True)
@@ -286,34 +286,34 @@ After that, you can add mda or pos invalid/valid data to your NWB, using 'build_ NWBFileBuilder arguments **data_path** = `string` path to directory containing all experiments data
- + **animal_name** = `string` directory name which represents animal subject of experiment
- + **date** = `string` date of experiment
- + **nwb_metadata** = `MetadataManager` object contains metadata about experiment
- + **process_dio** = `boolean` flag if dio data should be processed
- + **process_mda** = `boolean` flag if mda data should be processed
- + **process_analog** = `boolean` flag if analog data should be processed
- + **video_path** = `string` path specifying location of video files .h264 where those are copied - + **output_file** = `string` path and name specifying where .nwb file gonna be written
build_and_append_to_nwb arguments: **process_mda_valid_time** = 'boolean' True if the mda valid times should be build and append to nwb. Need the mda data inside the nwb. (default True)
- + **process_mda_invalid_time** = 'boolean' True if the mda invalid times should be build and append to nwb. Need the mda data inside the nwb. (default True)
- + **process_pos_valid_time** = 'boolean' True if the pos valid times should be build and append to nwb. Need the pos data inside the nwb. (default True)
- + **process_pos_invalid_time** = 'boolean' True if the pos invalid times should be build and append to nwb. Need the pos data inside the nwb. (default True)
@@ -552,4 +552,3 @@ After that, you can add mda or pos invalid/valid data to your NWB, using 'build_ |-- README.md ``` When processing completes, a nwb file is created in the output_path directory - diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index ea8a44211..fd8dbf832 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -252,7 +252,7 @@ def __init__( self.data_acq_device_originator = DataAcqDeviceOriginator( device_factory=self.device_factory, device_injector=self.device_injector, - metadata=self.metadata['data acq device'] + metadata=self.metadata['data_acq_device'] ) if self.process_mda: diff --git a/rec_to_nwb/processing/validation/metadata_section_validator.py b/rec_to_nwb/processing/validation/metadata_section_validator.py index e0e40ef0b..cc91ae1ea 100644 --- a/rec_to_nwb/processing/validation/metadata_section_validator.py +++ b/rec_to_nwb/processing/validation/metadata_section_validator.py @@ -23,8 +23,8 @@ def validate_sections(self): raise MissingDataException('metadata is missing subject') if 'units' not in self.metadata: raise MissingDataException('metadata is missing units') - if 'data acq device' not in self.metadata: - raise MissingDataException('metadata is missing data acq device') + if 'data_acq_device' not in self.metadata: + raise MissingDataException('metadata is missing data_acq_device') if 'cameras' not in self.metadata: raise MissingDataException('metadata is missing cameras') if 'tasks' not in self.metadata: diff --git a/rec_to_nwb/test/processing/res/metadata.yml b/rec_to_nwb/test/processing/res/metadata.yml index a86990459..72b53ff4a 100644 --- a/rec_to_nwb/test/processing/res/metadata.yml +++ b/rec_to_nwb/test/processing/res/metadata.yml @@ -16,7 +16,7 @@ units: analog: unspecified behavioral_events: unspecified -data acq device: +data_acq_device: - system: sample_system amplifier: sample_amplifier adc_circuit: sample_adc_circuit From 351cbd8f473af63b32b733504d72c858dc4f0c06 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 18 Jun 2021 12:17:41 -0700 Subject: [PATCH 049/205] Fix underscore for session description --- README.md | 2 +- rec_to_nwb/processing/builder/nwb_file_builder.py | 2 +- .../processing/validation/metadata_section_validator.py | 4 ++-- rec_to_nwb/test/processing/dio/test_dioInjector.py | 2 +- rec_to_nwb/test/processing/metadata/test_metadataManager.py | 2 +- rec_to_nwb/test/processing/res/jaq_metadata.yml | 2 +- rec_to_nwb/test/processing/res/metadata.yml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e9f903f75..b86982c13 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Important note: right now the code assumes that the electrode groups listed belo lab: Loren Frank institution: University of California, San Francisco experiment_description: Reinforcement learning - session description: Reinforcement leaarning + session_description: Reinforcement leaarning session_id: beans_01 subject: description: Long Evans Rat diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index fd8dbf832..b4f136279 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -294,7 +294,7 @@ def build(self): logger.info('Building components for NWB') nwb_content = NWBFile( - session_description=self.metadata['session description'], + session_description=self.metadata['session_description'], experimenter=self.metadata['experimenter_name'], lab=self.metadata['lab'], institution=self.metadata['institution'], diff --git a/rec_to_nwb/processing/validation/metadata_section_validator.py b/rec_to_nwb/processing/validation/metadata_section_validator.py index cc91ae1ea..d0aff84de 100644 --- a/rec_to_nwb/processing/validation/metadata_section_validator.py +++ b/rec_to_nwb/processing/validation/metadata_section_validator.py @@ -15,8 +15,8 @@ def validate_sections(self): raise MissingDataException('metadata is missing institution') if 'experiment_description' not in self.metadata: raise MissingDataException('metadata is missing experiment_description') - if 'session description' not in self.metadata: - raise MissingDataException('metadata is missing session description') + if 'session_description' not in self.metadata: + raise MissingDataException('metadata is missing session_description') if 'session_id' not in self.metadata: raise MissingDataException('metadata is missing session_id') if 'subject' not in self.metadata: diff --git a/rec_to_nwb/test/processing/dio/test_dioInjector.py b/rec_to_nwb/test/processing/dio/test_dioInjector.py index 447930ede..b3a771cbe 100644 --- a/rec_to_nwb/test/processing/dio/test_dioInjector.py +++ b/rec_to_nwb/test/processing/dio/test_dioInjector.py @@ -18,7 +18,7 @@ class TestDioManager(unittest.TestCase): def setUp(self): self.nwb_content = NWBFile( - session_description='session description', + session_description='session_description', experimenter='experimenter_name', lab='lab', institution='institution', diff --git a/rec_to_nwb/test/processing/metadata/test_metadataManager.py b/rec_to_nwb/test/processing/metadata/test_metadataManager.py index 8684e38cc..533974745 100644 --- a/rec_to_nwb/test/processing/metadata/test_metadataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_metadataManager.py @@ -26,7 +26,7 @@ def test_metadata_manager_reading_metadata_successfully(self): self.assertIn('institution', metadata_fields) self.assertIn('session_id', metadata_fields) self.assertIn('experiment_description', metadata_fields) - self.assertIn('session description', metadata_fields) + self.assertIn('session_description', metadata_fields) self.assertIn('subject', metadata_fields) self.assertIn('tasks', metadata_fields) self.assertIn('behavioral_events', metadata_fields) diff --git a/rec_to_nwb/test/processing/res/jaq_metadata.yml b/rec_to_nwb/test/processing/res/jaq_metadata.yml index 4b029bec7..7cfbc94fe 100644 --- a/rec_to_nwb/test/processing/res/jaq_metadata.yml +++ b/rec_to_nwb/test/processing/res/jaq_metadata.yml @@ -2,7 +2,7 @@ experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco experiment_description: Reinforcement learning -session description: Reinforcement leaarning +session_description: Reinforcement leaarning session_id: jaq_01 subject: description: Long Evans Rat diff --git a/rec_to_nwb/test/processing/res/metadata.yml b/rec_to_nwb/test/processing/res/metadata.yml index 72b53ff4a..27849544f 100644 --- a/rec_to_nwb/test/processing/res/metadata.yml +++ b/rec_to_nwb/test/processing/res/metadata.yml @@ -2,7 +2,7 @@ experimenter_name: Alison Comrie lab: Loren Frank institution: University of California, San Francisco experiment_description: Reinforcement learning -session description: Reinforcement leaarning +session_description: Reinforcement leaarning session_id: beans_01 subject: description: Long Evans Rat From bb54b30355bb2c89a96ec01737d4e22f9c25494b Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 18 Jun 2021 12:20:07 -0700 Subject: [PATCH 050/205] Fix underscore for electrode groups --- README.md | 2 +- .../builder/originators/electrode_group_originator.py | 2 +- .../builder/originators/electrodes_originator.py | 2 +- .../builder/originators/shanks_electrodes_originator.py | 2 +- .../processing/builder/originators/shanks_originator.py | 2 +- rec_to_nwb/processing/metadata/corrupted_data_manager.py | 2 +- .../extension/fl_electrode_extension_manager.py | 2 +- .../processing/validation/metadata_section_validator.py | 4 ++-- rec_to_nwb/processing/validation/ntrode_validator.py | 2 +- .../extension/test_flElectrodeExtensionManager.py | 4 ++-- .../test/processing/metadata/test_corruptedDataManager.py | 4 ++-- .../test/processing/metadata/test_metadataManager.py | 4 ++-- rec_to_nwb/test/processing/res/jaq_metadata.yml | 2 +- rec_to_nwb/test/processing/res/metadata.yml | 2 +- .../test/processing/validators/test_nTrodeValidator.py | 8 ++++---- 15 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index b86982c13..299312c6d 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Important note: right now the code assumes that the electrode groups listed belo name: - Trodes # Electrode Groups list used in experiment. Each Id has to be unique, device_type has to refer to existing device_type in probe.yml. Target_x,y,z fields describe the specified location where this group should be. Possible value of units: 'um' or 'mm' - electrode groups: + electrode_groups: - id: 0 location: mPFC device_type: 128c-4s8mm6cm-20um-40um-sl diff --git a/rec_to_nwb/processing/builder/originators/electrode_group_originator.py b/rec_to_nwb/processing/builder/originators/electrode_group_originator.py index 091913c33..5a4650f7c 100644 --- a/rec_to_nwb/processing/builder/originators/electrode_group_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrode_group_originator.py @@ -14,7 +14,7 @@ class ElectrodeGroupOriginator: def __init__(self, metadata): - self.fl_nwb_electrode_group_manager = FlNwbElectrodeGroupManager(metadata['electrode groups']) + self.fl_nwb_electrode_group_manager = FlNwbElectrodeGroupManager(metadata['electrode_groups']) self.electrode_group_creator = ElectrodeGroupFactory() self.electrode_group_injector = ElectrodeGroupInjector() diff --git a/rec_to_nwb/processing/builder/originators/electrodes_originator.py b/rec_to_nwb/processing/builder/originators/electrodes_originator.py index b3563f5b6..10212b403 100644 --- a/rec_to_nwb/processing/builder/originators/electrodes_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrodes_originator.py @@ -12,7 +12,7 @@ class ElectrodesOriginator: def __init__(self, probes, metadata): - self.fl_electrode_manager = FlElectrodeManager(probes, metadata['electrode groups']) + self.fl_electrode_manager = FlElectrodeManager(probes, metadata['electrode_groups']) self.electrode_creator = ElectrodesCreator() def make(self, nwb_content, electrode_groups, electrodes_valid_map, electrode_groups_valid_map): diff --git a/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py b/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py index 65175cab9..dca0969c5 100644 --- a/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py +++ b/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py @@ -14,7 +14,7 @@ class ShanksElectrodeOriginator: def __init__(self, probes, metadata): - self.fl_shanks_electrode_manager = FlShanksElectrodeManager(probes, metadata['electrode groups']) + self.fl_shanks_electrode_manager = FlShanksElectrodeManager(probes, metadata['electrode_groups']) self.shanks_electrodes_creator = ShanksElectrodeCreator() def make(self): diff --git a/rec_to_nwb/processing/builder/originators/shanks_originator.py b/rec_to_nwb/processing/builder/originators/shanks_originator.py index 99dbc5238..61efcaa06 100644 --- a/rec_to_nwb/processing/builder/originators/shanks_originator.py +++ b/rec_to_nwb/processing/builder/originators/shanks_originator.py @@ -12,7 +12,7 @@ class ShanksOriginator: def __init__(self, probes, metadata): - self.fl_shank_manager = FlShankManager(probes, metadata['electrode groups']) + self.fl_shank_manager = FlShankManager(probes, metadata['electrode_groups']) self.shank_creator = ShankCreator() def make(self, shanks_electrodes_dict): diff --git a/rec_to_nwb/processing/metadata/corrupted_data_manager.py b/rec_to_nwb/processing/metadata/corrupted_data_manager.py index b5c4cce96..cc776627a 100644 --- a/rec_to_nwb/processing/metadata/corrupted_data_manager.py +++ b/rec_to_nwb/processing/metadata/corrupted_data_manager.py @@ -34,7 +34,7 @@ def get_valid_map_dict(self) -> dict: electrodes_valid_map=electrodes_valid_map ) probes_valid_map = self.__get_probes_valid_map( - electrode_groups_metadata=self.metadata['electrode groups'], + electrode_groups_metadata=self.metadata['electrode_groups'], electrode_groups_valid_map=electrode_groups_valid_map ) diff --git a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py index ffb8707ce..c57503beb 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py @@ -28,7 +28,7 @@ def __init__(self, probes_metadata: list, metadata: dict, header: Header): @beartype def get_fl_electrodes_extension(self, electrodes_valid_map: list) -> FlElectrodeExtension: probes_metadata = self.probes_metadata - electrode_groups_metadata = self.metadata['electrode groups'] + electrode_groups_metadata = self.metadata['electrode_groups'] ntrode_metadata = self.metadata['ntrode electrode group channel map'] spike_n_trodes = self.header.configuration.spike_configuration.spike_n_trodes diff --git a/rec_to_nwb/processing/validation/metadata_section_validator.py b/rec_to_nwb/processing/validation/metadata_section_validator.py index d0aff84de..1efc482eb 100644 --- a/rec_to_nwb/processing/validation/metadata_section_validator.py +++ b/rec_to_nwb/processing/validation/metadata_section_validator.py @@ -37,7 +37,7 @@ def validate_sections(self): raise MissingDataException('metadata is missing times_period_multiplier') if 'behavioral_events' not in self.metadata: raise MissingDataException('metadata is missing behavioral_events') - if 'electrode groups' not in self.metadata: - raise MissingDataException('metadata is missing electrode groups') + if 'electrode_groups' not in self.metadata: + raise MissingDataException('metadata is missing electrode_groups') if 'ntrode electrode group channel map' not in self.metadata: raise MissingDataException('metadata is missing ntrode electrode group channel map') diff --git a/rec_to_nwb/processing/validation/ntrode_validator.py b/rec_to_nwb/processing/validation/ntrode_validator.py index f7f6f5ec9..c5e403de7 100644 --- a/rec_to_nwb/processing/validation/ntrode_validator.py +++ b/rec_to_nwb/processing/validation/ntrode_validator.py @@ -43,7 +43,7 @@ def create_summary(self): @staticmethod def validate_ntrode_metadata_with_probe_metadata(metadata, probes_metadata): - for electrode_group in metadata['electrode groups']: + for electrode_group in metadata['electrode_groups']: probe_metadata = filter_probe_by_type(probes_metadata, electrode_group['device_type']) electrodes_in_probe = count_electrodes_in_probe(probe_metadata) electrodes_in_group = count_electrodes_in_ntrode( diff --git a/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py b/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py index 3e736347d..75aa41680 100644 --- a/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py +++ b/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py @@ -45,7 +45,7 @@ def test_electrode_extension_manager_get_fl_electrode_extension_successfully(sel ]} ] metadata = { - 'electrode groups': [ + 'electrode_groups': [ {'id': '0', 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': '1', 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}], @@ -110,7 +110,7 @@ def test_electrode_extension_manager_failed_due_to_not_equal_extensions_length(s ]} ] metadata = { - 'electrode groups': [ + 'electrode_groups': [ {'id': '0', 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': '1', 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}], diff --git a/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py b/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py index 1fa5995f8..85f10fe11 100644 --- a/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py @@ -28,7 +28,7 @@ def test_corrupted_data_manager_get_valid_map_dict_successfully(self): {'ntrode_id': 8, 'electrode_group_id': 3, 'bad_channels': [0, 1], 'map': {0: 14, 1: 15}} ], - 'electrode groups': [ + 'electrode_groups': [ {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', @@ -83,7 +83,7 @@ def test_corrupted_data_manager_get_valid_map_dict_end_nbw_building_process_due_ {'ntrode_id': 1, 'electrode_group_id': 0, 'bad_channels': [0, 1], 'map': {0: 0, 1: 1}}, {'ntrode_id': 2, 'electrode_group_id': 1, 'bad_channels': [0, 1], 'map': {0: 2, 1: 3}}, ], - 'electrode groups': [ + 'electrode_groups': [ {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', diff --git a/rec_to_nwb/test/processing/metadata/test_metadataManager.py b/rec_to_nwb/test/processing/metadata/test_metadataManager.py index 533974745..d1218a317 100644 --- a/rec_to_nwb/test/processing/metadata/test_metadataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_metadataManager.py @@ -30,7 +30,7 @@ def test_metadata_manager_reading_metadata_successfully(self): self.assertIn('subject', metadata_fields) self.assertIn('tasks', metadata_fields) self.assertIn('behavioral_events', metadata_fields) - self.assertIn('electrode groups', metadata_fields) + self.assertIn('electrode_groups', metadata_fields) self.assertIn('ntrode electrode group channel map', metadata_fields) self.assertIn('units', metadata_fields) @@ -53,7 +53,7 @@ def test_metadata_manager_reading_metadata_successfully(self): self.assertIn('description', behavioral_event_fields) self.assertIn('name', behavioral_event_fields) - electrode_groups_fields = nwb_metadata.metadata['electrode groups'][0].keys() + electrode_groups_fields = nwb_metadata.metadata['electrode_groups'][0].keys() self.assertIn('id', electrode_groups_fields) self.assertIn('location', electrode_groups_fields) self.assertIn('device_type', electrode_groups_fields) diff --git a/rec_to_nwb/test/processing/res/jaq_metadata.yml b/rec_to_nwb/test/processing/res/jaq_metadata.yml index 7cfbc94fe..c014fd0f5 100644 --- a/rec_to_nwb/test/processing/res/jaq_metadata.yml +++ b/rec_to_nwb/test/processing/res/jaq_metadata.yml @@ -42,7 +42,7 @@ device: name: - Trodes -electrode groups: +electrode_groups: - id: 0 location: mPFC device_type: 128c-4s8mm6cm-20um-40um-sl diff --git a/rec_to_nwb/test/processing/res/metadata.yml b/rec_to_nwb/test/processing/res/metadata.yml index 27849544f..25f22d1e0 100644 --- a/rec_to_nwb/test/processing/res/metadata.yml +++ b/rec_to_nwb/test/processing/res/metadata.yml @@ -112,7 +112,7 @@ behavioral_events: name: Pump6 -electrode groups: +electrode_groups: - id: 0 location: mPFC device_type: 128c-4s8mm6cm-20um-40um-sl diff --git a/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py b/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py index f24b3d59a..197808108 100644 --- a/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py +++ b/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py @@ -43,7 +43,7 @@ def test_ntrode_validator_validate_correct_data_successfully(self): ] metadata = { - 'electrode groups': [ + 'electrode_groups': [ {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}, ], @@ -83,7 +83,7 @@ def test_ntrode_validator_validate_ndtrodes_num_less_than_spikes_successfully(se ] metadata = { - 'electrode groups': [ + 'electrode_groups': [ {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, ], "ntrode electrode group channel map": [ @@ -125,7 +125,7 @@ def test_ntrode_validator_validate_ndtrodes_num_greater_than_spikes_successfully ] metadata = { - 'electrode groups': [ + 'electrode_groups': [ {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}, ], @@ -197,7 +197,7 @@ def test_should_raise_exception_due_to_incompatible_probes_metadata_with_ntrodes ] metadata = { - 'electrode groups': [ + 'electrode_groups': [ {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}, ], From 63681e1b7c2f47a7f37140d91300aee26719a17e Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 18 Jun 2021 12:21:47 -0700 Subject: [PATCH 051/205] Fix underscore in ntrode electrode group channel map --- .../metadata/corrupted_data_manager.py | 4 +- .../fl_electrode_extension_manager.py | 2 +- .../validation/metadata_section_validator.py | 4 +- .../processing/validation/ntrode_validator.py | 4 +- .../test_flElectrodeExtensionManager.py | 79 ++++++++++++------- .../metadata/test_corruptedDataManager.py | 4 +- .../metadata/test_metadataManager.py | 4 +- rec_to_nwb/test/processing/res/metadata.yml | 2 +- .../validators/test_nTrodeValidator.py | 14 ++-- 9 files changed, 70 insertions(+), 47 deletions(-) diff --git a/rec_to_nwb/processing/metadata/corrupted_data_manager.py b/rec_to_nwb/processing/metadata/corrupted_data_manager.py index cc776627a..2d2da6e1d 100644 --- a/rec_to_nwb/processing/metadata/corrupted_data_manager.py +++ b/rec_to_nwb/processing/metadata/corrupted_data_manager.py @@ -27,10 +27,10 @@ def get_valid_map_dict(self) -> dict: """ electrodes_valid_map = self.__get_electrodes_valid_map( - ntrode_metadata=self.metadata['ntrode electrode group channel map'] + ntrode_metadata=self.metadata['ntrode_electrode_group_channel_map'] ) electrode_groups_valid_map = self.__get_electrode_groups_valid_map( - ntrode_metadata=self.metadata['ntrode electrode group channel map'], + ntrode_metadata=self.metadata['ntrode_electrode_group_channel_map'], electrodes_valid_map=electrodes_valid_map ) probes_valid_map = self.__get_probes_valid_map( diff --git a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py index c57503beb..0f0332fe5 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py @@ -29,7 +29,7 @@ def __init__(self, probes_metadata: list, metadata: dict, header: Header): def get_fl_electrodes_extension(self, electrodes_valid_map: list) -> FlElectrodeExtension: probes_metadata = self.probes_metadata electrode_groups_metadata = self.metadata['electrode_groups'] - ntrode_metadata = self.metadata['ntrode electrode group channel map'] + ntrode_metadata = self.metadata['ntrode_electrode_group_channel_map'] spike_n_trodes = self.header.configuration.spike_configuration.spike_n_trodes rel = FlElectrodeExtensionFactory.create_rel( diff --git a/rec_to_nwb/processing/validation/metadata_section_validator.py b/rec_to_nwb/processing/validation/metadata_section_validator.py index 1efc482eb..a0eae78ef 100644 --- a/rec_to_nwb/processing/validation/metadata_section_validator.py +++ b/rec_to_nwb/processing/validation/metadata_section_validator.py @@ -39,5 +39,5 @@ def validate_sections(self): raise MissingDataException('metadata is missing behavioral_events') if 'electrode_groups' not in self.metadata: raise MissingDataException('metadata is missing electrode_groups') - if 'ntrode electrode group channel map' not in self.metadata: - raise MissingDataException('metadata is missing ntrode electrode group channel map') + if 'ntrode_electrode_group_channel_map' not in self.metadata: + raise MissingDataException('metadata is missing ntrode_electrode_group_channel_map') diff --git a/rec_to_nwb/processing/validation/ntrode_validator.py b/rec_to_nwb/processing/validation/ntrode_validator.py index c5e403de7..c18cccdaf 100644 --- a/rec_to_nwb/processing/validation/ntrode_validator.py +++ b/rec_to_nwb/processing/validation/ntrode_validator.py @@ -26,7 +26,7 @@ def __init__(self, metadata: dict, header: Header, probes_metadata: list): self.probes_metadata = probes_metadata def create_summary(self): - ntrodes = self.metadata['ntrode electrode group channel map'] + ntrodes = self.metadata['ntrode_electrode_group_channel_map'] if len(ntrodes) == 0: raise InvalidMetadataException("There are no ntrodes defined in metadata.yml file.") if self.header is None or \ @@ -47,7 +47,7 @@ def validate_ntrode_metadata_with_probe_metadata(metadata, probes_metadata): probe_metadata = filter_probe_by_type(probes_metadata, electrode_group['device_type']) electrodes_in_probe = count_electrodes_in_probe(probe_metadata) electrodes_in_group = count_electrodes_in_ntrode( - metadata['ntrode electrode group channel map'], + metadata['ntrode_electrode_group_channel_map'], electrode_group['id'] ) if electrodes_in_probe != electrodes_in_group: diff --git a/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py b/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py index 75aa41680..db14c6606 100644 --- a/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py +++ b/rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py @@ -2,13 +2,14 @@ from unittest import TestCase from unittest.mock import Mock -from testfixtures import should_raise - -from rec_to_nwb.processing.exceptions.not_compatible_metadata import NotCompatibleMetadata +from rec_to_nwb.processing.exceptions.not_compatible_metadata import \ + NotCompatibleMetadata from rec_to_nwb.processing.header.module.header import Header -from rec_to_nwb.processing.nwb.components.electrodes.extension.fl_electrode_extension import FlElectrodeExtension +from rec_to_nwb.processing.nwb.components.electrodes.extension.fl_electrode_extension import \ + FlElectrodeExtension from rec_to_nwb.processing.nwb.components.electrodes.extension.fl_electrode_extension_manager import \ FlElectrodeExtensionManager +from testfixtures import should_raise path = os.path.dirname(os.path.abspath(__file__)) @@ -46,38 +47,53 @@ def test_electrode_extension_manager_get_fl_electrode_extension_successfully(sel ] metadata = { 'electrode_groups': [ - {'id': '0', 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, + {'id': '0', 'location': 'mPFC', + 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': '1', 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}], - 'ntrode electrode group channel map': [ - {'ntrode_id': '1', 'probe_id': '0', 'bad_channels': ['0', '2'], 'map': {'0': '0', '1': '1', '2': '2'}}, - {'ntrode_id': '2', 'probe_id': '0', 'bad_channels': ['0'], 'map': {'0': '32', '1': '33', '2': '34'}}, - {'ntrode_id': '3', 'probe_id': '1', 'bad_channels': ['0', '1'], 'map': {'0': '64', '1': '65', '2': '66'}}, - {'ntrode_id': '4', 'probe_id': '1', 'bad_channels': ['0', '2'], 'map': {'0': '96', '1': '97', '2': '98'}} + 'ntrode_electrode_group_channel_map': [ + {'ntrode_id': '1', 'probe_id': '0', 'bad_channels': [ + '0', '2'], 'map': {'0': '0', '1': '1', '2': '2'}}, + {'ntrode_id': '2', 'probe_id': '0', 'bad_channels': [ + '0'], 'map': {'0': '32', '1': '33', '2': '34'}}, + {'ntrode_id': '3', 'probe_id': '1', 'bad_channels': [ + '0', '1'], 'map': {'0': '64', '1': '65', '2': '66'}}, + {'ntrode_id': '4', 'probe_id': '1', 'bad_channels': [ + '0', '2'], 'map': {'0': '96', '1': '97', '2': '98'}} ] } - header = Header(str(path) + '/../../res/electrodes_extensions/header.xml') - mock_electrodes_valid_map = [False, True, False, False, True, True, False, False, True, False, True, False] + header = Header( + str(path) + '/../../res/electrodes_extensions/header.xml') + mock_electrodes_valid_map = [ + False, True, False, False, True, True, False, False, True, False, True, False] fl_electrode_extension_manager = FlElectrodeExtensionManager( probes_metadata=probes_metadata, metadata=metadata, header=header, ) - fl_electrode_extension = fl_electrode_extension_manager.get_fl_electrodes_extension(mock_electrodes_valid_map) + fl_electrode_extension = fl_electrode_extension_manager.get_fl_electrodes_extension( + mock_electrodes_valid_map) self.assertIsInstance(fl_electrode_extension, FlElectrodeExtension) - self.assertEqual(fl_electrode_extension.rel_x, [0.0, 0.0, 40.0, 0.0, 0.0]) - self.assertEqual(fl_electrode_extension.rel_y, [0.0, 0.0, 0.0, 600.0, 900.0]) - self.assertEqual(fl_electrode_extension.rel_z, [0.0, 0.0, 0.0, 0.0, 0.0]) + self.assertEqual(fl_electrode_extension.rel_x, + [0.0, 0.0, 40.0, 0.0, 0.0]) + self.assertEqual(fl_electrode_extension.rel_y, + [0.0, 0.0, 0.0, 600.0, 900.0]) + self.assertEqual(fl_electrode_extension.rel_z, + [0.0, 0.0, 0.0, 0.0, 0.0]) self.assertEqual(fl_electrode_extension.hw_chan[0], 85) self.assertEqual(fl_electrode_extension.hw_chan[-1], 102) self.assertEqual(fl_electrode_extension.ntrode_id, [1, 2, 2, 3, 4]) self.assertEqual(fl_electrode_extension.channel_id, [1, 1, 2, 2, 1]) - self.assertEqual(fl_electrode_extension.probe_shank, ['0', '0', '0', '2', '3']) - self.assertEqual(fl_electrode_extension.bad_channels, [False, False, False, False, False]) - self.assertEqual(fl_electrode_extension.probe_electrode, ['1', '0', '1', '64', '96']) - self.assertEqual(fl_electrode_extension.ref_elect_id, [-1, 2, 2, 34, 34]) + self.assertEqual(fl_electrode_extension.probe_shank, + ['0', '0', '0', '2', '3']) + self.assertEqual(fl_electrode_extension.bad_channels, + [False, False, False, False, False]) + self.assertEqual(fl_electrode_extension.probe_electrode, [ + '1', '0', '1', '64', '96']) + self.assertEqual(fl_electrode_extension.ref_elect_id, + [-1, 2, 2, 34, 34]) @should_raise(NotCompatibleMetadata) def test_electrode_extension_manager_failed_due_to_not_equal_extensions_length(self): @@ -111,17 +127,23 @@ def test_electrode_extension_manager_failed_due_to_not_equal_extensions_length(s ] metadata = { 'electrode_groups': [ - {'id': '0', 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, + {'id': '0', 'location': 'mPFC', + 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': '1', 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}], - 'ntrode electrode group channel map': [ - {'ntrode_id': '1', 'probe_id': '0', 'bad_channels': ['0', '2'], 'map': {'0': '0', '1': '1', '2': '2', '3': '3', '4': '4'}}, - {'ntrode_id': '2', 'probe_id': '0', 'bad_channels': ['0', '3'], 'map': {'0': '32', '1': '33', '2': '34', '3': '35', '4': '36'}}, - {'ntrode_id': '3', 'probe_id': '1', 'bad_channels': ['0', '1'], 'map': {'0': '64', '1': '65', '2': '66', '3': '67', '4': '68'}}, - {'ntrode_id': '4', 'probe_id': '1', 'bad_channels': ['0', '2', '3'], 'map': {'0': '96', '1': '97', '2': '98', '3': '99', '4': '100'}} + 'ntrode_electrode_group_channel_map': [ + {'ntrode_id': '1', 'probe_id': '0', 'bad_channels': ['0', '2'], 'map': { + '0': '0', '1': '1', '2': '2', '3': '3', '4': '4'}}, + {'ntrode_id': '2', 'probe_id': '0', 'bad_channels': ['0', '3'], 'map': { + '0': '32', '1': '33', '2': '34', '3': '35', '4': '36'}}, + {'ntrode_id': '3', 'probe_id': '1', 'bad_channels': ['0', '1'], 'map': { + '0': '64', '1': '65', '2': '66', '3': '67', '4': '68'}}, + {'ntrode_id': '4', 'probe_id': '1', 'bad_channels': ['0', '2', '3'], 'map': { + '0': '96', '1': '97', '2': '98', '3': '99', '4': '100'}} ] } - header = Header(str(path) + '/../../res/nwb_elements_builder_test/header.xml') + header = Header( + str(path) + '/../../res/nwb_elements_builder_test/header.xml') mock_electrodes_valid_map = [ True, False, True, False, False, True, False, False, @@ -135,7 +157,8 @@ def test_electrode_extension_manager_failed_due_to_not_equal_extensions_length(s metadata=metadata, header=header, ) - fl_electrode_extension_manager.get_fl_electrodes_extension(mock_electrodes_valid_map) + fl_electrode_extension_manager.get_fl_electrodes_extension( + mock_electrodes_valid_map) @should_raise(TypeError) def test_electrode_extension_manager_failed_due_to_None_param(self): diff --git a/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py b/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py index 85f10fe11..36a5d37c4 100644 --- a/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py @@ -10,7 +10,7 @@ class TestCorruptedDataManager(TestCase): def test_corrupted_data_manager_get_valid_map_dict_successfully(self): metadata = { - 'ntrode electrode group channel map': [ + 'ntrode_electrode_group_channel_map': [ {'ntrode_id': 1, 'electrode_group_id': 0, 'bad_channels': [1], 'map': {0: 0, 1: 1}}, {'ntrode_id': 2, 'electrode_group_id': 0, 'bad_channels': [1], @@ -79,7 +79,7 @@ def test_corrupted_data_manager_get_valid_map_dict_failed_due_to_bad_type_param( @should_raise(CorruptedDataException) def test_corrupted_data_manager_get_valid_map_dict_end_nbw_building_process_due_to_lack_of_good_data(self): metadata = { - 'ntrode electrode group channel map': [ + 'ntrode_electrode_group_channel_map': [ {'ntrode_id': 1, 'electrode_group_id': 0, 'bad_channels': [0, 1], 'map': {0: 0, 1: 1}}, {'ntrode_id': 2, 'electrode_group_id': 1, 'bad_channels': [0, 1], 'map': {0: 2, 1: 3}}, ], diff --git a/rec_to_nwb/test/processing/metadata/test_metadataManager.py b/rec_to_nwb/test/processing/metadata/test_metadataManager.py index d1218a317..8e25a67f2 100644 --- a/rec_to_nwb/test/processing/metadata/test_metadataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_metadataManager.py @@ -31,7 +31,7 @@ def test_metadata_manager_reading_metadata_successfully(self): self.assertIn('tasks', metadata_fields) self.assertIn('behavioral_events', metadata_fields) self.assertIn('electrode_groups', metadata_fields) - self.assertIn('ntrode electrode group channel map', metadata_fields) + self.assertIn('ntrode_electrode_group_channel_map', metadata_fields) self.assertIn('units', metadata_fields) self.assertIn('unspecified', nwb_metadata.metadata['units']['analog']) @@ -59,7 +59,7 @@ def test_metadata_manager_reading_metadata_successfully(self): self.assertIn('device_type', electrode_groups_fields) self.assertIn('description', electrode_groups_fields) - ntrode_probe_channel_map_fields = nwb_metadata.metadata['ntrode electrode group channel map'][0].keys() + ntrode_probe_channel_map_fields = nwb_metadata.metadata['ntrode_electrode_group_channel_map'][0].keys() self.assertIn('map', ntrode_probe_channel_map_fields) self.assertIn('electrode_group_id', ntrode_probe_channel_map_fields) self.assertIn('ntrode_id', ntrode_probe_channel_map_fields) diff --git a/rec_to_nwb/test/processing/res/metadata.yml b/rec_to_nwb/test/processing/res/metadata.yml index 25f22d1e0..67e757c8d 100644 --- a/rec_to_nwb/test/processing/res/metadata.yml +++ b/rec_to_nwb/test/processing/res/metadata.yml @@ -133,7 +133,7 @@ electrode_groups: units: 'um' -ntrode electrode group channel map: +ntrode_electrode_group_channel_map: - ntrode_id: 1 electrode_group_id: 0 bad_channels: [0,2] diff --git a/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py b/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py index 197808108..075f9e53c 100644 --- a/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py +++ b/rec_to_nwb/test/processing/validators/test_nTrodeValidator.py @@ -47,7 +47,7 @@ def test_ntrode_validator_validate_correct_data_successfully(self): {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}, ], - "ntrode electrode group channel map": [ + "ntrode_electrode_group_channel_map": [ {"ntrode_id": 1, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 0, 1: 1, 2: 2, 3: 3}}, {"ntrode_id": 2, "electrode_group_id": 1, "bad_channels": [0, 1], "map": {0: 4, 1: 5, 2: 6, 3: 7}}, ] @@ -86,7 +86,7 @@ def test_ntrode_validator_validate_ndtrodes_num_less_than_spikes_successfully(se 'electrode_groups': [ {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, ], - "ntrode electrode group channel map": [ + "ntrode_electrode_group_channel_map": [ {"ntrode_id": 1, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 0, 1: 1, 2: 2, 3: 3}}, ] } @@ -129,7 +129,7 @@ def test_ntrode_validator_validate_ndtrodes_num_greater_than_spikes_successfully {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}, ], - "ntrode electrode group channel map": [ + "ntrode_electrode_group_channel_map": [ {"ntrode_id": 1, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 0, 1: 1, 2: 2, 3: 3}}, {"ntrode_id": 2, "electrode_group_id": 1, "bad_channels": [0, 1], "map": {0: 4, 1: 5, 2: 6, 3: 7}}, {"ntrode_id": 3, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 8, 1: 9, 2: 10, 3: 11}}, @@ -144,7 +144,7 @@ def test_ntrode_validator_validate_ndtrodes_num_greater_than_spikes_successfully @should_raise(TypeError) def test_ntrode_validator_raise_exception_due_to_empty_param(self): - metadata = {"ntrode electrode group channel map": [ + metadata = {"ntrode_electrode_group_channel_map": [ {"ntrode_id": 1, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 0, 1: 1, 2: 2, 3: 3}}, {"ntrode_id": 2, "electrode_group_id": 0, "bad_channels": [0, 1], "map": {0: 4, 1: 5, 2: 6, 3: 7}}, {"ntrode_id": 3, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 8, 1: 9, 2: 10, 3: 11}}, @@ -154,7 +154,7 @@ def test_ntrode_validator_raise_exception_due_to_empty_param(self): @should_raise(InvalidHeaderException) def test_ntrode_validator_raise_exception_due_to_header_without_spike_ntrodes(self): - metadata = {"ntrode electrode group channel map": [ + metadata = {"ntrode_electrode_group_channel_map": [ {"ntrode_id": 1, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 0, 1: 1, 2: 2, 3: 3}}, {"ntrode_id": 2, "electrode_group_id": 0, "bad_channels": [0, 1], "map": {0: 4, 1: 5, 2: 6, 3: 7}}, {"ntrode_id": 3, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 8, 1: 9, 2: 10, 3: 11}}, @@ -166,7 +166,7 @@ def test_ntrode_validator_raise_exception_due_to_header_without_spike_ntrodes(se @should_raise(InvalidMetadataException) def test_should_raise_exception_due_to_metadata_without_ntrodes(self): - metadata = {"ntrode electrode group channel map": []} + metadata = {"ntrode_electrode_group_channel_map": []} validator = NTrodeValidator(metadata, self.header, []) validator.create_summary() @@ -201,7 +201,7 @@ def test_should_raise_exception_due_to_incompatible_probes_metadata_with_ntrodes {'id': 0, 'location': 'mPFC', 'device_type': 'tetrode_12.5', 'description': 'Probe 1'}, {'id': 1, 'location': 'mPFC', 'device_type': '128c-4s8mm6cm-20um-40um-sl', 'description': 'Probe 2'}, ], - "ntrode electrode group channel map": [ + "ntrode_electrode_group_channel_map": [ {"ntrode_id": 1, "electrode_group_id": 0, "bad_channels": [0, 2], "map": {0: 0, 1: 1, 2: 2, 3: 3}}, {"ntrode_id": 2, "electrode_group_id": 1, "bad_channels": [0, 1], "map": {0: 4, 1: 5, 2: 6, 3: 7}}, ] From 8bebe1f2d6f1ce5023aeefeae667472aabc5ab03 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 18 Jun 2021 12:23:22 -0700 Subject: [PATCH 052/205] Fix underscore in subject id --- README.md | 2 +- rec_to_nwb/processing/builder/nwb_file_builder.py | 2 +- rec_to_nwb/test/processing/metadata/test_metadataManager.py | 2 +- rec_to_nwb/test/processing/res/jaq_metadata.yml | 2 +- rec_to_nwb/test/processing/res/metadata.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 299312c6d..e02617b15 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Important note: right now the code assumes that the electrode groups listed belo genotype: Wild Type sex: Male species: Rat - subject id: Beans + subject_id: Beans weight: Unknown #Units of analog and behavioral_events units: diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index b4f136279..78bde68fc 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -309,7 +309,7 @@ def build(self): genotype=self.metadata['subject']['genotype'], sex=self.metadata['subject']['sex'], species=self.metadata['subject']['species'], - subject_id=self.metadata['subject']['subject id'], + subject_id=self.metadata['subject']['subject_id'], weight=str(self.metadata['subject']['weight']), ), ) diff --git a/rec_to_nwb/test/processing/metadata/test_metadataManager.py b/rec_to_nwb/test/processing/metadata/test_metadataManager.py index 8e25a67f2..cb45a77b0 100644 --- a/rec_to_nwb/test/processing/metadata/test_metadataManager.py +++ b/rec_to_nwb/test/processing/metadata/test_metadataManager.py @@ -42,7 +42,7 @@ def test_metadata_manager_reading_metadata_successfully(self): self.assertIn('genotype', subject_fields) self.assertIn('sex', subject_fields) self.assertIn('species', subject_fields) - self.assertIn('subject id', subject_fields) + self.assertIn('subject_id', subject_fields) self.assertIn('weight', subject_fields) tasks_fields = nwb_metadata.metadata['tasks'][0].keys() diff --git a/rec_to_nwb/test/processing/res/jaq_metadata.yml b/rec_to_nwb/test/processing/res/jaq_metadata.yml index c014fd0f5..f94a32fa1 100644 --- a/rec_to_nwb/test/processing/res/jaq_metadata.yml +++ b/rec_to_nwb/test/processing/res/jaq_metadata.yml @@ -9,7 +9,7 @@ subject: genotype: Wild Type sex: Male species: Rat - subject id: Beans + subject_id: Beans weight: Unknown tasks: diff --git a/rec_to_nwb/test/processing/res/metadata.yml b/rec_to_nwb/test/processing/res/metadata.yml index 67e757c8d..01a8fd013 100644 --- a/rec_to_nwb/test/processing/res/metadata.yml +++ b/rec_to_nwb/test/processing/res/metadata.yml @@ -9,7 +9,7 @@ subject: genotype: Wild Type sex: M species: Ratticus norvegicus - subject id: Beans + subject_id: Beans weight: Unknown units: From 40e8d5b45bf66f2ebcb14af657f9dfefffb1fb0c Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 2 Jul 2021 08:53:04 -0700 Subject: [PATCH 053/205] Add yaml tag for code highlighting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e02617b15..1982ff6b9 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ Currently we suggest following the instructions to install https://github.com/Lo Important note: right now the code assumes that the electrode groups listed below (each of which corresponds to one or more NTrode in the file) are in ascending order by NTrode number. If this is not the case the data could be scrambled. Thus, the first listed electrode group should correspond to, for example, NTrode 1 (or perhaps NTrodes 1-4) while the second would correspond to NTrode 2 (or 5-8), etc. - ``` + ```yaml # general information about the experiment experimenter_name: Alison Comrie lab: Loren Frank @@ -173,7 +173,7 @@ Important note: right now the code assumes that the electrode groups listed belo 3: 7 ``` 5. Probe.yml description: - ``` + ```yaml probe_type: tetrode_12.5 # Type of the probe that refers to device_type in electrode_group in metadata.yml units: 'um' # possible value for unit is um or mm probe_description: 'four wire electrode' From 6389539b80fee62fa9d39e3a61609a31b6acc9d8 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 2 Jul 2021 10:58:52 -0700 Subject: [PATCH 054/205] Add jupyter lab as a dependency and use conda to install rec_to_binaries --- rec_to_nwb/environment.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index c735121e4..a46e3c99c 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -3,6 +3,7 @@ channels: - conda-forge - defaults - novelakrk + - franklab dependencies: - python>=3.6,<3.8 - pip @@ -46,10 +47,12 @@ dependencies: - pytest - testfixtures - ndx-franklab-novela=0.0.011 + - jupyterlab + - nb_conda + - rec_to_binaries - pip: - mountainlab_pytools - xmldiff - - rec-to-binaries - hdmf>2.1.0 - pynwb From 30c5c20704aaeefc7104a968973cf99a1090eb90 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 2 Jul 2021 13:06:10 -0700 Subject: [PATCH 055/205] Revert "Add jupyter lab as a dependency and use conda to install rec_to_binaries" This reverts commit 6389539b80fee62fa9d39e3a61609a31b6acc9d8. --- rec_to_nwb/environment.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index a46e3c99c..c735121e4 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -3,7 +3,6 @@ channels: - conda-forge - defaults - novelakrk - - franklab dependencies: - python>=3.6,<3.8 - pip @@ -47,12 +46,10 @@ dependencies: - pytest - testfixtures - ndx-franklab-novela=0.0.011 - - jupyterlab - - nb_conda - - rec_to_binaries - pip: - mountainlab_pytools - xmldiff + - rec-to-binaries - hdmf>2.1.0 - pynwb From 595d623ab3f48b1e50fcd85181270c01e8dfb21e Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 2 Jul 2021 13:07:08 -0700 Subject: [PATCH 056/205] Add jupyterlab --- rec_to_nwb/environment.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index c735121e4..0919c3830 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -46,6 +46,8 @@ dependencies: - pytest - testfixtures - ndx-franklab-novela=0.0.011 + - jupyterlab + - nb_conda - pip: - mountainlab_pytools - xmldiff From 74ede99da644ba2624f02c82c9c6ef17601d643f Mon Sep 17 00:00:00 2001 From: asilvaalex4 <52668125+asilvaalex4@users.noreply.github.com> Date: Tue, 6 Jul 2021 20:27:59 -0700 Subject: [PATCH 057/205] Added batch processing and yaml conversion scripts (#12) * Added batch processing and yaml conversion scripts --- .DS_Store | Bin 0 -> 14340 bytes .gitignore | 1 + rec_to_nwb/.gitignore | 4 + scripts/.DS_Store | Bin 0 -> 6148 bytes .../batch_create_nwb_files.py | 14 ++ .../batch_create_yaml_files.py | 16 ++ scripts/alex_anna_scripts/generate_day_nwb.py | 80 ++++++++ .../alex_anna_scripts/generate_day_yaml.py | 173 ++++++++++++++++++ 8 files changed, 288 insertions(+) create mode 100644 .DS_Store create mode 100644 scripts/.DS_Store create mode 100644 scripts/alex_anna_scripts/batch_create_nwb_files.py create mode 100644 scripts/alex_anna_scripts/batch_create_yaml_files.py create mode 100644 scripts/alex_anna_scripts/generate_day_nwb.py create mode 100644 scripts/alex_anna_scripts/generate_day_yaml.py diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..9fe4fe37aa4839240ce2b9ebaaeca5502b40fedd GIT binary patch literal 14340 zcmeHNTWlOx8UBCAiD#UP$8i#8w;7XGFfRYs?0uFl-hUVU4In zGZc^u*I6UIHlYPcLcbNZojfud^cShPQ1Bevb;^-kJM~eSEYx7ZPfUV9fRiPtQ;fJam9WgjmM|wtx!_P(jO6Z5`#GyKIR5M2>6qdC^FC)c?bD^KO2?7ZM zYZ2%`QdhIHH_qB7PT6JZ#cA82S#rm0w^X#K(OuC#A$ zf21(yE*1hksQSaYcTvR7=)qhu3QxGMy&Bew=Ph$_M%yvsI)QFErYDsx!-UACNy{#EYdf8c?!N9UKW zEr00xho6#&5l535iBYIGPa_iRrBzypddW9xz5HdZmumawEnByBXq_F~JG#1d?A+D8 zyL(3KD(a;xWlywq#I;>-*shuv%bsNvDtgIs%2R=PH7Hou%o%NaO!Ta2Tz)HQVyOa| z9d9Mb;zm8wbYywsv$MV#Ox1;_FZsZDEHLNCoLLv;F96f=N?^H;f8O+b_|v-Q=}y@k zUV6mVi>5v947)+#&QDn-*9lwIAqzqDjAx1hvd8`qqLj^@tOX8+0ZraQ$*`jFgrm=! zYBqN!%v73RAJeTRNTH|Y)f8#A|a7w_b~ypP|_cklu34^>-g zLzE8VHJ5RD79S$JJWwdP^Oc%R6A6D|B&2G~leIzoIY(4g)y=7~6DLp2Xj;`b&ziO# zSPN!e4@`eXi$gJ4a_#E8gPhKiZkMVMHiv9m;O4K6>jmHS0*n;|>ribn7OMKCEj#zz ze#d+J?|t8~{A-d*+g0@fxa|bitYv!V7A+%~o7Vl3=@{V7)5+5rCu`7^3$#%YB990DXPrL?n|XEikuP8gli~@ zOg?ZhrB3+hqozlKJ-wvZ;1~JJ{1Shizrio_EBtN#0sn-55t4J2)~D;piXh)?O4?}VX}R2twCRUNAI{$r z(!L%}dfPGM?adzSJ#_f~q16$MjbS~RB!fbVNb1z6AqTO6k7CqQ>D$yj>v8%Vm}g#9 z1bwu&P&$*oT>)b>Ntsl7fBJv|T5BybSG_Y0NnO!4gu-{J0}5!WZ47hoQ3q8JS!)e* zkEll#@KxIs=02$ARPm{46vp?b^C~90^;ozr2fsis(94+oz6b986cgaD>Gzldi8rw( zd6(wfc#oU}-@|uu58um!VBirx%6UG{qx>*fSl|gh&yze27M3In=lC)9IN&PSxWXR= z7jN(eA@AZ_*Rhl7g}jH@2jyRlK(-FQ|L+dgCH%9G>EKqNL1#0{4j`w~0#+-rRxQyy*^OG_KA=IX z4RQ;RE};&rdNFCNyD{k^*^uj_BI*fZ(pXg+q!mb2(Uwr7>B>n@)%ChVwnD7AI@VyZ z7pSes&DLGf|9b6K=(#8%cBdhGTran+CinJrh zZx>{Ax`O?~j2K1q$wXZ2cVZ?&L|IJ{VxX6zYiGb2a0b2@knz$0kaOfB d59)Xj9d^+$DatI;pWT7}5Xgjh/Src/franklabnwb/yaml' + yaml_path = '/home/asilva/src/mat_to_nwb/yaml_files/' + animal + # metadata filename for an animal and date. This is a file that you generate as the user. + # for example, '_metadata.yml' + animal_metadata_file = animal + date + '.yaml' #bad_channels in yaml will be left out of the .nwb filie + # metadata filename for a recording device type; + # typically these are common lab files that you shouldn't need to personalize + + probe1_metadata_file = 'tetrode_12.5.yml' + + + #probe1_metadata_file = '128c-4s8mm6cm-20um-40um-sl.yml' + #probe2_metadata_file = 'tetrode_12.5.yml' + + # Specify the paths for the data, the output nwb file, and the video files + # example raw data INPUT path: '/stelmo//' + data_path = '/stelmo/anna/' + # the nwb file OUTPUT path should be '/stelmo/nwb/raw' + # FOR BATCH CHANGE TO ANNA FOLDER + output_path='/stelmo/anna/nwb/raw/' + # video OUTPUT path should be '/stelmo/nwb/video' + # just copies over the raw video files into this dir + video_path='/stelmo/anna/nwb/video' + # note that a rec_to_nwb.log file will also be saved to the directory from which your are running this notebook + + # Specify any optional trodes export flags + # uses rec_to_binaries repo, which uses SpikeGadgets/Trodes export functions + # keep things as raw as possible though - unlike old preprocessing pipeline, + # we aren't doing any filtering or interpolation yet + trodes_rec_export_args = ('-reconfig', '/stelmo/anna/' + animal +'/raw/' + date + '/' + date + '.trodesconf') + + # specify the locations of the metadata files for the animal and the probe(s). + # Note that specifying all possible probes is fine + animal_metadata = os.path.join(yaml_path, animal_metadata_file ) + + probe_metadata = [os.path.join(yaml_path, probe1_metadata_file)] + # probe_metadata = [os.path.join(yaml_path, probe1_metadata_file), + # os.path.join(yaml_path, probe2_metadata_file)] + + # Specify whether preprocessing data should be reextracted (True) or skipped if it already exists (False) + overwrite=True + # note that extraction will write to the directory: data_path+'preprocessing/' and + # you may have data you previously preprocessed in that dir, created with alternate export args + # that you neither want to skip nor overwrite if you're using them for filterframework + metadata = MetadataManager(animal_metadata, probe_metadata) + # build the run enviornment + animal_name = animal + builder = RawToNWBBuilder(animal_name=animal_name, + data_path=data_path, + dates=dates, + nwb_metadata=metadata, + overwrite=overwrite, + output_path=output_path, + video_path=video_path, + trodes_rec_export_args = trodes_rec_export_args) + # run the processing + content = builder.build_nwb() diff --git a/scripts/alex_anna_scripts/generate_day_yaml.py b/scripts/alex_anna_scripts/generate_day_yaml.py new file mode 100644 index 000000000..83f0c22ae --- /dev/null +++ b/scripts/alex_anna_scripts/generate_day_yaml.py @@ -0,0 +1,173 @@ +import loren_frank_data_processing as lfdp +from loren_frank_data_processing import Animal +import pandas as pd +import numpy as np +import yaml +import scipy.io as si + +def generate_day_yaml(animal,sess_id): + # animal = 'montague' + # sess_id = 14 + #ffdir = '/Users/asilva/Documents/mount/stelmo/anna/' + animal + '/filterframework/'; + base_dir = '/stelmo/anna/' + animal + ffdir = base_dir + '/filterframework/'; + + template_yaml = '/home/asilva/src/mat_to_nwb/despereaux20191122.yml'; + pad_sess = "{:02d}".format(sess_id) + + # trials = si.loadmat(ffdir + animal + 'trials' + pad_sess + '.mat') + task = si.loadmat(ffdir + animal + 'task' + pad_sess + '.mat') + # tetinfo = si.loadmat(ffdir + animal + 'tetinfo.mat') + + # pull off the date that corresponds to the session id + date = str(int(task['task'][0,sess_id-1][0,1]['date'])) + + + rat_name = animal + raw_directory = ffdir + animalinfo = {rat_name: Animal(directory=raw_directory, short_name=rat_name)} + tetinfo = lfdp.tetrodes.make_tetrode_dataframe(animalinfo) + taskinfo=lfdp.make_epochs_dataframe(animalinfo) + taskinfo = taskinfo.reset_index() + + # get the relevant day task info + day_task = taskinfo[taskinfo['day'] == sess_id] + day_task['letter'] = day_task['type'].apply(lambda x: x[0]) + day_task['epoch_pad'] = day_task['epoch'].apply(lambda x: "{:02d}".format(x)) + + #Load YAML file + a_yaml_file = open(template_yaml) + yam_temp = yaml.load(a_yaml_file, Loader=yaml.FullLoader) + + # figure out which number run and sleep each epoch is + sleep_num = 0 + run_num = 0 + labels = [] + for l in day_task['letter']: + if(l=='s'): + sleep_num += 1 + labels.append((sleep_num)) + else: + run_num += 1 + labels.append((run_num)) + + day_task['type_num'] = labels + + # put on the associated file and the the video file + day_task['asc_file'] = day_task[['letter','epoch_pad','type_num']].apply(lambda x: base_dir + '/raw/'+ date + +'/' + date + '_' + animal + '_' + x[1] + '_' + x[0] + + str(x[2]) + '.stateScriptLog',axis=1) + + day_task['vid_file'] = day_task[['letter','epoch_pad','type_num']].apply(lambda x: date + '_' + animal + '_' + x[1] + + '_' + x[0] + str(x[2]) + '.1.h264',axis=1) + + # put in the camera value for each. First we have to see what camera corresponds to run and sleep + cams = yam_temp['cameras'] + if('sleep' in cams[0]['camera_name']): + sleep_cam_id = 0 + run_cam_id = 1 + else: + sleep_cam_id = 1 + run_cam_id = 0 + + day_task['camera'] = day_task['letter'].apply(lambda x: sleep_cam_id if x=='s' else run_cam_id) + + # define the statescript path + ss_path = '/stelmo/anna/' + animal + '/raw/' + date + '/'; + + + # write over the session id + yam_temp['session_id'] = animal + '_' + pad_sess + + # write over the subject id + yam_temp['subject']['subject_id'] = animal + + # get the associated files for each task and overwrite + assoc_files = [] + for index, row in day_task.iterrows(): + cur_dict = {} + cur_dict['name'] = 'statescript_' + row['letter'] + str(row['type_num']) + cur_dict['description'] = 'Statescript log ' + row['letter'] + str(row['type_num']) + cur_dict['path'] = row['asc_file'] + cur_dict['task_epochs'] = [row['epoch']] + assoc_files.append(cur_dict) + + # overwrite the template + yam_temp['associated_files'] = assoc_files + + # get the associated video files and overwrite + assoc_vid_files = [] + for index, row in day_task.iterrows(): + cur_dict = {} + cur_dict['name'] = row['vid_file'] + cur_dict['camera_id'] = row['camera'] + cur_dict['task_epoch'] = row['epoch'] + assoc_vid_files.append(cur_dict) + + yam_temp['associated_video_files'] = assoc_vid_files + + # get the behavioral events and overwrite + # 9 -- hardcoded based on the format of task.mat files + behave_events = (task['task'][0,sess_id-1][0,1][0,0][9][0,0][0]) + behave_evt_map = [] + for i in range(0,behave_events.shape[0]): + cur_dict = {} + cur_dict['description'] = str(behave_events[i,1][0]) + cur_dict['name'] = str(behave_events[i,0][0]) + behave_evt_map.append(cur_dict) + + yam_temp['behavioral_events'] = behave_evt_map + + # write over the electrode groups + tmp_elec_group = yam_temp['electrode_groups'][0] + + # first need to pull out the relevant tetrode information + tetinfo = tetinfo.reset_index() + tet_day = tetinfo[(tetinfo['day'] == sess_id) & (tetinfo['epoch']== 1)] + all_elec_groups = [] + for index, row in tet_day.iterrows(): + cur_dict = tmp_elec_group.copy() + cur_dict['id'] = row['tetrode_number'] - 1 + # make nan --> '' + if(isinstance(row['area'],float)): + if(np.isnan(row['area'])): + row['area'] = '' + cur_dict['location'] = row['area'] + cur_dict['targeted_location'] = 'CA1' + all_elec_groups.append(cur_dict) + + yam_temp['electrode_groups'] = all_elec_groups + + + for i in range(0,len(yam_temp['ntrode_electrode_group_channel_map'])): + row = tet_day.iloc[i,:] + yam_temp['ntrode_electrode_group_channel_map'][i]['ntrode_id'] = int(row['tetrode_number']) + yam_temp['ntrode_electrode_group_channel_map'][i]['electrode_group_id'] = int(row['tetrode_number'] - 1) + deadchans = row['deadchans'] + if(isinstance(deadchans,int)): + deadchans = [deadchans] + elif isinstance(deadchans, float): + if np.isnan(deadchans): + deadchans = [] + else: + deadchans = [deadchans] + else: + deadchans = deadchans.tolist() + yam_temp['ntrode_electrode_group_channel_map'][i]['bad_channels'] = deadchans + + + # overwrite the tasks section + + # put in the sleep epochs first + yam_temp['tasks'][0]['task_epochs'] = day_task['epoch'][day_task['letter'] == 's'].tolist() + + # now the run epochs + yam_temp['tasks'][1]['task_epochs'] = day_task['epoch'][day_task['letter'] == 'r'].tolist() + + + #write out the yaml + out_file = '/home/asilva/src/mat_to_nwb/yaml_files/' + animal + date + '.yaml' + stream = open(out_file, 'w') + yaml.dump(yam_temp, stream) # Write a YAML representation of data to 'document.yaml'. + + \ No newline at end of file From 98c08de6004b51f7236a85ca85995ffc881029fa Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:11:22 -0700 Subject: [PATCH 058/205] Add to gitignore --- .gitignore | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 127 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a252b0ce9..b42235be8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,127 @@ -build/* -dist/rec_to_nwb-0.1.19-py3.7.egg -rec_to_nwb.egg-info/SOURCES.txt -*.DS_Store +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ +.DS_Store +*.mat +*.lock +*.dirlock From 5292023d2b853172093b061fa8e2d33c1f8ba6b0 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:33:34 -0700 Subject: [PATCH 059/205] Ignore vscode --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b42235be8..29c66ea62 100644 --- a/.gitignore +++ b/.gitignore @@ -125,3 +125,4 @@ dmypy.json *.mat *.lock *.dirlock +*.vscode From cff93a8a219fefb77327b1b896690dccf28cfa13 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:35:22 -0700 Subject: [PATCH 060/205] Remove egg info --- rec_to_nwb.egg-info/PKG-INFO | 10 - rec_to_nwb.egg-info/SOURCES.txt | 401 ----------------------- rec_to_nwb.egg-info/dependency_links.txt | 1 - rec_to_nwb.egg-info/top_level.txt | 1 - 4 files changed, 413 deletions(-) delete mode 100644 rec_to_nwb.egg-info/PKG-INFO delete mode 100644 rec_to_nwb.egg-info/SOURCES.txt delete mode 100644 rec_to_nwb.egg-info/dependency_links.txt delete mode 100644 rec_to_nwb.egg-info/top_level.txt diff --git a/rec_to_nwb.egg-info/PKG-INFO b/rec_to_nwb.egg-info/PKG-INFO deleted file mode 100644 index 58ef301f9..000000000 --- a/rec_to_nwb.egg-info/PKG-INFO +++ /dev/null @@ -1,10 +0,0 @@ -Metadata-Version: 1.2 -Name: rec-to-nwb -Version: 0.1.19 -Summary: Data transformation from rec binary files into NWB 2.0 format -Home-page: https://github.com/NovelaNeuro/rec_to_nwb -Author: Novela Neurotech -License: UNKNOWN -Description: UNKNOWN -Platform: Posix; MacOS X; Windows -Requires-Python: >=3.6 diff --git a/rec_to_nwb.egg-info/SOURCES.txt b/rec_to_nwb.egg-info/SOURCES.txt deleted file mode 100644 index 3a9684859..000000000 --- a/rec_to_nwb.egg-info/SOURCES.txt +++ /dev/null @@ -1,401 +0,0 @@ -README.md -setup.py -rec_to_nwb/__init__.py -rec_to_nwb/conftest.py -rec_to_nwb/logging.conf -rec_to_nwb.egg-info/PKG-INFO -rec_to_nwb.egg-info/SOURCES.txt -rec_to_nwb.egg-info/dependency_links.txt -rec_to_nwb.egg-info/top_level.txt -rec_to_nwb/data/default_header.xml -rec_to_nwb/data/fl_lab_header.xsd -rec_to_nwb/data/header_schema.xsd -rec_to_nwb/data/reconfig_header.xsd -rec_to_nwb/processing/__init__.py -rec_to_nwb/processing/builder/__init__.py -rec_to_nwb/processing/builder/nwb_file_builder.py -rec_to_nwb/processing/builder/old_nwb_file_builder.py -rec_to_nwb/processing/builder/old_raw_to_nwb_builder.py -rec_to_nwb/processing/builder/raw_to_nwb_builder.py -rec_to_nwb/processing/builder/old_originators/__init__.py -rec_to_nwb/processing/builder/originators/__init__.py -rec_to_nwb/processing/builder/originators/analog_originator.py -rec_to_nwb/processing/builder/originators/associated_files_originator.py -rec_to_nwb/processing/builder/originators/camera_device_originator.py -rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py -rec_to_nwb/processing/builder/originators/data_acq_device_originator.py -rec_to_nwb/processing/builder/originators/dio_originator.py -rec_to_nwb/processing/builder/originators/electrode_group_originator.py -rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py -rec_to_nwb/processing/builder/originators/electrodes_originator.py -rec_to_nwb/processing/builder/originators/epochs_originator.py -rec_to_nwb/processing/builder/originators/header_device_originator.py -rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py -rec_to_nwb/processing/builder/originators/mda_originator.py -rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py -rec_to_nwb/processing/builder/originators/old_analog_originator.py -rec_to_nwb/processing/builder/originators/old_dio_originator.py -rec_to_nwb/processing/builder/originators/old_mda_invalid_time_originator.py -rec_to_nwb/processing/builder/originators/old_mda_originator.py -rec_to_nwb/processing/builder/originators/old_mda_valid_time_originator.py -rec_to_nwb/processing/builder/originators/old_pos_invalid_originator.py -rec_to_nwb/processing/builder/originators/old_pos_valid_time_originator.py -rec_to_nwb/processing/builder/originators/old_position_originator.py -rec_to_nwb/processing/builder/originators/old_video_files_originator.py -rec_to_nwb/processing/builder/originators/pos_invalid_originator.py -rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py -rec_to_nwb/processing/builder/originators/position_originator.py -rec_to_nwb/processing/builder/originators/probe_originator.py -rec_to_nwb/processing/builder/originators/processing_module_originator.py -rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py -rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py -rec_to_nwb/processing/builder/originators/shanks_originator.py -rec_to_nwb/processing/builder/originators/task_originator.py -rec_to_nwb/processing/builder/originators/video_files_originator.py -rec_to_nwb/processing/exceptions/__init__.py -rec_to_nwb/processing/exceptions/corrupted_data_exception.py -rec_to_nwb/processing/exceptions/invalid_exception.py -rec_to_nwb/processing/exceptions/invalid_header_exception.py -rec_to_nwb/processing/exceptions/invalid_input_exception.py -rec_to_nwb/processing/exceptions/invalid_metadata_exception.py -rec_to_nwb/processing/exceptions/invalid_path_exception.py -rec_to_nwb/processing/exceptions/invalid_xml_exception.py -rec_to_nwb/processing/exceptions/missing_data_exception.py -rec_to_nwb/processing/exceptions/none_param_exception.py -rec_to_nwb/processing/exceptions/not_compatible_metadata.py -rec_to_nwb/processing/exceptions/not_equal_param_length_exception.py -rec_to_nwb/processing/header/__init__.py -rec_to_nwb/processing/header/reconfig_header_checker.py -rec_to_nwb/processing/header/xml_extractor.py -rec_to_nwb/processing/header/header_checker/__init__.py -rec_to_nwb/processing/header/header_checker/header_comparator.py -rec_to_nwb/processing/header/header_checker/header_extractor.py -rec_to_nwb/processing/header/header_checker/header_logger.py -rec_to_nwb/processing/header/header_checker/header_processor.py -rec_to_nwb/processing/header/header_checker/rec_file_finder.py -rec_to_nwb/processing/header/module/__init__.py -rec_to_nwb/processing/header/module/argument.py -rec_to_nwb/processing/header/module/aux_display_configuration.py -rec_to_nwb/processing/header/module/channel.py -rec_to_nwb/processing/header/module/configuration.py -rec_to_nwb/processing/header/module/device.py -rec_to_nwb/processing/header/module/disp_channel.py -rec_to_nwb/processing/header/module/global_configuration.py -rec_to_nwb/processing/header/module/hardware_configuration.py -rec_to_nwb/processing/header/module/header.py -rec_to_nwb/processing/header/module/module_configuration.py -rec_to_nwb/processing/header/module/single_module_configuration.py -rec_to_nwb/processing/header/module/spike_channel.py -rec_to_nwb/processing/header/module/spike_configuration.py -rec_to_nwb/processing/header/module/spike_n_trode.py -rec_to_nwb/processing/header/module/stream_display.py -rec_to_nwb/processing/metadata/__init__.py -rec_to_nwb/processing/metadata/corrupted_data_manager.py -rec_to_nwb/processing/metadata/metadata_extractor.py -rec_to_nwb/processing/metadata/metadata_manager.py -rec_to_nwb/processing/nwb/__init__.py -rec_to_nwb/processing/nwb/common/__init__.py -rec_to_nwb/processing/nwb/common/data_manager.py -rec_to_nwb/processing/nwb/common/old_timestamps_manager.py -rec_to_nwb/processing/nwb/common/session_time_extractor.py -rec_to_nwb/processing/nwb/common/timestamps_manager.py -rec_to_nwb/processing/nwb/components/__init__.py -rec_to_nwb/processing/nwb/components/analog/__init__.py -rec_to_nwb/processing/nwb/components/analog/analog_creator.py -rec_to_nwb/processing/nwb/components/analog/analog_files.py -rec_to_nwb/processing/nwb/components/analog/analog_injector.py -rec_to_nwb/processing/nwb/components/analog/fl_analog.py -rec_to_nwb/processing/nwb/components/analog/fl_analog_builder.py -rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py -rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py -rec_to_nwb/processing/nwb/components/analog/old_fl_analog_builder.py -rec_to_nwb/processing/nwb/components/analog/old_fl_analog_extractor.py -rec_to_nwb/processing/nwb/components/analog/old_fl_analog_manager.py -rec_to_nwb/processing/nwb/components/associated_files/__init__.py -rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py -rec_to_nwb/processing/nwb/components/associated_files/associated_files_injector.py -rec_to_nwb/processing/nwb/components/associated_files/fl_associated_file.py -rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_builder.py -rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_manager.py -rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_reader.py -rec_to_nwb/processing/nwb/components/device/__init__.py -rec_to_nwb/processing/nwb/components/device/device_factory.py -rec_to_nwb/processing/nwb/components/device/device_injector.py -rec_to_nwb/processing/nwb/components/device/fl_device.py -rec_to_nwb/processing/nwb/components/device/acq/__init__.py -rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device.py -rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_builder.py -rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_manager.py -rec_to_nwb/processing/nwb/components/device/camera/__init__.py -rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device.py -rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_builder.py -rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_manager.py -rec_to_nwb/processing/nwb/components/device/header/__init__.py -rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py -rec_to_nwb/processing/nwb/components/device/header/fl_header_device_builder.py -rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py -rec_to_nwb/processing/nwb/components/device/probe/__init__.py -rec_to_nwb/processing/nwb/components/device/probe/fl_probe.py -rec_to_nwb/processing/nwb/components/device/probe/fl_probe_builder.py -rec_to_nwb/processing/nwb/components/device/probe/fl_probe_extractor.py -rec_to_nwb/processing/nwb/components/device/probe/fl_probe_manager.py -rec_to_nwb/processing/nwb/components/device/probe/shanks/__init__.py -rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank.py -rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank_builder.py -rec_to_nwb/processing/nwb/components/device/probe/shanks/fl_shank_manager.py -rec_to_nwb/processing/nwb/components/device/probe/shanks/shank_creator.py -rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/__init__.py -rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode.py -rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode_builder.py -rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/fl_shanks_electrode_manager.py -rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/shanks_electrode_creator.py -rec_to_nwb/processing/nwb/components/dio/__init__.py -rec_to_nwb/processing/nwb/components/dio/dio_builder.py -rec_to_nwb/processing/nwb/components/dio/dio_extractor.py -rec_to_nwb/processing/nwb/components/dio/dio_files.py -rec_to_nwb/processing/nwb/components/dio/dio_injector.py -rec_to_nwb/processing/nwb/components/dio/dio_manager.py -rec_to_nwb/processing/nwb/components/dio/old_dio_extractor.py -rec_to_nwb/processing/nwb/components/dio/old_dio_manager.py -rec_to_nwb/processing/nwb/components/electrode_group/__init__.py -rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py -rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py -rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group.py -rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_builder.py -rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py -rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group.py -rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_builder.py -rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py -rec_to_nwb/processing/nwb/components/electrodes/__init__.py -rec_to_nwb/processing/nwb/components/electrodes/electrode_creator.py -rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_builder.py -rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py -rec_to_nwb/processing/nwb/components/electrodes/fl_electrodes.py -rec_to_nwb/processing/nwb/components/electrodes/extension/__init__.py -rec_to_nwb/processing/nwb/components/electrodes/extension/electrode_extension_injector.py -rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension.py -rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_builder.py -rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py -rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py -rec_to_nwb/processing/nwb/components/epochs/__init__.py -rec_to_nwb/processing/nwb/components/epochs/epochs_injector.py -rec_to_nwb/processing/nwb/components/epochs/epochs_tag_extractor.py -rec_to_nwb/processing/nwb/components/epochs/fl_epochs.py -rec_to_nwb/processing/nwb/components/epochs/fl_epochs_builder.py -rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py -rec_to_nwb/processing/nwb/components/epochs/fl_epochs_manager.py -rec_to_nwb/processing/nwb/components/iterator/__init__.py -rec_to_nwb/processing/nwb/components/iterator/data_iterator.py -rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py -rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py -rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py -rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py -rec_to_nwb/processing/nwb/components/iterator/timestamp_iterator.py -rec_to_nwb/processing/nwb/components/mda/__init__.py -rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py -rec_to_nwb/processing/nwb/components/mda/fl_mda.py -rec_to_nwb/processing/nwb/components/mda/fl_mda_builder.py -rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py -rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py -rec_to_nwb/processing/nwb/components/mda/mda_content.py -rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py -rec_to_nwb/processing/nwb/components/mda/mda_injector.py -rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py -rec_to_nwb/processing/nwb/components/mda/old_fl_mda_extractor.py -rec_to_nwb/processing/nwb/components/mda/old_fl_mda_manager.py -rec_to_nwb/processing/nwb/components/mda/table_region_builder.py -rec_to_nwb/processing/nwb/components/mda/time/__init__.py -rec_to_nwb/processing/nwb/components/mda/time/invalid/__init__.py -rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time.py -rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time_builder.py -rec_to_nwb/processing/nwb/components/mda/time/invalid/fl_mda_invalid_time_manager.py -rec_to_nwb/processing/nwb/components/mda/time/invalid/mda_invalid_time_injector.py -rec_to_nwb/processing/nwb/components/mda/time/valid/__init__.py -rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time.py -rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time_builder.py -rec_to_nwb/processing/nwb/components/mda/time/valid/fl_mda_valid_time_manager.py -rec_to_nwb/processing/nwb/components/mda/time/valid/mda_valid_time_injector.py -rec_to_nwb/processing/nwb/components/position/__init__.py -rec_to_nwb/processing/nwb/components/position/fl_position.py -rec_to_nwb/processing/nwb/components/position/fl_position_builder.py -rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py -rec_to_nwb/processing/nwb/components/position/fl_position_manager.py -rec_to_nwb/processing/nwb/components/position/old_fl_position_extractor.py -rec_to_nwb/processing/nwb/components/position/old_fl_position_manager.py -rec_to_nwb/processing/nwb/components/position/old_pos_timestamp_manager.py -rec_to_nwb/processing/nwb/components/position/pos_data_manager.py -rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py -rec_to_nwb/processing/nwb/components/position/position_creator.py -rec_to_nwb/processing/nwb/components/position/time/__init__.py -rec_to_nwb/processing/nwb/components/position/time/invalid/__init__.py -rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time.py -rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time_builder.py -rec_to_nwb/processing/nwb/components/position/time/invalid/fl_pos_invalid_time_manager.py -rec_to_nwb/processing/nwb/components/position/time/invalid/pos_invalid_time_injector.py -rec_to_nwb/processing/nwb/components/position/time/valid/__init__.py -rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time.py -rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_builder.py -rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_manager.py -rec_to_nwb/processing/nwb/components/position/time/valid/pos_valid_time_injector.py -rec_to_nwb/processing/nwb/components/processing_module/__init__.py -rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py -rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/__init__.py -rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_builder.py -rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py -rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_injector.py -rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_manager.py -rec_to_nwb/processing/nwb/components/task/__init__.py -rec_to_nwb/processing/nwb/components/task/fl_task.py -rec_to_nwb/processing/nwb/components/task/task_builder.py -rec_to_nwb/processing/nwb/components/task/task_creator.py -rec_to_nwb/processing/nwb/components/task/task_manager.py -rec_to_nwb/processing/nwb/components/video_files/__init__.py -rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py -rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py -rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py -rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py -rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_extractor.py -rec_to_nwb/processing/nwb/components/video_files/old_fl_video_files_manager.py -rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py -rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py -rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py -rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/__init__.py -rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts.py -rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py -rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py -rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py -rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py -rec_to_nwb/processing/time/__init__.py -rec_to_nwb/processing/time/continuous_time_extractor.py -rec_to_nwb/processing/time/timestamp_converter.py -rec_to_nwb/processing/tools/__init__.py -rec_to_nwb/processing/tools/abstract_file_downloader.py -rec_to_nwb/processing/tools/count_electrodes_in_ntrode.py -rec_to_nwb/processing/tools/count_electrodes_in_probe.py -rec_to_nwb/processing/tools/data_scanner.py -rec_to_nwb/processing/tools/dataset.py -rec_to_nwb/processing/tools/file_downloader.py -rec_to_nwb/processing/tools/file_sorter.py -rec_to_nwb/processing/tools/filter_probe_by_type.py -rec_to_nwb/processing/tools/get_times_period_multiplier.py -rec_to_nwb/processing/tools/validate_parameters.py -rec_to_nwb/processing/tools/beartype/__init__.py -rec_to_nwb/processing/tools/beartype/beartype.py -rec_to_nwb/processing/validation/__init__.py -rec_to_nwb/processing/validation/associated_files_validation.py -rec_to_nwb/processing/validation/associated_files_validation_summary.py -rec_to_nwb/processing/validation/associated_files_validator.py -rec_to_nwb/processing/validation/metadata_section_validator.py -rec_to_nwb/processing/validation/metadata_validation_summary.py -rec_to_nwb/processing/validation/metadata_validator.py -rec_to_nwb/processing/validation/not_empty_validation_summary.py -rec_to_nwb/processing/validation/not_empty_validator.py -rec_to_nwb/processing/validation/ntrode_validation_summary.py -rec_to_nwb/processing/validation/ntrode_validator.py -rec_to_nwb/processing/validation/path_validation_summary.py -rec_to_nwb/processing/validation/path_validator.py -rec_to_nwb/processing/validation/preprocessing_validation_summary.py -rec_to_nwb/processing/validation/preprocessing_validator.py -rec_to_nwb/processing/validation/task_validation_summary.py -rec_to_nwb/processing/validation/task_validator.py -rec_to_nwb/processing/validation/validation_registrator.py -rec_to_nwb/processing/validation/validation_summary.py -rec_to_nwb/processing/validation/validator.py -rec_to_nwb/processing/validation/xml_files_validation.py -rec_to_nwb/processing/validation/xml_files_validation_summary.py -rec_to_nwb/scripts/__init__.py -rec_to_nwb/scripts/nwb_eseries_timestamps_visualization.py -rec_to_nwb/scripts/timestamps_visualization.py -rec_to_nwb/scripts/visualise_timestamp_distances.py -rec_to_nwb/scripts/test_package/__init__.py -rec_to_nwb/scripts/test_package/test_package_after_release.py -rec_to_nwb/test/__init__.py -rec_to_nwb/test/e2etests/__init__.py -rec_to_nwb/test/e2etests/test_OldNwbFullGeneration.py -rec_to_nwb/test/e2etests/test_headerComparator.py -rec_to_nwb/test/e2etests/test_headersExtractor.py -rec_to_nwb/test/e2etests/test_mda.py -rec_to_nwb/test/e2etests/test_nwbFullGeneration.py -rec_to_nwb/test/e2etests/test_positionIntegration.py -rec_to_nwb/test/e2etests/test_rawToNwbGeneration.py -rec_to_nwb/test/e2etests/test_recToBinariesGenerations.py -rec_to_nwb/test/e2etests/test_xmlExtraction.py -rec_to_nwb/test/e2etests/dio/__init__.py -rec_to_nwb/test/e2etests/dio/test_dioExtractor.py -rec_to_nwb/test/e2etests/dio/test_dioManager.py -rec_to_nwb/test/processing/__init__.py -rec_to_nwb/test/processing/mda_generator.py -rec_to_nwb/test/processing/test_cameraSampleFrameCounts.py -rec_to_nwb/test/processing/test_dataIterator1Dimension.py -rec_to_nwb/test/processing/test_dataIterator2Dimension.py -rec_to_nwb/test/processing/test_dataScanner.py -rec_to_nwb/test/processing/test_fileSorter.py -rec_to_nwb/test/processing/test_headerView.py -rec_to_nwb/test/processing/test_processingModuleCreator.py -rec_to_nwb/test/processing/test_reconfig_checker.py -rec_to_nwb/test/processing/test_sessionTimeExtractor.py -rec_to_nwb/test/processing/analog/__init__.py -rec_to_nwb/test/processing/analog/test_analogCreator.py -rec_to_nwb/test/processing/analog/test_flAnalogManager.py -rec_to_nwb/test/processing/analog/test_oldFlAnalogManager.py -rec_to_nwb/test/processing/associated_files/__init__.py -rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py -rec_to_nwb/test/processing/associated_files/test_flAssociatedFilesManager.py -rec_to_nwb/test/processing/device/__init__.py -rec_to_nwb/test/processing/device/test_deviceFactory.py -rec_to_nwb/test/processing/device/test_deviceInjector.py -rec_to_nwb/test/processing/device/test_header_device_manager.py -rec_to_nwb/test/processing/device/camera/__init__.py -rec_to_nwb/test/processing/device/camera/test_flCameraDeviceManager.py -rec_to_nwb/test/processing/device/probe/__init__.py -rec_to_nwb/test/processing/device/probe/test_flProbeExtractor.py -rec_to_nwb/test/processing/device/probe/test_flProbeManager.py -rec_to_nwb/test/processing/device/probe/shank/__init__.py -rec_to_nwb/test/processing/device/probe/shank/test_flShankManager.py -rec_to_nwb/test/processing/device/probe/shanks_electrode/__init__.py -rec_to_nwb/test/processing/device/probe/shanks_electrode/test_flShanksElectrodeManager.py -rec_to_nwb/test/processing/dio/__init__.py -rec_to_nwb/test/processing/dio/test_dioBuilder.py -rec_to_nwb/test/processing/dio/test_dioInjector.py -rec_to_nwb/test/processing/electrode_group/__init__.py -rec_to_nwb/test/processing/electrode_group/test_electrodeGroupFactory.py -rec_to_nwb/test/processing/electrode_group/test_electrodeGroupInjector.py -rec_to_nwb/test/processing/electrode_group/test_flElectrodeGroupManager.py -rec_to_nwb/test/processing/electrode_group/test_flNwbElectrodeGroupManager.py -rec_to_nwb/test/processing/electrodes/__init__.py -rec_to_nwb/test/processing/electrodes/test_electrodeIntegration.py -rec_to_nwb/test/processing/electrodes/test_flElectrodeManager.py -rec_to_nwb/test/processing/electrodes/extension/__init__.py -rec_to_nwb/test/processing/electrodes/extension/test_electrodeExtensionInjector.py -rec_to_nwb/test/processing/electrodes/extension/test_flElectrodeExtensionManager.py -rec_to_nwb/test/processing/epoch/__init__.py -rec_to_nwb/test/processing/epoch/test_epochsInjector.py -rec_to_nwb/test/processing/epoch/test_flEpochsManager.py -rec_to_nwb/test/processing/mda/__init__.py -rec_to_nwb/test/processing/mda/time/__init__.py -rec_to_nwb/test/processing/mda/time/invalid/__init__.py -rec_to_nwb/test/processing/mda/time/invalid/test_flMdaInvalidTimeManager.py -rec_to_nwb/test/processing/mda/time/valid/__init__.py -rec_to_nwb/test/processing/mda/time/valid/test_flMdaValidTimeManager.py -rec_to_nwb/test/processing/metadata/__init__.py -rec_to_nwb/test/processing/metadata/test_corruptedDataManager.py -rec_to_nwb/test/processing/metadata/test_metadataManager.py -rec_to_nwb/test/processing/position/__init__.py -rec_to_nwb/test/processing/position/test_positionManager.py -rec_to_nwb/test/processing/position/time/__init__.py -rec_to_nwb/test/processing/position/time/invalid/__init__.py -rec_to_nwb/test/processing/position/time/invalid/test_flPosInvalidTimeManager.py -rec_to_nwb/test/processing/position/time/valid/__init__.py -rec_to_nwb/test/processing/position/time/valid/test_flPosValidTimeManager.py -rec_to_nwb/test/processing/task/__init__.py -rec_to_nwb/test/processing/task/test_taskIntegration.py -rec_to_nwb/test/processing/task/test_taskManager.py -rec_to_nwb/test/processing/tools/__init__.py -rec_to_nwb/test/processing/tools/test_beartype.py -rec_to_nwb/test/processing/validators/__init__.py -rec_to_nwb/test/processing/validators/test_nTrodeValidator.py -rec_to_nwb/test/processing/validators/test_notEmptyValidator.py -rec_to_nwb/test/processing/validators/test_taskValidator.py -rec_to_nwb/test/processing/validators/test_validationRegistrator.py -rec_to_nwb/test/processing/video_files/__init__.py -rec_to_nwb/test/processing/video_files/test_videoFilesCopyMaker.py \ No newline at end of file diff --git a/rec_to_nwb.egg-info/dependency_links.txt b/rec_to_nwb.egg-info/dependency_links.txt deleted file mode 100644 index 8b1378917..000000000 --- a/rec_to_nwb.egg-info/dependency_links.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/rec_to_nwb.egg-info/top_level.txt b/rec_to_nwb.egg-info/top_level.txt deleted file mode 100644 index 155d55e83..000000000 --- a/rec_to_nwb.egg-info/top_level.txt +++ /dev/null @@ -1 +0,0 @@ -rec_to_nwb From 5b5cee63efc9d5355f7a92cba28fd761900fac63 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:36:39 -0700 Subject: [PATCH 061/205] Delete .DS_Store --- .DS_Store | Bin 14340 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 9fe4fe37aa4839240ce2b9ebaaeca5502b40fedd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14340 zcmeHNTWlOx8UBCAiD#UP$8i#8w;7XGFfRYs?0uFl-hUVU4In zGZc^u*I6UIHlYPcLcbNZojfud^cShPQ1Bevb;^-kJM~eSEYx7ZPfUV9fRiPtQ;fJam9WgjmM|wtx!_P(jO6Z5`#GyKIR5M2>6qdC^FC)c?bD^KO2?7ZM zYZ2%`QdhIHH_qB7PT6JZ#cA82S#rm0w^X#K(OuC#A$ zf21(yE*1hksQSaYcTvR7=)qhu3QxGMy&Bew=Ph$_M%yvsI)QFErYDsx!-UACNy{#EYdf8c?!N9UKW zEr00xho6#&5l535iBYIGPa_iRrBzypddW9xz5HdZmumawEnByBXq_F~JG#1d?A+D8 zyL(3KD(a;xWlywq#I;>-*shuv%bsNvDtgIs%2R=PH7Hou%o%NaO!Ta2Tz)HQVyOa| z9d9Mb;zm8wbYywsv$MV#Ox1;_FZsZDEHLNCoLLv;F96f=N?^H;f8O+b_|v-Q=}y@k zUV6mVi>5v947)+#&QDn-*9lwIAqzqDjAx1hvd8`qqLj^@tOX8+0ZraQ$*`jFgrm=! zYBqN!%v73RAJeTRNTH|Y)f8#A|a7w_b~ypP|_cklu34^>-g zLzE8VHJ5RD79S$JJWwdP^Oc%R6A6D|B&2G~leIzoIY(4g)y=7~6DLp2Xj;`b&ziO# zSPN!e4@`eXi$gJ4a_#E8gPhKiZkMVMHiv9m;O4K6>jmHS0*n;|>ribn7OMKCEj#zz ze#d+J?|t8~{A-d*+g0@fxa|bitYv!V7A+%~o7Vl3=@{V7)5+5rCu`7^3$#%YB990DXPrL?n|XEikuP8gli~@ zOg?ZhrB3+hqozlKJ-wvZ;1~JJ{1Shizrio_EBtN#0sn-55t4J2)~D;piXh)?O4?}VX}R2twCRUNAI{$r z(!L%}dfPGM?adzSJ#_f~q16$MjbS~RB!fbVNb1z6AqTO6k7CqQ>D$yj>v8%Vm}g#9 z1bwu&P&$*oT>)b>Ntsl7fBJv|T5BybSG_Y0NnO!4gu-{J0}5!WZ47hoQ3q8JS!)e* zkEll#@KxIs=02$ARPm{46vp?b^C~90^;ozr2fsis(94+oz6b986cgaD>Gzldi8rw( zd6(wfc#oU}-@|uu58um!VBirx%6UG{qx>*fSl|gh&yze27M3In=lC)9IN&PSxWXR= z7jN(eA@AZ_*Rhl7g}jH@2jyRlK(-FQ|L+dgCH%9G>EKqNL1#0{4j`w~0#+-rRxQyy*^OG_KA=IX z4RQ;RE};&rdNFCNyD{k^*^uj_BI*fZ(pXg+q!mb2(Uwr7>B>n@)%ChVwnD7AI@VyZ z7pSes&DLGf|9b6K=(#8%cBdhGTran+CinJrh zZx>{Ax`O?~j2K1q$wXZ2cVZ?&L|IJ{Vx Date: Fri, 20 Aug 2021 10:37:08 -0700 Subject: [PATCH 062/205] Delete rec_to_nwb.log --- rec_to_nwb.log | 909374 ---------------------------------------------- 1 file changed, 909374 deletions(-) delete mode 100644 rec_to_nwb.log diff --git a/rec_to_nwb.log b/rec_to_nwb.log deleted file mode 100644 index f303f6335..000000000 --- a/rec_to_nwb.log +++ /dev/null @@ -1,909374 +0,0 @@ -2021-01-27 18:58:29,419 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:02:28,420 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:02:49,502 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:06:47,931 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:06:48,301 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 19:06:48,302 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 19:06:48,302 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 19:06:48,327 rec_to_binaries.core: INFO Extracting time... -2021-01-27 19:07:24,409 rec_to_binaries.core: INFO Making position directory... -2021-01-27 19:07:24,497 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 19:07:24,500 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 19:07:24,503 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 19:07:24,503 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 19:17:02,174 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:17:02,576 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 19:17:02,576 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 19:17:02,577 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 19:17:02,590 rec_to_binaries.core: INFO Extracting time... -2021-01-27 19:17:38,349 rec_to_binaries.core: INFO Making position directory... -2021-01-27 19:17:38,447 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 19:17:38,449 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 19:17:38,450 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 19:17:38,450 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 19:19:18,113 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:19:18,502 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 19:19:18,503 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 19:19:18,504 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 19:19:18,517 rec_to_binaries.core: INFO Extracting time... -2021-01-27 19:19:52,941 rec_to_binaries.core: INFO Making position directory... -2021-01-27 19:19:52,995 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 19:19:52,995 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 19:19:52,995 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 19:19:52,996 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 19:19:53,803 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-27 19:19:54,160 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 19:19:54,493 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 19:19:54,493 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 19:19:54,494 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 19:19:54,494 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 19:19:54,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 19:19:54,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 19:19:54,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 19:19:54,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 19:19:54,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 19:19:54,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 19:19:54,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 19:19:54,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 19:19:54,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 19:19:54,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 19:19:54,499 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 19:19:54,502 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 19:19:54,504 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 19:19:54,505 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140682214246800 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140682214246288 -Fields: - content: # -#% author: AC -#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 -#% same as branch_always_reward_no_revisit.sc -# -#%initialize constant vars -#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min -#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later -# -#%initialize updating vars -#int rewardPump = 0 %can take on values 7-12 in fxn 1 -#int rewardWell = 0 %can take on values 1-6 in fxn 4 -#int timeElapsed = 0 -#int totalPokes = 0 -#int totalRewards = 0 -#int contingency = -1 -#int count = 0 -#int loopInterval = 250 -#int trialThresh = 0 -#int timeMaxOut = 0 -# -#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being -#int leafProbs2 = 0 -#int leafProbs3 = 0 -#int leafProbs4 = 0 -#int leafProbs5 = 0 -#int leafProbs6 = 0 -# -#int countPokes1 = 0 -#int countPokes2 = 0 -#int countPokes3 = 0 -#int countPokes4 = 0 -#int countPokes5 = 0 -#int countPokes6 = 0 -# -#int countRewards1 = 0 -#int countRewards2 = 0 -#int countRewards3 = 0 -#int countRewards4 = 0 -#int countRewards5 = 0 -#int countRewards6 = 0 -# -#int sessionProbs1 = 0 -#int sessionProbs2 = 0 -#int sessionProbs3 = 0 -#int sessionProbs4 = 0 -#int sessionProbs5 = 0 -#int sessionProbs6 = 0 -# -#%give reward for certain duration after certain delay -#function 1 -# do in delayRewardPeriod -# portout[rewardPump] = 1 %start rewarding with this pump dio -# do in deliverPeriod -# portout[rewardPump] = 0 %stop rewarding with this pump dio -# end -# end -#end; -# -#%keep track of animal behavior and display for experimenter -#function 2 -# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... -# disp(contingency) -# disp(trialThresh) -# disp(timeMaxOut) -# disp(timeElapsed) %length of session thus far -# disp(totalPokes) %how many nonrepeated well visits thus far -# disp(totalRewards) %how many rewards collected thus far -# -# disp(countPokes1) %how many pokes at each well, 6x1 array turned str -# disp(countRewards1) %how many rewards collected per well -# disp(leafProbs1) %experimenter-determined probabilities of reward per well -# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke -# -# disp(countPokes2) -# disp(countRewards2) -# disp(leafProbs2) -# %disp(sessionProbs2) -# -# disp(countPokes3) -# disp(countRewards3) -# disp(leafProbs3) -# %disp(sessionProbs3) -# -# disp(countPokes4) -# disp(countRewards4) -# disp(leafProbs4) -# %disp(sessionProbs4) -# -# disp(countPokes5) -# disp(countRewards5) -# disp(leafProbs5) -# %disp(sessionProbs5) -# -# disp(countPokes6) -# disp(countRewards6) -# disp(leafProbs6) -# %disp(sessionProbs6) -#end; -# -# -#%tell the user that the contingency is complete -#function 3 -# disp('This contingency is over!') -#end; -# -#%end session -#function 4 -# while count < 50 do every loopInterval -# portout[1] = flip -# portout[2] = flip -# portout[3] = flip -# portout[4] = flip -# portout[5] = flip -# portout[6] = flip -# count = count+1 -# then do -# portout[1] = 0 -# portout[2] = 0 -# portout[3] = 0 -# portout[4] = 0 -# portout[5] = 0 -# portout[6] = 0 -# end -# disp('This session is complete!') -#end; -# -# -#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) -#callback portin[1] up -# disp('UP 1') -#end; -# -#callback portin[1] down -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# disp('UP 2') -#end; -# -#callback portin[2] down -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# disp('UP 3') -#end; -# -#callback portin[3] down -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# disp('UP 4') -#end; -# -#callback portin[4] down -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# disp('UP 5') -#end; -# -#callback portin[5] down -# disp('DOWN 5') -#end; -#callback portin[6] up -# disp('UP 6') -#end; -# -#callback portin[6] down -# disp('DOWN 6') -#end; -# -# -# -##author: AC -##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 -##contingency changes occur automatically after either a # of trials or # of minutes -#''' -#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur -#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. -# -#Basic structure: -#if nosepoke at a well -#if the nosepoke!= last nosepoke location -# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p -# trigger(fxn1) #deliver reward, and stop after reward duration -#display updated trial info -#''' -# -##import -#import numpy as np -#import re -#import time -#import math -#from tkinter import * -# -##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) -#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. -#trialThresh = 100 #per contingency -#timeMaxOut = 20 #per contingency, in mins -# -##set up wells and pumps dios -#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info -#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery -# -##variables to keep track of and update during behavior (global) -#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. -#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. -#timeElapsed = 0 #session length thus far in mins -#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. -#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) -#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward -#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 -#runningTrials = False #must say yes to saving data to turn this to true -# -##THIS FXN MUST BE NAMED 'callback'!! -#def callback(line): -# #when an event occurs out on the track, addScQtEvent will call this fxn -# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) -# pokeIn(re.findall(r'\d+',line)) -# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, -# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" -# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) -# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells -# -##when animal nosepokes and breaks beam -#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes -# global currLeaf -# global timeStart -# global leafWells -# global lastLeaf -# global countPokes -# global leafProbs -# global leafPumps -# global contingency -# global countRewards -# global runningTrials -# global timeElapsed -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# if currLeaf == -1: #if it's the first trial in the contingency -# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke -# #if timeElapsed >= timeMaxOut: -# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency -# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency -# #change. sort of defeats the purpose of the floor approach right now. -# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") -# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") -# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") -# timeStart = time.time() #start time for the contingency -# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency -# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") -# countPokes = np.array([0,0,0,0,0,0]) -# countRewards = np.array([0,0,0,0,0,0]) -# for i in range(len(countPokes)): #initialize all as zero -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# for i in range(len(countRewards)): #initialize all as zero -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 -# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump -# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well -# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf -# for i in range(len(countPokes)): -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") -# if np.random.random_sample() < leafProbs[contingency][currLeaf]: -# deliverReward(leafPumps[currLeaf]) -# -##deliver reward, called upon poking in a nonrepeated well -#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps -# global currLeaf -# global rewardPump -# global countRewards -# -# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use -# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward -# countRewards[currLeaf] += 1 #increment num of rewards at this location -# for i in range(len(countRewards)): -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") -# -##update lastLeaf and print out info about the trial if it was at a nonrepeated well -#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells -# global leafWells -# global currLeaf -# global lastLeaf -# global timeElapsed -# global timeStart -# global countPokes -# global countRewards -# global leafProbs -# global contingency -# global runningTrials -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# #if leafWells.index(int(dio[1])) != currLeaf -# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. -# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far -# timeElapsed = round((time.time()-timeStart)/60) -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log -# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn -# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. -# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): -# if contingency < len(leafProbs) - 1: -# currLeaf = -1 #to enable shifting to next contingency -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# timeElapsed = 0 -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# if contingency == len(leafProbs) - 1: -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# runningTrials = False #so no more rewards or anything happen on track -# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session -# -##gui to help remind user that should have saved data -#savingDisp = Tk() -# -#def yesSaving(): -# global runningTrials -# savingDisp.destroy() -# runningTrials=True -# -#def noSaving(): -# savingDisp.destroy() -# -#saveFrame1 = Frame(savingDisp) -#saveFrame1.pack(side = TOP) -# -#saveFrame2 = Frame(savingDisp) -#saveFrame2.pack(side = BOTTOM) -# -#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") -#LS0.pack() -# -#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) -#B1.pack(side = LEFT) -# -#B2 = Button(saveFrame2, text ="No", command = noSaving) -#B2.pack(side = LEFT) -# -#savingDisp.mainloop() -# -# -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94048 UP 1 -94048 1 0 -94058 DOWN 1 -94058 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94112 contingency = 0 -94112 trialThresh = 100 -94112 timeMaxOut = 20 -94112 timeElapsed = 0 -94112 totalPokes = 1 -94113 totalRewards = 0 -94113 countPokes1 = 1 -94114 countRewards1 = 0 -94114 leafProbs1 = 80 -94114 countPokes2 = 0 -94114 countRewards2 = 0 -94128 leafProbs2 = 20 -94129 countPokes3 = 0 -94129 countRewards3 = 0 -94130 leafProbs3 = 20 -94130 countPokes4 = 0 -94130 countRewards4 = 0 -94130 leafProbs4 = 50 -94131 countPokes5 = 0 -94131 countRewards5 = 0 -94132 leafProbs5 = 80 -94132 countPokes6 = 0 -94146 countRewards6 = 0 -94146 leafProbs6 = 50 -~~~ -95370 UP 1 -95370 1 0 -95396 DOWN 1 -95396 0 0 -95404 UP 1 -95404 1 0 -95415 DOWN 1 -95415 0 0 -95449 UP 1 -95449 1 0 -95507 DOWN 1 -95507 0 0 -95526 UP 1 -95526 1 0 -95527 DOWN 1 -95527 0 0 -95534 UP 1 -95534 1 0 -98011 DOWN 1 -98011 0 0 -109846 UP 6 -109846 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -109947 DOWN 6 -109947 0 0 -109954 UP 6 -109954 32 0 -~~~ -109967 contingency = 0 -109967 trialThresh = 100 -109968 timeMaxOut = 20 -109968 timeElapsed = 0 -109969 totalPokes = 2 -109969 totalRewards = 0 -109969 countPokes1 = 1 -109969 countRewards1 = 0 -109969 leafProbs1 = 80 -109970 countPokes2 = 0 -109970 countRewards2 = 0 -109984 leafProbs2 = 20 -109985 countPokes3 = 0 -109985 countRewards3 = 0 -109985 leafProbs3 = 20 -109985 countPokes4 = 0 -109985 countRewards4 = 0 -109986 leafProbs4 = 50 -109986 countPokes5 = 0 -109987 countRewards5 = 0 -109987 leafProbs5 = 80 -110001 countPokes6 = 1 -110001 countRewards6 = 0 -110001 leafProbs6 = 50 -~~~ -111783 DOWN 6 -111783 0 0 -111799 UP 6 -111799 32 0 -112400 DOWN 6 -112399 0 0 -115161 UP 5 -115161 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115185 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115485 16 0 -115577 DOWN 5 -115577 0 0 -~~~ -115603 contingency = 0 -115603 trialThresh = 100 -115604 timeMaxOut = 20 -115604 timeElapsed = 1 -115605 totalPokes = 3 -115605 totalRewards = 1 -115605 countPokes1 = 1 -115605 countRewards1 = 0 -115606 leafProbs1 = 80 -115606 countPokes2 = 0 -115607 countRewards2 = 0 -115620 leafProbs2 = 20 -115621 countPokes3 = 0 -115621 countRewards3 = 0 -115621 leafProbs3 = 20 -115621 countPokes4 = 0 -115622 countRewards4 = 0 -115622 leafProbs4 = 50 -115623 countPokes5 = 1 -115623 countRewards5 = 1 -115623 leafProbs5 = 80 -115637 countPokes6 = 1 -115637 countRewards6 = 0 -115637 leafProbs6 = 50 -~~~ -115638 UP 5 -115638 16 0 -118235 DOWN 5 -118235 0 0 -118252 UP 5 -118252 16 0 -118676 DOWN 5 -118676 0 0 -124414 UP 4 -124414 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124444 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124564 DOWN 4 -124564 0 512 -124571 UP 4 -124571 8 512 -~~~ -124590 contingency = 0 -124590 trialThresh = 100 -124591 timeMaxOut = 20 -124591 timeElapsed = 1 -124591 totalPokes = 4 -124591 totalRewards = 2 -124592 countPokes1 = 1 -124592 countRewards1 = 0 -124592 leafProbs1 = 80 -124593 countPokes2 = 0 -124593 countRewards2 = 0 -124607 leafProbs2 = 20 -124607 countPokes3 = 0 -124607 countRewards3 = 0 -124608 leafProbs3 = 20 -124608 countPokes4 = 1 -124609 countRewards4 = 1 -124609 leafProbs4 = 50 -124609 countPokes5 = 1 -124609 countRewards5 = 1 -124609 leafProbs5 = 80 -124623 countPokes6 = 1 -124623 countRewards6 = 0 -124624 leafProbs6 = 50 -~~~ -124744 8 0 -127285 DOWN 4 -127285 0 0 -128916 UP 3 -128916 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -131495 DOWN 3 -131495 0 0 -131506 UP 3 -131506 4 0 -~~~ -131522 contingency = 0 -131523 trialThresh = 100 -131523 timeMaxOut = 20 -131523 timeElapsed = 1 -131523 totalPokes = 5 -131524 totalRewards = 2 -131524 countPokes1 = 1 -131525 countRewards1 = 0 -131525 leafProbs1 = 80 -131525 countPokes2 = 0 -131525 countRewards2 = 0 -131539 leafProbs2 = 20 -131539 countPokes3 = 1 -131540 countRewards3 = 0 -131540 leafProbs3 = 20 -131541 countPokes4 = 1 -131541 countRewards4 = 1 -131541 leafProbs4 = 50 -131541 countPokes5 = 1 -131542 countRewards5 = 1 -131542 leafProbs5 = 80 -131556 countPokes6 = 1 -131556 countRewards6 = 0 -131557 leafProbs6 = 50 -~~~ -131829 DOWN 3 -131829 0 0 -131849 UP 3 -131849 4 0 -131922 DOWN 3 -131922 0 0 -134163 UP 4 -134163 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -134675 DOWN 4 -134675 0 0 -~~~ -134693 contingency = 0 -134693 trialThresh = 100 -134693 timeMaxOut = 20 -134694 timeElapsed = 1 -134694 totalPokes = 6 -134695 totalRewards = 2 -134695 countPokes1 = 1 -134695 countRewards1 = 0 -134695 leafProbs1 = 80 -134696 countPokes2 = 0 -134696 countRewards2 = 0 -134710 leafProbs2 = 20 -134710 countPokes3 = 1 -134711 countRewards3 = 0 -134711 leafProbs3 = 20 -134711 countPokes4 = 2 -134711 countRewards4 = 1 -134712 leafProbs4 = 50 -134712 countPokes5 = 1 -134713 countRewards5 = 1 -134713 leafProbs5 = 80 -134727 countPokes6 = 1 -134727 countRewards6 = 0 -134727 leafProbs6 = 50 -~~~ -136327 UP 3 -136327 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -137036 DOWN 3 -137036 0 0 -~~~ -137065 contingency = 0 -137065 trialThresh = 100 -137065 timeMaxOut = 20 -137066 timeElapsed = 1 -137066 totalPokes = 7 -137067 totalRewards = 2 -137067 countPokes1 = 1 -137067 countRewards1 = 0 -137067 leafProbs1 = 80 -137068 countPokes2 = 0 -137068 countRewards2 = 0 -137082 leafProbs2 = 20 -137082 countPokes3 = 2 -137083 countRewards3 = 0 -137083 leafProbs3 = 20 -137083 countPokes4 = 2 -137083 countRewards4 = 1 -137084 leafProbs4 = 50 -137084 countPokes5 = 1 -137085 countRewards5 = 1 -137085 leafProbs5 = 80 -137099 countPokes6 = 1 -137099 countRewards6 = 0 -137099 leafProbs6 = 50 -~~~ -143600 UP 5 -143600 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143854 DOWN 5 -143854 0 0 -~~~ -143877 contingency = 0 -143877 trialThresh = 100 -143877 timeMaxOut = 20 -143878 timeElapsed = 1 -143878 totalPokes = 8 -143879 totalRewards = 2 -143879 countPokes1 = 1 -143879 countRewards1 = 0 -143879 leafProbs1 = 80 -143880 countPokes2 = 0 -143880 countRewards2 = 0 -143894 leafProbs2 = 20 -143894 countPokes3 = 2 -143895 countRewards3 = 0 -143895 leafProbs3 = 20 -143895 countPokes4 = 2 -143895 countRewards4 = 1 -143896 leafProbs4 = 50 -143896 countPokes5 = 2 -143897 countRewards5 = 1 -143897 leafProbs5 = 80 -143911 countPokes6 = 1 -143911 countRewards6 = 0 -143911 leafProbs6 = 50 -~~~ -143911 UP 5 -143911 16 0 -144383 DOWN 5 -144383 0 0 -146591 UP 6 -146591 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146617 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146917 32 0 -147061 DOWN 6 -147061 0 0 -~~~ -147089 contingency = 0 -147090 trialThresh = 100 -147090 timeMaxOut = 20 -147091 timeElapsed = 1 -147091 totalPokes = 9 -147091 totalRewards = 3 -147091 countPokes1 = 1 -147092 countRewards1 = 0 -147092 leafProbs1 = 80 -147093 countPokes2 = 0 -147093 countRewards2 = 0 -147107 leafProbs2 = 20 -147107 countPokes3 = 2 -147107 countRewards3 = 0 -147107 leafProbs3 = 20 -147108 countPokes4 = 2 -147108 countRewards4 = 1 -147109 leafProbs4 = 50 -147109 countPokes5 = 2 -147109 countRewards5 = 1 -147109 leafProbs5 = 80 -147123 countPokes6 = 2 -147123 countRewards6 = 1 -147124 leafProbs6 = 50 -~~~ -147124 UP 6 -147124 32 0 -147150 DOWN 6 -147150 0 0 -147157 UP 6 -147157 32 0 -149454 DOWN 6 -149454 0 0 -160370 UP 1 -160370 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160397 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160522 DOWN 1 -160522 0 64 -160533 UP 1 -160533 1 64 -~~~ -160544 contingency = 0 -160544 trialThresh = 100 -160544 timeMaxOut = 20 -160545 timeElapsed = 2 -160545 totalPokes = 10 -160546 totalRewards = 4 -160546 countPokes1 = 2 -160546 countRewards1 = 1 -160546 leafProbs1 = 80 -160547 countPokes2 = 0 -160547 countRewards2 = 0 -160561 leafProbs2 = 20 -160561 countPokes3 = 2 -160562 countRewards3 = 0 -160562 leafProbs3 = 20 -160562 countPokes4 = 2 -160562 countRewards4 = 1 -160563 leafProbs4 = 50 -160563 countPokes5 = 2 -160564 countRewards5 = 1 -160564 leafProbs5 = 80 -160578 countPokes6 = 2 -160578 countRewards6 = 1 -160578 leafProbs6 = 50 -~~~ -160697 1 0 -163834 DOWN 1 -163834 0 0 -166987 UP 2 -166987 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -167144 DOWN 2 -167144 0 0 -167149 UP 2 -167149 2 0 -~~~ -167168 contingency = 0 -167168 trialThresh = 100 -167169 timeMaxOut = 20 -167169 timeElapsed = 2 -167170 totalPokes = 11 -167170 totalRewards = 4 -167170 countPokes1 = 2 -167170 countRewards1 = 1 -167171 leafProbs1 = 80 -167171 countPokes2 = 1 -167172 countRewards2 = 0 -167186 leafProbs2 = 20 -167186 countPokes3 = 2 -167186 countRewards3 = 0 -167186 leafProbs3 = 20 -167186 countPokes4 = 2 -167187 countRewards4 = 1 -167187 leafProbs4 = 50 -167188 countPokes5 = 2 -167188 countRewards5 = 1 -167188 leafProbs5 = 80 -167202 countPokes6 = 2 -167202 countRewards6 = 1 -167202 leafProbs6 = 50 -~~~ -169470 DOWN 2 -169470 0 0 -169499 UP 2 -169499 2 0 -169914 DOWN 2 -169914 0 0 -178210 UP 1 -178210 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178233 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178533 1 0 -181346 DOWN 1 -181346 0 0 -~~~ -181372 contingency = 0 -181372 trialThresh = 100 -181372 timeMaxOut = 20 -181373 timeElapsed = 2 -181373 totalPokes = 12 -181374 totalRewards = 5 -181374 countPokes1 = 3 -181374 countRewards1 = 2 -181374 leafProbs1 = 80 -181375 countPokes2 = 1 -181375 countRewards2 = 0 -181389 leafProbs2 = 20 -181389 countPokes3 = 2 -181390 countRewards3 = 0 -181390 leafProbs3 = 20 -181390 countPokes4 = 2 -181390 countRewards4 = 1 -181391 leafProbs4 = 50 -181391 countPokes5 = 2 -181392 countRewards5 = 1 -181392 leafProbs5 = 80 -181406 countPokes6 = 2 -181406 countRewards6 = 1 -181406 leafProbs6 = 50 -~~~ -184630 UP 2 -184630 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184804 DOWN 2 -184804 0 0 -184815 UP 2 -184815 2 0 -~~~ -184832 contingency = 0 -184832 trialThresh = 100 -184832 timeMaxOut = 20 -184832 timeElapsed = 2 -184833 totalPokes = 13 -184833 totalRewards = 5 -184834 countPokes1 = 3 -184834 countRewards1 = 2 -184834 leafProbs1 = 80 -184834 countPokes2 = 2 -184835 countRewards2 = 0 -184849 leafProbs2 = 20 -184849 countPokes3 = 2 -184850 countRewards3 = 0 -184850 leafProbs3 = 20 -184850 countPokes4 = 2 -184850 countRewards4 = 1 -184850 leafProbs4 = 50 -184851 countPokes5 = 2 -184851 countRewards5 = 1 -184852 leafProbs5 = 80 -184865 countPokes6 = 2 -184866 countRewards6 = 1 -184866 leafProbs6 = 50 -~~~ -185326 DOWN 2 -185326 0 0 -185333 UP 2 -185333 2 0 -185995 DOWN 2 -185995 0 0 -189960 UP 1 -189960 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190078 DOWN 1 -190078 0 0 -190080 UP 1 -190080 1 0 -~~~ -190098 contingency = 0 -190099 trialThresh = 100 -190099 timeMaxOut = 20 -190100 timeElapsed = 2 -190100 totalPokes = 14 -190100 totalRewards = 5 -190100 countPokes1 = 4 -190101 countRewards1 = 2 -190101 leafProbs1 = 80 -190101 countPokes2 = 2 -190102 countRewards2 = 0 -190116 leafProbs2 = 20 -190116 countPokes3 = 2 -190116 countRewards3 = 0 -190116 leafProbs3 = 20 -190117 countPokes4 = 2 -190117 countRewards4 = 1 -190118 leafProbs4 = 50 -190118 countPokes5 = 2 -190118 countRewards5 = 1 -190118 leafProbs5 = 80 -190132 countPokes6 = 2 -190132 countRewards6 = 1 -190132 leafProbs6 = 50 -~~~ -190133 DOWN 1 -190133 0 0 -190160 UP 1 -190160 1 0 -190248 DOWN 1 -190248 0 0 -190276 UP 1 -190276 1 0 -190356 DOWN 1 -190356 0 0 -190391 UP 1 -190391 1 0 -190481 DOWN 1 -190481 0 0 -190555 UP 1 -190555 1 0 -190570 DOWN 1 -190570 0 0 -190849 UP 1 -190849 1 0 -190908 DOWN 1 -190908 0 0 -193661 UP 2 -193661 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -193935 DOWN 2 -193935 0 0 -193938 UP 2 -193938 2 0 -~~~ -193959 contingency = 0 -193959 trialThresh = 100 -193960 timeMaxOut = 20 -193960 timeElapsed = 2 -193960 totalPokes = 15 -193960 totalRewards = 5 -193961 countPokes1 = 4 -193961 countRewards1 = 2 -193962 leafProbs1 = 80 -193962 countPokes2 = 3 -193962 countRewards2 = 0 -193976 leafProbs2 = 20 -193976 countPokes3 = 2 -193977 countRewards3 = 0 -193977 leafProbs3 = 20 -193977 countPokes4 = 2 -193978 countRewards4 = 1 -193978 leafProbs4 = 50 -193978 countPokes5 = 2 -193978 countRewards5 = 1 -193979 leafProbs5 = 80 -193992 countPokes6 = 2 -193993 countRewards6 = 1 -193993 leafProbs6 = 50 -~~~ -194100 DOWN 2 -194100 0 0 -196098 UP 1 -196098 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196123 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196423 1 0 -196514 DOWN 1 -196514 0 0 -196516 UP 1 -196516 1 0 -~~~ -196532 contingency = 0 -196532 trialThresh = 100 -196532 timeMaxOut = 20 -196533 timeElapsed = 3 -196533 totalPokes = 16 -196534 totalRewards = 6 -196534 countPokes1 = 5 -196534 countRewards1 = 3 -196534 leafProbs1 = 80 -196534 countPokes2 = 3 -196535 countRewards2 = 0 -196549 leafProbs2 = 20 -196549 countPokes3 = 2 -196550 countRewards3 = 0 -196550 leafProbs3 = 20 -196550 countPokes4 = 2 -196550 countRewards4 = 1 -196551 leafProbs4 = 50 -196551 countPokes5 = 2 -196551 countRewards5 = 1 -196552 leafProbs5 = 80 -196565 countPokes6 = 2 -196566 countRewards6 = 1 -196566 leafProbs6 = 50 -~~~ -198509 DOWN 1 -198509 0 0 -202035 UP 1 -202035 1 0 -202194 DOWN 1 -202194 0 0 -213522 UP 6 -213522 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -213903 DOWN 6 -213903 0 0 -213919 UP 6 -213919 32 0 -~~~ -213923 contingency = 0 -213923 trialThresh = 100 -213924 timeMaxOut = 20 -213924 timeElapsed = 3 -213925 totalPokes = 17 -213925 totalRewards = 6 -213925 countPokes1 = 5 -213925 countRewards1 = 3 -213926 leafProbs1 = 80 -213926 countPokes2 = 3 -213927 countRewards2 = 0 -213940 leafProbs2 = 20 -213941 countPokes3 = 2 -213941 countRewards3 = 0 -213941 leafProbs3 = 20 -213941 countPokes4 = 2 -213942 countRewards4 = 1 -213942 leafProbs4 = 50 -213943 countPokes5 = 2 -213943 countRewards5 = 1 -213943 leafProbs5 = 80 -213957 countPokes6 = 3 -213957 countRewards6 = 1 -213957 leafProbs6 = 50 -~~~ -213962 DOWN 6 -213962 0 0 -218705 UP 5 -218705 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -218741 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -219041 16 0 -220419 DOWN 5 -220419 0 0 -220425 UP 5 -220425 16 0 -~~~ -220436 contingency = 0 -220436 trialThresh = 100 -220437 timeMaxOut = 20 -220437 timeElapsed = 3 -220437 totalPokes = 18 -220437 totalRewards = 7 -220437 countPokes1 = 5 -220438 countRewards1 = 3 -220438 leafProbs1 = 80 -220439 countPokes2 = 3 -220439 countRewards2 = 0 -220453 leafProbs2 = 20 -220453 countPokes3 = 2 -220453 countRewards3 = 0 -220454 leafProbs3 = 20 -220454 countPokes4 = 2 -220455 countRewards4 = 1 -220455 leafProbs4 = 50 -220455 countPokes5 = 3 -220455 countRewards5 = 2 -220455 leafProbs5 = 80 -220469 countPokes6 = 3 -220469 countRewards6 = 1 -220470 leafProbs6 = 50 -~~~ -221126 DOWN 5 -221126 0 0 -221145 UP 5 -221145 16 0 -221557 DOWN 5 -221557 0 0 -225579 UP 6 -225579 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -225814 DOWN 6 -225814 0 0 -225835 UP 6 -225835 32 0 -~~~ -225843 contingency = 0 -225843 trialThresh = 100 -225843 timeMaxOut = 20 -225844 timeElapsed = 3 -225844 totalPokes = 19 -225845 totalRewards = 7 -225845 countPokes1 = 5 -225845 countRewards1 = 3 -225845 leafProbs1 = 80 -225846 countPokes2 = 3 -225846 countRewards2 = 0 -225860 leafProbs2 = 20 -225860 countPokes3 = 2 -225861 countRewards3 = 0 -225861 leafProbs3 = 20 -225861 countPokes4 = 2 -225861 countRewards4 = 1 -225862 leafProbs4 = 50 -225862 countPokes5 = 3 -225863 countRewards5 = 2 -225863 leafProbs5 = 80 -225877 countPokes6 = 4 -225877 countRewards6 = 1 -225877 leafProbs6 = 50 -~~~ -226005 DOWN 6 -226005 0 0 -226079 UP 6 -226079 32 0 -226211 DOWN 6 -226211 0 0 -226241 UP 6 -226241 32 0 -226290 DOWN 6 -226290 0 0 -226389 UP 6 -226389 32 0 -226584 DOWN 6 -226584 0 0 -226651 UP 6 -226651 32 0 -226788 DOWN 6 -226788 0 0 -230377 UP 5 -230377 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230409 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230619 DOWN 5 -230619 0 1024 -230632 UP 5 -230632 16 1024 -~~~ -230647 contingency = 0 -230647 trialThresh = 100 -230647 timeMaxOut = 20 -230647 timeElapsed = 3 -230648 totalPokes = 20 -230648 totalRewards = 8 -230649 countPokes1 = 5 -230649 countRewards1 = 3 -230649 leafProbs1 = 80 -230649 countPokes2 = 3 -230650 countRewards2 = 0 -230663 leafProbs2 = 20 -230664 countPokes3 = 2 -230664 countRewards3 = 0 -230665 leafProbs3 = 20 -230665 countPokes4 = 2 -230665 countRewards4 = 1 -230665 leafProbs4 = 50 -230666 countPokes5 = 4 -230666 countRewards5 = 3 -230667 leafProbs5 = 80 -230680 countPokes6 = 4 -230681 countRewards6 = 1 -230681 leafProbs6 = 50 -~~~ -230708 16 0 -232797 DOWN 5 -232796 0 0 -232802 UP 5 -232802 16 0 -232900 DOWN 5 -232900 0 0 -232928 UP 5 -232928 16 0 -233233 DOWN 5 -233233 0 0 -233256 UP 5 -233256 16 0 -233319 DOWN 5 -233319 0 0 -235867 UP 6 -235867 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -235898 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -236198 32 0 -238601 DOWN 6 -238601 0 0 -238614 UP 6 -238614 32 0 -~~~ -238631 contingency = 0 -238631 trialThresh = 100 -238631 timeMaxOut = 20 -238631 timeElapsed = 4 -238632 totalPokes = 21 -238632 totalRewards = 9 -238632 countPokes1 = 5 -238633 countRewards1 = 3 -238633 leafProbs1 = 80 -238633 countPokes2 = 3 -238633 countRewards2 = 0 -238647 leafProbs2 = 20 -238648 countPokes3 = 2 -238648 countRewards3 = 0 -238649 leafProbs3 = 20 -238649 countPokes4 = 2 -238649 countRewards4 = 1 -238649 leafProbs4 = 50 -238650 countPokes5 = 4 -238650 countRewards5 = 3 -238650 leafProbs5 = 80 -238664 countPokes6 = 5 -238664 countRewards6 = 2 -238665 leafProbs6 = 50 -~~~ -239049 DOWN 6 -239049 0 0 -250071 UP 1 -250071 1 0 -~~~ -~~~ -250097 DOWN 1 -250097 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250103 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250129 UP 1 -250129 1 64 -~~~ -250136 contingency = 0 -250137 trialThresh = 100 -250137 timeMaxOut = 20 -250137 timeElapsed = 4 -250137 totalPokes = 22 -250137 totalRewards = 10 -250138 countPokes1 = 6 -250138 countRewards1 = 4 -250139 leafProbs1 = 80 -250139 countPokes2 = 3 -250139 countRewards2 = 0 -250153 leafProbs2 = 20 -250153 countPokes3 = 2 -250154 countRewards3 = 0 -250154 leafProbs3 = 20 -250155 countPokes4 = 2 -250155 countRewards4 = 1 -250155 leafProbs4 = 50 -250155 countPokes5 = 4 -250156 countRewards5 = 3 -250156 leafProbs5 = 80 -250170 countPokes6 = 5 -250170 countRewards6 = 2 -250170 leafProbs6 = 50 -~~~ -250171 DOWN 1 -250171 0 64 -250204 UP 1 -250204 1 64 -250248 DOWN 1 -250248 0 64 -250280 UP 1 -250280 1 64 -250403 1 0 -250446 DOWN 1 -250446 0 0 -250455 UP 1 -250455 1 0 -253556 DOWN 1 -253556 0 0 -256084 UP 2 -256084 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256264 DOWN 2 -256264 0 0 -256267 UP 2 -256267 2 0 -~~~ -256282 contingency = 0 -256282 trialThresh = 100 -256282 timeMaxOut = 20 -256282 timeElapsed = 4 -256282 totalPokes = 23 -256283 totalRewards = 10 -256283 countPokes1 = 6 -256284 countRewards1 = 4 -256284 leafProbs1 = 80 -256284 countPokes2 = 4 -256284 countRewards2 = 0 -256298 leafProbs2 = 20 -256299 countPokes3 = 2 -256299 countRewards3 = 0 -256300 leafProbs3 = 20 -256300 countPokes4 = 2 -256300 countRewards4 = 1 -256300 leafProbs4 = 50 -256301 countPokes5 = 4 -256301 countRewards5 = 3 -256302 leafProbs5 = 80 -256315 countPokes6 = 5 -256316 countRewards6 = 2 -256316 leafProbs6 = 50 -~~~ -256546 DOWN 2 -256546 0 0 -256572 UP 2 -256572 2 0 -256748 DOWN 2 -256748 0 0 -258880 UP 1 -258880 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -258914 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -259214 1 0 -261848 DOWN 1 -261848 0 0 -~~~ -261868 contingency = 0 -261868 trialThresh = 100 -261868 timeMaxOut = 20 -261868 timeElapsed = 4 -261869 totalPokes = 24 -261869 totalRewards = 11 -261870 countPokes1 = 7 -261870 countRewards1 = 5 -261870 leafProbs1 = 80 -261870 countPokes2 = 4 -261870 countRewards2 = 0 -261884 leafProbs2 = 20 -261885 countPokes3 = 2 -261885 countRewards3 = 0 -261886 leafProbs3 = 20 -261886 countPokes4 = 2 -261886 countRewards4 = 1 -261886 leafProbs4 = 50 -261887 countPokes5 = 4 -261887 countRewards5 = 3 -261888 leafProbs5 = 80 -261901 countPokes6 = 5 -261902 countRewards6 = 2 -261902 leafProbs6 = 50 -~~~ -267560 UP 2 -267560 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -267886 DOWN 2 -267886 0 0 -267900 UP 2 -267900 2 0 -~~~ -267911 contingency = 0 -267911 trialThresh = 100 -267912 timeMaxOut = 20 -267912 timeElapsed = 4 -267912 totalPokes = 25 -267912 totalRewards = 11 -267913 countPokes1 = 7 -267913 countRewards1 = 5 -267914 leafProbs1 = 80 -267914 countPokes2 = 5 -267914 countRewards2 = 0 -267928 leafProbs2 = 20 -267928 countPokes3 = 2 -267928 countRewards3 = 0 -267929 leafProbs3 = 20 -267929 countPokes4 = 2 -267930 countRewards4 = 1 -267930 leafProbs4 = 50 -267930 countPokes5 = 4 -267930 countRewards5 = 3 -267931 leafProbs5 = 80 -267944 countPokes6 = 5 -267945 countRewards6 = 2 -267945 leafProbs6 = 50 -~~~ -267946 DOWN 2 -267946 0 0 -272470 UP 2 -272470 2 0 -272489 DOWN 2 -272489 0 0 -272498 UP 2 -272498 2 0 -272506 DOWN 2 -272506 0 0 -275002 UP 1 -275002 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275036 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275336 1 0 -277515 DOWN 1 -277515 0 0 -277520 UP 1 -277520 1 0 -~~~ -277532 contingency = 0 -277533 trialThresh = 100 -277533 timeMaxOut = 20 -277534 timeElapsed = 5 -277534 totalPokes = 26 -277534 totalRewards = 12 -277534 countPokes1 = 8 -277534 countRewards1 = 6 -277535 leafProbs1 = 80 -277535 countPokes2 = 5 -277536 countRewards2 = 0 -277550 leafProbs2 = 20 -277550 countPokes3 = 2 -277550 countRewards3 = 0 -277550 leafProbs3 = 20 -277551 countPokes4 = 2 -277551 countRewards4 = 1 -277552 leafProbs4 = 50 -277552 countPokes5 = 4 -277552 countRewards5 = 3 -277552 leafProbs5 = 80 -277566 countPokes6 = 5 -277566 countRewards6 = 2 -277566 leafProbs6 = 50 -~~~ -277832 DOWN 1 -277832 0 0 -284331 UP 1 -284331 1 0 -284497 DOWN 1 -284497 0 0 -290436 UP 2 -290436 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -291663 DOWN 2 -291663 0 0 -~~~ -291685 contingency = 0 -291686 trialThresh = 100 -291686 timeMaxOut = 20 -291686 timeElapsed = 5 -291686 totalPokes = 27 -291687 totalRewards = 12 -291687 countPokes1 = 8 -291688 countRewards1 = 6 -291688 leafProbs1 = 80 -291688 countPokes2 = 6 -291688 countRewards2 = 0 -291702 leafProbs2 = 20 -291702 countPokes3 = 2 -291703 countRewards3 = 0 -291703 leafProbs3 = 20 -291704 countPokes4 = 2 -291704 countRewards4 = 1 -291704 leafProbs4 = 50 -291704 countPokes5 = 4 -291705 countRewards5 = 3 -291705 leafProbs5 = 80 -291719 countPokes6 = 5 -291719 countRewards6 = 2 -291720 leafProbs6 = 50 -~~~ -298521 UP 1 -298521 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298560 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298859 1 0 -301302 DOWN 1 -301302 0 0 -301320 UP 1 -301320 1 0 -~~~ -301324 contingency = 0 -301324 trialThresh = 100 -301324 timeMaxOut = 20 -301324 timeElapsed = 5 -301325 totalPokes = 28 -301325 totalRewards = 13 -301326 countPokes1 = 9 -301326 countRewards1 = 7 -301326 leafProbs1 = 80 -301326 countPokes2 = 6 -301327 countRewards2 = 0 -301341 leafProbs2 = 20 -301341 countPokes3 = 2 -301342 countRewards3 = 0 -301342 leafProbs3 = 20 -301342 countPokes4 = 2 -301342 countRewards4 = 1 -301343 leafProbs4 = 50 -301343 countPokes5 = 4 -301343 countRewards5 = 3 -301344 leafProbs5 = 80 -301357 countPokes6 = 5 -301358 countRewards6 = 2 -301358 leafProbs6 = 50 -~~~ -301818 DOWN 1 -301818 0 0 -308157 UP 2 -308157 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -308409 DOWN 2 -308409 0 0 -~~~ -308433 contingency = 0 -308433 trialThresh = 100 -308433 timeMaxOut = 20 -308434 timeElapsed = 5 -308434 totalPokes = 29 -308435 totalRewards = 13 -308435 countPokes1 = 9 -308435 countRewards1 = 7 -308435 leafProbs1 = 80 -308436 countPokes2 = 7 -308436 countRewards2 = 0 -308450 leafProbs2 = 20 -308451 countPokes3 = 2 -308451 countRewards3 = 0 -308451 leafProbs3 = 20 -308451 countPokes4 = 2 -308452 countRewards4 = 1 -308452 leafProbs4 = 50 -308452 countPokes5 = 4 -308453 countRewards5 = 3 -308453 leafProbs5 = 80 -308467 countPokes6 = 5 -308467 countRewards6 = 2 -308467 leafProbs6 = 50 -~~~ -311726 UP 1 -311726 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -312211 DOWN 1 -312211 0 0 -~~~ -312317 contingency = 0 -312317 trialThresh = 100 -312318 timeMaxOut = 20 -312318 timeElapsed = 5 -312319 totalPokes = 30 -312319 totalRewards = 13 -312319 countPokes1 = 10 -312319 countRewards1 = 7 -312320 leafProbs1 = 80 -312320 countPokes2 = 7 -312321 countRewards2 = 0 -312335 leafProbs2 = 20 -312335 countPokes3 = 2 -312335 countRewards3 = 0 -312335 leafProbs3 = 20 -312335 countPokes4 = 2 -312336 countRewards4 = 1 -312336 leafProbs4 = 50 -312337 countPokes5 = 4 -312337 countRewards5 = 3 -312337 leafProbs5 = 80 -312351 countPokes6 = 5 -312351 countRewards6 = 2 -312351 leafProbs6 = 50 -~~~ -329565 UP 1 -329565 1 0 -329578 DOWN 1 -329578 0 0 -329607 UP 1 -329607 1 0 -329615 DOWN 1 -329615 0 0 -336849 UP 6 -336849 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -337375 DOWN 6 -337375 0 0 -~~~ -337402 contingency = 0 -337403 trialThresh = 100 -337403 timeMaxOut = 20 -337403 timeElapsed = 6 -337403 totalPokes = 31 -337404 totalRewards = 13 -337404 countPokes1 = 10 -337405 countRewards1 = 7 -337405 leafProbs1 = 80 -337405 countPokes2 = 7 -337405 countRewards2 = 0 -337419 leafProbs2 = 20 -337419 countPokes3 = 2 -337420 countRewards3 = 0 -337420 leafProbs3 = 20 -337421 countPokes4 = 2 -337421 countRewards4 = 1 -337421 leafProbs4 = 50 -337421 countPokes5 = 4 -337422 countRewards5 = 3 -337422 leafProbs5 = 80 -337436 countPokes6 = 6 -337436 countRewards6 = 2 -337437 leafProbs6 = 50 -~~~ -339595 UP 6 -339595 32 0 -339614 DOWN 6 -339614 0 0 -339917 UP 6 -339917 32 0 -340039 DOWN 6 -340039 0 0 -340062 UP 6 -340062 32 0 -341221 DOWN 6 -341221 0 0 -348806 UP 6 -348806 32 0 -349029 DOWN 6 -349029 0 0 -370690 UP 3 -370690 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -371347 DOWN 3 -371347 0 0 -~~~ -371366 contingency = 0 -371367 trialThresh = 100 -371367 timeMaxOut = 20 -371368 timeElapsed = 7 -371368 totalPokes = 32 -371368 totalRewards = 13 -371368 countPokes1 = 10 -371369 countRewards1 = 7 -371369 leafProbs1 = 80 -371370 countPokes2 = 7 -371370 countRewards2 = 0 -371384 leafProbs2 = 20 -371384 countPokes3 = 3 -371384 countRewards3 = 0 -371385 leafProbs3 = 20 -371385 countPokes4 = 2 -371386 countRewards4 = 1 -371386 leafProbs4 = 50 -371386 countPokes5 = 4 -371386 countRewards5 = 3 -371386 leafProbs5 = 80 -371400 countPokes6 = 6 -371400 countRewards6 = 2 -371401 leafProbs6 = 50 -~~~ -371401 UP 3 -371401 4 0 -371462 DOWN 3 -371462 0 0 -376503 UP 4 -376503 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376533 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376832 8 0 -379496 DOWN 4 -379496 0 0 -~~~ -379512 contingency = 0 -379512 trialThresh = 100 -379512 timeMaxOut = 20 -379512 timeElapsed = 7 -379512 totalPokes = 33 -379513 totalRewards = 14 -379513 countPokes1 = 10 -379514 countRewards1 = 7 -379514 leafProbs1 = 80 -379514 countPokes2 = 7 -379514 countRewards2 = 0 -379528 leafProbs2 = 20 -379529 countPokes3 = 3 -379529 countRewards3 = 0 -379530 leafProbs3 = 20 -379530 countPokes4 = 3 -379530 countRewards4 = 2 -379530 leafProbs4 = 50 -379531 countPokes5 = 4 -379531 countRewards5 = 3 -379532 leafProbs5 = 80 -379545 countPokes6 = 6 -379546 countRewards6 = 2 -379546 leafProbs6 = 50 -~~~ -379546 UP 4 -379546 8 0 -380063 DOWN 4 -380063 0 0 -380421 UP 4 -380421 8 0 -382496 DOWN 4 -382496 0 0 -387918 UP 3 -387918 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -388412 DOWN 3 -388412 0 0 -~~~ -388430 contingency = 0 -388430 trialThresh = 100 -388430 timeMaxOut = 20 -388431 timeElapsed = 7 -388431 totalPokes = 34 -388432 totalRewards = 14 -388432 countPokes1 = 10 -388432 countRewards1 = 7 -388432 leafProbs1 = 80 -388433 countPokes2 = 7 -388433 countRewards2 = 0 -388447 leafProbs2 = 20 -388448 countPokes3 = 4 -388448 countRewards3 = 0 -388448 leafProbs3 = 20 -388448 countPokes4 = 3 -388448 countRewards4 = 2 -388449 leafProbs4 = 50 -388449 countPokes5 = 4 -388450 countRewards5 = 3 -388450 leafProbs5 = 80 -388464 countPokes6 = 6 -388464 countRewards6 = 2 -388464 leafProbs6 = 50 -~~~ -390881 UP 4 -390881 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -390913 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391213 8 0 -393870 DOWN 4 -393870 0 0 -~~~ -393894 contingency = 0 -393894 trialThresh = 100 -393894 timeMaxOut = 20 -393894 timeElapsed = 7 -393895 totalPokes = 35 -393895 totalRewards = 15 -393895 countPokes1 = 10 -393896 countRewards1 = 7 -393896 leafProbs1 = 80 -393896 countPokes2 = 7 -393896 countRewards2 = 0 -393910 leafProbs2 = 20 -393911 countPokes3 = 4 -393911 countRewards3 = 0 -393912 leafProbs3 = 20 -393912 countPokes4 = 4 -393912 countRewards4 = 3 -393912 leafProbs4 = 50 -393913 countPokes5 = 4 -393913 countRewards5 = 3 -393914 leafProbs5 = 80 -393927 countPokes6 = 6 -393928 countRewards6 = 2 -393928 leafProbs6 = 50 -~~~ -396968 UP 3 -396968 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -396991 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -397291 4 0 -397330 DOWN 3 -397330 0 0 -397342 UP 3 -397342 4 0 -~~~ -397350 contingency = 0 -397350 trialThresh = 100 -397351 timeMaxOut = 20 -397351 timeElapsed = 8 -397352 totalPokes = 36 -397352 totalRewards = 16 -397352 countPokes1 = 10 -397352 countRewards1 = 7 -397353 leafProbs1 = 80 -397353 countPokes2 = 7 -397353 countRewards2 = 0 -397368 leafProbs2 = 20 -397368 countPokes3 = 5 -397368 countRewards3 = 1 -397368 leafProbs3 = 20 -397368 countPokes4 = 4 -397369 countRewards4 = 3 -397369 leafProbs4 = 50 -397370 countPokes5 = 4 -397370 countRewards5 = 3 -397370 leafProbs5 = 80 -397384 countPokes6 = 6 -397384 countRewards6 = 2 -397384 leafProbs6 = 50 -~~~ -397422 DOWN 3 -397422 0 0 -397432 UP 3 -397432 4 0 -397510 DOWN 3 -397510 0 0 -397514 UP 3 -397514 4 0 -400532 DOWN 3 -400532 0 0 -419715 UP 4 -419715 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -419745 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420045 8 0 -422470 DOWN 4 -422470 0 0 -422484 UP 4 -422484 8 0 -~~~ -422499 contingency = 0 -422499 trialThresh = 100 -422499 timeMaxOut = 20 -422499 timeElapsed = 8 -422500 totalPokes = 37 -422500 totalRewards = 17 -422501 countPokes1 = 10 -422501 countRewards1 = 7 -422501 leafProbs1 = 80 -422501 countPokes2 = 7 -422502 countRewards2 = 0 -422516 leafProbs2 = 20 -422516 countPokes3 = 5 -422517 countRewards3 = 1 -422517 leafProbs3 = 20 -422517 countPokes4 = 5 -422517 countRewards4 = 4 -422517 leafProbs4 = 50 -422518 countPokes5 = 4 -422518 countRewards5 = 3 -422519 leafProbs5 = 80 -422532 countPokes6 = 6 -422533 countRewards6 = 2 -422533 leafProbs6 = 50 -~~~ -423017 DOWN 4 -423017 0 0 -427069 UP 3 -427069 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427094 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427239 DOWN 3 -427239 0 256 -427241 UP 3 -427241 4 256 -~~~ -427264 contingency = 0 -427264 trialThresh = 100 -427264 timeMaxOut = 20 -427265 timeElapsed = 8 -427265 totalPokes = 38 -427265 totalRewards = 18 -427265 countPokes1 = 10 -427266 countRewards1 = 7 -427266 leafProbs1 = 80 -427267 countPokes2 = 7 -427267 countRewards2 = 0 -427281 leafProbs2 = 20 -427281 countPokes3 = 6 -427281 countRewards3 = 2 -427282 leafProbs3 = 20 -427282 countPokes4 = 5 -427283 countRewards4 = 4 -427283 leafProbs4 = 50 -427283 countPokes5 = 4 -427283 countRewards5 = 3 -427284 leafProbs5 = 80 -427297 countPokes6 = 6 -427298 countRewards6 = 2 -427298 leafProbs6 = 50 -~~~ -427394 4 0 -428859 DOWN 3 -428859 0 0 -428870 UP 3 -428870 4 0 -430500 DOWN 3 -430500 0 0 -430508 UP 3 -430508 4 0 -430526 DOWN 3 -430526 0 0 -430529 UP 3 -430529 4 0 -430591 DOWN 3 -430591 0 0 -430598 UP 3 -430598 4 0 -430616 DOWN 3 -430616 0 0 -430625 UP 3 -430625 4 0 -430632 DOWN 3 -430632 0 0 -430643 UP 3 -430643 4 0 -430705 DOWN 3 -430705 0 0 -430716 UP 3 -430716 4 0 -430743 DOWN 3 -430743 0 0 -430751 UP 3 -430751 4 0 -430764 DOWN 3 -430764 0 0 -430767 UP 3 -430767 4 0 -430813 DOWN 3 -430813 0 0 -430823 UP 3 -430823 4 0 -430837 DOWN 3 -430837 0 0 -430847 UP 3 -430847 4 0 -430937 DOWN 3 -430937 0 0 -438029 UP 4 -438029 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -438640 DOWN 4 -438640 0 0 -~~~ -438656 contingency = 0 -438656 trialThresh = 100 -438657 timeMaxOut = 20 -438657 timeElapsed = 9 -438657 totalPokes = 39 -438657 totalRewards = 18 -438658 countPokes1 = 10 -438658 countRewards1 = 7 -438659 leafProbs1 = 80 -438659 countPokes2 = 7 -438659 countRewards2 = 0 -438673 leafProbs2 = 20 -438673 countPokes3 = 6 -438674 countRewards3 = 2 -438674 leafProbs3 = 20 -438675 countPokes4 = 6 -438675 countRewards4 = 4 -438675 leafProbs4 = 50 -438675 countPokes5 = 4 -438675 countRewards5 = 3 -438676 leafProbs5 = 80 -438690 countPokes6 = 6 -438690 countRewards6 = 2 -438690 leafProbs6 = 50 -~~~ -440259 UP 3 -440259 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -440484 DOWN 3 -440484 0 0 -~~~ -440505 UP 3 -440505 4 0 -440506 contingency = 0 -440506 trialThresh = 100 -440507 timeMaxOut = 20 -440507 timeElapsed = 9 -440507 totalPokes = 40 -440507 totalRewards = 18 -440508 countPokes1 = 10 -440508 countRewards1 = 7 -440508 leafProbs1 = 80 -440509 countPokes2 = 7 -440523 countRewards2 = 0 -440523 leafProbs2 = 20 -440523 countPokes3 = 7 -440523 countRewards3 = 2 -440524 leafProbs3 = 20 -440524 countPokes4 = 6 -440525 countRewards4 = 4 -440525 leafProbs4 = 50 -440525 countPokes5 = 4 -440525 countRewards5 = 3 -440539 leafProbs5 = 80 -440539 countPokes6 = 6 -440540 countRewards6 = 2 -440540 leafProbs6 = 50 -~~~ -440595 DOWN 3 -440595 0 0 -440601 UP 3 -440601 4 0 -440618 DOWN 3 -440618 0 0 -440634 UP 3 -440634 4 0 -440725 DOWN 3 -440725 0 0 -440729 UP 3 -440729 4 0 -440749 DOWN 3 -440749 0 0 -440787 UP 3 -440787 4 0 -441093 DOWN 3 -441093 0 0 -441136 UP 3 -441136 4 0 -441147 DOWN 3 -441147 0 0 -441287 UP 3 -441287 4 0 -441509 DOWN 3 -441509 0 0 -444557 UP 4 -444557 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -444894 DOWN 4 -444894 0 0 -~~~ -444911 contingency = 0 -444911 trialThresh = 100 -444911 timeMaxOut = 20 -444911 timeElapsed = 9 -444912 totalPokes = 41 -444912 totalRewards = 18 -444913 countPokes1 = 10 -444913 countRewards1 = 7 -444913 leafProbs1 = 80 -444913 countPokes2 = 7 -444914 countRewards2 = 0 -444928 leafProbs2 = 20 -444928 countPokes3 = 7 -444929 countRewards3 = 2 -444929 leafProbs3 = 20 -444929 countPokes4 = 7 -444929 countRewards4 = 4 -444930 leafProbs4 = 50 -444930 countPokes5 = 4 -444931 countRewards5 = 3 -444931 leafProbs5 = 80 -444945 countPokes6 = 6 -444945 countRewards6 = 2 -444945 leafProbs6 = 50 -~~~ -451529 UP 6 -451529 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -452216 DOWN 6 -452216 0 0 -~~~ -452237 contingency = 0 -452237 trialThresh = 100 -452238 timeMaxOut = 20 -452238 timeElapsed = 9 -452239 totalPokes = 42 -452239 totalRewards = 18 -452239 countPokes1 = 10 -452239 countRewards1 = 7 -452240 leafProbs1 = 80 -452240 countPokes2 = 7 -452241 countRewards2 = 0 -452255 leafProbs2 = 20 -452255 countPokes3 = 7 -452255 countRewards3 = 2 -452255 leafProbs3 = 20 -452256 countPokes4 = 7 -452256 countRewards4 = 4 -452257 leafProbs4 = 50 -452257 countPokes5 = 4 -452257 countRewards5 = 3 -452257 leafProbs5 = 80 -452271 countPokes6 = 7 -452271 countRewards6 = 2 -452271 leafProbs6 = 50 -~~~ -452272 UP 6 -452272 32 0 -452323 DOWN 6 -452323 0 0 -456828 UP 6 -456828 32 0 -457039 DOWN 6 -457039 0 0 -458402 UP 5 -458402 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458432 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458732 16 0 -458786 DOWN 5 -458786 0 0 -458790 UP 5 -458790 16 0 -~~~ -458817 contingency = 0 -458817 trialThresh = 100 -458817 timeMaxOut = 20 -458817 timeElapsed = 9 -458818 totalPokes = 43 -458818 totalRewards = 19 -458819 countPokes1 = 10 -458819 countRewards1 = 7 -458819 leafProbs1 = 80 -458819 countPokes2 = 7 -458820 countRewards2 = 0 -458834 leafProbs2 = 20 -458834 countPokes3 = 7 -458835 countRewards3 = 2 -458835 leafProbs3 = 20 -458835 countPokes4 = 7 -458835 countRewards4 = 4 -458836 leafProbs4 = 50 -458836 countPokes5 = 5 -458837 countRewards5 = 4 -458837 leafProbs5 = 80 -458850 countPokes6 = 7 -458851 countRewards6 = 2 -458851 leafProbs6 = 50 -~~~ -460863 DOWN 5 -460863 0 0 -460877 UP 5 -460877 16 0 -461283 DOWN 5 -461283 0 0 -461306 UP 5 -461306 16 0 -461377 DOWN 5 -461377 0 0 -468674 UP 6 -468674 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469094 DOWN 6 -469094 0 0 -~~~ -469120 contingency = 0 -469120 trialThresh = 100 -469120 timeMaxOut = 20 -469121 timeElapsed = 9 -469121 totalPokes = 44 -469122 totalRewards = 19 -469122 countPokes1 = 10 -469122 countRewards1 = 7 -469122 leafProbs1 = 80 -469123 countPokes2 = 7 -469123 countRewards2 = 0 -469137 leafProbs2 = 20 -469138 countPokes3 = 7 -469138 countRewards3 = 2 -469138 leafProbs3 = 20 -469138 countPokes4 = 7 -469138 countRewards4 = 4 -469139 leafProbs4 = 50 -469139 countPokes5 = 5 -469140 countRewards5 = 4 -469140 leafProbs5 = 80 -469154 countPokes6 = 8 -469154 countRewards6 = 2 -469154 leafProbs6 = 50 -~~~ -474207 UP 6 -474207 32 0 -474302 DOWN 6 -474302 0 0 -474380 UP 6 -474380 32 0 -474621 DOWN 6 -474621 0 0 -482030 UP 1 -482030 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -482234 DOWN 1 -482234 0 0 -~~~ -482258 contingency = 0 -482258 trialThresh = 100 -482258 timeMaxOut = 20 -482258 timeElapsed = 10 -482259 totalPokes = 45 -482259 totalRewards = 19 -482260 countPokes1 = 11 -482260 countRewards1 = 7 -482260 leafProbs1 = 80 -482260 countPokes2 = 7 -482261 countRewards2 = 0 -482275 leafProbs2 = 20 -482275 countPokes3 = 7 -482276 countRewards3 = 2 -482276 leafProbs3 = 20 -482276 countPokes4 = 7 -482276 countRewards4 = 4 -482277 leafProbs4 = 50 -482277 countPokes5 = 5 -482278 countRewards5 = 4 -482278 leafProbs5 = 80 -482292 countPokes6 = 8 -482292 countRewards6 = 2 -482292 leafProbs6 = 50 -~~~ -482292 UP 1 -482292 1 0 -482558 DOWN 1 -482558 0 0 -482585 UP 1 -482585 1 0 -482683 DOWN 1 -482683 0 0 -482718 UP 1 -482718 1 0 -482744 DOWN 1 -482744 0 0 -482821 UP 1 -482821 1 0 -482842 DOWN 1 -482842 0 0 -482905 UP 1 -482905 1 0 -482939 DOWN 1 -482939 0 0 -498133 UP 1 -498133 1 0 -498150 DOWN 1 -498150 0 0 -498596 UP 1 -498596 1 0 -498878 DOWN 1 -498878 0 0 -508278 UP 1 -508278 1 0 -508469 DOWN 1 -508469 0 0 -508616 UP 1 -508616 1 0 -508860 DOWN 1 -508860 0 0 -518791 UP 2 -518791 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -519385 DOWN 2 -519385 0 0 -~~~ -519406 contingency = 0 -519406 trialThresh = 100 -519407 timeMaxOut = 20 -519407 timeElapsed = 11 -519407 totalPokes = 46 -519407 totalRewards = 19 -519408 countPokes1 = 11 -519408 countRewards1 = 7 -519409 leafProbs1 = 80 -519409 countPokes2 = 8 -519409 countRewards2 = 0 -519423 leafProbs2 = 20 -519423 countPokes3 = 7 -519424 countRewards3 = 2 -519424 leafProbs3 = 20 -519425 countPokes4 = 7 -519425 countRewards4 = 4 -519425 leafProbs4 = 50 -519425 countPokes5 = 5 -519425 countRewards5 = 4 -519426 leafProbs5 = 80 -519439 countPokes6 = 8 -519440 countRewards6 = 2 -519440 leafProbs6 = 50 -~~~ -519441 UP 2 -519441 2 0 -519447 DOWN 2 -519447 0 0 -524357 UP 1 -524357 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524378 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524678 1 0 -524797 DOWN 1 -524797 0 0 -~~~ -524815 contingency = 0 -524815 trialThresh = 100 -524816 timeMaxOut = 20 -524816 timeElapsed = 11 -524817 totalPokes = 47 -524817 totalRewards = 20 -524817 countPokes1 = 12 -524817 countRewards1 = 8 -524817 leafProbs1 = 80 -524818 countPokes2 = 8 -524818 countRewards2 = 0 -524833 leafProbs2 = 20 -524833 countPokes3 = 7 -524833 countRewards3 = 2 -524833 leafProbs3 = 20 -524833 countPokes4 = 7 -524834 countRewards4 = 4 -524834 leafProbs4 = 50 -524835 countPokes5 = 5 -524835 countRewards5 = 4 -524835 leafProbs5 = 80 -524849 countPokes6 = 8 -524849 countRewards6 = 2 -524849 leafProbs6 = 50 -~~~ -524850 UP 1 -524850 1 0 -524863 DOWN 1 -524863 0 0 -524873 UP 1 -524873 1 0 -527968 DOWN 1 -527968 0 0 -527980 UP 1 -527980 1 0 -528079 DOWN 1 -528079 0 0 -528109 UP 1 -528109 1 0 -528210 DOWN 1 -528210 0 0 -528221 UP 1 -528221 1 0 -528322 DOWN 1 -528322 0 0 -528348 UP 1 -528348 1 0 -528356 DOWN 1 -528356 0 0 -528365 UP 1 -528365 1 0 -528411 DOWN 1 -528411 0 0 -533697 UP 1 -533697 1 0 -533887 DOWN 1 -533887 0 0 -533943 UP 1 -533943 1 0 -535917 DOWN 1 -535917 0 0 -536171 UP 1 -536171 1 0 -536181 DOWN 1 -536181 0 0 -540135 UP 1 -540135 1 0 -540396 DOWN 1 -540396 0 0 -544774 UP 1 -544774 1 0 -544951 DOWN 1 -544951 0 0 -545039 UP 1 -545039 1 0 -545129 DOWN 1 -545129 0 0 -546501 UP 1 -546501 1 0 -546595 DOWN 1 -546595 0 0 -562134 UP 1 -562134 1 0 -562562 DOWN 1 -562562 0 0 -574774 UP 6 -574774 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -574832 DOWN 6 -574832 0 0 -~~~ -574860 contingency = 0 -574860 trialThresh = 100 -574861 timeMaxOut = 20 -574861 timeElapsed = 12 -574862 totalPokes = 48 -574862 totalRewards = 20 -574862 countPokes1 = 12 -574862 countRewards1 = 8 -574863 leafProbs1 = 80 -574863 countPokes2 = 8 -574864 countRewards2 = 0 -574878 leafProbs2 = 20 -574878 countPokes3 = 7 -574878 countRewards3 = 2 -574878 leafProbs3 = 20 -574879 countPokes4 = 7 -574879 countRewards4 = 4 -574879 leafProbs4 = 50 -574880 countPokes5 = 5 -574880 countRewards5 = 4 -574880 leafProbs5 = 80 -574894 countPokes6 = 9 -574894 countRewards6 = 2 -574894 leafProbs6 = 50 -~~~ -574895 UP 6 -574895 32 0 -574983 DOWN 6 -574983 0 0 -575020 UP 6 -575020 32 0 -575089 DOWN 6 -575089 0 0 -575126 UP 6 -575126 32 0 -575149 DOWN 6 -575149 0 0 -577744 UP 6 -577744 32 0 -577748 DOWN 6 -577748 0 0 -578154 UP 6 -578154 32 0 -579354 DOWN 6 -579354 0 0 -579382 UP 6 -579382 32 0 -579514 DOWN 6 -579514 0 0 -580826 UP 6 -580826 32 0 -581310 DOWN 6 -581310 0 0 -581654 UP 6 -581654 32 0 -581711 DOWN 6 -581711 0 0 -582734 UP 6 -582733 32 0 -582748 DOWN 6 -582748 0 0 -585351 UP 6 -585351 32 0 -587498 DOWN 6 -587498 0 0 -595639 UP 1 -595639 1 0 -595653 DOWN 1 -595653 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595663 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595676 contingency = 0 -595676 trialThresh = 100 -595676 timeMaxOut = 20 -595677 timeElapsed = 13 -595677 totalPokes = 49 -595678 totalRewards = 21 -595678 countPokes1 = 13 -595678 countRewards1 = 9 -595678 leafProbs1 = 80 -595679 countPokes2 = 8 -595679 countRewards2 = 0 -595693 leafProbs2 = 20 -595694 countPokes3 = 7 -595694 countRewards3 = 2 -595694 leafProbs3 = 20 -595694 countPokes4 = 7 -595694 countRewards4 = 4 -595695 leafProbs4 = 50 -595695 countPokes5 = 5 -595696 countRewards5 = 4 -595696 leafProbs5 = 80 -595710 countPokes6 = 9 -595710 countRewards6 = 2 -595710 leafProbs6 = 50 -~~~ -595710 UP 1 -595710 1 64 -595807 DOWN 1 -595807 0 64 -595820 UP 1 -595820 1 64 -595874 DOWN 1 -595874 0 64 -595886 UP 1 -595886 1 64 -595963 1 0 -599155 DOWN 1 -599155 0 0 -599164 UP 1 -599164 1 0 -599808 DOWN 1 -599808 0 0 -688756 UP 6 -688756 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688779 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688956 DOWN 6 -688956 0 2048 -~~~ -688973 contingency = 0 -688973 trialThresh = 100 -688974 timeMaxOut = 20 -688974 timeElapsed = 15 -688974 totalPokes = 50 -688974 totalRewards = 22 -688975 countPokes1 = 13 -688975 countRewards1 = 9 -688976 leafProbs1 = 80 -688976 countPokes2 = 8 -688976 countRewards2 = 0 -688990 leafProbs2 = 20 -688990 countPokes3 = 7 -688991 countRewards3 = 2 -688991 leafProbs3 = 20 -688992 countPokes4 = 7 -688992 countRewards4 = 4 -688992 leafProbs4 = 50 -688992 countPokes5 = 5 -688993 countRewards5 = 4 -688993 leafProbs5 = 80 -689007 countPokes6 = 10 -689007 countRewards6 = 3 -689007 leafProbs6 = 50 -~~~ -689008 UP 6 -689008 32 2048 -689079 32 0 -692128 DOWN 6 -692128 0 0 -692143 UP 6 -692143 32 0 -692685 DOWN 6 -692685 0 0 -698048 UP 6 -698048 32 0 -703204 DOWN 6 -703204 0 0 -704795 UP 5 -704795 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704833 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704998 DOWN 5 -704998 0 1024 -~~~ -705014 contingency = 0 -705014 trialThresh = 100 -705014 timeMaxOut = 20 -705015 timeElapsed = 15 -705015 totalPokes = 51 -705016 totalRewards = 23 -705016 countPokes1 = 13 -705016 countRewards1 = 9 -705016 leafProbs1 = 80 -705017 countPokes2 = 8 -705017 countRewards2 = 0 -705031 leafProbs2 = 20 -705032 countPokes3 = 7 -705032 countRewards3 = 2 -705032 leafProbs3 = 20 -705032 countPokes4 = 7 -705033 countRewards4 = 4 -705033 leafProbs4 = 50 -705033 countPokes5 = 6 -705034 countRewards5 = 5 -705034 leafProbs5 = 80 -705048 countPokes6 = 10 -705048 countRewards6 = 3 -705048 leafProbs6 = 50 -~~~ -705048 UP 5 -705048 16 1024 -705133 16 0 -707856 DOWN 5 -707856 0 0 -707859 UP 5 -707859 16 0 -708389 DOWN 5 -708388 0 0 -708430 UP 5 -708430 16 0 -708506 DOWN 5 -708506 0 0 -708517 UP 5 -708517 16 0 -708729 DOWN 5 -708729 0 0 -708753 UP 5 -708753 16 0 -708838 DOWN 5 -708838 0 0 -708870 UP 5 -708870 16 0 -708943 DOWN 5 -708943 0 0 -712658 UP 6 -712658 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712691 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712856 DOWN 6 -712856 0 2048 -712886 UP 6 -712886 32 2048 -~~~ -712891 contingency = 0 -712892 trialThresh = 100 -712892 timeMaxOut = 20 -712892 timeElapsed = 15 -712892 totalPokes = 52 -712893 totalRewards = 24 -712893 countPokes1 = 13 -712894 countRewards1 = 9 -712894 leafProbs1 = 80 -712894 countPokes2 = 8 -712894 countRewards2 = 0 -712908 leafProbs2 = 20 -712909 countPokes3 = 7 -712909 countRewards3 = 2 -712910 leafProbs3 = 20 -712910 countPokes4 = 7 -712910 countRewards4 = 4 -712910 leafProbs4 = 50 -712910 countPokes5 = 6 -712911 countRewards5 = 5 -712911 leafProbs5 = 80 -712925 countPokes6 = 11 -712925 countRewards6 = 4 -712926 leafProbs6 = 50 -~~~ -712990 32 0 -716085 DOWN 6 -716085 0 0 -716094 UP 6 -716094 32 0 -716526 DOWN 6 -716526 0 0 -725598 UP 1 -725598 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725628 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725712 DOWN 1 -725712 0 64 -~~~ -725726 contingency = 0 -725726 trialThresh = 100 -725727 timeMaxOut = 20 -725727 timeElapsed = 16 -725728 totalPokes = 53 -725728 totalRewards = 25 -725728 countPokes1 = 14 -725728 countRewards1 = 10 -725729 leafProbs1 = 80 -725729 countPokes2 = 8 -725729 countRewards2 = 0 -725744 leafProbs2 = 20 -725744 countPokes3 = 7 -725744 countRewards3 = 2 -725744 leafProbs3 = 20 -725745 countPokes4 = 7 -725745 countRewards4 = 4 -725746 leafProbs4 = 50 -725746 countPokes5 = 6 -725746 countRewards5 = 5 -725746 leafProbs5 = 80 -725760 countPokes6 = 11 -725760 countRewards6 = 4 -725760 leafProbs6 = 50 -~~~ -725761 UP 1 -725761 1 64 -725780 DOWN 1 -725779 0 64 -725790 UP 1 -725790 1 64 -725928 1 0 -725996 DOWN 1 -725996 0 0 -726010 UP 1 -726010 1 0 -729338 DOWN 1 -729338 0 0 -734564 UP 1 -734564 1 0 -734740 DOWN 1 -734740 0 0 -758750 UP 2 -758750 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -758998 DOWN 2 -758998 0 0 -759011 UP 2 -759011 2 0 -~~~ -759026 contingency = 0 -759026 trialThresh = 100 -759027 timeMaxOut = 20 -759027 timeElapsed = 17 -759027 totalPokes = 54 -759027 totalRewards = 25 -759028 countPokes1 = 14 -759028 countRewards1 = 10 -759029 leafProbs1 = 80 -759029 countPokes2 = 9 -759029 countRewards2 = 0 -759043 leafProbs2 = 20 -759043 countPokes3 = 7 -759044 countRewards3 = 2 -759044 leafProbs3 = 20 -759045 countPokes4 = 7 -759045 countRewards4 = 4 -759045 leafProbs4 = 50 -759045 countPokes5 = 6 -759046 countRewards5 = 5 -759046 leafProbs5 = 80 -759060 countPokes6 = 11 -759060 countRewards6 = 4 -759061 leafProbs6 = 50 -~~~ -759247 DOWN 2 -759247 0 0 -764741 UP 2 -764741 2 0 -764877 DOWN 2 -764877 0 0 -768238 UP 1 -768238 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768267 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768567 1 0 -769995 DOWN 1 -769995 0 0 -770003 UP 1 -770003 1 0 -~~~ -770020 contingency = 0 -770021 trialThresh = 100 -770021 timeMaxOut = 20 -770021 timeElapsed = 17 -770021 totalPokes = 55 -770022 totalRewards = 26 -770022 countPokes1 = 15 -770023 countRewards1 = 11 -770023 leafProbs1 = 80 -770023 countPokes2 = 9 -770023 countRewards2 = 0 -770037 leafProbs2 = 20 -770038 countPokes3 = 7 -770038 countRewards3 = 2 -770039 leafProbs3 = 20 -770039 countPokes4 = 7 -770039 countRewards4 = 4 -770039 leafProbs4 = 50 -770040 countPokes5 = 6 -770040 countRewards5 = 5 -770041 leafProbs5 = 80 -770054 countPokes6 = 11 -770055 countRewards6 = 4 -770055 leafProbs6 = 50 -~~~ -770958 DOWN 1 -770958 0 0 -770969 UP 1 -770969 1 0 -771063 DOWN 1 -771063 0 0 -792538 UP 4 -792538 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -792976 DOWN 4 -792976 0 0 -~~~ -793004 contingency = 0 -793004 trialThresh = 100 -793004 timeMaxOut = 20 -793004 timeElapsed = 17 -793005 totalPokes = 56 -793005 totalRewards = 26 -793006 countPokes1 = 15 -793006 countRewards1 = 11 -793006 leafProbs1 = 80 -793006 countPokes2 = 9 -793006 countRewards2 = 0 -793021 leafProbs2 = 20 -793021 countPokes3 = 7 -793022 countRewards3 = 2 -793022 leafProbs3 = 20 -793022 countPokes4 = 8 -793022 countRewards4 = 4 -793023 leafProbs4 = 50 -793023 countPokes5 = 6 -793023 countRewards5 = 5 -793024 leafProbs5 = 80 -793037 countPokes6 = 11 -793038 countRewards6 = 4 -793038 leafProbs6 = 50 -~~~ -796258 UP 3 -796258 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796294 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796527 DOWN 3 -796527 0 256 -796548 UP 3 -796548 4 256 -~~~ -796560 contingency = 0 -796561 trialThresh = 100 -796561 timeMaxOut = 20 -796562 timeElapsed = 18 -796562 totalPokes = 57 -796562 totalRewards = 27 -796562 countPokes1 = 15 -796563 countRewards1 = 11 -796563 leafProbs1 = 80 -796564 countPokes2 = 9 -796564 countRewards2 = 0 -796578 leafProbs2 = 20 -796578 countPokes3 = 8 -796578 countRewards3 = 3 -796579 leafProbs3 = 20 -796579 countPokes4 = 8 -796580 countRewards4 = 4 -796580 leafProbs4 = 50 -796580 countPokes5 = 6 -796580 countRewards5 = 5 -796581 leafProbs5 = 80 -796594 countPokes6 = 11 -796595 countRewards6 = 4 -796595 leafProbs6 = 50 -~~~ -796596 4 0 -796624 DOWN 3 -796624 0 0 -796629 UP 3 -796629 4 0 -801350 DOWN 3 -801350 0 0 -806015 UP 4 -806015 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806042 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806342 8 0 -809642 DOWN 4 -809642 0 0 -~~~ -809664 contingency = 0 -809664 trialThresh = 100 -809664 timeMaxOut = 20 -809665 timeElapsed = 18 -809665 totalPokes = 58 -809666 totalRewards = 28 -809666 countPokes1 = 15 -809666 countRewards1 = 11 -809666 leafProbs1 = 80 -809667 countPokes2 = 9 -809667 countRewards2 = 0 -809681 leafProbs2 = 20 -809682 countPokes3 = 8 -809682 countRewards3 = 3 -809682 leafProbs3 = 20 -809682 countPokes4 = 9 -809683 countRewards4 = 5 -809683 leafProbs4 = 50 -809683 countPokes5 = 6 -809684 countRewards5 = 5 -809684 leafProbs5 = 80 -809698 countPokes6 = 11 -809698 countRewards6 = 4 -809698 leafProbs6 = 50 -~~~ -813030 UP 3 -813030 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -813879 DOWN 3 -813879 0 0 -~~~ -813907 contingency = 0 -813908 trialThresh = 100 -813908 timeMaxOut = 20 -813908 timeElapsed = 18 -813908 totalPokes = 59 -813909 totalRewards = 28 -813909 countPokes1 = 15 -813910 countRewards1 = 11 -813910 leafProbs1 = 80 -813910 countPokes2 = 9 -813910 countRewards2 = 0 -813924 leafProbs2 = 20 -813925 countPokes3 = 9 -813925 countRewards3 = 3 -813926 leafProbs3 = 20 -813926 countPokes4 = 9 -813926 countRewards4 = 5 -813926 leafProbs4 = 50 -813927 countPokes5 = 6 -813927 countRewards5 = 5 -813928 leafProbs5 = 80 -813941 countPokes6 = 11 -813942 countRewards6 = 4 -813942 leafProbs6 = 50 -~~~ -813990 UP 3 -813990 4 0 -814046 DOWN 3 -814046 0 0 -814070 UP 3 -814070 4 0 -814092 DOWN 3 -814092 0 0 -818984 UP 4 -818984 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819019 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819319 8 0 -822032 DOWN 4 -822032 0 0 -822048 UP 4 -822048 8 0 -~~~ -822052 contingency = 0 -822052 trialThresh = 100 -822052 timeMaxOut = 20 -822052 timeElapsed = 18 -822053 totalPokes = 60 -822053 totalRewards = 29 -822054 countPokes1 = 15 -822054 countRewards1 = 11 -822054 leafProbs1 = 80 -822054 countPokes2 = 9 -822055 countRewards2 = 0 -822069 leafProbs2 = 20 -822069 countPokes3 = 9 -822070 countRewards3 = 3 -822070 leafProbs3 = 20 -822070 countPokes4 = 10 -822070 countRewards4 = 6 -822071 leafProbs4 = 50 -822071 countPokes5 = 6 -822072 countRewards5 = 5 -822072 leafProbs5 = 80 -822086 countPokes6 = 11 -822086 countRewards6 = 4 -822086 leafProbs6 = 50 -~~~ -822142 DOWN 4 -822142 0 0 -825685 UP 3 -825685 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825714 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825899 DOWN 3 -825899 0 256 -825911 UP 3 -825911 4 256 -~~~ -825924 contingency = 0 -825924 trialThresh = 100 -825924 timeMaxOut = 20 -825924 timeElapsed = 18 -825924 totalPokes = 61 -825925 totalRewards = 30 -825925 countPokes1 = 15 -825926 countRewards1 = 11 -825926 leafProbs1 = 80 -825926 countPokes2 = 9 -825926 countRewards2 = 0 -825941 leafProbs2 = 20 -825941 countPokes3 = 10 -825941 countRewards3 = 4 -825942 leafProbs3 = 20 -825942 countPokes4 = 10 -825942 countRewards4 = 6 -825942 leafProbs4 = 50 -825943 countPokes5 = 6 -825943 countRewards5 = 5 -825944 leafProbs5 = 80 -825958 countPokes6 = 11 -825958 countRewards6 = 4 -825958 leafProbs6 = 50 -~~~ -826000 DOWN 3 -826000 0 256 -826002 UP 3 -826002 4 256 -826014 4 0 -829816 DOWN 3 -829816 0 0 -838111 UP 4 -838111 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838136 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838436 8 0 -841411 DOWN 4 -841411 0 0 -~~~ -841435 contingency = 0 -841436 trialThresh = 100 -841436 timeMaxOut = 20 -841437 timeElapsed = 19 -841437 totalPokes = 62 -841437 totalRewards = 31 -841437 countPokes1 = 15 -841438 countRewards1 = 11 -841438 leafProbs1 = 80 -841439 countPokes2 = 9 -841439 countRewards2 = 0 -841453 leafProbs2 = 20 -841453 countPokes3 = 10 -841453 countRewards3 = 4 -841454 leafProbs3 = 20 -841454 countPokes4 = 11 -841455 countRewards4 = 7 -841455 leafProbs4 = 50 -841455 countPokes5 = 6 -841455 countRewards5 = 5 -841455 leafProbs5 = 80 -841469 countPokes6 = 11 -841470 countRewards6 = 4 -841470 leafProbs6 = 50 -~~~ -843614 UP 3 -843614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843639 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843789 DOWN 3 -843789 0 256 -843795 UP 3 -843795 4 256 -~~~ -843808 contingency = 0 -843809 trialThresh = 100 -843809 timeMaxOut = 20 -843809 timeElapsed = 19 -843809 totalPokes = 63 -843810 totalRewards = 32 -843810 countPokes1 = 15 -843810 countRewards1 = 11 -843811 leafProbs1 = 80 -843811 countPokes2 = 9 -843811 countRewards2 = 0 -843825 leafProbs2 = 20 -843826 countPokes3 = 11 -843826 countRewards3 = 5 -843827 leafProbs3 = 20 -843827 countPokes4 = 11 -843827 countRewards4 = 7 -843827 leafProbs4 = 50 -843827 countPokes5 = 6 -843828 countRewards5 = 5 -843828 leafProbs5 = 80 -843842 countPokes6 = 11 -843843 countRewards6 = 4 -843843 leafProbs6 = 50 -~~~ -843939 4 0 -845473 DOWN 3 -845473 0 0 -845480 UP 3 -845480 4 0 -846559 DOWN 3 -846559 0 0 -846574 UP 3 -846574 4 0 -847017 DOWN 3 -847017 0 0 -850281 UP 4 -850281 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850308 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850608 8 0 -853788 DOWN 4 -853788 0 0 -~~~ -853810 contingency = 0 -853810 trialThresh = 100 -853811 timeMaxOut = 20 -853811 timeElapsed = 19 -853811 totalPokes = 64 -853811 totalRewards = 33 -853811 countPokes1 = 15 -853812 countRewards1 = 11 -853812 leafProbs1 = 80 -853813 countPokes2 = 9 -853813 countRewards2 = 0 -853827 leafProbs2 = 20 -853827 countPokes3 = 11 -853828 countRewards3 = 5 -853828 leafProbs3 = 20 -853829 countPokes4 = 12 -853829 countRewards4 = 8 -853829 leafProbs4 = 50 -853829 countPokes5 = 6 -853829 countRewards5 = 5 -853830 leafProbs5 = 80 -853844 countPokes6 = 11 -853844 countRewards6 = 4 -853845 leafProbs6 = 50 -~~~ -859749 UP 3 -859749 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -859929 DOWN 3 -859929 0 0 -~~~ -859955 contingency = 0 -859955 trialThresh = 100 -859955 timeMaxOut = 20 -859956 timeElapsed = 19 -859956 totalPokes = 65 -859957 totalRewards = 33 -859957 countPokes1 = 15 -859957 countRewards1 = 11 -859957 leafProbs1 = 80 -859958 countPokes2 = 9 -859958 countRewards2 = 0 -859972 leafProbs2 = 20 -859973 countPokes3 = 12 -859973 countRewards3 = 5 -859973 leafProbs3 = 20 -859973 countPokes4 = 12 -859974 countRewards4 = 8 -859974 leafProbs4 = 50 -859975 countPokes5 = 6 -859975 countRewards5 = 5 -859975 leafProbs5 = 80 -859989 countPokes6 = 11 -859989 countRewards6 = 4 -859989 leafProbs6 = 50 -~~~ -859990 UP 3 -859990 4 0 -860031 DOWN 3 -860031 0 0 -860033 UP 3 -860033 4 0 -860497 DOWN 3 -860497 0 0 -863294 UP 4 -863294 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -863951 DOWN 4 -863951 0 0 -~~~ -863973 contingency = 0 -863973 trialThresh = 100 -863973 timeMaxOut = 20 -863974 timeElapsed = 19 -863974 totalPokes = 66 -863975 totalRewards = 33 -863975 countPokes1 = 15 -863975 countRewards1 = 11 -863975 leafProbs1 = 80 -863976 countPokes2 = 9 -863976 countRewards2 = 0 -863990 leafProbs2 = 20 -863991 countPokes3 = 12 -863991 countRewards3 = 5 -863991 leafProbs3 = 20 -863991 countPokes4 = 13 -863992 countRewards4 = 8 -863992 leafProbs4 = 50 -863993 countPokes5 = 6 -863993 countRewards5 = 5 -863993 leafProbs5 = 80 -864007 countPokes6 = 11 -864007 countRewards6 = 4 -864007 leafProbs6 = 50 -~~~ -868524 UP 3 -868524 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -868698 DOWN 3 -868698 0 0 -~~~ -868713 contingency = 0 -868713 trialThresh = 100 -868713 timeMaxOut = 20 -868713 timeElapsed = 19 -868713 totalPokes = 67 -868714 totalRewards = 33 -868715 countPokes1 = 15 -868715 countRewards1 = 11 -868715 leafProbs1 = 80 -868715 countPokes2 = 9 -868715 countRewards2 = 0 -868730 leafProbs2 = 20 -868730 countPokes3 = 13 -868731 countRewards3 = 5 -868731 leafProbs3 = 20 -868731 countPokes4 = 13 -868731 countRewards4 = 8 -868732 leafProbs4 = 50 -868732 countPokes5 = 6 -868733 countRewards5 = 5 -868733 leafProbs5 = 80 -868747 countPokes6 = 11 -868747 countRewards6 = 4 -868747 leafProbs6 = 50 -~~~ -868747 UP 3 -868747 4 0 -868824 DOWN 3 -868824 0 0 -872741 UP 4 -872741 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -873169 DOWN 4 -873169 0 0 -~~~ -873187 contingency = 0 -873187 trialThresh = 100 -873187 timeMaxOut = 20 -873187 timeElapsed = 19 -873188 totalPokes = 68 -873188 totalRewards = 33 -873189 countPokes1 = 15 -873189 countRewards1 = 11 -873189 leafProbs1 = 80 -873189 countPokes2 = 9 -873190 countRewards2 = 0 -873204 leafProbs2 = 20 -873204 countPokes3 = 13 -873205 countRewards3 = 5 -873205 leafProbs3 = 20 -873205 countPokes4 = 14 -873205 countRewards4 = 8 -873206 leafProbs4 = 50 -873206 countPokes5 = 6 -873207 countRewards5 = 5 -873207 leafProbs5 = 80 -873221 countPokes6 = 11 -873221 countRewards6 = 4 -873221 leafProbs6 = 50 -~~~ -873252 UP 4 -873252 8 0 -873290 DOWN 4 -873290 0 0 -876725 UP 3 -876725 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876754 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876920 DOWN 3 -876920 0 256 -876935 UP 3 -876935 4 256 -~~~ -876950 contingency = 0 -876950 trialThresh = 100 -876951 timeMaxOut = 20 -876951 timeElapsed = 20 -876951 totalPokes = 69 -876951 totalRewards = 34 -876952 countPokes1 = 15 -876952 countRewards1 = 11 -876953 leafProbs1 = 80 -876953 countPokes2 = 9 -876953 countRewards2 = 0 -876967 leafProbs2 = 20 -876968 countPokes3 = 14 -876968 countRewards3 = 6 -876969 leafProbs3 = 20 -876969 countPokes4 = 14 -876969 countRewards4 = 8 -876969 leafProbs4 = 50 -876970 countPokes5 = 6 -876970 countRewards5 = 5 -876971 leafProbs5 = 80 -876984 countPokes6 = 11 -876985 countRewards6 = 4 -876985 leafProbs6 = 50 -~~~ -876985 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -877054 4 0 -878633 DOWN 3 -878633 0 0 -878639 UP 3 -878639 4 0 -879721 DOWN 3 -879721 0 0 -886019 UP 1 -886019 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886047 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886216 DOWN 1 -886216 0 64 -886239 UP 1 -886239 1 64 -~~~ -886244 contingency = 1 -886245 trialThresh = 100 -886245 timeMaxOut = 20 -886245 timeElapsed = 0 -886245 totalPokes = 1 -886245 totalRewards = 1 -886246 countPokes1 = 1 -886246 countRewards1 = 1 -886247 leafProbs1 = 80 -886247 countPokes2 = 0 -886247 countRewards2 = 0 -886261 leafProbs2 = 20 -886261 countPokes3 = 0 -886262 countRewards3 = 0 -886262 leafProbs3 = 20 -886263 countPokes4 = 0 -886263 countRewards4 = 0 -886263 leafProbs4 = 50 -886263 countPokes5 = 0 -886263 countRewards5 = 0 -886264 leafProbs5 = 80 -886277 countPokes6 = 0 -886278 countRewards6 = 0 -886278 leafProbs6 = 50 -~~~ -886347 1 0 -887839 DOWN 1 -887839 0 0 -887847 UP 1 -887847 1 0 -888811 DOWN 1 -888811 0 0 -924349 UP 1 -924349 1 0 -924708 DOWN 1 -924708 0 0 -936150 UP 6 -936150 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -936282 DOWN 6 -936282 0 0 -~~~ -936306 UP 6 -936306 32 0 -936307 contingency = 1 -936308 trialThresh = 100 -936308 timeMaxOut = 20 -936308 timeElapsed = 1 -936308 totalPokes = 2 -936309 totalRewards = 1 -936309 countPokes1 = 1 -936310 countRewards1 = 1 -936310 leafProbs1 = 80 -936310 countPokes2 = 0 -936324 countRewards2 = 0 -936324 leafProbs2 = 20 -936325 countPokes3 = 0 -936325 countRewards3 = 0 -936326 leafProbs3 = 20 -936326 countPokes4 = 0 -936326 countRewards4 = 0 -936326 leafProbs4 = 50 -936326 countPokes5 = 0 -936327 countRewards5 = 0 -936340 leafProbs5 = 80 -936341 countPokes6 = 1 -936341 countRewards6 = 0 -936342 leafProbs6 = 50 -~~~ -936592 DOWN 6 -936592 0 0 -939891 UP 6 -939891 32 0 -940306 DOWN 6 -940306 0 0 -944398 UP 5 -944398 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944428 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944665 DOWN 5 -944665 0 1024 -944680 UP 5 -944680 16 1024 -~~~ -944694 contingency = 1 -944694 trialThresh = 100 -944695 timeMaxOut = 20 -944695 timeElapsed = 2 -944696 totalPokes = 3 -944696 totalRewards = 2 -944696 countPokes1 = 1 -944696 countRewards1 = 1 -944697 leafProbs1 = 80 -944697 countPokes2 = 0 -944698 countRewards2 = 0 -944711 leafProbs2 = 20 -944712 countPokes3 = 0 -944712 countRewards3 = 0 -944712 leafProbs3 = 20 -944712 countPokes4 = 0 -944713 countRewards4 = 0 -944713 leafProbs4 = 50 -944714 countPokes5 = 1 -944714 countRewards5 = 1 -944714 leafProbs5 = 80 -944728 countPokes6 = 1 -944728 countRewards6 = 0 -944728 leafProbs6 = 50 -~~~ -944729 16 0 -944845 DOWN 5 -944845 0 0 -944862 UP 5 -944862 16 0 -946617 DOWN 5 -946617 0 0 -946632 UP 5 -946632 16 0 -946716 DOWN 5 -946716 0 0 -946732 UP 5 -946732 16 0 -947449 DOWN 5 -947449 0 0 -948283 UP 5 -948283 16 0 -948312 DOWN 5 -948312 0 0 -952025 UP 6 -952025 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952051 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952328 DOWN 6 -952328 0 2048 -952339 UP 6 -952339 32 2048 -952351 32 0 -~~~ -952355 contingency = 1 -952355 trialThresh = 100 -952355 timeMaxOut = 20 -952356 timeElapsed = 2 -952356 totalPokes = 4 -952357 totalRewards = 3 -952357 countPokes1 = 1 -952357 countRewards1 = 1 -952357 leafProbs1 = 80 -952357 countPokes2 = 0 -952358 countRewards2 = 0 -952372 leafProbs2 = 20 -952372 countPokes3 = 0 -952373 countRewards3 = 0 -952373 leafProbs3 = 20 -952373 countPokes4 = 0 -952373 countRewards4 = 0 -952374 leafProbs4 = 50 -952374 countPokes5 = 1 -952375 countRewards5 = 1 -952375 leafProbs5 = 80 -952389 countPokes6 = 2 -952389 countRewards6 = 1 -952389 leafProbs6 = 50 -~~~ -955287 DOWN 6 -955287 0 0 -955304 UP 6 -955304 32 0 -955841 DOWN 6 -955841 0 0 -955870 UP 6 -955870 32 0 -955948 DOWN 6 -955948 0 0 -968742 UP 1 -968742 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -968986 DOWN 1 -968986 0 0 -969009 UP 1 -969009 1 0 -~~~ -969010 contingency = 1 -969011 trialThresh = 100 -969011 timeMaxOut = 20 -969011 timeElapsed = 2 -969011 totalPokes = 5 -969012 totalRewards = 3 -969012 countPokes1 = 2 -969013 countRewards1 = 1 -969013 leafProbs1 = 80 -969013 countPokes2 = 0 -969013 countRewards2 = 0 -969027 leafProbs2 = 20 -969027 countPokes3 = 0 -969028 countRewards3 = 0 -969028 leafProbs3 = 20 -969029 countPokes4 = 0 -969029 countRewards4 = 0 -969029 leafProbs4 = 50 -969029 countPokes5 = 1 -969030 countRewards5 = 1 -969030 leafProbs5 = 80 -969044 countPokes6 = 2 -969044 countRewards6 = 1 -969045 leafProbs6 = 50 -~~~ -969325 DOWN 1 -969325 0 0 -969363 UP 1 -969363 1 0 -969412 DOWN 1 -969412 0 0 -980911 UP 1 -980911 1 0 -981057 DOWN 1 -981057 0 0 -995935 UP 1 -995935 1 0 -995980 DOWN 1 -995980 0 0 -1000551 UP 1 -1000551 1 0 -1000675 DOWN 1 -1000675 0 0 -1000813 UP 1 -1000813 1 0 -1000837 DOWN 1 -1000837 0 0 -1014932 UP 1 -1014932 1 0 -1015485 DOWN 1 -1015485 0 0 -1037157 UP 1 -1037157 1 0 -1039155 DOWN 1 -1039155 0 0 -1045580 UP 2 -1045580 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045606 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045801 DOWN 2 -1045801 0 128 -1045812 UP 2 -1045812 2 128 -~~~ -1045827 contingency = 1 -1045827 trialThresh = 100 -1045828 timeMaxOut = 20 -1045828 timeElapsed = 4 -1045828 totalPokes = 6 -1045828 totalRewards = 4 -1045829 countPokes1 = 2 -1045829 countRewards1 = 1 -1045830 leafProbs1 = 80 -1045830 countPokes2 = 1 -1045830 countRewards2 = 1 -1045844 leafProbs2 = 20 -1045844 countPokes3 = 0 -1045845 countRewards3 = 0 -1045845 leafProbs3 = 20 -1045846 countPokes4 = 0 -1045846 countRewards4 = 0 -1045846 leafProbs4 = 50 -1045846 countPokes5 = 1 -1045846 countRewards5 = 1 -1045861 leafProbs5 = 80 -1045861 countPokes6 = 2 -1045862 countRewards6 = 1 -1045862 leafProbs6 = 50 -~~~ -1045906 2 0 -1046489 DOWN 2 -1046489 0 0 -1046492 UP 2 -1046492 2 0 -1046736 DOWN 2 -1046736 0 0 -1046740 UP 2 -1046740 2 0 -1048862 DOWN 2 -1048862 0 0 -1048885 UP 2 -1048885 2 0 -1049314 DOWN 2 -1049314 0 0 -1049320 UP 2 -1049320 2 0 -1049417 DOWN 2 -1049417 0 0 -1055638 UP 1 -1055638 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1056137 DOWN 1 -1056137 0 0 -~~~ -1056161 contingency = 1 -1056161 trialThresh = 100 -1056161 timeMaxOut = 20 -1056162 timeElapsed = 4 -1056162 totalPokes = 7 -1056163 totalRewards = 4 -1056163 countPokes1 = 3 -1056163 countRewards1 = 1 -1056163 leafProbs1 = 80 -1056164 countPokes2 = 1 -1056164 countRewards2 = 1 -1056178 leafProbs2 = 20 -1056179 countPokes3 = 0 -1056179 countRewards3 = 0 -1056179 leafProbs3 = 20 -1056179 countPokes4 = 0 -1056180 countRewards4 = 0 -1056180 leafProbs4 = 50 -1056181 countPokes5 = 1 -1056181 countRewards5 = 1 -1056195 leafProbs5 = 80 -1056195 countPokes6 = 2 -1056195 countRewards6 = 1 -1056196 leafProbs6 = 50 -~~~ -1075389 UP 1 -1075389 1 0 -1077673 DOWN 1 -1077673 0 0 -1080094 UP 1 -1080094 1 0 -1080643 DOWN 1 -1080643 0 0 -1081045 UP 1 -1081045 1 0 -1081200 DOWN 1 -1081200 0 0 -1083005 UP 1 -1083005 1 0 -1083449 DOWN 1 -1083449 0 0 -1102276 UP 1 -1102276 1 0 -1102327 DOWN 1 -1102327 0 0 -1102345 UP 1 -1102345 1 0 -1102777 DOWN 1 -1102777 0 0 -1102819 UP 1 -1102819 1 0 -1102934 DOWN 1 -1102934 0 0 -1103297 UP 1 -1103297 1 0 -1103387 DOWN 1 -1103387 0 0 -1103417 UP 1 -1103417 1 0 -1103475 DOWN 1 -1103475 0 0 -1103807 UP 1 -1103807 1 0 -1103947 DOWN 1 -1103947 0 0 -1103991 UP 1 -1103991 1 0 -1104026 DOWN 1 -1104026 0 0 -1118606 UP 1 -1118606 1 0 -1118640 DOWN 1 -1118640 0 0 -1131899 UP 6 -1131899 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1132172 DOWN 6 -1132172 0 0 -1132200 UP 6 -1132200 32 0 -~~~ -1132203 contingency = 1 -1132203 trialThresh = 100 -1132204 timeMaxOut = 20 -1132204 timeElapsed = 6 -1132204 totalPokes = 8 -1132204 totalRewards = 4 -1132205 countPokes1 = 3 -1132205 countRewards1 = 1 -1132205 leafProbs1 = 80 -1132206 countPokes2 = 1 -1132206 countRewards2 = 1 -1132220 leafProbs2 = 20 -1132220 countPokes3 = 0 -1132220 countRewards3 = 0 -1132221 leafProbs3 = 20 -1132221 countPokes4 = 0 -1132222 countRewards4 = 0 -1132222 leafProbs4 = 50 -1132222 countPokes5 = 1 -1132222 countRewards5 = 1 -1132237 leafProbs5 = 80 -1132237 countPokes6 = 3 -1132238 countRewards6 = 1 -1132238 leafProbs6 = 50 -~~~ -1132394 DOWN 6 -1132394 0 0 -1132422 UP 6 -1132422 32 0 -1132437 DOWN 6 -1132437 0 0 -1157002 UP 6 -1157002 32 0 -1157518 DOWN 6 -1157518 0 0 -1160471 UP 1 -1160471 1 0 -1160482 DOWN 1 -1160482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1160504 UP 1 -1160504 1 0 -~~~ -1160510 contingency = 1 -1160510 trialThresh = 100 -1160510 timeMaxOut = 20 -1160511 timeElapsed = 7 -1160511 totalPokes = 9 -1160512 totalRewards = 4 -1160512 countPokes1 = 4 -1160512 countRewards1 = 1 -1160512 leafProbs1 = 80 -1160513 countPokes2 = 1 -1160513 countRewards2 = 1 -1160527 leafProbs2 = 20 -1160528 countPokes3 = 0 -1160528 countRewards3 = 0 -1160528 leafProbs3 = 20 -1160528 countPokes4 = 0 -1160528 countRewards4 = 0 -1160529 leafProbs4 = 50 -1160529 countPokes5 = 1 -1160530 countRewards5 = 1 -1160544 leafProbs5 = 80 -1160544 countPokes6 = 3 -1160544 countRewards6 = 1 -1160545 leafProbs6 = 50 -~~~ -1160809 DOWN 1 -1160809 0 0 -1160823 UP 1 -1160823 1 0 -1160943 DOWN 1 -1160943 0 0 - - description: state script log run 2 - task_epochs: 4, -] -2021-01-27 19:19:54,506 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 19:19:55,773 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 19:19:55,778 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 19:19:55,778 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 19:19:55,780 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 19:19:55,781 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 19:19:55,802 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 19:19:55,802 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 19:19:55,816 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 19:19:55,816 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 19:19:55,818 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 19:19:55,819 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 19:19:55,819 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 19:19:55,820 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 19:19:55,820 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 19:19:55,821 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 19:19:55,821 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 19:19:55,822 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 19:19:55,822 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 19:19:55,823 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 19:19:56,436 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 19:19:56,436 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 19:19:56,438 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 19:19:56,438 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 19:19:56,442 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 19:19:56,548 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 19:19:56,558 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 19:19:56,562 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 19:19:56,562 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 19:19:59,398 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 19:19:59,404 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 19:23:47,534 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 19:23:47,537 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 19:23:47,540 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 19:23:47,542 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 19:23:47,543 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 19:23:47,976 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 19:23:47,977 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 19:23:47,977 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 19:23:47,977 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 19:23:47,981 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 19:24:41,014 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-27 19:26:58,510 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:26:58,665 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 19:26:58,667 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 19:26:58,668 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 19:26:58,668 rec_to_binaries.core: INFO Extracting time... -2021-01-27 19:27:33,857 rec_to_binaries.core: INFO Making position directory... -2021-01-27 19:27:33,910 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 19:27:33,911 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 19:27:33,911 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 19:27:33,911 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = //Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 19:27:34,345 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-27 19:27:34,694 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 19:27:35,073 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 19:27:35,073 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 19:27:35,073 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 19:27:35,074 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 19:27:35,075 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 19:27:35,076 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 19:27:35,076 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 19:27:35,078 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 19:27:35,078 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 19:27:35,079 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140681556179536 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140681556179152 -Fields: - content: # -#% author: AC -#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 -#% same as branch_always_reward_no_revisit.sc -# -#%initialize constant vars -#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min -#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later -# -#%initialize updating vars -#int rewardPump = 0 %can take on values 7-12 in fxn 1 -#int rewardWell = 0 %can take on values 1-6 in fxn 4 -#int timeElapsed = 0 -#int totalPokes = 0 -#int totalRewards = 0 -#int contingency = -1 -#int count = 0 -#int loopInterval = 250 -#int trialThresh = 0 -#int timeMaxOut = 0 -# -#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being -#int leafProbs2 = 0 -#int leafProbs3 = 0 -#int leafProbs4 = 0 -#int leafProbs5 = 0 -#int leafProbs6 = 0 -# -#int countPokes1 = 0 -#int countPokes2 = 0 -#int countPokes3 = 0 -#int countPokes4 = 0 -#int countPokes5 = 0 -#int countPokes6 = 0 -# -#int countRewards1 = 0 -#int countRewards2 = 0 -#int countRewards3 = 0 -#int countRewards4 = 0 -#int countRewards5 = 0 -#int countRewards6 = 0 -# -#int sessionProbs1 = 0 -#int sessionProbs2 = 0 -#int sessionProbs3 = 0 -#int sessionProbs4 = 0 -#int sessionProbs5 = 0 -#int sessionProbs6 = 0 -# -#%give reward for certain duration after certain delay -#function 1 -# do in delayRewardPeriod -# portout[rewardPump] = 1 %start rewarding with this pump dio -# do in deliverPeriod -# portout[rewardPump] = 0 %stop rewarding with this pump dio -# end -# end -#end; -# -#%keep track of animal behavior and display for experimenter -#function 2 -# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... -# disp(contingency) -# disp(trialThresh) -# disp(timeMaxOut) -# disp(timeElapsed) %length of session thus far -# disp(totalPokes) %how many nonrepeated well visits thus far -# disp(totalRewards) %how many rewards collected thus far -# -# disp(countPokes1) %how many pokes at each well, 6x1 array turned str -# disp(countRewards1) %how many rewards collected per well -# disp(leafProbs1) %experimenter-determined probabilities of reward per well -# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke -# -# disp(countPokes2) -# disp(countRewards2) -# disp(leafProbs2) -# %disp(sessionProbs2) -# -# disp(countPokes3) -# disp(countRewards3) -# disp(leafProbs3) -# %disp(sessionProbs3) -# -# disp(countPokes4) -# disp(countRewards4) -# disp(leafProbs4) -# %disp(sessionProbs4) -# -# disp(countPokes5) -# disp(countRewards5) -# disp(leafProbs5) -# %disp(sessionProbs5) -# -# disp(countPokes6) -# disp(countRewards6) -# disp(leafProbs6) -# %disp(sessionProbs6) -#end; -# -# -#%tell the user that the contingency is complete -#function 3 -# disp('This contingency is over!') -#end; -# -#%end session -#function 4 -# while count < 50 do every loopInterval -# portout[1] = flip -# portout[2] = flip -# portout[3] = flip -# portout[4] = flip -# portout[5] = flip -# portout[6] = flip -# count = count+1 -# then do -# portout[1] = 0 -# portout[2] = 0 -# portout[3] = 0 -# portout[4] = 0 -# portout[5] = 0 -# portout[6] = 0 -# end -# disp('This session is complete!') -#end; -# -# -#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) -#callback portin[1] up -# disp('UP 1') -#end; -# -#callback portin[1] down -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# disp('UP 2') -#end; -# -#callback portin[2] down -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# disp('UP 3') -#end; -# -#callback portin[3] down -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# disp('UP 4') -#end; -# -#callback portin[4] down -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# disp('UP 5') -#end; -# -#callback portin[5] down -# disp('DOWN 5') -#end; -#callback portin[6] up -# disp('UP 6') -#end; -# -#callback portin[6] down -# disp('DOWN 6') -#end; -# -# -# -##author: AC -##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 -##contingency changes occur automatically after either a # of trials or # of minutes -#''' -#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur -#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. -# -#Basic structure: -#if nosepoke at a well -#if the nosepoke!= last nosepoke location -# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p -# trigger(fxn1) #deliver reward, and stop after reward duration -#display updated trial info -#''' -# -##import -#import numpy as np -#import re -#import time -#import math -#from tkinter import * -# -##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) -#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. -#trialThresh = 100 #per contingency -#timeMaxOut = 20 #per contingency, in mins -# -##set up wells and pumps dios -#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info -#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery -# -##variables to keep track of and update during behavior (global) -#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. -#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. -#timeElapsed = 0 #session length thus far in mins -#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. -#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) -#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward -#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 -#runningTrials = False #must say yes to saving data to turn this to true -# -##THIS FXN MUST BE NAMED 'callback'!! -#def callback(line): -# #when an event occurs out on the track, addScQtEvent will call this fxn -# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) -# pokeIn(re.findall(r'\d+',line)) -# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, -# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" -# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) -# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells -# -##when animal nosepokes and breaks beam -#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes -# global currLeaf -# global timeStart -# global leafWells -# global lastLeaf -# global countPokes -# global leafProbs -# global leafPumps -# global contingency -# global countRewards -# global runningTrials -# global timeElapsed -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# if currLeaf == -1: #if it's the first trial in the contingency -# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke -# #if timeElapsed >= timeMaxOut: -# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency -# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency -# #change. sort of defeats the purpose of the floor approach right now. -# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") -# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") -# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") -# timeStart = time.time() #start time for the contingency -# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency -# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") -# countPokes = np.array([0,0,0,0,0,0]) -# countRewards = np.array([0,0,0,0,0,0]) -# for i in range(len(countPokes)): #initialize all as zero -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# for i in range(len(countRewards)): #initialize all as zero -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 -# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump -# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well -# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf -# for i in range(len(countPokes)): -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") -# if np.random.random_sample() < leafProbs[contingency][currLeaf]: -# deliverReward(leafPumps[currLeaf]) -# -##deliver reward, called upon poking in a nonrepeated well -#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps -# global currLeaf -# global rewardPump -# global countRewards -# -# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use -# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward -# countRewards[currLeaf] += 1 #increment num of rewards at this location -# for i in range(len(countRewards)): -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") -# -##update lastLeaf and print out info about the trial if it was at a nonrepeated well -#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells -# global leafWells -# global currLeaf -# global lastLeaf -# global timeElapsed -# global timeStart -# global countPokes -# global countRewards -# global leafProbs -# global contingency -# global runningTrials -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# #if leafWells.index(int(dio[1])) != currLeaf -# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. -# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far -# timeElapsed = round((time.time()-timeStart)/60) -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log -# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn -# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. -# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): -# if contingency < len(leafProbs) - 1: -# currLeaf = -1 #to enable shifting to next contingency -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# timeElapsed = 0 -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# if contingency == len(leafProbs) - 1: -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# runningTrials = False #so no more rewards or anything happen on track -# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session -# -##gui to help remind user that should have saved data -#savingDisp = Tk() -# -#def yesSaving(): -# global runningTrials -# savingDisp.destroy() -# runningTrials=True -# -#def noSaving(): -# savingDisp.destroy() -# -#saveFrame1 = Frame(savingDisp) -#saveFrame1.pack(side = TOP) -# -#saveFrame2 = Frame(savingDisp) -#saveFrame2.pack(side = BOTTOM) -# -#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") -#LS0.pack() -# -#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) -#B1.pack(side = LEFT) -# -#B2 = Button(saveFrame2, text ="No", command = noSaving) -#B2.pack(side = LEFT) -# -#savingDisp.mainloop() -# -# -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94048 UP 1 -94048 1 0 -94058 DOWN 1 -94058 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94112 contingency = 0 -94112 trialThresh = 100 -94112 timeMaxOut = 20 -94112 timeElapsed = 0 -94112 totalPokes = 1 -94113 totalRewards = 0 -94113 countPokes1 = 1 -94114 countRewards1 = 0 -94114 leafProbs1 = 80 -94114 countPokes2 = 0 -94114 countRewards2 = 0 -94128 leafProbs2 = 20 -94129 countPokes3 = 0 -94129 countRewards3 = 0 -94130 leafProbs3 = 20 -94130 countPokes4 = 0 -94130 countRewards4 = 0 -94130 leafProbs4 = 50 -94131 countPokes5 = 0 -94131 countRewards5 = 0 -94132 leafProbs5 = 80 -94132 countPokes6 = 0 -94146 countRewards6 = 0 -94146 leafProbs6 = 50 -~~~ -95370 UP 1 -95370 1 0 -95396 DOWN 1 -95396 0 0 -95404 UP 1 -95404 1 0 -95415 DOWN 1 -95415 0 0 -95449 UP 1 -95449 1 0 -95507 DOWN 1 -95507 0 0 -95526 UP 1 -95526 1 0 -95527 DOWN 1 -95527 0 0 -95534 UP 1 -95534 1 0 -98011 DOWN 1 -98011 0 0 -109846 UP 6 -109846 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -109947 DOWN 6 -109947 0 0 -109954 UP 6 -109954 32 0 -~~~ -109967 contingency = 0 -109967 trialThresh = 100 -109968 timeMaxOut = 20 -109968 timeElapsed = 0 -109969 totalPokes = 2 -109969 totalRewards = 0 -109969 countPokes1 = 1 -109969 countRewards1 = 0 -109969 leafProbs1 = 80 -109970 countPokes2 = 0 -109970 countRewards2 = 0 -109984 leafProbs2 = 20 -109985 countPokes3 = 0 -109985 countRewards3 = 0 -109985 leafProbs3 = 20 -109985 countPokes4 = 0 -109985 countRewards4 = 0 -109986 leafProbs4 = 50 -109986 countPokes5 = 0 -109987 countRewards5 = 0 -109987 leafProbs5 = 80 -110001 countPokes6 = 1 -110001 countRewards6 = 0 -110001 leafProbs6 = 50 -~~~ -111783 DOWN 6 -111783 0 0 -111799 UP 6 -111799 32 0 -112400 DOWN 6 -112399 0 0 -115161 UP 5 -115161 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115185 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115485 16 0 -115577 DOWN 5 -115577 0 0 -~~~ -115603 contingency = 0 -115603 trialThresh = 100 -115604 timeMaxOut = 20 -115604 timeElapsed = 1 -115605 totalPokes = 3 -115605 totalRewards = 1 -115605 countPokes1 = 1 -115605 countRewards1 = 0 -115606 leafProbs1 = 80 -115606 countPokes2 = 0 -115607 countRewards2 = 0 -115620 leafProbs2 = 20 -115621 countPokes3 = 0 -115621 countRewards3 = 0 -115621 leafProbs3 = 20 -115621 countPokes4 = 0 -115622 countRewards4 = 0 -115622 leafProbs4 = 50 -115623 countPokes5 = 1 -115623 countRewards5 = 1 -115623 leafProbs5 = 80 -115637 countPokes6 = 1 -115637 countRewards6 = 0 -115637 leafProbs6 = 50 -~~~ -115638 UP 5 -115638 16 0 -118235 DOWN 5 -118235 0 0 -118252 UP 5 -118252 16 0 -118676 DOWN 5 -118676 0 0 -124414 UP 4 -124414 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124444 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124564 DOWN 4 -124564 0 512 -124571 UP 4 -124571 8 512 -~~~ -124590 contingency = 0 -124590 trialThresh = 100 -124591 timeMaxOut = 20 -124591 timeElapsed = 1 -124591 totalPokes = 4 -124591 totalRewards = 2 -124592 countPokes1 = 1 -124592 countRewards1 = 0 -124592 leafProbs1 = 80 -124593 countPokes2 = 0 -124593 countRewards2 = 0 -124607 leafProbs2 = 20 -124607 countPokes3 = 0 -124607 countRewards3 = 0 -124608 leafProbs3 = 20 -124608 countPokes4 = 1 -124609 countRewards4 = 1 -124609 leafProbs4 = 50 -124609 countPokes5 = 1 -124609 countRewards5 = 1 -124609 leafProbs5 = 80 -124623 countPokes6 = 1 -124623 countRewards6 = 0 -124624 leafProbs6 = 50 -~~~ -124744 8 0 -127285 DOWN 4 -127285 0 0 -128916 UP 3 -128916 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -131495 DOWN 3 -131495 0 0 -131506 UP 3 -131506 4 0 -~~~ -131522 contingency = 0 -131523 trialThresh = 100 -131523 timeMaxOut = 20 -131523 timeElapsed = 1 -131523 totalPokes = 5 -131524 totalRewards = 2 -131524 countPokes1 = 1 -131525 countRewards1 = 0 -131525 leafProbs1 = 80 -131525 countPokes2 = 0 -131525 countRewards2 = 0 -131539 leafProbs2 = 20 -131539 countPokes3 = 1 -131540 countRewards3 = 0 -131540 leafProbs3 = 20 -131541 countPokes4 = 1 -131541 countRewards4 = 1 -131541 leafProbs4 = 50 -131541 countPokes5 = 1 -131542 countRewards5 = 1 -131542 leafProbs5 = 80 -131556 countPokes6 = 1 -131556 countRewards6 = 0 -131557 leafProbs6 = 50 -~~~ -131829 DOWN 3 -131829 0 0 -131849 UP 3 -131849 4 0 -131922 DOWN 3 -131922 0 0 -134163 UP 4 -134163 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -134675 DOWN 4 -134675 0 0 -~~~ -134693 contingency = 0 -134693 trialThresh = 100 -134693 timeMaxOut = 20 -134694 timeElapsed = 1 -134694 totalPokes = 6 -134695 totalRewards = 2 -134695 countPokes1 = 1 -134695 countRewards1 = 0 -134695 leafProbs1 = 80 -134696 countPokes2 = 0 -134696 countRewards2 = 0 -134710 leafProbs2 = 20 -134710 countPokes3 = 1 -134711 countRewards3 = 0 -134711 leafProbs3 = 20 -134711 countPokes4 = 2 -134711 countRewards4 = 1 -134712 leafProbs4 = 50 -134712 countPokes5 = 1 -134713 countRewards5 = 1 -134713 leafProbs5 = 80 -134727 countPokes6 = 1 -134727 countRewards6 = 0 -134727 leafProbs6 = 50 -~~~ -136327 UP 3 -136327 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -137036 DOWN 3 -137036 0 0 -~~~ -137065 contingency = 0 -137065 trialThresh = 100 -137065 timeMaxOut = 20 -137066 timeElapsed = 1 -137066 totalPokes = 7 -137067 totalRewards = 2 -137067 countPokes1 = 1 -137067 countRewards1 = 0 -137067 leafProbs1 = 80 -137068 countPokes2 = 0 -137068 countRewards2 = 0 -137082 leafProbs2 = 20 -137082 countPokes3 = 2 -137083 countRewards3 = 0 -137083 leafProbs3 = 20 -137083 countPokes4 = 2 -137083 countRewards4 = 1 -137084 leafProbs4 = 50 -137084 countPokes5 = 1 -137085 countRewards5 = 1 -137085 leafProbs5 = 80 -137099 countPokes6 = 1 -137099 countRewards6 = 0 -137099 leafProbs6 = 50 -~~~ -143600 UP 5 -143600 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143854 DOWN 5 -143854 0 0 -~~~ -143877 contingency = 0 -143877 trialThresh = 100 -143877 timeMaxOut = 20 -143878 timeElapsed = 1 -143878 totalPokes = 8 -143879 totalRewards = 2 -143879 countPokes1 = 1 -143879 countRewards1 = 0 -143879 leafProbs1 = 80 -143880 countPokes2 = 0 -143880 countRewards2 = 0 -143894 leafProbs2 = 20 -143894 countPokes3 = 2 -143895 countRewards3 = 0 -143895 leafProbs3 = 20 -143895 countPokes4 = 2 -143895 countRewards4 = 1 -143896 leafProbs4 = 50 -143896 countPokes5 = 2 -143897 countRewards5 = 1 -143897 leafProbs5 = 80 -143911 countPokes6 = 1 -143911 countRewards6 = 0 -143911 leafProbs6 = 50 -~~~ -143911 UP 5 -143911 16 0 -144383 DOWN 5 -144383 0 0 -146591 UP 6 -146591 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146617 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146917 32 0 -147061 DOWN 6 -147061 0 0 -~~~ -147089 contingency = 0 -147090 trialThresh = 100 -147090 timeMaxOut = 20 -147091 timeElapsed = 1 -147091 totalPokes = 9 -147091 totalRewards = 3 -147091 countPokes1 = 1 -147092 countRewards1 = 0 -147092 leafProbs1 = 80 -147093 countPokes2 = 0 -147093 countRewards2 = 0 -147107 leafProbs2 = 20 -147107 countPokes3 = 2 -147107 countRewards3 = 0 -147107 leafProbs3 = 20 -147108 countPokes4 = 2 -147108 countRewards4 = 1 -147109 leafProbs4 = 50 -147109 countPokes5 = 2 -147109 countRewards5 = 1 -147109 leafProbs5 = 80 -147123 countPokes6 = 2 -147123 countRewards6 = 1 -147124 leafProbs6 = 50 -~~~ -147124 UP 6 -147124 32 0 -147150 DOWN 6 -147150 0 0 -147157 UP 6 -147157 32 0 -149454 DOWN 6 -149454 0 0 -160370 UP 1 -160370 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160397 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160522 DOWN 1 -160522 0 64 -160533 UP 1 -160533 1 64 -~~~ -160544 contingency = 0 -160544 trialThresh = 100 -160544 timeMaxOut = 20 -160545 timeElapsed = 2 -160545 totalPokes = 10 -160546 totalRewards = 4 -160546 countPokes1 = 2 -160546 countRewards1 = 1 -160546 leafProbs1 = 80 -160547 countPokes2 = 0 -160547 countRewards2 = 0 -160561 leafProbs2 = 20 -160561 countPokes3 = 2 -160562 countRewards3 = 0 -160562 leafProbs3 = 20 -160562 countPokes4 = 2 -160562 countRewards4 = 1 -160563 leafProbs4 = 50 -160563 countPokes5 = 2 -160564 countRewards5 = 1 -160564 leafProbs5 = 80 -160578 countPokes6 = 2 -160578 countRewards6 = 1 -160578 leafProbs6 = 50 -~~~ -160697 1 0 -163834 DOWN 1 -163834 0 0 -166987 UP 2 -166987 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -167144 DOWN 2 -167144 0 0 -167149 UP 2 -167149 2 0 -~~~ -167168 contingency = 0 -167168 trialThresh = 100 -167169 timeMaxOut = 20 -167169 timeElapsed = 2 -167170 totalPokes = 11 -167170 totalRewards = 4 -167170 countPokes1 = 2 -167170 countRewards1 = 1 -167171 leafProbs1 = 80 -167171 countPokes2 = 1 -167172 countRewards2 = 0 -167186 leafProbs2 = 20 -167186 countPokes3 = 2 -167186 countRewards3 = 0 -167186 leafProbs3 = 20 -167186 countPokes4 = 2 -167187 countRewards4 = 1 -167187 leafProbs4 = 50 -167188 countPokes5 = 2 -167188 countRewards5 = 1 -167188 leafProbs5 = 80 -167202 countPokes6 = 2 -167202 countRewards6 = 1 -167202 leafProbs6 = 50 -~~~ -169470 DOWN 2 -169470 0 0 -169499 UP 2 -169499 2 0 -169914 DOWN 2 -169914 0 0 -178210 UP 1 -178210 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178233 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178533 1 0 -181346 DOWN 1 -181346 0 0 -~~~ -181372 contingency = 0 -181372 trialThresh = 100 -181372 timeMaxOut = 20 -181373 timeElapsed = 2 -181373 totalPokes = 12 -181374 totalRewards = 5 -181374 countPokes1 = 3 -181374 countRewards1 = 2 -181374 leafProbs1 = 80 -181375 countPokes2 = 1 -181375 countRewards2 = 0 -181389 leafProbs2 = 20 -181389 countPokes3 = 2 -181390 countRewards3 = 0 -181390 leafProbs3 = 20 -181390 countPokes4 = 2 -181390 countRewards4 = 1 -181391 leafProbs4 = 50 -181391 countPokes5 = 2 -181392 countRewards5 = 1 -181392 leafProbs5 = 80 -181406 countPokes6 = 2 -181406 countRewards6 = 1 -181406 leafProbs6 = 50 -~~~ -184630 UP 2 -184630 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184804 DOWN 2 -184804 0 0 -184815 UP 2 -184815 2 0 -~~~ -184832 contingency = 0 -184832 trialThresh = 100 -184832 timeMaxOut = 20 -184832 timeElapsed = 2 -184833 totalPokes = 13 -184833 totalRewards = 5 -184834 countPokes1 = 3 -184834 countRewards1 = 2 -184834 leafProbs1 = 80 -184834 countPokes2 = 2 -184835 countRewards2 = 0 -184849 leafProbs2 = 20 -184849 countPokes3 = 2 -184850 countRewards3 = 0 -184850 leafProbs3 = 20 -184850 countPokes4 = 2 -184850 countRewards4 = 1 -184850 leafProbs4 = 50 -184851 countPokes5 = 2 -184851 countRewards5 = 1 -184852 leafProbs5 = 80 -184865 countPokes6 = 2 -184866 countRewards6 = 1 -184866 leafProbs6 = 50 -~~~ -185326 DOWN 2 -185326 0 0 -185333 UP 2 -185333 2 0 -185995 DOWN 2 -185995 0 0 -189960 UP 1 -189960 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190078 DOWN 1 -190078 0 0 -190080 UP 1 -190080 1 0 -~~~ -190098 contingency = 0 -190099 trialThresh = 100 -190099 timeMaxOut = 20 -190100 timeElapsed = 2 -190100 totalPokes = 14 -190100 totalRewards = 5 -190100 countPokes1 = 4 -190101 countRewards1 = 2 -190101 leafProbs1 = 80 -190101 countPokes2 = 2 -190102 countRewards2 = 0 -190116 leafProbs2 = 20 -190116 countPokes3 = 2 -190116 countRewards3 = 0 -190116 leafProbs3 = 20 -190117 countPokes4 = 2 -190117 countRewards4 = 1 -190118 leafProbs4 = 50 -190118 countPokes5 = 2 -190118 countRewards5 = 1 -190118 leafProbs5 = 80 -190132 countPokes6 = 2 -190132 countRewards6 = 1 -190132 leafProbs6 = 50 -~~~ -190133 DOWN 1 -190133 0 0 -190160 UP 1 -190160 1 0 -190248 DOWN 1 -190248 0 0 -190276 UP 1 -190276 1 0 -190356 DOWN 1 -190356 0 0 -190391 UP 1 -190391 1 0 -190481 DOWN 1 -190481 0 0 -190555 UP 1 -190555 1 0 -190570 DOWN 1 -190570 0 0 -190849 UP 1 -190849 1 0 -190908 DOWN 1 -190908 0 0 -193661 UP 2 -193661 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -193935 DOWN 2 -193935 0 0 -193938 UP 2 -193938 2 0 -~~~ -193959 contingency = 0 -193959 trialThresh = 100 -193960 timeMaxOut = 20 -193960 timeElapsed = 2 -193960 totalPokes = 15 -193960 totalRewards = 5 -193961 countPokes1 = 4 -193961 countRewards1 = 2 -193962 leafProbs1 = 80 -193962 countPokes2 = 3 -193962 countRewards2 = 0 -193976 leafProbs2 = 20 -193976 countPokes3 = 2 -193977 countRewards3 = 0 -193977 leafProbs3 = 20 -193977 countPokes4 = 2 -193978 countRewards4 = 1 -193978 leafProbs4 = 50 -193978 countPokes5 = 2 -193978 countRewards5 = 1 -193979 leafProbs5 = 80 -193992 countPokes6 = 2 -193993 countRewards6 = 1 -193993 leafProbs6 = 50 -~~~ -194100 DOWN 2 -194100 0 0 -196098 UP 1 -196098 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196123 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196423 1 0 -196514 DOWN 1 -196514 0 0 -196516 UP 1 -196516 1 0 -~~~ -196532 contingency = 0 -196532 trialThresh = 100 -196532 timeMaxOut = 20 -196533 timeElapsed = 3 -196533 totalPokes = 16 -196534 totalRewards = 6 -196534 countPokes1 = 5 -196534 countRewards1 = 3 -196534 leafProbs1 = 80 -196534 countPokes2 = 3 -196535 countRewards2 = 0 -196549 leafProbs2 = 20 -196549 countPokes3 = 2 -196550 countRewards3 = 0 -196550 leafProbs3 = 20 -196550 countPokes4 = 2 -196550 countRewards4 = 1 -196551 leafProbs4 = 50 -196551 countPokes5 = 2 -196551 countRewards5 = 1 -196552 leafProbs5 = 80 -196565 countPokes6 = 2 -196566 countRewards6 = 1 -196566 leafProbs6 = 50 -~~~ -198509 DOWN 1 -198509 0 0 -202035 UP 1 -202035 1 0 -202194 DOWN 1 -202194 0 0 -213522 UP 6 -213522 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -213903 DOWN 6 -213903 0 0 -213919 UP 6 -213919 32 0 -~~~ -213923 contingency = 0 -213923 trialThresh = 100 -213924 timeMaxOut = 20 -213924 timeElapsed = 3 -213925 totalPokes = 17 -213925 totalRewards = 6 -213925 countPokes1 = 5 -213925 countRewards1 = 3 -213926 leafProbs1 = 80 -213926 countPokes2 = 3 -213927 countRewards2 = 0 -213940 leafProbs2 = 20 -213941 countPokes3 = 2 -213941 countRewards3 = 0 -213941 leafProbs3 = 20 -213941 countPokes4 = 2 -213942 countRewards4 = 1 -213942 leafProbs4 = 50 -213943 countPokes5 = 2 -213943 countRewards5 = 1 -213943 leafProbs5 = 80 -213957 countPokes6 = 3 -213957 countRewards6 = 1 -213957 leafProbs6 = 50 -~~~ -213962 DOWN 6 -213962 0 0 -218705 UP 5 -218705 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -218741 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -219041 16 0 -220419 DOWN 5 -220419 0 0 -220425 UP 5 -220425 16 0 -~~~ -220436 contingency = 0 -220436 trialThresh = 100 -220437 timeMaxOut = 20 -220437 timeElapsed = 3 -220437 totalPokes = 18 -220437 totalRewards = 7 -220437 countPokes1 = 5 -220438 countRewards1 = 3 -220438 leafProbs1 = 80 -220439 countPokes2 = 3 -220439 countRewards2 = 0 -220453 leafProbs2 = 20 -220453 countPokes3 = 2 -220453 countRewards3 = 0 -220454 leafProbs3 = 20 -220454 countPokes4 = 2 -220455 countRewards4 = 1 -220455 leafProbs4 = 50 -220455 countPokes5 = 3 -220455 countRewards5 = 2 -220455 leafProbs5 = 80 -220469 countPokes6 = 3 -220469 countRewards6 = 1 -220470 leafProbs6 = 50 -~~~ -221126 DOWN 5 -221126 0 0 -221145 UP 5 -221145 16 0 -221557 DOWN 5 -221557 0 0 -225579 UP 6 -225579 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -225814 DOWN 6 -225814 0 0 -225835 UP 6 -225835 32 0 -~~~ -225843 contingency = 0 -225843 trialThresh = 100 -225843 timeMaxOut = 20 -225844 timeElapsed = 3 -225844 totalPokes = 19 -225845 totalRewards = 7 -225845 countPokes1 = 5 -225845 countRewards1 = 3 -225845 leafProbs1 = 80 -225846 countPokes2 = 3 -225846 countRewards2 = 0 -225860 leafProbs2 = 20 -225860 countPokes3 = 2 -225861 countRewards3 = 0 -225861 leafProbs3 = 20 -225861 countPokes4 = 2 -225861 countRewards4 = 1 -225862 leafProbs4 = 50 -225862 countPokes5 = 3 -225863 countRewards5 = 2 -225863 leafProbs5 = 80 -225877 countPokes6 = 4 -225877 countRewards6 = 1 -225877 leafProbs6 = 50 -~~~ -226005 DOWN 6 -226005 0 0 -226079 UP 6 -226079 32 0 -226211 DOWN 6 -226211 0 0 -226241 UP 6 -226241 32 0 -226290 DOWN 6 -226290 0 0 -226389 UP 6 -226389 32 0 -226584 DOWN 6 -226584 0 0 -226651 UP 6 -226651 32 0 -226788 DOWN 6 -226788 0 0 -230377 UP 5 -230377 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230409 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230619 DOWN 5 -230619 0 1024 -230632 UP 5 -230632 16 1024 -~~~ -230647 contingency = 0 -230647 trialThresh = 100 -230647 timeMaxOut = 20 -230647 timeElapsed = 3 -230648 totalPokes = 20 -230648 totalRewards = 8 -230649 countPokes1 = 5 -230649 countRewards1 = 3 -230649 leafProbs1 = 80 -230649 countPokes2 = 3 -230650 countRewards2 = 0 -230663 leafProbs2 = 20 -230664 countPokes3 = 2 -230664 countRewards3 = 0 -230665 leafProbs3 = 20 -230665 countPokes4 = 2 -230665 countRewards4 = 1 -230665 leafProbs4 = 50 -230666 countPokes5 = 4 -230666 countRewards5 = 3 -230667 leafProbs5 = 80 -230680 countPokes6 = 4 -230681 countRewards6 = 1 -230681 leafProbs6 = 50 -~~~ -230708 16 0 -232797 DOWN 5 -232796 0 0 -232802 UP 5 -232802 16 0 -232900 DOWN 5 -232900 0 0 -232928 UP 5 -232928 16 0 -233233 DOWN 5 -233233 0 0 -233256 UP 5 -233256 16 0 -233319 DOWN 5 -233319 0 0 -235867 UP 6 -235867 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -235898 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -236198 32 0 -238601 DOWN 6 -238601 0 0 -238614 UP 6 -238614 32 0 -~~~ -238631 contingency = 0 -238631 trialThresh = 100 -238631 timeMaxOut = 20 -238631 timeElapsed = 4 -238632 totalPokes = 21 -238632 totalRewards = 9 -238632 countPokes1 = 5 -238633 countRewards1 = 3 -238633 leafProbs1 = 80 -238633 countPokes2 = 3 -238633 countRewards2 = 0 -238647 leafProbs2 = 20 -238648 countPokes3 = 2 -238648 countRewards3 = 0 -238649 leafProbs3 = 20 -238649 countPokes4 = 2 -238649 countRewards4 = 1 -238649 leafProbs4 = 50 -238650 countPokes5 = 4 -238650 countRewards5 = 3 -238650 leafProbs5 = 80 -238664 countPokes6 = 5 -238664 countRewards6 = 2 -238665 leafProbs6 = 50 -~~~ -239049 DOWN 6 -239049 0 0 -250071 UP 1 -250071 1 0 -~~~ -~~~ -250097 DOWN 1 -250097 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250103 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250129 UP 1 -250129 1 64 -~~~ -250136 contingency = 0 -250137 trialThresh = 100 -250137 timeMaxOut = 20 -250137 timeElapsed = 4 -250137 totalPokes = 22 -250137 totalRewards = 10 -250138 countPokes1 = 6 -250138 countRewards1 = 4 -250139 leafProbs1 = 80 -250139 countPokes2 = 3 -250139 countRewards2 = 0 -250153 leafProbs2 = 20 -250153 countPokes3 = 2 -250154 countRewards3 = 0 -250154 leafProbs3 = 20 -250155 countPokes4 = 2 -250155 countRewards4 = 1 -250155 leafProbs4 = 50 -250155 countPokes5 = 4 -250156 countRewards5 = 3 -250156 leafProbs5 = 80 -250170 countPokes6 = 5 -250170 countRewards6 = 2 -250170 leafProbs6 = 50 -~~~ -250171 DOWN 1 -250171 0 64 -250204 UP 1 -250204 1 64 -250248 DOWN 1 -250248 0 64 -250280 UP 1 -250280 1 64 -250403 1 0 -250446 DOWN 1 -250446 0 0 -250455 UP 1 -250455 1 0 -253556 DOWN 1 -253556 0 0 -256084 UP 2 -256084 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256264 DOWN 2 -256264 0 0 -256267 UP 2 -256267 2 0 -~~~ -256282 contingency = 0 -256282 trialThresh = 100 -256282 timeMaxOut = 20 -256282 timeElapsed = 4 -256282 totalPokes = 23 -256283 totalRewards = 10 -256283 countPokes1 = 6 -256284 countRewards1 = 4 -256284 leafProbs1 = 80 -256284 countPokes2 = 4 -256284 countRewards2 = 0 -256298 leafProbs2 = 20 -256299 countPokes3 = 2 -256299 countRewards3 = 0 -256300 leafProbs3 = 20 -256300 countPokes4 = 2 -256300 countRewards4 = 1 -256300 leafProbs4 = 50 -256301 countPokes5 = 4 -256301 countRewards5 = 3 -256302 leafProbs5 = 80 -256315 countPokes6 = 5 -256316 countRewards6 = 2 -256316 leafProbs6 = 50 -~~~ -256546 DOWN 2 -256546 0 0 -256572 UP 2 -256572 2 0 -256748 DOWN 2 -256748 0 0 -258880 UP 1 -258880 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -258914 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -259214 1 0 -261848 DOWN 1 -261848 0 0 -~~~ -261868 contingency = 0 -261868 trialThresh = 100 -261868 timeMaxOut = 20 -261868 timeElapsed = 4 -261869 totalPokes = 24 -261869 totalRewards = 11 -261870 countPokes1 = 7 -261870 countRewards1 = 5 -261870 leafProbs1 = 80 -261870 countPokes2 = 4 -261870 countRewards2 = 0 -261884 leafProbs2 = 20 -261885 countPokes3 = 2 -261885 countRewards3 = 0 -261886 leafProbs3 = 20 -261886 countPokes4 = 2 -261886 countRewards4 = 1 -261886 leafProbs4 = 50 -261887 countPokes5 = 4 -261887 countRewards5 = 3 -261888 leafProbs5 = 80 -261901 countPokes6 = 5 -261902 countRewards6 = 2 -261902 leafProbs6 = 50 -~~~ -267560 UP 2 -267560 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -267886 DOWN 2 -267886 0 0 -267900 UP 2 -267900 2 0 -~~~ -267911 contingency = 0 -267911 trialThresh = 100 -267912 timeMaxOut = 20 -267912 timeElapsed = 4 -267912 totalPokes = 25 -267912 totalRewards = 11 -267913 countPokes1 = 7 -267913 countRewards1 = 5 -267914 leafProbs1 = 80 -267914 countPokes2 = 5 -267914 countRewards2 = 0 -267928 leafProbs2 = 20 -267928 countPokes3 = 2 -267928 countRewards3 = 0 -267929 leafProbs3 = 20 -267929 countPokes4 = 2 -267930 countRewards4 = 1 -267930 leafProbs4 = 50 -267930 countPokes5 = 4 -267930 countRewards5 = 3 -267931 leafProbs5 = 80 -267944 countPokes6 = 5 -267945 countRewards6 = 2 -267945 leafProbs6 = 50 -~~~ -267946 DOWN 2 -267946 0 0 -272470 UP 2 -272470 2 0 -272489 DOWN 2 -272489 0 0 -272498 UP 2 -272498 2 0 -272506 DOWN 2 -272506 0 0 -275002 UP 1 -275002 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275036 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275336 1 0 -277515 DOWN 1 -277515 0 0 -277520 UP 1 -277520 1 0 -~~~ -277532 contingency = 0 -277533 trialThresh = 100 -277533 timeMaxOut = 20 -277534 timeElapsed = 5 -277534 totalPokes = 26 -277534 totalRewards = 12 -277534 countPokes1 = 8 -277534 countRewards1 = 6 -277535 leafProbs1 = 80 -277535 countPokes2 = 5 -277536 countRewards2 = 0 -277550 leafProbs2 = 20 -277550 countPokes3 = 2 -277550 countRewards3 = 0 -277550 leafProbs3 = 20 -277551 countPokes4 = 2 -277551 countRewards4 = 1 -277552 leafProbs4 = 50 -277552 countPokes5 = 4 -277552 countRewards5 = 3 -277552 leafProbs5 = 80 -277566 countPokes6 = 5 -277566 countRewards6 = 2 -277566 leafProbs6 = 50 -~~~ -277832 DOWN 1 -277832 0 0 -284331 UP 1 -284331 1 0 -284497 DOWN 1 -284497 0 0 -290436 UP 2 -290436 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -291663 DOWN 2 -291663 0 0 -~~~ -291685 contingency = 0 -291686 trialThresh = 100 -291686 timeMaxOut = 20 -291686 timeElapsed = 5 -291686 totalPokes = 27 -291687 totalRewards = 12 -291687 countPokes1 = 8 -291688 countRewards1 = 6 -291688 leafProbs1 = 80 -291688 countPokes2 = 6 -291688 countRewards2 = 0 -291702 leafProbs2 = 20 -291702 countPokes3 = 2 -291703 countRewards3 = 0 -291703 leafProbs3 = 20 -291704 countPokes4 = 2 -291704 countRewards4 = 1 -291704 leafProbs4 = 50 -291704 countPokes5 = 4 -291705 countRewards5 = 3 -291705 leafProbs5 = 80 -291719 countPokes6 = 5 -291719 countRewards6 = 2 -291720 leafProbs6 = 50 -~~~ -298521 UP 1 -298521 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298560 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298859 1 0 -301302 DOWN 1 -301302 0 0 -301320 UP 1 -301320 1 0 -~~~ -301324 contingency = 0 -301324 trialThresh = 100 -301324 timeMaxOut = 20 -301324 timeElapsed = 5 -301325 totalPokes = 28 -301325 totalRewards = 13 -301326 countPokes1 = 9 -301326 countRewards1 = 7 -301326 leafProbs1 = 80 -301326 countPokes2 = 6 -301327 countRewards2 = 0 -301341 leafProbs2 = 20 -301341 countPokes3 = 2 -301342 countRewards3 = 0 -301342 leafProbs3 = 20 -301342 countPokes4 = 2 -301342 countRewards4 = 1 -301343 leafProbs4 = 50 -301343 countPokes5 = 4 -301343 countRewards5 = 3 -301344 leafProbs5 = 80 -301357 countPokes6 = 5 -301358 countRewards6 = 2 -301358 leafProbs6 = 50 -~~~ -301818 DOWN 1 -301818 0 0 -308157 UP 2 -308157 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -308409 DOWN 2 -308409 0 0 -~~~ -308433 contingency = 0 -308433 trialThresh = 100 -308433 timeMaxOut = 20 -308434 timeElapsed = 5 -308434 totalPokes = 29 -308435 totalRewards = 13 -308435 countPokes1 = 9 -308435 countRewards1 = 7 -308435 leafProbs1 = 80 -308436 countPokes2 = 7 -308436 countRewards2 = 0 -308450 leafProbs2 = 20 -308451 countPokes3 = 2 -308451 countRewards3 = 0 -308451 leafProbs3 = 20 -308451 countPokes4 = 2 -308452 countRewards4 = 1 -308452 leafProbs4 = 50 -308452 countPokes5 = 4 -308453 countRewards5 = 3 -308453 leafProbs5 = 80 -308467 countPokes6 = 5 -308467 countRewards6 = 2 -308467 leafProbs6 = 50 -~~~ -311726 UP 1 -311726 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -312211 DOWN 1 -312211 0 0 -~~~ -312317 contingency = 0 -312317 trialThresh = 100 -312318 timeMaxOut = 20 -312318 timeElapsed = 5 -312319 totalPokes = 30 -312319 totalRewards = 13 -312319 countPokes1 = 10 -312319 countRewards1 = 7 -312320 leafProbs1 = 80 -312320 countPokes2 = 7 -312321 countRewards2 = 0 -312335 leafProbs2 = 20 -312335 countPokes3 = 2 -312335 countRewards3 = 0 -312335 leafProbs3 = 20 -312335 countPokes4 = 2 -312336 countRewards4 = 1 -312336 leafProbs4 = 50 -312337 countPokes5 = 4 -312337 countRewards5 = 3 -312337 leafProbs5 = 80 -312351 countPokes6 = 5 -312351 countRewards6 = 2 -312351 leafProbs6 = 50 -~~~ -329565 UP 1 -329565 1 0 -329578 DOWN 1 -329578 0 0 -329607 UP 1 -329607 1 0 -329615 DOWN 1 -329615 0 0 -336849 UP 6 -336849 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -337375 DOWN 6 -337375 0 0 -~~~ -337402 contingency = 0 -337403 trialThresh = 100 -337403 timeMaxOut = 20 -337403 timeElapsed = 6 -337403 totalPokes = 31 -337404 totalRewards = 13 -337404 countPokes1 = 10 -337405 countRewards1 = 7 -337405 leafProbs1 = 80 -337405 countPokes2 = 7 -337405 countRewards2 = 0 -337419 leafProbs2 = 20 -337419 countPokes3 = 2 -337420 countRewards3 = 0 -337420 leafProbs3 = 20 -337421 countPokes4 = 2 -337421 countRewards4 = 1 -337421 leafProbs4 = 50 -337421 countPokes5 = 4 -337422 countRewards5 = 3 -337422 leafProbs5 = 80 -337436 countPokes6 = 6 -337436 countRewards6 = 2 -337437 leafProbs6 = 50 -~~~ -339595 UP 6 -339595 32 0 -339614 DOWN 6 -339614 0 0 -339917 UP 6 -339917 32 0 -340039 DOWN 6 -340039 0 0 -340062 UP 6 -340062 32 0 -341221 DOWN 6 -341221 0 0 -348806 UP 6 -348806 32 0 -349029 DOWN 6 -349029 0 0 -370690 UP 3 -370690 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -371347 DOWN 3 -371347 0 0 -~~~ -371366 contingency = 0 -371367 trialThresh = 100 -371367 timeMaxOut = 20 -371368 timeElapsed = 7 -371368 totalPokes = 32 -371368 totalRewards = 13 -371368 countPokes1 = 10 -371369 countRewards1 = 7 -371369 leafProbs1 = 80 -371370 countPokes2 = 7 -371370 countRewards2 = 0 -371384 leafProbs2 = 20 -371384 countPokes3 = 3 -371384 countRewards3 = 0 -371385 leafProbs3 = 20 -371385 countPokes4 = 2 -371386 countRewards4 = 1 -371386 leafProbs4 = 50 -371386 countPokes5 = 4 -371386 countRewards5 = 3 -371386 leafProbs5 = 80 -371400 countPokes6 = 6 -371400 countRewards6 = 2 -371401 leafProbs6 = 50 -~~~ -371401 UP 3 -371401 4 0 -371462 DOWN 3 -371462 0 0 -376503 UP 4 -376503 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376533 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376832 8 0 -379496 DOWN 4 -379496 0 0 -~~~ -379512 contingency = 0 -379512 trialThresh = 100 -379512 timeMaxOut = 20 -379512 timeElapsed = 7 -379512 totalPokes = 33 -379513 totalRewards = 14 -379513 countPokes1 = 10 -379514 countRewards1 = 7 -379514 leafProbs1 = 80 -379514 countPokes2 = 7 -379514 countRewards2 = 0 -379528 leafProbs2 = 20 -379529 countPokes3 = 3 -379529 countRewards3 = 0 -379530 leafProbs3 = 20 -379530 countPokes4 = 3 -379530 countRewards4 = 2 -379530 leafProbs4 = 50 -379531 countPokes5 = 4 -379531 countRewards5 = 3 -379532 leafProbs5 = 80 -379545 countPokes6 = 6 -379546 countRewards6 = 2 -379546 leafProbs6 = 50 -~~~ -379546 UP 4 -379546 8 0 -380063 DOWN 4 -380063 0 0 -380421 UP 4 -380421 8 0 -382496 DOWN 4 -382496 0 0 -387918 UP 3 -387918 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -388412 DOWN 3 -388412 0 0 -~~~ -388430 contingency = 0 -388430 trialThresh = 100 -388430 timeMaxOut = 20 -388431 timeElapsed = 7 -388431 totalPokes = 34 -388432 totalRewards = 14 -388432 countPokes1 = 10 -388432 countRewards1 = 7 -388432 leafProbs1 = 80 -388433 countPokes2 = 7 -388433 countRewards2 = 0 -388447 leafProbs2 = 20 -388448 countPokes3 = 4 -388448 countRewards3 = 0 -388448 leafProbs3 = 20 -388448 countPokes4 = 3 -388448 countRewards4 = 2 -388449 leafProbs4 = 50 -388449 countPokes5 = 4 -388450 countRewards5 = 3 -388450 leafProbs5 = 80 -388464 countPokes6 = 6 -388464 countRewards6 = 2 -388464 leafProbs6 = 50 -~~~ -390881 UP 4 -390881 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -390913 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391213 8 0 -393870 DOWN 4 -393870 0 0 -~~~ -393894 contingency = 0 -393894 trialThresh = 100 -393894 timeMaxOut = 20 -393894 timeElapsed = 7 -393895 totalPokes = 35 -393895 totalRewards = 15 -393895 countPokes1 = 10 -393896 countRewards1 = 7 -393896 leafProbs1 = 80 -393896 countPokes2 = 7 -393896 countRewards2 = 0 -393910 leafProbs2 = 20 -393911 countPokes3 = 4 -393911 countRewards3 = 0 -393912 leafProbs3 = 20 -393912 countPokes4 = 4 -393912 countRewards4 = 3 -393912 leafProbs4 = 50 -393913 countPokes5 = 4 -393913 countRewards5 = 3 -393914 leafProbs5 = 80 -393927 countPokes6 = 6 -393928 countRewards6 = 2 -393928 leafProbs6 = 50 -~~~ -396968 UP 3 -396968 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -396991 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -397291 4 0 -397330 DOWN 3 -397330 0 0 -397342 UP 3 -397342 4 0 -~~~ -397350 contingency = 0 -397350 trialThresh = 100 -397351 timeMaxOut = 20 -397351 timeElapsed = 8 -397352 totalPokes = 36 -397352 totalRewards = 16 -397352 countPokes1 = 10 -397352 countRewards1 = 7 -397353 leafProbs1 = 80 -397353 countPokes2 = 7 -397353 countRewards2 = 0 -397368 leafProbs2 = 20 -397368 countPokes3 = 5 -397368 countRewards3 = 1 -397368 leafProbs3 = 20 -397368 countPokes4 = 4 -397369 countRewards4 = 3 -397369 leafProbs4 = 50 -397370 countPokes5 = 4 -397370 countRewards5 = 3 -397370 leafProbs5 = 80 -397384 countPokes6 = 6 -397384 countRewards6 = 2 -397384 leafProbs6 = 50 -~~~ -397422 DOWN 3 -397422 0 0 -397432 UP 3 -397432 4 0 -397510 DOWN 3 -397510 0 0 -397514 UP 3 -397514 4 0 -400532 DOWN 3 -400532 0 0 -419715 UP 4 -419715 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -419745 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420045 8 0 -422470 DOWN 4 -422470 0 0 -422484 UP 4 -422484 8 0 -~~~ -422499 contingency = 0 -422499 trialThresh = 100 -422499 timeMaxOut = 20 -422499 timeElapsed = 8 -422500 totalPokes = 37 -422500 totalRewards = 17 -422501 countPokes1 = 10 -422501 countRewards1 = 7 -422501 leafProbs1 = 80 -422501 countPokes2 = 7 -422502 countRewards2 = 0 -422516 leafProbs2 = 20 -422516 countPokes3 = 5 -422517 countRewards3 = 1 -422517 leafProbs3 = 20 -422517 countPokes4 = 5 -422517 countRewards4 = 4 -422517 leafProbs4 = 50 -422518 countPokes5 = 4 -422518 countRewards5 = 3 -422519 leafProbs5 = 80 -422532 countPokes6 = 6 -422533 countRewards6 = 2 -422533 leafProbs6 = 50 -~~~ -423017 DOWN 4 -423017 0 0 -427069 UP 3 -427069 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427094 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427239 DOWN 3 -427239 0 256 -427241 UP 3 -427241 4 256 -~~~ -427264 contingency = 0 -427264 trialThresh = 100 -427264 timeMaxOut = 20 -427265 timeElapsed = 8 -427265 totalPokes = 38 -427265 totalRewards = 18 -427265 countPokes1 = 10 -427266 countRewards1 = 7 -427266 leafProbs1 = 80 -427267 countPokes2 = 7 -427267 countRewards2 = 0 -427281 leafProbs2 = 20 -427281 countPokes3 = 6 -427281 countRewards3 = 2 -427282 leafProbs3 = 20 -427282 countPokes4 = 5 -427283 countRewards4 = 4 -427283 leafProbs4 = 50 -427283 countPokes5 = 4 -427283 countRewards5 = 3 -427284 leafProbs5 = 80 -427297 countPokes6 = 6 -427298 countRewards6 = 2 -427298 leafProbs6 = 50 -~~~ -427394 4 0 -428859 DOWN 3 -428859 0 0 -428870 UP 3 -428870 4 0 -430500 DOWN 3 -430500 0 0 -430508 UP 3 -430508 4 0 -430526 DOWN 3 -430526 0 0 -430529 UP 3 -430529 4 0 -430591 DOWN 3 -430591 0 0 -430598 UP 3 -430598 4 0 -430616 DOWN 3 -430616 0 0 -430625 UP 3 -430625 4 0 -430632 DOWN 3 -430632 0 0 -430643 UP 3 -430643 4 0 -430705 DOWN 3 -430705 0 0 -430716 UP 3 -430716 4 0 -430743 DOWN 3 -430743 0 0 -430751 UP 3 -430751 4 0 -430764 DOWN 3 -430764 0 0 -430767 UP 3 -430767 4 0 -430813 DOWN 3 -430813 0 0 -430823 UP 3 -430823 4 0 -430837 DOWN 3 -430837 0 0 -430847 UP 3 -430847 4 0 -430937 DOWN 3 -430937 0 0 -438029 UP 4 -438029 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -438640 DOWN 4 -438640 0 0 -~~~ -438656 contingency = 0 -438656 trialThresh = 100 -438657 timeMaxOut = 20 -438657 timeElapsed = 9 -438657 totalPokes = 39 -438657 totalRewards = 18 -438658 countPokes1 = 10 -438658 countRewards1 = 7 -438659 leafProbs1 = 80 -438659 countPokes2 = 7 -438659 countRewards2 = 0 -438673 leafProbs2 = 20 -438673 countPokes3 = 6 -438674 countRewards3 = 2 -438674 leafProbs3 = 20 -438675 countPokes4 = 6 -438675 countRewards4 = 4 -438675 leafProbs4 = 50 -438675 countPokes5 = 4 -438675 countRewards5 = 3 -438676 leafProbs5 = 80 -438690 countPokes6 = 6 -438690 countRewards6 = 2 -438690 leafProbs6 = 50 -~~~ -440259 UP 3 -440259 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -440484 DOWN 3 -440484 0 0 -~~~ -440505 UP 3 -440505 4 0 -440506 contingency = 0 -440506 trialThresh = 100 -440507 timeMaxOut = 20 -440507 timeElapsed = 9 -440507 totalPokes = 40 -440507 totalRewards = 18 -440508 countPokes1 = 10 -440508 countRewards1 = 7 -440508 leafProbs1 = 80 -440509 countPokes2 = 7 -440523 countRewards2 = 0 -440523 leafProbs2 = 20 -440523 countPokes3 = 7 -440523 countRewards3 = 2 -440524 leafProbs3 = 20 -440524 countPokes4 = 6 -440525 countRewards4 = 4 -440525 leafProbs4 = 50 -440525 countPokes5 = 4 -440525 countRewards5 = 3 -440539 leafProbs5 = 80 -440539 countPokes6 = 6 -440540 countRewards6 = 2 -440540 leafProbs6 = 50 -~~~ -440595 DOWN 3 -440595 0 0 -440601 UP 3 -440601 4 0 -440618 DOWN 3 -440618 0 0 -440634 UP 3 -440634 4 0 -440725 DOWN 3 -440725 0 0 -440729 UP 3 -440729 4 0 -440749 DOWN 3 -440749 0 0 -440787 UP 3 -440787 4 0 -441093 DOWN 3 -441093 0 0 -441136 UP 3 -441136 4 0 -441147 DOWN 3 -441147 0 0 -441287 UP 3 -441287 4 0 -441509 DOWN 3 -441509 0 0 -444557 UP 4 -444557 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -444894 DOWN 4 -444894 0 0 -~~~ -444911 contingency = 0 -444911 trialThresh = 100 -444911 timeMaxOut = 20 -444911 timeElapsed = 9 -444912 totalPokes = 41 -444912 totalRewards = 18 -444913 countPokes1 = 10 -444913 countRewards1 = 7 -444913 leafProbs1 = 80 -444913 countPokes2 = 7 -444914 countRewards2 = 0 -444928 leafProbs2 = 20 -444928 countPokes3 = 7 -444929 countRewards3 = 2 -444929 leafProbs3 = 20 -444929 countPokes4 = 7 -444929 countRewards4 = 4 -444930 leafProbs4 = 50 -444930 countPokes5 = 4 -444931 countRewards5 = 3 -444931 leafProbs5 = 80 -444945 countPokes6 = 6 -444945 countRewards6 = 2 -444945 leafProbs6 = 50 -~~~ -451529 UP 6 -451529 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -452216 DOWN 6 -452216 0 0 -~~~ -452237 contingency = 0 -452237 trialThresh = 100 -452238 timeMaxOut = 20 -452238 timeElapsed = 9 -452239 totalPokes = 42 -452239 totalRewards = 18 -452239 countPokes1 = 10 -452239 countRewards1 = 7 -452240 leafProbs1 = 80 -452240 countPokes2 = 7 -452241 countRewards2 = 0 -452255 leafProbs2 = 20 -452255 countPokes3 = 7 -452255 countRewards3 = 2 -452255 leafProbs3 = 20 -452256 countPokes4 = 7 -452256 countRewards4 = 4 -452257 leafProbs4 = 50 -452257 countPokes5 = 4 -452257 countRewards5 = 3 -452257 leafProbs5 = 80 -452271 countPokes6 = 7 -452271 countRewards6 = 2 -452271 leafProbs6 = 50 -~~~ -452272 UP 6 -452272 32 0 -452323 DOWN 6 -452323 0 0 -456828 UP 6 -456828 32 0 -457039 DOWN 6 -457039 0 0 -458402 UP 5 -458402 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458432 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458732 16 0 -458786 DOWN 5 -458786 0 0 -458790 UP 5 -458790 16 0 -~~~ -458817 contingency = 0 -458817 trialThresh = 100 -458817 timeMaxOut = 20 -458817 timeElapsed = 9 -458818 totalPokes = 43 -458818 totalRewards = 19 -458819 countPokes1 = 10 -458819 countRewards1 = 7 -458819 leafProbs1 = 80 -458819 countPokes2 = 7 -458820 countRewards2 = 0 -458834 leafProbs2 = 20 -458834 countPokes3 = 7 -458835 countRewards3 = 2 -458835 leafProbs3 = 20 -458835 countPokes4 = 7 -458835 countRewards4 = 4 -458836 leafProbs4 = 50 -458836 countPokes5 = 5 -458837 countRewards5 = 4 -458837 leafProbs5 = 80 -458850 countPokes6 = 7 -458851 countRewards6 = 2 -458851 leafProbs6 = 50 -~~~ -460863 DOWN 5 -460863 0 0 -460877 UP 5 -460877 16 0 -461283 DOWN 5 -461283 0 0 -461306 UP 5 -461306 16 0 -461377 DOWN 5 -461377 0 0 -468674 UP 6 -468674 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469094 DOWN 6 -469094 0 0 -~~~ -469120 contingency = 0 -469120 trialThresh = 100 -469120 timeMaxOut = 20 -469121 timeElapsed = 9 -469121 totalPokes = 44 -469122 totalRewards = 19 -469122 countPokes1 = 10 -469122 countRewards1 = 7 -469122 leafProbs1 = 80 -469123 countPokes2 = 7 -469123 countRewards2 = 0 -469137 leafProbs2 = 20 -469138 countPokes3 = 7 -469138 countRewards3 = 2 -469138 leafProbs3 = 20 -469138 countPokes4 = 7 -469138 countRewards4 = 4 -469139 leafProbs4 = 50 -469139 countPokes5 = 5 -469140 countRewards5 = 4 -469140 leafProbs5 = 80 -469154 countPokes6 = 8 -469154 countRewards6 = 2 -469154 leafProbs6 = 50 -~~~ -474207 UP 6 -474207 32 0 -474302 DOWN 6 -474302 0 0 -474380 UP 6 -474380 32 0 -474621 DOWN 6 -474621 0 0 -482030 UP 1 -482030 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -482234 DOWN 1 -482234 0 0 -~~~ -482258 contingency = 0 -482258 trialThresh = 100 -482258 timeMaxOut = 20 -482258 timeElapsed = 10 -482259 totalPokes = 45 -482259 totalRewards = 19 -482260 countPokes1 = 11 -482260 countRewards1 = 7 -482260 leafProbs1 = 80 -482260 countPokes2 = 7 -482261 countRewards2 = 0 -482275 leafProbs2 = 20 -482275 countPokes3 = 7 -482276 countRewards3 = 2 -482276 leafProbs3 = 20 -482276 countPokes4 = 7 -482276 countRewards4 = 4 -482277 leafProbs4 = 50 -482277 countPokes5 = 5 -482278 countRewards5 = 4 -482278 leafProbs5 = 80 -482292 countPokes6 = 8 -482292 countRewards6 = 2 -482292 leafProbs6 = 50 -~~~ -482292 UP 1 -482292 1 0 -482558 DOWN 1 -482558 0 0 -482585 UP 1 -482585 1 0 -482683 DOWN 1 -482683 0 0 -482718 UP 1 -482718 1 0 -482744 DOWN 1 -482744 0 0 -482821 UP 1 -482821 1 0 -482842 DOWN 1 -482842 0 0 -482905 UP 1 -482905 1 0 -482939 DOWN 1 -482939 0 0 -498133 UP 1 -498133 1 0 -498150 DOWN 1 -498150 0 0 -498596 UP 1 -498596 1 0 -498878 DOWN 1 -498878 0 0 -508278 UP 1 -508278 1 0 -508469 DOWN 1 -508469 0 0 -508616 UP 1 -508616 1 0 -508860 DOWN 1 -508860 0 0 -518791 UP 2 -518791 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -519385 DOWN 2 -519385 0 0 -~~~ -519406 contingency = 0 -519406 trialThresh = 100 -519407 timeMaxOut = 20 -519407 timeElapsed = 11 -519407 totalPokes = 46 -519407 totalRewards = 19 -519408 countPokes1 = 11 -519408 countRewards1 = 7 -519409 leafProbs1 = 80 -519409 countPokes2 = 8 -519409 countRewards2 = 0 -519423 leafProbs2 = 20 -519423 countPokes3 = 7 -519424 countRewards3 = 2 -519424 leafProbs3 = 20 -519425 countPokes4 = 7 -519425 countRewards4 = 4 -519425 leafProbs4 = 50 -519425 countPokes5 = 5 -519425 countRewards5 = 4 -519426 leafProbs5 = 80 -519439 countPokes6 = 8 -519440 countRewards6 = 2 -519440 leafProbs6 = 50 -~~~ -519441 UP 2 -519441 2 0 -519447 DOWN 2 -519447 0 0 -524357 UP 1 -524357 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524378 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524678 1 0 -524797 DOWN 1 -524797 0 0 -~~~ -524815 contingency = 0 -524815 trialThresh = 100 -524816 timeMaxOut = 20 -524816 timeElapsed = 11 -524817 totalPokes = 47 -524817 totalRewards = 20 -524817 countPokes1 = 12 -524817 countRewards1 = 8 -524817 leafProbs1 = 80 -524818 countPokes2 = 8 -524818 countRewards2 = 0 -524833 leafProbs2 = 20 -524833 countPokes3 = 7 -524833 countRewards3 = 2 -524833 leafProbs3 = 20 -524833 countPokes4 = 7 -524834 countRewards4 = 4 -524834 leafProbs4 = 50 -524835 countPokes5 = 5 -524835 countRewards5 = 4 -524835 leafProbs5 = 80 -524849 countPokes6 = 8 -524849 countRewards6 = 2 -524849 leafProbs6 = 50 -~~~ -524850 UP 1 -524850 1 0 -524863 DOWN 1 -524863 0 0 -524873 UP 1 -524873 1 0 -527968 DOWN 1 -527968 0 0 -527980 UP 1 -527980 1 0 -528079 DOWN 1 -528079 0 0 -528109 UP 1 -528109 1 0 -528210 DOWN 1 -528210 0 0 -528221 UP 1 -528221 1 0 -528322 DOWN 1 -528322 0 0 -528348 UP 1 -528348 1 0 -528356 DOWN 1 -528356 0 0 -528365 UP 1 -528365 1 0 -528411 DOWN 1 -528411 0 0 -533697 UP 1 -533697 1 0 -533887 DOWN 1 -533887 0 0 -533943 UP 1 -533943 1 0 -535917 DOWN 1 -535917 0 0 -536171 UP 1 -536171 1 0 -536181 DOWN 1 -536181 0 0 -540135 UP 1 -540135 1 0 -540396 DOWN 1 -540396 0 0 -544774 UP 1 -544774 1 0 -544951 DOWN 1 -544951 0 0 -545039 UP 1 -545039 1 0 -545129 DOWN 1 -545129 0 0 -546501 UP 1 -546501 1 0 -546595 DOWN 1 -546595 0 0 -562134 UP 1 -562134 1 0 -562562 DOWN 1 -562562 0 0 -574774 UP 6 -574774 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -574832 DOWN 6 -574832 0 0 -~~~ -574860 contingency = 0 -574860 trialThresh = 100 -574861 timeMaxOut = 20 -574861 timeElapsed = 12 -574862 totalPokes = 48 -574862 totalRewards = 20 -574862 countPokes1 = 12 -574862 countRewards1 = 8 -574863 leafProbs1 = 80 -574863 countPokes2 = 8 -574864 countRewards2 = 0 -574878 leafProbs2 = 20 -574878 countPokes3 = 7 -574878 countRewards3 = 2 -574878 leafProbs3 = 20 -574879 countPokes4 = 7 -574879 countRewards4 = 4 -574879 leafProbs4 = 50 -574880 countPokes5 = 5 -574880 countRewards5 = 4 -574880 leafProbs5 = 80 -574894 countPokes6 = 9 -574894 countRewards6 = 2 -574894 leafProbs6 = 50 -~~~ -574895 UP 6 -574895 32 0 -574983 DOWN 6 -574983 0 0 -575020 UP 6 -575020 32 0 -575089 DOWN 6 -575089 0 0 -575126 UP 6 -575126 32 0 -575149 DOWN 6 -575149 0 0 -577744 UP 6 -577744 32 0 -577748 DOWN 6 -577748 0 0 -578154 UP 6 -578154 32 0 -579354 DOWN 6 -579354 0 0 -579382 UP 6 -579382 32 0 -579514 DOWN 6 -579514 0 0 -580826 UP 6 -580826 32 0 -581310 DOWN 6 -581310 0 0 -581654 UP 6 -581654 32 0 -581711 DOWN 6 -581711 0 0 -582734 UP 6 -582733 32 0 -582748 DOWN 6 -582748 0 0 -585351 UP 6 -585351 32 0 -587498 DOWN 6 -587498 0 0 -595639 UP 1 -595639 1 0 -595653 DOWN 1 -595653 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595663 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595676 contingency = 0 -595676 trialThresh = 100 -595676 timeMaxOut = 20 -595677 timeElapsed = 13 -595677 totalPokes = 49 -595678 totalRewards = 21 -595678 countPokes1 = 13 -595678 countRewards1 = 9 -595678 leafProbs1 = 80 -595679 countPokes2 = 8 -595679 countRewards2 = 0 -595693 leafProbs2 = 20 -595694 countPokes3 = 7 -595694 countRewards3 = 2 -595694 leafProbs3 = 20 -595694 countPokes4 = 7 -595694 countRewards4 = 4 -595695 leafProbs4 = 50 -595695 countPokes5 = 5 -595696 countRewards5 = 4 -595696 leafProbs5 = 80 -595710 countPokes6 = 9 -595710 countRewards6 = 2 -595710 leafProbs6 = 50 -~~~ -595710 UP 1 -595710 1 64 -595807 DOWN 1 -595807 0 64 -595820 UP 1 -595820 1 64 -595874 DOWN 1 -595874 0 64 -595886 UP 1 -595886 1 64 -595963 1 0 -599155 DOWN 1 -599155 0 0 -599164 UP 1 -599164 1 0 -599808 DOWN 1 -599808 0 0 -688756 UP 6 -688756 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688779 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688956 DOWN 6 -688956 0 2048 -~~~ -688973 contingency = 0 -688973 trialThresh = 100 -688974 timeMaxOut = 20 -688974 timeElapsed = 15 -688974 totalPokes = 50 -688974 totalRewards = 22 -688975 countPokes1 = 13 -688975 countRewards1 = 9 -688976 leafProbs1 = 80 -688976 countPokes2 = 8 -688976 countRewards2 = 0 -688990 leafProbs2 = 20 -688990 countPokes3 = 7 -688991 countRewards3 = 2 -688991 leafProbs3 = 20 -688992 countPokes4 = 7 -688992 countRewards4 = 4 -688992 leafProbs4 = 50 -688992 countPokes5 = 5 -688993 countRewards5 = 4 -688993 leafProbs5 = 80 -689007 countPokes6 = 10 -689007 countRewards6 = 3 -689007 leafProbs6 = 50 -~~~ -689008 UP 6 -689008 32 2048 -689079 32 0 -692128 DOWN 6 -692128 0 0 -692143 UP 6 -692143 32 0 -692685 DOWN 6 -692685 0 0 -698048 UP 6 -698048 32 0 -703204 DOWN 6 -703204 0 0 -704795 UP 5 -704795 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704833 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704998 DOWN 5 -704998 0 1024 -~~~ -705014 contingency = 0 -705014 trialThresh = 100 -705014 timeMaxOut = 20 -705015 timeElapsed = 15 -705015 totalPokes = 51 -705016 totalRewards = 23 -705016 countPokes1 = 13 -705016 countRewards1 = 9 -705016 leafProbs1 = 80 -705017 countPokes2 = 8 -705017 countRewards2 = 0 -705031 leafProbs2 = 20 -705032 countPokes3 = 7 -705032 countRewards3 = 2 -705032 leafProbs3 = 20 -705032 countPokes4 = 7 -705033 countRewards4 = 4 -705033 leafProbs4 = 50 -705033 countPokes5 = 6 -705034 countRewards5 = 5 -705034 leafProbs5 = 80 -705048 countPokes6 = 10 -705048 countRewards6 = 3 -705048 leafProbs6 = 50 -~~~ -705048 UP 5 -705048 16 1024 -705133 16 0 -707856 DOWN 5 -707856 0 0 -707859 UP 5 -707859 16 0 -708389 DOWN 5 -708388 0 0 -708430 UP 5 -708430 16 0 -708506 DOWN 5 -708506 0 0 -708517 UP 5 -708517 16 0 -708729 DOWN 5 -708729 0 0 -708753 UP 5 -708753 16 0 -708838 DOWN 5 -708838 0 0 -708870 UP 5 -708870 16 0 -708943 DOWN 5 -708943 0 0 -712658 UP 6 -712658 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712691 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712856 DOWN 6 -712856 0 2048 -712886 UP 6 -712886 32 2048 -~~~ -712891 contingency = 0 -712892 trialThresh = 100 -712892 timeMaxOut = 20 -712892 timeElapsed = 15 -712892 totalPokes = 52 -712893 totalRewards = 24 -712893 countPokes1 = 13 -712894 countRewards1 = 9 -712894 leafProbs1 = 80 -712894 countPokes2 = 8 -712894 countRewards2 = 0 -712908 leafProbs2 = 20 -712909 countPokes3 = 7 -712909 countRewards3 = 2 -712910 leafProbs3 = 20 -712910 countPokes4 = 7 -712910 countRewards4 = 4 -712910 leafProbs4 = 50 -712910 countPokes5 = 6 -712911 countRewards5 = 5 -712911 leafProbs5 = 80 -712925 countPokes6 = 11 -712925 countRewards6 = 4 -712926 leafProbs6 = 50 -~~~ -712990 32 0 -716085 DOWN 6 -716085 0 0 -716094 UP 6 -716094 32 0 -716526 DOWN 6 -716526 0 0 -725598 UP 1 -725598 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725628 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725712 DOWN 1 -725712 0 64 -~~~ -725726 contingency = 0 -725726 trialThresh = 100 -725727 timeMaxOut = 20 -725727 timeElapsed = 16 -725728 totalPokes = 53 -725728 totalRewards = 25 -725728 countPokes1 = 14 -725728 countRewards1 = 10 -725729 leafProbs1 = 80 -725729 countPokes2 = 8 -725729 countRewards2 = 0 -725744 leafProbs2 = 20 -725744 countPokes3 = 7 -725744 countRewards3 = 2 -725744 leafProbs3 = 20 -725745 countPokes4 = 7 -725745 countRewards4 = 4 -725746 leafProbs4 = 50 -725746 countPokes5 = 6 -725746 countRewards5 = 5 -725746 leafProbs5 = 80 -725760 countPokes6 = 11 -725760 countRewards6 = 4 -725760 leafProbs6 = 50 -~~~ -725761 UP 1 -725761 1 64 -725780 DOWN 1 -725779 0 64 -725790 UP 1 -725790 1 64 -725928 1 0 -725996 DOWN 1 -725996 0 0 -726010 UP 1 -726010 1 0 -729338 DOWN 1 -729338 0 0 -734564 UP 1 -734564 1 0 -734740 DOWN 1 -734740 0 0 -758750 UP 2 -758750 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -758998 DOWN 2 -758998 0 0 -759011 UP 2 -759011 2 0 -~~~ -759026 contingency = 0 -759026 trialThresh = 100 -759027 timeMaxOut = 20 -759027 timeElapsed = 17 -759027 totalPokes = 54 -759027 totalRewards = 25 -759028 countPokes1 = 14 -759028 countRewards1 = 10 -759029 leafProbs1 = 80 -759029 countPokes2 = 9 -759029 countRewards2 = 0 -759043 leafProbs2 = 20 -759043 countPokes3 = 7 -759044 countRewards3 = 2 -759044 leafProbs3 = 20 -759045 countPokes4 = 7 -759045 countRewards4 = 4 -759045 leafProbs4 = 50 -759045 countPokes5 = 6 -759046 countRewards5 = 5 -759046 leafProbs5 = 80 -759060 countPokes6 = 11 -759060 countRewards6 = 4 -759061 leafProbs6 = 50 -~~~ -759247 DOWN 2 -759247 0 0 -764741 UP 2 -764741 2 0 -764877 DOWN 2 -764877 0 0 -768238 UP 1 -768238 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768267 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768567 1 0 -769995 DOWN 1 -769995 0 0 -770003 UP 1 -770003 1 0 -~~~ -770020 contingency = 0 -770021 trialThresh = 100 -770021 timeMaxOut = 20 -770021 timeElapsed = 17 -770021 totalPokes = 55 -770022 totalRewards = 26 -770022 countPokes1 = 15 -770023 countRewards1 = 11 -770023 leafProbs1 = 80 -770023 countPokes2 = 9 -770023 countRewards2 = 0 -770037 leafProbs2 = 20 -770038 countPokes3 = 7 -770038 countRewards3 = 2 -770039 leafProbs3 = 20 -770039 countPokes4 = 7 -770039 countRewards4 = 4 -770039 leafProbs4 = 50 -770040 countPokes5 = 6 -770040 countRewards5 = 5 -770041 leafProbs5 = 80 -770054 countPokes6 = 11 -770055 countRewards6 = 4 -770055 leafProbs6 = 50 -~~~ -770958 DOWN 1 -770958 0 0 -770969 UP 1 -770969 1 0 -771063 DOWN 1 -771063 0 0 -792538 UP 4 -792538 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -792976 DOWN 4 -792976 0 0 -~~~ -793004 contingency = 0 -793004 trialThresh = 100 -793004 timeMaxOut = 20 -793004 timeElapsed = 17 -793005 totalPokes = 56 -793005 totalRewards = 26 -793006 countPokes1 = 15 -793006 countRewards1 = 11 -793006 leafProbs1 = 80 -793006 countPokes2 = 9 -793006 countRewards2 = 0 -793021 leafProbs2 = 20 -793021 countPokes3 = 7 -793022 countRewards3 = 2 -793022 leafProbs3 = 20 -793022 countPokes4 = 8 -793022 countRewards4 = 4 -793023 leafProbs4 = 50 -793023 countPokes5 = 6 -793023 countRewards5 = 5 -793024 leafProbs5 = 80 -793037 countPokes6 = 11 -793038 countRewards6 = 4 -793038 leafProbs6 = 50 -~~~ -796258 UP 3 -796258 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796294 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796527 DOWN 3 -796527 0 256 -796548 UP 3 -796548 4 256 -~~~ -796560 contingency = 0 -796561 trialThresh = 100 -796561 timeMaxOut = 20 -796562 timeElapsed = 18 -796562 totalPokes = 57 -796562 totalRewards = 27 -796562 countPokes1 = 15 -796563 countRewards1 = 11 -796563 leafProbs1 = 80 -796564 countPokes2 = 9 -796564 countRewards2 = 0 -796578 leafProbs2 = 20 -796578 countPokes3 = 8 -796578 countRewards3 = 3 -796579 leafProbs3 = 20 -796579 countPokes4 = 8 -796580 countRewards4 = 4 -796580 leafProbs4 = 50 -796580 countPokes5 = 6 -796580 countRewards5 = 5 -796581 leafProbs5 = 80 -796594 countPokes6 = 11 -796595 countRewards6 = 4 -796595 leafProbs6 = 50 -~~~ -796596 4 0 -796624 DOWN 3 -796624 0 0 -796629 UP 3 -796629 4 0 -801350 DOWN 3 -801350 0 0 -806015 UP 4 -806015 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806042 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806342 8 0 -809642 DOWN 4 -809642 0 0 -~~~ -809664 contingency = 0 -809664 trialThresh = 100 -809664 timeMaxOut = 20 -809665 timeElapsed = 18 -809665 totalPokes = 58 -809666 totalRewards = 28 -809666 countPokes1 = 15 -809666 countRewards1 = 11 -809666 leafProbs1 = 80 -809667 countPokes2 = 9 -809667 countRewards2 = 0 -809681 leafProbs2 = 20 -809682 countPokes3 = 8 -809682 countRewards3 = 3 -809682 leafProbs3 = 20 -809682 countPokes4 = 9 -809683 countRewards4 = 5 -809683 leafProbs4 = 50 -809683 countPokes5 = 6 -809684 countRewards5 = 5 -809684 leafProbs5 = 80 -809698 countPokes6 = 11 -809698 countRewards6 = 4 -809698 leafProbs6 = 50 -~~~ -813030 UP 3 -813030 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -813879 DOWN 3 -813879 0 0 -~~~ -813907 contingency = 0 -813908 trialThresh = 100 -813908 timeMaxOut = 20 -813908 timeElapsed = 18 -813908 totalPokes = 59 -813909 totalRewards = 28 -813909 countPokes1 = 15 -813910 countRewards1 = 11 -813910 leafProbs1 = 80 -813910 countPokes2 = 9 -813910 countRewards2 = 0 -813924 leafProbs2 = 20 -813925 countPokes3 = 9 -813925 countRewards3 = 3 -813926 leafProbs3 = 20 -813926 countPokes4 = 9 -813926 countRewards4 = 5 -813926 leafProbs4 = 50 -813927 countPokes5 = 6 -813927 countRewards5 = 5 -813928 leafProbs5 = 80 -813941 countPokes6 = 11 -813942 countRewards6 = 4 -813942 leafProbs6 = 50 -~~~ -813990 UP 3 -813990 4 0 -814046 DOWN 3 -814046 0 0 -814070 UP 3 -814070 4 0 -814092 DOWN 3 -814092 0 0 -818984 UP 4 -818984 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819019 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819319 8 0 -822032 DOWN 4 -822032 0 0 -822048 UP 4 -822048 8 0 -~~~ -822052 contingency = 0 -822052 trialThresh = 100 -822052 timeMaxOut = 20 -822052 timeElapsed = 18 -822053 totalPokes = 60 -822053 totalRewards = 29 -822054 countPokes1 = 15 -822054 countRewards1 = 11 -822054 leafProbs1 = 80 -822054 countPokes2 = 9 -822055 countRewards2 = 0 -822069 leafProbs2 = 20 -822069 countPokes3 = 9 -822070 countRewards3 = 3 -822070 leafProbs3 = 20 -822070 countPokes4 = 10 -822070 countRewards4 = 6 -822071 leafProbs4 = 50 -822071 countPokes5 = 6 -822072 countRewards5 = 5 -822072 leafProbs5 = 80 -822086 countPokes6 = 11 -822086 countRewards6 = 4 -822086 leafProbs6 = 50 -~~~ -822142 DOWN 4 -822142 0 0 -825685 UP 3 -825685 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825714 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825899 DOWN 3 -825899 0 256 -825911 UP 3 -825911 4 256 -~~~ -825924 contingency = 0 -825924 trialThresh = 100 -825924 timeMaxOut = 20 -825924 timeElapsed = 18 -825924 totalPokes = 61 -825925 totalRewards = 30 -825925 countPokes1 = 15 -825926 countRewards1 = 11 -825926 leafProbs1 = 80 -825926 countPokes2 = 9 -825926 countRewards2 = 0 -825941 leafProbs2 = 20 -825941 countPokes3 = 10 -825941 countRewards3 = 4 -825942 leafProbs3 = 20 -825942 countPokes4 = 10 -825942 countRewards4 = 6 -825942 leafProbs4 = 50 -825943 countPokes5 = 6 -825943 countRewards5 = 5 -825944 leafProbs5 = 80 -825958 countPokes6 = 11 -825958 countRewards6 = 4 -825958 leafProbs6 = 50 -~~~ -826000 DOWN 3 -826000 0 256 -826002 UP 3 -826002 4 256 -826014 4 0 -829816 DOWN 3 -829816 0 0 -838111 UP 4 -838111 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838136 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838436 8 0 -841411 DOWN 4 -841411 0 0 -~~~ -841435 contingency = 0 -841436 trialThresh = 100 -841436 timeMaxOut = 20 -841437 timeElapsed = 19 -841437 totalPokes = 62 -841437 totalRewards = 31 -841437 countPokes1 = 15 -841438 countRewards1 = 11 -841438 leafProbs1 = 80 -841439 countPokes2 = 9 -841439 countRewards2 = 0 -841453 leafProbs2 = 20 -841453 countPokes3 = 10 -841453 countRewards3 = 4 -841454 leafProbs3 = 20 -841454 countPokes4 = 11 -841455 countRewards4 = 7 -841455 leafProbs4 = 50 -841455 countPokes5 = 6 -841455 countRewards5 = 5 -841455 leafProbs5 = 80 -841469 countPokes6 = 11 -841470 countRewards6 = 4 -841470 leafProbs6 = 50 -~~~ -843614 UP 3 -843614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843639 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843789 DOWN 3 -843789 0 256 -843795 UP 3 -843795 4 256 -~~~ -843808 contingency = 0 -843809 trialThresh = 100 -843809 timeMaxOut = 20 -843809 timeElapsed = 19 -843809 totalPokes = 63 -843810 totalRewards = 32 -843810 countPokes1 = 15 -843810 countRewards1 = 11 -843811 leafProbs1 = 80 -843811 countPokes2 = 9 -843811 countRewards2 = 0 -843825 leafProbs2 = 20 -843826 countPokes3 = 11 -843826 countRewards3 = 5 -843827 leafProbs3 = 20 -843827 countPokes4 = 11 -843827 countRewards4 = 7 -843827 leafProbs4 = 50 -843827 countPokes5 = 6 -843828 countRewards5 = 5 -843828 leafProbs5 = 80 -843842 countPokes6 = 11 -843843 countRewards6 = 4 -843843 leafProbs6 = 50 -~~~ -843939 4 0 -845473 DOWN 3 -845473 0 0 -845480 UP 3 -845480 4 0 -846559 DOWN 3 -846559 0 0 -846574 UP 3 -846574 4 0 -847017 DOWN 3 -847017 0 0 -850281 UP 4 -850281 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850308 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850608 8 0 -853788 DOWN 4 -853788 0 0 -~~~ -853810 contingency = 0 -853810 trialThresh = 100 -853811 timeMaxOut = 20 -853811 timeElapsed = 19 -853811 totalPokes = 64 -853811 totalRewards = 33 -853811 countPokes1 = 15 -853812 countRewards1 = 11 -853812 leafProbs1 = 80 -853813 countPokes2 = 9 -853813 countRewards2 = 0 -853827 leafProbs2 = 20 -853827 countPokes3 = 11 -853828 countRewards3 = 5 -853828 leafProbs3 = 20 -853829 countPokes4 = 12 -853829 countRewards4 = 8 -853829 leafProbs4 = 50 -853829 countPokes5 = 6 -853829 countRewards5 = 5 -853830 leafProbs5 = 80 -853844 countPokes6 = 11 -853844 countRewards6 = 4 -853845 leafProbs6 = 50 -~~~ -859749 UP 3 -859749 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -859929 DOWN 3 -859929 0 0 -~~~ -859955 contingency = 0 -859955 trialThresh = 100 -859955 timeMaxOut = 20 -859956 timeElapsed = 19 -859956 totalPokes = 65 -859957 totalRewards = 33 -859957 countPokes1 = 15 -859957 countRewards1 = 11 -859957 leafProbs1 = 80 -859958 countPokes2 = 9 -859958 countRewards2 = 0 -859972 leafProbs2 = 20 -859973 countPokes3 = 12 -859973 countRewards3 = 5 -859973 leafProbs3 = 20 -859973 countPokes4 = 12 -859974 countRewards4 = 8 -859974 leafProbs4 = 50 -859975 countPokes5 = 6 -859975 countRewards5 = 5 -859975 leafProbs5 = 80 -859989 countPokes6 = 11 -859989 countRewards6 = 4 -859989 leafProbs6 = 50 -~~~ -859990 UP 3 -859990 4 0 -860031 DOWN 3 -860031 0 0 -860033 UP 3 -860033 4 0 -860497 DOWN 3 -860497 0 0 -863294 UP 4 -863294 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -863951 DOWN 4 -863951 0 0 -~~~ -863973 contingency = 0 -863973 trialThresh = 100 -863973 timeMaxOut = 20 -863974 timeElapsed = 19 -863974 totalPokes = 66 -863975 totalRewards = 33 -863975 countPokes1 = 15 -863975 countRewards1 = 11 -863975 leafProbs1 = 80 -863976 countPokes2 = 9 -863976 countRewards2 = 0 -863990 leafProbs2 = 20 -863991 countPokes3 = 12 -863991 countRewards3 = 5 -863991 leafProbs3 = 20 -863991 countPokes4 = 13 -863992 countRewards4 = 8 -863992 leafProbs4 = 50 -863993 countPokes5 = 6 -863993 countRewards5 = 5 -863993 leafProbs5 = 80 -864007 countPokes6 = 11 -864007 countRewards6 = 4 -864007 leafProbs6 = 50 -~~~ -868524 UP 3 -868524 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -868698 DOWN 3 -868698 0 0 -~~~ -868713 contingency = 0 -868713 trialThresh = 100 -868713 timeMaxOut = 20 -868713 timeElapsed = 19 -868713 totalPokes = 67 -868714 totalRewards = 33 -868715 countPokes1 = 15 -868715 countRewards1 = 11 -868715 leafProbs1 = 80 -868715 countPokes2 = 9 -868715 countRewards2 = 0 -868730 leafProbs2 = 20 -868730 countPokes3 = 13 -868731 countRewards3 = 5 -868731 leafProbs3 = 20 -868731 countPokes4 = 13 -868731 countRewards4 = 8 -868732 leafProbs4 = 50 -868732 countPokes5 = 6 -868733 countRewards5 = 5 -868733 leafProbs5 = 80 -868747 countPokes6 = 11 -868747 countRewards6 = 4 -868747 leafProbs6 = 50 -~~~ -868747 UP 3 -868747 4 0 -868824 DOWN 3 -868824 0 0 -872741 UP 4 -872741 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -873169 DOWN 4 -873169 0 0 -~~~ -873187 contingency = 0 -873187 trialThresh = 100 -873187 timeMaxOut = 20 -873187 timeElapsed = 19 -873188 totalPokes = 68 -873188 totalRewards = 33 -873189 countPokes1 = 15 -873189 countRewards1 = 11 -873189 leafProbs1 = 80 -873189 countPokes2 = 9 -873190 countRewards2 = 0 -873204 leafProbs2 = 20 -873204 countPokes3 = 13 -873205 countRewards3 = 5 -873205 leafProbs3 = 20 -873205 countPokes4 = 14 -873205 countRewards4 = 8 -873206 leafProbs4 = 50 -873206 countPokes5 = 6 -873207 countRewards5 = 5 -873207 leafProbs5 = 80 -873221 countPokes6 = 11 -873221 countRewards6 = 4 -873221 leafProbs6 = 50 -~~~ -873252 UP 4 -873252 8 0 -873290 DOWN 4 -873290 0 0 -876725 UP 3 -876725 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876754 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876920 DOWN 3 -876920 0 256 -876935 UP 3 -876935 4 256 -~~~ -876950 contingency = 0 -876950 trialThresh = 100 -876951 timeMaxOut = 20 -876951 timeElapsed = 20 -876951 totalPokes = 69 -876951 totalRewards = 34 -876952 countPokes1 = 15 -876952 countRewards1 = 11 -876953 leafProbs1 = 80 -876953 countPokes2 = 9 -876953 countRewards2 = 0 -876967 leafProbs2 = 20 -876968 countPokes3 = 14 -876968 countRewards3 = 6 -876969 leafProbs3 = 20 -876969 countPokes4 = 14 -876969 countRewards4 = 8 -876969 leafProbs4 = 50 -876970 countPokes5 = 6 -876970 countRewards5 = 5 -876971 leafProbs5 = 80 -876984 countPokes6 = 11 -876985 countRewards6 = 4 -876985 leafProbs6 = 50 -~~~ -876985 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -877054 4 0 -878633 DOWN 3 -878633 0 0 -878639 UP 3 -878639 4 0 -879721 DOWN 3 -879721 0 0 -886019 UP 1 -886019 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886047 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886216 DOWN 1 -886216 0 64 -886239 UP 1 -886239 1 64 -~~~ -886244 contingency = 1 -886245 trialThresh = 100 -886245 timeMaxOut = 20 -886245 timeElapsed = 0 -886245 totalPokes = 1 -886245 totalRewards = 1 -886246 countPokes1 = 1 -886246 countRewards1 = 1 -886247 leafProbs1 = 80 -886247 countPokes2 = 0 -886247 countRewards2 = 0 -886261 leafProbs2 = 20 -886261 countPokes3 = 0 -886262 countRewards3 = 0 -886262 leafProbs3 = 20 -886263 countPokes4 = 0 -886263 countRewards4 = 0 -886263 leafProbs4 = 50 -886263 countPokes5 = 0 -886263 countRewards5 = 0 -886264 leafProbs5 = 80 -886277 countPokes6 = 0 -886278 countRewards6 = 0 -886278 leafProbs6 = 50 -~~~ -886347 1 0 -887839 DOWN 1 -887839 0 0 -887847 UP 1 -887847 1 0 -888811 DOWN 1 -888811 0 0 -924349 UP 1 -924349 1 0 -924708 DOWN 1 -924708 0 0 -936150 UP 6 -936150 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -936282 DOWN 6 -936282 0 0 -~~~ -936306 UP 6 -936306 32 0 -936307 contingency = 1 -936308 trialThresh = 100 -936308 timeMaxOut = 20 -936308 timeElapsed = 1 -936308 totalPokes = 2 -936309 totalRewards = 1 -936309 countPokes1 = 1 -936310 countRewards1 = 1 -936310 leafProbs1 = 80 -936310 countPokes2 = 0 -936324 countRewards2 = 0 -936324 leafProbs2 = 20 -936325 countPokes3 = 0 -936325 countRewards3 = 0 -936326 leafProbs3 = 20 -936326 countPokes4 = 0 -936326 countRewards4 = 0 -936326 leafProbs4 = 50 -936326 countPokes5 = 0 -936327 countRewards5 = 0 -936340 leafProbs5 = 80 -936341 countPokes6 = 1 -936341 countRewards6 = 0 -936342 leafProbs6 = 50 -~~~ -936592 DOWN 6 -936592 0 0 -939891 UP 6 -939891 32 0 -940306 DOWN 6 -940306 0 0 -944398 UP 5 -944398 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944428 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944665 DOWN 5 -944665 0 1024 -944680 UP 5 -944680 16 1024 -~~~ -944694 contingency = 1 -944694 trialThresh = 100 -944695 timeMaxOut = 20 -944695 timeElapsed = 2 -944696 totalPokes = 3 -944696 totalRewards = 2 -944696 countPokes1 = 1 -944696 countRewards1 = 1 -944697 leafProbs1 = 80 -944697 countPokes2 = 0 -944698 countRewards2 = 0 -944711 leafProbs2 = 20 -944712 countPokes3 = 0 -944712 countRewards3 = 0 -944712 leafProbs3 = 20 -944712 countPokes4 = 0 -944713 countRewards4 = 0 -944713 leafProbs4 = 50 -944714 countPokes5 = 1 -944714 countRewards5 = 1 -944714 leafProbs5 = 80 -944728 countPokes6 = 1 -944728 countRewards6 = 0 -944728 leafProbs6 = 50 -~~~ -944729 16 0 -944845 DOWN 5 -944845 0 0 -944862 UP 5 -944862 16 0 -946617 DOWN 5 -946617 0 0 -946632 UP 5 -946632 16 0 -946716 DOWN 5 -946716 0 0 -946732 UP 5 -946732 16 0 -947449 DOWN 5 -947449 0 0 -948283 UP 5 -948283 16 0 -948312 DOWN 5 -948312 0 0 -952025 UP 6 -952025 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952051 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952328 DOWN 6 -952328 0 2048 -952339 UP 6 -952339 32 2048 -952351 32 0 -~~~ -952355 contingency = 1 -952355 trialThresh = 100 -952355 timeMaxOut = 20 -952356 timeElapsed = 2 -952356 totalPokes = 4 -952357 totalRewards = 3 -952357 countPokes1 = 1 -952357 countRewards1 = 1 -952357 leafProbs1 = 80 -952357 countPokes2 = 0 -952358 countRewards2 = 0 -952372 leafProbs2 = 20 -952372 countPokes3 = 0 -952373 countRewards3 = 0 -952373 leafProbs3 = 20 -952373 countPokes4 = 0 -952373 countRewards4 = 0 -952374 leafProbs4 = 50 -952374 countPokes5 = 1 -952375 countRewards5 = 1 -952375 leafProbs5 = 80 -952389 countPokes6 = 2 -952389 countRewards6 = 1 -952389 leafProbs6 = 50 -~~~ -955287 DOWN 6 -955287 0 0 -955304 UP 6 -955304 32 0 -955841 DOWN 6 -955841 0 0 -955870 UP 6 -955870 32 0 -955948 DOWN 6 -955948 0 0 -968742 UP 1 -968742 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -968986 DOWN 1 -968986 0 0 -969009 UP 1 -969009 1 0 -~~~ -969010 contingency = 1 -969011 trialThresh = 100 -969011 timeMaxOut = 20 -969011 timeElapsed = 2 -969011 totalPokes = 5 -969012 totalRewards = 3 -969012 countPokes1 = 2 -969013 countRewards1 = 1 -969013 leafProbs1 = 80 -969013 countPokes2 = 0 -969013 countRewards2 = 0 -969027 leafProbs2 = 20 -969027 countPokes3 = 0 -969028 countRewards3 = 0 -969028 leafProbs3 = 20 -969029 countPokes4 = 0 -969029 countRewards4 = 0 -969029 leafProbs4 = 50 -969029 countPokes5 = 1 -969030 countRewards5 = 1 -969030 leafProbs5 = 80 -969044 countPokes6 = 2 -969044 countRewards6 = 1 -969045 leafProbs6 = 50 -~~~ -969325 DOWN 1 -969325 0 0 -969363 UP 1 -969363 1 0 -969412 DOWN 1 -969412 0 0 -980911 UP 1 -980911 1 0 -981057 DOWN 1 -981057 0 0 -995935 UP 1 -995935 1 0 -995980 DOWN 1 -995980 0 0 -1000551 UP 1 -1000551 1 0 -1000675 DOWN 1 -1000675 0 0 -1000813 UP 1 -1000813 1 0 -1000837 DOWN 1 -1000837 0 0 -1014932 UP 1 -1014932 1 0 -1015485 DOWN 1 -1015485 0 0 -1037157 UP 1 -1037157 1 0 -1039155 DOWN 1 -1039155 0 0 -1045580 UP 2 -1045580 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045606 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045801 DOWN 2 -1045801 0 128 -1045812 UP 2 -1045812 2 128 -~~~ -1045827 contingency = 1 -1045827 trialThresh = 100 -1045828 timeMaxOut = 20 -1045828 timeElapsed = 4 -1045828 totalPokes = 6 -1045828 totalRewards = 4 -1045829 countPokes1 = 2 -1045829 countRewards1 = 1 -1045830 leafProbs1 = 80 -1045830 countPokes2 = 1 -1045830 countRewards2 = 1 -1045844 leafProbs2 = 20 -1045844 countPokes3 = 0 -1045845 countRewards3 = 0 -1045845 leafProbs3 = 20 -1045846 countPokes4 = 0 -1045846 countRewards4 = 0 -1045846 leafProbs4 = 50 -1045846 countPokes5 = 1 -1045846 countRewards5 = 1 -1045861 leafProbs5 = 80 -1045861 countPokes6 = 2 -1045862 countRewards6 = 1 -1045862 leafProbs6 = 50 -~~~ -1045906 2 0 -1046489 DOWN 2 -1046489 0 0 -1046492 UP 2 -1046492 2 0 -1046736 DOWN 2 -1046736 0 0 -1046740 UP 2 -1046740 2 0 -1048862 DOWN 2 -1048862 0 0 -1048885 UP 2 -1048885 2 0 -1049314 DOWN 2 -1049314 0 0 -1049320 UP 2 -1049320 2 0 -1049417 DOWN 2 -1049417 0 0 -1055638 UP 1 -1055638 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1056137 DOWN 1 -1056137 0 0 -~~~ -1056161 contingency = 1 -1056161 trialThresh = 100 -1056161 timeMaxOut = 20 -1056162 timeElapsed = 4 -1056162 totalPokes = 7 -1056163 totalRewards = 4 -1056163 countPokes1 = 3 -1056163 countRewards1 = 1 -1056163 leafProbs1 = 80 -1056164 countPokes2 = 1 -1056164 countRewards2 = 1 -1056178 leafProbs2 = 20 -1056179 countPokes3 = 0 -1056179 countRewards3 = 0 -1056179 leafProbs3 = 20 -1056179 countPokes4 = 0 -1056180 countRewards4 = 0 -1056180 leafProbs4 = 50 -1056181 countPokes5 = 1 -1056181 countRewards5 = 1 -1056195 leafProbs5 = 80 -1056195 countPokes6 = 2 -1056195 countRewards6 = 1 -1056196 leafProbs6 = 50 -~~~ -1075389 UP 1 -1075389 1 0 -1077673 DOWN 1 -1077673 0 0 -1080094 UP 1 -1080094 1 0 -1080643 DOWN 1 -1080643 0 0 -1081045 UP 1 -1081045 1 0 -1081200 DOWN 1 -1081200 0 0 -1083005 UP 1 -1083005 1 0 -1083449 DOWN 1 -1083449 0 0 -1102276 UP 1 -1102276 1 0 -1102327 DOWN 1 -1102327 0 0 -1102345 UP 1 -1102345 1 0 -1102777 DOWN 1 -1102777 0 0 -1102819 UP 1 -1102819 1 0 -1102934 DOWN 1 -1102934 0 0 -1103297 UP 1 -1103297 1 0 -1103387 DOWN 1 -1103387 0 0 -1103417 UP 1 -1103417 1 0 -1103475 DOWN 1 -1103475 0 0 -1103807 UP 1 -1103807 1 0 -1103947 DOWN 1 -1103947 0 0 -1103991 UP 1 -1103991 1 0 -1104026 DOWN 1 -1104026 0 0 -1118606 UP 1 -1118606 1 0 -1118640 DOWN 1 -1118640 0 0 -1131899 UP 6 -1131899 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1132172 DOWN 6 -1132172 0 0 -1132200 UP 6 -1132200 32 0 -~~~ -1132203 contingency = 1 -1132203 trialThresh = 100 -1132204 timeMaxOut = 20 -1132204 timeElapsed = 6 -1132204 totalPokes = 8 -1132204 totalRewards = 4 -1132205 countPokes1 = 3 -1132205 countRewards1 = 1 -1132205 leafProbs1 = 80 -1132206 countPokes2 = 1 -1132206 countRewards2 = 1 -1132220 leafProbs2 = 20 -1132220 countPokes3 = 0 -1132220 countRewards3 = 0 -1132221 leafProbs3 = 20 -1132221 countPokes4 = 0 -1132222 countRewards4 = 0 -1132222 leafProbs4 = 50 -1132222 countPokes5 = 1 -1132222 countRewards5 = 1 -1132237 leafProbs5 = 80 -1132237 countPokes6 = 3 -1132238 countRewards6 = 1 -1132238 leafProbs6 = 50 -~~~ -1132394 DOWN 6 -1132394 0 0 -1132422 UP 6 -1132422 32 0 -1132437 DOWN 6 -1132437 0 0 -1157002 UP 6 -1157002 32 0 -1157518 DOWN 6 -1157518 0 0 -1160471 UP 1 -1160471 1 0 -1160482 DOWN 1 -1160482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1160504 UP 1 -1160504 1 0 -~~~ -1160510 contingency = 1 -1160510 trialThresh = 100 -1160510 timeMaxOut = 20 -1160511 timeElapsed = 7 -1160511 totalPokes = 9 -1160512 totalRewards = 4 -1160512 countPokes1 = 4 -1160512 countRewards1 = 1 -1160512 leafProbs1 = 80 -1160513 countPokes2 = 1 -1160513 countRewards2 = 1 -1160527 leafProbs2 = 20 -1160528 countPokes3 = 0 -1160528 countRewards3 = 0 -1160528 leafProbs3 = 20 -1160528 countPokes4 = 0 -1160528 countRewards4 = 0 -1160529 leafProbs4 = 50 -1160529 countPokes5 = 1 -1160530 countRewards5 = 1 -1160544 leafProbs5 = 80 -1160544 countPokes6 = 3 -1160544 countRewards6 = 1 -1160545 leafProbs6 = 50 -~~~ -1160809 DOWN 1 -1160809 0 0 -1160823 UP 1 -1160823 1 0 -1160943 DOWN 1 -1160943 0 0 - - description: state script log run 2 - task_epochs: 4, -] -2021-01-27 19:27:35,087 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 19:27:36,145 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 19:27:36,147 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 19:27:36,147 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 19:27:36,148 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 19:27:36,148 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 19:27:36,156 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 19:27:36,157 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 19:27:36,161 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 19:27:36,162 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 19:27:36,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 19:27:36,729 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 19:27:36,730 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 19:27:36,730 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 19:27:36,730 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 19:27:36,731 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 19:27:36,762 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 19:27:36,765 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 19:27:36,766 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 19:27:36,766 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 19:27:39,501 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 19:27:39,503 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 19:30:55,029 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 19:30:55,037 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 19:30:55,038 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 19:30:55,039 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 19:30:55,039 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 19:30:55,363 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 19:30:55,376 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 19:31:43,977 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-27 19:34:05,532 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat -2021-01-27 19:35:08,058 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat -2021-01-27 19:36:24,599 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 19:36:24,604 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 19:36:24,605 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 19:36:35,403 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-27 19:50:51,492 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 19:50:51,645 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 19:50:51,646 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 19:50:51,646 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 19:50:51,647 rec_to_binaries.core: INFO Extracting time... -2021-01-27 19:51:23,691 rec_to_binaries.core: INFO Making position directory... -2021-01-27 19:51:23,744 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 19:51:23,745 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 19:51:23,746 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 19:51:23,747 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 19:51:24,172 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-27 19:51:24,475 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 19:51:24,772 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 19:51:24,773 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 19:51:24,774 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 19:51:24,784 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 19:51:24,784 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 19:51:24,786 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140594188834960 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140594188834320 -Fields: - content: # -#% author: AC -#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 -#% same as branch_always_reward_no_revisit.sc -# -#%initialize constant vars -#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min -#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later -# -#%initialize updating vars -#int rewardPump = 0 %can take on values 7-12 in fxn 1 -#int rewardWell = 0 %can take on values 1-6 in fxn 4 -#int timeElapsed = 0 -#int totalPokes = 0 -#int totalRewards = 0 -#int contingency = -1 -#int count = 0 -#int loopInterval = 250 -#int trialThresh = 0 -#int timeMaxOut = 0 -# -#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being -#int leafProbs2 = 0 -#int leafProbs3 = 0 -#int leafProbs4 = 0 -#int leafProbs5 = 0 -#int leafProbs6 = 0 -# -#int countPokes1 = 0 -#int countPokes2 = 0 -#int countPokes3 = 0 -#int countPokes4 = 0 -#int countPokes5 = 0 -#int countPokes6 = 0 -# -#int countRewards1 = 0 -#int countRewards2 = 0 -#int countRewards3 = 0 -#int countRewards4 = 0 -#int countRewards5 = 0 -#int countRewards6 = 0 -# -#int sessionProbs1 = 0 -#int sessionProbs2 = 0 -#int sessionProbs3 = 0 -#int sessionProbs4 = 0 -#int sessionProbs5 = 0 -#int sessionProbs6 = 0 -# -#%give reward for certain duration after certain delay -#function 1 -# do in delayRewardPeriod -# portout[rewardPump] = 1 %start rewarding with this pump dio -# do in deliverPeriod -# portout[rewardPump] = 0 %stop rewarding with this pump dio -# end -# end -#end; -# -#%keep track of animal behavior and display for experimenter -#function 2 -# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... -# disp(contingency) -# disp(trialThresh) -# disp(timeMaxOut) -# disp(timeElapsed) %length of session thus far -# disp(totalPokes) %how many nonrepeated well visits thus far -# disp(totalRewards) %how many rewards collected thus far -# -# disp(countPokes1) %how many pokes at each well, 6x1 array turned str -# disp(countRewards1) %how many rewards collected per well -# disp(leafProbs1) %experimenter-determined probabilities of reward per well -# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke -# -# disp(countPokes2) -# disp(countRewards2) -# disp(leafProbs2) -# %disp(sessionProbs2) -# -# disp(countPokes3) -# disp(countRewards3) -# disp(leafProbs3) -# %disp(sessionProbs3) -# -# disp(countPokes4) -# disp(countRewards4) -# disp(leafProbs4) -# %disp(sessionProbs4) -# -# disp(countPokes5) -# disp(countRewards5) -# disp(leafProbs5) -# %disp(sessionProbs5) -# -# disp(countPokes6) -# disp(countRewards6) -# disp(leafProbs6) -# %disp(sessionProbs6) -#end; -# -# -#%tell the user that the contingency is complete -#function 3 -# disp('This contingency is over!') -#end; -# -#%end session -#function 4 -# while count < 50 do every loopInterval -# portout[1] = flip -# portout[2] = flip -# portout[3] = flip -# portout[4] = flip -# portout[5] = flip -# portout[6] = flip -# count = count+1 -# then do -# portout[1] = 0 -# portout[2] = 0 -# portout[3] = 0 -# portout[4] = 0 -# portout[5] = 0 -# portout[6] = 0 -# end -# disp('This session is complete!') -#end; -# -# -#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) -#callback portin[1] up -# disp('UP 1') -#end; -# -#callback portin[1] down -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# disp('UP 2') -#end; -# -#callback portin[2] down -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# disp('UP 3') -#end; -# -#callback portin[3] down -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# disp('UP 4') -#end; -# -#callback portin[4] down -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# disp('UP 5') -#end; -# -#callback portin[5] down -# disp('DOWN 5') -#end; -#callback portin[6] up -# disp('UP 6') -#end; -# -#callback portin[6] down -# disp('DOWN 6') -#end; -# -# -# -##author: AC -##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 -##contingency changes occur automatically after either a # of trials or # of minutes -#''' -#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur -#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. -# -#Basic structure: -#if nosepoke at a well -#if the nosepoke!= last nosepoke location -# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p -# trigger(fxn1) #deliver reward, and stop after reward duration -#display updated trial info -#''' -# -##import -#import numpy as np -#import re -#import time -#import math -#from tkinter import * -# -##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) -#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. -#trialThresh = 100 #per contingency -#timeMaxOut = 20 #per contingency, in mins -# -##set up wells and pumps dios -#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info -#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery -# -##variables to keep track of and update during behavior (global) -#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. -#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. -#timeElapsed = 0 #session length thus far in mins -#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. -#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) -#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward -#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 -#runningTrials = False #must say yes to saving data to turn this to true -# -##THIS FXN MUST BE NAMED 'callback'!! -#def callback(line): -# #when an event occurs out on the track, addScQtEvent will call this fxn -# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) -# pokeIn(re.findall(r'\d+',line)) -# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, -# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" -# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) -# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells -# -##when animal nosepokes and breaks beam -#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes -# global currLeaf -# global timeStart -# global leafWells -# global lastLeaf -# global countPokes -# global leafProbs -# global leafPumps -# global contingency -# global countRewards -# global runningTrials -# global timeElapsed -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# if currLeaf == -1: #if it's the first trial in the contingency -# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke -# #if timeElapsed >= timeMaxOut: -# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency -# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency -# #change. sort of defeats the purpose of the floor approach right now. -# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") -# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") -# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") -# timeStart = time.time() #start time for the contingency -# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency -# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") -# countPokes = np.array([0,0,0,0,0,0]) -# countRewards = np.array([0,0,0,0,0,0]) -# for i in range(len(countPokes)): #initialize all as zero -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# for i in range(len(countRewards)): #initialize all as zero -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 -# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump -# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well -# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf -# for i in range(len(countPokes)): -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") -# if np.random.random_sample() < leafProbs[contingency][currLeaf]: -# deliverReward(leafPumps[currLeaf]) -# -##deliver reward, called upon poking in a nonrepeated well -#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps -# global currLeaf -# global rewardPump -# global countRewards -# -# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use -# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward -# countRewards[currLeaf] += 1 #increment num of rewards at this location -# for i in range(len(countRewards)): -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") -# -##update lastLeaf and print out info about the trial if it was at a nonrepeated well -#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells -# global leafWells -# global currLeaf -# global lastLeaf -# global timeElapsed -# global timeStart -# global countPokes -# global countRewards -# global leafProbs -# global contingency -# global runningTrials -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# #if leafWells.index(int(dio[1])) != currLeaf -# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. -# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far -# timeElapsed = round((time.time()-timeStart)/60) -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log -# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn -# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. -# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): -# if contingency < len(leafProbs) - 1: -# currLeaf = -1 #to enable shifting to next contingency -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# timeElapsed = 0 -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# if contingency == len(leafProbs) - 1: -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# runningTrials = False #so no more rewards or anything happen on track -# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session -# -##gui to help remind user that should have saved data -#savingDisp = Tk() -# -#def yesSaving(): -# global runningTrials -# savingDisp.destroy() -# runningTrials=True -# -#def noSaving(): -# savingDisp.destroy() -# -#saveFrame1 = Frame(savingDisp) -#saveFrame1.pack(side = TOP) -# -#saveFrame2 = Frame(savingDisp) -#saveFrame2.pack(side = BOTTOM) -# -#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") -#LS0.pack() -# -#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) -#B1.pack(side = LEFT) -# -#B2 = Button(saveFrame2, text ="No", command = noSaving) -#B2.pack(side = LEFT) -# -#savingDisp.mainloop() -# -# -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94048 UP 1 -94048 1 0 -94058 DOWN 1 -94058 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94112 contingency = 0 -94112 trialThresh = 100 -94112 timeMaxOut = 20 -94112 timeElapsed = 0 -94112 totalPokes = 1 -94113 totalRewards = 0 -94113 countPokes1 = 1 -94114 countRewards1 = 0 -94114 leafProbs1 = 80 -94114 countPokes2 = 0 -94114 countRewards2 = 0 -94128 leafProbs2 = 20 -94129 countPokes3 = 0 -94129 countRewards3 = 0 -94130 leafProbs3 = 20 -94130 countPokes4 = 0 -94130 countRewards4 = 0 -94130 leafProbs4 = 50 -94131 countPokes5 = 0 -94131 countRewards5 = 0 -94132 leafProbs5 = 80 -94132 countPokes6 = 0 -94146 countRewards6 = 0 -94146 leafProbs6 = 50 -~~~ -95370 UP 1 -95370 1 0 -95396 DOWN 1 -95396 0 0 -95404 UP 1 -95404 1 0 -95415 DOWN 1 -95415 0 0 -95449 UP 1 -95449 1 0 -95507 DOWN 1 -95507 0 0 -95526 UP 1 -95526 1 0 -95527 DOWN 1 -95527 0 0 -95534 UP 1 -95534 1 0 -98011 DOWN 1 -98011 0 0 -109846 UP 6 -109846 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -109947 DOWN 6 -109947 0 0 -109954 UP 6 -109954 32 0 -~~~ -109967 contingency = 0 -109967 trialThresh = 100 -109968 timeMaxOut = 20 -109968 timeElapsed = 0 -109969 totalPokes = 2 -109969 totalRewards = 0 -109969 countPokes1 = 1 -109969 countRewards1 = 0 -109969 leafProbs1 = 80 -109970 countPokes2 = 0 -109970 countRewards2 = 0 -109984 leafProbs2 = 20 -109985 countPokes3 = 0 -109985 countRewards3 = 0 -109985 leafProbs3 = 20 -109985 countPokes4 = 0 -109985 countRewards4 = 0 -109986 leafProbs4 = 50 -109986 countPokes5 = 0 -109987 countRewards5 = 0 -109987 leafProbs5 = 80 -110001 countPokes6 = 1 -110001 countRewards6 = 0 -110001 leafProbs6 = 50 -~~~ -111783 DOWN 6 -111783 0 0 -111799 UP 6 -111799 32 0 -112400 DOWN 6 -112399 0 0 -115161 UP 5 -115161 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115185 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115485 16 0 -115577 DOWN 5 -115577 0 0 -~~~ -115603 contingency = 0 -115603 trialThresh = 100 -115604 timeMaxOut = 20 -115604 timeElapsed = 1 -115605 totalPokes = 3 -115605 totalRewards = 1 -115605 countPokes1 = 1 -115605 countRewards1 = 0 -115606 leafProbs1 = 80 -115606 countPokes2 = 0 -115607 countRewards2 = 0 -115620 leafProbs2 = 20 -115621 countPokes3 = 0 -115621 countRewards3 = 0 -115621 leafProbs3 = 20 -115621 countPokes4 = 0 -115622 countRewards4 = 0 -115622 leafProbs4 = 50 -115623 countPokes5 = 1 -115623 countRewards5 = 1 -115623 leafProbs5 = 80 -115637 countPokes6 = 1 -115637 countRewards6 = 0 -115637 leafProbs6 = 50 -~~~ -115638 UP 5 -115638 16 0 -118235 DOWN 5 -118235 0 0 -118252 UP 5 -118252 16 0 -118676 DOWN 5 -118676 0 0 -124414 UP 4 -124414 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124444 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124564 DOWN 4 -124564 0 512 -124571 UP 4 -124571 8 512 -~~~ -124590 contingency = 0 -124590 trialThresh = 100 -124591 timeMaxOut = 20 -124591 timeElapsed = 1 -124591 totalPokes = 4 -124591 totalRewards = 2 -124592 countPokes1 = 1 -124592 countRewards1 = 0 -124592 leafProbs1 = 80 -124593 countPokes2 = 0 -124593 countRewards2 = 0 -124607 leafProbs2 = 20 -124607 countPokes3 = 0 -124607 countRewards3 = 0 -124608 leafProbs3 = 20 -124608 countPokes4 = 1 -124609 countRewards4 = 1 -124609 leafProbs4 = 50 -124609 countPokes5 = 1 -124609 countRewards5 = 1 -124609 leafProbs5 = 80 -124623 countPokes6 = 1 -124623 countRewards6 = 0 -124624 leafProbs6 = 50 -~~~ -124744 8 0 -127285 DOWN 4 -127285 0 0 -128916 UP 3 -128916 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -131495 DOWN 3 -131495 0 0 -131506 UP 3 -131506 4 0 -~~~ -131522 contingency = 0 -131523 trialThresh = 100 -131523 timeMaxOut = 20 -131523 timeElapsed = 1 -131523 totalPokes = 5 -131524 totalRewards = 2 -131524 countPokes1 = 1 -131525 countRewards1 = 0 -131525 leafProbs1 = 80 -131525 countPokes2 = 0 -131525 countRewards2 = 0 -131539 leafProbs2 = 20 -131539 countPokes3 = 1 -131540 countRewards3 = 0 -131540 leafProbs3 = 20 -131541 countPokes4 = 1 -131541 countRewards4 = 1 -131541 leafProbs4 = 50 -131541 countPokes5 = 1 -131542 countRewards5 = 1 -131542 leafProbs5 = 80 -131556 countPokes6 = 1 -131556 countRewards6 = 0 -131557 leafProbs6 = 50 -~~~ -131829 DOWN 3 -131829 0 0 -131849 UP 3 -131849 4 0 -131922 DOWN 3 -131922 0 0 -134163 UP 4 -134163 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -134675 DOWN 4 -134675 0 0 -~~~ -134693 contingency = 0 -134693 trialThresh = 100 -134693 timeMaxOut = 20 -134694 timeElapsed = 1 -134694 totalPokes = 6 -134695 totalRewards = 2 -134695 countPokes1 = 1 -134695 countRewards1 = 0 -134695 leafProbs1 = 80 -134696 countPokes2 = 0 -134696 countRewards2 = 0 -134710 leafProbs2 = 20 -134710 countPokes3 = 1 -134711 countRewards3 = 0 -134711 leafProbs3 = 20 -134711 countPokes4 = 2 -134711 countRewards4 = 1 -134712 leafProbs4 = 50 -134712 countPokes5 = 1 -134713 countRewards5 = 1 -134713 leafProbs5 = 80 -134727 countPokes6 = 1 -134727 countRewards6 = 0 -134727 leafProbs6 = 50 -~~~ -136327 UP 3 -136327 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -137036 DOWN 3 -137036 0 0 -~~~ -137065 contingency = 0 -137065 trialThresh = 100 -137065 timeMaxOut = 20 -137066 timeElapsed = 1 -137066 totalPokes = 7 -137067 totalRewards = 2 -137067 countPokes1 = 1 -137067 countRewards1 = 0 -137067 leafProbs1 = 80 -137068 countPokes2 = 0 -137068 countRewards2 = 0 -137082 leafProbs2 = 20 -137082 countPokes3 = 2 -137083 countRewards3 = 0 -137083 leafProbs3 = 20 -137083 countPokes4 = 2 -137083 countRewards4 = 1 -137084 leafProbs4 = 50 -137084 countPokes5 = 1 -137085 countRewards5 = 1 -137085 leafProbs5 = 80 -137099 countPokes6 = 1 -137099 countRewards6 = 0 -137099 leafProbs6 = 50 -~~~ -143600 UP 5 -143600 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143854 DOWN 5 -143854 0 0 -~~~ -143877 contingency = 0 -143877 trialThresh = 100 -143877 timeMaxOut = 20 -143878 timeElapsed = 1 -143878 totalPokes = 8 -143879 totalRewards = 2 -143879 countPokes1 = 1 -143879 countRewards1 = 0 -143879 leafProbs1 = 80 -143880 countPokes2 = 0 -143880 countRewards2 = 0 -143894 leafProbs2 = 20 -143894 countPokes3 = 2 -143895 countRewards3 = 0 -143895 leafProbs3 = 20 -143895 countPokes4 = 2 -143895 countRewards4 = 1 -143896 leafProbs4 = 50 -143896 countPokes5 = 2 -143897 countRewards5 = 1 -143897 leafProbs5 = 80 -143911 countPokes6 = 1 -143911 countRewards6 = 0 -143911 leafProbs6 = 50 -~~~ -143911 UP 5 -143911 16 0 -144383 DOWN 5 -144383 0 0 -146591 UP 6 -146591 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146617 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146917 32 0 -147061 DOWN 6 -147061 0 0 -~~~ -147089 contingency = 0 -147090 trialThresh = 100 -147090 timeMaxOut = 20 -147091 timeElapsed = 1 -147091 totalPokes = 9 -147091 totalRewards = 3 -147091 countPokes1 = 1 -147092 countRewards1 = 0 -147092 leafProbs1 = 80 -147093 countPokes2 = 0 -147093 countRewards2 = 0 -147107 leafProbs2 = 20 -147107 countPokes3 = 2 -147107 countRewards3 = 0 -147107 leafProbs3 = 20 -147108 countPokes4 = 2 -147108 countRewards4 = 1 -147109 leafProbs4 = 50 -147109 countPokes5 = 2 -147109 countRewards5 = 1 -147109 leafProbs5 = 80 -147123 countPokes6 = 2 -147123 countRewards6 = 1 -147124 leafProbs6 = 50 -~~~ -147124 UP 6 -147124 32 0 -147150 DOWN 6 -147150 0 0 -147157 UP 6 -147157 32 0 -149454 DOWN 6 -149454 0 0 -160370 UP 1 -160370 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160397 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160522 DOWN 1 -160522 0 64 -160533 UP 1 -160533 1 64 -~~~ -160544 contingency = 0 -160544 trialThresh = 100 -160544 timeMaxOut = 20 -160545 timeElapsed = 2 -160545 totalPokes = 10 -160546 totalRewards = 4 -160546 countPokes1 = 2 -160546 countRewards1 = 1 -160546 leafProbs1 = 80 -160547 countPokes2 = 0 -160547 countRewards2 = 0 -160561 leafProbs2 = 20 -160561 countPokes3 = 2 -160562 countRewards3 = 0 -160562 leafProbs3 = 20 -160562 countPokes4 = 2 -160562 countRewards4 = 1 -160563 leafProbs4 = 50 -160563 countPokes5 = 2 -160564 countRewards5 = 1 -160564 leafProbs5 = 80 -160578 countPokes6 = 2 -160578 countRewards6 = 1 -160578 leafProbs6 = 50 -~~~ -160697 1 0 -163834 DOWN 1 -163834 0 0 -166987 UP 2 -166987 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -167144 DOWN 2 -167144 0 0 -167149 UP 2 -167149 2 0 -~~~ -167168 contingency = 0 -167168 trialThresh = 100 -167169 timeMaxOut = 20 -167169 timeElapsed = 2 -167170 totalPokes = 11 -167170 totalRewards = 4 -167170 countPokes1 = 2 -167170 countRewards1 = 1 -167171 leafProbs1 = 80 -167171 countPokes2 = 1 -167172 countRewards2 = 0 -167186 leafProbs2 = 20 -167186 countPokes3 = 2 -167186 countRewards3 = 0 -167186 leafProbs3 = 20 -167186 countPokes4 = 2 -167187 countRewards4 = 1 -167187 leafProbs4 = 50 -167188 countPokes5 = 2 -167188 countRewards5 = 1 -167188 leafProbs5 = 80 -167202 countPokes6 = 2 -167202 countRewards6 = 1 -167202 leafProbs6 = 50 -~~~ -169470 DOWN 2 -169470 0 0 -169499 UP 2 -169499 2 0 -169914 DOWN 2 -169914 0 0 -178210 UP 1 -178210 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178233 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178533 1 0 -181346 DOWN 1 -181346 0 0 -~~~ -181372 contingency = 0 -181372 trialThresh = 100 -181372 timeMaxOut = 20 -181373 timeElapsed = 2 -181373 totalPokes = 12 -181374 totalRewards = 5 -181374 countPokes1 = 3 -181374 countRewards1 = 2 -181374 leafProbs1 = 80 -181375 countPokes2 = 1 -181375 countRewards2 = 0 -181389 leafProbs2 = 20 -181389 countPokes3 = 2 -181390 countRewards3 = 0 -181390 leafProbs3 = 20 -181390 countPokes4 = 2 -181390 countRewards4 = 1 -181391 leafProbs4 = 50 -181391 countPokes5 = 2 -181392 countRewards5 = 1 -181392 leafProbs5 = 80 -181406 countPokes6 = 2 -181406 countRewards6 = 1 -181406 leafProbs6 = 50 -~~~ -184630 UP 2 -184630 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184804 DOWN 2 -184804 0 0 -184815 UP 2 -184815 2 0 -~~~ -184832 contingency = 0 -184832 trialThresh = 100 -184832 timeMaxOut = 20 -184832 timeElapsed = 2 -184833 totalPokes = 13 -184833 totalRewards = 5 -184834 countPokes1 = 3 -184834 countRewards1 = 2 -184834 leafProbs1 = 80 -184834 countPokes2 = 2 -184835 countRewards2 = 0 -184849 leafProbs2 = 20 -184849 countPokes3 = 2 -184850 countRewards3 = 0 -184850 leafProbs3 = 20 -184850 countPokes4 = 2 -184850 countRewards4 = 1 -184850 leafProbs4 = 50 -184851 countPokes5 = 2 -184851 countRewards5 = 1 -184852 leafProbs5 = 80 -184865 countPokes6 = 2 -184866 countRewards6 = 1 -184866 leafProbs6 = 50 -~~~ -185326 DOWN 2 -185326 0 0 -185333 UP 2 -185333 2 0 -185995 DOWN 2 -185995 0 0 -189960 UP 1 -189960 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190078 DOWN 1 -190078 0 0 -190080 UP 1 -190080 1 0 -~~~ -190098 contingency = 0 -190099 trialThresh = 100 -190099 timeMaxOut = 20 -190100 timeElapsed = 2 -190100 totalPokes = 14 -190100 totalRewards = 5 -190100 countPokes1 = 4 -190101 countRewards1 = 2 -190101 leafProbs1 = 80 -190101 countPokes2 = 2 -190102 countRewards2 = 0 -190116 leafProbs2 = 20 -190116 countPokes3 = 2 -190116 countRewards3 = 0 -190116 leafProbs3 = 20 -190117 countPokes4 = 2 -190117 countRewards4 = 1 -190118 leafProbs4 = 50 -190118 countPokes5 = 2 -190118 countRewards5 = 1 -190118 leafProbs5 = 80 -190132 countPokes6 = 2 -190132 countRewards6 = 1 -190132 leafProbs6 = 50 -~~~ -190133 DOWN 1 -190133 0 0 -190160 UP 1 -190160 1 0 -190248 DOWN 1 -190248 0 0 -190276 UP 1 -190276 1 0 -190356 DOWN 1 -190356 0 0 -190391 UP 1 -190391 1 0 -190481 DOWN 1 -190481 0 0 -190555 UP 1 -190555 1 0 -190570 DOWN 1 -190570 0 0 -190849 UP 1 -190849 1 0 -190908 DOWN 1 -190908 0 0 -193661 UP 2 -193661 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -193935 DOWN 2 -193935 0 0 -193938 UP 2 -193938 2 0 -~~~ -193959 contingency = 0 -193959 trialThresh = 100 -193960 timeMaxOut = 20 -193960 timeElapsed = 2 -193960 totalPokes = 15 -193960 totalRewards = 5 -193961 countPokes1 = 4 -193961 countRewards1 = 2 -193962 leafProbs1 = 80 -193962 countPokes2 = 3 -193962 countRewards2 = 0 -193976 leafProbs2 = 20 -193976 countPokes3 = 2 -193977 countRewards3 = 0 -193977 leafProbs3 = 20 -193977 countPokes4 = 2 -193978 countRewards4 = 1 -193978 leafProbs4 = 50 -193978 countPokes5 = 2 -193978 countRewards5 = 1 -193979 leafProbs5 = 80 -193992 countPokes6 = 2 -193993 countRewards6 = 1 -193993 leafProbs6 = 50 -~~~ -194100 DOWN 2 -194100 0 0 -196098 UP 1 -196098 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196123 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196423 1 0 -196514 DOWN 1 -196514 0 0 -196516 UP 1 -196516 1 0 -~~~ -196532 contingency = 0 -196532 trialThresh = 100 -196532 timeMaxOut = 20 -196533 timeElapsed = 3 -196533 totalPokes = 16 -196534 totalRewards = 6 -196534 countPokes1 = 5 -196534 countRewards1 = 3 -196534 leafProbs1 = 80 -196534 countPokes2 = 3 -196535 countRewards2 = 0 -196549 leafProbs2 = 20 -196549 countPokes3 = 2 -196550 countRewards3 = 0 -196550 leafProbs3 = 20 -196550 countPokes4 = 2 -196550 countRewards4 = 1 -196551 leafProbs4 = 50 -196551 countPokes5 = 2 -196551 countRewards5 = 1 -196552 leafProbs5 = 80 -196565 countPokes6 = 2 -196566 countRewards6 = 1 -196566 leafProbs6 = 50 -~~~ -198509 DOWN 1 -198509 0 0 -202035 UP 1 -202035 1 0 -202194 DOWN 1 -202194 0 0 -213522 UP 6 -213522 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -213903 DOWN 6 -213903 0 0 -213919 UP 6 -213919 32 0 -~~~ -213923 contingency = 0 -213923 trialThresh = 100 -213924 timeMaxOut = 20 -213924 timeElapsed = 3 -213925 totalPokes = 17 -213925 totalRewards = 6 -213925 countPokes1 = 5 -213925 countRewards1 = 3 -213926 leafProbs1 = 80 -213926 countPokes2 = 3 -213927 countRewards2 = 0 -213940 leafProbs2 = 20 -213941 countPokes3 = 2 -213941 countRewards3 = 0 -213941 leafProbs3 = 20 -213941 countPokes4 = 2 -213942 countRewards4 = 1 -213942 leafProbs4 = 50 -213943 countPokes5 = 2 -213943 countRewards5 = 1 -213943 leafProbs5 = 80 -213957 countPokes6 = 3 -213957 countRewards6 = 1 -213957 leafProbs6 = 50 -~~~ -213962 DOWN 6 -213962 0 0 -218705 UP 5 -218705 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -218741 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -219041 16 0 -220419 DOWN 5 -220419 0 0 -220425 UP 5 -220425 16 0 -~~~ -220436 contingency = 0 -220436 trialThresh = 100 -220437 timeMaxOut = 20 -220437 timeElapsed = 3 -220437 totalPokes = 18 -220437 totalRewards = 7 -220437 countPokes1 = 5 -220438 countRewards1 = 3 -220438 leafProbs1 = 80 -220439 countPokes2 = 3 -220439 countRewards2 = 0 -220453 leafProbs2 = 20 -220453 countPokes3 = 2 -220453 countRewards3 = 0 -220454 leafProbs3 = 20 -220454 countPokes4 = 2 -220455 countRewards4 = 1 -220455 leafProbs4 = 50 -220455 countPokes5 = 3 -220455 countRewards5 = 2 -220455 leafProbs5 = 80 -220469 countPokes6 = 3 -220469 countRewards6 = 1 -220470 leafProbs6 = 50 -~~~ -221126 DOWN 5 -221126 0 0 -221145 UP 5 -221145 16 0 -221557 DOWN 5 -221557 0 0 -225579 UP 6 -225579 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -225814 DOWN 6 -225814 0 0 -225835 UP 6 -225835 32 0 -~~~ -225843 contingency = 0 -225843 trialThresh = 100 -225843 timeMaxOut = 20 -225844 timeElapsed = 3 -225844 totalPokes = 19 -225845 totalRewards = 7 -225845 countPokes1 = 5 -225845 countRewards1 = 3 -225845 leafProbs1 = 80 -225846 countPokes2 = 3 -225846 countRewards2 = 0 -225860 leafProbs2 = 20 -225860 countPokes3 = 2 -225861 countRewards3 = 0 -225861 leafProbs3 = 20 -225861 countPokes4 = 2 -225861 countRewards4 = 1 -225862 leafProbs4 = 50 -225862 countPokes5 = 3 -225863 countRewards5 = 2 -225863 leafProbs5 = 80 -225877 countPokes6 = 4 -225877 countRewards6 = 1 -225877 leafProbs6 = 50 -~~~ -226005 DOWN 6 -226005 0 0 -226079 UP 6 -226079 32 0 -226211 DOWN 6 -226211 0 0 -226241 UP 6 -226241 32 0 -226290 DOWN 6 -226290 0 0 -226389 UP 6 -226389 32 0 -226584 DOWN 6 -226584 0 0 -226651 UP 6 -226651 32 0 -226788 DOWN 6 -226788 0 0 -230377 UP 5 -230377 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230409 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230619 DOWN 5 -230619 0 1024 -230632 UP 5 -230632 16 1024 -~~~ -230647 contingency = 0 -230647 trialThresh = 100 -230647 timeMaxOut = 20 -230647 timeElapsed = 3 -230648 totalPokes = 20 -230648 totalRewards = 8 -230649 countPokes1 = 5 -230649 countRewards1 = 3 -230649 leafProbs1 = 80 -230649 countPokes2 = 3 -230650 countRewards2 = 0 -230663 leafProbs2 = 20 -230664 countPokes3 = 2 -230664 countRewards3 = 0 -230665 leafProbs3 = 20 -230665 countPokes4 = 2 -230665 countRewards4 = 1 -230665 leafProbs4 = 50 -230666 countPokes5 = 4 -230666 countRewards5 = 3 -230667 leafProbs5 = 80 -230680 countPokes6 = 4 -230681 countRewards6 = 1 -230681 leafProbs6 = 50 -~~~ -230708 16 0 -232797 DOWN 5 -232796 0 0 -232802 UP 5 -232802 16 0 -232900 DOWN 5 -232900 0 0 -232928 UP 5 -232928 16 0 -233233 DOWN 5 -233233 0 0 -233256 UP 5 -233256 16 0 -233319 DOWN 5 -233319 0 0 -235867 UP 6 -235867 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -235898 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -236198 32 0 -238601 DOWN 6 -238601 0 0 -238614 UP 6 -238614 32 0 -~~~ -238631 contingency = 0 -238631 trialThresh = 100 -238631 timeMaxOut = 20 -238631 timeElapsed = 4 -238632 totalPokes = 21 -238632 totalRewards = 9 -238632 countPokes1 = 5 -238633 countRewards1 = 3 -238633 leafProbs1 = 80 -238633 countPokes2 = 3 -238633 countRewards2 = 0 -238647 leafProbs2 = 20 -238648 countPokes3 = 2 -238648 countRewards3 = 0 -238649 leafProbs3 = 20 -238649 countPokes4 = 2 -238649 countRewards4 = 1 -238649 leafProbs4 = 50 -238650 countPokes5 = 4 -238650 countRewards5 = 3 -238650 leafProbs5 = 80 -238664 countPokes6 = 5 -238664 countRewards6 = 2 -238665 leafProbs6 = 50 -~~~ -239049 DOWN 6 -239049 0 0 -250071 UP 1 -250071 1 0 -~~~ -~~~ -250097 DOWN 1 -250097 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250103 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250129 UP 1 -250129 1 64 -~~~ -250136 contingency = 0 -250137 trialThresh = 100 -250137 timeMaxOut = 20 -250137 timeElapsed = 4 -250137 totalPokes = 22 -250137 totalRewards = 10 -250138 countPokes1 = 6 -250138 countRewards1 = 4 -250139 leafProbs1 = 80 -250139 countPokes2 = 3 -250139 countRewards2 = 0 -250153 leafProbs2 = 20 -250153 countPokes3 = 2 -250154 countRewards3 = 0 -250154 leafProbs3 = 20 -250155 countPokes4 = 2 -250155 countRewards4 = 1 -250155 leafProbs4 = 50 -250155 countPokes5 = 4 -250156 countRewards5 = 3 -250156 leafProbs5 = 80 -250170 countPokes6 = 5 -250170 countRewards6 = 2 -250170 leafProbs6 = 50 -~~~ -250171 DOWN 1 -250171 0 64 -250204 UP 1 -250204 1 64 -250248 DOWN 1 -250248 0 64 -250280 UP 1 -250280 1 64 -250403 1 0 -250446 DOWN 1 -250446 0 0 -250455 UP 1 -250455 1 0 -253556 DOWN 1 -253556 0 0 -256084 UP 2 -256084 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256264 DOWN 2 -256264 0 0 -256267 UP 2 -256267 2 0 -~~~ -256282 contingency = 0 -256282 trialThresh = 100 -256282 timeMaxOut = 20 -256282 timeElapsed = 4 -256282 totalPokes = 23 -256283 totalRewards = 10 -256283 countPokes1 = 6 -256284 countRewards1 = 4 -256284 leafProbs1 = 80 -256284 countPokes2 = 4 -256284 countRewards2 = 0 -256298 leafProbs2 = 20 -256299 countPokes3 = 2 -256299 countRewards3 = 0 -256300 leafProbs3 = 20 -256300 countPokes4 = 2 -256300 countRewards4 = 1 -256300 leafProbs4 = 50 -256301 countPokes5 = 4 -256301 countRewards5 = 3 -256302 leafProbs5 = 80 -256315 countPokes6 = 5 -256316 countRewards6 = 2 -256316 leafProbs6 = 50 -~~~ -256546 DOWN 2 -256546 0 0 -256572 UP 2 -256572 2 0 -256748 DOWN 2 -256748 0 0 -258880 UP 1 -258880 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -258914 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -259214 1 0 -261848 DOWN 1 -261848 0 0 -~~~ -261868 contingency = 0 -261868 trialThresh = 100 -261868 timeMaxOut = 20 -261868 timeElapsed = 4 -261869 totalPokes = 24 -261869 totalRewards = 11 -261870 countPokes1 = 7 -261870 countRewards1 = 5 -261870 leafProbs1 = 80 -261870 countPokes2 = 4 -261870 countRewards2 = 0 -261884 leafProbs2 = 20 -261885 countPokes3 = 2 -261885 countRewards3 = 0 -261886 leafProbs3 = 20 -261886 countPokes4 = 2 -261886 countRewards4 = 1 -261886 leafProbs4 = 50 -261887 countPokes5 = 4 -261887 countRewards5 = 3 -261888 leafProbs5 = 80 -261901 countPokes6 = 5 -261902 countRewards6 = 2 -261902 leafProbs6 = 50 -~~~ -267560 UP 2 -267560 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -267886 DOWN 2 -267886 0 0 -267900 UP 2 -267900 2 0 -~~~ -267911 contingency = 0 -267911 trialThresh = 100 -267912 timeMaxOut = 20 -267912 timeElapsed = 4 -267912 totalPokes = 25 -267912 totalRewards = 11 -267913 countPokes1 = 7 -267913 countRewards1 = 5 -267914 leafProbs1 = 80 -267914 countPokes2 = 5 -267914 countRewards2 = 0 -267928 leafProbs2 = 20 -267928 countPokes3 = 2 -267928 countRewards3 = 0 -267929 leafProbs3 = 20 -267929 countPokes4 = 2 -267930 countRewards4 = 1 -267930 leafProbs4 = 50 -267930 countPokes5 = 4 -267930 countRewards5 = 3 -267931 leafProbs5 = 80 -267944 countPokes6 = 5 -267945 countRewards6 = 2 -267945 leafProbs6 = 50 -~~~ -267946 DOWN 2 -267946 0 0 -272470 UP 2 -272470 2 0 -272489 DOWN 2 -272489 0 0 -272498 UP 2 -272498 2 0 -272506 DOWN 2 -272506 0 0 -275002 UP 1 -275002 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275036 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275336 1 0 -277515 DOWN 1 -277515 0 0 -277520 UP 1 -277520 1 0 -~~~ -277532 contingency = 0 -277533 trialThresh = 100 -277533 timeMaxOut = 20 -277534 timeElapsed = 5 -277534 totalPokes = 26 -277534 totalRewards = 12 -277534 countPokes1 = 8 -277534 countRewards1 = 6 -277535 leafProbs1 = 80 -277535 countPokes2 = 5 -277536 countRewards2 = 0 -277550 leafProbs2 = 20 -277550 countPokes3 = 2 -277550 countRewards3 = 0 -277550 leafProbs3 = 20 -277551 countPokes4 = 2 -277551 countRewards4 = 1 -277552 leafProbs4 = 50 -277552 countPokes5 = 4 -277552 countRewards5 = 3 -277552 leafProbs5 = 80 -277566 countPokes6 = 5 -277566 countRewards6 = 2 -277566 leafProbs6 = 50 -~~~ -277832 DOWN 1 -277832 0 0 -284331 UP 1 -284331 1 0 -284497 DOWN 1 -284497 0 0 -290436 UP 2 -290436 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -291663 DOWN 2 -291663 0 0 -~~~ -291685 contingency = 0 -291686 trialThresh = 100 -291686 timeMaxOut = 20 -291686 timeElapsed = 5 -291686 totalPokes = 27 -291687 totalRewards = 12 -291687 countPokes1 = 8 -291688 countRewards1 = 6 -291688 leafProbs1 = 80 -291688 countPokes2 = 6 -291688 countRewards2 = 0 -291702 leafProbs2 = 20 -291702 countPokes3 = 2 -291703 countRewards3 = 0 -291703 leafProbs3 = 20 -291704 countPokes4 = 2 -291704 countRewards4 = 1 -291704 leafProbs4 = 50 -291704 countPokes5 = 4 -291705 countRewards5 = 3 -291705 leafProbs5 = 80 -291719 countPokes6 = 5 -291719 countRewards6 = 2 -291720 leafProbs6 = 50 -~~~ -298521 UP 1 -298521 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298560 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298859 1 0 -301302 DOWN 1 -301302 0 0 -301320 UP 1 -301320 1 0 -~~~ -301324 contingency = 0 -301324 trialThresh = 100 -301324 timeMaxOut = 20 -301324 timeElapsed = 5 -301325 totalPokes = 28 -301325 totalRewards = 13 -301326 countPokes1 = 9 -301326 countRewards1 = 7 -301326 leafProbs1 = 80 -301326 countPokes2 = 6 -301327 countRewards2 = 0 -301341 leafProbs2 = 20 -301341 countPokes3 = 2 -301342 countRewards3 = 0 -301342 leafProbs3 = 20 -301342 countPokes4 = 2 -301342 countRewards4 = 1 -301343 leafProbs4 = 50 -301343 countPokes5 = 4 -301343 countRewards5 = 3 -301344 leafProbs5 = 80 -301357 countPokes6 = 5 -301358 countRewards6 = 2 -301358 leafProbs6 = 50 -~~~ -301818 DOWN 1 -301818 0 0 -308157 UP 2 -308157 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -308409 DOWN 2 -308409 0 0 -~~~ -308433 contingency = 0 -308433 trialThresh = 100 -308433 timeMaxOut = 20 -308434 timeElapsed = 5 -308434 totalPokes = 29 -308435 totalRewards = 13 -308435 countPokes1 = 9 -308435 countRewards1 = 7 -308435 leafProbs1 = 80 -308436 countPokes2 = 7 -308436 countRewards2 = 0 -308450 leafProbs2 = 20 -308451 countPokes3 = 2 -308451 countRewards3 = 0 -308451 leafProbs3 = 20 -308451 countPokes4 = 2 -308452 countRewards4 = 1 -308452 leafProbs4 = 50 -308452 countPokes5 = 4 -308453 countRewards5 = 3 -308453 leafProbs5 = 80 -308467 countPokes6 = 5 -308467 countRewards6 = 2 -308467 leafProbs6 = 50 -~~~ -311726 UP 1 -311726 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -312211 DOWN 1 -312211 0 0 -~~~ -312317 contingency = 0 -312317 trialThresh = 100 -312318 timeMaxOut = 20 -312318 timeElapsed = 5 -312319 totalPokes = 30 -312319 totalRewards = 13 -312319 countPokes1 = 10 -312319 countRewards1 = 7 -312320 leafProbs1 = 80 -312320 countPokes2 = 7 -312321 countRewards2 = 0 -312335 leafProbs2 = 20 -312335 countPokes3 = 2 -312335 countRewards3 = 0 -312335 leafProbs3 = 20 -312335 countPokes4 = 2 -312336 countRewards4 = 1 -312336 leafProbs4 = 50 -312337 countPokes5 = 4 -312337 countRewards5 = 3 -312337 leafProbs5 = 80 -312351 countPokes6 = 5 -312351 countRewards6 = 2 -312351 leafProbs6 = 50 -~~~ -329565 UP 1 -329565 1 0 -329578 DOWN 1 -329578 0 0 -329607 UP 1 -329607 1 0 -329615 DOWN 1 -329615 0 0 -336849 UP 6 -336849 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -337375 DOWN 6 -337375 0 0 -~~~ -337402 contingency = 0 -337403 trialThresh = 100 -337403 timeMaxOut = 20 -337403 timeElapsed = 6 -337403 totalPokes = 31 -337404 totalRewards = 13 -337404 countPokes1 = 10 -337405 countRewards1 = 7 -337405 leafProbs1 = 80 -337405 countPokes2 = 7 -337405 countRewards2 = 0 -337419 leafProbs2 = 20 -337419 countPokes3 = 2 -337420 countRewards3 = 0 -337420 leafProbs3 = 20 -337421 countPokes4 = 2 -337421 countRewards4 = 1 -337421 leafProbs4 = 50 -337421 countPokes5 = 4 -337422 countRewards5 = 3 -337422 leafProbs5 = 80 -337436 countPokes6 = 6 -337436 countRewards6 = 2 -337437 leafProbs6 = 50 -~~~ -339595 UP 6 -339595 32 0 -339614 DOWN 6 -339614 0 0 -339917 UP 6 -339917 32 0 -340039 DOWN 6 -340039 0 0 -340062 UP 6 -340062 32 0 -341221 DOWN 6 -341221 0 0 -348806 UP 6 -348806 32 0 -349029 DOWN 6 -349029 0 0 -370690 UP 3 -370690 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -371347 DOWN 3 -371347 0 0 -~~~ -371366 contingency = 0 -371367 trialThresh = 100 -371367 timeMaxOut = 20 -371368 timeElapsed = 7 -371368 totalPokes = 32 -371368 totalRewards = 13 -371368 countPokes1 = 10 -371369 countRewards1 = 7 -371369 leafProbs1 = 80 -371370 countPokes2 = 7 -371370 countRewards2 = 0 -371384 leafProbs2 = 20 -371384 countPokes3 = 3 -371384 countRewards3 = 0 -371385 leafProbs3 = 20 -371385 countPokes4 = 2 -371386 countRewards4 = 1 -371386 leafProbs4 = 50 -371386 countPokes5 = 4 -371386 countRewards5 = 3 -371386 leafProbs5 = 80 -371400 countPokes6 = 6 -371400 countRewards6 = 2 -371401 leafProbs6 = 50 -~~~ -371401 UP 3 -371401 4 0 -371462 DOWN 3 -371462 0 0 -376503 UP 4 -376503 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376533 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376832 8 0 -379496 DOWN 4 -379496 0 0 -~~~ -379512 contingency = 0 -379512 trialThresh = 100 -379512 timeMaxOut = 20 -379512 timeElapsed = 7 -379512 totalPokes = 33 -379513 totalRewards = 14 -379513 countPokes1 = 10 -379514 countRewards1 = 7 -379514 leafProbs1 = 80 -379514 countPokes2 = 7 -379514 countRewards2 = 0 -379528 leafProbs2 = 20 -379529 countPokes3 = 3 -379529 countRewards3 = 0 -379530 leafProbs3 = 20 -379530 countPokes4 = 3 -379530 countRewards4 = 2 -379530 leafProbs4 = 50 -379531 countPokes5 = 4 -379531 countRewards5 = 3 -379532 leafProbs5 = 80 -379545 countPokes6 = 6 -379546 countRewards6 = 2 -379546 leafProbs6 = 50 -~~~ -379546 UP 4 -379546 8 0 -380063 DOWN 4 -380063 0 0 -380421 UP 4 -380421 8 0 -382496 DOWN 4 -382496 0 0 -387918 UP 3 -387918 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -388412 DOWN 3 -388412 0 0 -~~~ -388430 contingency = 0 -388430 trialThresh = 100 -388430 timeMaxOut = 20 -388431 timeElapsed = 7 -388431 totalPokes = 34 -388432 totalRewards = 14 -388432 countPokes1 = 10 -388432 countRewards1 = 7 -388432 leafProbs1 = 80 -388433 countPokes2 = 7 -388433 countRewards2 = 0 -388447 leafProbs2 = 20 -388448 countPokes3 = 4 -388448 countRewards3 = 0 -388448 leafProbs3 = 20 -388448 countPokes4 = 3 -388448 countRewards4 = 2 -388449 leafProbs4 = 50 -388449 countPokes5 = 4 -388450 countRewards5 = 3 -388450 leafProbs5 = 80 -388464 countPokes6 = 6 -388464 countRewards6 = 2 -388464 leafProbs6 = 50 -~~~ -390881 UP 4 -390881 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -390913 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391213 8 0 -393870 DOWN 4 -393870 0 0 -~~~ -393894 contingency = 0 -393894 trialThresh = 100 -393894 timeMaxOut = 20 -393894 timeElapsed = 7 -393895 totalPokes = 35 -393895 totalRewards = 15 -393895 countPokes1 = 10 -393896 countRewards1 = 7 -393896 leafProbs1 = 80 -393896 countPokes2 = 7 -393896 countRewards2 = 0 -393910 leafProbs2 = 20 -393911 countPokes3 = 4 -393911 countRewards3 = 0 -393912 leafProbs3 = 20 -393912 countPokes4 = 4 -393912 countRewards4 = 3 -393912 leafProbs4 = 50 -393913 countPokes5 = 4 -393913 countRewards5 = 3 -393914 leafProbs5 = 80 -393927 countPokes6 = 6 -393928 countRewards6 = 2 -393928 leafProbs6 = 50 -~~~ -396968 UP 3 -396968 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -396991 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -397291 4 0 -397330 DOWN 3 -397330 0 0 -397342 UP 3 -397342 4 0 -~~~ -397350 contingency = 0 -397350 trialThresh = 100 -397351 timeMaxOut = 20 -397351 timeElapsed = 8 -397352 totalPokes = 36 -397352 totalRewards = 16 -397352 countPokes1 = 10 -397352 countRewards1 = 7 -397353 leafProbs1 = 80 -397353 countPokes2 = 7 -397353 countRewards2 = 0 -397368 leafProbs2 = 20 -397368 countPokes3 = 5 -397368 countRewards3 = 1 -397368 leafProbs3 = 20 -397368 countPokes4 = 4 -397369 countRewards4 = 3 -397369 leafProbs4 = 50 -397370 countPokes5 = 4 -397370 countRewards5 = 3 -397370 leafProbs5 = 80 -397384 countPokes6 = 6 -397384 countRewards6 = 2 -397384 leafProbs6 = 50 -~~~ -397422 DOWN 3 -397422 0 0 -397432 UP 3 -397432 4 0 -397510 DOWN 3 -397510 0 0 -397514 UP 3 -397514 4 0 -400532 DOWN 3 -400532 0 0 -419715 UP 4 -419715 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -419745 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420045 8 0 -422470 DOWN 4 -422470 0 0 -422484 UP 4 -422484 8 0 -~~~ -422499 contingency = 0 -422499 trialThresh = 100 -422499 timeMaxOut = 20 -422499 timeElapsed = 8 -422500 totalPokes = 37 -422500 totalRewards = 17 -422501 countPokes1 = 10 -422501 countRewards1 = 7 -422501 leafProbs1 = 80 -422501 countPokes2 = 7 -422502 countRewards2 = 0 -422516 leafProbs2 = 20 -422516 countPokes3 = 5 -422517 countRewards3 = 1 -422517 leafProbs3 = 20 -422517 countPokes4 = 5 -422517 countRewards4 = 4 -422517 leafProbs4 = 50 -422518 countPokes5 = 4 -422518 countRewards5 = 3 -422519 leafProbs5 = 80 -422532 countPokes6 = 6 -422533 countRewards6 = 2 -422533 leafProbs6 = 50 -~~~ -423017 DOWN 4 -423017 0 0 -427069 UP 3 -427069 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427094 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427239 DOWN 3 -427239 0 256 -427241 UP 3 -427241 4 256 -~~~ -427264 contingency = 0 -427264 trialThresh = 100 -427264 timeMaxOut = 20 -427265 timeElapsed = 8 -427265 totalPokes = 38 -427265 totalRewards = 18 -427265 countPokes1 = 10 -427266 countRewards1 = 7 -427266 leafProbs1 = 80 -427267 countPokes2 = 7 -427267 countRewards2 = 0 -427281 leafProbs2 = 20 -427281 countPokes3 = 6 -427281 countRewards3 = 2 -427282 leafProbs3 = 20 -427282 countPokes4 = 5 -427283 countRewards4 = 4 -427283 leafProbs4 = 50 -427283 countPokes5 = 4 -427283 countRewards5 = 3 -427284 leafProbs5 = 80 -427297 countPokes6 = 6 -427298 countRewards6 = 2 -427298 leafProbs6 = 50 -~~~ -427394 4 0 -428859 DOWN 3 -428859 0 0 -428870 UP 3 -428870 4 0 -430500 DOWN 3 -430500 0 0 -430508 UP 3 -430508 4 0 -430526 DOWN 3 -430526 0 0 -430529 UP 3 -430529 4 0 -430591 DOWN 3 -430591 0 0 -430598 UP 3 -430598 4 0 -430616 DOWN 3 -430616 0 0 -430625 UP 3 -430625 4 0 -430632 DOWN 3 -430632 0 0 -430643 UP 3 -430643 4 0 -430705 DOWN 3 -430705 0 0 -430716 UP 3 -430716 4 0 -430743 DOWN 3 -430743 0 0 -430751 UP 3 -430751 4 0 -430764 DOWN 3 -430764 0 0 -430767 UP 3 -430767 4 0 -430813 DOWN 3 -430813 0 0 -430823 UP 3 -430823 4 0 -430837 DOWN 3 -430837 0 0 -430847 UP 3 -430847 4 0 -430937 DOWN 3 -430937 0 0 -438029 UP 4 -438029 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -438640 DOWN 4 -438640 0 0 -~~~ -438656 contingency = 0 -438656 trialThresh = 100 -438657 timeMaxOut = 20 -438657 timeElapsed = 9 -438657 totalPokes = 39 -438657 totalRewards = 18 -438658 countPokes1 = 10 -438658 countRewards1 = 7 -438659 leafProbs1 = 80 -438659 countPokes2 = 7 -438659 countRewards2 = 0 -438673 leafProbs2 = 20 -438673 countPokes3 = 6 -438674 countRewards3 = 2 -438674 leafProbs3 = 20 -438675 countPokes4 = 6 -438675 countRewards4 = 4 -438675 leafProbs4 = 50 -438675 countPokes5 = 4 -438675 countRewards5 = 3 -438676 leafProbs5 = 80 -438690 countPokes6 = 6 -438690 countRewards6 = 2 -438690 leafProbs6 = 50 -~~~ -440259 UP 3 -440259 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -440484 DOWN 3 -440484 0 0 -~~~ -440505 UP 3 -440505 4 0 -440506 contingency = 0 -440506 trialThresh = 100 -440507 timeMaxOut = 20 -440507 timeElapsed = 9 -440507 totalPokes = 40 -440507 totalRewards = 18 -440508 countPokes1 = 10 -440508 countRewards1 = 7 -440508 leafProbs1 = 80 -440509 countPokes2 = 7 -440523 countRewards2 = 0 -440523 leafProbs2 = 20 -440523 countPokes3 = 7 -440523 countRewards3 = 2 -440524 leafProbs3 = 20 -440524 countPokes4 = 6 -440525 countRewards4 = 4 -440525 leafProbs4 = 50 -440525 countPokes5 = 4 -440525 countRewards5 = 3 -440539 leafProbs5 = 80 -440539 countPokes6 = 6 -440540 countRewards6 = 2 -440540 leafProbs6 = 50 -~~~ -440595 DOWN 3 -440595 0 0 -440601 UP 3 -440601 4 0 -440618 DOWN 3 -440618 0 0 -440634 UP 3 -440634 4 0 -440725 DOWN 3 -440725 0 0 -440729 UP 3 -440729 4 0 -440749 DOWN 3 -440749 0 0 -440787 UP 3 -440787 4 0 -441093 DOWN 3 -441093 0 0 -441136 UP 3 -441136 4 0 -441147 DOWN 3 -441147 0 0 -441287 UP 3 -441287 4 0 -441509 DOWN 3 -441509 0 0 -444557 UP 4 -444557 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -444894 DOWN 4 -444894 0 0 -~~~ -444911 contingency = 0 -444911 trialThresh = 100 -444911 timeMaxOut = 20 -444911 timeElapsed = 9 -444912 totalPokes = 41 -444912 totalRewards = 18 -444913 countPokes1 = 10 -444913 countRewards1 = 7 -444913 leafProbs1 = 80 -444913 countPokes2 = 7 -444914 countRewards2 = 0 -444928 leafProbs2 = 20 -444928 countPokes3 = 7 -444929 countRewards3 = 2 -444929 leafProbs3 = 20 -444929 countPokes4 = 7 -444929 countRewards4 = 4 -444930 leafProbs4 = 50 -444930 countPokes5 = 4 -444931 countRewards5 = 3 -444931 leafProbs5 = 80 -444945 countPokes6 = 6 -444945 countRewards6 = 2 -444945 leafProbs6 = 50 -~~~ -451529 UP 6 -451529 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -452216 DOWN 6 -452216 0 0 -~~~ -452237 contingency = 0 -452237 trialThresh = 100 -452238 timeMaxOut = 20 -452238 timeElapsed = 9 -452239 totalPokes = 42 -452239 totalRewards = 18 -452239 countPokes1 = 10 -452239 countRewards1 = 7 -452240 leafProbs1 = 80 -452240 countPokes2 = 7 -452241 countRewards2 = 0 -452255 leafProbs2 = 20 -452255 countPokes3 = 7 -452255 countRewards3 = 2 -452255 leafProbs3 = 20 -452256 countPokes4 = 7 -452256 countRewards4 = 4 -452257 leafProbs4 = 50 -452257 countPokes5 = 4 -452257 countRewards5 = 3 -452257 leafProbs5 = 80 -452271 countPokes6 = 7 -452271 countRewards6 = 2 -452271 leafProbs6 = 50 -~~~ -452272 UP 6 -452272 32 0 -452323 DOWN 6 -452323 0 0 -456828 UP 6 -456828 32 0 -457039 DOWN 6 -457039 0 0 -458402 UP 5 -458402 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458432 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458732 16 0 -458786 DOWN 5 -458786 0 0 -458790 UP 5 -458790 16 0 -~~~ -458817 contingency = 0 -458817 trialThresh = 100 -458817 timeMaxOut = 20 -458817 timeElapsed = 9 -458818 totalPokes = 43 -458818 totalRewards = 19 -458819 countPokes1 = 10 -458819 countRewards1 = 7 -458819 leafProbs1 = 80 -458819 countPokes2 = 7 -458820 countRewards2 = 0 -458834 leafProbs2 = 20 -458834 countPokes3 = 7 -458835 countRewards3 = 2 -458835 leafProbs3 = 20 -458835 countPokes4 = 7 -458835 countRewards4 = 4 -458836 leafProbs4 = 50 -458836 countPokes5 = 5 -458837 countRewards5 = 4 -458837 leafProbs5 = 80 -458850 countPokes6 = 7 -458851 countRewards6 = 2 -458851 leafProbs6 = 50 -~~~ -460863 DOWN 5 -460863 0 0 -460877 UP 5 -460877 16 0 -461283 DOWN 5 -461283 0 0 -461306 UP 5 -461306 16 0 -461377 DOWN 5 -461377 0 0 -468674 UP 6 -468674 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469094 DOWN 6 -469094 0 0 -~~~ -469120 contingency = 0 -469120 trialThresh = 100 -469120 timeMaxOut = 20 -469121 timeElapsed = 9 -469121 totalPokes = 44 -469122 totalRewards = 19 -469122 countPokes1 = 10 -469122 countRewards1 = 7 -469122 leafProbs1 = 80 -469123 countPokes2 = 7 -469123 countRewards2 = 0 -469137 leafProbs2 = 20 -469138 countPokes3 = 7 -469138 countRewards3 = 2 -469138 leafProbs3 = 20 -469138 countPokes4 = 7 -469138 countRewards4 = 4 -469139 leafProbs4 = 50 -469139 countPokes5 = 5 -469140 countRewards5 = 4 -469140 leafProbs5 = 80 -469154 countPokes6 = 8 -469154 countRewards6 = 2 -469154 leafProbs6 = 50 -~~~ -474207 UP 6 -474207 32 0 -474302 DOWN 6 -474302 0 0 -474380 UP 6 -474380 32 0 -474621 DOWN 6 -474621 0 0 -482030 UP 1 -482030 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -482234 DOWN 1 -482234 0 0 -~~~ -482258 contingency = 0 -482258 trialThresh = 100 -482258 timeMaxOut = 20 -482258 timeElapsed = 10 -482259 totalPokes = 45 -482259 totalRewards = 19 -482260 countPokes1 = 11 -482260 countRewards1 = 7 -482260 leafProbs1 = 80 -482260 countPokes2 = 7 -482261 countRewards2 = 0 -482275 leafProbs2 = 20 -482275 countPokes3 = 7 -482276 countRewards3 = 2 -482276 leafProbs3 = 20 -482276 countPokes4 = 7 -482276 countRewards4 = 4 -482277 leafProbs4 = 50 -482277 countPokes5 = 5 -482278 countRewards5 = 4 -482278 leafProbs5 = 80 -482292 countPokes6 = 8 -482292 countRewards6 = 2 -482292 leafProbs6 = 50 -~~~ -482292 UP 1 -482292 1 0 -482558 DOWN 1 -482558 0 0 -482585 UP 1 -482585 1 0 -482683 DOWN 1 -482683 0 0 -482718 UP 1 -482718 1 0 -482744 DOWN 1 -482744 0 0 -482821 UP 1 -482821 1 0 -482842 DOWN 1 -482842 0 0 -482905 UP 1 -482905 1 0 -482939 DOWN 1 -482939 0 0 -498133 UP 1 -498133 1 0 -498150 DOWN 1 -498150 0 0 -498596 UP 1 -498596 1 0 -498878 DOWN 1 -498878 0 0 -508278 UP 1 -508278 1 0 -508469 DOWN 1 -508469 0 0 -508616 UP 1 -508616 1 0 -508860 DOWN 1 -508860 0 0 -518791 UP 2 -518791 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -519385 DOWN 2 -519385 0 0 -~~~ -519406 contingency = 0 -519406 trialThresh = 100 -519407 timeMaxOut = 20 -519407 timeElapsed = 11 -519407 totalPokes = 46 -519407 totalRewards = 19 -519408 countPokes1 = 11 -519408 countRewards1 = 7 -519409 leafProbs1 = 80 -519409 countPokes2 = 8 -519409 countRewards2 = 0 -519423 leafProbs2 = 20 -519423 countPokes3 = 7 -519424 countRewards3 = 2 -519424 leafProbs3 = 20 -519425 countPokes4 = 7 -519425 countRewards4 = 4 -519425 leafProbs4 = 50 -519425 countPokes5 = 5 -519425 countRewards5 = 4 -519426 leafProbs5 = 80 -519439 countPokes6 = 8 -519440 countRewards6 = 2 -519440 leafProbs6 = 50 -~~~ -519441 UP 2 -519441 2 0 -519447 DOWN 2 -519447 0 0 -524357 UP 1 -524357 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524378 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524678 1 0 -524797 DOWN 1 -524797 0 0 -~~~ -524815 contingency = 0 -524815 trialThresh = 100 -524816 timeMaxOut = 20 -524816 timeElapsed = 11 -524817 totalPokes = 47 -524817 totalRewards = 20 -524817 countPokes1 = 12 -524817 countRewards1 = 8 -524817 leafProbs1 = 80 -524818 countPokes2 = 8 -524818 countRewards2 = 0 -524833 leafProbs2 = 20 -524833 countPokes3 = 7 -524833 countRewards3 = 2 -524833 leafProbs3 = 20 -524833 countPokes4 = 7 -524834 countRewards4 = 4 -524834 leafProbs4 = 50 -524835 countPokes5 = 5 -524835 countRewards5 = 4 -524835 leafProbs5 = 80 -524849 countPokes6 = 8 -524849 countRewards6 = 2 -524849 leafProbs6 = 50 -~~~ -524850 UP 1 -524850 1 0 -524863 DOWN 1 -524863 0 0 -524873 UP 1 -524873 1 0 -527968 DOWN 1 -527968 0 0 -527980 UP 1 -527980 1 0 -528079 DOWN 1 -528079 0 0 -528109 UP 1 -528109 1 0 -528210 DOWN 1 -528210 0 0 -528221 UP 1 -528221 1 0 -528322 DOWN 1 -528322 0 0 -528348 UP 1 -528348 1 0 -528356 DOWN 1 -528356 0 0 -528365 UP 1 -528365 1 0 -528411 DOWN 1 -528411 0 0 -533697 UP 1 -533697 1 0 -533887 DOWN 1 -533887 0 0 -533943 UP 1 -533943 1 0 -535917 DOWN 1 -535917 0 0 -536171 UP 1 -536171 1 0 -536181 DOWN 1 -536181 0 0 -540135 UP 1 -540135 1 0 -540396 DOWN 1 -540396 0 0 -544774 UP 1 -544774 1 0 -544951 DOWN 1 -544951 0 0 -545039 UP 1 -545039 1 0 -545129 DOWN 1 -545129 0 0 -546501 UP 1 -546501 1 0 -546595 DOWN 1 -546595 0 0 -562134 UP 1 -562134 1 0 -562562 DOWN 1 -562562 0 0 -574774 UP 6 -574774 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -574832 DOWN 6 -574832 0 0 -~~~ -574860 contingency = 0 -574860 trialThresh = 100 -574861 timeMaxOut = 20 -574861 timeElapsed = 12 -574862 totalPokes = 48 -574862 totalRewards = 20 -574862 countPokes1 = 12 -574862 countRewards1 = 8 -574863 leafProbs1 = 80 -574863 countPokes2 = 8 -574864 countRewards2 = 0 -574878 leafProbs2 = 20 -574878 countPokes3 = 7 -574878 countRewards3 = 2 -574878 leafProbs3 = 20 -574879 countPokes4 = 7 -574879 countRewards4 = 4 -574879 leafProbs4 = 50 -574880 countPokes5 = 5 -574880 countRewards5 = 4 -574880 leafProbs5 = 80 -574894 countPokes6 = 9 -574894 countRewards6 = 2 -574894 leafProbs6 = 50 -~~~ -574895 UP 6 -574895 32 0 -574983 DOWN 6 -574983 0 0 -575020 UP 6 -575020 32 0 -575089 DOWN 6 -575089 0 0 -575126 UP 6 -575126 32 0 -575149 DOWN 6 -575149 0 0 -577744 UP 6 -577744 32 0 -577748 DOWN 6 -577748 0 0 -578154 UP 6 -578154 32 0 -579354 DOWN 6 -579354 0 0 -579382 UP 6 -579382 32 0 -579514 DOWN 6 -579514 0 0 -580826 UP 6 -580826 32 0 -581310 DOWN 6 -581310 0 0 -581654 UP 6 -581654 32 0 -581711 DOWN 6 -581711 0 0 -582734 UP 6 -582733 32 0 -582748 DOWN 6 -582748 0 0 -585351 UP 6 -585351 32 0 -587498 DOWN 6 -587498 0 0 -595639 UP 1 -595639 1 0 -595653 DOWN 1 -595653 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595663 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595676 contingency = 0 -595676 trialThresh = 100 -595676 timeMaxOut = 20 -595677 timeElapsed = 13 -595677 totalPokes = 49 -595678 totalRewards = 21 -595678 countPokes1 = 13 -595678 countRewards1 = 9 -595678 leafProbs1 = 80 -595679 countPokes2 = 8 -595679 countRewards2 = 0 -595693 leafProbs2 = 20 -595694 countPokes3 = 7 -595694 countRewards3 = 2 -595694 leafProbs3 = 20 -595694 countPokes4 = 7 -595694 countRewards4 = 4 -595695 leafProbs4 = 50 -595695 countPokes5 = 5 -595696 countRewards5 = 4 -595696 leafProbs5 = 80 -595710 countPokes6 = 9 -595710 countRewards6 = 2 -595710 leafProbs6 = 50 -~~~ -595710 UP 1 -595710 1 64 -595807 DOWN 1 -595807 0 64 -595820 UP 1 -595820 1 64 -595874 DOWN 1 -595874 0 64 -595886 UP 1 -595886 1 64 -595963 1 0 -599155 DOWN 1 -599155 0 0 -599164 UP 1 -599164 1 0 -599808 DOWN 1 -599808 0 0 -688756 UP 6 -688756 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688779 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688956 DOWN 6 -688956 0 2048 -~~~ -688973 contingency = 0 -688973 trialThresh = 100 -688974 timeMaxOut = 20 -688974 timeElapsed = 15 -688974 totalPokes = 50 -688974 totalRewards = 22 -688975 countPokes1 = 13 -688975 countRewards1 = 9 -688976 leafProbs1 = 80 -688976 countPokes2 = 8 -688976 countRewards2 = 0 -688990 leafProbs2 = 20 -688990 countPokes3 = 7 -688991 countRewards3 = 2 -688991 leafProbs3 = 20 -688992 countPokes4 = 7 -688992 countRewards4 = 4 -688992 leafProbs4 = 50 -688992 countPokes5 = 5 -688993 countRewards5 = 4 -688993 leafProbs5 = 80 -689007 countPokes6 = 10 -689007 countRewards6 = 3 -689007 leafProbs6 = 50 -~~~ -689008 UP 6 -689008 32 2048 -689079 32 0 -692128 DOWN 6 -692128 0 0 -692143 UP 6 -692143 32 0 -692685 DOWN 6 -692685 0 0 -698048 UP 6 -698048 32 0 -703204 DOWN 6 -703204 0 0 -704795 UP 5 -704795 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704833 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704998 DOWN 5 -704998 0 1024 -~~~ -705014 contingency = 0 -705014 trialThresh = 100 -705014 timeMaxOut = 20 -705015 timeElapsed = 15 -705015 totalPokes = 51 -705016 totalRewards = 23 -705016 countPokes1 = 13 -705016 countRewards1 = 9 -705016 leafProbs1 = 80 -705017 countPokes2 = 8 -705017 countRewards2 = 0 -705031 leafProbs2 = 20 -705032 countPokes3 = 7 -705032 countRewards3 = 2 -705032 leafProbs3 = 20 -705032 countPokes4 = 7 -705033 countRewards4 = 4 -705033 leafProbs4 = 50 -705033 countPokes5 = 6 -705034 countRewards5 = 5 -705034 leafProbs5 = 80 -705048 countPokes6 = 10 -705048 countRewards6 = 3 -705048 leafProbs6 = 50 -~~~ -705048 UP 5 -705048 16 1024 -705133 16 0 -707856 DOWN 5 -707856 0 0 -707859 UP 5 -707859 16 0 -708389 DOWN 5 -708388 0 0 -708430 UP 5 -708430 16 0 -708506 DOWN 5 -708506 0 0 -708517 UP 5 -708517 16 0 -708729 DOWN 5 -708729 0 0 -708753 UP 5 -708753 16 0 -708838 DOWN 5 -708838 0 0 -708870 UP 5 -708870 16 0 -708943 DOWN 5 -708943 0 0 -712658 UP 6 -712658 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712691 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712856 DOWN 6 -712856 0 2048 -712886 UP 6 -712886 32 2048 -~~~ -712891 contingency = 0 -712892 trialThresh = 100 -712892 timeMaxOut = 20 -712892 timeElapsed = 15 -712892 totalPokes = 52 -712893 totalRewards = 24 -712893 countPokes1 = 13 -712894 countRewards1 = 9 -712894 leafProbs1 = 80 -712894 countPokes2 = 8 -712894 countRewards2 = 0 -712908 leafProbs2 = 20 -712909 countPokes3 = 7 -712909 countRewards3 = 2 -712910 leafProbs3 = 20 -712910 countPokes4 = 7 -712910 countRewards4 = 4 -712910 leafProbs4 = 50 -712910 countPokes5 = 6 -712911 countRewards5 = 5 -712911 leafProbs5 = 80 -712925 countPokes6 = 11 -712925 countRewards6 = 4 -712926 leafProbs6 = 50 -~~~ -712990 32 0 -716085 DOWN 6 -716085 0 0 -716094 UP 6 -716094 32 0 -716526 DOWN 6 -716526 0 0 -725598 UP 1 -725598 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725628 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725712 DOWN 1 -725712 0 64 -~~~ -725726 contingency = 0 -725726 trialThresh = 100 -725727 timeMaxOut = 20 -725727 timeElapsed = 16 -725728 totalPokes = 53 -725728 totalRewards = 25 -725728 countPokes1 = 14 -725728 countRewards1 = 10 -725729 leafProbs1 = 80 -725729 countPokes2 = 8 -725729 countRewards2 = 0 -725744 leafProbs2 = 20 -725744 countPokes3 = 7 -725744 countRewards3 = 2 -725744 leafProbs3 = 20 -725745 countPokes4 = 7 -725745 countRewards4 = 4 -725746 leafProbs4 = 50 -725746 countPokes5 = 6 -725746 countRewards5 = 5 -725746 leafProbs5 = 80 -725760 countPokes6 = 11 -725760 countRewards6 = 4 -725760 leafProbs6 = 50 -~~~ -725761 UP 1 -725761 1 64 -725780 DOWN 1 -725779 0 64 -725790 UP 1 -725790 1 64 -725928 1 0 -725996 DOWN 1 -725996 0 0 -726010 UP 1 -726010 1 0 -729338 DOWN 1 -729338 0 0 -734564 UP 1 -734564 1 0 -734740 DOWN 1 -734740 0 0 -758750 UP 2 -758750 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -758998 DOWN 2 -758998 0 0 -759011 UP 2 -759011 2 0 -~~~ -759026 contingency = 0 -759026 trialThresh = 100 -759027 timeMaxOut = 20 -759027 timeElapsed = 17 -759027 totalPokes = 54 -759027 totalRewards = 25 -759028 countPokes1 = 14 -759028 countRewards1 = 10 -759029 leafProbs1 = 80 -759029 countPokes2 = 9 -759029 countRewards2 = 0 -759043 leafProbs2 = 20 -759043 countPokes3 = 7 -759044 countRewards3 = 2 -759044 leafProbs3 = 20 -759045 countPokes4 = 7 -759045 countRewards4 = 4 -759045 leafProbs4 = 50 -759045 countPokes5 = 6 -759046 countRewards5 = 5 -759046 leafProbs5 = 80 -759060 countPokes6 = 11 -759060 countRewards6 = 4 -759061 leafProbs6 = 50 -~~~ -759247 DOWN 2 -759247 0 0 -764741 UP 2 -764741 2 0 -764877 DOWN 2 -764877 0 0 -768238 UP 1 -768238 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768267 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768567 1 0 -769995 DOWN 1 -769995 0 0 -770003 UP 1 -770003 1 0 -~~~ -770020 contingency = 0 -770021 trialThresh = 100 -770021 timeMaxOut = 20 -770021 timeElapsed = 17 -770021 totalPokes = 55 -770022 totalRewards = 26 -770022 countPokes1 = 15 -770023 countRewards1 = 11 -770023 leafProbs1 = 80 -770023 countPokes2 = 9 -770023 countRewards2 = 0 -770037 leafProbs2 = 20 -770038 countPokes3 = 7 -770038 countRewards3 = 2 -770039 leafProbs3 = 20 -770039 countPokes4 = 7 -770039 countRewards4 = 4 -770039 leafProbs4 = 50 -770040 countPokes5 = 6 -770040 countRewards5 = 5 -770041 leafProbs5 = 80 -770054 countPokes6 = 11 -770055 countRewards6 = 4 -770055 leafProbs6 = 50 -~~~ -770958 DOWN 1 -770958 0 0 -770969 UP 1 -770969 1 0 -771063 DOWN 1 -771063 0 0 -792538 UP 4 -792538 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -792976 DOWN 4 -792976 0 0 -~~~ -793004 contingency = 0 -793004 trialThresh = 100 -793004 timeMaxOut = 20 -793004 timeElapsed = 17 -793005 totalPokes = 56 -793005 totalRewards = 26 -793006 countPokes1 = 15 -793006 countRewards1 = 11 -793006 leafProbs1 = 80 -793006 countPokes2 = 9 -793006 countRewards2 = 0 -793021 leafProbs2 = 20 -793021 countPokes3 = 7 -793022 countRewards3 = 2 -793022 leafProbs3 = 20 -793022 countPokes4 = 8 -793022 countRewards4 = 4 -793023 leafProbs4 = 50 -793023 countPokes5 = 6 -793023 countRewards5 = 5 -793024 leafProbs5 = 80 -793037 countPokes6 = 11 -793038 countRewards6 = 4 -793038 leafProbs6 = 50 -~~~ -796258 UP 3 -796258 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796294 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796527 DOWN 3 -796527 0 256 -796548 UP 3 -796548 4 256 -~~~ -796560 contingency = 0 -796561 trialThresh = 100 -796561 timeMaxOut = 20 -796562 timeElapsed = 18 -796562 totalPokes = 57 -796562 totalRewards = 27 -796562 countPokes1 = 15 -796563 countRewards1 = 11 -796563 leafProbs1 = 80 -796564 countPokes2 = 9 -796564 countRewards2 = 0 -796578 leafProbs2 = 20 -796578 countPokes3 = 8 -796578 countRewards3 = 3 -796579 leafProbs3 = 20 -796579 countPokes4 = 8 -796580 countRewards4 = 4 -796580 leafProbs4 = 50 -796580 countPokes5 = 6 -796580 countRewards5 = 5 -796581 leafProbs5 = 80 -796594 countPokes6 = 11 -796595 countRewards6 = 4 -796595 leafProbs6 = 50 -~~~ -796596 4 0 -796624 DOWN 3 -796624 0 0 -796629 UP 3 -796629 4 0 -801350 DOWN 3 -801350 0 0 -806015 UP 4 -806015 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806042 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806342 8 0 -809642 DOWN 4 -809642 0 0 -~~~ -809664 contingency = 0 -809664 trialThresh = 100 -809664 timeMaxOut = 20 -809665 timeElapsed = 18 -809665 totalPokes = 58 -809666 totalRewards = 28 -809666 countPokes1 = 15 -809666 countRewards1 = 11 -809666 leafProbs1 = 80 -809667 countPokes2 = 9 -809667 countRewards2 = 0 -809681 leafProbs2 = 20 -809682 countPokes3 = 8 -809682 countRewards3 = 3 -809682 leafProbs3 = 20 -809682 countPokes4 = 9 -809683 countRewards4 = 5 -809683 leafProbs4 = 50 -809683 countPokes5 = 6 -809684 countRewards5 = 5 -809684 leafProbs5 = 80 -809698 countPokes6 = 11 -809698 countRewards6 = 4 -809698 leafProbs6 = 50 -~~~ -813030 UP 3 -813030 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -813879 DOWN 3 -813879 0 0 -~~~ -813907 contingency = 0 -813908 trialThresh = 100 -813908 timeMaxOut = 20 -813908 timeElapsed = 18 -813908 totalPokes = 59 -813909 totalRewards = 28 -813909 countPokes1 = 15 -813910 countRewards1 = 11 -813910 leafProbs1 = 80 -813910 countPokes2 = 9 -813910 countRewards2 = 0 -813924 leafProbs2 = 20 -813925 countPokes3 = 9 -813925 countRewards3 = 3 -813926 leafProbs3 = 20 -813926 countPokes4 = 9 -813926 countRewards4 = 5 -813926 leafProbs4 = 50 -813927 countPokes5 = 6 -813927 countRewards5 = 5 -813928 leafProbs5 = 80 -813941 countPokes6 = 11 -813942 countRewards6 = 4 -813942 leafProbs6 = 50 -~~~ -813990 UP 3 -813990 4 0 -814046 DOWN 3 -814046 0 0 -814070 UP 3 -814070 4 0 -814092 DOWN 3 -814092 0 0 -818984 UP 4 -818984 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819019 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819319 8 0 -822032 DOWN 4 -822032 0 0 -822048 UP 4 -822048 8 0 -~~~ -822052 contingency = 0 -822052 trialThresh = 100 -822052 timeMaxOut = 20 -822052 timeElapsed = 18 -822053 totalPokes = 60 -822053 totalRewards = 29 -822054 countPokes1 = 15 -822054 countRewards1 = 11 -822054 leafProbs1 = 80 -822054 countPokes2 = 9 -822055 countRewards2 = 0 -822069 leafProbs2 = 20 -822069 countPokes3 = 9 -822070 countRewards3 = 3 -822070 leafProbs3 = 20 -822070 countPokes4 = 10 -822070 countRewards4 = 6 -822071 leafProbs4 = 50 -822071 countPokes5 = 6 -822072 countRewards5 = 5 -822072 leafProbs5 = 80 -822086 countPokes6 = 11 -822086 countRewards6 = 4 -822086 leafProbs6 = 50 -~~~ -822142 DOWN 4 -822142 0 0 -825685 UP 3 -825685 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825714 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825899 DOWN 3 -825899 0 256 -825911 UP 3 -825911 4 256 -~~~ -825924 contingency = 0 -825924 trialThresh = 100 -825924 timeMaxOut = 20 -825924 timeElapsed = 18 -825924 totalPokes = 61 -825925 totalRewards = 30 -825925 countPokes1 = 15 -825926 countRewards1 = 11 -825926 leafProbs1 = 80 -825926 countPokes2 = 9 -825926 countRewards2 = 0 -825941 leafProbs2 = 20 -825941 countPokes3 = 10 -825941 countRewards3 = 4 -825942 leafProbs3 = 20 -825942 countPokes4 = 10 -825942 countRewards4 = 6 -825942 leafProbs4 = 50 -825943 countPokes5 = 6 -825943 countRewards5 = 5 -825944 leafProbs5 = 80 -825958 countPokes6 = 11 -825958 countRewards6 = 4 -825958 leafProbs6 = 50 -~~~ -826000 DOWN 3 -826000 0 256 -826002 UP 3 -826002 4 256 -826014 4 0 -829816 DOWN 3 -829816 0 0 -838111 UP 4 -838111 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838136 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838436 8 0 -841411 DOWN 4 -841411 0 0 -~~~ -841435 contingency = 0 -841436 trialThresh = 100 -841436 timeMaxOut = 20 -841437 timeElapsed = 19 -841437 totalPokes = 62 -841437 totalRewards = 31 -841437 countPokes1 = 15 -841438 countRewards1 = 11 -841438 leafProbs1 = 80 -841439 countPokes2 = 9 -841439 countRewards2 = 0 -841453 leafProbs2 = 20 -841453 countPokes3 = 10 -841453 countRewards3 = 4 -841454 leafProbs3 = 20 -841454 countPokes4 = 11 -841455 countRewards4 = 7 -841455 leafProbs4 = 50 -841455 countPokes5 = 6 -841455 countRewards5 = 5 -841455 leafProbs5 = 80 -841469 countPokes6 = 11 -841470 countRewards6 = 4 -841470 leafProbs6 = 50 -~~~ -843614 UP 3 -843614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843639 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843789 DOWN 3 -843789 0 256 -843795 UP 3 -843795 4 256 -~~~ -843808 contingency = 0 -843809 trialThresh = 100 -843809 timeMaxOut = 20 -843809 timeElapsed = 19 -843809 totalPokes = 63 -843810 totalRewards = 32 -843810 countPokes1 = 15 -843810 countRewards1 = 11 -843811 leafProbs1 = 80 -843811 countPokes2 = 9 -843811 countRewards2 = 0 -843825 leafProbs2 = 20 -843826 countPokes3 = 11 -843826 countRewards3 = 5 -843827 leafProbs3 = 20 -843827 countPokes4 = 11 -843827 countRewards4 = 7 -843827 leafProbs4 = 50 -843827 countPokes5 = 6 -843828 countRewards5 = 5 -843828 leafProbs5 = 80 -843842 countPokes6 = 11 -843843 countRewards6 = 4 -843843 leafProbs6 = 50 -~~~ -843939 4 0 -845473 DOWN 3 -845473 0 0 -845480 UP 3 -845480 4 0 -846559 DOWN 3 -846559 0 0 -846574 UP 3 -846574 4 0 -847017 DOWN 3 -847017 0 0 -850281 UP 4 -850281 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850308 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850608 8 0 -853788 DOWN 4 -853788 0 0 -~~~ -853810 contingency = 0 -853810 trialThresh = 100 -853811 timeMaxOut = 20 -853811 timeElapsed = 19 -853811 totalPokes = 64 -853811 totalRewards = 33 -853811 countPokes1 = 15 -853812 countRewards1 = 11 -853812 leafProbs1 = 80 -853813 countPokes2 = 9 -853813 countRewards2 = 0 -853827 leafProbs2 = 20 -853827 countPokes3 = 11 -853828 countRewards3 = 5 -853828 leafProbs3 = 20 -853829 countPokes4 = 12 -853829 countRewards4 = 8 -853829 leafProbs4 = 50 -853829 countPokes5 = 6 -853829 countRewards5 = 5 -853830 leafProbs5 = 80 -853844 countPokes6 = 11 -853844 countRewards6 = 4 -853845 leafProbs6 = 50 -~~~ -859749 UP 3 -859749 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -859929 DOWN 3 -859929 0 0 -~~~ -859955 contingency = 0 -859955 trialThresh = 100 -859955 timeMaxOut = 20 -859956 timeElapsed = 19 -859956 totalPokes = 65 -859957 totalRewards = 33 -859957 countPokes1 = 15 -859957 countRewards1 = 11 -859957 leafProbs1 = 80 -859958 countPokes2 = 9 -859958 countRewards2 = 0 -859972 leafProbs2 = 20 -859973 countPokes3 = 12 -859973 countRewards3 = 5 -859973 leafProbs3 = 20 -859973 countPokes4 = 12 -859974 countRewards4 = 8 -859974 leafProbs4 = 50 -859975 countPokes5 = 6 -859975 countRewards5 = 5 -859975 leafProbs5 = 80 -859989 countPokes6 = 11 -859989 countRewards6 = 4 -859989 leafProbs6 = 50 -~~~ -859990 UP 3 -859990 4 0 -860031 DOWN 3 -860031 0 0 -860033 UP 3 -860033 4 0 -860497 DOWN 3 -860497 0 0 -863294 UP 4 -863294 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -863951 DOWN 4 -863951 0 0 -~~~ -863973 contingency = 0 -863973 trialThresh = 100 -863973 timeMaxOut = 20 -863974 timeElapsed = 19 -863974 totalPokes = 66 -863975 totalRewards = 33 -863975 countPokes1 = 15 -863975 countRewards1 = 11 -863975 leafProbs1 = 80 -863976 countPokes2 = 9 -863976 countRewards2 = 0 -863990 leafProbs2 = 20 -863991 countPokes3 = 12 -863991 countRewards3 = 5 -863991 leafProbs3 = 20 -863991 countPokes4 = 13 -863992 countRewards4 = 8 -863992 leafProbs4 = 50 -863993 countPokes5 = 6 -863993 countRewards5 = 5 -863993 leafProbs5 = 80 -864007 countPokes6 = 11 -864007 countRewards6 = 4 -864007 leafProbs6 = 50 -~~~ -868524 UP 3 -868524 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -868698 DOWN 3 -868698 0 0 -~~~ -868713 contingency = 0 -868713 trialThresh = 100 -868713 timeMaxOut = 20 -868713 timeElapsed = 19 -868713 totalPokes = 67 -868714 totalRewards = 33 -868715 countPokes1 = 15 -868715 countRewards1 = 11 -868715 leafProbs1 = 80 -868715 countPokes2 = 9 -868715 countRewards2 = 0 -868730 leafProbs2 = 20 -868730 countPokes3 = 13 -868731 countRewards3 = 5 -868731 leafProbs3 = 20 -868731 countPokes4 = 13 -868731 countRewards4 = 8 -868732 leafProbs4 = 50 -868732 countPokes5 = 6 -868733 countRewards5 = 5 -868733 leafProbs5 = 80 -868747 countPokes6 = 11 -868747 countRewards6 = 4 -868747 leafProbs6 = 50 -~~~ -868747 UP 3 -868747 4 0 -868824 DOWN 3 -868824 0 0 -872741 UP 4 -872741 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -873169 DOWN 4 -873169 0 0 -~~~ -873187 contingency = 0 -873187 trialThresh = 100 -873187 timeMaxOut = 20 -873187 timeElapsed = 19 -873188 totalPokes = 68 -873188 totalRewards = 33 -873189 countPokes1 = 15 -873189 countRewards1 = 11 -873189 leafProbs1 = 80 -873189 countPokes2 = 9 -873190 countRewards2 = 0 -873204 leafProbs2 = 20 -873204 countPokes3 = 13 -873205 countRewards3 = 5 -873205 leafProbs3 = 20 -873205 countPokes4 = 14 -873205 countRewards4 = 8 -873206 leafProbs4 = 50 -873206 countPokes5 = 6 -873207 countRewards5 = 5 -873207 leafProbs5 = 80 -873221 countPokes6 = 11 -873221 countRewards6 = 4 -873221 leafProbs6 = 50 -~~~ -873252 UP 4 -873252 8 0 -873290 DOWN 4 -873290 0 0 -876725 UP 3 -876725 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876754 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876920 DOWN 3 -876920 0 256 -876935 UP 3 -876935 4 256 -~~~ -876950 contingency = 0 -876950 trialThresh = 100 -876951 timeMaxOut = 20 -876951 timeElapsed = 20 -876951 totalPokes = 69 -876951 totalRewards = 34 -876952 countPokes1 = 15 -876952 countRewards1 = 11 -876953 leafProbs1 = 80 -876953 countPokes2 = 9 -876953 countRewards2 = 0 -876967 leafProbs2 = 20 -876968 countPokes3 = 14 -876968 countRewards3 = 6 -876969 leafProbs3 = 20 -876969 countPokes4 = 14 -876969 countRewards4 = 8 -876969 leafProbs4 = 50 -876970 countPokes5 = 6 -876970 countRewards5 = 5 -876971 leafProbs5 = 80 -876984 countPokes6 = 11 -876985 countRewards6 = 4 -876985 leafProbs6 = 50 -~~~ -876985 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -877054 4 0 -878633 DOWN 3 -878633 0 0 -878639 UP 3 -878639 4 0 -879721 DOWN 3 -879721 0 0 -886019 UP 1 -886019 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886047 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886216 DOWN 1 -886216 0 64 -886239 UP 1 -886239 1 64 -~~~ -886244 contingency = 1 -886245 trialThresh = 100 -886245 timeMaxOut = 20 -886245 timeElapsed = 0 -886245 totalPokes = 1 -886245 totalRewards = 1 -886246 countPokes1 = 1 -886246 countRewards1 = 1 -886247 leafProbs1 = 80 -886247 countPokes2 = 0 -886247 countRewards2 = 0 -886261 leafProbs2 = 20 -886261 countPokes3 = 0 -886262 countRewards3 = 0 -886262 leafProbs3 = 20 -886263 countPokes4 = 0 -886263 countRewards4 = 0 -886263 leafProbs4 = 50 -886263 countPokes5 = 0 -886263 countRewards5 = 0 -886264 leafProbs5 = 80 -886277 countPokes6 = 0 -886278 countRewards6 = 0 -886278 leafProbs6 = 50 -~~~ -886347 1 0 -887839 DOWN 1 -887839 0 0 -887847 UP 1 -887847 1 0 -888811 DOWN 1 -888811 0 0 -924349 UP 1 -924349 1 0 -924708 DOWN 1 -924708 0 0 -936150 UP 6 -936150 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -936282 DOWN 6 -936282 0 0 -~~~ -936306 UP 6 -936306 32 0 -936307 contingency = 1 -936308 trialThresh = 100 -936308 timeMaxOut = 20 -936308 timeElapsed = 1 -936308 totalPokes = 2 -936309 totalRewards = 1 -936309 countPokes1 = 1 -936310 countRewards1 = 1 -936310 leafProbs1 = 80 -936310 countPokes2 = 0 -936324 countRewards2 = 0 -936324 leafProbs2 = 20 -936325 countPokes3 = 0 -936325 countRewards3 = 0 -936326 leafProbs3 = 20 -936326 countPokes4 = 0 -936326 countRewards4 = 0 -936326 leafProbs4 = 50 -936326 countPokes5 = 0 -936327 countRewards5 = 0 -936340 leafProbs5 = 80 -936341 countPokes6 = 1 -936341 countRewards6 = 0 -936342 leafProbs6 = 50 -~~~ -936592 DOWN 6 -936592 0 0 -939891 UP 6 -939891 32 0 -940306 DOWN 6 -940306 0 0 -944398 UP 5 -944398 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944428 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944665 DOWN 5 -944665 0 1024 -944680 UP 5 -944680 16 1024 -~~~ -944694 contingency = 1 -944694 trialThresh = 100 -944695 timeMaxOut = 20 -944695 timeElapsed = 2 -944696 totalPokes = 3 -944696 totalRewards = 2 -944696 countPokes1 = 1 -944696 countRewards1 = 1 -944697 leafProbs1 = 80 -944697 countPokes2 = 0 -944698 countRewards2 = 0 -944711 leafProbs2 = 20 -944712 countPokes3 = 0 -944712 countRewards3 = 0 -944712 leafProbs3 = 20 -944712 countPokes4 = 0 -944713 countRewards4 = 0 -944713 leafProbs4 = 50 -944714 countPokes5 = 1 -944714 countRewards5 = 1 -944714 leafProbs5 = 80 -944728 countPokes6 = 1 -944728 countRewards6 = 0 -944728 leafProbs6 = 50 -~~~ -944729 16 0 -944845 DOWN 5 -944845 0 0 -944862 UP 5 -944862 16 0 -946617 DOWN 5 -946617 0 0 -946632 UP 5 -946632 16 0 -946716 DOWN 5 -946716 0 0 -946732 UP 5 -946732 16 0 -947449 DOWN 5 -947449 0 0 -948283 UP 5 -948283 16 0 -948312 DOWN 5 -948312 0 0 -952025 UP 6 -952025 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952051 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952328 DOWN 6 -952328 0 2048 -952339 UP 6 -952339 32 2048 -952351 32 0 -~~~ -952355 contingency = 1 -952355 trialThresh = 100 -952355 timeMaxOut = 20 -952356 timeElapsed = 2 -952356 totalPokes = 4 -952357 totalRewards = 3 -952357 countPokes1 = 1 -952357 countRewards1 = 1 -952357 leafProbs1 = 80 -952357 countPokes2 = 0 -952358 countRewards2 = 0 -952372 leafProbs2 = 20 -952372 countPokes3 = 0 -952373 countRewards3 = 0 -952373 leafProbs3 = 20 -952373 countPokes4 = 0 -952373 countRewards4 = 0 -952374 leafProbs4 = 50 -952374 countPokes5 = 1 -952375 countRewards5 = 1 -952375 leafProbs5 = 80 -952389 countPokes6 = 2 -952389 countRewards6 = 1 -952389 leafProbs6 = 50 -~~~ -955287 DOWN 6 -955287 0 0 -955304 UP 6 -955304 32 0 -955841 DOWN 6 -955841 0 0 -955870 UP 6 -955870 32 0 -955948 DOWN 6 -955948 0 0 -968742 UP 1 -968742 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -968986 DOWN 1 -968986 0 0 -969009 UP 1 -969009 1 0 -~~~ -969010 contingency = 1 -969011 trialThresh = 100 -969011 timeMaxOut = 20 -969011 timeElapsed = 2 -969011 totalPokes = 5 -969012 totalRewards = 3 -969012 countPokes1 = 2 -969013 countRewards1 = 1 -969013 leafProbs1 = 80 -969013 countPokes2 = 0 -969013 countRewards2 = 0 -969027 leafProbs2 = 20 -969027 countPokes3 = 0 -969028 countRewards3 = 0 -969028 leafProbs3 = 20 -969029 countPokes4 = 0 -969029 countRewards4 = 0 -969029 leafProbs4 = 50 -969029 countPokes5 = 1 -969030 countRewards5 = 1 -969030 leafProbs5 = 80 -969044 countPokes6 = 2 -969044 countRewards6 = 1 -969045 leafProbs6 = 50 -~~~ -969325 DOWN 1 -969325 0 0 -969363 UP 1 -969363 1 0 -969412 DOWN 1 -969412 0 0 -980911 UP 1 -980911 1 0 -981057 DOWN 1 -981057 0 0 -995935 UP 1 -995935 1 0 -995980 DOWN 1 -995980 0 0 -1000551 UP 1 -1000551 1 0 -1000675 DOWN 1 -1000675 0 0 -1000813 UP 1 -1000813 1 0 -1000837 DOWN 1 -1000837 0 0 -1014932 UP 1 -1014932 1 0 -1015485 DOWN 1 -1015485 0 0 -1037157 UP 1 -1037157 1 0 -1039155 DOWN 1 -1039155 0 0 -1045580 UP 2 -1045580 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045606 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045801 DOWN 2 -1045801 0 128 -1045812 UP 2 -1045812 2 128 -~~~ -1045827 contingency = 1 -1045827 trialThresh = 100 -1045828 timeMaxOut = 20 -1045828 timeElapsed = 4 -1045828 totalPokes = 6 -1045828 totalRewards = 4 -1045829 countPokes1 = 2 -1045829 countRewards1 = 1 -1045830 leafProbs1 = 80 -1045830 countPokes2 = 1 -1045830 countRewards2 = 1 -1045844 leafProbs2 = 20 -1045844 countPokes3 = 0 -1045845 countRewards3 = 0 -1045845 leafProbs3 = 20 -1045846 countPokes4 = 0 -1045846 countRewards4 = 0 -1045846 leafProbs4 = 50 -1045846 countPokes5 = 1 -1045846 countRewards5 = 1 -1045861 leafProbs5 = 80 -1045861 countPokes6 = 2 -1045862 countRewards6 = 1 -1045862 leafProbs6 = 50 -~~~ -1045906 2 0 -1046489 DOWN 2 -1046489 0 0 -1046492 UP 2 -1046492 2 0 -1046736 DOWN 2 -1046736 0 0 -1046740 UP 2 -1046740 2 0 -1048862 DOWN 2 -1048862 0 0 -1048885 UP 2 -1048885 2 0 -1049314 DOWN 2 -1049314 0 0 -1049320 UP 2 -1049320 2 0 -1049417 DOWN 2 -1049417 0 0 -1055638 UP 1 -1055638 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1056137 DOWN 1 -1056137 0 0 -~~~ -1056161 contingency = 1 -1056161 trialThresh = 100 -1056161 timeMaxOut = 20 -1056162 timeElapsed = 4 -1056162 totalPokes = 7 -1056163 totalRewards = 4 -1056163 countPokes1 = 3 -1056163 countRewards1 = 1 -1056163 leafProbs1 = 80 -1056164 countPokes2 = 1 -1056164 countRewards2 = 1 -1056178 leafProbs2 = 20 -1056179 countPokes3 = 0 -1056179 countRewards3 = 0 -1056179 leafProbs3 = 20 -1056179 countPokes4 = 0 -1056180 countRewards4 = 0 -1056180 leafProbs4 = 50 -1056181 countPokes5 = 1 -1056181 countRewards5 = 1 -1056195 leafProbs5 = 80 -1056195 countPokes6 = 2 -1056195 countRewards6 = 1 -1056196 leafProbs6 = 50 -~~~ -1075389 UP 1 -1075389 1 0 -1077673 DOWN 1 -1077673 0 0 -1080094 UP 1 -1080094 1 0 -1080643 DOWN 1 -1080643 0 0 -1081045 UP 1 -1081045 1 0 -1081200 DOWN 1 -1081200 0 0 -1083005 UP 1 -1083005 1 0 -1083449 DOWN 1 -1083449 0 0 -1102276 UP 1 -1102276 1 0 -1102327 DOWN 1 -1102327 0 0 -1102345 UP 1 -1102345 1 0 -1102777 DOWN 1 -1102777 0 0 -1102819 UP 1 -1102819 1 0 -1102934 DOWN 1 -1102934 0 0 -1103297 UP 1 -1103297 1 0 -1103387 DOWN 1 -1103387 0 0 -1103417 UP 1 -1103417 1 0 -1103475 DOWN 1 -1103475 0 0 -1103807 UP 1 -1103807 1 0 -1103947 DOWN 1 -1103947 0 0 -1103991 UP 1 -1103991 1 0 -1104026 DOWN 1 -1104026 0 0 -1118606 UP 1 -1118606 1 0 -1118640 DOWN 1 -1118640 0 0 -1131899 UP 6 -1131899 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1132172 DOWN 6 -1132172 0 0 -1132200 UP 6 -1132200 32 0 -~~~ -1132203 contingency = 1 -1132203 trialThresh = 100 -1132204 timeMaxOut = 20 -1132204 timeElapsed = 6 -1132204 totalPokes = 8 -1132204 totalRewards = 4 -1132205 countPokes1 = 3 -1132205 countRewards1 = 1 -1132205 leafProbs1 = 80 -1132206 countPokes2 = 1 -1132206 countRewards2 = 1 -1132220 leafProbs2 = 20 -1132220 countPokes3 = 0 -1132220 countRewards3 = 0 -1132221 leafProbs3 = 20 -1132221 countPokes4 = 0 -1132222 countRewards4 = 0 -1132222 leafProbs4 = 50 -1132222 countPokes5 = 1 -1132222 countRewards5 = 1 -1132237 leafProbs5 = 80 -1132237 countPokes6 = 3 -1132238 countRewards6 = 1 -1132238 leafProbs6 = 50 -~~~ -1132394 DOWN 6 -1132394 0 0 -1132422 UP 6 -1132422 32 0 -1132437 DOWN 6 -1132437 0 0 -1157002 UP 6 -1157002 32 0 -1157518 DOWN 6 -1157518 0 0 -1160471 UP 1 -1160471 1 0 -1160482 DOWN 1 -1160482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1160504 UP 1 -1160504 1 0 -~~~ -1160510 contingency = 1 -1160510 trialThresh = 100 -1160510 timeMaxOut = 20 -1160511 timeElapsed = 7 -1160511 totalPokes = 9 -1160512 totalRewards = 4 -1160512 countPokes1 = 4 -1160512 countRewards1 = 1 -1160512 leafProbs1 = 80 -1160513 countPokes2 = 1 -1160513 countRewards2 = 1 -1160527 leafProbs2 = 20 -1160528 countPokes3 = 0 -1160528 countRewards3 = 0 -1160528 leafProbs3 = 20 -1160528 countPokes4 = 0 -1160528 countRewards4 = 0 -1160529 leafProbs4 = 50 -1160529 countPokes5 = 1 -1160530 countRewards5 = 1 -1160544 leafProbs5 = 80 -1160544 countPokes6 = 3 -1160544 countRewards6 = 1 -1160545 leafProbs6 = 50 -~~~ -1160809 DOWN 1 -1160809 0 0 -1160823 UP 1 -1160823 1 0 -1160943 DOWN 1 -1160943 0 0 - - description: state script log run 2 - task_epochs: 4, -] -2021-01-27 19:51:24,794 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 19:51:25,739 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 19:51:25,743 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 19:51:25,743 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 19:51:25,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 19:51:25,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 19:51:25,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 19:51:25,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 19:51:25,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 19:51:25,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 19:51:25,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 19:51:25,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 19:51:25,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 19:51:25,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 19:51:25,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 19:51:26,345 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 19:51:26,347 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 19:51:26,375 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 19:51:26,378 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 19:51:26,379 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 19:51:26,379 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 19:51:28,732 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 19:51:28,734 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 19:54:52,175 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 19:54:52,176 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 19:54:52,181 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 19:54:52,183 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 19:54:52,184 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 19:54:52,571 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 19:54:52,575 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 19:55:44,940 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-27 19:58:05,942 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat -2021-01-27 19:59:08,971 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat -2021-01-27 20:00:26,336 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 20:00:26,362 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 20:00:26,364 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 20:05:15,928 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 20:05:16,072 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 20:05:16,073 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 20:05:16,074 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 20:05:16,075 rec_to_binaries.core: INFO Extracting time... -2021-01-27 20:05:47,224 rec_to_binaries.core: INFO Making position directory... -2021-01-27 20:05:47,266 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 20:05:47,266 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 20:05:47,266 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 20:05:47,267 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 20:05:47,682 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-27 20:05:47,967 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 20:05:48,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 20:05:48,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 20:05:48,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 20:05:48,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 20:05:48,347 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 20:05:48,349 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 20:05:48,349 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 20:05:48,350 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140432540158480 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140432540158288 -Fields: - content: # -#% author: AC -#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 -#% same as branch_always_reward_no_revisit.sc -# -#%initialize constant vars -#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min -#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later -# -#%initialize updating vars -#int rewardPump = 0 %can take on values 7-12 in fxn 1 -#int rewardWell = 0 %can take on values 1-6 in fxn 4 -#int timeElapsed = 0 -#int totalPokes = 0 -#int totalRewards = 0 -#int contingency = -1 -#int count = 0 -#int loopInterval = 250 -#int trialThresh = 0 -#int timeMaxOut = 0 -# -#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being -#int leafProbs2 = 0 -#int leafProbs3 = 0 -#int leafProbs4 = 0 -#int leafProbs5 = 0 -#int leafProbs6 = 0 -# -#int countPokes1 = 0 -#int countPokes2 = 0 -#int countPokes3 = 0 -#int countPokes4 = 0 -#int countPokes5 = 0 -#int countPokes6 = 0 -# -#int countRewards1 = 0 -#int countRewards2 = 0 -#int countRewards3 = 0 -#int countRewards4 = 0 -#int countRewards5 = 0 -#int countRewards6 = 0 -# -#int sessionProbs1 = 0 -#int sessionProbs2 = 0 -#int sessionProbs3 = 0 -#int sessionProbs4 = 0 -#int sessionProbs5 = 0 -#int sessionProbs6 = 0 -# -#%give reward for certain duration after certain delay -#function 1 -# do in delayRewardPeriod -# portout[rewardPump] = 1 %start rewarding with this pump dio -# do in deliverPeriod -# portout[rewardPump] = 0 %stop rewarding with this pump dio -# end -# end -#end; -# -#%keep track of animal behavior and display for experimenter -#function 2 -# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... -# disp(contingency) -# disp(trialThresh) -# disp(timeMaxOut) -# disp(timeElapsed) %length of session thus far -# disp(totalPokes) %how many nonrepeated well visits thus far -# disp(totalRewards) %how many rewards collected thus far -# -# disp(countPokes1) %how many pokes at each well, 6x1 array turned str -# disp(countRewards1) %how many rewards collected per well -# disp(leafProbs1) %experimenter-determined probabilities of reward per well -# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke -# -# disp(countPokes2) -# disp(countRewards2) -# disp(leafProbs2) -# %disp(sessionProbs2) -# -# disp(countPokes3) -# disp(countRewards3) -# disp(leafProbs3) -# %disp(sessionProbs3) -# -# disp(countPokes4) -# disp(countRewards4) -# disp(leafProbs4) -# %disp(sessionProbs4) -# -# disp(countPokes5) -# disp(countRewards5) -# disp(leafProbs5) -# %disp(sessionProbs5) -# -# disp(countPokes6) -# disp(countRewards6) -# disp(leafProbs6) -# %disp(sessionProbs6) -#end; -# -# -#%tell the user that the contingency is complete -#function 3 -# disp('This contingency is over!') -#end; -# -#%end session -#function 4 -# while count < 50 do every loopInterval -# portout[1] = flip -# portout[2] = flip -# portout[3] = flip -# portout[4] = flip -# portout[5] = flip -# portout[6] = flip -# count = count+1 -# then do -# portout[1] = 0 -# portout[2] = 0 -# portout[3] = 0 -# portout[4] = 0 -# portout[5] = 0 -# portout[6] = 0 -# end -# disp('This session is complete!') -#end; -# -# -#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) -#callback portin[1] up -# disp('UP 1') -#end; -# -#callback portin[1] down -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# disp('UP 2') -#end; -# -#callback portin[2] down -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# disp('UP 3') -#end; -# -#callback portin[3] down -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# disp('UP 4') -#end; -# -#callback portin[4] down -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# disp('UP 5') -#end; -# -#callback portin[5] down -# disp('DOWN 5') -#end; -#callback portin[6] up -# disp('UP 6') -#end; -# -#callback portin[6] down -# disp('DOWN 6') -#end; -# -# -# -##author: AC -##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 -##contingency changes occur automatically after either a # of trials or # of minutes -#''' -#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur -#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. -# -#Basic structure: -#if nosepoke at a well -#if the nosepoke!= last nosepoke location -# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p -# trigger(fxn1) #deliver reward, and stop after reward duration -#display updated trial info -#''' -# -##import -#import numpy as np -#import re -#import time -#import math -#from tkinter import * -# -##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) -#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. -#trialThresh = 100 #per contingency -#timeMaxOut = 20 #per contingency, in mins -# -##set up wells and pumps dios -#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info -#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery -# -##variables to keep track of and update during behavior (global) -#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. -#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. -#timeElapsed = 0 #session length thus far in mins -#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. -#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) -#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward -#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 -#runningTrials = False #must say yes to saving data to turn this to true -# -##THIS FXN MUST BE NAMED 'callback'!! -#def callback(line): -# #when an event occurs out on the track, addScQtEvent will call this fxn -# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) -# pokeIn(re.findall(r'\d+',line)) -# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, -# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" -# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) -# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells -# -##when animal nosepokes and breaks beam -#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes -# global currLeaf -# global timeStart -# global leafWells -# global lastLeaf -# global countPokes -# global leafProbs -# global leafPumps -# global contingency -# global countRewards -# global runningTrials -# global timeElapsed -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# if currLeaf == -1: #if it's the first trial in the contingency -# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke -# #if timeElapsed >= timeMaxOut: -# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency -# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency -# #change. sort of defeats the purpose of the floor approach right now. -# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") -# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") -# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") -# timeStart = time.time() #start time for the contingency -# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency -# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") -# countPokes = np.array([0,0,0,0,0,0]) -# countRewards = np.array([0,0,0,0,0,0]) -# for i in range(len(countPokes)): #initialize all as zero -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# for i in range(len(countRewards)): #initialize all as zero -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 -# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump -# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well -# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf -# for i in range(len(countPokes)): -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") -# if np.random.random_sample() < leafProbs[contingency][currLeaf]: -# deliverReward(leafPumps[currLeaf]) -# -##deliver reward, called upon poking in a nonrepeated well -#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps -# global currLeaf -# global rewardPump -# global countRewards -# -# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use -# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward -# countRewards[currLeaf] += 1 #increment num of rewards at this location -# for i in range(len(countRewards)): -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") -# -##update lastLeaf and print out info about the trial if it was at a nonrepeated well -#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells -# global leafWells -# global currLeaf -# global lastLeaf -# global timeElapsed -# global timeStart -# global countPokes -# global countRewards -# global leafProbs -# global contingency -# global runningTrials -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# #if leafWells.index(int(dio[1])) != currLeaf -# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. -# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far -# timeElapsed = round((time.time()-timeStart)/60) -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log -# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn -# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. -# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): -# if contingency < len(leafProbs) - 1: -# currLeaf = -1 #to enable shifting to next contingency -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# timeElapsed = 0 -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# if contingency == len(leafProbs) - 1: -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# runningTrials = False #so no more rewards or anything happen on track -# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session -# -##gui to help remind user that should have saved data -#savingDisp = Tk() -# -#def yesSaving(): -# global runningTrials -# savingDisp.destroy() -# runningTrials=True -# -#def noSaving(): -# savingDisp.destroy() -# -#saveFrame1 = Frame(savingDisp) -#saveFrame1.pack(side = TOP) -# -#saveFrame2 = Frame(savingDisp) -#saveFrame2.pack(side = BOTTOM) -# -#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") -#LS0.pack() -# -#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) -#B1.pack(side = LEFT) -# -#B2 = Button(saveFrame2, text ="No", command = noSaving) -#B2.pack(side = LEFT) -# -#savingDisp.mainloop() -# -# -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94048 UP 1 -94048 1 0 -94058 DOWN 1 -94058 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94112 contingency = 0 -94112 trialThresh = 100 -94112 timeMaxOut = 20 -94112 timeElapsed = 0 -94112 totalPokes = 1 -94113 totalRewards = 0 -94113 countPokes1 = 1 -94114 countRewards1 = 0 -94114 leafProbs1 = 80 -94114 countPokes2 = 0 -94114 countRewards2 = 0 -94128 leafProbs2 = 20 -94129 countPokes3 = 0 -94129 countRewards3 = 0 -94130 leafProbs3 = 20 -94130 countPokes4 = 0 -94130 countRewards4 = 0 -94130 leafProbs4 = 50 -94131 countPokes5 = 0 -94131 countRewards5 = 0 -94132 leafProbs5 = 80 -94132 countPokes6 = 0 -94146 countRewards6 = 0 -94146 leafProbs6 = 50 -~~~ -95370 UP 1 -95370 1 0 -95396 DOWN 1 -95396 0 0 -95404 UP 1 -95404 1 0 -95415 DOWN 1 -95415 0 0 -95449 UP 1 -95449 1 0 -95507 DOWN 1 -95507 0 0 -95526 UP 1 -95526 1 0 -95527 DOWN 1 -95527 0 0 -95534 UP 1 -95534 1 0 -98011 DOWN 1 -98011 0 0 -109846 UP 6 -109846 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -109947 DOWN 6 -109947 0 0 -109954 UP 6 -109954 32 0 -~~~ -109967 contingency = 0 -109967 trialThresh = 100 -109968 timeMaxOut = 20 -109968 timeElapsed = 0 -109969 totalPokes = 2 -109969 totalRewards = 0 -109969 countPokes1 = 1 -109969 countRewards1 = 0 -109969 leafProbs1 = 80 -109970 countPokes2 = 0 -109970 countRewards2 = 0 -109984 leafProbs2 = 20 -109985 countPokes3 = 0 -109985 countRewards3 = 0 -109985 leafProbs3 = 20 -109985 countPokes4 = 0 -109985 countRewards4 = 0 -109986 leafProbs4 = 50 -109986 countPokes5 = 0 -109987 countRewards5 = 0 -109987 leafProbs5 = 80 -110001 countPokes6 = 1 -110001 countRewards6 = 0 -110001 leafProbs6 = 50 -~~~ -111783 DOWN 6 -111783 0 0 -111799 UP 6 -111799 32 0 -112400 DOWN 6 -112399 0 0 -115161 UP 5 -115161 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115185 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115485 16 0 -115577 DOWN 5 -115577 0 0 -~~~ -115603 contingency = 0 -115603 trialThresh = 100 -115604 timeMaxOut = 20 -115604 timeElapsed = 1 -115605 totalPokes = 3 -115605 totalRewards = 1 -115605 countPokes1 = 1 -115605 countRewards1 = 0 -115606 leafProbs1 = 80 -115606 countPokes2 = 0 -115607 countRewards2 = 0 -115620 leafProbs2 = 20 -115621 countPokes3 = 0 -115621 countRewards3 = 0 -115621 leafProbs3 = 20 -115621 countPokes4 = 0 -115622 countRewards4 = 0 -115622 leafProbs4 = 50 -115623 countPokes5 = 1 -115623 countRewards5 = 1 -115623 leafProbs5 = 80 -115637 countPokes6 = 1 -115637 countRewards6 = 0 -115637 leafProbs6 = 50 -~~~ -115638 UP 5 -115638 16 0 -118235 DOWN 5 -118235 0 0 -118252 UP 5 -118252 16 0 -118676 DOWN 5 -118676 0 0 -124414 UP 4 -124414 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124444 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124564 DOWN 4 -124564 0 512 -124571 UP 4 -124571 8 512 -~~~ -124590 contingency = 0 -124590 trialThresh = 100 -124591 timeMaxOut = 20 -124591 timeElapsed = 1 -124591 totalPokes = 4 -124591 totalRewards = 2 -124592 countPokes1 = 1 -124592 countRewards1 = 0 -124592 leafProbs1 = 80 -124593 countPokes2 = 0 -124593 countRewards2 = 0 -124607 leafProbs2 = 20 -124607 countPokes3 = 0 -124607 countRewards3 = 0 -124608 leafProbs3 = 20 -124608 countPokes4 = 1 -124609 countRewards4 = 1 -124609 leafProbs4 = 50 -124609 countPokes5 = 1 -124609 countRewards5 = 1 -124609 leafProbs5 = 80 -124623 countPokes6 = 1 -124623 countRewards6 = 0 -124624 leafProbs6 = 50 -~~~ -124744 8 0 -127285 DOWN 4 -127285 0 0 -128916 UP 3 -128916 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -131495 DOWN 3 -131495 0 0 -131506 UP 3 -131506 4 0 -~~~ -131522 contingency = 0 -131523 trialThresh = 100 -131523 timeMaxOut = 20 -131523 timeElapsed = 1 -131523 totalPokes = 5 -131524 totalRewards = 2 -131524 countPokes1 = 1 -131525 countRewards1 = 0 -131525 leafProbs1 = 80 -131525 countPokes2 = 0 -131525 countRewards2 = 0 -131539 leafProbs2 = 20 -131539 countPokes3 = 1 -131540 countRewards3 = 0 -131540 leafProbs3 = 20 -131541 countPokes4 = 1 -131541 countRewards4 = 1 -131541 leafProbs4 = 50 -131541 countPokes5 = 1 -131542 countRewards5 = 1 -131542 leafProbs5 = 80 -131556 countPokes6 = 1 -131556 countRewards6 = 0 -131557 leafProbs6 = 50 -~~~ -131829 DOWN 3 -131829 0 0 -131849 UP 3 -131849 4 0 -131922 DOWN 3 -131922 0 0 -134163 UP 4 -134163 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -134675 DOWN 4 -134675 0 0 -~~~ -134693 contingency = 0 -134693 trialThresh = 100 -134693 timeMaxOut = 20 -134694 timeElapsed = 1 -134694 totalPokes = 6 -134695 totalRewards = 2 -134695 countPokes1 = 1 -134695 countRewards1 = 0 -134695 leafProbs1 = 80 -134696 countPokes2 = 0 -134696 countRewards2 = 0 -134710 leafProbs2 = 20 -134710 countPokes3 = 1 -134711 countRewards3 = 0 -134711 leafProbs3 = 20 -134711 countPokes4 = 2 -134711 countRewards4 = 1 -134712 leafProbs4 = 50 -134712 countPokes5 = 1 -134713 countRewards5 = 1 -134713 leafProbs5 = 80 -134727 countPokes6 = 1 -134727 countRewards6 = 0 -134727 leafProbs6 = 50 -~~~ -136327 UP 3 -136327 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -137036 DOWN 3 -137036 0 0 -~~~ -137065 contingency = 0 -137065 trialThresh = 100 -137065 timeMaxOut = 20 -137066 timeElapsed = 1 -137066 totalPokes = 7 -137067 totalRewards = 2 -137067 countPokes1 = 1 -137067 countRewards1 = 0 -137067 leafProbs1 = 80 -137068 countPokes2 = 0 -137068 countRewards2 = 0 -137082 leafProbs2 = 20 -137082 countPokes3 = 2 -137083 countRewards3 = 0 -137083 leafProbs3 = 20 -137083 countPokes4 = 2 -137083 countRewards4 = 1 -137084 leafProbs4 = 50 -137084 countPokes5 = 1 -137085 countRewards5 = 1 -137085 leafProbs5 = 80 -137099 countPokes6 = 1 -137099 countRewards6 = 0 -137099 leafProbs6 = 50 -~~~ -143600 UP 5 -143600 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143854 DOWN 5 -143854 0 0 -~~~ -143877 contingency = 0 -143877 trialThresh = 100 -143877 timeMaxOut = 20 -143878 timeElapsed = 1 -143878 totalPokes = 8 -143879 totalRewards = 2 -143879 countPokes1 = 1 -143879 countRewards1 = 0 -143879 leafProbs1 = 80 -143880 countPokes2 = 0 -143880 countRewards2 = 0 -143894 leafProbs2 = 20 -143894 countPokes3 = 2 -143895 countRewards3 = 0 -143895 leafProbs3 = 20 -143895 countPokes4 = 2 -143895 countRewards4 = 1 -143896 leafProbs4 = 50 -143896 countPokes5 = 2 -143897 countRewards5 = 1 -143897 leafProbs5 = 80 -143911 countPokes6 = 1 -143911 countRewards6 = 0 -143911 leafProbs6 = 50 -~~~ -143911 UP 5 -143911 16 0 -144383 DOWN 5 -144383 0 0 -146591 UP 6 -146591 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146617 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146917 32 0 -147061 DOWN 6 -147061 0 0 -~~~ -147089 contingency = 0 -147090 trialThresh = 100 -147090 timeMaxOut = 20 -147091 timeElapsed = 1 -147091 totalPokes = 9 -147091 totalRewards = 3 -147091 countPokes1 = 1 -147092 countRewards1 = 0 -147092 leafProbs1 = 80 -147093 countPokes2 = 0 -147093 countRewards2 = 0 -147107 leafProbs2 = 20 -147107 countPokes3 = 2 -147107 countRewards3 = 0 -147107 leafProbs3 = 20 -147108 countPokes4 = 2 -147108 countRewards4 = 1 -147109 leafProbs4 = 50 -147109 countPokes5 = 2 -147109 countRewards5 = 1 -147109 leafProbs5 = 80 -147123 countPokes6 = 2 -147123 countRewards6 = 1 -147124 leafProbs6 = 50 -~~~ -147124 UP 6 -147124 32 0 -147150 DOWN 6 -147150 0 0 -147157 UP 6 -147157 32 0 -149454 DOWN 6 -149454 0 0 -160370 UP 1 -160370 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160397 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160522 DOWN 1 -160522 0 64 -160533 UP 1 -160533 1 64 -~~~ -160544 contingency = 0 -160544 trialThresh = 100 -160544 timeMaxOut = 20 -160545 timeElapsed = 2 -160545 totalPokes = 10 -160546 totalRewards = 4 -160546 countPokes1 = 2 -160546 countRewards1 = 1 -160546 leafProbs1 = 80 -160547 countPokes2 = 0 -160547 countRewards2 = 0 -160561 leafProbs2 = 20 -160561 countPokes3 = 2 -160562 countRewards3 = 0 -160562 leafProbs3 = 20 -160562 countPokes4 = 2 -160562 countRewards4 = 1 -160563 leafProbs4 = 50 -160563 countPokes5 = 2 -160564 countRewards5 = 1 -160564 leafProbs5 = 80 -160578 countPokes6 = 2 -160578 countRewards6 = 1 -160578 leafProbs6 = 50 -~~~ -160697 1 0 -163834 DOWN 1 -163834 0 0 -166987 UP 2 -166987 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -167144 DOWN 2 -167144 0 0 -167149 UP 2 -167149 2 0 -~~~ -167168 contingency = 0 -167168 trialThresh = 100 -167169 timeMaxOut = 20 -167169 timeElapsed = 2 -167170 totalPokes = 11 -167170 totalRewards = 4 -167170 countPokes1 = 2 -167170 countRewards1 = 1 -167171 leafProbs1 = 80 -167171 countPokes2 = 1 -167172 countRewards2 = 0 -167186 leafProbs2 = 20 -167186 countPokes3 = 2 -167186 countRewards3 = 0 -167186 leafProbs3 = 20 -167186 countPokes4 = 2 -167187 countRewards4 = 1 -167187 leafProbs4 = 50 -167188 countPokes5 = 2 -167188 countRewards5 = 1 -167188 leafProbs5 = 80 -167202 countPokes6 = 2 -167202 countRewards6 = 1 -167202 leafProbs6 = 50 -~~~ -169470 DOWN 2 -169470 0 0 -169499 UP 2 -169499 2 0 -169914 DOWN 2 -169914 0 0 -178210 UP 1 -178210 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178233 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178533 1 0 -181346 DOWN 1 -181346 0 0 -~~~ -181372 contingency = 0 -181372 trialThresh = 100 -181372 timeMaxOut = 20 -181373 timeElapsed = 2 -181373 totalPokes = 12 -181374 totalRewards = 5 -181374 countPokes1 = 3 -181374 countRewards1 = 2 -181374 leafProbs1 = 80 -181375 countPokes2 = 1 -181375 countRewards2 = 0 -181389 leafProbs2 = 20 -181389 countPokes3 = 2 -181390 countRewards3 = 0 -181390 leafProbs3 = 20 -181390 countPokes4 = 2 -181390 countRewards4 = 1 -181391 leafProbs4 = 50 -181391 countPokes5 = 2 -181392 countRewards5 = 1 -181392 leafProbs5 = 80 -181406 countPokes6 = 2 -181406 countRewards6 = 1 -181406 leafProbs6 = 50 -~~~ -184630 UP 2 -184630 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184804 DOWN 2 -184804 0 0 -184815 UP 2 -184815 2 0 -~~~ -184832 contingency = 0 -184832 trialThresh = 100 -184832 timeMaxOut = 20 -184832 timeElapsed = 2 -184833 totalPokes = 13 -184833 totalRewards = 5 -184834 countPokes1 = 3 -184834 countRewards1 = 2 -184834 leafProbs1 = 80 -184834 countPokes2 = 2 -184835 countRewards2 = 0 -184849 leafProbs2 = 20 -184849 countPokes3 = 2 -184850 countRewards3 = 0 -184850 leafProbs3 = 20 -184850 countPokes4 = 2 -184850 countRewards4 = 1 -184850 leafProbs4 = 50 -184851 countPokes5 = 2 -184851 countRewards5 = 1 -184852 leafProbs5 = 80 -184865 countPokes6 = 2 -184866 countRewards6 = 1 -184866 leafProbs6 = 50 -~~~ -185326 DOWN 2 -185326 0 0 -185333 UP 2 -185333 2 0 -185995 DOWN 2 -185995 0 0 -189960 UP 1 -189960 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190078 DOWN 1 -190078 0 0 -190080 UP 1 -190080 1 0 -~~~ -190098 contingency = 0 -190099 trialThresh = 100 -190099 timeMaxOut = 20 -190100 timeElapsed = 2 -190100 totalPokes = 14 -190100 totalRewards = 5 -190100 countPokes1 = 4 -190101 countRewards1 = 2 -190101 leafProbs1 = 80 -190101 countPokes2 = 2 -190102 countRewards2 = 0 -190116 leafProbs2 = 20 -190116 countPokes3 = 2 -190116 countRewards3 = 0 -190116 leafProbs3 = 20 -190117 countPokes4 = 2 -190117 countRewards4 = 1 -190118 leafProbs4 = 50 -190118 countPokes5 = 2 -190118 countRewards5 = 1 -190118 leafProbs5 = 80 -190132 countPokes6 = 2 -190132 countRewards6 = 1 -190132 leafProbs6 = 50 -~~~ -190133 DOWN 1 -190133 0 0 -190160 UP 1 -190160 1 0 -190248 DOWN 1 -190248 0 0 -190276 UP 1 -190276 1 0 -190356 DOWN 1 -190356 0 0 -190391 UP 1 -190391 1 0 -190481 DOWN 1 -190481 0 0 -190555 UP 1 -190555 1 0 -190570 DOWN 1 -190570 0 0 -190849 UP 1 -190849 1 0 -190908 DOWN 1 -190908 0 0 -193661 UP 2 -193661 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -193935 DOWN 2 -193935 0 0 -193938 UP 2 -193938 2 0 -~~~ -193959 contingency = 0 -193959 trialThresh = 100 -193960 timeMaxOut = 20 -193960 timeElapsed = 2 -193960 totalPokes = 15 -193960 totalRewards = 5 -193961 countPokes1 = 4 -193961 countRewards1 = 2 -193962 leafProbs1 = 80 -193962 countPokes2 = 3 -193962 countRewards2 = 0 -193976 leafProbs2 = 20 -193976 countPokes3 = 2 -193977 countRewards3 = 0 -193977 leafProbs3 = 20 -193977 countPokes4 = 2 -193978 countRewards4 = 1 -193978 leafProbs4 = 50 -193978 countPokes5 = 2 -193978 countRewards5 = 1 -193979 leafProbs5 = 80 -193992 countPokes6 = 2 -193993 countRewards6 = 1 -193993 leafProbs6 = 50 -~~~ -194100 DOWN 2 -194100 0 0 -196098 UP 1 -196098 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196123 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196423 1 0 -196514 DOWN 1 -196514 0 0 -196516 UP 1 -196516 1 0 -~~~ -196532 contingency = 0 -196532 trialThresh = 100 -196532 timeMaxOut = 20 -196533 timeElapsed = 3 -196533 totalPokes = 16 -196534 totalRewards = 6 -196534 countPokes1 = 5 -196534 countRewards1 = 3 -196534 leafProbs1 = 80 -196534 countPokes2 = 3 -196535 countRewards2 = 0 -196549 leafProbs2 = 20 -196549 countPokes3 = 2 -196550 countRewards3 = 0 -196550 leafProbs3 = 20 -196550 countPokes4 = 2 -196550 countRewards4 = 1 -196551 leafProbs4 = 50 -196551 countPokes5 = 2 -196551 countRewards5 = 1 -196552 leafProbs5 = 80 -196565 countPokes6 = 2 -196566 countRewards6 = 1 -196566 leafProbs6 = 50 -~~~ -198509 DOWN 1 -198509 0 0 -202035 UP 1 -202035 1 0 -202194 DOWN 1 -202194 0 0 -213522 UP 6 -213522 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -213903 DOWN 6 -213903 0 0 -213919 UP 6 -213919 32 0 -~~~ -213923 contingency = 0 -213923 trialThresh = 100 -213924 timeMaxOut = 20 -213924 timeElapsed = 3 -213925 totalPokes = 17 -213925 totalRewards = 6 -213925 countPokes1 = 5 -213925 countRewards1 = 3 -213926 leafProbs1 = 80 -213926 countPokes2 = 3 -213927 countRewards2 = 0 -213940 leafProbs2 = 20 -213941 countPokes3 = 2 -213941 countRewards3 = 0 -213941 leafProbs3 = 20 -213941 countPokes4 = 2 -213942 countRewards4 = 1 -213942 leafProbs4 = 50 -213943 countPokes5 = 2 -213943 countRewards5 = 1 -213943 leafProbs5 = 80 -213957 countPokes6 = 3 -213957 countRewards6 = 1 -213957 leafProbs6 = 50 -~~~ -213962 DOWN 6 -213962 0 0 -218705 UP 5 -218705 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -218741 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -219041 16 0 -220419 DOWN 5 -220419 0 0 -220425 UP 5 -220425 16 0 -~~~ -220436 contingency = 0 -220436 trialThresh = 100 -220437 timeMaxOut = 20 -220437 timeElapsed = 3 -220437 totalPokes = 18 -220437 totalRewards = 7 -220437 countPokes1 = 5 -220438 countRewards1 = 3 -220438 leafProbs1 = 80 -220439 countPokes2 = 3 -220439 countRewards2 = 0 -220453 leafProbs2 = 20 -220453 countPokes3 = 2 -220453 countRewards3 = 0 -220454 leafProbs3 = 20 -220454 countPokes4 = 2 -220455 countRewards4 = 1 -220455 leafProbs4 = 50 -220455 countPokes5 = 3 -220455 countRewards5 = 2 -220455 leafProbs5 = 80 -220469 countPokes6 = 3 -220469 countRewards6 = 1 -220470 leafProbs6 = 50 -~~~ -221126 DOWN 5 -221126 0 0 -221145 UP 5 -221145 16 0 -221557 DOWN 5 -221557 0 0 -225579 UP 6 -225579 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -225814 DOWN 6 -225814 0 0 -225835 UP 6 -225835 32 0 -~~~ -225843 contingency = 0 -225843 trialThresh = 100 -225843 timeMaxOut = 20 -225844 timeElapsed = 3 -225844 totalPokes = 19 -225845 totalRewards = 7 -225845 countPokes1 = 5 -225845 countRewards1 = 3 -225845 leafProbs1 = 80 -225846 countPokes2 = 3 -225846 countRewards2 = 0 -225860 leafProbs2 = 20 -225860 countPokes3 = 2 -225861 countRewards3 = 0 -225861 leafProbs3 = 20 -225861 countPokes4 = 2 -225861 countRewards4 = 1 -225862 leafProbs4 = 50 -225862 countPokes5 = 3 -225863 countRewards5 = 2 -225863 leafProbs5 = 80 -225877 countPokes6 = 4 -225877 countRewards6 = 1 -225877 leafProbs6 = 50 -~~~ -226005 DOWN 6 -226005 0 0 -226079 UP 6 -226079 32 0 -226211 DOWN 6 -226211 0 0 -226241 UP 6 -226241 32 0 -226290 DOWN 6 -226290 0 0 -226389 UP 6 -226389 32 0 -226584 DOWN 6 -226584 0 0 -226651 UP 6 -226651 32 0 -226788 DOWN 6 -226788 0 0 -230377 UP 5 -230377 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230409 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230619 DOWN 5 -230619 0 1024 -230632 UP 5 -230632 16 1024 -~~~ -230647 contingency = 0 -230647 trialThresh = 100 -230647 timeMaxOut = 20 -230647 timeElapsed = 3 -230648 totalPokes = 20 -230648 totalRewards = 8 -230649 countPokes1 = 5 -230649 countRewards1 = 3 -230649 leafProbs1 = 80 -230649 countPokes2 = 3 -230650 countRewards2 = 0 -230663 leafProbs2 = 20 -230664 countPokes3 = 2 -230664 countRewards3 = 0 -230665 leafProbs3 = 20 -230665 countPokes4 = 2 -230665 countRewards4 = 1 -230665 leafProbs4 = 50 -230666 countPokes5 = 4 -230666 countRewards5 = 3 -230667 leafProbs5 = 80 -230680 countPokes6 = 4 -230681 countRewards6 = 1 -230681 leafProbs6 = 50 -~~~ -230708 16 0 -232797 DOWN 5 -232796 0 0 -232802 UP 5 -232802 16 0 -232900 DOWN 5 -232900 0 0 -232928 UP 5 -232928 16 0 -233233 DOWN 5 -233233 0 0 -233256 UP 5 -233256 16 0 -233319 DOWN 5 -233319 0 0 -235867 UP 6 -235867 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -235898 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -236198 32 0 -238601 DOWN 6 -238601 0 0 -238614 UP 6 -238614 32 0 -~~~ -238631 contingency = 0 -238631 trialThresh = 100 -238631 timeMaxOut = 20 -238631 timeElapsed = 4 -238632 totalPokes = 21 -238632 totalRewards = 9 -238632 countPokes1 = 5 -238633 countRewards1 = 3 -238633 leafProbs1 = 80 -238633 countPokes2 = 3 -238633 countRewards2 = 0 -238647 leafProbs2 = 20 -238648 countPokes3 = 2 -238648 countRewards3 = 0 -238649 leafProbs3 = 20 -238649 countPokes4 = 2 -238649 countRewards4 = 1 -238649 leafProbs4 = 50 -238650 countPokes5 = 4 -238650 countRewards5 = 3 -238650 leafProbs5 = 80 -238664 countPokes6 = 5 -238664 countRewards6 = 2 -238665 leafProbs6 = 50 -~~~ -239049 DOWN 6 -239049 0 0 -250071 UP 1 -250071 1 0 -~~~ -~~~ -250097 DOWN 1 -250097 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250103 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250129 UP 1 -250129 1 64 -~~~ -250136 contingency = 0 -250137 trialThresh = 100 -250137 timeMaxOut = 20 -250137 timeElapsed = 4 -250137 totalPokes = 22 -250137 totalRewards = 10 -250138 countPokes1 = 6 -250138 countRewards1 = 4 -250139 leafProbs1 = 80 -250139 countPokes2 = 3 -250139 countRewards2 = 0 -250153 leafProbs2 = 20 -250153 countPokes3 = 2 -250154 countRewards3 = 0 -250154 leafProbs3 = 20 -250155 countPokes4 = 2 -250155 countRewards4 = 1 -250155 leafProbs4 = 50 -250155 countPokes5 = 4 -250156 countRewards5 = 3 -250156 leafProbs5 = 80 -250170 countPokes6 = 5 -250170 countRewards6 = 2 -250170 leafProbs6 = 50 -~~~ -250171 DOWN 1 -250171 0 64 -250204 UP 1 -250204 1 64 -250248 DOWN 1 -250248 0 64 -250280 UP 1 -250280 1 64 -250403 1 0 -250446 DOWN 1 -250446 0 0 -250455 UP 1 -250455 1 0 -253556 DOWN 1 -253556 0 0 -256084 UP 2 -256084 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256264 DOWN 2 -256264 0 0 -256267 UP 2 -256267 2 0 -~~~ -256282 contingency = 0 -256282 trialThresh = 100 -256282 timeMaxOut = 20 -256282 timeElapsed = 4 -256282 totalPokes = 23 -256283 totalRewards = 10 -256283 countPokes1 = 6 -256284 countRewards1 = 4 -256284 leafProbs1 = 80 -256284 countPokes2 = 4 -256284 countRewards2 = 0 -256298 leafProbs2 = 20 -256299 countPokes3 = 2 -256299 countRewards3 = 0 -256300 leafProbs3 = 20 -256300 countPokes4 = 2 -256300 countRewards4 = 1 -256300 leafProbs4 = 50 -256301 countPokes5 = 4 -256301 countRewards5 = 3 -256302 leafProbs5 = 80 -256315 countPokes6 = 5 -256316 countRewards6 = 2 -256316 leafProbs6 = 50 -~~~ -256546 DOWN 2 -256546 0 0 -256572 UP 2 -256572 2 0 -256748 DOWN 2 -256748 0 0 -258880 UP 1 -258880 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -258914 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -259214 1 0 -261848 DOWN 1 -261848 0 0 -~~~ -261868 contingency = 0 -261868 trialThresh = 100 -261868 timeMaxOut = 20 -261868 timeElapsed = 4 -261869 totalPokes = 24 -261869 totalRewards = 11 -261870 countPokes1 = 7 -261870 countRewards1 = 5 -261870 leafProbs1 = 80 -261870 countPokes2 = 4 -261870 countRewards2 = 0 -261884 leafProbs2 = 20 -261885 countPokes3 = 2 -261885 countRewards3 = 0 -261886 leafProbs3 = 20 -261886 countPokes4 = 2 -261886 countRewards4 = 1 -261886 leafProbs4 = 50 -261887 countPokes5 = 4 -261887 countRewards5 = 3 -261888 leafProbs5 = 80 -261901 countPokes6 = 5 -261902 countRewards6 = 2 -261902 leafProbs6 = 50 -~~~ -267560 UP 2 -267560 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -267886 DOWN 2 -267886 0 0 -267900 UP 2 -267900 2 0 -~~~ -267911 contingency = 0 -267911 trialThresh = 100 -267912 timeMaxOut = 20 -267912 timeElapsed = 4 -267912 totalPokes = 25 -267912 totalRewards = 11 -267913 countPokes1 = 7 -267913 countRewards1 = 5 -267914 leafProbs1 = 80 -267914 countPokes2 = 5 -267914 countRewards2 = 0 -267928 leafProbs2 = 20 -267928 countPokes3 = 2 -267928 countRewards3 = 0 -267929 leafProbs3 = 20 -267929 countPokes4 = 2 -267930 countRewards4 = 1 -267930 leafProbs4 = 50 -267930 countPokes5 = 4 -267930 countRewards5 = 3 -267931 leafProbs5 = 80 -267944 countPokes6 = 5 -267945 countRewards6 = 2 -267945 leafProbs6 = 50 -~~~ -267946 DOWN 2 -267946 0 0 -272470 UP 2 -272470 2 0 -272489 DOWN 2 -272489 0 0 -272498 UP 2 -272498 2 0 -272506 DOWN 2 -272506 0 0 -275002 UP 1 -275002 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275036 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275336 1 0 -277515 DOWN 1 -277515 0 0 -277520 UP 1 -277520 1 0 -~~~ -277532 contingency = 0 -277533 trialThresh = 100 -277533 timeMaxOut = 20 -277534 timeElapsed = 5 -277534 totalPokes = 26 -277534 totalRewards = 12 -277534 countPokes1 = 8 -277534 countRewards1 = 6 -277535 leafProbs1 = 80 -277535 countPokes2 = 5 -277536 countRewards2 = 0 -277550 leafProbs2 = 20 -277550 countPokes3 = 2 -277550 countRewards3 = 0 -277550 leafProbs3 = 20 -277551 countPokes4 = 2 -277551 countRewards4 = 1 -277552 leafProbs4 = 50 -277552 countPokes5 = 4 -277552 countRewards5 = 3 -277552 leafProbs5 = 80 -277566 countPokes6 = 5 -277566 countRewards6 = 2 -277566 leafProbs6 = 50 -~~~ -277832 DOWN 1 -277832 0 0 -284331 UP 1 -284331 1 0 -284497 DOWN 1 -284497 0 0 -290436 UP 2 -290436 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -291663 DOWN 2 -291663 0 0 -~~~ -291685 contingency = 0 -291686 trialThresh = 100 -291686 timeMaxOut = 20 -291686 timeElapsed = 5 -291686 totalPokes = 27 -291687 totalRewards = 12 -291687 countPokes1 = 8 -291688 countRewards1 = 6 -291688 leafProbs1 = 80 -291688 countPokes2 = 6 -291688 countRewards2 = 0 -291702 leafProbs2 = 20 -291702 countPokes3 = 2 -291703 countRewards3 = 0 -291703 leafProbs3 = 20 -291704 countPokes4 = 2 -291704 countRewards4 = 1 -291704 leafProbs4 = 50 -291704 countPokes5 = 4 -291705 countRewards5 = 3 -291705 leafProbs5 = 80 -291719 countPokes6 = 5 -291719 countRewards6 = 2 -291720 leafProbs6 = 50 -~~~ -298521 UP 1 -298521 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298560 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298859 1 0 -301302 DOWN 1 -301302 0 0 -301320 UP 1 -301320 1 0 -~~~ -301324 contingency = 0 -301324 trialThresh = 100 -301324 timeMaxOut = 20 -301324 timeElapsed = 5 -301325 totalPokes = 28 -301325 totalRewards = 13 -301326 countPokes1 = 9 -301326 countRewards1 = 7 -301326 leafProbs1 = 80 -301326 countPokes2 = 6 -301327 countRewards2 = 0 -301341 leafProbs2 = 20 -301341 countPokes3 = 2 -301342 countRewards3 = 0 -301342 leafProbs3 = 20 -301342 countPokes4 = 2 -301342 countRewards4 = 1 -301343 leafProbs4 = 50 -301343 countPokes5 = 4 -301343 countRewards5 = 3 -301344 leafProbs5 = 80 -301357 countPokes6 = 5 -301358 countRewards6 = 2 -301358 leafProbs6 = 50 -~~~ -301818 DOWN 1 -301818 0 0 -308157 UP 2 -308157 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -308409 DOWN 2 -308409 0 0 -~~~ -308433 contingency = 0 -308433 trialThresh = 100 -308433 timeMaxOut = 20 -308434 timeElapsed = 5 -308434 totalPokes = 29 -308435 totalRewards = 13 -308435 countPokes1 = 9 -308435 countRewards1 = 7 -308435 leafProbs1 = 80 -308436 countPokes2 = 7 -308436 countRewards2 = 0 -308450 leafProbs2 = 20 -308451 countPokes3 = 2 -308451 countRewards3 = 0 -308451 leafProbs3 = 20 -308451 countPokes4 = 2 -308452 countRewards4 = 1 -308452 leafProbs4 = 50 -308452 countPokes5 = 4 -308453 countRewards5 = 3 -308453 leafProbs5 = 80 -308467 countPokes6 = 5 -308467 countRewards6 = 2 -308467 leafProbs6 = 50 -~~~ -311726 UP 1 -311726 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -312211 DOWN 1 -312211 0 0 -~~~ -312317 contingency = 0 -312317 trialThresh = 100 -312318 timeMaxOut = 20 -312318 timeElapsed = 5 -312319 totalPokes = 30 -312319 totalRewards = 13 -312319 countPokes1 = 10 -312319 countRewards1 = 7 -312320 leafProbs1 = 80 -312320 countPokes2 = 7 -312321 countRewards2 = 0 -312335 leafProbs2 = 20 -312335 countPokes3 = 2 -312335 countRewards3 = 0 -312335 leafProbs3 = 20 -312335 countPokes4 = 2 -312336 countRewards4 = 1 -312336 leafProbs4 = 50 -312337 countPokes5 = 4 -312337 countRewards5 = 3 -312337 leafProbs5 = 80 -312351 countPokes6 = 5 -312351 countRewards6 = 2 -312351 leafProbs6 = 50 -~~~ -329565 UP 1 -329565 1 0 -329578 DOWN 1 -329578 0 0 -329607 UP 1 -329607 1 0 -329615 DOWN 1 -329615 0 0 -336849 UP 6 -336849 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -337375 DOWN 6 -337375 0 0 -~~~ -337402 contingency = 0 -337403 trialThresh = 100 -337403 timeMaxOut = 20 -337403 timeElapsed = 6 -337403 totalPokes = 31 -337404 totalRewards = 13 -337404 countPokes1 = 10 -337405 countRewards1 = 7 -337405 leafProbs1 = 80 -337405 countPokes2 = 7 -337405 countRewards2 = 0 -337419 leafProbs2 = 20 -337419 countPokes3 = 2 -337420 countRewards3 = 0 -337420 leafProbs3 = 20 -337421 countPokes4 = 2 -337421 countRewards4 = 1 -337421 leafProbs4 = 50 -337421 countPokes5 = 4 -337422 countRewards5 = 3 -337422 leafProbs5 = 80 -337436 countPokes6 = 6 -337436 countRewards6 = 2 -337437 leafProbs6 = 50 -~~~ -339595 UP 6 -339595 32 0 -339614 DOWN 6 -339614 0 0 -339917 UP 6 -339917 32 0 -340039 DOWN 6 -340039 0 0 -340062 UP 6 -340062 32 0 -341221 DOWN 6 -341221 0 0 -348806 UP 6 -348806 32 0 -349029 DOWN 6 -349029 0 0 -370690 UP 3 -370690 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -371347 DOWN 3 -371347 0 0 -~~~ -371366 contingency = 0 -371367 trialThresh = 100 -371367 timeMaxOut = 20 -371368 timeElapsed = 7 -371368 totalPokes = 32 -371368 totalRewards = 13 -371368 countPokes1 = 10 -371369 countRewards1 = 7 -371369 leafProbs1 = 80 -371370 countPokes2 = 7 -371370 countRewards2 = 0 -371384 leafProbs2 = 20 -371384 countPokes3 = 3 -371384 countRewards3 = 0 -371385 leafProbs3 = 20 -371385 countPokes4 = 2 -371386 countRewards4 = 1 -371386 leafProbs4 = 50 -371386 countPokes5 = 4 -371386 countRewards5 = 3 -371386 leafProbs5 = 80 -371400 countPokes6 = 6 -371400 countRewards6 = 2 -371401 leafProbs6 = 50 -~~~ -371401 UP 3 -371401 4 0 -371462 DOWN 3 -371462 0 0 -376503 UP 4 -376503 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376533 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376832 8 0 -379496 DOWN 4 -379496 0 0 -~~~ -379512 contingency = 0 -379512 trialThresh = 100 -379512 timeMaxOut = 20 -379512 timeElapsed = 7 -379512 totalPokes = 33 -379513 totalRewards = 14 -379513 countPokes1 = 10 -379514 countRewards1 = 7 -379514 leafProbs1 = 80 -379514 countPokes2 = 7 -379514 countRewards2 = 0 -379528 leafProbs2 = 20 -379529 countPokes3 = 3 -379529 countRewards3 = 0 -379530 leafProbs3 = 20 -379530 countPokes4 = 3 -379530 countRewards4 = 2 -379530 leafProbs4 = 50 -379531 countPokes5 = 4 -379531 countRewards5 = 3 -379532 leafProbs5 = 80 -379545 countPokes6 = 6 -379546 countRewards6 = 2 -379546 leafProbs6 = 50 -~~~ -379546 UP 4 -379546 8 0 -380063 DOWN 4 -380063 0 0 -380421 UP 4 -380421 8 0 -382496 DOWN 4 -382496 0 0 -387918 UP 3 -387918 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -388412 DOWN 3 -388412 0 0 -~~~ -388430 contingency = 0 -388430 trialThresh = 100 -388430 timeMaxOut = 20 -388431 timeElapsed = 7 -388431 totalPokes = 34 -388432 totalRewards = 14 -388432 countPokes1 = 10 -388432 countRewards1 = 7 -388432 leafProbs1 = 80 -388433 countPokes2 = 7 -388433 countRewards2 = 0 -388447 leafProbs2 = 20 -388448 countPokes3 = 4 -388448 countRewards3 = 0 -388448 leafProbs3 = 20 -388448 countPokes4 = 3 -388448 countRewards4 = 2 -388449 leafProbs4 = 50 -388449 countPokes5 = 4 -388450 countRewards5 = 3 -388450 leafProbs5 = 80 -388464 countPokes6 = 6 -388464 countRewards6 = 2 -388464 leafProbs6 = 50 -~~~ -390881 UP 4 -390881 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -390913 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391213 8 0 -393870 DOWN 4 -393870 0 0 -~~~ -393894 contingency = 0 -393894 trialThresh = 100 -393894 timeMaxOut = 20 -393894 timeElapsed = 7 -393895 totalPokes = 35 -393895 totalRewards = 15 -393895 countPokes1 = 10 -393896 countRewards1 = 7 -393896 leafProbs1 = 80 -393896 countPokes2 = 7 -393896 countRewards2 = 0 -393910 leafProbs2 = 20 -393911 countPokes3 = 4 -393911 countRewards3 = 0 -393912 leafProbs3 = 20 -393912 countPokes4 = 4 -393912 countRewards4 = 3 -393912 leafProbs4 = 50 -393913 countPokes5 = 4 -393913 countRewards5 = 3 -393914 leafProbs5 = 80 -393927 countPokes6 = 6 -393928 countRewards6 = 2 -393928 leafProbs6 = 50 -~~~ -396968 UP 3 -396968 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -396991 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -397291 4 0 -397330 DOWN 3 -397330 0 0 -397342 UP 3 -397342 4 0 -~~~ -397350 contingency = 0 -397350 trialThresh = 100 -397351 timeMaxOut = 20 -397351 timeElapsed = 8 -397352 totalPokes = 36 -397352 totalRewards = 16 -397352 countPokes1 = 10 -397352 countRewards1 = 7 -397353 leafProbs1 = 80 -397353 countPokes2 = 7 -397353 countRewards2 = 0 -397368 leafProbs2 = 20 -397368 countPokes3 = 5 -397368 countRewards3 = 1 -397368 leafProbs3 = 20 -397368 countPokes4 = 4 -397369 countRewards4 = 3 -397369 leafProbs4 = 50 -397370 countPokes5 = 4 -397370 countRewards5 = 3 -397370 leafProbs5 = 80 -397384 countPokes6 = 6 -397384 countRewards6 = 2 -397384 leafProbs6 = 50 -~~~ -397422 DOWN 3 -397422 0 0 -397432 UP 3 -397432 4 0 -397510 DOWN 3 -397510 0 0 -397514 UP 3 -397514 4 0 -400532 DOWN 3 -400532 0 0 -419715 UP 4 -419715 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -419745 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420045 8 0 -422470 DOWN 4 -422470 0 0 -422484 UP 4 -422484 8 0 -~~~ -422499 contingency = 0 -422499 trialThresh = 100 -422499 timeMaxOut = 20 -422499 timeElapsed = 8 -422500 totalPokes = 37 -422500 totalRewards = 17 -422501 countPokes1 = 10 -422501 countRewards1 = 7 -422501 leafProbs1 = 80 -422501 countPokes2 = 7 -422502 countRewards2 = 0 -422516 leafProbs2 = 20 -422516 countPokes3 = 5 -422517 countRewards3 = 1 -422517 leafProbs3 = 20 -422517 countPokes4 = 5 -422517 countRewards4 = 4 -422517 leafProbs4 = 50 -422518 countPokes5 = 4 -422518 countRewards5 = 3 -422519 leafProbs5 = 80 -422532 countPokes6 = 6 -422533 countRewards6 = 2 -422533 leafProbs6 = 50 -~~~ -423017 DOWN 4 -423017 0 0 -427069 UP 3 -427069 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427094 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427239 DOWN 3 -427239 0 256 -427241 UP 3 -427241 4 256 -~~~ -427264 contingency = 0 -427264 trialThresh = 100 -427264 timeMaxOut = 20 -427265 timeElapsed = 8 -427265 totalPokes = 38 -427265 totalRewards = 18 -427265 countPokes1 = 10 -427266 countRewards1 = 7 -427266 leafProbs1 = 80 -427267 countPokes2 = 7 -427267 countRewards2 = 0 -427281 leafProbs2 = 20 -427281 countPokes3 = 6 -427281 countRewards3 = 2 -427282 leafProbs3 = 20 -427282 countPokes4 = 5 -427283 countRewards4 = 4 -427283 leafProbs4 = 50 -427283 countPokes5 = 4 -427283 countRewards5 = 3 -427284 leafProbs5 = 80 -427297 countPokes6 = 6 -427298 countRewards6 = 2 -427298 leafProbs6 = 50 -~~~ -427394 4 0 -428859 DOWN 3 -428859 0 0 -428870 UP 3 -428870 4 0 -430500 DOWN 3 -430500 0 0 -430508 UP 3 -430508 4 0 -430526 DOWN 3 -430526 0 0 -430529 UP 3 -430529 4 0 -430591 DOWN 3 -430591 0 0 -430598 UP 3 -430598 4 0 -430616 DOWN 3 -430616 0 0 -430625 UP 3 -430625 4 0 -430632 DOWN 3 -430632 0 0 -430643 UP 3 -430643 4 0 -430705 DOWN 3 -430705 0 0 -430716 UP 3 -430716 4 0 -430743 DOWN 3 -430743 0 0 -430751 UP 3 -430751 4 0 -430764 DOWN 3 -430764 0 0 -430767 UP 3 -430767 4 0 -430813 DOWN 3 -430813 0 0 -430823 UP 3 -430823 4 0 -430837 DOWN 3 -430837 0 0 -430847 UP 3 -430847 4 0 -430937 DOWN 3 -430937 0 0 -438029 UP 4 -438029 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -438640 DOWN 4 -438640 0 0 -~~~ -438656 contingency = 0 -438656 trialThresh = 100 -438657 timeMaxOut = 20 -438657 timeElapsed = 9 -438657 totalPokes = 39 -438657 totalRewards = 18 -438658 countPokes1 = 10 -438658 countRewards1 = 7 -438659 leafProbs1 = 80 -438659 countPokes2 = 7 -438659 countRewards2 = 0 -438673 leafProbs2 = 20 -438673 countPokes3 = 6 -438674 countRewards3 = 2 -438674 leafProbs3 = 20 -438675 countPokes4 = 6 -438675 countRewards4 = 4 -438675 leafProbs4 = 50 -438675 countPokes5 = 4 -438675 countRewards5 = 3 -438676 leafProbs5 = 80 -438690 countPokes6 = 6 -438690 countRewards6 = 2 -438690 leafProbs6 = 50 -~~~ -440259 UP 3 -440259 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -440484 DOWN 3 -440484 0 0 -~~~ -440505 UP 3 -440505 4 0 -440506 contingency = 0 -440506 trialThresh = 100 -440507 timeMaxOut = 20 -440507 timeElapsed = 9 -440507 totalPokes = 40 -440507 totalRewards = 18 -440508 countPokes1 = 10 -440508 countRewards1 = 7 -440508 leafProbs1 = 80 -440509 countPokes2 = 7 -440523 countRewards2 = 0 -440523 leafProbs2 = 20 -440523 countPokes3 = 7 -440523 countRewards3 = 2 -440524 leafProbs3 = 20 -440524 countPokes4 = 6 -440525 countRewards4 = 4 -440525 leafProbs4 = 50 -440525 countPokes5 = 4 -440525 countRewards5 = 3 -440539 leafProbs5 = 80 -440539 countPokes6 = 6 -440540 countRewards6 = 2 -440540 leafProbs6 = 50 -~~~ -440595 DOWN 3 -440595 0 0 -440601 UP 3 -440601 4 0 -440618 DOWN 3 -440618 0 0 -440634 UP 3 -440634 4 0 -440725 DOWN 3 -440725 0 0 -440729 UP 3 -440729 4 0 -440749 DOWN 3 -440749 0 0 -440787 UP 3 -440787 4 0 -441093 DOWN 3 -441093 0 0 -441136 UP 3 -441136 4 0 -441147 DOWN 3 -441147 0 0 -441287 UP 3 -441287 4 0 -441509 DOWN 3 -441509 0 0 -444557 UP 4 -444557 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -444894 DOWN 4 -444894 0 0 -~~~ -444911 contingency = 0 -444911 trialThresh = 100 -444911 timeMaxOut = 20 -444911 timeElapsed = 9 -444912 totalPokes = 41 -444912 totalRewards = 18 -444913 countPokes1 = 10 -444913 countRewards1 = 7 -444913 leafProbs1 = 80 -444913 countPokes2 = 7 -444914 countRewards2 = 0 -444928 leafProbs2 = 20 -444928 countPokes3 = 7 -444929 countRewards3 = 2 -444929 leafProbs3 = 20 -444929 countPokes4 = 7 -444929 countRewards4 = 4 -444930 leafProbs4 = 50 -444930 countPokes5 = 4 -444931 countRewards5 = 3 -444931 leafProbs5 = 80 -444945 countPokes6 = 6 -444945 countRewards6 = 2 -444945 leafProbs6 = 50 -~~~ -451529 UP 6 -451529 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -452216 DOWN 6 -452216 0 0 -~~~ -452237 contingency = 0 -452237 trialThresh = 100 -452238 timeMaxOut = 20 -452238 timeElapsed = 9 -452239 totalPokes = 42 -452239 totalRewards = 18 -452239 countPokes1 = 10 -452239 countRewards1 = 7 -452240 leafProbs1 = 80 -452240 countPokes2 = 7 -452241 countRewards2 = 0 -452255 leafProbs2 = 20 -452255 countPokes3 = 7 -452255 countRewards3 = 2 -452255 leafProbs3 = 20 -452256 countPokes4 = 7 -452256 countRewards4 = 4 -452257 leafProbs4 = 50 -452257 countPokes5 = 4 -452257 countRewards5 = 3 -452257 leafProbs5 = 80 -452271 countPokes6 = 7 -452271 countRewards6 = 2 -452271 leafProbs6 = 50 -~~~ -452272 UP 6 -452272 32 0 -452323 DOWN 6 -452323 0 0 -456828 UP 6 -456828 32 0 -457039 DOWN 6 -457039 0 0 -458402 UP 5 -458402 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458432 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458732 16 0 -458786 DOWN 5 -458786 0 0 -458790 UP 5 -458790 16 0 -~~~ -458817 contingency = 0 -458817 trialThresh = 100 -458817 timeMaxOut = 20 -458817 timeElapsed = 9 -458818 totalPokes = 43 -458818 totalRewards = 19 -458819 countPokes1 = 10 -458819 countRewards1 = 7 -458819 leafProbs1 = 80 -458819 countPokes2 = 7 -458820 countRewards2 = 0 -458834 leafProbs2 = 20 -458834 countPokes3 = 7 -458835 countRewards3 = 2 -458835 leafProbs3 = 20 -458835 countPokes4 = 7 -458835 countRewards4 = 4 -458836 leafProbs4 = 50 -458836 countPokes5 = 5 -458837 countRewards5 = 4 -458837 leafProbs5 = 80 -458850 countPokes6 = 7 -458851 countRewards6 = 2 -458851 leafProbs6 = 50 -~~~ -460863 DOWN 5 -460863 0 0 -460877 UP 5 -460877 16 0 -461283 DOWN 5 -461283 0 0 -461306 UP 5 -461306 16 0 -461377 DOWN 5 -461377 0 0 -468674 UP 6 -468674 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469094 DOWN 6 -469094 0 0 -~~~ -469120 contingency = 0 -469120 trialThresh = 100 -469120 timeMaxOut = 20 -469121 timeElapsed = 9 -469121 totalPokes = 44 -469122 totalRewards = 19 -469122 countPokes1 = 10 -469122 countRewards1 = 7 -469122 leafProbs1 = 80 -469123 countPokes2 = 7 -469123 countRewards2 = 0 -469137 leafProbs2 = 20 -469138 countPokes3 = 7 -469138 countRewards3 = 2 -469138 leafProbs3 = 20 -469138 countPokes4 = 7 -469138 countRewards4 = 4 -469139 leafProbs4 = 50 -469139 countPokes5 = 5 -469140 countRewards5 = 4 -469140 leafProbs5 = 80 -469154 countPokes6 = 8 -469154 countRewards6 = 2 -469154 leafProbs6 = 50 -~~~ -474207 UP 6 -474207 32 0 -474302 DOWN 6 -474302 0 0 -474380 UP 6 -474380 32 0 -474621 DOWN 6 -474621 0 0 -482030 UP 1 -482030 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -482234 DOWN 1 -482234 0 0 -~~~ -482258 contingency = 0 -482258 trialThresh = 100 -482258 timeMaxOut = 20 -482258 timeElapsed = 10 -482259 totalPokes = 45 -482259 totalRewards = 19 -482260 countPokes1 = 11 -482260 countRewards1 = 7 -482260 leafProbs1 = 80 -482260 countPokes2 = 7 -482261 countRewards2 = 0 -482275 leafProbs2 = 20 -482275 countPokes3 = 7 -482276 countRewards3 = 2 -482276 leafProbs3 = 20 -482276 countPokes4 = 7 -482276 countRewards4 = 4 -482277 leafProbs4 = 50 -482277 countPokes5 = 5 -482278 countRewards5 = 4 -482278 leafProbs5 = 80 -482292 countPokes6 = 8 -482292 countRewards6 = 2 -482292 leafProbs6 = 50 -~~~ -482292 UP 1 -482292 1 0 -482558 DOWN 1 -482558 0 0 -482585 UP 1 -482585 1 0 -482683 DOWN 1 -482683 0 0 -482718 UP 1 -482718 1 0 -482744 DOWN 1 -482744 0 0 -482821 UP 1 -482821 1 0 -482842 DOWN 1 -482842 0 0 -482905 UP 1 -482905 1 0 -482939 DOWN 1 -482939 0 0 -498133 UP 1 -498133 1 0 -498150 DOWN 1 -498150 0 0 -498596 UP 1 -498596 1 0 -498878 DOWN 1 -498878 0 0 -508278 UP 1 -508278 1 0 -508469 DOWN 1 -508469 0 0 -508616 UP 1 -508616 1 0 -508860 DOWN 1 -508860 0 0 -518791 UP 2 -518791 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -519385 DOWN 2 -519385 0 0 -~~~ -519406 contingency = 0 -519406 trialThresh = 100 -519407 timeMaxOut = 20 -519407 timeElapsed = 11 -519407 totalPokes = 46 -519407 totalRewards = 19 -519408 countPokes1 = 11 -519408 countRewards1 = 7 -519409 leafProbs1 = 80 -519409 countPokes2 = 8 -519409 countRewards2 = 0 -519423 leafProbs2 = 20 -519423 countPokes3 = 7 -519424 countRewards3 = 2 -519424 leafProbs3 = 20 -519425 countPokes4 = 7 -519425 countRewards4 = 4 -519425 leafProbs4 = 50 -519425 countPokes5 = 5 -519425 countRewards5 = 4 -519426 leafProbs5 = 80 -519439 countPokes6 = 8 -519440 countRewards6 = 2 -519440 leafProbs6 = 50 -~~~ -519441 UP 2 -519441 2 0 -519447 DOWN 2 -519447 0 0 -524357 UP 1 -524357 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524378 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524678 1 0 -524797 DOWN 1 -524797 0 0 -~~~ -524815 contingency = 0 -524815 trialThresh = 100 -524816 timeMaxOut = 20 -524816 timeElapsed = 11 -524817 totalPokes = 47 -524817 totalRewards = 20 -524817 countPokes1 = 12 -524817 countRewards1 = 8 -524817 leafProbs1 = 80 -524818 countPokes2 = 8 -524818 countRewards2 = 0 -524833 leafProbs2 = 20 -524833 countPokes3 = 7 -524833 countRewards3 = 2 -524833 leafProbs3 = 20 -524833 countPokes4 = 7 -524834 countRewards4 = 4 -524834 leafProbs4 = 50 -524835 countPokes5 = 5 -524835 countRewards5 = 4 -524835 leafProbs5 = 80 -524849 countPokes6 = 8 -524849 countRewards6 = 2 -524849 leafProbs6 = 50 -~~~ -524850 UP 1 -524850 1 0 -524863 DOWN 1 -524863 0 0 -524873 UP 1 -524873 1 0 -527968 DOWN 1 -527968 0 0 -527980 UP 1 -527980 1 0 -528079 DOWN 1 -528079 0 0 -528109 UP 1 -528109 1 0 -528210 DOWN 1 -528210 0 0 -528221 UP 1 -528221 1 0 -528322 DOWN 1 -528322 0 0 -528348 UP 1 -528348 1 0 -528356 DOWN 1 -528356 0 0 -528365 UP 1 -528365 1 0 -528411 DOWN 1 -528411 0 0 -533697 UP 1 -533697 1 0 -533887 DOWN 1 -533887 0 0 -533943 UP 1 -533943 1 0 -535917 DOWN 1 -535917 0 0 -536171 UP 1 -536171 1 0 -536181 DOWN 1 -536181 0 0 -540135 UP 1 -540135 1 0 -540396 DOWN 1 -540396 0 0 -544774 UP 1 -544774 1 0 -544951 DOWN 1 -544951 0 0 -545039 UP 1 -545039 1 0 -545129 DOWN 1 -545129 0 0 -546501 UP 1 -546501 1 0 -546595 DOWN 1 -546595 0 0 -562134 UP 1 -562134 1 0 -562562 DOWN 1 -562562 0 0 -574774 UP 6 -574774 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -574832 DOWN 6 -574832 0 0 -~~~ -574860 contingency = 0 -574860 trialThresh = 100 -574861 timeMaxOut = 20 -574861 timeElapsed = 12 -574862 totalPokes = 48 -574862 totalRewards = 20 -574862 countPokes1 = 12 -574862 countRewards1 = 8 -574863 leafProbs1 = 80 -574863 countPokes2 = 8 -574864 countRewards2 = 0 -574878 leafProbs2 = 20 -574878 countPokes3 = 7 -574878 countRewards3 = 2 -574878 leafProbs3 = 20 -574879 countPokes4 = 7 -574879 countRewards4 = 4 -574879 leafProbs4 = 50 -574880 countPokes5 = 5 -574880 countRewards5 = 4 -574880 leafProbs5 = 80 -574894 countPokes6 = 9 -574894 countRewards6 = 2 -574894 leafProbs6 = 50 -~~~ -574895 UP 6 -574895 32 0 -574983 DOWN 6 -574983 0 0 -575020 UP 6 -575020 32 0 -575089 DOWN 6 -575089 0 0 -575126 UP 6 -575126 32 0 -575149 DOWN 6 -575149 0 0 -577744 UP 6 -577744 32 0 -577748 DOWN 6 -577748 0 0 -578154 UP 6 -578154 32 0 -579354 DOWN 6 -579354 0 0 -579382 UP 6 -579382 32 0 -579514 DOWN 6 -579514 0 0 -580826 UP 6 -580826 32 0 -581310 DOWN 6 -581310 0 0 -581654 UP 6 -581654 32 0 -581711 DOWN 6 -581711 0 0 -582734 UP 6 -582733 32 0 -582748 DOWN 6 -582748 0 0 -585351 UP 6 -585351 32 0 -587498 DOWN 6 -587498 0 0 -595639 UP 1 -595639 1 0 -595653 DOWN 1 -595653 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595663 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595676 contingency = 0 -595676 trialThresh = 100 -595676 timeMaxOut = 20 -595677 timeElapsed = 13 -595677 totalPokes = 49 -595678 totalRewards = 21 -595678 countPokes1 = 13 -595678 countRewards1 = 9 -595678 leafProbs1 = 80 -595679 countPokes2 = 8 -595679 countRewards2 = 0 -595693 leafProbs2 = 20 -595694 countPokes3 = 7 -595694 countRewards3 = 2 -595694 leafProbs3 = 20 -595694 countPokes4 = 7 -595694 countRewards4 = 4 -595695 leafProbs4 = 50 -595695 countPokes5 = 5 -595696 countRewards5 = 4 -595696 leafProbs5 = 80 -595710 countPokes6 = 9 -595710 countRewards6 = 2 -595710 leafProbs6 = 50 -~~~ -595710 UP 1 -595710 1 64 -595807 DOWN 1 -595807 0 64 -595820 UP 1 -595820 1 64 -595874 DOWN 1 -595874 0 64 -595886 UP 1 -595886 1 64 -595963 1 0 -599155 DOWN 1 -599155 0 0 -599164 UP 1 -599164 1 0 -599808 DOWN 1 -599808 0 0 -688756 UP 6 -688756 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688779 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688956 DOWN 6 -688956 0 2048 -~~~ -688973 contingency = 0 -688973 trialThresh = 100 -688974 timeMaxOut = 20 -688974 timeElapsed = 15 -688974 totalPokes = 50 -688974 totalRewards = 22 -688975 countPokes1 = 13 -688975 countRewards1 = 9 -688976 leafProbs1 = 80 -688976 countPokes2 = 8 -688976 countRewards2 = 0 -688990 leafProbs2 = 20 -688990 countPokes3 = 7 -688991 countRewards3 = 2 -688991 leafProbs3 = 20 -688992 countPokes4 = 7 -688992 countRewards4 = 4 -688992 leafProbs4 = 50 -688992 countPokes5 = 5 -688993 countRewards5 = 4 -688993 leafProbs5 = 80 -689007 countPokes6 = 10 -689007 countRewards6 = 3 -689007 leafProbs6 = 50 -~~~ -689008 UP 6 -689008 32 2048 -689079 32 0 -692128 DOWN 6 -692128 0 0 -692143 UP 6 -692143 32 0 -692685 DOWN 6 -692685 0 0 -698048 UP 6 -698048 32 0 -703204 DOWN 6 -703204 0 0 -704795 UP 5 -704795 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704833 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704998 DOWN 5 -704998 0 1024 -~~~ -705014 contingency = 0 -705014 trialThresh = 100 -705014 timeMaxOut = 20 -705015 timeElapsed = 15 -705015 totalPokes = 51 -705016 totalRewards = 23 -705016 countPokes1 = 13 -705016 countRewards1 = 9 -705016 leafProbs1 = 80 -705017 countPokes2 = 8 -705017 countRewards2 = 0 -705031 leafProbs2 = 20 -705032 countPokes3 = 7 -705032 countRewards3 = 2 -705032 leafProbs3 = 20 -705032 countPokes4 = 7 -705033 countRewards4 = 4 -705033 leafProbs4 = 50 -705033 countPokes5 = 6 -705034 countRewards5 = 5 -705034 leafProbs5 = 80 -705048 countPokes6 = 10 -705048 countRewards6 = 3 -705048 leafProbs6 = 50 -~~~ -705048 UP 5 -705048 16 1024 -705133 16 0 -707856 DOWN 5 -707856 0 0 -707859 UP 5 -707859 16 0 -708389 DOWN 5 -708388 0 0 -708430 UP 5 -708430 16 0 -708506 DOWN 5 -708506 0 0 -708517 UP 5 -708517 16 0 -708729 DOWN 5 -708729 0 0 -708753 UP 5 -708753 16 0 -708838 DOWN 5 -708838 0 0 -708870 UP 5 -708870 16 0 -708943 DOWN 5 -708943 0 0 -712658 UP 6 -712658 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712691 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712856 DOWN 6 -712856 0 2048 -712886 UP 6 -712886 32 2048 -~~~ -712891 contingency = 0 -712892 trialThresh = 100 -712892 timeMaxOut = 20 -712892 timeElapsed = 15 -712892 totalPokes = 52 -712893 totalRewards = 24 -712893 countPokes1 = 13 -712894 countRewards1 = 9 -712894 leafProbs1 = 80 -712894 countPokes2 = 8 -712894 countRewards2 = 0 -712908 leafProbs2 = 20 -712909 countPokes3 = 7 -712909 countRewards3 = 2 -712910 leafProbs3 = 20 -712910 countPokes4 = 7 -712910 countRewards4 = 4 -712910 leafProbs4 = 50 -712910 countPokes5 = 6 -712911 countRewards5 = 5 -712911 leafProbs5 = 80 -712925 countPokes6 = 11 -712925 countRewards6 = 4 -712926 leafProbs6 = 50 -~~~ -712990 32 0 -716085 DOWN 6 -716085 0 0 -716094 UP 6 -716094 32 0 -716526 DOWN 6 -716526 0 0 -725598 UP 1 -725598 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725628 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725712 DOWN 1 -725712 0 64 -~~~ -725726 contingency = 0 -725726 trialThresh = 100 -725727 timeMaxOut = 20 -725727 timeElapsed = 16 -725728 totalPokes = 53 -725728 totalRewards = 25 -725728 countPokes1 = 14 -725728 countRewards1 = 10 -725729 leafProbs1 = 80 -725729 countPokes2 = 8 -725729 countRewards2 = 0 -725744 leafProbs2 = 20 -725744 countPokes3 = 7 -725744 countRewards3 = 2 -725744 leafProbs3 = 20 -725745 countPokes4 = 7 -725745 countRewards4 = 4 -725746 leafProbs4 = 50 -725746 countPokes5 = 6 -725746 countRewards5 = 5 -725746 leafProbs5 = 80 -725760 countPokes6 = 11 -725760 countRewards6 = 4 -725760 leafProbs6 = 50 -~~~ -725761 UP 1 -725761 1 64 -725780 DOWN 1 -725779 0 64 -725790 UP 1 -725790 1 64 -725928 1 0 -725996 DOWN 1 -725996 0 0 -726010 UP 1 -726010 1 0 -729338 DOWN 1 -729338 0 0 -734564 UP 1 -734564 1 0 -734740 DOWN 1 -734740 0 0 -758750 UP 2 -758750 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -758998 DOWN 2 -758998 0 0 -759011 UP 2 -759011 2 0 -~~~ -759026 contingency = 0 -759026 trialThresh = 100 -759027 timeMaxOut = 20 -759027 timeElapsed = 17 -759027 totalPokes = 54 -759027 totalRewards = 25 -759028 countPokes1 = 14 -759028 countRewards1 = 10 -759029 leafProbs1 = 80 -759029 countPokes2 = 9 -759029 countRewards2 = 0 -759043 leafProbs2 = 20 -759043 countPokes3 = 7 -759044 countRewards3 = 2 -759044 leafProbs3 = 20 -759045 countPokes4 = 7 -759045 countRewards4 = 4 -759045 leafProbs4 = 50 -759045 countPokes5 = 6 -759046 countRewards5 = 5 -759046 leafProbs5 = 80 -759060 countPokes6 = 11 -759060 countRewards6 = 4 -759061 leafProbs6 = 50 -~~~ -759247 DOWN 2 -759247 0 0 -764741 UP 2 -764741 2 0 -764877 DOWN 2 -764877 0 0 -768238 UP 1 -768238 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768267 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768567 1 0 -769995 DOWN 1 -769995 0 0 -770003 UP 1 -770003 1 0 -~~~ -770020 contingency = 0 -770021 trialThresh = 100 -770021 timeMaxOut = 20 -770021 timeElapsed = 17 -770021 totalPokes = 55 -770022 totalRewards = 26 -770022 countPokes1 = 15 -770023 countRewards1 = 11 -770023 leafProbs1 = 80 -770023 countPokes2 = 9 -770023 countRewards2 = 0 -770037 leafProbs2 = 20 -770038 countPokes3 = 7 -770038 countRewards3 = 2 -770039 leafProbs3 = 20 -770039 countPokes4 = 7 -770039 countRewards4 = 4 -770039 leafProbs4 = 50 -770040 countPokes5 = 6 -770040 countRewards5 = 5 -770041 leafProbs5 = 80 -770054 countPokes6 = 11 -770055 countRewards6 = 4 -770055 leafProbs6 = 50 -~~~ -770958 DOWN 1 -770958 0 0 -770969 UP 1 -770969 1 0 -771063 DOWN 1 -771063 0 0 -792538 UP 4 -792538 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -792976 DOWN 4 -792976 0 0 -~~~ -793004 contingency = 0 -793004 trialThresh = 100 -793004 timeMaxOut = 20 -793004 timeElapsed = 17 -793005 totalPokes = 56 -793005 totalRewards = 26 -793006 countPokes1 = 15 -793006 countRewards1 = 11 -793006 leafProbs1 = 80 -793006 countPokes2 = 9 -793006 countRewards2 = 0 -793021 leafProbs2 = 20 -793021 countPokes3 = 7 -793022 countRewards3 = 2 -793022 leafProbs3 = 20 -793022 countPokes4 = 8 -793022 countRewards4 = 4 -793023 leafProbs4 = 50 -793023 countPokes5 = 6 -793023 countRewards5 = 5 -793024 leafProbs5 = 80 -793037 countPokes6 = 11 -793038 countRewards6 = 4 -793038 leafProbs6 = 50 -~~~ -796258 UP 3 -796258 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796294 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796527 DOWN 3 -796527 0 256 -796548 UP 3 -796548 4 256 -~~~ -796560 contingency = 0 -796561 trialThresh = 100 -796561 timeMaxOut = 20 -796562 timeElapsed = 18 -796562 totalPokes = 57 -796562 totalRewards = 27 -796562 countPokes1 = 15 -796563 countRewards1 = 11 -796563 leafProbs1 = 80 -796564 countPokes2 = 9 -796564 countRewards2 = 0 -796578 leafProbs2 = 20 -796578 countPokes3 = 8 -796578 countRewards3 = 3 -796579 leafProbs3 = 20 -796579 countPokes4 = 8 -796580 countRewards4 = 4 -796580 leafProbs4 = 50 -796580 countPokes5 = 6 -796580 countRewards5 = 5 -796581 leafProbs5 = 80 -796594 countPokes6 = 11 -796595 countRewards6 = 4 -796595 leafProbs6 = 50 -~~~ -796596 4 0 -796624 DOWN 3 -796624 0 0 -796629 UP 3 -796629 4 0 -801350 DOWN 3 -801350 0 0 -806015 UP 4 -806015 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806042 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806342 8 0 -809642 DOWN 4 -809642 0 0 -~~~ -809664 contingency = 0 -809664 trialThresh = 100 -809664 timeMaxOut = 20 -809665 timeElapsed = 18 -809665 totalPokes = 58 -809666 totalRewards = 28 -809666 countPokes1 = 15 -809666 countRewards1 = 11 -809666 leafProbs1 = 80 -809667 countPokes2 = 9 -809667 countRewards2 = 0 -809681 leafProbs2 = 20 -809682 countPokes3 = 8 -809682 countRewards3 = 3 -809682 leafProbs3 = 20 -809682 countPokes4 = 9 -809683 countRewards4 = 5 -809683 leafProbs4 = 50 -809683 countPokes5 = 6 -809684 countRewards5 = 5 -809684 leafProbs5 = 80 -809698 countPokes6 = 11 -809698 countRewards6 = 4 -809698 leafProbs6 = 50 -~~~ -813030 UP 3 -813030 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -813879 DOWN 3 -813879 0 0 -~~~ -813907 contingency = 0 -813908 trialThresh = 100 -813908 timeMaxOut = 20 -813908 timeElapsed = 18 -813908 totalPokes = 59 -813909 totalRewards = 28 -813909 countPokes1 = 15 -813910 countRewards1 = 11 -813910 leafProbs1 = 80 -813910 countPokes2 = 9 -813910 countRewards2 = 0 -813924 leafProbs2 = 20 -813925 countPokes3 = 9 -813925 countRewards3 = 3 -813926 leafProbs3 = 20 -813926 countPokes4 = 9 -813926 countRewards4 = 5 -813926 leafProbs4 = 50 -813927 countPokes5 = 6 -813927 countRewards5 = 5 -813928 leafProbs5 = 80 -813941 countPokes6 = 11 -813942 countRewards6 = 4 -813942 leafProbs6 = 50 -~~~ -813990 UP 3 -813990 4 0 -814046 DOWN 3 -814046 0 0 -814070 UP 3 -814070 4 0 -814092 DOWN 3 -814092 0 0 -818984 UP 4 -818984 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819019 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819319 8 0 -822032 DOWN 4 -822032 0 0 -822048 UP 4 -822048 8 0 -~~~ -822052 contingency = 0 -822052 trialThresh = 100 -822052 timeMaxOut = 20 -822052 timeElapsed = 18 -822053 totalPokes = 60 -822053 totalRewards = 29 -822054 countPokes1 = 15 -822054 countRewards1 = 11 -822054 leafProbs1 = 80 -822054 countPokes2 = 9 -822055 countRewards2 = 0 -822069 leafProbs2 = 20 -822069 countPokes3 = 9 -822070 countRewards3 = 3 -822070 leafProbs3 = 20 -822070 countPokes4 = 10 -822070 countRewards4 = 6 -822071 leafProbs4 = 50 -822071 countPokes5 = 6 -822072 countRewards5 = 5 -822072 leafProbs5 = 80 -822086 countPokes6 = 11 -822086 countRewards6 = 4 -822086 leafProbs6 = 50 -~~~ -822142 DOWN 4 -822142 0 0 -825685 UP 3 -825685 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825714 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825899 DOWN 3 -825899 0 256 -825911 UP 3 -825911 4 256 -~~~ -825924 contingency = 0 -825924 trialThresh = 100 -825924 timeMaxOut = 20 -825924 timeElapsed = 18 -825924 totalPokes = 61 -825925 totalRewards = 30 -825925 countPokes1 = 15 -825926 countRewards1 = 11 -825926 leafProbs1 = 80 -825926 countPokes2 = 9 -825926 countRewards2 = 0 -825941 leafProbs2 = 20 -825941 countPokes3 = 10 -825941 countRewards3 = 4 -825942 leafProbs3 = 20 -825942 countPokes4 = 10 -825942 countRewards4 = 6 -825942 leafProbs4 = 50 -825943 countPokes5 = 6 -825943 countRewards5 = 5 -825944 leafProbs5 = 80 -825958 countPokes6 = 11 -825958 countRewards6 = 4 -825958 leafProbs6 = 50 -~~~ -826000 DOWN 3 -826000 0 256 -826002 UP 3 -826002 4 256 -826014 4 0 -829816 DOWN 3 -829816 0 0 -838111 UP 4 -838111 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838136 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838436 8 0 -841411 DOWN 4 -841411 0 0 -~~~ -841435 contingency = 0 -841436 trialThresh = 100 -841436 timeMaxOut = 20 -841437 timeElapsed = 19 -841437 totalPokes = 62 -841437 totalRewards = 31 -841437 countPokes1 = 15 -841438 countRewards1 = 11 -841438 leafProbs1 = 80 -841439 countPokes2 = 9 -841439 countRewards2 = 0 -841453 leafProbs2 = 20 -841453 countPokes3 = 10 -841453 countRewards3 = 4 -841454 leafProbs3 = 20 -841454 countPokes4 = 11 -841455 countRewards4 = 7 -841455 leafProbs4 = 50 -841455 countPokes5 = 6 -841455 countRewards5 = 5 -841455 leafProbs5 = 80 -841469 countPokes6 = 11 -841470 countRewards6 = 4 -841470 leafProbs6 = 50 -~~~ -843614 UP 3 -843614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843639 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843789 DOWN 3 -843789 0 256 -843795 UP 3 -843795 4 256 -~~~ -843808 contingency = 0 -843809 trialThresh = 100 -843809 timeMaxOut = 20 -843809 timeElapsed = 19 -843809 totalPokes = 63 -843810 totalRewards = 32 -843810 countPokes1 = 15 -843810 countRewards1 = 11 -843811 leafProbs1 = 80 -843811 countPokes2 = 9 -843811 countRewards2 = 0 -843825 leafProbs2 = 20 -843826 countPokes3 = 11 -843826 countRewards3 = 5 -843827 leafProbs3 = 20 -843827 countPokes4 = 11 -843827 countRewards4 = 7 -843827 leafProbs4 = 50 -843827 countPokes5 = 6 -843828 countRewards5 = 5 -843828 leafProbs5 = 80 -843842 countPokes6 = 11 -843843 countRewards6 = 4 -843843 leafProbs6 = 50 -~~~ -843939 4 0 -845473 DOWN 3 -845473 0 0 -845480 UP 3 -845480 4 0 -846559 DOWN 3 -846559 0 0 -846574 UP 3 -846574 4 0 -847017 DOWN 3 -847017 0 0 -850281 UP 4 -850281 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850308 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850608 8 0 -853788 DOWN 4 -853788 0 0 -~~~ -853810 contingency = 0 -853810 trialThresh = 100 -853811 timeMaxOut = 20 -853811 timeElapsed = 19 -853811 totalPokes = 64 -853811 totalRewards = 33 -853811 countPokes1 = 15 -853812 countRewards1 = 11 -853812 leafProbs1 = 80 -853813 countPokes2 = 9 -853813 countRewards2 = 0 -853827 leafProbs2 = 20 -853827 countPokes3 = 11 -853828 countRewards3 = 5 -853828 leafProbs3 = 20 -853829 countPokes4 = 12 -853829 countRewards4 = 8 -853829 leafProbs4 = 50 -853829 countPokes5 = 6 -853829 countRewards5 = 5 -853830 leafProbs5 = 80 -853844 countPokes6 = 11 -853844 countRewards6 = 4 -853845 leafProbs6 = 50 -~~~ -859749 UP 3 -859749 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -859929 DOWN 3 -859929 0 0 -~~~ -859955 contingency = 0 -859955 trialThresh = 100 -859955 timeMaxOut = 20 -859956 timeElapsed = 19 -859956 totalPokes = 65 -859957 totalRewards = 33 -859957 countPokes1 = 15 -859957 countRewards1 = 11 -859957 leafProbs1 = 80 -859958 countPokes2 = 9 -859958 countRewards2 = 0 -859972 leafProbs2 = 20 -859973 countPokes3 = 12 -859973 countRewards3 = 5 -859973 leafProbs3 = 20 -859973 countPokes4 = 12 -859974 countRewards4 = 8 -859974 leafProbs4 = 50 -859975 countPokes5 = 6 -859975 countRewards5 = 5 -859975 leafProbs5 = 80 -859989 countPokes6 = 11 -859989 countRewards6 = 4 -859989 leafProbs6 = 50 -~~~ -859990 UP 3 -859990 4 0 -860031 DOWN 3 -860031 0 0 -860033 UP 3 -860033 4 0 -860497 DOWN 3 -860497 0 0 -863294 UP 4 -863294 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -863951 DOWN 4 -863951 0 0 -~~~ -863973 contingency = 0 -863973 trialThresh = 100 -863973 timeMaxOut = 20 -863974 timeElapsed = 19 -863974 totalPokes = 66 -863975 totalRewards = 33 -863975 countPokes1 = 15 -863975 countRewards1 = 11 -863975 leafProbs1 = 80 -863976 countPokes2 = 9 -863976 countRewards2 = 0 -863990 leafProbs2 = 20 -863991 countPokes3 = 12 -863991 countRewards3 = 5 -863991 leafProbs3 = 20 -863991 countPokes4 = 13 -863992 countRewards4 = 8 -863992 leafProbs4 = 50 -863993 countPokes5 = 6 -863993 countRewards5 = 5 -863993 leafProbs5 = 80 -864007 countPokes6 = 11 -864007 countRewards6 = 4 -864007 leafProbs6 = 50 -~~~ -868524 UP 3 -868524 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -868698 DOWN 3 -868698 0 0 -~~~ -868713 contingency = 0 -868713 trialThresh = 100 -868713 timeMaxOut = 20 -868713 timeElapsed = 19 -868713 totalPokes = 67 -868714 totalRewards = 33 -868715 countPokes1 = 15 -868715 countRewards1 = 11 -868715 leafProbs1 = 80 -868715 countPokes2 = 9 -868715 countRewards2 = 0 -868730 leafProbs2 = 20 -868730 countPokes3 = 13 -868731 countRewards3 = 5 -868731 leafProbs3 = 20 -868731 countPokes4 = 13 -868731 countRewards4 = 8 -868732 leafProbs4 = 50 -868732 countPokes5 = 6 -868733 countRewards5 = 5 -868733 leafProbs5 = 80 -868747 countPokes6 = 11 -868747 countRewards6 = 4 -868747 leafProbs6 = 50 -~~~ -868747 UP 3 -868747 4 0 -868824 DOWN 3 -868824 0 0 -872741 UP 4 -872741 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -873169 DOWN 4 -873169 0 0 -~~~ -873187 contingency = 0 -873187 trialThresh = 100 -873187 timeMaxOut = 20 -873187 timeElapsed = 19 -873188 totalPokes = 68 -873188 totalRewards = 33 -873189 countPokes1 = 15 -873189 countRewards1 = 11 -873189 leafProbs1 = 80 -873189 countPokes2 = 9 -873190 countRewards2 = 0 -873204 leafProbs2 = 20 -873204 countPokes3 = 13 -873205 countRewards3 = 5 -873205 leafProbs3 = 20 -873205 countPokes4 = 14 -873205 countRewards4 = 8 -873206 leafProbs4 = 50 -873206 countPokes5 = 6 -873207 countRewards5 = 5 -873207 leafProbs5 = 80 -873221 countPokes6 = 11 -873221 countRewards6 = 4 -873221 leafProbs6 = 50 -~~~ -873252 UP 4 -873252 8 0 -873290 DOWN 4 -873290 0 0 -876725 UP 3 -876725 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876754 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876920 DOWN 3 -876920 0 256 -876935 UP 3 -876935 4 256 -~~~ -876950 contingency = 0 -876950 trialThresh = 100 -876951 timeMaxOut = 20 -876951 timeElapsed = 20 -876951 totalPokes = 69 -876951 totalRewards = 34 -876952 countPokes1 = 15 -876952 countRewards1 = 11 -876953 leafProbs1 = 80 -876953 countPokes2 = 9 -876953 countRewards2 = 0 -876967 leafProbs2 = 20 -876968 countPokes3 = 14 -876968 countRewards3 = 6 -876969 leafProbs3 = 20 -876969 countPokes4 = 14 -876969 countRewards4 = 8 -876969 leafProbs4 = 50 -876970 countPokes5 = 6 -876970 countRewards5 = 5 -876971 leafProbs5 = 80 -876984 countPokes6 = 11 -876985 countRewards6 = 4 -876985 leafProbs6 = 50 -~~~ -876985 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -877054 4 0 -878633 DOWN 3 -878633 0 0 -878639 UP 3 -878639 4 0 -879721 DOWN 3 -879721 0 0 -886019 UP 1 -886019 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886047 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886216 DOWN 1 -886216 0 64 -886239 UP 1 -886239 1 64 -~~~ -886244 contingency = 1 -886245 trialThresh = 100 -886245 timeMaxOut = 20 -886245 timeElapsed = 0 -886245 totalPokes = 1 -886245 totalRewards = 1 -886246 countPokes1 = 1 -886246 countRewards1 = 1 -886247 leafProbs1 = 80 -886247 countPokes2 = 0 -886247 countRewards2 = 0 -886261 leafProbs2 = 20 -886261 countPokes3 = 0 -886262 countRewards3 = 0 -886262 leafProbs3 = 20 -886263 countPokes4 = 0 -886263 countRewards4 = 0 -886263 leafProbs4 = 50 -886263 countPokes5 = 0 -886263 countRewards5 = 0 -886264 leafProbs5 = 80 -886277 countPokes6 = 0 -886278 countRewards6 = 0 -886278 leafProbs6 = 50 -~~~ -886347 1 0 -887839 DOWN 1 -887839 0 0 -887847 UP 1 -887847 1 0 -888811 DOWN 1 -888811 0 0 -924349 UP 1 -924349 1 0 -924708 DOWN 1 -924708 0 0 -936150 UP 6 -936150 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -936282 DOWN 6 -936282 0 0 -~~~ -936306 UP 6 -936306 32 0 -936307 contingency = 1 -936308 trialThresh = 100 -936308 timeMaxOut = 20 -936308 timeElapsed = 1 -936308 totalPokes = 2 -936309 totalRewards = 1 -936309 countPokes1 = 1 -936310 countRewards1 = 1 -936310 leafProbs1 = 80 -936310 countPokes2 = 0 -936324 countRewards2 = 0 -936324 leafProbs2 = 20 -936325 countPokes3 = 0 -936325 countRewards3 = 0 -936326 leafProbs3 = 20 -936326 countPokes4 = 0 -936326 countRewards4 = 0 -936326 leafProbs4 = 50 -936326 countPokes5 = 0 -936327 countRewards5 = 0 -936340 leafProbs5 = 80 -936341 countPokes6 = 1 -936341 countRewards6 = 0 -936342 leafProbs6 = 50 -~~~ -936592 DOWN 6 -936592 0 0 -939891 UP 6 -939891 32 0 -940306 DOWN 6 -940306 0 0 -944398 UP 5 -944398 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944428 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944665 DOWN 5 -944665 0 1024 -944680 UP 5 -944680 16 1024 -~~~ -944694 contingency = 1 -944694 trialThresh = 100 -944695 timeMaxOut = 20 -944695 timeElapsed = 2 -944696 totalPokes = 3 -944696 totalRewards = 2 -944696 countPokes1 = 1 -944696 countRewards1 = 1 -944697 leafProbs1 = 80 -944697 countPokes2 = 0 -944698 countRewards2 = 0 -944711 leafProbs2 = 20 -944712 countPokes3 = 0 -944712 countRewards3 = 0 -944712 leafProbs3 = 20 -944712 countPokes4 = 0 -944713 countRewards4 = 0 -944713 leafProbs4 = 50 -944714 countPokes5 = 1 -944714 countRewards5 = 1 -944714 leafProbs5 = 80 -944728 countPokes6 = 1 -944728 countRewards6 = 0 -944728 leafProbs6 = 50 -~~~ -944729 16 0 -944845 DOWN 5 -944845 0 0 -944862 UP 5 -944862 16 0 -946617 DOWN 5 -946617 0 0 -946632 UP 5 -946632 16 0 -946716 DOWN 5 -946716 0 0 -946732 UP 5 -946732 16 0 -947449 DOWN 5 -947449 0 0 -948283 UP 5 -948283 16 0 -948312 DOWN 5 -948312 0 0 -952025 UP 6 -952025 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952051 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952328 DOWN 6 -952328 0 2048 -952339 UP 6 -952339 32 2048 -952351 32 0 -~~~ -952355 contingency = 1 -952355 trialThresh = 100 -952355 timeMaxOut = 20 -952356 timeElapsed = 2 -952356 totalPokes = 4 -952357 totalRewards = 3 -952357 countPokes1 = 1 -952357 countRewards1 = 1 -952357 leafProbs1 = 80 -952357 countPokes2 = 0 -952358 countRewards2 = 0 -952372 leafProbs2 = 20 -952372 countPokes3 = 0 -952373 countRewards3 = 0 -952373 leafProbs3 = 20 -952373 countPokes4 = 0 -952373 countRewards4 = 0 -952374 leafProbs4 = 50 -952374 countPokes5 = 1 -952375 countRewards5 = 1 -952375 leafProbs5 = 80 -952389 countPokes6 = 2 -952389 countRewards6 = 1 -952389 leafProbs6 = 50 -~~~ -955287 DOWN 6 -955287 0 0 -955304 UP 6 -955304 32 0 -955841 DOWN 6 -955841 0 0 -955870 UP 6 -955870 32 0 -955948 DOWN 6 -955948 0 0 -968742 UP 1 -968742 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -968986 DOWN 1 -968986 0 0 -969009 UP 1 -969009 1 0 -~~~ -969010 contingency = 1 -969011 trialThresh = 100 -969011 timeMaxOut = 20 -969011 timeElapsed = 2 -969011 totalPokes = 5 -969012 totalRewards = 3 -969012 countPokes1 = 2 -969013 countRewards1 = 1 -969013 leafProbs1 = 80 -969013 countPokes2 = 0 -969013 countRewards2 = 0 -969027 leafProbs2 = 20 -969027 countPokes3 = 0 -969028 countRewards3 = 0 -969028 leafProbs3 = 20 -969029 countPokes4 = 0 -969029 countRewards4 = 0 -969029 leafProbs4 = 50 -969029 countPokes5 = 1 -969030 countRewards5 = 1 -969030 leafProbs5 = 80 -969044 countPokes6 = 2 -969044 countRewards6 = 1 -969045 leafProbs6 = 50 -~~~ -969325 DOWN 1 -969325 0 0 -969363 UP 1 -969363 1 0 -969412 DOWN 1 -969412 0 0 -980911 UP 1 -980911 1 0 -981057 DOWN 1 -981057 0 0 -995935 UP 1 -995935 1 0 -995980 DOWN 1 -995980 0 0 -1000551 UP 1 -1000551 1 0 -1000675 DOWN 1 -1000675 0 0 -1000813 UP 1 -1000813 1 0 -1000837 DOWN 1 -1000837 0 0 -1014932 UP 1 -1014932 1 0 -1015485 DOWN 1 -1015485 0 0 -1037157 UP 1 -1037157 1 0 -1039155 DOWN 1 -1039155 0 0 -1045580 UP 2 -1045580 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045606 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045801 DOWN 2 -1045801 0 128 -1045812 UP 2 -1045812 2 128 -~~~ -1045827 contingency = 1 -1045827 trialThresh = 100 -1045828 timeMaxOut = 20 -1045828 timeElapsed = 4 -1045828 totalPokes = 6 -1045828 totalRewards = 4 -1045829 countPokes1 = 2 -1045829 countRewards1 = 1 -1045830 leafProbs1 = 80 -1045830 countPokes2 = 1 -1045830 countRewards2 = 1 -1045844 leafProbs2 = 20 -1045844 countPokes3 = 0 -1045845 countRewards3 = 0 -1045845 leafProbs3 = 20 -1045846 countPokes4 = 0 -1045846 countRewards4 = 0 -1045846 leafProbs4 = 50 -1045846 countPokes5 = 1 -1045846 countRewards5 = 1 -1045861 leafProbs5 = 80 -1045861 countPokes6 = 2 -1045862 countRewards6 = 1 -1045862 leafProbs6 = 50 -~~~ -1045906 2 0 -1046489 DOWN 2 -1046489 0 0 -1046492 UP 2 -1046492 2 0 -1046736 DOWN 2 -1046736 0 0 -1046740 UP 2 -1046740 2 0 -1048862 DOWN 2 -1048862 0 0 -1048885 UP 2 -1048885 2 0 -1049314 DOWN 2 -1049314 0 0 -1049320 UP 2 -1049320 2 0 -1049417 DOWN 2 -1049417 0 0 -1055638 UP 1 -1055638 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1056137 DOWN 1 -1056137 0 0 -~~~ -1056161 contingency = 1 -1056161 trialThresh = 100 -1056161 timeMaxOut = 20 -1056162 timeElapsed = 4 -1056162 totalPokes = 7 -1056163 totalRewards = 4 -1056163 countPokes1 = 3 -1056163 countRewards1 = 1 -1056163 leafProbs1 = 80 -1056164 countPokes2 = 1 -1056164 countRewards2 = 1 -1056178 leafProbs2 = 20 -1056179 countPokes3 = 0 -1056179 countRewards3 = 0 -1056179 leafProbs3 = 20 -1056179 countPokes4 = 0 -1056180 countRewards4 = 0 -1056180 leafProbs4 = 50 -1056181 countPokes5 = 1 -1056181 countRewards5 = 1 -1056195 leafProbs5 = 80 -1056195 countPokes6 = 2 -1056195 countRewards6 = 1 -1056196 leafProbs6 = 50 -~~~ -1075389 UP 1 -1075389 1 0 -1077673 DOWN 1 -1077673 0 0 -1080094 UP 1 -1080094 1 0 -1080643 DOWN 1 -1080643 0 0 -1081045 UP 1 -1081045 1 0 -1081200 DOWN 1 -1081200 0 0 -1083005 UP 1 -1083005 1 0 -1083449 DOWN 1 -1083449 0 0 -1102276 UP 1 -1102276 1 0 -1102327 DOWN 1 -1102327 0 0 -1102345 UP 1 -1102345 1 0 -1102777 DOWN 1 -1102777 0 0 -1102819 UP 1 -1102819 1 0 -1102934 DOWN 1 -1102934 0 0 -1103297 UP 1 -1103297 1 0 -1103387 DOWN 1 -1103387 0 0 -1103417 UP 1 -1103417 1 0 -1103475 DOWN 1 -1103475 0 0 -1103807 UP 1 -1103807 1 0 -1103947 DOWN 1 -1103947 0 0 -1103991 UP 1 -1103991 1 0 -1104026 DOWN 1 -1104026 0 0 -1118606 UP 1 -1118606 1 0 -1118640 DOWN 1 -1118640 0 0 -1131899 UP 6 -1131899 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1132172 DOWN 6 -1132172 0 0 -1132200 UP 6 -1132200 32 0 -~~~ -1132203 contingency = 1 -1132203 trialThresh = 100 -1132204 timeMaxOut = 20 -1132204 timeElapsed = 6 -1132204 totalPokes = 8 -1132204 totalRewards = 4 -1132205 countPokes1 = 3 -1132205 countRewards1 = 1 -1132205 leafProbs1 = 80 -1132206 countPokes2 = 1 -1132206 countRewards2 = 1 -1132220 leafProbs2 = 20 -1132220 countPokes3 = 0 -1132220 countRewards3 = 0 -1132221 leafProbs3 = 20 -1132221 countPokes4 = 0 -1132222 countRewards4 = 0 -1132222 leafProbs4 = 50 -1132222 countPokes5 = 1 -1132222 countRewards5 = 1 -1132237 leafProbs5 = 80 -1132237 countPokes6 = 3 -1132238 countRewards6 = 1 -1132238 leafProbs6 = 50 -~~~ -1132394 DOWN 6 -1132394 0 0 -1132422 UP 6 -1132422 32 0 -1132437 DOWN 6 -1132437 0 0 -1157002 UP 6 -1157002 32 0 -1157518 DOWN 6 -1157518 0 0 -1160471 UP 1 -1160471 1 0 -1160482 DOWN 1 -1160482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1160504 UP 1 -1160504 1 0 -~~~ -1160510 contingency = 1 -1160510 trialThresh = 100 -1160510 timeMaxOut = 20 -1160511 timeElapsed = 7 -1160511 totalPokes = 9 -1160512 totalRewards = 4 -1160512 countPokes1 = 4 -1160512 countRewards1 = 1 -1160512 leafProbs1 = 80 -1160513 countPokes2 = 1 -1160513 countRewards2 = 1 -1160527 leafProbs2 = 20 -1160528 countPokes3 = 0 -1160528 countRewards3 = 0 -1160528 leafProbs3 = 20 -1160528 countPokes4 = 0 -1160528 countRewards4 = 0 -1160529 leafProbs4 = 50 -1160529 countPokes5 = 1 -1160530 countRewards5 = 1 -1160544 leafProbs5 = 80 -1160544 countPokes6 = 3 -1160544 countRewards6 = 1 -1160545 leafProbs6 = 50 -~~~ -1160809 DOWN 1 -1160809 0 0 -1160823 UP 1 -1160823 1 0 -1160943 DOWN 1 -1160943 0 0 - - description: state script log run 2 - task_epochs: 4, -] -2021-01-27 20:05:48,357 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 20:05:49,311 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 20:05:49,313 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 20:05:49,313 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 20:05:49,314 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 20:05:49,314 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 20:05:49,321 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 20:05:49,321 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 20:05:49,325 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 20:05:49,325 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 20:05:49,326 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 20:05:49,327 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 20:05:49,895 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 20:05:49,896 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 20:05:49,896 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 20:05:49,896 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 20:05:49,897 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 20:05:49,927 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 20:05:49,929 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 20:05:49,931 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 20:05:49,931 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 20:05:52,247 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 20:05:52,249 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 20:09:23,111 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 20:09:23,112 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 20:09:23,113 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 20:09:23,113 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 20:09:23,113 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 20:09:23,422 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 20:09:23,423 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 20:09:23,423 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 20:09:23,423 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 20:09:23,426 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 20:10:13,023 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-27 20:12:33,415 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat -2021-01-27 20:13:35,995 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat -2021-01-27 20:14:53,507 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 20:14:53,513 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 20:14:53,514 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 20:15:40,406 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-27 20:15:40,424 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 20:17:31,242 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-27 20:22:49,759 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat -2021-01-27 20:25:15,671 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat -2021-01-27 20:28:18,926 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-27 20:41:09,739 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 20:41:09,743 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_03_s2.time/20190718_beans_03_s2.continuoustime.dat -2021-01-27 20:41:09,745 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_04_r2.time/20190718_beans_04_r2.continuoustime.dat -2021-01-27 20:41:09,871 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-27 21:00:48,570 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:00:48,755 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:00:48,756 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:00:48,756 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:00:48,757 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:01:16,009 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:01:16,044 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:01:16,044 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:01:16,045 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:01:16,045 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:01:16,509 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_03_s2.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_02_r1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/raw/beans/raw/20190718/20190718_beans_04_r2.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-27 21:01:16,807 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:01:17,116 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:01:17,117 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:01:17,118 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:01:17,120 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:01:17,121 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:01:17,121 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140317759282000 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140317759281488 -Fields: - content: # -#% author: AC -#% date: updated for Beans 7/15/19 from fxs and original 9/26/18 -#% same as branch_always_reward_no_revisit.sc -# -#%initialize constant vars -#int deliverPeriod = 300 %deliver reward for 300ms, which is 100microL of milk using 35mL pumps at 20mL/min -#int delayRewardPeriod = 0 %no delay of reward for now, but have option for later -# -#%initialize updating vars -#int rewardPump = 0 %can take on values 7-12 in fxn 1 -#int rewardWell = 0 %can take on values 1-6 in fxn 4 -#int timeElapsed = 0 -#int totalPokes = 0 -#int totalRewards = 0 -#int contingency = -1 -#int count = 0 -#int loopInterval = 250 -#int trialThresh = 0 -#int timeMaxOut = 0 -# -#int leafProbs1 = 0 %only need to be sent once from py to sc b/c constant throughout session for the time being -#int leafProbs2 = 0 -#int leafProbs3 = 0 -#int leafProbs4 = 0 -#int leafProbs5 = 0 -#int leafProbs6 = 0 -# -#int countPokes1 = 0 -#int countPokes2 = 0 -#int countPokes3 = 0 -#int countPokes4 = 0 -#int countPokes5 = 0 -#int countPokes6 = 0 -# -#int countRewards1 = 0 -#int countRewards2 = 0 -#int countRewards3 = 0 -#int countRewards4 = 0 -#int countRewards5 = 0 -#int countRewards6 = 0 -# -#int sessionProbs1 = 0 -#int sessionProbs2 = 0 -#int sessionProbs3 = 0 -#int sessionProbs4 = 0 -#int sessionProbs5 = 0 -#int sessionProbs6 = 0 -# -#%give reward for certain duration after certain delay -#function 1 -# do in delayRewardPeriod -# portout[rewardPump] = 1 %start rewarding with this pump dio -# do in deliverPeriod -# portout[rewardPump] = 0 %stop rewarding with this pump dio -# end -# end -#end; -# -#%keep track of animal behavior and display for experimenter -#function 2 -# %one day include disp(animal) and disp(epoch) if include gui, and also probably shouldn't display thiiiiis much on each trial, but we'll see... -# disp(contingency) -# disp(trialThresh) -# disp(timeMaxOut) -# disp(timeElapsed) %length of session thus far -# disp(totalPokes) %how many nonrepeated well visits thus far -# disp(totalRewards) %how many rewards collected thus far -# -# disp(countPokes1) %how many pokes at each well, 6x1 array turned str -# disp(countRewards1) %how many rewards collected per well -# disp(leafProbs1) %experimenter-determined probabilities of reward per well -# %disp(sessionProbs1) %what has rat been exposed to in terms of probabilities so far per well? #rew/#poke -# -# disp(countPokes2) -# disp(countRewards2) -# disp(leafProbs2) -# %disp(sessionProbs2) -# -# disp(countPokes3) -# disp(countRewards3) -# disp(leafProbs3) -# %disp(sessionProbs3) -# -# disp(countPokes4) -# disp(countRewards4) -# disp(leafProbs4) -# %disp(sessionProbs4) -# -# disp(countPokes5) -# disp(countRewards5) -# disp(leafProbs5) -# %disp(sessionProbs5) -# -# disp(countPokes6) -# disp(countRewards6) -# disp(leafProbs6) -# %disp(sessionProbs6) -#end; -# -# -#%tell the user that the contingency is complete -#function 3 -# disp('This contingency is over!') -#end; -# -#%end session -#function 4 -# while count < 50 do every loopInterval -# portout[1] = flip -# portout[2] = flip -# portout[3] = flip -# portout[4] = flip -# portout[5] = flip -# portout[6] = flip -# count = count+1 -# then do -# portout[1] = 0 -# portout[2] = 0 -# portout[3] = 0 -# portout[4] = 0 -# portout[5] = 0 -# portout[6] = 0 -# end -# disp('This session is complete!') -#end; -# -# -#%callbacks - without lights, I just have nosepokes ins and outs and this only applies at 1-6 (not pumps) -#callback portin[1] up -# disp('UP 1') -#end; -# -#callback portin[1] down -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# disp('UP 2') -#end; -# -#callback portin[2] down -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# disp('UP 3') -#end; -# -#callback portin[3] down -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# disp('UP 4') -#end; -# -#callback portin[4] down -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# disp('UP 5') -#end; -# -#callback portin[5] down -# disp('DOWN 5') -#end; -#callback portin[6] up -# disp('UP 6') -#end; -# -#callback portin[6] down -# disp('DOWN 6') -#end; -# -# -# -##author: AC -##date: 7/15/19 adapted from fxs expt 11/08/19 adapted from original 9/26/18 -##contingency changes occur automatically after either a # of trials or # of minutes -#''' -#Python observer script for rats to explore the branching track with p(R) specified values at each port. Contingency changes occur -#automatically after a certain number of trials are complete or after a certain number of minutes has passed. Contingency changes increment per the probArray (a multidimensional array), with each row as the probs for a contingency. -# -#Basic structure: -#if nosepoke at a well -#if the nosepoke!= last nosepoke location -# if random.random < p[index for nosepoke location] #generates float [0,1) and compares to p -# trigger(fxn1) #deliver reward, and stop after reward duration -#display updated trial info -#''' -# -##import -#import numpy as np -#import re -#import time -#import math -#from tkinter import * -# -##experimenter controlled variables (could control with a gui. one day could add animal = user input, epoch = user input) -#leafProbs = np.array([[.8,.2,.2,.5,.8,.5], [.8,.2,.2,.5,.8,.5]]) #Each row in array is a contingency. -#trialThresh = 100 #per contingency -#timeMaxOut = 20 #per contingency, in mins -# -##set up wells and pumps dios -#leafWells = [1,2,3,4,5,6] #numbers correspond to breakout board ports for beam break info -#leafPumps = [7,8,9,10,11,12] #numbers are for breakout board ports for reward delivery -# -##variables to keep track of and update during behavior (global) -#countPokes = np.array([0,0,0,0,0,0]) #count pokes per 6 wells. Only count a poke if at a new well. Repokes don't count. -#countRewards = np.array([0,0,0,0,0,0]) #how many rewards at each of the 6 wells. -#timeElapsed = 0 #session length thus far in mins -#currLeaf = -1 #takes on index of current nosepoke location in leafWells/leafPumps (so is 0-5). When currleaf updates, the old value becomes last leaf. currLeaf updates when animal pokes at new well such that the well != lastLeaf. -#lastLeaf = -1 #takes on index of last visited leafWells/leafPumps (so is 0-5) -#rewardPump = 0 #takes on vals 7-12 for pump dios and is updated for sc to know where to deliver and stop delivering reward -#contingency = -1 #first contingency is 0, then will take on values of 0 to len(leafProbs array)-1 -#runningTrials = False #must say yes to saving data to turn this to true -# -##THIS FXN MUST BE NAMED 'callback'!! -#def callback(line): -# #when an event occurs out on the track, addScQtEvent will call this fxn -# if line.find("UP") >= 0: #some input occurs (i.e., nosepoke breaks beam) -# pokeIn(re.findall(r'\d+',line)) -# #gets the dio location, which must be in 1-6, corresponding to the wells. the r tells py it's a regular string, -# #the d looks for a digit in the line. the line is defined by whenever py finds something saying "UP" -# if line.find("DOWN") >= 0: #input stopped (i.e., unpoke so beam reconnects) -# pokeOut(re.findall(r'\d+',line)) #gets the dio location, which must be in 1-6, corresponding to the wells -# -##when animal nosepokes and breaks beam -#def pokeIn(dio): #dio can take on values 1-6, as these are where there would be ups/downs from nosepokes -# global currLeaf -# global timeStart -# global leafWells -# global lastLeaf -# global countPokes -# global leafProbs -# global leafPumps -# global contingency -# global countRewards -# global runningTrials -# global timeElapsed -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# if currLeaf == -1: #if it's the first trial in the contingency -# #contingency = math.floor(np.sum(countPokes)/trialThresh) #total pokes does not yet count the current poke -# #if timeElapsed >= timeMaxOut: -# contingency += 1 #this is probably not foolproof yet. added it because otherwise upon timeout contingency -# #won't change if trial thresh hasn't been hit. I need this to override the normal trial based contingency -# #change. sort of defeats the purpose of the floor approach right now. -# print("SCQTMESSAGE: contingency = " + str(int(contingency)) + ";\n") -# print("SCQTMESSAGE: trialThresh = " + str(int(trialThresh)) + ";\n") -# print("SCQTMESSAGE: timeMaxOut = " + str(int(timeMaxOut)) + ";\n") -# timeStart = time.time() #start time for the contingency -# for i in range(len(leafProbs[contingency])): #initialize the probabilities, only need to be sent once per contingency -# print("SCQTMESSAGE: leafProbs" + str(i+1) + " = " + str(int(100*leafProbs[contingency][i])) + ";\n") -# countPokes = np.array([0,0,0,0,0,0]) -# countRewards = np.array([0,0,0,0,0,0]) -# for i in range(len(countPokes)): #initialize all as zero -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# for i in range(len(countRewards)): #initialize all as zero -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") #initialize totalPokes as 0 -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") #initialize totalRewards as 0 -# currLeaf = leafWells.index(int(dio[1])) #finds the index of the dio well in leafWells. currLeaf can now index to corresponding pump -# if currLeaf != lastLeaf: #if animal has poked for the first time in session or at a new leaf well -# countPokes[currLeaf] += 1 #increment the num of new pokes at that leaf -# for i in range(len(countPokes)): -# print("SCQTMESSAGE: countPokes" + str(i+1) + " = " + str(countPokes[i]) + ";\n") -# print("SCQTMESSAGE: totalPokes = " + str(np.sum(countPokes)) + ";\n") -# if np.random.random_sample() < leafProbs[contingency][currLeaf]: -# deliverReward(leafPumps[currLeaf]) -# -##deliver reward, called upon poking in a nonrepeated well -#def deliverReward(val): #dio here will take on values 7-12 corresponding to pumps -# global currLeaf -# global rewardPump -# global countRewards -# -# print("SCQTMESSAGE: rewardPump = " + str(val) + ";\n") #update the value of rewardPump for fxn 1 to use -# print("SCQTMESSAGE: trigger(1);\n") #trigger the sc fxn 1 to deliver reward -# countRewards[currLeaf] += 1 #increment num of rewards at this location -# for i in range(len(countRewards)): -# print("SCQTMESSAGE: countRewards" + str(i+1) + " = " + str(countRewards[i]) + ";\n") -# print("SCQTMESSAGE: totalRewards = " + str(np.sum(countRewards)) + ";\n") -# -##update lastLeaf and print out info about the trial if it was at a nonrepeated well -#def pokeOut(dio): #dio here will take on values 1-6 corresponding to wells -# global leafWells -# global currLeaf -# global lastLeaf -# global timeElapsed -# global timeStart -# global countPokes -# global countRewards -# global leafProbs -# global contingency -# global runningTrials -# global trialThresh -# global timeMaxOut -# -# if runningTrials: -# #if leafWells.index(int(dio[1])) != currLeaf -# # print() #RAT HAS TELEPORTED. Should not be possible. An unpoke should only and always follow a poke in at the same well. -# if currLeaf != lastLeaf: #if the poke in was at a nonrepeated well, tell experimenter about what animal has done thus far -# timeElapsed = round((time.time()-timeStart)/60) -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# print("SCQTMESSAGE: trigger(2);\n") #use updated values of beh tracking vars to display in sc log -# lastLeaf = currLeaf #upon unpoking, the location of unpoke becomes the lastLeaf location. Then, if there is a new pokeIn -# #at last leaf, so if next currleaf == lastleaf, nothing happens. reward will only become possible once currleaf becomes != lastleaf. -# if (np.sum(countPokes) == trialThresh) or (timeElapsed >= timeMaxOut): -# if contingency < len(leafProbs) - 1: -# currLeaf = -1 #to enable shifting to next contingency -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# timeElapsed = 0 -# print("\nSCQTMESSAGE: timeElapsed = " + str(timeElapsed) + ";\n") -# if contingency == len(leafProbs) - 1: -# print("SCQTMESSAGE: trigger(3);\n") #print that the contingency is over -# runningTrials = False #so no more rewards or anything happen on track -# print("SCQTMESSAGE: trigger(4);\n") #flash lights to indicate end of session -# -##gui to help remind user that should have saved data -#savingDisp = Tk() -# -#def yesSaving(): -# global runningTrials -# savingDisp.destroy() -# runningTrials=True -# -#def noSaving(): -# savingDisp.destroy() -# -#saveFrame1 = Frame(savingDisp) -#saveFrame1.pack(side = TOP) -# -#saveFrame2 = Frame(savingDisp) -#saveFrame2.pack(side = BOTTOM) -# -#LS0 = Label(saveFrame1, text=" Have you primed the wells? Pumps are on? And have you SAVED a file folder for this session of data? ") -#LS0.pack() -# -#B1 = Button(saveFrame2, text ="Yes to all", command = yesSaving) -#B1.pack(side = LEFT) -# -#B2 = Button(saveFrame2, text ="No", command = noSaving) -#B2.pack(side = LEFT) -# -#savingDisp.mainloop() -# -# -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94048 UP 1 -94048 1 0 -94058 DOWN 1 -94058 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -94112 contingency = 0 -94112 trialThresh = 100 -94112 timeMaxOut = 20 -94112 timeElapsed = 0 -94112 totalPokes = 1 -94113 totalRewards = 0 -94113 countPokes1 = 1 -94114 countRewards1 = 0 -94114 leafProbs1 = 80 -94114 countPokes2 = 0 -94114 countRewards2 = 0 -94128 leafProbs2 = 20 -94129 countPokes3 = 0 -94129 countRewards3 = 0 -94130 leafProbs3 = 20 -94130 countPokes4 = 0 -94130 countRewards4 = 0 -94130 leafProbs4 = 50 -94131 countPokes5 = 0 -94131 countRewards5 = 0 -94132 leafProbs5 = 80 -94132 countPokes6 = 0 -94146 countRewards6 = 0 -94146 leafProbs6 = 50 -~~~ -95370 UP 1 -95370 1 0 -95396 DOWN 1 -95396 0 0 -95404 UP 1 -95404 1 0 -95415 DOWN 1 -95415 0 0 -95449 UP 1 -95449 1 0 -95507 DOWN 1 -95507 0 0 -95526 UP 1 -95526 1 0 -95527 DOWN 1 -95527 0 0 -95534 UP 1 -95534 1 0 -98011 DOWN 1 -98011 0 0 -109846 UP 6 -109846 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -109947 DOWN 6 -109947 0 0 -109954 UP 6 -109954 32 0 -~~~ -109967 contingency = 0 -109967 trialThresh = 100 -109968 timeMaxOut = 20 -109968 timeElapsed = 0 -109969 totalPokes = 2 -109969 totalRewards = 0 -109969 countPokes1 = 1 -109969 countRewards1 = 0 -109969 leafProbs1 = 80 -109970 countPokes2 = 0 -109970 countRewards2 = 0 -109984 leafProbs2 = 20 -109985 countPokes3 = 0 -109985 countRewards3 = 0 -109985 leafProbs3 = 20 -109985 countPokes4 = 0 -109985 countRewards4 = 0 -109986 leafProbs4 = 50 -109986 countPokes5 = 0 -109987 countRewards5 = 0 -109987 leafProbs5 = 80 -110001 countPokes6 = 1 -110001 countRewards6 = 0 -110001 leafProbs6 = 50 -~~~ -111783 DOWN 6 -111783 0 0 -111799 UP 6 -111799 32 0 -112400 DOWN 6 -112399 0 0 -115161 UP 5 -115161 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115185 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -115485 16 0 -115577 DOWN 5 -115577 0 0 -~~~ -115603 contingency = 0 -115603 trialThresh = 100 -115604 timeMaxOut = 20 -115604 timeElapsed = 1 -115605 totalPokes = 3 -115605 totalRewards = 1 -115605 countPokes1 = 1 -115605 countRewards1 = 0 -115606 leafProbs1 = 80 -115606 countPokes2 = 0 -115607 countRewards2 = 0 -115620 leafProbs2 = 20 -115621 countPokes3 = 0 -115621 countRewards3 = 0 -115621 leafProbs3 = 20 -115621 countPokes4 = 0 -115622 countRewards4 = 0 -115622 leafProbs4 = 50 -115623 countPokes5 = 1 -115623 countRewards5 = 1 -115623 leafProbs5 = 80 -115637 countPokes6 = 1 -115637 countRewards6 = 0 -115637 leafProbs6 = 50 -~~~ -115638 UP 5 -115638 16 0 -118235 DOWN 5 -118235 0 0 -118252 UP 5 -118252 16 0 -118676 DOWN 5 -118676 0 0 -124414 UP 4 -124414 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124444 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -124564 DOWN 4 -124564 0 512 -124571 UP 4 -124571 8 512 -~~~ -124590 contingency = 0 -124590 trialThresh = 100 -124591 timeMaxOut = 20 -124591 timeElapsed = 1 -124591 totalPokes = 4 -124591 totalRewards = 2 -124592 countPokes1 = 1 -124592 countRewards1 = 0 -124592 leafProbs1 = 80 -124593 countPokes2 = 0 -124593 countRewards2 = 0 -124607 leafProbs2 = 20 -124607 countPokes3 = 0 -124607 countRewards3 = 0 -124608 leafProbs3 = 20 -124608 countPokes4 = 1 -124609 countRewards4 = 1 -124609 leafProbs4 = 50 -124609 countPokes5 = 1 -124609 countRewards5 = 1 -124609 leafProbs5 = 80 -124623 countPokes6 = 1 -124623 countRewards6 = 0 -124624 leafProbs6 = 50 -~~~ -124744 8 0 -127285 DOWN 4 -127285 0 0 -128916 UP 3 -128916 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -131495 DOWN 3 -131495 0 0 -131506 UP 3 -131506 4 0 -~~~ -131522 contingency = 0 -131523 trialThresh = 100 -131523 timeMaxOut = 20 -131523 timeElapsed = 1 -131523 totalPokes = 5 -131524 totalRewards = 2 -131524 countPokes1 = 1 -131525 countRewards1 = 0 -131525 leafProbs1 = 80 -131525 countPokes2 = 0 -131525 countRewards2 = 0 -131539 leafProbs2 = 20 -131539 countPokes3 = 1 -131540 countRewards3 = 0 -131540 leafProbs3 = 20 -131541 countPokes4 = 1 -131541 countRewards4 = 1 -131541 leafProbs4 = 50 -131541 countPokes5 = 1 -131542 countRewards5 = 1 -131542 leafProbs5 = 80 -131556 countPokes6 = 1 -131556 countRewards6 = 0 -131557 leafProbs6 = 50 -~~~ -131829 DOWN 3 -131829 0 0 -131849 UP 3 -131849 4 0 -131922 DOWN 3 -131922 0 0 -134163 UP 4 -134163 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -134675 DOWN 4 -134675 0 0 -~~~ -134693 contingency = 0 -134693 trialThresh = 100 -134693 timeMaxOut = 20 -134694 timeElapsed = 1 -134694 totalPokes = 6 -134695 totalRewards = 2 -134695 countPokes1 = 1 -134695 countRewards1 = 0 -134695 leafProbs1 = 80 -134696 countPokes2 = 0 -134696 countRewards2 = 0 -134710 leafProbs2 = 20 -134710 countPokes3 = 1 -134711 countRewards3 = 0 -134711 leafProbs3 = 20 -134711 countPokes4 = 2 -134711 countRewards4 = 1 -134712 leafProbs4 = 50 -134712 countPokes5 = 1 -134713 countRewards5 = 1 -134713 leafProbs5 = 80 -134727 countPokes6 = 1 -134727 countRewards6 = 0 -134727 leafProbs6 = 50 -~~~ -136327 UP 3 -136327 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -137036 DOWN 3 -137036 0 0 -~~~ -137065 contingency = 0 -137065 trialThresh = 100 -137065 timeMaxOut = 20 -137066 timeElapsed = 1 -137066 totalPokes = 7 -137067 totalRewards = 2 -137067 countPokes1 = 1 -137067 countRewards1 = 0 -137067 leafProbs1 = 80 -137068 countPokes2 = 0 -137068 countRewards2 = 0 -137082 leafProbs2 = 20 -137082 countPokes3 = 2 -137083 countRewards3 = 0 -137083 leafProbs3 = 20 -137083 countPokes4 = 2 -137083 countRewards4 = 1 -137084 leafProbs4 = 50 -137084 countPokes5 = 1 -137085 countRewards5 = 1 -137085 leafProbs5 = 80 -137099 countPokes6 = 1 -137099 countRewards6 = 0 -137099 leafProbs6 = 50 -~~~ -143600 UP 5 -143600 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143854 DOWN 5 -143854 0 0 -~~~ -143877 contingency = 0 -143877 trialThresh = 100 -143877 timeMaxOut = 20 -143878 timeElapsed = 1 -143878 totalPokes = 8 -143879 totalRewards = 2 -143879 countPokes1 = 1 -143879 countRewards1 = 0 -143879 leafProbs1 = 80 -143880 countPokes2 = 0 -143880 countRewards2 = 0 -143894 leafProbs2 = 20 -143894 countPokes3 = 2 -143895 countRewards3 = 0 -143895 leafProbs3 = 20 -143895 countPokes4 = 2 -143895 countRewards4 = 1 -143896 leafProbs4 = 50 -143896 countPokes5 = 2 -143897 countRewards5 = 1 -143897 leafProbs5 = 80 -143911 countPokes6 = 1 -143911 countRewards6 = 0 -143911 leafProbs6 = 50 -~~~ -143911 UP 5 -143911 16 0 -144383 DOWN 5 -144383 0 0 -146591 UP 6 -146591 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146617 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -146917 32 0 -147061 DOWN 6 -147061 0 0 -~~~ -147089 contingency = 0 -147090 trialThresh = 100 -147090 timeMaxOut = 20 -147091 timeElapsed = 1 -147091 totalPokes = 9 -147091 totalRewards = 3 -147091 countPokes1 = 1 -147092 countRewards1 = 0 -147092 leafProbs1 = 80 -147093 countPokes2 = 0 -147093 countRewards2 = 0 -147107 leafProbs2 = 20 -147107 countPokes3 = 2 -147107 countRewards3 = 0 -147107 leafProbs3 = 20 -147108 countPokes4 = 2 -147108 countRewards4 = 1 -147109 leafProbs4 = 50 -147109 countPokes5 = 2 -147109 countRewards5 = 1 -147109 leafProbs5 = 80 -147123 countPokes6 = 2 -147123 countRewards6 = 1 -147124 leafProbs6 = 50 -~~~ -147124 UP 6 -147124 32 0 -147150 DOWN 6 -147150 0 0 -147157 UP 6 -147157 32 0 -149454 DOWN 6 -149454 0 0 -160370 UP 1 -160370 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160397 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -160522 DOWN 1 -160522 0 64 -160533 UP 1 -160533 1 64 -~~~ -160544 contingency = 0 -160544 trialThresh = 100 -160544 timeMaxOut = 20 -160545 timeElapsed = 2 -160545 totalPokes = 10 -160546 totalRewards = 4 -160546 countPokes1 = 2 -160546 countRewards1 = 1 -160546 leafProbs1 = 80 -160547 countPokes2 = 0 -160547 countRewards2 = 0 -160561 leafProbs2 = 20 -160561 countPokes3 = 2 -160562 countRewards3 = 0 -160562 leafProbs3 = 20 -160562 countPokes4 = 2 -160562 countRewards4 = 1 -160563 leafProbs4 = 50 -160563 countPokes5 = 2 -160564 countRewards5 = 1 -160564 leafProbs5 = 80 -160578 countPokes6 = 2 -160578 countRewards6 = 1 -160578 leafProbs6 = 50 -~~~ -160697 1 0 -163834 DOWN 1 -163834 0 0 -166987 UP 2 -166987 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -167144 DOWN 2 -167144 0 0 -167149 UP 2 -167149 2 0 -~~~ -167168 contingency = 0 -167168 trialThresh = 100 -167169 timeMaxOut = 20 -167169 timeElapsed = 2 -167170 totalPokes = 11 -167170 totalRewards = 4 -167170 countPokes1 = 2 -167170 countRewards1 = 1 -167171 leafProbs1 = 80 -167171 countPokes2 = 1 -167172 countRewards2 = 0 -167186 leafProbs2 = 20 -167186 countPokes3 = 2 -167186 countRewards3 = 0 -167186 leafProbs3 = 20 -167186 countPokes4 = 2 -167187 countRewards4 = 1 -167187 leafProbs4 = 50 -167188 countPokes5 = 2 -167188 countRewards5 = 1 -167188 leafProbs5 = 80 -167202 countPokes6 = 2 -167202 countRewards6 = 1 -167202 leafProbs6 = 50 -~~~ -169470 DOWN 2 -169470 0 0 -169499 UP 2 -169499 2 0 -169914 DOWN 2 -169914 0 0 -178210 UP 1 -178210 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178233 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178533 1 0 -181346 DOWN 1 -181346 0 0 -~~~ -181372 contingency = 0 -181372 trialThresh = 100 -181372 timeMaxOut = 20 -181373 timeElapsed = 2 -181373 totalPokes = 12 -181374 totalRewards = 5 -181374 countPokes1 = 3 -181374 countRewards1 = 2 -181374 leafProbs1 = 80 -181375 countPokes2 = 1 -181375 countRewards2 = 0 -181389 leafProbs2 = 20 -181389 countPokes3 = 2 -181390 countRewards3 = 0 -181390 leafProbs3 = 20 -181390 countPokes4 = 2 -181390 countRewards4 = 1 -181391 leafProbs4 = 50 -181391 countPokes5 = 2 -181392 countRewards5 = 1 -181392 leafProbs5 = 80 -181406 countPokes6 = 2 -181406 countRewards6 = 1 -181406 leafProbs6 = 50 -~~~ -184630 UP 2 -184630 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184804 DOWN 2 -184804 0 0 -184815 UP 2 -184815 2 0 -~~~ -184832 contingency = 0 -184832 trialThresh = 100 -184832 timeMaxOut = 20 -184832 timeElapsed = 2 -184833 totalPokes = 13 -184833 totalRewards = 5 -184834 countPokes1 = 3 -184834 countRewards1 = 2 -184834 leafProbs1 = 80 -184834 countPokes2 = 2 -184835 countRewards2 = 0 -184849 leafProbs2 = 20 -184849 countPokes3 = 2 -184850 countRewards3 = 0 -184850 leafProbs3 = 20 -184850 countPokes4 = 2 -184850 countRewards4 = 1 -184850 leafProbs4 = 50 -184851 countPokes5 = 2 -184851 countRewards5 = 1 -184852 leafProbs5 = 80 -184865 countPokes6 = 2 -184866 countRewards6 = 1 -184866 leafProbs6 = 50 -~~~ -185326 DOWN 2 -185326 0 0 -185333 UP 2 -185333 2 0 -185995 DOWN 2 -185995 0 0 -189960 UP 1 -189960 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190078 DOWN 1 -190078 0 0 -190080 UP 1 -190080 1 0 -~~~ -190098 contingency = 0 -190099 trialThresh = 100 -190099 timeMaxOut = 20 -190100 timeElapsed = 2 -190100 totalPokes = 14 -190100 totalRewards = 5 -190100 countPokes1 = 4 -190101 countRewards1 = 2 -190101 leafProbs1 = 80 -190101 countPokes2 = 2 -190102 countRewards2 = 0 -190116 leafProbs2 = 20 -190116 countPokes3 = 2 -190116 countRewards3 = 0 -190116 leafProbs3 = 20 -190117 countPokes4 = 2 -190117 countRewards4 = 1 -190118 leafProbs4 = 50 -190118 countPokes5 = 2 -190118 countRewards5 = 1 -190118 leafProbs5 = 80 -190132 countPokes6 = 2 -190132 countRewards6 = 1 -190132 leafProbs6 = 50 -~~~ -190133 DOWN 1 -190133 0 0 -190160 UP 1 -190160 1 0 -190248 DOWN 1 -190248 0 0 -190276 UP 1 -190276 1 0 -190356 DOWN 1 -190356 0 0 -190391 UP 1 -190391 1 0 -190481 DOWN 1 -190481 0 0 -190555 UP 1 -190555 1 0 -190570 DOWN 1 -190570 0 0 -190849 UP 1 -190849 1 0 -190908 DOWN 1 -190908 0 0 -193661 UP 2 -193661 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -193935 DOWN 2 -193935 0 0 -193938 UP 2 -193938 2 0 -~~~ -193959 contingency = 0 -193959 trialThresh = 100 -193960 timeMaxOut = 20 -193960 timeElapsed = 2 -193960 totalPokes = 15 -193960 totalRewards = 5 -193961 countPokes1 = 4 -193961 countRewards1 = 2 -193962 leafProbs1 = 80 -193962 countPokes2 = 3 -193962 countRewards2 = 0 -193976 leafProbs2 = 20 -193976 countPokes3 = 2 -193977 countRewards3 = 0 -193977 leafProbs3 = 20 -193977 countPokes4 = 2 -193978 countRewards4 = 1 -193978 leafProbs4 = 50 -193978 countPokes5 = 2 -193978 countRewards5 = 1 -193979 leafProbs5 = 80 -193992 countPokes6 = 2 -193993 countRewards6 = 1 -193993 leafProbs6 = 50 -~~~ -194100 DOWN 2 -194100 0 0 -196098 UP 1 -196098 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196123 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -196423 1 0 -196514 DOWN 1 -196514 0 0 -196516 UP 1 -196516 1 0 -~~~ -196532 contingency = 0 -196532 trialThresh = 100 -196532 timeMaxOut = 20 -196533 timeElapsed = 3 -196533 totalPokes = 16 -196534 totalRewards = 6 -196534 countPokes1 = 5 -196534 countRewards1 = 3 -196534 leafProbs1 = 80 -196534 countPokes2 = 3 -196535 countRewards2 = 0 -196549 leafProbs2 = 20 -196549 countPokes3 = 2 -196550 countRewards3 = 0 -196550 leafProbs3 = 20 -196550 countPokes4 = 2 -196550 countRewards4 = 1 -196551 leafProbs4 = 50 -196551 countPokes5 = 2 -196551 countRewards5 = 1 -196552 leafProbs5 = 80 -196565 countPokes6 = 2 -196566 countRewards6 = 1 -196566 leafProbs6 = 50 -~~~ -198509 DOWN 1 -198509 0 0 -202035 UP 1 -202035 1 0 -202194 DOWN 1 -202194 0 0 -213522 UP 6 -213522 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -213903 DOWN 6 -213903 0 0 -213919 UP 6 -213919 32 0 -~~~ -213923 contingency = 0 -213923 trialThresh = 100 -213924 timeMaxOut = 20 -213924 timeElapsed = 3 -213925 totalPokes = 17 -213925 totalRewards = 6 -213925 countPokes1 = 5 -213925 countRewards1 = 3 -213926 leafProbs1 = 80 -213926 countPokes2 = 3 -213927 countRewards2 = 0 -213940 leafProbs2 = 20 -213941 countPokes3 = 2 -213941 countRewards3 = 0 -213941 leafProbs3 = 20 -213941 countPokes4 = 2 -213942 countRewards4 = 1 -213942 leafProbs4 = 50 -213943 countPokes5 = 2 -213943 countRewards5 = 1 -213943 leafProbs5 = 80 -213957 countPokes6 = 3 -213957 countRewards6 = 1 -213957 leafProbs6 = 50 -~~~ -213962 DOWN 6 -213962 0 0 -218705 UP 5 -218705 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -218741 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -219041 16 0 -220419 DOWN 5 -220419 0 0 -220425 UP 5 -220425 16 0 -~~~ -220436 contingency = 0 -220436 trialThresh = 100 -220437 timeMaxOut = 20 -220437 timeElapsed = 3 -220437 totalPokes = 18 -220437 totalRewards = 7 -220437 countPokes1 = 5 -220438 countRewards1 = 3 -220438 leafProbs1 = 80 -220439 countPokes2 = 3 -220439 countRewards2 = 0 -220453 leafProbs2 = 20 -220453 countPokes3 = 2 -220453 countRewards3 = 0 -220454 leafProbs3 = 20 -220454 countPokes4 = 2 -220455 countRewards4 = 1 -220455 leafProbs4 = 50 -220455 countPokes5 = 3 -220455 countRewards5 = 2 -220455 leafProbs5 = 80 -220469 countPokes6 = 3 -220469 countRewards6 = 1 -220470 leafProbs6 = 50 -~~~ -221126 DOWN 5 -221126 0 0 -221145 UP 5 -221145 16 0 -221557 DOWN 5 -221557 0 0 -225579 UP 6 -225579 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -225814 DOWN 6 -225814 0 0 -225835 UP 6 -225835 32 0 -~~~ -225843 contingency = 0 -225843 trialThresh = 100 -225843 timeMaxOut = 20 -225844 timeElapsed = 3 -225844 totalPokes = 19 -225845 totalRewards = 7 -225845 countPokes1 = 5 -225845 countRewards1 = 3 -225845 leafProbs1 = 80 -225846 countPokes2 = 3 -225846 countRewards2 = 0 -225860 leafProbs2 = 20 -225860 countPokes3 = 2 -225861 countRewards3 = 0 -225861 leafProbs3 = 20 -225861 countPokes4 = 2 -225861 countRewards4 = 1 -225862 leafProbs4 = 50 -225862 countPokes5 = 3 -225863 countRewards5 = 2 -225863 leafProbs5 = 80 -225877 countPokes6 = 4 -225877 countRewards6 = 1 -225877 leafProbs6 = 50 -~~~ -226005 DOWN 6 -226005 0 0 -226079 UP 6 -226079 32 0 -226211 DOWN 6 -226211 0 0 -226241 UP 6 -226241 32 0 -226290 DOWN 6 -226290 0 0 -226389 UP 6 -226389 32 0 -226584 DOWN 6 -226584 0 0 -226651 UP 6 -226651 32 0 -226788 DOWN 6 -226788 0 0 -230377 UP 5 -230377 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230409 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -230619 DOWN 5 -230619 0 1024 -230632 UP 5 -230632 16 1024 -~~~ -230647 contingency = 0 -230647 trialThresh = 100 -230647 timeMaxOut = 20 -230647 timeElapsed = 3 -230648 totalPokes = 20 -230648 totalRewards = 8 -230649 countPokes1 = 5 -230649 countRewards1 = 3 -230649 leafProbs1 = 80 -230649 countPokes2 = 3 -230650 countRewards2 = 0 -230663 leafProbs2 = 20 -230664 countPokes3 = 2 -230664 countRewards3 = 0 -230665 leafProbs3 = 20 -230665 countPokes4 = 2 -230665 countRewards4 = 1 -230665 leafProbs4 = 50 -230666 countPokes5 = 4 -230666 countRewards5 = 3 -230667 leafProbs5 = 80 -230680 countPokes6 = 4 -230681 countRewards6 = 1 -230681 leafProbs6 = 50 -~~~ -230708 16 0 -232797 DOWN 5 -232796 0 0 -232802 UP 5 -232802 16 0 -232900 DOWN 5 -232900 0 0 -232928 UP 5 -232928 16 0 -233233 DOWN 5 -233233 0 0 -233256 UP 5 -233256 16 0 -233319 DOWN 5 -233319 0 0 -235867 UP 6 -235867 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -235898 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -236198 32 0 -238601 DOWN 6 -238601 0 0 -238614 UP 6 -238614 32 0 -~~~ -238631 contingency = 0 -238631 trialThresh = 100 -238631 timeMaxOut = 20 -238631 timeElapsed = 4 -238632 totalPokes = 21 -238632 totalRewards = 9 -238632 countPokes1 = 5 -238633 countRewards1 = 3 -238633 leafProbs1 = 80 -238633 countPokes2 = 3 -238633 countRewards2 = 0 -238647 leafProbs2 = 20 -238648 countPokes3 = 2 -238648 countRewards3 = 0 -238649 leafProbs3 = 20 -238649 countPokes4 = 2 -238649 countRewards4 = 1 -238649 leafProbs4 = 50 -238650 countPokes5 = 4 -238650 countRewards5 = 3 -238650 leafProbs5 = 80 -238664 countPokes6 = 5 -238664 countRewards6 = 2 -238665 leafProbs6 = 50 -~~~ -239049 DOWN 6 -239049 0 0 -250071 UP 1 -250071 1 0 -~~~ -~~~ -250097 DOWN 1 -250097 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250103 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250129 UP 1 -250129 1 64 -~~~ -250136 contingency = 0 -250137 trialThresh = 100 -250137 timeMaxOut = 20 -250137 timeElapsed = 4 -250137 totalPokes = 22 -250137 totalRewards = 10 -250138 countPokes1 = 6 -250138 countRewards1 = 4 -250139 leafProbs1 = 80 -250139 countPokes2 = 3 -250139 countRewards2 = 0 -250153 leafProbs2 = 20 -250153 countPokes3 = 2 -250154 countRewards3 = 0 -250154 leafProbs3 = 20 -250155 countPokes4 = 2 -250155 countRewards4 = 1 -250155 leafProbs4 = 50 -250155 countPokes5 = 4 -250156 countRewards5 = 3 -250156 leafProbs5 = 80 -250170 countPokes6 = 5 -250170 countRewards6 = 2 -250170 leafProbs6 = 50 -~~~ -250171 DOWN 1 -250171 0 64 -250204 UP 1 -250204 1 64 -250248 DOWN 1 -250248 0 64 -250280 UP 1 -250280 1 64 -250403 1 0 -250446 DOWN 1 -250446 0 0 -250455 UP 1 -250455 1 0 -253556 DOWN 1 -253556 0 0 -256084 UP 2 -256084 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256264 DOWN 2 -256264 0 0 -256267 UP 2 -256267 2 0 -~~~ -256282 contingency = 0 -256282 trialThresh = 100 -256282 timeMaxOut = 20 -256282 timeElapsed = 4 -256282 totalPokes = 23 -256283 totalRewards = 10 -256283 countPokes1 = 6 -256284 countRewards1 = 4 -256284 leafProbs1 = 80 -256284 countPokes2 = 4 -256284 countRewards2 = 0 -256298 leafProbs2 = 20 -256299 countPokes3 = 2 -256299 countRewards3 = 0 -256300 leafProbs3 = 20 -256300 countPokes4 = 2 -256300 countRewards4 = 1 -256300 leafProbs4 = 50 -256301 countPokes5 = 4 -256301 countRewards5 = 3 -256302 leafProbs5 = 80 -256315 countPokes6 = 5 -256316 countRewards6 = 2 -256316 leafProbs6 = 50 -~~~ -256546 DOWN 2 -256546 0 0 -256572 UP 2 -256572 2 0 -256748 DOWN 2 -256748 0 0 -258880 UP 1 -258880 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -258914 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -259214 1 0 -261848 DOWN 1 -261848 0 0 -~~~ -261868 contingency = 0 -261868 trialThresh = 100 -261868 timeMaxOut = 20 -261868 timeElapsed = 4 -261869 totalPokes = 24 -261869 totalRewards = 11 -261870 countPokes1 = 7 -261870 countRewards1 = 5 -261870 leafProbs1 = 80 -261870 countPokes2 = 4 -261870 countRewards2 = 0 -261884 leafProbs2 = 20 -261885 countPokes3 = 2 -261885 countRewards3 = 0 -261886 leafProbs3 = 20 -261886 countPokes4 = 2 -261886 countRewards4 = 1 -261886 leafProbs4 = 50 -261887 countPokes5 = 4 -261887 countRewards5 = 3 -261888 leafProbs5 = 80 -261901 countPokes6 = 5 -261902 countRewards6 = 2 -261902 leafProbs6 = 50 -~~~ -267560 UP 2 -267560 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -267886 DOWN 2 -267886 0 0 -267900 UP 2 -267900 2 0 -~~~ -267911 contingency = 0 -267911 trialThresh = 100 -267912 timeMaxOut = 20 -267912 timeElapsed = 4 -267912 totalPokes = 25 -267912 totalRewards = 11 -267913 countPokes1 = 7 -267913 countRewards1 = 5 -267914 leafProbs1 = 80 -267914 countPokes2 = 5 -267914 countRewards2 = 0 -267928 leafProbs2 = 20 -267928 countPokes3 = 2 -267928 countRewards3 = 0 -267929 leafProbs3 = 20 -267929 countPokes4 = 2 -267930 countRewards4 = 1 -267930 leafProbs4 = 50 -267930 countPokes5 = 4 -267930 countRewards5 = 3 -267931 leafProbs5 = 80 -267944 countPokes6 = 5 -267945 countRewards6 = 2 -267945 leafProbs6 = 50 -~~~ -267946 DOWN 2 -267946 0 0 -272470 UP 2 -272470 2 0 -272489 DOWN 2 -272489 0 0 -272498 UP 2 -272498 2 0 -272506 DOWN 2 -272506 0 0 -275002 UP 1 -275002 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275036 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -275336 1 0 -277515 DOWN 1 -277515 0 0 -277520 UP 1 -277520 1 0 -~~~ -277532 contingency = 0 -277533 trialThresh = 100 -277533 timeMaxOut = 20 -277534 timeElapsed = 5 -277534 totalPokes = 26 -277534 totalRewards = 12 -277534 countPokes1 = 8 -277534 countRewards1 = 6 -277535 leafProbs1 = 80 -277535 countPokes2 = 5 -277536 countRewards2 = 0 -277550 leafProbs2 = 20 -277550 countPokes3 = 2 -277550 countRewards3 = 0 -277550 leafProbs3 = 20 -277551 countPokes4 = 2 -277551 countRewards4 = 1 -277552 leafProbs4 = 50 -277552 countPokes5 = 4 -277552 countRewards5 = 3 -277552 leafProbs5 = 80 -277566 countPokes6 = 5 -277566 countRewards6 = 2 -277566 leafProbs6 = 50 -~~~ -277832 DOWN 1 -277832 0 0 -284331 UP 1 -284331 1 0 -284497 DOWN 1 -284497 0 0 -290436 UP 2 -290436 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -291663 DOWN 2 -291663 0 0 -~~~ -291685 contingency = 0 -291686 trialThresh = 100 -291686 timeMaxOut = 20 -291686 timeElapsed = 5 -291686 totalPokes = 27 -291687 totalRewards = 12 -291687 countPokes1 = 8 -291688 countRewards1 = 6 -291688 leafProbs1 = 80 -291688 countPokes2 = 6 -291688 countRewards2 = 0 -291702 leafProbs2 = 20 -291702 countPokes3 = 2 -291703 countRewards3 = 0 -291703 leafProbs3 = 20 -291704 countPokes4 = 2 -291704 countRewards4 = 1 -291704 leafProbs4 = 50 -291704 countPokes5 = 4 -291705 countRewards5 = 3 -291705 leafProbs5 = 80 -291719 countPokes6 = 5 -291719 countRewards6 = 2 -291720 leafProbs6 = 50 -~~~ -298521 UP 1 -298521 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298560 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -298859 1 0 -301302 DOWN 1 -301302 0 0 -301320 UP 1 -301320 1 0 -~~~ -301324 contingency = 0 -301324 trialThresh = 100 -301324 timeMaxOut = 20 -301324 timeElapsed = 5 -301325 totalPokes = 28 -301325 totalRewards = 13 -301326 countPokes1 = 9 -301326 countRewards1 = 7 -301326 leafProbs1 = 80 -301326 countPokes2 = 6 -301327 countRewards2 = 0 -301341 leafProbs2 = 20 -301341 countPokes3 = 2 -301342 countRewards3 = 0 -301342 leafProbs3 = 20 -301342 countPokes4 = 2 -301342 countRewards4 = 1 -301343 leafProbs4 = 50 -301343 countPokes5 = 4 -301343 countRewards5 = 3 -301344 leafProbs5 = 80 -301357 countPokes6 = 5 -301358 countRewards6 = 2 -301358 leafProbs6 = 50 -~~~ -301818 DOWN 1 -301818 0 0 -308157 UP 2 -308157 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -308409 DOWN 2 -308409 0 0 -~~~ -308433 contingency = 0 -308433 trialThresh = 100 -308433 timeMaxOut = 20 -308434 timeElapsed = 5 -308434 totalPokes = 29 -308435 totalRewards = 13 -308435 countPokes1 = 9 -308435 countRewards1 = 7 -308435 leafProbs1 = 80 -308436 countPokes2 = 7 -308436 countRewards2 = 0 -308450 leafProbs2 = 20 -308451 countPokes3 = 2 -308451 countRewards3 = 0 -308451 leafProbs3 = 20 -308451 countPokes4 = 2 -308452 countRewards4 = 1 -308452 leafProbs4 = 50 -308452 countPokes5 = 4 -308453 countRewards5 = 3 -308453 leafProbs5 = 80 -308467 countPokes6 = 5 -308467 countRewards6 = 2 -308467 leafProbs6 = 50 -~~~ -311726 UP 1 -311726 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -312211 DOWN 1 -312211 0 0 -~~~ -312317 contingency = 0 -312317 trialThresh = 100 -312318 timeMaxOut = 20 -312318 timeElapsed = 5 -312319 totalPokes = 30 -312319 totalRewards = 13 -312319 countPokes1 = 10 -312319 countRewards1 = 7 -312320 leafProbs1 = 80 -312320 countPokes2 = 7 -312321 countRewards2 = 0 -312335 leafProbs2 = 20 -312335 countPokes3 = 2 -312335 countRewards3 = 0 -312335 leafProbs3 = 20 -312335 countPokes4 = 2 -312336 countRewards4 = 1 -312336 leafProbs4 = 50 -312337 countPokes5 = 4 -312337 countRewards5 = 3 -312337 leafProbs5 = 80 -312351 countPokes6 = 5 -312351 countRewards6 = 2 -312351 leafProbs6 = 50 -~~~ -329565 UP 1 -329565 1 0 -329578 DOWN 1 -329578 0 0 -329607 UP 1 -329607 1 0 -329615 DOWN 1 -329615 0 0 -336849 UP 6 -336849 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -337375 DOWN 6 -337375 0 0 -~~~ -337402 contingency = 0 -337403 trialThresh = 100 -337403 timeMaxOut = 20 -337403 timeElapsed = 6 -337403 totalPokes = 31 -337404 totalRewards = 13 -337404 countPokes1 = 10 -337405 countRewards1 = 7 -337405 leafProbs1 = 80 -337405 countPokes2 = 7 -337405 countRewards2 = 0 -337419 leafProbs2 = 20 -337419 countPokes3 = 2 -337420 countRewards3 = 0 -337420 leafProbs3 = 20 -337421 countPokes4 = 2 -337421 countRewards4 = 1 -337421 leafProbs4 = 50 -337421 countPokes5 = 4 -337422 countRewards5 = 3 -337422 leafProbs5 = 80 -337436 countPokes6 = 6 -337436 countRewards6 = 2 -337437 leafProbs6 = 50 -~~~ -339595 UP 6 -339595 32 0 -339614 DOWN 6 -339614 0 0 -339917 UP 6 -339917 32 0 -340039 DOWN 6 -340039 0 0 -340062 UP 6 -340062 32 0 -341221 DOWN 6 -341221 0 0 -348806 UP 6 -348806 32 0 -349029 DOWN 6 -349029 0 0 -370690 UP 3 -370690 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -371347 DOWN 3 -371347 0 0 -~~~ -371366 contingency = 0 -371367 trialThresh = 100 -371367 timeMaxOut = 20 -371368 timeElapsed = 7 -371368 totalPokes = 32 -371368 totalRewards = 13 -371368 countPokes1 = 10 -371369 countRewards1 = 7 -371369 leafProbs1 = 80 -371370 countPokes2 = 7 -371370 countRewards2 = 0 -371384 leafProbs2 = 20 -371384 countPokes3 = 3 -371384 countRewards3 = 0 -371385 leafProbs3 = 20 -371385 countPokes4 = 2 -371386 countRewards4 = 1 -371386 leafProbs4 = 50 -371386 countPokes5 = 4 -371386 countRewards5 = 3 -371386 leafProbs5 = 80 -371400 countPokes6 = 6 -371400 countRewards6 = 2 -371401 leafProbs6 = 50 -~~~ -371401 UP 3 -371401 4 0 -371462 DOWN 3 -371462 0 0 -376503 UP 4 -376503 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376533 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -376832 8 0 -379496 DOWN 4 -379496 0 0 -~~~ -379512 contingency = 0 -379512 trialThresh = 100 -379512 timeMaxOut = 20 -379512 timeElapsed = 7 -379512 totalPokes = 33 -379513 totalRewards = 14 -379513 countPokes1 = 10 -379514 countRewards1 = 7 -379514 leafProbs1 = 80 -379514 countPokes2 = 7 -379514 countRewards2 = 0 -379528 leafProbs2 = 20 -379529 countPokes3 = 3 -379529 countRewards3 = 0 -379530 leafProbs3 = 20 -379530 countPokes4 = 3 -379530 countRewards4 = 2 -379530 leafProbs4 = 50 -379531 countPokes5 = 4 -379531 countRewards5 = 3 -379532 leafProbs5 = 80 -379545 countPokes6 = 6 -379546 countRewards6 = 2 -379546 leafProbs6 = 50 -~~~ -379546 UP 4 -379546 8 0 -380063 DOWN 4 -380063 0 0 -380421 UP 4 -380421 8 0 -382496 DOWN 4 -382496 0 0 -387918 UP 3 -387918 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -388412 DOWN 3 -388412 0 0 -~~~ -388430 contingency = 0 -388430 trialThresh = 100 -388430 timeMaxOut = 20 -388431 timeElapsed = 7 -388431 totalPokes = 34 -388432 totalRewards = 14 -388432 countPokes1 = 10 -388432 countRewards1 = 7 -388432 leafProbs1 = 80 -388433 countPokes2 = 7 -388433 countRewards2 = 0 -388447 leafProbs2 = 20 -388448 countPokes3 = 4 -388448 countRewards3 = 0 -388448 leafProbs3 = 20 -388448 countPokes4 = 3 -388448 countRewards4 = 2 -388449 leafProbs4 = 50 -388449 countPokes5 = 4 -388450 countRewards5 = 3 -388450 leafProbs5 = 80 -388464 countPokes6 = 6 -388464 countRewards6 = 2 -388464 leafProbs6 = 50 -~~~ -390881 UP 4 -390881 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -390913 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391213 8 0 -393870 DOWN 4 -393870 0 0 -~~~ -393894 contingency = 0 -393894 trialThresh = 100 -393894 timeMaxOut = 20 -393894 timeElapsed = 7 -393895 totalPokes = 35 -393895 totalRewards = 15 -393895 countPokes1 = 10 -393896 countRewards1 = 7 -393896 leafProbs1 = 80 -393896 countPokes2 = 7 -393896 countRewards2 = 0 -393910 leafProbs2 = 20 -393911 countPokes3 = 4 -393911 countRewards3 = 0 -393912 leafProbs3 = 20 -393912 countPokes4 = 4 -393912 countRewards4 = 3 -393912 leafProbs4 = 50 -393913 countPokes5 = 4 -393913 countRewards5 = 3 -393914 leafProbs5 = 80 -393927 countPokes6 = 6 -393928 countRewards6 = 2 -393928 leafProbs6 = 50 -~~~ -396968 UP 3 -396968 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -396991 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -397291 4 0 -397330 DOWN 3 -397330 0 0 -397342 UP 3 -397342 4 0 -~~~ -397350 contingency = 0 -397350 trialThresh = 100 -397351 timeMaxOut = 20 -397351 timeElapsed = 8 -397352 totalPokes = 36 -397352 totalRewards = 16 -397352 countPokes1 = 10 -397352 countRewards1 = 7 -397353 leafProbs1 = 80 -397353 countPokes2 = 7 -397353 countRewards2 = 0 -397368 leafProbs2 = 20 -397368 countPokes3 = 5 -397368 countRewards3 = 1 -397368 leafProbs3 = 20 -397368 countPokes4 = 4 -397369 countRewards4 = 3 -397369 leafProbs4 = 50 -397370 countPokes5 = 4 -397370 countRewards5 = 3 -397370 leafProbs5 = 80 -397384 countPokes6 = 6 -397384 countRewards6 = 2 -397384 leafProbs6 = 50 -~~~ -397422 DOWN 3 -397422 0 0 -397432 UP 3 -397432 4 0 -397510 DOWN 3 -397510 0 0 -397514 UP 3 -397514 4 0 -400532 DOWN 3 -400532 0 0 -419715 UP 4 -419715 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -419745 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420045 8 0 -422470 DOWN 4 -422470 0 0 -422484 UP 4 -422484 8 0 -~~~ -422499 contingency = 0 -422499 trialThresh = 100 -422499 timeMaxOut = 20 -422499 timeElapsed = 8 -422500 totalPokes = 37 -422500 totalRewards = 17 -422501 countPokes1 = 10 -422501 countRewards1 = 7 -422501 leafProbs1 = 80 -422501 countPokes2 = 7 -422502 countRewards2 = 0 -422516 leafProbs2 = 20 -422516 countPokes3 = 5 -422517 countRewards3 = 1 -422517 leafProbs3 = 20 -422517 countPokes4 = 5 -422517 countRewards4 = 4 -422517 leafProbs4 = 50 -422518 countPokes5 = 4 -422518 countRewards5 = 3 -422519 leafProbs5 = 80 -422532 countPokes6 = 6 -422533 countRewards6 = 2 -422533 leafProbs6 = 50 -~~~ -423017 DOWN 4 -423017 0 0 -427069 UP 3 -427069 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427094 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -427239 DOWN 3 -427239 0 256 -427241 UP 3 -427241 4 256 -~~~ -427264 contingency = 0 -427264 trialThresh = 100 -427264 timeMaxOut = 20 -427265 timeElapsed = 8 -427265 totalPokes = 38 -427265 totalRewards = 18 -427265 countPokes1 = 10 -427266 countRewards1 = 7 -427266 leafProbs1 = 80 -427267 countPokes2 = 7 -427267 countRewards2 = 0 -427281 leafProbs2 = 20 -427281 countPokes3 = 6 -427281 countRewards3 = 2 -427282 leafProbs3 = 20 -427282 countPokes4 = 5 -427283 countRewards4 = 4 -427283 leafProbs4 = 50 -427283 countPokes5 = 4 -427283 countRewards5 = 3 -427284 leafProbs5 = 80 -427297 countPokes6 = 6 -427298 countRewards6 = 2 -427298 leafProbs6 = 50 -~~~ -427394 4 0 -428859 DOWN 3 -428859 0 0 -428870 UP 3 -428870 4 0 -430500 DOWN 3 -430500 0 0 -430508 UP 3 -430508 4 0 -430526 DOWN 3 -430526 0 0 -430529 UP 3 -430529 4 0 -430591 DOWN 3 -430591 0 0 -430598 UP 3 -430598 4 0 -430616 DOWN 3 -430616 0 0 -430625 UP 3 -430625 4 0 -430632 DOWN 3 -430632 0 0 -430643 UP 3 -430643 4 0 -430705 DOWN 3 -430705 0 0 -430716 UP 3 -430716 4 0 -430743 DOWN 3 -430743 0 0 -430751 UP 3 -430751 4 0 -430764 DOWN 3 -430764 0 0 -430767 UP 3 -430767 4 0 -430813 DOWN 3 -430813 0 0 -430823 UP 3 -430823 4 0 -430837 DOWN 3 -430837 0 0 -430847 UP 3 -430847 4 0 -430937 DOWN 3 -430937 0 0 -438029 UP 4 -438029 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -438640 DOWN 4 -438640 0 0 -~~~ -438656 contingency = 0 -438656 trialThresh = 100 -438657 timeMaxOut = 20 -438657 timeElapsed = 9 -438657 totalPokes = 39 -438657 totalRewards = 18 -438658 countPokes1 = 10 -438658 countRewards1 = 7 -438659 leafProbs1 = 80 -438659 countPokes2 = 7 -438659 countRewards2 = 0 -438673 leafProbs2 = 20 -438673 countPokes3 = 6 -438674 countRewards3 = 2 -438674 leafProbs3 = 20 -438675 countPokes4 = 6 -438675 countRewards4 = 4 -438675 leafProbs4 = 50 -438675 countPokes5 = 4 -438675 countRewards5 = 3 -438676 leafProbs5 = 80 -438690 countPokes6 = 6 -438690 countRewards6 = 2 -438690 leafProbs6 = 50 -~~~ -440259 UP 3 -440259 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -440484 DOWN 3 -440484 0 0 -~~~ -440505 UP 3 -440505 4 0 -440506 contingency = 0 -440506 trialThresh = 100 -440507 timeMaxOut = 20 -440507 timeElapsed = 9 -440507 totalPokes = 40 -440507 totalRewards = 18 -440508 countPokes1 = 10 -440508 countRewards1 = 7 -440508 leafProbs1 = 80 -440509 countPokes2 = 7 -440523 countRewards2 = 0 -440523 leafProbs2 = 20 -440523 countPokes3 = 7 -440523 countRewards3 = 2 -440524 leafProbs3 = 20 -440524 countPokes4 = 6 -440525 countRewards4 = 4 -440525 leafProbs4 = 50 -440525 countPokes5 = 4 -440525 countRewards5 = 3 -440539 leafProbs5 = 80 -440539 countPokes6 = 6 -440540 countRewards6 = 2 -440540 leafProbs6 = 50 -~~~ -440595 DOWN 3 -440595 0 0 -440601 UP 3 -440601 4 0 -440618 DOWN 3 -440618 0 0 -440634 UP 3 -440634 4 0 -440725 DOWN 3 -440725 0 0 -440729 UP 3 -440729 4 0 -440749 DOWN 3 -440749 0 0 -440787 UP 3 -440787 4 0 -441093 DOWN 3 -441093 0 0 -441136 UP 3 -441136 4 0 -441147 DOWN 3 -441147 0 0 -441287 UP 3 -441287 4 0 -441509 DOWN 3 -441509 0 0 -444557 UP 4 -444557 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -444894 DOWN 4 -444894 0 0 -~~~ -444911 contingency = 0 -444911 trialThresh = 100 -444911 timeMaxOut = 20 -444911 timeElapsed = 9 -444912 totalPokes = 41 -444912 totalRewards = 18 -444913 countPokes1 = 10 -444913 countRewards1 = 7 -444913 leafProbs1 = 80 -444913 countPokes2 = 7 -444914 countRewards2 = 0 -444928 leafProbs2 = 20 -444928 countPokes3 = 7 -444929 countRewards3 = 2 -444929 leafProbs3 = 20 -444929 countPokes4 = 7 -444929 countRewards4 = 4 -444930 leafProbs4 = 50 -444930 countPokes5 = 4 -444931 countRewards5 = 3 -444931 leafProbs5 = 80 -444945 countPokes6 = 6 -444945 countRewards6 = 2 -444945 leafProbs6 = 50 -~~~ -451529 UP 6 -451529 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -452216 DOWN 6 -452216 0 0 -~~~ -452237 contingency = 0 -452237 trialThresh = 100 -452238 timeMaxOut = 20 -452238 timeElapsed = 9 -452239 totalPokes = 42 -452239 totalRewards = 18 -452239 countPokes1 = 10 -452239 countRewards1 = 7 -452240 leafProbs1 = 80 -452240 countPokes2 = 7 -452241 countRewards2 = 0 -452255 leafProbs2 = 20 -452255 countPokes3 = 7 -452255 countRewards3 = 2 -452255 leafProbs3 = 20 -452256 countPokes4 = 7 -452256 countRewards4 = 4 -452257 leafProbs4 = 50 -452257 countPokes5 = 4 -452257 countRewards5 = 3 -452257 leafProbs5 = 80 -452271 countPokes6 = 7 -452271 countRewards6 = 2 -452271 leafProbs6 = 50 -~~~ -452272 UP 6 -452272 32 0 -452323 DOWN 6 -452323 0 0 -456828 UP 6 -456828 32 0 -457039 DOWN 6 -457039 0 0 -458402 UP 5 -458402 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458432 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -458732 16 0 -458786 DOWN 5 -458786 0 0 -458790 UP 5 -458790 16 0 -~~~ -458817 contingency = 0 -458817 trialThresh = 100 -458817 timeMaxOut = 20 -458817 timeElapsed = 9 -458818 totalPokes = 43 -458818 totalRewards = 19 -458819 countPokes1 = 10 -458819 countRewards1 = 7 -458819 leafProbs1 = 80 -458819 countPokes2 = 7 -458820 countRewards2 = 0 -458834 leafProbs2 = 20 -458834 countPokes3 = 7 -458835 countRewards3 = 2 -458835 leafProbs3 = 20 -458835 countPokes4 = 7 -458835 countRewards4 = 4 -458836 leafProbs4 = 50 -458836 countPokes5 = 5 -458837 countRewards5 = 4 -458837 leafProbs5 = 80 -458850 countPokes6 = 7 -458851 countRewards6 = 2 -458851 leafProbs6 = 50 -~~~ -460863 DOWN 5 -460863 0 0 -460877 UP 5 -460877 16 0 -461283 DOWN 5 -461283 0 0 -461306 UP 5 -461306 16 0 -461377 DOWN 5 -461377 0 0 -468674 UP 6 -468674 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469094 DOWN 6 -469094 0 0 -~~~ -469120 contingency = 0 -469120 trialThresh = 100 -469120 timeMaxOut = 20 -469121 timeElapsed = 9 -469121 totalPokes = 44 -469122 totalRewards = 19 -469122 countPokes1 = 10 -469122 countRewards1 = 7 -469122 leafProbs1 = 80 -469123 countPokes2 = 7 -469123 countRewards2 = 0 -469137 leafProbs2 = 20 -469138 countPokes3 = 7 -469138 countRewards3 = 2 -469138 leafProbs3 = 20 -469138 countPokes4 = 7 -469138 countRewards4 = 4 -469139 leafProbs4 = 50 -469139 countPokes5 = 5 -469140 countRewards5 = 4 -469140 leafProbs5 = 80 -469154 countPokes6 = 8 -469154 countRewards6 = 2 -469154 leafProbs6 = 50 -~~~ -474207 UP 6 -474207 32 0 -474302 DOWN 6 -474302 0 0 -474380 UP 6 -474380 32 0 -474621 DOWN 6 -474621 0 0 -482030 UP 1 -482030 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -482234 DOWN 1 -482234 0 0 -~~~ -482258 contingency = 0 -482258 trialThresh = 100 -482258 timeMaxOut = 20 -482258 timeElapsed = 10 -482259 totalPokes = 45 -482259 totalRewards = 19 -482260 countPokes1 = 11 -482260 countRewards1 = 7 -482260 leafProbs1 = 80 -482260 countPokes2 = 7 -482261 countRewards2 = 0 -482275 leafProbs2 = 20 -482275 countPokes3 = 7 -482276 countRewards3 = 2 -482276 leafProbs3 = 20 -482276 countPokes4 = 7 -482276 countRewards4 = 4 -482277 leafProbs4 = 50 -482277 countPokes5 = 5 -482278 countRewards5 = 4 -482278 leafProbs5 = 80 -482292 countPokes6 = 8 -482292 countRewards6 = 2 -482292 leafProbs6 = 50 -~~~ -482292 UP 1 -482292 1 0 -482558 DOWN 1 -482558 0 0 -482585 UP 1 -482585 1 0 -482683 DOWN 1 -482683 0 0 -482718 UP 1 -482718 1 0 -482744 DOWN 1 -482744 0 0 -482821 UP 1 -482821 1 0 -482842 DOWN 1 -482842 0 0 -482905 UP 1 -482905 1 0 -482939 DOWN 1 -482939 0 0 -498133 UP 1 -498133 1 0 -498150 DOWN 1 -498150 0 0 -498596 UP 1 -498596 1 0 -498878 DOWN 1 -498878 0 0 -508278 UP 1 -508278 1 0 -508469 DOWN 1 -508469 0 0 -508616 UP 1 -508616 1 0 -508860 DOWN 1 -508860 0 0 -518791 UP 2 -518791 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -519385 DOWN 2 -519385 0 0 -~~~ -519406 contingency = 0 -519406 trialThresh = 100 -519407 timeMaxOut = 20 -519407 timeElapsed = 11 -519407 totalPokes = 46 -519407 totalRewards = 19 -519408 countPokes1 = 11 -519408 countRewards1 = 7 -519409 leafProbs1 = 80 -519409 countPokes2 = 8 -519409 countRewards2 = 0 -519423 leafProbs2 = 20 -519423 countPokes3 = 7 -519424 countRewards3 = 2 -519424 leafProbs3 = 20 -519425 countPokes4 = 7 -519425 countRewards4 = 4 -519425 leafProbs4 = 50 -519425 countPokes5 = 5 -519425 countRewards5 = 4 -519426 leafProbs5 = 80 -519439 countPokes6 = 8 -519440 countRewards6 = 2 -519440 leafProbs6 = 50 -~~~ -519441 UP 2 -519441 2 0 -519447 DOWN 2 -519447 0 0 -524357 UP 1 -524357 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524378 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -524678 1 0 -524797 DOWN 1 -524797 0 0 -~~~ -524815 contingency = 0 -524815 trialThresh = 100 -524816 timeMaxOut = 20 -524816 timeElapsed = 11 -524817 totalPokes = 47 -524817 totalRewards = 20 -524817 countPokes1 = 12 -524817 countRewards1 = 8 -524817 leafProbs1 = 80 -524818 countPokes2 = 8 -524818 countRewards2 = 0 -524833 leafProbs2 = 20 -524833 countPokes3 = 7 -524833 countRewards3 = 2 -524833 leafProbs3 = 20 -524833 countPokes4 = 7 -524834 countRewards4 = 4 -524834 leafProbs4 = 50 -524835 countPokes5 = 5 -524835 countRewards5 = 4 -524835 leafProbs5 = 80 -524849 countPokes6 = 8 -524849 countRewards6 = 2 -524849 leafProbs6 = 50 -~~~ -524850 UP 1 -524850 1 0 -524863 DOWN 1 -524863 0 0 -524873 UP 1 -524873 1 0 -527968 DOWN 1 -527968 0 0 -527980 UP 1 -527980 1 0 -528079 DOWN 1 -528079 0 0 -528109 UP 1 -528109 1 0 -528210 DOWN 1 -528210 0 0 -528221 UP 1 -528221 1 0 -528322 DOWN 1 -528322 0 0 -528348 UP 1 -528348 1 0 -528356 DOWN 1 -528356 0 0 -528365 UP 1 -528365 1 0 -528411 DOWN 1 -528411 0 0 -533697 UP 1 -533697 1 0 -533887 DOWN 1 -533887 0 0 -533943 UP 1 -533943 1 0 -535917 DOWN 1 -535917 0 0 -536171 UP 1 -536171 1 0 -536181 DOWN 1 -536181 0 0 -540135 UP 1 -540135 1 0 -540396 DOWN 1 -540396 0 0 -544774 UP 1 -544774 1 0 -544951 DOWN 1 -544951 0 0 -545039 UP 1 -545039 1 0 -545129 DOWN 1 -545129 0 0 -546501 UP 1 -546501 1 0 -546595 DOWN 1 -546595 0 0 -562134 UP 1 -562134 1 0 -562562 DOWN 1 -562562 0 0 -574774 UP 6 -574774 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -574832 DOWN 6 -574832 0 0 -~~~ -574860 contingency = 0 -574860 trialThresh = 100 -574861 timeMaxOut = 20 -574861 timeElapsed = 12 -574862 totalPokes = 48 -574862 totalRewards = 20 -574862 countPokes1 = 12 -574862 countRewards1 = 8 -574863 leafProbs1 = 80 -574863 countPokes2 = 8 -574864 countRewards2 = 0 -574878 leafProbs2 = 20 -574878 countPokes3 = 7 -574878 countRewards3 = 2 -574878 leafProbs3 = 20 -574879 countPokes4 = 7 -574879 countRewards4 = 4 -574879 leafProbs4 = 50 -574880 countPokes5 = 5 -574880 countRewards5 = 4 -574880 leafProbs5 = 80 -574894 countPokes6 = 9 -574894 countRewards6 = 2 -574894 leafProbs6 = 50 -~~~ -574895 UP 6 -574895 32 0 -574983 DOWN 6 -574983 0 0 -575020 UP 6 -575020 32 0 -575089 DOWN 6 -575089 0 0 -575126 UP 6 -575126 32 0 -575149 DOWN 6 -575149 0 0 -577744 UP 6 -577744 32 0 -577748 DOWN 6 -577748 0 0 -578154 UP 6 -578154 32 0 -579354 DOWN 6 -579354 0 0 -579382 UP 6 -579382 32 0 -579514 DOWN 6 -579514 0 0 -580826 UP 6 -580826 32 0 -581310 DOWN 6 -581310 0 0 -581654 UP 6 -581654 32 0 -581711 DOWN 6 -581711 0 0 -582734 UP 6 -582733 32 0 -582748 DOWN 6 -582748 0 0 -585351 UP 6 -585351 32 0 -587498 DOWN 6 -587498 0 0 -595639 UP 1 -595639 1 0 -595653 DOWN 1 -595653 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595663 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -595676 contingency = 0 -595676 trialThresh = 100 -595676 timeMaxOut = 20 -595677 timeElapsed = 13 -595677 totalPokes = 49 -595678 totalRewards = 21 -595678 countPokes1 = 13 -595678 countRewards1 = 9 -595678 leafProbs1 = 80 -595679 countPokes2 = 8 -595679 countRewards2 = 0 -595693 leafProbs2 = 20 -595694 countPokes3 = 7 -595694 countRewards3 = 2 -595694 leafProbs3 = 20 -595694 countPokes4 = 7 -595694 countRewards4 = 4 -595695 leafProbs4 = 50 -595695 countPokes5 = 5 -595696 countRewards5 = 4 -595696 leafProbs5 = 80 -595710 countPokes6 = 9 -595710 countRewards6 = 2 -595710 leafProbs6 = 50 -~~~ -595710 UP 1 -595710 1 64 -595807 DOWN 1 -595807 0 64 -595820 UP 1 -595820 1 64 -595874 DOWN 1 -595874 0 64 -595886 UP 1 -595886 1 64 -595963 1 0 -599155 DOWN 1 -599155 0 0 -599164 UP 1 -599164 1 0 -599808 DOWN 1 -599808 0 0 -688756 UP 6 -688756 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688779 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -688956 DOWN 6 -688956 0 2048 -~~~ -688973 contingency = 0 -688973 trialThresh = 100 -688974 timeMaxOut = 20 -688974 timeElapsed = 15 -688974 totalPokes = 50 -688974 totalRewards = 22 -688975 countPokes1 = 13 -688975 countRewards1 = 9 -688976 leafProbs1 = 80 -688976 countPokes2 = 8 -688976 countRewards2 = 0 -688990 leafProbs2 = 20 -688990 countPokes3 = 7 -688991 countRewards3 = 2 -688991 leafProbs3 = 20 -688992 countPokes4 = 7 -688992 countRewards4 = 4 -688992 leafProbs4 = 50 -688992 countPokes5 = 5 -688993 countRewards5 = 4 -688993 leafProbs5 = 80 -689007 countPokes6 = 10 -689007 countRewards6 = 3 -689007 leafProbs6 = 50 -~~~ -689008 UP 6 -689008 32 2048 -689079 32 0 -692128 DOWN 6 -692128 0 0 -692143 UP 6 -692143 32 0 -692685 DOWN 6 -692685 0 0 -698048 UP 6 -698048 32 0 -703204 DOWN 6 -703204 0 0 -704795 UP 5 -704795 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704833 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -704998 DOWN 5 -704998 0 1024 -~~~ -705014 contingency = 0 -705014 trialThresh = 100 -705014 timeMaxOut = 20 -705015 timeElapsed = 15 -705015 totalPokes = 51 -705016 totalRewards = 23 -705016 countPokes1 = 13 -705016 countRewards1 = 9 -705016 leafProbs1 = 80 -705017 countPokes2 = 8 -705017 countRewards2 = 0 -705031 leafProbs2 = 20 -705032 countPokes3 = 7 -705032 countRewards3 = 2 -705032 leafProbs3 = 20 -705032 countPokes4 = 7 -705033 countRewards4 = 4 -705033 leafProbs4 = 50 -705033 countPokes5 = 6 -705034 countRewards5 = 5 -705034 leafProbs5 = 80 -705048 countPokes6 = 10 -705048 countRewards6 = 3 -705048 leafProbs6 = 50 -~~~ -705048 UP 5 -705048 16 1024 -705133 16 0 -707856 DOWN 5 -707856 0 0 -707859 UP 5 -707859 16 0 -708389 DOWN 5 -708388 0 0 -708430 UP 5 -708430 16 0 -708506 DOWN 5 -708506 0 0 -708517 UP 5 -708517 16 0 -708729 DOWN 5 -708729 0 0 -708753 UP 5 -708753 16 0 -708838 DOWN 5 -708838 0 0 -708870 UP 5 -708870 16 0 -708943 DOWN 5 -708943 0 0 -712658 UP 6 -712658 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712691 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -712856 DOWN 6 -712856 0 2048 -712886 UP 6 -712886 32 2048 -~~~ -712891 contingency = 0 -712892 trialThresh = 100 -712892 timeMaxOut = 20 -712892 timeElapsed = 15 -712892 totalPokes = 52 -712893 totalRewards = 24 -712893 countPokes1 = 13 -712894 countRewards1 = 9 -712894 leafProbs1 = 80 -712894 countPokes2 = 8 -712894 countRewards2 = 0 -712908 leafProbs2 = 20 -712909 countPokes3 = 7 -712909 countRewards3 = 2 -712910 leafProbs3 = 20 -712910 countPokes4 = 7 -712910 countRewards4 = 4 -712910 leafProbs4 = 50 -712910 countPokes5 = 6 -712911 countRewards5 = 5 -712911 leafProbs5 = 80 -712925 countPokes6 = 11 -712925 countRewards6 = 4 -712926 leafProbs6 = 50 -~~~ -712990 32 0 -716085 DOWN 6 -716085 0 0 -716094 UP 6 -716094 32 0 -716526 DOWN 6 -716526 0 0 -725598 UP 1 -725598 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725628 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -725712 DOWN 1 -725712 0 64 -~~~ -725726 contingency = 0 -725726 trialThresh = 100 -725727 timeMaxOut = 20 -725727 timeElapsed = 16 -725728 totalPokes = 53 -725728 totalRewards = 25 -725728 countPokes1 = 14 -725728 countRewards1 = 10 -725729 leafProbs1 = 80 -725729 countPokes2 = 8 -725729 countRewards2 = 0 -725744 leafProbs2 = 20 -725744 countPokes3 = 7 -725744 countRewards3 = 2 -725744 leafProbs3 = 20 -725745 countPokes4 = 7 -725745 countRewards4 = 4 -725746 leafProbs4 = 50 -725746 countPokes5 = 6 -725746 countRewards5 = 5 -725746 leafProbs5 = 80 -725760 countPokes6 = 11 -725760 countRewards6 = 4 -725760 leafProbs6 = 50 -~~~ -725761 UP 1 -725761 1 64 -725780 DOWN 1 -725779 0 64 -725790 UP 1 -725790 1 64 -725928 1 0 -725996 DOWN 1 -725996 0 0 -726010 UP 1 -726010 1 0 -729338 DOWN 1 -729338 0 0 -734564 UP 1 -734564 1 0 -734740 DOWN 1 -734740 0 0 -758750 UP 2 -758750 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -758998 DOWN 2 -758998 0 0 -759011 UP 2 -759011 2 0 -~~~ -759026 contingency = 0 -759026 trialThresh = 100 -759027 timeMaxOut = 20 -759027 timeElapsed = 17 -759027 totalPokes = 54 -759027 totalRewards = 25 -759028 countPokes1 = 14 -759028 countRewards1 = 10 -759029 leafProbs1 = 80 -759029 countPokes2 = 9 -759029 countRewards2 = 0 -759043 leafProbs2 = 20 -759043 countPokes3 = 7 -759044 countRewards3 = 2 -759044 leafProbs3 = 20 -759045 countPokes4 = 7 -759045 countRewards4 = 4 -759045 leafProbs4 = 50 -759045 countPokes5 = 6 -759046 countRewards5 = 5 -759046 leafProbs5 = 80 -759060 countPokes6 = 11 -759060 countRewards6 = 4 -759061 leafProbs6 = 50 -~~~ -759247 DOWN 2 -759247 0 0 -764741 UP 2 -764741 2 0 -764877 DOWN 2 -764877 0 0 -768238 UP 1 -768238 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768267 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -768567 1 0 -769995 DOWN 1 -769995 0 0 -770003 UP 1 -770003 1 0 -~~~ -770020 contingency = 0 -770021 trialThresh = 100 -770021 timeMaxOut = 20 -770021 timeElapsed = 17 -770021 totalPokes = 55 -770022 totalRewards = 26 -770022 countPokes1 = 15 -770023 countRewards1 = 11 -770023 leafProbs1 = 80 -770023 countPokes2 = 9 -770023 countRewards2 = 0 -770037 leafProbs2 = 20 -770038 countPokes3 = 7 -770038 countRewards3 = 2 -770039 leafProbs3 = 20 -770039 countPokes4 = 7 -770039 countRewards4 = 4 -770039 leafProbs4 = 50 -770040 countPokes5 = 6 -770040 countRewards5 = 5 -770041 leafProbs5 = 80 -770054 countPokes6 = 11 -770055 countRewards6 = 4 -770055 leafProbs6 = 50 -~~~ -770958 DOWN 1 -770958 0 0 -770969 UP 1 -770969 1 0 -771063 DOWN 1 -771063 0 0 -792538 UP 4 -792538 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -792976 DOWN 4 -792976 0 0 -~~~ -793004 contingency = 0 -793004 trialThresh = 100 -793004 timeMaxOut = 20 -793004 timeElapsed = 17 -793005 totalPokes = 56 -793005 totalRewards = 26 -793006 countPokes1 = 15 -793006 countRewards1 = 11 -793006 leafProbs1 = 80 -793006 countPokes2 = 9 -793006 countRewards2 = 0 -793021 leafProbs2 = 20 -793021 countPokes3 = 7 -793022 countRewards3 = 2 -793022 leafProbs3 = 20 -793022 countPokes4 = 8 -793022 countRewards4 = 4 -793023 leafProbs4 = 50 -793023 countPokes5 = 6 -793023 countRewards5 = 5 -793024 leafProbs5 = 80 -793037 countPokes6 = 11 -793038 countRewards6 = 4 -793038 leafProbs6 = 50 -~~~ -796258 UP 3 -796258 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796294 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -796527 DOWN 3 -796527 0 256 -796548 UP 3 -796548 4 256 -~~~ -796560 contingency = 0 -796561 trialThresh = 100 -796561 timeMaxOut = 20 -796562 timeElapsed = 18 -796562 totalPokes = 57 -796562 totalRewards = 27 -796562 countPokes1 = 15 -796563 countRewards1 = 11 -796563 leafProbs1 = 80 -796564 countPokes2 = 9 -796564 countRewards2 = 0 -796578 leafProbs2 = 20 -796578 countPokes3 = 8 -796578 countRewards3 = 3 -796579 leafProbs3 = 20 -796579 countPokes4 = 8 -796580 countRewards4 = 4 -796580 leafProbs4 = 50 -796580 countPokes5 = 6 -796580 countRewards5 = 5 -796581 leafProbs5 = 80 -796594 countPokes6 = 11 -796595 countRewards6 = 4 -796595 leafProbs6 = 50 -~~~ -796596 4 0 -796624 DOWN 3 -796624 0 0 -796629 UP 3 -796629 4 0 -801350 DOWN 3 -801350 0 0 -806015 UP 4 -806015 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806042 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -806342 8 0 -809642 DOWN 4 -809642 0 0 -~~~ -809664 contingency = 0 -809664 trialThresh = 100 -809664 timeMaxOut = 20 -809665 timeElapsed = 18 -809665 totalPokes = 58 -809666 totalRewards = 28 -809666 countPokes1 = 15 -809666 countRewards1 = 11 -809666 leafProbs1 = 80 -809667 countPokes2 = 9 -809667 countRewards2 = 0 -809681 leafProbs2 = 20 -809682 countPokes3 = 8 -809682 countRewards3 = 3 -809682 leafProbs3 = 20 -809682 countPokes4 = 9 -809683 countRewards4 = 5 -809683 leafProbs4 = 50 -809683 countPokes5 = 6 -809684 countRewards5 = 5 -809684 leafProbs5 = 80 -809698 countPokes6 = 11 -809698 countRewards6 = 4 -809698 leafProbs6 = 50 -~~~ -813030 UP 3 -813030 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -813879 DOWN 3 -813879 0 0 -~~~ -813907 contingency = 0 -813908 trialThresh = 100 -813908 timeMaxOut = 20 -813908 timeElapsed = 18 -813908 totalPokes = 59 -813909 totalRewards = 28 -813909 countPokes1 = 15 -813910 countRewards1 = 11 -813910 leafProbs1 = 80 -813910 countPokes2 = 9 -813910 countRewards2 = 0 -813924 leafProbs2 = 20 -813925 countPokes3 = 9 -813925 countRewards3 = 3 -813926 leafProbs3 = 20 -813926 countPokes4 = 9 -813926 countRewards4 = 5 -813926 leafProbs4 = 50 -813927 countPokes5 = 6 -813927 countRewards5 = 5 -813928 leafProbs5 = 80 -813941 countPokes6 = 11 -813942 countRewards6 = 4 -813942 leafProbs6 = 50 -~~~ -813990 UP 3 -813990 4 0 -814046 DOWN 3 -814046 0 0 -814070 UP 3 -814070 4 0 -814092 DOWN 3 -814092 0 0 -818984 UP 4 -818984 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819019 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -819319 8 0 -822032 DOWN 4 -822032 0 0 -822048 UP 4 -822048 8 0 -~~~ -822052 contingency = 0 -822052 trialThresh = 100 -822052 timeMaxOut = 20 -822052 timeElapsed = 18 -822053 totalPokes = 60 -822053 totalRewards = 29 -822054 countPokes1 = 15 -822054 countRewards1 = 11 -822054 leafProbs1 = 80 -822054 countPokes2 = 9 -822055 countRewards2 = 0 -822069 leafProbs2 = 20 -822069 countPokes3 = 9 -822070 countRewards3 = 3 -822070 leafProbs3 = 20 -822070 countPokes4 = 10 -822070 countRewards4 = 6 -822071 leafProbs4 = 50 -822071 countPokes5 = 6 -822072 countRewards5 = 5 -822072 leafProbs5 = 80 -822086 countPokes6 = 11 -822086 countRewards6 = 4 -822086 leafProbs6 = 50 -~~~ -822142 DOWN 4 -822142 0 0 -825685 UP 3 -825685 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825714 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -825899 DOWN 3 -825899 0 256 -825911 UP 3 -825911 4 256 -~~~ -825924 contingency = 0 -825924 trialThresh = 100 -825924 timeMaxOut = 20 -825924 timeElapsed = 18 -825924 totalPokes = 61 -825925 totalRewards = 30 -825925 countPokes1 = 15 -825926 countRewards1 = 11 -825926 leafProbs1 = 80 -825926 countPokes2 = 9 -825926 countRewards2 = 0 -825941 leafProbs2 = 20 -825941 countPokes3 = 10 -825941 countRewards3 = 4 -825942 leafProbs3 = 20 -825942 countPokes4 = 10 -825942 countRewards4 = 6 -825942 leafProbs4 = 50 -825943 countPokes5 = 6 -825943 countRewards5 = 5 -825944 leafProbs5 = 80 -825958 countPokes6 = 11 -825958 countRewards6 = 4 -825958 leafProbs6 = 50 -~~~ -826000 DOWN 3 -826000 0 256 -826002 UP 3 -826002 4 256 -826014 4 0 -829816 DOWN 3 -829816 0 0 -838111 UP 4 -838111 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838136 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -838436 8 0 -841411 DOWN 4 -841411 0 0 -~~~ -841435 contingency = 0 -841436 trialThresh = 100 -841436 timeMaxOut = 20 -841437 timeElapsed = 19 -841437 totalPokes = 62 -841437 totalRewards = 31 -841437 countPokes1 = 15 -841438 countRewards1 = 11 -841438 leafProbs1 = 80 -841439 countPokes2 = 9 -841439 countRewards2 = 0 -841453 leafProbs2 = 20 -841453 countPokes3 = 10 -841453 countRewards3 = 4 -841454 leafProbs3 = 20 -841454 countPokes4 = 11 -841455 countRewards4 = 7 -841455 leafProbs4 = 50 -841455 countPokes5 = 6 -841455 countRewards5 = 5 -841455 leafProbs5 = 80 -841469 countPokes6 = 11 -841470 countRewards6 = 4 -841470 leafProbs6 = 50 -~~~ -843614 UP 3 -843614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843639 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -843789 DOWN 3 -843789 0 256 -843795 UP 3 -843795 4 256 -~~~ -843808 contingency = 0 -843809 trialThresh = 100 -843809 timeMaxOut = 20 -843809 timeElapsed = 19 -843809 totalPokes = 63 -843810 totalRewards = 32 -843810 countPokes1 = 15 -843810 countRewards1 = 11 -843811 leafProbs1 = 80 -843811 countPokes2 = 9 -843811 countRewards2 = 0 -843825 leafProbs2 = 20 -843826 countPokes3 = 11 -843826 countRewards3 = 5 -843827 leafProbs3 = 20 -843827 countPokes4 = 11 -843827 countRewards4 = 7 -843827 leafProbs4 = 50 -843827 countPokes5 = 6 -843828 countRewards5 = 5 -843828 leafProbs5 = 80 -843842 countPokes6 = 11 -843843 countRewards6 = 4 -843843 leafProbs6 = 50 -~~~ -843939 4 0 -845473 DOWN 3 -845473 0 0 -845480 UP 3 -845480 4 0 -846559 DOWN 3 -846559 0 0 -846574 UP 3 -846574 4 0 -847017 DOWN 3 -847017 0 0 -850281 UP 4 -850281 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850308 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -850608 8 0 -853788 DOWN 4 -853788 0 0 -~~~ -853810 contingency = 0 -853810 trialThresh = 100 -853811 timeMaxOut = 20 -853811 timeElapsed = 19 -853811 totalPokes = 64 -853811 totalRewards = 33 -853811 countPokes1 = 15 -853812 countRewards1 = 11 -853812 leafProbs1 = 80 -853813 countPokes2 = 9 -853813 countRewards2 = 0 -853827 leafProbs2 = 20 -853827 countPokes3 = 11 -853828 countRewards3 = 5 -853828 leafProbs3 = 20 -853829 countPokes4 = 12 -853829 countRewards4 = 8 -853829 leafProbs4 = 50 -853829 countPokes5 = 6 -853829 countRewards5 = 5 -853830 leafProbs5 = 80 -853844 countPokes6 = 11 -853844 countRewards6 = 4 -853845 leafProbs6 = 50 -~~~ -859749 UP 3 -859749 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -859929 DOWN 3 -859929 0 0 -~~~ -859955 contingency = 0 -859955 trialThresh = 100 -859955 timeMaxOut = 20 -859956 timeElapsed = 19 -859956 totalPokes = 65 -859957 totalRewards = 33 -859957 countPokes1 = 15 -859957 countRewards1 = 11 -859957 leafProbs1 = 80 -859958 countPokes2 = 9 -859958 countRewards2 = 0 -859972 leafProbs2 = 20 -859973 countPokes3 = 12 -859973 countRewards3 = 5 -859973 leafProbs3 = 20 -859973 countPokes4 = 12 -859974 countRewards4 = 8 -859974 leafProbs4 = 50 -859975 countPokes5 = 6 -859975 countRewards5 = 5 -859975 leafProbs5 = 80 -859989 countPokes6 = 11 -859989 countRewards6 = 4 -859989 leafProbs6 = 50 -~~~ -859990 UP 3 -859990 4 0 -860031 DOWN 3 -860031 0 0 -860033 UP 3 -860033 4 0 -860497 DOWN 3 -860497 0 0 -863294 UP 4 -863294 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -863951 DOWN 4 -863951 0 0 -~~~ -863973 contingency = 0 -863973 trialThresh = 100 -863973 timeMaxOut = 20 -863974 timeElapsed = 19 -863974 totalPokes = 66 -863975 totalRewards = 33 -863975 countPokes1 = 15 -863975 countRewards1 = 11 -863975 leafProbs1 = 80 -863976 countPokes2 = 9 -863976 countRewards2 = 0 -863990 leafProbs2 = 20 -863991 countPokes3 = 12 -863991 countRewards3 = 5 -863991 leafProbs3 = 20 -863991 countPokes4 = 13 -863992 countRewards4 = 8 -863992 leafProbs4 = 50 -863993 countPokes5 = 6 -863993 countRewards5 = 5 -863993 leafProbs5 = 80 -864007 countPokes6 = 11 -864007 countRewards6 = 4 -864007 leafProbs6 = 50 -~~~ -868524 UP 3 -868524 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -868698 DOWN 3 -868698 0 0 -~~~ -868713 contingency = 0 -868713 trialThresh = 100 -868713 timeMaxOut = 20 -868713 timeElapsed = 19 -868713 totalPokes = 67 -868714 totalRewards = 33 -868715 countPokes1 = 15 -868715 countRewards1 = 11 -868715 leafProbs1 = 80 -868715 countPokes2 = 9 -868715 countRewards2 = 0 -868730 leafProbs2 = 20 -868730 countPokes3 = 13 -868731 countRewards3 = 5 -868731 leafProbs3 = 20 -868731 countPokes4 = 13 -868731 countRewards4 = 8 -868732 leafProbs4 = 50 -868732 countPokes5 = 6 -868733 countRewards5 = 5 -868733 leafProbs5 = 80 -868747 countPokes6 = 11 -868747 countRewards6 = 4 -868747 leafProbs6 = 50 -~~~ -868747 UP 3 -868747 4 0 -868824 DOWN 3 -868824 0 0 -872741 UP 4 -872741 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -873169 DOWN 4 -873169 0 0 -~~~ -873187 contingency = 0 -873187 trialThresh = 100 -873187 timeMaxOut = 20 -873187 timeElapsed = 19 -873188 totalPokes = 68 -873188 totalRewards = 33 -873189 countPokes1 = 15 -873189 countRewards1 = 11 -873189 leafProbs1 = 80 -873189 countPokes2 = 9 -873190 countRewards2 = 0 -873204 leafProbs2 = 20 -873204 countPokes3 = 13 -873205 countRewards3 = 5 -873205 leafProbs3 = 20 -873205 countPokes4 = 14 -873205 countRewards4 = 8 -873206 leafProbs4 = 50 -873206 countPokes5 = 6 -873207 countRewards5 = 5 -873207 leafProbs5 = 80 -873221 countPokes6 = 11 -873221 countRewards6 = 4 -873221 leafProbs6 = 50 -~~~ -873252 UP 4 -873252 8 0 -873290 DOWN 4 -873290 0 0 -876725 UP 3 -876725 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876754 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -876920 DOWN 3 -876920 0 256 -876935 UP 3 -876935 4 256 -~~~ -876950 contingency = 0 -876950 trialThresh = 100 -876951 timeMaxOut = 20 -876951 timeElapsed = 20 -876951 totalPokes = 69 -876951 totalRewards = 34 -876952 countPokes1 = 15 -876952 countRewards1 = 11 -876953 leafProbs1 = 80 -876953 countPokes2 = 9 -876953 countRewards2 = 0 -876967 leafProbs2 = 20 -876968 countPokes3 = 14 -876968 countRewards3 = 6 -876969 leafProbs3 = 20 -876969 countPokes4 = 14 -876969 countRewards4 = 8 -876969 leafProbs4 = 50 -876970 countPokes5 = 6 -876970 countRewards5 = 5 -876971 leafProbs5 = 80 -876984 countPokes6 = 11 -876985 countRewards6 = 4 -876985 leafProbs6 = 50 -~~~ -876985 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -877054 4 0 -878633 DOWN 3 -878633 0 0 -878639 UP 3 -878639 4 0 -879721 DOWN 3 -879721 0 0 -886019 UP 1 -886019 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886047 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -886216 DOWN 1 -886216 0 64 -886239 UP 1 -886239 1 64 -~~~ -886244 contingency = 1 -886245 trialThresh = 100 -886245 timeMaxOut = 20 -886245 timeElapsed = 0 -886245 totalPokes = 1 -886245 totalRewards = 1 -886246 countPokes1 = 1 -886246 countRewards1 = 1 -886247 leafProbs1 = 80 -886247 countPokes2 = 0 -886247 countRewards2 = 0 -886261 leafProbs2 = 20 -886261 countPokes3 = 0 -886262 countRewards3 = 0 -886262 leafProbs3 = 20 -886263 countPokes4 = 0 -886263 countRewards4 = 0 -886263 leafProbs4 = 50 -886263 countPokes5 = 0 -886263 countRewards5 = 0 -886264 leafProbs5 = 80 -886277 countPokes6 = 0 -886278 countRewards6 = 0 -886278 leafProbs6 = 50 -~~~ -886347 1 0 -887839 DOWN 1 -887839 0 0 -887847 UP 1 -887847 1 0 -888811 DOWN 1 -888811 0 0 -924349 UP 1 -924349 1 0 -924708 DOWN 1 -924708 0 0 -936150 UP 6 -936150 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -936282 DOWN 6 -936282 0 0 -~~~ -936306 UP 6 -936306 32 0 -936307 contingency = 1 -936308 trialThresh = 100 -936308 timeMaxOut = 20 -936308 timeElapsed = 1 -936308 totalPokes = 2 -936309 totalRewards = 1 -936309 countPokes1 = 1 -936310 countRewards1 = 1 -936310 leafProbs1 = 80 -936310 countPokes2 = 0 -936324 countRewards2 = 0 -936324 leafProbs2 = 20 -936325 countPokes3 = 0 -936325 countRewards3 = 0 -936326 leafProbs3 = 20 -936326 countPokes4 = 0 -936326 countRewards4 = 0 -936326 leafProbs4 = 50 -936326 countPokes5 = 0 -936327 countRewards5 = 0 -936340 leafProbs5 = 80 -936341 countPokes6 = 1 -936341 countRewards6 = 0 -936342 leafProbs6 = 50 -~~~ -936592 DOWN 6 -936592 0 0 -939891 UP 6 -939891 32 0 -940306 DOWN 6 -940306 0 0 -944398 UP 5 -944398 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944428 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -944665 DOWN 5 -944665 0 1024 -944680 UP 5 -944680 16 1024 -~~~ -944694 contingency = 1 -944694 trialThresh = 100 -944695 timeMaxOut = 20 -944695 timeElapsed = 2 -944696 totalPokes = 3 -944696 totalRewards = 2 -944696 countPokes1 = 1 -944696 countRewards1 = 1 -944697 leafProbs1 = 80 -944697 countPokes2 = 0 -944698 countRewards2 = 0 -944711 leafProbs2 = 20 -944712 countPokes3 = 0 -944712 countRewards3 = 0 -944712 leafProbs3 = 20 -944712 countPokes4 = 0 -944713 countRewards4 = 0 -944713 leafProbs4 = 50 -944714 countPokes5 = 1 -944714 countRewards5 = 1 -944714 leafProbs5 = 80 -944728 countPokes6 = 1 -944728 countRewards6 = 0 -944728 leafProbs6 = 50 -~~~ -944729 16 0 -944845 DOWN 5 -944845 0 0 -944862 UP 5 -944862 16 0 -946617 DOWN 5 -946617 0 0 -946632 UP 5 -946632 16 0 -946716 DOWN 5 -946716 0 0 -946732 UP 5 -946732 16 0 -947449 DOWN 5 -947449 0 0 -948283 UP 5 -948283 16 0 -948312 DOWN 5 -948312 0 0 -952025 UP 6 -952025 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952051 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -952328 DOWN 6 -952328 0 2048 -952339 UP 6 -952339 32 2048 -952351 32 0 -~~~ -952355 contingency = 1 -952355 trialThresh = 100 -952355 timeMaxOut = 20 -952356 timeElapsed = 2 -952356 totalPokes = 4 -952357 totalRewards = 3 -952357 countPokes1 = 1 -952357 countRewards1 = 1 -952357 leafProbs1 = 80 -952357 countPokes2 = 0 -952358 countRewards2 = 0 -952372 leafProbs2 = 20 -952372 countPokes3 = 0 -952373 countRewards3 = 0 -952373 leafProbs3 = 20 -952373 countPokes4 = 0 -952373 countRewards4 = 0 -952374 leafProbs4 = 50 -952374 countPokes5 = 1 -952375 countRewards5 = 1 -952375 leafProbs5 = 80 -952389 countPokes6 = 2 -952389 countRewards6 = 1 -952389 leafProbs6 = 50 -~~~ -955287 DOWN 6 -955287 0 0 -955304 UP 6 -955304 32 0 -955841 DOWN 6 -955841 0 0 -955870 UP 6 -955870 32 0 -955948 DOWN 6 -955948 0 0 -968742 UP 1 -968742 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -968986 DOWN 1 -968986 0 0 -969009 UP 1 -969009 1 0 -~~~ -969010 contingency = 1 -969011 trialThresh = 100 -969011 timeMaxOut = 20 -969011 timeElapsed = 2 -969011 totalPokes = 5 -969012 totalRewards = 3 -969012 countPokes1 = 2 -969013 countRewards1 = 1 -969013 leafProbs1 = 80 -969013 countPokes2 = 0 -969013 countRewards2 = 0 -969027 leafProbs2 = 20 -969027 countPokes3 = 0 -969028 countRewards3 = 0 -969028 leafProbs3 = 20 -969029 countPokes4 = 0 -969029 countRewards4 = 0 -969029 leafProbs4 = 50 -969029 countPokes5 = 1 -969030 countRewards5 = 1 -969030 leafProbs5 = 80 -969044 countPokes6 = 2 -969044 countRewards6 = 1 -969045 leafProbs6 = 50 -~~~ -969325 DOWN 1 -969325 0 0 -969363 UP 1 -969363 1 0 -969412 DOWN 1 -969412 0 0 -980911 UP 1 -980911 1 0 -981057 DOWN 1 -981057 0 0 -995935 UP 1 -995935 1 0 -995980 DOWN 1 -995980 0 0 -1000551 UP 1 -1000551 1 0 -1000675 DOWN 1 -1000675 0 0 -1000813 UP 1 -1000813 1 0 -1000837 DOWN 1 -1000837 0 0 -1014932 UP 1 -1014932 1 0 -1015485 DOWN 1 -1015485 0 0 -1037157 UP 1 -1037157 1 0 -1039155 DOWN 1 -1039155 0 0 -1045580 UP 2 -1045580 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045606 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1045801 DOWN 2 -1045801 0 128 -1045812 UP 2 -1045812 2 128 -~~~ -1045827 contingency = 1 -1045827 trialThresh = 100 -1045828 timeMaxOut = 20 -1045828 timeElapsed = 4 -1045828 totalPokes = 6 -1045828 totalRewards = 4 -1045829 countPokes1 = 2 -1045829 countRewards1 = 1 -1045830 leafProbs1 = 80 -1045830 countPokes2 = 1 -1045830 countRewards2 = 1 -1045844 leafProbs2 = 20 -1045844 countPokes3 = 0 -1045845 countRewards3 = 0 -1045845 leafProbs3 = 20 -1045846 countPokes4 = 0 -1045846 countRewards4 = 0 -1045846 leafProbs4 = 50 -1045846 countPokes5 = 1 -1045846 countRewards5 = 1 -1045861 leafProbs5 = 80 -1045861 countPokes6 = 2 -1045862 countRewards6 = 1 -1045862 leafProbs6 = 50 -~~~ -1045906 2 0 -1046489 DOWN 2 -1046489 0 0 -1046492 UP 2 -1046492 2 0 -1046736 DOWN 2 -1046736 0 0 -1046740 UP 2 -1046740 2 0 -1048862 DOWN 2 -1048862 0 0 -1048885 UP 2 -1048885 2 0 -1049314 DOWN 2 -1049314 0 0 -1049320 UP 2 -1049320 2 0 -1049417 DOWN 2 -1049417 0 0 -1055638 UP 1 -1055638 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1056137 DOWN 1 -1056137 0 0 -~~~ -1056161 contingency = 1 -1056161 trialThresh = 100 -1056161 timeMaxOut = 20 -1056162 timeElapsed = 4 -1056162 totalPokes = 7 -1056163 totalRewards = 4 -1056163 countPokes1 = 3 -1056163 countRewards1 = 1 -1056163 leafProbs1 = 80 -1056164 countPokes2 = 1 -1056164 countRewards2 = 1 -1056178 leafProbs2 = 20 -1056179 countPokes3 = 0 -1056179 countRewards3 = 0 -1056179 leafProbs3 = 20 -1056179 countPokes4 = 0 -1056180 countRewards4 = 0 -1056180 leafProbs4 = 50 -1056181 countPokes5 = 1 -1056181 countRewards5 = 1 -1056195 leafProbs5 = 80 -1056195 countPokes6 = 2 -1056195 countRewards6 = 1 -1056196 leafProbs6 = 50 -~~~ -1075389 UP 1 -1075389 1 0 -1077673 DOWN 1 -1077673 0 0 -1080094 UP 1 -1080094 1 0 -1080643 DOWN 1 -1080643 0 0 -1081045 UP 1 -1081045 1 0 -1081200 DOWN 1 -1081200 0 0 -1083005 UP 1 -1083005 1 0 -1083449 DOWN 1 -1083449 0 0 -1102276 UP 1 -1102276 1 0 -1102327 DOWN 1 -1102327 0 0 -1102345 UP 1 -1102345 1 0 -1102777 DOWN 1 -1102777 0 0 -1102819 UP 1 -1102819 1 0 -1102934 DOWN 1 -1102934 0 0 -1103297 UP 1 -1103297 1 0 -1103387 DOWN 1 -1103387 0 0 -1103417 UP 1 -1103417 1 0 -1103475 DOWN 1 -1103475 0 0 -1103807 UP 1 -1103807 1 0 -1103947 DOWN 1 -1103947 0 0 -1103991 UP 1 -1103991 1 0 -1104026 DOWN 1 -1104026 0 0 -1118606 UP 1 -1118606 1 0 -1118640 DOWN 1 -1118640 0 0 -1131899 UP 6 -1131899 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1132172 DOWN 6 -1132172 0 0 -1132200 UP 6 -1132200 32 0 -~~~ -1132203 contingency = 1 -1132203 trialThresh = 100 -1132204 timeMaxOut = 20 -1132204 timeElapsed = 6 -1132204 totalPokes = 8 -1132204 totalRewards = 4 -1132205 countPokes1 = 3 -1132205 countRewards1 = 1 -1132205 leafProbs1 = 80 -1132206 countPokes2 = 1 -1132206 countRewards2 = 1 -1132220 leafProbs2 = 20 -1132220 countPokes3 = 0 -1132220 countRewards3 = 0 -1132221 leafProbs3 = 20 -1132221 countPokes4 = 0 -1132222 countRewards4 = 0 -1132222 leafProbs4 = 50 -1132222 countPokes5 = 1 -1132222 countRewards5 = 1 -1132237 leafProbs5 = 80 -1132237 countPokes6 = 3 -1132238 countRewards6 = 1 -1132238 leafProbs6 = 50 -~~~ -1132394 DOWN 6 -1132394 0 0 -1132422 UP 6 -1132422 32 0 -1132437 DOWN 6 -1132437 0 0 -1157002 UP 6 -1157002 32 0 -1157518 DOWN 6 -1157518 0 0 -1160471 UP 1 -1160471 1 0 -1160482 DOWN 1 -1160482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1160504 UP 1 -1160504 1 0 -~~~ -1160510 contingency = 1 -1160510 trialThresh = 100 -1160510 timeMaxOut = 20 -1160511 timeElapsed = 7 -1160511 totalPokes = 9 -1160512 totalRewards = 4 -1160512 countPokes1 = 4 -1160512 countRewards1 = 1 -1160512 leafProbs1 = 80 -1160513 countPokes2 = 1 -1160513 countRewards2 = 1 -1160527 leafProbs2 = 20 -1160528 countPokes3 = 0 -1160528 countRewards3 = 0 -1160528 leafProbs3 = 20 -1160528 countPokes4 = 0 -1160528 countRewards4 = 0 -1160529 leafProbs4 = 50 -1160529 countPokes5 = 1 -1160530 countRewards5 = 1 -1160544 leafProbs5 = 80 -1160544 countPokes6 = 3 -1160544 countRewards6 = 1 -1160545 leafProbs6 = 50 -~~~ -1160809 DOWN 1 -1160809 0 0 -1160823 UP 1 -1160823 1 0 -1160943 DOWN 1 -1160943 0 0 - - description: state script log run 2 - task_epochs: 4, -] -2021-01-27 21:01:17,130 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:01:18,175 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:01:18,176 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:01:18,176 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:01:18,177 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:01:18,177 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:01:18,186 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:01:18,186 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:01:18,191 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:01:18,192 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:01:18,193 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:01:18,792 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:01:18,792 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:01:18,792 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:01:18,793 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:01:18,794 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:01:18,826 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:01:18,828 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:01:18,830 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:01:18,830 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:01:20,910 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:01:20,912 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:05:10,892 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:05:10,957 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:05:10,961 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:05:10,961 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:05:10,961 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:05:15,389 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:05:15,391 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:05:15,391 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:05:15,391 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:05:15,392 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:10:14,691 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:10:14,761 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:10:14,761 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:10:14,762 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:10:14,762 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:10:19,961 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:10:19,969 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:10:20,113 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:10:20,450 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:10:20,450 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:10:20,450 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:10:20,451 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:10:20,452 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:10:20,455 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:10:20,456 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:10:20,456 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140213648128400 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:10:20,457 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:10:20,649 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:10:20,650 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:10:20,650 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:10:20,651 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:10:20,651 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:10:20,658 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:10:20,658 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:10:20,662 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:10:20,662 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:10:20,663 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:10:20,664 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:10:20,748 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:10:20,749 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:10:20,749 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:10:20,749 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:10:20,750 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:10:20,782 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:10:20,784 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:10:20,785 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:10:20,785 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:10:21,119 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:10:21,120 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:10:51,832 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:10:51,832 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:10:51,833 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:10:51,833 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:10:51,834 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:10:51,886 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:10:51,887 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:11:43,752 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 21:11:43,759 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 21:11:43,759 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 21:12:25,479 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-27 21:12:25,487 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:14:19,955 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-27 21:15:33,475 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:17:13,078 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:18:02,079 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23206543 does not exist in continioustime dictionary! -NoneType: None -2021-01-27 21:18:02,086 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23207135 does not exist in continioustime dictionary! -NoneType: None -2021-01-27 21:18:04,520 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. -2021-01-27 21:18:05,034 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Building -2021-01-27 21:18:05,035 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Injecting -2021-01-27 21:18:05,036 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Building -2021-01-27 21:18:05,037 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Injecting -2021-01-27 21:18:05,038 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Building -2021-01-27 21:18:05,539 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Injecting -2021-01-27 21:18:05,541 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Building -2021-01-27 21:18:05,984 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Injecting -2021-01-27 21:28:23,151 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:28:23,222 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:28:23,224 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:28:23,224 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:28:23,224 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:28:27,227 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:28:27,235 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:28:27,236 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:28:27,236 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:28:27,236 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:28:27,368 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:28:27,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:28:27,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:28:27,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:28:27,674 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:28:27,682 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:28:27,683 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:28:27,683 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140281990129488 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:28:27,684 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:28:27,863 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:28:27,864 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:28:27,864 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:28:27,865 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:28:27,865 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:28:27,871 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:28:27,872 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:28:27,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:28:27,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:28:27,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:28:27,877 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:28:27,877 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:28:27,877 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:28:27,957 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:28:27,957 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:28:27,958 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:28:27,958 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:28:27,959 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:28:27,988 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:28:27,991 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:28:27,992 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:28:27,992 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:28:28,328 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:28:28,329 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:28:58,444 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:28:58,444 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:28:58,445 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:28:58,445 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:28:58,445 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:28:58,496 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:28:58,496 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:28:58,496 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:28:58,497 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:28:58,497 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:29:49,006 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 21:29:49,017 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 21:29:49,018 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 21:33:04,802 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:33:04,877 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:33:04,879 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:33:04,880 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:33:04,880 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:33:09,279 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:33:09,290 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:33:09,415 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:33:09,709 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:33:09,710 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:33:09,711 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:33:09,719 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:33:09,719 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:33:09,720 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140302349199952 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:33:09,720 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:33:09,906 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:33:09,907 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:33:09,907 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:33:09,907 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:33:09,908 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:33:09,914 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:33:09,914 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:33:09,918 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:33:09,918 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:33:09,919 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:33:09,920 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:33:10,000 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:33:10,001 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:33:10,001 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:33:10,001 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:33:10,002 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:33:10,030 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:33:10,032 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:33:10,034 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:33:10,034 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:33:10,369 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:33:10,370 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:33:40,396 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:33:40,396 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:33:40,397 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:33:40,397 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:33:40,397 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:33:40,447 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:33:40,448 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:34:29,024 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 21:34:29,035 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 21:34:29,035 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 21:34:37,925 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-27 21:34:37,926 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:38:07,651 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:38:07,716 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:38:07,721 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:38:07,721 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:38:07,721 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:38:12,205 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:38:12,212 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:38:12,212 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:38:12,212 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:38:12,213 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:38:12,347 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:38:12,667 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:38:12,668 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:38:12,669 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:38:12,669 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:38:12,676 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:38:12,676 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:38:12,677 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140256296835152 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:38:12,677 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:38:12,862 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:38:12,863 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:38:12,871 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:38:12,871 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:38:12,875 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:38:12,876 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:38:12,961 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:38:12,962 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:38:12,962 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:38:12,962 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:38:12,963 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:38:12,994 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:38:12,997 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:38:12,998 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:38:12,998 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:38:13,354 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:38:13,355 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:38:45,433 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:38:45,433 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:38:45,434 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:38:45,434 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:38:45,434 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:38:45,485 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:38:45,486 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:39:34,914 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 21:39:34,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 21:39:34,924 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 21:41:26,545 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:41:26,611 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:41:26,613 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:41:26,613 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:41:26,613 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:41:30,772 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:41:30,783 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:41:30,783 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:41:30,783 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:41:30,784 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:41:30,899 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:41:31,271 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:41:31,272 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:41:31,273 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:41:31,274 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:41:31,277 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:41:31,277 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:41:31,278 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140247689115792 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:41:31,278 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:41:31,472 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:41:31,472 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:41:31,473 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:41:31,473 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:41:31,473 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:41:31,480 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:41:31,480 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:41:31,484 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:41:31,485 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:41:31,621 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:41:31,622 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:41:31,655 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:41:31,657 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:41:31,659 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:41:31,659 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:41:31,987 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:41:31,989 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:42:01,938 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:42:01,938 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:42:01,938 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:42:01,939 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:42:01,939 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:42:01,990 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:42:01,991 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:42:49,625 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 21:42:49,636 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 21:42:49,636 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 21:45:51,928 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:45:52,133 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:45:52,141 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:45:52,142 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:45:52,142 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:45:56,534 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:45:56,548 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:45:56,548 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:45:56,548 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:45:56,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:45:56,733 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:45:57,067 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:45:57,067 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:45:57,068 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:45:57,068 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:45:57,069 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:45:57,069 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:45:57,069 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:45:57,070 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:45:57,070 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:45:57,071 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:45:57,071 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:45:57,071 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:45:57,072 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:45:57,072 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:45:57,072 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:45:57,080 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:45:57,081 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:45:57,083 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140542913005712 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:45:57,083 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:45:57,304 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:45:57,306 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:45:57,306 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:45:57,307 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:45:57,309 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:45:57,328 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:45:57,329 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:45:57,342 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:45:57,343 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:45:57,344 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:45:57,344 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:45:57,345 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:45:57,345 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:45:57,345 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:45:57,346 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:45:57,347 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:45:57,347 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:45:57,347 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:45:57,348 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:45:57,436 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:45:57,437 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:45:57,438 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:45:57,438 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:45:57,442 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:45:57,543 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:45:57,553 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:45:57,557 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:45:57,557 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:45:57,909 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:45:57,913 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:46:32,397 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:46:32,398 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:46:32,399 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:46:32,400 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:46:32,401 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:46:32,458 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:46:32,459 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:46:32,459 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:46:32,459 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:46:32,460 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:47:25,860 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 21:47:25,878 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 21:47:25,879 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 21:49:03,561 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:49:03,627 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:49:03,629 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:49:03,629 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:49:03,629 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:49:08,068 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:49:08,075 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:49:08,207 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:49:08,559 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:49:08,559 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:49:08,559 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:49:08,560 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:49:08,561 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:49:08,569 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:49:08,569 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:49:08,570 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140512107391312 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:49:08,570 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:49:08,758 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:49:08,759 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:49:08,759 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:49:08,760 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:49:08,760 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:49:08,768 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:49:08,769 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:49:08,773 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:49:08,773 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:49:08,774 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:49:08,775 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:49:08,775 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:49:08,861 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:49:08,862 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:49:08,862 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:49:08,862 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:49:08,863 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:49:08,893 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:49:08,895 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:49:08,897 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:49:08,897 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:49:09,242 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:49:09,243 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:49:40,101 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:49:40,101 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:49:40,102 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:49:40,102 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:49:40,102 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:49:40,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:49:40,154 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:50:28,932 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 21:50:28,943 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 21:50:28,944 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 21:51:54,300 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-27 21:51:54,308 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 21:53:55,926 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-27 21:54:57,146 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = True -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-27 21:54:57,189 rec_to_binaries.core: INFO Extracting analog data... -2021-01-27 21:55:12,231 rec_to_binaries.core: INFO Extracting DIO... -2021-01-27 21:55:34,296 rec_to_binaries.core: INFO Extracting mda... -2021-01-27 21:58:47,785 rec_to_binaries.core: INFO Extracting time... -2021-01-27 21:59:00,614 rec_to_binaries.core: INFO Making position directory... -2021-01-27 21:59:00,625 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-27 21:59:00,625 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-27 21:59:00,626 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-27 21:59:00,626 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-27 21:59:00,767 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-27 21:59:01,113 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-27 21:59:01,114 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-27 21:59:01,115 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-27 21:59:01,117 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-27 21:59:01,117 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-27 21:59:01,118 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140601226979600 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-27 21:59:01,118 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-27 21:59:01,305 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-27 21:59:01,306 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-27 21:59:01,306 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-27 21:59:01,306 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-27 21:59:01,307 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-27 21:59:01,313 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-27 21:59:01,314 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-27 21:59:01,318 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-27 21:59:01,318 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-27 21:59:01,318 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-27 21:59:01,319 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-27 21:59:01,320 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-27 21:59:01,403 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-27 21:59:01,403 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-27 21:59:01,404 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-27 21:59:01,404 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-27 21:59:01,405 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-27 21:59:01,434 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-27 21:59:01,436 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-27 21:59:01,438 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-27 21:59:01,438 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-27 21:59:01,807 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-27 21:59:01,808 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-27 21:59:33,381 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-27 21:59:33,382 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-27 21:59:33,382 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-27 21:59:33,383 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-27 21:59:33,383 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-27 21:59:33,437 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-27 21:59:33,438 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-27 21:59:33,438 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-27 21:59:33,438 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-27 21:59:33,438 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 22:00:24,386 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-27 22:00:24,397 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-27 22:00:24,397 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-27 22:01:16,066 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-27 22:01:16,380 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 22:03:10,062 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-27 22:10:09,545 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 22:11:53,652 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-27 22:12:41,605 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23206543 does not exist in continioustime dictionary! -NoneType: None -2021-01-27 22:12:41,611 rec_to_nwb.processing.time.timestamp_converter: ERROR Following key: 23207135 does not exist in continioustime dictionary! -NoneType: None -2021-01-27 22:12:47,977 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. -2021-01-27 22:12:48,529 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Building -2021-01-27 22:12:48,532 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Injecting -2021-01-27 22:12:48,533 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Building -2021-01-27 22:12:48,534 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Injecting -2021-01-27 22:12:48,535 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Building -2021-01-27 22:12:49,111 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Injecting -2021-01-27 22:12:49,113 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Building -2021-01-27 22:12:49,655 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Injecting -2021-01-28 09:03:46,465 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 09:03:46,551 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 09:03:46,552 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 09:03:46,552 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 09:03:46,552 rec_to_binaries.core: INFO Extracting time... -2021-01-28 09:03:51,941 rec_to_binaries.core: INFO Making position directory... -2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 09:03:51,953 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 09:03:52,103 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 09:03:52,477 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 09:03:52,477 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 09:03:52,477 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 09:03:52,478 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 09:03:52,479 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 09:03:52,480 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 09:03:52,480 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 09:03:52,480 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 09:03:52,481 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 09:03:52,481 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 09:03:52,482 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140689047308752 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 09:03:52,482 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 09:03:52,700 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 09:03:52,701 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 09:03:52,701 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 09:03:52,702 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 09:03:52,702 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 09:03:52,713 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 09:03:52,714 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 09:03:52,720 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 09:03:52,720 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 09:03:52,720 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 09:03:52,721 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 09:03:52,722 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 09:03:52,870 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 09:03:52,870 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 09:03:52,871 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 09:03:52,871 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 09:03:52,873 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 09:03:52,922 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 09:03:52,924 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 09:03:52,926 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 09:03:52,927 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 09:03:53,451 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 09:03:53,456 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 09:04:28,677 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 09:04:28,677 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 09:04:28,677 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 09:04:28,678 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 09:04:28,678 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 09:04:28,733 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 09:04:28,734 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 09:05:23,540 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 09:05:23,545 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 09:05:23,545 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 09:06:48,030 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 09:06:48,368 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 09:08:53,779 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 09:15:23,998 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 09:15:24,072 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 09:15:24,074 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 09:15:24,075 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 09:15:24,075 rec_to_binaries.core: INFO Extracting time... -2021-01-28 09:15:28,610 rec_to_binaries.core: INFO Making position directory... -2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 09:15:28,619 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 09:15:28,757 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 09:15:29,096 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 09:15:29,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 09:15:29,098 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 09:15:29,100 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 09:15:29,101 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 09:15:29,101 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140213774051984 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 09:15:29,102 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 09:15:29,299 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 09:15:29,300 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 09:15:29,300 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 09:15:29,300 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 09:15:29,301 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 09:15:29,309 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 09:15:29,309 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 09:15:29,313 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 09:15:29,313 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 09:15:29,314 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 09:15:29,315 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 09:15:29,411 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 09:15:29,411 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 09:15:29,412 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 09:15:29,412 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 09:15:29,413 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 09:15:29,446 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 09:15:29,449 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 09:15:29,450 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 09:15:29,450 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 09:15:29,775 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 09:15:29,776 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 09:16:02,548 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 09:16:02,548 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 09:16:02,549 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 09:16:02,549 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 09:16:02,550 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 09:16:02,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 09:16:02,604 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 09:16:59,799 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 09:16:59,803 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 09:16:59,803 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 09:18:09,634 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 09:18:09,975 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 09:19:22,619 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 09:19:22,726 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 09:19:22,727 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 09:19:22,728 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 09:19:22,728 rec_to_binaries.core: INFO Extracting time... -2021-01-28 09:19:27,309 rec_to_binaries.core: INFO Making position directory... -2021-01-28 09:19:27,319 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 09:19:27,319 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 09:19:27,320 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 09:19:27,320 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 09:19:27,464 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 09:19:27,792 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 09:19:27,793 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 09:19:27,794 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 09:19:27,795 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 09:19:27,796 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 09:19:27,796 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 09:19:27,797 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140347596326416 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 09:19:27,797 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 09:19:27,992 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 09:19:27,993 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 09:19:27,993 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 09:19:27,994 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 09:19:27,994 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 09:19:28,002 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 09:19:28,002 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 09:19:28,008 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 09:19:28,008 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 09:19:28,009 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 09:19:28,010 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 09:19:28,103 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 09:19:28,104 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 09:19:28,104 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 09:19:28,104 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 09:19:28,105 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 09:19:28,138 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 09:19:28,141 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 09:19:28,142 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 09:19:28,142 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 09:19:28,506 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 09:19:28,508 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 09:20:03,561 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 09:20:03,561 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 09:20:03,562 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 09:20:03,562 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 09:20:03,562 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 09:20:03,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 09:20:03,616 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 09:20:55,761 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 09:20:55,771 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 09:20:55,771 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 09:22:03,632 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 09:22:03,967 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time dict from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 09:23:56,190 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 10:23:01,477 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = despereaux -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-01-28 10:23:01,791 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 10:23:01,793 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 10:23:01,793 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 10:23:01,794 rec_to_binaries.core: INFO Extracting time... -2021-01-28 10:27:40,923 rec_to_binaries.core: INFO Making position directory... -2021-01-28 10:27:41,102 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 10:27:41,102 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 -2021-01-28 10:27:41,103 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 10:27:41,103 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = despereaux -date = 20191125 -nwb_metadata = Experiment Info: -Experimenter: Anna Gillespie -Description: Sungod control -Session Id: 4 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/nwb/despereaux20191125.nwb - -2021-01-28 10:27:41,560 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! - , [] -2021-01-28 16:09:16,667 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = Jaq -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-01-28 16:09:17,486 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 16:09:17,488 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 16:09:17,488 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 16:09:17,489 rec_to_binaries.core: INFO Extracting time... -2021-01-28 16:10:51,423 rec_to_binaries.core: INFO Making position directory... -2021-01-28 16:10:51,853 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 16:10:51,854 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 -2021-01-28 16:10:51,854 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 16:10:51,854 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = Jaq -date = 20190826 -nwb_metadata = Experiment Info: -Experimenter: Abhilasha Joshi -Description: Theta and gait -Session Id: jaq_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/nwb/Jaq20190826.nwb - -2021-01-28 16:10:52,611 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! - , [] -2021-01-28 16:10:56,077 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 16:10:56,670 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 16:10:56,670 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 16:10:56,671 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 16:10:56,672 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 16:10:56,673 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 16:10:56,675 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 16:10:56,676 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 16:10:56,677 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140480029743056 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -2001580 totRewards = 1 -2001580 64 200 -2001618 0 136 -2001730 64 136 -2001776 0 136 -2001780 0 128 -2003264 64 128 -2003377 0 128 -2003446 64 128 -2003519 0 128 -2003570 64 128 -2003646 0 128 -2003696 64 128 -2003785 0 128 -2003826 64 128 -2004082 0 128 -2004105 64 128 -2004232 0 128 -2004274 64 128 -2004393 0 128 -2004427 64 128 -2004551 0 128 -2004583 64 128 -2004720 0 128 -2004752 64 128 -2004888 0 128 -2004930 64 128 -2005077 0 128 -2005116 64 128 -2005252 0 128 -2005284 64 128 -2005395 0 128 -2005465 64 128 -2005540 0 128 -2005603 64 128 -2005710 0 128 -2005749 64 128 -2005861 0 128 -2005934 64 128 -2006019 0 128 -2006065 64 128 -2006182 0 128 -2006217 64 128 -2006329 0 128 -2006344 64 128 -2006477 0 128 -2006494 64 128 -2006626 0 128 -2006639 64 128 -2006774 0 128 -2006801 64 128 -2006925 0 128 -2006975 64 128 -2007855 0 128 -2007878 64 128 -2008024 0 128 -2008063 64 128 -2008169 0 128 -2008218 64 128 -2008346 0 128 -2008414 64 128 -2008525 0 128 -2008545 64 128 -2008694 0 128 -2008728 64 128 -2008871 0 128 -2008882 64 128 -2010662 0 128 -2010678 64 128 -2011803 0 128 -2011833 64 128 -2011970 0 128 -2012060 64 128 -2012163 0 128 -2012186 64 128 -2012343 0 128 -2012375 64 128 -2012524 0 128 -2012561 64 128 -2012567 0 128 -2012582 64 128 -2012666 0 128 -2012692 64 128 -2012709 0 128 -2012758 64 128 -2012843 0 128 -2012878 64 128 -2012913 0 128 -2012973 64 128 -2013026 0 128 -2013031 64 128 -2013034 0 128 -2013052 64 128 -2013239 0 128 -2034560 totRewards = 2 -2034560 128 144 -2034760 128 128 -2035091 0 0 -2035175 128 0 -2035224 0 0 -2035241 128 0 -2035642 0 0 -2035669 128 0 -2035934 0 0 -2035976 128 0 -2036086 0 0 -2036140 128 0 -2036249 0 0 -2036307 128 0 -2036411 0 0 -2036492 128 0 -2036582 0 0 -2036660 128 0 -2036748 0 0 -2036816 128 0 -2036899 0 0 -2036961 128 0 -2037070 0 0 -2037137 128 0 -2037244 0 0 -2037376 128 0 -2037423 0 0 -2037507 128 0 -2037610 0 0 -2037670 128 0 -2037770 0 0 -2037803 128 0 -2037924 0 0 -2037933 128 0 -2038187 0 0 -2038197 128 0 -2038342 0 0 -2038355 128 0 -2038819 0 0 -2038855 128 0 -2039188 0 0 -2039253 128 0 -2039357 0 0 -2039426 128 0 -2039462 0 0 -2039490 128 0 -2039548 0 0 -2039667 128 0 -2039739 0 0 -2039810 128 0 -2039928 0 0 -2039981 128 0 -2040117 0 0 -2040208 128 0 -2040298 0 0 -2040373 128 0 -2040478 0 0 -2040515 128 0 -2040657 0 0 -2040697 128 0 -2040788 0 0 -2040829 128 0 -2040851 0 0 -2040860 128 0 -2041365 0 0 -2041423 128 0 -2041584 0 0 -2041699 128 0 -2041769 0 0 -2041844 128 0 -2041969 0 0 -2042090 128 0 -2042173 0 0 -2042311 128 0 -2042343 0 0 -2063830 128 0 -2063874 0 0 -2066005 128 0 -2067249 0 0 -2067324 128 0 -2067441 0 0 -2074645 totRewards = 3 -2074645 64 8 -2074658 0 8 -2074845 0 0 -2074976 64 0 -2075045 0 0 -2075058 64 0 -2075512 0 0 -2075546 64 0 -2075789 0 0 -2075823 64 0 -2076095 0 0 -2076119 64 0 -2076245 0 0 -2076272 64 0 -2076412 0 0 -2076445 64 0 -2076571 0 0 -2076603 64 0 -2076738 0 0 -2076767 64 0 -2076901 0 0 -2076934 64 0 -2077052 0 0 -2077104 64 0 -2077209 0 0 -2077249 64 0 -2077518 0 0 -2077538 64 0 -2077985 0 0 -2077999 64 0 -2078158 0 0 -2078172 64 0 -2078842 0 0 -2078882 64 0 -2079003 0 0 -2079062 64 0 -2079188 0 0 -2079210 64 0 -2079323 0 0 -2079338 64 0 -2079360 0 0 -2079427 64 0 -2079489 0 0 -2079575 64 0 -2079656 0 0 -2079680 64 0 -2081117 0 0 -2081135 64 0 -2081295 0 0 -2081324 64 0 -2081462 0 0 -2081533 64 0 -2081625 0 0 -2096193 totRewards = 4 -2096193 128 16 -2096393 128 0 -2096867 0 0 -2096907 128 0 -2097582 0 0 -2097600 128 0 -2097712 0 0 -2097733 128 0 -2097848 0 0 -2097876 128 0 -2097988 0 0 -2098020 128 0 -2098129 0 0 -2098160 128 0 -2098287 0 0 -2098319 128 0 -2098435 0 0 -2098479 128 0 -2098589 0 0 -2098635 128 0 -2098748 0 0 -2098802 128 0 -2098919 0 0 -2098997 128 0 -2099135 0 0 -2099189 128 0 -2099304 0 0 -2099356 128 0 -2099465 0 0 -2099508 128 0 -2099929 0 0 -2099945 128 0 -2100094 0 0 -2100103 128 0 -2100267 0 0 -2100306 128 0 -2100435 0 0 -2100498 128 0 -2100541 0 0 -2100563 128 0 -2100631 0 0 -2100699 128 0 -2100805 0 0 -2100866 128 0 -2100997 0 0 -2101127 128 0 -2101177 0 0 -2101305 128 0 -2101366 0 0 -2101520 128 0 -2101559 0 0 -2101741 128 0 -2101765 0 0 -2102142 128 0 -2102175 0 0 -2102328 128 0 -2102369 0 0 -2102507 128 0 -2102562 0 0 -2102681 128 0 -2102720 0 0 -2105862 128 0 -2105868 0 0 -2114611 totRewards = 5 -2114611 64 8 -2114766 0 8 -2114811 0 0 -2114881 64 0 -2115110 0 0 -2115120 64 0 -2115389 0 0 -2115397 64 0 -2116252 0 0 -2116283 64 0 -2116436 0 0 -2116450 64 0 -2116584 0 0 -2116611 64 0 -2116741 0 0 -2116780 64 0 -2116895 0 0 -2116944 64 0 -2117053 0 0 -2117100 64 0 -2117213 0 0 -2117240 64 0 -2117365 0 0 -2117398 64 0 -2117526 0 0 -2117554 64 0 -2117852 0 0 -2117876 64 0 -2118025 0 0 -2118034 64 0 -2118175 0 0 -2118220 64 0 -2118353 0 0 -2118363 64 0 -2118479 0 0 -2118501 64 0 -2118516 0 0 -2118552 64 0 -2118559 0 0 -2118580 64 0 -2118637 0 0 -2118740 64 0 -2118800 0 0 -2118878 64 0 -2120024 0 0 -2120051 64 0 -2120186 0 0 -2120233 64 0 -2120352 0 0 -2140288 totRewards = 6 -2140288 128 16 -2140488 128 0 -2140841 0 0 -2140904 128 0 -2141213 0 0 -2141279 128 0 -2141616 0 0 -2141629 128 0 -2141863 0 0 -2141879 128 0 -2142145 0 0 -2142170 128 0 -2142292 0 0 -2142316 128 0 -2142435 0 0 -2142476 128 0 -2142582 0 0 -2142631 128 0 -2142739 0 0 -2142785 128 0 -2142890 0 0 -2142943 128 0 -2143053 0 0 -2143111 128 0 -2143226 0 0 -2143277 128 0 -2143386 0 0 -2143425 128 0 -2143539 0 0 -2143553 128 0 -2143986 0 0 -2144010 128 0 -2144133 0 0 -2144162 128 0 -2144308 0 0 -2144348 128 0 -2144481 0 0 -2144538 128 0 -2144654 0 0 -2144710 128 0 -2144817 0 0 -2144882 128 0 -2144986 0 0 -2145048 128 0 -2145173 0 0 -2145185 128 0 -2145200 0 0 -2145208 128 0 -2145295 0 0 -2145404 128 0 -2145461 0 0 -2145557 128 0 -2145621 0 0 -2145669 128 0 -2145675 0 0 -2145682 128 0 -2145958 0 0 -2145990 128 0 -2146113 0 0 -2146144 128 0 -2146279 0 0 -2146329 128 0 -2146438 0 0 -2146560 128 0 -2146611 0 0 -2146696 128 0 -2146710 0 0 -2159529 totRewards = 7 -2159529 64 8 -2159729 64 0 -2159738 0 0 -2159763 64 0 -2160960 0 0 -2160973 64 0 -2161110 0 0 -2161128 64 0 -2161268 0 0 -2161289 64 0 -2161432 0 0 -2161459 64 0 -2161608 0 0 -2161632 64 0 -2161949 0 0 -2161985 64 0 -2162113 0 0 -2162143 64 0 -2162275 0 0 -2162296 64 0 -2162310 0 0 -2162319 64 0 -2162403 0 0 -2162421 64 0 -2162452 0 0 -2162459 64 0 -2162559 0 0 -2162568 64 0 -2162900 0 0 -2162928 64 0 -2163757 0 0 -2163783 64 0 -2163917 0 0 -2163968 64 0 -2164082 0 0 -2166458 64 0 -2166531 0 0 -2166648 64 0 -2166917 0 0 -2166935 64 0 -2167090 0 0 -2167109 64 0 -2167732 0 0 -2167762 64 0 -2167908 0 0 -2167929 64 0 -2168084 0 0 -2168099 64 0 -2168429 0 0 -2168490 64 0 -2168588 0 0 -2176893 totRewards = 8 -2176893 128 16 -2177093 128 0 -2177326 0 0 -2177401 128 0 -2177653 0 0 -2177660 128 0 -2177663 0 0 -2177733 128 0 -2178313 0 0 -2178319 128 0 -2179180 0 0 -2179188 128 0 -2179315 0 0 -2179351 128 0 -2179476 0 0 -2179523 128 0 -2179642 0 0 -2179688 128 0 -2179810 0 0 -2179872 128 0 -2179978 0 0 -2180036 128 0 -2180144 0 0 -2180182 128 0 -2180882 0 0 -2180915 128 0 -2181044 0 0 -2181173 128 0 -2181203 0 0 -2181292 128 0 -2181428 0 0 -2181534 128 0 -2181591 0 0 -2181727 128 0 -2181782 0 0 -2182366 128 0 -2182374 0 0 -2184109 128 0 -2184245 0 0 -2184296 128 0 -2184396 0 0 -2184529 128 0 -2188631 0 0 -2190187 128 0 -2191079 0 0 -2191268 128 0 -2192641 0 0 -2192662 128 0 -2193070 0 0 -2193103 128 0 -2193223 0 0 -2193290 128 0 -2193362 0 0 -2193437 128 0 -2193510 0 0 -2193613 128 0 -2193703 0 0 -2202716 totRewards = 9 -2202716 64 8 -2202773 0 8 -2202836 64 8 -2202916 64 0 -2204488 0 0 -2204502 64 0 -2204642 0 0 -2204664 64 0 -2204811 0 0 -2204825 64 0 -2204970 0 0 -2204987 64 0 -2205126 0 0 -2205156 64 0 -2205282 0 0 -2205322 64 0 -2205445 0 0 -2205473 64 0 -2205730 0 0 -2205744 64 0 -2205890 0 0 -2205893 64 0 -2206940 0 0 -2206946 64 0 -2207096 0 0 -2207119 64 0 -2207266 0 0 -2207280 64 0 -2207972 0 0 -2207997 64 0 -2208143 0 0 -2208171 64 0 -2209358 0 0 -2209415 64 0 -2209513 0 0 -2216514 64 0 -2216790 0 0 -2216816 64 0 -2216945 0 0 -2216964 64 0 -2217093 0 0 -2217122 64 0 -2217254 0 0 -2217269 64 0 -2217569 0 0 -2217585 64 0 -2217733 0 0 -2217752 64 0 -2218051 0 0 -2222344 totRewards = 10 -2222344 128 16 -2222461 0 16 -2222544 0 0 -2222557 128 0 -2222585 0 0 -2222649 128 0 -2222663 0 0 -2222948 128 0 -2223215 0 0 -2223240 128 0 -2223844 0 0 -2223856 128 0 -2223972 0 0 -2223978 128 0 -2224099 0 0 -2224123 128 0 -2224239 0 0 -2224270 128 0 -2224377 0 0 -2224408 128 0 -2224526 0 0 -2224571 128 0 -2224679 0 0 -2224728 128 0 -2224835 0 0 -2224896 128 0 -2225005 0 0 -2225061 128 0 -2225173 0 0 -2225232 128 0 -2225342 0 0 -2225399 128 0 -2225511 0 0 -2225547 128 0 -2225798 0 0 -2225808 128 0 -2226268 0 0 -2226295 128 0 -2226441 0 0 -2226471 128 0 -2226612 0 0 -2226663 128 0 -2226797 0 0 -2226836 128 0 -2226974 0 0 -2227280 128 0 -2227394 0 0 -2227522 128 0 -2227572 0 0 -2240414 128 0 -2240991 0 0 -2241009 128 0 -2241417 0 0 -2241455 128 0 -2241562 0 0 -2241608 128 0 -2241717 0 0 -2241773 128 0 -2241885 0 0 -2241935 128 0 -2242056 0 0 -2242116 128 0 -2242216 0 0 -2242288 128 0 -2242395 0 0 -2242461 128 0 -2242582 0 0 -2242633 128 0 -2242764 0 0 -2242816 128 0 -2242923 0 0 -2243013 128 0 -2243120 0 0 -2243260 128 0 -2243270 0 0 -2245717 128 0 -2247529 0 0 -2247664 128 0 -2247755 0 0 -2254386 totRewards = 11 -2254386 64 8 -2254586 64 0 -2254782 0 0 -2254804 64 0 -2256275 0 0 -2256295 64 0 -2256427 0 0 -2256456 64 0 -2256588 0 0 -2256617 64 0 -2256923 0 0 -2256953 64 0 -2257081 0 0 -2257117 64 0 -2257241 0 0 -2257280 64 0 -2257399 0 0 -2257441 64 0 -2257567 0 0 -2257588 64 0 -2258047 0 0 -2258051 64 0 -2258899 0 0 -2258921 64 0 -2259056 0 0 -2259097 64 0 -2259215 0 0 -2259255 64 0 -2259372 0 0 -2259405 64 0 -2260634 0 0 -2260676 64 0 -2261234 0 0 -2261300 64 0 -2261404 0 0 -2261441 64 0 -2261625 0 0 -2261715 64 0 -2261815 0 0 -2261834 64 0 -2261977 0 0 -2262025 64 0 -2262133 0 0 -2277660 totRewards = 12 -2277660 128 16 -2277739 0 16 -2277860 0 0 -2277981 128 0 -2278327 0 0 -2278333 128 0 -2278895 0 0 -2278925 128 0 -2279032 0 0 -2279044 128 0 -2279302 0 0 -2279309 128 0 -2279439 0 0 -2279455 128 0 -2279735 0 0 -2279763 128 0 -2279878 0 0 -2279911 128 0 -2280032 0 0 -2280084 128 0 -2280202 0 0 -2280254 128 0 -2280364 0 0 -2280421 128 0 -2280526 0 0 -2280579 128 0 -2280686 0 0 -2280736 128 0 -2280847 0 0 -2280883 128 0 -2281609 0 0 -2281646 128 0 -2281774 0 0 -2281872 128 0 -2281935 0 0 -2282007 128 0 -2282103 0 0 -2282213 128 0 -2282280 0 0 -2282420 128 0 -2282494 0 0 -2284086 128 0 -2285130 0 0 -2285212 128 0 -2286235 0 0 -2286289 128 0 -2287135 0 0 -2287186 128 0 -2287289 0 0 -2291999 totRewards = 13 -2291999 64 8 -2292199 64 0 -2293824 0 0 -2293846 64 0 -2293982 0 0 -2294001 64 0 -2294138 0 0 -2294169 64 0 -2294293 0 0 -2294332 64 0 -2294454 0 0 -2294482 64 0 -2294791 0 0 -2294803 64 0 -2295457 0 0 -2295504 64 0 -2295973 0 0 -2296018 64 0 -2296154 0 0 -2296187 64 0 -2296796 0 0 -2296819 64 0 -2297909 0 0 -2297970 64 0 -2298237 0 0 -2298249 64 0 -2298570 0 0 -2298612 64 0 -2298728 0 0 -2298774 64 0 -2298883 0 0 -2298938 64 0 -2299041 0 0 -2307832 totRewards = 14 -2307832 128 16 -2308000 0 16 -2308028 128 16 -2308032 128 0 -2309019 0 0 -2309027 128 0 -2309306 0 0 -2309313 128 0 -2309437 0 0 -2309473 128 0 -2309593 0 0 -2309630 128 0 -2309750 0 0 -2309782 128 0 -2309900 0 0 -2309946 128 0 -2310069 0 0 -2310100 128 0 -2310224 0 0 -2310266 128 0 -2310382 0 0 -2310441 128 0 -2310558 0 0 -2310611 128 0 -2310718 0 0 -2310772 128 0 -2310877 0 0 -2310912 128 0 -2311035 0 0 -2311066 128 0 -2311185 0 0 -2311220 128 0 -2311336 0 0 -2311371 128 0 -2311666 0 0 -2311731 128 0 -2311816 0 0 -2311986 128 0 -2312015 0 0 -2313817 128 0 -2313887 0 0 -2313926 128 0 -2314125 0 0 -2314202 128 0 -2314630 0 0 -2314756 128 0 -2317830 0 0 -2317846 128 0 -2317980 0 0 -2318017 128 0 -2318121 0 0 -2318447 128 0 -2318468 0 0 -2318575 128 0 -2318643 0 0 -2321337 128 0 -2322451 0 0 -2322689 128 0 -2327632 0 0 -2327645 128 0 -2327935 0 0 -2327967 128 0 -2328085 0 0 -2328120 128 0 -2328244 0 0 -2328283 128 0 -2328404 0 0 -2328457 128 0 -2328561 0 0 -2328627 128 0 -2328720 0 0 -2328866 128 0 -2328892 0 0 -2328961 128 0 -2329075 0 0 -2329131 128 0 -2329240 0 0 -2329331 128 0 -2329412 0 0 -2329583 128 0 -2329768 0 0 -2331261 128 0 -2333920 0 0 -2337449 totRewards = 15 -2337449 64 8 -2337649 64 0 -2338511 0 0 -2338525 64 0 -2339700 0 0 -2339726 64 0 -2339869 0 0 -2339884 64 0 -2340021 0 0 -2340049 64 0 -2340177 0 0 -2340221 64 0 -2340350 0 0 -2340357 64 0 -2340814 0 0 -2340842 64 0 -2341675 0 0 -2341689 64 0 -2341838 0 0 -2341866 64 0 -2341992 0 0 -2342046 64 0 -2342161 0 0 -2342239 64 0 -2342326 0 0 -2342402 64 0 -2342683 0 0 -2342700 64 0 -2342845 0 0 -2342872 64 0 -2343006 0 0 -2343072 64 0 -2343156 0 0 -2346147 totRewards = 16 -2346147 128 16 -2346164 0 16 -2346272 128 16 -2346335 0 16 -2346347 0 0 -2346589 128 0 -2346602 0 0 -2346660 128 0 -2346684 0 0 -2346947 128 0 -2347329 0 0 -2347349 128 0 -2348105 0 0 -2348110 128 0 -2348537 0 0 -2348558 128 0 -2348682 0 0 -2348728 128 0 -2348835 0 0 -2348889 128 0 -2349004 0 0 -2349052 128 0 -2349166 0 0 -2349215 128 0 -2349330 0 0 -2349374 128 0 -2349484 0 0 -2349526 128 0 -2350244 0 0 -2350261 128 0 -2350407 0 0 -2350441 128 0 -2350568 0 0 -2350595 128 0 -2350771 0 0 -2350858 128 0 -2350914 0 0 -2351075 128 0 -2351151 0 0 -2351309 128 0 -2351326 0 0 -2351740 128 0 -2351753 0 0 -2351886 128 0 -2351896 0 0 -2352011 128 0 -2352104 0 0 -2352187 128 0 -2352214 0 0 -2352301 128 0 -2352559 0 0 -2352772 128 0 -2353146 0 0 -2353183 128 0 -2353383 0 0 -2353426 128 0 -2355263 0 0 -2359358 totRewards = 17 -2359358 64 8 -2359558 64 0 -2360088 0 0 -2360101 64 0 -2361553 0 0 -2361578 64 0 -2361883 0 0 -2361907 64 0 -2362039 0 0 -2362075 64 0 -2362327 0 0 -2362335 64 0 -2364953 0 0 -2364983 64 0 -2365102 0 0 -2365153 64 0 -2365267 0 0 -2365324 64 0 -2365414 0 0 -2368975 totRewards = 18 -2368975 128 16 -2369175 128 0 -2369303 0 0 -2369335 128 0 -2369692 0 0 -2369711 128 0 -2369813 0 0 -2369864 128 0 -2370239 0 0 -2370266 128 0 -2370543 0 0 -2370563 128 0 -2370698 0 0 -2370728 128 0 -2370846 0 0 -2370899 128 0 -2371028 0 0 -2371066 128 0 -2371186 0 0 -2371233 128 0 -2371348 0 0 -2371399 128 0 -2371524 0 0 -2371569 128 0 -2371690 0 0 -2371747 128 0 -2371862 0 0 -2371919 128 0 -2372027 0 0 -2372070 128 0 -2372173 0 0 -2372219 128 0 -2372338 0 0 -2375851 128 0 -2376084 0 0 -2376257 128 0 -2376944 0 0 -2377077 128 0 -2378183 0 0 -2381281 totRewards = 19 -2381281 64 8 -2381481 64 0 -2382052 0 0 -2382073 64 0 -2383036 0 0 -2383047 64 0 -2383182 0 0 -2383206 64 0 -2383520 0 0 -2383532 64 0 -2383681 0 0 -2383710 64 0 -2383859 0 0 -2383866 64 0 -2384010 0 0 -2384039 64 0 -2384184 0 0 -2384206 64 0 -2384339 0 0 -2384374 64 0 -2385999 0 0 -2386006 64 0 -2386173 0 0 -2386185 64 0 -2386707 0 0 -2386743 64 0 -2386868 0 0 -2386931 64 0 -2387020 0 0 -2390293 totRewards = 20 -2390293 128 16 -2390431 0 16 -2390474 128 16 -2390493 128 0 -2390625 0 0 -2390686 128 0 -2390781 0 0 -2390831 128 0 -2391031 0 0 -2391064 128 0 -2391157 0 0 -2391189 128 0 -2391831 0 0 -2391839 128 0 -2392429 0 0 -2392447 128 0 -2392582 0 0 -2392621 128 0 -2392746 0 0 -2392786 128 0 -2392920 0 0 -2392951 128 0 -2393082 0 0 -2393120 128 0 -2393249 0 0 -2393295 128 0 -2393428 0 0 -2393461 128 0 -2393626 0 0 -2393678 128 0 -2393703 0 0 -2393722 128 0 -2393784 0 0 -2393850 128 0 -2393969 0 0 -2394022 128 0 -2394154 0 0 -2394254 128 0 -2394329 0 0 -2394379 128 0 -2394421 0 0 -2394454 128 0 -2394485 0 0 -2394621 128 0 -2394669 0 0 -2395021 128 0 -2395050 0 0 -2395157 128 0 -2395192 0 0 -2395962 128 0 -2395976 0 0 -2399690 totRewards = 21 -2399690 64 8 -2399739 0 8 -2399783 64 8 -2399889 64 0 -2400032 0 0 -2400055 64 0 -2401665 0 0 -2401674 64 0 -2401820 0 0 -2401845 64 0 -2401974 0 0 -2402003 64 0 -2402129 0 0 -2402156 64 0 -2402593 0 0 -2402609 64 0 -2402754 0 0 -2402766 64 0 -2403575 0 0 -2403613 64 0 -2403763 0 0 -2403774 64 0 -2404087 0 0 -2404120 64 0 -2404268 0 0 -2404282 64 0 -2404424 0 0 -2404457 64 0 -2404593 0 0 -2404624 64 0 -2404761 0 0 -2404786 64 0 -2405621 0 0 -2405656 64 0 -2405801 0 0 -2405835 64 0 -2405983 0 0 -2406018 64 0 -2406128 0 0 -2408919 totRewards = 22 -2408918 128 16 -2409089 0 16 -2409099 128 16 -2409118 128 0 -2409259 0 0 -2409282 128 0 -2409881 0 0 -2409914 128 0 -2410332 0 0 -2410359 128 0 -2410491 0 0 -2410499 128 0 -2410625 0 0 -2410640 128 0 -2410777 0 0 -2410806 128 0 -2410954 0 0 -2410964 128 0 -2411111 0 0 -2411139 128 0 -2411271 0 0 -2411311 128 0 -2411444 0 0 -2411478 128 0 -2411620 0 0 -2411645 128 0 -2411779 0 0 -2411820 128 0 -2411949 0 0 -2411991 128 0 -2412110 0 0 -2412152 128 0 -2412297 0 0 -2412381 128 0 -2412463 0 0 -2412586 128 0 -2412637 0 0 -2417606 totRewards = 23 -2417606 64 8 -2417806 64 0 -2417988 0 0 -2418017 64 0 -2419385 0 0 -2419403 64 0 -2419710 0 0 -2419728 64 0 -2419869 0 0 -2419900 64 0 -2420197 0 0 -2420230 64 0 -2420360 0 0 -2420383 64 0 -2420813 0 0 -2420840 64 0 -2420978 0 0 -2421000 64 0 -2421625 0 0 -2421678 64 0 -2421781 0 0 -2421836 64 0 -2421936 0 0 -2424845 totRewards = 24 -2424845 128 16 -2424878 0 16 -2424957 128 16 -2425001 0 16 -2425029 128 16 -2425045 128 0 -2425100 0 0 -2425132 128 0 -2425255 0 0 -2425341 128 0 -2425404 0 0 -2425413 128 0 -2425655 0 0 -2425694 128 0 -2429976 0 0 -2430004 128 0 -2430156 0 0 -2430196 128 0 -2430336 0 0 -2430380 128 0 -2430522 0 0 -2430571 128 0 -2430718 0 0 -2430748 128 0 -2430894 0 0 -2430920 128 0 -2431078 0 0 -2431125 128 0 -2431275 0 0 -2431329 128 0 -2431675 0 0 -2431820 128 0 -2431897 0 0 -2432493 128 0 -2432637 0 0 -2432661 128 0 -2432804 0 0 -2432861 128 0 -2432994 0 0 -2433025 128 0 -2433287 0 0 -2433293 128 0 -2433298 0 0 -2433302 128 0 -2433608 0 0 -2433619 128 0 -2433651 0 0 -2433688 128 0 -2433712 0 0 -2433722 128 0 -2433771 0 0 -2433875 128 0 -2434339 0 0 -2434379 128 0 -2434521 0 0 -2434566 128 0 -2435276 0 0 -2435311 128 0 -2435450 0 0 -2435518 128 0 -2435619 0 0 -2435702 128 0 -2435821 0 0 -2435901 128 0 -2436009 0 0 -2436087 128 0 -2436177 0 0 -2436291 128 0 -2436323 0 0 -2436357 128 0 -2436377 0 0 -2443046 128 0 -2443134 0 0 -2443341 128 0 -2443453 0 0 -2443671 128 0 -2443803 0 0 -2443889 128 0 -2443921 0 0 -2443970 128 0 -2444102 0 0 -2447042 totRewards = 25 -2447042 64 8 -2447242 64 0 -2447765 0 0 -2447772 64 0 -2447880 0 0 -2447886 64 0 -2449309 0 0 -2449318 64 0 -2449464 0 0 -2449481 64 0 -2449621 0 0 -2449639 64 0 -2449783 0 0 -2449802 64 0 -2449934 0 0 -2449973 64 0 -2450097 0 0 -2450126 64 0 -2450260 0 0 -2450285 64 0 -2450402 0 0 -2455364 totRewards = 26 -2455364 128 16 -2455546 0 16 -2455564 0 0 -2455657 128 0 -2455691 0 0 -2455743 128 0 -2455937 0 0 -2456018 128 0 -2456092 0 0 -2456103 128 0 -2456163 0 0 -2456212 128 0 -2456319 0 0 -2456362 128 0 -2457252 0 0 -2457265 128 0 -2457695 0 0 -2457717 128 0 -2457847 0 0 -2457870 128 0 -2458176 0 0 -2458211 128 0 -2458339 0 0 -2458376 128 0 -2458501 0 0 -2458536 128 0 -2458658 0 0 -2458698 128 0 -2458804 0 0 -2458851 128 0 -2458970 0 0 -2458984 128 0 -2459119 0 0 -2459147 128 0 -2459250 0 0 -2463620 totRewards = 27 -2463620 64 8 -2463820 64 0 -2465463 0 0 -2465471 64 0 -2465619 0 0 -2465626 64 0 -2465935 0 0 -2465947 64 0 -2466092 0 0 -2466110 64 0 -2466253 0 0 -2466280 64 0 -2466410 0 0 -2466447 64 0 -2466568 0 0 -2466603 64 0 -2466732 0 0 -2466752 64 0 -2467027 0 0 -2469814 totRewards = 28 -2469814 128 16 -2469994 0 16 -2470014 0 0 -2470051 128 0 -2470113 0 0 -2470131 128 0 -2470369 0 0 -2470428 128 0 -2470615 0 0 -2470659 128 0 -2470750 0 0 -2470810 128 0 -2471182 0 0 -2471206 128 0 -2471609 0 0 -2471636 128 0 -2471763 0 0 -2471806 128 0 -2471934 0 0 -2471960 128 0 -2472090 0 0 -2472133 128 0 -2472245 0 0 -2472295 128 0 -2472412 0 0 -2472452 128 0 -2472597 0 0 -2472634 128 0 -2472746 0 0 -2472805 128 0 -2472913 0 0 -2472952 128 0 -2473352 0 0 -2473598 128 0 -2476006 0 0 -2476133 128 0 -2479487 0 0 -2479687 128 0 -2480044 0 0 -2482815 totRewards = 29 -2482815 64 8 -2483015 64 0 -2485179 0 0 -2485197 64 0 -2485339 0 0 -2485359 64 0 -2485487 0 0 -2485527 64 0 -2485658 0 0 -2485672 64 0 -2485968 0 0 -2485982 64 0 -2486102 0 0 -2489155 totRewards = 30 -2489155 128 16 -2489313 0 16 -2489355 0 0 -2489369 128 0 -2489697 0 0 -2489732 128 0 -2489944 0 0 -2489982 128 0 -2490071 0 0 -2490129 128 0 -2490358 0 0 -2490381 128 0 -2490490 0 0 -2490527 128 0 -2490938 0 0 -2490973 128 0 -2491097 0 0 -2491113 128 0 -2491255 0 0 -2491270 128 0 -2491405 0 0 -2491435 128 0 -2491565 0 0 -2491605 128 0 -2491743 0 0 -2491776 128 0 -2491897 0 0 -2491946 128 0 -2492059 0 0 -2492109 128 0 -2492225 0 0 -2492263 128 0 -2492382 0 0 -2492423 128 0 -2492544 0 0 -2492573 128 0 -2492723 0 0 -2492742 128 0 -2492881 0 0 -2492917 128 0 -2493039 0 0 -2493086 128 0 -2493194 0 0 -2493241 128 0 -2493365 0 0 -2493381 128 0 -2493510 0 0 -2493572 128 0 -2493589 0 0 -2493676 128 0 -2493876 0 0 -2494191 128 0 -2494750 0 0 -2494845 128 0 -2495454 0 0 -2499420 totRewards = 31 -2499419 64 8 -2499619 64 0 -2502333 0 0 -2502350 64 0 -2502492 0 0 -2502502 64 0 -2503572 0 0 -2503596 64 0 -2503742 0 0 -2503751 64 0 -2504397 0 0 -2504419 64 0 -2504560 0 0 -2504572 64 0 -2505051 0 0 -2505069 64 0 -2505379 0 0 -2505412 64 0 -2505557 0 0 -2505572 64 0 -2505715 0 0 -2505767 64 0 -2505847 0 0 -2508735 totRewards = 32 -2508735 128 16 -2508885 0 16 -2508935 0 0 -2508994 128 0 -2509065 0 0 -2509107 128 0 -2509335 0 0 -2509344 128 0 -2509483 0 0 -2509494 128 0 -2509735 0 0 -2509758 128 0 -2509877 0 0 -2509893 128 0 -2510149 0 0 -2510177 128 0 -2510297 0 0 -2510320 128 0 -2510597 0 0 -2510620 128 0 -2510757 0 0 -2510780 128 0 -2511073 0 0 -2511100 128 0 -2511234 0 0 -2511266 128 0 -2511410 0 0 -2511438 128 0 -2511567 0 0 -2511607 128 0 -2511716 0 0 -2511763 128 0 -2511868 0 0 -2511924 128 0 -2512020 0 0 -2515171 totRewards = 33 -2515171 64 8 -2515371 64 0 -2515871 0 0 -2515882 64 0 -2517692 0 0 -2517721 64 0 -2517853 0 0 -2517891 64 0 -2518013 0 0 -2518044 64 0 -2518481 0 0 -2518520 64 0 -2518612 0 0 -2521180 totRewards = 34 -2521180 128 16 -2521354 0 16 -2521379 128 16 -2521380 128 0 -2521569 0 0 -2521590 128 0 -2521692 0 0 -2521711 128 0 -2521925 0 0 -2521978 128 0 -2522070 0 0 -2522108 128 0 -2522490 0 0 -2522514 128 0 -2522937 0 0 -2522956 128 0 -2523086 0 0 -2523120 128 0 -2523252 0 0 -2523270 128 0 -2523399 0 0 -2523434 128 0 -2523557 0 0 -2523601 128 0 -2523729 0 0 -2523767 128 0 -2523896 0 0 -2523942 128 0 -2524058 0 0 -2524104 128 0 -2524211 0 0 -2524253 128 0 -2524372 0 0 -2524387 128 0 -2524514 0 0 -2527384 totRewards = 35 -2527384 64 8 -2527584 64 0 -2529745 0 0 -2529773 64 0 -2529906 0 0 -2529937 64 0 -2530226 0 0 -2530248 64 0 -2530392 0 0 -2530412 64 0 -2530548 0 0 -2530575 64 0 -2530711 0 0 -2530730 64 0 -2530869 0 0 -2530900 64 0 -2531022 0 0 -2531075 64 0 -2531188 0 0 -2531252 64 0 -2531324 0 0 -2532712 64 0 -2532741 0 0 -2532965 64 0 -2533145 0 0 -2533200 64 0 -2533263 0 0 -2533333 64 0 -2533747 0 0 -2536465 totRewards = 36 -2536465 128 16 -2536665 128 0 -2536770 0 0 -2536790 128 0 -2537391 0 0 -2537424 128 0 -2537815 0 0 -2537843 128 0 -2538112 0 0 -2538119 128 0 -2538254 0 0 -2538292 128 0 -2538420 0 0 -2538455 128 0 -2538583 0 0 -2538622 128 0 -2538747 0 0 -2538789 128 0 -2538909 0 0 -2538941 128 0 -2539071 0 0 -2539112 128 0 -2539227 0 0 -2539272 128 0 -2539389 0 0 -2539435 128 0 -2539553 0 0 -2539599 128 0 -2539710 0 0 -2539756 128 0 -2539870 0 0 -2539919 128 0 -2540024 0 0 -2540097 128 0 -2540131 0 0 -2543061 totRewards = 37 -2543061 64 8 -2543261 64 0 -2543302 0 0 -2543321 64 0 -2545004 0 0 -2545027 64 0 -2545177 0 0 -2545189 64 0 -2545641 0 0 -2545675 64 0 -2545800 0 0 -2545841 64 0 -2546764 0 0 -2546771 64 0 -2546909 0 0 -2546973 64 0 -2547017 0 0 -2549893 totRewards = 38 -2549893 128 16 -2550093 128 0 -2550333 0 0 -2550345 128 0 -2550468 0 0 -2550476 128 0 -2550694 0 0 -2550702 128 0 -2550933 0 0 -2550951 128 0 -2551060 0 0 -2551108 128 0 -2551471 0 0 -2551497 128 0 -2551924 0 0 -2551952 128 0 -2552079 0 0 -2552100 128 0 -2552395 0 0 -2552426 128 0 -2552547 0 0 -2552592 128 0 -2552735 0 0 -2552764 128 0 -2552902 0 0 -2552946 128 0 -2553065 0 0 -2553112 128 0 -2553229 0 0 -2553275 128 0 -2553379 0 0 -2553437 128 0 -2553527 0 0 -2553607 128 0 -2553670 0 0 -2556846 totRewards = 39 -2556846 64 8 -2557046 64 0 -2557066 0 0 -2557079 64 0 -2559054 0 0 -2559065 64 0 -2559552 0 0 -2559572 64 0 -2559707 0 0 -2559758 64 0 -2559875 0 0 -2559923 64 0 -2560048 0 0 -2560089 64 0 -2560388 0 0 -2560454 64 0 -2560540 0 0 -2563235 totRewards = 40 -2563235 128 16 -2563435 128 0 -2564006 0 0 -2564041 128 0 -2564140 0 0 -2564180 128 0 -2564559 0 0 -2564586 128 0 -2565004 0 0 -2565043 128 0 -2565168 0 0 -2565191 128 0 -2565328 0 0 -2565350 128 0 -2565480 0 0 -2565520 128 0 -2565631 0 0 -2565663 128 0 -2565791 0 0 -2565824 128 0 -2565949 0 0 -2565991 128 0 -2566098 0 0 -2566143 128 0 -2566260 0 0 -2566298 128 0 -2566424 0 0 -2566467 128 0 -2566573 0 0 -2566618 128 0 -2566742 0 0 -2566763 128 0 -2566912 0 0 -2566946 128 0 -2567068 0 0 -2567114 128 0 -2567223 0 0 -2567281 128 0 -2567360 0 0 -2570298 totRewards = 41 -2570298 64 8 -2570498 64 0 -2572758 0 0 -2572780 64 0 -2573101 0 0 -2573145 64 0 -2573281 0 0 -2573322 64 0 -2574008 0 0 -2574032 64 0 -2574177 0 0 -2574208 64 0 -2574715 0 0 -2574748 64 0 -2574882 0 0 -2574902 64 0 -2575057 0 0 -2575077 64 0 -2575202 0 0 -2577813 totRewards = 42 -2577813 128 16 -2578013 128 0 -2578222 0 0 -2578344 128 0 -2578817 0 0 -2578850 128 0 -2579085 0 0 -2579101 128 0 -2579222 0 0 -2579250 128 0 -2579669 0 0 -2579699 128 0 -2579835 0 0 -2579850 128 0 -2579982 0 0 -2580007 128 0 -2580144 0 0 -2580176 128 0 -2580312 0 0 -2580346 128 0 -2580479 0 0 -2580507 128 0 -2580638 0 0 -2580678 128 0 -2580786 0 0 -2580831 128 0 -2580937 0 0 -2580984 128 0 -2581062 0 0 -2584210 totRewards = 43 -2584210 64 8 -2584410 64 0 -2586367 0 0 -2586382 64 0 -2586524 0 0 -2586547 64 0 -2586680 0 0 -2586702 64 0 -2586842 0 0 -2586864 64 0 -2587008 0 0 -2587033 64 0 -2587166 0 0 -2587199 64 0 -2587321 0 0 -2587360 64 0 -2587481 0 0 -2587525 64 0 -2587617 0 0 -2591303 totRewards = 44 -2591303 128 16 -2591503 128 0 -2592645 0 0 -2592656 128 0 -2592782 0 0 -2592800 128 0 -2592917 0 0 -2592937 128 0 -2593048 0 0 -2593077 128 0 -2593187 0 0 -2593217 128 0 -2593333 0 0 -2593366 128 0 -2593490 0 0 -2593535 128 0 -2593655 0 0 -2593700 128 0 -2593815 0 0 -2593856 128 0 -2593963 0 0 -2594007 128 0 -2594115 0 0 -2594146 128 0 -2594278 0 0 -2594284 128 0 -2594410 0 0 -2594449 128 0 -2594556 0 0 -2597675 totRewards = 45 -2597675 64 8 -2597875 64 0 -2597920 0 0 -2597969 64 0 -2598419 0 0 -2598448 64 0 -2599285 0 0 -2599293 64 0 -2599432 0 0 -2599457 64 0 -2599909 0 0 -2599936 64 0 -2600074 0 0 -2600097 64 0 -2600414 0 0 -2600433 64 0 -2600563 0 0 -2600596 64 0 -2600725 0 0 -2600772 64 0 -2600890 0 0 -2600949 64 0 -2601047 0 0 -2604007 totRewards = 46 -2604007 128 16 -2604138 0 16 -2604182 128 16 -2604207 128 0 -2604334 0 0 -2604358 128 0 -2604953 0 0 -2604986 128 0 -2605376 0 0 -2605394 128 0 -2605808 0 0 -2605835 128 0 -2605967 0 0 -2605985 128 0 -2606122 0 0 -2606135 128 0 -2606272 0 0 -2606300 128 0 -2606432 0 0 -2606461 128 0 -2606601 0 0 -2606640 128 0 -2606768 0 0 -2606807 128 0 -2606919 0 0 -2606963 128 0 -2607067 0 0 -2607118 128 0 -2607213 0 0 -2607303 128 0 -2607313 0 0 -2607779 128 0 -2607848 0 0 -2607904 128 0 -2610120 0 0 -2612954 totRewards = 47 -2612954 64 8 -2613154 64 0 -2613292 0 0 -2613317 64 0 -2615429 0 0 -2615446 64 0 -2615573 0 0 -2615611 64 0 -2615733 0 0 -2615771 64 0 -2615870 0 0 -2618571 totRewards = 48 -2618571 128 16 -2618771 128 0 -2618887 0 0 -2618900 128 0 -2619108 0 0 -2619120 128 0 -2619497 0 0 -2619543 128 0 -2619918 0 0 -2619954 128 0 -2620363 0 0 -2620391 128 0 -2620510 0 0 -2620544 128 0 -2620904 0 0 -2620928 128 0 -2621061 0 0 -2621089 128 0 -2621226 0 0 -2621255 128 0 -2621369 0 0 -2621404 128 0 -2621520 0 0 -2621552 128 0 -2621699 0 0 -2621709 128 0 -2621843 0 0 -2621884 128 0 -2622000 0 0 -2622047 128 0 -2622163 0 0 -2622220 128 0 -2622346 0 0 -2623071 128 0 -2623182 0 0 -2623626 128 0 -2623700 0 0 -2627843 totRewards = 49 -2627843 64 8 -2628043 64 0 -2628136 0 0 -2628145 64 0 -2630032 0 0 -2630043 64 0 -2630502 0 0 -2630528 64 0 -2630653 0 0 -2630694 64 0 -2630813 0 0 -2630851 64 0 -2630971 0 0 -2631015 64 0 -2631098 0 0 -2633877 totRewards = 50 -2633877 128 16 -2633918 0 16 -2634001 128 16 -2634077 128 0 -2634143 0 0 -2634220 128 0 -2634328 0 0 -2634355 128 0 -2634565 0 0 -2634606 128 0 -2634696 0 0 -2634763 128 0 -2634977 0 0 -2634997 128 0 -2635124 0 0 -2635139 128 0 -2635545 0 0 -2635565 128 0 -2635685 0 0 -2635726 128 0 -2635846 0 0 -2635872 128 0 -2635998 0 0 -2636033 128 0 -2636156 0 0 -2636196 128 0 -2636321 0 0 -2636362 128 0 -2636480 0 0 -2636521 128 0 -2636627 0 0 -2636678 128 0 -2636772 0 0 -2636829 128 0 -2636924 0 0 -2637003 128 0 -2637049 0 0 -2637178 128 0 -2637463 0 0 -2637651 128 0 -2637701 0 0 -2637769 128 0 -2639197 0 0 -2639288 128 0 -2639604 0 0 -2642308 totRewards = 51 -2642308 64 8 -2642508 64 0 -2642755 0 0 -2642780 64 0 -2642990 0 0 -2643012 64 0 -2644727 0 0 -2644744 64 0 -2645038 0 0 -2645057 64 0 -2645191 0 0 -2645218 64 0 -2645347 0 0 -2645388 64 0 -2645496 0 0 -2648343 totRewards = 52 -2648343 128 16 -2648532 0 16 -2648543 0 0 -2648588 128 0 -2648779 0 0 -2648825 128 0 -2648909 0 0 -2648954 128 0 -2649155 0 0 -2649191 128 0 -2649290 0 0 -2649329 128 0 -2649720 0 0 -2649730 128 0 -2650155 0 0 -2650182 128 0 -2650297 0 0 -2650337 128 0 -2650464 0 0 -2650490 128 0 -2650621 0 0 -2650664 128 0 -2650780 0 0 -2650827 128 0 -2650935 0 0 -2650972 128 0 -2651074 0 0 -2651120 128 0 -2651217 0 0 -2651289 128 0 -2651325 0 0 -2653923 totRewards = 53 -2653923 64 8 -2654123 64 0 -2654159 0 0 -2654164 64 0 -2656886 0 0 -2656923 64 0 -2657046 0 0 -2657096 64 0 -2657201 0 0 -2659902 totRewards = 54 -2659902 128 16 -2660074 0 16 -2660102 0 0 -2660120 128 0 -2660236 0 0 -2660248 128 0 -2660836 0 0 -2660882 128 0 -2661980 0 0 -2661989 128 0 -2662272 0 0 -2662301 128 0 -2662434 0 0 -2662461 128 0 -2662597 0 0 -2662628 128 0 -2662757 0 0 -2662797 128 0 -2662914 0 0 -2662953 128 0 -2663064 0 0 -2663102 128 0 -2663664 0 0 -2663762 128 0 -2663778 0 0 -2667190 128 0 -2667285 0 0 -2667322 128 0 -2667332 0 0 -2667348 128 0 -2667390 0 0 -2667467 128 0 -2667512 0 0 -2670338 totRewards = 55 -2670338 64 8 -2670537 0 8 -2670538 0 0 -2670554 64 0 -2673064 0 0 -2673094 64 0 -2673217 0 0 -2673252 64 0 -2673377 0 0 -2673410 64 0 -2673510 0 0 -2676470 totRewards = 56 -2676470 128 16 -2676605 0 16 -2676670 0 0 -2676690 128 0 -2676845 0 0 -2676875 128 0 -2676960 0 0 -2677004 128 0 -2677208 0 0 -2677249 128 0 -2677355 0 0 -2677401 128 0 -2677772 0 0 -2677798 128 0 -2678199 0 0 -2678229 128 0 -2678354 0 0 -2678386 128 0 -2678670 0 0 -2678702 128 0 -2678823 0 0 -2678865 128 0 -2678992 0 0 -2679026 128 0 -2679155 0 0 -2679195 128 0 -2679306 0 0 -2679354 128 0 -2679454 0 0 -2679516 128 0 -2679589 0 0 -2682766 totRewards = 57 -2682766 64 8 -2682966 64 0 -2683919 0 0 -2683933 64 0 -2684207 0 0 -2684224 64 0 -2685002 0 0 -2685015 64 0 -2685143 0 0 -2685175 64 0 -2685455 0 0 -2685474 64 0 -2685599 0 0 -2685657 64 0 -2685736 0 0 -2706877 totRewards = 58 -2706877 128 16 -2707077 128 0 -2707134 0 0 -2707214 128 0 -2707252 0 0 -2707327 128 0 -2707414 0 0 -2707461 128 0 -2707533 0 0 -2707581 128 0 -2707778 0 0 -2707811 128 0 -2707913 0 0 -2707937 128 0 -2708010 0 0 -2708044 128 0 -2708408 0 0 -2708433 128 0 -2708828 0 0 -2708854 128 0 -2708979 0 0 -2709006 128 0 -2709143 0 0 -2709156 128 0 -2709287 0 0 -2709320 128 0 -2709429 0 0 -2709472 128 0 -2709587 0 0 -2709610 128 0 -2709734 0 0 -2709760 128 0 -2709883 0 0 -2709894 128 0 -2710026 0 0 -2710035 128 0 -2710770 0 0 -2710801 128 0 -2710921 0 0 -2710971 128 0 -2711087 0 0 -2711140 128 0 -2711257 0 0 -2711311 128 0 -2711402 0 0 -2711473 128 0 -2711540 0 0 -2714595 totRewards = 59 -2714595 64 8 -2714780 0 8 -2714795 0 0 -2714827 64 0 -2716113 0 0 -2716122 64 0 -2716729 0 0 -2716755 64 0 -2717031 0 0 -2717070 64 0 -2718886 0 0 -2718918 64 0 -2719050 0 0 -2719131 64 0 -2719202 0 0 -2719520 64 0 -2719777 0 0 -2719810 64 0 -2719928 0 0 -2726538 totRewards = 60 -2726538 128 16 -2726738 128 0 -2726850 0 0 -2726888 128 0 -2727361 0 0 -2727372 128 0 -2727476 0 0 -2727496 128 0 -2727604 0 0 -2727635 128 0 -2727743 0 0 -2727763 128 0 -2727882 0 0 -2727908 128 0 -2728014 0 0 -2728049 128 0 -2728154 0 0 -2728191 128 0 -2728304 0 0 -2728339 128 0 -2728457 0 0 -2728493 128 0 -2728610 0 0 -2728654 128 0 -2728777 0 0 -2728828 128 0 -2728944 0 0 -2728988 128 0 -2729096 0 0 -2729146 128 0 -2729258 0 0 -2729311 128 0 -2729409 0 0 -2729448 128 0 -2729568 0 0 -2729585 128 0 -2729718 0 0 -2729757 128 0 -2729881 0 0 -2729920 128 0 -2730029 0 0 -2730079 128 0 -2730192 0 0 -2730243 128 0 -2730360 0 0 -2730364 128 0 -2730508 0 0 -2730526 128 0 -2730654 0 0 -2730683 128 0 -2730815 0 0 -2730851 128 0 -2730979 0 0 -2731018 128 0 -2731152 0 0 -2731200 128 0 -2731309 0 0 -2731371 128 0 -2731471 0 0 -2731551 128 0 -2731656 0 0 -2731757 128 0 -2731869 0 0 -2731971 128 0 -2732012 0 0 -2732183 128 0 -2732229 0 0 -2732309 128 0 -2732386 0 0 -2732469 128 0 -2732494 0 0 -2743355 128 0 -2744545 0 0 -2744578 128 0 -2744976 0 0 -2744989 128 0 -2745109 0 0 -2745726 128 0 -2746827 0 0 -2749691 totRewards = 61 -2749691 64 8 -2749731 0 8 -2749791 64 8 -2749891 64 0 -2749948 0 0 -2749972 64 0 -2750528 0 0 -2750550 64 0 -2752440 0 0 -2752448 64 0 -2752755 0 0 -2752771 64 0 -2752917 0 0 -2752939 64 0 -2753078 0 0 -2753101 64 0 -2753229 0 0 -2753256 64 0 -2753708 0 0 -2753718 64 0 -2753861 0 0 -2753899 64 0 -2754013 0 0 -2757104 totRewards = 62 -2757104 128 16 -2757235 0 16 -2757269 128 16 -2757304 128 0 -2757425 0 0 -2757489 128 0 -2757605 0 0 -2757630 128 0 -2757845 0 0 -2757882 128 0 -2757967 0 0 -2758017 128 0 -2758254 0 0 -2758267 128 0 -2758383 0 0 -2758411 128 0 -2758658 0 0 -2758674 128 0 -2758813 0 0 -2758831 128 0 -2758957 0 0 -2758982 128 0 -2759109 0 0 -2759141 128 0 -2759271 0 0 -2759299 128 0 -2759429 0 0 -2759475 128 0 -2759586 0 0 -2759625 128 0 -2759743 0 0 -2759777 128 0 -2759889 0 0 -2759921 128 0 -2760049 0 0 -2760067 128 0 -2760196 0 0 -2760236 128 0 -2760349 0 0 -2760394 128 0 -2760512 0 0 -2760556 128 0 -2760679 0 0 -2760744 128 0 -2760875 0 0 -2760895 128 0 -2760997 0 0 -2761064 128 0 -2761159 0 0 -2761405 128 0 -2761474 0 0 -2761947 128 0 -2761993 0 0 -2762069 128 0 -2762158 0 0 -2762237 128 0 -2762270 0 0 -2762301 128 0 -2762338 0 0 -2762413 128 0 -2762515 0 0 -2762593 128 0 -2762687 0 0 -2762825 128 0 -2762875 0 0 -2762963 128 0 -2762977 0 0 -2763006 128 0 -2763029 0 0 -2763599 128 0 -2763750 0 0 -2778762 128 0 -2779299 0 0 -2779310 128 0 -2779720 0 0 -2779753 128 0 -2779862 0 0 -2779894 128 0 -2780009 0 0 -2780092 128 0 -2780158 0 0 -2780234 128 0 -2780300 0 0 -2780360 128 0 -2780460 0 0 -2780551 128 0 -2780607 0 0 -2780789 128 0 -2780817 0 0 -2780931 128 0 -2780976 0 0 -2781104 128 0 -2781138 0 0 -2781321 128 0 -2781360 0 0 -2781483 128 0 -2781518 0 0 -2781884 128 0 -2781911 0 0 -2787595 totRewards = 63 -2787595 64 8 -2787795 64 0 -2787877 0 0 -2787916 64 0 -2787951 0 0 -2787971 64 0 -2790162 0 0 -2790167 64 0 -2790645 0 0 -2790670 64 0 -2791939 0 0 -2791975 64 0 -2792085 0 0 -2792148 64 0 -2792219 0 0 -2795469 totRewards = 64 -2795469 128 16 -2795576 0 16 -2795648 128 16 -2795669 128 0 -2795788 0 0 -2795851 128 0 -2795943 0 0 -2796014 128 0 -2796366 0 0 -2796401 128 0 -2796759 0 0 -2796781 128 0 -2797183 0 0 -2797208 128 0 -2797330 0 0 -2797363 128 0 -2797490 0 0 -2797512 128 0 -2797644 0 0 -2797673 128 0 -2797809 0 0 -2797850 128 0 -2797975 0 0 -2798014 128 0 -2798126 0 0 -2798163 128 0 -2798279 0 0 -2798323 128 0 -2798435 0 0 -2798481 128 0 -2798596 0 0 -2798654 128 0 -2798757 0 0 -2798823 128 0 -2798920 0 0 -2807348 totRewards = 65 -2807348 64 8 -2807548 64 0 -2808025 0 0 -2808028 64 0 -2810196 0 0 -2810226 64 0 -2810345 0 0 -2810392 64 0 -2810497 0 0 -2810569 64 0 -2810614 0 0 -2813558 totRewards = 66 -2813558 128 16 -2813758 128 0 -2813988 0 0 -2814012 128 0 -2814112 0 0 -2814179 128 0 -2815017 0 0 -2815036 128 0 -2815165 0 0 -2815173 128 0 -2815303 0 0 -2815311 128 0 -2815449 0 0 -2815465 128 0 -2815591 0 0 -2815617 128 0 -2815755 0 0 -2815768 128 0 -2815898 0 0 -2815928 128 0 -2816053 0 0 -2816098 128 0 -2816217 0 0 -2816253 128 0 -2816375 0 0 -2816390 128 0 -2816978 0 0 -2816985 128 0 -2817129 0 0 -2817155 128 0 -2817290 0 0 -2817312 128 0 -2817449 0 0 -2817473 128 0 -2817609 0 0 -2817652 128 0 -2817764 0 0 -2817804 128 0 -2817924 0 0 -2817966 128 0 -2818098 0 0 -2818153 128 0 -2818262 0 0 -2818318 128 0 -2818429 0 0 -2818489 128 0 -2818598 0 0 -2818666 128 0 -2818768 0 0 -2818819 128 0 -2818930 0 0 -2818995 128 0 -2819118 0 0 -2819166 128 0 -2819284 0 0 -2819343 128 0 -2819453 0 0 -2819521 128 0 -2819551 0 0 -2819579 128 0 -2819597 0 0 -2830526 totRewards = 67 -2830526 64 8 -2830672 0 8 -2830726 0 0 -2830732 64 0 -2831181 0 0 -2831203 64 0 -2832711 0 0 -2832728 64 0 -2833188 0 0 -2833203 64 0 -2833355 0 0 -2833365 64 0 -2833681 0 0 -2833698 64 0 -2833843 0 0 -2834265 64 0 -2835014 0 0 -2835058 64 0 -2835167 0 0 -2835219 64 0 -2835279 0 0 -2837950 totRewards = 68 -2837950 128 16 -2838150 128 0 -2838178 0 0 -2838246 128 0 -2838261 0 0 -2838325 128 0 -2838532 0 0 -2838570 128 0 -2838778 0 0 -2838815 128 0 -2838915 0 0 -2838967 128 0 -2839344 0 0 -2839362 128 0 -2839799 0 0 -2839819 128 0 -2839944 0 0 -2839984 128 0 -2840106 0 0 -2840124 128 0 -2840264 0 0 -2840297 128 0 -2840416 0 0 -2840459 128 0 -2840584 0 0 -2840619 128 0 -2840740 0 0 -2840768 128 0 -2840903 0 0 -2840909 128 0 -2841496 0 0 -2841512 128 0 -2841651 0 0 -2841691 128 0 -2841802 0 0 -2846687 totRewards = 69 -2846687 64 8 -2846887 64 0 -2848800 0 0 -2848810 64 0 -2849435 0 0 -2849465 64 0 -2849584 0 0 -2849630 64 0 -2849756 0 0 -2849769 64 0 -2849895 0 0 -2849972 64 0 -2850025 0 0 -2853239 totRewards = 70 -2853239 128 16 -2853434 0 16 -2853439 0 0 -2853550 128 0 -2853586 0 0 -2853625 128 0 -2853850 0 0 -2853874 128 0 -2854227 0 0 -2854279 128 0 -2854655 0 0 -2854676 128 0 -2854949 0 0 -2854963 128 0 -2855101 0 0 -2855129 128 0 -2855248 0 0 -2855290 128 0 -2855421 0 0 -2855451 128 0 -2855580 0 0 -2855622 128 0 -2855736 0 0 -2855780 128 0 -2855894 0 0 -2855929 128 0 -2856064 0 0 -2856067 128 0 -2856202 0 0 -2856220 128 0 -2856358 0 0 -2856374 128 0 -2856674 0 0 -2856695 128 0 -2856817 0 0 -2856867 128 0 -2856972 0 0 -2860351 totRewards = 71 -2860351 64 8 -2860551 64 0 -2860594 0 0 -2860605 64 0 -2863128 0 0 -2863147 64 0 -2863681 0 0 -2863721 64 0 -2863856 0 0 -2863872 64 0 -2864884 0 0 -2865052 64 0 -2865726 0 0 -2865753 64 0 -2865907 0 0 -2865934 64 0 -2867130 0 0 -2867142 64 0 -2867841 0 0 -2867860 64 0 -2867996 0 0 -2873333 64 0 -2873589 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140480029758544 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -4817847 0 0 -4817864 64 0 -4818025 0 0 -4818034 64 0 -4818369 0 0 -4818377 64 0 -4818526 0 0 -4818555 64 0 -4818673 0 0 -4818736 64 0 -4818831 0 0 -4819088 64 0 -4819182 0 0 -4819213 64 0 -4819739 0 0 -4819764 64 0 -4819903 0 0 -4819950 64 0 -4820061 0 0 -4820111 64 0 -4820420 0 0 -4820429 64 0 -4820510 0 0 -4828786 totRewards = 3 -4828786 128 16 -4828986 128 0 -4829102 0 0 -4829123 128 0 -4829163 0 0 -4829191 128 0 -4829454 0 0 -4829472 128 0 -4829583 0 0 -4829600 128 0 -4829709 0 0 -4829746 128 0 -4829840 0 0 -4829888 128 0 -4829990 0 0 -4830039 128 0 -4830140 0 0 -4830186 128 0 -4830278 0 0 -4830338 128 0 -4830443 0 0 -4830498 128 0 -4830615 0 0 -4830682 128 0 -4830774 0 0 -4830907 128 0 -4830929 0 0 -4831031 128 0 -4831112 0 0 -4831194 128 0 -4831301 0 0 -4831362 128 0 -4831469 0 0 -4831536 128 0 -4831642 0 0 -4831707 128 0 -4831814 0 0 -4831907 128 0 -4831930 0 0 -4831970 128 0 -4832014 0 0 -4832102 128 0 -4832216 0 0 -4832248 128 0 -4832391 0 0 -4832422 128 0 -4833030 0 0 -4833058 128 0 -4833227 0 0 -4833249 128 0 -4833394 0 0 -4833452 128 0 -4833557 0 0 -4833703 128 0 -4833758 0 0 -4833839 128 0 -4833954 0 0 -4834046 128 0 -4834077 0 0 -4834088 128 0 -4834147 0 0 -4834291 128 0 -4834346 0 0 -4834485 128 0 -4834534 0 0 -4834622 128 0 -4834638 0 0 -4834686 128 0 -4834721 0 0 -4834793 128 0 -4834906 0 0 -4834976 128 0 -4835056 0 0 -4852460 totRewards = 4 -4852460 64 8 -4852512 0 8 -4852521 64 8 -4852660 64 0 -4852675 0 0 -4852738 64 0 -4852959 0 0 -4852998 64 0 -4853080 0 0 -4853127 64 0 -4853229 0 0 -4853243 64 0 -4853356 0 0 -4853378 64 0 -4853487 0 0 -4853492 64 0 -4853610 0 0 -4853641 64 0 -4853755 0 0 -4853781 64 0 -4853899 0 0 -4853919 64 0 -4854034 0 0 -4854057 64 0 -4854186 0 0 -4854216 64 0 -4854338 0 0 -4854359 64 0 -4854502 0 0 -4854523 64 0 -4854658 0 0 -4854696 64 0 -4854849 0 0 -4854873 64 0 -4855013 0 0 -4855063 64 0 -4855209 0 0 -4855242 64 0 -4855396 0 0 -4855426 64 0 -4855575 0 0 -4855604 64 0 -4856208 0 0 -4856240 64 0 -4856392 0 0 -4856419 64 0 -4856580 0 0 -4856610 64 0 -4856759 0 0 -4856801 64 0 -4856954 0 0 -4857005 64 0 -4857152 0 0 -4857180 64 0 -4857889 0 0 -4857932 64 0 -4858068 0 0 -4858111 64 0 -4858420 0 0 -4858438 64 0 -4858585 0 0 -4866594 totRewards = 5 -4866594 128 16 -4866662 0 16 -4866681 128 16 -4866794 128 0 -4867290 0 0 -4867314 128 0 -4867550 0 0 -4867587 128 0 -4867683 0 0 -4867725 128 0 -4867812 0 0 -4867845 128 0 -4867957 0 0 -4867982 128 0 -4868100 0 0 -4868124 128 0 -4868232 0 0 -4868271 128 0 -4868372 0 0 -4868411 128 0 -4868516 0 0 -4868554 128 0 -4868673 0 0 -4868705 128 0 -4868821 0 0 -4868874 128 0 -4868991 0 0 -4869036 128 0 -4869154 0 0 -4869203 128 0 -4869318 0 0 -4869385 128 0 -4869503 0 0 -4869568 128 0 -4869673 0 0 -4869754 128 0 -4869863 0 0 -4869946 128 0 -4870043 0 0 -4870126 128 0 -4870241 0 0 -4870282 128 0 -4871043 0 0 -4871067 128 0 -4871200 0 0 -4871242 128 0 -4871377 0 0 -4871431 128 0 -4871575 0 0 -4871609 128 0 -4871755 0 0 -4871817 128 0 -4871920 0 0 -4872003 128 0 -4872024 0 0 -4872068 128 0 -4872107 0 0 -4872194 128 0 -4872273 0 0 -4876373 totRewards = 6 -4876373 64 8 -4876573 64 0 -4876675 0 0 -4876736 64 0 -4876839 0 0 -4876874 64 0 -4876984 0 0 -4876997 64 0 -4877117 0 0 -4877126 64 0 -4877250 0 0 -4877260 64 0 -4877517 0 0 -4877545 64 0 -4877666 0 0 -4877697 64 0 -4877817 0 0 -4877847 64 0 -4877980 0 0 -4878003 64 0 -4878145 0 0 -4878177 64 0 -4878328 0 0 -4878362 64 0 -4878523 0 0 -4878577 64 0 -4878731 0 0 -4878775 64 0 -4878934 0 0 -4878967 64 0 -4879125 0 0 -4879162 64 0 -4879300 0 0 -4879318 64 0 -4880030 0 0 -4880060 64 0 -4880215 0 0 -4880260 64 0 -4880399 0 0 -4880465 64 0 -4880596 0 0 -4880664 64 0 -4880751 0 0 -4880780 64 0 -4881140 0 0 -4881161 64 0 -4881317 0 0 -4881362 64 0 -4881499 0 0 -4881559 64 0 -4881695 0 0 -4881720 64 0 -4882244 0 0 -4882270 64 0 -4882413 0 0 -4882508 64 0 -4882546 0 0 -4896386 64 0 -4896645 0 0 -4896669 64 0 -4896794 0 0 -4896812 64 0 -4896947 0 0 -4896952 64 0 -4897084 0 0 -4897108 64 0 -4897231 0 0 -4897256 64 0 -4897387 0 0 -4897407 64 0 -4897547 0 0 -4897567 64 0 -4897717 0 0 -4897729 64 0 -4897865 0 0 -4897901 64 0 -4898027 0 0 -4898077 64 0 -4898188 0 0 -4898258 64 0 -4898327 0 0 -4901581 totRewards = 7 -4901581 128 16 -4901694 0 16 -4901717 128 16 -4901772 0 16 -4901781 0 0 -4901805 128 0 -4902063 0 0 -4902089 128 0 -4902305 0 0 -4902340 128 0 -4902427 0 0 -4902479 128 0 -4902847 0 0 -4902863 128 0 -4903270 0 0 -4903289 128 0 -4903411 0 0 -4903434 128 0 -4903569 0 0 -4903584 128 0 -4903714 0 0 -4903744 128 0 -4903871 0 0 -4903917 128 0 -4904046 0 0 -4904082 128 0 -4904216 0 0 -4904258 128 0 -4904380 0 0 -4904424 128 0 -4904567 0 0 -4904609 128 0 -4904742 0 0 -4904781 128 0 -4904916 0 0 -4904961 128 0 -4905081 0 0 -4905124 128 0 -4905253 0 0 -4905287 128 0 -4905593 0 0 -4905609 128 0 -4905739 0 0 -4905792 128 0 -4905931 0 0 -4906048 128 0 -4906099 0 0 -4906215 128 0 -4906274 0 0 -4906347 128 0 -4906454 0 0 -4906533 128 0 -4906542 0 0 -4906585 128 0 -4906644 0 0 -4906773 128 0 -4906818 0 0 -4907177 128 0 -4907200 0 0 -4907941 128 0 -4907959 0 0 -4908081 128 0 -4908131 0 0 -4908213 128 0 -4908317 0 0 -4908381 128 0 -4908418 0 0 -4908446 128 0 -4908485 0 0 -4911724 totRewards = 8 -4911724 64 8 -4911924 64 0 -4911941 0 0 -4911962 64 0 -4912433 0 0 -4912458 64 0 -4912573 0 0 -4912601 64 0 -4912851 0 0 -4912869 64 0 -4912989 0 0 -4913014 64 0 -4913134 0 0 -4913160 64 0 -4913459 0 0 -4913478 64 0 -4913610 0 0 -4913641 64 0 -4913784 0 0 -4913808 64 0 -4913964 0 0 -4913989 64 0 -4914118 0 0 -4914155 64 0 -4914296 0 0 -4914326 64 0 -4914463 0 0 -4914498 64 0 -4914627 0 0 -4914667 64 0 -4914793 0 0 -4914823 64 0 -4914974 0 0 -4914985 64 0 -4915471 0 0 -4915498 64 0 -4915646 0 0 -4915671 64 0 -4916187 0 0 -4916204 64 0 -4916350 0 0 -4916378 64 0 -4916503 0 0 -4916561 64 0 -4916674 0 0 -4920485 totRewards = 9 -4920485 128 16 -4920685 128 0 -4920977 0 0 -4921018 128 0 -4921139 0 0 -4921178 128 0 -4921274 0 0 -4921292 128 0 -4921397 0 0 -4921428 128 0 -4921547 0 0 -4921562 128 0 -4921701 0 0 -4921720 128 0 -4921826 0 0 -4921858 128 0 -4921972 0 0 -4921995 128 0 -4922277 0 0 -4922310 128 0 -4922441 0 0 -4922467 128 0 -4922606 0 0 -4922629 128 0 -4922757 0 0 -4922800 128 0 -4922934 0 0 -4922979 128 0 -4923108 0 0 -4923158 128 0 -4923280 0 0 -4923331 128 0 -4923450 0 0 -4923491 128 0 -4924091 0 0 -4924123 128 0 -4924262 0 0 -4924287 128 0 -4924429 0 0 -4924468 128 0 -4924610 0 0 -4924639 128 0 -4924788 0 0 -4924827 128 0 -4924973 0 0 -4925030 128 0 -4925160 0 0 -4925221 128 0 -4925327 0 0 -4925937 128 0 -4925950 0 0 -4928799 totRewards = 10 -4928799 64 8 -4928969 0 8 -4928987 64 8 -4928999 64 0 -4929480 0 0 -4929512 64 0 -4929639 0 0 -4929655 64 0 -4929782 0 0 -4929805 64 0 -4929915 0 0 -4929932 64 0 -4930065 0 0 -4930084 64 0 -4930210 0 0 -4930220 64 0 -4930525 0 0 -4930544 64 0 -4930854 0 0 -4930878 64 0 -4931024 0 0 -4931054 64 0 -4931200 0 0 -4931231 64 0 -4931565 0 0 -4931603 64 0 -4931764 0 0 -4931795 64 0 -4931957 0 0 -4931989 64 0 -4932364 0 0 -4932410 64 0 -4932560 0 0 -4947797 64 0 -4947959 0 0 -4948025 64 0 -4948717 0 0 -4948727 64 0 -4949039 0 0 -4949046 64 0 -4949176 0 0 -4949215 64 0 -4949340 0 0 -4949386 64 0 -4949498 0 0 -4967056 totRewards = 11 -4967056 128 16 -4967231 0 16 -4967256 0 0 -4967312 128 0 -4967362 0 0 -4967376 128 0 -4967612 0 0 -4967650 128 0 -4967858 0 0 -4967882 128 0 -4967971 0 0 -4968022 128 0 -4968377 0 0 -4968394 128 0 -4968518 0 0 -4968538 128 0 -4968794 0 0 -4968807 128 0 -4968951 0 0 -4968957 128 0 -4969082 0 0 -4969104 128 0 -4969226 0 0 -4969252 128 0 -4969378 0 0 -4969407 128 0 -4969531 0 0 -4969563 128 0 -4969697 0 0 -4969720 128 0 -4969861 0 0 -4969900 128 0 -4970025 0 0 -4970067 128 0 -4970192 0 0 -4970228 128 0 -4970347 0 0 -4970388 128 0 -4970503 0 0 -4970541 128 0 -4970971 0 0 -4971005 128 0 -4971135 0 0 -4971168 128 0 -4971305 0 0 -4971337 128 0 -4971468 0 0 -4971506 128 0 -4971636 0 0 -4971677 128 0 -4971809 0 0 -4971862 128 0 -4971983 0 0 -4972038 128 0 -4972151 0 0 -4972225 128 0 -4972334 0 0 -4972421 128 0 -4972490 0 0 -4975667 totRewards = 12 -4975667 64 8 -4975815 0 8 -4975853 64 8 -4975867 64 0 -4976483 0 0 -4976489 64 0 -4976881 0 0 -4976893 64 0 -4977017 0 0 -4977029 64 0 -4977172 0 0 -4977191 64 0 -4977318 0 0 -4977342 64 0 -4977468 0 0 -4977488 64 0 -4977628 0 0 -4977644 64 0 -4977793 0 0 -4977817 64 0 -4977959 0 0 -4977990 64 0 -4978129 0 0 -4978148 64 0 -4978307 0 0 -4978314 64 0 -4978461 0 0 -4978489 64 0 -4978625 0 0 -4978665 64 0 -4978796 0 0 -4978818 64 0 -4979118 0 0 -4979125 64 0 -4979622 0 0 -4979635 64 0 -4979958 0 0 -4979985 64 0 -4980103 0 0 -4980159 64 0 -4980260 0 0 -4983502 totRewards = 13 -4983502 128 16 -4983702 128 0 -4983726 0 0 -4983779 128 0 -4983973 0 0 -4984037 128 0 -4984095 0 0 -4984118 128 0 -4984358 0 0 -4984393 128 0 -4984494 0 0 -4984560 128 0 -4984607 0 0 -4984634 128 0 -4984925 0 0 -4984932 128 0 -4985063 0 0 -4985072 128 0 -4985202 0 0 -4985216 128 0 -4985343 0 0 -4985374 128 0 -4985498 0 0 -4985536 128 0 -4985666 0 0 -4985703 128 0 -4985825 0 0 -4985871 128 0 -4985996 0 0 -4986049 128 0 -4986173 0 0 -4986216 128 0 -4986345 0 0 -4986392 128 0 -4986515 0 0 -4986564 128 0 -4986683 0 0 -4986706 128 0 -4987137 0 0 -4987165 128 0 -4987293 0 0 -4987326 128 0 -4987459 0 0 -4987529 128 0 -4987549 0 0 -4987558 128 0 -4987628 0 0 -4987690 128 0 -4987801 0 0 -4988118 128 0 -4988160 0 0 -4988272 128 0 -4988333 0 0 -4988481 128 0 -4988512 0 0 -4988658 128 0 -4988684 0 0 -4988847 128 0 -4988874 0 0 -4992017 totRewards = 14 -4992017 64 8 -4992217 64 0 -4992245 0 0 -4992258 64 0 -4993747 0 0 -4993755 64 0 -4994232 0 0 -4994243 64 0 -4994394 0 0 -4994418 64 0 -4994917 0 0 -4994937 64 0 -4995077 0 0 -4995101 64 0 -4995241 0 0 -4995266 64 0 -4995416 0 0 -4995427 64 0 -4995585 0 0 -4995600 64 0 -4995760 0 0 -4995767 64 0 -4996645 0 0 -4996677 64 0 -4996811 0 0 -4996862 64 0 -4997027 0 0 -4997159 64 0 -4997203 0 0 -4997275 64 0 -4997417 0 0 -4997432 64 0 -4997789 0 0 -4997818 64 0 -4997960 0 0 -4997999 64 0 -4998121 0 0 -4998164 64 0 -4998268 0 0 -4998346 64 0 -4998393 0 0 -5001232 totRewards = 15 -5001232 128 16 -5001398 0 16 -5001432 0 0 -5001436 128 0 -5001501 0 0 -5001510 128 0 -5001628 0 0 -5001660 128 0 -5001753 0 0 -5001791 128 0 -5002001 0 0 -5002056 128 0 -5002135 0 0 -5002203 128 0 -5002418 0 0 -5002432 128 0 -5002556 0 0 -5002576 128 0 -5002867 0 0 -5002876 128 0 -5002999 0 0 -5003032 128 0 -5003161 0 0 -5003186 128 0 -5003332 0 0 -5003353 128 0 -5003491 0 0 -5003532 128 0 -5003656 0 0 -5003703 128 0 -5003835 0 0 -5003879 128 0 -5004005 0 0 -5004053 128 0 -5004179 0 0 -5004226 128 0 -5004337 0 0 -5004383 128 0 -5004501 0 0 -5004527 128 0 -5004665 0 0 -5004722 128 0 -5004823 0 0 -5004889 128 0 -5004995 0 0 -5005073 128 0 -5005082 0 0 -5005114 128 0 -5005159 0 0 -5005242 128 0 -5005334 0 0 -5005852 128 0 -5005893 0 0 -5008890 totRewards = 16 -5008890 64 8 -5009090 64 0 -5009153 0 0 -5009177 64 0 -5009662 0 0 -5009677 64 0 -5010833 0 0 -5010840 64 0 -5011344 0 0 -5011352 64 0 -5012032 0 0 -5012067 64 0 -5012533 0 0 -5012549 64 0 -5012852 0 0 -5012878 64 0 -5013573 0 0 -5013589 64 0 -5013750 0 0 -5013779 64 0 -5013922 0 0 -5013956 64 0 -5014073 0 0 -5014143 64 0 -5014202 0 0 -5016866 totRewards = 17 -5016866 128 16 -5017035 0 16 -5017066 0 0 -5017093 128 0 -5017282 0 0 -5017317 128 0 -5017427 0 0 -5017472 128 0 -5017682 0 0 -5017714 128 0 -5017810 0 0 -5017879 128 0 -5018240 0 0 -5018268 128 0 -5018689 0 0 -5018729 128 0 -5018864 0 0 -5018897 128 0 -5019039 0 0 -5019070 128 0 -5019192 0 0 -5019238 128 0 -5019368 0 0 -5019406 128 0 -5019540 0 0 -5019606 128 0 -5019715 0 0 -5019777 128 0 -5019895 0 0 -5019949 128 0 -5020073 0 0 -5020130 128 0 -5020253 0 0 -5020329 128 0 -5020438 0 0 -5020490 128 0 -5020632 0 0 -5020694 128 0 -5020806 0 0 -5020877 128 0 -5020988 0 0 -5021053 128 0 -5021167 0 0 -5021203 128 0 -5021466 0 0 -5021522 128 0 -5021633 0 0 -5021662 128 0 -5021802 0 0 -5021856 128 0 -5021973 0 0 -5022016 128 0 -5022131 0 0 -5022266 128 0 -5022292 0 0 -5022425 128 0 -5022475 0 0 -5026113 totRewards = 18 -5026113 64 8 -5026313 64 0 -5026398 0 0 -5026415 64 0 -5027453 0 0 -5027465 64 0 -5028444 0 0 -5028457 64 0 -5028987 0 0 -5029001 64 0 -5029159 0 0 -5029175 64 0 -5029328 0 0 -5029359 64 0 -5030455 0 0 -5030519 64 0 -5030679 0 0 -5030706 64 0 -5031103 0 0 -5031124 64 0 -5031310 0 0 -5031326 64 0 -5031509 0 0 -5031532 64 0 -5031694 0 0 -5031778 64 0 -5031836 0 0 -5038203 totRewards = 19 -5038203 128 16 -5038403 128 0 -5038470 0 0 -5038492 128 0 -5038725 0 0 -5038778 128 0 -5039133 0 0 -5039171 128 0 -5039554 0 0 -5039578 128 0 -5039998 0 0 -5040014 128 0 -5040312 0 0 -5040331 128 0 -5040470 0 0 -5040494 128 0 -5040634 0 0 -5040676 128 0 -5040814 0 0 -5040839 128 0 -5040978 0 0 -5041015 128 0 -5041135 0 0 -5041154 128 0 -5041700 0 0 -5044489 totRewards = 20 -5044489 64 8 -5044677 0 8 -5044689 0 0 -5044711 64 0 -5045338 0 0 -5045366 64 0 -5047558 0 0 -5047585 64 0 -5047726 0 0 -5047750 64 0 -5047899 0 0 -5047908 64 0 -5048219 0 0 -5048237 64 0 -5049433 0 0 -5049446 64 0 -5049579 0 0 -5049625 64 0 -5049732 0 0 -5052543 totRewards = 21 -5052543 128 16 -5052718 0 16 -5052743 0 0 -5052789 128 0 -5052845 0 0 -5052848 128 0 -5052963 0 0 -5053000 128 0 -5053094 0 0 -5053143 128 0 -5053351 0 0 -5053393 128 0 -5053493 0 0 -5053552 128 0 -5053940 0 0 -5053959 128 0 -5054377 0 0 -5054396 128 0 -5054523 0 0 -5054549 128 0 -5054844 0 0 -5054879 128 0 -5055005 0 0 -5055045 128 0 -5055179 0 0 -5055212 128 0 -5055345 0 0 -5055389 128 0 -5055517 0 0 -5055559 128 0 -5055688 0 0 -5055726 128 0 -5055862 0 0 -5055891 128 0 -5056013 0 0 -5056070 128 0 -5056176 0 0 -5056230 128 0 -5056347 0 0 -5056398 128 0 -5056519 0 0 -5056566 128 0 -5056682 0 0 -5056732 128 0 -5056850 0 0 -5056891 128 0 -5057020 0 0 -5057083 128 0 -5057197 0 0 -5057235 128 0 -5057366 0 0 -5057420 128 0 -5057542 0 0 -5057592 128 0 -5057703 0 0 -5057777 128 0 -5057897 0 0 -5057960 128 0 -5058056 0 0 -5061089 totRewards = 22 -5061089 64 8 -5061289 64 0 -5061291 0 0 -5061310 64 0 -5063485 0 0 -5063497 64 0 -5063662 0 0 -5063674 64 0 -5063833 0 0 -5063863 64 0 -5064177 0 0 -5064211 64 0 -5064526 0 0 -5064541 64 0 -5064699 0 0 -5064716 64 0 -5064881 0 0 -5064886 64 0 -5065771 0 0 -5065783 64 0 -5066106 0 0 -5066257 64 0 -5066781 0 0 -5066830 64 0 -5066981 0 0 -5067021 64 0 -5067175 0 0 -5067248 64 0 -5067378 0 0 -5067422 64 0 -5067576 0 0 -5075163 64 0 -5075208 0 0 -5075224 64 0 -5075249 0 0 -5075287 64 0 -5075300 0 0 -5078142 totRewards = 23 -5078142 128 16 -5078258 0 16 -5078302 128 16 -5078342 128 0 -5078345 0 0 -5078381 128 0 -5078596 0 0 -5078633 128 0 -5078843 0 0 -5078862 128 0 -5078967 0 0 -5079003 128 0 -5079951 0 0 -5079980 128 0 -5080260 0 0 -5080281 128 0 -5080419 0 0 -5080466 128 0 -5080587 0 0 -5080629 128 0 -5080761 0 0 -5080802 128 0 -5080927 0 0 -5080975 128 0 -5081092 0 0 -5081138 128 0 -5081251 0 0 -5081293 128 0 -5081556 0 0 -5081592 128 0 -5081697 0 0 -5084357 totRewards = 24 -5084357 64 8 -5084557 64 0 -5084562 0 0 -5084582 64 0 -5087017 0 0 -5087036 64 0 -5087177 0 0 -5087210 64 0 -5087523 0 0 -5087542 64 0 -5087686 0 0 -5087733 64 0 -5087837 0 0 -5087891 64 0 -5088028 0 0 -5088033 64 0 -5088359 0 0 -5088374 64 0 -5088517 0 0 -5092862 totRewards = 25 -5092862 128 16 -5093062 128 0 -5093079 0 0 -5093150 128 0 -5093188 0 0 -5093209 128 0 -5093448 0 0 -5093563 128 0 -5093631 0 0 -5093710 128 0 -5094748 0 0 -5094768 128 0 -5095218 0 0 -5095240 128 0 -5095376 0 0 -5095406 128 0 -5095538 0 0 -5095559 128 0 -5096438 0 0 -5096445 128 0 -5096601 0 0 -5096613 128 0 -5096755 0 0 -5096784 128 0 -5096917 0 0 -5096946 128 0 -5097086 0 0 -5097105 128 0 -5097276 0 0 -5097303 128 0 -5097450 0 0 -5097470 128 0 -5097604 0 0 -5097645 128 0 -5097759 0 0 -5100630 totRewards = 26 -5100630 64 8 -5100819 0 8 -5100829 64 8 -5100830 64 0 -5101055 0 0 -5101068 64 0 -5102287 0 0 -5102294 64 0 -5102437 0 0 -5102446 64 0 -5103424 0 0 -5103442 64 0 -5103578 0 0 -5103612 64 0 -5104060 0 0 -5104071 64 0 -5104375 0 0 -5104400 64 0 -5104529 0 0 -5107046 totRewards = 27 -5107046 128 16 -5107209 0 16 -5107246 0 0 -5107267 128 0 -5107307 0 0 -5107356 128 0 -5107447 0 0 -5107485 128 0 -5107580 0 0 -5107618 128 0 -5107822 0 0 -5107879 128 0 -5107961 0 0 -5108034 128 0 -5108402 0 0 -5108428 128 0 -5108724 0 0 -5108744 128 0 -5108870 0 0 -5108924 128 0 -5109045 0 0 -5109082 128 0 -5109212 0 0 -5109254 128 0 -5109371 0 0 -5109428 128 0 -5109550 0 0 -5109597 128 0 -5109718 0 0 -5109763 128 0 -5109886 0 0 -5109902 128 0 -5110195 0 0 -5110215 128 0 -5110342 0 0 -5110385 128 0 -5110502 0 0 -5110551 128 0 -5110663 0 0 -5110720 128 0 -5110838 0 0 -5110894 128 0 -5111005 0 0 -5111053 128 0 -5111181 0 0 -5111219 128 0 -5111331 0 0 -5111461 128 0 -5111535 0 0 -5111594 128 0 -5111712 0 0 -5111834 128 0 -5111882 0 0 -5111971 128 0 -5112063 0 0 -5114930 totRewards = 28 -5114930 64 8 -5115130 64 0 -5115342 0 0 -5115353 64 0 -5115466 0 0 -5115479 64 0 -5117913 0 0 -5117950 64 0 -5118083 0 0 -5118109 64 0 -5118242 0 0 -5118279 64 0 -5118377 0 0 -5121063 totRewards = 29 -5121063 128 16 -5121263 128 0 -5121284 0 0 -5121321 128 0 -5121531 0 0 -5121579 128 0 -5121675 0 0 -5121685 128 0 -5121914 0 0 -5121958 128 0 -5122058 0 0 -5122093 128 0 -5122352 0 0 -5122359 128 0 -5122485 0 0 -5122515 128 0 -5122943 0 0 -5122971 128 0 -5123104 0 0 -5123135 128 0 -5123279 0 0 -5123289 128 0 -5123418 0 0 -5123458 128 0 -5123589 0 0 -5123625 128 0 -5123756 0 0 -5123809 128 0 -5123944 0 0 -5123994 128 0 -5124120 0 0 -5124169 128 0 -5124287 0 0 -5124333 128 0 -5124454 0 0 -5124473 128 0 -5124906 0 0 -5124936 128 0 -5125070 0 0 -5125110 128 0 -5125219 0 0 -5125272 128 0 -5125381 0 0 -5125430 128 0 -5125545 0 0 -5125607 128 0 -5125722 0 0 -5125814 128 0 -5125902 0 0 -5125984 128 0 -5126082 0 0 -5126164 128 0 -5126250 0 0 -5129004 totRewards = 30 -5129004 64 8 -5129204 64 0 -5131367 0 0 -5131377 64 0 -5132020 0 0 -5132050 64 0 -5132186 0 0 -5132216 64 0 -5132347 0 0 -5132387 64 0 -5132504 0 0 -5132561 64 0 -5132652 0 0 -5135335 totRewards = 31 -5135335 128 16 -5135508 0 16 -5135535 0 0 -5135640 128 0 -5135732 0 0 -5135766 128 0 -5136102 0 0 -5136154 128 0 -5136237 0 0 -5136284 128 0 -5136673 0 0 -5136703 128 0 -5137126 0 0 -5137148 128 0 -5137285 0 0 -5137306 128 0 -5137450 0 0 -5137477 128 0 -5137616 0 0 -5137659 128 0 -5137783 0 0 -5137826 128 0 -5137962 0 0 -5138000 128 0 -5138129 0 0 -5138174 128 0 -5138299 0 0 -5138346 128 0 -5138457 0 0 -5138505 128 0 -5138606 0 0 -5138667 128 0 -5138769 0 0 -5138833 128 0 -5138882 0 0 -5139462 128 0 -5141905 0 0 -5144726 totRewards = 32 -5144726 64 8 -5144926 64 0 -5147101 0 0 -5147127 64 0 -5147279 0 0 -5147299 64 0 -5147604 0 0 -5147640 64 0 -5147763 0 0 -5147786 64 0 -5147925 0 0 -5147955 64 0 -5148080 0 0 -5148143 64 0 -5148214 0 0 -5151111 totRewards = 33 -5151111 128 16 -5151273 0 16 -5151311 0 0 -5151344 128 0 -5151670 0 0 -5151688 128 0 -5151935 0 0 -5151952 128 0 -5152056 0 0 -5152097 128 0 -5152484 0 0 -5152511 128 0 -5152814 0 0 -5152826 128 0 -5152960 0 0 -5153007 128 0 -5153127 0 0 -5153165 128 0 -5153285 0 0 -5153323 128 0 -5153452 0 0 -5153497 128 0 -5153620 0 0 -5153669 128 0 -5153794 0 0 -5153846 128 0 -5153967 0 0 -5154020 128 0 -5154141 0 0 -5154187 128 0 -5154313 0 0 -5154360 128 0 -5154489 0 0 -5154527 128 0 -5154652 0 0 -5154702 128 0 -5154833 0 0 -5154877 128 0 -5155016 0 0 -5155056 128 0 -5155182 0 0 -5155246 128 0 -5155368 0 0 -5155426 128 0 -5155536 0 0 -5155601 128 0 -5155688 0 0 -5158474 totRewards = 34 -5158474 64 8 -5158674 64 0 -5158727 0 0 -5158761 64 0 -5159911 0 0 -5159923 64 0 -5160893 0 0 -5160903 64 0 -5161066 0 0 -5161084 64 0 -5161421 0 0 -5161439 64 0 -5161596 0 0 -5161615 64 0 -5161765 0 0 -5161788 64 0 -5162603 0 0 -5162626 64 0 -5162768 0 0 -5166994 totRewards = 35 -5166994 128 16 -5167136 0 16 -5167194 0 0 -5167204 128 0 -5167391 0 0 -5167411 128 0 -5167529 0 0 -5167569 128 0 -5167669 0 0 -5167684 128 0 -5167770 0 0 -5167808 128 0 -5167905 0 0 -5167957 128 0 -5168206 0 0 -5168217 128 0 -5168342 0 0 -5168369 128 0 -5168809 0 0 -5168840 128 0 -5168968 0 0 -5169002 128 0 -5169134 0 0 -5169159 128 0 -5169295 0 0 -5169332 128 0 -5169458 0 0 -5169504 128 0 -5169624 0 0 -5169671 128 0 -5169796 0 0 -5169842 128 0 -5169962 0 0 -5170008 128 0 -5170127 0 0 -5170167 128 0 -5170295 0 0 -5170342 128 0 -5170465 0 0 -5170518 128 0 -5170617 0 0 -5170685 128 0 -5170792 0 0 -5170855 128 0 -5170967 0 0 -5171038 128 0 -5171144 0 0 -5171212 128 0 -5171289 0 0 -5173934 totRewards = 36 -5173934 64 8 -5174105 0 8 -5174130 64 8 -5174134 64 0 -5175323 0 0 -5175328 64 0 -5176145 0 0 -5176158 64 0 -5176303 0 0 -5176327 64 0 -5176657 0 0 -5176671 64 0 -5176823 0 0 -5176849 64 0 -5176986 0 0 -5177024 64 0 -5177150 0 0 -5177186 64 0 -5177317 0 0 -5177351 64 0 -5177460 0 0 -5180085 totRewards = 37 -5180085 128 16 -5180281 0 16 -5180285 0 0 -5180336 128 0 -5180527 0 0 -5180575 128 0 -5180662 0 0 -5180700 128 0 -5180918 0 0 -5180954 128 0 -5181053 0 0 -5181106 128 0 -5181492 0 0 -5181532 128 0 -5181796 0 0 -5181808 128 0 -5181944 0 0 -5181984 128 0 -5182104 0 0 -5182141 128 0 -5182279 0 0 -5182301 128 0 -5182427 0 0 -5182469 128 0 -5182594 0 0 -5182641 128 0 -5182770 0 0 -5182816 128 0 -5182934 0 0 -5182984 128 0 -5183104 0 0 -5183144 128 0 -5183270 0 0 -5183318 128 0 -5183450 0 0 -5183501 128 0 -5183601 0 0 -5183652 128 0 -5183762 0 0 -5183813 128 0 -5183927 0 0 -5183980 128 0 -5184082 0 0 -5184162 128 0 -5184268 0 0 -5184311 128 0 -5184425 0 0 -5184559 128 0 -5184626 0 0 -5185072 128 0 -5185147 0 0 -5185231 128 0 -5185272 0 0 -5185296 128 0 -5185303 0 0 -5188151 totRewards = 38 -5188151 64 8 -5188332 0 8 -5188350 64 8 -5188351 64 0 -5190520 0 0 -5190537 64 0 -5190865 0 0 -5190895 64 0 -5191213 0 0 -5191231 64 0 -5191381 0 0 -5191404 64 0 -5191556 0 0 -5191573 64 0 -5192075 0 0 -5192099 64 0 -5192965 0 0 -5192984 64 0 -5193154 0 0 -5193167 64 0 -5193500 0 0 -5193536 64 0 -5193666 0 0 -5193714 64 0 -5193793 0 0 -5196578 totRewards = 39 -5196578 128 16 -5196719 0 16 -5196778 0 0 -5196807 128 0 -5197286 0 0 -5197323 128 0 -5197431 0 0 -5197464 128 0 -5197547 0 0 -5197563 128 0 -5197996 0 0 -5198009 128 0 -5198294 0 0 -5198319 128 0 -5198449 0 0 -5198485 128 0 -5198614 0 0 -5198641 128 0 -5198769 0 0 -5198799 128 0 -5198933 0 0 -5198975 128 0 -5199094 0 0 -5199148 128 0 -5199275 0 0 -5199329 128 0 -5199449 0 0 -5199518 128 0 -5199607 0 0 -5199690 128 0 -5199748 0 0 -5203235 totRewards = 40 -5203235 64 8 -5203415 0 8 -5203435 0 0 -5203438 64 0 -5205107 0 0 -5205131 64 0 -5205618 0 0 -5205640 64 0 -5205789 0 0 -5205810 64 0 -5205961 0 0 -5205986 64 0 -5206121 0 0 -5206161 64 0 -5206276 0 0 -5206327 64 0 -5206421 0 0 -5209042 totRewards = 41 -5209042 128 16 -5209223 0 16 -5209242 0 0 -5209294 128 0 -5209472 0 0 -5209519 128 0 -5209608 0 0 -5209656 128 0 -5209867 0 0 -5209908 128 0 -5210005 0 0 -5210057 128 0 -5210438 0 0 -5210467 128 0 -5210751 0 0 -5210780 128 0 -5210900 0 0 -5210941 128 0 -5211065 0 0 -5211087 128 0 -5211230 0 0 -5211258 128 0 -5211393 0 0 -5211444 128 0 -5211563 0 0 -5211607 128 0 -5211729 0 0 -5211770 128 0 -5211893 0 0 -5211940 128 0 -5212057 0 0 -5212095 128 0 -5212221 0 0 -5212270 128 0 -5212388 0 0 -5212429 128 0 -5212552 0 0 -5212601 128 0 -5212747 0 0 -5212781 128 0 -5212909 0 0 -5212955 128 0 -5213071 0 0 -5213126 128 0 -5213223 0 0 -5213294 128 0 -5213369 0 0 -5216038 totRewards = 42 -5216038 64 8 -5216238 64 0 -5216247 0 0 -5216259 64 0 -5218419 0 0 -5218428 64 0 -5218758 0 0 -5218770 64 0 -5218912 0 0 -5218942 64 0 -5219076 0 0 -5219101 64 0 -5219245 0 0 -5219268 64 0 -5219408 0 0 -5219438 64 0 -5220449 0 0 -5220460 64 0 -5220626 0 0 -5220655 64 0 -5221023 0 0 -5221083 64 0 -5221441 0 0 -5221475 64 0 -5221949 0 0 -5221963 64 0 -5222108 0 0 -5222154 64 0 -5222271 0 0 -5222314 64 0 -5222434 0 0 -5226833 totRewards = 43 -5226833 128 16 -5227029 0 16 -5227033 0 0 -5227068 128 0 -5227277 0 0 -5227314 128 0 -5227672 0 0 -5227701 128 0 -5227812 0 0 -5227856 128 0 -5228250 0 0 -5228269 128 0 -5228687 0 0 -5228717 128 0 -5228853 0 0 -5228883 128 0 -5229023 0 0 -5229047 128 0 -5229184 0 0 -5229217 128 0 -5229351 0 0 -5229391 128 0 -5229519 0 0 -5229560 128 0 -5229679 0 0 -5229726 128 0 -5229826 0 0 -5229892 128 0 -5229979 0 0 -5230197 128 0 -5230771 0 0 -5233366 totRewards = 44 -5233366 64 8 -5233551 0 8 -5233566 0 0 -5233570 64 0 -5236348 0 0 -5236382 64 0 -5236501 0 0 -5236547 64 0 -5236653 0 0 -5239276 totRewards = 45 -5239276 128 16 -5239441 0 16 -5239476 0 0 -5239495 128 0 -5239684 0 0 -5239726 128 0 -5239830 0 0 -5239895 128 0 -5240273 0 0 -5240306 128 0 -5240717 0 0 -5240725 128 0 -5240855 0 0 -5240863 128 0 -5241154 0 0 -5241165 128 0 -5241305 0 0 -5241323 128 0 -5241455 0 0 -5241482 128 0 -5241616 0 0 -5241658 128 0 -5241782 0 0 -5241833 128 0 -5241966 0 0 -5242016 128 0 -5242143 0 0 -5242194 128 0 -5242316 0 0 -5242370 128 0 -5242490 0 0 -5242535 128 0 -5242649 0 0 -5242709 128 0 -5242811 0 0 -5242872 128 0 -5242964 0 0 -5243013 128 0 -5243124 0 0 -5243177 128 0 -5243289 0 0 -5243345 128 0 -5243466 0 0 -5243531 128 0 -5243632 0 0 -5243708 128 0 -5243816 0 0 -5243886 128 0 -5243967 0 0 -5247055 totRewards = 46 -5247055 64 8 -5247095 0 8 -5247106 64 8 -5247255 64 0 -5247283 0 0 -5247299 64 0 -5247905 0 0 -5247914 64 0 -5249400 0 0 -5249416 64 0 -5249745 0 0 -5249755 64 0 -5249905 0 0 -5249925 64 0 -5250068 0 0 -5250096 64 0 -5250554 0 0 -5250578 64 0 -5250890 0 0 -5250911 64 0 -5251051 0 0 -5251086 64 0 -5251207 0 0 -5251264 64 0 -5251360 0 0 -5253848 totRewards = 47 -5253848 128 16 -5254029 0 16 -5254048 0 0 -5254082 128 0 -5254276 0 0 -5254321 128 0 -5254415 0 0 -5254473 128 0 -5254688 0 0 -5254718 128 0 -5254821 0 0 -5254886 128 0 -5255267 0 0 -5255294 128 0 -5255721 0 0 -5255756 128 0 -5255882 0 0 -5255919 128 0 -5256059 0 0 -5256087 128 0 -5256223 0 0 -5256256 128 0 -5256381 0 0 -5256422 128 0 -5256552 0 0 -5256592 128 0 -5256711 0 0 -5256753 128 0 -5256878 0 0 -5256917 128 0 -5257042 0 0 -5257080 128 0 -5257207 0 0 -5257262 128 0 -5257366 0 0 -5257424 128 0 -5257525 0 0 -5257585 128 0 -5257691 0 0 -5257749 128 0 -5257859 0 0 -5257942 128 0 -5258054 0 0 -5258082 128 0 -5258211 0 0 -5258290 128 0 -5258369 0 0 -5258430 128 0 -5258531 0 0 -5258621 128 0 -5258643 0 0 -5258681 128 0 -5258722 0 0 -5258805 128 0 -5258896 0 0 -5258967 128 0 -5259053 0 0 -5261742 totRewards = 48 -5261742 64 8 -5261942 64 0 -5264296 0 0 -5264315 64 0 -5264997 0 0 -5265015 64 0 -5265320 0 0 -5265342 64 0 -5265648 0 0 -5265663 64 0 -5267205 0 0 -5267225 64 0 -5267360 0 0 -5267409 64 0 -5267507 0 0 -5270186 totRewards = 49 -5270186 128 16 -5270358 0 16 -5270386 0 0 -5270420 128 0 -5270639 0 0 -5270646 128 0 -5270761 0 0 -5270798 128 0 -5271031 0 0 -5271040 128 0 -5271155 0 0 -5271208 128 0 -5271579 0 0 -5271605 128 0 -5272037 0 0 -5272061 128 0 -5272198 0 0 -5272217 128 0 -5272359 0 0 -5272388 128 0 -5272532 0 0 -5272559 128 0 -5272697 0 0 -5272729 128 0 -5272858 0 0 -5272894 128 0 -5273019 0 0 -5273052 128 0 -5273179 0 0 -5273220 128 0 -5273350 0 0 -5273392 128 0 -5273511 0 0 -5273571 128 0 -5273666 0 0 -5273739 128 0 -5273835 0 0 -5273900 128 0 -5273928 0 0 -5273957 128 0 -5273973 0 0 -5274089 128 0 -5274170 0 0 -5274801 128 0 -5274825 0 0 -5277683 totRewards = 50 -5277683 64 8 -5277883 64 0 -5277903 0 0 -5277906 64 0 -5278381 0 0 -5278392 64 0 -5279198 0 0 -5279207 64 0 -5280021 0 0 -5280054 64 0 -5280388 0 0 -5280417 64 0 -5280565 0 0 -5280604 64 0 -5280742 0 0 -5280757 64 0 -5280917 0 0 -5280927 64 0 -5281087 0 0 -5281096 64 0 -5281246 0 0 -5281271 64 0 -5281422 0 0 -5281430 64 0 -5281916 0 0 -5281955 64 0 -5282063 0 0 -5284584 totRewards = 51 -5284583 128 16 -5284755 0 16 -5284783 0 0 -5284811 128 0 -5284992 0 0 -5285039 128 0 -5285134 0 0 -5285177 128 0 -5285398 0 0 -5285437 128 0 -5285537 0 0 -5285606 128 0 -5285978 0 0 -5286006 128 0 -5286276 0 0 -5286287 128 0 -5286413 0 0 -5286444 128 0 -5286572 0 0 -5286599 128 0 -5286738 0 0 -5286755 128 0 -5286904 0 0 -5286937 128 0 -5287064 0 0 -5287106 128 0 -5287229 0 0 -5287265 128 0 -5287391 0 0 -5287433 128 0 -5287544 0 0 -5287588 128 0 -5287709 0 0 -5287726 128 0 -5287868 0 0 -5287929 128 0 -5288015 0 0 -5290701 totRewards = 52 -5290701 64 8 -5290886 0 8 -5290898 64 8 -5290901 64 0 -5291551 0 0 -5291558 64 0 -5292463 0 0 -5292481 64 0 -5292627 0 0 -5292650 64 0 -5292960 0 0 -5292981 64 0 -5293117 0 0 -5293150 64 0 -5293276 0 0 -5293318 64 0 -5293442 0 0 -5293484 64 0 -5293587 0 0 -5296114 totRewards = 53 -5296114 128 16 -5296276 0 16 -5296314 0 0 -5296336 128 0 -5296507 0 0 -5296515 128 0 -5296673 0 0 -5296710 128 0 -5296948 0 0 -5296964 128 0 -5297059 0 0 -5297113 128 0 -5297498 0 0 -5297528 128 0 -5297810 0 0 -5297822 128 0 -5297954 0 0 -5297985 128 0 -5298116 0 0 -5298140 128 0 -5298278 0 0 -5298300 128 0 -5298435 0 0 -5298474 128 0 -5298606 0 0 -5298639 128 0 -5298778 0 0 -5298824 128 0 -5298944 0 0 -5298994 128 0 -5299098 0 0 -5299160 128 0 -5299257 0 0 -5299340 128 0 -5299402 0 0 -5302379 totRewards = 54 -5302379 64 8 -5302574 0 8 -5302579 0 0 -5302599 64 0 -5303763 0 0 -5303775 64 0 -5304720 0 0 -5304732 64 0 -5304878 0 0 -5304909 64 0 -5305067 0 0 -5305086 64 0 -5305224 0 0 -5305281 64 0 -5305378 0 0 -5305447 64 0 -5305554 0 0 -5306037 64 0 -5306058 0 0 -5306098 64 0 -5306224 0 0 -5306269 64 0 -5306388 0 0 -5309592 totRewards = 55 -5309592 128 16 -5309619 0 16 -5309658 128 16 -5309792 128 0 -5309830 0 0 -5309860 128 0 -5310483 0 0 -5310511 128 0 -5310769 0 0 -5310776 128 0 -5310902 0 0 -5310928 128 0 -5311041 0 0 -5311068 128 0 -5311200 0 0 -5311215 128 0 -5311365 0 0 -5311383 128 0 -5311511 0 0 -5311559 128 0 -5311681 0 0 -5311714 128 0 -5311848 0 0 -5311888 128 0 -5312016 0 0 -5312064 128 0 -5312184 0 0 -5312228 128 0 -5312346 0 0 -5312394 128 0 -5312499 0 0 -5312555 128 0 -5312645 0 0 -5312723 128 0 -5312810 0 0 -5313047 128 0 -5313173 0 0 -5313288 128 0 -5314099 0 0 -5318179 totRewards = 56 -5318179 64 8 -5318377 0 8 -5318379 0 0 -5318406 64 0 -5319133 0 0 -5319139 64 0 -5320503 0 0 -5320519 64 0 -5320656 0 0 -5320693 64 0 -5320811 0 0 -5320850 64 0 -5320959 0 0 -5322418 64 0 -5322432 0 0 -5324991 totRewards = 57 -5324991 128 16 -5325151 0 16 -5325191 0 0 -5325200 128 0 -5325398 0 0 -5325415 128 0 -5325523 0 0 -5325584 128 0 -5325776 0 0 -5325811 128 0 -5325912 0 0 -5325966 128 0 -5326338 0 0 -5326368 128 0 -5327322 0 0 -5327332 128 0 -5327480 0 0 -5327498 128 0 -5327632 0 0 -5327656 128 0 -5327786 0 0 -5327811 128 0 -5327945 0 0 -5327975 128 0 -5328110 0 0 -5328143 128 0 -5328257 0 0 -5328293 128 0 -5328427 0 0 -5328463 128 0 -5328588 0 0 -5328634 128 0 -5328755 0 0 -5328805 128 0 -5328918 0 0 -5328976 128 0 -5329078 0 0 -5329142 128 0 -5329246 0 0 -5329289 128 0 -5329399 0 0 -5332415 totRewards = 58 -5332415 64 8 -5332615 64 0 -5332650 0 0 -5332712 64 0 -5334670 0 0 -5334690 64 0 -5334833 0 0 -5334854 64 0 -5334987 0 0 -5335009 64 0 -5335150 0 0 -5335174 64 0 -5335309 0 0 -5335347 64 0 -5335474 0 0 -5335509 64 0 -5335638 0 0 -5335665 64 0 -5335812 0 0 -5335825 64 0 -5335977 0 0 -5335989 64 0 -5336132 0 0 -5336173 64 0 -5336471 0 0 -5336482 64 0 -5336637 0 0 -5336655 64 0 -5336787 0 0 -5336837 64 0 -5336953 0 0 -5337017 64 0 -5337057 0 0 -5340738 totRewards = 59 -5340738 128 16 -5340938 128 0 -5340949 0 0 -5340986 128 0 -5341337 0 0 -5341353 128 0 -5341754 0 0 -5341807 128 0 -5342184 0 0 -5342202 128 0 -5342624 0 0 -5342638 128 0 -5342771 0 0 -5342796 128 0 -5342931 0 0 -5342953 128 0 -5343088 0 0 -5343118 128 0 -5343246 0 0 -5343281 128 0 -5343408 0 0 -5343455 128 0 -5343575 0 0 -5343622 128 0 -5343735 0 0 -5343781 128 0 -5343895 0 0 -5343926 128 0 -5344050 0 0 -5344088 128 0 -5344204 0 0 -5344259 128 0 -5344368 0 0 -5344422 128 0 -5344528 0 0 -5344586 128 0 -5344693 0 0 -5344746 128 0 -5344845 0 0 -5344903 128 0 -5345007 0 0 -5345065 128 0 -5345170 0 0 -5345260 128 0 -5345346 0 0 -5345389 128 0 -5345506 0 0 -5345566 128 0 -5345688 0 0 -5345752 128 0 -5345862 0 0 -5345936 128 0 -5346010 0 0 -5348749 totRewards = 60 -5348749 64 8 -5348932 0 8 -5348949 0 0 -5348955 64 0 -5349575 0 0 -5349586 64 0 -5351427 0 0 -5351438 64 0 -5351570 0 0 -5351611 64 0 -5351720 0 0 -5351773 64 0 -5351873 0 0 -5351958 64 0 -5351995 0 0 -5354755 totRewards = 61 -5354755 128 16 -5354947 0 16 -5354955 0 0 -5354987 128 0 -5355182 0 0 -5355204 128 0 -5355316 0 0 -5355360 128 0 -5355573 0 0 -5355592 128 0 -5355706 0 0 -5355759 128 0 -5355994 0 0 -5356004 128 0 -5356124 0 0 -5356157 128 0 -5356593 0 0 -5356616 128 0 -5356753 0 0 -5356784 128 0 -5356918 0 0 -5356941 128 0 -5357071 0 0 -5357100 128 0 -5357234 0 0 -5357272 128 0 -5357405 0 0 -5357437 128 0 -5357556 0 0 -5357598 128 0 -5357716 0 0 -5357750 128 0 -5357878 0 0 -5357912 128 0 -5358031 0 0 -5358080 128 0 -5358197 0 0 -5358243 128 0 -5358353 0 0 -5358414 128 0 -5358505 0 0 -5358573 128 0 -5358691 0 0 -5358728 128 0 -5358841 0 0 -5358912 128 0 -5359000 0 0 -5359081 128 0 -5359189 0 0 -5359263 128 0 -5359342 0 0 -5362057 totRewards = 62 -5362057 64 8 -5362240 0 8 -5362255 64 8 -5362256 64 0 -5364529 0 0 -5364535 64 0 -5364841 0 0 -5364872 64 0 -5364998 0 0 -5365030 64 0 -5365160 0 0 -5365197 64 0 -5365325 0 0 -5365363 64 0 -5365479 0 0 -5365550 64 0 -5365625 0 0 -5368308 totRewards = 63 -5368308 128 16 -5368490 0 16 -5368508 0 0 -5368570 128 0 -5368749 0 0 -5368798 128 0 -5368891 0 0 -5368932 128 0 -5369147 0 0 -5369186 128 0 -5369281 0 0 -5369350 128 0 -5369568 0 0 -5369577 128 0 -5369706 0 0 -5369736 128 0 -5370019 0 0 -5370040 128 0 -5370166 0 0 -5370207 128 0 -5370331 0 0 -5370362 128 0 -5370480 0 0 -5370515 128 0 -5370642 0 0 -5370685 128 0 -5370801 0 0 -5370854 128 0 -5370975 0 0 -5371021 128 0 -5371135 0 0 -5371176 128 0 -5371298 0 0 -5371341 128 0 -5371461 0 0 -5371506 128 0 -5371623 0 0 -5371672 128 0 -5371804 0 0 -5371845 128 0 -5371968 0 0 -5372016 128 0 -5372139 0 0 -5372193 128 0 -5372294 0 0 -5372364 128 0 -5372433 0 0 -5375091 totRewards = 64 -5375091 64 8 -5375276 0 8 -5375291 0 0 -5375298 64 0 -5376063 0 0 -5376071 64 0 -5377109 0 0 -5377131 64 0 -5377278 0 0 -5377297 64 0 -5377596 0 0 -5377616 64 0 -5377776 0 0 -5377783 64 0 -5377931 0 0 -5377956 64 0 -5378099 0 0 -5378128 64 0 -5378265 0 0 -5378286 64 0 -5378423 0 0 -5378457 64 0 -5378590 0 0 -5378620 64 0 -5378759 0 0 -5378777 64 0 -5378915 0 0 -5378949 64 0 -5379087 0 0 -5379108 64 0 -5379237 0 0 -5379291 64 0 -5379402 0 0 -5381937 totRewards = 65 -5381937 128 16 -5382101 0 16 -5382137 0 0 -5382157 128 0 -5382344 0 0 -5382383 128 0 -5382489 0 0 -5382551 128 0 -5382890 0 0 -5382957 128 0 -5383047 0 0 -5383059 128 0 -5383692 0 0 -5383711 128 0 -5383842 0 0 -5383868 128 0 -5384010 0 0 -5384025 128 0 -5384166 0 0 -5384194 128 0 -5384329 0 0 -5384367 128 0 -5384495 0 0 -5384532 128 0 -5384659 0 0 -5384698 128 0 -5384814 0 0 -5384873 128 0 -5384972 0 0 -5385039 128 0 -5385156 0 0 -5385830 128 0 -5385930 0 0 -5385971 128 0 -5386091 0 0 -5386139 128 0 -5386269 0 0 -5386303 128 0 -5386430 0 0 -5386492 128 0 -5386634 0 0 -5386673 128 0 -5386800 0 0 -5386861 128 0 -5386988 0 0 -5387051 128 0 -5387172 0 0 -5387215 128 0 -5387328 0 0 -5387378 128 0 -5387504 0 0 -5387542 128 0 -5387661 0 0 -5387707 128 0 -5387832 0 0 -5387887 128 0 -5387992 0 0 -5388068 128 0 -5388145 0 0 -5391087 totRewards = 66 -5391087 64 8 -5391276 0 8 -5391287 0 0 -5391300 64 0 -5393721 0 0 -5393739 64 0 -5393886 0 0 -5393911 64 0 -5394039 0 0 -5394086 64 0 -5394193 0 0 -5394251 64 0 -5394352 0 0 -5394421 64 0 -5394483 0 0 -5398835 totRewards = 67 -5398835 128 16 -5399035 128 0 -5399090 0 0 -5399138 128 0 -5399333 0 0 -5399362 128 0 -5399459 0 0 -5399489 128 0 -5399707 0 0 -5399748 128 0 -5399841 0 0 -5399886 128 0 -5399976 0 0 -5399988 128 0 -5400127 0 0 -5400137 128 0 -5400266 0 0 -5400294 128 0 -5400408 0 0 -5400433 128 0 -5400565 0 0 -5400584 128 0 -5400714 0 0 -5400750 128 0 -5400873 0 0 -5400918 128 0 -5401040 0 0 -5401076 128 0 -5401200 0 0 -5401239 128 0 -5401363 0 0 -5401408 128 0 -5401524 0 0 -5401560 128 0 -5401686 0 0 -5401701 128 0 -5401840 0 0 -5401880 128 0 -5402002 0 0 -5402041 128 0 -5402160 0 0 -5402210 128 0 -5402314 0 0 -5402368 128 0 -5402477 0 0 -5402529 128 0 -5402635 0 0 -5402694 128 0 -5402784 0 0 -5402882 128 0 -5402984 0 0 -5403249 128 0 -5403296 0 0 -5403570 128 0 -5403643 0 0 -5406420 totRewards = 68 -5406420 64 8 -5406620 64 0 -5406622 0 0 -5406646 64 0 -5408106 0 0 -5408123 64 0 -5408592 0 0 -5408611 64 0 -5408758 0 0 -5408784 64 0 -5408937 0 0 -5408952 64 0 -5409108 0 0 -5409132 64 0 -5409264 0 0 -5409287 64 0 -5409437 0 0 -5409465 64 0 -5409612 0 0 -5409642 64 0 -5409782 0 0 -5409811 64 0 -5409948 0 0 -5409995 64 0 -5410134 0 0 -5410195 64 0 -5410275 0 0 -5410788 64 0 -5410832 0 0 -5410875 64 0 -5411017 0 0 -5411024 64 0 -5411168 0 0 -5411200 64 0 -5411349 0 0 -5411375 64 0 -5411527 0 0 -5411550 64 0 -5411699 0 0 -5411717 64 0 -5411889 0 0 -5411901 64 0 -5412053 0 0 -5412087 64 0 -5412224 0 0 -5412300 64 0 -5412325 0 0 -5418269 totRewards = 69 -5418269 128 16 -5418399 0 16 -5418468 128 16 -5418469 128 0 -5418792 0 0 -5418841 128 0 -5419045 0 0 -5419075 128 0 -5419175 0 0 -5419231 128 0 -5419455 0 0 -5419467 128 0 -5419592 0 0 -5419617 128 0 -5419893 0 0 -5419913 128 0 -5420032 0 0 -5420071 128 0 -5420197 0 0 -5420225 128 0 -5420345 0 0 -5420384 128 0 -5420512 0 0 -5420556 128 0 -5420670 0 0 -5420731 128 0 -5420829 0 0 -5420888 128 0 -5420963 0 0 -5424289 totRewards = 70 -5424289 64 8 -5424475 0 8 -5424489 0 0 -5424500 64 0 -5426607 0 0 -5426627 64 0 -5426775 0 0 -5426787 64 0 -5426925 0 0 -5426954 64 0 -5427080 0 0 -5427125 64 0 -5427228 0 0 -5427299 64 0 -5427312 0 0 -5430011 totRewards = 71 -5430011 128 16 -5430211 128 0 -5430218 0 0 -5430279 128 0 -5430439 0 0 -5430494 128 0 -5430831 0 0 -5430874 128 0 -5430987 0 0 -5431072 128 0 -5431125 0 0 -5431138 128 0 -5431424 0 0 -5431445 128 0 -5431713 0 0 -5431718 128 0 -5431857 0 0 -5431895 128 0 -5432009 0 0 -5432044 128 0 -5432169 0 0 -5432192 128 0 -5432313 0 0 -5432348 128 0 -5432462 0 0 -5432505 128 0 -5432618 0 0 -5432665 128 0 -5432775 0 0 -5432826 128 0 -5432934 0 0 -5432983 128 0 -5433094 0 0 -5433142 128 0 -5433251 0 0 -5433307 128 0 -5433418 0 0 -5433475 128 0 -5433577 0 0 -5433640 128 0 -5433722 0 0 -5436443 totRewards = 72 -5436443 64 8 -5436641 0 8 -5436643 0 0 -5436665 64 0 -5438756 0 0 -5438773 64 0 -5439085 0 0 -5439110 64 0 -5439254 0 0 -5439276 64 0 -5439402 0 0 -5439442 64 0 -5439557 0 0 -5439602 64 0 -5439714 0 0 -5439758 64 0 -5439867 0 0 -5442610 totRewards = 73 -5442610 128 16 -5442773 0 16 -5442810 0 0 -5442845 128 0 -5443019 0 0 -5443055 128 0 -5443148 0 0 -5443213 128 0 -5443420 0 0 -5443446 128 0 -5443556 0 0 -5443614 128 0 -5443832 0 0 -5443843 128 0 -5443977 0 0 -5443985 128 0 -5444268 0 0 -5444278 128 0 -5444412 0 0 -5444438 128 0 -5444573 0 0 -5444607 128 0 -5444730 0 0 -5444752 128 0 -5444878 0 0 -5444915 128 0 -5445039 0 0 -5445081 128 0 -5445208 0 0 -5445252 128 0 -5445373 0 0 -5445411 128 0 -5445526 0 0 -5445575 128 0 -5445683 0 0 -5445738 128 0 -5445834 0 0 -5445898 128 0 -5445989 0 0 -5446046 128 0 -5446150 0 0 -5446211 128 0 -5446310 0 0 -5446397 128 0 -5446509 0 0 -5446539 128 0 -5446667 0 0 -5446742 128 0 -5446835 0 0 -5446916 128 0 -5447011 0 0 -5449983 totRewards = 74 -5449983 64 8 -5450178 0 8 -5450183 0 0 -5450197 64 0 -5451724 0 0 -5451733 64 0 -5451888 0 0 -5451900 64 0 -5452222 0 0 -5452249 64 0 -5452387 0 0 -5452422 64 0 -5452547 0 0 -5452586 64 0 -5452713 0 0 -5452736 64 0 -5452874 0 0 -5452894 64 0 -5453373 0 0 -5453386 64 0 -5453527 0 0 -5453564 64 0 -5453680 0 0 -5456274 totRewards = 75 -5456274 128 16 -5456427 0 16 -5456474 0 0 -5456483 128 0 -5456835 0 0 -5456882 128 0 -5457122 0 0 -5457146 128 0 -5457242 0 0 -5457297 128 0 -5457671 0 0 -5457705 128 0 -5457825 0 0 -5457838 128 0 -5457973 0 0 -5457984 128 0 -5458119 0 0 -5458165 128 0 -5458286 0 0 -5458319 128 0 -5458445 0 0 -5458475 128 0 -5458598 0 0 -5458642 128 0 -5458750 0 0 -5458790 128 0 -5458921 0 0 -5458952 128 0 -5459070 0 0 -5459126 128 0 -5459229 0 0 -5459277 128 0 -5459386 0 0 -5459440 128 0 -5459546 0 0 -5459621 128 0 -5459644 0 0 -5459774 128 0 -5459857 0 0 -5459935 128 0 -5460016 0 0 -5460084 128 0 -5460198 0 0 -5460274 128 0 -5460381 0 0 -5460440 128 0 -5460533 0 0 -5460623 128 0 -5460644 0 0 -5460673 128 0 -5460720 0 0 -5460804 128 0 -5460897 0 0 -5463771 totRewards = 76 -5463771 64 8 -5463967 0 8 -5463971 0 0 -5463984 64 0 -5465144 0 0 -5465156 64 0 -5466272 0 0 -5466284 64 0 -5466429 0 0 -5466450 64 0 -5466586 0 0 -5466623 64 0 -5466737 0 0 -5466779 64 0 -5466888 0 0 -5466994 64 0 -5467017 0 0 -5469571 totRewards = 77 -5469571 128 16 -5469749 0 16 -5469771 0 0 -5469802 128 0 -5470003 0 0 -5470052 128 0 -5470145 0 0 -5470209 128 0 -5470409 0 0 -5470438 128 0 -5470546 0 0 -5470607 128 0 -5470707 0 0 -5470712 128 0 -5470840 0 0 -5470857 128 0 -5470975 0 0 -5471008 128 0 -5471431 0 0 -5471463 128 0 -5471582 0 0 -5471623 128 0 -5471750 0 0 -5471786 128 0 -5471912 0 0 -5471953 128 0 -5472074 0 0 -5472124 128 0 -5472240 0 0 -5472288 128 0 -5472400 0 0 -5472447 128 0 -5472565 0 0 -5472611 128 0 -5472720 0 0 -5472769 128 0 -5472877 0 0 -5472931 128 0 -5473037 0 0 -5473101 128 0 -5473200 0 0 -5473258 128 0 -5473363 0 0 -5473448 128 0 -5473567 0 0 -5473676 128 0 -5473728 0 0 -5473804 128 0 -5473818 0 0 -5473862 128 0 -5473886 0 0 -5474162 128 0 -5474248 0 0 -5474304 128 0 -5474401 0 0 -5474460 128 0 -5474573 0 0 -5474639 128 0 -5474740 0 0 -5474828 128 0 -5474922 0 0 -5478644 totRewards = 78 -5478644 64 8 -5478844 64 0 -5480473 0 0 -5480490 64 0 -5480963 0 0 -5480984 64 0 -5481297 0 0 -5481310 64 0 -5481451 0 0 -5481480 64 0 -5481615 0 0 -5481637 64 0 -5481781 0 0 -5481803 64 0 -5481939 0 0 -5481972 64 0 -5482107 0 0 -5482131 64 0 -5483003 0 0 -5483088 64 0 -5483245 0 0 -5483305 64 0 -5483768 0 0 -5483790 64 0 -5483944 0 0 -5483979 64 0 -5484102 0 0 -5484161 64 0 -5484245 0 0 -5490480 totRewards = 79 -5490480 128 16 -5490623 0 16 -5490680 0 0 -5490704 128 0 -5490857 0 0 -5490885 128 0 -5490986 0 0 -5491076 128 0 -5491171 0 0 -5491302 128 0 -5491446 0 0 -5491471 128 0 -5492235 0 0 -5492243 128 0 -5492375 0 0 -5492383 128 0 -5492658 0 0 -5492677 128 0 -5492806 0 0 -5492828 128 0 -5492953 0 0 -5492979 128 0 -5493099 0 0 -5493135 128 0 -5493270 0 0 -5493308 128 0 -5493412 0 0 -5493453 128 0 -5493563 0 0 -5493597 128 0 -5494025 0 0 -5494048 128 0 -5494188 0 0 -5494211 128 0 -5494352 0 0 -5494387 128 0 -5494498 0 0 -5494540 128 0 -5494953 0 0 -5495992 128 0 -5496716 0 0 -5499488 totRewards = 80 -5499488 64 8 -5499679 0 8 -5499688 0 0 -5499710 64 0 -5500315 0 0 -5500332 64 0 -5500857 0 0 -5500864 64 0 -5501651 0 0 -5501666 64 0 -5501815 0 0 -5501849 64 0 -5502352 0 0 -5502374 64 0 -5502719 0 0 -5502754 64 0 -5503075 0 0 -5503101 64 0 -5503248 0 0 -5503270 64 0 -5503413 0 0 -5503429 64 0 -5504778 0 0 -5504816 64 0 -5505289 0 0 -5505322 64 0 -5505451 0 0 -5505486 64 0 -5505953 0 0 -5505978 64 0 -5506147 0 0 -5506170 64 0 -5506329 0 0 -5506353 64 0 -5506421 0 0 -5506469 64 0 -5506778 0 0 -5506805 64 0 -5506931 0 0 -5509416 totRewards = 81 -5509416 128 16 -5509589 0 16 -5509616 0 0 -5509638 128 0 -5509826 0 0 -5509880 128 0 -5509969 0 0 -5510015 128 0 -5510229 0 0 -5510266 128 0 -5510363 0 0 -5510428 128 0 -5510779 0 0 -5510797 128 0 -5511059 0 0 -5511067 128 0 -5511205 0 0 -5511216 128 0 -5511348 0 0 -5511371 128 0 -5511502 0 0 -5511526 128 0 -5511661 0 0 -5511685 128 0 -5511813 0 0 -5511857 128 0 -5511975 0 0 -5512018 128 0 -5512139 0 0 -5512185 128 0 -5512300 0 0 -5512351 128 0 -5512471 0 0 -5512526 128 0 -5512630 0 0 -5512700 128 0 -5512775 0 0 -5519879 128 0 -5520118 0 0 -5533316 totRewards = 82 -5533316 64 8 -5533516 64 0 -5533517 0 0 -5533555 64 0 -5533772 0 0 -5533792 64 0 -5534142 0 0 -5534154 64 0 -5534274 0 0 -5534284 64 0 -5535748 0 0 -5535777 64 0 -5535895 0 0 -5535924 64 0 -5537177 0 0 -5537199 64 0 -5537318 0 0 -5541079 totRewards = 83 -5541079 128 16 -5541254 0 16 -5541279 0 0 -5541288 128 0 -5541512 0 0 -5541545 128 0 -5541630 0 0 -5541678 128 0 -5541890 0 0 -5541913 128 0 -5542025 0 0 -5542054 128 0 -5542143 0 0 -5542156 128 0 -5542425 0 0 -5542445 128 0 -5542562 0 0 -5542589 128 0 -5542859 0 0 -5542881 128 0 -5543002 0 0 -5543039 128 0 -5543160 0 0 -5543199 128 0 -5543325 0 0 -5543358 128 0 -5543481 0 0 -5543518 128 0 -5543635 0 0 -5543679 128 0 -5543800 0 0 -5543813 128 0 -5544386 0 0 -5544420 128 0 -5544542 0 0 -5544566 128 0 -5544692 0 0 -5544736 128 0 -5544842 0 0 -5544889 128 0 -5545012 0 0 -5545052 128 0 -5545166 0 0 -5545223 128 0 -5545336 0 0 -5545393 128 0 -5545489 0 0 -5548223 totRewards = 84 -5548223 64 8 -5548403 0 8 -5548423 0 0 -5548443 64 0 -5550523 0 0 -5550534 64 0 -5550680 0 0 -5550695 64 0 -5550849 0 0 -5550867 64 0 -5551016 0 0 -5551037 64 0 -5551166 0 0 -5551211 64 0 -5551323 0 0 -5551368 64 0 -5551477 0 0 -5551547 64 0 -5551624 0 0 -5554292 totRewards = 85 -5554292 128 16 -5554457 0 16 -5554492 0 0 -5554546 128 0 -5555028 0 0 -5555052 128 0 -5555280 0 0 -5555313 128 0 -5555704 0 0 -5555713 128 0 -5556010 0 0 -5556022 128 0 -5556151 0 0 -5556178 128 0 -5556304 0 0 -5556332 128 0 -5556462 0 0 -5556492 128 0 -5556626 0 0 -5556666 128 0 -5556785 0 0 -5556832 128 0 -5556948 0 0 -5556990 128 0 -5557109 0 0 -5557148 128 0 -5557267 0 0 -5557313 128 0 -5557424 0 0 -5557480 128 0 -5557587 0 0 -5557650 128 0 -5557751 0 0 -5557820 128 0 -5557935 0 0 -5558046 128 0 -5558087 0 0 -5558177 128 0 -5558218 0 0 -5558252 128 0 -5558287 0 0 -5558357 128 0 -5558445 0 0 -5558528 128 0 -5558607 0 0 -5558717 128 0 -5558732 0 0 -5558768 128 0 -5558795 0 0 -5562550 totRewards = 86 -5562550 64 8 -5562750 64 0 -5564913 0 0 -5564928 64 0 -5565074 0 0 -5565091 64 0 -5565240 0 0 -5565267 64 0 -5565390 0 0 -5565429 64 0 -5565542 0 0 -5565606 64 0 -5565707 0 0 -5565809 64 0 -5565853 0 0 -5568670 totRewards = 87 -5568670 128 16 -5568855 0 16 -5568870 0 0 -5568890 128 0 -5569110 0 0 -5569134 128 0 -5569244 0 0 -5569268 128 0 -5569487 0 0 -5569531 128 0 -5569629 0 0 -5569702 128 0 -5570063 0 0 -5570080 128 0 -5570217 0 0 -5570238 128 0 -5570530 0 0 -5570564 128 0 -5570688 0 0 -5570730 128 0 -5570860 0 0 -5570889 128 0 -5571015 0 0 -5571047 128 0 -5571163 0 0 -5571202 128 0 -5571324 0 0 -5571365 128 0 -5571485 0 0 -5571529 128 0 -5571648 0 0 -5571693 128 0 -5571828 0 0 -5571868 128 0 -5571985 0 0 -5572038 128 0 -5572153 0 0 -5572211 128 0 -5572300 0 0 -5572375 128 0 -5572452 0 0 -5575269 totRewards = 88 -5575269 64 8 -5575469 64 0 -5575482 0 0 -5575497 64 0 -5577782 0 0 -5577794 64 0 -5578136 0 0 -5578142 64 0 -5578280 0 0 -5578339 64 0 -5578441 0 0 -5578477 64 0 -5578624 0 0 -5578635 64 0 -5579997 0 0 -5580009 64 0 -5580332 0 0 -5580343 64 0 -5581326 0 0 -5581370 64 0 -5581481 0 0 -5584237 totRewards = 89 -5584237 128 16 -5584409 0 16 -5584437 0 0 -5584492 128 0 -5584822 0 0 -5584857 128 0 -5584977 0 0 -5585004 128 0 -5585112 0 0 -5585128 128 0 -5585225 0 0 -5585268 128 0 -5585662 0 0 -5585688 128 0 -5585976 0 0 -5586003 128 0 -5586128 0 0 -5586170 128 0 -5586293 0 0 -5586327 128 0 -5586459 0 0 -5586502 128 0 -5586629 0 0 -5586677 128 0 -5586791 0 0 -5586838 128 0 -5586942 0 0 -5586999 128 0 -5587063 0 0 -5592356 totRewards = 90 -5592356 64 8 -5592556 64 0 -5592561 0 0 -5592581 64 0 -5594842 0 0 -5594869 64 0 -5595341 0 0 -5595378 64 0 -5595506 0 0 -5595526 64 0 -5595670 0 0 -5595692 64 0 -5595830 0 0 -5595849 64 0 -5596466 0 0 -5596497 64 0 -5596934 0 0 -5596963 64 0 -5597803 0 0 -5597843 64 0 -5597971 0 0 -5598005 64 0 -5598132 0 0 -5598150 64 0 -5598285 0 0 -5598344 64 0 -5598400 0 0 -5600914 totRewards = 91 -5600914 128 16 -5601092 0 16 -5601114 0 0 -5601176 128 0 -5601509 0 0 -5601530 128 0 -5601792 0 0 -5601816 128 0 -5601902 0 0 -5601944 128 0 -5602063 0 0 -5602070 128 0 -5602335 0 0 -5602352 128 0 -5602634 0 0 -5602643 128 0 -5602793 0 0 -5602805 128 0 -5602949 0 0 -5602969 128 0 -5603268 0 0 -5603303 128 0 -5603434 0 0 -5603471 128 0 -5603603 0 0 -5603638 128 0 -5603763 0 0 -5603799 128 0 -5603928 0 0 -5603960 128 0 -5604082 0 0 -5604121 128 0 -5604246 0 0 -5604284 128 0 -5604407 0 0 -5604452 128 0 -5604567 0 0 -5604632 128 0 -5604716 0 0 -5604760 128 0 -5604870 0 0 -5604943 128 0 -5605063 0 0 -5605096 128 0 -5605203 0 0 -5605278 128 0 -5605313 0 0 -5605453 128 0 -5605549 0 0 -5605629 128 0 -5605720 0 0 -5608617 totRewards = 92 -5608617 64 8 -5608813 0 8 -5608817 0 0 -5608829 64 0 -5610943 0 0 -5610961 64 0 -5611607 0 0 -5611635 64 0 -5611766 0 0 -5611802 64 0 -5611924 0 0 -5611971 64 0 -5612070 0 0 -5615107 totRewards = 93 -5615107 128 16 -5615307 128 0 -5615390 0 0 -5615431 128 0 -5615763 0 0 -5615776 128 0 -5616012 0 0 -5616035 128 0 -5616146 0 0 -5616201 128 0 -5616284 0 0 -5616302 128 0 -5616430 0 0 -5616458 128 0 -5616567 0 0 -5616600 128 0 -5616726 0 0 -5616731 128 0 -5617017 0 0 -5617048 128 0 -5617168 0 0 -5617211 128 0 -5617333 0 0 -5617362 128 0 -5617495 0 0 -5617528 128 0 -5617659 0 0 -5617702 128 0 -5617820 0 0 -5617867 128 0 -5617986 0 0 -5618033 128 0 -5618149 0 0 -5618186 128 0 -5618466 0 0 -5618485 128 0 -5618614 0 0 -5618652 128 0 -5618765 0 0 -5618810 128 0 -5618920 0 0 -5618965 128 0 -5619076 0 0 -5619128 128 0 -5619234 0 0 -5619306 128 0 -5619413 0 0 -5619458 128 0 -5619578 0 0 -5619627 128 0 -5619748 0 0 -5619783 128 0 -5619910 0 0 -5619959 128 0 -5620081 0 0 -5620130 128 0 -5620232 0 0 -5620305 128 0 -5620393 0 0 -5620555 128 0 -5620598 0 0 -5621238 128 0 -5621262 0 0 -5621287 128 0 -5621312 0 0 -5624444 totRewards = 94 -5624444 64 8 -5624629 0 8 -5624644 0 0 -5624653 64 0 -5625828 0 0 -5625839 64 0 -5626791 0 0 -5626807 64 0 -5627126 0 0 -5627149 64 0 -5627285 0 0 -5627314 64 0 -5627441 0 0 -5627489 64 0 -5627614 0 0 -5627637 64 0 -5627759 0 0 -5630493 totRewards = 95 -5630493 128 16 -5630678 0 16 -5630693 0 0 -5630822 128 0 -5630934 0 0 -5630939 128 0 -5631056 0 0 -5631100 128 0 -5631451 0 0 -5631499 128 0 -5631884 0 0 -5631913 128 0 -5632026 0 0 -5632054 128 0 -5632335 0 0 -5632361 128 0 -5632485 0 0 -5632518 128 0 -5632645 0 0 -5632679 128 0 -5632804 0 0 -5632843 128 0 -5632970 0 0 -5633021 128 0 -5633146 0 0 -5633191 128 0 -5633305 0 0 -5633359 128 0 -5633455 0 0 -5633516 128 0 -5633624 0 0 -5633663 128 0 -5633790 0 0 -5633840 128 0 -5633945 0 0 -5634006 128 0 -5634112 0 0 -5634153 128 0 -5634272 0 0 -5634326 128 0 -5634427 0 0 -5634517 128 0 -5634652 0 0 -5634688 128 0 -5634714 0 0 -5634737 128 0 -5634799 0 0 -5634870 128 0 -5634962 0 0 -5635118 128 0 -5635172 0 0 -5635251 128 0 -5635325 0 0 -5638851 totRewards = 96 -5638851 64 8 -5639027 0 8 -5639051 0 0 -5639057 64 0 -5641158 0 0 -5641166 64 0 -5641312 0 0 -5641327 64 0 -5641632 0 0 -5641660 64 0 -5641799 0 0 -5641827 64 0 -5641967 0 0 -5642003 64 0 -5642135 0 0 -5642174 64 0 -5642295 0 0 -5642349 64 0 -5642450 0 0 -5642688 64 0 -5643624 0 0 -5648879 totRewards = 97 -5648879 128 16 -5649079 128 0 -5649159 0 0 -5649190 128 0 -5649783 0 0 -5649834 128 0 -5649930 0 0 -5649976 128 0 -5650367 0 0 -5650379 128 0 -5650813 0 0 -5650830 128 0 -5650971 0 0 -5650983 128 0 -5651115 0 0 -5651141 128 0 -5651273 0 0 -5651307 128 0 -5651436 0 0 -5651479 128 0 -5651605 0 0 -5651646 128 0 -5651763 0 0 -5651812 128 0 -5651913 0 0 -5651970 128 0 -5652065 0 0 -5652111 128 0 -5652224 0 0 -5652262 128 0 -5652382 0 0 -5652427 128 0 -5652542 0 0 -5652585 128 0 -5652710 0 0 -5652743 128 0 -5652867 0 0 -5652915 128 0 -5653031 0 0 -5653085 128 0 -5653183 0 0 -5653249 128 0 -5653342 0 0 -5656059 totRewards = 98 -5656059 64 8 -5656235 0 8 -5656259 0 0 -5656259 64 0 -5657885 0 0 -5657895 64 0 -5659034 0 0 -5659055 64 0 -5659196 0 0 -5659226 64 0 -5659351 0 0 -5659384 64 0 -5659509 0 0 -5659577 64 0 -5659599 0 0 -5662554 totRewards = 99 -5662554 128 16 -5662735 0 16 -5662754 0 0 -5662788 128 0 -5662975 0 0 -5663017 128 0 -5663109 0 0 -5663163 128 0 -5663375 0 0 -5663405 128 0 -5663502 0 0 -5663561 128 0 -5663933 0 0 -5663957 128 0 -5664383 0 0 -5664415 128 0 -5664537 0 0 -5664572 128 0 -5664697 0 0 -5664733 128 0 -5664862 0 0 -5664906 128 0 -5665023 0 0 -5665067 128 0 -5665186 0 0 -5665233 128 0 -5665345 0 0 -5665383 128 0 -5665521 0 0 -5665557 128 0 -5665678 0 0 -5665722 128 0 -5665841 0 0 -5665894 128 0 -5666004 0 0 -5666057 128 0 -5666170 0 0 -5666214 128 0 -5666332 0 0 -5666386 128 0 -5666500 0 0 -5666552 128 0 -5666666 0 0 -5666710 128 0 -5666819 0 0 -5666871 128 0 -5666975 0 0 -5667679 128 0 -5667780 0 0 -5667820 128 0 -5667924 0 0 -5667975 128 0 -5668075 0 0 -5668129 128 0 -5668240 0 0 -5668270 128 0 -5668389 0 0 -5668428 128 0 -5668557 0 0 -5668585 128 0 -5668714 0 0 -5668776 128 0 -5668883 0 0 -5673440 totRewards = 100 -5673440 64 8 -5673640 64 0 -5675190 0 0 -5675210 64 0 -5675339 0 0 -5675358 64 0 -5675835 0 0 -5675852 64 0 -5676152 0 0 -5676181 64 0 -5676317 0 0 -5676322 64 0 -5676788 0 0 -5676803 64 0 -5677296 0 0 -5677315 64 0 -5677473 0 0 -5677487 64 0 -5677645 0 0 -5677660 64 0 -5677807 0 0 -5677844 64 0 -5678474 0 0 -5678494 64 0 -5679104 0 0 -5679146 64 0 -5679622 0 0 -5679652 64 0 -5679774 0 0 -5679817 64 0 -5679938 0 0 -5679994 64 0 -5680085 0 0 -5682771 totRewards = 101 -5682771 128 16 -5682971 128 0 -5682977 0 0 -5683060 128 0 -5683375 0 0 -5683438 128 0 -5683560 0 0 -5683593 128 0 -5683703 0 0 -5683721 128 0 -5683815 0 0 -5683845 128 0 -5683965 0 0 -5683982 128 0 -5684243 0 0 -5684256 128 0 -5684680 0 0 -5684711 128 0 -5684843 0 0 -5684866 128 0 -5684992 0 0 -5685027 128 0 -5685150 0 0 -5685197 128 0 -5685319 0 0 -5685370 128 0 -5685483 0 0 -5685531 128 0 -5685652 0 0 -5685700 128 0 -5685822 0 0 -5685873 128 0 -5685989 0 0 -5686038 128 0 -5686141 0 0 -5686197 128 0 -5686300 0 0 -5686344 128 0 -5686456 0 0 -5686512 128 0 -5686612 0 0 -5686685 128 0 -5686815 0 0 -5686827 128 0 -5686975 0 0 -5687022 128 0 -5687140 0 0 -5687204 128 0 -5687320 0 0 -5687399 128 0 -5687416 0 0 -5687432 128 0 -5687474 0 0 -5690822 totRewards = 102 -5690822 64 8 -5691022 64 0 -5691038 0 0 -5691053 64 0 -5691660 0 0 -5691672 64 0 -5693493 0 0 -5693512 64 0 -5693653 0 0 -5693682 64 0 -5693805 0 0 -5693842 64 0 -5693957 0 0 -5694019 64 0 -5694105 0 0 -5697110 totRewards = 103 -5697110 128 16 -5697310 128 0 -5697315 0 0 -5697352 128 0 -5697566 0 0 -5697585 128 0 -5697701 0 0 -5697734 128 0 -5697966 0 0 -5697986 128 0 -5698098 0 0 -5698149 128 0 -5698532 0 0 -5698553 128 0 -5698996 0 0 -5699025 128 0 -5699162 0 0 -5699191 128 0 -5699323 0 0 -5699355 128 0 -5699492 0 0 -5699532 128 0 -5699662 0 0 -5699707 128 0 -5699824 0 0 -5699871 128 0 -5699977 0 0 -5700030 128 0 -5700120 0 0 -5700191 128 0 -5700282 0 0 -5700354 128 0 -5700433 0 0 -5703554 totRewards = 104 -5703554 64 8 -5703739 0 8 -5703754 0 0 -5703766 64 0 -5704513 0 0 -5704522 64 0 -5705904 0 0 -5705924 64 0 -5706065 0 0 -5706088 64 0 -5706232 0 0 -5706255 64 0 -5706393 0 0 -5706423 64 0 -5706553 0 0 -5706587 64 0 -5706710 0 0 -5706757 64 0 -5706875 0 0 -5708022 64 0 -5708875 0 0 -5708897 64 0 -5710073 0 0 -5710134 64 0 -5710212 0 0 -5712808 totRewards = 105 -5712808 128 16 -5712986 0 16 -5713008 0 0 -5713059 128 0 -5713254 0 0 -5713265 128 0 -5713378 0 0 -5713420 128 0 -5713793 0 0 -5713832 128 0 -5714102 0 0 -5714113 128 0 -5714248 0 0 -5714274 128 0 -5714407 0 0 -5714434 128 0 -5714565 0 0 -5714600 128 0 -5714710 0 0 -5714751 128 0 -5714880 0 0 -5714918 128 0 -5715052 0 0 -5715093 128 0 -5715216 0 0 -5715268 128 0 -5715379 0 0 -5715429 128 0 -5715539 0 0 -5715600 128 0 -5715673 0 0 -5715761 128 0 -5715829 0 0 -5719199 totRewards = 106 -5719199 64 8 -5719399 64 0 - - description: state script log run 2 - task_epochs: 4, -, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140480029761104 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -7499807 totRewards = 1 -7499807 64 200 -7500007 64 192 -7500065 0 128 -7500089 64 128 -7500220 0 128 -7500233 64 128 -7500345 0 128 -7500352 64 128 -7500830 0 128 -7500836 64 128 -7500943 0 128 -7500963 64 128 -7501077 0 128 -7501087 64 128 -7501201 0 128 -7501216 64 128 -7501327 0 128 -7501354 64 128 -7501470 0 128 -7501488 64 128 -7501621 0 128 -7501641 64 128 -7501768 0 128 -7501786 64 128 -7501914 0 128 -7501942 64 128 -7502067 0 128 -7502104 64 128 -7502224 0 128 -7502270 64 128 -7502382 0 128 -7502438 64 128 -7502547 0 128 -7502591 64 128 -7502710 0 128 -7502748 64 128 -7502863 0 128 -7502898 64 128 -7503321 0 128 -7503349 64 128 -7503492 0 128 -7503512 64 128 -7503675 0 128 -7503685 64 128 -7503829 0 128 -7503869 64 128 -7504008 0 128 -7504049 64 128 -7504185 0 128 -7504229 64 128 -7504335 0 128 -7504385 64 128 -7504830 0 128 -7504850 64 128 -7505318 0 128 -7505346 64 128 -7505492 0 128 -7505523 64 128 -7505673 0 128 -7505703 64 128 -7505819 0 128 -7509448 totRewards = 2 -7509448 128 144 -7509648 128 128 -7509830 0 0 -7509841 128 0 -7509844 0 0 -7509909 128 0 -7509912 0 0 -7509920 128 0 -7509985 0 0 -7510002 128 0 -7510144 0 0 -7510154 128 0 -7510255 0 0 -7510314 128 0 -7510656 0 0 -7510682 128 0 -7510795 0 0 -7510807 128 0 -7511073 0 0 -7511090 128 0 -7511207 0 0 -7511234 128 0 -7511347 0 0 -7511392 128 0 -7511490 0 0 -7511537 128 0 -7511633 0 0 -7511693 128 0 -7511798 0 0 -7511856 128 0 -7511969 0 0 -7512023 128 0 -7512135 0 0 -7512198 128 0 -7512321 0 0 -7512384 128 0 -7512512 0 0 -7512575 128 0 -7512699 0 0 -7512769 128 0 -7512896 0 0 -7512953 128 0 -7513081 0 0 -7513127 128 0 -7514538 0 0 -7514575 128 0 -7514712 0 0 -7514754 128 0 -7514891 0 0 -7514952 128 0 -7515072 0 0 -7515133 128 0 -7515263 0 0 -7515316 128 0 -7515435 0 0 -7515498 128 0 -7515609 0 0 -7515678 128 0 -7515789 0 0 -7515866 128 0 -7515967 0 0 -7516022 128 0 -7516088 0 0 -7516194 128 0 -7516468 0 0 -7516494 128 0 -7516627 0 0 -7516666 128 0 -7516803 0 0 -7516877 128 0 -7516984 0 0 -7517035 128 0 -7517176 0 0 -7517288 128 0 -7517394 0 0 -7517922 128 0 -7517951 0 0 -7518111 128 0 -7518125 0 0 -7518392 128 0 -7518503 0 0 -7518598 128 0 -7518683 0 0 -7518837 128 0 -7518854 0 0 -7527467 128 0 -7527970 0 0 -7527980 128 0 -7528348 0 0 -7528369 128 0 -7528497 0 0 -7528533 128 0 -7528645 0 0 -7528691 128 0 -7528805 0 0 -7528852 128 0 -7528967 0 0 -7532478 totRewards = 3 -7532478 64 8 -7532678 64 0 -7533690 0 0 -7533700 64 0 -7533836 0 0 -7533851 64 0 -7533973 0 0 -7533982 64 0 -7534275 0 0 -7534294 64 0 -7534429 0 0 -7534443 64 0 -7534775 0 0 -7534796 64 0 -7534938 0 0 -7534974 64 0 -7535284 0 0 -7535321 64 0 -7536105 0 0 -7536111 64 0 -7536280 0 0 -7536300 64 0 -7536473 0 0 -7536500 64 0 -7536664 0 0 -7536677 64 0 -7536833 0 0 -7536885 64 0 -7537004 0 0 -7537062 64 0 -7537189 0 0 -7537254 64 0 -7537988 0 0 -7538049 64 0 -7538195 0 0 -7538227 64 0 -7538413 0 0 -7538435 64 0 -7538599 0 0 -7538659 64 0 -7538784 0 0 -7539025 64 0 -7539161 0 0 -7539189 64 0 -7539338 0 0 -7539407 64 0 -7539582 0 0 -7540550 64 0 -7540819 0 0 -7540833 64 0 -7540992 0 0 -7541002 64 0 -7541166 0 0 -7541175 64 0 -7541333 0 0 -7541372 64 0 -7541521 0 0 -7541562 64 0 -7541687 0 0 -7545424 totRewards = 4 -7545424 128 16 -7545556 0 16 -7545595 128 16 -7545624 128 0 -7545675 0 0 -7545700 128 0 -7545842 0 0 -7545893 128 0 -7546045 0 0 -7546114 128 0 -7546712 0 0 -7546739 128 0 -7546858 0 0 -7546874 128 0 -7546980 0 0 -7547012 128 0 -7547114 0 0 -7547153 128 0 -7547255 0 0 -7547294 128 0 -7547398 0 0 -7547439 128 0 -7547540 0 0 -7547582 128 0 -7547696 0 0 -7547741 128 0 -7547855 0 0 -7547906 128 0 -7548020 0 0 -7548069 128 0 -7548183 0 0 -7548246 128 0 -7548357 0 0 -7548418 128 0 -7548525 0 0 -7548577 128 0 -7548709 0 0 -7548735 128 0 -7549034 0 0 -7549043 128 0 -7549170 0 0 -7549221 128 0 -7549341 0 0 -7549385 128 0 -7549499 0 0 -7549566 128 0 -7549586 0 0 -7549623 128 0 -7549666 0 0 -7549732 128 0 -7549840 0 0 -7549905 128 0 -7550015 0 0 -7550072 128 0 -7550178 0 0 -7550246 128 0 -7550331 0 0 -7550428 128 0 -7550513 0 0 -7550590 128 0 -7550685 0 0 -7550772 128 0 -7550839 0 0 -7550912 128 0 -7551001 0 0 -7551092 128 0 -7551110 0 0 -7551154 128 0 -7551186 0 0 -7551269 128 0 -7551359 0 0 -7551455 128 0 -7551474 0 0 -7551508 128 0 -7551543 0 0 -7554803 totRewards = 5 -7554803 64 8 -7555003 64 0 -7555514 0 0 -7555522 64 0 -7555924 0 0 -7555942 64 0 -7556063 0 0 -7556081 64 0 -7556203 0 0 -7556225 64 0 -7556353 0 0 -7556376 64 0 -7556520 0 0 -7556534 64 0 -7556675 0 0 -7556704 64 0 -7557239 0 0 -7557274 64 0 -7557449 0 0 -7557479 64 0 -7557658 0 0 -7557687 64 0 -7557844 0 0 -7557899 64 0 -7558036 0 0 -7558079 64 0 -7558777 0 0 -7558799 64 0 -7558950 0 0 -7558985 64 0 -7559119 0 0 -7559170 64 0 -7559304 0 0 -7559320 64 0 -7559771 0 0 -7559798 64 0 -7559938 0 0 -7559966 64 0 -7560124 0 0 -7560146 64 0 -7560327 0 0 -7560337 64 0 -7561101 0 0 -7561107 64 0 -7561272 0 0 -7561309 64 0 -7561449 0 0 -7561499 64 0 -7561608 0 0 -7567350 totRewards = 6 -7567350 128 16 -7567534 0 16 -7567550 0 0 -7567605 128 0 -7567921 0 0 -7567954 128 0 -7568061 0 0 -7568094 128 0 -7568302 0 0 -7568359 128 0 -7568446 0 0 -7568464 128 0 -7568594 0 0 -7568619 128 0 -7568723 0 0 -7568763 128 0 -7568863 0 0 -7568898 128 0 -7569021 0 0 -7569058 128 0 -7569166 0 0 -7569215 128 0 -7569320 0 0 -7569370 128 0 -7569487 0 0 -7569540 128 0 -7569660 0 0 -7569715 128 0 -7569826 0 0 -7569886 128 0 -7569997 0 0 -7570055 128 0 -7570166 0 0 -7570228 128 0 -7570323 0 0 -7570390 128 0 -7570486 0 0 -7570544 128 0 -7570652 0 0 -7570705 128 0 -7570817 0 0 -7570880 128 0 -7570994 0 0 -7571053 128 0 -7571170 0 0 -7571231 128 0 -7571323 0 0 -7571403 128 0 -7571464 0 0 -7574231 totRewards = 7 -7574231 64 8 -7574415 0 8 -7574425 64 8 -7574431 64 0 -7574779 0 0 -7574797 64 0 -7575035 0 0 -7575056 64 0 -7575163 0 0 -7575183 64 0 -7575448 0 0 -7575456 64 0 -7575587 0 0 -7575611 64 0 -7575740 0 0 -7575751 64 0 -7576067 0 0 -7576080 64 0 -7576414 0 0 -7576428 64 0 -7576576 0 0 -7576613 64 0 -7576929 0 0 -7576964 64 0 -7577119 0 0 -7577149 64 0 -7577275 0 0 -7577325 64 0 -7577456 0 0 -7577480 64 0 -7577802 0 0 -7577819 64 0 -7577960 0 0 -7577994 64 0 -7578136 0 0 -7578159 64 0 -7578502 0 0 -7578520 64 0 -7579482 0 0 -7579497 64 0 -7579628 0 0 -7579682 64 0 -7579827 0 0 -7579953 64 0 -7580203 0 0 -7580264 64 0 -7580397 0 0 -7580420 64 0 -7580591 0 0 -7580646 64 0 -7580794 0 0 -7580861 64 0 -7580959 0 0 -7581217 64 0 -7581305 0 0 -7581342 64 0 -7581506 0 0 -7581525 64 0 -7581685 0 0 -7581733 64 0 -7581865 0 0 -7586030 totRewards = 8 -7586030 128 16 -7586203 0 16 -7586230 0 0 -7586276 128 0 -7586594 0 0 -7586646 128 0 -7586869 0 0 -7586882 128 0 -7586984 0 0 -7587040 128 0 -7587141 0 0 -7587153 128 0 -7587270 0 0 -7587284 128 0 -7587411 0 0 -7587449 128 0 -7587570 0 0 -7587605 128 0 -7587719 0 0 -7587756 128 0 -7587868 0 0 -7587918 128 0 -7588020 0 0 -7588073 128 0 -7588193 0 0 -7588236 128 0 -7588357 0 0 -7588414 128 0 -7588530 0 0 -7588595 128 0 -7588708 0 0 -7588763 128 0 -7588882 0 0 -7588938 128 0 -7589043 0 0 -7589094 128 0 -7589207 0 0 -7589228 128 0 -7589361 0 0 -7589395 128 0 -7589516 0 0 -7589559 128 0 -7589671 0 0 -7589729 128 0 -7589838 0 0 -7589910 128 0 -7589918 0 0 -7589962 128 0 -7590005 0 0 -7590071 128 0 -7590176 0 0 -7590329 128 0 -7590370 0 0 -7590473 128 0 -7590481 0 0 -7590519 128 0 -7590565 0 0 -7593508 totRewards = 9 -7593508 64 8 -7593703 0 8 -7593708 0 0 -7593718 64 0 -7593939 0 0 -7593957 64 0 -7594730 0 0 -7594744 64 0 -7594863 0 0 -7594890 64 0 -7595020 0 0 -7595030 64 0 -7595169 0 0 -7595174 64 0 -7595653 0 0 -7595670 64 0 -7595828 0 0 -7595841 64 0 -7595986 0 0 -7596013 64 0 -7596162 0 0 -7596199 64 0 -7596330 0 0 -7596379 64 0 -7596506 0 0 -7596524 64 0 -7596672 0 0 -7596684 64 0 -7596853 0 0 -7596873 64 0 -7597016 0 0 -7597070 64 0 -7597351 0 0 -7597375 64 0 -7597514 0 0 -7597545 64 0 -7598031 0 0 -7598062 64 0 -7598180 0 0 -7600753 totRewards = 10 -7600753 128 16 -7600928 0 16 -7600953 0 0 -7600990 128 0 -7601310 0 0 -7601350 128 0 -7601572 0 0 -7601603 128 0 -7601699 0 0 -7601749 128 0 -7602139 0 0 -7602168 128 0 -7602447 0 0 -7602470 128 0 -7602597 0 0 -7602634 128 0 -7602764 0 0 -7602799 128 0 -7602926 0 0 -7602968 128 0 -7603094 0 0 -7603151 128 0 -7603268 0 0 -7603328 128 0 -7603449 0 0 -7603504 128 0 -7603615 0 0 -7603667 128 0 -7603785 0 0 -7603834 128 0 -7603946 0 0 -7604000 128 0 -7604090 0 0 -7604243 128 0 -7604261 0 0 -7604340 128 0 -7604432 0 0 -7604506 128 0 -7604584 0 0 -7604667 128 0 -7604764 0 0 -7604873 128 0 -7604886 0 0 -7604910 128 0 -7604961 0 0 -7608088 totRewards = 11 -7608088 64 8 -7608263 0 8 -7608281 64 8 -7608288 64 0 -7609448 0 0 -7609467 64 0 -7609592 0 0 -7609607 64 0 -7609745 0 0 -7609757 64 0 -7610240 0 0 -7610256 64 0 -7610412 0 0 -7610424 64 0 -7610764 0 0 -7610772 64 0 -7610918 0 0 -7610952 64 0 -7611077 0 0 -7611115 64 0 -7611243 0 0 -7611289 64 0 -7611586 0 0 -7611606 64 0 -7611757 0 0 -7611794 64 0 -7612355 0 0 -7612386 64 0 -7612574 0 0 -7612614 64 0 -7612884 0 0 -7612901 64 0 -7613054 0 0 -7613091 64 0 -7613221 0 0 -7613257 64 0 -7613386 0 0 -7618178 totRewards = 12 -7618178 128 16 -7618307 0 16 -7618378 0 0 -7618396 128 0 -7618712 0 0 -7618752 128 0 -7618860 0 0 -7618907 128 0 -7618984 0 0 -7619030 128 0 -7619120 0 0 -7619158 128 0 -7619270 0 0 -7619285 128 0 -7619414 0 0 -7619429 128 0 -7619552 0 0 -7619584 128 0 -7619716 0 0 -7619727 128 0 -7619858 0 0 -7619880 128 0 -7620005 0 0 -7620054 128 0 -7620174 0 0 -7620222 128 0 -7620341 0 0 -7620397 128 0 -7620509 0 0 -7620586 128 0 -7620743 0 0 -7621246 128 0 -7621352 0 0 -7621407 128 0 -7621506 0 0 -7621630 128 0 -7621695 0 0 -7621754 128 0 -7621880 0 0 -7621924 128 0 -7622044 0 0 -7622121 128 0 -7622225 0 0 -7622291 128 0 -7622376 0 0 -7622477 128 0 -7622496 0 0 -7627198 totRewards = 13 -7627198 64 8 -7627398 64 0 -7627485 0 0 -7627518 64 0 -7627731 0 0 -7627748 64 0 -7628116 0 0 -7628129 64 0 -7628673 0 0 -7628690 64 0 -7629150 0 0 -7629167 64 0 -7629317 0 0 -7629333 64 0 -7629487 0 0 -7629508 64 0 -7629653 0 0 -7629679 64 0 -7629822 0 0 -7629839 64 0 -7630177 0 0 -7630189 64 0 -7630327 0 0 -7630372 64 0 -7630981 0 0 -7631001 64 0 -7631145 0 0 -7631167 64 0 -7631302 0 0 -7631325 64 0 -7631462 0 0 -7631485 64 0 -7631620 0 0 -7631654 64 0 -7631784 0 0 -7631820 64 0 -7632823 0 0 -7632847 64 0 -7632982 0 0 -7633020 64 0 -7633130 0 0 -7633190 64 0 -7633269 0 0 -7636615 totRewards = 14 -7636615 128 16 -7636786 0 16 -7636815 0 0 -7636824 128 0 -7637013 0 0 -7637060 128 0 -7637204 0 0 -7637225 128 0 -7637386 0 0 -7637443 128 0 -7637537 0 0 -7637577 128 0 -7637671 0 0 -7637683 128 0 -7637804 0 0 -7637816 128 0 -7637937 0 0 -7637954 128 0 -7638227 0 0 -7638255 128 0 -7638375 0 0 -7638411 128 0 -7638523 0 0 -7638558 128 0 -7638691 0 0 -7638728 128 0 -7638849 0 0 -7638900 128 0 -7639021 0 0 -7639074 128 0 -7639196 0 0 -7639244 128 0 -7639364 0 0 -7639418 128 0 -7639531 0 0 -7639582 128 0 -7639692 0 0 -7639746 128 0 -7639849 0 0 -7639908 128 0 -7640017 0 0 -7640064 128 0 -7640179 0 0 -7640234 128 0 -7640353 0 0 -7640407 128 0 -7640516 0 0 -7640591 128 0 -7640656 0 0 -7643472 totRewards = 15 -7643472 64 8 -7643672 64 0 -7644135 0 0 -7644143 64 0 -7644273 0 0 -7644285 64 0 -7644681 0 0 -7644691 64 0 -7644821 0 0 -7644835 64 0 -7645128 0 0 -7645141 64 0 -7645287 0 0 -7645300 64 0 -7645452 0 0 -7645462 64 0 -7645617 0 0 -7645632 64 0 -7645772 0 0 -7645801 64 0 -7645932 0 0 -7645969 64 0 -7646102 0 0 -7646129 64 0 -7646634 0 0 -7646657 64 0 -7646790 0 0 -7646833 64 0 -7646939 0 0 -7647007 64 0 -7647074 0 0 -7649822 totRewards = 16 -7649822 128 16 -7650002 0 16 -7650022 0 0 -7650070 128 0 -7650268 0 0 -7650297 128 0 -7650402 0 0 -7650451 128 0 -7650656 0 0 -7650688 128 0 -7650785 0 0 -7650847 128 0 -7651084 0 0 -7651100 128 0 -7651213 0 0 -7651247 128 0 -7651522 0 0 -7651547 128 0 -7651668 0 0 -7651708 128 0 -7651826 0 0 -7651870 128 0 -7651999 0 0 -7652037 128 0 -7652156 0 0 -7652209 128 0 -7652328 0 0 -7652377 128 0 -7652500 0 0 -7652551 128 0 -7652658 0 0 -7652704 128 0 -7652821 0 0 -7652866 128 0 -7652976 0 0 -7653038 128 0 -7653142 0 0 -7653199 128 0 -7653303 0 0 -7653358 128 0 -7653467 0 0 -7653515 128 0 -7653636 0 0 -7653691 128 0 -7653808 0 0 -7653869 128 0 -7653965 0 0 -7654051 128 0 -7654062 0 0 -7654080 128 0 -7654108 0 0 -7656919 totRewards = 17 -7656919 64 8 -7657100 0 8 -7657110 64 8 -7657119 64 0 -7657724 0 0 -7657737 64 0 -7658450 0 0 -7658463 64 0 -7659093 0 0 -7659110 64 0 -7659260 0 0 -7659287 64 0 -7659582 0 0 -7659623 64 0 -7659745 0 0 -7659761 64 0 -7659910 0 0 -7659923 64 0 -7660072 0 0 -7660091 64 0 -7660226 0 0 -7660267 64 0 -7660403 0 0 -7660430 64 0 -7661645 0 0 -7661670 64 0 -7661804 0 0 -7661850 64 0 -7661970 0 0 -7662038 64 0 -7662070 0 0 -7664957 totRewards = 18 -7664957 128 16 -7665116 0 16 -7665157 0 0 -7665163 128 0 -7665372 0 0 -7665381 128 0 -7665492 0 0 -7665545 128 0 -7665745 0 0 -7665785 128 0 -7665876 0 0 -7665942 128 0 -7666304 0 0 -7666340 128 0 -7666456 0 0 -7666472 128 0 -7666601 0 0 -7666620 128 0 -7666750 0 0 -7666789 128 0 -7666909 0 0 -7666951 128 0 -7667074 0 0 -7667107 128 0 -7667238 0 0 -7667279 128 0 -7667398 0 0 -7667454 128 0 -7667578 0 0 -7667628 128 0 -7667753 0 0 -7667813 128 0 -7667918 0 0 -7667983 128 0 -7668082 0 0 -7668137 128 0 -7668242 0 0 -7668288 128 0 -7668398 0 0 -7668454 128 0 -7668559 0 0 -7668614 128 0 -7668722 0 0 -7668772 128 0 -7668880 0 0 -7668945 128 0 -7669001 0 0 -7669091 128 0 -7669177 0 0 -7669492 128 0 -7669523 0 0 -7669608 128 0 -7669694 0 0 -7672486 totRewards = 19 -7672486 64 8 -7672686 64 0 -7672724 0 0 -7672737 64 0 -7673490 0 0 -7673495 64 0 -7673765 0 0 -7673797 64 0 -7674228 0 0 -7674245 64 0 -7674389 0 0 -7674411 64 0 -7674894 0 0 -7674914 64 0 -7675248 0 0 -7675270 64 0 -7675418 0 0 -7675447 64 0 -7675593 0 0 -7675622 64 0 -7675753 0 0 -7675795 64 0 -7675911 0 0 -7675976 64 0 -7676080 0 0 -7676166 64 0 -7676268 0 0 -7676294 64 0 -7676444 0 0 -7676456 64 0 -7676947 0 0 -7676967 64 0 -7677088 0 0 -7679867 totRewards = 20 -7679867 128 16 -7680067 128 0 -7680094 0 0 -7680125 128 0 -7680335 0 0 -7680382 128 0 -7680469 0 0 -7680492 128 0 -7680727 0 0 -7680767 128 0 -7680855 0 0 -7680935 128 0 -7681001 0 0 -7681018 128 0 -7681159 0 0 -7681172 128 0 -7681294 0 0 -7681324 128 0 -7681588 0 0 -7681609 128 0 -7681743 0 0 -7681767 128 0 -7681906 0 0 -7681934 128 0 -7682065 0 0 -7682103 128 0 -7682226 0 0 -7682266 128 0 -7682390 0 0 -7682438 128 0 -7682573 0 0 -7682621 128 0 -7682747 0 0 -7682802 128 0 -7682920 0 0 -7682969 128 0 -7683084 0 0 -7683134 128 0 -7683243 0 0 -7683297 128 0 -7683398 0 0 -7683455 128 0 -7683562 0 0 -7683617 128 0 -7683726 0 0 -7683780 128 0 -7683889 0 0 -7683948 128 0 -7684062 0 0 -7684129 128 0 -7684181 0 0 -7687149 totRewards = 21 -7687149 64 8 -7687334 0 8 -7687349 0 0 -7687368 64 0 -7688422 0 0 -7688431 64 0 -7689388 0 0 -7689395 64 0 -7689548 0 0 -7689570 64 0 -7689719 0 0 -7689739 64 0 -7690071 0 0 -7690094 64 0 -7690236 0 0 -7690275 64 0 -7690577 0 0 -7690608 64 0 -7690748 0 0 -7690779 64 0 -7690941 0 0 -7690955 64 0 -7691854 0 0 -7691868 64 0 -7692034 0 0 -7692075 64 0 -7692226 0 0 -7692246 64 0 -7692396 0 0 -7692425 64 0 -7692575 0 0 -7692615 64 0 -7692744 0 0 -7692793 64 0 -7692916 0 0 -7695979 totRewards = 22 -7695979 128 16 -7696155 0 16 -7696179 0 0 -7696202 128 0 -7696409 0 0 -7696454 128 0 -7696545 0 0 -7696610 128 0 -7696807 0 0 -7696843 128 0 -7696940 0 0 -7697002 128 0 -7697228 0 0 -7697253 128 0 -7697365 0 0 -7697397 128 0 -7697511 0 0 -7697525 128 0 -7697646 0 0 -7697669 128 0 -7697800 0 0 -7697833 128 0 -7697956 0 0 -7697992 128 0 -7698120 0 0 -7698153 128 0 -7698280 0 0 -7698325 128 0 -7698442 0 0 -7698497 128 0 -7698624 0 0 -7698670 128 0 -7698792 0 0 -7698847 128 0 -7698956 0 0 -7699030 128 0 -7699117 0 0 -7699171 128 0 -7699287 0 0 -7699334 128 0 -7699449 0 0 -7699513 128 0 -7699611 0 0 -7699673 128 0 -7699780 0 0 -7699832 128 0 -7699949 0 0 -7700006 128 0 -7700113 0 0 -7700189 128 0 -7700266 0 0 -7703088 totRewards = 23 -7703088 64 8 -7703250 0 8 -7703277 64 8 -7703288 64 0 -7704632 0 0 -7704645 64 0 -7705600 0 0 -7705615 64 0 -7705765 0 0 -7705782 64 0 -7705935 0 0 -7705961 64 0 -7706103 0 0 -7706131 64 0 -7706267 0 0 -7706301 64 0 -7706431 0 0 -7706463 64 0 -7706601 0 0 -7706627 64 0 -7706764 0 0 -7706802 64 0 -7706930 0 0 -7706960 64 0 -7707407 0 0 -7707434 64 0 -7707562 0 0 -7707602 64 0 -7707904 0 0 -7707925 64 0 -7708075 0 0 -7708098 64 0 -7708229 0 0 -7708267 64 0 -7708371 0 0 -7711071 totRewards = 24 -7711071 128 16 -7711271 128 0 -7711287 0 0 -7711335 128 0 -7711541 0 0 -7711554 128 0 -7711669 0 0 -7711743 128 0 -7711797 0 0 -7711821 128 0 -7711918 0 0 -7711963 128 0 -7712057 0 0 -7712115 128 0 -7712350 0 0 -7712367 128 0 -7712487 0 0 -7712521 128 0 -7712797 0 0 -7712815 128 0 -7712933 0 0 -7712969 128 0 -7713089 0 0 -7713123 128 0 -7713252 0 0 -7713285 128 0 -7713398 0 0 -7713450 128 0 -7713560 0 0 -7713617 128 0 -7713738 0 0 -7713793 128 0 -7713912 0 0 -7713974 128 0 -7714078 0 0 -7714139 128 0 -7714242 0 0 -7714298 128 0 -7714402 0 0 -7714450 128 0 -7714556 0 0 -7714619 128 0 -7714715 0 0 -7714786 128 0 -7714871 0 0 -7714940 128 0 -7715030 0 0 -7715110 128 0 -7715204 0 0 -7715820 128 0 -7715841 0 0 -7715880 128 0 -7715896 0 0 -7716042 128 0 -7716050 0 0 -7718859 totRewards = 25 -7718859 64 8 -7719037 0 8 -7719059 0 0 -7719070 64 0 -7720252 0 0 -7720271 64 0 -7721045 0 0 -7721052 64 0 -7721203 0 0 -7721223 64 0 -7721865 0 0 -7721906 64 0 -7722021 0 0 -7722069 64 0 -7722175 0 0 -7724820 totRewards = 26 -7724820 128 16 -7725007 0 16 -7725020 0 0 -7725058 128 0 -7725272 0 0 -7725298 128 0 -7725406 0 0 -7725460 128 0 -7725661 0 0 -7725701 128 0 -7725799 0 0 -7725877 128 0 -7726100 0 0 -7726104 128 0 -7726227 0 0 -7726259 128 0 -7726377 0 0 -7726398 128 0 -7726533 0 0 -7726549 128 0 -7726683 0 0 -7726707 128 0 -7726844 0 0 -7726875 128 0 -7727015 0 0 -7727044 128 0 -7727172 0 0 -7727210 128 0 -7727333 0 0 -7727378 128 0 -7727492 0 0 -7727541 128 0 -7727649 0 0 -7727701 128 0 -7727819 0 0 -7727862 128 0 -7727984 0 0 -7728027 128 0 -7728146 0 0 -7728201 128 0 -7728307 0 0 -7728367 128 0 -7728477 0 0 -7728526 128 0 -7728646 0 0 -7728696 128 0 -7728805 0 0 -7728869 128 0 -7728900 0 0 -7728928 128 0 -7728972 0 0 -7729027 128 0 -7729129 0 0 -7729183 128 0 -7729286 0 0 -7729366 128 0 -7729498 0 0 -7729527 128 0 -7729646 0 0 -7729719 128 0 -7729814 0 0 -7729893 128 0 -7729988 0 0 -7730070 128 0 -7730141 0 0 -7732750 totRewards = 27 -7732750 64 8 -7732939 0 8 -7732950 0 0 -7732966 64 0 -7734138 0 0 -7734147 64 0 -7735096 0 0 -7735122 64 0 -7735434 0 0 -7735464 64 0 -7735589 0 0 -7735614 64 0 -7735744 0 0 -7735773 64 0 -7735913 0 0 -7735933 64 0 -7736087 0 0 -7736097 64 0 -7737351 0 0 -7737358 64 0 -7737527 0 0 -7737563 64 0 -7737905 0 0 -7737973 64 0 -7738060 0 0 -7738711 64 0 -7739104 0 0 -7739144 64 0 -7739275 0 0 -7739310 64 0 -7740248 0 0 -7740276 64 0 -7740402 0 0 -7740424 64 0 -7740623 0 0 -7740657 64 0 -7740921 0 0 -7740929 64 0 -7741081 0 0 -7741115 64 0 -7741257 0 0 -7741299 64 0 -7741393 0 0 -7744012 totRewards = 28 -7744012 128 16 -7744190 0 16 -7744212 0 0 -7744254 128 0 -7744591 0 0 -7744627 128 0 -7744754 0 0 -7744772 128 0 -7744882 0 0 -7744909 128 0 -7745016 0 0 -7745054 128 0 -7745173 0 0 -7745180 128 0 -7745316 0 0 -7745325 128 0 -7745451 0 0 -7745473 128 0 -7745605 0 0 -7745616 128 0 -7745755 0 0 -7745777 128 0 -7745908 0 0 -7745937 128 0 -7746070 0 0 -7746103 128 0 -7746228 0 0 -7746259 128 0 -7746394 0 0 -7746433 128 0 -7746551 0 0 -7746597 128 0 -7746711 0 0 -7746764 128 0 -7746864 0 0 -7746912 128 0 -7747023 0 0 -7747070 128 0 -7747181 0 0 -7747240 128 0 -7747344 0 0 -7747394 128 0 -7747508 0 0 -7747557 128 0 -7747668 0 0 -7747717 128 0 -7747845 0 0 -7747893 128 0 -7748015 0 0 -7748073 128 0 -7748178 0 0 -7748248 128 0 -7748328 0 0 -7751119 totRewards = 29 -7751119 64 8 -7751284 0 8 -7751297 64 8 -7751319 64 0 -7751936 0 0 -7751944 64 0 -7752075 0 0 -7752081 64 0 -7752352 0 0 -7752369 64 0 -7752495 0 0 -7752509 64 0 -7753308 0 0 -7753311 64 0 -7753472 0 0 -7753484 64 0 -7753615 0 0 -7753653 64 0 -7753782 0 0 -7753808 64 0 -7753948 0 0 -7753967 64 0 -7754108 0 0 -7754132 64 0 -7754263 0 0 -7754300 64 0 -7754433 0 0 -7754457 64 0 -7754590 0 0 -7754618 64 0 -7754934 0 0 -7754951 64 0 -7755096 0 0 -7755117 64 0 -7755269 0 0 -7755280 64 0 -7755421 0 0 -7755464 64 0 -7755583 0 0 -7755614 64 0 -7756426 0 0 -7756435 64 0 -7756575 0 0 -7756621 64 0 -7756735 0 0 -7759346 totRewards = 30 -7759346 128 16 -7759546 128 0 -7759735 0 0 -7759828 128 0 -7759895 0 0 -7760019 128 0 -7760549 0 0 -7760573 128 0 -7761183 0 0 -7761278 128 0 -7761837 0 0 -7761971 128 0 -7762397 0 0 -7770968 128 0 -7771508 0 0 -7771516 128 0 -7771520 0 0 -7771594 128 0 -7771670 0 0 -7778279 128 0 -7778726 0 0 -7778810 128 0 -7781612 0 0 -7781679 128 0 -7781859 0 0 -7781952 128 0 -7782647 0 0 -7782660 128 0 -7783611 0 0 -7783695 128 0 -7783820 0 0 -7783904 128 0 -7784028 0 0 -7784715 128 0 -7784748 0 0 -7784815 128 0 -7784963 0 0 -7784972 128 0 -7785128 0 0 -7785171 128 0 -7785323 0 0 -7785332 128 0 -7785458 0 0 -7785567 128 0 -7785644 0 0 -7785652 128 0 -7785984 0 0 -7786006 128 0 -7786181 0 0 -7798709 128 0 -7799137 0 0 -7799197 128 0 -7799717 0 0 -7799733 128 0 -7799853 0 0 -7799891 128 0 -7800003 0 0 -7800048 128 0 -7800153 0 0 -7800200 128 0 -7800302 0 0 -7800347 128 0 -7800452 0 0 -7800500 128 0 -7800618 0 0 -7803661 128 0 -7803970 0 0 -7804004 128 0 -7804144 0 0 -7813162 128 0 -7813218 0 0 -7813406 128 0 -7813806 0 0 -7813875 128 0 -7814107 0 0 -7823391 totRewards = 31 -7823391 64 8 -7823591 64 0 -7823656 0 0 -7823671 64 0 -7823881 0 0 -7823897 64 0 -7826008 0 0 -7826037 64 0 -7827566 0 0 -7827573 64 0 -7828584 0 0 -7828620 64 0 -7828743 0 0 -7834990 totRewards = 32 -7834990 128 16 -7835139 0 16 -7835167 128 16 -7835190 128 0 -7835449 0 0 -7835485 128 0 -7835835 0 0 -7835868 128 0 -7836110 0 0 -7836120 128 0 -7836236 0 0 -7836256 128 0 -7836367 0 0 -7836396 128 0 -7836513 0 0 -7836531 128 0 -7836651 0 0 -7836676 128 0 -7836789 0 0 -7836818 128 0 -7836938 0 0 -7836957 128 0 -7837076 0 0 -7837105 128 0 -7837232 0 0 -7837258 128 0 -7837401 0 0 -7837432 128 0 -7837572 0 0 -7837608 128 0 -7837734 0 0 -7837774 128 0 -7837900 0 0 -7837949 128 0 -7838076 0 0 -7838119 128 0 -7838241 0 0 -7838288 128 0 -7838407 0 0 -7838416 128 0 -7839140 0 0 -7839167 128 0 -7839306 0 0 -7839334 128 0 -7839474 0 0 -7839510 128 0 -7839648 0 0 -7839695 128 0 -7839813 0 0 -7839849 128 0 -7839976 0 0 -7843754 totRewards = 33 -7843754 64 8 -7843954 64 0 -7843967 0 0 -7843973 64 0 -7845978 0 0 -7845984 64 0 -7846131 0 0 -7846155 64 0 -7846469 0 0 -7846491 64 0 -7846622 0 0 -7846657 64 0 -7846788 0 0 -7846799 64 0 -7847249 0 0 -7847271 64 0 -7847410 0 0 -7847455 64 0 -7847541 0 0 -7850856 totRewards = 34 -7850856 128 16 -7851040 0 16 -7851056 0 0 -7851101 128 0 -7851704 0 0 -7851731 128 0 -7851818 0 0 -7851873 128 0 -7851970 0 0 -7851982 128 0 -7852120 0 0 -7852136 128 0 -7852248 0 0 -7852280 128 0 -7852389 0 0 -7852411 128 0 -7852683 0 0 -7852708 128 0 -7852833 0 0 -7852864 128 0 -7852987 0 0 -7853024 128 0 -7853146 0 0 -7853179 128 0 -7853313 0 0 -7853358 128 0 -7853472 0 0 -7853527 128 0 -7853635 0 0 -7853698 128 0 -7853797 0 0 -7853859 128 0 -7853955 0 0 -7854006 128 0 -7854110 0 0 -7854161 128 0 -7854262 0 0 -7854311 128 0 -7854419 0 0 -7854471 128 0 -7854573 0 0 -7854639 128 0 -7854738 0 0 -7854791 128 0 -7854898 0 0 -7854946 128 0 -7855057 0 0 -7855109 128 0 -7855227 0 0 -7855280 128 0 -7855404 0 0 -7855464 128 0 -7855564 0 0 -7855679 128 0 -7855711 0 0 -7858818 totRewards = 35 -7858818 64 8 -7859018 64 0 -7859614 0 0 -7859624 64 0 -7860163 0 0 -7860171 64 0 -7861607 0 0 -7861621 64 0 -7861768 0 0 -7861798 64 0 -7861923 0 0 -7861961 64 0 -7862077 0 0 -7862128 64 0 -7862227 0 0 -7865126 totRewards = 36 -7865126 128 16 -7865323 0 16 -7865326 0 0 -7865400 128 0 -7865601 0 0 -7865621 128 0 -7865723 0 0 -7865770 128 0 -7865984 0 0 -7866016 128 0 -7866108 0 0 -7866176 128 0 -7866543 0 0 -7866580 128 0 -7866846 0 0 -7866872 128 0 -7866999 0 0 -7867032 128 0 -7867154 0 0 -7867201 128 0 -7867325 0 0 -7867359 128 0 -7867483 0 0 -7867533 128 0 -7867646 0 0 -7867703 128 0 -7867828 0 0 -7867875 128 0 -7867993 0 0 -7868049 128 0 -7868165 0 0 -7868226 128 0 -7868323 0 0 -7868378 128 0 -7868473 0 0 -7868524 128 0 -7868631 0 0 -7868678 128 0 -7868784 0 0 -7868845 128 0 -7868939 0 0 -7869007 128 0 -7869106 0 0 -7869153 128 0 -7869260 0 0 -7869319 128 0 -7869430 0 0 -7869482 128 0 -7869593 0 0 -7869658 128 0 -7869757 0 0 -7869825 128 0 -7869914 0 0 -7870005 128 0 -7870057 0 0 -7873030 totRewards = 37 -7873030 64 8 -7873229 0 8 -7873230 0 0 -7873246 64 0 -7873983 0 0 -7874009 64 0 -7875354 0 0 -7875365 64 0 -7875515 0 0 -7875533 64 0 -7875672 0 0 -7875697 64 0 -7875846 0 0 -7875866 64 0 -7875997 0 0 -7876036 64 0 -7876162 0 0 -7876199 64 0 -7876323 0 0 -7876361 64 0 -7876488 0 0 -7876523 64 0 -7876651 0 0 -7876694 64 0 -7876820 0 0 -7876857 64 0 -7877649 0 0 -7877665 64 0 -7877800 0 0 -7877838 64 0 -7877965 0 0 -7878018 64 0 -7878114 0 0 -7881030 totRewards = 38 -7881030 128 16 -7881192 0 16 -7881230 0 0 -7881250 128 0 -7881470 0 0 -7881478 128 0 -7881591 0 0 -7881617 128 0 -7881863 0 0 -7881878 128 0 -7881978 0 0 -7882035 128 0 -7882400 0 0 -7882433 128 0 -7882567 0 0 -7882573 128 0 -7882714 0 0 -7882749 128 0 -7882875 0 0 -7882921 128 0 -7883043 0 0 -7883089 128 0 -7883214 0 0 -7883259 128 0 -7883386 0 0 -7883443 128 0 -7883561 0 0 -7883614 128 0 -7883727 0 0 -7883786 128 0 -7883878 0 0 -7883938 128 0 -7884042 0 0 -7884087 128 0 -7884198 0 0 -7884250 128 0 -7884353 0 0 -7884421 128 0 -7884510 0 0 -7884579 128 0 -7884678 0 0 -7884729 128 0 -7884846 0 0 -7884901 128 0 -7885012 0 0 -7885074 128 0 -7885174 0 0 -7885254 128 0 -7885376 0 0 -7885445 128 0 -7885529 0 0 -7889531 totRewards = 39 -7889531 64 8 -7889731 64 0 -7889761 0 0 -7889764 64 0 -7890353 0 0 -7890374 64 0 -7890499 0 0 -7890505 64 0 -7891707 0 0 -7891730 64 0 -7891877 0 0 -7891911 64 0 -7892050 0 0 -7892082 64 0 -7892211 0 0 -7892240 64 0 -7892367 0 0 -7892404 64 0 -7892531 0 0 -7892563 64 0 -7892695 0 0 -7892722 64 0 -7892868 0 0 -7892883 64 0 -7893208 0 0 -7893218 64 0 -7893348 0 0 -7893404 64 0 -7893488 0 0 -7896150 totRewards = 40 -7896150 128 16 -7896337 0 16 -7896350 0 0 -7896384 128 0 -7896596 0 0 -7896620 128 0 -7896725 0 0 -7896772 128 0 -7896980 0 0 -7897027 128 0 -7897108 0 0 -7897185 128 0 -7897545 0 0 -7897579 128 0 -7897712 0 0 -7897731 128 0 -7897867 0 0 -7897894 128 0 -7898018 0 0 -7898067 128 0 -7898187 0 0 -7898232 128 0 -7898352 0 0 -7898399 128 0 -7898507 0 0 -7898565 128 0 -7898657 0 0 -7898710 128 0 -7898815 0 0 -7898868 128 0 -7898969 0 0 -7899036 128 0 -7899125 0 0 -7899188 128 0 -7899299 0 0 -7899344 128 0 -7899457 0 0 -7899515 128 0 -7899621 0 0 -7899682 128 0 -7899788 0 0 -7899857 128 0 -7899953 0 0 -7900013 128 0 -7900115 0 0 -7900169 128 0 -7900275 0 0 -7900326 128 0 -7900429 0 0 -7900508 128 0 -7900621 0 0 -7900688 128 0 -7900791 0 0 -7900863 128 0 -7900965 0 0 -7901007 128 0 -7901129 0 0 -7901172 128 0 -7901285 0 0 -7901351 128 0 -7901449 0 0 -7901514 128 0 -7901622 0 0 -7901668 128 0 -7901786 0 0 -7901853 128 0 -7901936 0 0 -7902059 128 0 -7902084 0 0 -7902107 128 0 -7902161 0 0 -7902279 128 0 -7902313 0 0 -7902412 128 0 -7902446 0 0 -7902466 128 0 -7902507 0 0 -7902598 128 0 -7902669 0 0 -7905547 totRewards = 41 -7905547 64 8 -7905735 0 8 -7905747 0 0 -7905759 64 0 -7907837 0 0 -7907860 64 0 -7908013 0 0 -7908024 64 0 -7908328 0 0 -7908367 64 0 -7908481 0 0 -7908518 64 0 -7908635 0 0 -7908672 64 0 -7908961 0 0 -7908986 64 0 -7909114 0 0 -7909176 64 0 -7909231 0 0 -7912019 totRewards = 42 -7912019 128 16 -7912212 0 16 -7912219 0 0 -7912264 128 0 -7912454 0 0 -7912500 128 0 -7912588 0 0 -7912638 128 0 -7912841 0 0 -7912888 128 0 -7912974 0 0 -7913041 128 0 -7913413 0 0 -7913441 128 0 -7913699 0 0 -7913724 128 0 -7913853 0 0 -7913892 128 0 -7914005 0 0 -7914050 128 0 -7914171 0 0 -7914219 128 0 -7914337 0 0 -7914389 128 0 -7914507 0 0 -7914563 128 0 -7914681 0 0 -7914727 128 0 -7914842 0 0 -7914893 128 0 -7915001 0 0 -7915035 128 0 -7915167 0 0 -7915171 128 0 -7915299 0 0 -7915335 128 0 -7915457 0 0 -7915495 128 0 -7915616 0 0 -7915664 128 0 -7915808 0 0 -7915834 128 0 -7915970 0 0 -7916001 128 0 -7916121 0 0 -7916177 128 0 -7916274 0 0 -7919172 totRewards = 43 -7919172 64 8 -7919351 0 8 -7919359 64 8 -7919372 64 0 -7920098 0 0 -7920116 64 0 -7921447 0 0 -7921461 64 0 -7921602 0 0 -7921630 64 0 -7921769 0 0 -7921793 64 0 -7921947 0 0 -7921962 64 0 -7922118 0 0 -7922136 64 0 -7922270 0 0 -7922304 64 0 -7922761 0 0 -7922779 64 0 -7922919 0 0 -7922952 64 0 -7923096 0 0 -7923111 64 0 -7923239 0 0 -7923269 64 0 -7924484 0 0 -7927363 totRewards = 44 -7927363 128 16 -7927531 0 16 -7927563 0 0 -7927599 128 0 -7927793 0 0 -7927820 128 0 -7927920 0 0 -7927987 128 0 -7928176 0 0 -7928212 128 0 -7928306 0 0 -7928369 128 0 -7928592 0 0 -7928607 128 0 -7928731 0 0 -7928766 128 0 -7929039 0 0 -7929058 128 0 -7929183 0 0 -7929227 128 0 -7929342 0 0 -7929388 128 0 -7929500 0 0 -7929543 128 0 -7929670 0 0 -7929713 128 0 -7929829 0 0 -7929884 128 0 -7929990 0 0 -7930047 128 0 -7930145 0 0 -7930196 128 0 -7930300 0 0 -7930357 128 0 -7930465 0 0 -7930507 128 0 -7930622 0 0 -7930675 128 0 -7930784 0 0 -7930844 128 0 -7930943 0 0 -7931008 128 0 -7931097 0 0 -7931161 128 0 -7931267 0 0 -7931325 128 0 -7931412 0 0 -7931479 128 0 -7931537 0 0 -7931635 128 0 -7931736 0 0 -7931802 128 0 -7931882 0 0 -7932056 128 0 -7932077 0 0 -7932323 128 0 -7932341 0 0 -7932532 128 0 -7932567 0 0 -7932648 128 0 -7932722 0 0 -7932796 128 0 -7932900 0 0 -7932956 128 0 -7933070 0 0 -7933137 128 0 -7933227 0 0 -7933318 128 0 -7933372 0 0 -7936145 totRewards = 45 -7936145 64 8 -7936331 0 8 -7936345 0 0 -7936351 64 0 -7938670 0 0 -7938678 64 0 -7938832 0 0 -7938847 64 0 -7938994 0 0 -7939027 64 0 -7939141 0 0 -7939184 64 0 -7939299 0 0 -7939351 64 0 -7939445 0 0 -7942321 totRewards = 46 -7942321 128 16 -7942500 0 16 -7942521 0 0 -7942553 128 0 -7942738 0 0 -7942769 128 0 -7942881 0 0 -7942940 128 0 -7943134 0 0 -7943169 128 0 -7943260 0 0 -7943329 128 0 -7943406 0 0 -7943421 128 0 -7943545 0 0 -7943563 128 0 -7943677 0 0 -7943703 128 0 -7944125 0 0 -7944158 128 0 -7944284 0 0 -7944305 128 0 -7944442 0 0 -7944471 128 0 -7944599 0 0 -7944643 128 0 -7944760 0 0 -7944816 128 0 -7944939 0 0 -7944984 128 0 -7945100 0 0 -7945140 128 0 -7945255 0 0 -7945301 128 0 -7945571 0 0 -7945586 128 0 -7945718 0 0 -7945760 128 0 -7945882 0 0 -7945921 128 0 -7946053 0 0 -7946086 128 0 -7946220 0 0 -7946260 128 0 -7946378 0 0 -7946433 128 0 -7946524 0 0 -7946612 128 0 -7946674 0 0 -7949564 totRewards = 47 -7949564 64 8 -7949764 64 0 -7949764 0 0 -7949783 64 0 -7950950 0 0 -7950954 64 0 -7952222 0 0 -7952250 64 0 -7952562 0 0 -7952598 64 0 -7952723 0 0 -7952758 64 0 -7952880 0 0 -7952917 64 0 -7953050 0 0 -7953078 64 0 -7953208 0 0 -7953249 64 0 -7953367 0 0 -7953409 64 0 -7953523 0 0 -7956542 totRewards = 48 -7956542 128 16 -7956715 0 16 -7956742 0 0 -7956753 128 0 -7956970 0 0 -7956992 128 0 -7957107 0 0 -7957183 128 0 -7957352 0 0 -7957394 128 0 -7957491 0 0 -7957533 128 0 -7957780 0 0 -7957798 128 0 -7957913 0 0 -7957946 128 0 -7958058 0 0 -7958090 128 0 -7958212 0 0 -7958231 128 0 -7958357 0 0 -7958393 128 0 -7958511 0 0 -7958556 128 0 -7958677 0 0 -7958711 128 0 -7958833 0 0 -7958875 128 0 -7959005 0 0 -7959060 128 0 -7959173 0 0 -7959226 128 0 -7959332 0 0 -7959383 128 0 -7959499 0 0 -7959552 128 0 -7959658 0 0 -7959717 128 0 -7959818 0 0 -7959877 128 0 -7959959 0 0 -7960024 128 0 -7960140 0 0 -7960205 128 0 -7960301 0 0 -7960365 128 0 -7960469 0 0 -7960524 128 0 -7960599 0 0 -7960686 128 0 -7960810 0 0 -7960851 128 0 -7960962 0 0 -7961027 128 0 -7961117 0 0 -7961204 128 0 -7961295 0 0 -7964706 totRewards = 49 -7964706 64 8 -7964906 64 0 -7966868 0 0 -7966880 64 0 -7967019 0 0 -7967049 64 0 -7967179 0 0 -7967224 64 0 -7967335 0 0 -7967369 64 0 -7967490 0 0 -7967521 64 0 -7967649 0 0 -7967681 64 0 -7967814 0 0 -7967829 64 0 -7968780 0 0 -7968795 64 0 -7968925 0 0 -7968947 64 0 -7969095 0 0 -7969109 64 0 -7969456 0 0 -7969478 64 0 -7969615 0 0 -7969659 64 0 -7969793 0 0 -7969820 64 0 -7969943 0 0 -7969988 64 0 -7970089 0 0 -7970199 64 0 -7970210 0 0 -7972772 totRewards = 50 -7972772 128 16 -7972924 0 16 -7972972 0 0 -7972975 128 0 -7973169 0 0 -7973199 128 0 -7973306 0 0 -7973375 128 0 -7973442 0 0 -7973458 128 0 -7973560 0 0 -7973591 128 0 -7973689 0 0 -7973740 128 0 -7973845 0 0 -7973852 128 0 -7973973 0 0 -7973988 128 0 -7974111 0 0 -7974138 128 0 -7974403 0 0 -7974429 128 0 -7974551 0 0 -7974581 128 0 -7974707 0 0 -7974748 128 0 -7974875 0 0 -7974905 128 0 -7975034 0 0 -7975077 128 0 -7975198 0 0 -7975249 128 0 -7975365 0 0 -7975419 128 0 -7975531 0 0 -7975595 128 0 -7975677 0 0 -7975763 128 0 -7975835 0 0 -7975909 128 0 -7976004 0 0 -7976053 128 0 -7976170 0 0 -7976219 128 0 -7976333 0 0 -7976381 128 0 -7976490 0 0 -7976543 128 0 -7976648 0 0 -7976714 128 0 -7976793 0 0 -7976870 128 0 -7977000 0 0 -7977036 128 0 -7977156 0 0 -7977203 128 0 -7977313 0 0 -7977377 128 0 -7977451 0 0 -7981685 totRewards = 51 -7981685 64 8 -7981885 64 0 -7982588 0 0 -7982597 64 0 -7983005 0 0 -7983015 64 0 -7983943 0 0 -7983946 64 0 -7984103 0 0 -7984115 64 0 -7984423 0 0 -7984436 64 0 -7984579 0 0 -7984609 64 0 -7984738 0 0 -7984769 64 0 -7984903 0 0 -7984939 64 0 -7985073 0 0 -7985101 64 0 -7985231 0 0 -7985272 64 0 -7985729 0 0 -7985747 64 0 -7985888 0 0 -7985924 64 0 -7986047 0 0 -7988662 totRewards = 52 -7988662 128 16 -7988827 0 16 -7988862 0 0 -7988878 128 0 -7989246 0 0 -7989346 128 0 -7991807 0 0 -7991816 128 0 -7991952 0 0 -7991975 128 0 -7992111 0 0 -7992124 128 0 -7992438 0 0 -7992463 128 0 -7992593 0 0 -7992639 128 0 -7992759 0 0 -7992802 128 0 -7992925 0 0 -7992971 128 0 -7993465 0 0 -7993499 128 0 -7993632 0 0 -7993687 128 0 -7993808 0 0 -7993866 128 0 -7993991 0 0 -7994042 128 0 -7994185 0 0 -7994196 128 0 -7994335 0 0 -7994388 128 0 -7994508 0 0 -7994574 128 0 -7995282 0 0 -7995287 128 0 -7995764 0 0 -7995792 128 0 -7995933 0 0 -7995977 128 0 -7996111 0 0 -7996148 128 0 -7996268 0 0 -7996308 128 0 -7996426 0 0 -7996479 128 0 -7996596 0 0 -7996641 128 0 -7996771 0 0 -8003049 128 0 -8003174 0 0 -8012705 128 0 -8012750 0 0 -8012815 128 0 -8013021 0 0 -8013046 128 0 -8013889 0 0 -8013917 128 0 -8014030 0 0 -8014079 128 0 -8014189 0 0 -8014207 128 0 -8014319 0 0 -8014357 128 0 -8014470 0 0 -8014499 128 0 -8014621 0 0 -8014665 128 0 -8014770 0 0 -8014835 128 0 -8014905 0 0 -8018396 totRewards = 53 -8018396 64 8 -8018426 0 8 -8018596 0 0 -8029486 64 0 -8029770 0 0 -8029782 64 0 -8031102 0 0 -8031129 64 0 -8031239 0 0 -8031275 64 0 -8031387 0 0 -8031407 64 0 -8031872 0 0 -8035335 64 0 -8035389 0 0 -8035423 64 0 -8036330 0 0 -8036340 64 0 -8036844 0 0 -8036869 64 0 -8037008 0 0 -8037055 64 0 -8037175 0 0 -8037229 64 0 -8037354 0 0 -8037464 64 0 -8037474 0 0 -8037506 64 0 -8037540 0 0 -8049713 totRewards = 54 -8049713 128 16 -8049913 128 0 -8050505 0 0 -8050526 128 0 -8051015 0 0 -8051041 128 0 -8051141 0 0 -8051158 128 0 -8051416 0 0 -8051437 128 0 -8051560 0 0 -8051581 128 0 -8051855 0 0 -8051871 128 0 -8052000 0 0 -8052022 128 0 -8052139 0 0 -8052167 128 0 -8052305 0 0 -8052329 128 0 -8052466 0 0 -8052493 128 0 -8052619 0 0 -8052656 128 0 -8052774 0 0 -8052811 128 0 -8052924 0 0 -8052965 128 0 -8053087 0 0 -8053103 128 0 -8053224 0 0 -8053249 128 0 -8053366 0 0 -8053395 128 0 -8053517 0 0 -8053547 128 0 -8053678 0 0 -8053717 128 0 -8053852 0 0 -8053873 128 0 -8054015 0 0 -8054053 128 0 -8054193 0 0 -8054221 128 0 -8054373 0 0 -8054400 128 0 -8054531 0 0 -8054567 128 0 -8054690 0 0 -8054743 128 0 -8054853 0 0 -8054910 128 0 -8055035 0 0 -8055094 128 0 -8055216 0 0 -8055413 128 0 -8055504 0 0 -8055572 128 0 -8055618 0 0 -8055718 128 0 -8055755 0 0 -8061519 totRewards = 55 -8061519 64 8 -8061719 64 0 -8061777 0 0 -8061799 64 0 -8063502 0 0 -8063517 64 0 -8064335 0 0 -8064354 64 0 -8064518 0 0 -8064529 64 0 -8065104 0 0 -8065129 64 0 -8065785 0 0 -8077601 totRewards = 56 -8077601 128 16 -8077801 128 0 -8078493 0 0 -8078510 128 0 -8078622 0 0 -8078650 128 0 -8078743 0 0 -8078774 128 0 -8078881 0 0 -8078908 128 0 -8079013 0 0 -8079045 128 0 -8079142 0 0 -8079173 128 0 -8079283 0 0 -8079310 128 0 -8079433 0 0 -8079451 128 0 -8079573 0 0 -8079611 128 0 -8079718 0 0 -8079758 128 0 -8079866 0 0 -8079905 128 0 -8080022 0 0 -8080066 128 0 -8080183 0 0 -8080227 128 0 -8080339 0 0 -8080389 128 0 -8080491 0 0 -8080553 128 0 -8080649 0 0 -8080719 128 0 -8080818 0 0 -8080946 128 0 -8080976 0 0 -8081195 128 0 -8081288 0 0 -8081325 128 0 -8081467 0 0 -8081510 128 0 -8081636 0 0 -8081676 128 0 -8081799 0 0 -8081841 128 0 -8081958 0 0 -8082018 128 0 -8082121 0 0 -8092708 totRewards = 57 -8092708 64 8 -8092908 64 0 -8095791 0 0 -8095819 64 0 -8096103 0 0 -8096113 64 0 -8096566 0 0 -8096612 64 0 -8096710 0 0 -8100081 totRewards = 58 -8100081 128 16 -8100281 128 0 -8100404 0 0 -8100420 128 0 -8100991 0 0 -8101042 128 0 -8101131 0 0 -8101144 128 0 -8101266 0 0 -8101286 128 0 -8101388 0 0 -8101425 128 0 -8101522 0 0 -8101555 128 0 -8101661 0 0 -8101688 128 0 -8101800 0 0 -8101834 128 0 -8101953 0 0 -8101980 128 0 -8102091 0 0 -8102123 128 0 -8102243 0 0 -8102279 128 0 -8102395 0 0 -8102443 128 0 -8102553 0 0 -8102605 128 0 -8102715 0 0 -8102763 128 0 -8102889 0 0 -8102933 128 0 -8103060 0 0 -8103111 128 0 -8103224 0 0 -8103278 128 0 -8103379 0 0 -8103443 128 0 -8103517 0 0 -8103594 128 0 -8103673 0 0 -8103731 128 0 -8103846 0 0 -8103892 128 0 -8103998 0 0 -8104059 128 0 -8104153 0 0 -8104204 128 0 -8104318 0 0 -8104354 128 0 -8104477 0 0 -8104525 128 0 -8104631 0 0 -8104704 128 0 -8104783 0 0 -8108593 totRewards = 59 -8108593 64 8 -8108793 64 0 -8108799 0 0 -8108811 64 0 -8111156 0 0 -8111170 64 0 -8111314 0 0 -8111343 64 0 -8111490 0 0 -8111510 64 0 -8111661 0 0 -8111690 64 0 -8111819 0 0 -8111864 64 0 -8111972 0 0 -8112035 64 0 -8112134 0 0 -8112172 64 0 -8112310 0 0 -8112334 64 0 -8112490 0 0 -8112505 64 0 -8112655 0 0 -8112709 64 0 -8112827 0 0 -8117626 totRewards = 60 -8117626 128 16 -8117820 0 16 -8117826 0 0 -8117853 128 0 -8118305 0 0 -8118321 128 0 -8118555 0 0 -8118585 128 0 -8118702 0 0 -8118719 128 0 -8118837 0 0 -8118852 128 0 -8118967 0 0 -8118993 128 0 -8119114 0 0 -8119139 128 0 -8119261 0 0 -8119287 128 0 -8119405 0 0 -8119440 128 0 -8119556 0 0 -8119597 128 0 -8119716 0 0 -8119756 128 0 -8119872 0 0 -8119918 128 0 -8120035 0 0 -8120086 128 0 -8120199 0 0 -8120246 128 0 -8120351 0 0 -8120409 128 0 -8120503 0 0 -8120552 128 0 -8120659 0 0 -8120715 128 0 -8120828 0 0 -8120875 128 0 -8120988 0 0 -8121041 128 0 -8121145 0 0 -8121214 128 0 -8121281 0 0 -8121380 128 0 -8121399 0 0 -8121411 128 0 -8121433 0 0 -8124531 totRewards = 61 -8124531 64 8 -8124716 0 8 -8124731 0 0 -8124742 64 0 -8126943 0 0 -8126968 64 0 -8127102 0 0 -8127143 64 0 -8127261 0 0 -8127308 64 0 -8127422 0 0 -8127458 64 0 -8127601 0 0 -8127621 64 0 -8127761 0 0 -8127820 64 0 -8127913 0 0 -8127977 64 0 -8128253 0 0 -8131322 totRewards = 62 -8131322 128 16 -8131479 0 16 -8131522 0 0 -8131568 128 0 -8132034 0 0 -8132047 128 0 -8132175 0 0 -8132196 128 0 -8132282 0 0 -8132322 128 0 -8132579 0 0 -8132593 128 0 -8132716 0 0 -8132740 128 0 -8133001 0 0 -8133032 128 0 -8133158 0 0 -8133175 128 0 -8133309 0 0 -8133344 128 0 -8133467 0 0 -8133512 128 0 -8133626 0 0 -8133676 128 0 -8133793 0 0 -8133841 128 0 -8133966 0 0 -8134005 128 0 -8134131 0 0 -8134185 128 0 -8134292 0 0 -8134349 128 0 -8134446 0 0 -8134504 128 0 -8134604 0 0 -8134655 128 0 -8134760 0 0 -8134813 128 0 -8134926 0 0 -8134974 128 0 -8135090 0 0 -8135148 128 0 -8135258 0 0 -8135337 128 0 -8135361 0 0 -8138305 totRewards = 63 -8138305 64 8 -8138458 0 8 -8138475 64 8 -8138505 64 0 -8139198 0 0 -8139210 64 0 -8140671 0 0 -8140689 64 0 -8140842 0 0 -8140861 64 0 -8141008 0 0 -8141038 64 0 -8141176 0 0 -8141220 64 0 -8141349 0 0 -8141402 64 0 -8141509 0 0 -8148584 totRewards = 64 -8148584 128 16 -8148780 0 16 -8148784 0 0 -8148912 128 0 -8149943 0 0 -8149947 128 0 -8150647 0 0 -8150658 128 0 -8151120 0 0 -8151142 128 0 -8151270 0 0 -8151293 128 0 -8151431 0 0 -8151442 128 0 -8151581 0 0 -8151625 128 0 -8151743 0 0 -8151794 128 0 -8151916 0 0 -8151959 128 0 -8152075 0 0 -8152120 128 0 -8152232 0 0 -8152282 128 0 -8152391 0 0 -8152447 128 0 -8152554 0 0 -8152612 128 0 -8152718 0 0 -8152774 128 0 -8152869 0 0 -8152937 128 0 -8153042 0 0 -8153086 128 0 -8153195 0 0 -8153247 128 0 -8153363 0 0 -8153412 128 0 -8153521 0 0 -8153569 128 0 -8153674 0 0 -8153725 128 0 -8153825 0 0 -8157369 128 0 -8157382 0 0 -8169714 totRewards = 65 -8169714 64 8 -8169914 64 0 -8170381 0 0 -8170395 64 0 -8170508 0 0 -8170520 64 0 -8170632 0 0 -8170651 64 0 -8170757 0 0 -8170775 64 0 -8171163 0 0 -8171179 64 0 -8172073 0 0 -8172083 64 0 -8172243 0 0 -8172268 64 0 -8172577 0 0 -8172610 64 0 -8172735 0 0 -8172785 64 0 -8172902 0 0 -8172956 64 0 -8173064 0 0 -8173112 64 0 -8173241 0 0 -8173288 64 0 -8173403 0 0 -8177958 totRewards = 66 -8177958 128 16 -8178158 128 0 -8178197 0 0 -8178221 128 0 -8178553 0 0 -8178574 128 0 -8178686 0 0 -8178731 128 0 -8178793 0 0 -8178838 128 0 -8178950 0 0 -8178969 128 0 -8179080 0 0 -8179096 128 0 -8179207 0 0 -8179235 128 0 -8179342 0 0 -8179366 128 0 -8179481 0 0 -8179504 128 0 -8179624 0 0 -8179649 128 0 -8179771 0 0 -8179811 128 0 -8179930 0 0 -8179965 128 0 -8180087 0 0 -8180128 128 0 -8180239 0 0 -8180287 128 0 -8180403 0 0 -8180451 128 0 -8180556 0 0 -8180612 128 0 -8180705 0 0 -8180761 128 0 -8180863 0 0 -8180909 128 0 -8181022 0 0 -8181084 128 0 -8181173 0 0 -8181238 128 0 -8181342 0 0 -8181391 128 0 -8181495 0 0 -8181555 128 0 -8181656 0 0 -8181729 128 0 -8181782 0 0 -8184908 totRewards = 67 -8184908 64 8 -8185108 64 0 -8185118 0 0 -8185125 64 0 -8186815 0 0 -8186824 64 0 -8187303 0 0 -8187325 64 0 -8187458 0 0 -8187486 64 0 -8187625 0 0 -8187645 64 0 -8187778 0 0 -8187817 64 0 -8188090 0 0 -8188123 64 0 -8188246 0 0 -8188316 64 0 -8188387 0 0 -8191424 totRewards = 68 -8191424 128 16 -8191610 0 16 -8191624 0 0 -8191647 128 0 -8191866 0 0 -8191900 128 0 -8191987 0 0 -8192032 128 0 -8192246 0 0 -8192281 128 0 -8192384 0 0 -8192463 128 0 -8192504 0 0 -8192538 128 0 -8192655 0 0 -8192673 128 0 -8192795 0 0 -8192819 128 0 -8192935 0 0 -8192971 128 0 -8193089 0 0 -8193114 128 0 -8193226 0 0 -8193259 128 0 -8193377 0 0 -8193418 128 0 -8193532 0 0 -8193573 128 0 -8193687 0 0 -8193738 128 0 -8193850 0 0 -8193914 128 0 -8194019 0 0 -8194078 128 0 -8194175 0 0 -8194239 128 0 -8194321 0 0 -8194378 128 0 -8194468 0 0 -8194533 128 0 -8194630 0 0 -8194685 128 0 -8194786 0 0 -8194835 128 0 -8194940 0 0 -8195005 128 0 -8195104 0 0 -8195162 128 0 -8195263 0 0 -8195324 128 0 -8195424 0 0 -8195480 128 0 -8195577 0 0 -8195643 128 0 -8195723 0 0 -8195795 128 0 -8195897 0 0 -8195945 128 0 -8196058 0 0 -8196114 128 0 -8196227 0 0 -8196350 128 0 -8196369 0 0 -8199703 totRewards = 69 -8199703 64 8 -8199885 0 8 -8199903 0 0 -8199913 64 0 -8200647 0 0 -8200655 64 0 -8201347 0 0 -8201359 64 0 -8201635 0 0 -8201662 64 0 -8202120 0 0 -8202138 64 0 -8202274 0 0 -8202306 64 0 -8202442 0 0 -8202473 64 0 -8202596 0 0 -8202642 64 0 -8202750 0 0 -8202800 64 0 -8202908 0 0 -8202947 64 0 -8203076 0 0 -8203126 64 0 -8203231 0 0 -8206243 totRewards = 70 -8206243 128 16 -8206443 128 0 -8206484 0 0 -8206528 128 0 -8206896 0 0 -8206917 128 0 -8207037 0 0 -8207066 128 0 -8207170 0 0 -8207193 128 0 -8207325 0 0 -8207343 128 0 -8207470 0 0 -8207506 128 0 -8207622 0 0 -8207660 128 0 -8207791 0 0 -8207822 128 0 -8207933 0 0 -8207984 128 0 -8208088 0 0 -8208159 128 0 -8208267 0 0 -8208314 128 0 -8208423 0 0 -8208483 128 0 -8208525 0 0 -8208546 128 0 -8208576 0 0 -8208645 128 0 -8208729 0 0 -8208789 128 0 -8208875 0 0 -8208935 128 0 -8209035 0 0 -8209090 128 0 -8209190 0 0 -8209250 128 0 -8209354 0 0 -8209413 128 0 -8209516 0 0 -8209588 128 0 -8209656 0 0 -8209756 128 0 -8209828 0 0 -8213075 totRewards = 71 -8213075 64 8 -8213257 0 8 -8213264 64 8 -8213275 64 0 -8213998 0 0 -8214014 64 0 -8214422 0 0 -8214434 64 0 -8214718 0 0 -8214728 64 0 -8215513 0 0 -8215534 64 0 -8215678 0 0 -8215705 64 0 -8216025 0 0 -8216049 64 0 -8216185 0 0 -8216226 64 0 -8216343 0 0 -8216389 64 0 -8216501 0 0 -8216551 64 0 -8216650 0 0 -8219650 totRewards = 72 -8219650 128 16 -8219802 0 16 -8219850 0 0 -8219880 128 0 -8220487 0 0 -8220503 128 0 -8220604 0 0 -8220653 128 0 -8220755 0 0 -8220765 128 0 -8220898 0 0 -8220913 128 0 -8221031 0 0 -8221071 128 0 -8221341 0 0 -8221378 128 0 -8221500 0 0 -8221542 128 0 -8221660 0 0 -8221708 128 0 -8221826 0 0 -8221879 128 0 -8221994 0 0 -8222048 128 0 -8222163 0 0 -8222213 128 0 -8222331 0 0 -8222383 128 0 -8222488 0 0 -8222558 128 0 -8222645 0 0 -8222701 128 0 -8222803 0 0 -8222867 128 0 -8222969 0 0 -8223030 128 0 -8223127 0 0 -8223184 128 0 -8223287 0 0 -8223341 128 0 -8223445 0 0 -8223499 128 0 -8223600 0 0 -8223678 128 0 -8223724 0 0 -8223807 128 0 -8223886 0 0 -8223978 128 0 -8224064 0 0 -8224122 128 0 -8224238 0 0 -8224295 128 0 -8224393 0 0 -8224469 128 0 -8224573 0 0 -8224646 128 0 -8224720 0 0 -8227852 totRewards = 73 -8227852 64 8 -8228014 0 8 -8228041 64 8 -8228052 64 0 -8229493 0 0 -8229499 64 0 -8229639 0 0 -8229644 64 0 -8230119 0 0 -8230133 64 0 -8230285 0 0 -8230301 64 0 -8230449 0 0 -8230472 64 0 -8230614 0 0 -8230640 64 0 -8230776 0 0 -8230826 64 0 -8230944 0 0 -8231006 64 0 -8231120 0 0 -8231159 64 0 -8231283 0 0 -8231342 64 0 -8231437 0 0 -8236228 totRewards = 74 -8236228 128 16 -8236363 0 16 -8236422 128 16 -8236428 128 0 -8237434 0 0 -8237455 128 0 -8237565 0 0 -8237590 128 0 -8237710 0 0 -8237720 128 0 -8237851 0 0 -8237873 128 0 -8237996 0 0 -8238028 128 0 -8238142 0 0 -8238173 128 0 -8238296 0 0 -8238317 128 0 -8238453 0 0 -8238479 128 0 -8238615 0 0 -8238640 128 0 -8238767 0 0 -8238803 128 0 -8238925 0 0 -8238966 128 0 -8239092 0 0 -8239131 128 0 -8239255 0 0 -8239300 128 0 -8239414 0 0 -8239466 128 0 -8239578 0 0 -8239630 128 0 -8239736 0 0 -8239788 128 0 -8239904 0 0 -8239964 128 0 -8240057 0 0 -8240098 128 0 -8240191 0 0 -8240262 128 0 -8240351 0 0 -8240412 128 0 -8240522 0 0 -8240586 128 0 -8240686 0 0 -8250887 totRewards = 75 -8250887 64 8 -8251087 64 0 -8251130 0 0 -8251166 64 0 -8251225 0 0 -8251239 64 0 -8253956 0 0 -8253968 64 0 -8254283 0 0 -8254307 64 0 -8254440 0 0 -8254469 64 0 -8254599 0 0 -8254639 64 0 -8254771 0 0 -8254809 64 0 -8254960 0 0 -8254970 64 0 -8255117 0 0 -8255153 64 0 -8255261 0 0 -8255323 64 0 -8255449 0 0 -8255459 64 0 -8255600 0 0 -8255655 64 0 -8255745 0 0 -8279322 totRewards = 76 -8279322 128 16 -8279522 128 0 -8279579 0 0 -8279617 128 0 -8279830 0 0 -8279841 128 0 -8279959 0 0 -8279983 128 0 -8280196 0 0 -8280230 128 0 -8280339 0 0 -8280349 128 0 -8280588 0 0 -8280618 128 0 -8280738 0 0 -8280751 128 0 -8281031 0 0 -8281076 128 0 -8281187 0 0 -8281232 128 0 -8281357 0 0 -8281390 128 0 -8281518 0 0 -8281555 128 0 -8281679 0 0 -8281739 128 0 -8281854 0 0 -8281917 128 0 -8282025 0 0 -8282088 128 0 -8282196 0 0 -8282283 128 0 -8282378 0 0 -8282440 128 0 -8282554 0 0 -8282599 128 0 -8282719 0 0 -8282763 128 0 -8282899 0 0 -8282967 128 0 -8283097 0 0 -8283149 128 0 -8283279 0 0 -8283363 128 0 -8283464 0 0 -8283516 128 0 -8283666 0 0 -8283703 128 0 -8283824 0 0 -8283886 128 0 -8283996 0 0 -8284062 128 0 -8284182 0 0 -8284252 128 0 -8284365 0 0 -8284448 128 0 -8284541 0 0 -8284598 128 0 -8284719 0 0 -8286738 128 0 -8286867 0 0 -8290340 totRewards = 77 -8290339 64 8 -8290540 64 0 -8290590 0 0 -8290601 64 0 -8291851 0 0 -8291862 64 0 -8292282 0 0 -8292292 64 0 -8292432 0 0 -8292444 64 0 -8292585 0 0 -8292603 64 0 -8292743 0 0 -8292767 64 0 -8292903 0 0 -8292929 64 0 -8293055 0 0 -8293084 64 0 -8293206 0 0 -8293239 64 0 -8293362 0 0 -8293378 64 0 -8293522 0 0 -8293538 64 0 -8293676 0 0 -8293703 64 0 -8293837 0 0 -8293860 64 0 -8293983 0 0 -8294017 64 0 -8294140 0 0 -8294168 64 0 -8294299 0 0 -8294324 64 0 -8294438 0 0 -8294463 64 0 -8294577 0 0 -8294624 64 0 -8294933 0 0 -8294971 64 0 -8295097 0 0 -8295149 64 0 -8295259 0 0 -8295316 64 0 -8295411 0 0 -8312427 totRewards = 78 -8312427 128 16 -8312443 0 16 -8312507 128 16 -8312627 128 0 -8312634 0 0 -8312721 128 0 -8312796 0 0 -8312819 128 0 -8312837 0 0 -8312909 128 0 -8313026 0 0 -8313041 128 0 -8313944 0 0 -8313963 128 0 -8314082 0 0 -8314103 128 0 -8314226 0 0 -8314245 128 0 -8314359 0 0 -8314390 128 0 -8314507 0 0 -8314538 128 0 -8314658 0 0 -8314689 128 0 -8314800 0 0 -8314839 128 0 -8314965 0 0 -8315010 128 0 -8315129 0 0 -8315179 128 0 -8315284 0 0 -8315342 128 0 -8315446 0 0 -8315500 128 0 -8315605 0 0 -8315662 128 0 -8315773 0 0 -8315790 128 0 -8316217 0 0 -8316234 128 0 -8316371 0 0 -8316406 128 0 -8316539 0 0 -8316561 128 0 -8316712 0 0 -8316732 128 0 -8316876 0 0 -8316902 128 0 -8317031 0 0 -8317071 128 0 -8317194 0 0 -8317254 128 0 -8317355 0 0 -8324400 totRewards = 79 -8324400 64 8 -8324595 0 8 -8324600 0 0 -8324630 64 0 -8325107 0 0 -8325130 64 0 -8328538 0 0 -8328562 64 0 -8328718 0 0 -8328727 64 0 -8330048 0 0 -8330059 64 0 -8330437 0 0 -8330462 64 0 -8330627 0 0 -8330639 64 0 -8330802 0 0 -8330829 64 0 -8330948 0 0 -8331033 64 0 -8331042 0 0 -8336747 totRewards = 80 -8336747 128 16 -8336947 128 0 -8337131 0 0 -8337170 128 0 -8337664 0 0 -8337671 128 0 -8337778 0 0 -8337808 128 0 -8337916 0 0 -8337946 128 0 -8338049 0 0 -8338083 128 0 -8338180 0 0 -8338220 128 0 -8338330 0 0 -8338363 128 0 -8338466 0 0 -8338506 128 0 -8338617 0 0 -8338661 128 0 -8338767 0 0 -8338812 128 0 -8338932 0 0 -8338983 128 0 -8339098 0 0 -8339157 128 0 -8339270 0 0 -8339332 128 0 -8339452 0 0 -8339515 128 0 -8339635 0 0 -8339686 128 0 -8339806 0 0 -8339853 128 0 -8339969 0 0 -8339993 128 0 -8340265 0 0 -8340281 128 0 -8340408 0 0 -8340456 128 0 -8340569 0 0 -8340613 128 0 -8340723 0 0 -8340772 128 0 -8340884 0 0 -8340936 128 0 -8341039 0 0 -8341088 128 0 -8341198 0 0 -8341257 128 0 -8341365 0 0 -8341425 128 0 -8341533 0 0 -8341600 128 0 -8341701 0 0 -8341774 128 0 -8341866 0 0 -8341940 128 0 -8342058 0 0 -8342106 128 0 -8342187 0 0 -8342856 128 0 -8342930 0 0 -8343078 128 0 -8345964 0 0 -8350233 totRewards = 81 -8350233 64 8 -8350422 0 8 -8350428 64 8 -8350433 64 0 -8352812 0 0 -8352825 64 0 -8352980 0 0 -8352999 64 0 -8353143 0 0 -8353172 64 0 -8353304 0 0 -8353343 64 0 -8353469 0 0 -8353500 64 0 -8353628 0 0 -8353650 64 0 -8353797 0 0 -8353820 64 0 -8353968 0 0 -8353982 64 0 -8354299 0 0 -8354323 64 0 -8354453 0 0 -8354512 64 0 -8354600 0 0 -8357863 totRewards = 82 -8357863 128 16 -8358029 0 16 -8358063 0 0 -8358127 128 0 -8358328 0 0 -8358343 128 0 -8358444 0 0 -8358485 128 0 -8358833 0 0 -8358894 128 0 -8359134 0 0 -8359143 128 0 -8359253 0 0 -8359289 128 0 -8359394 0 0 -8359423 128 0 -8359551 0 0 -8359560 128 0 -8359686 0 0 -8359723 128 0 -8359837 0 0 -8359875 128 0 -8360005 0 0 -8360039 128 0 -8360163 0 0 -8360213 128 0 -8360331 0 0 -8360382 128 0 -8360496 0 0 -8360561 128 0 -8360673 0 0 -8360742 128 0 -8360851 0 0 -8360922 128 0 -8361023 0 0 -8361095 128 0 -8361171 0 0 -8361409 128 0 -8361510 0 0 -8361580 128 0 -8361657 0 0 -8361731 128 0 -8361838 0 0 -8361896 128 0 -8361991 0 0 -8362067 128 0 -8362161 0 0 -8362249 128 0 -8362257 0 0 -8366125 totRewards = 83 -8366125 64 8 -8366325 64 0 -8366348 0 0 -8366371 64 0 -8368634 0 0 -8368647 64 0 -8368798 0 0 -8368820 64 0 -8368956 0 0 -8368986 64 0 -8369110 0 0 -8369141 64 0 -8369276 0 0 -8369299 64 0 -8369430 0 0 -8369476 64 0 -8369597 0 0 -8369625 64 0 -8369761 0 0 -8369781 64 0 -8369926 0 0 -8369948 64 0 -8370611 0 0 -8370623 64 0 -8370769 0 0 -8370801 64 0 -8370942 0 0 -8370980 64 0 -8371113 0 0 -8371163 64 0 -8371250 0 0 -8374448 totRewards = 84 -8374448 128 16 -8374648 128 0 -8374649 0 0 -8374696 128 0 -8374925 0 0 -8374948 128 0 -8375178 0 0 -8375212 128 0 -8375308 0 0 -8375368 128 0 -8375606 0 0 -8375614 128 0 -8375745 0 0 -8375760 128 0 -8376177 0 0 -8376209 128 0 -8376313 0 0 -8376353 128 0 -8376471 0 0 -8376490 128 0 -8376612 0 0 -8376652 128 0 -8376765 0 0 -8376826 128 0 -8376936 0 0 -8376988 128 0 -8377106 0 0 -8377153 128 0 -8377274 0 0 -8377331 128 0 -8377445 0 0 -8377502 128 0 -8377607 0 0 -8377674 128 0 -8377766 0 0 -8377824 128 0 -8377931 0 0 -8377985 128 0 -8378104 0 0 -8378153 128 0 -8378267 0 0 -8378331 128 0 -8378428 0 0 -8385289 totRewards = 85 -8385289 64 8 -8385489 64 0 -8385501 0 0 -8385514 64 0 -8387814 0 0 -8387836 64 0 -8387980 0 0 -8388009 64 0 -8388139 0 0 -8388180 64 0 -8388288 0 0 -8388345 64 0 -8388442 0 0 -8388514 64 0 -8388582 0 0 -8392063 totRewards = 86 -8392063 128 16 -8392225 0 16 -8392263 0 0 -8392332 128 0 -8392799 0 0 -8392820 128 0 -8392933 0 0 -8393022 128 0 -8393049 0 0 -8393081 128 0 -8393354 0 0 -8393367 128 0 -8393481 0 0 -8393504 128 0 -8393933 0 0 -8393964 128 0 -8394089 0 0 -8394118 128 0 -8394247 0 0 -8394274 128 0 -8394404 0 0 -8394449 128 0 -8394571 0 0 -8394614 128 0 -8394738 0 0 -8394776 128 0 -8394899 0 0 -8394948 128 0 -8395062 0 0 -8395119 128 0 -8395222 0 0 -8395272 128 0 -8395384 0 0 -8395450 128 0 -8395540 0 0 -8395598 128 0 -8395707 0 0 -8395756 128 0 -8395869 0 0 -8395923 128 0 -8396037 0 0 -8396098 128 0 -8396204 0 0 -8396274 128 0 -8396357 0 0 -8400269 totRewards = 87 -8400269 64 8 -8400469 64 0 -8400477 0 0 -8400489 64 0 - - description: state script log run 3 - task_epochs: 6, -] -2021-01-28 16:10:56,678 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 16:11:00,762 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 16:11:00,768 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 16:11:00,768 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 16:11:00,768 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 16:11:00,769 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 16:11:00,770 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 16:11:00,771 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 16:11:00,772 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 16:11:02,898 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 16:11:02,899 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 16:11:02,904 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 16:11:02,905 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 16:11:02,907 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 16:11:02,930 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 16:11:02,933 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 16:11:02,934 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 16:11:02,935 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 16:11:06,573 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 16:11:06,576 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 16:14:56,199 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = Jaq -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-01-28 16:14:56,476 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 16:14:56,478 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 16:14:56,478 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 16:14:56,479 rec_to_binaries.core: INFO Extracting time... -2021-01-28 16:16:07,903 rec_to_binaries.core: INFO Making position directory... -2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 -2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 16:16:08,068 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = Jaq -date = 20190826 -nwb_metadata = Experiment Info: -Experimenter: Abhilasha Joshi -Description: Theta and gait -Session Id: jaq_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/nwb/Jaq20190826.nwb - -2021-01-28 16:16:08,772 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! - , [] -2021-01-28 16:16:12,158 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 16:16:12,789 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 16:16:12,789 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 16:16:12,790 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 16:16:12,791 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 16:16:12,792 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 16:16:12,792 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 16:16:12,793 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 16:16:12,794 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 16:16:12,795 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x139658896990672 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -2001580 totRewards = 1 -2001580 64 200 -2001618 0 136 -2001730 64 136 -2001776 0 136 -2001780 0 128 -2003264 64 128 -2003377 0 128 -2003446 64 128 -2003519 0 128 -2003570 64 128 -2003646 0 128 -2003696 64 128 -2003785 0 128 -2003826 64 128 -2004082 0 128 -2004105 64 128 -2004232 0 128 -2004274 64 128 -2004393 0 128 -2004427 64 128 -2004551 0 128 -2004583 64 128 -2004720 0 128 -2004752 64 128 -2004888 0 128 -2004930 64 128 -2005077 0 128 -2005116 64 128 -2005252 0 128 -2005284 64 128 -2005395 0 128 -2005465 64 128 -2005540 0 128 -2005603 64 128 -2005710 0 128 -2005749 64 128 -2005861 0 128 -2005934 64 128 -2006019 0 128 -2006065 64 128 -2006182 0 128 -2006217 64 128 -2006329 0 128 -2006344 64 128 -2006477 0 128 -2006494 64 128 -2006626 0 128 -2006639 64 128 -2006774 0 128 -2006801 64 128 -2006925 0 128 -2006975 64 128 -2007855 0 128 -2007878 64 128 -2008024 0 128 -2008063 64 128 -2008169 0 128 -2008218 64 128 -2008346 0 128 -2008414 64 128 -2008525 0 128 -2008545 64 128 -2008694 0 128 -2008728 64 128 -2008871 0 128 -2008882 64 128 -2010662 0 128 -2010678 64 128 -2011803 0 128 -2011833 64 128 -2011970 0 128 -2012060 64 128 -2012163 0 128 -2012186 64 128 -2012343 0 128 -2012375 64 128 -2012524 0 128 -2012561 64 128 -2012567 0 128 -2012582 64 128 -2012666 0 128 -2012692 64 128 -2012709 0 128 -2012758 64 128 -2012843 0 128 -2012878 64 128 -2012913 0 128 -2012973 64 128 -2013026 0 128 -2013031 64 128 -2013034 0 128 -2013052 64 128 -2013239 0 128 -2034560 totRewards = 2 -2034560 128 144 -2034760 128 128 -2035091 0 0 -2035175 128 0 -2035224 0 0 -2035241 128 0 -2035642 0 0 -2035669 128 0 -2035934 0 0 -2035976 128 0 -2036086 0 0 -2036140 128 0 -2036249 0 0 -2036307 128 0 -2036411 0 0 -2036492 128 0 -2036582 0 0 -2036660 128 0 -2036748 0 0 -2036816 128 0 -2036899 0 0 -2036961 128 0 -2037070 0 0 -2037137 128 0 -2037244 0 0 -2037376 128 0 -2037423 0 0 -2037507 128 0 -2037610 0 0 -2037670 128 0 -2037770 0 0 -2037803 128 0 -2037924 0 0 -2037933 128 0 -2038187 0 0 -2038197 128 0 -2038342 0 0 -2038355 128 0 -2038819 0 0 -2038855 128 0 -2039188 0 0 -2039253 128 0 -2039357 0 0 -2039426 128 0 -2039462 0 0 -2039490 128 0 -2039548 0 0 -2039667 128 0 -2039739 0 0 -2039810 128 0 -2039928 0 0 -2039981 128 0 -2040117 0 0 -2040208 128 0 -2040298 0 0 -2040373 128 0 -2040478 0 0 -2040515 128 0 -2040657 0 0 -2040697 128 0 -2040788 0 0 -2040829 128 0 -2040851 0 0 -2040860 128 0 -2041365 0 0 -2041423 128 0 -2041584 0 0 -2041699 128 0 -2041769 0 0 -2041844 128 0 -2041969 0 0 -2042090 128 0 -2042173 0 0 -2042311 128 0 -2042343 0 0 -2063830 128 0 -2063874 0 0 -2066005 128 0 -2067249 0 0 -2067324 128 0 -2067441 0 0 -2074645 totRewards = 3 -2074645 64 8 -2074658 0 8 -2074845 0 0 -2074976 64 0 -2075045 0 0 -2075058 64 0 -2075512 0 0 -2075546 64 0 -2075789 0 0 -2075823 64 0 -2076095 0 0 -2076119 64 0 -2076245 0 0 -2076272 64 0 -2076412 0 0 -2076445 64 0 -2076571 0 0 -2076603 64 0 -2076738 0 0 -2076767 64 0 -2076901 0 0 -2076934 64 0 -2077052 0 0 -2077104 64 0 -2077209 0 0 -2077249 64 0 -2077518 0 0 -2077538 64 0 -2077985 0 0 -2077999 64 0 -2078158 0 0 -2078172 64 0 -2078842 0 0 -2078882 64 0 -2079003 0 0 -2079062 64 0 -2079188 0 0 -2079210 64 0 -2079323 0 0 -2079338 64 0 -2079360 0 0 -2079427 64 0 -2079489 0 0 -2079575 64 0 -2079656 0 0 -2079680 64 0 -2081117 0 0 -2081135 64 0 -2081295 0 0 -2081324 64 0 -2081462 0 0 -2081533 64 0 -2081625 0 0 -2096193 totRewards = 4 -2096193 128 16 -2096393 128 0 -2096867 0 0 -2096907 128 0 -2097582 0 0 -2097600 128 0 -2097712 0 0 -2097733 128 0 -2097848 0 0 -2097876 128 0 -2097988 0 0 -2098020 128 0 -2098129 0 0 -2098160 128 0 -2098287 0 0 -2098319 128 0 -2098435 0 0 -2098479 128 0 -2098589 0 0 -2098635 128 0 -2098748 0 0 -2098802 128 0 -2098919 0 0 -2098997 128 0 -2099135 0 0 -2099189 128 0 -2099304 0 0 -2099356 128 0 -2099465 0 0 -2099508 128 0 -2099929 0 0 -2099945 128 0 -2100094 0 0 -2100103 128 0 -2100267 0 0 -2100306 128 0 -2100435 0 0 -2100498 128 0 -2100541 0 0 -2100563 128 0 -2100631 0 0 -2100699 128 0 -2100805 0 0 -2100866 128 0 -2100997 0 0 -2101127 128 0 -2101177 0 0 -2101305 128 0 -2101366 0 0 -2101520 128 0 -2101559 0 0 -2101741 128 0 -2101765 0 0 -2102142 128 0 -2102175 0 0 -2102328 128 0 -2102369 0 0 -2102507 128 0 -2102562 0 0 -2102681 128 0 -2102720 0 0 -2105862 128 0 -2105868 0 0 -2114611 totRewards = 5 -2114611 64 8 -2114766 0 8 -2114811 0 0 -2114881 64 0 -2115110 0 0 -2115120 64 0 -2115389 0 0 -2115397 64 0 -2116252 0 0 -2116283 64 0 -2116436 0 0 -2116450 64 0 -2116584 0 0 -2116611 64 0 -2116741 0 0 -2116780 64 0 -2116895 0 0 -2116944 64 0 -2117053 0 0 -2117100 64 0 -2117213 0 0 -2117240 64 0 -2117365 0 0 -2117398 64 0 -2117526 0 0 -2117554 64 0 -2117852 0 0 -2117876 64 0 -2118025 0 0 -2118034 64 0 -2118175 0 0 -2118220 64 0 -2118353 0 0 -2118363 64 0 -2118479 0 0 -2118501 64 0 -2118516 0 0 -2118552 64 0 -2118559 0 0 -2118580 64 0 -2118637 0 0 -2118740 64 0 -2118800 0 0 -2118878 64 0 -2120024 0 0 -2120051 64 0 -2120186 0 0 -2120233 64 0 -2120352 0 0 -2140288 totRewards = 6 -2140288 128 16 -2140488 128 0 -2140841 0 0 -2140904 128 0 -2141213 0 0 -2141279 128 0 -2141616 0 0 -2141629 128 0 -2141863 0 0 -2141879 128 0 -2142145 0 0 -2142170 128 0 -2142292 0 0 -2142316 128 0 -2142435 0 0 -2142476 128 0 -2142582 0 0 -2142631 128 0 -2142739 0 0 -2142785 128 0 -2142890 0 0 -2142943 128 0 -2143053 0 0 -2143111 128 0 -2143226 0 0 -2143277 128 0 -2143386 0 0 -2143425 128 0 -2143539 0 0 -2143553 128 0 -2143986 0 0 -2144010 128 0 -2144133 0 0 -2144162 128 0 -2144308 0 0 -2144348 128 0 -2144481 0 0 -2144538 128 0 -2144654 0 0 -2144710 128 0 -2144817 0 0 -2144882 128 0 -2144986 0 0 -2145048 128 0 -2145173 0 0 -2145185 128 0 -2145200 0 0 -2145208 128 0 -2145295 0 0 -2145404 128 0 -2145461 0 0 -2145557 128 0 -2145621 0 0 -2145669 128 0 -2145675 0 0 -2145682 128 0 -2145958 0 0 -2145990 128 0 -2146113 0 0 -2146144 128 0 -2146279 0 0 -2146329 128 0 -2146438 0 0 -2146560 128 0 -2146611 0 0 -2146696 128 0 -2146710 0 0 -2159529 totRewards = 7 -2159529 64 8 -2159729 64 0 -2159738 0 0 -2159763 64 0 -2160960 0 0 -2160973 64 0 -2161110 0 0 -2161128 64 0 -2161268 0 0 -2161289 64 0 -2161432 0 0 -2161459 64 0 -2161608 0 0 -2161632 64 0 -2161949 0 0 -2161985 64 0 -2162113 0 0 -2162143 64 0 -2162275 0 0 -2162296 64 0 -2162310 0 0 -2162319 64 0 -2162403 0 0 -2162421 64 0 -2162452 0 0 -2162459 64 0 -2162559 0 0 -2162568 64 0 -2162900 0 0 -2162928 64 0 -2163757 0 0 -2163783 64 0 -2163917 0 0 -2163968 64 0 -2164082 0 0 -2166458 64 0 -2166531 0 0 -2166648 64 0 -2166917 0 0 -2166935 64 0 -2167090 0 0 -2167109 64 0 -2167732 0 0 -2167762 64 0 -2167908 0 0 -2167929 64 0 -2168084 0 0 -2168099 64 0 -2168429 0 0 -2168490 64 0 -2168588 0 0 -2176893 totRewards = 8 -2176893 128 16 -2177093 128 0 -2177326 0 0 -2177401 128 0 -2177653 0 0 -2177660 128 0 -2177663 0 0 -2177733 128 0 -2178313 0 0 -2178319 128 0 -2179180 0 0 -2179188 128 0 -2179315 0 0 -2179351 128 0 -2179476 0 0 -2179523 128 0 -2179642 0 0 -2179688 128 0 -2179810 0 0 -2179872 128 0 -2179978 0 0 -2180036 128 0 -2180144 0 0 -2180182 128 0 -2180882 0 0 -2180915 128 0 -2181044 0 0 -2181173 128 0 -2181203 0 0 -2181292 128 0 -2181428 0 0 -2181534 128 0 -2181591 0 0 -2181727 128 0 -2181782 0 0 -2182366 128 0 -2182374 0 0 -2184109 128 0 -2184245 0 0 -2184296 128 0 -2184396 0 0 -2184529 128 0 -2188631 0 0 -2190187 128 0 -2191079 0 0 -2191268 128 0 -2192641 0 0 -2192662 128 0 -2193070 0 0 -2193103 128 0 -2193223 0 0 -2193290 128 0 -2193362 0 0 -2193437 128 0 -2193510 0 0 -2193613 128 0 -2193703 0 0 -2202716 totRewards = 9 -2202716 64 8 -2202773 0 8 -2202836 64 8 -2202916 64 0 -2204488 0 0 -2204502 64 0 -2204642 0 0 -2204664 64 0 -2204811 0 0 -2204825 64 0 -2204970 0 0 -2204987 64 0 -2205126 0 0 -2205156 64 0 -2205282 0 0 -2205322 64 0 -2205445 0 0 -2205473 64 0 -2205730 0 0 -2205744 64 0 -2205890 0 0 -2205893 64 0 -2206940 0 0 -2206946 64 0 -2207096 0 0 -2207119 64 0 -2207266 0 0 -2207280 64 0 -2207972 0 0 -2207997 64 0 -2208143 0 0 -2208171 64 0 -2209358 0 0 -2209415 64 0 -2209513 0 0 -2216514 64 0 -2216790 0 0 -2216816 64 0 -2216945 0 0 -2216964 64 0 -2217093 0 0 -2217122 64 0 -2217254 0 0 -2217269 64 0 -2217569 0 0 -2217585 64 0 -2217733 0 0 -2217752 64 0 -2218051 0 0 -2222344 totRewards = 10 -2222344 128 16 -2222461 0 16 -2222544 0 0 -2222557 128 0 -2222585 0 0 -2222649 128 0 -2222663 0 0 -2222948 128 0 -2223215 0 0 -2223240 128 0 -2223844 0 0 -2223856 128 0 -2223972 0 0 -2223978 128 0 -2224099 0 0 -2224123 128 0 -2224239 0 0 -2224270 128 0 -2224377 0 0 -2224408 128 0 -2224526 0 0 -2224571 128 0 -2224679 0 0 -2224728 128 0 -2224835 0 0 -2224896 128 0 -2225005 0 0 -2225061 128 0 -2225173 0 0 -2225232 128 0 -2225342 0 0 -2225399 128 0 -2225511 0 0 -2225547 128 0 -2225798 0 0 -2225808 128 0 -2226268 0 0 -2226295 128 0 -2226441 0 0 -2226471 128 0 -2226612 0 0 -2226663 128 0 -2226797 0 0 -2226836 128 0 -2226974 0 0 -2227280 128 0 -2227394 0 0 -2227522 128 0 -2227572 0 0 -2240414 128 0 -2240991 0 0 -2241009 128 0 -2241417 0 0 -2241455 128 0 -2241562 0 0 -2241608 128 0 -2241717 0 0 -2241773 128 0 -2241885 0 0 -2241935 128 0 -2242056 0 0 -2242116 128 0 -2242216 0 0 -2242288 128 0 -2242395 0 0 -2242461 128 0 -2242582 0 0 -2242633 128 0 -2242764 0 0 -2242816 128 0 -2242923 0 0 -2243013 128 0 -2243120 0 0 -2243260 128 0 -2243270 0 0 -2245717 128 0 -2247529 0 0 -2247664 128 0 -2247755 0 0 -2254386 totRewards = 11 -2254386 64 8 -2254586 64 0 -2254782 0 0 -2254804 64 0 -2256275 0 0 -2256295 64 0 -2256427 0 0 -2256456 64 0 -2256588 0 0 -2256617 64 0 -2256923 0 0 -2256953 64 0 -2257081 0 0 -2257117 64 0 -2257241 0 0 -2257280 64 0 -2257399 0 0 -2257441 64 0 -2257567 0 0 -2257588 64 0 -2258047 0 0 -2258051 64 0 -2258899 0 0 -2258921 64 0 -2259056 0 0 -2259097 64 0 -2259215 0 0 -2259255 64 0 -2259372 0 0 -2259405 64 0 -2260634 0 0 -2260676 64 0 -2261234 0 0 -2261300 64 0 -2261404 0 0 -2261441 64 0 -2261625 0 0 -2261715 64 0 -2261815 0 0 -2261834 64 0 -2261977 0 0 -2262025 64 0 -2262133 0 0 -2277660 totRewards = 12 -2277660 128 16 -2277739 0 16 -2277860 0 0 -2277981 128 0 -2278327 0 0 -2278333 128 0 -2278895 0 0 -2278925 128 0 -2279032 0 0 -2279044 128 0 -2279302 0 0 -2279309 128 0 -2279439 0 0 -2279455 128 0 -2279735 0 0 -2279763 128 0 -2279878 0 0 -2279911 128 0 -2280032 0 0 -2280084 128 0 -2280202 0 0 -2280254 128 0 -2280364 0 0 -2280421 128 0 -2280526 0 0 -2280579 128 0 -2280686 0 0 -2280736 128 0 -2280847 0 0 -2280883 128 0 -2281609 0 0 -2281646 128 0 -2281774 0 0 -2281872 128 0 -2281935 0 0 -2282007 128 0 -2282103 0 0 -2282213 128 0 -2282280 0 0 -2282420 128 0 -2282494 0 0 -2284086 128 0 -2285130 0 0 -2285212 128 0 -2286235 0 0 -2286289 128 0 -2287135 0 0 -2287186 128 0 -2287289 0 0 -2291999 totRewards = 13 -2291999 64 8 -2292199 64 0 -2293824 0 0 -2293846 64 0 -2293982 0 0 -2294001 64 0 -2294138 0 0 -2294169 64 0 -2294293 0 0 -2294332 64 0 -2294454 0 0 -2294482 64 0 -2294791 0 0 -2294803 64 0 -2295457 0 0 -2295504 64 0 -2295973 0 0 -2296018 64 0 -2296154 0 0 -2296187 64 0 -2296796 0 0 -2296819 64 0 -2297909 0 0 -2297970 64 0 -2298237 0 0 -2298249 64 0 -2298570 0 0 -2298612 64 0 -2298728 0 0 -2298774 64 0 -2298883 0 0 -2298938 64 0 -2299041 0 0 -2307832 totRewards = 14 -2307832 128 16 -2308000 0 16 -2308028 128 16 -2308032 128 0 -2309019 0 0 -2309027 128 0 -2309306 0 0 -2309313 128 0 -2309437 0 0 -2309473 128 0 -2309593 0 0 -2309630 128 0 -2309750 0 0 -2309782 128 0 -2309900 0 0 -2309946 128 0 -2310069 0 0 -2310100 128 0 -2310224 0 0 -2310266 128 0 -2310382 0 0 -2310441 128 0 -2310558 0 0 -2310611 128 0 -2310718 0 0 -2310772 128 0 -2310877 0 0 -2310912 128 0 -2311035 0 0 -2311066 128 0 -2311185 0 0 -2311220 128 0 -2311336 0 0 -2311371 128 0 -2311666 0 0 -2311731 128 0 -2311816 0 0 -2311986 128 0 -2312015 0 0 -2313817 128 0 -2313887 0 0 -2313926 128 0 -2314125 0 0 -2314202 128 0 -2314630 0 0 -2314756 128 0 -2317830 0 0 -2317846 128 0 -2317980 0 0 -2318017 128 0 -2318121 0 0 -2318447 128 0 -2318468 0 0 -2318575 128 0 -2318643 0 0 -2321337 128 0 -2322451 0 0 -2322689 128 0 -2327632 0 0 -2327645 128 0 -2327935 0 0 -2327967 128 0 -2328085 0 0 -2328120 128 0 -2328244 0 0 -2328283 128 0 -2328404 0 0 -2328457 128 0 -2328561 0 0 -2328627 128 0 -2328720 0 0 -2328866 128 0 -2328892 0 0 -2328961 128 0 -2329075 0 0 -2329131 128 0 -2329240 0 0 -2329331 128 0 -2329412 0 0 -2329583 128 0 -2329768 0 0 -2331261 128 0 -2333920 0 0 -2337449 totRewards = 15 -2337449 64 8 -2337649 64 0 -2338511 0 0 -2338525 64 0 -2339700 0 0 -2339726 64 0 -2339869 0 0 -2339884 64 0 -2340021 0 0 -2340049 64 0 -2340177 0 0 -2340221 64 0 -2340350 0 0 -2340357 64 0 -2340814 0 0 -2340842 64 0 -2341675 0 0 -2341689 64 0 -2341838 0 0 -2341866 64 0 -2341992 0 0 -2342046 64 0 -2342161 0 0 -2342239 64 0 -2342326 0 0 -2342402 64 0 -2342683 0 0 -2342700 64 0 -2342845 0 0 -2342872 64 0 -2343006 0 0 -2343072 64 0 -2343156 0 0 -2346147 totRewards = 16 -2346147 128 16 -2346164 0 16 -2346272 128 16 -2346335 0 16 -2346347 0 0 -2346589 128 0 -2346602 0 0 -2346660 128 0 -2346684 0 0 -2346947 128 0 -2347329 0 0 -2347349 128 0 -2348105 0 0 -2348110 128 0 -2348537 0 0 -2348558 128 0 -2348682 0 0 -2348728 128 0 -2348835 0 0 -2348889 128 0 -2349004 0 0 -2349052 128 0 -2349166 0 0 -2349215 128 0 -2349330 0 0 -2349374 128 0 -2349484 0 0 -2349526 128 0 -2350244 0 0 -2350261 128 0 -2350407 0 0 -2350441 128 0 -2350568 0 0 -2350595 128 0 -2350771 0 0 -2350858 128 0 -2350914 0 0 -2351075 128 0 -2351151 0 0 -2351309 128 0 -2351326 0 0 -2351740 128 0 -2351753 0 0 -2351886 128 0 -2351896 0 0 -2352011 128 0 -2352104 0 0 -2352187 128 0 -2352214 0 0 -2352301 128 0 -2352559 0 0 -2352772 128 0 -2353146 0 0 -2353183 128 0 -2353383 0 0 -2353426 128 0 -2355263 0 0 -2359358 totRewards = 17 -2359358 64 8 -2359558 64 0 -2360088 0 0 -2360101 64 0 -2361553 0 0 -2361578 64 0 -2361883 0 0 -2361907 64 0 -2362039 0 0 -2362075 64 0 -2362327 0 0 -2362335 64 0 -2364953 0 0 -2364983 64 0 -2365102 0 0 -2365153 64 0 -2365267 0 0 -2365324 64 0 -2365414 0 0 -2368975 totRewards = 18 -2368975 128 16 -2369175 128 0 -2369303 0 0 -2369335 128 0 -2369692 0 0 -2369711 128 0 -2369813 0 0 -2369864 128 0 -2370239 0 0 -2370266 128 0 -2370543 0 0 -2370563 128 0 -2370698 0 0 -2370728 128 0 -2370846 0 0 -2370899 128 0 -2371028 0 0 -2371066 128 0 -2371186 0 0 -2371233 128 0 -2371348 0 0 -2371399 128 0 -2371524 0 0 -2371569 128 0 -2371690 0 0 -2371747 128 0 -2371862 0 0 -2371919 128 0 -2372027 0 0 -2372070 128 0 -2372173 0 0 -2372219 128 0 -2372338 0 0 -2375851 128 0 -2376084 0 0 -2376257 128 0 -2376944 0 0 -2377077 128 0 -2378183 0 0 -2381281 totRewards = 19 -2381281 64 8 -2381481 64 0 -2382052 0 0 -2382073 64 0 -2383036 0 0 -2383047 64 0 -2383182 0 0 -2383206 64 0 -2383520 0 0 -2383532 64 0 -2383681 0 0 -2383710 64 0 -2383859 0 0 -2383866 64 0 -2384010 0 0 -2384039 64 0 -2384184 0 0 -2384206 64 0 -2384339 0 0 -2384374 64 0 -2385999 0 0 -2386006 64 0 -2386173 0 0 -2386185 64 0 -2386707 0 0 -2386743 64 0 -2386868 0 0 -2386931 64 0 -2387020 0 0 -2390293 totRewards = 20 -2390293 128 16 -2390431 0 16 -2390474 128 16 -2390493 128 0 -2390625 0 0 -2390686 128 0 -2390781 0 0 -2390831 128 0 -2391031 0 0 -2391064 128 0 -2391157 0 0 -2391189 128 0 -2391831 0 0 -2391839 128 0 -2392429 0 0 -2392447 128 0 -2392582 0 0 -2392621 128 0 -2392746 0 0 -2392786 128 0 -2392920 0 0 -2392951 128 0 -2393082 0 0 -2393120 128 0 -2393249 0 0 -2393295 128 0 -2393428 0 0 -2393461 128 0 -2393626 0 0 -2393678 128 0 -2393703 0 0 -2393722 128 0 -2393784 0 0 -2393850 128 0 -2393969 0 0 -2394022 128 0 -2394154 0 0 -2394254 128 0 -2394329 0 0 -2394379 128 0 -2394421 0 0 -2394454 128 0 -2394485 0 0 -2394621 128 0 -2394669 0 0 -2395021 128 0 -2395050 0 0 -2395157 128 0 -2395192 0 0 -2395962 128 0 -2395976 0 0 -2399690 totRewards = 21 -2399690 64 8 -2399739 0 8 -2399783 64 8 -2399889 64 0 -2400032 0 0 -2400055 64 0 -2401665 0 0 -2401674 64 0 -2401820 0 0 -2401845 64 0 -2401974 0 0 -2402003 64 0 -2402129 0 0 -2402156 64 0 -2402593 0 0 -2402609 64 0 -2402754 0 0 -2402766 64 0 -2403575 0 0 -2403613 64 0 -2403763 0 0 -2403774 64 0 -2404087 0 0 -2404120 64 0 -2404268 0 0 -2404282 64 0 -2404424 0 0 -2404457 64 0 -2404593 0 0 -2404624 64 0 -2404761 0 0 -2404786 64 0 -2405621 0 0 -2405656 64 0 -2405801 0 0 -2405835 64 0 -2405983 0 0 -2406018 64 0 -2406128 0 0 -2408919 totRewards = 22 -2408918 128 16 -2409089 0 16 -2409099 128 16 -2409118 128 0 -2409259 0 0 -2409282 128 0 -2409881 0 0 -2409914 128 0 -2410332 0 0 -2410359 128 0 -2410491 0 0 -2410499 128 0 -2410625 0 0 -2410640 128 0 -2410777 0 0 -2410806 128 0 -2410954 0 0 -2410964 128 0 -2411111 0 0 -2411139 128 0 -2411271 0 0 -2411311 128 0 -2411444 0 0 -2411478 128 0 -2411620 0 0 -2411645 128 0 -2411779 0 0 -2411820 128 0 -2411949 0 0 -2411991 128 0 -2412110 0 0 -2412152 128 0 -2412297 0 0 -2412381 128 0 -2412463 0 0 -2412586 128 0 -2412637 0 0 -2417606 totRewards = 23 -2417606 64 8 -2417806 64 0 -2417988 0 0 -2418017 64 0 -2419385 0 0 -2419403 64 0 -2419710 0 0 -2419728 64 0 -2419869 0 0 -2419900 64 0 -2420197 0 0 -2420230 64 0 -2420360 0 0 -2420383 64 0 -2420813 0 0 -2420840 64 0 -2420978 0 0 -2421000 64 0 -2421625 0 0 -2421678 64 0 -2421781 0 0 -2421836 64 0 -2421936 0 0 -2424845 totRewards = 24 -2424845 128 16 -2424878 0 16 -2424957 128 16 -2425001 0 16 -2425029 128 16 -2425045 128 0 -2425100 0 0 -2425132 128 0 -2425255 0 0 -2425341 128 0 -2425404 0 0 -2425413 128 0 -2425655 0 0 -2425694 128 0 -2429976 0 0 -2430004 128 0 -2430156 0 0 -2430196 128 0 -2430336 0 0 -2430380 128 0 -2430522 0 0 -2430571 128 0 -2430718 0 0 -2430748 128 0 -2430894 0 0 -2430920 128 0 -2431078 0 0 -2431125 128 0 -2431275 0 0 -2431329 128 0 -2431675 0 0 -2431820 128 0 -2431897 0 0 -2432493 128 0 -2432637 0 0 -2432661 128 0 -2432804 0 0 -2432861 128 0 -2432994 0 0 -2433025 128 0 -2433287 0 0 -2433293 128 0 -2433298 0 0 -2433302 128 0 -2433608 0 0 -2433619 128 0 -2433651 0 0 -2433688 128 0 -2433712 0 0 -2433722 128 0 -2433771 0 0 -2433875 128 0 -2434339 0 0 -2434379 128 0 -2434521 0 0 -2434566 128 0 -2435276 0 0 -2435311 128 0 -2435450 0 0 -2435518 128 0 -2435619 0 0 -2435702 128 0 -2435821 0 0 -2435901 128 0 -2436009 0 0 -2436087 128 0 -2436177 0 0 -2436291 128 0 -2436323 0 0 -2436357 128 0 -2436377 0 0 -2443046 128 0 -2443134 0 0 -2443341 128 0 -2443453 0 0 -2443671 128 0 -2443803 0 0 -2443889 128 0 -2443921 0 0 -2443970 128 0 -2444102 0 0 -2447042 totRewards = 25 -2447042 64 8 -2447242 64 0 -2447765 0 0 -2447772 64 0 -2447880 0 0 -2447886 64 0 -2449309 0 0 -2449318 64 0 -2449464 0 0 -2449481 64 0 -2449621 0 0 -2449639 64 0 -2449783 0 0 -2449802 64 0 -2449934 0 0 -2449973 64 0 -2450097 0 0 -2450126 64 0 -2450260 0 0 -2450285 64 0 -2450402 0 0 -2455364 totRewards = 26 -2455364 128 16 -2455546 0 16 -2455564 0 0 -2455657 128 0 -2455691 0 0 -2455743 128 0 -2455937 0 0 -2456018 128 0 -2456092 0 0 -2456103 128 0 -2456163 0 0 -2456212 128 0 -2456319 0 0 -2456362 128 0 -2457252 0 0 -2457265 128 0 -2457695 0 0 -2457717 128 0 -2457847 0 0 -2457870 128 0 -2458176 0 0 -2458211 128 0 -2458339 0 0 -2458376 128 0 -2458501 0 0 -2458536 128 0 -2458658 0 0 -2458698 128 0 -2458804 0 0 -2458851 128 0 -2458970 0 0 -2458984 128 0 -2459119 0 0 -2459147 128 0 -2459250 0 0 -2463620 totRewards = 27 -2463620 64 8 -2463820 64 0 -2465463 0 0 -2465471 64 0 -2465619 0 0 -2465626 64 0 -2465935 0 0 -2465947 64 0 -2466092 0 0 -2466110 64 0 -2466253 0 0 -2466280 64 0 -2466410 0 0 -2466447 64 0 -2466568 0 0 -2466603 64 0 -2466732 0 0 -2466752 64 0 -2467027 0 0 -2469814 totRewards = 28 -2469814 128 16 -2469994 0 16 -2470014 0 0 -2470051 128 0 -2470113 0 0 -2470131 128 0 -2470369 0 0 -2470428 128 0 -2470615 0 0 -2470659 128 0 -2470750 0 0 -2470810 128 0 -2471182 0 0 -2471206 128 0 -2471609 0 0 -2471636 128 0 -2471763 0 0 -2471806 128 0 -2471934 0 0 -2471960 128 0 -2472090 0 0 -2472133 128 0 -2472245 0 0 -2472295 128 0 -2472412 0 0 -2472452 128 0 -2472597 0 0 -2472634 128 0 -2472746 0 0 -2472805 128 0 -2472913 0 0 -2472952 128 0 -2473352 0 0 -2473598 128 0 -2476006 0 0 -2476133 128 0 -2479487 0 0 -2479687 128 0 -2480044 0 0 -2482815 totRewards = 29 -2482815 64 8 -2483015 64 0 -2485179 0 0 -2485197 64 0 -2485339 0 0 -2485359 64 0 -2485487 0 0 -2485527 64 0 -2485658 0 0 -2485672 64 0 -2485968 0 0 -2485982 64 0 -2486102 0 0 -2489155 totRewards = 30 -2489155 128 16 -2489313 0 16 -2489355 0 0 -2489369 128 0 -2489697 0 0 -2489732 128 0 -2489944 0 0 -2489982 128 0 -2490071 0 0 -2490129 128 0 -2490358 0 0 -2490381 128 0 -2490490 0 0 -2490527 128 0 -2490938 0 0 -2490973 128 0 -2491097 0 0 -2491113 128 0 -2491255 0 0 -2491270 128 0 -2491405 0 0 -2491435 128 0 -2491565 0 0 -2491605 128 0 -2491743 0 0 -2491776 128 0 -2491897 0 0 -2491946 128 0 -2492059 0 0 -2492109 128 0 -2492225 0 0 -2492263 128 0 -2492382 0 0 -2492423 128 0 -2492544 0 0 -2492573 128 0 -2492723 0 0 -2492742 128 0 -2492881 0 0 -2492917 128 0 -2493039 0 0 -2493086 128 0 -2493194 0 0 -2493241 128 0 -2493365 0 0 -2493381 128 0 -2493510 0 0 -2493572 128 0 -2493589 0 0 -2493676 128 0 -2493876 0 0 -2494191 128 0 -2494750 0 0 -2494845 128 0 -2495454 0 0 -2499420 totRewards = 31 -2499419 64 8 -2499619 64 0 -2502333 0 0 -2502350 64 0 -2502492 0 0 -2502502 64 0 -2503572 0 0 -2503596 64 0 -2503742 0 0 -2503751 64 0 -2504397 0 0 -2504419 64 0 -2504560 0 0 -2504572 64 0 -2505051 0 0 -2505069 64 0 -2505379 0 0 -2505412 64 0 -2505557 0 0 -2505572 64 0 -2505715 0 0 -2505767 64 0 -2505847 0 0 -2508735 totRewards = 32 -2508735 128 16 -2508885 0 16 -2508935 0 0 -2508994 128 0 -2509065 0 0 -2509107 128 0 -2509335 0 0 -2509344 128 0 -2509483 0 0 -2509494 128 0 -2509735 0 0 -2509758 128 0 -2509877 0 0 -2509893 128 0 -2510149 0 0 -2510177 128 0 -2510297 0 0 -2510320 128 0 -2510597 0 0 -2510620 128 0 -2510757 0 0 -2510780 128 0 -2511073 0 0 -2511100 128 0 -2511234 0 0 -2511266 128 0 -2511410 0 0 -2511438 128 0 -2511567 0 0 -2511607 128 0 -2511716 0 0 -2511763 128 0 -2511868 0 0 -2511924 128 0 -2512020 0 0 -2515171 totRewards = 33 -2515171 64 8 -2515371 64 0 -2515871 0 0 -2515882 64 0 -2517692 0 0 -2517721 64 0 -2517853 0 0 -2517891 64 0 -2518013 0 0 -2518044 64 0 -2518481 0 0 -2518520 64 0 -2518612 0 0 -2521180 totRewards = 34 -2521180 128 16 -2521354 0 16 -2521379 128 16 -2521380 128 0 -2521569 0 0 -2521590 128 0 -2521692 0 0 -2521711 128 0 -2521925 0 0 -2521978 128 0 -2522070 0 0 -2522108 128 0 -2522490 0 0 -2522514 128 0 -2522937 0 0 -2522956 128 0 -2523086 0 0 -2523120 128 0 -2523252 0 0 -2523270 128 0 -2523399 0 0 -2523434 128 0 -2523557 0 0 -2523601 128 0 -2523729 0 0 -2523767 128 0 -2523896 0 0 -2523942 128 0 -2524058 0 0 -2524104 128 0 -2524211 0 0 -2524253 128 0 -2524372 0 0 -2524387 128 0 -2524514 0 0 -2527384 totRewards = 35 -2527384 64 8 -2527584 64 0 -2529745 0 0 -2529773 64 0 -2529906 0 0 -2529937 64 0 -2530226 0 0 -2530248 64 0 -2530392 0 0 -2530412 64 0 -2530548 0 0 -2530575 64 0 -2530711 0 0 -2530730 64 0 -2530869 0 0 -2530900 64 0 -2531022 0 0 -2531075 64 0 -2531188 0 0 -2531252 64 0 -2531324 0 0 -2532712 64 0 -2532741 0 0 -2532965 64 0 -2533145 0 0 -2533200 64 0 -2533263 0 0 -2533333 64 0 -2533747 0 0 -2536465 totRewards = 36 -2536465 128 16 -2536665 128 0 -2536770 0 0 -2536790 128 0 -2537391 0 0 -2537424 128 0 -2537815 0 0 -2537843 128 0 -2538112 0 0 -2538119 128 0 -2538254 0 0 -2538292 128 0 -2538420 0 0 -2538455 128 0 -2538583 0 0 -2538622 128 0 -2538747 0 0 -2538789 128 0 -2538909 0 0 -2538941 128 0 -2539071 0 0 -2539112 128 0 -2539227 0 0 -2539272 128 0 -2539389 0 0 -2539435 128 0 -2539553 0 0 -2539599 128 0 -2539710 0 0 -2539756 128 0 -2539870 0 0 -2539919 128 0 -2540024 0 0 -2540097 128 0 -2540131 0 0 -2543061 totRewards = 37 -2543061 64 8 -2543261 64 0 -2543302 0 0 -2543321 64 0 -2545004 0 0 -2545027 64 0 -2545177 0 0 -2545189 64 0 -2545641 0 0 -2545675 64 0 -2545800 0 0 -2545841 64 0 -2546764 0 0 -2546771 64 0 -2546909 0 0 -2546973 64 0 -2547017 0 0 -2549893 totRewards = 38 -2549893 128 16 -2550093 128 0 -2550333 0 0 -2550345 128 0 -2550468 0 0 -2550476 128 0 -2550694 0 0 -2550702 128 0 -2550933 0 0 -2550951 128 0 -2551060 0 0 -2551108 128 0 -2551471 0 0 -2551497 128 0 -2551924 0 0 -2551952 128 0 -2552079 0 0 -2552100 128 0 -2552395 0 0 -2552426 128 0 -2552547 0 0 -2552592 128 0 -2552735 0 0 -2552764 128 0 -2552902 0 0 -2552946 128 0 -2553065 0 0 -2553112 128 0 -2553229 0 0 -2553275 128 0 -2553379 0 0 -2553437 128 0 -2553527 0 0 -2553607 128 0 -2553670 0 0 -2556846 totRewards = 39 -2556846 64 8 -2557046 64 0 -2557066 0 0 -2557079 64 0 -2559054 0 0 -2559065 64 0 -2559552 0 0 -2559572 64 0 -2559707 0 0 -2559758 64 0 -2559875 0 0 -2559923 64 0 -2560048 0 0 -2560089 64 0 -2560388 0 0 -2560454 64 0 -2560540 0 0 -2563235 totRewards = 40 -2563235 128 16 -2563435 128 0 -2564006 0 0 -2564041 128 0 -2564140 0 0 -2564180 128 0 -2564559 0 0 -2564586 128 0 -2565004 0 0 -2565043 128 0 -2565168 0 0 -2565191 128 0 -2565328 0 0 -2565350 128 0 -2565480 0 0 -2565520 128 0 -2565631 0 0 -2565663 128 0 -2565791 0 0 -2565824 128 0 -2565949 0 0 -2565991 128 0 -2566098 0 0 -2566143 128 0 -2566260 0 0 -2566298 128 0 -2566424 0 0 -2566467 128 0 -2566573 0 0 -2566618 128 0 -2566742 0 0 -2566763 128 0 -2566912 0 0 -2566946 128 0 -2567068 0 0 -2567114 128 0 -2567223 0 0 -2567281 128 0 -2567360 0 0 -2570298 totRewards = 41 -2570298 64 8 -2570498 64 0 -2572758 0 0 -2572780 64 0 -2573101 0 0 -2573145 64 0 -2573281 0 0 -2573322 64 0 -2574008 0 0 -2574032 64 0 -2574177 0 0 -2574208 64 0 -2574715 0 0 -2574748 64 0 -2574882 0 0 -2574902 64 0 -2575057 0 0 -2575077 64 0 -2575202 0 0 -2577813 totRewards = 42 -2577813 128 16 -2578013 128 0 -2578222 0 0 -2578344 128 0 -2578817 0 0 -2578850 128 0 -2579085 0 0 -2579101 128 0 -2579222 0 0 -2579250 128 0 -2579669 0 0 -2579699 128 0 -2579835 0 0 -2579850 128 0 -2579982 0 0 -2580007 128 0 -2580144 0 0 -2580176 128 0 -2580312 0 0 -2580346 128 0 -2580479 0 0 -2580507 128 0 -2580638 0 0 -2580678 128 0 -2580786 0 0 -2580831 128 0 -2580937 0 0 -2580984 128 0 -2581062 0 0 -2584210 totRewards = 43 -2584210 64 8 -2584410 64 0 -2586367 0 0 -2586382 64 0 -2586524 0 0 -2586547 64 0 -2586680 0 0 -2586702 64 0 -2586842 0 0 -2586864 64 0 -2587008 0 0 -2587033 64 0 -2587166 0 0 -2587199 64 0 -2587321 0 0 -2587360 64 0 -2587481 0 0 -2587525 64 0 -2587617 0 0 -2591303 totRewards = 44 -2591303 128 16 -2591503 128 0 -2592645 0 0 -2592656 128 0 -2592782 0 0 -2592800 128 0 -2592917 0 0 -2592937 128 0 -2593048 0 0 -2593077 128 0 -2593187 0 0 -2593217 128 0 -2593333 0 0 -2593366 128 0 -2593490 0 0 -2593535 128 0 -2593655 0 0 -2593700 128 0 -2593815 0 0 -2593856 128 0 -2593963 0 0 -2594007 128 0 -2594115 0 0 -2594146 128 0 -2594278 0 0 -2594284 128 0 -2594410 0 0 -2594449 128 0 -2594556 0 0 -2597675 totRewards = 45 -2597675 64 8 -2597875 64 0 -2597920 0 0 -2597969 64 0 -2598419 0 0 -2598448 64 0 -2599285 0 0 -2599293 64 0 -2599432 0 0 -2599457 64 0 -2599909 0 0 -2599936 64 0 -2600074 0 0 -2600097 64 0 -2600414 0 0 -2600433 64 0 -2600563 0 0 -2600596 64 0 -2600725 0 0 -2600772 64 0 -2600890 0 0 -2600949 64 0 -2601047 0 0 -2604007 totRewards = 46 -2604007 128 16 -2604138 0 16 -2604182 128 16 -2604207 128 0 -2604334 0 0 -2604358 128 0 -2604953 0 0 -2604986 128 0 -2605376 0 0 -2605394 128 0 -2605808 0 0 -2605835 128 0 -2605967 0 0 -2605985 128 0 -2606122 0 0 -2606135 128 0 -2606272 0 0 -2606300 128 0 -2606432 0 0 -2606461 128 0 -2606601 0 0 -2606640 128 0 -2606768 0 0 -2606807 128 0 -2606919 0 0 -2606963 128 0 -2607067 0 0 -2607118 128 0 -2607213 0 0 -2607303 128 0 -2607313 0 0 -2607779 128 0 -2607848 0 0 -2607904 128 0 -2610120 0 0 -2612954 totRewards = 47 -2612954 64 8 -2613154 64 0 -2613292 0 0 -2613317 64 0 -2615429 0 0 -2615446 64 0 -2615573 0 0 -2615611 64 0 -2615733 0 0 -2615771 64 0 -2615870 0 0 -2618571 totRewards = 48 -2618571 128 16 -2618771 128 0 -2618887 0 0 -2618900 128 0 -2619108 0 0 -2619120 128 0 -2619497 0 0 -2619543 128 0 -2619918 0 0 -2619954 128 0 -2620363 0 0 -2620391 128 0 -2620510 0 0 -2620544 128 0 -2620904 0 0 -2620928 128 0 -2621061 0 0 -2621089 128 0 -2621226 0 0 -2621255 128 0 -2621369 0 0 -2621404 128 0 -2621520 0 0 -2621552 128 0 -2621699 0 0 -2621709 128 0 -2621843 0 0 -2621884 128 0 -2622000 0 0 -2622047 128 0 -2622163 0 0 -2622220 128 0 -2622346 0 0 -2623071 128 0 -2623182 0 0 -2623626 128 0 -2623700 0 0 -2627843 totRewards = 49 -2627843 64 8 -2628043 64 0 -2628136 0 0 -2628145 64 0 -2630032 0 0 -2630043 64 0 -2630502 0 0 -2630528 64 0 -2630653 0 0 -2630694 64 0 -2630813 0 0 -2630851 64 0 -2630971 0 0 -2631015 64 0 -2631098 0 0 -2633877 totRewards = 50 -2633877 128 16 -2633918 0 16 -2634001 128 16 -2634077 128 0 -2634143 0 0 -2634220 128 0 -2634328 0 0 -2634355 128 0 -2634565 0 0 -2634606 128 0 -2634696 0 0 -2634763 128 0 -2634977 0 0 -2634997 128 0 -2635124 0 0 -2635139 128 0 -2635545 0 0 -2635565 128 0 -2635685 0 0 -2635726 128 0 -2635846 0 0 -2635872 128 0 -2635998 0 0 -2636033 128 0 -2636156 0 0 -2636196 128 0 -2636321 0 0 -2636362 128 0 -2636480 0 0 -2636521 128 0 -2636627 0 0 -2636678 128 0 -2636772 0 0 -2636829 128 0 -2636924 0 0 -2637003 128 0 -2637049 0 0 -2637178 128 0 -2637463 0 0 -2637651 128 0 -2637701 0 0 -2637769 128 0 -2639197 0 0 -2639288 128 0 -2639604 0 0 -2642308 totRewards = 51 -2642308 64 8 -2642508 64 0 -2642755 0 0 -2642780 64 0 -2642990 0 0 -2643012 64 0 -2644727 0 0 -2644744 64 0 -2645038 0 0 -2645057 64 0 -2645191 0 0 -2645218 64 0 -2645347 0 0 -2645388 64 0 -2645496 0 0 -2648343 totRewards = 52 -2648343 128 16 -2648532 0 16 -2648543 0 0 -2648588 128 0 -2648779 0 0 -2648825 128 0 -2648909 0 0 -2648954 128 0 -2649155 0 0 -2649191 128 0 -2649290 0 0 -2649329 128 0 -2649720 0 0 -2649730 128 0 -2650155 0 0 -2650182 128 0 -2650297 0 0 -2650337 128 0 -2650464 0 0 -2650490 128 0 -2650621 0 0 -2650664 128 0 -2650780 0 0 -2650827 128 0 -2650935 0 0 -2650972 128 0 -2651074 0 0 -2651120 128 0 -2651217 0 0 -2651289 128 0 -2651325 0 0 -2653923 totRewards = 53 -2653923 64 8 -2654123 64 0 -2654159 0 0 -2654164 64 0 -2656886 0 0 -2656923 64 0 -2657046 0 0 -2657096 64 0 -2657201 0 0 -2659902 totRewards = 54 -2659902 128 16 -2660074 0 16 -2660102 0 0 -2660120 128 0 -2660236 0 0 -2660248 128 0 -2660836 0 0 -2660882 128 0 -2661980 0 0 -2661989 128 0 -2662272 0 0 -2662301 128 0 -2662434 0 0 -2662461 128 0 -2662597 0 0 -2662628 128 0 -2662757 0 0 -2662797 128 0 -2662914 0 0 -2662953 128 0 -2663064 0 0 -2663102 128 0 -2663664 0 0 -2663762 128 0 -2663778 0 0 -2667190 128 0 -2667285 0 0 -2667322 128 0 -2667332 0 0 -2667348 128 0 -2667390 0 0 -2667467 128 0 -2667512 0 0 -2670338 totRewards = 55 -2670338 64 8 -2670537 0 8 -2670538 0 0 -2670554 64 0 -2673064 0 0 -2673094 64 0 -2673217 0 0 -2673252 64 0 -2673377 0 0 -2673410 64 0 -2673510 0 0 -2676470 totRewards = 56 -2676470 128 16 -2676605 0 16 -2676670 0 0 -2676690 128 0 -2676845 0 0 -2676875 128 0 -2676960 0 0 -2677004 128 0 -2677208 0 0 -2677249 128 0 -2677355 0 0 -2677401 128 0 -2677772 0 0 -2677798 128 0 -2678199 0 0 -2678229 128 0 -2678354 0 0 -2678386 128 0 -2678670 0 0 -2678702 128 0 -2678823 0 0 -2678865 128 0 -2678992 0 0 -2679026 128 0 -2679155 0 0 -2679195 128 0 -2679306 0 0 -2679354 128 0 -2679454 0 0 -2679516 128 0 -2679589 0 0 -2682766 totRewards = 57 -2682766 64 8 -2682966 64 0 -2683919 0 0 -2683933 64 0 -2684207 0 0 -2684224 64 0 -2685002 0 0 -2685015 64 0 -2685143 0 0 -2685175 64 0 -2685455 0 0 -2685474 64 0 -2685599 0 0 -2685657 64 0 -2685736 0 0 -2706877 totRewards = 58 -2706877 128 16 -2707077 128 0 -2707134 0 0 -2707214 128 0 -2707252 0 0 -2707327 128 0 -2707414 0 0 -2707461 128 0 -2707533 0 0 -2707581 128 0 -2707778 0 0 -2707811 128 0 -2707913 0 0 -2707937 128 0 -2708010 0 0 -2708044 128 0 -2708408 0 0 -2708433 128 0 -2708828 0 0 -2708854 128 0 -2708979 0 0 -2709006 128 0 -2709143 0 0 -2709156 128 0 -2709287 0 0 -2709320 128 0 -2709429 0 0 -2709472 128 0 -2709587 0 0 -2709610 128 0 -2709734 0 0 -2709760 128 0 -2709883 0 0 -2709894 128 0 -2710026 0 0 -2710035 128 0 -2710770 0 0 -2710801 128 0 -2710921 0 0 -2710971 128 0 -2711087 0 0 -2711140 128 0 -2711257 0 0 -2711311 128 0 -2711402 0 0 -2711473 128 0 -2711540 0 0 -2714595 totRewards = 59 -2714595 64 8 -2714780 0 8 -2714795 0 0 -2714827 64 0 -2716113 0 0 -2716122 64 0 -2716729 0 0 -2716755 64 0 -2717031 0 0 -2717070 64 0 -2718886 0 0 -2718918 64 0 -2719050 0 0 -2719131 64 0 -2719202 0 0 -2719520 64 0 -2719777 0 0 -2719810 64 0 -2719928 0 0 -2726538 totRewards = 60 -2726538 128 16 -2726738 128 0 -2726850 0 0 -2726888 128 0 -2727361 0 0 -2727372 128 0 -2727476 0 0 -2727496 128 0 -2727604 0 0 -2727635 128 0 -2727743 0 0 -2727763 128 0 -2727882 0 0 -2727908 128 0 -2728014 0 0 -2728049 128 0 -2728154 0 0 -2728191 128 0 -2728304 0 0 -2728339 128 0 -2728457 0 0 -2728493 128 0 -2728610 0 0 -2728654 128 0 -2728777 0 0 -2728828 128 0 -2728944 0 0 -2728988 128 0 -2729096 0 0 -2729146 128 0 -2729258 0 0 -2729311 128 0 -2729409 0 0 -2729448 128 0 -2729568 0 0 -2729585 128 0 -2729718 0 0 -2729757 128 0 -2729881 0 0 -2729920 128 0 -2730029 0 0 -2730079 128 0 -2730192 0 0 -2730243 128 0 -2730360 0 0 -2730364 128 0 -2730508 0 0 -2730526 128 0 -2730654 0 0 -2730683 128 0 -2730815 0 0 -2730851 128 0 -2730979 0 0 -2731018 128 0 -2731152 0 0 -2731200 128 0 -2731309 0 0 -2731371 128 0 -2731471 0 0 -2731551 128 0 -2731656 0 0 -2731757 128 0 -2731869 0 0 -2731971 128 0 -2732012 0 0 -2732183 128 0 -2732229 0 0 -2732309 128 0 -2732386 0 0 -2732469 128 0 -2732494 0 0 -2743355 128 0 -2744545 0 0 -2744578 128 0 -2744976 0 0 -2744989 128 0 -2745109 0 0 -2745726 128 0 -2746827 0 0 -2749691 totRewards = 61 -2749691 64 8 -2749731 0 8 -2749791 64 8 -2749891 64 0 -2749948 0 0 -2749972 64 0 -2750528 0 0 -2750550 64 0 -2752440 0 0 -2752448 64 0 -2752755 0 0 -2752771 64 0 -2752917 0 0 -2752939 64 0 -2753078 0 0 -2753101 64 0 -2753229 0 0 -2753256 64 0 -2753708 0 0 -2753718 64 0 -2753861 0 0 -2753899 64 0 -2754013 0 0 -2757104 totRewards = 62 -2757104 128 16 -2757235 0 16 -2757269 128 16 -2757304 128 0 -2757425 0 0 -2757489 128 0 -2757605 0 0 -2757630 128 0 -2757845 0 0 -2757882 128 0 -2757967 0 0 -2758017 128 0 -2758254 0 0 -2758267 128 0 -2758383 0 0 -2758411 128 0 -2758658 0 0 -2758674 128 0 -2758813 0 0 -2758831 128 0 -2758957 0 0 -2758982 128 0 -2759109 0 0 -2759141 128 0 -2759271 0 0 -2759299 128 0 -2759429 0 0 -2759475 128 0 -2759586 0 0 -2759625 128 0 -2759743 0 0 -2759777 128 0 -2759889 0 0 -2759921 128 0 -2760049 0 0 -2760067 128 0 -2760196 0 0 -2760236 128 0 -2760349 0 0 -2760394 128 0 -2760512 0 0 -2760556 128 0 -2760679 0 0 -2760744 128 0 -2760875 0 0 -2760895 128 0 -2760997 0 0 -2761064 128 0 -2761159 0 0 -2761405 128 0 -2761474 0 0 -2761947 128 0 -2761993 0 0 -2762069 128 0 -2762158 0 0 -2762237 128 0 -2762270 0 0 -2762301 128 0 -2762338 0 0 -2762413 128 0 -2762515 0 0 -2762593 128 0 -2762687 0 0 -2762825 128 0 -2762875 0 0 -2762963 128 0 -2762977 0 0 -2763006 128 0 -2763029 0 0 -2763599 128 0 -2763750 0 0 -2778762 128 0 -2779299 0 0 -2779310 128 0 -2779720 0 0 -2779753 128 0 -2779862 0 0 -2779894 128 0 -2780009 0 0 -2780092 128 0 -2780158 0 0 -2780234 128 0 -2780300 0 0 -2780360 128 0 -2780460 0 0 -2780551 128 0 -2780607 0 0 -2780789 128 0 -2780817 0 0 -2780931 128 0 -2780976 0 0 -2781104 128 0 -2781138 0 0 -2781321 128 0 -2781360 0 0 -2781483 128 0 -2781518 0 0 -2781884 128 0 -2781911 0 0 -2787595 totRewards = 63 -2787595 64 8 -2787795 64 0 -2787877 0 0 -2787916 64 0 -2787951 0 0 -2787971 64 0 -2790162 0 0 -2790167 64 0 -2790645 0 0 -2790670 64 0 -2791939 0 0 -2791975 64 0 -2792085 0 0 -2792148 64 0 -2792219 0 0 -2795469 totRewards = 64 -2795469 128 16 -2795576 0 16 -2795648 128 16 -2795669 128 0 -2795788 0 0 -2795851 128 0 -2795943 0 0 -2796014 128 0 -2796366 0 0 -2796401 128 0 -2796759 0 0 -2796781 128 0 -2797183 0 0 -2797208 128 0 -2797330 0 0 -2797363 128 0 -2797490 0 0 -2797512 128 0 -2797644 0 0 -2797673 128 0 -2797809 0 0 -2797850 128 0 -2797975 0 0 -2798014 128 0 -2798126 0 0 -2798163 128 0 -2798279 0 0 -2798323 128 0 -2798435 0 0 -2798481 128 0 -2798596 0 0 -2798654 128 0 -2798757 0 0 -2798823 128 0 -2798920 0 0 -2807348 totRewards = 65 -2807348 64 8 -2807548 64 0 -2808025 0 0 -2808028 64 0 -2810196 0 0 -2810226 64 0 -2810345 0 0 -2810392 64 0 -2810497 0 0 -2810569 64 0 -2810614 0 0 -2813558 totRewards = 66 -2813558 128 16 -2813758 128 0 -2813988 0 0 -2814012 128 0 -2814112 0 0 -2814179 128 0 -2815017 0 0 -2815036 128 0 -2815165 0 0 -2815173 128 0 -2815303 0 0 -2815311 128 0 -2815449 0 0 -2815465 128 0 -2815591 0 0 -2815617 128 0 -2815755 0 0 -2815768 128 0 -2815898 0 0 -2815928 128 0 -2816053 0 0 -2816098 128 0 -2816217 0 0 -2816253 128 0 -2816375 0 0 -2816390 128 0 -2816978 0 0 -2816985 128 0 -2817129 0 0 -2817155 128 0 -2817290 0 0 -2817312 128 0 -2817449 0 0 -2817473 128 0 -2817609 0 0 -2817652 128 0 -2817764 0 0 -2817804 128 0 -2817924 0 0 -2817966 128 0 -2818098 0 0 -2818153 128 0 -2818262 0 0 -2818318 128 0 -2818429 0 0 -2818489 128 0 -2818598 0 0 -2818666 128 0 -2818768 0 0 -2818819 128 0 -2818930 0 0 -2818995 128 0 -2819118 0 0 -2819166 128 0 -2819284 0 0 -2819343 128 0 -2819453 0 0 -2819521 128 0 -2819551 0 0 -2819579 128 0 -2819597 0 0 -2830526 totRewards = 67 -2830526 64 8 -2830672 0 8 -2830726 0 0 -2830732 64 0 -2831181 0 0 -2831203 64 0 -2832711 0 0 -2832728 64 0 -2833188 0 0 -2833203 64 0 -2833355 0 0 -2833365 64 0 -2833681 0 0 -2833698 64 0 -2833843 0 0 -2834265 64 0 -2835014 0 0 -2835058 64 0 -2835167 0 0 -2835219 64 0 -2835279 0 0 -2837950 totRewards = 68 -2837950 128 16 -2838150 128 0 -2838178 0 0 -2838246 128 0 -2838261 0 0 -2838325 128 0 -2838532 0 0 -2838570 128 0 -2838778 0 0 -2838815 128 0 -2838915 0 0 -2838967 128 0 -2839344 0 0 -2839362 128 0 -2839799 0 0 -2839819 128 0 -2839944 0 0 -2839984 128 0 -2840106 0 0 -2840124 128 0 -2840264 0 0 -2840297 128 0 -2840416 0 0 -2840459 128 0 -2840584 0 0 -2840619 128 0 -2840740 0 0 -2840768 128 0 -2840903 0 0 -2840909 128 0 -2841496 0 0 -2841512 128 0 -2841651 0 0 -2841691 128 0 -2841802 0 0 -2846687 totRewards = 69 -2846687 64 8 -2846887 64 0 -2848800 0 0 -2848810 64 0 -2849435 0 0 -2849465 64 0 -2849584 0 0 -2849630 64 0 -2849756 0 0 -2849769 64 0 -2849895 0 0 -2849972 64 0 -2850025 0 0 -2853239 totRewards = 70 -2853239 128 16 -2853434 0 16 -2853439 0 0 -2853550 128 0 -2853586 0 0 -2853625 128 0 -2853850 0 0 -2853874 128 0 -2854227 0 0 -2854279 128 0 -2854655 0 0 -2854676 128 0 -2854949 0 0 -2854963 128 0 -2855101 0 0 -2855129 128 0 -2855248 0 0 -2855290 128 0 -2855421 0 0 -2855451 128 0 -2855580 0 0 -2855622 128 0 -2855736 0 0 -2855780 128 0 -2855894 0 0 -2855929 128 0 -2856064 0 0 -2856067 128 0 -2856202 0 0 -2856220 128 0 -2856358 0 0 -2856374 128 0 -2856674 0 0 -2856695 128 0 -2856817 0 0 -2856867 128 0 -2856972 0 0 -2860351 totRewards = 71 -2860351 64 8 -2860551 64 0 -2860594 0 0 -2860605 64 0 -2863128 0 0 -2863147 64 0 -2863681 0 0 -2863721 64 0 -2863856 0 0 -2863872 64 0 -2864884 0 0 -2865052 64 0 -2865726 0 0 -2865753 64 0 -2865907 0 0 -2865934 64 0 -2867130 0 0 -2867142 64 0 -2867841 0 0 -2867860 64 0 -2867996 0 0 -2873333 64 0 -2873589 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x139658897010768 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -4817847 0 0 -4817864 64 0 -4818025 0 0 -4818034 64 0 -4818369 0 0 -4818377 64 0 -4818526 0 0 -4818555 64 0 -4818673 0 0 -4818736 64 0 -4818831 0 0 -4819088 64 0 -4819182 0 0 -4819213 64 0 -4819739 0 0 -4819764 64 0 -4819903 0 0 -4819950 64 0 -4820061 0 0 -4820111 64 0 -4820420 0 0 -4820429 64 0 -4820510 0 0 -4828786 totRewards = 3 -4828786 128 16 -4828986 128 0 -4829102 0 0 -4829123 128 0 -4829163 0 0 -4829191 128 0 -4829454 0 0 -4829472 128 0 -4829583 0 0 -4829600 128 0 -4829709 0 0 -4829746 128 0 -4829840 0 0 -4829888 128 0 -4829990 0 0 -4830039 128 0 -4830140 0 0 -4830186 128 0 -4830278 0 0 -4830338 128 0 -4830443 0 0 -4830498 128 0 -4830615 0 0 -4830682 128 0 -4830774 0 0 -4830907 128 0 -4830929 0 0 -4831031 128 0 -4831112 0 0 -4831194 128 0 -4831301 0 0 -4831362 128 0 -4831469 0 0 -4831536 128 0 -4831642 0 0 -4831707 128 0 -4831814 0 0 -4831907 128 0 -4831930 0 0 -4831970 128 0 -4832014 0 0 -4832102 128 0 -4832216 0 0 -4832248 128 0 -4832391 0 0 -4832422 128 0 -4833030 0 0 -4833058 128 0 -4833227 0 0 -4833249 128 0 -4833394 0 0 -4833452 128 0 -4833557 0 0 -4833703 128 0 -4833758 0 0 -4833839 128 0 -4833954 0 0 -4834046 128 0 -4834077 0 0 -4834088 128 0 -4834147 0 0 -4834291 128 0 -4834346 0 0 -4834485 128 0 -4834534 0 0 -4834622 128 0 -4834638 0 0 -4834686 128 0 -4834721 0 0 -4834793 128 0 -4834906 0 0 -4834976 128 0 -4835056 0 0 -4852460 totRewards = 4 -4852460 64 8 -4852512 0 8 -4852521 64 8 -4852660 64 0 -4852675 0 0 -4852738 64 0 -4852959 0 0 -4852998 64 0 -4853080 0 0 -4853127 64 0 -4853229 0 0 -4853243 64 0 -4853356 0 0 -4853378 64 0 -4853487 0 0 -4853492 64 0 -4853610 0 0 -4853641 64 0 -4853755 0 0 -4853781 64 0 -4853899 0 0 -4853919 64 0 -4854034 0 0 -4854057 64 0 -4854186 0 0 -4854216 64 0 -4854338 0 0 -4854359 64 0 -4854502 0 0 -4854523 64 0 -4854658 0 0 -4854696 64 0 -4854849 0 0 -4854873 64 0 -4855013 0 0 -4855063 64 0 -4855209 0 0 -4855242 64 0 -4855396 0 0 -4855426 64 0 -4855575 0 0 -4855604 64 0 -4856208 0 0 -4856240 64 0 -4856392 0 0 -4856419 64 0 -4856580 0 0 -4856610 64 0 -4856759 0 0 -4856801 64 0 -4856954 0 0 -4857005 64 0 -4857152 0 0 -4857180 64 0 -4857889 0 0 -4857932 64 0 -4858068 0 0 -4858111 64 0 -4858420 0 0 -4858438 64 0 -4858585 0 0 -4866594 totRewards = 5 -4866594 128 16 -4866662 0 16 -4866681 128 16 -4866794 128 0 -4867290 0 0 -4867314 128 0 -4867550 0 0 -4867587 128 0 -4867683 0 0 -4867725 128 0 -4867812 0 0 -4867845 128 0 -4867957 0 0 -4867982 128 0 -4868100 0 0 -4868124 128 0 -4868232 0 0 -4868271 128 0 -4868372 0 0 -4868411 128 0 -4868516 0 0 -4868554 128 0 -4868673 0 0 -4868705 128 0 -4868821 0 0 -4868874 128 0 -4868991 0 0 -4869036 128 0 -4869154 0 0 -4869203 128 0 -4869318 0 0 -4869385 128 0 -4869503 0 0 -4869568 128 0 -4869673 0 0 -4869754 128 0 -4869863 0 0 -4869946 128 0 -4870043 0 0 -4870126 128 0 -4870241 0 0 -4870282 128 0 -4871043 0 0 -4871067 128 0 -4871200 0 0 -4871242 128 0 -4871377 0 0 -4871431 128 0 -4871575 0 0 -4871609 128 0 -4871755 0 0 -4871817 128 0 -4871920 0 0 -4872003 128 0 -4872024 0 0 -4872068 128 0 -4872107 0 0 -4872194 128 0 -4872273 0 0 -4876373 totRewards = 6 -4876373 64 8 -4876573 64 0 -4876675 0 0 -4876736 64 0 -4876839 0 0 -4876874 64 0 -4876984 0 0 -4876997 64 0 -4877117 0 0 -4877126 64 0 -4877250 0 0 -4877260 64 0 -4877517 0 0 -4877545 64 0 -4877666 0 0 -4877697 64 0 -4877817 0 0 -4877847 64 0 -4877980 0 0 -4878003 64 0 -4878145 0 0 -4878177 64 0 -4878328 0 0 -4878362 64 0 -4878523 0 0 -4878577 64 0 -4878731 0 0 -4878775 64 0 -4878934 0 0 -4878967 64 0 -4879125 0 0 -4879162 64 0 -4879300 0 0 -4879318 64 0 -4880030 0 0 -4880060 64 0 -4880215 0 0 -4880260 64 0 -4880399 0 0 -4880465 64 0 -4880596 0 0 -4880664 64 0 -4880751 0 0 -4880780 64 0 -4881140 0 0 -4881161 64 0 -4881317 0 0 -4881362 64 0 -4881499 0 0 -4881559 64 0 -4881695 0 0 -4881720 64 0 -4882244 0 0 -4882270 64 0 -4882413 0 0 -4882508 64 0 -4882546 0 0 -4896386 64 0 -4896645 0 0 -4896669 64 0 -4896794 0 0 -4896812 64 0 -4896947 0 0 -4896952 64 0 -4897084 0 0 -4897108 64 0 -4897231 0 0 -4897256 64 0 -4897387 0 0 -4897407 64 0 -4897547 0 0 -4897567 64 0 -4897717 0 0 -4897729 64 0 -4897865 0 0 -4897901 64 0 -4898027 0 0 -4898077 64 0 -4898188 0 0 -4898258 64 0 -4898327 0 0 -4901581 totRewards = 7 -4901581 128 16 -4901694 0 16 -4901717 128 16 -4901772 0 16 -4901781 0 0 -4901805 128 0 -4902063 0 0 -4902089 128 0 -4902305 0 0 -4902340 128 0 -4902427 0 0 -4902479 128 0 -4902847 0 0 -4902863 128 0 -4903270 0 0 -4903289 128 0 -4903411 0 0 -4903434 128 0 -4903569 0 0 -4903584 128 0 -4903714 0 0 -4903744 128 0 -4903871 0 0 -4903917 128 0 -4904046 0 0 -4904082 128 0 -4904216 0 0 -4904258 128 0 -4904380 0 0 -4904424 128 0 -4904567 0 0 -4904609 128 0 -4904742 0 0 -4904781 128 0 -4904916 0 0 -4904961 128 0 -4905081 0 0 -4905124 128 0 -4905253 0 0 -4905287 128 0 -4905593 0 0 -4905609 128 0 -4905739 0 0 -4905792 128 0 -4905931 0 0 -4906048 128 0 -4906099 0 0 -4906215 128 0 -4906274 0 0 -4906347 128 0 -4906454 0 0 -4906533 128 0 -4906542 0 0 -4906585 128 0 -4906644 0 0 -4906773 128 0 -4906818 0 0 -4907177 128 0 -4907200 0 0 -4907941 128 0 -4907959 0 0 -4908081 128 0 -4908131 0 0 -4908213 128 0 -4908317 0 0 -4908381 128 0 -4908418 0 0 -4908446 128 0 -4908485 0 0 -4911724 totRewards = 8 -4911724 64 8 -4911924 64 0 -4911941 0 0 -4911962 64 0 -4912433 0 0 -4912458 64 0 -4912573 0 0 -4912601 64 0 -4912851 0 0 -4912869 64 0 -4912989 0 0 -4913014 64 0 -4913134 0 0 -4913160 64 0 -4913459 0 0 -4913478 64 0 -4913610 0 0 -4913641 64 0 -4913784 0 0 -4913808 64 0 -4913964 0 0 -4913989 64 0 -4914118 0 0 -4914155 64 0 -4914296 0 0 -4914326 64 0 -4914463 0 0 -4914498 64 0 -4914627 0 0 -4914667 64 0 -4914793 0 0 -4914823 64 0 -4914974 0 0 -4914985 64 0 -4915471 0 0 -4915498 64 0 -4915646 0 0 -4915671 64 0 -4916187 0 0 -4916204 64 0 -4916350 0 0 -4916378 64 0 -4916503 0 0 -4916561 64 0 -4916674 0 0 -4920485 totRewards = 9 -4920485 128 16 -4920685 128 0 -4920977 0 0 -4921018 128 0 -4921139 0 0 -4921178 128 0 -4921274 0 0 -4921292 128 0 -4921397 0 0 -4921428 128 0 -4921547 0 0 -4921562 128 0 -4921701 0 0 -4921720 128 0 -4921826 0 0 -4921858 128 0 -4921972 0 0 -4921995 128 0 -4922277 0 0 -4922310 128 0 -4922441 0 0 -4922467 128 0 -4922606 0 0 -4922629 128 0 -4922757 0 0 -4922800 128 0 -4922934 0 0 -4922979 128 0 -4923108 0 0 -4923158 128 0 -4923280 0 0 -4923331 128 0 -4923450 0 0 -4923491 128 0 -4924091 0 0 -4924123 128 0 -4924262 0 0 -4924287 128 0 -4924429 0 0 -4924468 128 0 -4924610 0 0 -4924639 128 0 -4924788 0 0 -4924827 128 0 -4924973 0 0 -4925030 128 0 -4925160 0 0 -4925221 128 0 -4925327 0 0 -4925937 128 0 -4925950 0 0 -4928799 totRewards = 10 -4928799 64 8 -4928969 0 8 -4928987 64 8 -4928999 64 0 -4929480 0 0 -4929512 64 0 -4929639 0 0 -4929655 64 0 -4929782 0 0 -4929805 64 0 -4929915 0 0 -4929932 64 0 -4930065 0 0 -4930084 64 0 -4930210 0 0 -4930220 64 0 -4930525 0 0 -4930544 64 0 -4930854 0 0 -4930878 64 0 -4931024 0 0 -4931054 64 0 -4931200 0 0 -4931231 64 0 -4931565 0 0 -4931603 64 0 -4931764 0 0 -4931795 64 0 -4931957 0 0 -4931989 64 0 -4932364 0 0 -4932410 64 0 -4932560 0 0 -4947797 64 0 -4947959 0 0 -4948025 64 0 -4948717 0 0 -4948727 64 0 -4949039 0 0 -4949046 64 0 -4949176 0 0 -4949215 64 0 -4949340 0 0 -4949386 64 0 -4949498 0 0 -4967056 totRewards = 11 -4967056 128 16 -4967231 0 16 -4967256 0 0 -4967312 128 0 -4967362 0 0 -4967376 128 0 -4967612 0 0 -4967650 128 0 -4967858 0 0 -4967882 128 0 -4967971 0 0 -4968022 128 0 -4968377 0 0 -4968394 128 0 -4968518 0 0 -4968538 128 0 -4968794 0 0 -4968807 128 0 -4968951 0 0 -4968957 128 0 -4969082 0 0 -4969104 128 0 -4969226 0 0 -4969252 128 0 -4969378 0 0 -4969407 128 0 -4969531 0 0 -4969563 128 0 -4969697 0 0 -4969720 128 0 -4969861 0 0 -4969900 128 0 -4970025 0 0 -4970067 128 0 -4970192 0 0 -4970228 128 0 -4970347 0 0 -4970388 128 0 -4970503 0 0 -4970541 128 0 -4970971 0 0 -4971005 128 0 -4971135 0 0 -4971168 128 0 -4971305 0 0 -4971337 128 0 -4971468 0 0 -4971506 128 0 -4971636 0 0 -4971677 128 0 -4971809 0 0 -4971862 128 0 -4971983 0 0 -4972038 128 0 -4972151 0 0 -4972225 128 0 -4972334 0 0 -4972421 128 0 -4972490 0 0 -4975667 totRewards = 12 -4975667 64 8 -4975815 0 8 -4975853 64 8 -4975867 64 0 -4976483 0 0 -4976489 64 0 -4976881 0 0 -4976893 64 0 -4977017 0 0 -4977029 64 0 -4977172 0 0 -4977191 64 0 -4977318 0 0 -4977342 64 0 -4977468 0 0 -4977488 64 0 -4977628 0 0 -4977644 64 0 -4977793 0 0 -4977817 64 0 -4977959 0 0 -4977990 64 0 -4978129 0 0 -4978148 64 0 -4978307 0 0 -4978314 64 0 -4978461 0 0 -4978489 64 0 -4978625 0 0 -4978665 64 0 -4978796 0 0 -4978818 64 0 -4979118 0 0 -4979125 64 0 -4979622 0 0 -4979635 64 0 -4979958 0 0 -4979985 64 0 -4980103 0 0 -4980159 64 0 -4980260 0 0 -4983502 totRewards = 13 -4983502 128 16 -4983702 128 0 -4983726 0 0 -4983779 128 0 -4983973 0 0 -4984037 128 0 -4984095 0 0 -4984118 128 0 -4984358 0 0 -4984393 128 0 -4984494 0 0 -4984560 128 0 -4984607 0 0 -4984634 128 0 -4984925 0 0 -4984932 128 0 -4985063 0 0 -4985072 128 0 -4985202 0 0 -4985216 128 0 -4985343 0 0 -4985374 128 0 -4985498 0 0 -4985536 128 0 -4985666 0 0 -4985703 128 0 -4985825 0 0 -4985871 128 0 -4985996 0 0 -4986049 128 0 -4986173 0 0 -4986216 128 0 -4986345 0 0 -4986392 128 0 -4986515 0 0 -4986564 128 0 -4986683 0 0 -4986706 128 0 -4987137 0 0 -4987165 128 0 -4987293 0 0 -4987326 128 0 -4987459 0 0 -4987529 128 0 -4987549 0 0 -4987558 128 0 -4987628 0 0 -4987690 128 0 -4987801 0 0 -4988118 128 0 -4988160 0 0 -4988272 128 0 -4988333 0 0 -4988481 128 0 -4988512 0 0 -4988658 128 0 -4988684 0 0 -4988847 128 0 -4988874 0 0 -4992017 totRewards = 14 -4992017 64 8 -4992217 64 0 -4992245 0 0 -4992258 64 0 -4993747 0 0 -4993755 64 0 -4994232 0 0 -4994243 64 0 -4994394 0 0 -4994418 64 0 -4994917 0 0 -4994937 64 0 -4995077 0 0 -4995101 64 0 -4995241 0 0 -4995266 64 0 -4995416 0 0 -4995427 64 0 -4995585 0 0 -4995600 64 0 -4995760 0 0 -4995767 64 0 -4996645 0 0 -4996677 64 0 -4996811 0 0 -4996862 64 0 -4997027 0 0 -4997159 64 0 -4997203 0 0 -4997275 64 0 -4997417 0 0 -4997432 64 0 -4997789 0 0 -4997818 64 0 -4997960 0 0 -4997999 64 0 -4998121 0 0 -4998164 64 0 -4998268 0 0 -4998346 64 0 -4998393 0 0 -5001232 totRewards = 15 -5001232 128 16 -5001398 0 16 -5001432 0 0 -5001436 128 0 -5001501 0 0 -5001510 128 0 -5001628 0 0 -5001660 128 0 -5001753 0 0 -5001791 128 0 -5002001 0 0 -5002056 128 0 -5002135 0 0 -5002203 128 0 -5002418 0 0 -5002432 128 0 -5002556 0 0 -5002576 128 0 -5002867 0 0 -5002876 128 0 -5002999 0 0 -5003032 128 0 -5003161 0 0 -5003186 128 0 -5003332 0 0 -5003353 128 0 -5003491 0 0 -5003532 128 0 -5003656 0 0 -5003703 128 0 -5003835 0 0 -5003879 128 0 -5004005 0 0 -5004053 128 0 -5004179 0 0 -5004226 128 0 -5004337 0 0 -5004383 128 0 -5004501 0 0 -5004527 128 0 -5004665 0 0 -5004722 128 0 -5004823 0 0 -5004889 128 0 -5004995 0 0 -5005073 128 0 -5005082 0 0 -5005114 128 0 -5005159 0 0 -5005242 128 0 -5005334 0 0 -5005852 128 0 -5005893 0 0 -5008890 totRewards = 16 -5008890 64 8 -5009090 64 0 -5009153 0 0 -5009177 64 0 -5009662 0 0 -5009677 64 0 -5010833 0 0 -5010840 64 0 -5011344 0 0 -5011352 64 0 -5012032 0 0 -5012067 64 0 -5012533 0 0 -5012549 64 0 -5012852 0 0 -5012878 64 0 -5013573 0 0 -5013589 64 0 -5013750 0 0 -5013779 64 0 -5013922 0 0 -5013956 64 0 -5014073 0 0 -5014143 64 0 -5014202 0 0 -5016866 totRewards = 17 -5016866 128 16 -5017035 0 16 -5017066 0 0 -5017093 128 0 -5017282 0 0 -5017317 128 0 -5017427 0 0 -5017472 128 0 -5017682 0 0 -5017714 128 0 -5017810 0 0 -5017879 128 0 -5018240 0 0 -5018268 128 0 -5018689 0 0 -5018729 128 0 -5018864 0 0 -5018897 128 0 -5019039 0 0 -5019070 128 0 -5019192 0 0 -5019238 128 0 -5019368 0 0 -5019406 128 0 -5019540 0 0 -5019606 128 0 -5019715 0 0 -5019777 128 0 -5019895 0 0 -5019949 128 0 -5020073 0 0 -5020130 128 0 -5020253 0 0 -5020329 128 0 -5020438 0 0 -5020490 128 0 -5020632 0 0 -5020694 128 0 -5020806 0 0 -5020877 128 0 -5020988 0 0 -5021053 128 0 -5021167 0 0 -5021203 128 0 -5021466 0 0 -5021522 128 0 -5021633 0 0 -5021662 128 0 -5021802 0 0 -5021856 128 0 -5021973 0 0 -5022016 128 0 -5022131 0 0 -5022266 128 0 -5022292 0 0 -5022425 128 0 -5022475 0 0 -5026113 totRewards = 18 -5026113 64 8 -5026313 64 0 -5026398 0 0 -5026415 64 0 -5027453 0 0 -5027465 64 0 -5028444 0 0 -5028457 64 0 -5028987 0 0 -5029001 64 0 -5029159 0 0 -5029175 64 0 -5029328 0 0 -5029359 64 0 -5030455 0 0 -5030519 64 0 -5030679 0 0 -5030706 64 0 -5031103 0 0 -5031124 64 0 -5031310 0 0 -5031326 64 0 -5031509 0 0 -5031532 64 0 -5031694 0 0 -5031778 64 0 -5031836 0 0 -5038203 totRewards = 19 -5038203 128 16 -5038403 128 0 -5038470 0 0 -5038492 128 0 -5038725 0 0 -5038778 128 0 -5039133 0 0 -5039171 128 0 -5039554 0 0 -5039578 128 0 -5039998 0 0 -5040014 128 0 -5040312 0 0 -5040331 128 0 -5040470 0 0 -5040494 128 0 -5040634 0 0 -5040676 128 0 -5040814 0 0 -5040839 128 0 -5040978 0 0 -5041015 128 0 -5041135 0 0 -5041154 128 0 -5041700 0 0 -5044489 totRewards = 20 -5044489 64 8 -5044677 0 8 -5044689 0 0 -5044711 64 0 -5045338 0 0 -5045366 64 0 -5047558 0 0 -5047585 64 0 -5047726 0 0 -5047750 64 0 -5047899 0 0 -5047908 64 0 -5048219 0 0 -5048237 64 0 -5049433 0 0 -5049446 64 0 -5049579 0 0 -5049625 64 0 -5049732 0 0 -5052543 totRewards = 21 -5052543 128 16 -5052718 0 16 -5052743 0 0 -5052789 128 0 -5052845 0 0 -5052848 128 0 -5052963 0 0 -5053000 128 0 -5053094 0 0 -5053143 128 0 -5053351 0 0 -5053393 128 0 -5053493 0 0 -5053552 128 0 -5053940 0 0 -5053959 128 0 -5054377 0 0 -5054396 128 0 -5054523 0 0 -5054549 128 0 -5054844 0 0 -5054879 128 0 -5055005 0 0 -5055045 128 0 -5055179 0 0 -5055212 128 0 -5055345 0 0 -5055389 128 0 -5055517 0 0 -5055559 128 0 -5055688 0 0 -5055726 128 0 -5055862 0 0 -5055891 128 0 -5056013 0 0 -5056070 128 0 -5056176 0 0 -5056230 128 0 -5056347 0 0 -5056398 128 0 -5056519 0 0 -5056566 128 0 -5056682 0 0 -5056732 128 0 -5056850 0 0 -5056891 128 0 -5057020 0 0 -5057083 128 0 -5057197 0 0 -5057235 128 0 -5057366 0 0 -5057420 128 0 -5057542 0 0 -5057592 128 0 -5057703 0 0 -5057777 128 0 -5057897 0 0 -5057960 128 0 -5058056 0 0 -5061089 totRewards = 22 -5061089 64 8 -5061289 64 0 -5061291 0 0 -5061310 64 0 -5063485 0 0 -5063497 64 0 -5063662 0 0 -5063674 64 0 -5063833 0 0 -5063863 64 0 -5064177 0 0 -5064211 64 0 -5064526 0 0 -5064541 64 0 -5064699 0 0 -5064716 64 0 -5064881 0 0 -5064886 64 0 -5065771 0 0 -5065783 64 0 -5066106 0 0 -5066257 64 0 -5066781 0 0 -5066830 64 0 -5066981 0 0 -5067021 64 0 -5067175 0 0 -5067248 64 0 -5067378 0 0 -5067422 64 0 -5067576 0 0 -5075163 64 0 -5075208 0 0 -5075224 64 0 -5075249 0 0 -5075287 64 0 -5075300 0 0 -5078142 totRewards = 23 -5078142 128 16 -5078258 0 16 -5078302 128 16 -5078342 128 0 -5078345 0 0 -5078381 128 0 -5078596 0 0 -5078633 128 0 -5078843 0 0 -5078862 128 0 -5078967 0 0 -5079003 128 0 -5079951 0 0 -5079980 128 0 -5080260 0 0 -5080281 128 0 -5080419 0 0 -5080466 128 0 -5080587 0 0 -5080629 128 0 -5080761 0 0 -5080802 128 0 -5080927 0 0 -5080975 128 0 -5081092 0 0 -5081138 128 0 -5081251 0 0 -5081293 128 0 -5081556 0 0 -5081592 128 0 -5081697 0 0 -5084357 totRewards = 24 -5084357 64 8 -5084557 64 0 -5084562 0 0 -5084582 64 0 -5087017 0 0 -5087036 64 0 -5087177 0 0 -5087210 64 0 -5087523 0 0 -5087542 64 0 -5087686 0 0 -5087733 64 0 -5087837 0 0 -5087891 64 0 -5088028 0 0 -5088033 64 0 -5088359 0 0 -5088374 64 0 -5088517 0 0 -5092862 totRewards = 25 -5092862 128 16 -5093062 128 0 -5093079 0 0 -5093150 128 0 -5093188 0 0 -5093209 128 0 -5093448 0 0 -5093563 128 0 -5093631 0 0 -5093710 128 0 -5094748 0 0 -5094768 128 0 -5095218 0 0 -5095240 128 0 -5095376 0 0 -5095406 128 0 -5095538 0 0 -5095559 128 0 -5096438 0 0 -5096445 128 0 -5096601 0 0 -5096613 128 0 -5096755 0 0 -5096784 128 0 -5096917 0 0 -5096946 128 0 -5097086 0 0 -5097105 128 0 -5097276 0 0 -5097303 128 0 -5097450 0 0 -5097470 128 0 -5097604 0 0 -5097645 128 0 -5097759 0 0 -5100630 totRewards = 26 -5100630 64 8 -5100819 0 8 -5100829 64 8 -5100830 64 0 -5101055 0 0 -5101068 64 0 -5102287 0 0 -5102294 64 0 -5102437 0 0 -5102446 64 0 -5103424 0 0 -5103442 64 0 -5103578 0 0 -5103612 64 0 -5104060 0 0 -5104071 64 0 -5104375 0 0 -5104400 64 0 -5104529 0 0 -5107046 totRewards = 27 -5107046 128 16 -5107209 0 16 -5107246 0 0 -5107267 128 0 -5107307 0 0 -5107356 128 0 -5107447 0 0 -5107485 128 0 -5107580 0 0 -5107618 128 0 -5107822 0 0 -5107879 128 0 -5107961 0 0 -5108034 128 0 -5108402 0 0 -5108428 128 0 -5108724 0 0 -5108744 128 0 -5108870 0 0 -5108924 128 0 -5109045 0 0 -5109082 128 0 -5109212 0 0 -5109254 128 0 -5109371 0 0 -5109428 128 0 -5109550 0 0 -5109597 128 0 -5109718 0 0 -5109763 128 0 -5109886 0 0 -5109902 128 0 -5110195 0 0 -5110215 128 0 -5110342 0 0 -5110385 128 0 -5110502 0 0 -5110551 128 0 -5110663 0 0 -5110720 128 0 -5110838 0 0 -5110894 128 0 -5111005 0 0 -5111053 128 0 -5111181 0 0 -5111219 128 0 -5111331 0 0 -5111461 128 0 -5111535 0 0 -5111594 128 0 -5111712 0 0 -5111834 128 0 -5111882 0 0 -5111971 128 0 -5112063 0 0 -5114930 totRewards = 28 -5114930 64 8 -5115130 64 0 -5115342 0 0 -5115353 64 0 -5115466 0 0 -5115479 64 0 -5117913 0 0 -5117950 64 0 -5118083 0 0 -5118109 64 0 -5118242 0 0 -5118279 64 0 -5118377 0 0 -5121063 totRewards = 29 -5121063 128 16 -5121263 128 0 -5121284 0 0 -5121321 128 0 -5121531 0 0 -5121579 128 0 -5121675 0 0 -5121685 128 0 -5121914 0 0 -5121958 128 0 -5122058 0 0 -5122093 128 0 -5122352 0 0 -5122359 128 0 -5122485 0 0 -5122515 128 0 -5122943 0 0 -5122971 128 0 -5123104 0 0 -5123135 128 0 -5123279 0 0 -5123289 128 0 -5123418 0 0 -5123458 128 0 -5123589 0 0 -5123625 128 0 -5123756 0 0 -5123809 128 0 -5123944 0 0 -5123994 128 0 -5124120 0 0 -5124169 128 0 -5124287 0 0 -5124333 128 0 -5124454 0 0 -5124473 128 0 -5124906 0 0 -5124936 128 0 -5125070 0 0 -5125110 128 0 -5125219 0 0 -5125272 128 0 -5125381 0 0 -5125430 128 0 -5125545 0 0 -5125607 128 0 -5125722 0 0 -5125814 128 0 -5125902 0 0 -5125984 128 0 -5126082 0 0 -5126164 128 0 -5126250 0 0 -5129004 totRewards = 30 -5129004 64 8 -5129204 64 0 -5131367 0 0 -5131377 64 0 -5132020 0 0 -5132050 64 0 -5132186 0 0 -5132216 64 0 -5132347 0 0 -5132387 64 0 -5132504 0 0 -5132561 64 0 -5132652 0 0 -5135335 totRewards = 31 -5135335 128 16 -5135508 0 16 -5135535 0 0 -5135640 128 0 -5135732 0 0 -5135766 128 0 -5136102 0 0 -5136154 128 0 -5136237 0 0 -5136284 128 0 -5136673 0 0 -5136703 128 0 -5137126 0 0 -5137148 128 0 -5137285 0 0 -5137306 128 0 -5137450 0 0 -5137477 128 0 -5137616 0 0 -5137659 128 0 -5137783 0 0 -5137826 128 0 -5137962 0 0 -5138000 128 0 -5138129 0 0 -5138174 128 0 -5138299 0 0 -5138346 128 0 -5138457 0 0 -5138505 128 0 -5138606 0 0 -5138667 128 0 -5138769 0 0 -5138833 128 0 -5138882 0 0 -5139462 128 0 -5141905 0 0 -5144726 totRewards = 32 -5144726 64 8 -5144926 64 0 -5147101 0 0 -5147127 64 0 -5147279 0 0 -5147299 64 0 -5147604 0 0 -5147640 64 0 -5147763 0 0 -5147786 64 0 -5147925 0 0 -5147955 64 0 -5148080 0 0 -5148143 64 0 -5148214 0 0 -5151111 totRewards = 33 -5151111 128 16 -5151273 0 16 -5151311 0 0 -5151344 128 0 -5151670 0 0 -5151688 128 0 -5151935 0 0 -5151952 128 0 -5152056 0 0 -5152097 128 0 -5152484 0 0 -5152511 128 0 -5152814 0 0 -5152826 128 0 -5152960 0 0 -5153007 128 0 -5153127 0 0 -5153165 128 0 -5153285 0 0 -5153323 128 0 -5153452 0 0 -5153497 128 0 -5153620 0 0 -5153669 128 0 -5153794 0 0 -5153846 128 0 -5153967 0 0 -5154020 128 0 -5154141 0 0 -5154187 128 0 -5154313 0 0 -5154360 128 0 -5154489 0 0 -5154527 128 0 -5154652 0 0 -5154702 128 0 -5154833 0 0 -5154877 128 0 -5155016 0 0 -5155056 128 0 -5155182 0 0 -5155246 128 0 -5155368 0 0 -5155426 128 0 -5155536 0 0 -5155601 128 0 -5155688 0 0 -5158474 totRewards = 34 -5158474 64 8 -5158674 64 0 -5158727 0 0 -5158761 64 0 -5159911 0 0 -5159923 64 0 -5160893 0 0 -5160903 64 0 -5161066 0 0 -5161084 64 0 -5161421 0 0 -5161439 64 0 -5161596 0 0 -5161615 64 0 -5161765 0 0 -5161788 64 0 -5162603 0 0 -5162626 64 0 -5162768 0 0 -5166994 totRewards = 35 -5166994 128 16 -5167136 0 16 -5167194 0 0 -5167204 128 0 -5167391 0 0 -5167411 128 0 -5167529 0 0 -5167569 128 0 -5167669 0 0 -5167684 128 0 -5167770 0 0 -5167808 128 0 -5167905 0 0 -5167957 128 0 -5168206 0 0 -5168217 128 0 -5168342 0 0 -5168369 128 0 -5168809 0 0 -5168840 128 0 -5168968 0 0 -5169002 128 0 -5169134 0 0 -5169159 128 0 -5169295 0 0 -5169332 128 0 -5169458 0 0 -5169504 128 0 -5169624 0 0 -5169671 128 0 -5169796 0 0 -5169842 128 0 -5169962 0 0 -5170008 128 0 -5170127 0 0 -5170167 128 0 -5170295 0 0 -5170342 128 0 -5170465 0 0 -5170518 128 0 -5170617 0 0 -5170685 128 0 -5170792 0 0 -5170855 128 0 -5170967 0 0 -5171038 128 0 -5171144 0 0 -5171212 128 0 -5171289 0 0 -5173934 totRewards = 36 -5173934 64 8 -5174105 0 8 -5174130 64 8 -5174134 64 0 -5175323 0 0 -5175328 64 0 -5176145 0 0 -5176158 64 0 -5176303 0 0 -5176327 64 0 -5176657 0 0 -5176671 64 0 -5176823 0 0 -5176849 64 0 -5176986 0 0 -5177024 64 0 -5177150 0 0 -5177186 64 0 -5177317 0 0 -5177351 64 0 -5177460 0 0 -5180085 totRewards = 37 -5180085 128 16 -5180281 0 16 -5180285 0 0 -5180336 128 0 -5180527 0 0 -5180575 128 0 -5180662 0 0 -5180700 128 0 -5180918 0 0 -5180954 128 0 -5181053 0 0 -5181106 128 0 -5181492 0 0 -5181532 128 0 -5181796 0 0 -5181808 128 0 -5181944 0 0 -5181984 128 0 -5182104 0 0 -5182141 128 0 -5182279 0 0 -5182301 128 0 -5182427 0 0 -5182469 128 0 -5182594 0 0 -5182641 128 0 -5182770 0 0 -5182816 128 0 -5182934 0 0 -5182984 128 0 -5183104 0 0 -5183144 128 0 -5183270 0 0 -5183318 128 0 -5183450 0 0 -5183501 128 0 -5183601 0 0 -5183652 128 0 -5183762 0 0 -5183813 128 0 -5183927 0 0 -5183980 128 0 -5184082 0 0 -5184162 128 0 -5184268 0 0 -5184311 128 0 -5184425 0 0 -5184559 128 0 -5184626 0 0 -5185072 128 0 -5185147 0 0 -5185231 128 0 -5185272 0 0 -5185296 128 0 -5185303 0 0 -5188151 totRewards = 38 -5188151 64 8 -5188332 0 8 -5188350 64 8 -5188351 64 0 -5190520 0 0 -5190537 64 0 -5190865 0 0 -5190895 64 0 -5191213 0 0 -5191231 64 0 -5191381 0 0 -5191404 64 0 -5191556 0 0 -5191573 64 0 -5192075 0 0 -5192099 64 0 -5192965 0 0 -5192984 64 0 -5193154 0 0 -5193167 64 0 -5193500 0 0 -5193536 64 0 -5193666 0 0 -5193714 64 0 -5193793 0 0 -5196578 totRewards = 39 -5196578 128 16 -5196719 0 16 -5196778 0 0 -5196807 128 0 -5197286 0 0 -5197323 128 0 -5197431 0 0 -5197464 128 0 -5197547 0 0 -5197563 128 0 -5197996 0 0 -5198009 128 0 -5198294 0 0 -5198319 128 0 -5198449 0 0 -5198485 128 0 -5198614 0 0 -5198641 128 0 -5198769 0 0 -5198799 128 0 -5198933 0 0 -5198975 128 0 -5199094 0 0 -5199148 128 0 -5199275 0 0 -5199329 128 0 -5199449 0 0 -5199518 128 0 -5199607 0 0 -5199690 128 0 -5199748 0 0 -5203235 totRewards = 40 -5203235 64 8 -5203415 0 8 -5203435 0 0 -5203438 64 0 -5205107 0 0 -5205131 64 0 -5205618 0 0 -5205640 64 0 -5205789 0 0 -5205810 64 0 -5205961 0 0 -5205986 64 0 -5206121 0 0 -5206161 64 0 -5206276 0 0 -5206327 64 0 -5206421 0 0 -5209042 totRewards = 41 -5209042 128 16 -5209223 0 16 -5209242 0 0 -5209294 128 0 -5209472 0 0 -5209519 128 0 -5209608 0 0 -5209656 128 0 -5209867 0 0 -5209908 128 0 -5210005 0 0 -5210057 128 0 -5210438 0 0 -5210467 128 0 -5210751 0 0 -5210780 128 0 -5210900 0 0 -5210941 128 0 -5211065 0 0 -5211087 128 0 -5211230 0 0 -5211258 128 0 -5211393 0 0 -5211444 128 0 -5211563 0 0 -5211607 128 0 -5211729 0 0 -5211770 128 0 -5211893 0 0 -5211940 128 0 -5212057 0 0 -5212095 128 0 -5212221 0 0 -5212270 128 0 -5212388 0 0 -5212429 128 0 -5212552 0 0 -5212601 128 0 -5212747 0 0 -5212781 128 0 -5212909 0 0 -5212955 128 0 -5213071 0 0 -5213126 128 0 -5213223 0 0 -5213294 128 0 -5213369 0 0 -5216038 totRewards = 42 -5216038 64 8 -5216238 64 0 -5216247 0 0 -5216259 64 0 -5218419 0 0 -5218428 64 0 -5218758 0 0 -5218770 64 0 -5218912 0 0 -5218942 64 0 -5219076 0 0 -5219101 64 0 -5219245 0 0 -5219268 64 0 -5219408 0 0 -5219438 64 0 -5220449 0 0 -5220460 64 0 -5220626 0 0 -5220655 64 0 -5221023 0 0 -5221083 64 0 -5221441 0 0 -5221475 64 0 -5221949 0 0 -5221963 64 0 -5222108 0 0 -5222154 64 0 -5222271 0 0 -5222314 64 0 -5222434 0 0 -5226833 totRewards = 43 -5226833 128 16 -5227029 0 16 -5227033 0 0 -5227068 128 0 -5227277 0 0 -5227314 128 0 -5227672 0 0 -5227701 128 0 -5227812 0 0 -5227856 128 0 -5228250 0 0 -5228269 128 0 -5228687 0 0 -5228717 128 0 -5228853 0 0 -5228883 128 0 -5229023 0 0 -5229047 128 0 -5229184 0 0 -5229217 128 0 -5229351 0 0 -5229391 128 0 -5229519 0 0 -5229560 128 0 -5229679 0 0 -5229726 128 0 -5229826 0 0 -5229892 128 0 -5229979 0 0 -5230197 128 0 -5230771 0 0 -5233366 totRewards = 44 -5233366 64 8 -5233551 0 8 -5233566 0 0 -5233570 64 0 -5236348 0 0 -5236382 64 0 -5236501 0 0 -5236547 64 0 -5236653 0 0 -5239276 totRewards = 45 -5239276 128 16 -5239441 0 16 -5239476 0 0 -5239495 128 0 -5239684 0 0 -5239726 128 0 -5239830 0 0 -5239895 128 0 -5240273 0 0 -5240306 128 0 -5240717 0 0 -5240725 128 0 -5240855 0 0 -5240863 128 0 -5241154 0 0 -5241165 128 0 -5241305 0 0 -5241323 128 0 -5241455 0 0 -5241482 128 0 -5241616 0 0 -5241658 128 0 -5241782 0 0 -5241833 128 0 -5241966 0 0 -5242016 128 0 -5242143 0 0 -5242194 128 0 -5242316 0 0 -5242370 128 0 -5242490 0 0 -5242535 128 0 -5242649 0 0 -5242709 128 0 -5242811 0 0 -5242872 128 0 -5242964 0 0 -5243013 128 0 -5243124 0 0 -5243177 128 0 -5243289 0 0 -5243345 128 0 -5243466 0 0 -5243531 128 0 -5243632 0 0 -5243708 128 0 -5243816 0 0 -5243886 128 0 -5243967 0 0 -5247055 totRewards = 46 -5247055 64 8 -5247095 0 8 -5247106 64 8 -5247255 64 0 -5247283 0 0 -5247299 64 0 -5247905 0 0 -5247914 64 0 -5249400 0 0 -5249416 64 0 -5249745 0 0 -5249755 64 0 -5249905 0 0 -5249925 64 0 -5250068 0 0 -5250096 64 0 -5250554 0 0 -5250578 64 0 -5250890 0 0 -5250911 64 0 -5251051 0 0 -5251086 64 0 -5251207 0 0 -5251264 64 0 -5251360 0 0 -5253848 totRewards = 47 -5253848 128 16 -5254029 0 16 -5254048 0 0 -5254082 128 0 -5254276 0 0 -5254321 128 0 -5254415 0 0 -5254473 128 0 -5254688 0 0 -5254718 128 0 -5254821 0 0 -5254886 128 0 -5255267 0 0 -5255294 128 0 -5255721 0 0 -5255756 128 0 -5255882 0 0 -5255919 128 0 -5256059 0 0 -5256087 128 0 -5256223 0 0 -5256256 128 0 -5256381 0 0 -5256422 128 0 -5256552 0 0 -5256592 128 0 -5256711 0 0 -5256753 128 0 -5256878 0 0 -5256917 128 0 -5257042 0 0 -5257080 128 0 -5257207 0 0 -5257262 128 0 -5257366 0 0 -5257424 128 0 -5257525 0 0 -5257585 128 0 -5257691 0 0 -5257749 128 0 -5257859 0 0 -5257942 128 0 -5258054 0 0 -5258082 128 0 -5258211 0 0 -5258290 128 0 -5258369 0 0 -5258430 128 0 -5258531 0 0 -5258621 128 0 -5258643 0 0 -5258681 128 0 -5258722 0 0 -5258805 128 0 -5258896 0 0 -5258967 128 0 -5259053 0 0 -5261742 totRewards = 48 -5261742 64 8 -5261942 64 0 -5264296 0 0 -5264315 64 0 -5264997 0 0 -5265015 64 0 -5265320 0 0 -5265342 64 0 -5265648 0 0 -5265663 64 0 -5267205 0 0 -5267225 64 0 -5267360 0 0 -5267409 64 0 -5267507 0 0 -5270186 totRewards = 49 -5270186 128 16 -5270358 0 16 -5270386 0 0 -5270420 128 0 -5270639 0 0 -5270646 128 0 -5270761 0 0 -5270798 128 0 -5271031 0 0 -5271040 128 0 -5271155 0 0 -5271208 128 0 -5271579 0 0 -5271605 128 0 -5272037 0 0 -5272061 128 0 -5272198 0 0 -5272217 128 0 -5272359 0 0 -5272388 128 0 -5272532 0 0 -5272559 128 0 -5272697 0 0 -5272729 128 0 -5272858 0 0 -5272894 128 0 -5273019 0 0 -5273052 128 0 -5273179 0 0 -5273220 128 0 -5273350 0 0 -5273392 128 0 -5273511 0 0 -5273571 128 0 -5273666 0 0 -5273739 128 0 -5273835 0 0 -5273900 128 0 -5273928 0 0 -5273957 128 0 -5273973 0 0 -5274089 128 0 -5274170 0 0 -5274801 128 0 -5274825 0 0 -5277683 totRewards = 50 -5277683 64 8 -5277883 64 0 -5277903 0 0 -5277906 64 0 -5278381 0 0 -5278392 64 0 -5279198 0 0 -5279207 64 0 -5280021 0 0 -5280054 64 0 -5280388 0 0 -5280417 64 0 -5280565 0 0 -5280604 64 0 -5280742 0 0 -5280757 64 0 -5280917 0 0 -5280927 64 0 -5281087 0 0 -5281096 64 0 -5281246 0 0 -5281271 64 0 -5281422 0 0 -5281430 64 0 -5281916 0 0 -5281955 64 0 -5282063 0 0 -5284584 totRewards = 51 -5284583 128 16 -5284755 0 16 -5284783 0 0 -5284811 128 0 -5284992 0 0 -5285039 128 0 -5285134 0 0 -5285177 128 0 -5285398 0 0 -5285437 128 0 -5285537 0 0 -5285606 128 0 -5285978 0 0 -5286006 128 0 -5286276 0 0 -5286287 128 0 -5286413 0 0 -5286444 128 0 -5286572 0 0 -5286599 128 0 -5286738 0 0 -5286755 128 0 -5286904 0 0 -5286937 128 0 -5287064 0 0 -5287106 128 0 -5287229 0 0 -5287265 128 0 -5287391 0 0 -5287433 128 0 -5287544 0 0 -5287588 128 0 -5287709 0 0 -5287726 128 0 -5287868 0 0 -5287929 128 0 -5288015 0 0 -5290701 totRewards = 52 -5290701 64 8 -5290886 0 8 -5290898 64 8 -5290901 64 0 -5291551 0 0 -5291558 64 0 -5292463 0 0 -5292481 64 0 -5292627 0 0 -5292650 64 0 -5292960 0 0 -5292981 64 0 -5293117 0 0 -5293150 64 0 -5293276 0 0 -5293318 64 0 -5293442 0 0 -5293484 64 0 -5293587 0 0 -5296114 totRewards = 53 -5296114 128 16 -5296276 0 16 -5296314 0 0 -5296336 128 0 -5296507 0 0 -5296515 128 0 -5296673 0 0 -5296710 128 0 -5296948 0 0 -5296964 128 0 -5297059 0 0 -5297113 128 0 -5297498 0 0 -5297528 128 0 -5297810 0 0 -5297822 128 0 -5297954 0 0 -5297985 128 0 -5298116 0 0 -5298140 128 0 -5298278 0 0 -5298300 128 0 -5298435 0 0 -5298474 128 0 -5298606 0 0 -5298639 128 0 -5298778 0 0 -5298824 128 0 -5298944 0 0 -5298994 128 0 -5299098 0 0 -5299160 128 0 -5299257 0 0 -5299340 128 0 -5299402 0 0 -5302379 totRewards = 54 -5302379 64 8 -5302574 0 8 -5302579 0 0 -5302599 64 0 -5303763 0 0 -5303775 64 0 -5304720 0 0 -5304732 64 0 -5304878 0 0 -5304909 64 0 -5305067 0 0 -5305086 64 0 -5305224 0 0 -5305281 64 0 -5305378 0 0 -5305447 64 0 -5305554 0 0 -5306037 64 0 -5306058 0 0 -5306098 64 0 -5306224 0 0 -5306269 64 0 -5306388 0 0 -5309592 totRewards = 55 -5309592 128 16 -5309619 0 16 -5309658 128 16 -5309792 128 0 -5309830 0 0 -5309860 128 0 -5310483 0 0 -5310511 128 0 -5310769 0 0 -5310776 128 0 -5310902 0 0 -5310928 128 0 -5311041 0 0 -5311068 128 0 -5311200 0 0 -5311215 128 0 -5311365 0 0 -5311383 128 0 -5311511 0 0 -5311559 128 0 -5311681 0 0 -5311714 128 0 -5311848 0 0 -5311888 128 0 -5312016 0 0 -5312064 128 0 -5312184 0 0 -5312228 128 0 -5312346 0 0 -5312394 128 0 -5312499 0 0 -5312555 128 0 -5312645 0 0 -5312723 128 0 -5312810 0 0 -5313047 128 0 -5313173 0 0 -5313288 128 0 -5314099 0 0 -5318179 totRewards = 56 -5318179 64 8 -5318377 0 8 -5318379 0 0 -5318406 64 0 -5319133 0 0 -5319139 64 0 -5320503 0 0 -5320519 64 0 -5320656 0 0 -5320693 64 0 -5320811 0 0 -5320850 64 0 -5320959 0 0 -5322418 64 0 -5322432 0 0 -5324991 totRewards = 57 -5324991 128 16 -5325151 0 16 -5325191 0 0 -5325200 128 0 -5325398 0 0 -5325415 128 0 -5325523 0 0 -5325584 128 0 -5325776 0 0 -5325811 128 0 -5325912 0 0 -5325966 128 0 -5326338 0 0 -5326368 128 0 -5327322 0 0 -5327332 128 0 -5327480 0 0 -5327498 128 0 -5327632 0 0 -5327656 128 0 -5327786 0 0 -5327811 128 0 -5327945 0 0 -5327975 128 0 -5328110 0 0 -5328143 128 0 -5328257 0 0 -5328293 128 0 -5328427 0 0 -5328463 128 0 -5328588 0 0 -5328634 128 0 -5328755 0 0 -5328805 128 0 -5328918 0 0 -5328976 128 0 -5329078 0 0 -5329142 128 0 -5329246 0 0 -5329289 128 0 -5329399 0 0 -5332415 totRewards = 58 -5332415 64 8 -5332615 64 0 -5332650 0 0 -5332712 64 0 -5334670 0 0 -5334690 64 0 -5334833 0 0 -5334854 64 0 -5334987 0 0 -5335009 64 0 -5335150 0 0 -5335174 64 0 -5335309 0 0 -5335347 64 0 -5335474 0 0 -5335509 64 0 -5335638 0 0 -5335665 64 0 -5335812 0 0 -5335825 64 0 -5335977 0 0 -5335989 64 0 -5336132 0 0 -5336173 64 0 -5336471 0 0 -5336482 64 0 -5336637 0 0 -5336655 64 0 -5336787 0 0 -5336837 64 0 -5336953 0 0 -5337017 64 0 -5337057 0 0 -5340738 totRewards = 59 -5340738 128 16 -5340938 128 0 -5340949 0 0 -5340986 128 0 -5341337 0 0 -5341353 128 0 -5341754 0 0 -5341807 128 0 -5342184 0 0 -5342202 128 0 -5342624 0 0 -5342638 128 0 -5342771 0 0 -5342796 128 0 -5342931 0 0 -5342953 128 0 -5343088 0 0 -5343118 128 0 -5343246 0 0 -5343281 128 0 -5343408 0 0 -5343455 128 0 -5343575 0 0 -5343622 128 0 -5343735 0 0 -5343781 128 0 -5343895 0 0 -5343926 128 0 -5344050 0 0 -5344088 128 0 -5344204 0 0 -5344259 128 0 -5344368 0 0 -5344422 128 0 -5344528 0 0 -5344586 128 0 -5344693 0 0 -5344746 128 0 -5344845 0 0 -5344903 128 0 -5345007 0 0 -5345065 128 0 -5345170 0 0 -5345260 128 0 -5345346 0 0 -5345389 128 0 -5345506 0 0 -5345566 128 0 -5345688 0 0 -5345752 128 0 -5345862 0 0 -5345936 128 0 -5346010 0 0 -5348749 totRewards = 60 -5348749 64 8 -5348932 0 8 -5348949 0 0 -5348955 64 0 -5349575 0 0 -5349586 64 0 -5351427 0 0 -5351438 64 0 -5351570 0 0 -5351611 64 0 -5351720 0 0 -5351773 64 0 -5351873 0 0 -5351958 64 0 -5351995 0 0 -5354755 totRewards = 61 -5354755 128 16 -5354947 0 16 -5354955 0 0 -5354987 128 0 -5355182 0 0 -5355204 128 0 -5355316 0 0 -5355360 128 0 -5355573 0 0 -5355592 128 0 -5355706 0 0 -5355759 128 0 -5355994 0 0 -5356004 128 0 -5356124 0 0 -5356157 128 0 -5356593 0 0 -5356616 128 0 -5356753 0 0 -5356784 128 0 -5356918 0 0 -5356941 128 0 -5357071 0 0 -5357100 128 0 -5357234 0 0 -5357272 128 0 -5357405 0 0 -5357437 128 0 -5357556 0 0 -5357598 128 0 -5357716 0 0 -5357750 128 0 -5357878 0 0 -5357912 128 0 -5358031 0 0 -5358080 128 0 -5358197 0 0 -5358243 128 0 -5358353 0 0 -5358414 128 0 -5358505 0 0 -5358573 128 0 -5358691 0 0 -5358728 128 0 -5358841 0 0 -5358912 128 0 -5359000 0 0 -5359081 128 0 -5359189 0 0 -5359263 128 0 -5359342 0 0 -5362057 totRewards = 62 -5362057 64 8 -5362240 0 8 -5362255 64 8 -5362256 64 0 -5364529 0 0 -5364535 64 0 -5364841 0 0 -5364872 64 0 -5364998 0 0 -5365030 64 0 -5365160 0 0 -5365197 64 0 -5365325 0 0 -5365363 64 0 -5365479 0 0 -5365550 64 0 -5365625 0 0 -5368308 totRewards = 63 -5368308 128 16 -5368490 0 16 -5368508 0 0 -5368570 128 0 -5368749 0 0 -5368798 128 0 -5368891 0 0 -5368932 128 0 -5369147 0 0 -5369186 128 0 -5369281 0 0 -5369350 128 0 -5369568 0 0 -5369577 128 0 -5369706 0 0 -5369736 128 0 -5370019 0 0 -5370040 128 0 -5370166 0 0 -5370207 128 0 -5370331 0 0 -5370362 128 0 -5370480 0 0 -5370515 128 0 -5370642 0 0 -5370685 128 0 -5370801 0 0 -5370854 128 0 -5370975 0 0 -5371021 128 0 -5371135 0 0 -5371176 128 0 -5371298 0 0 -5371341 128 0 -5371461 0 0 -5371506 128 0 -5371623 0 0 -5371672 128 0 -5371804 0 0 -5371845 128 0 -5371968 0 0 -5372016 128 0 -5372139 0 0 -5372193 128 0 -5372294 0 0 -5372364 128 0 -5372433 0 0 -5375091 totRewards = 64 -5375091 64 8 -5375276 0 8 -5375291 0 0 -5375298 64 0 -5376063 0 0 -5376071 64 0 -5377109 0 0 -5377131 64 0 -5377278 0 0 -5377297 64 0 -5377596 0 0 -5377616 64 0 -5377776 0 0 -5377783 64 0 -5377931 0 0 -5377956 64 0 -5378099 0 0 -5378128 64 0 -5378265 0 0 -5378286 64 0 -5378423 0 0 -5378457 64 0 -5378590 0 0 -5378620 64 0 -5378759 0 0 -5378777 64 0 -5378915 0 0 -5378949 64 0 -5379087 0 0 -5379108 64 0 -5379237 0 0 -5379291 64 0 -5379402 0 0 -5381937 totRewards = 65 -5381937 128 16 -5382101 0 16 -5382137 0 0 -5382157 128 0 -5382344 0 0 -5382383 128 0 -5382489 0 0 -5382551 128 0 -5382890 0 0 -5382957 128 0 -5383047 0 0 -5383059 128 0 -5383692 0 0 -5383711 128 0 -5383842 0 0 -5383868 128 0 -5384010 0 0 -5384025 128 0 -5384166 0 0 -5384194 128 0 -5384329 0 0 -5384367 128 0 -5384495 0 0 -5384532 128 0 -5384659 0 0 -5384698 128 0 -5384814 0 0 -5384873 128 0 -5384972 0 0 -5385039 128 0 -5385156 0 0 -5385830 128 0 -5385930 0 0 -5385971 128 0 -5386091 0 0 -5386139 128 0 -5386269 0 0 -5386303 128 0 -5386430 0 0 -5386492 128 0 -5386634 0 0 -5386673 128 0 -5386800 0 0 -5386861 128 0 -5386988 0 0 -5387051 128 0 -5387172 0 0 -5387215 128 0 -5387328 0 0 -5387378 128 0 -5387504 0 0 -5387542 128 0 -5387661 0 0 -5387707 128 0 -5387832 0 0 -5387887 128 0 -5387992 0 0 -5388068 128 0 -5388145 0 0 -5391087 totRewards = 66 -5391087 64 8 -5391276 0 8 -5391287 0 0 -5391300 64 0 -5393721 0 0 -5393739 64 0 -5393886 0 0 -5393911 64 0 -5394039 0 0 -5394086 64 0 -5394193 0 0 -5394251 64 0 -5394352 0 0 -5394421 64 0 -5394483 0 0 -5398835 totRewards = 67 -5398835 128 16 -5399035 128 0 -5399090 0 0 -5399138 128 0 -5399333 0 0 -5399362 128 0 -5399459 0 0 -5399489 128 0 -5399707 0 0 -5399748 128 0 -5399841 0 0 -5399886 128 0 -5399976 0 0 -5399988 128 0 -5400127 0 0 -5400137 128 0 -5400266 0 0 -5400294 128 0 -5400408 0 0 -5400433 128 0 -5400565 0 0 -5400584 128 0 -5400714 0 0 -5400750 128 0 -5400873 0 0 -5400918 128 0 -5401040 0 0 -5401076 128 0 -5401200 0 0 -5401239 128 0 -5401363 0 0 -5401408 128 0 -5401524 0 0 -5401560 128 0 -5401686 0 0 -5401701 128 0 -5401840 0 0 -5401880 128 0 -5402002 0 0 -5402041 128 0 -5402160 0 0 -5402210 128 0 -5402314 0 0 -5402368 128 0 -5402477 0 0 -5402529 128 0 -5402635 0 0 -5402694 128 0 -5402784 0 0 -5402882 128 0 -5402984 0 0 -5403249 128 0 -5403296 0 0 -5403570 128 0 -5403643 0 0 -5406420 totRewards = 68 -5406420 64 8 -5406620 64 0 -5406622 0 0 -5406646 64 0 -5408106 0 0 -5408123 64 0 -5408592 0 0 -5408611 64 0 -5408758 0 0 -5408784 64 0 -5408937 0 0 -5408952 64 0 -5409108 0 0 -5409132 64 0 -5409264 0 0 -5409287 64 0 -5409437 0 0 -5409465 64 0 -5409612 0 0 -5409642 64 0 -5409782 0 0 -5409811 64 0 -5409948 0 0 -5409995 64 0 -5410134 0 0 -5410195 64 0 -5410275 0 0 -5410788 64 0 -5410832 0 0 -5410875 64 0 -5411017 0 0 -5411024 64 0 -5411168 0 0 -5411200 64 0 -5411349 0 0 -5411375 64 0 -5411527 0 0 -5411550 64 0 -5411699 0 0 -5411717 64 0 -5411889 0 0 -5411901 64 0 -5412053 0 0 -5412087 64 0 -5412224 0 0 -5412300 64 0 -5412325 0 0 -5418269 totRewards = 69 -5418269 128 16 -5418399 0 16 -5418468 128 16 -5418469 128 0 -5418792 0 0 -5418841 128 0 -5419045 0 0 -5419075 128 0 -5419175 0 0 -5419231 128 0 -5419455 0 0 -5419467 128 0 -5419592 0 0 -5419617 128 0 -5419893 0 0 -5419913 128 0 -5420032 0 0 -5420071 128 0 -5420197 0 0 -5420225 128 0 -5420345 0 0 -5420384 128 0 -5420512 0 0 -5420556 128 0 -5420670 0 0 -5420731 128 0 -5420829 0 0 -5420888 128 0 -5420963 0 0 -5424289 totRewards = 70 -5424289 64 8 -5424475 0 8 -5424489 0 0 -5424500 64 0 -5426607 0 0 -5426627 64 0 -5426775 0 0 -5426787 64 0 -5426925 0 0 -5426954 64 0 -5427080 0 0 -5427125 64 0 -5427228 0 0 -5427299 64 0 -5427312 0 0 -5430011 totRewards = 71 -5430011 128 16 -5430211 128 0 -5430218 0 0 -5430279 128 0 -5430439 0 0 -5430494 128 0 -5430831 0 0 -5430874 128 0 -5430987 0 0 -5431072 128 0 -5431125 0 0 -5431138 128 0 -5431424 0 0 -5431445 128 0 -5431713 0 0 -5431718 128 0 -5431857 0 0 -5431895 128 0 -5432009 0 0 -5432044 128 0 -5432169 0 0 -5432192 128 0 -5432313 0 0 -5432348 128 0 -5432462 0 0 -5432505 128 0 -5432618 0 0 -5432665 128 0 -5432775 0 0 -5432826 128 0 -5432934 0 0 -5432983 128 0 -5433094 0 0 -5433142 128 0 -5433251 0 0 -5433307 128 0 -5433418 0 0 -5433475 128 0 -5433577 0 0 -5433640 128 0 -5433722 0 0 -5436443 totRewards = 72 -5436443 64 8 -5436641 0 8 -5436643 0 0 -5436665 64 0 -5438756 0 0 -5438773 64 0 -5439085 0 0 -5439110 64 0 -5439254 0 0 -5439276 64 0 -5439402 0 0 -5439442 64 0 -5439557 0 0 -5439602 64 0 -5439714 0 0 -5439758 64 0 -5439867 0 0 -5442610 totRewards = 73 -5442610 128 16 -5442773 0 16 -5442810 0 0 -5442845 128 0 -5443019 0 0 -5443055 128 0 -5443148 0 0 -5443213 128 0 -5443420 0 0 -5443446 128 0 -5443556 0 0 -5443614 128 0 -5443832 0 0 -5443843 128 0 -5443977 0 0 -5443985 128 0 -5444268 0 0 -5444278 128 0 -5444412 0 0 -5444438 128 0 -5444573 0 0 -5444607 128 0 -5444730 0 0 -5444752 128 0 -5444878 0 0 -5444915 128 0 -5445039 0 0 -5445081 128 0 -5445208 0 0 -5445252 128 0 -5445373 0 0 -5445411 128 0 -5445526 0 0 -5445575 128 0 -5445683 0 0 -5445738 128 0 -5445834 0 0 -5445898 128 0 -5445989 0 0 -5446046 128 0 -5446150 0 0 -5446211 128 0 -5446310 0 0 -5446397 128 0 -5446509 0 0 -5446539 128 0 -5446667 0 0 -5446742 128 0 -5446835 0 0 -5446916 128 0 -5447011 0 0 -5449983 totRewards = 74 -5449983 64 8 -5450178 0 8 -5450183 0 0 -5450197 64 0 -5451724 0 0 -5451733 64 0 -5451888 0 0 -5451900 64 0 -5452222 0 0 -5452249 64 0 -5452387 0 0 -5452422 64 0 -5452547 0 0 -5452586 64 0 -5452713 0 0 -5452736 64 0 -5452874 0 0 -5452894 64 0 -5453373 0 0 -5453386 64 0 -5453527 0 0 -5453564 64 0 -5453680 0 0 -5456274 totRewards = 75 -5456274 128 16 -5456427 0 16 -5456474 0 0 -5456483 128 0 -5456835 0 0 -5456882 128 0 -5457122 0 0 -5457146 128 0 -5457242 0 0 -5457297 128 0 -5457671 0 0 -5457705 128 0 -5457825 0 0 -5457838 128 0 -5457973 0 0 -5457984 128 0 -5458119 0 0 -5458165 128 0 -5458286 0 0 -5458319 128 0 -5458445 0 0 -5458475 128 0 -5458598 0 0 -5458642 128 0 -5458750 0 0 -5458790 128 0 -5458921 0 0 -5458952 128 0 -5459070 0 0 -5459126 128 0 -5459229 0 0 -5459277 128 0 -5459386 0 0 -5459440 128 0 -5459546 0 0 -5459621 128 0 -5459644 0 0 -5459774 128 0 -5459857 0 0 -5459935 128 0 -5460016 0 0 -5460084 128 0 -5460198 0 0 -5460274 128 0 -5460381 0 0 -5460440 128 0 -5460533 0 0 -5460623 128 0 -5460644 0 0 -5460673 128 0 -5460720 0 0 -5460804 128 0 -5460897 0 0 -5463771 totRewards = 76 -5463771 64 8 -5463967 0 8 -5463971 0 0 -5463984 64 0 -5465144 0 0 -5465156 64 0 -5466272 0 0 -5466284 64 0 -5466429 0 0 -5466450 64 0 -5466586 0 0 -5466623 64 0 -5466737 0 0 -5466779 64 0 -5466888 0 0 -5466994 64 0 -5467017 0 0 -5469571 totRewards = 77 -5469571 128 16 -5469749 0 16 -5469771 0 0 -5469802 128 0 -5470003 0 0 -5470052 128 0 -5470145 0 0 -5470209 128 0 -5470409 0 0 -5470438 128 0 -5470546 0 0 -5470607 128 0 -5470707 0 0 -5470712 128 0 -5470840 0 0 -5470857 128 0 -5470975 0 0 -5471008 128 0 -5471431 0 0 -5471463 128 0 -5471582 0 0 -5471623 128 0 -5471750 0 0 -5471786 128 0 -5471912 0 0 -5471953 128 0 -5472074 0 0 -5472124 128 0 -5472240 0 0 -5472288 128 0 -5472400 0 0 -5472447 128 0 -5472565 0 0 -5472611 128 0 -5472720 0 0 -5472769 128 0 -5472877 0 0 -5472931 128 0 -5473037 0 0 -5473101 128 0 -5473200 0 0 -5473258 128 0 -5473363 0 0 -5473448 128 0 -5473567 0 0 -5473676 128 0 -5473728 0 0 -5473804 128 0 -5473818 0 0 -5473862 128 0 -5473886 0 0 -5474162 128 0 -5474248 0 0 -5474304 128 0 -5474401 0 0 -5474460 128 0 -5474573 0 0 -5474639 128 0 -5474740 0 0 -5474828 128 0 -5474922 0 0 -5478644 totRewards = 78 -5478644 64 8 -5478844 64 0 -5480473 0 0 -5480490 64 0 -5480963 0 0 -5480984 64 0 -5481297 0 0 -5481310 64 0 -5481451 0 0 -5481480 64 0 -5481615 0 0 -5481637 64 0 -5481781 0 0 -5481803 64 0 -5481939 0 0 -5481972 64 0 -5482107 0 0 -5482131 64 0 -5483003 0 0 -5483088 64 0 -5483245 0 0 -5483305 64 0 -5483768 0 0 -5483790 64 0 -5483944 0 0 -5483979 64 0 -5484102 0 0 -5484161 64 0 -5484245 0 0 -5490480 totRewards = 79 -5490480 128 16 -5490623 0 16 -5490680 0 0 -5490704 128 0 -5490857 0 0 -5490885 128 0 -5490986 0 0 -5491076 128 0 -5491171 0 0 -5491302 128 0 -5491446 0 0 -5491471 128 0 -5492235 0 0 -5492243 128 0 -5492375 0 0 -5492383 128 0 -5492658 0 0 -5492677 128 0 -5492806 0 0 -5492828 128 0 -5492953 0 0 -5492979 128 0 -5493099 0 0 -5493135 128 0 -5493270 0 0 -5493308 128 0 -5493412 0 0 -5493453 128 0 -5493563 0 0 -5493597 128 0 -5494025 0 0 -5494048 128 0 -5494188 0 0 -5494211 128 0 -5494352 0 0 -5494387 128 0 -5494498 0 0 -5494540 128 0 -5494953 0 0 -5495992 128 0 -5496716 0 0 -5499488 totRewards = 80 -5499488 64 8 -5499679 0 8 -5499688 0 0 -5499710 64 0 -5500315 0 0 -5500332 64 0 -5500857 0 0 -5500864 64 0 -5501651 0 0 -5501666 64 0 -5501815 0 0 -5501849 64 0 -5502352 0 0 -5502374 64 0 -5502719 0 0 -5502754 64 0 -5503075 0 0 -5503101 64 0 -5503248 0 0 -5503270 64 0 -5503413 0 0 -5503429 64 0 -5504778 0 0 -5504816 64 0 -5505289 0 0 -5505322 64 0 -5505451 0 0 -5505486 64 0 -5505953 0 0 -5505978 64 0 -5506147 0 0 -5506170 64 0 -5506329 0 0 -5506353 64 0 -5506421 0 0 -5506469 64 0 -5506778 0 0 -5506805 64 0 -5506931 0 0 -5509416 totRewards = 81 -5509416 128 16 -5509589 0 16 -5509616 0 0 -5509638 128 0 -5509826 0 0 -5509880 128 0 -5509969 0 0 -5510015 128 0 -5510229 0 0 -5510266 128 0 -5510363 0 0 -5510428 128 0 -5510779 0 0 -5510797 128 0 -5511059 0 0 -5511067 128 0 -5511205 0 0 -5511216 128 0 -5511348 0 0 -5511371 128 0 -5511502 0 0 -5511526 128 0 -5511661 0 0 -5511685 128 0 -5511813 0 0 -5511857 128 0 -5511975 0 0 -5512018 128 0 -5512139 0 0 -5512185 128 0 -5512300 0 0 -5512351 128 0 -5512471 0 0 -5512526 128 0 -5512630 0 0 -5512700 128 0 -5512775 0 0 -5519879 128 0 -5520118 0 0 -5533316 totRewards = 82 -5533316 64 8 -5533516 64 0 -5533517 0 0 -5533555 64 0 -5533772 0 0 -5533792 64 0 -5534142 0 0 -5534154 64 0 -5534274 0 0 -5534284 64 0 -5535748 0 0 -5535777 64 0 -5535895 0 0 -5535924 64 0 -5537177 0 0 -5537199 64 0 -5537318 0 0 -5541079 totRewards = 83 -5541079 128 16 -5541254 0 16 -5541279 0 0 -5541288 128 0 -5541512 0 0 -5541545 128 0 -5541630 0 0 -5541678 128 0 -5541890 0 0 -5541913 128 0 -5542025 0 0 -5542054 128 0 -5542143 0 0 -5542156 128 0 -5542425 0 0 -5542445 128 0 -5542562 0 0 -5542589 128 0 -5542859 0 0 -5542881 128 0 -5543002 0 0 -5543039 128 0 -5543160 0 0 -5543199 128 0 -5543325 0 0 -5543358 128 0 -5543481 0 0 -5543518 128 0 -5543635 0 0 -5543679 128 0 -5543800 0 0 -5543813 128 0 -5544386 0 0 -5544420 128 0 -5544542 0 0 -5544566 128 0 -5544692 0 0 -5544736 128 0 -5544842 0 0 -5544889 128 0 -5545012 0 0 -5545052 128 0 -5545166 0 0 -5545223 128 0 -5545336 0 0 -5545393 128 0 -5545489 0 0 -5548223 totRewards = 84 -5548223 64 8 -5548403 0 8 -5548423 0 0 -5548443 64 0 -5550523 0 0 -5550534 64 0 -5550680 0 0 -5550695 64 0 -5550849 0 0 -5550867 64 0 -5551016 0 0 -5551037 64 0 -5551166 0 0 -5551211 64 0 -5551323 0 0 -5551368 64 0 -5551477 0 0 -5551547 64 0 -5551624 0 0 -5554292 totRewards = 85 -5554292 128 16 -5554457 0 16 -5554492 0 0 -5554546 128 0 -5555028 0 0 -5555052 128 0 -5555280 0 0 -5555313 128 0 -5555704 0 0 -5555713 128 0 -5556010 0 0 -5556022 128 0 -5556151 0 0 -5556178 128 0 -5556304 0 0 -5556332 128 0 -5556462 0 0 -5556492 128 0 -5556626 0 0 -5556666 128 0 -5556785 0 0 -5556832 128 0 -5556948 0 0 -5556990 128 0 -5557109 0 0 -5557148 128 0 -5557267 0 0 -5557313 128 0 -5557424 0 0 -5557480 128 0 -5557587 0 0 -5557650 128 0 -5557751 0 0 -5557820 128 0 -5557935 0 0 -5558046 128 0 -5558087 0 0 -5558177 128 0 -5558218 0 0 -5558252 128 0 -5558287 0 0 -5558357 128 0 -5558445 0 0 -5558528 128 0 -5558607 0 0 -5558717 128 0 -5558732 0 0 -5558768 128 0 -5558795 0 0 -5562550 totRewards = 86 -5562550 64 8 -5562750 64 0 -5564913 0 0 -5564928 64 0 -5565074 0 0 -5565091 64 0 -5565240 0 0 -5565267 64 0 -5565390 0 0 -5565429 64 0 -5565542 0 0 -5565606 64 0 -5565707 0 0 -5565809 64 0 -5565853 0 0 -5568670 totRewards = 87 -5568670 128 16 -5568855 0 16 -5568870 0 0 -5568890 128 0 -5569110 0 0 -5569134 128 0 -5569244 0 0 -5569268 128 0 -5569487 0 0 -5569531 128 0 -5569629 0 0 -5569702 128 0 -5570063 0 0 -5570080 128 0 -5570217 0 0 -5570238 128 0 -5570530 0 0 -5570564 128 0 -5570688 0 0 -5570730 128 0 -5570860 0 0 -5570889 128 0 -5571015 0 0 -5571047 128 0 -5571163 0 0 -5571202 128 0 -5571324 0 0 -5571365 128 0 -5571485 0 0 -5571529 128 0 -5571648 0 0 -5571693 128 0 -5571828 0 0 -5571868 128 0 -5571985 0 0 -5572038 128 0 -5572153 0 0 -5572211 128 0 -5572300 0 0 -5572375 128 0 -5572452 0 0 -5575269 totRewards = 88 -5575269 64 8 -5575469 64 0 -5575482 0 0 -5575497 64 0 -5577782 0 0 -5577794 64 0 -5578136 0 0 -5578142 64 0 -5578280 0 0 -5578339 64 0 -5578441 0 0 -5578477 64 0 -5578624 0 0 -5578635 64 0 -5579997 0 0 -5580009 64 0 -5580332 0 0 -5580343 64 0 -5581326 0 0 -5581370 64 0 -5581481 0 0 -5584237 totRewards = 89 -5584237 128 16 -5584409 0 16 -5584437 0 0 -5584492 128 0 -5584822 0 0 -5584857 128 0 -5584977 0 0 -5585004 128 0 -5585112 0 0 -5585128 128 0 -5585225 0 0 -5585268 128 0 -5585662 0 0 -5585688 128 0 -5585976 0 0 -5586003 128 0 -5586128 0 0 -5586170 128 0 -5586293 0 0 -5586327 128 0 -5586459 0 0 -5586502 128 0 -5586629 0 0 -5586677 128 0 -5586791 0 0 -5586838 128 0 -5586942 0 0 -5586999 128 0 -5587063 0 0 -5592356 totRewards = 90 -5592356 64 8 -5592556 64 0 -5592561 0 0 -5592581 64 0 -5594842 0 0 -5594869 64 0 -5595341 0 0 -5595378 64 0 -5595506 0 0 -5595526 64 0 -5595670 0 0 -5595692 64 0 -5595830 0 0 -5595849 64 0 -5596466 0 0 -5596497 64 0 -5596934 0 0 -5596963 64 0 -5597803 0 0 -5597843 64 0 -5597971 0 0 -5598005 64 0 -5598132 0 0 -5598150 64 0 -5598285 0 0 -5598344 64 0 -5598400 0 0 -5600914 totRewards = 91 -5600914 128 16 -5601092 0 16 -5601114 0 0 -5601176 128 0 -5601509 0 0 -5601530 128 0 -5601792 0 0 -5601816 128 0 -5601902 0 0 -5601944 128 0 -5602063 0 0 -5602070 128 0 -5602335 0 0 -5602352 128 0 -5602634 0 0 -5602643 128 0 -5602793 0 0 -5602805 128 0 -5602949 0 0 -5602969 128 0 -5603268 0 0 -5603303 128 0 -5603434 0 0 -5603471 128 0 -5603603 0 0 -5603638 128 0 -5603763 0 0 -5603799 128 0 -5603928 0 0 -5603960 128 0 -5604082 0 0 -5604121 128 0 -5604246 0 0 -5604284 128 0 -5604407 0 0 -5604452 128 0 -5604567 0 0 -5604632 128 0 -5604716 0 0 -5604760 128 0 -5604870 0 0 -5604943 128 0 -5605063 0 0 -5605096 128 0 -5605203 0 0 -5605278 128 0 -5605313 0 0 -5605453 128 0 -5605549 0 0 -5605629 128 0 -5605720 0 0 -5608617 totRewards = 92 -5608617 64 8 -5608813 0 8 -5608817 0 0 -5608829 64 0 -5610943 0 0 -5610961 64 0 -5611607 0 0 -5611635 64 0 -5611766 0 0 -5611802 64 0 -5611924 0 0 -5611971 64 0 -5612070 0 0 -5615107 totRewards = 93 -5615107 128 16 -5615307 128 0 -5615390 0 0 -5615431 128 0 -5615763 0 0 -5615776 128 0 -5616012 0 0 -5616035 128 0 -5616146 0 0 -5616201 128 0 -5616284 0 0 -5616302 128 0 -5616430 0 0 -5616458 128 0 -5616567 0 0 -5616600 128 0 -5616726 0 0 -5616731 128 0 -5617017 0 0 -5617048 128 0 -5617168 0 0 -5617211 128 0 -5617333 0 0 -5617362 128 0 -5617495 0 0 -5617528 128 0 -5617659 0 0 -5617702 128 0 -5617820 0 0 -5617867 128 0 -5617986 0 0 -5618033 128 0 -5618149 0 0 -5618186 128 0 -5618466 0 0 -5618485 128 0 -5618614 0 0 -5618652 128 0 -5618765 0 0 -5618810 128 0 -5618920 0 0 -5618965 128 0 -5619076 0 0 -5619128 128 0 -5619234 0 0 -5619306 128 0 -5619413 0 0 -5619458 128 0 -5619578 0 0 -5619627 128 0 -5619748 0 0 -5619783 128 0 -5619910 0 0 -5619959 128 0 -5620081 0 0 -5620130 128 0 -5620232 0 0 -5620305 128 0 -5620393 0 0 -5620555 128 0 -5620598 0 0 -5621238 128 0 -5621262 0 0 -5621287 128 0 -5621312 0 0 -5624444 totRewards = 94 -5624444 64 8 -5624629 0 8 -5624644 0 0 -5624653 64 0 -5625828 0 0 -5625839 64 0 -5626791 0 0 -5626807 64 0 -5627126 0 0 -5627149 64 0 -5627285 0 0 -5627314 64 0 -5627441 0 0 -5627489 64 0 -5627614 0 0 -5627637 64 0 -5627759 0 0 -5630493 totRewards = 95 -5630493 128 16 -5630678 0 16 -5630693 0 0 -5630822 128 0 -5630934 0 0 -5630939 128 0 -5631056 0 0 -5631100 128 0 -5631451 0 0 -5631499 128 0 -5631884 0 0 -5631913 128 0 -5632026 0 0 -5632054 128 0 -5632335 0 0 -5632361 128 0 -5632485 0 0 -5632518 128 0 -5632645 0 0 -5632679 128 0 -5632804 0 0 -5632843 128 0 -5632970 0 0 -5633021 128 0 -5633146 0 0 -5633191 128 0 -5633305 0 0 -5633359 128 0 -5633455 0 0 -5633516 128 0 -5633624 0 0 -5633663 128 0 -5633790 0 0 -5633840 128 0 -5633945 0 0 -5634006 128 0 -5634112 0 0 -5634153 128 0 -5634272 0 0 -5634326 128 0 -5634427 0 0 -5634517 128 0 -5634652 0 0 -5634688 128 0 -5634714 0 0 -5634737 128 0 -5634799 0 0 -5634870 128 0 -5634962 0 0 -5635118 128 0 -5635172 0 0 -5635251 128 0 -5635325 0 0 -5638851 totRewards = 96 -5638851 64 8 -5639027 0 8 -5639051 0 0 -5639057 64 0 -5641158 0 0 -5641166 64 0 -5641312 0 0 -5641327 64 0 -5641632 0 0 -5641660 64 0 -5641799 0 0 -5641827 64 0 -5641967 0 0 -5642003 64 0 -5642135 0 0 -5642174 64 0 -5642295 0 0 -5642349 64 0 -5642450 0 0 -5642688 64 0 -5643624 0 0 -5648879 totRewards = 97 -5648879 128 16 -5649079 128 0 -5649159 0 0 -5649190 128 0 -5649783 0 0 -5649834 128 0 -5649930 0 0 -5649976 128 0 -5650367 0 0 -5650379 128 0 -5650813 0 0 -5650830 128 0 -5650971 0 0 -5650983 128 0 -5651115 0 0 -5651141 128 0 -5651273 0 0 -5651307 128 0 -5651436 0 0 -5651479 128 0 -5651605 0 0 -5651646 128 0 -5651763 0 0 -5651812 128 0 -5651913 0 0 -5651970 128 0 -5652065 0 0 -5652111 128 0 -5652224 0 0 -5652262 128 0 -5652382 0 0 -5652427 128 0 -5652542 0 0 -5652585 128 0 -5652710 0 0 -5652743 128 0 -5652867 0 0 -5652915 128 0 -5653031 0 0 -5653085 128 0 -5653183 0 0 -5653249 128 0 -5653342 0 0 -5656059 totRewards = 98 -5656059 64 8 -5656235 0 8 -5656259 0 0 -5656259 64 0 -5657885 0 0 -5657895 64 0 -5659034 0 0 -5659055 64 0 -5659196 0 0 -5659226 64 0 -5659351 0 0 -5659384 64 0 -5659509 0 0 -5659577 64 0 -5659599 0 0 -5662554 totRewards = 99 -5662554 128 16 -5662735 0 16 -5662754 0 0 -5662788 128 0 -5662975 0 0 -5663017 128 0 -5663109 0 0 -5663163 128 0 -5663375 0 0 -5663405 128 0 -5663502 0 0 -5663561 128 0 -5663933 0 0 -5663957 128 0 -5664383 0 0 -5664415 128 0 -5664537 0 0 -5664572 128 0 -5664697 0 0 -5664733 128 0 -5664862 0 0 -5664906 128 0 -5665023 0 0 -5665067 128 0 -5665186 0 0 -5665233 128 0 -5665345 0 0 -5665383 128 0 -5665521 0 0 -5665557 128 0 -5665678 0 0 -5665722 128 0 -5665841 0 0 -5665894 128 0 -5666004 0 0 -5666057 128 0 -5666170 0 0 -5666214 128 0 -5666332 0 0 -5666386 128 0 -5666500 0 0 -5666552 128 0 -5666666 0 0 -5666710 128 0 -5666819 0 0 -5666871 128 0 -5666975 0 0 -5667679 128 0 -5667780 0 0 -5667820 128 0 -5667924 0 0 -5667975 128 0 -5668075 0 0 -5668129 128 0 -5668240 0 0 -5668270 128 0 -5668389 0 0 -5668428 128 0 -5668557 0 0 -5668585 128 0 -5668714 0 0 -5668776 128 0 -5668883 0 0 -5673440 totRewards = 100 -5673440 64 8 -5673640 64 0 -5675190 0 0 -5675210 64 0 -5675339 0 0 -5675358 64 0 -5675835 0 0 -5675852 64 0 -5676152 0 0 -5676181 64 0 -5676317 0 0 -5676322 64 0 -5676788 0 0 -5676803 64 0 -5677296 0 0 -5677315 64 0 -5677473 0 0 -5677487 64 0 -5677645 0 0 -5677660 64 0 -5677807 0 0 -5677844 64 0 -5678474 0 0 -5678494 64 0 -5679104 0 0 -5679146 64 0 -5679622 0 0 -5679652 64 0 -5679774 0 0 -5679817 64 0 -5679938 0 0 -5679994 64 0 -5680085 0 0 -5682771 totRewards = 101 -5682771 128 16 -5682971 128 0 -5682977 0 0 -5683060 128 0 -5683375 0 0 -5683438 128 0 -5683560 0 0 -5683593 128 0 -5683703 0 0 -5683721 128 0 -5683815 0 0 -5683845 128 0 -5683965 0 0 -5683982 128 0 -5684243 0 0 -5684256 128 0 -5684680 0 0 -5684711 128 0 -5684843 0 0 -5684866 128 0 -5684992 0 0 -5685027 128 0 -5685150 0 0 -5685197 128 0 -5685319 0 0 -5685370 128 0 -5685483 0 0 -5685531 128 0 -5685652 0 0 -5685700 128 0 -5685822 0 0 -5685873 128 0 -5685989 0 0 -5686038 128 0 -5686141 0 0 -5686197 128 0 -5686300 0 0 -5686344 128 0 -5686456 0 0 -5686512 128 0 -5686612 0 0 -5686685 128 0 -5686815 0 0 -5686827 128 0 -5686975 0 0 -5687022 128 0 -5687140 0 0 -5687204 128 0 -5687320 0 0 -5687399 128 0 -5687416 0 0 -5687432 128 0 -5687474 0 0 -5690822 totRewards = 102 -5690822 64 8 -5691022 64 0 -5691038 0 0 -5691053 64 0 -5691660 0 0 -5691672 64 0 -5693493 0 0 -5693512 64 0 -5693653 0 0 -5693682 64 0 -5693805 0 0 -5693842 64 0 -5693957 0 0 -5694019 64 0 -5694105 0 0 -5697110 totRewards = 103 -5697110 128 16 -5697310 128 0 -5697315 0 0 -5697352 128 0 -5697566 0 0 -5697585 128 0 -5697701 0 0 -5697734 128 0 -5697966 0 0 -5697986 128 0 -5698098 0 0 -5698149 128 0 -5698532 0 0 -5698553 128 0 -5698996 0 0 -5699025 128 0 -5699162 0 0 -5699191 128 0 -5699323 0 0 -5699355 128 0 -5699492 0 0 -5699532 128 0 -5699662 0 0 -5699707 128 0 -5699824 0 0 -5699871 128 0 -5699977 0 0 -5700030 128 0 -5700120 0 0 -5700191 128 0 -5700282 0 0 -5700354 128 0 -5700433 0 0 -5703554 totRewards = 104 -5703554 64 8 -5703739 0 8 -5703754 0 0 -5703766 64 0 -5704513 0 0 -5704522 64 0 -5705904 0 0 -5705924 64 0 -5706065 0 0 -5706088 64 0 -5706232 0 0 -5706255 64 0 -5706393 0 0 -5706423 64 0 -5706553 0 0 -5706587 64 0 -5706710 0 0 -5706757 64 0 -5706875 0 0 -5708022 64 0 -5708875 0 0 -5708897 64 0 -5710073 0 0 -5710134 64 0 -5710212 0 0 -5712808 totRewards = 105 -5712808 128 16 -5712986 0 16 -5713008 0 0 -5713059 128 0 -5713254 0 0 -5713265 128 0 -5713378 0 0 -5713420 128 0 -5713793 0 0 -5713832 128 0 -5714102 0 0 -5714113 128 0 -5714248 0 0 -5714274 128 0 -5714407 0 0 -5714434 128 0 -5714565 0 0 -5714600 128 0 -5714710 0 0 -5714751 128 0 -5714880 0 0 -5714918 128 0 -5715052 0 0 -5715093 128 0 -5715216 0 0 -5715268 128 0 -5715379 0 0 -5715429 128 0 -5715539 0 0 -5715600 128 0 -5715673 0 0 -5715761 128 0 -5715829 0 0 -5719199 totRewards = 106 -5719199 64 8 -5719399 64 0 - - description: state script log run 2 - task_epochs: 4, -, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x139658897012240 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -7499807 totRewards = 1 -7499807 64 200 -7500007 64 192 -7500065 0 128 -7500089 64 128 -7500220 0 128 -7500233 64 128 -7500345 0 128 -7500352 64 128 -7500830 0 128 -7500836 64 128 -7500943 0 128 -7500963 64 128 -7501077 0 128 -7501087 64 128 -7501201 0 128 -7501216 64 128 -7501327 0 128 -7501354 64 128 -7501470 0 128 -7501488 64 128 -7501621 0 128 -7501641 64 128 -7501768 0 128 -7501786 64 128 -7501914 0 128 -7501942 64 128 -7502067 0 128 -7502104 64 128 -7502224 0 128 -7502270 64 128 -7502382 0 128 -7502438 64 128 -7502547 0 128 -7502591 64 128 -7502710 0 128 -7502748 64 128 -7502863 0 128 -7502898 64 128 -7503321 0 128 -7503349 64 128 -7503492 0 128 -7503512 64 128 -7503675 0 128 -7503685 64 128 -7503829 0 128 -7503869 64 128 -7504008 0 128 -7504049 64 128 -7504185 0 128 -7504229 64 128 -7504335 0 128 -7504385 64 128 -7504830 0 128 -7504850 64 128 -7505318 0 128 -7505346 64 128 -7505492 0 128 -7505523 64 128 -7505673 0 128 -7505703 64 128 -7505819 0 128 -7509448 totRewards = 2 -7509448 128 144 -7509648 128 128 -7509830 0 0 -7509841 128 0 -7509844 0 0 -7509909 128 0 -7509912 0 0 -7509920 128 0 -7509985 0 0 -7510002 128 0 -7510144 0 0 -7510154 128 0 -7510255 0 0 -7510314 128 0 -7510656 0 0 -7510682 128 0 -7510795 0 0 -7510807 128 0 -7511073 0 0 -7511090 128 0 -7511207 0 0 -7511234 128 0 -7511347 0 0 -7511392 128 0 -7511490 0 0 -7511537 128 0 -7511633 0 0 -7511693 128 0 -7511798 0 0 -7511856 128 0 -7511969 0 0 -7512023 128 0 -7512135 0 0 -7512198 128 0 -7512321 0 0 -7512384 128 0 -7512512 0 0 -7512575 128 0 -7512699 0 0 -7512769 128 0 -7512896 0 0 -7512953 128 0 -7513081 0 0 -7513127 128 0 -7514538 0 0 -7514575 128 0 -7514712 0 0 -7514754 128 0 -7514891 0 0 -7514952 128 0 -7515072 0 0 -7515133 128 0 -7515263 0 0 -7515316 128 0 -7515435 0 0 -7515498 128 0 -7515609 0 0 -7515678 128 0 -7515789 0 0 -7515866 128 0 -7515967 0 0 -7516022 128 0 -7516088 0 0 -7516194 128 0 -7516468 0 0 -7516494 128 0 -7516627 0 0 -7516666 128 0 -7516803 0 0 -7516877 128 0 -7516984 0 0 -7517035 128 0 -7517176 0 0 -7517288 128 0 -7517394 0 0 -7517922 128 0 -7517951 0 0 -7518111 128 0 -7518125 0 0 -7518392 128 0 -7518503 0 0 -7518598 128 0 -7518683 0 0 -7518837 128 0 -7518854 0 0 -7527467 128 0 -7527970 0 0 -7527980 128 0 -7528348 0 0 -7528369 128 0 -7528497 0 0 -7528533 128 0 -7528645 0 0 -7528691 128 0 -7528805 0 0 -7528852 128 0 -7528967 0 0 -7532478 totRewards = 3 -7532478 64 8 -7532678 64 0 -7533690 0 0 -7533700 64 0 -7533836 0 0 -7533851 64 0 -7533973 0 0 -7533982 64 0 -7534275 0 0 -7534294 64 0 -7534429 0 0 -7534443 64 0 -7534775 0 0 -7534796 64 0 -7534938 0 0 -7534974 64 0 -7535284 0 0 -7535321 64 0 -7536105 0 0 -7536111 64 0 -7536280 0 0 -7536300 64 0 -7536473 0 0 -7536500 64 0 -7536664 0 0 -7536677 64 0 -7536833 0 0 -7536885 64 0 -7537004 0 0 -7537062 64 0 -7537189 0 0 -7537254 64 0 -7537988 0 0 -7538049 64 0 -7538195 0 0 -7538227 64 0 -7538413 0 0 -7538435 64 0 -7538599 0 0 -7538659 64 0 -7538784 0 0 -7539025 64 0 -7539161 0 0 -7539189 64 0 -7539338 0 0 -7539407 64 0 -7539582 0 0 -7540550 64 0 -7540819 0 0 -7540833 64 0 -7540992 0 0 -7541002 64 0 -7541166 0 0 -7541175 64 0 -7541333 0 0 -7541372 64 0 -7541521 0 0 -7541562 64 0 -7541687 0 0 -7545424 totRewards = 4 -7545424 128 16 -7545556 0 16 -7545595 128 16 -7545624 128 0 -7545675 0 0 -7545700 128 0 -7545842 0 0 -7545893 128 0 -7546045 0 0 -7546114 128 0 -7546712 0 0 -7546739 128 0 -7546858 0 0 -7546874 128 0 -7546980 0 0 -7547012 128 0 -7547114 0 0 -7547153 128 0 -7547255 0 0 -7547294 128 0 -7547398 0 0 -7547439 128 0 -7547540 0 0 -7547582 128 0 -7547696 0 0 -7547741 128 0 -7547855 0 0 -7547906 128 0 -7548020 0 0 -7548069 128 0 -7548183 0 0 -7548246 128 0 -7548357 0 0 -7548418 128 0 -7548525 0 0 -7548577 128 0 -7548709 0 0 -7548735 128 0 -7549034 0 0 -7549043 128 0 -7549170 0 0 -7549221 128 0 -7549341 0 0 -7549385 128 0 -7549499 0 0 -7549566 128 0 -7549586 0 0 -7549623 128 0 -7549666 0 0 -7549732 128 0 -7549840 0 0 -7549905 128 0 -7550015 0 0 -7550072 128 0 -7550178 0 0 -7550246 128 0 -7550331 0 0 -7550428 128 0 -7550513 0 0 -7550590 128 0 -7550685 0 0 -7550772 128 0 -7550839 0 0 -7550912 128 0 -7551001 0 0 -7551092 128 0 -7551110 0 0 -7551154 128 0 -7551186 0 0 -7551269 128 0 -7551359 0 0 -7551455 128 0 -7551474 0 0 -7551508 128 0 -7551543 0 0 -7554803 totRewards = 5 -7554803 64 8 -7555003 64 0 -7555514 0 0 -7555522 64 0 -7555924 0 0 -7555942 64 0 -7556063 0 0 -7556081 64 0 -7556203 0 0 -7556225 64 0 -7556353 0 0 -7556376 64 0 -7556520 0 0 -7556534 64 0 -7556675 0 0 -7556704 64 0 -7557239 0 0 -7557274 64 0 -7557449 0 0 -7557479 64 0 -7557658 0 0 -7557687 64 0 -7557844 0 0 -7557899 64 0 -7558036 0 0 -7558079 64 0 -7558777 0 0 -7558799 64 0 -7558950 0 0 -7558985 64 0 -7559119 0 0 -7559170 64 0 -7559304 0 0 -7559320 64 0 -7559771 0 0 -7559798 64 0 -7559938 0 0 -7559966 64 0 -7560124 0 0 -7560146 64 0 -7560327 0 0 -7560337 64 0 -7561101 0 0 -7561107 64 0 -7561272 0 0 -7561309 64 0 -7561449 0 0 -7561499 64 0 -7561608 0 0 -7567350 totRewards = 6 -7567350 128 16 -7567534 0 16 -7567550 0 0 -7567605 128 0 -7567921 0 0 -7567954 128 0 -7568061 0 0 -7568094 128 0 -7568302 0 0 -7568359 128 0 -7568446 0 0 -7568464 128 0 -7568594 0 0 -7568619 128 0 -7568723 0 0 -7568763 128 0 -7568863 0 0 -7568898 128 0 -7569021 0 0 -7569058 128 0 -7569166 0 0 -7569215 128 0 -7569320 0 0 -7569370 128 0 -7569487 0 0 -7569540 128 0 -7569660 0 0 -7569715 128 0 -7569826 0 0 -7569886 128 0 -7569997 0 0 -7570055 128 0 -7570166 0 0 -7570228 128 0 -7570323 0 0 -7570390 128 0 -7570486 0 0 -7570544 128 0 -7570652 0 0 -7570705 128 0 -7570817 0 0 -7570880 128 0 -7570994 0 0 -7571053 128 0 -7571170 0 0 -7571231 128 0 -7571323 0 0 -7571403 128 0 -7571464 0 0 -7574231 totRewards = 7 -7574231 64 8 -7574415 0 8 -7574425 64 8 -7574431 64 0 -7574779 0 0 -7574797 64 0 -7575035 0 0 -7575056 64 0 -7575163 0 0 -7575183 64 0 -7575448 0 0 -7575456 64 0 -7575587 0 0 -7575611 64 0 -7575740 0 0 -7575751 64 0 -7576067 0 0 -7576080 64 0 -7576414 0 0 -7576428 64 0 -7576576 0 0 -7576613 64 0 -7576929 0 0 -7576964 64 0 -7577119 0 0 -7577149 64 0 -7577275 0 0 -7577325 64 0 -7577456 0 0 -7577480 64 0 -7577802 0 0 -7577819 64 0 -7577960 0 0 -7577994 64 0 -7578136 0 0 -7578159 64 0 -7578502 0 0 -7578520 64 0 -7579482 0 0 -7579497 64 0 -7579628 0 0 -7579682 64 0 -7579827 0 0 -7579953 64 0 -7580203 0 0 -7580264 64 0 -7580397 0 0 -7580420 64 0 -7580591 0 0 -7580646 64 0 -7580794 0 0 -7580861 64 0 -7580959 0 0 -7581217 64 0 -7581305 0 0 -7581342 64 0 -7581506 0 0 -7581525 64 0 -7581685 0 0 -7581733 64 0 -7581865 0 0 -7586030 totRewards = 8 -7586030 128 16 -7586203 0 16 -7586230 0 0 -7586276 128 0 -7586594 0 0 -7586646 128 0 -7586869 0 0 -7586882 128 0 -7586984 0 0 -7587040 128 0 -7587141 0 0 -7587153 128 0 -7587270 0 0 -7587284 128 0 -7587411 0 0 -7587449 128 0 -7587570 0 0 -7587605 128 0 -7587719 0 0 -7587756 128 0 -7587868 0 0 -7587918 128 0 -7588020 0 0 -7588073 128 0 -7588193 0 0 -7588236 128 0 -7588357 0 0 -7588414 128 0 -7588530 0 0 -7588595 128 0 -7588708 0 0 -7588763 128 0 -7588882 0 0 -7588938 128 0 -7589043 0 0 -7589094 128 0 -7589207 0 0 -7589228 128 0 -7589361 0 0 -7589395 128 0 -7589516 0 0 -7589559 128 0 -7589671 0 0 -7589729 128 0 -7589838 0 0 -7589910 128 0 -7589918 0 0 -7589962 128 0 -7590005 0 0 -7590071 128 0 -7590176 0 0 -7590329 128 0 -7590370 0 0 -7590473 128 0 -7590481 0 0 -7590519 128 0 -7590565 0 0 -7593508 totRewards = 9 -7593508 64 8 -7593703 0 8 -7593708 0 0 -7593718 64 0 -7593939 0 0 -7593957 64 0 -7594730 0 0 -7594744 64 0 -7594863 0 0 -7594890 64 0 -7595020 0 0 -7595030 64 0 -7595169 0 0 -7595174 64 0 -7595653 0 0 -7595670 64 0 -7595828 0 0 -7595841 64 0 -7595986 0 0 -7596013 64 0 -7596162 0 0 -7596199 64 0 -7596330 0 0 -7596379 64 0 -7596506 0 0 -7596524 64 0 -7596672 0 0 -7596684 64 0 -7596853 0 0 -7596873 64 0 -7597016 0 0 -7597070 64 0 -7597351 0 0 -7597375 64 0 -7597514 0 0 -7597545 64 0 -7598031 0 0 -7598062 64 0 -7598180 0 0 -7600753 totRewards = 10 -7600753 128 16 -7600928 0 16 -7600953 0 0 -7600990 128 0 -7601310 0 0 -7601350 128 0 -7601572 0 0 -7601603 128 0 -7601699 0 0 -7601749 128 0 -7602139 0 0 -7602168 128 0 -7602447 0 0 -7602470 128 0 -7602597 0 0 -7602634 128 0 -7602764 0 0 -7602799 128 0 -7602926 0 0 -7602968 128 0 -7603094 0 0 -7603151 128 0 -7603268 0 0 -7603328 128 0 -7603449 0 0 -7603504 128 0 -7603615 0 0 -7603667 128 0 -7603785 0 0 -7603834 128 0 -7603946 0 0 -7604000 128 0 -7604090 0 0 -7604243 128 0 -7604261 0 0 -7604340 128 0 -7604432 0 0 -7604506 128 0 -7604584 0 0 -7604667 128 0 -7604764 0 0 -7604873 128 0 -7604886 0 0 -7604910 128 0 -7604961 0 0 -7608088 totRewards = 11 -7608088 64 8 -7608263 0 8 -7608281 64 8 -7608288 64 0 -7609448 0 0 -7609467 64 0 -7609592 0 0 -7609607 64 0 -7609745 0 0 -7609757 64 0 -7610240 0 0 -7610256 64 0 -7610412 0 0 -7610424 64 0 -7610764 0 0 -7610772 64 0 -7610918 0 0 -7610952 64 0 -7611077 0 0 -7611115 64 0 -7611243 0 0 -7611289 64 0 -7611586 0 0 -7611606 64 0 -7611757 0 0 -7611794 64 0 -7612355 0 0 -7612386 64 0 -7612574 0 0 -7612614 64 0 -7612884 0 0 -7612901 64 0 -7613054 0 0 -7613091 64 0 -7613221 0 0 -7613257 64 0 -7613386 0 0 -7618178 totRewards = 12 -7618178 128 16 -7618307 0 16 -7618378 0 0 -7618396 128 0 -7618712 0 0 -7618752 128 0 -7618860 0 0 -7618907 128 0 -7618984 0 0 -7619030 128 0 -7619120 0 0 -7619158 128 0 -7619270 0 0 -7619285 128 0 -7619414 0 0 -7619429 128 0 -7619552 0 0 -7619584 128 0 -7619716 0 0 -7619727 128 0 -7619858 0 0 -7619880 128 0 -7620005 0 0 -7620054 128 0 -7620174 0 0 -7620222 128 0 -7620341 0 0 -7620397 128 0 -7620509 0 0 -7620586 128 0 -7620743 0 0 -7621246 128 0 -7621352 0 0 -7621407 128 0 -7621506 0 0 -7621630 128 0 -7621695 0 0 -7621754 128 0 -7621880 0 0 -7621924 128 0 -7622044 0 0 -7622121 128 0 -7622225 0 0 -7622291 128 0 -7622376 0 0 -7622477 128 0 -7622496 0 0 -7627198 totRewards = 13 -7627198 64 8 -7627398 64 0 -7627485 0 0 -7627518 64 0 -7627731 0 0 -7627748 64 0 -7628116 0 0 -7628129 64 0 -7628673 0 0 -7628690 64 0 -7629150 0 0 -7629167 64 0 -7629317 0 0 -7629333 64 0 -7629487 0 0 -7629508 64 0 -7629653 0 0 -7629679 64 0 -7629822 0 0 -7629839 64 0 -7630177 0 0 -7630189 64 0 -7630327 0 0 -7630372 64 0 -7630981 0 0 -7631001 64 0 -7631145 0 0 -7631167 64 0 -7631302 0 0 -7631325 64 0 -7631462 0 0 -7631485 64 0 -7631620 0 0 -7631654 64 0 -7631784 0 0 -7631820 64 0 -7632823 0 0 -7632847 64 0 -7632982 0 0 -7633020 64 0 -7633130 0 0 -7633190 64 0 -7633269 0 0 -7636615 totRewards = 14 -7636615 128 16 -7636786 0 16 -7636815 0 0 -7636824 128 0 -7637013 0 0 -7637060 128 0 -7637204 0 0 -7637225 128 0 -7637386 0 0 -7637443 128 0 -7637537 0 0 -7637577 128 0 -7637671 0 0 -7637683 128 0 -7637804 0 0 -7637816 128 0 -7637937 0 0 -7637954 128 0 -7638227 0 0 -7638255 128 0 -7638375 0 0 -7638411 128 0 -7638523 0 0 -7638558 128 0 -7638691 0 0 -7638728 128 0 -7638849 0 0 -7638900 128 0 -7639021 0 0 -7639074 128 0 -7639196 0 0 -7639244 128 0 -7639364 0 0 -7639418 128 0 -7639531 0 0 -7639582 128 0 -7639692 0 0 -7639746 128 0 -7639849 0 0 -7639908 128 0 -7640017 0 0 -7640064 128 0 -7640179 0 0 -7640234 128 0 -7640353 0 0 -7640407 128 0 -7640516 0 0 -7640591 128 0 -7640656 0 0 -7643472 totRewards = 15 -7643472 64 8 -7643672 64 0 -7644135 0 0 -7644143 64 0 -7644273 0 0 -7644285 64 0 -7644681 0 0 -7644691 64 0 -7644821 0 0 -7644835 64 0 -7645128 0 0 -7645141 64 0 -7645287 0 0 -7645300 64 0 -7645452 0 0 -7645462 64 0 -7645617 0 0 -7645632 64 0 -7645772 0 0 -7645801 64 0 -7645932 0 0 -7645969 64 0 -7646102 0 0 -7646129 64 0 -7646634 0 0 -7646657 64 0 -7646790 0 0 -7646833 64 0 -7646939 0 0 -7647007 64 0 -7647074 0 0 -7649822 totRewards = 16 -7649822 128 16 -7650002 0 16 -7650022 0 0 -7650070 128 0 -7650268 0 0 -7650297 128 0 -7650402 0 0 -7650451 128 0 -7650656 0 0 -7650688 128 0 -7650785 0 0 -7650847 128 0 -7651084 0 0 -7651100 128 0 -7651213 0 0 -7651247 128 0 -7651522 0 0 -7651547 128 0 -7651668 0 0 -7651708 128 0 -7651826 0 0 -7651870 128 0 -7651999 0 0 -7652037 128 0 -7652156 0 0 -7652209 128 0 -7652328 0 0 -7652377 128 0 -7652500 0 0 -7652551 128 0 -7652658 0 0 -7652704 128 0 -7652821 0 0 -7652866 128 0 -7652976 0 0 -7653038 128 0 -7653142 0 0 -7653199 128 0 -7653303 0 0 -7653358 128 0 -7653467 0 0 -7653515 128 0 -7653636 0 0 -7653691 128 0 -7653808 0 0 -7653869 128 0 -7653965 0 0 -7654051 128 0 -7654062 0 0 -7654080 128 0 -7654108 0 0 -7656919 totRewards = 17 -7656919 64 8 -7657100 0 8 -7657110 64 8 -7657119 64 0 -7657724 0 0 -7657737 64 0 -7658450 0 0 -7658463 64 0 -7659093 0 0 -7659110 64 0 -7659260 0 0 -7659287 64 0 -7659582 0 0 -7659623 64 0 -7659745 0 0 -7659761 64 0 -7659910 0 0 -7659923 64 0 -7660072 0 0 -7660091 64 0 -7660226 0 0 -7660267 64 0 -7660403 0 0 -7660430 64 0 -7661645 0 0 -7661670 64 0 -7661804 0 0 -7661850 64 0 -7661970 0 0 -7662038 64 0 -7662070 0 0 -7664957 totRewards = 18 -7664957 128 16 -7665116 0 16 -7665157 0 0 -7665163 128 0 -7665372 0 0 -7665381 128 0 -7665492 0 0 -7665545 128 0 -7665745 0 0 -7665785 128 0 -7665876 0 0 -7665942 128 0 -7666304 0 0 -7666340 128 0 -7666456 0 0 -7666472 128 0 -7666601 0 0 -7666620 128 0 -7666750 0 0 -7666789 128 0 -7666909 0 0 -7666951 128 0 -7667074 0 0 -7667107 128 0 -7667238 0 0 -7667279 128 0 -7667398 0 0 -7667454 128 0 -7667578 0 0 -7667628 128 0 -7667753 0 0 -7667813 128 0 -7667918 0 0 -7667983 128 0 -7668082 0 0 -7668137 128 0 -7668242 0 0 -7668288 128 0 -7668398 0 0 -7668454 128 0 -7668559 0 0 -7668614 128 0 -7668722 0 0 -7668772 128 0 -7668880 0 0 -7668945 128 0 -7669001 0 0 -7669091 128 0 -7669177 0 0 -7669492 128 0 -7669523 0 0 -7669608 128 0 -7669694 0 0 -7672486 totRewards = 19 -7672486 64 8 -7672686 64 0 -7672724 0 0 -7672737 64 0 -7673490 0 0 -7673495 64 0 -7673765 0 0 -7673797 64 0 -7674228 0 0 -7674245 64 0 -7674389 0 0 -7674411 64 0 -7674894 0 0 -7674914 64 0 -7675248 0 0 -7675270 64 0 -7675418 0 0 -7675447 64 0 -7675593 0 0 -7675622 64 0 -7675753 0 0 -7675795 64 0 -7675911 0 0 -7675976 64 0 -7676080 0 0 -7676166 64 0 -7676268 0 0 -7676294 64 0 -7676444 0 0 -7676456 64 0 -7676947 0 0 -7676967 64 0 -7677088 0 0 -7679867 totRewards = 20 -7679867 128 16 -7680067 128 0 -7680094 0 0 -7680125 128 0 -7680335 0 0 -7680382 128 0 -7680469 0 0 -7680492 128 0 -7680727 0 0 -7680767 128 0 -7680855 0 0 -7680935 128 0 -7681001 0 0 -7681018 128 0 -7681159 0 0 -7681172 128 0 -7681294 0 0 -7681324 128 0 -7681588 0 0 -7681609 128 0 -7681743 0 0 -7681767 128 0 -7681906 0 0 -7681934 128 0 -7682065 0 0 -7682103 128 0 -7682226 0 0 -7682266 128 0 -7682390 0 0 -7682438 128 0 -7682573 0 0 -7682621 128 0 -7682747 0 0 -7682802 128 0 -7682920 0 0 -7682969 128 0 -7683084 0 0 -7683134 128 0 -7683243 0 0 -7683297 128 0 -7683398 0 0 -7683455 128 0 -7683562 0 0 -7683617 128 0 -7683726 0 0 -7683780 128 0 -7683889 0 0 -7683948 128 0 -7684062 0 0 -7684129 128 0 -7684181 0 0 -7687149 totRewards = 21 -7687149 64 8 -7687334 0 8 -7687349 0 0 -7687368 64 0 -7688422 0 0 -7688431 64 0 -7689388 0 0 -7689395 64 0 -7689548 0 0 -7689570 64 0 -7689719 0 0 -7689739 64 0 -7690071 0 0 -7690094 64 0 -7690236 0 0 -7690275 64 0 -7690577 0 0 -7690608 64 0 -7690748 0 0 -7690779 64 0 -7690941 0 0 -7690955 64 0 -7691854 0 0 -7691868 64 0 -7692034 0 0 -7692075 64 0 -7692226 0 0 -7692246 64 0 -7692396 0 0 -7692425 64 0 -7692575 0 0 -7692615 64 0 -7692744 0 0 -7692793 64 0 -7692916 0 0 -7695979 totRewards = 22 -7695979 128 16 -7696155 0 16 -7696179 0 0 -7696202 128 0 -7696409 0 0 -7696454 128 0 -7696545 0 0 -7696610 128 0 -7696807 0 0 -7696843 128 0 -7696940 0 0 -7697002 128 0 -7697228 0 0 -7697253 128 0 -7697365 0 0 -7697397 128 0 -7697511 0 0 -7697525 128 0 -7697646 0 0 -7697669 128 0 -7697800 0 0 -7697833 128 0 -7697956 0 0 -7697992 128 0 -7698120 0 0 -7698153 128 0 -7698280 0 0 -7698325 128 0 -7698442 0 0 -7698497 128 0 -7698624 0 0 -7698670 128 0 -7698792 0 0 -7698847 128 0 -7698956 0 0 -7699030 128 0 -7699117 0 0 -7699171 128 0 -7699287 0 0 -7699334 128 0 -7699449 0 0 -7699513 128 0 -7699611 0 0 -7699673 128 0 -7699780 0 0 -7699832 128 0 -7699949 0 0 -7700006 128 0 -7700113 0 0 -7700189 128 0 -7700266 0 0 -7703088 totRewards = 23 -7703088 64 8 -7703250 0 8 -7703277 64 8 -7703288 64 0 -7704632 0 0 -7704645 64 0 -7705600 0 0 -7705615 64 0 -7705765 0 0 -7705782 64 0 -7705935 0 0 -7705961 64 0 -7706103 0 0 -7706131 64 0 -7706267 0 0 -7706301 64 0 -7706431 0 0 -7706463 64 0 -7706601 0 0 -7706627 64 0 -7706764 0 0 -7706802 64 0 -7706930 0 0 -7706960 64 0 -7707407 0 0 -7707434 64 0 -7707562 0 0 -7707602 64 0 -7707904 0 0 -7707925 64 0 -7708075 0 0 -7708098 64 0 -7708229 0 0 -7708267 64 0 -7708371 0 0 -7711071 totRewards = 24 -7711071 128 16 -7711271 128 0 -7711287 0 0 -7711335 128 0 -7711541 0 0 -7711554 128 0 -7711669 0 0 -7711743 128 0 -7711797 0 0 -7711821 128 0 -7711918 0 0 -7711963 128 0 -7712057 0 0 -7712115 128 0 -7712350 0 0 -7712367 128 0 -7712487 0 0 -7712521 128 0 -7712797 0 0 -7712815 128 0 -7712933 0 0 -7712969 128 0 -7713089 0 0 -7713123 128 0 -7713252 0 0 -7713285 128 0 -7713398 0 0 -7713450 128 0 -7713560 0 0 -7713617 128 0 -7713738 0 0 -7713793 128 0 -7713912 0 0 -7713974 128 0 -7714078 0 0 -7714139 128 0 -7714242 0 0 -7714298 128 0 -7714402 0 0 -7714450 128 0 -7714556 0 0 -7714619 128 0 -7714715 0 0 -7714786 128 0 -7714871 0 0 -7714940 128 0 -7715030 0 0 -7715110 128 0 -7715204 0 0 -7715820 128 0 -7715841 0 0 -7715880 128 0 -7715896 0 0 -7716042 128 0 -7716050 0 0 -7718859 totRewards = 25 -7718859 64 8 -7719037 0 8 -7719059 0 0 -7719070 64 0 -7720252 0 0 -7720271 64 0 -7721045 0 0 -7721052 64 0 -7721203 0 0 -7721223 64 0 -7721865 0 0 -7721906 64 0 -7722021 0 0 -7722069 64 0 -7722175 0 0 -7724820 totRewards = 26 -7724820 128 16 -7725007 0 16 -7725020 0 0 -7725058 128 0 -7725272 0 0 -7725298 128 0 -7725406 0 0 -7725460 128 0 -7725661 0 0 -7725701 128 0 -7725799 0 0 -7725877 128 0 -7726100 0 0 -7726104 128 0 -7726227 0 0 -7726259 128 0 -7726377 0 0 -7726398 128 0 -7726533 0 0 -7726549 128 0 -7726683 0 0 -7726707 128 0 -7726844 0 0 -7726875 128 0 -7727015 0 0 -7727044 128 0 -7727172 0 0 -7727210 128 0 -7727333 0 0 -7727378 128 0 -7727492 0 0 -7727541 128 0 -7727649 0 0 -7727701 128 0 -7727819 0 0 -7727862 128 0 -7727984 0 0 -7728027 128 0 -7728146 0 0 -7728201 128 0 -7728307 0 0 -7728367 128 0 -7728477 0 0 -7728526 128 0 -7728646 0 0 -7728696 128 0 -7728805 0 0 -7728869 128 0 -7728900 0 0 -7728928 128 0 -7728972 0 0 -7729027 128 0 -7729129 0 0 -7729183 128 0 -7729286 0 0 -7729366 128 0 -7729498 0 0 -7729527 128 0 -7729646 0 0 -7729719 128 0 -7729814 0 0 -7729893 128 0 -7729988 0 0 -7730070 128 0 -7730141 0 0 -7732750 totRewards = 27 -7732750 64 8 -7732939 0 8 -7732950 0 0 -7732966 64 0 -7734138 0 0 -7734147 64 0 -7735096 0 0 -7735122 64 0 -7735434 0 0 -7735464 64 0 -7735589 0 0 -7735614 64 0 -7735744 0 0 -7735773 64 0 -7735913 0 0 -7735933 64 0 -7736087 0 0 -7736097 64 0 -7737351 0 0 -7737358 64 0 -7737527 0 0 -7737563 64 0 -7737905 0 0 -7737973 64 0 -7738060 0 0 -7738711 64 0 -7739104 0 0 -7739144 64 0 -7739275 0 0 -7739310 64 0 -7740248 0 0 -7740276 64 0 -7740402 0 0 -7740424 64 0 -7740623 0 0 -7740657 64 0 -7740921 0 0 -7740929 64 0 -7741081 0 0 -7741115 64 0 -7741257 0 0 -7741299 64 0 -7741393 0 0 -7744012 totRewards = 28 -7744012 128 16 -7744190 0 16 -7744212 0 0 -7744254 128 0 -7744591 0 0 -7744627 128 0 -7744754 0 0 -7744772 128 0 -7744882 0 0 -7744909 128 0 -7745016 0 0 -7745054 128 0 -7745173 0 0 -7745180 128 0 -7745316 0 0 -7745325 128 0 -7745451 0 0 -7745473 128 0 -7745605 0 0 -7745616 128 0 -7745755 0 0 -7745777 128 0 -7745908 0 0 -7745937 128 0 -7746070 0 0 -7746103 128 0 -7746228 0 0 -7746259 128 0 -7746394 0 0 -7746433 128 0 -7746551 0 0 -7746597 128 0 -7746711 0 0 -7746764 128 0 -7746864 0 0 -7746912 128 0 -7747023 0 0 -7747070 128 0 -7747181 0 0 -7747240 128 0 -7747344 0 0 -7747394 128 0 -7747508 0 0 -7747557 128 0 -7747668 0 0 -7747717 128 0 -7747845 0 0 -7747893 128 0 -7748015 0 0 -7748073 128 0 -7748178 0 0 -7748248 128 0 -7748328 0 0 -7751119 totRewards = 29 -7751119 64 8 -7751284 0 8 -7751297 64 8 -7751319 64 0 -7751936 0 0 -7751944 64 0 -7752075 0 0 -7752081 64 0 -7752352 0 0 -7752369 64 0 -7752495 0 0 -7752509 64 0 -7753308 0 0 -7753311 64 0 -7753472 0 0 -7753484 64 0 -7753615 0 0 -7753653 64 0 -7753782 0 0 -7753808 64 0 -7753948 0 0 -7753967 64 0 -7754108 0 0 -7754132 64 0 -7754263 0 0 -7754300 64 0 -7754433 0 0 -7754457 64 0 -7754590 0 0 -7754618 64 0 -7754934 0 0 -7754951 64 0 -7755096 0 0 -7755117 64 0 -7755269 0 0 -7755280 64 0 -7755421 0 0 -7755464 64 0 -7755583 0 0 -7755614 64 0 -7756426 0 0 -7756435 64 0 -7756575 0 0 -7756621 64 0 -7756735 0 0 -7759346 totRewards = 30 -7759346 128 16 -7759546 128 0 -7759735 0 0 -7759828 128 0 -7759895 0 0 -7760019 128 0 -7760549 0 0 -7760573 128 0 -7761183 0 0 -7761278 128 0 -7761837 0 0 -7761971 128 0 -7762397 0 0 -7770968 128 0 -7771508 0 0 -7771516 128 0 -7771520 0 0 -7771594 128 0 -7771670 0 0 -7778279 128 0 -7778726 0 0 -7778810 128 0 -7781612 0 0 -7781679 128 0 -7781859 0 0 -7781952 128 0 -7782647 0 0 -7782660 128 0 -7783611 0 0 -7783695 128 0 -7783820 0 0 -7783904 128 0 -7784028 0 0 -7784715 128 0 -7784748 0 0 -7784815 128 0 -7784963 0 0 -7784972 128 0 -7785128 0 0 -7785171 128 0 -7785323 0 0 -7785332 128 0 -7785458 0 0 -7785567 128 0 -7785644 0 0 -7785652 128 0 -7785984 0 0 -7786006 128 0 -7786181 0 0 -7798709 128 0 -7799137 0 0 -7799197 128 0 -7799717 0 0 -7799733 128 0 -7799853 0 0 -7799891 128 0 -7800003 0 0 -7800048 128 0 -7800153 0 0 -7800200 128 0 -7800302 0 0 -7800347 128 0 -7800452 0 0 -7800500 128 0 -7800618 0 0 -7803661 128 0 -7803970 0 0 -7804004 128 0 -7804144 0 0 -7813162 128 0 -7813218 0 0 -7813406 128 0 -7813806 0 0 -7813875 128 0 -7814107 0 0 -7823391 totRewards = 31 -7823391 64 8 -7823591 64 0 -7823656 0 0 -7823671 64 0 -7823881 0 0 -7823897 64 0 -7826008 0 0 -7826037 64 0 -7827566 0 0 -7827573 64 0 -7828584 0 0 -7828620 64 0 -7828743 0 0 -7834990 totRewards = 32 -7834990 128 16 -7835139 0 16 -7835167 128 16 -7835190 128 0 -7835449 0 0 -7835485 128 0 -7835835 0 0 -7835868 128 0 -7836110 0 0 -7836120 128 0 -7836236 0 0 -7836256 128 0 -7836367 0 0 -7836396 128 0 -7836513 0 0 -7836531 128 0 -7836651 0 0 -7836676 128 0 -7836789 0 0 -7836818 128 0 -7836938 0 0 -7836957 128 0 -7837076 0 0 -7837105 128 0 -7837232 0 0 -7837258 128 0 -7837401 0 0 -7837432 128 0 -7837572 0 0 -7837608 128 0 -7837734 0 0 -7837774 128 0 -7837900 0 0 -7837949 128 0 -7838076 0 0 -7838119 128 0 -7838241 0 0 -7838288 128 0 -7838407 0 0 -7838416 128 0 -7839140 0 0 -7839167 128 0 -7839306 0 0 -7839334 128 0 -7839474 0 0 -7839510 128 0 -7839648 0 0 -7839695 128 0 -7839813 0 0 -7839849 128 0 -7839976 0 0 -7843754 totRewards = 33 -7843754 64 8 -7843954 64 0 -7843967 0 0 -7843973 64 0 -7845978 0 0 -7845984 64 0 -7846131 0 0 -7846155 64 0 -7846469 0 0 -7846491 64 0 -7846622 0 0 -7846657 64 0 -7846788 0 0 -7846799 64 0 -7847249 0 0 -7847271 64 0 -7847410 0 0 -7847455 64 0 -7847541 0 0 -7850856 totRewards = 34 -7850856 128 16 -7851040 0 16 -7851056 0 0 -7851101 128 0 -7851704 0 0 -7851731 128 0 -7851818 0 0 -7851873 128 0 -7851970 0 0 -7851982 128 0 -7852120 0 0 -7852136 128 0 -7852248 0 0 -7852280 128 0 -7852389 0 0 -7852411 128 0 -7852683 0 0 -7852708 128 0 -7852833 0 0 -7852864 128 0 -7852987 0 0 -7853024 128 0 -7853146 0 0 -7853179 128 0 -7853313 0 0 -7853358 128 0 -7853472 0 0 -7853527 128 0 -7853635 0 0 -7853698 128 0 -7853797 0 0 -7853859 128 0 -7853955 0 0 -7854006 128 0 -7854110 0 0 -7854161 128 0 -7854262 0 0 -7854311 128 0 -7854419 0 0 -7854471 128 0 -7854573 0 0 -7854639 128 0 -7854738 0 0 -7854791 128 0 -7854898 0 0 -7854946 128 0 -7855057 0 0 -7855109 128 0 -7855227 0 0 -7855280 128 0 -7855404 0 0 -7855464 128 0 -7855564 0 0 -7855679 128 0 -7855711 0 0 -7858818 totRewards = 35 -7858818 64 8 -7859018 64 0 -7859614 0 0 -7859624 64 0 -7860163 0 0 -7860171 64 0 -7861607 0 0 -7861621 64 0 -7861768 0 0 -7861798 64 0 -7861923 0 0 -7861961 64 0 -7862077 0 0 -7862128 64 0 -7862227 0 0 -7865126 totRewards = 36 -7865126 128 16 -7865323 0 16 -7865326 0 0 -7865400 128 0 -7865601 0 0 -7865621 128 0 -7865723 0 0 -7865770 128 0 -7865984 0 0 -7866016 128 0 -7866108 0 0 -7866176 128 0 -7866543 0 0 -7866580 128 0 -7866846 0 0 -7866872 128 0 -7866999 0 0 -7867032 128 0 -7867154 0 0 -7867201 128 0 -7867325 0 0 -7867359 128 0 -7867483 0 0 -7867533 128 0 -7867646 0 0 -7867703 128 0 -7867828 0 0 -7867875 128 0 -7867993 0 0 -7868049 128 0 -7868165 0 0 -7868226 128 0 -7868323 0 0 -7868378 128 0 -7868473 0 0 -7868524 128 0 -7868631 0 0 -7868678 128 0 -7868784 0 0 -7868845 128 0 -7868939 0 0 -7869007 128 0 -7869106 0 0 -7869153 128 0 -7869260 0 0 -7869319 128 0 -7869430 0 0 -7869482 128 0 -7869593 0 0 -7869658 128 0 -7869757 0 0 -7869825 128 0 -7869914 0 0 -7870005 128 0 -7870057 0 0 -7873030 totRewards = 37 -7873030 64 8 -7873229 0 8 -7873230 0 0 -7873246 64 0 -7873983 0 0 -7874009 64 0 -7875354 0 0 -7875365 64 0 -7875515 0 0 -7875533 64 0 -7875672 0 0 -7875697 64 0 -7875846 0 0 -7875866 64 0 -7875997 0 0 -7876036 64 0 -7876162 0 0 -7876199 64 0 -7876323 0 0 -7876361 64 0 -7876488 0 0 -7876523 64 0 -7876651 0 0 -7876694 64 0 -7876820 0 0 -7876857 64 0 -7877649 0 0 -7877665 64 0 -7877800 0 0 -7877838 64 0 -7877965 0 0 -7878018 64 0 -7878114 0 0 -7881030 totRewards = 38 -7881030 128 16 -7881192 0 16 -7881230 0 0 -7881250 128 0 -7881470 0 0 -7881478 128 0 -7881591 0 0 -7881617 128 0 -7881863 0 0 -7881878 128 0 -7881978 0 0 -7882035 128 0 -7882400 0 0 -7882433 128 0 -7882567 0 0 -7882573 128 0 -7882714 0 0 -7882749 128 0 -7882875 0 0 -7882921 128 0 -7883043 0 0 -7883089 128 0 -7883214 0 0 -7883259 128 0 -7883386 0 0 -7883443 128 0 -7883561 0 0 -7883614 128 0 -7883727 0 0 -7883786 128 0 -7883878 0 0 -7883938 128 0 -7884042 0 0 -7884087 128 0 -7884198 0 0 -7884250 128 0 -7884353 0 0 -7884421 128 0 -7884510 0 0 -7884579 128 0 -7884678 0 0 -7884729 128 0 -7884846 0 0 -7884901 128 0 -7885012 0 0 -7885074 128 0 -7885174 0 0 -7885254 128 0 -7885376 0 0 -7885445 128 0 -7885529 0 0 -7889531 totRewards = 39 -7889531 64 8 -7889731 64 0 -7889761 0 0 -7889764 64 0 -7890353 0 0 -7890374 64 0 -7890499 0 0 -7890505 64 0 -7891707 0 0 -7891730 64 0 -7891877 0 0 -7891911 64 0 -7892050 0 0 -7892082 64 0 -7892211 0 0 -7892240 64 0 -7892367 0 0 -7892404 64 0 -7892531 0 0 -7892563 64 0 -7892695 0 0 -7892722 64 0 -7892868 0 0 -7892883 64 0 -7893208 0 0 -7893218 64 0 -7893348 0 0 -7893404 64 0 -7893488 0 0 -7896150 totRewards = 40 -7896150 128 16 -7896337 0 16 -7896350 0 0 -7896384 128 0 -7896596 0 0 -7896620 128 0 -7896725 0 0 -7896772 128 0 -7896980 0 0 -7897027 128 0 -7897108 0 0 -7897185 128 0 -7897545 0 0 -7897579 128 0 -7897712 0 0 -7897731 128 0 -7897867 0 0 -7897894 128 0 -7898018 0 0 -7898067 128 0 -7898187 0 0 -7898232 128 0 -7898352 0 0 -7898399 128 0 -7898507 0 0 -7898565 128 0 -7898657 0 0 -7898710 128 0 -7898815 0 0 -7898868 128 0 -7898969 0 0 -7899036 128 0 -7899125 0 0 -7899188 128 0 -7899299 0 0 -7899344 128 0 -7899457 0 0 -7899515 128 0 -7899621 0 0 -7899682 128 0 -7899788 0 0 -7899857 128 0 -7899953 0 0 -7900013 128 0 -7900115 0 0 -7900169 128 0 -7900275 0 0 -7900326 128 0 -7900429 0 0 -7900508 128 0 -7900621 0 0 -7900688 128 0 -7900791 0 0 -7900863 128 0 -7900965 0 0 -7901007 128 0 -7901129 0 0 -7901172 128 0 -7901285 0 0 -7901351 128 0 -7901449 0 0 -7901514 128 0 -7901622 0 0 -7901668 128 0 -7901786 0 0 -7901853 128 0 -7901936 0 0 -7902059 128 0 -7902084 0 0 -7902107 128 0 -7902161 0 0 -7902279 128 0 -7902313 0 0 -7902412 128 0 -7902446 0 0 -7902466 128 0 -7902507 0 0 -7902598 128 0 -7902669 0 0 -7905547 totRewards = 41 -7905547 64 8 -7905735 0 8 -7905747 0 0 -7905759 64 0 -7907837 0 0 -7907860 64 0 -7908013 0 0 -7908024 64 0 -7908328 0 0 -7908367 64 0 -7908481 0 0 -7908518 64 0 -7908635 0 0 -7908672 64 0 -7908961 0 0 -7908986 64 0 -7909114 0 0 -7909176 64 0 -7909231 0 0 -7912019 totRewards = 42 -7912019 128 16 -7912212 0 16 -7912219 0 0 -7912264 128 0 -7912454 0 0 -7912500 128 0 -7912588 0 0 -7912638 128 0 -7912841 0 0 -7912888 128 0 -7912974 0 0 -7913041 128 0 -7913413 0 0 -7913441 128 0 -7913699 0 0 -7913724 128 0 -7913853 0 0 -7913892 128 0 -7914005 0 0 -7914050 128 0 -7914171 0 0 -7914219 128 0 -7914337 0 0 -7914389 128 0 -7914507 0 0 -7914563 128 0 -7914681 0 0 -7914727 128 0 -7914842 0 0 -7914893 128 0 -7915001 0 0 -7915035 128 0 -7915167 0 0 -7915171 128 0 -7915299 0 0 -7915335 128 0 -7915457 0 0 -7915495 128 0 -7915616 0 0 -7915664 128 0 -7915808 0 0 -7915834 128 0 -7915970 0 0 -7916001 128 0 -7916121 0 0 -7916177 128 0 -7916274 0 0 -7919172 totRewards = 43 -7919172 64 8 -7919351 0 8 -7919359 64 8 -7919372 64 0 -7920098 0 0 -7920116 64 0 -7921447 0 0 -7921461 64 0 -7921602 0 0 -7921630 64 0 -7921769 0 0 -7921793 64 0 -7921947 0 0 -7921962 64 0 -7922118 0 0 -7922136 64 0 -7922270 0 0 -7922304 64 0 -7922761 0 0 -7922779 64 0 -7922919 0 0 -7922952 64 0 -7923096 0 0 -7923111 64 0 -7923239 0 0 -7923269 64 0 -7924484 0 0 -7927363 totRewards = 44 -7927363 128 16 -7927531 0 16 -7927563 0 0 -7927599 128 0 -7927793 0 0 -7927820 128 0 -7927920 0 0 -7927987 128 0 -7928176 0 0 -7928212 128 0 -7928306 0 0 -7928369 128 0 -7928592 0 0 -7928607 128 0 -7928731 0 0 -7928766 128 0 -7929039 0 0 -7929058 128 0 -7929183 0 0 -7929227 128 0 -7929342 0 0 -7929388 128 0 -7929500 0 0 -7929543 128 0 -7929670 0 0 -7929713 128 0 -7929829 0 0 -7929884 128 0 -7929990 0 0 -7930047 128 0 -7930145 0 0 -7930196 128 0 -7930300 0 0 -7930357 128 0 -7930465 0 0 -7930507 128 0 -7930622 0 0 -7930675 128 0 -7930784 0 0 -7930844 128 0 -7930943 0 0 -7931008 128 0 -7931097 0 0 -7931161 128 0 -7931267 0 0 -7931325 128 0 -7931412 0 0 -7931479 128 0 -7931537 0 0 -7931635 128 0 -7931736 0 0 -7931802 128 0 -7931882 0 0 -7932056 128 0 -7932077 0 0 -7932323 128 0 -7932341 0 0 -7932532 128 0 -7932567 0 0 -7932648 128 0 -7932722 0 0 -7932796 128 0 -7932900 0 0 -7932956 128 0 -7933070 0 0 -7933137 128 0 -7933227 0 0 -7933318 128 0 -7933372 0 0 -7936145 totRewards = 45 -7936145 64 8 -7936331 0 8 -7936345 0 0 -7936351 64 0 -7938670 0 0 -7938678 64 0 -7938832 0 0 -7938847 64 0 -7938994 0 0 -7939027 64 0 -7939141 0 0 -7939184 64 0 -7939299 0 0 -7939351 64 0 -7939445 0 0 -7942321 totRewards = 46 -7942321 128 16 -7942500 0 16 -7942521 0 0 -7942553 128 0 -7942738 0 0 -7942769 128 0 -7942881 0 0 -7942940 128 0 -7943134 0 0 -7943169 128 0 -7943260 0 0 -7943329 128 0 -7943406 0 0 -7943421 128 0 -7943545 0 0 -7943563 128 0 -7943677 0 0 -7943703 128 0 -7944125 0 0 -7944158 128 0 -7944284 0 0 -7944305 128 0 -7944442 0 0 -7944471 128 0 -7944599 0 0 -7944643 128 0 -7944760 0 0 -7944816 128 0 -7944939 0 0 -7944984 128 0 -7945100 0 0 -7945140 128 0 -7945255 0 0 -7945301 128 0 -7945571 0 0 -7945586 128 0 -7945718 0 0 -7945760 128 0 -7945882 0 0 -7945921 128 0 -7946053 0 0 -7946086 128 0 -7946220 0 0 -7946260 128 0 -7946378 0 0 -7946433 128 0 -7946524 0 0 -7946612 128 0 -7946674 0 0 -7949564 totRewards = 47 -7949564 64 8 -7949764 64 0 -7949764 0 0 -7949783 64 0 -7950950 0 0 -7950954 64 0 -7952222 0 0 -7952250 64 0 -7952562 0 0 -7952598 64 0 -7952723 0 0 -7952758 64 0 -7952880 0 0 -7952917 64 0 -7953050 0 0 -7953078 64 0 -7953208 0 0 -7953249 64 0 -7953367 0 0 -7953409 64 0 -7953523 0 0 -7956542 totRewards = 48 -7956542 128 16 -7956715 0 16 -7956742 0 0 -7956753 128 0 -7956970 0 0 -7956992 128 0 -7957107 0 0 -7957183 128 0 -7957352 0 0 -7957394 128 0 -7957491 0 0 -7957533 128 0 -7957780 0 0 -7957798 128 0 -7957913 0 0 -7957946 128 0 -7958058 0 0 -7958090 128 0 -7958212 0 0 -7958231 128 0 -7958357 0 0 -7958393 128 0 -7958511 0 0 -7958556 128 0 -7958677 0 0 -7958711 128 0 -7958833 0 0 -7958875 128 0 -7959005 0 0 -7959060 128 0 -7959173 0 0 -7959226 128 0 -7959332 0 0 -7959383 128 0 -7959499 0 0 -7959552 128 0 -7959658 0 0 -7959717 128 0 -7959818 0 0 -7959877 128 0 -7959959 0 0 -7960024 128 0 -7960140 0 0 -7960205 128 0 -7960301 0 0 -7960365 128 0 -7960469 0 0 -7960524 128 0 -7960599 0 0 -7960686 128 0 -7960810 0 0 -7960851 128 0 -7960962 0 0 -7961027 128 0 -7961117 0 0 -7961204 128 0 -7961295 0 0 -7964706 totRewards = 49 -7964706 64 8 -7964906 64 0 -7966868 0 0 -7966880 64 0 -7967019 0 0 -7967049 64 0 -7967179 0 0 -7967224 64 0 -7967335 0 0 -7967369 64 0 -7967490 0 0 -7967521 64 0 -7967649 0 0 -7967681 64 0 -7967814 0 0 -7967829 64 0 -7968780 0 0 -7968795 64 0 -7968925 0 0 -7968947 64 0 -7969095 0 0 -7969109 64 0 -7969456 0 0 -7969478 64 0 -7969615 0 0 -7969659 64 0 -7969793 0 0 -7969820 64 0 -7969943 0 0 -7969988 64 0 -7970089 0 0 -7970199 64 0 -7970210 0 0 -7972772 totRewards = 50 -7972772 128 16 -7972924 0 16 -7972972 0 0 -7972975 128 0 -7973169 0 0 -7973199 128 0 -7973306 0 0 -7973375 128 0 -7973442 0 0 -7973458 128 0 -7973560 0 0 -7973591 128 0 -7973689 0 0 -7973740 128 0 -7973845 0 0 -7973852 128 0 -7973973 0 0 -7973988 128 0 -7974111 0 0 -7974138 128 0 -7974403 0 0 -7974429 128 0 -7974551 0 0 -7974581 128 0 -7974707 0 0 -7974748 128 0 -7974875 0 0 -7974905 128 0 -7975034 0 0 -7975077 128 0 -7975198 0 0 -7975249 128 0 -7975365 0 0 -7975419 128 0 -7975531 0 0 -7975595 128 0 -7975677 0 0 -7975763 128 0 -7975835 0 0 -7975909 128 0 -7976004 0 0 -7976053 128 0 -7976170 0 0 -7976219 128 0 -7976333 0 0 -7976381 128 0 -7976490 0 0 -7976543 128 0 -7976648 0 0 -7976714 128 0 -7976793 0 0 -7976870 128 0 -7977000 0 0 -7977036 128 0 -7977156 0 0 -7977203 128 0 -7977313 0 0 -7977377 128 0 -7977451 0 0 -7981685 totRewards = 51 -7981685 64 8 -7981885 64 0 -7982588 0 0 -7982597 64 0 -7983005 0 0 -7983015 64 0 -7983943 0 0 -7983946 64 0 -7984103 0 0 -7984115 64 0 -7984423 0 0 -7984436 64 0 -7984579 0 0 -7984609 64 0 -7984738 0 0 -7984769 64 0 -7984903 0 0 -7984939 64 0 -7985073 0 0 -7985101 64 0 -7985231 0 0 -7985272 64 0 -7985729 0 0 -7985747 64 0 -7985888 0 0 -7985924 64 0 -7986047 0 0 -7988662 totRewards = 52 -7988662 128 16 -7988827 0 16 -7988862 0 0 -7988878 128 0 -7989246 0 0 -7989346 128 0 -7991807 0 0 -7991816 128 0 -7991952 0 0 -7991975 128 0 -7992111 0 0 -7992124 128 0 -7992438 0 0 -7992463 128 0 -7992593 0 0 -7992639 128 0 -7992759 0 0 -7992802 128 0 -7992925 0 0 -7992971 128 0 -7993465 0 0 -7993499 128 0 -7993632 0 0 -7993687 128 0 -7993808 0 0 -7993866 128 0 -7993991 0 0 -7994042 128 0 -7994185 0 0 -7994196 128 0 -7994335 0 0 -7994388 128 0 -7994508 0 0 -7994574 128 0 -7995282 0 0 -7995287 128 0 -7995764 0 0 -7995792 128 0 -7995933 0 0 -7995977 128 0 -7996111 0 0 -7996148 128 0 -7996268 0 0 -7996308 128 0 -7996426 0 0 -7996479 128 0 -7996596 0 0 -7996641 128 0 -7996771 0 0 -8003049 128 0 -8003174 0 0 -8012705 128 0 -8012750 0 0 -8012815 128 0 -8013021 0 0 -8013046 128 0 -8013889 0 0 -8013917 128 0 -8014030 0 0 -8014079 128 0 -8014189 0 0 -8014207 128 0 -8014319 0 0 -8014357 128 0 -8014470 0 0 -8014499 128 0 -8014621 0 0 -8014665 128 0 -8014770 0 0 -8014835 128 0 -8014905 0 0 -8018396 totRewards = 53 -8018396 64 8 -8018426 0 8 -8018596 0 0 -8029486 64 0 -8029770 0 0 -8029782 64 0 -8031102 0 0 -8031129 64 0 -8031239 0 0 -8031275 64 0 -8031387 0 0 -8031407 64 0 -8031872 0 0 -8035335 64 0 -8035389 0 0 -8035423 64 0 -8036330 0 0 -8036340 64 0 -8036844 0 0 -8036869 64 0 -8037008 0 0 -8037055 64 0 -8037175 0 0 -8037229 64 0 -8037354 0 0 -8037464 64 0 -8037474 0 0 -8037506 64 0 -8037540 0 0 -8049713 totRewards = 54 -8049713 128 16 -8049913 128 0 -8050505 0 0 -8050526 128 0 -8051015 0 0 -8051041 128 0 -8051141 0 0 -8051158 128 0 -8051416 0 0 -8051437 128 0 -8051560 0 0 -8051581 128 0 -8051855 0 0 -8051871 128 0 -8052000 0 0 -8052022 128 0 -8052139 0 0 -8052167 128 0 -8052305 0 0 -8052329 128 0 -8052466 0 0 -8052493 128 0 -8052619 0 0 -8052656 128 0 -8052774 0 0 -8052811 128 0 -8052924 0 0 -8052965 128 0 -8053087 0 0 -8053103 128 0 -8053224 0 0 -8053249 128 0 -8053366 0 0 -8053395 128 0 -8053517 0 0 -8053547 128 0 -8053678 0 0 -8053717 128 0 -8053852 0 0 -8053873 128 0 -8054015 0 0 -8054053 128 0 -8054193 0 0 -8054221 128 0 -8054373 0 0 -8054400 128 0 -8054531 0 0 -8054567 128 0 -8054690 0 0 -8054743 128 0 -8054853 0 0 -8054910 128 0 -8055035 0 0 -8055094 128 0 -8055216 0 0 -8055413 128 0 -8055504 0 0 -8055572 128 0 -8055618 0 0 -8055718 128 0 -8055755 0 0 -8061519 totRewards = 55 -8061519 64 8 -8061719 64 0 -8061777 0 0 -8061799 64 0 -8063502 0 0 -8063517 64 0 -8064335 0 0 -8064354 64 0 -8064518 0 0 -8064529 64 0 -8065104 0 0 -8065129 64 0 -8065785 0 0 -8077601 totRewards = 56 -8077601 128 16 -8077801 128 0 -8078493 0 0 -8078510 128 0 -8078622 0 0 -8078650 128 0 -8078743 0 0 -8078774 128 0 -8078881 0 0 -8078908 128 0 -8079013 0 0 -8079045 128 0 -8079142 0 0 -8079173 128 0 -8079283 0 0 -8079310 128 0 -8079433 0 0 -8079451 128 0 -8079573 0 0 -8079611 128 0 -8079718 0 0 -8079758 128 0 -8079866 0 0 -8079905 128 0 -8080022 0 0 -8080066 128 0 -8080183 0 0 -8080227 128 0 -8080339 0 0 -8080389 128 0 -8080491 0 0 -8080553 128 0 -8080649 0 0 -8080719 128 0 -8080818 0 0 -8080946 128 0 -8080976 0 0 -8081195 128 0 -8081288 0 0 -8081325 128 0 -8081467 0 0 -8081510 128 0 -8081636 0 0 -8081676 128 0 -8081799 0 0 -8081841 128 0 -8081958 0 0 -8082018 128 0 -8082121 0 0 -8092708 totRewards = 57 -8092708 64 8 -8092908 64 0 -8095791 0 0 -8095819 64 0 -8096103 0 0 -8096113 64 0 -8096566 0 0 -8096612 64 0 -8096710 0 0 -8100081 totRewards = 58 -8100081 128 16 -8100281 128 0 -8100404 0 0 -8100420 128 0 -8100991 0 0 -8101042 128 0 -8101131 0 0 -8101144 128 0 -8101266 0 0 -8101286 128 0 -8101388 0 0 -8101425 128 0 -8101522 0 0 -8101555 128 0 -8101661 0 0 -8101688 128 0 -8101800 0 0 -8101834 128 0 -8101953 0 0 -8101980 128 0 -8102091 0 0 -8102123 128 0 -8102243 0 0 -8102279 128 0 -8102395 0 0 -8102443 128 0 -8102553 0 0 -8102605 128 0 -8102715 0 0 -8102763 128 0 -8102889 0 0 -8102933 128 0 -8103060 0 0 -8103111 128 0 -8103224 0 0 -8103278 128 0 -8103379 0 0 -8103443 128 0 -8103517 0 0 -8103594 128 0 -8103673 0 0 -8103731 128 0 -8103846 0 0 -8103892 128 0 -8103998 0 0 -8104059 128 0 -8104153 0 0 -8104204 128 0 -8104318 0 0 -8104354 128 0 -8104477 0 0 -8104525 128 0 -8104631 0 0 -8104704 128 0 -8104783 0 0 -8108593 totRewards = 59 -8108593 64 8 -8108793 64 0 -8108799 0 0 -8108811 64 0 -8111156 0 0 -8111170 64 0 -8111314 0 0 -8111343 64 0 -8111490 0 0 -8111510 64 0 -8111661 0 0 -8111690 64 0 -8111819 0 0 -8111864 64 0 -8111972 0 0 -8112035 64 0 -8112134 0 0 -8112172 64 0 -8112310 0 0 -8112334 64 0 -8112490 0 0 -8112505 64 0 -8112655 0 0 -8112709 64 0 -8112827 0 0 -8117626 totRewards = 60 -8117626 128 16 -8117820 0 16 -8117826 0 0 -8117853 128 0 -8118305 0 0 -8118321 128 0 -8118555 0 0 -8118585 128 0 -8118702 0 0 -8118719 128 0 -8118837 0 0 -8118852 128 0 -8118967 0 0 -8118993 128 0 -8119114 0 0 -8119139 128 0 -8119261 0 0 -8119287 128 0 -8119405 0 0 -8119440 128 0 -8119556 0 0 -8119597 128 0 -8119716 0 0 -8119756 128 0 -8119872 0 0 -8119918 128 0 -8120035 0 0 -8120086 128 0 -8120199 0 0 -8120246 128 0 -8120351 0 0 -8120409 128 0 -8120503 0 0 -8120552 128 0 -8120659 0 0 -8120715 128 0 -8120828 0 0 -8120875 128 0 -8120988 0 0 -8121041 128 0 -8121145 0 0 -8121214 128 0 -8121281 0 0 -8121380 128 0 -8121399 0 0 -8121411 128 0 -8121433 0 0 -8124531 totRewards = 61 -8124531 64 8 -8124716 0 8 -8124731 0 0 -8124742 64 0 -8126943 0 0 -8126968 64 0 -8127102 0 0 -8127143 64 0 -8127261 0 0 -8127308 64 0 -8127422 0 0 -8127458 64 0 -8127601 0 0 -8127621 64 0 -8127761 0 0 -8127820 64 0 -8127913 0 0 -8127977 64 0 -8128253 0 0 -8131322 totRewards = 62 -8131322 128 16 -8131479 0 16 -8131522 0 0 -8131568 128 0 -8132034 0 0 -8132047 128 0 -8132175 0 0 -8132196 128 0 -8132282 0 0 -8132322 128 0 -8132579 0 0 -8132593 128 0 -8132716 0 0 -8132740 128 0 -8133001 0 0 -8133032 128 0 -8133158 0 0 -8133175 128 0 -8133309 0 0 -8133344 128 0 -8133467 0 0 -8133512 128 0 -8133626 0 0 -8133676 128 0 -8133793 0 0 -8133841 128 0 -8133966 0 0 -8134005 128 0 -8134131 0 0 -8134185 128 0 -8134292 0 0 -8134349 128 0 -8134446 0 0 -8134504 128 0 -8134604 0 0 -8134655 128 0 -8134760 0 0 -8134813 128 0 -8134926 0 0 -8134974 128 0 -8135090 0 0 -8135148 128 0 -8135258 0 0 -8135337 128 0 -8135361 0 0 -8138305 totRewards = 63 -8138305 64 8 -8138458 0 8 -8138475 64 8 -8138505 64 0 -8139198 0 0 -8139210 64 0 -8140671 0 0 -8140689 64 0 -8140842 0 0 -8140861 64 0 -8141008 0 0 -8141038 64 0 -8141176 0 0 -8141220 64 0 -8141349 0 0 -8141402 64 0 -8141509 0 0 -8148584 totRewards = 64 -8148584 128 16 -8148780 0 16 -8148784 0 0 -8148912 128 0 -8149943 0 0 -8149947 128 0 -8150647 0 0 -8150658 128 0 -8151120 0 0 -8151142 128 0 -8151270 0 0 -8151293 128 0 -8151431 0 0 -8151442 128 0 -8151581 0 0 -8151625 128 0 -8151743 0 0 -8151794 128 0 -8151916 0 0 -8151959 128 0 -8152075 0 0 -8152120 128 0 -8152232 0 0 -8152282 128 0 -8152391 0 0 -8152447 128 0 -8152554 0 0 -8152612 128 0 -8152718 0 0 -8152774 128 0 -8152869 0 0 -8152937 128 0 -8153042 0 0 -8153086 128 0 -8153195 0 0 -8153247 128 0 -8153363 0 0 -8153412 128 0 -8153521 0 0 -8153569 128 0 -8153674 0 0 -8153725 128 0 -8153825 0 0 -8157369 128 0 -8157382 0 0 -8169714 totRewards = 65 -8169714 64 8 -8169914 64 0 -8170381 0 0 -8170395 64 0 -8170508 0 0 -8170520 64 0 -8170632 0 0 -8170651 64 0 -8170757 0 0 -8170775 64 0 -8171163 0 0 -8171179 64 0 -8172073 0 0 -8172083 64 0 -8172243 0 0 -8172268 64 0 -8172577 0 0 -8172610 64 0 -8172735 0 0 -8172785 64 0 -8172902 0 0 -8172956 64 0 -8173064 0 0 -8173112 64 0 -8173241 0 0 -8173288 64 0 -8173403 0 0 -8177958 totRewards = 66 -8177958 128 16 -8178158 128 0 -8178197 0 0 -8178221 128 0 -8178553 0 0 -8178574 128 0 -8178686 0 0 -8178731 128 0 -8178793 0 0 -8178838 128 0 -8178950 0 0 -8178969 128 0 -8179080 0 0 -8179096 128 0 -8179207 0 0 -8179235 128 0 -8179342 0 0 -8179366 128 0 -8179481 0 0 -8179504 128 0 -8179624 0 0 -8179649 128 0 -8179771 0 0 -8179811 128 0 -8179930 0 0 -8179965 128 0 -8180087 0 0 -8180128 128 0 -8180239 0 0 -8180287 128 0 -8180403 0 0 -8180451 128 0 -8180556 0 0 -8180612 128 0 -8180705 0 0 -8180761 128 0 -8180863 0 0 -8180909 128 0 -8181022 0 0 -8181084 128 0 -8181173 0 0 -8181238 128 0 -8181342 0 0 -8181391 128 0 -8181495 0 0 -8181555 128 0 -8181656 0 0 -8181729 128 0 -8181782 0 0 -8184908 totRewards = 67 -8184908 64 8 -8185108 64 0 -8185118 0 0 -8185125 64 0 -8186815 0 0 -8186824 64 0 -8187303 0 0 -8187325 64 0 -8187458 0 0 -8187486 64 0 -8187625 0 0 -8187645 64 0 -8187778 0 0 -8187817 64 0 -8188090 0 0 -8188123 64 0 -8188246 0 0 -8188316 64 0 -8188387 0 0 -8191424 totRewards = 68 -8191424 128 16 -8191610 0 16 -8191624 0 0 -8191647 128 0 -8191866 0 0 -8191900 128 0 -8191987 0 0 -8192032 128 0 -8192246 0 0 -8192281 128 0 -8192384 0 0 -8192463 128 0 -8192504 0 0 -8192538 128 0 -8192655 0 0 -8192673 128 0 -8192795 0 0 -8192819 128 0 -8192935 0 0 -8192971 128 0 -8193089 0 0 -8193114 128 0 -8193226 0 0 -8193259 128 0 -8193377 0 0 -8193418 128 0 -8193532 0 0 -8193573 128 0 -8193687 0 0 -8193738 128 0 -8193850 0 0 -8193914 128 0 -8194019 0 0 -8194078 128 0 -8194175 0 0 -8194239 128 0 -8194321 0 0 -8194378 128 0 -8194468 0 0 -8194533 128 0 -8194630 0 0 -8194685 128 0 -8194786 0 0 -8194835 128 0 -8194940 0 0 -8195005 128 0 -8195104 0 0 -8195162 128 0 -8195263 0 0 -8195324 128 0 -8195424 0 0 -8195480 128 0 -8195577 0 0 -8195643 128 0 -8195723 0 0 -8195795 128 0 -8195897 0 0 -8195945 128 0 -8196058 0 0 -8196114 128 0 -8196227 0 0 -8196350 128 0 -8196369 0 0 -8199703 totRewards = 69 -8199703 64 8 -8199885 0 8 -8199903 0 0 -8199913 64 0 -8200647 0 0 -8200655 64 0 -8201347 0 0 -8201359 64 0 -8201635 0 0 -8201662 64 0 -8202120 0 0 -8202138 64 0 -8202274 0 0 -8202306 64 0 -8202442 0 0 -8202473 64 0 -8202596 0 0 -8202642 64 0 -8202750 0 0 -8202800 64 0 -8202908 0 0 -8202947 64 0 -8203076 0 0 -8203126 64 0 -8203231 0 0 -8206243 totRewards = 70 -8206243 128 16 -8206443 128 0 -8206484 0 0 -8206528 128 0 -8206896 0 0 -8206917 128 0 -8207037 0 0 -8207066 128 0 -8207170 0 0 -8207193 128 0 -8207325 0 0 -8207343 128 0 -8207470 0 0 -8207506 128 0 -8207622 0 0 -8207660 128 0 -8207791 0 0 -8207822 128 0 -8207933 0 0 -8207984 128 0 -8208088 0 0 -8208159 128 0 -8208267 0 0 -8208314 128 0 -8208423 0 0 -8208483 128 0 -8208525 0 0 -8208546 128 0 -8208576 0 0 -8208645 128 0 -8208729 0 0 -8208789 128 0 -8208875 0 0 -8208935 128 0 -8209035 0 0 -8209090 128 0 -8209190 0 0 -8209250 128 0 -8209354 0 0 -8209413 128 0 -8209516 0 0 -8209588 128 0 -8209656 0 0 -8209756 128 0 -8209828 0 0 -8213075 totRewards = 71 -8213075 64 8 -8213257 0 8 -8213264 64 8 -8213275 64 0 -8213998 0 0 -8214014 64 0 -8214422 0 0 -8214434 64 0 -8214718 0 0 -8214728 64 0 -8215513 0 0 -8215534 64 0 -8215678 0 0 -8215705 64 0 -8216025 0 0 -8216049 64 0 -8216185 0 0 -8216226 64 0 -8216343 0 0 -8216389 64 0 -8216501 0 0 -8216551 64 0 -8216650 0 0 -8219650 totRewards = 72 -8219650 128 16 -8219802 0 16 -8219850 0 0 -8219880 128 0 -8220487 0 0 -8220503 128 0 -8220604 0 0 -8220653 128 0 -8220755 0 0 -8220765 128 0 -8220898 0 0 -8220913 128 0 -8221031 0 0 -8221071 128 0 -8221341 0 0 -8221378 128 0 -8221500 0 0 -8221542 128 0 -8221660 0 0 -8221708 128 0 -8221826 0 0 -8221879 128 0 -8221994 0 0 -8222048 128 0 -8222163 0 0 -8222213 128 0 -8222331 0 0 -8222383 128 0 -8222488 0 0 -8222558 128 0 -8222645 0 0 -8222701 128 0 -8222803 0 0 -8222867 128 0 -8222969 0 0 -8223030 128 0 -8223127 0 0 -8223184 128 0 -8223287 0 0 -8223341 128 0 -8223445 0 0 -8223499 128 0 -8223600 0 0 -8223678 128 0 -8223724 0 0 -8223807 128 0 -8223886 0 0 -8223978 128 0 -8224064 0 0 -8224122 128 0 -8224238 0 0 -8224295 128 0 -8224393 0 0 -8224469 128 0 -8224573 0 0 -8224646 128 0 -8224720 0 0 -8227852 totRewards = 73 -8227852 64 8 -8228014 0 8 -8228041 64 8 -8228052 64 0 -8229493 0 0 -8229499 64 0 -8229639 0 0 -8229644 64 0 -8230119 0 0 -8230133 64 0 -8230285 0 0 -8230301 64 0 -8230449 0 0 -8230472 64 0 -8230614 0 0 -8230640 64 0 -8230776 0 0 -8230826 64 0 -8230944 0 0 -8231006 64 0 -8231120 0 0 -8231159 64 0 -8231283 0 0 -8231342 64 0 -8231437 0 0 -8236228 totRewards = 74 -8236228 128 16 -8236363 0 16 -8236422 128 16 -8236428 128 0 -8237434 0 0 -8237455 128 0 -8237565 0 0 -8237590 128 0 -8237710 0 0 -8237720 128 0 -8237851 0 0 -8237873 128 0 -8237996 0 0 -8238028 128 0 -8238142 0 0 -8238173 128 0 -8238296 0 0 -8238317 128 0 -8238453 0 0 -8238479 128 0 -8238615 0 0 -8238640 128 0 -8238767 0 0 -8238803 128 0 -8238925 0 0 -8238966 128 0 -8239092 0 0 -8239131 128 0 -8239255 0 0 -8239300 128 0 -8239414 0 0 -8239466 128 0 -8239578 0 0 -8239630 128 0 -8239736 0 0 -8239788 128 0 -8239904 0 0 -8239964 128 0 -8240057 0 0 -8240098 128 0 -8240191 0 0 -8240262 128 0 -8240351 0 0 -8240412 128 0 -8240522 0 0 -8240586 128 0 -8240686 0 0 -8250887 totRewards = 75 -8250887 64 8 -8251087 64 0 -8251130 0 0 -8251166 64 0 -8251225 0 0 -8251239 64 0 -8253956 0 0 -8253968 64 0 -8254283 0 0 -8254307 64 0 -8254440 0 0 -8254469 64 0 -8254599 0 0 -8254639 64 0 -8254771 0 0 -8254809 64 0 -8254960 0 0 -8254970 64 0 -8255117 0 0 -8255153 64 0 -8255261 0 0 -8255323 64 0 -8255449 0 0 -8255459 64 0 -8255600 0 0 -8255655 64 0 -8255745 0 0 -8279322 totRewards = 76 -8279322 128 16 -8279522 128 0 -8279579 0 0 -8279617 128 0 -8279830 0 0 -8279841 128 0 -8279959 0 0 -8279983 128 0 -8280196 0 0 -8280230 128 0 -8280339 0 0 -8280349 128 0 -8280588 0 0 -8280618 128 0 -8280738 0 0 -8280751 128 0 -8281031 0 0 -8281076 128 0 -8281187 0 0 -8281232 128 0 -8281357 0 0 -8281390 128 0 -8281518 0 0 -8281555 128 0 -8281679 0 0 -8281739 128 0 -8281854 0 0 -8281917 128 0 -8282025 0 0 -8282088 128 0 -8282196 0 0 -8282283 128 0 -8282378 0 0 -8282440 128 0 -8282554 0 0 -8282599 128 0 -8282719 0 0 -8282763 128 0 -8282899 0 0 -8282967 128 0 -8283097 0 0 -8283149 128 0 -8283279 0 0 -8283363 128 0 -8283464 0 0 -8283516 128 0 -8283666 0 0 -8283703 128 0 -8283824 0 0 -8283886 128 0 -8283996 0 0 -8284062 128 0 -8284182 0 0 -8284252 128 0 -8284365 0 0 -8284448 128 0 -8284541 0 0 -8284598 128 0 -8284719 0 0 -8286738 128 0 -8286867 0 0 -8290340 totRewards = 77 -8290339 64 8 -8290540 64 0 -8290590 0 0 -8290601 64 0 -8291851 0 0 -8291862 64 0 -8292282 0 0 -8292292 64 0 -8292432 0 0 -8292444 64 0 -8292585 0 0 -8292603 64 0 -8292743 0 0 -8292767 64 0 -8292903 0 0 -8292929 64 0 -8293055 0 0 -8293084 64 0 -8293206 0 0 -8293239 64 0 -8293362 0 0 -8293378 64 0 -8293522 0 0 -8293538 64 0 -8293676 0 0 -8293703 64 0 -8293837 0 0 -8293860 64 0 -8293983 0 0 -8294017 64 0 -8294140 0 0 -8294168 64 0 -8294299 0 0 -8294324 64 0 -8294438 0 0 -8294463 64 0 -8294577 0 0 -8294624 64 0 -8294933 0 0 -8294971 64 0 -8295097 0 0 -8295149 64 0 -8295259 0 0 -8295316 64 0 -8295411 0 0 -8312427 totRewards = 78 -8312427 128 16 -8312443 0 16 -8312507 128 16 -8312627 128 0 -8312634 0 0 -8312721 128 0 -8312796 0 0 -8312819 128 0 -8312837 0 0 -8312909 128 0 -8313026 0 0 -8313041 128 0 -8313944 0 0 -8313963 128 0 -8314082 0 0 -8314103 128 0 -8314226 0 0 -8314245 128 0 -8314359 0 0 -8314390 128 0 -8314507 0 0 -8314538 128 0 -8314658 0 0 -8314689 128 0 -8314800 0 0 -8314839 128 0 -8314965 0 0 -8315010 128 0 -8315129 0 0 -8315179 128 0 -8315284 0 0 -8315342 128 0 -8315446 0 0 -8315500 128 0 -8315605 0 0 -8315662 128 0 -8315773 0 0 -8315790 128 0 -8316217 0 0 -8316234 128 0 -8316371 0 0 -8316406 128 0 -8316539 0 0 -8316561 128 0 -8316712 0 0 -8316732 128 0 -8316876 0 0 -8316902 128 0 -8317031 0 0 -8317071 128 0 -8317194 0 0 -8317254 128 0 -8317355 0 0 -8324400 totRewards = 79 -8324400 64 8 -8324595 0 8 -8324600 0 0 -8324630 64 0 -8325107 0 0 -8325130 64 0 -8328538 0 0 -8328562 64 0 -8328718 0 0 -8328727 64 0 -8330048 0 0 -8330059 64 0 -8330437 0 0 -8330462 64 0 -8330627 0 0 -8330639 64 0 -8330802 0 0 -8330829 64 0 -8330948 0 0 -8331033 64 0 -8331042 0 0 -8336747 totRewards = 80 -8336747 128 16 -8336947 128 0 -8337131 0 0 -8337170 128 0 -8337664 0 0 -8337671 128 0 -8337778 0 0 -8337808 128 0 -8337916 0 0 -8337946 128 0 -8338049 0 0 -8338083 128 0 -8338180 0 0 -8338220 128 0 -8338330 0 0 -8338363 128 0 -8338466 0 0 -8338506 128 0 -8338617 0 0 -8338661 128 0 -8338767 0 0 -8338812 128 0 -8338932 0 0 -8338983 128 0 -8339098 0 0 -8339157 128 0 -8339270 0 0 -8339332 128 0 -8339452 0 0 -8339515 128 0 -8339635 0 0 -8339686 128 0 -8339806 0 0 -8339853 128 0 -8339969 0 0 -8339993 128 0 -8340265 0 0 -8340281 128 0 -8340408 0 0 -8340456 128 0 -8340569 0 0 -8340613 128 0 -8340723 0 0 -8340772 128 0 -8340884 0 0 -8340936 128 0 -8341039 0 0 -8341088 128 0 -8341198 0 0 -8341257 128 0 -8341365 0 0 -8341425 128 0 -8341533 0 0 -8341600 128 0 -8341701 0 0 -8341774 128 0 -8341866 0 0 -8341940 128 0 -8342058 0 0 -8342106 128 0 -8342187 0 0 -8342856 128 0 -8342930 0 0 -8343078 128 0 -8345964 0 0 -8350233 totRewards = 81 -8350233 64 8 -8350422 0 8 -8350428 64 8 -8350433 64 0 -8352812 0 0 -8352825 64 0 -8352980 0 0 -8352999 64 0 -8353143 0 0 -8353172 64 0 -8353304 0 0 -8353343 64 0 -8353469 0 0 -8353500 64 0 -8353628 0 0 -8353650 64 0 -8353797 0 0 -8353820 64 0 -8353968 0 0 -8353982 64 0 -8354299 0 0 -8354323 64 0 -8354453 0 0 -8354512 64 0 -8354600 0 0 -8357863 totRewards = 82 -8357863 128 16 -8358029 0 16 -8358063 0 0 -8358127 128 0 -8358328 0 0 -8358343 128 0 -8358444 0 0 -8358485 128 0 -8358833 0 0 -8358894 128 0 -8359134 0 0 -8359143 128 0 -8359253 0 0 -8359289 128 0 -8359394 0 0 -8359423 128 0 -8359551 0 0 -8359560 128 0 -8359686 0 0 -8359723 128 0 -8359837 0 0 -8359875 128 0 -8360005 0 0 -8360039 128 0 -8360163 0 0 -8360213 128 0 -8360331 0 0 -8360382 128 0 -8360496 0 0 -8360561 128 0 -8360673 0 0 -8360742 128 0 -8360851 0 0 -8360922 128 0 -8361023 0 0 -8361095 128 0 -8361171 0 0 -8361409 128 0 -8361510 0 0 -8361580 128 0 -8361657 0 0 -8361731 128 0 -8361838 0 0 -8361896 128 0 -8361991 0 0 -8362067 128 0 -8362161 0 0 -8362249 128 0 -8362257 0 0 -8366125 totRewards = 83 -8366125 64 8 -8366325 64 0 -8366348 0 0 -8366371 64 0 -8368634 0 0 -8368647 64 0 -8368798 0 0 -8368820 64 0 -8368956 0 0 -8368986 64 0 -8369110 0 0 -8369141 64 0 -8369276 0 0 -8369299 64 0 -8369430 0 0 -8369476 64 0 -8369597 0 0 -8369625 64 0 -8369761 0 0 -8369781 64 0 -8369926 0 0 -8369948 64 0 -8370611 0 0 -8370623 64 0 -8370769 0 0 -8370801 64 0 -8370942 0 0 -8370980 64 0 -8371113 0 0 -8371163 64 0 -8371250 0 0 -8374448 totRewards = 84 -8374448 128 16 -8374648 128 0 -8374649 0 0 -8374696 128 0 -8374925 0 0 -8374948 128 0 -8375178 0 0 -8375212 128 0 -8375308 0 0 -8375368 128 0 -8375606 0 0 -8375614 128 0 -8375745 0 0 -8375760 128 0 -8376177 0 0 -8376209 128 0 -8376313 0 0 -8376353 128 0 -8376471 0 0 -8376490 128 0 -8376612 0 0 -8376652 128 0 -8376765 0 0 -8376826 128 0 -8376936 0 0 -8376988 128 0 -8377106 0 0 -8377153 128 0 -8377274 0 0 -8377331 128 0 -8377445 0 0 -8377502 128 0 -8377607 0 0 -8377674 128 0 -8377766 0 0 -8377824 128 0 -8377931 0 0 -8377985 128 0 -8378104 0 0 -8378153 128 0 -8378267 0 0 -8378331 128 0 -8378428 0 0 -8385289 totRewards = 85 -8385289 64 8 -8385489 64 0 -8385501 0 0 -8385514 64 0 -8387814 0 0 -8387836 64 0 -8387980 0 0 -8388009 64 0 -8388139 0 0 -8388180 64 0 -8388288 0 0 -8388345 64 0 -8388442 0 0 -8388514 64 0 -8388582 0 0 -8392063 totRewards = 86 -8392063 128 16 -8392225 0 16 -8392263 0 0 -8392332 128 0 -8392799 0 0 -8392820 128 0 -8392933 0 0 -8393022 128 0 -8393049 0 0 -8393081 128 0 -8393354 0 0 -8393367 128 0 -8393481 0 0 -8393504 128 0 -8393933 0 0 -8393964 128 0 -8394089 0 0 -8394118 128 0 -8394247 0 0 -8394274 128 0 -8394404 0 0 -8394449 128 0 -8394571 0 0 -8394614 128 0 -8394738 0 0 -8394776 128 0 -8394899 0 0 -8394948 128 0 -8395062 0 0 -8395119 128 0 -8395222 0 0 -8395272 128 0 -8395384 0 0 -8395450 128 0 -8395540 0 0 -8395598 128 0 -8395707 0 0 -8395756 128 0 -8395869 0 0 -8395923 128 0 -8396037 0 0 -8396098 128 0 -8396204 0 0 -8396274 128 0 -8396357 0 0 -8400269 totRewards = 87 -8400269 64 8 -8400469 64 0 -8400477 0 0 -8400489 64 0 - - description: state script log run 3 - task_epochs: 6, -] -2021-01-28 16:16:12,795 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 16:16:16,966 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 16:16:16,970 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 16:16:16,970 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 16:16:16,970 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 16:16:16,971 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 16:16:16,972 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 16:16:16,973 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 16:16:16,974 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 16:16:18,975 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 16:16:18,976 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 16:16:18,982 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 16:16:18,984 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 16:16:18,987 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 16:16:19,018 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 16:16:19,021 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 16:16:19,023 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 16:16:19,024 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 16:16:22,672 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 16:16:22,674 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 16:18:51,715 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = Jaq -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-01-28 16:18:52,015 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 16:18:52,023 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 16:18:52,023 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 16:18:52,024 rec_to_binaries.core: INFO Extracting time... -2021-01-28 16:20:02,174 rec_to_binaries.core: INFO Making position directory... -2021-01-28 16:20:02,362 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 16:20:02,371 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 -2021-01-28 16:20:02,371 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 16:20:02,371 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = Jaq -date = 20190826 -nwb_metadata = Experiment Info: -Experimenter: Abhilasha Joshi -Description: Theta and gait -Session Id: jaq_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/nwb/Jaq20190826.nwb - -2021-01-28 16:20:03,039 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! - , [] -2021-01-28 16:20:06,544 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 16:20:07,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 16:20:07,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 16:20:07,159 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 16:20:07,160 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 16:20:07,160 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 16:20:07,163 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 16:20:07,164 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 16:20:07,165 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140061936192528 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -2001580 totRewards = 1 -2001580 64 200 -2001618 0 136 -2001730 64 136 -2001776 0 136 -2001780 0 128 -2003264 64 128 -2003377 0 128 -2003446 64 128 -2003519 0 128 -2003570 64 128 -2003646 0 128 -2003696 64 128 -2003785 0 128 -2003826 64 128 -2004082 0 128 -2004105 64 128 -2004232 0 128 -2004274 64 128 -2004393 0 128 -2004427 64 128 -2004551 0 128 -2004583 64 128 -2004720 0 128 -2004752 64 128 -2004888 0 128 -2004930 64 128 -2005077 0 128 -2005116 64 128 -2005252 0 128 -2005284 64 128 -2005395 0 128 -2005465 64 128 -2005540 0 128 -2005603 64 128 -2005710 0 128 -2005749 64 128 -2005861 0 128 -2005934 64 128 -2006019 0 128 -2006065 64 128 -2006182 0 128 -2006217 64 128 -2006329 0 128 -2006344 64 128 -2006477 0 128 -2006494 64 128 -2006626 0 128 -2006639 64 128 -2006774 0 128 -2006801 64 128 -2006925 0 128 -2006975 64 128 -2007855 0 128 -2007878 64 128 -2008024 0 128 -2008063 64 128 -2008169 0 128 -2008218 64 128 -2008346 0 128 -2008414 64 128 -2008525 0 128 -2008545 64 128 -2008694 0 128 -2008728 64 128 -2008871 0 128 -2008882 64 128 -2010662 0 128 -2010678 64 128 -2011803 0 128 -2011833 64 128 -2011970 0 128 -2012060 64 128 -2012163 0 128 -2012186 64 128 -2012343 0 128 -2012375 64 128 -2012524 0 128 -2012561 64 128 -2012567 0 128 -2012582 64 128 -2012666 0 128 -2012692 64 128 -2012709 0 128 -2012758 64 128 -2012843 0 128 -2012878 64 128 -2012913 0 128 -2012973 64 128 -2013026 0 128 -2013031 64 128 -2013034 0 128 -2013052 64 128 -2013239 0 128 -2034560 totRewards = 2 -2034560 128 144 -2034760 128 128 -2035091 0 0 -2035175 128 0 -2035224 0 0 -2035241 128 0 -2035642 0 0 -2035669 128 0 -2035934 0 0 -2035976 128 0 -2036086 0 0 -2036140 128 0 -2036249 0 0 -2036307 128 0 -2036411 0 0 -2036492 128 0 -2036582 0 0 -2036660 128 0 -2036748 0 0 -2036816 128 0 -2036899 0 0 -2036961 128 0 -2037070 0 0 -2037137 128 0 -2037244 0 0 -2037376 128 0 -2037423 0 0 -2037507 128 0 -2037610 0 0 -2037670 128 0 -2037770 0 0 -2037803 128 0 -2037924 0 0 -2037933 128 0 -2038187 0 0 -2038197 128 0 -2038342 0 0 -2038355 128 0 -2038819 0 0 -2038855 128 0 -2039188 0 0 -2039253 128 0 -2039357 0 0 -2039426 128 0 -2039462 0 0 -2039490 128 0 -2039548 0 0 -2039667 128 0 -2039739 0 0 -2039810 128 0 -2039928 0 0 -2039981 128 0 -2040117 0 0 -2040208 128 0 -2040298 0 0 -2040373 128 0 -2040478 0 0 -2040515 128 0 -2040657 0 0 -2040697 128 0 -2040788 0 0 -2040829 128 0 -2040851 0 0 -2040860 128 0 -2041365 0 0 -2041423 128 0 -2041584 0 0 -2041699 128 0 -2041769 0 0 -2041844 128 0 -2041969 0 0 -2042090 128 0 -2042173 0 0 -2042311 128 0 -2042343 0 0 -2063830 128 0 -2063874 0 0 -2066005 128 0 -2067249 0 0 -2067324 128 0 -2067441 0 0 -2074645 totRewards = 3 -2074645 64 8 -2074658 0 8 -2074845 0 0 -2074976 64 0 -2075045 0 0 -2075058 64 0 -2075512 0 0 -2075546 64 0 -2075789 0 0 -2075823 64 0 -2076095 0 0 -2076119 64 0 -2076245 0 0 -2076272 64 0 -2076412 0 0 -2076445 64 0 -2076571 0 0 -2076603 64 0 -2076738 0 0 -2076767 64 0 -2076901 0 0 -2076934 64 0 -2077052 0 0 -2077104 64 0 -2077209 0 0 -2077249 64 0 -2077518 0 0 -2077538 64 0 -2077985 0 0 -2077999 64 0 -2078158 0 0 -2078172 64 0 -2078842 0 0 -2078882 64 0 -2079003 0 0 -2079062 64 0 -2079188 0 0 -2079210 64 0 -2079323 0 0 -2079338 64 0 -2079360 0 0 -2079427 64 0 -2079489 0 0 -2079575 64 0 -2079656 0 0 -2079680 64 0 -2081117 0 0 -2081135 64 0 -2081295 0 0 -2081324 64 0 -2081462 0 0 -2081533 64 0 -2081625 0 0 -2096193 totRewards = 4 -2096193 128 16 -2096393 128 0 -2096867 0 0 -2096907 128 0 -2097582 0 0 -2097600 128 0 -2097712 0 0 -2097733 128 0 -2097848 0 0 -2097876 128 0 -2097988 0 0 -2098020 128 0 -2098129 0 0 -2098160 128 0 -2098287 0 0 -2098319 128 0 -2098435 0 0 -2098479 128 0 -2098589 0 0 -2098635 128 0 -2098748 0 0 -2098802 128 0 -2098919 0 0 -2098997 128 0 -2099135 0 0 -2099189 128 0 -2099304 0 0 -2099356 128 0 -2099465 0 0 -2099508 128 0 -2099929 0 0 -2099945 128 0 -2100094 0 0 -2100103 128 0 -2100267 0 0 -2100306 128 0 -2100435 0 0 -2100498 128 0 -2100541 0 0 -2100563 128 0 -2100631 0 0 -2100699 128 0 -2100805 0 0 -2100866 128 0 -2100997 0 0 -2101127 128 0 -2101177 0 0 -2101305 128 0 -2101366 0 0 -2101520 128 0 -2101559 0 0 -2101741 128 0 -2101765 0 0 -2102142 128 0 -2102175 0 0 -2102328 128 0 -2102369 0 0 -2102507 128 0 -2102562 0 0 -2102681 128 0 -2102720 0 0 -2105862 128 0 -2105868 0 0 -2114611 totRewards = 5 -2114611 64 8 -2114766 0 8 -2114811 0 0 -2114881 64 0 -2115110 0 0 -2115120 64 0 -2115389 0 0 -2115397 64 0 -2116252 0 0 -2116283 64 0 -2116436 0 0 -2116450 64 0 -2116584 0 0 -2116611 64 0 -2116741 0 0 -2116780 64 0 -2116895 0 0 -2116944 64 0 -2117053 0 0 -2117100 64 0 -2117213 0 0 -2117240 64 0 -2117365 0 0 -2117398 64 0 -2117526 0 0 -2117554 64 0 -2117852 0 0 -2117876 64 0 -2118025 0 0 -2118034 64 0 -2118175 0 0 -2118220 64 0 -2118353 0 0 -2118363 64 0 -2118479 0 0 -2118501 64 0 -2118516 0 0 -2118552 64 0 -2118559 0 0 -2118580 64 0 -2118637 0 0 -2118740 64 0 -2118800 0 0 -2118878 64 0 -2120024 0 0 -2120051 64 0 -2120186 0 0 -2120233 64 0 -2120352 0 0 -2140288 totRewards = 6 -2140288 128 16 -2140488 128 0 -2140841 0 0 -2140904 128 0 -2141213 0 0 -2141279 128 0 -2141616 0 0 -2141629 128 0 -2141863 0 0 -2141879 128 0 -2142145 0 0 -2142170 128 0 -2142292 0 0 -2142316 128 0 -2142435 0 0 -2142476 128 0 -2142582 0 0 -2142631 128 0 -2142739 0 0 -2142785 128 0 -2142890 0 0 -2142943 128 0 -2143053 0 0 -2143111 128 0 -2143226 0 0 -2143277 128 0 -2143386 0 0 -2143425 128 0 -2143539 0 0 -2143553 128 0 -2143986 0 0 -2144010 128 0 -2144133 0 0 -2144162 128 0 -2144308 0 0 -2144348 128 0 -2144481 0 0 -2144538 128 0 -2144654 0 0 -2144710 128 0 -2144817 0 0 -2144882 128 0 -2144986 0 0 -2145048 128 0 -2145173 0 0 -2145185 128 0 -2145200 0 0 -2145208 128 0 -2145295 0 0 -2145404 128 0 -2145461 0 0 -2145557 128 0 -2145621 0 0 -2145669 128 0 -2145675 0 0 -2145682 128 0 -2145958 0 0 -2145990 128 0 -2146113 0 0 -2146144 128 0 -2146279 0 0 -2146329 128 0 -2146438 0 0 -2146560 128 0 -2146611 0 0 -2146696 128 0 -2146710 0 0 -2159529 totRewards = 7 -2159529 64 8 -2159729 64 0 -2159738 0 0 -2159763 64 0 -2160960 0 0 -2160973 64 0 -2161110 0 0 -2161128 64 0 -2161268 0 0 -2161289 64 0 -2161432 0 0 -2161459 64 0 -2161608 0 0 -2161632 64 0 -2161949 0 0 -2161985 64 0 -2162113 0 0 -2162143 64 0 -2162275 0 0 -2162296 64 0 -2162310 0 0 -2162319 64 0 -2162403 0 0 -2162421 64 0 -2162452 0 0 -2162459 64 0 -2162559 0 0 -2162568 64 0 -2162900 0 0 -2162928 64 0 -2163757 0 0 -2163783 64 0 -2163917 0 0 -2163968 64 0 -2164082 0 0 -2166458 64 0 -2166531 0 0 -2166648 64 0 -2166917 0 0 -2166935 64 0 -2167090 0 0 -2167109 64 0 -2167732 0 0 -2167762 64 0 -2167908 0 0 -2167929 64 0 -2168084 0 0 -2168099 64 0 -2168429 0 0 -2168490 64 0 -2168588 0 0 -2176893 totRewards = 8 -2176893 128 16 -2177093 128 0 -2177326 0 0 -2177401 128 0 -2177653 0 0 -2177660 128 0 -2177663 0 0 -2177733 128 0 -2178313 0 0 -2178319 128 0 -2179180 0 0 -2179188 128 0 -2179315 0 0 -2179351 128 0 -2179476 0 0 -2179523 128 0 -2179642 0 0 -2179688 128 0 -2179810 0 0 -2179872 128 0 -2179978 0 0 -2180036 128 0 -2180144 0 0 -2180182 128 0 -2180882 0 0 -2180915 128 0 -2181044 0 0 -2181173 128 0 -2181203 0 0 -2181292 128 0 -2181428 0 0 -2181534 128 0 -2181591 0 0 -2181727 128 0 -2181782 0 0 -2182366 128 0 -2182374 0 0 -2184109 128 0 -2184245 0 0 -2184296 128 0 -2184396 0 0 -2184529 128 0 -2188631 0 0 -2190187 128 0 -2191079 0 0 -2191268 128 0 -2192641 0 0 -2192662 128 0 -2193070 0 0 -2193103 128 0 -2193223 0 0 -2193290 128 0 -2193362 0 0 -2193437 128 0 -2193510 0 0 -2193613 128 0 -2193703 0 0 -2202716 totRewards = 9 -2202716 64 8 -2202773 0 8 -2202836 64 8 -2202916 64 0 -2204488 0 0 -2204502 64 0 -2204642 0 0 -2204664 64 0 -2204811 0 0 -2204825 64 0 -2204970 0 0 -2204987 64 0 -2205126 0 0 -2205156 64 0 -2205282 0 0 -2205322 64 0 -2205445 0 0 -2205473 64 0 -2205730 0 0 -2205744 64 0 -2205890 0 0 -2205893 64 0 -2206940 0 0 -2206946 64 0 -2207096 0 0 -2207119 64 0 -2207266 0 0 -2207280 64 0 -2207972 0 0 -2207997 64 0 -2208143 0 0 -2208171 64 0 -2209358 0 0 -2209415 64 0 -2209513 0 0 -2216514 64 0 -2216790 0 0 -2216816 64 0 -2216945 0 0 -2216964 64 0 -2217093 0 0 -2217122 64 0 -2217254 0 0 -2217269 64 0 -2217569 0 0 -2217585 64 0 -2217733 0 0 -2217752 64 0 -2218051 0 0 -2222344 totRewards = 10 -2222344 128 16 -2222461 0 16 -2222544 0 0 -2222557 128 0 -2222585 0 0 -2222649 128 0 -2222663 0 0 -2222948 128 0 -2223215 0 0 -2223240 128 0 -2223844 0 0 -2223856 128 0 -2223972 0 0 -2223978 128 0 -2224099 0 0 -2224123 128 0 -2224239 0 0 -2224270 128 0 -2224377 0 0 -2224408 128 0 -2224526 0 0 -2224571 128 0 -2224679 0 0 -2224728 128 0 -2224835 0 0 -2224896 128 0 -2225005 0 0 -2225061 128 0 -2225173 0 0 -2225232 128 0 -2225342 0 0 -2225399 128 0 -2225511 0 0 -2225547 128 0 -2225798 0 0 -2225808 128 0 -2226268 0 0 -2226295 128 0 -2226441 0 0 -2226471 128 0 -2226612 0 0 -2226663 128 0 -2226797 0 0 -2226836 128 0 -2226974 0 0 -2227280 128 0 -2227394 0 0 -2227522 128 0 -2227572 0 0 -2240414 128 0 -2240991 0 0 -2241009 128 0 -2241417 0 0 -2241455 128 0 -2241562 0 0 -2241608 128 0 -2241717 0 0 -2241773 128 0 -2241885 0 0 -2241935 128 0 -2242056 0 0 -2242116 128 0 -2242216 0 0 -2242288 128 0 -2242395 0 0 -2242461 128 0 -2242582 0 0 -2242633 128 0 -2242764 0 0 -2242816 128 0 -2242923 0 0 -2243013 128 0 -2243120 0 0 -2243260 128 0 -2243270 0 0 -2245717 128 0 -2247529 0 0 -2247664 128 0 -2247755 0 0 -2254386 totRewards = 11 -2254386 64 8 -2254586 64 0 -2254782 0 0 -2254804 64 0 -2256275 0 0 -2256295 64 0 -2256427 0 0 -2256456 64 0 -2256588 0 0 -2256617 64 0 -2256923 0 0 -2256953 64 0 -2257081 0 0 -2257117 64 0 -2257241 0 0 -2257280 64 0 -2257399 0 0 -2257441 64 0 -2257567 0 0 -2257588 64 0 -2258047 0 0 -2258051 64 0 -2258899 0 0 -2258921 64 0 -2259056 0 0 -2259097 64 0 -2259215 0 0 -2259255 64 0 -2259372 0 0 -2259405 64 0 -2260634 0 0 -2260676 64 0 -2261234 0 0 -2261300 64 0 -2261404 0 0 -2261441 64 0 -2261625 0 0 -2261715 64 0 -2261815 0 0 -2261834 64 0 -2261977 0 0 -2262025 64 0 -2262133 0 0 -2277660 totRewards = 12 -2277660 128 16 -2277739 0 16 -2277860 0 0 -2277981 128 0 -2278327 0 0 -2278333 128 0 -2278895 0 0 -2278925 128 0 -2279032 0 0 -2279044 128 0 -2279302 0 0 -2279309 128 0 -2279439 0 0 -2279455 128 0 -2279735 0 0 -2279763 128 0 -2279878 0 0 -2279911 128 0 -2280032 0 0 -2280084 128 0 -2280202 0 0 -2280254 128 0 -2280364 0 0 -2280421 128 0 -2280526 0 0 -2280579 128 0 -2280686 0 0 -2280736 128 0 -2280847 0 0 -2280883 128 0 -2281609 0 0 -2281646 128 0 -2281774 0 0 -2281872 128 0 -2281935 0 0 -2282007 128 0 -2282103 0 0 -2282213 128 0 -2282280 0 0 -2282420 128 0 -2282494 0 0 -2284086 128 0 -2285130 0 0 -2285212 128 0 -2286235 0 0 -2286289 128 0 -2287135 0 0 -2287186 128 0 -2287289 0 0 -2291999 totRewards = 13 -2291999 64 8 -2292199 64 0 -2293824 0 0 -2293846 64 0 -2293982 0 0 -2294001 64 0 -2294138 0 0 -2294169 64 0 -2294293 0 0 -2294332 64 0 -2294454 0 0 -2294482 64 0 -2294791 0 0 -2294803 64 0 -2295457 0 0 -2295504 64 0 -2295973 0 0 -2296018 64 0 -2296154 0 0 -2296187 64 0 -2296796 0 0 -2296819 64 0 -2297909 0 0 -2297970 64 0 -2298237 0 0 -2298249 64 0 -2298570 0 0 -2298612 64 0 -2298728 0 0 -2298774 64 0 -2298883 0 0 -2298938 64 0 -2299041 0 0 -2307832 totRewards = 14 -2307832 128 16 -2308000 0 16 -2308028 128 16 -2308032 128 0 -2309019 0 0 -2309027 128 0 -2309306 0 0 -2309313 128 0 -2309437 0 0 -2309473 128 0 -2309593 0 0 -2309630 128 0 -2309750 0 0 -2309782 128 0 -2309900 0 0 -2309946 128 0 -2310069 0 0 -2310100 128 0 -2310224 0 0 -2310266 128 0 -2310382 0 0 -2310441 128 0 -2310558 0 0 -2310611 128 0 -2310718 0 0 -2310772 128 0 -2310877 0 0 -2310912 128 0 -2311035 0 0 -2311066 128 0 -2311185 0 0 -2311220 128 0 -2311336 0 0 -2311371 128 0 -2311666 0 0 -2311731 128 0 -2311816 0 0 -2311986 128 0 -2312015 0 0 -2313817 128 0 -2313887 0 0 -2313926 128 0 -2314125 0 0 -2314202 128 0 -2314630 0 0 -2314756 128 0 -2317830 0 0 -2317846 128 0 -2317980 0 0 -2318017 128 0 -2318121 0 0 -2318447 128 0 -2318468 0 0 -2318575 128 0 -2318643 0 0 -2321337 128 0 -2322451 0 0 -2322689 128 0 -2327632 0 0 -2327645 128 0 -2327935 0 0 -2327967 128 0 -2328085 0 0 -2328120 128 0 -2328244 0 0 -2328283 128 0 -2328404 0 0 -2328457 128 0 -2328561 0 0 -2328627 128 0 -2328720 0 0 -2328866 128 0 -2328892 0 0 -2328961 128 0 -2329075 0 0 -2329131 128 0 -2329240 0 0 -2329331 128 0 -2329412 0 0 -2329583 128 0 -2329768 0 0 -2331261 128 0 -2333920 0 0 -2337449 totRewards = 15 -2337449 64 8 -2337649 64 0 -2338511 0 0 -2338525 64 0 -2339700 0 0 -2339726 64 0 -2339869 0 0 -2339884 64 0 -2340021 0 0 -2340049 64 0 -2340177 0 0 -2340221 64 0 -2340350 0 0 -2340357 64 0 -2340814 0 0 -2340842 64 0 -2341675 0 0 -2341689 64 0 -2341838 0 0 -2341866 64 0 -2341992 0 0 -2342046 64 0 -2342161 0 0 -2342239 64 0 -2342326 0 0 -2342402 64 0 -2342683 0 0 -2342700 64 0 -2342845 0 0 -2342872 64 0 -2343006 0 0 -2343072 64 0 -2343156 0 0 -2346147 totRewards = 16 -2346147 128 16 -2346164 0 16 -2346272 128 16 -2346335 0 16 -2346347 0 0 -2346589 128 0 -2346602 0 0 -2346660 128 0 -2346684 0 0 -2346947 128 0 -2347329 0 0 -2347349 128 0 -2348105 0 0 -2348110 128 0 -2348537 0 0 -2348558 128 0 -2348682 0 0 -2348728 128 0 -2348835 0 0 -2348889 128 0 -2349004 0 0 -2349052 128 0 -2349166 0 0 -2349215 128 0 -2349330 0 0 -2349374 128 0 -2349484 0 0 -2349526 128 0 -2350244 0 0 -2350261 128 0 -2350407 0 0 -2350441 128 0 -2350568 0 0 -2350595 128 0 -2350771 0 0 -2350858 128 0 -2350914 0 0 -2351075 128 0 -2351151 0 0 -2351309 128 0 -2351326 0 0 -2351740 128 0 -2351753 0 0 -2351886 128 0 -2351896 0 0 -2352011 128 0 -2352104 0 0 -2352187 128 0 -2352214 0 0 -2352301 128 0 -2352559 0 0 -2352772 128 0 -2353146 0 0 -2353183 128 0 -2353383 0 0 -2353426 128 0 -2355263 0 0 -2359358 totRewards = 17 -2359358 64 8 -2359558 64 0 -2360088 0 0 -2360101 64 0 -2361553 0 0 -2361578 64 0 -2361883 0 0 -2361907 64 0 -2362039 0 0 -2362075 64 0 -2362327 0 0 -2362335 64 0 -2364953 0 0 -2364983 64 0 -2365102 0 0 -2365153 64 0 -2365267 0 0 -2365324 64 0 -2365414 0 0 -2368975 totRewards = 18 -2368975 128 16 -2369175 128 0 -2369303 0 0 -2369335 128 0 -2369692 0 0 -2369711 128 0 -2369813 0 0 -2369864 128 0 -2370239 0 0 -2370266 128 0 -2370543 0 0 -2370563 128 0 -2370698 0 0 -2370728 128 0 -2370846 0 0 -2370899 128 0 -2371028 0 0 -2371066 128 0 -2371186 0 0 -2371233 128 0 -2371348 0 0 -2371399 128 0 -2371524 0 0 -2371569 128 0 -2371690 0 0 -2371747 128 0 -2371862 0 0 -2371919 128 0 -2372027 0 0 -2372070 128 0 -2372173 0 0 -2372219 128 0 -2372338 0 0 -2375851 128 0 -2376084 0 0 -2376257 128 0 -2376944 0 0 -2377077 128 0 -2378183 0 0 -2381281 totRewards = 19 -2381281 64 8 -2381481 64 0 -2382052 0 0 -2382073 64 0 -2383036 0 0 -2383047 64 0 -2383182 0 0 -2383206 64 0 -2383520 0 0 -2383532 64 0 -2383681 0 0 -2383710 64 0 -2383859 0 0 -2383866 64 0 -2384010 0 0 -2384039 64 0 -2384184 0 0 -2384206 64 0 -2384339 0 0 -2384374 64 0 -2385999 0 0 -2386006 64 0 -2386173 0 0 -2386185 64 0 -2386707 0 0 -2386743 64 0 -2386868 0 0 -2386931 64 0 -2387020 0 0 -2390293 totRewards = 20 -2390293 128 16 -2390431 0 16 -2390474 128 16 -2390493 128 0 -2390625 0 0 -2390686 128 0 -2390781 0 0 -2390831 128 0 -2391031 0 0 -2391064 128 0 -2391157 0 0 -2391189 128 0 -2391831 0 0 -2391839 128 0 -2392429 0 0 -2392447 128 0 -2392582 0 0 -2392621 128 0 -2392746 0 0 -2392786 128 0 -2392920 0 0 -2392951 128 0 -2393082 0 0 -2393120 128 0 -2393249 0 0 -2393295 128 0 -2393428 0 0 -2393461 128 0 -2393626 0 0 -2393678 128 0 -2393703 0 0 -2393722 128 0 -2393784 0 0 -2393850 128 0 -2393969 0 0 -2394022 128 0 -2394154 0 0 -2394254 128 0 -2394329 0 0 -2394379 128 0 -2394421 0 0 -2394454 128 0 -2394485 0 0 -2394621 128 0 -2394669 0 0 -2395021 128 0 -2395050 0 0 -2395157 128 0 -2395192 0 0 -2395962 128 0 -2395976 0 0 -2399690 totRewards = 21 -2399690 64 8 -2399739 0 8 -2399783 64 8 -2399889 64 0 -2400032 0 0 -2400055 64 0 -2401665 0 0 -2401674 64 0 -2401820 0 0 -2401845 64 0 -2401974 0 0 -2402003 64 0 -2402129 0 0 -2402156 64 0 -2402593 0 0 -2402609 64 0 -2402754 0 0 -2402766 64 0 -2403575 0 0 -2403613 64 0 -2403763 0 0 -2403774 64 0 -2404087 0 0 -2404120 64 0 -2404268 0 0 -2404282 64 0 -2404424 0 0 -2404457 64 0 -2404593 0 0 -2404624 64 0 -2404761 0 0 -2404786 64 0 -2405621 0 0 -2405656 64 0 -2405801 0 0 -2405835 64 0 -2405983 0 0 -2406018 64 0 -2406128 0 0 -2408919 totRewards = 22 -2408918 128 16 -2409089 0 16 -2409099 128 16 -2409118 128 0 -2409259 0 0 -2409282 128 0 -2409881 0 0 -2409914 128 0 -2410332 0 0 -2410359 128 0 -2410491 0 0 -2410499 128 0 -2410625 0 0 -2410640 128 0 -2410777 0 0 -2410806 128 0 -2410954 0 0 -2410964 128 0 -2411111 0 0 -2411139 128 0 -2411271 0 0 -2411311 128 0 -2411444 0 0 -2411478 128 0 -2411620 0 0 -2411645 128 0 -2411779 0 0 -2411820 128 0 -2411949 0 0 -2411991 128 0 -2412110 0 0 -2412152 128 0 -2412297 0 0 -2412381 128 0 -2412463 0 0 -2412586 128 0 -2412637 0 0 -2417606 totRewards = 23 -2417606 64 8 -2417806 64 0 -2417988 0 0 -2418017 64 0 -2419385 0 0 -2419403 64 0 -2419710 0 0 -2419728 64 0 -2419869 0 0 -2419900 64 0 -2420197 0 0 -2420230 64 0 -2420360 0 0 -2420383 64 0 -2420813 0 0 -2420840 64 0 -2420978 0 0 -2421000 64 0 -2421625 0 0 -2421678 64 0 -2421781 0 0 -2421836 64 0 -2421936 0 0 -2424845 totRewards = 24 -2424845 128 16 -2424878 0 16 -2424957 128 16 -2425001 0 16 -2425029 128 16 -2425045 128 0 -2425100 0 0 -2425132 128 0 -2425255 0 0 -2425341 128 0 -2425404 0 0 -2425413 128 0 -2425655 0 0 -2425694 128 0 -2429976 0 0 -2430004 128 0 -2430156 0 0 -2430196 128 0 -2430336 0 0 -2430380 128 0 -2430522 0 0 -2430571 128 0 -2430718 0 0 -2430748 128 0 -2430894 0 0 -2430920 128 0 -2431078 0 0 -2431125 128 0 -2431275 0 0 -2431329 128 0 -2431675 0 0 -2431820 128 0 -2431897 0 0 -2432493 128 0 -2432637 0 0 -2432661 128 0 -2432804 0 0 -2432861 128 0 -2432994 0 0 -2433025 128 0 -2433287 0 0 -2433293 128 0 -2433298 0 0 -2433302 128 0 -2433608 0 0 -2433619 128 0 -2433651 0 0 -2433688 128 0 -2433712 0 0 -2433722 128 0 -2433771 0 0 -2433875 128 0 -2434339 0 0 -2434379 128 0 -2434521 0 0 -2434566 128 0 -2435276 0 0 -2435311 128 0 -2435450 0 0 -2435518 128 0 -2435619 0 0 -2435702 128 0 -2435821 0 0 -2435901 128 0 -2436009 0 0 -2436087 128 0 -2436177 0 0 -2436291 128 0 -2436323 0 0 -2436357 128 0 -2436377 0 0 -2443046 128 0 -2443134 0 0 -2443341 128 0 -2443453 0 0 -2443671 128 0 -2443803 0 0 -2443889 128 0 -2443921 0 0 -2443970 128 0 -2444102 0 0 -2447042 totRewards = 25 -2447042 64 8 -2447242 64 0 -2447765 0 0 -2447772 64 0 -2447880 0 0 -2447886 64 0 -2449309 0 0 -2449318 64 0 -2449464 0 0 -2449481 64 0 -2449621 0 0 -2449639 64 0 -2449783 0 0 -2449802 64 0 -2449934 0 0 -2449973 64 0 -2450097 0 0 -2450126 64 0 -2450260 0 0 -2450285 64 0 -2450402 0 0 -2455364 totRewards = 26 -2455364 128 16 -2455546 0 16 -2455564 0 0 -2455657 128 0 -2455691 0 0 -2455743 128 0 -2455937 0 0 -2456018 128 0 -2456092 0 0 -2456103 128 0 -2456163 0 0 -2456212 128 0 -2456319 0 0 -2456362 128 0 -2457252 0 0 -2457265 128 0 -2457695 0 0 -2457717 128 0 -2457847 0 0 -2457870 128 0 -2458176 0 0 -2458211 128 0 -2458339 0 0 -2458376 128 0 -2458501 0 0 -2458536 128 0 -2458658 0 0 -2458698 128 0 -2458804 0 0 -2458851 128 0 -2458970 0 0 -2458984 128 0 -2459119 0 0 -2459147 128 0 -2459250 0 0 -2463620 totRewards = 27 -2463620 64 8 -2463820 64 0 -2465463 0 0 -2465471 64 0 -2465619 0 0 -2465626 64 0 -2465935 0 0 -2465947 64 0 -2466092 0 0 -2466110 64 0 -2466253 0 0 -2466280 64 0 -2466410 0 0 -2466447 64 0 -2466568 0 0 -2466603 64 0 -2466732 0 0 -2466752 64 0 -2467027 0 0 -2469814 totRewards = 28 -2469814 128 16 -2469994 0 16 -2470014 0 0 -2470051 128 0 -2470113 0 0 -2470131 128 0 -2470369 0 0 -2470428 128 0 -2470615 0 0 -2470659 128 0 -2470750 0 0 -2470810 128 0 -2471182 0 0 -2471206 128 0 -2471609 0 0 -2471636 128 0 -2471763 0 0 -2471806 128 0 -2471934 0 0 -2471960 128 0 -2472090 0 0 -2472133 128 0 -2472245 0 0 -2472295 128 0 -2472412 0 0 -2472452 128 0 -2472597 0 0 -2472634 128 0 -2472746 0 0 -2472805 128 0 -2472913 0 0 -2472952 128 0 -2473352 0 0 -2473598 128 0 -2476006 0 0 -2476133 128 0 -2479487 0 0 -2479687 128 0 -2480044 0 0 -2482815 totRewards = 29 -2482815 64 8 -2483015 64 0 -2485179 0 0 -2485197 64 0 -2485339 0 0 -2485359 64 0 -2485487 0 0 -2485527 64 0 -2485658 0 0 -2485672 64 0 -2485968 0 0 -2485982 64 0 -2486102 0 0 -2489155 totRewards = 30 -2489155 128 16 -2489313 0 16 -2489355 0 0 -2489369 128 0 -2489697 0 0 -2489732 128 0 -2489944 0 0 -2489982 128 0 -2490071 0 0 -2490129 128 0 -2490358 0 0 -2490381 128 0 -2490490 0 0 -2490527 128 0 -2490938 0 0 -2490973 128 0 -2491097 0 0 -2491113 128 0 -2491255 0 0 -2491270 128 0 -2491405 0 0 -2491435 128 0 -2491565 0 0 -2491605 128 0 -2491743 0 0 -2491776 128 0 -2491897 0 0 -2491946 128 0 -2492059 0 0 -2492109 128 0 -2492225 0 0 -2492263 128 0 -2492382 0 0 -2492423 128 0 -2492544 0 0 -2492573 128 0 -2492723 0 0 -2492742 128 0 -2492881 0 0 -2492917 128 0 -2493039 0 0 -2493086 128 0 -2493194 0 0 -2493241 128 0 -2493365 0 0 -2493381 128 0 -2493510 0 0 -2493572 128 0 -2493589 0 0 -2493676 128 0 -2493876 0 0 -2494191 128 0 -2494750 0 0 -2494845 128 0 -2495454 0 0 -2499420 totRewards = 31 -2499419 64 8 -2499619 64 0 -2502333 0 0 -2502350 64 0 -2502492 0 0 -2502502 64 0 -2503572 0 0 -2503596 64 0 -2503742 0 0 -2503751 64 0 -2504397 0 0 -2504419 64 0 -2504560 0 0 -2504572 64 0 -2505051 0 0 -2505069 64 0 -2505379 0 0 -2505412 64 0 -2505557 0 0 -2505572 64 0 -2505715 0 0 -2505767 64 0 -2505847 0 0 -2508735 totRewards = 32 -2508735 128 16 -2508885 0 16 -2508935 0 0 -2508994 128 0 -2509065 0 0 -2509107 128 0 -2509335 0 0 -2509344 128 0 -2509483 0 0 -2509494 128 0 -2509735 0 0 -2509758 128 0 -2509877 0 0 -2509893 128 0 -2510149 0 0 -2510177 128 0 -2510297 0 0 -2510320 128 0 -2510597 0 0 -2510620 128 0 -2510757 0 0 -2510780 128 0 -2511073 0 0 -2511100 128 0 -2511234 0 0 -2511266 128 0 -2511410 0 0 -2511438 128 0 -2511567 0 0 -2511607 128 0 -2511716 0 0 -2511763 128 0 -2511868 0 0 -2511924 128 0 -2512020 0 0 -2515171 totRewards = 33 -2515171 64 8 -2515371 64 0 -2515871 0 0 -2515882 64 0 -2517692 0 0 -2517721 64 0 -2517853 0 0 -2517891 64 0 -2518013 0 0 -2518044 64 0 -2518481 0 0 -2518520 64 0 -2518612 0 0 -2521180 totRewards = 34 -2521180 128 16 -2521354 0 16 -2521379 128 16 -2521380 128 0 -2521569 0 0 -2521590 128 0 -2521692 0 0 -2521711 128 0 -2521925 0 0 -2521978 128 0 -2522070 0 0 -2522108 128 0 -2522490 0 0 -2522514 128 0 -2522937 0 0 -2522956 128 0 -2523086 0 0 -2523120 128 0 -2523252 0 0 -2523270 128 0 -2523399 0 0 -2523434 128 0 -2523557 0 0 -2523601 128 0 -2523729 0 0 -2523767 128 0 -2523896 0 0 -2523942 128 0 -2524058 0 0 -2524104 128 0 -2524211 0 0 -2524253 128 0 -2524372 0 0 -2524387 128 0 -2524514 0 0 -2527384 totRewards = 35 -2527384 64 8 -2527584 64 0 -2529745 0 0 -2529773 64 0 -2529906 0 0 -2529937 64 0 -2530226 0 0 -2530248 64 0 -2530392 0 0 -2530412 64 0 -2530548 0 0 -2530575 64 0 -2530711 0 0 -2530730 64 0 -2530869 0 0 -2530900 64 0 -2531022 0 0 -2531075 64 0 -2531188 0 0 -2531252 64 0 -2531324 0 0 -2532712 64 0 -2532741 0 0 -2532965 64 0 -2533145 0 0 -2533200 64 0 -2533263 0 0 -2533333 64 0 -2533747 0 0 -2536465 totRewards = 36 -2536465 128 16 -2536665 128 0 -2536770 0 0 -2536790 128 0 -2537391 0 0 -2537424 128 0 -2537815 0 0 -2537843 128 0 -2538112 0 0 -2538119 128 0 -2538254 0 0 -2538292 128 0 -2538420 0 0 -2538455 128 0 -2538583 0 0 -2538622 128 0 -2538747 0 0 -2538789 128 0 -2538909 0 0 -2538941 128 0 -2539071 0 0 -2539112 128 0 -2539227 0 0 -2539272 128 0 -2539389 0 0 -2539435 128 0 -2539553 0 0 -2539599 128 0 -2539710 0 0 -2539756 128 0 -2539870 0 0 -2539919 128 0 -2540024 0 0 -2540097 128 0 -2540131 0 0 -2543061 totRewards = 37 -2543061 64 8 -2543261 64 0 -2543302 0 0 -2543321 64 0 -2545004 0 0 -2545027 64 0 -2545177 0 0 -2545189 64 0 -2545641 0 0 -2545675 64 0 -2545800 0 0 -2545841 64 0 -2546764 0 0 -2546771 64 0 -2546909 0 0 -2546973 64 0 -2547017 0 0 -2549893 totRewards = 38 -2549893 128 16 -2550093 128 0 -2550333 0 0 -2550345 128 0 -2550468 0 0 -2550476 128 0 -2550694 0 0 -2550702 128 0 -2550933 0 0 -2550951 128 0 -2551060 0 0 -2551108 128 0 -2551471 0 0 -2551497 128 0 -2551924 0 0 -2551952 128 0 -2552079 0 0 -2552100 128 0 -2552395 0 0 -2552426 128 0 -2552547 0 0 -2552592 128 0 -2552735 0 0 -2552764 128 0 -2552902 0 0 -2552946 128 0 -2553065 0 0 -2553112 128 0 -2553229 0 0 -2553275 128 0 -2553379 0 0 -2553437 128 0 -2553527 0 0 -2553607 128 0 -2553670 0 0 -2556846 totRewards = 39 -2556846 64 8 -2557046 64 0 -2557066 0 0 -2557079 64 0 -2559054 0 0 -2559065 64 0 -2559552 0 0 -2559572 64 0 -2559707 0 0 -2559758 64 0 -2559875 0 0 -2559923 64 0 -2560048 0 0 -2560089 64 0 -2560388 0 0 -2560454 64 0 -2560540 0 0 -2563235 totRewards = 40 -2563235 128 16 -2563435 128 0 -2564006 0 0 -2564041 128 0 -2564140 0 0 -2564180 128 0 -2564559 0 0 -2564586 128 0 -2565004 0 0 -2565043 128 0 -2565168 0 0 -2565191 128 0 -2565328 0 0 -2565350 128 0 -2565480 0 0 -2565520 128 0 -2565631 0 0 -2565663 128 0 -2565791 0 0 -2565824 128 0 -2565949 0 0 -2565991 128 0 -2566098 0 0 -2566143 128 0 -2566260 0 0 -2566298 128 0 -2566424 0 0 -2566467 128 0 -2566573 0 0 -2566618 128 0 -2566742 0 0 -2566763 128 0 -2566912 0 0 -2566946 128 0 -2567068 0 0 -2567114 128 0 -2567223 0 0 -2567281 128 0 -2567360 0 0 -2570298 totRewards = 41 -2570298 64 8 -2570498 64 0 -2572758 0 0 -2572780 64 0 -2573101 0 0 -2573145 64 0 -2573281 0 0 -2573322 64 0 -2574008 0 0 -2574032 64 0 -2574177 0 0 -2574208 64 0 -2574715 0 0 -2574748 64 0 -2574882 0 0 -2574902 64 0 -2575057 0 0 -2575077 64 0 -2575202 0 0 -2577813 totRewards = 42 -2577813 128 16 -2578013 128 0 -2578222 0 0 -2578344 128 0 -2578817 0 0 -2578850 128 0 -2579085 0 0 -2579101 128 0 -2579222 0 0 -2579250 128 0 -2579669 0 0 -2579699 128 0 -2579835 0 0 -2579850 128 0 -2579982 0 0 -2580007 128 0 -2580144 0 0 -2580176 128 0 -2580312 0 0 -2580346 128 0 -2580479 0 0 -2580507 128 0 -2580638 0 0 -2580678 128 0 -2580786 0 0 -2580831 128 0 -2580937 0 0 -2580984 128 0 -2581062 0 0 -2584210 totRewards = 43 -2584210 64 8 -2584410 64 0 -2586367 0 0 -2586382 64 0 -2586524 0 0 -2586547 64 0 -2586680 0 0 -2586702 64 0 -2586842 0 0 -2586864 64 0 -2587008 0 0 -2587033 64 0 -2587166 0 0 -2587199 64 0 -2587321 0 0 -2587360 64 0 -2587481 0 0 -2587525 64 0 -2587617 0 0 -2591303 totRewards = 44 -2591303 128 16 -2591503 128 0 -2592645 0 0 -2592656 128 0 -2592782 0 0 -2592800 128 0 -2592917 0 0 -2592937 128 0 -2593048 0 0 -2593077 128 0 -2593187 0 0 -2593217 128 0 -2593333 0 0 -2593366 128 0 -2593490 0 0 -2593535 128 0 -2593655 0 0 -2593700 128 0 -2593815 0 0 -2593856 128 0 -2593963 0 0 -2594007 128 0 -2594115 0 0 -2594146 128 0 -2594278 0 0 -2594284 128 0 -2594410 0 0 -2594449 128 0 -2594556 0 0 -2597675 totRewards = 45 -2597675 64 8 -2597875 64 0 -2597920 0 0 -2597969 64 0 -2598419 0 0 -2598448 64 0 -2599285 0 0 -2599293 64 0 -2599432 0 0 -2599457 64 0 -2599909 0 0 -2599936 64 0 -2600074 0 0 -2600097 64 0 -2600414 0 0 -2600433 64 0 -2600563 0 0 -2600596 64 0 -2600725 0 0 -2600772 64 0 -2600890 0 0 -2600949 64 0 -2601047 0 0 -2604007 totRewards = 46 -2604007 128 16 -2604138 0 16 -2604182 128 16 -2604207 128 0 -2604334 0 0 -2604358 128 0 -2604953 0 0 -2604986 128 0 -2605376 0 0 -2605394 128 0 -2605808 0 0 -2605835 128 0 -2605967 0 0 -2605985 128 0 -2606122 0 0 -2606135 128 0 -2606272 0 0 -2606300 128 0 -2606432 0 0 -2606461 128 0 -2606601 0 0 -2606640 128 0 -2606768 0 0 -2606807 128 0 -2606919 0 0 -2606963 128 0 -2607067 0 0 -2607118 128 0 -2607213 0 0 -2607303 128 0 -2607313 0 0 -2607779 128 0 -2607848 0 0 -2607904 128 0 -2610120 0 0 -2612954 totRewards = 47 -2612954 64 8 -2613154 64 0 -2613292 0 0 -2613317 64 0 -2615429 0 0 -2615446 64 0 -2615573 0 0 -2615611 64 0 -2615733 0 0 -2615771 64 0 -2615870 0 0 -2618571 totRewards = 48 -2618571 128 16 -2618771 128 0 -2618887 0 0 -2618900 128 0 -2619108 0 0 -2619120 128 0 -2619497 0 0 -2619543 128 0 -2619918 0 0 -2619954 128 0 -2620363 0 0 -2620391 128 0 -2620510 0 0 -2620544 128 0 -2620904 0 0 -2620928 128 0 -2621061 0 0 -2621089 128 0 -2621226 0 0 -2621255 128 0 -2621369 0 0 -2621404 128 0 -2621520 0 0 -2621552 128 0 -2621699 0 0 -2621709 128 0 -2621843 0 0 -2621884 128 0 -2622000 0 0 -2622047 128 0 -2622163 0 0 -2622220 128 0 -2622346 0 0 -2623071 128 0 -2623182 0 0 -2623626 128 0 -2623700 0 0 -2627843 totRewards = 49 -2627843 64 8 -2628043 64 0 -2628136 0 0 -2628145 64 0 -2630032 0 0 -2630043 64 0 -2630502 0 0 -2630528 64 0 -2630653 0 0 -2630694 64 0 -2630813 0 0 -2630851 64 0 -2630971 0 0 -2631015 64 0 -2631098 0 0 -2633877 totRewards = 50 -2633877 128 16 -2633918 0 16 -2634001 128 16 -2634077 128 0 -2634143 0 0 -2634220 128 0 -2634328 0 0 -2634355 128 0 -2634565 0 0 -2634606 128 0 -2634696 0 0 -2634763 128 0 -2634977 0 0 -2634997 128 0 -2635124 0 0 -2635139 128 0 -2635545 0 0 -2635565 128 0 -2635685 0 0 -2635726 128 0 -2635846 0 0 -2635872 128 0 -2635998 0 0 -2636033 128 0 -2636156 0 0 -2636196 128 0 -2636321 0 0 -2636362 128 0 -2636480 0 0 -2636521 128 0 -2636627 0 0 -2636678 128 0 -2636772 0 0 -2636829 128 0 -2636924 0 0 -2637003 128 0 -2637049 0 0 -2637178 128 0 -2637463 0 0 -2637651 128 0 -2637701 0 0 -2637769 128 0 -2639197 0 0 -2639288 128 0 -2639604 0 0 -2642308 totRewards = 51 -2642308 64 8 -2642508 64 0 -2642755 0 0 -2642780 64 0 -2642990 0 0 -2643012 64 0 -2644727 0 0 -2644744 64 0 -2645038 0 0 -2645057 64 0 -2645191 0 0 -2645218 64 0 -2645347 0 0 -2645388 64 0 -2645496 0 0 -2648343 totRewards = 52 -2648343 128 16 -2648532 0 16 -2648543 0 0 -2648588 128 0 -2648779 0 0 -2648825 128 0 -2648909 0 0 -2648954 128 0 -2649155 0 0 -2649191 128 0 -2649290 0 0 -2649329 128 0 -2649720 0 0 -2649730 128 0 -2650155 0 0 -2650182 128 0 -2650297 0 0 -2650337 128 0 -2650464 0 0 -2650490 128 0 -2650621 0 0 -2650664 128 0 -2650780 0 0 -2650827 128 0 -2650935 0 0 -2650972 128 0 -2651074 0 0 -2651120 128 0 -2651217 0 0 -2651289 128 0 -2651325 0 0 -2653923 totRewards = 53 -2653923 64 8 -2654123 64 0 -2654159 0 0 -2654164 64 0 -2656886 0 0 -2656923 64 0 -2657046 0 0 -2657096 64 0 -2657201 0 0 -2659902 totRewards = 54 -2659902 128 16 -2660074 0 16 -2660102 0 0 -2660120 128 0 -2660236 0 0 -2660248 128 0 -2660836 0 0 -2660882 128 0 -2661980 0 0 -2661989 128 0 -2662272 0 0 -2662301 128 0 -2662434 0 0 -2662461 128 0 -2662597 0 0 -2662628 128 0 -2662757 0 0 -2662797 128 0 -2662914 0 0 -2662953 128 0 -2663064 0 0 -2663102 128 0 -2663664 0 0 -2663762 128 0 -2663778 0 0 -2667190 128 0 -2667285 0 0 -2667322 128 0 -2667332 0 0 -2667348 128 0 -2667390 0 0 -2667467 128 0 -2667512 0 0 -2670338 totRewards = 55 -2670338 64 8 -2670537 0 8 -2670538 0 0 -2670554 64 0 -2673064 0 0 -2673094 64 0 -2673217 0 0 -2673252 64 0 -2673377 0 0 -2673410 64 0 -2673510 0 0 -2676470 totRewards = 56 -2676470 128 16 -2676605 0 16 -2676670 0 0 -2676690 128 0 -2676845 0 0 -2676875 128 0 -2676960 0 0 -2677004 128 0 -2677208 0 0 -2677249 128 0 -2677355 0 0 -2677401 128 0 -2677772 0 0 -2677798 128 0 -2678199 0 0 -2678229 128 0 -2678354 0 0 -2678386 128 0 -2678670 0 0 -2678702 128 0 -2678823 0 0 -2678865 128 0 -2678992 0 0 -2679026 128 0 -2679155 0 0 -2679195 128 0 -2679306 0 0 -2679354 128 0 -2679454 0 0 -2679516 128 0 -2679589 0 0 -2682766 totRewards = 57 -2682766 64 8 -2682966 64 0 -2683919 0 0 -2683933 64 0 -2684207 0 0 -2684224 64 0 -2685002 0 0 -2685015 64 0 -2685143 0 0 -2685175 64 0 -2685455 0 0 -2685474 64 0 -2685599 0 0 -2685657 64 0 -2685736 0 0 -2706877 totRewards = 58 -2706877 128 16 -2707077 128 0 -2707134 0 0 -2707214 128 0 -2707252 0 0 -2707327 128 0 -2707414 0 0 -2707461 128 0 -2707533 0 0 -2707581 128 0 -2707778 0 0 -2707811 128 0 -2707913 0 0 -2707937 128 0 -2708010 0 0 -2708044 128 0 -2708408 0 0 -2708433 128 0 -2708828 0 0 -2708854 128 0 -2708979 0 0 -2709006 128 0 -2709143 0 0 -2709156 128 0 -2709287 0 0 -2709320 128 0 -2709429 0 0 -2709472 128 0 -2709587 0 0 -2709610 128 0 -2709734 0 0 -2709760 128 0 -2709883 0 0 -2709894 128 0 -2710026 0 0 -2710035 128 0 -2710770 0 0 -2710801 128 0 -2710921 0 0 -2710971 128 0 -2711087 0 0 -2711140 128 0 -2711257 0 0 -2711311 128 0 -2711402 0 0 -2711473 128 0 -2711540 0 0 -2714595 totRewards = 59 -2714595 64 8 -2714780 0 8 -2714795 0 0 -2714827 64 0 -2716113 0 0 -2716122 64 0 -2716729 0 0 -2716755 64 0 -2717031 0 0 -2717070 64 0 -2718886 0 0 -2718918 64 0 -2719050 0 0 -2719131 64 0 -2719202 0 0 -2719520 64 0 -2719777 0 0 -2719810 64 0 -2719928 0 0 -2726538 totRewards = 60 -2726538 128 16 -2726738 128 0 -2726850 0 0 -2726888 128 0 -2727361 0 0 -2727372 128 0 -2727476 0 0 -2727496 128 0 -2727604 0 0 -2727635 128 0 -2727743 0 0 -2727763 128 0 -2727882 0 0 -2727908 128 0 -2728014 0 0 -2728049 128 0 -2728154 0 0 -2728191 128 0 -2728304 0 0 -2728339 128 0 -2728457 0 0 -2728493 128 0 -2728610 0 0 -2728654 128 0 -2728777 0 0 -2728828 128 0 -2728944 0 0 -2728988 128 0 -2729096 0 0 -2729146 128 0 -2729258 0 0 -2729311 128 0 -2729409 0 0 -2729448 128 0 -2729568 0 0 -2729585 128 0 -2729718 0 0 -2729757 128 0 -2729881 0 0 -2729920 128 0 -2730029 0 0 -2730079 128 0 -2730192 0 0 -2730243 128 0 -2730360 0 0 -2730364 128 0 -2730508 0 0 -2730526 128 0 -2730654 0 0 -2730683 128 0 -2730815 0 0 -2730851 128 0 -2730979 0 0 -2731018 128 0 -2731152 0 0 -2731200 128 0 -2731309 0 0 -2731371 128 0 -2731471 0 0 -2731551 128 0 -2731656 0 0 -2731757 128 0 -2731869 0 0 -2731971 128 0 -2732012 0 0 -2732183 128 0 -2732229 0 0 -2732309 128 0 -2732386 0 0 -2732469 128 0 -2732494 0 0 -2743355 128 0 -2744545 0 0 -2744578 128 0 -2744976 0 0 -2744989 128 0 -2745109 0 0 -2745726 128 0 -2746827 0 0 -2749691 totRewards = 61 -2749691 64 8 -2749731 0 8 -2749791 64 8 -2749891 64 0 -2749948 0 0 -2749972 64 0 -2750528 0 0 -2750550 64 0 -2752440 0 0 -2752448 64 0 -2752755 0 0 -2752771 64 0 -2752917 0 0 -2752939 64 0 -2753078 0 0 -2753101 64 0 -2753229 0 0 -2753256 64 0 -2753708 0 0 -2753718 64 0 -2753861 0 0 -2753899 64 0 -2754013 0 0 -2757104 totRewards = 62 -2757104 128 16 -2757235 0 16 -2757269 128 16 -2757304 128 0 -2757425 0 0 -2757489 128 0 -2757605 0 0 -2757630 128 0 -2757845 0 0 -2757882 128 0 -2757967 0 0 -2758017 128 0 -2758254 0 0 -2758267 128 0 -2758383 0 0 -2758411 128 0 -2758658 0 0 -2758674 128 0 -2758813 0 0 -2758831 128 0 -2758957 0 0 -2758982 128 0 -2759109 0 0 -2759141 128 0 -2759271 0 0 -2759299 128 0 -2759429 0 0 -2759475 128 0 -2759586 0 0 -2759625 128 0 -2759743 0 0 -2759777 128 0 -2759889 0 0 -2759921 128 0 -2760049 0 0 -2760067 128 0 -2760196 0 0 -2760236 128 0 -2760349 0 0 -2760394 128 0 -2760512 0 0 -2760556 128 0 -2760679 0 0 -2760744 128 0 -2760875 0 0 -2760895 128 0 -2760997 0 0 -2761064 128 0 -2761159 0 0 -2761405 128 0 -2761474 0 0 -2761947 128 0 -2761993 0 0 -2762069 128 0 -2762158 0 0 -2762237 128 0 -2762270 0 0 -2762301 128 0 -2762338 0 0 -2762413 128 0 -2762515 0 0 -2762593 128 0 -2762687 0 0 -2762825 128 0 -2762875 0 0 -2762963 128 0 -2762977 0 0 -2763006 128 0 -2763029 0 0 -2763599 128 0 -2763750 0 0 -2778762 128 0 -2779299 0 0 -2779310 128 0 -2779720 0 0 -2779753 128 0 -2779862 0 0 -2779894 128 0 -2780009 0 0 -2780092 128 0 -2780158 0 0 -2780234 128 0 -2780300 0 0 -2780360 128 0 -2780460 0 0 -2780551 128 0 -2780607 0 0 -2780789 128 0 -2780817 0 0 -2780931 128 0 -2780976 0 0 -2781104 128 0 -2781138 0 0 -2781321 128 0 -2781360 0 0 -2781483 128 0 -2781518 0 0 -2781884 128 0 -2781911 0 0 -2787595 totRewards = 63 -2787595 64 8 -2787795 64 0 -2787877 0 0 -2787916 64 0 -2787951 0 0 -2787971 64 0 -2790162 0 0 -2790167 64 0 -2790645 0 0 -2790670 64 0 -2791939 0 0 -2791975 64 0 -2792085 0 0 -2792148 64 0 -2792219 0 0 -2795469 totRewards = 64 -2795469 128 16 -2795576 0 16 -2795648 128 16 -2795669 128 0 -2795788 0 0 -2795851 128 0 -2795943 0 0 -2796014 128 0 -2796366 0 0 -2796401 128 0 -2796759 0 0 -2796781 128 0 -2797183 0 0 -2797208 128 0 -2797330 0 0 -2797363 128 0 -2797490 0 0 -2797512 128 0 -2797644 0 0 -2797673 128 0 -2797809 0 0 -2797850 128 0 -2797975 0 0 -2798014 128 0 -2798126 0 0 -2798163 128 0 -2798279 0 0 -2798323 128 0 -2798435 0 0 -2798481 128 0 -2798596 0 0 -2798654 128 0 -2798757 0 0 -2798823 128 0 -2798920 0 0 -2807348 totRewards = 65 -2807348 64 8 -2807548 64 0 -2808025 0 0 -2808028 64 0 -2810196 0 0 -2810226 64 0 -2810345 0 0 -2810392 64 0 -2810497 0 0 -2810569 64 0 -2810614 0 0 -2813558 totRewards = 66 -2813558 128 16 -2813758 128 0 -2813988 0 0 -2814012 128 0 -2814112 0 0 -2814179 128 0 -2815017 0 0 -2815036 128 0 -2815165 0 0 -2815173 128 0 -2815303 0 0 -2815311 128 0 -2815449 0 0 -2815465 128 0 -2815591 0 0 -2815617 128 0 -2815755 0 0 -2815768 128 0 -2815898 0 0 -2815928 128 0 -2816053 0 0 -2816098 128 0 -2816217 0 0 -2816253 128 0 -2816375 0 0 -2816390 128 0 -2816978 0 0 -2816985 128 0 -2817129 0 0 -2817155 128 0 -2817290 0 0 -2817312 128 0 -2817449 0 0 -2817473 128 0 -2817609 0 0 -2817652 128 0 -2817764 0 0 -2817804 128 0 -2817924 0 0 -2817966 128 0 -2818098 0 0 -2818153 128 0 -2818262 0 0 -2818318 128 0 -2818429 0 0 -2818489 128 0 -2818598 0 0 -2818666 128 0 -2818768 0 0 -2818819 128 0 -2818930 0 0 -2818995 128 0 -2819118 0 0 -2819166 128 0 -2819284 0 0 -2819343 128 0 -2819453 0 0 -2819521 128 0 -2819551 0 0 -2819579 128 0 -2819597 0 0 -2830526 totRewards = 67 -2830526 64 8 -2830672 0 8 -2830726 0 0 -2830732 64 0 -2831181 0 0 -2831203 64 0 -2832711 0 0 -2832728 64 0 -2833188 0 0 -2833203 64 0 -2833355 0 0 -2833365 64 0 -2833681 0 0 -2833698 64 0 -2833843 0 0 -2834265 64 0 -2835014 0 0 -2835058 64 0 -2835167 0 0 -2835219 64 0 -2835279 0 0 -2837950 totRewards = 68 -2837950 128 16 -2838150 128 0 -2838178 0 0 -2838246 128 0 -2838261 0 0 -2838325 128 0 -2838532 0 0 -2838570 128 0 -2838778 0 0 -2838815 128 0 -2838915 0 0 -2838967 128 0 -2839344 0 0 -2839362 128 0 -2839799 0 0 -2839819 128 0 -2839944 0 0 -2839984 128 0 -2840106 0 0 -2840124 128 0 -2840264 0 0 -2840297 128 0 -2840416 0 0 -2840459 128 0 -2840584 0 0 -2840619 128 0 -2840740 0 0 -2840768 128 0 -2840903 0 0 -2840909 128 0 -2841496 0 0 -2841512 128 0 -2841651 0 0 -2841691 128 0 -2841802 0 0 -2846687 totRewards = 69 -2846687 64 8 -2846887 64 0 -2848800 0 0 -2848810 64 0 -2849435 0 0 -2849465 64 0 -2849584 0 0 -2849630 64 0 -2849756 0 0 -2849769 64 0 -2849895 0 0 -2849972 64 0 -2850025 0 0 -2853239 totRewards = 70 -2853239 128 16 -2853434 0 16 -2853439 0 0 -2853550 128 0 -2853586 0 0 -2853625 128 0 -2853850 0 0 -2853874 128 0 -2854227 0 0 -2854279 128 0 -2854655 0 0 -2854676 128 0 -2854949 0 0 -2854963 128 0 -2855101 0 0 -2855129 128 0 -2855248 0 0 -2855290 128 0 -2855421 0 0 -2855451 128 0 -2855580 0 0 -2855622 128 0 -2855736 0 0 -2855780 128 0 -2855894 0 0 -2855929 128 0 -2856064 0 0 -2856067 128 0 -2856202 0 0 -2856220 128 0 -2856358 0 0 -2856374 128 0 -2856674 0 0 -2856695 128 0 -2856817 0 0 -2856867 128 0 -2856972 0 0 -2860351 totRewards = 71 -2860351 64 8 -2860551 64 0 -2860594 0 0 -2860605 64 0 -2863128 0 0 -2863147 64 0 -2863681 0 0 -2863721 64 0 -2863856 0 0 -2863872 64 0 -2864884 0 0 -2865052 64 0 -2865726 0 0 -2865753 64 0 -2865907 0 0 -2865934 64 0 -2867130 0 0 -2867142 64 0 -2867841 0 0 -2867860 64 0 -2867996 0 0 -2873333 64 0 -2873589 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140061936204752 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -4817847 0 0 -4817864 64 0 -4818025 0 0 -4818034 64 0 -4818369 0 0 -4818377 64 0 -4818526 0 0 -4818555 64 0 -4818673 0 0 -4818736 64 0 -4818831 0 0 -4819088 64 0 -4819182 0 0 -4819213 64 0 -4819739 0 0 -4819764 64 0 -4819903 0 0 -4819950 64 0 -4820061 0 0 -4820111 64 0 -4820420 0 0 -4820429 64 0 -4820510 0 0 -4828786 totRewards = 3 -4828786 128 16 -4828986 128 0 -4829102 0 0 -4829123 128 0 -4829163 0 0 -4829191 128 0 -4829454 0 0 -4829472 128 0 -4829583 0 0 -4829600 128 0 -4829709 0 0 -4829746 128 0 -4829840 0 0 -4829888 128 0 -4829990 0 0 -4830039 128 0 -4830140 0 0 -4830186 128 0 -4830278 0 0 -4830338 128 0 -4830443 0 0 -4830498 128 0 -4830615 0 0 -4830682 128 0 -4830774 0 0 -4830907 128 0 -4830929 0 0 -4831031 128 0 -4831112 0 0 -4831194 128 0 -4831301 0 0 -4831362 128 0 -4831469 0 0 -4831536 128 0 -4831642 0 0 -4831707 128 0 -4831814 0 0 -4831907 128 0 -4831930 0 0 -4831970 128 0 -4832014 0 0 -4832102 128 0 -4832216 0 0 -4832248 128 0 -4832391 0 0 -4832422 128 0 -4833030 0 0 -4833058 128 0 -4833227 0 0 -4833249 128 0 -4833394 0 0 -4833452 128 0 -4833557 0 0 -4833703 128 0 -4833758 0 0 -4833839 128 0 -4833954 0 0 -4834046 128 0 -4834077 0 0 -4834088 128 0 -4834147 0 0 -4834291 128 0 -4834346 0 0 -4834485 128 0 -4834534 0 0 -4834622 128 0 -4834638 0 0 -4834686 128 0 -4834721 0 0 -4834793 128 0 -4834906 0 0 -4834976 128 0 -4835056 0 0 -4852460 totRewards = 4 -4852460 64 8 -4852512 0 8 -4852521 64 8 -4852660 64 0 -4852675 0 0 -4852738 64 0 -4852959 0 0 -4852998 64 0 -4853080 0 0 -4853127 64 0 -4853229 0 0 -4853243 64 0 -4853356 0 0 -4853378 64 0 -4853487 0 0 -4853492 64 0 -4853610 0 0 -4853641 64 0 -4853755 0 0 -4853781 64 0 -4853899 0 0 -4853919 64 0 -4854034 0 0 -4854057 64 0 -4854186 0 0 -4854216 64 0 -4854338 0 0 -4854359 64 0 -4854502 0 0 -4854523 64 0 -4854658 0 0 -4854696 64 0 -4854849 0 0 -4854873 64 0 -4855013 0 0 -4855063 64 0 -4855209 0 0 -4855242 64 0 -4855396 0 0 -4855426 64 0 -4855575 0 0 -4855604 64 0 -4856208 0 0 -4856240 64 0 -4856392 0 0 -4856419 64 0 -4856580 0 0 -4856610 64 0 -4856759 0 0 -4856801 64 0 -4856954 0 0 -4857005 64 0 -4857152 0 0 -4857180 64 0 -4857889 0 0 -4857932 64 0 -4858068 0 0 -4858111 64 0 -4858420 0 0 -4858438 64 0 -4858585 0 0 -4866594 totRewards = 5 -4866594 128 16 -4866662 0 16 -4866681 128 16 -4866794 128 0 -4867290 0 0 -4867314 128 0 -4867550 0 0 -4867587 128 0 -4867683 0 0 -4867725 128 0 -4867812 0 0 -4867845 128 0 -4867957 0 0 -4867982 128 0 -4868100 0 0 -4868124 128 0 -4868232 0 0 -4868271 128 0 -4868372 0 0 -4868411 128 0 -4868516 0 0 -4868554 128 0 -4868673 0 0 -4868705 128 0 -4868821 0 0 -4868874 128 0 -4868991 0 0 -4869036 128 0 -4869154 0 0 -4869203 128 0 -4869318 0 0 -4869385 128 0 -4869503 0 0 -4869568 128 0 -4869673 0 0 -4869754 128 0 -4869863 0 0 -4869946 128 0 -4870043 0 0 -4870126 128 0 -4870241 0 0 -4870282 128 0 -4871043 0 0 -4871067 128 0 -4871200 0 0 -4871242 128 0 -4871377 0 0 -4871431 128 0 -4871575 0 0 -4871609 128 0 -4871755 0 0 -4871817 128 0 -4871920 0 0 -4872003 128 0 -4872024 0 0 -4872068 128 0 -4872107 0 0 -4872194 128 0 -4872273 0 0 -4876373 totRewards = 6 -4876373 64 8 -4876573 64 0 -4876675 0 0 -4876736 64 0 -4876839 0 0 -4876874 64 0 -4876984 0 0 -4876997 64 0 -4877117 0 0 -4877126 64 0 -4877250 0 0 -4877260 64 0 -4877517 0 0 -4877545 64 0 -4877666 0 0 -4877697 64 0 -4877817 0 0 -4877847 64 0 -4877980 0 0 -4878003 64 0 -4878145 0 0 -4878177 64 0 -4878328 0 0 -4878362 64 0 -4878523 0 0 -4878577 64 0 -4878731 0 0 -4878775 64 0 -4878934 0 0 -4878967 64 0 -4879125 0 0 -4879162 64 0 -4879300 0 0 -4879318 64 0 -4880030 0 0 -4880060 64 0 -4880215 0 0 -4880260 64 0 -4880399 0 0 -4880465 64 0 -4880596 0 0 -4880664 64 0 -4880751 0 0 -4880780 64 0 -4881140 0 0 -4881161 64 0 -4881317 0 0 -4881362 64 0 -4881499 0 0 -4881559 64 0 -4881695 0 0 -4881720 64 0 -4882244 0 0 -4882270 64 0 -4882413 0 0 -4882508 64 0 -4882546 0 0 -4896386 64 0 -4896645 0 0 -4896669 64 0 -4896794 0 0 -4896812 64 0 -4896947 0 0 -4896952 64 0 -4897084 0 0 -4897108 64 0 -4897231 0 0 -4897256 64 0 -4897387 0 0 -4897407 64 0 -4897547 0 0 -4897567 64 0 -4897717 0 0 -4897729 64 0 -4897865 0 0 -4897901 64 0 -4898027 0 0 -4898077 64 0 -4898188 0 0 -4898258 64 0 -4898327 0 0 -4901581 totRewards = 7 -4901581 128 16 -4901694 0 16 -4901717 128 16 -4901772 0 16 -4901781 0 0 -4901805 128 0 -4902063 0 0 -4902089 128 0 -4902305 0 0 -4902340 128 0 -4902427 0 0 -4902479 128 0 -4902847 0 0 -4902863 128 0 -4903270 0 0 -4903289 128 0 -4903411 0 0 -4903434 128 0 -4903569 0 0 -4903584 128 0 -4903714 0 0 -4903744 128 0 -4903871 0 0 -4903917 128 0 -4904046 0 0 -4904082 128 0 -4904216 0 0 -4904258 128 0 -4904380 0 0 -4904424 128 0 -4904567 0 0 -4904609 128 0 -4904742 0 0 -4904781 128 0 -4904916 0 0 -4904961 128 0 -4905081 0 0 -4905124 128 0 -4905253 0 0 -4905287 128 0 -4905593 0 0 -4905609 128 0 -4905739 0 0 -4905792 128 0 -4905931 0 0 -4906048 128 0 -4906099 0 0 -4906215 128 0 -4906274 0 0 -4906347 128 0 -4906454 0 0 -4906533 128 0 -4906542 0 0 -4906585 128 0 -4906644 0 0 -4906773 128 0 -4906818 0 0 -4907177 128 0 -4907200 0 0 -4907941 128 0 -4907959 0 0 -4908081 128 0 -4908131 0 0 -4908213 128 0 -4908317 0 0 -4908381 128 0 -4908418 0 0 -4908446 128 0 -4908485 0 0 -4911724 totRewards = 8 -4911724 64 8 -4911924 64 0 -4911941 0 0 -4911962 64 0 -4912433 0 0 -4912458 64 0 -4912573 0 0 -4912601 64 0 -4912851 0 0 -4912869 64 0 -4912989 0 0 -4913014 64 0 -4913134 0 0 -4913160 64 0 -4913459 0 0 -4913478 64 0 -4913610 0 0 -4913641 64 0 -4913784 0 0 -4913808 64 0 -4913964 0 0 -4913989 64 0 -4914118 0 0 -4914155 64 0 -4914296 0 0 -4914326 64 0 -4914463 0 0 -4914498 64 0 -4914627 0 0 -4914667 64 0 -4914793 0 0 -4914823 64 0 -4914974 0 0 -4914985 64 0 -4915471 0 0 -4915498 64 0 -4915646 0 0 -4915671 64 0 -4916187 0 0 -4916204 64 0 -4916350 0 0 -4916378 64 0 -4916503 0 0 -4916561 64 0 -4916674 0 0 -4920485 totRewards = 9 -4920485 128 16 -4920685 128 0 -4920977 0 0 -4921018 128 0 -4921139 0 0 -4921178 128 0 -4921274 0 0 -4921292 128 0 -4921397 0 0 -4921428 128 0 -4921547 0 0 -4921562 128 0 -4921701 0 0 -4921720 128 0 -4921826 0 0 -4921858 128 0 -4921972 0 0 -4921995 128 0 -4922277 0 0 -4922310 128 0 -4922441 0 0 -4922467 128 0 -4922606 0 0 -4922629 128 0 -4922757 0 0 -4922800 128 0 -4922934 0 0 -4922979 128 0 -4923108 0 0 -4923158 128 0 -4923280 0 0 -4923331 128 0 -4923450 0 0 -4923491 128 0 -4924091 0 0 -4924123 128 0 -4924262 0 0 -4924287 128 0 -4924429 0 0 -4924468 128 0 -4924610 0 0 -4924639 128 0 -4924788 0 0 -4924827 128 0 -4924973 0 0 -4925030 128 0 -4925160 0 0 -4925221 128 0 -4925327 0 0 -4925937 128 0 -4925950 0 0 -4928799 totRewards = 10 -4928799 64 8 -4928969 0 8 -4928987 64 8 -4928999 64 0 -4929480 0 0 -4929512 64 0 -4929639 0 0 -4929655 64 0 -4929782 0 0 -4929805 64 0 -4929915 0 0 -4929932 64 0 -4930065 0 0 -4930084 64 0 -4930210 0 0 -4930220 64 0 -4930525 0 0 -4930544 64 0 -4930854 0 0 -4930878 64 0 -4931024 0 0 -4931054 64 0 -4931200 0 0 -4931231 64 0 -4931565 0 0 -4931603 64 0 -4931764 0 0 -4931795 64 0 -4931957 0 0 -4931989 64 0 -4932364 0 0 -4932410 64 0 -4932560 0 0 -4947797 64 0 -4947959 0 0 -4948025 64 0 -4948717 0 0 -4948727 64 0 -4949039 0 0 -4949046 64 0 -4949176 0 0 -4949215 64 0 -4949340 0 0 -4949386 64 0 -4949498 0 0 -4967056 totRewards = 11 -4967056 128 16 -4967231 0 16 -4967256 0 0 -4967312 128 0 -4967362 0 0 -4967376 128 0 -4967612 0 0 -4967650 128 0 -4967858 0 0 -4967882 128 0 -4967971 0 0 -4968022 128 0 -4968377 0 0 -4968394 128 0 -4968518 0 0 -4968538 128 0 -4968794 0 0 -4968807 128 0 -4968951 0 0 -4968957 128 0 -4969082 0 0 -4969104 128 0 -4969226 0 0 -4969252 128 0 -4969378 0 0 -4969407 128 0 -4969531 0 0 -4969563 128 0 -4969697 0 0 -4969720 128 0 -4969861 0 0 -4969900 128 0 -4970025 0 0 -4970067 128 0 -4970192 0 0 -4970228 128 0 -4970347 0 0 -4970388 128 0 -4970503 0 0 -4970541 128 0 -4970971 0 0 -4971005 128 0 -4971135 0 0 -4971168 128 0 -4971305 0 0 -4971337 128 0 -4971468 0 0 -4971506 128 0 -4971636 0 0 -4971677 128 0 -4971809 0 0 -4971862 128 0 -4971983 0 0 -4972038 128 0 -4972151 0 0 -4972225 128 0 -4972334 0 0 -4972421 128 0 -4972490 0 0 -4975667 totRewards = 12 -4975667 64 8 -4975815 0 8 -4975853 64 8 -4975867 64 0 -4976483 0 0 -4976489 64 0 -4976881 0 0 -4976893 64 0 -4977017 0 0 -4977029 64 0 -4977172 0 0 -4977191 64 0 -4977318 0 0 -4977342 64 0 -4977468 0 0 -4977488 64 0 -4977628 0 0 -4977644 64 0 -4977793 0 0 -4977817 64 0 -4977959 0 0 -4977990 64 0 -4978129 0 0 -4978148 64 0 -4978307 0 0 -4978314 64 0 -4978461 0 0 -4978489 64 0 -4978625 0 0 -4978665 64 0 -4978796 0 0 -4978818 64 0 -4979118 0 0 -4979125 64 0 -4979622 0 0 -4979635 64 0 -4979958 0 0 -4979985 64 0 -4980103 0 0 -4980159 64 0 -4980260 0 0 -4983502 totRewards = 13 -4983502 128 16 -4983702 128 0 -4983726 0 0 -4983779 128 0 -4983973 0 0 -4984037 128 0 -4984095 0 0 -4984118 128 0 -4984358 0 0 -4984393 128 0 -4984494 0 0 -4984560 128 0 -4984607 0 0 -4984634 128 0 -4984925 0 0 -4984932 128 0 -4985063 0 0 -4985072 128 0 -4985202 0 0 -4985216 128 0 -4985343 0 0 -4985374 128 0 -4985498 0 0 -4985536 128 0 -4985666 0 0 -4985703 128 0 -4985825 0 0 -4985871 128 0 -4985996 0 0 -4986049 128 0 -4986173 0 0 -4986216 128 0 -4986345 0 0 -4986392 128 0 -4986515 0 0 -4986564 128 0 -4986683 0 0 -4986706 128 0 -4987137 0 0 -4987165 128 0 -4987293 0 0 -4987326 128 0 -4987459 0 0 -4987529 128 0 -4987549 0 0 -4987558 128 0 -4987628 0 0 -4987690 128 0 -4987801 0 0 -4988118 128 0 -4988160 0 0 -4988272 128 0 -4988333 0 0 -4988481 128 0 -4988512 0 0 -4988658 128 0 -4988684 0 0 -4988847 128 0 -4988874 0 0 -4992017 totRewards = 14 -4992017 64 8 -4992217 64 0 -4992245 0 0 -4992258 64 0 -4993747 0 0 -4993755 64 0 -4994232 0 0 -4994243 64 0 -4994394 0 0 -4994418 64 0 -4994917 0 0 -4994937 64 0 -4995077 0 0 -4995101 64 0 -4995241 0 0 -4995266 64 0 -4995416 0 0 -4995427 64 0 -4995585 0 0 -4995600 64 0 -4995760 0 0 -4995767 64 0 -4996645 0 0 -4996677 64 0 -4996811 0 0 -4996862 64 0 -4997027 0 0 -4997159 64 0 -4997203 0 0 -4997275 64 0 -4997417 0 0 -4997432 64 0 -4997789 0 0 -4997818 64 0 -4997960 0 0 -4997999 64 0 -4998121 0 0 -4998164 64 0 -4998268 0 0 -4998346 64 0 -4998393 0 0 -5001232 totRewards = 15 -5001232 128 16 -5001398 0 16 -5001432 0 0 -5001436 128 0 -5001501 0 0 -5001510 128 0 -5001628 0 0 -5001660 128 0 -5001753 0 0 -5001791 128 0 -5002001 0 0 -5002056 128 0 -5002135 0 0 -5002203 128 0 -5002418 0 0 -5002432 128 0 -5002556 0 0 -5002576 128 0 -5002867 0 0 -5002876 128 0 -5002999 0 0 -5003032 128 0 -5003161 0 0 -5003186 128 0 -5003332 0 0 -5003353 128 0 -5003491 0 0 -5003532 128 0 -5003656 0 0 -5003703 128 0 -5003835 0 0 -5003879 128 0 -5004005 0 0 -5004053 128 0 -5004179 0 0 -5004226 128 0 -5004337 0 0 -5004383 128 0 -5004501 0 0 -5004527 128 0 -5004665 0 0 -5004722 128 0 -5004823 0 0 -5004889 128 0 -5004995 0 0 -5005073 128 0 -5005082 0 0 -5005114 128 0 -5005159 0 0 -5005242 128 0 -5005334 0 0 -5005852 128 0 -5005893 0 0 -5008890 totRewards = 16 -5008890 64 8 -5009090 64 0 -5009153 0 0 -5009177 64 0 -5009662 0 0 -5009677 64 0 -5010833 0 0 -5010840 64 0 -5011344 0 0 -5011352 64 0 -5012032 0 0 -5012067 64 0 -5012533 0 0 -5012549 64 0 -5012852 0 0 -5012878 64 0 -5013573 0 0 -5013589 64 0 -5013750 0 0 -5013779 64 0 -5013922 0 0 -5013956 64 0 -5014073 0 0 -5014143 64 0 -5014202 0 0 -5016866 totRewards = 17 -5016866 128 16 -5017035 0 16 -5017066 0 0 -5017093 128 0 -5017282 0 0 -5017317 128 0 -5017427 0 0 -5017472 128 0 -5017682 0 0 -5017714 128 0 -5017810 0 0 -5017879 128 0 -5018240 0 0 -5018268 128 0 -5018689 0 0 -5018729 128 0 -5018864 0 0 -5018897 128 0 -5019039 0 0 -5019070 128 0 -5019192 0 0 -5019238 128 0 -5019368 0 0 -5019406 128 0 -5019540 0 0 -5019606 128 0 -5019715 0 0 -5019777 128 0 -5019895 0 0 -5019949 128 0 -5020073 0 0 -5020130 128 0 -5020253 0 0 -5020329 128 0 -5020438 0 0 -5020490 128 0 -5020632 0 0 -5020694 128 0 -5020806 0 0 -5020877 128 0 -5020988 0 0 -5021053 128 0 -5021167 0 0 -5021203 128 0 -5021466 0 0 -5021522 128 0 -5021633 0 0 -5021662 128 0 -5021802 0 0 -5021856 128 0 -5021973 0 0 -5022016 128 0 -5022131 0 0 -5022266 128 0 -5022292 0 0 -5022425 128 0 -5022475 0 0 -5026113 totRewards = 18 -5026113 64 8 -5026313 64 0 -5026398 0 0 -5026415 64 0 -5027453 0 0 -5027465 64 0 -5028444 0 0 -5028457 64 0 -5028987 0 0 -5029001 64 0 -5029159 0 0 -5029175 64 0 -5029328 0 0 -5029359 64 0 -5030455 0 0 -5030519 64 0 -5030679 0 0 -5030706 64 0 -5031103 0 0 -5031124 64 0 -5031310 0 0 -5031326 64 0 -5031509 0 0 -5031532 64 0 -5031694 0 0 -5031778 64 0 -5031836 0 0 -5038203 totRewards = 19 -5038203 128 16 -5038403 128 0 -5038470 0 0 -5038492 128 0 -5038725 0 0 -5038778 128 0 -5039133 0 0 -5039171 128 0 -5039554 0 0 -5039578 128 0 -5039998 0 0 -5040014 128 0 -5040312 0 0 -5040331 128 0 -5040470 0 0 -5040494 128 0 -5040634 0 0 -5040676 128 0 -5040814 0 0 -5040839 128 0 -5040978 0 0 -5041015 128 0 -5041135 0 0 -5041154 128 0 -5041700 0 0 -5044489 totRewards = 20 -5044489 64 8 -5044677 0 8 -5044689 0 0 -5044711 64 0 -5045338 0 0 -5045366 64 0 -5047558 0 0 -5047585 64 0 -5047726 0 0 -5047750 64 0 -5047899 0 0 -5047908 64 0 -5048219 0 0 -5048237 64 0 -5049433 0 0 -5049446 64 0 -5049579 0 0 -5049625 64 0 -5049732 0 0 -5052543 totRewards = 21 -5052543 128 16 -5052718 0 16 -5052743 0 0 -5052789 128 0 -5052845 0 0 -5052848 128 0 -5052963 0 0 -5053000 128 0 -5053094 0 0 -5053143 128 0 -5053351 0 0 -5053393 128 0 -5053493 0 0 -5053552 128 0 -5053940 0 0 -5053959 128 0 -5054377 0 0 -5054396 128 0 -5054523 0 0 -5054549 128 0 -5054844 0 0 -5054879 128 0 -5055005 0 0 -5055045 128 0 -5055179 0 0 -5055212 128 0 -5055345 0 0 -5055389 128 0 -5055517 0 0 -5055559 128 0 -5055688 0 0 -5055726 128 0 -5055862 0 0 -5055891 128 0 -5056013 0 0 -5056070 128 0 -5056176 0 0 -5056230 128 0 -5056347 0 0 -5056398 128 0 -5056519 0 0 -5056566 128 0 -5056682 0 0 -5056732 128 0 -5056850 0 0 -5056891 128 0 -5057020 0 0 -5057083 128 0 -5057197 0 0 -5057235 128 0 -5057366 0 0 -5057420 128 0 -5057542 0 0 -5057592 128 0 -5057703 0 0 -5057777 128 0 -5057897 0 0 -5057960 128 0 -5058056 0 0 -5061089 totRewards = 22 -5061089 64 8 -5061289 64 0 -5061291 0 0 -5061310 64 0 -5063485 0 0 -5063497 64 0 -5063662 0 0 -5063674 64 0 -5063833 0 0 -5063863 64 0 -5064177 0 0 -5064211 64 0 -5064526 0 0 -5064541 64 0 -5064699 0 0 -5064716 64 0 -5064881 0 0 -5064886 64 0 -5065771 0 0 -5065783 64 0 -5066106 0 0 -5066257 64 0 -5066781 0 0 -5066830 64 0 -5066981 0 0 -5067021 64 0 -5067175 0 0 -5067248 64 0 -5067378 0 0 -5067422 64 0 -5067576 0 0 -5075163 64 0 -5075208 0 0 -5075224 64 0 -5075249 0 0 -5075287 64 0 -5075300 0 0 -5078142 totRewards = 23 -5078142 128 16 -5078258 0 16 -5078302 128 16 -5078342 128 0 -5078345 0 0 -5078381 128 0 -5078596 0 0 -5078633 128 0 -5078843 0 0 -5078862 128 0 -5078967 0 0 -5079003 128 0 -5079951 0 0 -5079980 128 0 -5080260 0 0 -5080281 128 0 -5080419 0 0 -5080466 128 0 -5080587 0 0 -5080629 128 0 -5080761 0 0 -5080802 128 0 -5080927 0 0 -5080975 128 0 -5081092 0 0 -5081138 128 0 -5081251 0 0 -5081293 128 0 -5081556 0 0 -5081592 128 0 -5081697 0 0 -5084357 totRewards = 24 -5084357 64 8 -5084557 64 0 -5084562 0 0 -5084582 64 0 -5087017 0 0 -5087036 64 0 -5087177 0 0 -5087210 64 0 -5087523 0 0 -5087542 64 0 -5087686 0 0 -5087733 64 0 -5087837 0 0 -5087891 64 0 -5088028 0 0 -5088033 64 0 -5088359 0 0 -5088374 64 0 -5088517 0 0 -5092862 totRewards = 25 -5092862 128 16 -5093062 128 0 -5093079 0 0 -5093150 128 0 -5093188 0 0 -5093209 128 0 -5093448 0 0 -5093563 128 0 -5093631 0 0 -5093710 128 0 -5094748 0 0 -5094768 128 0 -5095218 0 0 -5095240 128 0 -5095376 0 0 -5095406 128 0 -5095538 0 0 -5095559 128 0 -5096438 0 0 -5096445 128 0 -5096601 0 0 -5096613 128 0 -5096755 0 0 -5096784 128 0 -5096917 0 0 -5096946 128 0 -5097086 0 0 -5097105 128 0 -5097276 0 0 -5097303 128 0 -5097450 0 0 -5097470 128 0 -5097604 0 0 -5097645 128 0 -5097759 0 0 -5100630 totRewards = 26 -5100630 64 8 -5100819 0 8 -5100829 64 8 -5100830 64 0 -5101055 0 0 -5101068 64 0 -5102287 0 0 -5102294 64 0 -5102437 0 0 -5102446 64 0 -5103424 0 0 -5103442 64 0 -5103578 0 0 -5103612 64 0 -5104060 0 0 -5104071 64 0 -5104375 0 0 -5104400 64 0 -5104529 0 0 -5107046 totRewards = 27 -5107046 128 16 -5107209 0 16 -5107246 0 0 -5107267 128 0 -5107307 0 0 -5107356 128 0 -5107447 0 0 -5107485 128 0 -5107580 0 0 -5107618 128 0 -5107822 0 0 -5107879 128 0 -5107961 0 0 -5108034 128 0 -5108402 0 0 -5108428 128 0 -5108724 0 0 -5108744 128 0 -5108870 0 0 -5108924 128 0 -5109045 0 0 -5109082 128 0 -5109212 0 0 -5109254 128 0 -5109371 0 0 -5109428 128 0 -5109550 0 0 -5109597 128 0 -5109718 0 0 -5109763 128 0 -5109886 0 0 -5109902 128 0 -5110195 0 0 -5110215 128 0 -5110342 0 0 -5110385 128 0 -5110502 0 0 -5110551 128 0 -5110663 0 0 -5110720 128 0 -5110838 0 0 -5110894 128 0 -5111005 0 0 -5111053 128 0 -5111181 0 0 -5111219 128 0 -5111331 0 0 -5111461 128 0 -5111535 0 0 -5111594 128 0 -5111712 0 0 -5111834 128 0 -5111882 0 0 -5111971 128 0 -5112063 0 0 -5114930 totRewards = 28 -5114930 64 8 -5115130 64 0 -5115342 0 0 -5115353 64 0 -5115466 0 0 -5115479 64 0 -5117913 0 0 -5117950 64 0 -5118083 0 0 -5118109 64 0 -5118242 0 0 -5118279 64 0 -5118377 0 0 -5121063 totRewards = 29 -5121063 128 16 -5121263 128 0 -5121284 0 0 -5121321 128 0 -5121531 0 0 -5121579 128 0 -5121675 0 0 -5121685 128 0 -5121914 0 0 -5121958 128 0 -5122058 0 0 -5122093 128 0 -5122352 0 0 -5122359 128 0 -5122485 0 0 -5122515 128 0 -5122943 0 0 -5122971 128 0 -5123104 0 0 -5123135 128 0 -5123279 0 0 -5123289 128 0 -5123418 0 0 -5123458 128 0 -5123589 0 0 -5123625 128 0 -5123756 0 0 -5123809 128 0 -5123944 0 0 -5123994 128 0 -5124120 0 0 -5124169 128 0 -5124287 0 0 -5124333 128 0 -5124454 0 0 -5124473 128 0 -5124906 0 0 -5124936 128 0 -5125070 0 0 -5125110 128 0 -5125219 0 0 -5125272 128 0 -5125381 0 0 -5125430 128 0 -5125545 0 0 -5125607 128 0 -5125722 0 0 -5125814 128 0 -5125902 0 0 -5125984 128 0 -5126082 0 0 -5126164 128 0 -5126250 0 0 -5129004 totRewards = 30 -5129004 64 8 -5129204 64 0 -5131367 0 0 -5131377 64 0 -5132020 0 0 -5132050 64 0 -5132186 0 0 -5132216 64 0 -5132347 0 0 -5132387 64 0 -5132504 0 0 -5132561 64 0 -5132652 0 0 -5135335 totRewards = 31 -5135335 128 16 -5135508 0 16 -5135535 0 0 -5135640 128 0 -5135732 0 0 -5135766 128 0 -5136102 0 0 -5136154 128 0 -5136237 0 0 -5136284 128 0 -5136673 0 0 -5136703 128 0 -5137126 0 0 -5137148 128 0 -5137285 0 0 -5137306 128 0 -5137450 0 0 -5137477 128 0 -5137616 0 0 -5137659 128 0 -5137783 0 0 -5137826 128 0 -5137962 0 0 -5138000 128 0 -5138129 0 0 -5138174 128 0 -5138299 0 0 -5138346 128 0 -5138457 0 0 -5138505 128 0 -5138606 0 0 -5138667 128 0 -5138769 0 0 -5138833 128 0 -5138882 0 0 -5139462 128 0 -5141905 0 0 -5144726 totRewards = 32 -5144726 64 8 -5144926 64 0 -5147101 0 0 -5147127 64 0 -5147279 0 0 -5147299 64 0 -5147604 0 0 -5147640 64 0 -5147763 0 0 -5147786 64 0 -5147925 0 0 -5147955 64 0 -5148080 0 0 -5148143 64 0 -5148214 0 0 -5151111 totRewards = 33 -5151111 128 16 -5151273 0 16 -5151311 0 0 -5151344 128 0 -5151670 0 0 -5151688 128 0 -5151935 0 0 -5151952 128 0 -5152056 0 0 -5152097 128 0 -5152484 0 0 -5152511 128 0 -5152814 0 0 -5152826 128 0 -5152960 0 0 -5153007 128 0 -5153127 0 0 -5153165 128 0 -5153285 0 0 -5153323 128 0 -5153452 0 0 -5153497 128 0 -5153620 0 0 -5153669 128 0 -5153794 0 0 -5153846 128 0 -5153967 0 0 -5154020 128 0 -5154141 0 0 -5154187 128 0 -5154313 0 0 -5154360 128 0 -5154489 0 0 -5154527 128 0 -5154652 0 0 -5154702 128 0 -5154833 0 0 -5154877 128 0 -5155016 0 0 -5155056 128 0 -5155182 0 0 -5155246 128 0 -5155368 0 0 -5155426 128 0 -5155536 0 0 -5155601 128 0 -5155688 0 0 -5158474 totRewards = 34 -5158474 64 8 -5158674 64 0 -5158727 0 0 -5158761 64 0 -5159911 0 0 -5159923 64 0 -5160893 0 0 -5160903 64 0 -5161066 0 0 -5161084 64 0 -5161421 0 0 -5161439 64 0 -5161596 0 0 -5161615 64 0 -5161765 0 0 -5161788 64 0 -5162603 0 0 -5162626 64 0 -5162768 0 0 -5166994 totRewards = 35 -5166994 128 16 -5167136 0 16 -5167194 0 0 -5167204 128 0 -5167391 0 0 -5167411 128 0 -5167529 0 0 -5167569 128 0 -5167669 0 0 -5167684 128 0 -5167770 0 0 -5167808 128 0 -5167905 0 0 -5167957 128 0 -5168206 0 0 -5168217 128 0 -5168342 0 0 -5168369 128 0 -5168809 0 0 -5168840 128 0 -5168968 0 0 -5169002 128 0 -5169134 0 0 -5169159 128 0 -5169295 0 0 -5169332 128 0 -5169458 0 0 -5169504 128 0 -5169624 0 0 -5169671 128 0 -5169796 0 0 -5169842 128 0 -5169962 0 0 -5170008 128 0 -5170127 0 0 -5170167 128 0 -5170295 0 0 -5170342 128 0 -5170465 0 0 -5170518 128 0 -5170617 0 0 -5170685 128 0 -5170792 0 0 -5170855 128 0 -5170967 0 0 -5171038 128 0 -5171144 0 0 -5171212 128 0 -5171289 0 0 -5173934 totRewards = 36 -5173934 64 8 -5174105 0 8 -5174130 64 8 -5174134 64 0 -5175323 0 0 -5175328 64 0 -5176145 0 0 -5176158 64 0 -5176303 0 0 -5176327 64 0 -5176657 0 0 -5176671 64 0 -5176823 0 0 -5176849 64 0 -5176986 0 0 -5177024 64 0 -5177150 0 0 -5177186 64 0 -5177317 0 0 -5177351 64 0 -5177460 0 0 -5180085 totRewards = 37 -5180085 128 16 -5180281 0 16 -5180285 0 0 -5180336 128 0 -5180527 0 0 -5180575 128 0 -5180662 0 0 -5180700 128 0 -5180918 0 0 -5180954 128 0 -5181053 0 0 -5181106 128 0 -5181492 0 0 -5181532 128 0 -5181796 0 0 -5181808 128 0 -5181944 0 0 -5181984 128 0 -5182104 0 0 -5182141 128 0 -5182279 0 0 -5182301 128 0 -5182427 0 0 -5182469 128 0 -5182594 0 0 -5182641 128 0 -5182770 0 0 -5182816 128 0 -5182934 0 0 -5182984 128 0 -5183104 0 0 -5183144 128 0 -5183270 0 0 -5183318 128 0 -5183450 0 0 -5183501 128 0 -5183601 0 0 -5183652 128 0 -5183762 0 0 -5183813 128 0 -5183927 0 0 -5183980 128 0 -5184082 0 0 -5184162 128 0 -5184268 0 0 -5184311 128 0 -5184425 0 0 -5184559 128 0 -5184626 0 0 -5185072 128 0 -5185147 0 0 -5185231 128 0 -5185272 0 0 -5185296 128 0 -5185303 0 0 -5188151 totRewards = 38 -5188151 64 8 -5188332 0 8 -5188350 64 8 -5188351 64 0 -5190520 0 0 -5190537 64 0 -5190865 0 0 -5190895 64 0 -5191213 0 0 -5191231 64 0 -5191381 0 0 -5191404 64 0 -5191556 0 0 -5191573 64 0 -5192075 0 0 -5192099 64 0 -5192965 0 0 -5192984 64 0 -5193154 0 0 -5193167 64 0 -5193500 0 0 -5193536 64 0 -5193666 0 0 -5193714 64 0 -5193793 0 0 -5196578 totRewards = 39 -5196578 128 16 -5196719 0 16 -5196778 0 0 -5196807 128 0 -5197286 0 0 -5197323 128 0 -5197431 0 0 -5197464 128 0 -5197547 0 0 -5197563 128 0 -5197996 0 0 -5198009 128 0 -5198294 0 0 -5198319 128 0 -5198449 0 0 -5198485 128 0 -5198614 0 0 -5198641 128 0 -5198769 0 0 -5198799 128 0 -5198933 0 0 -5198975 128 0 -5199094 0 0 -5199148 128 0 -5199275 0 0 -5199329 128 0 -5199449 0 0 -5199518 128 0 -5199607 0 0 -5199690 128 0 -5199748 0 0 -5203235 totRewards = 40 -5203235 64 8 -5203415 0 8 -5203435 0 0 -5203438 64 0 -5205107 0 0 -5205131 64 0 -5205618 0 0 -5205640 64 0 -5205789 0 0 -5205810 64 0 -5205961 0 0 -5205986 64 0 -5206121 0 0 -5206161 64 0 -5206276 0 0 -5206327 64 0 -5206421 0 0 -5209042 totRewards = 41 -5209042 128 16 -5209223 0 16 -5209242 0 0 -5209294 128 0 -5209472 0 0 -5209519 128 0 -5209608 0 0 -5209656 128 0 -5209867 0 0 -5209908 128 0 -5210005 0 0 -5210057 128 0 -5210438 0 0 -5210467 128 0 -5210751 0 0 -5210780 128 0 -5210900 0 0 -5210941 128 0 -5211065 0 0 -5211087 128 0 -5211230 0 0 -5211258 128 0 -5211393 0 0 -5211444 128 0 -5211563 0 0 -5211607 128 0 -5211729 0 0 -5211770 128 0 -5211893 0 0 -5211940 128 0 -5212057 0 0 -5212095 128 0 -5212221 0 0 -5212270 128 0 -5212388 0 0 -5212429 128 0 -5212552 0 0 -5212601 128 0 -5212747 0 0 -5212781 128 0 -5212909 0 0 -5212955 128 0 -5213071 0 0 -5213126 128 0 -5213223 0 0 -5213294 128 0 -5213369 0 0 -5216038 totRewards = 42 -5216038 64 8 -5216238 64 0 -5216247 0 0 -5216259 64 0 -5218419 0 0 -5218428 64 0 -5218758 0 0 -5218770 64 0 -5218912 0 0 -5218942 64 0 -5219076 0 0 -5219101 64 0 -5219245 0 0 -5219268 64 0 -5219408 0 0 -5219438 64 0 -5220449 0 0 -5220460 64 0 -5220626 0 0 -5220655 64 0 -5221023 0 0 -5221083 64 0 -5221441 0 0 -5221475 64 0 -5221949 0 0 -5221963 64 0 -5222108 0 0 -5222154 64 0 -5222271 0 0 -5222314 64 0 -5222434 0 0 -5226833 totRewards = 43 -5226833 128 16 -5227029 0 16 -5227033 0 0 -5227068 128 0 -5227277 0 0 -5227314 128 0 -5227672 0 0 -5227701 128 0 -5227812 0 0 -5227856 128 0 -5228250 0 0 -5228269 128 0 -5228687 0 0 -5228717 128 0 -5228853 0 0 -5228883 128 0 -5229023 0 0 -5229047 128 0 -5229184 0 0 -5229217 128 0 -5229351 0 0 -5229391 128 0 -5229519 0 0 -5229560 128 0 -5229679 0 0 -5229726 128 0 -5229826 0 0 -5229892 128 0 -5229979 0 0 -5230197 128 0 -5230771 0 0 -5233366 totRewards = 44 -5233366 64 8 -5233551 0 8 -5233566 0 0 -5233570 64 0 -5236348 0 0 -5236382 64 0 -5236501 0 0 -5236547 64 0 -5236653 0 0 -5239276 totRewards = 45 -5239276 128 16 -5239441 0 16 -5239476 0 0 -5239495 128 0 -5239684 0 0 -5239726 128 0 -5239830 0 0 -5239895 128 0 -5240273 0 0 -5240306 128 0 -5240717 0 0 -5240725 128 0 -5240855 0 0 -5240863 128 0 -5241154 0 0 -5241165 128 0 -5241305 0 0 -5241323 128 0 -5241455 0 0 -5241482 128 0 -5241616 0 0 -5241658 128 0 -5241782 0 0 -5241833 128 0 -5241966 0 0 -5242016 128 0 -5242143 0 0 -5242194 128 0 -5242316 0 0 -5242370 128 0 -5242490 0 0 -5242535 128 0 -5242649 0 0 -5242709 128 0 -5242811 0 0 -5242872 128 0 -5242964 0 0 -5243013 128 0 -5243124 0 0 -5243177 128 0 -5243289 0 0 -5243345 128 0 -5243466 0 0 -5243531 128 0 -5243632 0 0 -5243708 128 0 -5243816 0 0 -5243886 128 0 -5243967 0 0 -5247055 totRewards = 46 -5247055 64 8 -5247095 0 8 -5247106 64 8 -5247255 64 0 -5247283 0 0 -5247299 64 0 -5247905 0 0 -5247914 64 0 -5249400 0 0 -5249416 64 0 -5249745 0 0 -5249755 64 0 -5249905 0 0 -5249925 64 0 -5250068 0 0 -5250096 64 0 -5250554 0 0 -5250578 64 0 -5250890 0 0 -5250911 64 0 -5251051 0 0 -5251086 64 0 -5251207 0 0 -5251264 64 0 -5251360 0 0 -5253848 totRewards = 47 -5253848 128 16 -5254029 0 16 -5254048 0 0 -5254082 128 0 -5254276 0 0 -5254321 128 0 -5254415 0 0 -5254473 128 0 -5254688 0 0 -5254718 128 0 -5254821 0 0 -5254886 128 0 -5255267 0 0 -5255294 128 0 -5255721 0 0 -5255756 128 0 -5255882 0 0 -5255919 128 0 -5256059 0 0 -5256087 128 0 -5256223 0 0 -5256256 128 0 -5256381 0 0 -5256422 128 0 -5256552 0 0 -5256592 128 0 -5256711 0 0 -5256753 128 0 -5256878 0 0 -5256917 128 0 -5257042 0 0 -5257080 128 0 -5257207 0 0 -5257262 128 0 -5257366 0 0 -5257424 128 0 -5257525 0 0 -5257585 128 0 -5257691 0 0 -5257749 128 0 -5257859 0 0 -5257942 128 0 -5258054 0 0 -5258082 128 0 -5258211 0 0 -5258290 128 0 -5258369 0 0 -5258430 128 0 -5258531 0 0 -5258621 128 0 -5258643 0 0 -5258681 128 0 -5258722 0 0 -5258805 128 0 -5258896 0 0 -5258967 128 0 -5259053 0 0 -5261742 totRewards = 48 -5261742 64 8 -5261942 64 0 -5264296 0 0 -5264315 64 0 -5264997 0 0 -5265015 64 0 -5265320 0 0 -5265342 64 0 -5265648 0 0 -5265663 64 0 -5267205 0 0 -5267225 64 0 -5267360 0 0 -5267409 64 0 -5267507 0 0 -5270186 totRewards = 49 -5270186 128 16 -5270358 0 16 -5270386 0 0 -5270420 128 0 -5270639 0 0 -5270646 128 0 -5270761 0 0 -5270798 128 0 -5271031 0 0 -5271040 128 0 -5271155 0 0 -5271208 128 0 -5271579 0 0 -5271605 128 0 -5272037 0 0 -5272061 128 0 -5272198 0 0 -5272217 128 0 -5272359 0 0 -5272388 128 0 -5272532 0 0 -5272559 128 0 -5272697 0 0 -5272729 128 0 -5272858 0 0 -5272894 128 0 -5273019 0 0 -5273052 128 0 -5273179 0 0 -5273220 128 0 -5273350 0 0 -5273392 128 0 -5273511 0 0 -5273571 128 0 -5273666 0 0 -5273739 128 0 -5273835 0 0 -5273900 128 0 -5273928 0 0 -5273957 128 0 -5273973 0 0 -5274089 128 0 -5274170 0 0 -5274801 128 0 -5274825 0 0 -5277683 totRewards = 50 -5277683 64 8 -5277883 64 0 -5277903 0 0 -5277906 64 0 -5278381 0 0 -5278392 64 0 -5279198 0 0 -5279207 64 0 -5280021 0 0 -5280054 64 0 -5280388 0 0 -5280417 64 0 -5280565 0 0 -5280604 64 0 -5280742 0 0 -5280757 64 0 -5280917 0 0 -5280927 64 0 -5281087 0 0 -5281096 64 0 -5281246 0 0 -5281271 64 0 -5281422 0 0 -5281430 64 0 -5281916 0 0 -5281955 64 0 -5282063 0 0 -5284584 totRewards = 51 -5284583 128 16 -5284755 0 16 -5284783 0 0 -5284811 128 0 -5284992 0 0 -5285039 128 0 -5285134 0 0 -5285177 128 0 -5285398 0 0 -5285437 128 0 -5285537 0 0 -5285606 128 0 -5285978 0 0 -5286006 128 0 -5286276 0 0 -5286287 128 0 -5286413 0 0 -5286444 128 0 -5286572 0 0 -5286599 128 0 -5286738 0 0 -5286755 128 0 -5286904 0 0 -5286937 128 0 -5287064 0 0 -5287106 128 0 -5287229 0 0 -5287265 128 0 -5287391 0 0 -5287433 128 0 -5287544 0 0 -5287588 128 0 -5287709 0 0 -5287726 128 0 -5287868 0 0 -5287929 128 0 -5288015 0 0 -5290701 totRewards = 52 -5290701 64 8 -5290886 0 8 -5290898 64 8 -5290901 64 0 -5291551 0 0 -5291558 64 0 -5292463 0 0 -5292481 64 0 -5292627 0 0 -5292650 64 0 -5292960 0 0 -5292981 64 0 -5293117 0 0 -5293150 64 0 -5293276 0 0 -5293318 64 0 -5293442 0 0 -5293484 64 0 -5293587 0 0 -5296114 totRewards = 53 -5296114 128 16 -5296276 0 16 -5296314 0 0 -5296336 128 0 -5296507 0 0 -5296515 128 0 -5296673 0 0 -5296710 128 0 -5296948 0 0 -5296964 128 0 -5297059 0 0 -5297113 128 0 -5297498 0 0 -5297528 128 0 -5297810 0 0 -5297822 128 0 -5297954 0 0 -5297985 128 0 -5298116 0 0 -5298140 128 0 -5298278 0 0 -5298300 128 0 -5298435 0 0 -5298474 128 0 -5298606 0 0 -5298639 128 0 -5298778 0 0 -5298824 128 0 -5298944 0 0 -5298994 128 0 -5299098 0 0 -5299160 128 0 -5299257 0 0 -5299340 128 0 -5299402 0 0 -5302379 totRewards = 54 -5302379 64 8 -5302574 0 8 -5302579 0 0 -5302599 64 0 -5303763 0 0 -5303775 64 0 -5304720 0 0 -5304732 64 0 -5304878 0 0 -5304909 64 0 -5305067 0 0 -5305086 64 0 -5305224 0 0 -5305281 64 0 -5305378 0 0 -5305447 64 0 -5305554 0 0 -5306037 64 0 -5306058 0 0 -5306098 64 0 -5306224 0 0 -5306269 64 0 -5306388 0 0 -5309592 totRewards = 55 -5309592 128 16 -5309619 0 16 -5309658 128 16 -5309792 128 0 -5309830 0 0 -5309860 128 0 -5310483 0 0 -5310511 128 0 -5310769 0 0 -5310776 128 0 -5310902 0 0 -5310928 128 0 -5311041 0 0 -5311068 128 0 -5311200 0 0 -5311215 128 0 -5311365 0 0 -5311383 128 0 -5311511 0 0 -5311559 128 0 -5311681 0 0 -5311714 128 0 -5311848 0 0 -5311888 128 0 -5312016 0 0 -5312064 128 0 -5312184 0 0 -5312228 128 0 -5312346 0 0 -5312394 128 0 -5312499 0 0 -5312555 128 0 -5312645 0 0 -5312723 128 0 -5312810 0 0 -5313047 128 0 -5313173 0 0 -5313288 128 0 -5314099 0 0 -5318179 totRewards = 56 -5318179 64 8 -5318377 0 8 -5318379 0 0 -5318406 64 0 -5319133 0 0 -5319139 64 0 -5320503 0 0 -5320519 64 0 -5320656 0 0 -5320693 64 0 -5320811 0 0 -5320850 64 0 -5320959 0 0 -5322418 64 0 -5322432 0 0 -5324991 totRewards = 57 -5324991 128 16 -5325151 0 16 -5325191 0 0 -5325200 128 0 -5325398 0 0 -5325415 128 0 -5325523 0 0 -5325584 128 0 -5325776 0 0 -5325811 128 0 -5325912 0 0 -5325966 128 0 -5326338 0 0 -5326368 128 0 -5327322 0 0 -5327332 128 0 -5327480 0 0 -5327498 128 0 -5327632 0 0 -5327656 128 0 -5327786 0 0 -5327811 128 0 -5327945 0 0 -5327975 128 0 -5328110 0 0 -5328143 128 0 -5328257 0 0 -5328293 128 0 -5328427 0 0 -5328463 128 0 -5328588 0 0 -5328634 128 0 -5328755 0 0 -5328805 128 0 -5328918 0 0 -5328976 128 0 -5329078 0 0 -5329142 128 0 -5329246 0 0 -5329289 128 0 -5329399 0 0 -5332415 totRewards = 58 -5332415 64 8 -5332615 64 0 -5332650 0 0 -5332712 64 0 -5334670 0 0 -5334690 64 0 -5334833 0 0 -5334854 64 0 -5334987 0 0 -5335009 64 0 -5335150 0 0 -5335174 64 0 -5335309 0 0 -5335347 64 0 -5335474 0 0 -5335509 64 0 -5335638 0 0 -5335665 64 0 -5335812 0 0 -5335825 64 0 -5335977 0 0 -5335989 64 0 -5336132 0 0 -5336173 64 0 -5336471 0 0 -5336482 64 0 -5336637 0 0 -5336655 64 0 -5336787 0 0 -5336837 64 0 -5336953 0 0 -5337017 64 0 -5337057 0 0 -5340738 totRewards = 59 -5340738 128 16 -5340938 128 0 -5340949 0 0 -5340986 128 0 -5341337 0 0 -5341353 128 0 -5341754 0 0 -5341807 128 0 -5342184 0 0 -5342202 128 0 -5342624 0 0 -5342638 128 0 -5342771 0 0 -5342796 128 0 -5342931 0 0 -5342953 128 0 -5343088 0 0 -5343118 128 0 -5343246 0 0 -5343281 128 0 -5343408 0 0 -5343455 128 0 -5343575 0 0 -5343622 128 0 -5343735 0 0 -5343781 128 0 -5343895 0 0 -5343926 128 0 -5344050 0 0 -5344088 128 0 -5344204 0 0 -5344259 128 0 -5344368 0 0 -5344422 128 0 -5344528 0 0 -5344586 128 0 -5344693 0 0 -5344746 128 0 -5344845 0 0 -5344903 128 0 -5345007 0 0 -5345065 128 0 -5345170 0 0 -5345260 128 0 -5345346 0 0 -5345389 128 0 -5345506 0 0 -5345566 128 0 -5345688 0 0 -5345752 128 0 -5345862 0 0 -5345936 128 0 -5346010 0 0 -5348749 totRewards = 60 -5348749 64 8 -5348932 0 8 -5348949 0 0 -5348955 64 0 -5349575 0 0 -5349586 64 0 -5351427 0 0 -5351438 64 0 -5351570 0 0 -5351611 64 0 -5351720 0 0 -5351773 64 0 -5351873 0 0 -5351958 64 0 -5351995 0 0 -5354755 totRewards = 61 -5354755 128 16 -5354947 0 16 -5354955 0 0 -5354987 128 0 -5355182 0 0 -5355204 128 0 -5355316 0 0 -5355360 128 0 -5355573 0 0 -5355592 128 0 -5355706 0 0 -5355759 128 0 -5355994 0 0 -5356004 128 0 -5356124 0 0 -5356157 128 0 -5356593 0 0 -5356616 128 0 -5356753 0 0 -5356784 128 0 -5356918 0 0 -5356941 128 0 -5357071 0 0 -5357100 128 0 -5357234 0 0 -5357272 128 0 -5357405 0 0 -5357437 128 0 -5357556 0 0 -5357598 128 0 -5357716 0 0 -5357750 128 0 -5357878 0 0 -5357912 128 0 -5358031 0 0 -5358080 128 0 -5358197 0 0 -5358243 128 0 -5358353 0 0 -5358414 128 0 -5358505 0 0 -5358573 128 0 -5358691 0 0 -5358728 128 0 -5358841 0 0 -5358912 128 0 -5359000 0 0 -5359081 128 0 -5359189 0 0 -5359263 128 0 -5359342 0 0 -5362057 totRewards = 62 -5362057 64 8 -5362240 0 8 -5362255 64 8 -5362256 64 0 -5364529 0 0 -5364535 64 0 -5364841 0 0 -5364872 64 0 -5364998 0 0 -5365030 64 0 -5365160 0 0 -5365197 64 0 -5365325 0 0 -5365363 64 0 -5365479 0 0 -5365550 64 0 -5365625 0 0 -5368308 totRewards = 63 -5368308 128 16 -5368490 0 16 -5368508 0 0 -5368570 128 0 -5368749 0 0 -5368798 128 0 -5368891 0 0 -5368932 128 0 -5369147 0 0 -5369186 128 0 -5369281 0 0 -5369350 128 0 -5369568 0 0 -5369577 128 0 -5369706 0 0 -5369736 128 0 -5370019 0 0 -5370040 128 0 -5370166 0 0 -5370207 128 0 -5370331 0 0 -5370362 128 0 -5370480 0 0 -5370515 128 0 -5370642 0 0 -5370685 128 0 -5370801 0 0 -5370854 128 0 -5370975 0 0 -5371021 128 0 -5371135 0 0 -5371176 128 0 -5371298 0 0 -5371341 128 0 -5371461 0 0 -5371506 128 0 -5371623 0 0 -5371672 128 0 -5371804 0 0 -5371845 128 0 -5371968 0 0 -5372016 128 0 -5372139 0 0 -5372193 128 0 -5372294 0 0 -5372364 128 0 -5372433 0 0 -5375091 totRewards = 64 -5375091 64 8 -5375276 0 8 -5375291 0 0 -5375298 64 0 -5376063 0 0 -5376071 64 0 -5377109 0 0 -5377131 64 0 -5377278 0 0 -5377297 64 0 -5377596 0 0 -5377616 64 0 -5377776 0 0 -5377783 64 0 -5377931 0 0 -5377956 64 0 -5378099 0 0 -5378128 64 0 -5378265 0 0 -5378286 64 0 -5378423 0 0 -5378457 64 0 -5378590 0 0 -5378620 64 0 -5378759 0 0 -5378777 64 0 -5378915 0 0 -5378949 64 0 -5379087 0 0 -5379108 64 0 -5379237 0 0 -5379291 64 0 -5379402 0 0 -5381937 totRewards = 65 -5381937 128 16 -5382101 0 16 -5382137 0 0 -5382157 128 0 -5382344 0 0 -5382383 128 0 -5382489 0 0 -5382551 128 0 -5382890 0 0 -5382957 128 0 -5383047 0 0 -5383059 128 0 -5383692 0 0 -5383711 128 0 -5383842 0 0 -5383868 128 0 -5384010 0 0 -5384025 128 0 -5384166 0 0 -5384194 128 0 -5384329 0 0 -5384367 128 0 -5384495 0 0 -5384532 128 0 -5384659 0 0 -5384698 128 0 -5384814 0 0 -5384873 128 0 -5384972 0 0 -5385039 128 0 -5385156 0 0 -5385830 128 0 -5385930 0 0 -5385971 128 0 -5386091 0 0 -5386139 128 0 -5386269 0 0 -5386303 128 0 -5386430 0 0 -5386492 128 0 -5386634 0 0 -5386673 128 0 -5386800 0 0 -5386861 128 0 -5386988 0 0 -5387051 128 0 -5387172 0 0 -5387215 128 0 -5387328 0 0 -5387378 128 0 -5387504 0 0 -5387542 128 0 -5387661 0 0 -5387707 128 0 -5387832 0 0 -5387887 128 0 -5387992 0 0 -5388068 128 0 -5388145 0 0 -5391087 totRewards = 66 -5391087 64 8 -5391276 0 8 -5391287 0 0 -5391300 64 0 -5393721 0 0 -5393739 64 0 -5393886 0 0 -5393911 64 0 -5394039 0 0 -5394086 64 0 -5394193 0 0 -5394251 64 0 -5394352 0 0 -5394421 64 0 -5394483 0 0 -5398835 totRewards = 67 -5398835 128 16 -5399035 128 0 -5399090 0 0 -5399138 128 0 -5399333 0 0 -5399362 128 0 -5399459 0 0 -5399489 128 0 -5399707 0 0 -5399748 128 0 -5399841 0 0 -5399886 128 0 -5399976 0 0 -5399988 128 0 -5400127 0 0 -5400137 128 0 -5400266 0 0 -5400294 128 0 -5400408 0 0 -5400433 128 0 -5400565 0 0 -5400584 128 0 -5400714 0 0 -5400750 128 0 -5400873 0 0 -5400918 128 0 -5401040 0 0 -5401076 128 0 -5401200 0 0 -5401239 128 0 -5401363 0 0 -5401408 128 0 -5401524 0 0 -5401560 128 0 -5401686 0 0 -5401701 128 0 -5401840 0 0 -5401880 128 0 -5402002 0 0 -5402041 128 0 -5402160 0 0 -5402210 128 0 -5402314 0 0 -5402368 128 0 -5402477 0 0 -5402529 128 0 -5402635 0 0 -5402694 128 0 -5402784 0 0 -5402882 128 0 -5402984 0 0 -5403249 128 0 -5403296 0 0 -5403570 128 0 -5403643 0 0 -5406420 totRewards = 68 -5406420 64 8 -5406620 64 0 -5406622 0 0 -5406646 64 0 -5408106 0 0 -5408123 64 0 -5408592 0 0 -5408611 64 0 -5408758 0 0 -5408784 64 0 -5408937 0 0 -5408952 64 0 -5409108 0 0 -5409132 64 0 -5409264 0 0 -5409287 64 0 -5409437 0 0 -5409465 64 0 -5409612 0 0 -5409642 64 0 -5409782 0 0 -5409811 64 0 -5409948 0 0 -5409995 64 0 -5410134 0 0 -5410195 64 0 -5410275 0 0 -5410788 64 0 -5410832 0 0 -5410875 64 0 -5411017 0 0 -5411024 64 0 -5411168 0 0 -5411200 64 0 -5411349 0 0 -5411375 64 0 -5411527 0 0 -5411550 64 0 -5411699 0 0 -5411717 64 0 -5411889 0 0 -5411901 64 0 -5412053 0 0 -5412087 64 0 -5412224 0 0 -5412300 64 0 -5412325 0 0 -5418269 totRewards = 69 -5418269 128 16 -5418399 0 16 -5418468 128 16 -5418469 128 0 -5418792 0 0 -5418841 128 0 -5419045 0 0 -5419075 128 0 -5419175 0 0 -5419231 128 0 -5419455 0 0 -5419467 128 0 -5419592 0 0 -5419617 128 0 -5419893 0 0 -5419913 128 0 -5420032 0 0 -5420071 128 0 -5420197 0 0 -5420225 128 0 -5420345 0 0 -5420384 128 0 -5420512 0 0 -5420556 128 0 -5420670 0 0 -5420731 128 0 -5420829 0 0 -5420888 128 0 -5420963 0 0 -5424289 totRewards = 70 -5424289 64 8 -5424475 0 8 -5424489 0 0 -5424500 64 0 -5426607 0 0 -5426627 64 0 -5426775 0 0 -5426787 64 0 -5426925 0 0 -5426954 64 0 -5427080 0 0 -5427125 64 0 -5427228 0 0 -5427299 64 0 -5427312 0 0 -5430011 totRewards = 71 -5430011 128 16 -5430211 128 0 -5430218 0 0 -5430279 128 0 -5430439 0 0 -5430494 128 0 -5430831 0 0 -5430874 128 0 -5430987 0 0 -5431072 128 0 -5431125 0 0 -5431138 128 0 -5431424 0 0 -5431445 128 0 -5431713 0 0 -5431718 128 0 -5431857 0 0 -5431895 128 0 -5432009 0 0 -5432044 128 0 -5432169 0 0 -5432192 128 0 -5432313 0 0 -5432348 128 0 -5432462 0 0 -5432505 128 0 -5432618 0 0 -5432665 128 0 -5432775 0 0 -5432826 128 0 -5432934 0 0 -5432983 128 0 -5433094 0 0 -5433142 128 0 -5433251 0 0 -5433307 128 0 -5433418 0 0 -5433475 128 0 -5433577 0 0 -5433640 128 0 -5433722 0 0 -5436443 totRewards = 72 -5436443 64 8 -5436641 0 8 -5436643 0 0 -5436665 64 0 -5438756 0 0 -5438773 64 0 -5439085 0 0 -5439110 64 0 -5439254 0 0 -5439276 64 0 -5439402 0 0 -5439442 64 0 -5439557 0 0 -5439602 64 0 -5439714 0 0 -5439758 64 0 -5439867 0 0 -5442610 totRewards = 73 -5442610 128 16 -5442773 0 16 -5442810 0 0 -5442845 128 0 -5443019 0 0 -5443055 128 0 -5443148 0 0 -5443213 128 0 -5443420 0 0 -5443446 128 0 -5443556 0 0 -5443614 128 0 -5443832 0 0 -5443843 128 0 -5443977 0 0 -5443985 128 0 -5444268 0 0 -5444278 128 0 -5444412 0 0 -5444438 128 0 -5444573 0 0 -5444607 128 0 -5444730 0 0 -5444752 128 0 -5444878 0 0 -5444915 128 0 -5445039 0 0 -5445081 128 0 -5445208 0 0 -5445252 128 0 -5445373 0 0 -5445411 128 0 -5445526 0 0 -5445575 128 0 -5445683 0 0 -5445738 128 0 -5445834 0 0 -5445898 128 0 -5445989 0 0 -5446046 128 0 -5446150 0 0 -5446211 128 0 -5446310 0 0 -5446397 128 0 -5446509 0 0 -5446539 128 0 -5446667 0 0 -5446742 128 0 -5446835 0 0 -5446916 128 0 -5447011 0 0 -5449983 totRewards = 74 -5449983 64 8 -5450178 0 8 -5450183 0 0 -5450197 64 0 -5451724 0 0 -5451733 64 0 -5451888 0 0 -5451900 64 0 -5452222 0 0 -5452249 64 0 -5452387 0 0 -5452422 64 0 -5452547 0 0 -5452586 64 0 -5452713 0 0 -5452736 64 0 -5452874 0 0 -5452894 64 0 -5453373 0 0 -5453386 64 0 -5453527 0 0 -5453564 64 0 -5453680 0 0 -5456274 totRewards = 75 -5456274 128 16 -5456427 0 16 -5456474 0 0 -5456483 128 0 -5456835 0 0 -5456882 128 0 -5457122 0 0 -5457146 128 0 -5457242 0 0 -5457297 128 0 -5457671 0 0 -5457705 128 0 -5457825 0 0 -5457838 128 0 -5457973 0 0 -5457984 128 0 -5458119 0 0 -5458165 128 0 -5458286 0 0 -5458319 128 0 -5458445 0 0 -5458475 128 0 -5458598 0 0 -5458642 128 0 -5458750 0 0 -5458790 128 0 -5458921 0 0 -5458952 128 0 -5459070 0 0 -5459126 128 0 -5459229 0 0 -5459277 128 0 -5459386 0 0 -5459440 128 0 -5459546 0 0 -5459621 128 0 -5459644 0 0 -5459774 128 0 -5459857 0 0 -5459935 128 0 -5460016 0 0 -5460084 128 0 -5460198 0 0 -5460274 128 0 -5460381 0 0 -5460440 128 0 -5460533 0 0 -5460623 128 0 -5460644 0 0 -5460673 128 0 -5460720 0 0 -5460804 128 0 -5460897 0 0 -5463771 totRewards = 76 -5463771 64 8 -5463967 0 8 -5463971 0 0 -5463984 64 0 -5465144 0 0 -5465156 64 0 -5466272 0 0 -5466284 64 0 -5466429 0 0 -5466450 64 0 -5466586 0 0 -5466623 64 0 -5466737 0 0 -5466779 64 0 -5466888 0 0 -5466994 64 0 -5467017 0 0 -5469571 totRewards = 77 -5469571 128 16 -5469749 0 16 -5469771 0 0 -5469802 128 0 -5470003 0 0 -5470052 128 0 -5470145 0 0 -5470209 128 0 -5470409 0 0 -5470438 128 0 -5470546 0 0 -5470607 128 0 -5470707 0 0 -5470712 128 0 -5470840 0 0 -5470857 128 0 -5470975 0 0 -5471008 128 0 -5471431 0 0 -5471463 128 0 -5471582 0 0 -5471623 128 0 -5471750 0 0 -5471786 128 0 -5471912 0 0 -5471953 128 0 -5472074 0 0 -5472124 128 0 -5472240 0 0 -5472288 128 0 -5472400 0 0 -5472447 128 0 -5472565 0 0 -5472611 128 0 -5472720 0 0 -5472769 128 0 -5472877 0 0 -5472931 128 0 -5473037 0 0 -5473101 128 0 -5473200 0 0 -5473258 128 0 -5473363 0 0 -5473448 128 0 -5473567 0 0 -5473676 128 0 -5473728 0 0 -5473804 128 0 -5473818 0 0 -5473862 128 0 -5473886 0 0 -5474162 128 0 -5474248 0 0 -5474304 128 0 -5474401 0 0 -5474460 128 0 -5474573 0 0 -5474639 128 0 -5474740 0 0 -5474828 128 0 -5474922 0 0 -5478644 totRewards = 78 -5478644 64 8 -5478844 64 0 -5480473 0 0 -5480490 64 0 -5480963 0 0 -5480984 64 0 -5481297 0 0 -5481310 64 0 -5481451 0 0 -5481480 64 0 -5481615 0 0 -5481637 64 0 -5481781 0 0 -5481803 64 0 -5481939 0 0 -5481972 64 0 -5482107 0 0 -5482131 64 0 -5483003 0 0 -5483088 64 0 -5483245 0 0 -5483305 64 0 -5483768 0 0 -5483790 64 0 -5483944 0 0 -5483979 64 0 -5484102 0 0 -5484161 64 0 -5484245 0 0 -5490480 totRewards = 79 -5490480 128 16 -5490623 0 16 -5490680 0 0 -5490704 128 0 -5490857 0 0 -5490885 128 0 -5490986 0 0 -5491076 128 0 -5491171 0 0 -5491302 128 0 -5491446 0 0 -5491471 128 0 -5492235 0 0 -5492243 128 0 -5492375 0 0 -5492383 128 0 -5492658 0 0 -5492677 128 0 -5492806 0 0 -5492828 128 0 -5492953 0 0 -5492979 128 0 -5493099 0 0 -5493135 128 0 -5493270 0 0 -5493308 128 0 -5493412 0 0 -5493453 128 0 -5493563 0 0 -5493597 128 0 -5494025 0 0 -5494048 128 0 -5494188 0 0 -5494211 128 0 -5494352 0 0 -5494387 128 0 -5494498 0 0 -5494540 128 0 -5494953 0 0 -5495992 128 0 -5496716 0 0 -5499488 totRewards = 80 -5499488 64 8 -5499679 0 8 -5499688 0 0 -5499710 64 0 -5500315 0 0 -5500332 64 0 -5500857 0 0 -5500864 64 0 -5501651 0 0 -5501666 64 0 -5501815 0 0 -5501849 64 0 -5502352 0 0 -5502374 64 0 -5502719 0 0 -5502754 64 0 -5503075 0 0 -5503101 64 0 -5503248 0 0 -5503270 64 0 -5503413 0 0 -5503429 64 0 -5504778 0 0 -5504816 64 0 -5505289 0 0 -5505322 64 0 -5505451 0 0 -5505486 64 0 -5505953 0 0 -5505978 64 0 -5506147 0 0 -5506170 64 0 -5506329 0 0 -5506353 64 0 -5506421 0 0 -5506469 64 0 -5506778 0 0 -5506805 64 0 -5506931 0 0 -5509416 totRewards = 81 -5509416 128 16 -5509589 0 16 -5509616 0 0 -5509638 128 0 -5509826 0 0 -5509880 128 0 -5509969 0 0 -5510015 128 0 -5510229 0 0 -5510266 128 0 -5510363 0 0 -5510428 128 0 -5510779 0 0 -5510797 128 0 -5511059 0 0 -5511067 128 0 -5511205 0 0 -5511216 128 0 -5511348 0 0 -5511371 128 0 -5511502 0 0 -5511526 128 0 -5511661 0 0 -5511685 128 0 -5511813 0 0 -5511857 128 0 -5511975 0 0 -5512018 128 0 -5512139 0 0 -5512185 128 0 -5512300 0 0 -5512351 128 0 -5512471 0 0 -5512526 128 0 -5512630 0 0 -5512700 128 0 -5512775 0 0 -5519879 128 0 -5520118 0 0 -5533316 totRewards = 82 -5533316 64 8 -5533516 64 0 -5533517 0 0 -5533555 64 0 -5533772 0 0 -5533792 64 0 -5534142 0 0 -5534154 64 0 -5534274 0 0 -5534284 64 0 -5535748 0 0 -5535777 64 0 -5535895 0 0 -5535924 64 0 -5537177 0 0 -5537199 64 0 -5537318 0 0 -5541079 totRewards = 83 -5541079 128 16 -5541254 0 16 -5541279 0 0 -5541288 128 0 -5541512 0 0 -5541545 128 0 -5541630 0 0 -5541678 128 0 -5541890 0 0 -5541913 128 0 -5542025 0 0 -5542054 128 0 -5542143 0 0 -5542156 128 0 -5542425 0 0 -5542445 128 0 -5542562 0 0 -5542589 128 0 -5542859 0 0 -5542881 128 0 -5543002 0 0 -5543039 128 0 -5543160 0 0 -5543199 128 0 -5543325 0 0 -5543358 128 0 -5543481 0 0 -5543518 128 0 -5543635 0 0 -5543679 128 0 -5543800 0 0 -5543813 128 0 -5544386 0 0 -5544420 128 0 -5544542 0 0 -5544566 128 0 -5544692 0 0 -5544736 128 0 -5544842 0 0 -5544889 128 0 -5545012 0 0 -5545052 128 0 -5545166 0 0 -5545223 128 0 -5545336 0 0 -5545393 128 0 -5545489 0 0 -5548223 totRewards = 84 -5548223 64 8 -5548403 0 8 -5548423 0 0 -5548443 64 0 -5550523 0 0 -5550534 64 0 -5550680 0 0 -5550695 64 0 -5550849 0 0 -5550867 64 0 -5551016 0 0 -5551037 64 0 -5551166 0 0 -5551211 64 0 -5551323 0 0 -5551368 64 0 -5551477 0 0 -5551547 64 0 -5551624 0 0 -5554292 totRewards = 85 -5554292 128 16 -5554457 0 16 -5554492 0 0 -5554546 128 0 -5555028 0 0 -5555052 128 0 -5555280 0 0 -5555313 128 0 -5555704 0 0 -5555713 128 0 -5556010 0 0 -5556022 128 0 -5556151 0 0 -5556178 128 0 -5556304 0 0 -5556332 128 0 -5556462 0 0 -5556492 128 0 -5556626 0 0 -5556666 128 0 -5556785 0 0 -5556832 128 0 -5556948 0 0 -5556990 128 0 -5557109 0 0 -5557148 128 0 -5557267 0 0 -5557313 128 0 -5557424 0 0 -5557480 128 0 -5557587 0 0 -5557650 128 0 -5557751 0 0 -5557820 128 0 -5557935 0 0 -5558046 128 0 -5558087 0 0 -5558177 128 0 -5558218 0 0 -5558252 128 0 -5558287 0 0 -5558357 128 0 -5558445 0 0 -5558528 128 0 -5558607 0 0 -5558717 128 0 -5558732 0 0 -5558768 128 0 -5558795 0 0 -5562550 totRewards = 86 -5562550 64 8 -5562750 64 0 -5564913 0 0 -5564928 64 0 -5565074 0 0 -5565091 64 0 -5565240 0 0 -5565267 64 0 -5565390 0 0 -5565429 64 0 -5565542 0 0 -5565606 64 0 -5565707 0 0 -5565809 64 0 -5565853 0 0 -5568670 totRewards = 87 -5568670 128 16 -5568855 0 16 -5568870 0 0 -5568890 128 0 -5569110 0 0 -5569134 128 0 -5569244 0 0 -5569268 128 0 -5569487 0 0 -5569531 128 0 -5569629 0 0 -5569702 128 0 -5570063 0 0 -5570080 128 0 -5570217 0 0 -5570238 128 0 -5570530 0 0 -5570564 128 0 -5570688 0 0 -5570730 128 0 -5570860 0 0 -5570889 128 0 -5571015 0 0 -5571047 128 0 -5571163 0 0 -5571202 128 0 -5571324 0 0 -5571365 128 0 -5571485 0 0 -5571529 128 0 -5571648 0 0 -5571693 128 0 -5571828 0 0 -5571868 128 0 -5571985 0 0 -5572038 128 0 -5572153 0 0 -5572211 128 0 -5572300 0 0 -5572375 128 0 -5572452 0 0 -5575269 totRewards = 88 -5575269 64 8 -5575469 64 0 -5575482 0 0 -5575497 64 0 -5577782 0 0 -5577794 64 0 -5578136 0 0 -5578142 64 0 -5578280 0 0 -5578339 64 0 -5578441 0 0 -5578477 64 0 -5578624 0 0 -5578635 64 0 -5579997 0 0 -5580009 64 0 -5580332 0 0 -5580343 64 0 -5581326 0 0 -5581370 64 0 -5581481 0 0 -5584237 totRewards = 89 -5584237 128 16 -5584409 0 16 -5584437 0 0 -5584492 128 0 -5584822 0 0 -5584857 128 0 -5584977 0 0 -5585004 128 0 -5585112 0 0 -5585128 128 0 -5585225 0 0 -5585268 128 0 -5585662 0 0 -5585688 128 0 -5585976 0 0 -5586003 128 0 -5586128 0 0 -5586170 128 0 -5586293 0 0 -5586327 128 0 -5586459 0 0 -5586502 128 0 -5586629 0 0 -5586677 128 0 -5586791 0 0 -5586838 128 0 -5586942 0 0 -5586999 128 0 -5587063 0 0 -5592356 totRewards = 90 -5592356 64 8 -5592556 64 0 -5592561 0 0 -5592581 64 0 -5594842 0 0 -5594869 64 0 -5595341 0 0 -5595378 64 0 -5595506 0 0 -5595526 64 0 -5595670 0 0 -5595692 64 0 -5595830 0 0 -5595849 64 0 -5596466 0 0 -5596497 64 0 -5596934 0 0 -5596963 64 0 -5597803 0 0 -5597843 64 0 -5597971 0 0 -5598005 64 0 -5598132 0 0 -5598150 64 0 -5598285 0 0 -5598344 64 0 -5598400 0 0 -5600914 totRewards = 91 -5600914 128 16 -5601092 0 16 -5601114 0 0 -5601176 128 0 -5601509 0 0 -5601530 128 0 -5601792 0 0 -5601816 128 0 -5601902 0 0 -5601944 128 0 -5602063 0 0 -5602070 128 0 -5602335 0 0 -5602352 128 0 -5602634 0 0 -5602643 128 0 -5602793 0 0 -5602805 128 0 -5602949 0 0 -5602969 128 0 -5603268 0 0 -5603303 128 0 -5603434 0 0 -5603471 128 0 -5603603 0 0 -5603638 128 0 -5603763 0 0 -5603799 128 0 -5603928 0 0 -5603960 128 0 -5604082 0 0 -5604121 128 0 -5604246 0 0 -5604284 128 0 -5604407 0 0 -5604452 128 0 -5604567 0 0 -5604632 128 0 -5604716 0 0 -5604760 128 0 -5604870 0 0 -5604943 128 0 -5605063 0 0 -5605096 128 0 -5605203 0 0 -5605278 128 0 -5605313 0 0 -5605453 128 0 -5605549 0 0 -5605629 128 0 -5605720 0 0 -5608617 totRewards = 92 -5608617 64 8 -5608813 0 8 -5608817 0 0 -5608829 64 0 -5610943 0 0 -5610961 64 0 -5611607 0 0 -5611635 64 0 -5611766 0 0 -5611802 64 0 -5611924 0 0 -5611971 64 0 -5612070 0 0 -5615107 totRewards = 93 -5615107 128 16 -5615307 128 0 -5615390 0 0 -5615431 128 0 -5615763 0 0 -5615776 128 0 -5616012 0 0 -5616035 128 0 -5616146 0 0 -5616201 128 0 -5616284 0 0 -5616302 128 0 -5616430 0 0 -5616458 128 0 -5616567 0 0 -5616600 128 0 -5616726 0 0 -5616731 128 0 -5617017 0 0 -5617048 128 0 -5617168 0 0 -5617211 128 0 -5617333 0 0 -5617362 128 0 -5617495 0 0 -5617528 128 0 -5617659 0 0 -5617702 128 0 -5617820 0 0 -5617867 128 0 -5617986 0 0 -5618033 128 0 -5618149 0 0 -5618186 128 0 -5618466 0 0 -5618485 128 0 -5618614 0 0 -5618652 128 0 -5618765 0 0 -5618810 128 0 -5618920 0 0 -5618965 128 0 -5619076 0 0 -5619128 128 0 -5619234 0 0 -5619306 128 0 -5619413 0 0 -5619458 128 0 -5619578 0 0 -5619627 128 0 -5619748 0 0 -5619783 128 0 -5619910 0 0 -5619959 128 0 -5620081 0 0 -5620130 128 0 -5620232 0 0 -5620305 128 0 -5620393 0 0 -5620555 128 0 -5620598 0 0 -5621238 128 0 -5621262 0 0 -5621287 128 0 -5621312 0 0 -5624444 totRewards = 94 -5624444 64 8 -5624629 0 8 -5624644 0 0 -5624653 64 0 -5625828 0 0 -5625839 64 0 -5626791 0 0 -5626807 64 0 -5627126 0 0 -5627149 64 0 -5627285 0 0 -5627314 64 0 -5627441 0 0 -5627489 64 0 -5627614 0 0 -5627637 64 0 -5627759 0 0 -5630493 totRewards = 95 -5630493 128 16 -5630678 0 16 -5630693 0 0 -5630822 128 0 -5630934 0 0 -5630939 128 0 -5631056 0 0 -5631100 128 0 -5631451 0 0 -5631499 128 0 -5631884 0 0 -5631913 128 0 -5632026 0 0 -5632054 128 0 -5632335 0 0 -5632361 128 0 -5632485 0 0 -5632518 128 0 -5632645 0 0 -5632679 128 0 -5632804 0 0 -5632843 128 0 -5632970 0 0 -5633021 128 0 -5633146 0 0 -5633191 128 0 -5633305 0 0 -5633359 128 0 -5633455 0 0 -5633516 128 0 -5633624 0 0 -5633663 128 0 -5633790 0 0 -5633840 128 0 -5633945 0 0 -5634006 128 0 -5634112 0 0 -5634153 128 0 -5634272 0 0 -5634326 128 0 -5634427 0 0 -5634517 128 0 -5634652 0 0 -5634688 128 0 -5634714 0 0 -5634737 128 0 -5634799 0 0 -5634870 128 0 -5634962 0 0 -5635118 128 0 -5635172 0 0 -5635251 128 0 -5635325 0 0 -5638851 totRewards = 96 -5638851 64 8 -5639027 0 8 -5639051 0 0 -5639057 64 0 -5641158 0 0 -5641166 64 0 -5641312 0 0 -5641327 64 0 -5641632 0 0 -5641660 64 0 -5641799 0 0 -5641827 64 0 -5641967 0 0 -5642003 64 0 -5642135 0 0 -5642174 64 0 -5642295 0 0 -5642349 64 0 -5642450 0 0 -5642688 64 0 -5643624 0 0 -5648879 totRewards = 97 -5648879 128 16 -5649079 128 0 -5649159 0 0 -5649190 128 0 -5649783 0 0 -5649834 128 0 -5649930 0 0 -5649976 128 0 -5650367 0 0 -5650379 128 0 -5650813 0 0 -5650830 128 0 -5650971 0 0 -5650983 128 0 -5651115 0 0 -5651141 128 0 -5651273 0 0 -5651307 128 0 -5651436 0 0 -5651479 128 0 -5651605 0 0 -5651646 128 0 -5651763 0 0 -5651812 128 0 -5651913 0 0 -5651970 128 0 -5652065 0 0 -5652111 128 0 -5652224 0 0 -5652262 128 0 -5652382 0 0 -5652427 128 0 -5652542 0 0 -5652585 128 0 -5652710 0 0 -5652743 128 0 -5652867 0 0 -5652915 128 0 -5653031 0 0 -5653085 128 0 -5653183 0 0 -5653249 128 0 -5653342 0 0 -5656059 totRewards = 98 -5656059 64 8 -5656235 0 8 -5656259 0 0 -5656259 64 0 -5657885 0 0 -5657895 64 0 -5659034 0 0 -5659055 64 0 -5659196 0 0 -5659226 64 0 -5659351 0 0 -5659384 64 0 -5659509 0 0 -5659577 64 0 -5659599 0 0 -5662554 totRewards = 99 -5662554 128 16 -5662735 0 16 -5662754 0 0 -5662788 128 0 -5662975 0 0 -5663017 128 0 -5663109 0 0 -5663163 128 0 -5663375 0 0 -5663405 128 0 -5663502 0 0 -5663561 128 0 -5663933 0 0 -5663957 128 0 -5664383 0 0 -5664415 128 0 -5664537 0 0 -5664572 128 0 -5664697 0 0 -5664733 128 0 -5664862 0 0 -5664906 128 0 -5665023 0 0 -5665067 128 0 -5665186 0 0 -5665233 128 0 -5665345 0 0 -5665383 128 0 -5665521 0 0 -5665557 128 0 -5665678 0 0 -5665722 128 0 -5665841 0 0 -5665894 128 0 -5666004 0 0 -5666057 128 0 -5666170 0 0 -5666214 128 0 -5666332 0 0 -5666386 128 0 -5666500 0 0 -5666552 128 0 -5666666 0 0 -5666710 128 0 -5666819 0 0 -5666871 128 0 -5666975 0 0 -5667679 128 0 -5667780 0 0 -5667820 128 0 -5667924 0 0 -5667975 128 0 -5668075 0 0 -5668129 128 0 -5668240 0 0 -5668270 128 0 -5668389 0 0 -5668428 128 0 -5668557 0 0 -5668585 128 0 -5668714 0 0 -5668776 128 0 -5668883 0 0 -5673440 totRewards = 100 -5673440 64 8 -5673640 64 0 -5675190 0 0 -5675210 64 0 -5675339 0 0 -5675358 64 0 -5675835 0 0 -5675852 64 0 -5676152 0 0 -5676181 64 0 -5676317 0 0 -5676322 64 0 -5676788 0 0 -5676803 64 0 -5677296 0 0 -5677315 64 0 -5677473 0 0 -5677487 64 0 -5677645 0 0 -5677660 64 0 -5677807 0 0 -5677844 64 0 -5678474 0 0 -5678494 64 0 -5679104 0 0 -5679146 64 0 -5679622 0 0 -5679652 64 0 -5679774 0 0 -5679817 64 0 -5679938 0 0 -5679994 64 0 -5680085 0 0 -5682771 totRewards = 101 -5682771 128 16 -5682971 128 0 -5682977 0 0 -5683060 128 0 -5683375 0 0 -5683438 128 0 -5683560 0 0 -5683593 128 0 -5683703 0 0 -5683721 128 0 -5683815 0 0 -5683845 128 0 -5683965 0 0 -5683982 128 0 -5684243 0 0 -5684256 128 0 -5684680 0 0 -5684711 128 0 -5684843 0 0 -5684866 128 0 -5684992 0 0 -5685027 128 0 -5685150 0 0 -5685197 128 0 -5685319 0 0 -5685370 128 0 -5685483 0 0 -5685531 128 0 -5685652 0 0 -5685700 128 0 -5685822 0 0 -5685873 128 0 -5685989 0 0 -5686038 128 0 -5686141 0 0 -5686197 128 0 -5686300 0 0 -5686344 128 0 -5686456 0 0 -5686512 128 0 -5686612 0 0 -5686685 128 0 -5686815 0 0 -5686827 128 0 -5686975 0 0 -5687022 128 0 -5687140 0 0 -5687204 128 0 -5687320 0 0 -5687399 128 0 -5687416 0 0 -5687432 128 0 -5687474 0 0 -5690822 totRewards = 102 -5690822 64 8 -5691022 64 0 -5691038 0 0 -5691053 64 0 -5691660 0 0 -5691672 64 0 -5693493 0 0 -5693512 64 0 -5693653 0 0 -5693682 64 0 -5693805 0 0 -5693842 64 0 -5693957 0 0 -5694019 64 0 -5694105 0 0 -5697110 totRewards = 103 -5697110 128 16 -5697310 128 0 -5697315 0 0 -5697352 128 0 -5697566 0 0 -5697585 128 0 -5697701 0 0 -5697734 128 0 -5697966 0 0 -5697986 128 0 -5698098 0 0 -5698149 128 0 -5698532 0 0 -5698553 128 0 -5698996 0 0 -5699025 128 0 -5699162 0 0 -5699191 128 0 -5699323 0 0 -5699355 128 0 -5699492 0 0 -5699532 128 0 -5699662 0 0 -5699707 128 0 -5699824 0 0 -5699871 128 0 -5699977 0 0 -5700030 128 0 -5700120 0 0 -5700191 128 0 -5700282 0 0 -5700354 128 0 -5700433 0 0 -5703554 totRewards = 104 -5703554 64 8 -5703739 0 8 -5703754 0 0 -5703766 64 0 -5704513 0 0 -5704522 64 0 -5705904 0 0 -5705924 64 0 -5706065 0 0 -5706088 64 0 -5706232 0 0 -5706255 64 0 -5706393 0 0 -5706423 64 0 -5706553 0 0 -5706587 64 0 -5706710 0 0 -5706757 64 0 -5706875 0 0 -5708022 64 0 -5708875 0 0 -5708897 64 0 -5710073 0 0 -5710134 64 0 -5710212 0 0 -5712808 totRewards = 105 -5712808 128 16 -5712986 0 16 -5713008 0 0 -5713059 128 0 -5713254 0 0 -5713265 128 0 -5713378 0 0 -5713420 128 0 -5713793 0 0 -5713832 128 0 -5714102 0 0 -5714113 128 0 -5714248 0 0 -5714274 128 0 -5714407 0 0 -5714434 128 0 -5714565 0 0 -5714600 128 0 -5714710 0 0 -5714751 128 0 -5714880 0 0 -5714918 128 0 -5715052 0 0 -5715093 128 0 -5715216 0 0 -5715268 128 0 -5715379 0 0 -5715429 128 0 -5715539 0 0 -5715600 128 0 -5715673 0 0 -5715761 128 0 -5715829 0 0 -5719199 totRewards = 106 -5719199 64 8 -5719399 64 0 - - description: state script log run 2 - task_epochs: 4, -, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140061936205264 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -7499807 totRewards = 1 -7499807 64 200 -7500007 64 192 -7500065 0 128 -7500089 64 128 -7500220 0 128 -7500233 64 128 -7500345 0 128 -7500352 64 128 -7500830 0 128 -7500836 64 128 -7500943 0 128 -7500963 64 128 -7501077 0 128 -7501087 64 128 -7501201 0 128 -7501216 64 128 -7501327 0 128 -7501354 64 128 -7501470 0 128 -7501488 64 128 -7501621 0 128 -7501641 64 128 -7501768 0 128 -7501786 64 128 -7501914 0 128 -7501942 64 128 -7502067 0 128 -7502104 64 128 -7502224 0 128 -7502270 64 128 -7502382 0 128 -7502438 64 128 -7502547 0 128 -7502591 64 128 -7502710 0 128 -7502748 64 128 -7502863 0 128 -7502898 64 128 -7503321 0 128 -7503349 64 128 -7503492 0 128 -7503512 64 128 -7503675 0 128 -7503685 64 128 -7503829 0 128 -7503869 64 128 -7504008 0 128 -7504049 64 128 -7504185 0 128 -7504229 64 128 -7504335 0 128 -7504385 64 128 -7504830 0 128 -7504850 64 128 -7505318 0 128 -7505346 64 128 -7505492 0 128 -7505523 64 128 -7505673 0 128 -7505703 64 128 -7505819 0 128 -7509448 totRewards = 2 -7509448 128 144 -7509648 128 128 -7509830 0 0 -7509841 128 0 -7509844 0 0 -7509909 128 0 -7509912 0 0 -7509920 128 0 -7509985 0 0 -7510002 128 0 -7510144 0 0 -7510154 128 0 -7510255 0 0 -7510314 128 0 -7510656 0 0 -7510682 128 0 -7510795 0 0 -7510807 128 0 -7511073 0 0 -7511090 128 0 -7511207 0 0 -7511234 128 0 -7511347 0 0 -7511392 128 0 -7511490 0 0 -7511537 128 0 -7511633 0 0 -7511693 128 0 -7511798 0 0 -7511856 128 0 -7511969 0 0 -7512023 128 0 -7512135 0 0 -7512198 128 0 -7512321 0 0 -7512384 128 0 -7512512 0 0 -7512575 128 0 -7512699 0 0 -7512769 128 0 -7512896 0 0 -7512953 128 0 -7513081 0 0 -7513127 128 0 -7514538 0 0 -7514575 128 0 -7514712 0 0 -7514754 128 0 -7514891 0 0 -7514952 128 0 -7515072 0 0 -7515133 128 0 -7515263 0 0 -7515316 128 0 -7515435 0 0 -7515498 128 0 -7515609 0 0 -7515678 128 0 -7515789 0 0 -7515866 128 0 -7515967 0 0 -7516022 128 0 -7516088 0 0 -7516194 128 0 -7516468 0 0 -7516494 128 0 -7516627 0 0 -7516666 128 0 -7516803 0 0 -7516877 128 0 -7516984 0 0 -7517035 128 0 -7517176 0 0 -7517288 128 0 -7517394 0 0 -7517922 128 0 -7517951 0 0 -7518111 128 0 -7518125 0 0 -7518392 128 0 -7518503 0 0 -7518598 128 0 -7518683 0 0 -7518837 128 0 -7518854 0 0 -7527467 128 0 -7527970 0 0 -7527980 128 0 -7528348 0 0 -7528369 128 0 -7528497 0 0 -7528533 128 0 -7528645 0 0 -7528691 128 0 -7528805 0 0 -7528852 128 0 -7528967 0 0 -7532478 totRewards = 3 -7532478 64 8 -7532678 64 0 -7533690 0 0 -7533700 64 0 -7533836 0 0 -7533851 64 0 -7533973 0 0 -7533982 64 0 -7534275 0 0 -7534294 64 0 -7534429 0 0 -7534443 64 0 -7534775 0 0 -7534796 64 0 -7534938 0 0 -7534974 64 0 -7535284 0 0 -7535321 64 0 -7536105 0 0 -7536111 64 0 -7536280 0 0 -7536300 64 0 -7536473 0 0 -7536500 64 0 -7536664 0 0 -7536677 64 0 -7536833 0 0 -7536885 64 0 -7537004 0 0 -7537062 64 0 -7537189 0 0 -7537254 64 0 -7537988 0 0 -7538049 64 0 -7538195 0 0 -7538227 64 0 -7538413 0 0 -7538435 64 0 -7538599 0 0 -7538659 64 0 -7538784 0 0 -7539025 64 0 -7539161 0 0 -7539189 64 0 -7539338 0 0 -7539407 64 0 -7539582 0 0 -7540550 64 0 -7540819 0 0 -7540833 64 0 -7540992 0 0 -7541002 64 0 -7541166 0 0 -7541175 64 0 -7541333 0 0 -7541372 64 0 -7541521 0 0 -7541562 64 0 -7541687 0 0 -7545424 totRewards = 4 -7545424 128 16 -7545556 0 16 -7545595 128 16 -7545624 128 0 -7545675 0 0 -7545700 128 0 -7545842 0 0 -7545893 128 0 -7546045 0 0 -7546114 128 0 -7546712 0 0 -7546739 128 0 -7546858 0 0 -7546874 128 0 -7546980 0 0 -7547012 128 0 -7547114 0 0 -7547153 128 0 -7547255 0 0 -7547294 128 0 -7547398 0 0 -7547439 128 0 -7547540 0 0 -7547582 128 0 -7547696 0 0 -7547741 128 0 -7547855 0 0 -7547906 128 0 -7548020 0 0 -7548069 128 0 -7548183 0 0 -7548246 128 0 -7548357 0 0 -7548418 128 0 -7548525 0 0 -7548577 128 0 -7548709 0 0 -7548735 128 0 -7549034 0 0 -7549043 128 0 -7549170 0 0 -7549221 128 0 -7549341 0 0 -7549385 128 0 -7549499 0 0 -7549566 128 0 -7549586 0 0 -7549623 128 0 -7549666 0 0 -7549732 128 0 -7549840 0 0 -7549905 128 0 -7550015 0 0 -7550072 128 0 -7550178 0 0 -7550246 128 0 -7550331 0 0 -7550428 128 0 -7550513 0 0 -7550590 128 0 -7550685 0 0 -7550772 128 0 -7550839 0 0 -7550912 128 0 -7551001 0 0 -7551092 128 0 -7551110 0 0 -7551154 128 0 -7551186 0 0 -7551269 128 0 -7551359 0 0 -7551455 128 0 -7551474 0 0 -7551508 128 0 -7551543 0 0 -7554803 totRewards = 5 -7554803 64 8 -7555003 64 0 -7555514 0 0 -7555522 64 0 -7555924 0 0 -7555942 64 0 -7556063 0 0 -7556081 64 0 -7556203 0 0 -7556225 64 0 -7556353 0 0 -7556376 64 0 -7556520 0 0 -7556534 64 0 -7556675 0 0 -7556704 64 0 -7557239 0 0 -7557274 64 0 -7557449 0 0 -7557479 64 0 -7557658 0 0 -7557687 64 0 -7557844 0 0 -7557899 64 0 -7558036 0 0 -7558079 64 0 -7558777 0 0 -7558799 64 0 -7558950 0 0 -7558985 64 0 -7559119 0 0 -7559170 64 0 -7559304 0 0 -7559320 64 0 -7559771 0 0 -7559798 64 0 -7559938 0 0 -7559966 64 0 -7560124 0 0 -7560146 64 0 -7560327 0 0 -7560337 64 0 -7561101 0 0 -7561107 64 0 -7561272 0 0 -7561309 64 0 -7561449 0 0 -7561499 64 0 -7561608 0 0 -7567350 totRewards = 6 -7567350 128 16 -7567534 0 16 -7567550 0 0 -7567605 128 0 -7567921 0 0 -7567954 128 0 -7568061 0 0 -7568094 128 0 -7568302 0 0 -7568359 128 0 -7568446 0 0 -7568464 128 0 -7568594 0 0 -7568619 128 0 -7568723 0 0 -7568763 128 0 -7568863 0 0 -7568898 128 0 -7569021 0 0 -7569058 128 0 -7569166 0 0 -7569215 128 0 -7569320 0 0 -7569370 128 0 -7569487 0 0 -7569540 128 0 -7569660 0 0 -7569715 128 0 -7569826 0 0 -7569886 128 0 -7569997 0 0 -7570055 128 0 -7570166 0 0 -7570228 128 0 -7570323 0 0 -7570390 128 0 -7570486 0 0 -7570544 128 0 -7570652 0 0 -7570705 128 0 -7570817 0 0 -7570880 128 0 -7570994 0 0 -7571053 128 0 -7571170 0 0 -7571231 128 0 -7571323 0 0 -7571403 128 0 -7571464 0 0 -7574231 totRewards = 7 -7574231 64 8 -7574415 0 8 -7574425 64 8 -7574431 64 0 -7574779 0 0 -7574797 64 0 -7575035 0 0 -7575056 64 0 -7575163 0 0 -7575183 64 0 -7575448 0 0 -7575456 64 0 -7575587 0 0 -7575611 64 0 -7575740 0 0 -7575751 64 0 -7576067 0 0 -7576080 64 0 -7576414 0 0 -7576428 64 0 -7576576 0 0 -7576613 64 0 -7576929 0 0 -7576964 64 0 -7577119 0 0 -7577149 64 0 -7577275 0 0 -7577325 64 0 -7577456 0 0 -7577480 64 0 -7577802 0 0 -7577819 64 0 -7577960 0 0 -7577994 64 0 -7578136 0 0 -7578159 64 0 -7578502 0 0 -7578520 64 0 -7579482 0 0 -7579497 64 0 -7579628 0 0 -7579682 64 0 -7579827 0 0 -7579953 64 0 -7580203 0 0 -7580264 64 0 -7580397 0 0 -7580420 64 0 -7580591 0 0 -7580646 64 0 -7580794 0 0 -7580861 64 0 -7580959 0 0 -7581217 64 0 -7581305 0 0 -7581342 64 0 -7581506 0 0 -7581525 64 0 -7581685 0 0 -7581733 64 0 -7581865 0 0 -7586030 totRewards = 8 -7586030 128 16 -7586203 0 16 -7586230 0 0 -7586276 128 0 -7586594 0 0 -7586646 128 0 -7586869 0 0 -7586882 128 0 -7586984 0 0 -7587040 128 0 -7587141 0 0 -7587153 128 0 -7587270 0 0 -7587284 128 0 -7587411 0 0 -7587449 128 0 -7587570 0 0 -7587605 128 0 -7587719 0 0 -7587756 128 0 -7587868 0 0 -7587918 128 0 -7588020 0 0 -7588073 128 0 -7588193 0 0 -7588236 128 0 -7588357 0 0 -7588414 128 0 -7588530 0 0 -7588595 128 0 -7588708 0 0 -7588763 128 0 -7588882 0 0 -7588938 128 0 -7589043 0 0 -7589094 128 0 -7589207 0 0 -7589228 128 0 -7589361 0 0 -7589395 128 0 -7589516 0 0 -7589559 128 0 -7589671 0 0 -7589729 128 0 -7589838 0 0 -7589910 128 0 -7589918 0 0 -7589962 128 0 -7590005 0 0 -7590071 128 0 -7590176 0 0 -7590329 128 0 -7590370 0 0 -7590473 128 0 -7590481 0 0 -7590519 128 0 -7590565 0 0 -7593508 totRewards = 9 -7593508 64 8 -7593703 0 8 -7593708 0 0 -7593718 64 0 -7593939 0 0 -7593957 64 0 -7594730 0 0 -7594744 64 0 -7594863 0 0 -7594890 64 0 -7595020 0 0 -7595030 64 0 -7595169 0 0 -7595174 64 0 -7595653 0 0 -7595670 64 0 -7595828 0 0 -7595841 64 0 -7595986 0 0 -7596013 64 0 -7596162 0 0 -7596199 64 0 -7596330 0 0 -7596379 64 0 -7596506 0 0 -7596524 64 0 -7596672 0 0 -7596684 64 0 -7596853 0 0 -7596873 64 0 -7597016 0 0 -7597070 64 0 -7597351 0 0 -7597375 64 0 -7597514 0 0 -7597545 64 0 -7598031 0 0 -7598062 64 0 -7598180 0 0 -7600753 totRewards = 10 -7600753 128 16 -7600928 0 16 -7600953 0 0 -7600990 128 0 -7601310 0 0 -7601350 128 0 -7601572 0 0 -7601603 128 0 -7601699 0 0 -7601749 128 0 -7602139 0 0 -7602168 128 0 -7602447 0 0 -7602470 128 0 -7602597 0 0 -7602634 128 0 -7602764 0 0 -7602799 128 0 -7602926 0 0 -7602968 128 0 -7603094 0 0 -7603151 128 0 -7603268 0 0 -7603328 128 0 -7603449 0 0 -7603504 128 0 -7603615 0 0 -7603667 128 0 -7603785 0 0 -7603834 128 0 -7603946 0 0 -7604000 128 0 -7604090 0 0 -7604243 128 0 -7604261 0 0 -7604340 128 0 -7604432 0 0 -7604506 128 0 -7604584 0 0 -7604667 128 0 -7604764 0 0 -7604873 128 0 -7604886 0 0 -7604910 128 0 -7604961 0 0 -7608088 totRewards = 11 -7608088 64 8 -7608263 0 8 -7608281 64 8 -7608288 64 0 -7609448 0 0 -7609467 64 0 -7609592 0 0 -7609607 64 0 -7609745 0 0 -7609757 64 0 -7610240 0 0 -7610256 64 0 -7610412 0 0 -7610424 64 0 -7610764 0 0 -7610772 64 0 -7610918 0 0 -7610952 64 0 -7611077 0 0 -7611115 64 0 -7611243 0 0 -7611289 64 0 -7611586 0 0 -7611606 64 0 -7611757 0 0 -7611794 64 0 -7612355 0 0 -7612386 64 0 -7612574 0 0 -7612614 64 0 -7612884 0 0 -7612901 64 0 -7613054 0 0 -7613091 64 0 -7613221 0 0 -7613257 64 0 -7613386 0 0 -7618178 totRewards = 12 -7618178 128 16 -7618307 0 16 -7618378 0 0 -7618396 128 0 -7618712 0 0 -7618752 128 0 -7618860 0 0 -7618907 128 0 -7618984 0 0 -7619030 128 0 -7619120 0 0 -7619158 128 0 -7619270 0 0 -7619285 128 0 -7619414 0 0 -7619429 128 0 -7619552 0 0 -7619584 128 0 -7619716 0 0 -7619727 128 0 -7619858 0 0 -7619880 128 0 -7620005 0 0 -7620054 128 0 -7620174 0 0 -7620222 128 0 -7620341 0 0 -7620397 128 0 -7620509 0 0 -7620586 128 0 -7620743 0 0 -7621246 128 0 -7621352 0 0 -7621407 128 0 -7621506 0 0 -7621630 128 0 -7621695 0 0 -7621754 128 0 -7621880 0 0 -7621924 128 0 -7622044 0 0 -7622121 128 0 -7622225 0 0 -7622291 128 0 -7622376 0 0 -7622477 128 0 -7622496 0 0 -7627198 totRewards = 13 -7627198 64 8 -7627398 64 0 -7627485 0 0 -7627518 64 0 -7627731 0 0 -7627748 64 0 -7628116 0 0 -7628129 64 0 -7628673 0 0 -7628690 64 0 -7629150 0 0 -7629167 64 0 -7629317 0 0 -7629333 64 0 -7629487 0 0 -7629508 64 0 -7629653 0 0 -7629679 64 0 -7629822 0 0 -7629839 64 0 -7630177 0 0 -7630189 64 0 -7630327 0 0 -7630372 64 0 -7630981 0 0 -7631001 64 0 -7631145 0 0 -7631167 64 0 -7631302 0 0 -7631325 64 0 -7631462 0 0 -7631485 64 0 -7631620 0 0 -7631654 64 0 -7631784 0 0 -7631820 64 0 -7632823 0 0 -7632847 64 0 -7632982 0 0 -7633020 64 0 -7633130 0 0 -7633190 64 0 -7633269 0 0 -7636615 totRewards = 14 -7636615 128 16 -7636786 0 16 -7636815 0 0 -7636824 128 0 -7637013 0 0 -7637060 128 0 -7637204 0 0 -7637225 128 0 -7637386 0 0 -7637443 128 0 -7637537 0 0 -7637577 128 0 -7637671 0 0 -7637683 128 0 -7637804 0 0 -7637816 128 0 -7637937 0 0 -7637954 128 0 -7638227 0 0 -7638255 128 0 -7638375 0 0 -7638411 128 0 -7638523 0 0 -7638558 128 0 -7638691 0 0 -7638728 128 0 -7638849 0 0 -7638900 128 0 -7639021 0 0 -7639074 128 0 -7639196 0 0 -7639244 128 0 -7639364 0 0 -7639418 128 0 -7639531 0 0 -7639582 128 0 -7639692 0 0 -7639746 128 0 -7639849 0 0 -7639908 128 0 -7640017 0 0 -7640064 128 0 -7640179 0 0 -7640234 128 0 -7640353 0 0 -7640407 128 0 -7640516 0 0 -7640591 128 0 -7640656 0 0 -7643472 totRewards = 15 -7643472 64 8 -7643672 64 0 -7644135 0 0 -7644143 64 0 -7644273 0 0 -7644285 64 0 -7644681 0 0 -7644691 64 0 -7644821 0 0 -7644835 64 0 -7645128 0 0 -7645141 64 0 -7645287 0 0 -7645300 64 0 -7645452 0 0 -7645462 64 0 -7645617 0 0 -7645632 64 0 -7645772 0 0 -7645801 64 0 -7645932 0 0 -7645969 64 0 -7646102 0 0 -7646129 64 0 -7646634 0 0 -7646657 64 0 -7646790 0 0 -7646833 64 0 -7646939 0 0 -7647007 64 0 -7647074 0 0 -7649822 totRewards = 16 -7649822 128 16 -7650002 0 16 -7650022 0 0 -7650070 128 0 -7650268 0 0 -7650297 128 0 -7650402 0 0 -7650451 128 0 -7650656 0 0 -7650688 128 0 -7650785 0 0 -7650847 128 0 -7651084 0 0 -7651100 128 0 -7651213 0 0 -7651247 128 0 -7651522 0 0 -7651547 128 0 -7651668 0 0 -7651708 128 0 -7651826 0 0 -7651870 128 0 -7651999 0 0 -7652037 128 0 -7652156 0 0 -7652209 128 0 -7652328 0 0 -7652377 128 0 -7652500 0 0 -7652551 128 0 -7652658 0 0 -7652704 128 0 -7652821 0 0 -7652866 128 0 -7652976 0 0 -7653038 128 0 -7653142 0 0 -7653199 128 0 -7653303 0 0 -7653358 128 0 -7653467 0 0 -7653515 128 0 -7653636 0 0 -7653691 128 0 -7653808 0 0 -7653869 128 0 -7653965 0 0 -7654051 128 0 -7654062 0 0 -7654080 128 0 -7654108 0 0 -7656919 totRewards = 17 -7656919 64 8 -7657100 0 8 -7657110 64 8 -7657119 64 0 -7657724 0 0 -7657737 64 0 -7658450 0 0 -7658463 64 0 -7659093 0 0 -7659110 64 0 -7659260 0 0 -7659287 64 0 -7659582 0 0 -7659623 64 0 -7659745 0 0 -7659761 64 0 -7659910 0 0 -7659923 64 0 -7660072 0 0 -7660091 64 0 -7660226 0 0 -7660267 64 0 -7660403 0 0 -7660430 64 0 -7661645 0 0 -7661670 64 0 -7661804 0 0 -7661850 64 0 -7661970 0 0 -7662038 64 0 -7662070 0 0 -7664957 totRewards = 18 -7664957 128 16 -7665116 0 16 -7665157 0 0 -7665163 128 0 -7665372 0 0 -7665381 128 0 -7665492 0 0 -7665545 128 0 -7665745 0 0 -7665785 128 0 -7665876 0 0 -7665942 128 0 -7666304 0 0 -7666340 128 0 -7666456 0 0 -7666472 128 0 -7666601 0 0 -7666620 128 0 -7666750 0 0 -7666789 128 0 -7666909 0 0 -7666951 128 0 -7667074 0 0 -7667107 128 0 -7667238 0 0 -7667279 128 0 -7667398 0 0 -7667454 128 0 -7667578 0 0 -7667628 128 0 -7667753 0 0 -7667813 128 0 -7667918 0 0 -7667983 128 0 -7668082 0 0 -7668137 128 0 -7668242 0 0 -7668288 128 0 -7668398 0 0 -7668454 128 0 -7668559 0 0 -7668614 128 0 -7668722 0 0 -7668772 128 0 -7668880 0 0 -7668945 128 0 -7669001 0 0 -7669091 128 0 -7669177 0 0 -7669492 128 0 -7669523 0 0 -7669608 128 0 -7669694 0 0 -7672486 totRewards = 19 -7672486 64 8 -7672686 64 0 -7672724 0 0 -7672737 64 0 -7673490 0 0 -7673495 64 0 -7673765 0 0 -7673797 64 0 -7674228 0 0 -7674245 64 0 -7674389 0 0 -7674411 64 0 -7674894 0 0 -7674914 64 0 -7675248 0 0 -7675270 64 0 -7675418 0 0 -7675447 64 0 -7675593 0 0 -7675622 64 0 -7675753 0 0 -7675795 64 0 -7675911 0 0 -7675976 64 0 -7676080 0 0 -7676166 64 0 -7676268 0 0 -7676294 64 0 -7676444 0 0 -7676456 64 0 -7676947 0 0 -7676967 64 0 -7677088 0 0 -7679867 totRewards = 20 -7679867 128 16 -7680067 128 0 -7680094 0 0 -7680125 128 0 -7680335 0 0 -7680382 128 0 -7680469 0 0 -7680492 128 0 -7680727 0 0 -7680767 128 0 -7680855 0 0 -7680935 128 0 -7681001 0 0 -7681018 128 0 -7681159 0 0 -7681172 128 0 -7681294 0 0 -7681324 128 0 -7681588 0 0 -7681609 128 0 -7681743 0 0 -7681767 128 0 -7681906 0 0 -7681934 128 0 -7682065 0 0 -7682103 128 0 -7682226 0 0 -7682266 128 0 -7682390 0 0 -7682438 128 0 -7682573 0 0 -7682621 128 0 -7682747 0 0 -7682802 128 0 -7682920 0 0 -7682969 128 0 -7683084 0 0 -7683134 128 0 -7683243 0 0 -7683297 128 0 -7683398 0 0 -7683455 128 0 -7683562 0 0 -7683617 128 0 -7683726 0 0 -7683780 128 0 -7683889 0 0 -7683948 128 0 -7684062 0 0 -7684129 128 0 -7684181 0 0 -7687149 totRewards = 21 -7687149 64 8 -7687334 0 8 -7687349 0 0 -7687368 64 0 -7688422 0 0 -7688431 64 0 -7689388 0 0 -7689395 64 0 -7689548 0 0 -7689570 64 0 -7689719 0 0 -7689739 64 0 -7690071 0 0 -7690094 64 0 -7690236 0 0 -7690275 64 0 -7690577 0 0 -7690608 64 0 -7690748 0 0 -7690779 64 0 -7690941 0 0 -7690955 64 0 -7691854 0 0 -7691868 64 0 -7692034 0 0 -7692075 64 0 -7692226 0 0 -7692246 64 0 -7692396 0 0 -7692425 64 0 -7692575 0 0 -7692615 64 0 -7692744 0 0 -7692793 64 0 -7692916 0 0 -7695979 totRewards = 22 -7695979 128 16 -7696155 0 16 -7696179 0 0 -7696202 128 0 -7696409 0 0 -7696454 128 0 -7696545 0 0 -7696610 128 0 -7696807 0 0 -7696843 128 0 -7696940 0 0 -7697002 128 0 -7697228 0 0 -7697253 128 0 -7697365 0 0 -7697397 128 0 -7697511 0 0 -7697525 128 0 -7697646 0 0 -7697669 128 0 -7697800 0 0 -7697833 128 0 -7697956 0 0 -7697992 128 0 -7698120 0 0 -7698153 128 0 -7698280 0 0 -7698325 128 0 -7698442 0 0 -7698497 128 0 -7698624 0 0 -7698670 128 0 -7698792 0 0 -7698847 128 0 -7698956 0 0 -7699030 128 0 -7699117 0 0 -7699171 128 0 -7699287 0 0 -7699334 128 0 -7699449 0 0 -7699513 128 0 -7699611 0 0 -7699673 128 0 -7699780 0 0 -7699832 128 0 -7699949 0 0 -7700006 128 0 -7700113 0 0 -7700189 128 0 -7700266 0 0 -7703088 totRewards = 23 -7703088 64 8 -7703250 0 8 -7703277 64 8 -7703288 64 0 -7704632 0 0 -7704645 64 0 -7705600 0 0 -7705615 64 0 -7705765 0 0 -7705782 64 0 -7705935 0 0 -7705961 64 0 -7706103 0 0 -7706131 64 0 -7706267 0 0 -7706301 64 0 -7706431 0 0 -7706463 64 0 -7706601 0 0 -7706627 64 0 -7706764 0 0 -7706802 64 0 -7706930 0 0 -7706960 64 0 -7707407 0 0 -7707434 64 0 -7707562 0 0 -7707602 64 0 -7707904 0 0 -7707925 64 0 -7708075 0 0 -7708098 64 0 -7708229 0 0 -7708267 64 0 -7708371 0 0 -7711071 totRewards = 24 -7711071 128 16 -7711271 128 0 -7711287 0 0 -7711335 128 0 -7711541 0 0 -7711554 128 0 -7711669 0 0 -7711743 128 0 -7711797 0 0 -7711821 128 0 -7711918 0 0 -7711963 128 0 -7712057 0 0 -7712115 128 0 -7712350 0 0 -7712367 128 0 -7712487 0 0 -7712521 128 0 -7712797 0 0 -7712815 128 0 -7712933 0 0 -7712969 128 0 -7713089 0 0 -7713123 128 0 -7713252 0 0 -7713285 128 0 -7713398 0 0 -7713450 128 0 -7713560 0 0 -7713617 128 0 -7713738 0 0 -7713793 128 0 -7713912 0 0 -7713974 128 0 -7714078 0 0 -7714139 128 0 -7714242 0 0 -7714298 128 0 -7714402 0 0 -7714450 128 0 -7714556 0 0 -7714619 128 0 -7714715 0 0 -7714786 128 0 -7714871 0 0 -7714940 128 0 -7715030 0 0 -7715110 128 0 -7715204 0 0 -7715820 128 0 -7715841 0 0 -7715880 128 0 -7715896 0 0 -7716042 128 0 -7716050 0 0 -7718859 totRewards = 25 -7718859 64 8 -7719037 0 8 -7719059 0 0 -7719070 64 0 -7720252 0 0 -7720271 64 0 -7721045 0 0 -7721052 64 0 -7721203 0 0 -7721223 64 0 -7721865 0 0 -7721906 64 0 -7722021 0 0 -7722069 64 0 -7722175 0 0 -7724820 totRewards = 26 -7724820 128 16 -7725007 0 16 -7725020 0 0 -7725058 128 0 -7725272 0 0 -7725298 128 0 -7725406 0 0 -7725460 128 0 -7725661 0 0 -7725701 128 0 -7725799 0 0 -7725877 128 0 -7726100 0 0 -7726104 128 0 -7726227 0 0 -7726259 128 0 -7726377 0 0 -7726398 128 0 -7726533 0 0 -7726549 128 0 -7726683 0 0 -7726707 128 0 -7726844 0 0 -7726875 128 0 -7727015 0 0 -7727044 128 0 -7727172 0 0 -7727210 128 0 -7727333 0 0 -7727378 128 0 -7727492 0 0 -7727541 128 0 -7727649 0 0 -7727701 128 0 -7727819 0 0 -7727862 128 0 -7727984 0 0 -7728027 128 0 -7728146 0 0 -7728201 128 0 -7728307 0 0 -7728367 128 0 -7728477 0 0 -7728526 128 0 -7728646 0 0 -7728696 128 0 -7728805 0 0 -7728869 128 0 -7728900 0 0 -7728928 128 0 -7728972 0 0 -7729027 128 0 -7729129 0 0 -7729183 128 0 -7729286 0 0 -7729366 128 0 -7729498 0 0 -7729527 128 0 -7729646 0 0 -7729719 128 0 -7729814 0 0 -7729893 128 0 -7729988 0 0 -7730070 128 0 -7730141 0 0 -7732750 totRewards = 27 -7732750 64 8 -7732939 0 8 -7732950 0 0 -7732966 64 0 -7734138 0 0 -7734147 64 0 -7735096 0 0 -7735122 64 0 -7735434 0 0 -7735464 64 0 -7735589 0 0 -7735614 64 0 -7735744 0 0 -7735773 64 0 -7735913 0 0 -7735933 64 0 -7736087 0 0 -7736097 64 0 -7737351 0 0 -7737358 64 0 -7737527 0 0 -7737563 64 0 -7737905 0 0 -7737973 64 0 -7738060 0 0 -7738711 64 0 -7739104 0 0 -7739144 64 0 -7739275 0 0 -7739310 64 0 -7740248 0 0 -7740276 64 0 -7740402 0 0 -7740424 64 0 -7740623 0 0 -7740657 64 0 -7740921 0 0 -7740929 64 0 -7741081 0 0 -7741115 64 0 -7741257 0 0 -7741299 64 0 -7741393 0 0 -7744012 totRewards = 28 -7744012 128 16 -7744190 0 16 -7744212 0 0 -7744254 128 0 -7744591 0 0 -7744627 128 0 -7744754 0 0 -7744772 128 0 -7744882 0 0 -7744909 128 0 -7745016 0 0 -7745054 128 0 -7745173 0 0 -7745180 128 0 -7745316 0 0 -7745325 128 0 -7745451 0 0 -7745473 128 0 -7745605 0 0 -7745616 128 0 -7745755 0 0 -7745777 128 0 -7745908 0 0 -7745937 128 0 -7746070 0 0 -7746103 128 0 -7746228 0 0 -7746259 128 0 -7746394 0 0 -7746433 128 0 -7746551 0 0 -7746597 128 0 -7746711 0 0 -7746764 128 0 -7746864 0 0 -7746912 128 0 -7747023 0 0 -7747070 128 0 -7747181 0 0 -7747240 128 0 -7747344 0 0 -7747394 128 0 -7747508 0 0 -7747557 128 0 -7747668 0 0 -7747717 128 0 -7747845 0 0 -7747893 128 0 -7748015 0 0 -7748073 128 0 -7748178 0 0 -7748248 128 0 -7748328 0 0 -7751119 totRewards = 29 -7751119 64 8 -7751284 0 8 -7751297 64 8 -7751319 64 0 -7751936 0 0 -7751944 64 0 -7752075 0 0 -7752081 64 0 -7752352 0 0 -7752369 64 0 -7752495 0 0 -7752509 64 0 -7753308 0 0 -7753311 64 0 -7753472 0 0 -7753484 64 0 -7753615 0 0 -7753653 64 0 -7753782 0 0 -7753808 64 0 -7753948 0 0 -7753967 64 0 -7754108 0 0 -7754132 64 0 -7754263 0 0 -7754300 64 0 -7754433 0 0 -7754457 64 0 -7754590 0 0 -7754618 64 0 -7754934 0 0 -7754951 64 0 -7755096 0 0 -7755117 64 0 -7755269 0 0 -7755280 64 0 -7755421 0 0 -7755464 64 0 -7755583 0 0 -7755614 64 0 -7756426 0 0 -7756435 64 0 -7756575 0 0 -7756621 64 0 -7756735 0 0 -7759346 totRewards = 30 -7759346 128 16 -7759546 128 0 -7759735 0 0 -7759828 128 0 -7759895 0 0 -7760019 128 0 -7760549 0 0 -7760573 128 0 -7761183 0 0 -7761278 128 0 -7761837 0 0 -7761971 128 0 -7762397 0 0 -7770968 128 0 -7771508 0 0 -7771516 128 0 -7771520 0 0 -7771594 128 0 -7771670 0 0 -7778279 128 0 -7778726 0 0 -7778810 128 0 -7781612 0 0 -7781679 128 0 -7781859 0 0 -7781952 128 0 -7782647 0 0 -7782660 128 0 -7783611 0 0 -7783695 128 0 -7783820 0 0 -7783904 128 0 -7784028 0 0 -7784715 128 0 -7784748 0 0 -7784815 128 0 -7784963 0 0 -7784972 128 0 -7785128 0 0 -7785171 128 0 -7785323 0 0 -7785332 128 0 -7785458 0 0 -7785567 128 0 -7785644 0 0 -7785652 128 0 -7785984 0 0 -7786006 128 0 -7786181 0 0 -7798709 128 0 -7799137 0 0 -7799197 128 0 -7799717 0 0 -7799733 128 0 -7799853 0 0 -7799891 128 0 -7800003 0 0 -7800048 128 0 -7800153 0 0 -7800200 128 0 -7800302 0 0 -7800347 128 0 -7800452 0 0 -7800500 128 0 -7800618 0 0 -7803661 128 0 -7803970 0 0 -7804004 128 0 -7804144 0 0 -7813162 128 0 -7813218 0 0 -7813406 128 0 -7813806 0 0 -7813875 128 0 -7814107 0 0 -7823391 totRewards = 31 -7823391 64 8 -7823591 64 0 -7823656 0 0 -7823671 64 0 -7823881 0 0 -7823897 64 0 -7826008 0 0 -7826037 64 0 -7827566 0 0 -7827573 64 0 -7828584 0 0 -7828620 64 0 -7828743 0 0 -7834990 totRewards = 32 -7834990 128 16 -7835139 0 16 -7835167 128 16 -7835190 128 0 -7835449 0 0 -7835485 128 0 -7835835 0 0 -7835868 128 0 -7836110 0 0 -7836120 128 0 -7836236 0 0 -7836256 128 0 -7836367 0 0 -7836396 128 0 -7836513 0 0 -7836531 128 0 -7836651 0 0 -7836676 128 0 -7836789 0 0 -7836818 128 0 -7836938 0 0 -7836957 128 0 -7837076 0 0 -7837105 128 0 -7837232 0 0 -7837258 128 0 -7837401 0 0 -7837432 128 0 -7837572 0 0 -7837608 128 0 -7837734 0 0 -7837774 128 0 -7837900 0 0 -7837949 128 0 -7838076 0 0 -7838119 128 0 -7838241 0 0 -7838288 128 0 -7838407 0 0 -7838416 128 0 -7839140 0 0 -7839167 128 0 -7839306 0 0 -7839334 128 0 -7839474 0 0 -7839510 128 0 -7839648 0 0 -7839695 128 0 -7839813 0 0 -7839849 128 0 -7839976 0 0 -7843754 totRewards = 33 -7843754 64 8 -7843954 64 0 -7843967 0 0 -7843973 64 0 -7845978 0 0 -7845984 64 0 -7846131 0 0 -7846155 64 0 -7846469 0 0 -7846491 64 0 -7846622 0 0 -7846657 64 0 -7846788 0 0 -7846799 64 0 -7847249 0 0 -7847271 64 0 -7847410 0 0 -7847455 64 0 -7847541 0 0 -7850856 totRewards = 34 -7850856 128 16 -7851040 0 16 -7851056 0 0 -7851101 128 0 -7851704 0 0 -7851731 128 0 -7851818 0 0 -7851873 128 0 -7851970 0 0 -7851982 128 0 -7852120 0 0 -7852136 128 0 -7852248 0 0 -7852280 128 0 -7852389 0 0 -7852411 128 0 -7852683 0 0 -7852708 128 0 -7852833 0 0 -7852864 128 0 -7852987 0 0 -7853024 128 0 -7853146 0 0 -7853179 128 0 -7853313 0 0 -7853358 128 0 -7853472 0 0 -7853527 128 0 -7853635 0 0 -7853698 128 0 -7853797 0 0 -7853859 128 0 -7853955 0 0 -7854006 128 0 -7854110 0 0 -7854161 128 0 -7854262 0 0 -7854311 128 0 -7854419 0 0 -7854471 128 0 -7854573 0 0 -7854639 128 0 -7854738 0 0 -7854791 128 0 -7854898 0 0 -7854946 128 0 -7855057 0 0 -7855109 128 0 -7855227 0 0 -7855280 128 0 -7855404 0 0 -7855464 128 0 -7855564 0 0 -7855679 128 0 -7855711 0 0 -7858818 totRewards = 35 -7858818 64 8 -7859018 64 0 -7859614 0 0 -7859624 64 0 -7860163 0 0 -7860171 64 0 -7861607 0 0 -7861621 64 0 -7861768 0 0 -7861798 64 0 -7861923 0 0 -7861961 64 0 -7862077 0 0 -7862128 64 0 -7862227 0 0 -7865126 totRewards = 36 -7865126 128 16 -7865323 0 16 -7865326 0 0 -7865400 128 0 -7865601 0 0 -7865621 128 0 -7865723 0 0 -7865770 128 0 -7865984 0 0 -7866016 128 0 -7866108 0 0 -7866176 128 0 -7866543 0 0 -7866580 128 0 -7866846 0 0 -7866872 128 0 -7866999 0 0 -7867032 128 0 -7867154 0 0 -7867201 128 0 -7867325 0 0 -7867359 128 0 -7867483 0 0 -7867533 128 0 -7867646 0 0 -7867703 128 0 -7867828 0 0 -7867875 128 0 -7867993 0 0 -7868049 128 0 -7868165 0 0 -7868226 128 0 -7868323 0 0 -7868378 128 0 -7868473 0 0 -7868524 128 0 -7868631 0 0 -7868678 128 0 -7868784 0 0 -7868845 128 0 -7868939 0 0 -7869007 128 0 -7869106 0 0 -7869153 128 0 -7869260 0 0 -7869319 128 0 -7869430 0 0 -7869482 128 0 -7869593 0 0 -7869658 128 0 -7869757 0 0 -7869825 128 0 -7869914 0 0 -7870005 128 0 -7870057 0 0 -7873030 totRewards = 37 -7873030 64 8 -7873229 0 8 -7873230 0 0 -7873246 64 0 -7873983 0 0 -7874009 64 0 -7875354 0 0 -7875365 64 0 -7875515 0 0 -7875533 64 0 -7875672 0 0 -7875697 64 0 -7875846 0 0 -7875866 64 0 -7875997 0 0 -7876036 64 0 -7876162 0 0 -7876199 64 0 -7876323 0 0 -7876361 64 0 -7876488 0 0 -7876523 64 0 -7876651 0 0 -7876694 64 0 -7876820 0 0 -7876857 64 0 -7877649 0 0 -7877665 64 0 -7877800 0 0 -7877838 64 0 -7877965 0 0 -7878018 64 0 -7878114 0 0 -7881030 totRewards = 38 -7881030 128 16 -7881192 0 16 -7881230 0 0 -7881250 128 0 -7881470 0 0 -7881478 128 0 -7881591 0 0 -7881617 128 0 -7881863 0 0 -7881878 128 0 -7881978 0 0 -7882035 128 0 -7882400 0 0 -7882433 128 0 -7882567 0 0 -7882573 128 0 -7882714 0 0 -7882749 128 0 -7882875 0 0 -7882921 128 0 -7883043 0 0 -7883089 128 0 -7883214 0 0 -7883259 128 0 -7883386 0 0 -7883443 128 0 -7883561 0 0 -7883614 128 0 -7883727 0 0 -7883786 128 0 -7883878 0 0 -7883938 128 0 -7884042 0 0 -7884087 128 0 -7884198 0 0 -7884250 128 0 -7884353 0 0 -7884421 128 0 -7884510 0 0 -7884579 128 0 -7884678 0 0 -7884729 128 0 -7884846 0 0 -7884901 128 0 -7885012 0 0 -7885074 128 0 -7885174 0 0 -7885254 128 0 -7885376 0 0 -7885445 128 0 -7885529 0 0 -7889531 totRewards = 39 -7889531 64 8 -7889731 64 0 -7889761 0 0 -7889764 64 0 -7890353 0 0 -7890374 64 0 -7890499 0 0 -7890505 64 0 -7891707 0 0 -7891730 64 0 -7891877 0 0 -7891911 64 0 -7892050 0 0 -7892082 64 0 -7892211 0 0 -7892240 64 0 -7892367 0 0 -7892404 64 0 -7892531 0 0 -7892563 64 0 -7892695 0 0 -7892722 64 0 -7892868 0 0 -7892883 64 0 -7893208 0 0 -7893218 64 0 -7893348 0 0 -7893404 64 0 -7893488 0 0 -7896150 totRewards = 40 -7896150 128 16 -7896337 0 16 -7896350 0 0 -7896384 128 0 -7896596 0 0 -7896620 128 0 -7896725 0 0 -7896772 128 0 -7896980 0 0 -7897027 128 0 -7897108 0 0 -7897185 128 0 -7897545 0 0 -7897579 128 0 -7897712 0 0 -7897731 128 0 -7897867 0 0 -7897894 128 0 -7898018 0 0 -7898067 128 0 -7898187 0 0 -7898232 128 0 -7898352 0 0 -7898399 128 0 -7898507 0 0 -7898565 128 0 -7898657 0 0 -7898710 128 0 -7898815 0 0 -7898868 128 0 -7898969 0 0 -7899036 128 0 -7899125 0 0 -7899188 128 0 -7899299 0 0 -7899344 128 0 -7899457 0 0 -7899515 128 0 -7899621 0 0 -7899682 128 0 -7899788 0 0 -7899857 128 0 -7899953 0 0 -7900013 128 0 -7900115 0 0 -7900169 128 0 -7900275 0 0 -7900326 128 0 -7900429 0 0 -7900508 128 0 -7900621 0 0 -7900688 128 0 -7900791 0 0 -7900863 128 0 -7900965 0 0 -7901007 128 0 -7901129 0 0 -7901172 128 0 -7901285 0 0 -7901351 128 0 -7901449 0 0 -7901514 128 0 -7901622 0 0 -7901668 128 0 -7901786 0 0 -7901853 128 0 -7901936 0 0 -7902059 128 0 -7902084 0 0 -7902107 128 0 -7902161 0 0 -7902279 128 0 -7902313 0 0 -7902412 128 0 -7902446 0 0 -7902466 128 0 -7902507 0 0 -7902598 128 0 -7902669 0 0 -7905547 totRewards = 41 -7905547 64 8 -7905735 0 8 -7905747 0 0 -7905759 64 0 -7907837 0 0 -7907860 64 0 -7908013 0 0 -7908024 64 0 -7908328 0 0 -7908367 64 0 -7908481 0 0 -7908518 64 0 -7908635 0 0 -7908672 64 0 -7908961 0 0 -7908986 64 0 -7909114 0 0 -7909176 64 0 -7909231 0 0 -7912019 totRewards = 42 -7912019 128 16 -7912212 0 16 -7912219 0 0 -7912264 128 0 -7912454 0 0 -7912500 128 0 -7912588 0 0 -7912638 128 0 -7912841 0 0 -7912888 128 0 -7912974 0 0 -7913041 128 0 -7913413 0 0 -7913441 128 0 -7913699 0 0 -7913724 128 0 -7913853 0 0 -7913892 128 0 -7914005 0 0 -7914050 128 0 -7914171 0 0 -7914219 128 0 -7914337 0 0 -7914389 128 0 -7914507 0 0 -7914563 128 0 -7914681 0 0 -7914727 128 0 -7914842 0 0 -7914893 128 0 -7915001 0 0 -7915035 128 0 -7915167 0 0 -7915171 128 0 -7915299 0 0 -7915335 128 0 -7915457 0 0 -7915495 128 0 -7915616 0 0 -7915664 128 0 -7915808 0 0 -7915834 128 0 -7915970 0 0 -7916001 128 0 -7916121 0 0 -7916177 128 0 -7916274 0 0 -7919172 totRewards = 43 -7919172 64 8 -7919351 0 8 -7919359 64 8 -7919372 64 0 -7920098 0 0 -7920116 64 0 -7921447 0 0 -7921461 64 0 -7921602 0 0 -7921630 64 0 -7921769 0 0 -7921793 64 0 -7921947 0 0 -7921962 64 0 -7922118 0 0 -7922136 64 0 -7922270 0 0 -7922304 64 0 -7922761 0 0 -7922779 64 0 -7922919 0 0 -7922952 64 0 -7923096 0 0 -7923111 64 0 -7923239 0 0 -7923269 64 0 -7924484 0 0 -7927363 totRewards = 44 -7927363 128 16 -7927531 0 16 -7927563 0 0 -7927599 128 0 -7927793 0 0 -7927820 128 0 -7927920 0 0 -7927987 128 0 -7928176 0 0 -7928212 128 0 -7928306 0 0 -7928369 128 0 -7928592 0 0 -7928607 128 0 -7928731 0 0 -7928766 128 0 -7929039 0 0 -7929058 128 0 -7929183 0 0 -7929227 128 0 -7929342 0 0 -7929388 128 0 -7929500 0 0 -7929543 128 0 -7929670 0 0 -7929713 128 0 -7929829 0 0 -7929884 128 0 -7929990 0 0 -7930047 128 0 -7930145 0 0 -7930196 128 0 -7930300 0 0 -7930357 128 0 -7930465 0 0 -7930507 128 0 -7930622 0 0 -7930675 128 0 -7930784 0 0 -7930844 128 0 -7930943 0 0 -7931008 128 0 -7931097 0 0 -7931161 128 0 -7931267 0 0 -7931325 128 0 -7931412 0 0 -7931479 128 0 -7931537 0 0 -7931635 128 0 -7931736 0 0 -7931802 128 0 -7931882 0 0 -7932056 128 0 -7932077 0 0 -7932323 128 0 -7932341 0 0 -7932532 128 0 -7932567 0 0 -7932648 128 0 -7932722 0 0 -7932796 128 0 -7932900 0 0 -7932956 128 0 -7933070 0 0 -7933137 128 0 -7933227 0 0 -7933318 128 0 -7933372 0 0 -7936145 totRewards = 45 -7936145 64 8 -7936331 0 8 -7936345 0 0 -7936351 64 0 -7938670 0 0 -7938678 64 0 -7938832 0 0 -7938847 64 0 -7938994 0 0 -7939027 64 0 -7939141 0 0 -7939184 64 0 -7939299 0 0 -7939351 64 0 -7939445 0 0 -7942321 totRewards = 46 -7942321 128 16 -7942500 0 16 -7942521 0 0 -7942553 128 0 -7942738 0 0 -7942769 128 0 -7942881 0 0 -7942940 128 0 -7943134 0 0 -7943169 128 0 -7943260 0 0 -7943329 128 0 -7943406 0 0 -7943421 128 0 -7943545 0 0 -7943563 128 0 -7943677 0 0 -7943703 128 0 -7944125 0 0 -7944158 128 0 -7944284 0 0 -7944305 128 0 -7944442 0 0 -7944471 128 0 -7944599 0 0 -7944643 128 0 -7944760 0 0 -7944816 128 0 -7944939 0 0 -7944984 128 0 -7945100 0 0 -7945140 128 0 -7945255 0 0 -7945301 128 0 -7945571 0 0 -7945586 128 0 -7945718 0 0 -7945760 128 0 -7945882 0 0 -7945921 128 0 -7946053 0 0 -7946086 128 0 -7946220 0 0 -7946260 128 0 -7946378 0 0 -7946433 128 0 -7946524 0 0 -7946612 128 0 -7946674 0 0 -7949564 totRewards = 47 -7949564 64 8 -7949764 64 0 -7949764 0 0 -7949783 64 0 -7950950 0 0 -7950954 64 0 -7952222 0 0 -7952250 64 0 -7952562 0 0 -7952598 64 0 -7952723 0 0 -7952758 64 0 -7952880 0 0 -7952917 64 0 -7953050 0 0 -7953078 64 0 -7953208 0 0 -7953249 64 0 -7953367 0 0 -7953409 64 0 -7953523 0 0 -7956542 totRewards = 48 -7956542 128 16 -7956715 0 16 -7956742 0 0 -7956753 128 0 -7956970 0 0 -7956992 128 0 -7957107 0 0 -7957183 128 0 -7957352 0 0 -7957394 128 0 -7957491 0 0 -7957533 128 0 -7957780 0 0 -7957798 128 0 -7957913 0 0 -7957946 128 0 -7958058 0 0 -7958090 128 0 -7958212 0 0 -7958231 128 0 -7958357 0 0 -7958393 128 0 -7958511 0 0 -7958556 128 0 -7958677 0 0 -7958711 128 0 -7958833 0 0 -7958875 128 0 -7959005 0 0 -7959060 128 0 -7959173 0 0 -7959226 128 0 -7959332 0 0 -7959383 128 0 -7959499 0 0 -7959552 128 0 -7959658 0 0 -7959717 128 0 -7959818 0 0 -7959877 128 0 -7959959 0 0 -7960024 128 0 -7960140 0 0 -7960205 128 0 -7960301 0 0 -7960365 128 0 -7960469 0 0 -7960524 128 0 -7960599 0 0 -7960686 128 0 -7960810 0 0 -7960851 128 0 -7960962 0 0 -7961027 128 0 -7961117 0 0 -7961204 128 0 -7961295 0 0 -7964706 totRewards = 49 -7964706 64 8 -7964906 64 0 -7966868 0 0 -7966880 64 0 -7967019 0 0 -7967049 64 0 -7967179 0 0 -7967224 64 0 -7967335 0 0 -7967369 64 0 -7967490 0 0 -7967521 64 0 -7967649 0 0 -7967681 64 0 -7967814 0 0 -7967829 64 0 -7968780 0 0 -7968795 64 0 -7968925 0 0 -7968947 64 0 -7969095 0 0 -7969109 64 0 -7969456 0 0 -7969478 64 0 -7969615 0 0 -7969659 64 0 -7969793 0 0 -7969820 64 0 -7969943 0 0 -7969988 64 0 -7970089 0 0 -7970199 64 0 -7970210 0 0 -7972772 totRewards = 50 -7972772 128 16 -7972924 0 16 -7972972 0 0 -7972975 128 0 -7973169 0 0 -7973199 128 0 -7973306 0 0 -7973375 128 0 -7973442 0 0 -7973458 128 0 -7973560 0 0 -7973591 128 0 -7973689 0 0 -7973740 128 0 -7973845 0 0 -7973852 128 0 -7973973 0 0 -7973988 128 0 -7974111 0 0 -7974138 128 0 -7974403 0 0 -7974429 128 0 -7974551 0 0 -7974581 128 0 -7974707 0 0 -7974748 128 0 -7974875 0 0 -7974905 128 0 -7975034 0 0 -7975077 128 0 -7975198 0 0 -7975249 128 0 -7975365 0 0 -7975419 128 0 -7975531 0 0 -7975595 128 0 -7975677 0 0 -7975763 128 0 -7975835 0 0 -7975909 128 0 -7976004 0 0 -7976053 128 0 -7976170 0 0 -7976219 128 0 -7976333 0 0 -7976381 128 0 -7976490 0 0 -7976543 128 0 -7976648 0 0 -7976714 128 0 -7976793 0 0 -7976870 128 0 -7977000 0 0 -7977036 128 0 -7977156 0 0 -7977203 128 0 -7977313 0 0 -7977377 128 0 -7977451 0 0 -7981685 totRewards = 51 -7981685 64 8 -7981885 64 0 -7982588 0 0 -7982597 64 0 -7983005 0 0 -7983015 64 0 -7983943 0 0 -7983946 64 0 -7984103 0 0 -7984115 64 0 -7984423 0 0 -7984436 64 0 -7984579 0 0 -7984609 64 0 -7984738 0 0 -7984769 64 0 -7984903 0 0 -7984939 64 0 -7985073 0 0 -7985101 64 0 -7985231 0 0 -7985272 64 0 -7985729 0 0 -7985747 64 0 -7985888 0 0 -7985924 64 0 -7986047 0 0 -7988662 totRewards = 52 -7988662 128 16 -7988827 0 16 -7988862 0 0 -7988878 128 0 -7989246 0 0 -7989346 128 0 -7991807 0 0 -7991816 128 0 -7991952 0 0 -7991975 128 0 -7992111 0 0 -7992124 128 0 -7992438 0 0 -7992463 128 0 -7992593 0 0 -7992639 128 0 -7992759 0 0 -7992802 128 0 -7992925 0 0 -7992971 128 0 -7993465 0 0 -7993499 128 0 -7993632 0 0 -7993687 128 0 -7993808 0 0 -7993866 128 0 -7993991 0 0 -7994042 128 0 -7994185 0 0 -7994196 128 0 -7994335 0 0 -7994388 128 0 -7994508 0 0 -7994574 128 0 -7995282 0 0 -7995287 128 0 -7995764 0 0 -7995792 128 0 -7995933 0 0 -7995977 128 0 -7996111 0 0 -7996148 128 0 -7996268 0 0 -7996308 128 0 -7996426 0 0 -7996479 128 0 -7996596 0 0 -7996641 128 0 -7996771 0 0 -8003049 128 0 -8003174 0 0 -8012705 128 0 -8012750 0 0 -8012815 128 0 -8013021 0 0 -8013046 128 0 -8013889 0 0 -8013917 128 0 -8014030 0 0 -8014079 128 0 -8014189 0 0 -8014207 128 0 -8014319 0 0 -8014357 128 0 -8014470 0 0 -8014499 128 0 -8014621 0 0 -8014665 128 0 -8014770 0 0 -8014835 128 0 -8014905 0 0 -8018396 totRewards = 53 -8018396 64 8 -8018426 0 8 -8018596 0 0 -8029486 64 0 -8029770 0 0 -8029782 64 0 -8031102 0 0 -8031129 64 0 -8031239 0 0 -8031275 64 0 -8031387 0 0 -8031407 64 0 -8031872 0 0 -8035335 64 0 -8035389 0 0 -8035423 64 0 -8036330 0 0 -8036340 64 0 -8036844 0 0 -8036869 64 0 -8037008 0 0 -8037055 64 0 -8037175 0 0 -8037229 64 0 -8037354 0 0 -8037464 64 0 -8037474 0 0 -8037506 64 0 -8037540 0 0 -8049713 totRewards = 54 -8049713 128 16 -8049913 128 0 -8050505 0 0 -8050526 128 0 -8051015 0 0 -8051041 128 0 -8051141 0 0 -8051158 128 0 -8051416 0 0 -8051437 128 0 -8051560 0 0 -8051581 128 0 -8051855 0 0 -8051871 128 0 -8052000 0 0 -8052022 128 0 -8052139 0 0 -8052167 128 0 -8052305 0 0 -8052329 128 0 -8052466 0 0 -8052493 128 0 -8052619 0 0 -8052656 128 0 -8052774 0 0 -8052811 128 0 -8052924 0 0 -8052965 128 0 -8053087 0 0 -8053103 128 0 -8053224 0 0 -8053249 128 0 -8053366 0 0 -8053395 128 0 -8053517 0 0 -8053547 128 0 -8053678 0 0 -8053717 128 0 -8053852 0 0 -8053873 128 0 -8054015 0 0 -8054053 128 0 -8054193 0 0 -8054221 128 0 -8054373 0 0 -8054400 128 0 -8054531 0 0 -8054567 128 0 -8054690 0 0 -8054743 128 0 -8054853 0 0 -8054910 128 0 -8055035 0 0 -8055094 128 0 -8055216 0 0 -8055413 128 0 -8055504 0 0 -8055572 128 0 -8055618 0 0 -8055718 128 0 -8055755 0 0 -8061519 totRewards = 55 -8061519 64 8 -8061719 64 0 -8061777 0 0 -8061799 64 0 -8063502 0 0 -8063517 64 0 -8064335 0 0 -8064354 64 0 -8064518 0 0 -8064529 64 0 -8065104 0 0 -8065129 64 0 -8065785 0 0 -8077601 totRewards = 56 -8077601 128 16 -8077801 128 0 -8078493 0 0 -8078510 128 0 -8078622 0 0 -8078650 128 0 -8078743 0 0 -8078774 128 0 -8078881 0 0 -8078908 128 0 -8079013 0 0 -8079045 128 0 -8079142 0 0 -8079173 128 0 -8079283 0 0 -8079310 128 0 -8079433 0 0 -8079451 128 0 -8079573 0 0 -8079611 128 0 -8079718 0 0 -8079758 128 0 -8079866 0 0 -8079905 128 0 -8080022 0 0 -8080066 128 0 -8080183 0 0 -8080227 128 0 -8080339 0 0 -8080389 128 0 -8080491 0 0 -8080553 128 0 -8080649 0 0 -8080719 128 0 -8080818 0 0 -8080946 128 0 -8080976 0 0 -8081195 128 0 -8081288 0 0 -8081325 128 0 -8081467 0 0 -8081510 128 0 -8081636 0 0 -8081676 128 0 -8081799 0 0 -8081841 128 0 -8081958 0 0 -8082018 128 0 -8082121 0 0 -8092708 totRewards = 57 -8092708 64 8 -8092908 64 0 -8095791 0 0 -8095819 64 0 -8096103 0 0 -8096113 64 0 -8096566 0 0 -8096612 64 0 -8096710 0 0 -8100081 totRewards = 58 -8100081 128 16 -8100281 128 0 -8100404 0 0 -8100420 128 0 -8100991 0 0 -8101042 128 0 -8101131 0 0 -8101144 128 0 -8101266 0 0 -8101286 128 0 -8101388 0 0 -8101425 128 0 -8101522 0 0 -8101555 128 0 -8101661 0 0 -8101688 128 0 -8101800 0 0 -8101834 128 0 -8101953 0 0 -8101980 128 0 -8102091 0 0 -8102123 128 0 -8102243 0 0 -8102279 128 0 -8102395 0 0 -8102443 128 0 -8102553 0 0 -8102605 128 0 -8102715 0 0 -8102763 128 0 -8102889 0 0 -8102933 128 0 -8103060 0 0 -8103111 128 0 -8103224 0 0 -8103278 128 0 -8103379 0 0 -8103443 128 0 -8103517 0 0 -8103594 128 0 -8103673 0 0 -8103731 128 0 -8103846 0 0 -8103892 128 0 -8103998 0 0 -8104059 128 0 -8104153 0 0 -8104204 128 0 -8104318 0 0 -8104354 128 0 -8104477 0 0 -8104525 128 0 -8104631 0 0 -8104704 128 0 -8104783 0 0 -8108593 totRewards = 59 -8108593 64 8 -8108793 64 0 -8108799 0 0 -8108811 64 0 -8111156 0 0 -8111170 64 0 -8111314 0 0 -8111343 64 0 -8111490 0 0 -8111510 64 0 -8111661 0 0 -8111690 64 0 -8111819 0 0 -8111864 64 0 -8111972 0 0 -8112035 64 0 -8112134 0 0 -8112172 64 0 -8112310 0 0 -8112334 64 0 -8112490 0 0 -8112505 64 0 -8112655 0 0 -8112709 64 0 -8112827 0 0 -8117626 totRewards = 60 -8117626 128 16 -8117820 0 16 -8117826 0 0 -8117853 128 0 -8118305 0 0 -8118321 128 0 -8118555 0 0 -8118585 128 0 -8118702 0 0 -8118719 128 0 -8118837 0 0 -8118852 128 0 -8118967 0 0 -8118993 128 0 -8119114 0 0 -8119139 128 0 -8119261 0 0 -8119287 128 0 -8119405 0 0 -8119440 128 0 -8119556 0 0 -8119597 128 0 -8119716 0 0 -8119756 128 0 -8119872 0 0 -8119918 128 0 -8120035 0 0 -8120086 128 0 -8120199 0 0 -8120246 128 0 -8120351 0 0 -8120409 128 0 -8120503 0 0 -8120552 128 0 -8120659 0 0 -8120715 128 0 -8120828 0 0 -8120875 128 0 -8120988 0 0 -8121041 128 0 -8121145 0 0 -8121214 128 0 -8121281 0 0 -8121380 128 0 -8121399 0 0 -8121411 128 0 -8121433 0 0 -8124531 totRewards = 61 -8124531 64 8 -8124716 0 8 -8124731 0 0 -8124742 64 0 -8126943 0 0 -8126968 64 0 -8127102 0 0 -8127143 64 0 -8127261 0 0 -8127308 64 0 -8127422 0 0 -8127458 64 0 -8127601 0 0 -8127621 64 0 -8127761 0 0 -8127820 64 0 -8127913 0 0 -8127977 64 0 -8128253 0 0 -8131322 totRewards = 62 -8131322 128 16 -8131479 0 16 -8131522 0 0 -8131568 128 0 -8132034 0 0 -8132047 128 0 -8132175 0 0 -8132196 128 0 -8132282 0 0 -8132322 128 0 -8132579 0 0 -8132593 128 0 -8132716 0 0 -8132740 128 0 -8133001 0 0 -8133032 128 0 -8133158 0 0 -8133175 128 0 -8133309 0 0 -8133344 128 0 -8133467 0 0 -8133512 128 0 -8133626 0 0 -8133676 128 0 -8133793 0 0 -8133841 128 0 -8133966 0 0 -8134005 128 0 -8134131 0 0 -8134185 128 0 -8134292 0 0 -8134349 128 0 -8134446 0 0 -8134504 128 0 -8134604 0 0 -8134655 128 0 -8134760 0 0 -8134813 128 0 -8134926 0 0 -8134974 128 0 -8135090 0 0 -8135148 128 0 -8135258 0 0 -8135337 128 0 -8135361 0 0 -8138305 totRewards = 63 -8138305 64 8 -8138458 0 8 -8138475 64 8 -8138505 64 0 -8139198 0 0 -8139210 64 0 -8140671 0 0 -8140689 64 0 -8140842 0 0 -8140861 64 0 -8141008 0 0 -8141038 64 0 -8141176 0 0 -8141220 64 0 -8141349 0 0 -8141402 64 0 -8141509 0 0 -8148584 totRewards = 64 -8148584 128 16 -8148780 0 16 -8148784 0 0 -8148912 128 0 -8149943 0 0 -8149947 128 0 -8150647 0 0 -8150658 128 0 -8151120 0 0 -8151142 128 0 -8151270 0 0 -8151293 128 0 -8151431 0 0 -8151442 128 0 -8151581 0 0 -8151625 128 0 -8151743 0 0 -8151794 128 0 -8151916 0 0 -8151959 128 0 -8152075 0 0 -8152120 128 0 -8152232 0 0 -8152282 128 0 -8152391 0 0 -8152447 128 0 -8152554 0 0 -8152612 128 0 -8152718 0 0 -8152774 128 0 -8152869 0 0 -8152937 128 0 -8153042 0 0 -8153086 128 0 -8153195 0 0 -8153247 128 0 -8153363 0 0 -8153412 128 0 -8153521 0 0 -8153569 128 0 -8153674 0 0 -8153725 128 0 -8153825 0 0 -8157369 128 0 -8157382 0 0 -8169714 totRewards = 65 -8169714 64 8 -8169914 64 0 -8170381 0 0 -8170395 64 0 -8170508 0 0 -8170520 64 0 -8170632 0 0 -8170651 64 0 -8170757 0 0 -8170775 64 0 -8171163 0 0 -8171179 64 0 -8172073 0 0 -8172083 64 0 -8172243 0 0 -8172268 64 0 -8172577 0 0 -8172610 64 0 -8172735 0 0 -8172785 64 0 -8172902 0 0 -8172956 64 0 -8173064 0 0 -8173112 64 0 -8173241 0 0 -8173288 64 0 -8173403 0 0 -8177958 totRewards = 66 -8177958 128 16 -8178158 128 0 -8178197 0 0 -8178221 128 0 -8178553 0 0 -8178574 128 0 -8178686 0 0 -8178731 128 0 -8178793 0 0 -8178838 128 0 -8178950 0 0 -8178969 128 0 -8179080 0 0 -8179096 128 0 -8179207 0 0 -8179235 128 0 -8179342 0 0 -8179366 128 0 -8179481 0 0 -8179504 128 0 -8179624 0 0 -8179649 128 0 -8179771 0 0 -8179811 128 0 -8179930 0 0 -8179965 128 0 -8180087 0 0 -8180128 128 0 -8180239 0 0 -8180287 128 0 -8180403 0 0 -8180451 128 0 -8180556 0 0 -8180612 128 0 -8180705 0 0 -8180761 128 0 -8180863 0 0 -8180909 128 0 -8181022 0 0 -8181084 128 0 -8181173 0 0 -8181238 128 0 -8181342 0 0 -8181391 128 0 -8181495 0 0 -8181555 128 0 -8181656 0 0 -8181729 128 0 -8181782 0 0 -8184908 totRewards = 67 -8184908 64 8 -8185108 64 0 -8185118 0 0 -8185125 64 0 -8186815 0 0 -8186824 64 0 -8187303 0 0 -8187325 64 0 -8187458 0 0 -8187486 64 0 -8187625 0 0 -8187645 64 0 -8187778 0 0 -8187817 64 0 -8188090 0 0 -8188123 64 0 -8188246 0 0 -8188316 64 0 -8188387 0 0 -8191424 totRewards = 68 -8191424 128 16 -8191610 0 16 -8191624 0 0 -8191647 128 0 -8191866 0 0 -8191900 128 0 -8191987 0 0 -8192032 128 0 -8192246 0 0 -8192281 128 0 -8192384 0 0 -8192463 128 0 -8192504 0 0 -8192538 128 0 -8192655 0 0 -8192673 128 0 -8192795 0 0 -8192819 128 0 -8192935 0 0 -8192971 128 0 -8193089 0 0 -8193114 128 0 -8193226 0 0 -8193259 128 0 -8193377 0 0 -8193418 128 0 -8193532 0 0 -8193573 128 0 -8193687 0 0 -8193738 128 0 -8193850 0 0 -8193914 128 0 -8194019 0 0 -8194078 128 0 -8194175 0 0 -8194239 128 0 -8194321 0 0 -8194378 128 0 -8194468 0 0 -8194533 128 0 -8194630 0 0 -8194685 128 0 -8194786 0 0 -8194835 128 0 -8194940 0 0 -8195005 128 0 -8195104 0 0 -8195162 128 0 -8195263 0 0 -8195324 128 0 -8195424 0 0 -8195480 128 0 -8195577 0 0 -8195643 128 0 -8195723 0 0 -8195795 128 0 -8195897 0 0 -8195945 128 0 -8196058 0 0 -8196114 128 0 -8196227 0 0 -8196350 128 0 -8196369 0 0 -8199703 totRewards = 69 -8199703 64 8 -8199885 0 8 -8199903 0 0 -8199913 64 0 -8200647 0 0 -8200655 64 0 -8201347 0 0 -8201359 64 0 -8201635 0 0 -8201662 64 0 -8202120 0 0 -8202138 64 0 -8202274 0 0 -8202306 64 0 -8202442 0 0 -8202473 64 0 -8202596 0 0 -8202642 64 0 -8202750 0 0 -8202800 64 0 -8202908 0 0 -8202947 64 0 -8203076 0 0 -8203126 64 0 -8203231 0 0 -8206243 totRewards = 70 -8206243 128 16 -8206443 128 0 -8206484 0 0 -8206528 128 0 -8206896 0 0 -8206917 128 0 -8207037 0 0 -8207066 128 0 -8207170 0 0 -8207193 128 0 -8207325 0 0 -8207343 128 0 -8207470 0 0 -8207506 128 0 -8207622 0 0 -8207660 128 0 -8207791 0 0 -8207822 128 0 -8207933 0 0 -8207984 128 0 -8208088 0 0 -8208159 128 0 -8208267 0 0 -8208314 128 0 -8208423 0 0 -8208483 128 0 -8208525 0 0 -8208546 128 0 -8208576 0 0 -8208645 128 0 -8208729 0 0 -8208789 128 0 -8208875 0 0 -8208935 128 0 -8209035 0 0 -8209090 128 0 -8209190 0 0 -8209250 128 0 -8209354 0 0 -8209413 128 0 -8209516 0 0 -8209588 128 0 -8209656 0 0 -8209756 128 0 -8209828 0 0 -8213075 totRewards = 71 -8213075 64 8 -8213257 0 8 -8213264 64 8 -8213275 64 0 -8213998 0 0 -8214014 64 0 -8214422 0 0 -8214434 64 0 -8214718 0 0 -8214728 64 0 -8215513 0 0 -8215534 64 0 -8215678 0 0 -8215705 64 0 -8216025 0 0 -8216049 64 0 -8216185 0 0 -8216226 64 0 -8216343 0 0 -8216389 64 0 -8216501 0 0 -8216551 64 0 -8216650 0 0 -8219650 totRewards = 72 -8219650 128 16 -8219802 0 16 -8219850 0 0 -8219880 128 0 -8220487 0 0 -8220503 128 0 -8220604 0 0 -8220653 128 0 -8220755 0 0 -8220765 128 0 -8220898 0 0 -8220913 128 0 -8221031 0 0 -8221071 128 0 -8221341 0 0 -8221378 128 0 -8221500 0 0 -8221542 128 0 -8221660 0 0 -8221708 128 0 -8221826 0 0 -8221879 128 0 -8221994 0 0 -8222048 128 0 -8222163 0 0 -8222213 128 0 -8222331 0 0 -8222383 128 0 -8222488 0 0 -8222558 128 0 -8222645 0 0 -8222701 128 0 -8222803 0 0 -8222867 128 0 -8222969 0 0 -8223030 128 0 -8223127 0 0 -8223184 128 0 -8223287 0 0 -8223341 128 0 -8223445 0 0 -8223499 128 0 -8223600 0 0 -8223678 128 0 -8223724 0 0 -8223807 128 0 -8223886 0 0 -8223978 128 0 -8224064 0 0 -8224122 128 0 -8224238 0 0 -8224295 128 0 -8224393 0 0 -8224469 128 0 -8224573 0 0 -8224646 128 0 -8224720 0 0 -8227852 totRewards = 73 -8227852 64 8 -8228014 0 8 -8228041 64 8 -8228052 64 0 -8229493 0 0 -8229499 64 0 -8229639 0 0 -8229644 64 0 -8230119 0 0 -8230133 64 0 -8230285 0 0 -8230301 64 0 -8230449 0 0 -8230472 64 0 -8230614 0 0 -8230640 64 0 -8230776 0 0 -8230826 64 0 -8230944 0 0 -8231006 64 0 -8231120 0 0 -8231159 64 0 -8231283 0 0 -8231342 64 0 -8231437 0 0 -8236228 totRewards = 74 -8236228 128 16 -8236363 0 16 -8236422 128 16 -8236428 128 0 -8237434 0 0 -8237455 128 0 -8237565 0 0 -8237590 128 0 -8237710 0 0 -8237720 128 0 -8237851 0 0 -8237873 128 0 -8237996 0 0 -8238028 128 0 -8238142 0 0 -8238173 128 0 -8238296 0 0 -8238317 128 0 -8238453 0 0 -8238479 128 0 -8238615 0 0 -8238640 128 0 -8238767 0 0 -8238803 128 0 -8238925 0 0 -8238966 128 0 -8239092 0 0 -8239131 128 0 -8239255 0 0 -8239300 128 0 -8239414 0 0 -8239466 128 0 -8239578 0 0 -8239630 128 0 -8239736 0 0 -8239788 128 0 -8239904 0 0 -8239964 128 0 -8240057 0 0 -8240098 128 0 -8240191 0 0 -8240262 128 0 -8240351 0 0 -8240412 128 0 -8240522 0 0 -8240586 128 0 -8240686 0 0 -8250887 totRewards = 75 -8250887 64 8 -8251087 64 0 -8251130 0 0 -8251166 64 0 -8251225 0 0 -8251239 64 0 -8253956 0 0 -8253968 64 0 -8254283 0 0 -8254307 64 0 -8254440 0 0 -8254469 64 0 -8254599 0 0 -8254639 64 0 -8254771 0 0 -8254809 64 0 -8254960 0 0 -8254970 64 0 -8255117 0 0 -8255153 64 0 -8255261 0 0 -8255323 64 0 -8255449 0 0 -8255459 64 0 -8255600 0 0 -8255655 64 0 -8255745 0 0 -8279322 totRewards = 76 -8279322 128 16 -8279522 128 0 -8279579 0 0 -8279617 128 0 -8279830 0 0 -8279841 128 0 -8279959 0 0 -8279983 128 0 -8280196 0 0 -8280230 128 0 -8280339 0 0 -8280349 128 0 -8280588 0 0 -8280618 128 0 -8280738 0 0 -8280751 128 0 -8281031 0 0 -8281076 128 0 -8281187 0 0 -8281232 128 0 -8281357 0 0 -8281390 128 0 -8281518 0 0 -8281555 128 0 -8281679 0 0 -8281739 128 0 -8281854 0 0 -8281917 128 0 -8282025 0 0 -8282088 128 0 -8282196 0 0 -8282283 128 0 -8282378 0 0 -8282440 128 0 -8282554 0 0 -8282599 128 0 -8282719 0 0 -8282763 128 0 -8282899 0 0 -8282967 128 0 -8283097 0 0 -8283149 128 0 -8283279 0 0 -8283363 128 0 -8283464 0 0 -8283516 128 0 -8283666 0 0 -8283703 128 0 -8283824 0 0 -8283886 128 0 -8283996 0 0 -8284062 128 0 -8284182 0 0 -8284252 128 0 -8284365 0 0 -8284448 128 0 -8284541 0 0 -8284598 128 0 -8284719 0 0 -8286738 128 0 -8286867 0 0 -8290340 totRewards = 77 -8290339 64 8 -8290540 64 0 -8290590 0 0 -8290601 64 0 -8291851 0 0 -8291862 64 0 -8292282 0 0 -8292292 64 0 -8292432 0 0 -8292444 64 0 -8292585 0 0 -8292603 64 0 -8292743 0 0 -8292767 64 0 -8292903 0 0 -8292929 64 0 -8293055 0 0 -8293084 64 0 -8293206 0 0 -8293239 64 0 -8293362 0 0 -8293378 64 0 -8293522 0 0 -8293538 64 0 -8293676 0 0 -8293703 64 0 -8293837 0 0 -8293860 64 0 -8293983 0 0 -8294017 64 0 -8294140 0 0 -8294168 64 0 -8294299 0 0 -8294324 64 0 -8294438 0 0 -8294463 64 0 -8294577 0 0 -8294624 64 0 -8294933 0 0 -8294971 64 0 -8295097 0 0 -8295149 64 0 -8295259 0 0 -8295316 64 0 -8295411 0 0 -8312427 totRewards = 78 -8312427 128 16 -8312443 0 16 -8312507 128 16 -8312627 128 0 -8312634 0 0 -8312721 128 0 -8312796 0 0 -8312819 128 0 -8312837 0 0 -8312909 128 0 -8313026 0 0 -8313041 128 0 -8313944 0 0 -8313963 128 0 -8314082 0 0 -8314103 128 0 -8314226 0 0 -8314245 128 0 -8314359 0 0 -8314390 128 0 -8314507 0 0 -8314538 128 0 -8314658 0 0 -8314689 128 0 -8314800 0 0 -8314839 128 0 -8314965 0 0 -8315010 128 0 -8315129 0 0 -8315179 128 0 -8315284 0 0 -8315342 128 0 -8315446 0 0 -8315500 128 0 -8315605 0 0 -8315662 128 0 -8315773 0 0 -8315790 128 0 -8316217 0 0 -8316234 128 0 -8316371 0 0 -8316406 128 0 -8316539 0 0 -8316561 128 0 -8316712 0 0 -8316732 128 0 -8316876 0 0 -8316902 128 0 -8317031 0 0 -8317071 128 0 -8317194 0 0 -8317254 128 0 -8317355 0 0 -8324400 totRewards = 79 -8324400 64 8 -8324595 0 8 -8324600 0 0 -8324630 64 0 -8325107 0 0 -8325130 64 0 -8328538 0 0 -8328562 64 0 -8328718 0 0 -8328727 64 0 -8330048 0 0 -8330059 64 0 -8330437 0 0 -8330462 64 0 -8330627 0 0 -8330639 64 0 -8330802 0 0 -8330829 64 0 -8330948 0 0 -8331033 64 0 -8331042 0 0 -8336747 totRewards = 80 -8336747 128 16 -8336947 128 0 -8337131 0 0 -8337170 128 0 -8337664 0 0 -8337671 128 0 -8337778 0 0 -8337808 128 0 -8337916 0 0 -8337946 128 0 -8338049 0 0 -8338083 128 0 -8338180 0 0 -8338220 128 0 -8338330 0 0 -8338363 128 0 -8338466 0 0 -8338506 128 0 -8338617 0 0 -8338661 128 0 -8338767 0 0 -8338812 128 0 -8338932 0 0 -8338983 128 0 -8339098 0 0 -8339157 128 0 -8339270 0 0 -8339332 128 0 -8339452 0 0 -8339515 128 0 -8339635 0 0 -8339686 128 0 -8339806 0 0 -8339853 128 0 -8339969 0 0 -8339993 128 0 -8340265 0 0 -8340281 128 0 -8340408 0 0 -8340456 128 0 -8340569 0 0 -8340613 128 0 -8340723 0 0 -8340772 128 0 -8340884 0 0 -8340936 128 0 -8341039 0 0 -8341088 128 0 -8341198 0 0 -8341257 128 0 -8341365 0 0 -8341425 128 0 -8341533 0 0 -8341600 128 0 -8341701 0 0 -8341774 128 0 -8341866 0 0 -8341940 128 0 -8342058 0 0 -8342106 128 0 -8342187 0 0 -8342856 128 0 -8342930 0 0 -8343078 128 0 -8345964 0 0 -8350233 totRewards = 81 -8350233 64 8 -8350422 0 8 -8350428 64 8 -8350433 64 0 -8352812 0 0 -8352825 64 0 -8352980 0 0 -8352999 64 0 -8353143 0 0 -8353172 64 0 -8353304 0 0 -8353343 64 0 -8353469 0 0 -8353500 64 0 -8353628 0 0 -8353650 64 0 -8353797 0 0 -8353820 64 0 -8353968 0 0 -8353982 64 0 -8354299 0 0 -8354323 64 0 -8354453 0 0 -8354512 64 0 -8354600 0 0 -8357863 totRewards = 82 -8357863 128 16 -8358029 0 16 -8358063 0 0 -8358127 128 0 -8358328 0 0 -8358343 128 0 -8358444 0 0 -8358485 128 0 -8358833 0 0 -8358894 128 0 -8359134 0 0 -8359143 128 0 -8359253 0 0 -8359289 128 0 -8359394 0 0 -8359423 128 0 -8359551 0 0 -8359560 128 0 -8359686 0 0 -8359723 128 0 -8359837 0 0 -8359875 128 0 -8360005 0 0 -8360039 128 0 -8360163 0 0 -8360213 128 0 -8360331 0 0 -8360382 128 0 -8360496 0 0 -8360561 128 0 -8360673 0 0 -8360742 128 0 -8360851 0 0 -8360922 128 0 -8361023 0 0 -8361095 128 0 -8361171 0 0 -8361409 128 0 -8361510 0 0 -8361580 128 0 -8361657 0 0 -8361731 128 0 -8361838 0 0 -8361896 128 0 -8361991 0 0 -8362067 128 0 -8362161 0 0 -8362249 128 0 -8362257 0 0 -8366125 totRewards = 83 -8366125 64 8 -8366325 64 0 -8366348 0 0 -8366371 64 0 -8368634 0 0 -8368647 64 0 -8368798 0 0 -8368820 64 0 -8368956 0 0 -8368986 64 0 -8369110 0 0 -8369141 64 0 -8369276 0 0 -8369299 64 0 -8369430 0 0 -8369476 64 0 -8369597 0 0 -8369625 64 0 -8369761 0 0 -8369781 64 0 -8369926 0 0 -8369948 64 0 -8370611 0 0 -8370623 64 0 -8370769 0 0 -8370801 64 0 -8370942 0 0 -8370980 64 0 -8371113 0 0 -8371163 64 0 -8371250 0 0 -8374448 totRewards = 84 -8374448 128 16 -8374648 128 0 -8374649 0 0 -8374696 128 0 -8374925 0 0 -8374948 128 0 -8375178 0 0 -8375212 128 0 -8375308 0 0 -8375368 128 0 -8375606 0 0 -8375614 128 0 -8375745 0 0 -8375760 128 0 -8376177 0 0 -8376209 128 0 -8376313 0 0 -8376353 128 0 -8376471 0 0 -8376490 128 0 -8376612 0 0 -8376652 128 0 -8376765 0 0 -8376826 128 0 -8376936 0 0 -8376988 128 0 -8377106 0 0 -8377153 128 0 -8377274 0 0 -8377331 128 0 -8377445 0 0 -8377502 128 0 -8377607 0 0 -8377674 128 0 -8377766 0 0 -8377824 128 0 -8377931 0 0 -8377985 128 0 -8378104 0 0 -8378153 128 0 -8378267 0 0 -8378331 128 0 -8378428 0 0 -8385289 totRewards = 85 -8385289 64 8 -8385489 64 0 -8385501 0 0 -8385514 64 0 -8387814 0 0 -8387836 64 0 -8387980 0 0 -8388009 64 0 -8388139 0 0 -8388180 64 0 -8388288 0 0 -8388345 64 0 -8388442 0 0 -8388514 64 0 -8388582 0 0 -8392063 totRewards = 86 -8392063 128 16 -8392225 0 16 -8392263 0 0 -8392332 128 0 -8392799 0 0 -8392820 128 0 -8392933 0 0 -8393022 128 0 -8393049 0 0 -8393081 128 0 -8393354 0 0 -8393367 128 0 -8393481 0 0 -8393504 128 0 -8393933 0 0 -8393964 128 0 -8394089 0 0 -8394118 128 0 -8394247 0 0 -8394274 128 0 -8394404 0 0 -8394449 128 0 -8394571 0 0 -8394614 128 0 -8394738 0 0 -8394776 128 0 -8394899 0 0 -8394948 128 0 -8395062 0 0 -8395119 128 0 -8395222 0 0 -8395272 128 0 -8395384 0 0 -8395450 128 0 -8395540 0 0 -8395598 128 0 -8395707 0 0 -8395756 128 0 -8395869 0 0 -8395923 128 0 -8396037 0 0 -8396098 128 0 -8396204 0 0 -8396274 128 0 -8396357 0 0 -8400269 totRewards = 87 -8400269 64 8 -8400469 64 0 -8400477 0 0 -8400489 64 0 - - description: state script log run 3 - task_epochs: 6, -] -2021-01-28 16:20:07,165 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 16:20:10,873 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 16:20:10,876 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 16:20:10,876 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 16:20:10,877 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 16:20:10,878 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 16:20:10,879 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 16:20:10,880 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 16:20:10,880 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 16:20:13,057 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 16:20:13,057 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 16:20:13,064 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 16:20:13,065 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 16:20:13,068 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 16:20:13,096 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 16:20:13,099 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 16:20:13,100 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 16:20:13,101 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 16:20:16,742 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 16:20:16,744 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 16:21:49,050 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = Jaq -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-01-28 16:21:49,387 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 16:21:49,392 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 16:21:49,393 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 16:21:49,393 rec_to_binaries.core: INFO Extracting time... -2021-01-28 16:23:00,090 rec_to_binaries.core: INFO Making position directory... -2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190826 -2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 16:23:00,301 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = Jaq -date = 20190826 -nwb_metadata = Experiment Info: -Experimenter: Abhilasha Joshi -Description: Theta and gait -Session Id: jaq_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', '64c-3s6mm6cm-20um-40um-sl', '64c-4s6mm6cm-20um-40um-dl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/nwb/Jaq20190826.nwb - -2021-01-28 16:23:01,015 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_04_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_06_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_07_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_02_lineartrack.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_05_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_03_sleep.rec'), PosixPath('/stelmo/loren/Jaq/raw/20190826/20190826_Jaq_01_sleep.rec')] contain inconsistent xml headers! - , [] -2021-01-28 16:23:04,395 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 16:23:04,986 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 16:23:04,986 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 16:23:04,986 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 16:23:04,987 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 16:23:04,988 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 16:23:04,989 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 16:23:04,990 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 16:23:04,991 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 16:23:04,992 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140306904227088 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -2001580 totRewards = 1 -2001580 64 200 -2001618 0 136 -2001730 64 136 -2001776 0 136 -2001780 0 128 -2003264 64 128 -2003377 0 128 -2003446 64 128 -2003519 0 128 -2003570 64 128 -2003646 0 128 -2003696 64 128 -2003785 0 128 -2003826 64 128 -2004082 0 128 -2004105 64 128 -2004232 0 128 -2004274 64 128 -2004393 0 128 -2004427 64 128 -2004551 0 128 -2004583 64 128 -2004720 0 128 -2004752 64 128 -2004888 0 128 -2004930 64 128 -2005077 0 128 -2005116 64 128 -2005252 0 128 -2005284 64 128 -2005395 0 128 -2005465 64 128 -2005540 0 128 -2005603 64 128 -2005710 0 128 -2005749 64 128 -2005861 0 128 -2005934 64 128 -2006019 0 128 -2006065 64 128 -2006182 0 128 -2006217 64 128 -2006329 0 128 -2006344 64 128 -2006477 0 128 -2006494 64 128 -2006626 0 128 -2006639 64 128 -2006774 0 128 -2006801 64 128 -2006925 0 128 -2006975 64 128 -2007855 0 128 -2007878 64 128 -2008024 0 128 -2008063 64 128 -2008169 0 128 -2008218 64 128 -2008346 0 128 -2008414 64 128 -2008525 0 128 -2008545 64 128 -2008694 0 128 -2008728 64 128 -2008871 0 128 -2008882 64 128 -2010662 0 128 -2010678 64 128 -2011803 0 128 -2011833 64 128 -2011970 0 128 -2012060 64 128 -2012163 0 128 -2012186 64 128 -2012343 0 128 -2012375 64 128 -2012524 0 128 -2012561 64 128 -2012567 0 128 -2012582 64 128 -2012666 0 128 -2012692 64 128 -2012709 0 128 -2012758 64 128 -2012843 0 128 -2012878 64 128 -2012913 0 128 -2012973 64 128 -2013026 0 128 -2013031 64 128 -2013034 0 128 -2013052 64 128 -2013239 0 128 -2034560 totRewards = 2 -2034560 128 144 -2034760 128 128 -2035091 0 0 -2035175 128 0 -2035224 0 0 -2035241 128 0 -2035642 0 0 -2035669 128 0 -2035934 0 0 -2035976 128 0 -2036086 0 0 -2036140 128 0 -2036249 0 0 -2036307 128 0 -2036411 0 0 -2036492 128 0 -2036582 0 0 -2036660 128 0 -2036748 0 0 -2036816 128 0 -2036899 0 0 -2036961 128 0 -2037070 0 0 -2037137 128 0 -2037244 0 0 -2037376 128 0 -2037423 0 0 -2037507 128 0 -2037610 0 0 -2037670 128 0 -2037770 0 0 -2037803 128 0 -2037924 0 0 -2037933 128 0 -2038187 0 0 -2038197 128 0 -2038342 0 0 -2038355 128 0 -2038819 0 0 -2038855 128 0 -2039188 0 0 -2039253 128 0 -2039357 0 0 -2039426 128 0 -2039462 0 0 -2039490 128 0 -2039548 0 0 -2039667 128 0 -2039739 0 0 -2039810 128 0 -2039928 0 0 -2039981 128 0 -2040117 0 0 -2040208 128 0 -2040298 0 0 -2040373 128 0 -2040478 0 0 -2040515 128 0 -2040657 0 0 -2040697 128 0 -2040788 0 0 -2040829 128 0 -2040851 0 0 -2040860 128 0 -2041365 0 0 -2041423 128 0 -2041584 0 0 -2041699 128 0 -2041769 0 0 -2041844 128 0 -2041969 0 0 -2042090 128 0 -2042173 0 0 -2042311 128 0 -2042343 0 0 -2063830 128 0 -2063874 0 0 -2066005 128 0 -2067249 0 0 -2067324 128 0 -2067441 0 0 -2074645 totRewards = 3 -2074645 64 8 -2074658 0 8 -2074845 0 0 -2074976 64 0 -2075045 0 0 -2075058 64 0 -2075512 0 0 -2075546 64 0 -2075789 0 0 -2075823 64 0 -2076095 0 0 -2076119 64 0 -2076245 0 0 -2076272 64 0 -2076412 0 0 -2076445 64 0 -2076571 0 0 -2076603 64 0 -2076738 0 0 -2076767 64 0 -2076901 0 0 -2076934 64 0 -2077052 0 0 -2077104 64 0 -2077209 0 0 -2077249 64 0 -2077518 0 0 -2077538 64 0 -2077985 0 0 -2077999 64 0 -2078158 0 0 -2078172 64 0 -2078842 0 0 -2078882 64 0 -2079003 0 0 -2079062 64 0 -2079188 0 0 -2079210 64 0 -2079323 0 0 -2079338 64 0 -2079360 0 0 -2079427 64 0 -2079489 0 0 -2079575 64 0 -2079656 0 0 -2079680 64 0 -2081117 0 0 -2081135 64 0 -2081295 0 0 -2081324 64 0 -2081462 0 0 -2081533 64 0 -2081625 0 0 -2096193 totRewards = 4 -2096193 128 16 -2096393 128 0 -2096867 0 0 -2096907 128 0 -2097582 0 0 -2097600 128 0 -2097712 0 0 -2097733 128 0 -2097848 0 0 -2097876 128 0 -2097988 0 0 -2098020 128 0 -2098129 0 0 -2098160 128 0 -2098287 0 0 -2098319 128 0 -2098435 0 0 -2098479 128 0 -2098589 0 0 -2098635 128 0 -2098748 0 0 -2098802 128 0 -2098919 0 0 -2098997 128 0 -2099135 0 0 -2099189 128 0 -2099304 0 0 -2099356 128 0 -2099465 0 0 -2099508 128 0 -2099929 0 0 -2099945 128 0 -2100094 0 0 -2100103 128 0 -2100267 0 0 -2100306 128 0 -2100435 0 0 -2100498 128 0 -2100541 0 0 -2100563 128 0 -2100631 0 0 -2100699 128 0 -2100805 0 0 -2100866 128 0 -2100997 0 0 -2101127 128 0 -2101177 0 0 -2101305 128 0 -2101366 0 0 -2101520 128 0 -2101559 0 0 -2101741 128 0 -2101765 0 0 -2102142 128 0 -2102175 0 0 -2102328 128 0 -2102369 0 0 -2102507 128 0 -2102562 0 0 -2102681 128 0 -2102720 0 0 -2105862 128 0 -2105868 0 0 -2114611 totRewards = 5 -2114611 64 8 -2114766 0 8 -2114811 0 0 -2114881 64 0 -2115110 0 0 -2115120 64 0 -2115389 0 0 -2115397 64 0 -2116252 0 0 -2116283 64 0 -2116436 0 0 -2116450 64 0 -2116584 0 0 -2116611 64 0 -2116741 0 0 -2116780 64 0 -2116895 0 0 -2116944 64 0 -2117053 0 0 -2117100 64 0 -2117213 0 0 -2117240 64 0 -2117365 0 0 -2117398 64 0 -2117526 0 0 -2117554 64 0 -2117852 0 0 -2117876 64 0 -2118025 0 0 -2118034 64 0 -2118175 0 0 -2118220 64 0 -2118353 0 0 -2118363 64 0 -2118479 0 0 -2118501 64 0 -2118516 0 0 -2118552 64 0 -2118559 0 0 -2118580 64 0 -2118637 0 0 -2118740 64 0 -2118800 0 0 -2118878 64 0 -2120024 0 0 -2120051 64 0 -2120186 0 0 -2120233 64 0 -2120352 0 0 -2140288 totRewards = 6 -2140288 128 16 -2140488 128 0 -2140841 0 0 -2140904 128 0 -2141213 0 0 -2141279 128 0 -2141616 0 0 -2141629 128 0 -2141863 0 0 -2141879 128 0 -2142145 0 0 -2142170 128 0 -2142292 0 0 -2142316 128 0 -2142435 0 0 -2142476 128 0 -2142582 0 0 -2142631 128 0 -2142739 0 0 -2142785 128 0 -2142890 0 0 -2142943 128 0 -2143053 0 0 -2143111 128 0 -2143226 0 0 -2143277 128 0 -2143386 0 0 -2143425 128 0 -2143539 0 0 -2143553 128 0 -2143986 0 0 -2144010 128 0 -2144133 0 0 -2144162 128 0 -2144308 0 0 -2144348 128 0 -2144481 0 0 -2144538 128 0 -2144654 0 0 -2144710 128 0 -2144817 0 0 -2144882 128 0 -2144986 0 0 -2145048 128 0 -2145173 0 0 -2145185 128 0 -2145200 0 0 -2145208 128 0 -2145295 0 0 -2145404 128 0 -2145461 0 0 -2145557 128 0 -2145621 0 0 -2145669 128 0 -2145675 0 0 -2145682 128 0 -2145958 0 0 -2145990 128 0 -2146113 0 0 -2146144 128 0 -2146279 0 0 -2146329 128 0 -2146438 0 0 -2146560 128 0 -2146611 0 0 -2146696 128 0 -2146710 0 0 -2159529 totRewards = 7 -2159529 64 8 -2159729 64 0 -2159738 0 0 -2159763 64 0 -2160960 0 0 -2160973 64 0 -2161110 0 0 -2161128 64 0 -2161268 0 0 -2161289 64 0 -2161432 0 0 -2161459 64 0 -2161608 0 0 -2161632 64 0 -2161949 0 0 -2161985 64 0 -2162113 0 0 -2162143 64 0 -2162275 0 0 -2162296 64 0 -2162310 0 0 -2162319 64 0 -2162403 0 0 -2162421 64 0 -2162452 0 0 -2162459 64 0 -2162559 0 0 -2162568 64 0 -2162900 0 0 -2162928 64 0 -2163757 0 0 -2163783 64 0 -2163917 0 0 -2163968 64 0 -2164082 0 0 -2166458 64 0 -2166531 0 0 -2166648 64 0 -2166917 0 0 -2166935 64 0 -2167090 0 0 -2167109 64 0 -2167732 0 0 -2167762 64 0 -2167908 0 0 -2167929 64 0 -2168084 0 0 -2168099 64 0 -2168429 0 0 -2168490 64 0 -2168588 0 0 -2176893 totRewards = 8 -2176893 128 16 -2177093 128 0 -2177326 0 0 -2177401 128 0 -2177653 0 0 -2177660 128 0 -2177663 0 0 -2177733 128 0 -2178313 0 0 -2178319 128 0 -2179180 0 0 -2179188 128 0 -2179315 0 0 -2179351 128 0 -2179476 0 0 -2179523 128 0 -2179642 0 0 -2179688 128 0 -2179810 0 0 -2179872 128 0 -2179978 0 0 -2180036 128 0 -2180144 0 0 -2180182 128 0 -2180882 0 0 -2180915 128 0 -2181044 0 0 -2181173 128 0 -2181203 0 0 -2181292 128 0 -2181428 0 0 -2181534 128 0 -2181591 0 0 -2181727 128 0 -2181782 0 0 -2182366 128 0 -2182374 0 0 -2184109 128 0 -2184245 0 0 -2184296 128 0 -2184396 0 0 -2184529 128 0 -2188631 0 0 -2190187 128 0 -2191079 0 0 -2191268 128 0 -2192641 0 0 -2192662 128 0 -2193070 0 0 -2193103 128 0 -2193223 0 0 -2193290 128 0 -2193362 0 0 -2193437 128 0 -2193510 0 0 -2193613 128 0 -2193703 0 0 -2202716 totRewards = 9 -2202716 64 8 -2202773 0 8 -2202836 64 8 -2202916 64 0 -2204488 0 0 -2204502 64 0 -2204642 0 0 -2204664 64 0 -2204811 0 0 -2204825 64 0 -2204970 0 0 -2204987 64 0 -2205126 0 0 -2205156 64 0 -2205282 0 0 -2205322 64 0 -2205445 0 0 -2205473 64 0 -2205730 0 0 -2205744 64 0 -2205890 0 0 -2205893 64 0 -2206940 0 0 -2206946 64 0 -2207096 0 0 -2207119 64 0 -2207266 0 0 -2207280 64 0 -2207972 0 0 -2207997 64 0 -2208143 0 0 -2208171 64 0 -2209358 0 0 -2209415 64 0 -2209513 0 0 -2216514 64 0 -2216790 0 0 -2216816 64 0 -2216945 0 0 -2216964 64 0 -2217093 0 0 -2217122 64 0 -2217254 0 0 -2217269 64 0 -2217569 0 0 -2217585 64 0 -2217733 0 0 -2217752 64 0 -2218051 0 0 -2222344 totRewards = 10 -2222344 128 16 -2222461 0 16 -2222544 0 0 -2222557 128 0 -2222585 0 0 -2222649 128 0 -2222663 0 0 -2222948 128 0 -2223215 0 0 -2223240 128 0 -2223844 0 0 -2223856 128 0 -2223972 0 0 -2223978 128 0 -2224099 0 0 -2224123 128 0 -2224239 0 0 -2224270 128 0 -2224377 0 0 -2224408 128 0 -2224526 0 0 -2224571 128 0 -2224679 0 0 -2224728 128 0 -2224835 0 0 -2224896 128 0 -2225005 0 0 -2225061 128 0 -2225173 0 0 -2225232 128 0 -2225342 0 0 -2225399 128 0 -2225511 0 0 -2225547 128 0 -2225798 0 0 -2225808 128 0 -2226268 0 0 -2226295 128 0 -2226441 0 0 -2226471 128 0 -2226612 0 0 -2226663 128 0 -2226797 0 0 -2226836 128 0 -2226974 0 0 -2227280 128 0 -2227394 0 0 -2227522 128 0 -2227572 0 0 -2240414 128 0 -2240991 0 0 -2241009 128 0 -2241417 0 0 -2241455 128 0 -2241562 0 0 -2241608 128 0 -2241717 0 0 -2241773 128 0 -2241885 0 0 -2241935 128 0 -2242056 0 0 -2242116 128 0 -2242216 0 0 -2242288 128 0 -2242395 0 0 -2242461 128 0 -2242582 0 0 -2242633 128 0 -2242764 0 0 -2242816 128 0 -2242923 0 0 -2243013 128 0 -2243120 0 0 -2243260 128 0 -2243270 0 0 -2245717 128 0 -2247529 0 0 -2247664 128 0 -2247755 0 0 -2254386 totRewards = 11 -2254386 64 8 -2254586 64 0 -2254782 0 0 -2254804 64 0 -2256275 0 0 -2256295 64 0 -2256427 0 0 -2256456 64 0 -2256588 0 0 -2256617 64 0 -2256923 0 0 -2256953 64 0 -2257081 0 0 -2257117 64 0 -2257241 0 0 -2257280 64 0 -2257399 0 0 -2257441 64 0 -2257567 0 0 -2257588 64 0 -2258047 0 0 -2258051 64 0 -2258899 0 0 -2258921 64 0 -2259056 0 0 -2259097 64 0 -2259215 0 0 -2259255 64 0 -2259372 0 0 -2259405 64 0 -2260634 0 0 -2260676 64 0 -2261234 0 0 -2261300 64 0 -2261404 0 0 -2261441 64 0 -2261625 0 0 -2261715 64 0 -2261815 0 0 -2261834 64 0 -2261977 0 0 -2262025 64 0 -2262133 0 0 -2277660 totRewards = 12 -2277660 128 16 -2277739 0 16 -2277860 0 0 -2277981 128 0 -2278327 0 0 -2278333 128 0 -2278895 0 0 -2278925 128 0 -2279032 0 0 -2279044 128 0 -2279302 0 0 -2279309 128 0 -2279439 0 0 -2279455 128 0 -2279735 0 0 -2279763 128 0 -2279878 0 0 -2279911 128 0 -2280032 0 0 -2280084 128 0 -2280202 0 0 -2280254 128 0 -2280364 0 0 -2280421 128 0 -2280526 0 0 -2280579 128 0 -2280686 0 0 -2280736 128 0 -2280847 0 0 -2280883 128 0 -2281609 0 0 -2281646 128 0 -2281774 0 0 -2281872 128 0 -2281935 0 0 -2282007 128 0 -2282103 0 0 -2282213 128 0 -2282280 0 0 -2282420 128 0 -2282494 0 0 -2284086 128 0 -2285130 0 0 -2285212 128 0 -2286235 0 0 -2286289 128 0 -2287135 0 0 -2287186 128 0 -2287289 0 0 -2291999 totRewards = 13 -2291999 64 8 -2292199 64 0 -2293824 0 0 -2293846 64 0 -2293982 0 0 -2294001 64 0 -2294138 0 0 -2294169 64 0 -2294293 0 0 -2294332 64 0 -2294454 0 0 -2294482 64 0 -2294791 0 0 -2294803 64 0 -2295457 0 0 -2295504 64 0 -2295973 0 0 -2296018 64 0 -2296154 0 0 -2296187 64 0 -2296796 0 0 -2296819 64 0 -2297909 0 0 -2297970 64 0 -2298237 0 0 -2298249 64 0 -2298570 0 0 -2298612 64 0 -2298728 0 0 -2298774 64 0 -2298883 0 0 -2298938 64 0 -2299041 0 0 -2307832 totRewards = 14 -2307832 128 16 -2308000 0 16 -2308028 128 16 -2308032 128 0 -2309019 0 0 -2309027 128 0 -2309306 0 0 -2309313 128 0 -2309437 0 0 -2309473 128 0 -2309593 0 0 -2309630 128 0 -2309750 0 0 -2309782 128 0 -2309900 0 0 -2309946 128 0 -2310069 0 0 -2310100 128 0 -2310224 0 0 -2310266 128 0 -2310382 0 0 -2310441 128 0 -2310558 0 0 -2310611 128 0 -2310718 0 0 -2310772 128 0 -2310877 0 0 -2310912 128 0 -2311035 0 0 -2311066 128 0 -2311185 0 0 -2311220 128 0 -2311336 0 0 -2311371 128 0 -2311666 0 0 -2311731 128 0 -2311816 0 0 -2311986 128 0 -2312015 0 0 -2313817 128 0 -2313887 0 0 -2313926 128 0 -2314125 0 0 -2314202 128 0 -2314630 0 0 -2314756 128 0 -2317830 0 0 -2317846 128 0 -2317980 0 0 -2318017 128 0 -2318121 0 0 -2318447 128 0 -2318468 0 0 -2318575 128 0 -2318643 0 0 -2321337 128 0 -2322451 0 0 -2322689 128 0 -2327632 0 0 -2327645 128 0 -2327935 0 0 -2327967 128 0 -2328085 0 0 -2328120 128 0 -2328244 0 0 -2328283 128 0 -2328404 0 0 -2328457 128 0 -2328561 0 0 -2328627 128 0 -2328720 0 0 -2328866 128 0 -2328892 0 0 -2328961 128 0 -2329075 0 0 -2329131 128 0 -2329240 0 0 -2329331 128 0 -2329412 0 0 -2329583 128 0 -2329768 0 0 -2331261 128 0 -2333920 0 0 -2337449 totRewards = 15 -2337449 64 8 -2337649 64 0 -2338511 0 0 -2338525 64 0 -2339700 0 0 -2339726 64 0 -2339869 0 0 -2339884 64 0 -2340021 0 0 -2340049 64 0 -2340177 0 0 -2340221 64 0 -2340350 0 0 -2340357 64 0 -2340814 0 0 -2340842 64 0 -2341675 0 0 -2341689 64 0 -2341838 0 0 -2341866 64 0 -2341992 0 0 -2342046 64 0 -2342161 0 0 -2342239 64 0 -2342326 0 0 -2342402 64 0 -2342683 0 0 -2342700 64 0 -2342845 0 0 -2342872 64 0 -2343006 0 0 -2343072 64 0 -2343156 0 0 -2346147 totRewards = 16 -2346147 128 16 -2346164 0 16 -2346272 128 16 -2346335 0 16 -2346347 0 0 -2346589 128 0 -2346602 0 0 -2346660 128 0 -2346684 0 0 -2346947 128 0 -2347329 0 0 -2347349 128 0 -2348105 0 0 -2348110 128 0 -2348537 0 0 -2348558 128 0 -2348682 0 0 -2348728 128 0 -2348835 0 0 -2348889 128 0 -2349004 0 0 -2349052 128 0 -2349166 0 0 -2349215 128 0 -2349330 0 0 -2349374 128 0 -2349484 0 0 -2349526 128 0 -2350244 0 0 -2350261 128 0 -2350407 0 0 -2350441 128 0 -2350568 0 0 -2350595 128 0 -2350771 0 0 -2350858 128 0 -2350914 0 0 -2351075 128 0 -2351151 0 0 -2351309 128 0 -2351326 0 0 -2351740 128 0 -2351753 0 0 -2351886 128 0 -2351896 0 0 -2352011 128 0 -2352104 0 0 -2352187 128 0 -2352214 0 0 -2352301 128 0 -2352559 0 0 -2352772 128 0 -2353146 0 0 -2353183 128 0 -2353383 0 0 -2353426 128 0 -2355263 0 0 -2359358 totRewards = 17 -2359358 64 8 -2359558 64 0 -2360088 0 0 -2360101 64 0 -2361553 0 0 -2361578 64 0 -2361883 0 0 -2361907 64 0 -2362039 0 0 -2362075 64 0 -2362327 0 0 -2362335 64 0 -2364953 0 0 -2364983 64 0 -2365102 0 0 -2365153 64 0 -2365267 0 0 -2365324 64 0 -2365414 0 0 -2368975 totRewards = 18 -2368975 128 16 -2369175 128 0 -2369303 0 0 -2369335 128 0 -2369692 0 0 -2369711 128 0 -2369813 0 0 -2369864 128 0 -2370239 0 0 -2370266 128 0 -2370543 0 0 -2370563 128 0 -2370698 0 0 -2370728 128 0 -2370846 0 0 -2370899 128 0 -2371028 0 0 -2371066 128 0 -2371186 0 0 -2371233 128 0 -2371348 0 0 -2371399 128 0 -2371524 0 0 -2371569 128 0 -2371690 0 0 -2371747 128 0 -2371862 0 0 -2371919 128 0 -2372027 0 0 -2372070 128 0 -2372173 0 0 -2372219 128 0 -2372338 0 0 -2375851 128 0 -2376084 0 0 -2376257 128 0 -2376944 0 0 -2377077 128 0 -2378183 0 0 -2381281 totRewards = 19 -2381281 64 8 -2381481 64 0 -2382052 0 0 -2382073 64 0 -2383036 0 0 -2383047 64 0 -2383182 0 0 -2383206 64 0 -2383520 0 0 -2383532 64 0 -2383681 0 0 -2383710 64 0 -2383859 0 0 -2383866 64 0 -2384010 0 0 -2384039 64 0 -2384184 0 0 -2384206 64 0 -2384339 0 0 -2384374 64 0 -2385999 0 0 -2386006 64 0 -2386173 0 0 -2386185 64 0 -2386707 0 0 -2386743 64 0 -2386868 0 0 -2386931 64 0 -2387020 0 0 -2390293 totRewards = 20 -2390293 128 16 -2390431 0 16 -2390474 128 16 -2390493 128 0 -2390625 0 0 -2390686 128 0 -2390781 0 0 -2390831 128 0 -2391031 0 0 -2391064 128 0 -2391157 0 0 -2391189 128 0 -2391831 0 0 -2391839 128 0 -2392429 0 0 -2392447 128 0 -2392582 0 0 -2392621 128 0 -2392746 0 0 -2392786 128 0 -2392920 0 0 -2392951 128 0 -2393082 0 0 -2393120 128 0 -2393249 0 0 -2393295 128 0 -2393428 0 0 -2393461 128 0 -2393626 0 0 -2393678 128 0 -2393703 0 0 -2393722 128 0 -2393784 0 0 -2393850 128 0 -2393969 0 0 -2394022 128 0 -2394154 0 0 -2394254 128 0 -2394329 0 0 -2394379 128 0 -2394421 0 0 -2394454 128 0 -2394485 0 0 -2394621 128 0 -2394669 0 0 -2395021 128 0 -2395050 0 0 -2395157 128 0 -2395192 0 0 -2395962 128 0 -2395976 0 0 -2399690 totRewards = 21 -2399690 64 8 -2399739 0 8 -2399783 64 8 -2399889 64 0 -2400032 0 0 -2400055 64 0 -2401665 0 0 -2401674 64 0 -2401820 0 0 -2401845 64 0 -2401974 0 0 -2402003 64 0 -2402129 0 0 -2402156 64 0 -2402593 0 0 -2402609 64 0 -2402754 0 0 -2402766 64 0 -2403575 0 0 -2403613 64 0 -2403763 0 0 -2403774 64 0 -2404087 0 0 -2404120 64 0 -2404268 0 0 -2404282 64 0 -2404424 0 0 -2404457 64 0 -2404593 0 0 -2404624 64 0 -2404761 0 0 -2404786 64 0 -2405621 0 0 -2405656 64 0 -2405801 0 0 -2405835 64 0 -2405983 0 0 -2406018 64 0 -2406128 0 0 -2408919 totRewards = 22 -2408918 128 16 -2409089 0 16 -2409099 128 16 -2409118 128 0 -2409259 0 0 -2409282 128 0 -2409881 0 0 -2409914 128 0 -2410332 0 0 -2410359 128 0 -2410491 0 0 -2410499 128 0 -2410625 0 0 -2410640 128 0 -2410777 0 0 -2410806 128 0 -2410954 0 0 -2410964 128 0 -2411111 0 0 -2411139 128 0 -2411271 0 0 -2411311 128 0 -2411444 0 0 -2411478 128 0 -2411620 0 0 -2411645 128 0 -2411779 0 0 -2411820 128 0 -2411949 0 0 -2411991 128 0 -2412110 0 0 -2412152 128 0 -2412297 0 0 -2412381 128 0 -2412463 0 0 -2412586 128 0 -2412637 0 0 -2417606 totRewards = 23 -2417606 64 8 -2417806 64 0 -2417988 0 0 -2418017 64 0 -2419385 0 0 -2419403 64 0 -2419710 0 0 -2419728 64 0 -2419869 0 0 -2419900 64 0 -2420197 0 0 -2420230 64 0 -2420360 0 0 -2420383 64 0 -2420813 0 0 -2420840 64 0 -2420978 0 0 -2421000 64 0 -2421625 0 0 -2421678 64 0 -2421781 0 0 -2421836 64 0 -2421936 0 0 -2424845 totRewards = 24 -2424845 128 16 -2424878 0 16 -2424957 128 16 -2425001 0 16 -2425029 128 16 -2425045 128 0 -2425100 0 0 -2425132 128 0 -2425255 0 0 -2425341 128 0 -2425404 0 0 -2425413 128 0 -2425655 0 0 -2425694 128 0 -2429976 0 0 -2430004 128 0 -2430156 0 0 -2430196 128 0 -2430336 0 0 -2430380 128 0 -2430522 0 0 -2430571 128 0 -2430718 0 0 -2430748 128 0 -2430894 0 0 -2430920 128 0 -2431078 0 0 -2431125 128 0 -2431275 0 0 -2431329 128 0 -2431675 0 0 -2431820 128 0 -2431897 0 0 -2432493 128 0 -2432637 0 0 -2432661 128 0 -2432804 0 0 -2432861 128 0 -2432994 0 0 -2433025 128 0 -2433287 0 0 -2433293 128 0 -2433298 0 0 -2433302 128 0 -2433608 0 0 -2433619 128 0 -2433651 0 0 -2433688 128 0 -2433712 0 0 -2433722 128 0 -2433771 0 0 -2433875 128 0 -2434339 0 0 -2434379 128 0 -2434521 0 0 -2434566 128 0 -2435276 0 0 -2435311 128 0 -2435450 0 0 -2435518 128 0 -2435619 0 0 -2435702 128 0 -2435821 0 0 -2435901 128 0 -2436009 0 0 -2436087 128 0 -2436177 0 0 -2436291 128 0 -2436323 0 0 -2436357 128 0 -2436377 0 0 -2443046 128 0 -2443134 0 0 -2443341 128 0 -2443453 0 0 -2443671 128 0 -2443803 0 0 -2443889 128 0 -2443921 0 0 -2443970 128 0 -2444102 0 0 -2447042 totRewards = 25 -2447042 64 8 -2447242 64 0 -2447765 0 0 -2447772 64 0 -2447880 0 0 -2447886 64 0 -2449309 0 0 -2449318 64 0 -2449464 0 0 -2449481 64 0 -2449621 0 0 -2449639 64 0 -2449783 0 0 -2449802 64 0 -2449934 0 0 -2449973 64 0 -2450097 0 0 -2450126 64 0 -2450260 0 0 -2450285 64 0 -2450402 0 0 -2455364 totRewards = 26 -2455364 128 16 -2455546 0 16 -2455564 0 0 -2455657 128 0 -2455691 0 0 -2455743 128 0 -2455937 0 0 -2456018 128 0 -2456092 0 0 -2456103 128 0 -2456163 0 0 -2456212 128 0 -2456319 0 0 -2456362 128 0 -2457252 0 0 -2457265 128 0 -2457695 0 0 -2457717 128 0 -2457847 0 0 -2457870 128 0 -2458176 0 0 -2458211 128 0 -2458339 0 0 -2458376 128 0 -2458501 0 0 -2458536 128 0 -2458658 0 0 -2458698 128 0 -2458804 0 0 -2458851 128 0 -2458970 0 0 -2458984 128 0 -2459119 0 0 -2459147 128 0 -2459250 0 0 -2463620 totRewards = 27 -2463620 64 8 -2463820 64 0 -2465463 0 0 -2465471 64 0 -2465619 0 0 -2465626 64 0 -2465935 0 0 -2465947 64 0 -2466092 0 0 -2466110 64 0 -2466253 0 0 -2466280 64 0 -2466410 0 0 -2466447 64 0 -2466568 0 0 -2466603 64 0 -2466732 0 0 -2466752 64 0 -2467027 0 0 -2469814 totRewards = 28 -2469814 128 16 -2469994 0 16 -2470014 0 0 -2470051 128 0 -2470113 0 0 -2470131 128 0 -2470369 0 0 -2470428 128 0 -2470615 0 0 -2470659 128 0 -2470750 0 0 -2470810 128 0 -2471182 0 0 -2471206 128 0 -2471609 0 0 -2471636 128 0 -2471763 0 0 -2471806 128 0 -2471934 0 0 -2471960 128 0 -2472090 0 0 -2472133 128 0 -2472245 0 0 -2472295 128 0 -2472412 0 0 -2472452 128 0 -2472597 0 0 -2472634 128 0 -2472746 0 0 -2472805 128 0 -2472913 0 0 -2472952 128 0 -2473352 0 0 -2473598 128 0 -2476006 0 0 -2476133 128 0 -2479487 0 0 -2479687 128 0 -2480044 0 0 -2482815 totRewards = 29 -2482815 64 8 -2483015 64 0 -2485179 0 0 -2485197 64 0 -2485339 0 0 -2485359 64 0 -2485487 0 0 -2485527 64 0 -2485658 0 0 -2485672 64 0 -2485968 0 0 -2485982 64 0 -2486102 0 0 -2489155 totRewards = 30 -2489155 128 16 -2489313 0 16 -2489355 0 0 -2489369 128 0 -2489697 0 0 -2489732 128 0 -2489944 0 0 -2489982 128 0 -2490071 0 0 -2490129 128 0 -2490358 0 0 -2490381 128 0 -2490490 0 0 -2490527 128 0 -2490938 0 0 -2490973 128 0 -2491097 0 0 -2491113 128 0 -2491255 0 0 -2491270 128 0 -2491405 0 0 -2491435 128 0 -2491565 0 0 -2491605 128 0 -2491743 0 0 -2491776 128 0 -2491897 0 0 -2491946 128 0 -2492059 0 0 -2492109 128 0 -2492225 0 0 -2492263 128 0 -2492382 0 0 -2492423 128 0 -2492544 0 0 -2492573 128 0 -2492723 0 0 -2492742 128 0 -2492881 0 0 -2492917 128 0 -2493039 0 0 -2493086 128 0 -2493194 0 0 -2493241 128 0 -2493365 0 0 -2493381 128 0 -2493510 0 0 -2493572 128 0 -2493589 0 0 -2493676 128 0 -2493876 0 0 -2494191 128 0 -2494750 0 0 -2494845 128 0 -2495454 0 0 -2499420 totRewards = 31 -2499419 64 8 -2499619 64 0 -2502333 0 0 -2502350 64 0 -2502492 0 0 -2502502 64 0 -2503572 0 0 -2503596 64 0 -2503742 0 0 -2503751 64 0 -2504397 0 0 -2504419 64 0 -2504560 0 0 -2504572 64 0 -2505051 0 0 -2505069 64 0 -2505379 0 0 -2505412 64 0 -2505557 0 0 -2505572 64 0 -2505715 0 0 -2505767 64 0 -2505847 0 0 -2508735 totRewards = 32 -2508735 128 16 -2508885 0 16 -2508935 0 0 -2508994 128 0 -2509065 0 0 -2509107 128 0 -2509335 0 0 -2509344 128 0 -2509483 0 0 -2509494 128 0 -2509735 0 0 -2509758 128 0 -2509877 0 0 -2509893 128 0 -2510149 0 0 -2510177 128 0 -2510297 0 0 -2510320 128 0 -2510597 0 0 -2510620 128 0 -2510757 0 0 -2510780 128 0 -2511073 0 0 -2511100 128 0 -2511234 0 0 -2511266 128 0 -2511410 0 0 -2511438 128 0 -2511567 0 0 -2511607 128 0 -2511716 0 0 -2511763 128 0 -2511868 0 0 -2511924 128 0 -2512020 0 0 -2515171 totRewards = 33 -2515171 64 8 -2515371 64 0 -2515871 0 0 -2515882 64 0 -2517692 0 0 -2517721 64 0 -2517853 0 0 -2517891 64 0 -2518013 0 0 -2518044 64 0 -2518481 0 0 -2518520 64 0 -2518612 0 0 -2521180 totRewards = 34 -2521180 128 16 -2521354 0 16 -2521379 128 16 -2521380 128 0 -2521569 0 0 -2521590 128 0 -2521692 0 0 -2521711 128 0 -2521925 0 0 -2521978 128 0 -2522070 0 0 -2522108 128 0 -2522490 0 0 -2522514 128 0 -2522937 0 0 -2522956 128 0 -2523086 0 0 -2523120 128 0 -2523252 0 0 -2523270 128 0 -2523399 0 0 -2523434 128 0 -2523557 0 0 -2523601 128 0 -2523729 0 0 -2523767 128 0 -2523896 0 0 -2523942 128 0 -2524058 0 0 -2524104 128 0 -2524211 0 0 -2524253 128 0 -2524372 0 0 -2524387 128 0 -2524514 0 0 -2527384 totRewards = 35 -2527384 64 8 -2527584 64 0 -2529745 0 0 -2529773 64 0 -2529906 0 0 -2529937 64 0 -2530226 0 0 -2530248 64 0 -2530392 0 0 -2530412 64 0 -2530548 0 0 -2530575 64 0 -2530711 0 0 -2530730 64 0 -2530869 0 0 -2530900 64 0 -2531022 0 0 -2531075 64 0 -2531188 0 0 -2531252 64 0 -2531324 0 0 -2532712 64 0 -2532741 0 0 -2532965 64 0 -2533145 0 0 -2533200 64 0 -2533263 0 0 -2533333 64 0 -2533747 0 0 -2536465 totRewards = 36 -2536465 128 16 -2536665 128 0 -2536770 0 0 -2536790 128 0 -2537391 0 0 -2537424 128 0 -2537815 0 0 -2537843 128 0 -2538112 0 0 -2538119 128 0 -2538254 0 0 -2538292 128 0 -2538420 0 0 -2538455 128 0 -2538583 0 0 -2538622 128 0 -2538747 0 0 -2538789 128 0 -2538909 0 0 -2538941 128 0 -2539071 0 0 -2539112 128 0 -2539227 0 0 -2539272 128 0 -2539389 0 0 -2539435 128 0 -2539553 0 0 -2539599 128 0 -2539710 0 0 -2539756 128 0 -2539870 0 0 -2539919 128 0 -2540024 0 0 -2540097 128 0 -2540131 0 0 -2543061 totRewards = 37 -2543061 64 8 -2543261 64 0 -2543302 0 0 -2543321 64 0 -2545004 0 0 -2545027 64 0 -2545177 0 0 -2545189 64 0 -2545641 0 0 -2545675 64 0 -2545800 0 0 -2545841 64 0 -2546764 0 0 -2546771 64 0 -2546909 0 0 -2546973 64 0 -2547017 0 0 -2549893 totRewards = 38 -2549893 128 16 -2550093 128 0 -2550333 0 0 -2550345 128 0 -2550468 0 0 -2550476 128 0 -2550694 0 0 -2550702 128 0 -2550933 0 0 -2550951 128 0 -2551060 0 0 -2551108 128 0 -2551471 0 0 -2551497 128 0 -2551924 0 0 -2551952 128 0 -2552079 0 0 -2552100 128 0 -2552395 0 0 -2552426 128 0 -2552547 0 0 -2552592 128 0 -2552735 0 0 -2552764 128 0 -2552902 0 0 -2552946 128 0 -2553065 0 0 -2553112 128 0 -2553229 0 0 -2553275 128 0 -2553379 0 0 -2553437 128 0 -2553527 0 0 -2553607 128 0 -2553670 0 0 -2556846 totRewards = 39 -2556846 64 8 -2557046 64 0 -2557066 0 0 -2557079 64 0 -2559054 0 0 -2559065 64 0 -2559552 0 0 -2559572 64 0 -2559707 0 0 -2559758 64 0 -2559875 0 0 -2559923 64 0 -2560048 0 0 -2560089 64 0 -2560388 0 0 -2560454 64 0 -2560540 0 0 -2563235 totRewards = 40 -2563235 128 16 -2563435 128 0 -2564006 0 0 -2564041 128 0 -2564140 0 0 -2564180 128 0 -2564559 0 0 -2564586 128 0 -2565004 0 0 -2565043 128 0 -2565168 0 0 -2565191 128 0 -2565328 0 0 -2565350 128 0 -2565480 0 0 -2565520 128 0 -2565631 0 0 -2565663 128 0 -2565791 0 0 -2565824 128 0 -2565949 0 0 -2565991 128 0 -2566098 0 0 -2566143 128 0 -2566260 0 0 -2566298 128 0 -2566424 0 0 -2566467 128 0 -2566573 0 0 -2566618 128 0 -2566742 0 0 -2566763 128 0 -2566912 0 0 -2566946 128 0 -2567068 0 0 -2567114 128 0 -2567223 0 0 -2567281 128 0 -2567360 0 0 -2570298 totRewards = 41 -2570298 64 8 -2570498 64 0 -2572758 0 0 -2572780 64 0 -2573101 0 0 -2573145 64 0 -2573281 0 0 -2573322 64 0 -2574008 0 0 -2574032 64 0 -2574177 0 0 -2574208 64 0 -2574715 0 0 -2574748 64 0 -2574882 0 0 -2574902 64 0 -2575057 0 0 -2575077 64 0 -2575202 0 0 -2577813 totRewards = 42 -2577813 128 16 -2578013 128 0 -2578222 0 0 -2578344 128 0 -2578817 0 0 -2578850 128 0 -2579085 0 0 -2579101 128 0 -2579222 0 0 -2579250 128 0 -2579669 0 0 -2579699 128 0 -2579835 0 0 -2579850 128 0 -2579982 0 0 -2580007 128 0 -2580144 0 0 -2580176 128 0 -2580312 0 0 -2580346 128 0 -2580479 0 0 -2580507 128 0 -2580638 0 0 -2580678 128 0 -2580786 0 0 -2580831 128 0 -2580937 0 0 -2580984 128 0 -2581062 0 0 -2584210 totRewards = 43 -2584210 64 8 -2584410 64 0 -2586367 0 0 -2586382 64 0 -2586524 0 0 -2586547 64 0 -2586680 0 0 -2586702 64 0 -2586842 0 0 -2586864 64 0 -2587008 0 0 -2587033 64 0 -2587166 0 0 -2587199 64 0 -2587321 0 0 -2587360 64 0 -2587481 0 0 -2587525 64 0 -2587617 0 0 -2591303 totRewards = 44 -2591303 128 16 -2591503 128 0 -2592645 0 0 -2592656 128 0 -2592782 0 0 -2592800 128 0 -2592917 0 0 -2592937 128 0 -2593048 0 0 -2593077 128 0 -2593187 0 0 -2593217 128 0 -2593333 0 0 -2593366 128 0 -2593490 0 0 -2593535 128 0 -2593655 0 0 -2593700 128 0 -2593815 0 0 -2593856 128 0 -2593963 0 0 -2594007 128 0 -2594115 0 0 -2594146 128 0 -2594278 0 0 -2594284 128 0 -2594410 0 0 -2594449 128 0 -2594556 0 0 -2597675 totRewards = 45 -2597675 64 8 -2597875 64 0 -2597920 0 0 -2597969 64 0 -2598419 0 0 -2598448 64 0 -2599285 0 0 -2599293 64 0 -2599432 0 0 -2599457 64 0 -2599909 0 0 -2599936 64 0 -2600074 0 0 -2600097 64 0 -2600414 0 0 -2600433 64 0 -2600563 0 0 -2600596 64 0 -2600725 0 0 -2600772 64 0 -2600890 0 0 -2600949 64 0 -2601047 0 0 -2604007 totRewards = 46 -2604007 128 16 -2604138 0 16 -2604182 128 16 -2604207 128 0 -2604334 0 0 -2604358 128 0 -2604953 0 0 -2604986 128 0 -2605376 0 0 -2605394 128 0 -2605808 0 0 -2605835 128 0 -2605967 0 0 -2605985 128 0 -2606122 0 0 -2606135 128 0 -2606272 0 0 -2606300 128 0 -2606432 0 0 -2606461 128 0 -2606601 0 0 -2606640 128 0 -2606768 0 0 -2606807 128 0 -2606919 0 0 -2606963 128 0 -2607067 0 0 -2607118 128 0 -2607213 0 0 -2607303 128 0 -2607313 0 0 -2607779 128 0 -2607848 0 0 -2607904 128 0 -2610120 0 0 -2612954 totRewards = 47 -2612954 64 8 -2613154 64 0 -2613292 0 0 -2613317 64 0 -2615429 0 0 -2615446 64 0 -2615573 0 0 -2615611 64 0 -2615733 0 0 -2615771 64 0 -2615870 0 0 -2618571 totRewards = 48 -2618571 128 16 -2618771 128 0 -2618887 0 0 -2618900 128 0 -2619108 0 0 -2619120 128 0 -2619497 0 0 -2619543 128 0 -2619918 0 0 -2619954 128 0 -2620363 0 0 -2620391 128 0 -2620510 0 0 -2620544 128 0 -2620904 0 0 -2620928 128 0 -2621061 0 0 -2621089 128 0 -2621226 0 0 -2621255 128 0 -2621369 0 0 -2621404 128 0 -2621520 0 0 -2621552 128 0 -2621699 0 0 -2621709 128 0 -2621843 0 0 -2621884 128 0 -2622000 0 0 -2622047 128 0 -2622163 0 0 -2622220 128 0 -2622346 0 0 -2623071 128 0 -2623182 0 0 -2623626 128 0 -2623700 0 0 -2627843 totRewards = 49 -2627843 64 8 -2628043 64 0 -2628136 0 0 -2628145 64 0 -2630032 0 0 -2630043 64 0 -2630502 0 0 -2630528 64 0 -2630653 0 0 -2630694 64 0 -2630813 0 0 -2630851 64 0 -2630971 0 0 -2631015 64 0 -2631098 0 0 -2633877 totRewards = 50 -2633877 128 16 -2633918 0 16 -2634001 128 16 -2634077 128 0 -2634143 0 0 -2634220 128 0 -2634328 0 0 -2634355 128 0 -2634565 0 0 -2634606 128 0 -2634696 0 0 -2634763 128 0 -2634977 0 0 -2634997 128 0 -2635124 0 0 -2635139 128 0 -2635545 0 0 -2635565 128 0 -2635685 0 0 -2635726 128 0 -2635846 0 0 -2635872 128 0 -2635998 0 0 -2636033 128 0 -2636156 0 0 -2636196 128 0 -2636321 0 0 -2636362 128 0 -2636480 0 0 -2636521 128 0 -2636627 0 0 -2636678 128 0 -2636772 0 0 -2636829 128 0 -2636924 0 0 -2637003 128 0 -2637049 0 0 -2637178 128 0 -2637463 0 0 -2637651 128 0 -2637701 0 0 -2637769 128 0 -2639197 0 0 -2639288 128 0 -2639604 0 0 -2642308 totRewards = 51 -2642308 64 8 -2642508 64 0 -2642755 0 0 -2642780 64 0 -2642990 0 0 -2643012 64 0 -2644727 0 0 -2644744 64 0 -2645038 0 0 -2645057 64 0 -2645191 0 0 -2645218 64 0 -2645347 0 0 -2645388 64 0 -2645496 0 0 -2648343 totRewards = 52 -2648343 128 16 -2648532 0 16 -2648543 0 0 -2648588 128 0 -2648779 0 0 -2648825 128 0 -2648909 0 0 -2648954 128 0 -2649155 0 0 -2649191 128 0 -2649290 0 0 -2649329 128 0 -2649720 0 0 -2649730 128 0 -2650155 0 0 -2650182 128 0 -2650297 0 0 -2650337 128 0 -2650464 0 0 -2650490 128 0 -2650621 0 0 -2650664 128 0 -2650780 0 0 -2650827 128 0 -2650935 0 0 -2650972 128 0 -2651074 0 0 -2651120 128 0 -2651217 0 0 -2651289 128 0 -2651325 0 0 -2653923 totRewards = 53 -2653923 64 8 -2654123 64 0 -2654159 0 0 -2654164 64 0 -2656886 0 0 -2656923 64 0 -2657046 0 0 -2657096 64 0 -2657201 0 0 -2659902 totRewards = 54 -2659902 128 16 -2660074 0 16 -2660102 0 0 -2660120 128 0 -2660236 0 0 -2660248 128 0 -2660836 0 0 -2660882 128 0 -2661980 0 0 -2661989 128 0 -2662272 0 0 -2662301 128 0 -2662434 0 0 -2662461 128 0 -2662597 0 0 -2662628 128 0 -2662757 0 0 -2662797 128 0 -2662914 0 0 -2662953 128 0 -2663064 0 0 -2663102 128 0 -2663664 0 0 -2663762 128 0 -2663778 0 0 -2667190 128 0 -2667285 0 0 -2667322 128 0 -2667332 0 0 -2667348 128 0 -2667390 0 0 -2667467 128 0 -2667512 0 0 -2670338 totRewards = 55 -2670338 64 8 -2670537 0 8 -2670538 0 0 -2670554 64 0 -2673064 0 0 -2673094 64 0 -2673217 0 0 -2673252 64 0 -2673377 0 0 -2673410 64 0 -2673510 0 0 -2676470 totRewards = 56 -2676470 128 16 -2676605 0 16 -2676670 0 0 -2676690 128 0 -2676845 0 0 -2676875 128 0 -2676960 0 0 -2677004 128 0 -2677208 0 0 -2677249 128 0 -2677355 0 0 -2677401 128 0 -2677772 0 0 -2677798 128 0 -2678199 0 0 -2678229 128 0 -2678354 0 0 -2678386 128 0 -2678670 0 0 -2678702 128 0 -2678823 0 0 -2678865 128 0 -2678992 0 0 -2679026 128 0 -2679155 0 0 -2679195 128 0 -2679306 0 0 -2679354 128 0 -2679454 0 0 -2679516 128 0 -2679589 0 0 -2682766 totRewards = 57 -2682766 64 8 -2682966 64 0 -2683919 0 0 -2683933 64 0 -2684207 0 0 -2684224 64 0 -2685002 0 0 -2685015 64 0 -2685143 0 0 -2685175 64 0 -2685455 0 0 -2685474 64 0 -2685599 0 0 -2685657 64 0 -2685736 0 0 -2706877 totRewards = 58 -2706877 128 16 -2707077 128 0 -2707134 0 0 -2707214 128 0 -2707252 0 0 -2707327 128 0 -2707414 0 0 -2707461 128 0 -2707533 0 0 -2707581 128 0 -2707778 0 0 -2707811 128 0 -2707913 0 0 -2707937 128 0 -2708010 0 0 -2708044 128 0 -2708408 0 0 -2708433 128 0 -2708828 0 0 -2708854 128 0 -2708979 0 0 -2709006 128 0 -2709143 0 0 -2709156 128 0 -2709287 0 0 -2709320 128 0 -2709429 0 0 -2709472 128 0 -2709587 0 0 -2709610 128 0 -2709734 0 0 -2709760 128 0 -2709883 0 0 -2709894 128 0 -2710026 0 0 -2710035 128 0 -2710770 0 0 -2710801 128 0 -2710921 0 0 -2710971 128 0 -2711087 0 0 -2711140 128 0 -2711257 0 0 -2711311 128 0 -2711402 0 0 -2711473 128 0 -2711540 0 0 -2714595 totRewards = 59 -2714595 64 8 -2714780 0 8 -2714795 0 0 -2714827 64 0 -2716113 0 0 -2716122 64 0 -2716729 0 0 -2716755 64 0 -2717031 0 0 -2717070 64 0 -2718886 0 0 -2718918 64 0 -2719050 0 0 -2719131 64 0 -2719202 0 0 -2719520 64 0 -2719777 0 0 -2719810 64 0 -2719928 0 0 -2726538 totRewards = 60 -2726538 128 16 -2726738 128 0 -2726850 0 0 -2726888 128 0 -2727361 0 0 -2727372 128 0 -2727476 0 0 -2727496 128 0 -2727604 0 0 -2727635 128 0 -2727743 0 0 -2727763 128 0 -2727882 0 0 -2727908 128 0 -2728014 0 0 -2728049 128 0 -2728154 0 0 -2728191 128 0 -2728304 0 0 -2728339 128 0 -2728457 0 0 -2728493 128 0 -2728610 0 0 -2728654 128 0 -2728777 0 0 -2728828 128 0 -2728944 0 0 -2728988 128 0 -2729096 0 0 -2729146 128 0 -2729258 0 0 -2729311 128 0 -2729409 0 0 -2729448 128 0 -2729568 0 0 -2729585 128 0 -2729718 0 0 -2729757 128 0 -2729881 0 0 -2729920 128 0 -2730029 0 0 -2730079 128 0 -2730192 0 0 -2730243 128 0 -2730360 0 0 -2730364 128 0 -2730508 0 0 -2730526 128 0 -2730654 0 0 -2730683 128 0 -2730815 0 0 -2730851 128 0 -2730979 0 0 -2731018 128 0 -2731152 0 0 -2731200 128 0 -2731309 0 0 -2731371 128 0 -2731471 0 0 -2731551 128 0 -2731656 0 0 -2731757 128 0 -2731869 0 0 -2731971 128 0 -2732012 0 0 -2732183 128 0 -2732229 0 0 -2732309 128 0 -2732386 0 0 -2732469 128 0 -2732494 0 0 -2743355 128 0 -2744545 0 0 -2744578 128 0 -2744976 0 0 -2744989 128 0 -2745109 0 0 -2745726 128 0 -2746827 0 0 -2749691 totRewards = 61 -2749691 64 8 -2749731 0 8 -2749791 64 8 -2749891 64 0 -2749948 0 0 -2749972 64 0 -2750528 0 0 -2750550 64 0 -2752440 0 0 -2752448 64 0 -2752755 0 0 -2752771 64 0 -2752917 0 0 -2752939 64 0 -2753078 0 0 -2753101 64 0 -2753229 0 0 -2753256 64 0 -2753708 0 0 -2753718 64 0 -2753861 0 0 -2753899 64 0 -2754013 0 0 -2757104 totRewards = 62 -2757104 128 16 -2757235 0 16 -2757269 128 16 -2757304 128 0 -2757425 0 0 -2757489 128 0 -2757605 0 0 -2757630 128 0 -2757845 0 0 -2757882 128 0 -2757967 0 0 -2758017 128 0 -2758254 0 0 -2758267 128 0 -2758383 0 0 -2758411 128 0 -2758658 0 0 -2758674 128 0 -2758813 0 0 -2758831 128 0 -2758957 0 0 -2758982 128 0 -2759109 0 0 -2759141 128 0 -2759271 0 0 -2759299 128 0 -2759429 0 0 -2759475 128 0 -2759586 0 0 -2759625 128 0 -2759743 0 0 -2759777 128 0 -2759889 0 0 -2759921 128 0 -2760049 0 0 -2760067 128 0 -2760196 0 0 -2760236 128 0 -2760349 0 0 -2760394 128 0 -2760512 0 0 -2760556 128 0 -2760679 0 0 -2760744 128 0 -2760875 0 0 -2760895 128 0 -2760997 0 0 -2761064 128 0 -2761159 0 0 -2761405 128 0 -2761474 0 0 -2761947 128 0 -2761993 0 0 -2762069 128 0 -2762158 0 0 -2762237 128 0 -2762270 0 0 -2762301 128 0 -2762338 0 0 -2762413 128 0 -2762515 0 0 -2762593 128 0 -2762687 0 0 -2762825 128 0 -2762875 0 0 -2762963 128 0 -2762977 0 0 -2763006 128 0 -2763029 0 0 -2763599 128 0 -2763750 0 0 -2778762 128 0 -2779299 0 0 -2779310 128 0 -2779720 0 0 -2779753 128 0 -2779862 0 0 -2779894 128 0 -2780009 0 0 -2780092 128 0 -2780158 0 0 -2780234 128 0 -2780300 0 0 -2780360 128 0 -2780460 0 0 -2780551 128 0 -2780607 0 0 -2780789 128 0 -2780817 0 0 -2780931 128 0 -2780976 0 0 -2781104 128 0 -2781138 0 0 -2781321 128 0 -2781360 0 0 -2781483 128 0 -2781518 0 0 -2781884 128 0 -2781911 0 0 -2787595 totRewards = 63 -2787595 64 8 -2787795 64 0 -2787877 0 0 -2787916 64 0 -2787951 0 0 -2787971 64 0 -2790162 0 0 -2790167 64 0 -2790645 0 0 -2790670 64 0 -2791939 0 0 -2791975 64 0 -2792085 0 0 -2792148 64 0 -2792219 0 0 -2795469 totRewards = 64 -2795469 128 16 -2795576 0 16 -2795648 128 16 -2795669 128 0 -2795788 0 0 -2795851 128 0 -2795943 0 0 -2796014 128 0 -2796366 0 0 -2796401 128 0 -2796759 0 0 -2796781 128 0 -2797183 0 0 -2797208 128 0 -2797330 0 0 -2797363 128 0 -2797490 0 0 -2797512 128 0 -2797644 0 0 -2797673 128 0 -2797809 0 0 -2797850 128 0 -2797975 0 0 -2798014 128 0 -2798126 0 0 -2798163 128 0 -2798279 0 0 -2798323 128 0 -2798435 0 0 -2798481 128 0 -2798596 0 0 -2798654 128 0 -2798757 0 0 -2798823 128 0 -2798920 0 0 -2807348 totRewards = 65 -2807348 64 8 -2807548 64 0 -2808025 0 0 -2808028 64 0 -2810196 0 0 -2810226 64 0 -2810345 0 0 -2810392 64 0 -2810497 0 0 -2810569 64 0 -2810614 0 0 -2813558 totRewards = 66 -2813558 128 16 -2813758 128 0 -2813988 0 0 -2814012 128 0 -2814112 0 0 -2814179 128 0 -2815017 0 0 -2815036 128 0 -2815165 0 0 -2815173 128 0 -2815303 0 0 -2815311 128 0 -2815449 0 0 -2815465 128 0 -2815591 0 0 -2815617 128 0 -2815755 0 0 -2815768 128 0 -2815898 0 0 -2815928 128 0 -2816053 0 0 -2816098 128 0 -2816217 0 0 -2816253 128 0 -2816375 0 0 -2816390 128 0 -2816978 0 0 -2816985 128 0 -2817129 0 0 -2817155 128 0 -2817290 0 0 -2817312 128 0 -2817449 0 0 -2817473 128 0 -2817609 0 0 -2817652 128 0 -2817764 0 0 -2817804 128 0 -2817924 0 0 -2817966 128 0 -2818098 0 0 -2818153 128 0 -2818262 0 0 -2818318 128 0 -2818429 0 0 -2818489 128 0 -2818598 0 0 -2818666 128 0 -2818768 0 0 -2818819 128 0 -2818930 0 0 -2818995 128 0 -2819118 0 0 -2819166 128 0 -2819284 0 0 -2819343 128 0 -2819453 0 0 -2819521 128 0 -2819551 0 0 -2819579 128 0 -2819597 0 0 -2830526 totRewards = 67 -2830526 64 8 -2830672 0 8 -2830726 0 0 -2830732 64 0 -2831181 0 0 -2831203 64 0 -2832711 0 0 -2832728 64 0 -2833188 0 0 -2833203 64 0 -2833355 0 0 -2833365 64 0 -2833681 0 0 -2833698 64 0 -2833843 0 0 -2834265 64 0 -2835014 0 0 -2835058 64 0 -2835167 0 0 -2835219 64 0 -2835279 0 0 -2837950 totRewards = 68 -2837950 128 16 -2838150 128 0 -2838178 0 0 -2838246 128 0 -2838261 0 0 -2838325 128 0 -2838532 0 0 -2838570 128 0 -2838778 0 0 -2838815 128 0 -2838915 0 0 -2838967 128 0 -2839344 0 0 -2839362 128 0 -2839799 0 0 -2839819 128 0 -2839944 0 0 -2839984 128 0 -2840106 0 0 -2840124 128 0 -2840264 0 0 -2840297 128 0 -2840416 0 0 -2840459 128 0 -2840584 0 0 -2840619 128 0 -2840740 0 0 -2840768 128 0 -2840903 0 0 -2840909 128 0 -2841496 0 0 -2841512 128 0 -2841651 0 0 -2841691 128 0 -2841802 0 0 -2846687 totRewards = 69 -2846687 64 8 -2846887 64 0 -2848800 0 0 -2848810 64 0 -2849435 0 0 -2849465 64 0 -2849584 0 0 -2849630 64 0 -2849756 0 0 -2849769 64 0 -2849895 0 0 -2849972 64 0 -2850025 0 0 -2853239 totRewards = 70 -2853239 128 16 -2853434 0 16 -2853439 0 0 -2853550 128 0 -2853586 0 0 -2853625 128 0 -2853850 0 0 -2853874 128 0 -2854227 0 0 -2854279 128 0 -2854655 0 0 -2854676 128 0 -2854949 0 0 -2854963 128 0 -2855101 0 0 -2855129 128 0 -2855248 0 0 -2855290 128 0 -2855421 0 0 -2855451 128 0 -2855580 0 0 -2855622 128 0 -2855736 0 0 -2855780 128 0 -2855894 0 0 -2855929 128 0 -2856064 0 0 -2856067 128 0 -2856202 0 0 -2856220 128 0 -2856358 0 0 -2856374 128 0 -2856674 0 0 -2856695 128 0 -2856817 0 0 -2856867 128 0 -2856972 0 0 -2860351 totRewards = 71 -2860351 64 8 -2860551 64 0 -2860594 0 0 -2860605 64 0 -2863128 0 0 -2863147 64 0 -2863681 0 0 -2863721 64 0 -2863856 0 0 -2863872 64 0 -2864884 0 0 -2865052 64 0 -2865726 0 0 -2865753 64 0 -2865907 0 0 -2865934 64 0 -2867130 0 0 -2867142 64 0 -2867841 0 0 -2867860 64 0 -2867996 0 0 -2873333 64 0 -2873589 0 0 - - description: state script log run 1 - task_epochs: 2, -, statescript_r2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140306904244688 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -4817847 0 0 -4817864 64 0 -4818025 0 0 -4818034 64 0 -4818369 0 0 -4818377 64 0 -4818526 0 0 -4818555 64 0 -4818673 0 0 -4818736 64 0 -4818831 0 0 -4819088 64 0 -4819182 0 0 -4819213 64 0 -4819739 0 0 -4819764 64 0 -4819903 0 0 -4819950 64 0 -4820061 0 0 -4820111 64 0 -4820420 0 0 -4820429 64 0 -4820510 0 0 -4828786 totRewards = 3 -4828786 128 16 -4828986 128 0 -4829102 0 0 -4829123 128 0 -4829163 0 0 -4829191 128 0 -4829454 0 0 -4829472 128 0 -4829583 0 0 -4829600 128 0 -4829709 0 0 -4829746 128 0 -4829840 0 0 -4829888 128 0 -4829990 0 0 -4830039 128 0 -4830140 0 0 -4830186 128 0 -4830278 0 0 -4830338 128 0 -4830443 0 0 -4830498 128 0 -4830615 0 0 -4830682 128 0 -4830774 0 0 -4830907 128 0 -4830929 0 0 -4831031 128 0 -4831112 0 0 -4831194 128 0 -4831301 0 0 -4831362 128 0 -4831469 0 0 -4831536 128 0 -4831642 0 0 -4831707 128 0 -4831814 0 0 -4831907 128 0 -4831930 0 0 -4831970 128 0 -4832014 0 0 -4832102 128 0 -4832216 0 0 -4832248 128 0 -4832391 0 0 -4832422 128 0 -4833030 0 0 -4833058 128 0 -4833227 0 0 -4833249 128 0 -4833394 0 0 -4833452 128 0 -4833557 0 0 -4833703 128 0 -4833758 0 0 -4833839 128 0 -4833954 0 0 -4834046 128 0 -4834077 0 0 -4834088 128 0 -4834147 0 0 -4834291 128 0 -4834346 0 0 -4834485 128 0 -4834534 0 0 -4834622 128 0 -4834638 0 0 -4834686 128 0 -4834721 0 0 -4834793 128 0 -4834906 0 0 -4834976 128 0 -4835056 0 0 -4852460 totRewards = 4 -4852460 64 8 -4852512 0 8 -4852521 64 8 -4852660 64 0 -4852675 0 0 -4852738 64 0 -4852959 0 0 -4852998 64 0 -4853080 0 0 -4853127 64 0 -4853229 0 0 -4853243 64 0 -4853356 0 0 -4853378 64 0 -4853487 0 0 -4853492 64 0 -4853610 0 0 -4853641 64 0 -4853755 0 0 -4853781 64 0 -4853899 0 0 -4853919 64 0 -4854034 0 0 -4854057 64 0 -4854186 0 0 -4854216 64 0 -4854338 0 0 -4854359 64 0 -4854502 0 0 -4854523 64 0 -4854658 0 0 -4854696 64 0 -4854849 0 0 -4854873 64 0 -4855013 0 0 -4855063 64 0 -4855209 0 0 -4855242 64 0 -4855396 0 0 -4855426 64 0 -4855575 0 0 -4855604 64 0 -4856208 0 0 -4856240 64 0 -4856392 0 0 -4856419 64 0 -4856580 0 0 -4856610 64 0 -4856759 0 0 -4856801 64 0 -4856954 0 0 -4857005 64 0 -4857152 0 0 -4857180 64 0 -4857889 0 0 -4857932 64 0 -4858068 0 0 -4858111 64 0 -4858420 0 0 -4858438 64 0 -4858585 0 0 -4866594 totRewards = 5 -4866594 128 16 -4866662 0 16 -4866681 128 16 -4866794 128 0 -4867290 0 0 -4867314 128 0 -4867550 0 0 -4867587 128 0 -4867683 0 0 -4867725 128 0 -4867812 0 0 -4867845 128 0 -4867957 0 0 -4867982 128 0 -4868100 0 0 -4868124 128 0 -4868232 0 0 -4868271 128 0 -4868372 0 0 -4868411 128 0 -4868516 0 0 -4868554 128 0 -4868673 0 0 -4868705 128 0 -4868821 0 0 -4868874 128 0 -4868991 0 0 -4869036 128 0 -4869154 0 0 -4869203 128 0 -4869318 0 0 -4869385 128 0 -4869503 0 0 -4869568 128 0 -4869673 0 0 -4869754 128 0 -4869863 0 0 -4869946 128 0 -4870043 0 0 -4870126 128 0 -4870241 0 0 -4870282 128 0 -4871043 0 0 -4871067 128 0 -4871200 0 0 -4871242 128 0 -4871377 0 0 -4871431 128 0 -4871575 0 0 -4871609 128 0 -4871755 0 0 -4871817 128 0 -4871920 0 0 -4872003 128 0 -4872024 0 0 -4872068 128 0 -4872107 0 0 -4872194 128 0 -4872273 0 0 -4876373 totRewards = 6 -4876373 64 8 -4876573 64 0 -4876675 0 0 -4876736 64 0 -4876839 0 0 -4876874 64 0 -4876984 0 0 -4876997 64 0 -4877117 0 0 -4877126 64 0 -4877250 0 0 -4877260 64 0 -4877517 0 0 -4877545 64 0 -4877666 0 0 -4877697 64 0 -4877817 0 0 -4877847 64 0 -4877980 0 0 -4878003 64 0 -4878145 0 0 -4878177 64 0 -4878328 0 0 -4878362 64 0 -4878523 0 0 -4878577 64 0 -4878731 0 0 -4878775 64 0 -4878934 0 0 -4878967 64 0 -4879125 0 0 -4879162 64 0 -4879300 0 0 -4879318 64 0 -4880030 0 0 -4880060 64 0 -4880215 0 0 -4880260 64 0 -4880399 0 0 -4880465 64 0 -4880596 0 0 -4880664 64 0 -4880751 0 0 -4880780 64 0 -4881140 0 0 -4881161 64 0 -4881317 0 0 -4881362 64 0 -4881499 0 0 -4881559 64 0 -4881695 0 0 -4881720 64 0 -4882244 0 0 -4882270 64 0 -4882413 0 0 -4882508 64 0 -4882546 0 0 -4896386 64 0 -4896645 0 0 -4896669 64 0 -4896794 0 0 -4896812 64 0 -4896947 0 0 -4896952 64 0 -4897084 0 0 -4897108 64 0 -4897231 0 0 -4897256 64 0 -4897387 0 0 -4897407 64 0 -4897547 0 0 -4897567 64 0 -4897717 0 0 -4897729 64 0 -4897865 0 0 -4897901 64 0 -4898027 0 0 -4898077 64 0 -4898188 0 0 -4898258 64 0 -4898327 0 0 -4901581 totRewards = 7 -4901581 128 16 -4901694 0 16 -4901717 128 16 -4901772 0 16 -4901781 0 0 -4901805 128 0 -4902063 0 0 -4902089 128 0 -4902305 0 0 -4902340 128 0 -4902427 0 0 -4902479 128 0 -4902847 0 0 -4902863 128 0 -4903270 0 0 -4903289 128 0 -4903411 0 0 -4903434 128 0 -4903569 0 0 -4903584 128 0 -4903714 0 0 -4903744 128 0 -4903871 0 0 -4903917 128 0 -4904046 0 0 -4904082 128 0 -4904216 0 0 -4904258 128 0 -4904380 0 0 -4904424 128 0 -4904567 0 0 -4904609 128 0 -4904742 0 0 -4904781 128 0 -4904916 0 0 -4904961 128 0 -4905081 0 0 -4905124 128 0 -4905253 0 0 -4905287 128 0 -4905593 0 0 -4905609 128 0 -4905739 0 0 -4905792 128 0 -4905931 0 0 -4906048 128 0 -4906099 0 0 -4906215 128 0 -4906274 0 0 -4906347 128 0 -4906454 0 0 -4906533 128 0 -4906542 0 0 -4906585 128 0 -4906644 0 0 -4906773 128 0 -4906818 0 0 -4907177 128 0 -4907200 0 0 -4907941 128 0 -4907959 0 0 -4908081 128 0 -4908131 0 0 -4908213 128 0 -4908317 0 0 -4908381 128 0 -4908418 0 0 -4908446 128 0 -4908485 0 0 -4911724 totRewards = 8 -4911724 64 8 -4911924 64 0 -4911941 0 0 -4911962 64 0 -4912433 0 0 -4912458 64 0 -4912573 0 0 -4912601 64 0 -4912851 0 0 -4912869 64 0 -4912989 0 0 -4913014 64 0 -4913134 0 0 -4913160 64 0 -4913459 0 0 -4913478 64 0 -4913610 0 0 -4913641 64 0 -4913784 0 0 -4913808 64 0 -4913964 0 0 -4913989 64 0 -4914118 0 0 -4914155 64 0 -4914296 0 0 -4914326 64 0 -4914463 0 0 -4914498 64 0 -4914627 0 0 -4914667 64 0 -4914793 0 0 -4914823 64 0 -4914974 0 0 -4914985 64 0 -4915471 0 0 -4915498 64 0 -4915646 0 0 -4915671 64 0 -4916187 0 0 -4916204 64 0 -4916350 0 0 -4916378 64 0 -4916503 0 0 -4916561 64 0 -4916674 0 0 -4920485 totRewards = 9 -4920485 128 16 -4920685 128 0 -4920977 0 0 -4921018 128 0 -4921139 0 0 -4921178 128 0 -4921274 0 0 -4921292 128 0 -4921397 0 0 -4921428 128 0 -4921547 0 0 -4921562 128 0 -4921701 0 0 -4921720 128 0 -4921826 0 0 -4921858 128 0 -4921972 0 0 -4921995 128 0 -4922277 0 0 -4922310 128 0 -4922441 0 0 -4922467 128 0 -4922606 0 0 -4922629 128 0 -4922757 0 0 -4922800 128 0 -4922934 0 0 -4922979 128 0 -4923108 0 0 -4923158 128 0 -4923280 0 0 -4923331 128 0 -4923450 0 0 -4923491 128 0 -4924091 0 0 -4924123 128 0 -4924262 0 0 -4924287 128 0 -4924429 0 0 -4924468 128 0 -4924610 0 0 -4924639 128 0 -4924788 0 0 -4924827 128 0 -4924973 0 0 -4925030 128 0 -4925160 0 0 -4925221 128 0 -4925327 0 0 -4925937 128 0 -4925950 0 0 -4928799 totRewards = 10 -4928799 64 8 -4928969 0 8 -4928987 64 8 -4928999 64 0 -4929480 0 0 -4929512 64 0 -4929639 0 0 -4929655 64 0 -4929782 0 0 -4929805 64 0 -4929915 0 0 -4929932 64 0 -4930065 0 0 -4930084 64 0 -4930210 0 0 -4930220 64 0 -4930525 0 0 -4930544 64 0 -4930854 0 0 -4930878 64 0 -4931024 0 0 -4931054 64 0 -4931200 0 0 -4931231 64 0 -4931565 0 0 -4931603 64 0 -4931764 0 0 -4931795 64 0 -4931957 0 0 -4931989 64 0 -4932364 0 0 -4932410 64 0 -4932560 0 0 -4947797 64 0 -4947959 0 0 -4948025 64 0 -4948717 0 0 -4948727 64 0 -4949039 0 0 -4949046 64 0 -4949176 0 0 -4949215 64 0 -4949340 0 0 -4949386 64 0 -4949498 0 0 -4967056 totRewards = 11 -4967056 128 16 -4967231 0 16 -4967256 0 0 -4967312 128 0 -4967362 0 0 -4967376 128 0 -4967612 0 0 -4967650 128 0 -4967858 0 0 -4967882 128 0 -4967971 0 0 -4968022 128 0 -4968377 0 0 -4968394 128 0 -4968518 0 0 -4968538 128 0 -4968794 0 0 -4968807 128 0 -4968951 0 0 -4968957 128 0 -4969082 0 0 -4969104 128 0 -4969226 0 0 -4969252 128 0 -4969378 0 0 -4969407 128 0 -4969531 0 0 -4969563 128 0 -4969697 0 0 -4969720 128 0 -4969861 0 0 -4969900 128 0 -4970025 0 0 -4970067 128 0 -4970192 0 0 -4970228 128 0 -4970347 0 0 -4970388 128 0 -4970503 0 0 -4970541 128 0 -4970971 0 0 -4971005 128 0 -4971135 0 0 -4971168 128 0 -4971305 0 0 -4971337 128 0 -4971468 0 0 -4971506 128 0 -4971636 0 0 -4971677 128 0 -4971809 0 0 -4971862 128 0 -4971983 0 0 -4972038 128 0 -4972151 0 0 -4972225 128 0 -4972334 0 0 -4972421 128 0 -4972490 0 0 -4975667 totRewards = 12 -4975667 64 8 -4975815 0 8 -4975853 64 8 -4975867 64 0 -4976483 0 0 -4976489 64 0 -4976881 0 0 -4976893 64 0 -4977017 0 0 -4977029 64 0 -4977172 0 0 -4977191 64 0 -4977318 0 0 -4977342 64 0 -4977468 0 0 -4977488 64 0 -4977628 0 0 -4977644 64 0 -4977793 0 0 -4977817 64 0 -4977959 0 0 -4977990 64 0 -4978129 0 0 -4978148 64 0 -4978307 0 0 -4978314 64 0 -4978461 0 0 -4978489 64 0 -4978625 0 0 -4978665 64 0 -4978796 0 0 -4978818 64 0 -4979118 0 0 -4979125 64 0 -4979622 0 0 -4979635 64 0 -4979958 0 0 -4979985 64 0 -4980103 0 0 -4980159 64 0 -4980260 0 0 -4983502 totRewards = 13 -4983502 128 16 -4983702 128 0 -4983726 0 0 -4983779 128 0 -4983973 0 0 -4984037 128 0 -4984095 0 0 -4984118 128 0 -4984358 0 0 -4984393 128 0 -4984494 0 0 -4984560 128 0 -4984607 0 0 -4984634 128 0 -4984925 0 0 -4984932 128 0 -4985063 0 0 -4985072 128 0 -4985202 0 0 -4985216 128 0 -4985343 0 0 -4985374 128 0 -4985498 0 0 -4985536 128 0 -4985666 0 0 -4985703 128 0 -4985825 0 0 -4985871 128 0 -4985996 0 0 -4986049 128 0 -4986173 0 0 -4986216 128 0 -4986345 0 0 -4986392 128 0 -4986515 0 0 -4986564 128 0 -4986683 0 0 -4986706 128 0 -4987137 0 0 -4987165 128 0 -4987293 0 0 -4987326 128 0 -4987459 0 0 -4987529 128 0 -4987549 0 0 -4987558 128 0 -4987628 0 0 -4987690 128 0 -4987801 0 0 -4988118 128 0 -4988160 0 0 -4988272 128 0 -4988333 0 0 -4988481 128 0 -4988512 0 0 -4988658 128 0 -4988684 0 0 -4988847 128 0 -4988874 0 0 -4992017 totRewards = 14 -4992017 64 8 -4992217 64 0 -4992245 0 0 -4992258 64 0 -4993747 0 0 -4993755 64 0 -4994232 0 0 -4994243 64 0 -4994394 0 0 -4994418 64 0 -4994917 0 0 -4994937 64 0 -4995077 0 0 -4995101 64 0 -4995241 0 0 -4995266 64 0 -4995416 0 0 -4995427 64 0 -4995585 0 0 -4995600 64 0 -4995760 0 0 -4995767 64 0 -4996645 0 0 -4996677 64 0 -4996811 0 0 -4996862 64 0 -4997027 0 0 -4997159 64 0 -4997203 0 0 -4997275 64 0 -4997417 0 0 -4997432 64 0 -4997789 0 0 -4997818 64 0 -4997960 0 0 -4997999 64 0 -4998121 0 0 -4998164 64 0 -4998268 0 0 -4998346 64 0 -4998393 0 0 -5001232 totRewards = 15 -5001232 128 16 -5001398 0 16 -5001432 0 0 -5001436 128 0 -5001501 0 0 -5001510 128 0 -5001628 0 0 -5001660 128 0 -5001753 0 0 -5001791 128 0 -5002001 0 0 -5002056 128 0 -5002135 0 0 -5002203 128 0 -5002418 0 0 -5002432 128 0 -5002556 0 0 -5002576 128 0 -5002867 0 0 -5002876 128 0 -5002999 0 0 -5003032 128 0 -5003161 0 0 -5003186 128 0 -5003332 0 0 -5003353 128 0 -5003491 0 0 -5003532 128 0 -5003656 0 0 -5003703 128 0 -5003835 0 0 -5003879 128 0 -5004005 0 0 -5004053 128 0 -5004179 0 0 -5004226 128 0 -5004337 0 0 -5004383 128 0 -5004501 0 0 -5004527 128 0 -5004665 0 0 -5004722 128 0 -5004823 0 0 -5004889 128 0 -5004995 0 0 -5005073 128 0 -5005082 0 0 -5005114 128 0 -5005159 0 0 -5005242 128 0 -5005334 0 0 -5005852 128 0 -5005893 0 0 -5008890 totRewards = 16 -5008890 64 8 -5009090 64 0 -5009153 0 0 -5009177 64 0 -5009662 0 0 -5009677 64 0 -5010833 0 0 -5010840 64 0 -5011344 0 0 -5011352 64 0 -5012032 0 0 -5012067 64 0 -5012533 0 0 -5012549 64 0 -5012852 0 0 -5012878 64 0 -5013573 0 0 -5013589 64 0 -5013750 0 0 -5013779 64 0 -5013922 0 0 -5013956 64 0 -5014073 0 0 -5014143 64 0 -5014202 0 0 -5016866 totRewards = 17 -5016866 128 16 -5017035 0 16 -5017066 0 0 -5017093 128 0 -5017282 0 0 -5017317 128 0 -5017427 0 0 -5017472 128 0 -5017682 0 0 -5017714 128 0 -5017810 0 0 -5017879 128 0 -5018240 0 0 -5018268 128 0 -5018689 0 0 -5018729 128 0 -5018864 0 0 -5018897 128 0 -5019039 0 0 -5019070 128 0 -5019192 0 0 -5019238 128 0 -5019368 0 0 -5019406 128 0 -5019540 0 0 -5019606 128 0 -5019715 0 0 -5019777 128 0 -5019895 0 0 -5019949 128 0 -5020073 0 0 -5020130 128 0 -5020253 0 0 -5020329 128 0 -5020438 0 0 -5020490 128 0 -5020632 0 0 -5020694 128 0 -5020806 0 0 -5020877 128 0 -5020988 0 0 -5021053 128 0 -5021167 0 0 -5021203 128 0 -5021466 0 0 -5021522 128 0 -5021633 0 0 -5021662 128 0 -5021802 0 0 -5021856 128 0 -5021973 0 0 -5022016 128 0 -5022131 0 0 -5022266 128 0 -5022292 0 0 -5022425 128 0 -5022475 0 0 -5026113 totRewards = 18 -5026113 64 8 -5026313 64 0 -5026398 0 0 -5026415 64 0 -5027453 0 0 -5027465 64 0 -5028444 0 0 -5028457 64 0 -5028987 0 0 -5029001 64 0 -5029159 0 0 -5029175 64 0 -5029328 0 0 -5029359 64 0 -5030455 0 0 -5030519 64 0 -5030679 0 0 -5030706 64 0 -5031103 0 0 -5031124 64 0 -5031310 0 0 -5031326 64 0 -5031509 0 0 -5031532 64 0 -5031694 0 0 -5031778 64 0 -5031836 0 0 -5038203 totRewards = 19 -5038203 128 16 -5038403 128 0 -5038470 0 0 -5038492 128 0 -5038725 0 0 -5038778 128 0 -5039133 0 0 -5039171 128 0 -5039554 0 0 -5039578 128 0 -5039998 0 0 -5040014 128 0 -5040312 0 0 -5040331 128 0 -5040470 0 0 -5040494 128 0 -5040634 0 0 -5040676 128 0 -5040814 0 0 -5040839 128 0 -5040978 0 0 -5041015 128 0 -5041135 0 0 -5041154 128 0 -5041700 0 0 -5044489 totRewards = 20 -5044489 64 8 -5044677 0 8 -5044689 0 0 -5044711 64 0 -5045338 0 0 -5045366 64 0 -5047558 0 0 -5047585 64 0 -5047726 0 0 -5047750 64 0 -5047899 0 0 -5047908 64 0 -5048219 0 0 -5048237 64 0 -5049433 0 0 -5049446 64 0 -5049579 0 0 -5049625 64 0 -5049732 0 0 -5052543 totRewards = 21 -5052543 128 16 -5052718 0 16 -5052743 0 0 -5052789 128 0 -5052845 0 0 -5052848 128 0 -5052963 0 0 -5053000 128 0 -5053094 0 0 -5053143 128 0 -5053351 0 0 -5053393 128 0 -5053493 0 0 -5053552 128 0 -5053940 0 0 -5053959 128 0 -5054377 0 0 -5054396 128 0 -5054523 0 0 -5054549 128 0 -5054844 0 0 -5054879 128 0 -5055005 0 0 -5055045 128 0 -5055179 0 0 -5055212 128 0 -5055345 0 0 -5055389 128 0 -5055517 0 0 -5055559 128 0 -5055688 0 0 -5055726 128 0 -5055862 0 0 -5055891 128 0 -5056013 0 0 -5056070 128 0 -5056176 0 0 -5056230 128 0 -5056347 0 0 -5056398 128 0 -5056519 0 0 -5056566 128 0 -5056682 0 0 -5056732 128 0 -5056850 0 0 -5056891 128 0 -5057020 0 0 -5057083 128 0 -5057197 0 0 -5057235 128 0 -5057366 0 0 -5057420 128 0 -5057542 0 0 -5057592 128 0 -5057703 0 0 -5057777 128 0 -5057897 0 0 -5057960 128 0 -5058056 0 0 -5061089 totRewards = 22 -5061089 64 8 -5061289 64 0 -5061291 0 0 -5061310 64 0 -5063485 0 0 -5063497 64 0 -5063662 0 0 -5063674 64 0 -5063833 0 0 -5063863 64 0 -5064177 0 0 -5064211 64 0 -5064526 0 0 -5064541 64 0 -5064699 0 0 -5064716 64 0 -5064881 0 0 -5064886 64 0 -5065771 0 0 -5065783 64 0 -5066106 0 0 -5066257 64 0 -5066781 0 0 -5066830 64 0 -5066981 0 0 -5067021 64 0 -5067175 0 0 -5067248 64 0 -5067378 0 0 -5067422 64 0 -5067576 0 0 -5075163 64 0 -5075208 0 0 -5075224 64 0 -5075249 0 0 -5075287 64 0 -5075300 0 0 -5078142 totRewards = 23 -5078142 128 16 -5078258 0 16 -5078302 128 16 -5078342 128 0 -5078345 0 0 -5078381 128 0 -5078596 0 0 -5078633 128 0 -5078843 0 0 -5078862 128 0 -5078967 0 0 -5079003 128 0 -5079951 0 0 -5079980 128 0 -5080260 0 0 -5080281 128 0 -5080419 0 0 -5080466 128 0 -5080587 0 0 -5080629 128 0 -5080761 0 0 -5080802 128 0 -5080927 0 0 -5080975 128 0 -5081092 0 0 -5081138 128 0 -5081251 0 0 -5081293 128 0 -5081556 0 0 -5081592 128 0 -5081697 0 0 -5084357 totRewards = 24 -5084357 64 8 -5084557 64 0 -5084562 0 0 -5084582 64 0 -5087017 0 0 -5087036 64 0 -5087177 0 0 -5087210 64 0 -5087523 0 0 -5087542 64 0 -5087686 0 0 -5087733 64 0 -5087837 0 0 -5087891 64 0 -5088028 0 0 -5088033 64 0 -5088359 0 0 -5088374 64 0 -5088517 0 0 -5092862 totRewards = 25 -5092862 128 16 -5093062 128 0 -5093079 0 0 -5093150 128 0 -5093188 0 0 -5093209 128 0 -5093448 0 0 -5093563 128 0 -5093631 0 0 -5093710 128 0 -5094748 0 0 -5094768 128 0 -5095218 0 0 -5095240 128 0 -5095376 0 0 -5095406 128 0 -5095538 0 0 -5095559 128 0 -5096438 0 0 -5096445 128 0 -5096601 0 0 -5096613 128 0 -5096755 0 0 -5096784 128 0 -5096917 0 0 -5096946 128 0 -5097086 0 0 -5097105 128 0 -5097276 0 0 -5097303 128 0 -5097450 0 0 -5097470 128 0 -5097604 0 0 -5097645 128 0 -5097759 0 0 -5100630 totRewards = 26 -5100630 64 8 -5100819 0 8 -5100829 64 8 -5100830 64 0 -5101055 0 0 -5101068 64 0 -5102287 0 0 -5102294 64 0 -5102437 0 0 -5102446 64 0 -5103424 0 0 -5103442 64 0 -5103578 0 0 -5103612 64 0 -5104060 0 0 -5104071 64 0 -5104375 0 0 -5104400 64 0 -5104529 0 0 -5107046 totRewards = 27 -5107046 128 16 -5107209 0 16 -5107246 0 0 -5107267 128 0 -5107307 0 0 -5107356 128 0 -5107447 0 0 -5107485 128 0 -5107580 0 0 -5107618 128 0 -5107822 0 0 -5107879 128 0 -5107961 0 0 -5108034 128 0 -5108402 0 0 -5108428 128 0 -5108724 0 0 -5108744 128 0 -5108870 0 0 -5108924 128 0 -5109045 0 0 -5109082 128 0 -5109212 0 0 -5109254 128 0 -5109371 0 0 -5109428 128 0 -5109550 0 0 -5109597 128 0 -5109718 0 0 -5109763 128 0 -5109886 0 0 -5109902 128 0 -5110195 0 0 -5110215 128 0 -5110342 0 0 -5110385 128 0 -5110502 0 0 -5110551 128 0 -5110663 0 0 -5110720 128 0 -5110838 0 0 -5110894 128 0 -5111005 0 0 -5111053 128 0 -5111181 0 0 -5111219 128 0 -5111331 0 0 -5111461 128 0 -5111535 0 0 -5111594 128 0 -5111712 0 0 -5111834 128 0 -5111882 0 0 -5111971 128 0 -5112063 0 0 -5114930 totRewards = 28 -5114930 64 8 -5115130 64 0 -5115342 0 0 -5115353 64 0 -5115466 0 0 -5115479 64 0 -5117913 0 0 -5117950 64 0 -5118083 0 0 -5118109 64 0 -5118242 0 0 -5118279 64 0 -5118377 0 0 -5121063 totRewards = 29 -5121063 128 16 -5121263 128 0 -5121284 0 0 -5121321 128 0 -5121531 0 0 -5121579 128 0 -5121675 0 0 -5121685 128 0 -5121914 0 0 -5121958 128 0 -5122058 0 0 -5122093 128 0 -5122352 0 0 -5122359 128 0 -5122485 0 0 -5122515 128 0 -5122943 0 0 -5122971 128 0 -5123104 0 0 -5123135 128 0 -5123279 0 0 -5123289 128 0 -5123418 0 0 -5123458 128 0 -5123589 0 0 -5123625 128 0 -5123756 0 0 -5123809 128 0 -5123944 0 0 -5123994 128 0 -5124120 0 0 -5124169 128 0 -5124287 0 0 -5124333 128 0 -5124454 0 0 -5124473 128 0 -5124906 0 0 -5124936 128 0 -5125070 0 0 -5125110 128 0 -5125219 0 0 -5125272 128 0 -5125381 0 0 -5125430 128 0 -5125545 0 0 -5125607 128 0 -5125722 0 0 -5125814 128 0 -5125902 0 0 -5125984 128 0 -5126082 0 0 -5126164 128 0 -5126250 0 0 -5129004 totRewards = 30 -5129004 64 8 -5129204 64 0 -5131367 0 0 -5131377 64 0 -5132020 0 0 -5132050 64 0 -5132186 0 0 -5132216 64 0 -5132347 0 0 -5132387 64 0 -5132504 0 0 -5132561 64 0 -5132652 0 0 -5135335 totRewards = 31 -5135335 128 16 -5135508 0 16 -5135535 0 0 -5135640 128 0 -5135732 0 0 -5135766 128 0 -5136102 0 0 -5136154 128 0 -5136237 0 0 -5136284 128 0 -5136673 0 0 -5136703 128 0 -5137126 0 0 -5137148 128 0 -5137285 0 0 -5137306 128 0 -5137450 0 0 -5137477 128 0 -5137616 0 0 -5137659 128 0 -5137783 0 0 -5137826 128 0 -5137962 0 0 -5138000 128 0 -5138129 0 0 -5138174 128 0 -5138299 0 0 -5138346 128 0 -5138457 0 0 -5138505 128 0 -5138606 0 0 -5138667 128 0 -5138769 0 0 -5138833 128 0 -5138882 0 0 -5139462 128 0 -5141905 0 0 -5144726 totRewards = 32 -5144726 64 8 -5144926 64 0 -5147101 0 0 -5147127 64 0 -5147279 0 0 -5147299 64 0 -5147604 0 0 -5147640 64 0 -5147763 0 0 -5147786 64 0 -5147925 0 0 -5147955 64 0 -5148080 0 0 -5148143 64 0 -5148214 0 0 -5151111 totRewards = 33 -5151111 128 16 -5151273 0 16 -5151311 0 0 -5151344 128 0 -5151670 0 0 -5151688 128 0 -5151935 0 0 -5151952 128 0 -5152056 0 0 -5152097 128 0 -5152484 0 0 -5152511 128 0 -5152814 0 0 -5152826 128 0 -5152960 0 0 -5153007 128 0 -5153127 0 0 -5153165 128 0 -5153285 0 0 -5153323 128 0 -5153452 0 0 -5153497 128 0 -5153620 0 0 -5153669 128 0 -5153794 0 0 -5153846 128 0 -5153967 0 0 -5154020 128 0 -5154141 0 0 -5154187 128 0 -5154313 0 0 -5154360 128 0 -5154489 0 0 -5154527 128 0 -5154652 0 0 -5154702 128 0 -5154833 0 0 -5154877 128 0 -5155016 0 0 -5155056 128 0 -5155182 0 0 -5155246 128 0 -5155368 0 0 -5155426 128 0 -5155536 0 0 -5155601 128 0 -5155688 0 0 -5158474 totRewards = 34 -5158474 64 8 -5158674 64 0 -5158727 0 0 -5158761 64 0 -5159911 0 0 -5159923 64 0 -5160893 0 0 -5160903 64 0 -5161066 0 0 -5161084 64 0 -5161421 0 0 -5161439 64 0 -5161596 0 0 -5161615 64 0 -5161765 0 0 -5161788 64 0 -5162603 0 0 -5162626 64 0 -5162768 0 0 -5166994 totRewards = 35 -5166994 128 16 -5167136 0 16 -5167194 0 0 -5167204 128 0 -5167391 0 0 -5167411 128 0 -5167529 0 0 -5167569 128 0 -5167669 0 0 -5167684 128 0 -5167770 0 0 -5167808 128 0 -5167905 0 0 -5167957 128 0 -5168206 0 0 -5168217 128 0 -5168342 0 0 -5168369 128 0 -5168809 0 0 -5168840 128 0 -5168968 0 0 -5169002 128 0 -5169134 0 0 -5169159 128 0 -5169295 0 0 -5169332 128 0 -5169458 0 0 -5169504 128 0 -5169624 0 0 -5169671 128 0 -5169796 0 0 -5169842 128 0 -5169962 0 0 -5170008 128 0 -5170127 0 0 -5170167 128 0 -5170295 0 0 -5170342 128 0 -5170465 0 0 -5170518 128 0 -5170617 0 0 -5170685 128 0 -5170792 0 0 -5170855 128 0 -5170967 0 0 -5171038 128 0 -5171144 0 0 -5171212 128 0 -5171289 0 0 -5173934 totRewards = 36 -5173934 64 8 -5174105 0 8 -5174130 64 8 -5174134 64 0 -5175323 0 0 -5175328 64 0 -5176145 0 0 -5176158 64 0 -5176303 0 0 -5176327 64 0 -5176657 0 0 -5176671 64 0 -5176823 0 0 -5176849 64 0 -5176986 0 0 -5177024 64 0 -5177150 0 0 -5177186 64 0 -5177317 0 0 -5177351 64 0 -5177460 0 0 -5180085 totRewards = 37 -5180085 128 16 -5180281 0 16 -5180285 0 0 -5180336 128 0 -5180527 0 0 -5180575 128 0 -5180662 0 0 -5180700 128 0 -5180918 0 0 -5180954 128 0 -5181053 0 0 -5181106 128 0 -5181492 0 0 -5181532 128 0 -5181796 0 0 -5181808 128 0 -5181944 0 0 -5181984 128 0 -5182104 0 0 -5182141 128 0 -5182279 0 0 -5182301 128 0 -5182427 0 0 -5182469 128 0 -5182594 0 0 -5182641 128 0 -5182770 0 0 -5182816 128 0 -5182934 0 0 -5182984 128 0 -5183104 0 0 -5183144 128 0 -5183270 0 0 -5183318 128 0 -5183450 0 0 -5183501 128 0 -5183601 0 0 -5183652 128 0 -5183762 0 0 -5183813 128 0 -5183927 0 0 -5183980 128 0 -5184082 0 0 -5184162 128 0 -5184268 0 0 -5184311 128 0 -5184425 0 0 -5184559 128 0 -5184626 0 0 -5185072 128 0 -5185147 0 0 -5185231 128 0 -5185272 0 0 -5185296 128 0 -5185303 0 0 -5188151 totRewards = 38 -5188151 64 8 -5188332 0 8 -5188350 64 8 -5188351 64 0 -5190520 0 0 -5190537 64 0 -5190865 0 0 -5190895 64 0 -5191213 0 0 -5191231 64 0 -5191381 0 0 -5191404 64 0 -5191556 0 0 -5191573 64 0 -5192075 0 0 -5192099 64 0 -5192965 0 0 -5192984 64 0 -5193154 0 0 -5193167 64 0 -5193500 0 0 -5193536 64 0 -5193666 0 0 -5193714 64 0 -5193793 0 0 -5196578 totRewards = 39 -5196578 128 16 -5196719 0 16 -5196778 0 0 -5196807 128 0 -5197286 0 0 -5197323 128 0 -5197431 0 0 -5197464 128 0 -5197547 0 0 -5197563 128 0 -5197996 0 0 -5198009 128 0 -5198294 0 0 -5198319 128 0 -5198449 0 0 -5198485 128 0 -5198614 0 0 -5198641 128 0 -5198769 0 0 -5198799 128 0 -5198933 0 0 -5198975 128 0 -5199094 0 0 -5199148 128 0 -5199275 0 0 -5199329 128 0 -5199449 0 0 -5199518 128 0 -5199607 0 0 -5199690 128 0 -5199748 0 0 -5203235 totRewards = 40 -5203235 64 8 -5203415 0 8 -5203435 0 0 -5203438 64 0 -5205107 0 0 -5205131 64 0 -5205618 0 0 -5205640 64 0 -5205789 0 0 -5205810 64 0 -5205961 0 0 -5205986 64 0 -5206121 0 0 -5206161 64 0 -5206276 0 0 -5206327 64 0 -5206421 0 0 -5209042 totRewards = 41 -5209042 128 16 -5209223 0 16 -5209242 0 0 -5209294 128 0 -5209472 0 0 -5209519 128 0 -5209608 0 0 -5209656 128 0 -5209867 0 0 -5209908 128 0 -5210005 0 0 -5210057 128 0 -5210438 0 0 -5210467 128 0 -5210751 0 0 -5210780 128 0 -5210900 0 0 -5210941 128 0 -5211065 0 0 -5211087 128 0 -5211230 0 0 -5211258 128 0 -5211393 0 0 -5211444 128 0 -5211563 0 0 -5211607 128 0 -5211729 0 0 -5211770 128 0 -5211893 0 0 -5211940 128 0 -5212057 0 0 -5212095 128 0 -5212221 0 0 -5212270 128 0 -5212388 0 0 -5212429 128 0 -5212552 0 0 -5212601 128 0 -5212747 0 0 -5212781 128 0 -5212909 0 0 -5212955 128 0 -5213071 0 0 -5213126 128 0 -5213223 0 0 -5213294 128 0 -5213369 0 0 -5216038 totRewards = 42 -5216038 64 8 -5216238 64 0 -5216247 0 0 -5216259 64 0 -5218419 0 0 -5218428 64 0 -5218758 0 0 -5218770 64 0 -5218912 0 0 -5218942 64 0 -5219076 0 0 -5219101 64 0 -5219245 0 0 -5219268 64 0 -5219408 0 0 -5219438 64 0 -5220449 0 0 -5220460 64 0 -5220626 0 0 -5220655 64 0 -5221023 0 0 -5221083 64 0 -5221441 0 0 -5221475 64 0 -5221949 0 0 -5221963 64 0 -5222108 0 0 -5222154 64 0 -5222271 0 0 -5222314 64 0 -5222434 0 0 -5226833 totRewards = 43 -5226833 128 16 -5227029 0 16 -5227033 0 0 -5227068 128 0 -5227277 0 0 -5227314 128 0 -5227672 0 0 -5227701 128 0 -5227812 0 0 -5227856 128 0 -5228250 0 0 -5228269 128 0 -5228687 0 0 -5228717 128 0 -5228853 0 0 -5228883 128 0 -5229023 0 0 -5229047 128 0 -5229184 0 0 -5229217 128 0 -5229351 0 0 -5229391 128 0 -5229519 0 0 -5229560 128 0 -5229679 0 0 -5229726 128 0 -5229826 0 0 -5229892 128 0 -5229979 0 0 -5230197 128 0 -5230771 0 0 -5233366 totRewards = 44 -5233366 64 8 -5233551 0 8 -5233566 0 0 -5233570 64 0 -5236348 0 0 -5236382 64 0 -5236501 0 0 -5236547 64 0 -5236653 0 0 -5239276 totRewards = 45 -5239276 128 16 -5239441 0 16 -5239476 0 0 -5239495 128 0 -5239684 0 0 -5239726 128 0 -5239830 0 0 -5239895 128 0 -5240273 0 0 -5240306 128 0 -5240717 0 0 -5240725 128 0 -5240855 0 0 -5240863 128 0 -5241154 0 0 -5241165 128 0 -5241305 0 0 -5241323 128 0 -5241455 0 0 -5241482 128 0 -5241616 0 0 -5241658 128 0 -5241782 0 0 -5241833 128 0 -5241966 0 0 -5242016 128 0 -5242143 0 0 -5242194 128 0 -5242316 0 0 -5242370 128 0 -5242490 0 0 -5242535 128 0 -5242649 0 0 -5242709 128 0 -5242811 0 0 -5242872 128 0 -5242964 0 0 -5243013 128 0 -5243124 0 0 -5243177 128 0 -5243289 0 0 -5243345 128 0 -5243466 0 0 -5243531 128 0 -5243632 0 0 -5243708 128 0 -5243816 0 0 -5243886 128 0 -5243967 0 0 -5247055 totRewards = 46 -5247055 64 8 -5247095 0 8 -5247106 64 8 -5247255 64 0 -5247283 0 0 -5247299 64 0 -5247905 0 0 -5247914 64 0 -5249400 0 0 -5249416 64 0 -5249745 0 0 -5249755 64 0 -5249905 0 0 -5249925 64 0 -5250068 0 0 -5250096 64 0 -5250554 0 0 -5250578 64 0 -5250890 0 0 -5250911 64 0 -5251051 0 0 -5251086 64 0 -5251207 0 0 -5251264 64 0 -5251360 0 0 -5253848 totRewards = 47 -5253848 128 16 -5254029 0 16 -5254048 0 0 -5254082 128 0 -5254276 0 0 -5254321 128 0 -5254415 0 0 -5254473 128 0 -5254688 0 0 -5254718 128 0 -5254821 0 0 -5254886 128 0 -5255267 0 0 -5255294 128 0 -5255721 0 0 -5255756 128 0 -5255882 0 0 -5255919 128 0 -5256059 0 0 -5256087 128 0 -5256223 0 0 -5256256 128 0 -5256381 0 0 -5256422 128 0 -5256552 0 0 -5256592 128 0 -5256711 0 0 -5256753 128 0 -5256878 0 0 -5256917 128 0 -5257042 0 0 -5257080 128 0 -5257207 0 0 -5257262 128 0 -5257366 0 0 -5257424 128 0 -5257525 0 0 -5257585 128 0 -5257691 0 0 -5257749 128 0 -5257859 0 0 -5257942 128 0 -5258054 0 0 -5258082 128 0 -5258211 0 0 -5258290 128 0 -5258369 0 0 -5258430 128 0 -5258531 0 0 -5258621 128 0 -5258643 0 0 -5258681 128 0 -5258722 0 0 -5258805 128 0 -5258896 0 0 -5258967 128 0 -5259053 0 0 -5261742 totRewards = 48 -5261742 64 8 -5261942 64 0 -5264296 0 0 -5264315 64 0 -5264997 0 0 -5265015 64 0 -5265320 0 0 -5265342 64 0 -5265648 0 0 -5265663 64 0 -5267205 0 0 -5267225 64 0 -5267360 0 0 -5267409 64 0 -5267507 0 0 -5270186 totRewards = 49 -5270186 128 16 -5270358 0 16 -5270386 0 0 -5270420 128 0 -5270639 0 0 -5270646 128 0 -5270761 0 0 -5270798 128 0 -5271031 0 0 -5271040 128 0 -5271155 0 0 -5271208 128 0 -5271579 0 0 -5271605 128 0 -5272037 0 0 -5272061 128 0 -5272198 0 0 -5272217 128 0 -5272359 0 0 -5272388 128 0 -5272532 0 0 -5272559 128 0 -5272697 0 0 -5272729 128 0 -5272858 0 0 -5272894 128 0 -5273019 0 0 -5273052 128 0 -5273179 0 0 -5273220 128 0 -5273350 0 0 -5273392 128 0 -5273511 0 0 -5273571 128 0 -5273666 0 0 -5273739 128 0 -5273835 0 0 -5273900 128 0 -5273928 0 0 -5273957 128 0 -5273973 0 0 -5274089 128 0 -5274170 0 0 -5274801 128 0 -5274825 0 0 -5277683 totRewards = 50 -5277683 64 8 -5277883 64 0 -5277903 0 0 -5277906 64 0 -5278381 0 0 -5278392 64 0 -5279198 0 0 -5279207 64 0 -5280021 0 0 -5280054 64 0 -5280388 0 0 -5280417 64 0 -5280565 0 0 -5280604 64 0 -5280742 0 0 -5280757 64 0 -5280917 0 0 -5280927 64 0 -5281087 0 0 -5281096 64 0 -5281246 0 0 -5281271 64 0 -5281422 0 0 -5281430 64 0 -5281916 0 0 -5281955 64 0 -5282063 0 0 -5284584 totRewards = 51 -5284583 128 16 -5284755 0 16 -5284783 0 0 -5284811 128 0 -5284992 0 0 -5285039 128 0 -5285134 0 0 -5285177 128 0 -5285398 0 0 -5285437 128 0 -5285537 0 0 -5285606 128 0 -5285978 0 0 -5286006 128 0 -5286276 0 0 -5286287 128 0 -5286413 0 0 -5286444 128 0 -5286572 0 0 -5286599 128 0 -5286738 0 0 -5286755 128 0 -5286904 0 0 -5286937 128 0 -5287064 0 0 -5287106 128 0 -5287229 0 0 -5287265 128 0 -5287391 0 0 -5287433 128 0 -5287544 0 0 -5287588 128 0 -5287709 0 0 -5287726 128 0 -5287868 0 0 -5287929 128 0 -5288015 0 0 -5290701 totRewards = 52 -5290701 64 8 -5290886 0 8 -5290898 64 8 -5290901 64 0 -5291551 0 0 -5291558 64 0 -5292463 0 0 -5292481 64 0 -5292627 0 0 -5292650 64 0 -5292960 0 0 -5292981 64 0 -5293117 0 0 -5293150 64 0 -5293276 0 0 -5293318 64 0 -5293442 0 0 -5293484 64 0 -5293587 0 0 -5296114 totRewards = 53 -5296114 128 16 -5296276 0 16 -5296314 0 0 -5296336 128 0 -5296507 0 0 -5296515 128 0 -5296673 0 0 -5296710 128 0 -5296948 0 0 -5296964 128 0 -5297059 0 0 -5297113 128 0 -5297498 0 0 -5297528 128 0 -5297810 0 0 -5297822 128 0 -5297954 0 0 -5297985 128 0 -5298116 0 0 -5298140 128 0 -5298278 0 0 -5298300 128 0 -5298435 0 0 -5298474 128 0 -5298606 0 0 -5298639 128 0 -5298778 0 0 -5298824 128 0 -5298944 0 0 -5298994 128 0 -5299098 0 0 -5299160 128 0 -5299257 0 0 -5299340 128 0 -5299402 0 0 -5302379 totRewards = 54 -5302379 64 8 -5302574 0 8 -5302579 0 0 -5302599 64 0 -5303763 0 0 -5303775 64 0 -5304720 0 0 -5304732 64 0 -5304878 0 0 -5304909 64 0 -5305067 0 0 -5305086 64 0 -5305224 0 0 -5305281 64 0 -5305378 0 0 -5305447 64 0 -5305554 0 0 -5306037 64 0 -5306058 0 0 -5306098 64 0 -5306224 0 0 -5306269 64 0 -5306388 0 0 -5309592 totRewards = 55 -5309592 128 16 -5309619 0 16 -5309658 128 16 -5309792 128 0 -5309830 0 0 -5309860 128 0 -5310483 0 0 -5310511 128 0 -5310769 0 0 -5310776 128 0 -5310902 0 0 -5310928 128 0 -5311041 0 0 -5311068 128 0 -5311200 0 0 -5311215 128 0 -5311365 0 0 -5311383 128 0 -5311511 0 0 -5311559 128 0 -5311681 0 0 -5311714 128 0 -5311848 0 0 -5311888 128 0 -5312016 0 0 -5312064 128 0 -5312184 0 0 -5312228 128 0 -5312346 0 0 -5312394 128 0 -5312499 0 0 -5312555 128 0 -5312645 0 0 -5312723 128 0 -5312810 0 0 -5313047 128 0 -5313173 0 0 -5313288 128 0 -5314099 0 0 -5318179 totRewards = 56 -5318179 64 8 -5318377 0 8 -5318379 0 0 -5318406 64 0 -5319133 0 0 -5319139 64 0 -5320503 0 0 -5320519 64 0 -5320656 0 0 -5320693 64 0 -5320811 0 0 -5320850 64 0 -5320959 0 0 -5322418 64 0 -5322432 0 0 -5324991 totRewards = 57 -5324991 128 16 -5325151 0 16 -5325191 0 0 -5325200 128 0 -5325398 0 0 -5325415 128 0 -5325523 0 0 -5325584 128 0 -5325776 0 0 -5325811 128 0 -5325912 0 0 -5325966 128 0 -5326338 0 0 -5326368 128 0 -5327322 0 0 -5327332 128 0 -5327480 0 0 -5327498 128 0 -5327632 0 0 -5327656 128 0 -5327786 0 0 -5327811 128 0 -5327945 0 0 -5327975 128 0 -5328110 0 0 -5328143 128 0 -5328257 0 0 -5328293 128 0 -5328427 0 0 -5328463 128 0 -5328588 0 0 -5328634 128 0 -5328755 0 0 -5328805 128 0 -5328918 0 0 -5328976 128 0 -5329078 0 0 -5329142 128 0 -5329246 0 0 -5329289 128 0 -5329399 0 0 -5332415 totRewards = 58 -5332415 64 8 -5332615 64 0 -5332650 0 0 -5332712 64 0 -5334670 0 0 -5334690 64 0 -5334833 0 0 -5334854 64 0 -5334987 0 0 -5335009 64 0 -5335150 0 0 -5335174 64 0 -5335309 0 0 -5335347 64 0 -5335474 0 0 -5335509 64 0 -5335638 0 0 -5335665 64 0 -5335812 0 0 -5335825 64 0 -5335977 0 0 -5335989 64 0 -5336132 0 0 -5336173 64 0 -5336471 0 0 -5336482 64 0 -5336637 0 0 -5336655 64 0 -5336787 0 0 -5336837 64 0 -5336953 0 0 -5337017 64 0 -5337057 0 0 -5340738 totRewards = 59 -5340738 128 16 -5340938 128 0 -5340949 0 0 -5340986 128 0 -5341337 0 0 -5341353 128 0 -5341754 0 0 -5341807 128 0 -5342184 0 0 -5342202 128 0 -5342624 0 0 -5342638 128 0 -5342771 0 0 -5342796 128 0 -5342931 0 0 -5342953 128 0 -5343088 0 0 -5343118 128 0 -5343246 0 0 -5343281 128 0 -5343408 0 0 -5343455 128 0 -5343575 0 0 -5343622 128 0 -5343735 0 0 -5343781 128 0 -5343895 0 0 -5343926 128 0 -5344050 0 0 -5344088 128 0 -5344204 0 0 -5344259 128 0 -5344368 0 0 -5344422 128 0 -5344528 0 0 -5344586 128 0 -5344693 0 0 -5344746 128 0 -5344845 0 0 -5344903 128 0 -5345007 0 0 -5345065 128 0 -5345170 0 0 -5345260 128 0 -5345346 0 0 -5345389 128 0 -5345506 0 0 -5345566 128 0 -5345688 0 0 -5345752 128 0 -5345862 0 0 -5345936 128 0 -5346010 0 0 -5348749 totRewards = 60 -5348749 64 8 -5348932 0 8 -5348949 0 0 -5348955 64 0 -5349575 0 0 -5349586 64 0 -5351427 0 0 -5351438 64 0 -5351570 0 0 -5351611 64 0 -5351720 0 0 -5351773 64 0 -5351873 0 0 -5351958 64 0 -5351995 0 0 -5354755 totRewards = 61 -5354755 128 16 -5354947 0 16 -5354955 0 0 -5354987 128 0 -5355182 0 0 -5355204 128 0 -5355316 0 0 -5355360 128 0 -5355573 0 0 -5355592 128 0 -5355706 0 0 -5355759 128 0 -5355994 0 0 -5356004 128 0 -5356124 0 0 -5356157 128 0 -5356593 0 0 -5356616 128 0 -5356753 0 0 -5356784 128 0 -5356918 0 0 -5356941 128 0 -5357071 0 0 -5357100 128 0 -5357234 0 0 -5357272 128 0 -5357405 0 0 -5357437 128 0 -5357556 0 0 -5357598 128 0 -5357716 0 0 -5357750 128 0 -5357878 0 0 -5357912 128 0 -5358031 0 0 -5358080 128 0 -5358197 0 0 -5358243 128 0 -5358353 0 0 -5358414 128 0 -5358505 0 0 -5358573 128 0 -5358691 0 0 -5358728 128 0 -5358841 0 0 -5358912 128 0 -5359000 0 0 -5359081 128 0 -5359189 0 0 -5359263 128 0 -5359342 0 0 -5362057 totRewards = 62 -5362057 64 8 -5362240 0 8 -5362255 64 8 -5362256 64 0 -5364529 0 0 -5364535 64 0 -5364841 0 0 -5364872 64 0 -5364998 0 0 -5365030 64 0 -5365160 0 0 -5365197 64 0 -5365325 0 0 -5365363 64 0 -5365479 0 0 -5365550 64 0 -5365625 0 0 -5368308 totRewards = 63 -5368308 128 16 -5368490 0 16 -5368508 0 0 -5368570 128 0 -5368749 0 0 -5368798 128 0 -5368891 0 0 -5368932 128 0 -5369147 0 0 -5369186 128 0 -5369281 0 0 -5369350 128 0 -5369568 0 0 -5369577 128 0 -5369706 0 0 -5369736 128 0 -5370019 0 0 -5370040 128 0 -5370166 0 0 -5370207 128 0 -5370331 0 0 -5370362 128 0 -5370480 0 0 -5370515 128 0 -5370642 0 0 -5370685 128 0 -5370801 0 0 -5370854 128 0 -5370975 0 0 -5371021 128 0 -5371135 0 0 -5371176 128 0 -5371298 0 0 -5371341 128 0 -5371461 0 0 -5371506 128 0 -5371623 0 0 -5371672 128 0 -5371804 0 0 -5371845 128 0 -5371968 0 0 -5372016 128 0 -5372139 0 0 -5372193 128 0 -5372294 0 0 -5372364 128 0 -5372433 0 0 -5375091 totRewards = 64 -5375091 64 8 -5375276 0 8 -5375291 0 0 -5375298 64 0 -5376063 0 0 -5376071 64 0 -5377109 0 0 -5377131 64 0 -5377278 0 0 -5377297 64 0 -5377596 0 0 -5377616 64 0 -5377776 0 0 -5377783 64 0 -5377931 0 0 -5377956 64 0 -5378099 0 0 -5378128 64 0 -5378265 0 0 -5378286 64 0 -5378423 0 0 -5378457 64 0 -5378590 0 0 -5378620 64 0 -5378759 0 0 -5378777 64 0 -5378915 0 0 -5378949 64 0 -5379087 0 0 -5379108 64 0 -5379237 0 0 -5379291 64 0 -5379402 0 0 -5381937 totRewards = 65 -5381937 128 16 -5382101 0 16 -5382137 0 0 -5382157 128 0 -5382344 0 0 -5382383 128 0 -5382489 0 0 -5382551 128 0 -5382890 0 0 -5382957 128 0 -5383047 0 0 -5383059 128 0 -5383692 0 0 -5383711 128 0 -5383842 0 0 -5383868 128 0 -5384010 0 0 -5384025 128 0 -5384166 0 0 -5384194 128 0 -5384329 0 0 -5384367 128 0 -5384495 0 0 -5384532 128 0 -5384659 0 0 -5384698 128 0 -5384814 0 0 -5384873 128 0 -5384972 0 0 -5385039 128 0 -5385156 0 0 -5385830 128 0 -5385930 0 0 -5385971 128 0 -5386091 0 0 -5386139 128 0 -5386269 0 0 -5386303 128 0 -5386430 0 0 -5386492 128 0 -5386634 0 0 -5386673 128 0 -5386800 0 0 -5386861 128 0 -5386988 0 0 -5387051 128 0 -5387172 0 0 -5387215 128 0 -5387328 0 0 -5387378 128 0 -5387504 0 0 -5387542 128 0 -5387661 0 0 -5387707 128 0 -5387832 0 0 -5387887 128 0 -5387992 0 0 -5388068 128 0 -5388145 0 0 -5391087 totRewards = 66 -5391087 64 8 -5391276 0 8 -5391287 0 0 -5391300 64 0 -5393721 0 0 -5393739 64 0 -5393886 0 0 -5393911 64 0 -5394039 0 0 -5394086 64 0 -5394193 0 0 -5394251 64 0 -5394352 0 0 -5394421 64 0 -5394483 0 0 -5398835 totRewards = 67 -5398835 128 16 -5399035 128 0 -5399090 0 0 -5399138 128 0 -5399333 0 0 -5399362 128 0 -5399459 0 0 -5399489 128 0 -5399707 0 0 -5399748 128 0 -5399841 0 0 -5399886 128 0 -5399976 0 0 -5399988 128 0 -5400127 0 0 -5400137 128 0 -5400266 0 0 -5400294 128 0 -5400408 0 0 -5400433 128 0 -5400565 0 0 -5400584 128 0 -5400714 0 0 -5400750 128 0 -5400873 0 0 -5400918 128 0 -5401040 0 0 -5401076 128 0 -5401200 0 0 -5401239 128 0 -5401363 0 0 -5401408 128 0 -5401524 0 0 -5401560 128 0 -5401686 0 0 -5401701 128 0 -5401840 0 0 -5401880 128 0 -5402002 0 0 -5402041 128 0 -5402160 0 0 -5402210 128 0 -5402314 0 0 -5402368 128 0 -5402477 0 0 -5402529 128 0 -5402635 0 0 -5402694 128 0 -5402784 0 0 -5402882 128 0 -5402984 0 0 -5403249 128 0 -5403296 0 0 -5403570 128 0 -5403643 0 0 -5406420 totRewards = 68 -5406420 64 8 -5406620 64 0 -5406622 0 0 -5406646 64 0 -5408106 0 0 -5408123 64 0 -5408592 0 0 -5408611 64 0 -5408758 0 0 -5408784 64 0 -5408937 0 0 -5408952 64 0 -5409108 0 0 -5409132 64 0 -5409264 0 0 -5409287 64 0 -5409437 0 0 -5409465 64 0 -5409612 0 0 -5409642 64 0 -5409782 0 0 -5409811 64 0 -5409948 0 0 -5409995 64 0 -5410134 0 0 -5410195 64 0 -5410275 0 0 -5410788 64 0 -5410832 0 0 -5410875 64 0 -5411017 0 0 -5411024 64 0 -5411168 0 0 -5411200 64 0 -5411349 0 0 -5411375 64 0 -5411527 0 0 -5411550 64 0 -5411699 0 0 -5411717 64 0 -5411889 0 0 -5411901 64 0 -5412053 0 0 -5412087 64 0 -5412224 0 0 -5412300 64 0 -5412325 0 0 -5418269 totRewards = 69 -5418269 128 16 -5418399 0 16 -5418468 128 16 -5418469 128 0 -5418792 0 0 -5418841 128 0 -5419045 0 0 -5419075 128 0 -5419175 0 0 -5419231 128 0 -5419455 0 0 -5419467 128 0 -5419592 0 0 -5419617 128 0 -5419893 0 0 -5419913 128 0 -5420032 0 0 -5420071 128 0 -5420197 0 0 -5420225 128 0 -5420345 0 0 -5420384 128 0 -5420512 0 0 -5420556 128 0 -5420670 0 0 -5420731 128 0 -5420829 0 0 -5420888 128 0 -5420963 0 0 -5424289 totRewards = 70 -5424289 64 8 -5424475 0 8 -5424489 0 0 -5424500 64 0 -5426607 0 0 -5426627 64 0 -5426775 0 0 -5426787 64 0 -5426925 0 0 -5426954 64 0 -5427080 0 0 -5427125 64 0 -5427228 0 0 -5427299 64 0 -5427312 0 0 -5430011 totRewards = 71 -5430011 128 16 -5430211 128 0 -5430218 0 0 -5430279 128 0 -5430439 0 0 -5430494 128 0 -5430831 0 0 -5430874 128 0 -5430987 0 0 -5431072 128 0 -5431125 0 0 -5431138 128 0 -5431424 0 0 -5431445 128 0 -5431713 0 0 -5431718 128 0 -5431857 0 0 -5431895 128 0 -5432009 0 0 -5432044 128 0 -5432169 0 0 -5432192 128 0 -5432313 0 0 -5432348 128 0 -5432462 0 0 -5432505 128 0 -5432618 0 0 -5432665 128 0 -5432775 0 0 -5432826 128 0 -5432934 0 0 -5432983 128 0 -5433094 0 0 -5433142 128 0 -5433251 0 0 -5433307 128 0 -5433418 0 0 -5433475 128 0 -5433577 0 0 -5433640 128 0 -5433722 0 0 -5436443 totRewards = 72 -5436443 64 8 -5436641 0 8 -5436643 0 0 -5436665 64 0 -5438756 0 0 -5438773 64 0 -5439085 0 0 -5439110 64 0 -5439254 0 0 -5439276 64 0 -5439402 0 0 -5439442 64 0 -5439557 0 0 -5439602 64 0 -5439714 0 0 -5439758 64 0 -5439867 0 0 -5442610 totRewards = 73 -5442610 128 16 -5442773 0 16 -5442810 0 0 -5442845 128 0 -5443019 0 0 -5443055 128 0 -5443148 0 0 -5443213 128 0 -5443420 0 0 -5443446 128 0 -5443556 0 0 -5443614 128 0 -5443832 0 0 -5443843 128 0 -5443977 0 0 -5443985 128 0 -5444268 0 0 -5444278 128 0 -5444412 0 0 -5444438 128 0 -5444573 0 0 -5444607 128 0 -5444730 0 0 -5444752 128 0 -5444878 0 0 -5444915 128 0 -5445039 0 0 -5445081 128 0 -5445208 0 0 -5445252 128 0 -5445373 0 0 -5445411 128 0 -5445526 0 0 -5445575 128 0 -5445683 0 0 -5445738 128 0 -5445834 0 0 -5445898 128 0 -5445989 0 0 -5446046 128 0 -5446150 0 0 -5446211 128 0 -5446310 0 0 -5446397 128 0 -5446509 0 0 -5446539 128 0 -5446667 0 0 -5446742 128 0 -5446835 0 0 -5446916 128 0 -5447011 0 0 -5449983 totRewards = 74 -5449983 64 8 -5450178 0 8 -5450183 0 0 -5450197 64 0 -5451724 0 0 -5451733 64 0 -5451888 0 0 -5451900 64 0 -5452222 0 0 -5452249 64 0 -5452387 0 0 -5452422 64 0 -5452547 0 0 -5452586 64 0 -5452713 0 0 -5452736 64 0 -5452874 0 0 -5452894 64 0 -5453373 0 0 -5453386 64 0 -5453527 0 0 -5453564 64 0 -5453680 0 0 -5456274 totRewards = 75 -5456274 128 16 -5456427 0 16 -5456474 0 0 -5456483 128 0 -5456835 0 0 -5456882 128 0 -5457122 0 0 -5457146 128 0 -5457242 0 0 -5457297 128 0 -5457671 0 0 -5457705 128 0 -5457825 0 0 -5457838 128 0 -5457973 0 0 -5457984 128 0 -5458119 0 0 -5458165 128 0 -5458286 0 0 -5458319 128 0 -5458445 0 0 -5458475 128 0 -5458598 0 0 -5458642 128 0 -5458750 0 0 -5458790 128 0 -5458921 0 0 -5458952 128 0 -5459070 0 0 -5459126 128 0 -5459229 0 0 -5459277 128 0 -5459386 0 0 -5459440 128 0 -5459546 0 0 -5459621 128 0 -5459644 0 0 -5459774 128 0 -5459857 0 0 -5459935 128 0 -5460016 0 0 -5460084 128 0 -5460198 0 0 -5460274 128 0 -5460381 0 0 -5460440 128 0 -5460533 0 0 -5460623 128 0 -5460644 0 0 -5460673 128 0 -5460720 0 0 -5460804 128 0 -5460897 0 0 -5463771 totRewards = 76 -5463771 64 8 -5463967 0 8 -5463971 0 0 -5463984 64 0 -5465144 0 0 -5465156 64 0 -5466272 0 0 -5466284 64 0 -5466429 0 0 -5466450 64 0 -5466586 0 0 -5466623 64 0 -5466737 0 0 -5466779 64 0 -5466888 0 0 -5466994 64 0 -5467017 0 0 -5469571 totRewards = 77 -5469571 128 16 -5469749 0 16 -5469771 0 0 -5469802 128 0 -5470003 0 0 -5470052 128 0 -5470145 0 0 -5470209 128 0 -5470409 0 0 -5470438 128 0 -5470546 0 0 -5470607 128 0 -5470707 0 0 -5470712 128 0 -5470840 0 0 -5470857 128 0 -5470975 0 0 -5471008 128 0 -5471431 0 0 -5471463 128 0 -5471582 0 0 -5471623 128 0 -5471750 0 0 -5471786 128 0 -5471912 0 0 -5471953 128 0 -5472074 0 0 -5472124 128 0 -5472240 0 0 -5472288 128 0 -5472400 0 0 -5472447 128 0 -5472565 0 0 -5472611 128 0 -5472720 0 0 -5472769 128 0 -5472877 0 0 -5472931 128 0 -5473037 0 0 -5473101 128 0 -5473200 0 0 -5473258 128 0 -5473363 0 0 -5473448 128 0 -5473567 0 0 -5473676 128 0 -5473728 0 0 -5473804 128 0 -5473818 0 0 -5473862 128 0 -5473886 0 0 -5474162 128 0 -5474248 0 0 -5474304 128 0 -5474401 0 0 -5474460 128 0 -5474573 0 0 -5474639 128 0 -5474740 0 0 -5474828 128 0 -5474922 0 0 -5478644 totRewards = 78 -5478644 64 8 -5478844 64 0 -5480473 0 0 -5480490 64 0 -5480963 0 0 -5480984 64 0 -5481297 0 0 -5481310 64 0 -5481451 0 0 -5481480 64 0 -5481615 0 0 -5481637 64 0 -5481781 0 0 -5481803 64 0 -5481939 0 0 -5481972 64 0 -5482107 0 0 -5482131 64 0 -5483003 0 0 -5483088 64 0 -5483245 0 0 -5483305 64 0 -5483768 0 0 -5483790 64 0 -5483944 0 0 -5483979 64 0 -5484102 0 0 -5484161 64 0 -5484245 0 0 -5490480 totRewards = 79 -5490480 128 16 -5490623 0 16 -5490680 0 0 -5490704 128 0 -5490857 0 0 -5490885 128 0 -5490986 0 0 -5491076 128 0 -5491171 0 0 -5491302 128 0 -5491446 0 0 -5491471 128 0 -5492235 0 0 -5492243 128 0 -5492375 0 0 -5492383 128 0 -5492658 0 0 -5492677 128 0 -5492806 0 0 -5492828 128 0 -5492953 0 0 -5492979 128 0 -5493099 0 0 -5493135 128 0 -5493270 0 0 -5493308 128 0 -5493412 0 0 -5493453 128 0 -5493563 0 0 -5493597 128 0 -5494025 0 0 -5494048 128 0 -5494188 0 0 -5494211 128 0 -5494352 0 0 -5494387 128 0 -5494498 0 0 -5494540 128 0 -5494953 0 0 -5495992 128 0 -5496716 0 0 -5499488 totRewards = 80 -5499488 64 8 -5499679 0 8 -5499688 0 0 -5499710 64 0 -5500315 0 0 -5500332 64 0 -5500857 0 0 -5500864 64 0 -5501651 0 0 -5501666 64 0 -5501815 0 0 -5501849 64 0 -5502352 0 0 -5502374 64 0 -5502719 0 0 -5502754 64 0 -5503075 0 0 -5503101 64 0 -5503248 0 0 -5503270 64 0 -5503413 0 0 -5503429 64 0 -5504778 0 0 -5504816 64 0 -5505289 0 0 -5505322 64 0 -5505451 0 0 -5505486 64 0 -5505953 0 0 -5505978 64 0 -5506147 0 0 -5506170 64 0 -5506329 0 0 -5506353 64 0 -5506421 0 0 -5506469 64 0 -5506778 0 0 -5506805 64 0 -5506931 0 0 -5509416 totRewards = 81 -5509416 128 16 -5509589 0 16 -5509616 0 0 -5509638 128 0 -5509826 0 0 -5509880 128 0 -5509969 0 0 -5510015 128 0 -5510229 0 0 -5510266 128 0 -5510363 0 0 -5510428 128 0 -5510779 0 0 -5510797 128 0 -5511059 0 0 -5511067 128 0 -5511205 0 0 -5511216 128 0 -5511348 0 0 -5511371 128 0 -5511502 0 0 -5511526 128 0 -5511661 0 0 -5511685 128 0 -5511813 0 0 -5511857 128 0 -5511975 0 0 -5512018 128 0 -5512139 0 0 -5512185 128 0 -5512300 0 0 -5512351 128 0 -5512471 0 0 -5512526 128 0 -5512630 0 0 -5512700 128 0 -5512775 0 0 -5519879 128 0 -5520118 0 0 -5533316 totRewards = 82 -5533316 64 8 -5533516 64 0 -5533517 0 0 -5533555 64 0 -5533772 0 0 -5533792 64 0 -5534142 0 0 -5534154 64 0 -5534274 0 0 -5534284 64 0 -5535748 0 0 -5535777 64 0 -5535895 0 0 -5535924 64 0 -5537177 0 0 -5537199 64 0 -5537318 0 0 -5541079 totRewards = 83 -5541079 128 16 -5541254 0 16 -5541279 0 0 -5541288 128 0 -5541512 0 0 -5541545 128 0 -5541630 0 0 -5541678 128 0 -5541890 0 0 -5541913 128 0 -5542025 0 0 -5542054 128 0 -5542143 0 0 -5542156 128 0 -5542425 0 0 -5542445 128 0 -5542562 0 0 -5542589 128 0 -5542859 0 0 -5542881 128 0 -5543002 0 0 -5543039 128 0 -5543160 0 0 -5543199 128 0 -5543325 0 0 -5543358 128 0 -5543481 0 0 -5543518 128 0 -5543635 0 0 -5543679 128 0 -5543800 0 0 -5543813 128 0 -5544386 0 0 -5544420 128 0 -5544542 0 0 -5544566 128 0 -5544692 0 0 -5544736 128 0 -5544842 0 0 -5544889 128 0 -5545012 0 0 -5545052 128 0 -5545166 0 0 -5545223 128 0 -5545336 0 0 -5545393 128 0 -5545489 0 0 -5548223 totRewards = 84 -5548223 64 8 -5548403 0 8 -5548423 0 0 -5548443 64 0 -5550523 0 0 -5550534 64 0 -5550680 0 0 -5550695 64 0 -5550849 0 0 -5550867 64 0 -5551016 0 0 -5551037 64 0 -5551166 0 0 -5551211 64 0 -5551323 0 0 -5551368 64 0 -5551477 0 0 -5551547 64 0 -5551624 0 0 -5554292 totRewards = 85 -5554292 128 16 -5554457 0 16 -5554492 0 0 -5554546 128 0 -5555028 0 0 -5555052 128 0 -5555280 0 0 -5555313 128 0 -5555704 0 0 -5555713 128 0 -5556010 0 0 -5556022 128 0 -5556151 0 0 -5556178 128 0 -5556304 0 0 -5556332 128 0 -5556462 0 0 -5556492 128 0 -5556626 0 0 -5556666 128 0 -5556785 0 0 -5556832 128 0 -5556948 0 0 -5556990 128 0 -5557109 0 0 -5557148 128 0 -5557267 0 0 -5557313 128 0 -5557424 0 0 -5557480 128 0 -5557587 0 0 -5557650 128 0 -5557751 0 0 -5557820 128 0 -5557935 0 0 -5558046 128 0 -5558087 0 0 -5558177 128 0 -5558218 0 0 -5558252 128 0 -5558287 0 0 -5558357 128 0 -5558445 0 0 -5558528 128 0 -5558607 0 0 -5558717 128 0 -5558732 0 0 -5558768 128 0 -5558795 0 0 -5562550 totRewards = 86 -5562550 64 8 -5562750 64 0 -5564913 0 0 -5564928 64 0 -5565074 0 0 -5565091 64 0 -5565240 0 0 -5565267 64 0 -5565390 0 0 -5565429 64 0 -5565542 0 0 -5565606 64 0 -5565707 0 0 -5565809 64 0 -5565853 0 0 -5568670 totRewards = 87 -5568670 128 16 -5568855 0 16 -5568870 0 0 -5568890 128 0 -5569110 0 0 -5569134 128 0 -5569244 0 0 -5569268 128 0 -5569487 0 0 -5569531 128 0 -5569629 0 0 -5569702 128 0 -5570063 0 0 -5570080 128 0 -5570217 0 0 -5570238 128 0 -5570530 0 0 -5570564 128 0 -5570688 0 0 -5570730 128 0 -5570860 0 0 -5570889 128 0 -5571015 0 0 -5571047 128 0 -5571163 0 0 -5571202 128 0 -5571324 0 0 -5571365 128 0 -5571485 0 0 -5571529 128 0 -5571648 0 0 -5571693 128 0 -5571828 0 0 -5571868 128 0 -5571985 0 0 -5572038 128 0 -5572153 0 0 -5572211 128 0 -5572300 0 0 -5572375 128 0 -5572452 0 0 -5575269 totRewards = 88 -5575269 64 8 -5575469 64 0 -5575482 0 0 -5575497 64 0 -5577782 0 0 -5577794 64 0 -5578136 0 0 -5578142 64 0 -5578280 0 0 -5578339 64 0 -5578441 0 0 -5578477 64 0 -5578624 0 0 -5578635 64 0 -5579997 0 0 -5580009 64 0 -5580332 0 0 -5580343 64 0 -5581326 0 0 -5581370 64 0 -5581481 0 0 -5584237 totRewards = 89 -5584237 128 16 -5584409 0 16 -5584437 0 0 -5584492 128 0 -5584822 0 0 -5584857 128 0 -5584977 0 0 -5585004 128 0 -5585112 0 0 -5585128 128 0 -5585225 0 0 -5585268 128 0 -5585662 0 0 -5585688 128 0 -5585976 0 0 -5586003 128 0 -5586128 0 0 -5586170 128 0 -5586293 0 0 -5586327 128 0 -5586459 0 0 -5586502 128 0 -5586629 0 0 -5586677 128 0 -5586791 0 0 -5586838 128 0 -5586942 0 0 -5586999 128 0 -5587063 0 0 -5592356 totRewards = 90 -5592356 64 8 -5592556 64 0 -5592561 0 0 -5592581 64 0 -5594842 0 0 -5594869 64 0 -5595341 0 0 -5595378 64 0 -5595506 0 0 -5595526 64 0 -5595670 0 0 -5595692 64 0 -5595830 0 0 -5595849 64 0 -5596466 0 0 -5596497 64 0 -5596934 0 0 -5596963 64 0 -5597803 0 0 -5597843 64 0 -5597971 0 0 -5598005 64 0 -5598132 0 0 -5598150 64 0 -5598285 0 0 -5598344 64 0 -5598400 0 0 -5600914 totRewards = 91 -5600914 128 16 -5601092 0 16 -5601114 0 0 -5601176 128 0 -5601509 0 0 -5601530 128 0 -5601792 0 0 -5601816 128 0 -5601902 0 0 -5601944 128 0 -5602063 0 0 -5602070 128 0 -5602335 0 0 -5602352 128 0 -5602634 0 0 -5602643 128 0 -5602793 0 0 -5602805 128 0 -5602949 0 0 -5602969 128 0 -5603268 0 0 -5603303 128 0 -5603434 0 0 -5603471 128 0 -5603603 0 0 -5603638 128 0 -5603763 0 0 -5603799 128 0 -5603928 0 0 -5603960 128 0 -5604082 0 0 -5604121 128 0 -5604246 0 0 -5604284 128 0 -5604407 0 0 -5604452 128 0 -5604567 0 0 -5604632 128 0 -5604716 0 0 -5604760 128 0 -5604870 0 0 -5604943 128 0 -5605063 0 0 -5605096 128 0 -5605203 0 0 -5605278 128 0 -5605313 0 0 -5605453 128 0 -5605549 0 0 -5605629 128 0 -5605720 0 0 -5608617 totRewards = 92 -5608617 64 8 -5608813 0 8 -5608817 0 0 -5608829 64 0 -5610943 0 0 -5610961 64 0 -5611607 0 0 -5611635 64 0 -5611766 0 0 -5611802 64 0 -5611924 0 0 -5611971 64 0 -5612070 0 0 -5615107 totRewards = 93 -5615107 128 16 -5615307 128 0 -5615390 0 0 -5615431 128 0 -5615763 0 0 -5615776 128 0 -5616012 0 0 -5616035 128 0 -5616146 0 0 -5616201 128 0 -5616284 0 0 -5616302 128 0 -5616430 0 0 -5616458 128 0 -5616567 0 0 -5616600 128 0 -5616726 0 0 -5616731 128 0 -5617017 0 0 -5617048 128 0 -5617168 0 0 -5617211 128 0 -5617333 0 0 -5617362 128 0 -5617495 0 0 -5617528 128 0 -5617659 0 0 -5617702 128 0 -5617820 0 0 -5617867 128 0 -5617986 0 0 -5618033 128 0 -5618149 0 0 -5618186 128 0 -5618466 0 0 -5618485 128 0 -5618614 0 0 -5618652 128 0 -5618765 0 0 -5618810 128 0 -5618920 0 0 -5618965 128 0 -5619076 0 0 -5619128 128 0 -5619234 0 0 -5619306 128 0 -5619413 0 0 -5619458 128 0 -5619578 0 0 -5619627 128 0 -5619748 0 0 -5619783 128 0 -5619910 0 0 -5619959 128 0 -5620081 0 0 -5620130 128 0 -5620232 0 0 -5620305 128 0 -5620393 0 0 -5620555 128 0 -5620598 0 0 -5621238 128 0 -5621262 0 0 -5621287 128 0 -5621312 0 0 -5624444 totRewards = 94 -5624444 64 8 -5624629 0 8 -5624644 0 0 -5624653 64 0 -5625828 0 0 -5625839 64 0 -5626791 0 0 -5626807 64 0 -5627126 0 0 -5627149 64 0 -5627285 0 0 -5627314 64 0 -5627441 0 0 -5627489 64 0 -5627614 0 0 -5627637 64 0 -5627759 0 0 -5630493 totRewards = 95 -5630493 128 16 -5630678 0 16 -5630693 0 0 -5630822 128 0 -5630934 0 0 -5630939 128 0 -5631056 0 0 -5631100 128 0 -5631451 0 0 -5631499 128 0 -5631884 0 0 -5631913 128 0 -5632026 0 0 -5632054 128 0 -5632335 0 0 -5632361 128 0 -5632485 0 0 -5632518 128 0 -5632645 0 0 -5632679 128 0 -5632804 0 0 -5632843 128 0 -5632970 0 0 -5633021 128 0 -5633146 0 0 -5633191 128 0 -5633305 0 0 -5633359 128 0 -5633455 0 0 -5633516 128 0 -5633624 0 0 -5633663 128 0 -5633790 0 0 -5633840 128 0 -5633945 0 0 -5634006 128 0 -5634112 0 0 -5634153 128 0 -5634272 0 0 -5634326 128 0 -5634427 0 0 -5634517 128 0 -5634652 0 0 -5634688 128 0 -5634714 0 0 -5634737 128 0 -5634799 0 0 -5634870 128 0 -5634962 0 0 -5635118 128 0 -5635172 0 0 -5635251 128 0 -5635325 0 0 -5638851 totRewards = 96 -5638851 64 8 -5639027 0 8 -5639051 0 0 -5639057 64 0 -5641158 0 0 -5641166 64 0 -5641312 0 0 -5641327 64 0 -5641632 0 0 -5641660 64 0 -5641799 0 0 -5641827 64 0 -5641967 0 0 -5642003 64 0 -5642135 0 0 -5642174 64 0 -5642295 0 0 -5642349 64 0 -5642450 0 0 -5642688 64 0 -5643624 0 0 -5648879 totRewards = 97 -5648879 128 16 -5649079 128 0 -5649159 0 0 -5649190 128 0 -5649783 0 0 -5649834 128 0 -5649930 0 0 -5649976 128 0 -5650367 0 0 -5650379 128 0 -5650813 0 0 -5650830 128 0 -5650971 0 0 -5650983 128 0 -5651115 0 0 -5651141 128 0 -5651273 0 0 -5651307 128 0 -5651436 0 0 -5651479 128 0 -5651605 0 0 -5651646 128 0 -5651763 0 0 -5651812 128 0 -5651913 0 0 -5651970 128 0 -5652065 0 0 -5652111 128 0 -5652224 0 0 -5652262 128 0 -5652382 0 0 -5652427 128 0 -5652542 0 0 -5652585 128 0 -5652710 0 0 -5652743 128 0 -5652867 0 0 -5652915 128 0 -5653031 0 0 -5653085 128 0 -5653183 0 0 -5653249 128 0 -5653342 0 0 -5656059 totRewards = 98 -5656059 64 8 -5656235 0 8 -5656259 0 0 -5656259 64 0 -5657885 0 0 -5657895 64 0 -5659034 0 0 -5659055 64 0 -5659196 0 0 -5659226 64 0 -5659351 0 0 -5659384 64 0 -5659509 0 0 -5659577 64 0 -5659599 0 0 -5662554 totRewards = 99 -5662554 128 16 -5662735 0 16 -5662754 0 0 -5662788 128 0 -5662975 0 0 -5663017 128 0 -5663109 0 0 -5663163 128 0 -5663375 0 0 -5663405 128 0 -5663502 0 0 -5663561 128 0 -5663933 0 0 -5663957 128 0 -5664383 0 0 -5664415 128 0 -5664537 0 0 -5664572 128 0 -5664697 0 0 -5664733 128 0 -5664862 0 0 -5664906 128 0 -5665023 0 0 -5665067 128 0 -5665186 0 0 -5665233 128 0 -5665345 0 0 -5665383 128 0 -5665521 0 0 -5665557 128 0 -5665678 0 0 -5665722 128 0 -5665841 0 0 -5665894 128 0 -5666004 0 0 -5666057 128 0 -5666170 0 0 -5666214 128 0 -5666332 0 0 -5666386 128 0 -5666500 0 0 -5666552 128 0 -5666666 0 0 -5666710 128 0 -5666819 0 0 -5666871 128 0 -5666975 0 0 -5667679 128 0 -5667780 0 0 -5667820 128 0 -5667924 0 0 -5667975 128 0 -5668075 0 0 -5668129 128 0 -5668240 0 0 -5668270 128 0 -5668389 0 0 -5668428 128 0 -5668557 0 0 -5668585 128 0 -5668714 0 0 -5668776 128 0 -5668883 0 0 -5673440 totRewards = 100 -5673440 64 8 -5673640 64 0 -5675190 0 0 -5675210 64 0 -5675339 0 0 -5675358 64 0 -5675835 0 0 -5675852 64 0 -5676152 0 0 -5676181 64 0 -5676317 0 0 -5676322 64 0 -5676788 0 0 -5676803 64 0 -5677296 0 0 -5677315 64 0 -5677473 0 0 -5677487 64 0 -5677645 0 0 -5677660 64 0 -5677807 0 0 -5677844 64 0 -5678474 0 0 -5678494 64 0 -5679104 0 0 -5679146 64 0 -5679622 0 0 -5679652 64 0 -5679774 0 0 -5679817 64 0 -5679938 0 0 -5679994 64 0 -5680085 0 0 -5682771 totRewards = 101 -5682771 128 16 -5682971 128 0 -5682977 0 0 -5683060 128 0 -5683375 0 0 -5683438 128 0 -5683560 0 0 -5683593 128 0 -5683703 0 0 -5683721 128 0 -5683815 0 0 -5683845 128 0 -5683965 0 0 -5683982 128 0 -5684243 0 0 -5684256 128 0 -5684680 0 0 -5684711 128 0 -5684843 0 0 -5684866 128 0 -5684992 0 0 -5685027 128 0 -5685150 0 0 -5685197 128 0 -5685319 0 0 -5685370 128 0 -5685483 0 0 -5685531 128 0 -5685652 0 0 -5685700 128 0 -5685822 0 0 -5685873 128 0 -5685989 0 0 -5686038 128 0 -5686141 0 0 -5686197 128 0 -5686300 0 0 -5686344 128 0 -5686456 0 0 -5686512 128 0 -5686612 0 0 -5686685 128 0 -5686815 0 0 -5686827 128 0 -5686975 0 0 -5687022 128 0 -5687140 0 0 -5687204 128 0 -5687320 0 0 -5687399 128 0 -5687416 0 0 -5687432 128 0 -5687474 0 0 -5690822 totRewards = 102 -5690822 64 8 -5691022 64 0 -5691038 0 0 -5691053 64 0 -5691660 0 0 -5691672 64 0 -5693493 0 0 -5693512 64 0 -5693653 0 0 -5693682 64 0 -5693805 0 0 -5693842 64 0 -5693957 0 0 -5694019 64 0 -5694105 0 0 -5697110 totRewards = 103 -5697110 128 16 -5697310 128 0 -5697315 0 0 -5697352 128 0 -5697566 0 0 -5697585 128 0 -5697701 0 0 -5697734 128 0 -5697966 0 0 -5697986 128 0 -5698098 0 0 -5698149 128 0 -5698532 0 0 -5698553 128 0 -5698996 0 0 -5699025 128 0 -5699162 0 0 -5699191 128 0 -5699323 0 0 -5699355 128 0 -5699492 0 0 -5699532 128 0 -5699662 0 0 -5699707 128 0 -5699824 0 0 -5699871 128 0 -5699977 0 0 -5700030 128 0 -5700120 0 0 -5700191 128 0 -5700282 0 0 -5700354 128 0 -5700433 0 0 -5703554 totRewards = 104 -5703554 64 8 -5703739 0 8 -5703754 0 0 -5703766 64 0 -5704513 0 0 -5704522 64 0 -5705904 0 0 -5705924 64 0 -5706065 0 0 -5706088 64 0 -5706232 0 0 -5706255 64 0 -5706393 0 0 -5706423 64 0 -5706553 0 0 -5706587 64 0 -5706710 0 0 -5706757 64 0 -5706875 0 0 -5708022 64 0 -5708875 0 0 -5708897 64 0 -5710073 0 0 -5710134 64 0 -5710212 0 0 -5712808 totRewards = 105 -5712808 128 16 -5712986 0 16 -5713008 0 0 -5713059 128 0 -5713254 0 0 -5713265 128 0 -5713378 0 0 -5713420 128 0 -5713793 0 0 -5713832 128 0 -5714102 0 0 -5714113 128 0 -5714248 0 0 -5714274 128 0 -5714407 0 0 -5714434 128 0 -5714565 0 0 -5714600 128 0 -5714710 0 0 -5714751 128 0 -5714880 0 0 -5714918 128 0 -5715052 0 0 -5715093 128 0 -5715216 0 0 -5715268 128 0 -5715379 0 0 -5715429 128 0 -5715539 0 0 -5715600 128 0 -5715673 0 0 -5715761 128 0 -5715829 0 0 -5719199 totRewards = 106 -5719199 64 8 -5719399 64 0 - - description: state script log run 2 - task_epochs: 4, -, statescript_r3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140306904244944 -Fields: - content: # -#% PROGRAM NAME: linear track -#% DESCRIPTION: lights and rewards alternate between 2 wells -#% AJ got from AC got from DK, edited to remove lights 11/19/18 (AC). -# -#int deliverPeriod= 200 % how long to deliver the reward -#int rewardWell=0 -#int dio=0 -#int lastWell=0 -#int totRewards=0 -#int pump1=4 -#int pump2=5 -#; -# -#%AC changed so lights start on -#portout[7]=1; -#portout[8]=1; -# -#% function to deliver reward -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriod -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to turn on output, AC changed so lights stay off -#function 2 -# portout[dio]=0 -#end; -# -#% function to turn off output -#function 3 -# portout[dio]=0 -#end; -# -#%display status -#function 4 -# disp(totRewards) -#end; -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[8] up -# if lastWell != 8 do -# rewardWell=pump2 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[8] down -# if lastWell != 8 do -# dio=8 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=8 -# end -#end; -# -#callback portin[7] up -# if lastWell != 7 do -# rewardWell=pump1 -# trigger(1) -# totRewards=totRewards+1 -# trigger(4) -# end -#end; -# -#callback portin[7] down -# if lastWell != 7 do -# dio=7 -# trigger(3) -# dio=1 -# trigger(2) -# lastWell=7 -# end -#end; -# -# -#""" -#filename: PythonObserver.py -#Mattias Karlsson, edited by Kevin Fan -#Written: 01/06/2016 -#Updated last: 01/14/2016 -# -#Directions: -#In statescript -> Edit -> Local callback language, select Python and specify Python directory. -#PythonObserver.py and your callback python script must be in the same directory. -#Select that directory in statescript -> File -> Script folders -> Local callback scripts. -#After loading your statescript code into the ECU, select your desired callback script and click the Python button. -#Click the Python Tab to view your running callback script. -# -#*Note: Your callback script MUST contain a function "def callback(line):" which is called every time statescript outputs a line. -# -#""" -# -## -=-=-=-=-=-=-=-=-=-=-=-=- startScQt FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def startScQt(callBackFcn, initFcn=""): -# # This function starts the scQt agent in python -# # callBackFcn -- a string containing the name of the callback function to -# # be called for every new event. -# # initFcn -- a string containing the name of a function to call -# # now. Useful for setting up extra global variables or plots. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# global scQtInitiated # the callback function should set this to 1 once all user variables are set -# scQtCallBackHandle = __import__(callBackFcn).callback -# scQtControllerOutput = [] -# scQtHistory = [] -# scQtInitiated = 0 -# -# # Run init function if given -# if initFcn: -# eval(initFcn) -# -# print("Initiation complete. Running " + callBackFcn + "...") -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- addScQtEvent FUNCTION -=-=-=-=-=-=-=-=-=-=-=-=- -#def addScQtEvent(eventString): -# # This function is called by the qt-based gui every time a new even occurs. -# # The event string is passed in the input, and the designated callBack -# # function is called. -# -# global scQtHistory # multipurpose place to store processed event history -# global scQtControllerOutput # the text output from the microcontroller -# global scQtCallBackHandle # the handle to the function called for every new event -# -# # add the event output string to the memory log -# scQtControllerOutput.append(eventString) -# -# # call the callback -# scQtCallBackHandle(eventString) -# -# -## -=-=-=-=-=-=-=-=-=-=-=-=- INITIATION FUNCTIONS -=-=-=-=-=-=-=-=-=-=-=-=- -#def init(): -# print("init function has been run") -# -# -7499807 totRewards = 1 -7499807 64 200 -7500007 64 192 -7500065 0 128 -7500089 64 128 -7500220 0 128 -7500233 64 128 -7500345 0 128 -7500352 64 128 -7500830 0 128 -7500836 64 128 -7500943 0 128 -7500963 64 128 -7501077 0 128 -7501087 64 128 -7501201 0 128 -7501216 64 128 -7501327 0 128 -7501354 64 128 -7501470 0 128 -7501488 64 128 -7501621 0 128 -7501641 64 128 -7501768 0 128 -7501786 64 128 -7501914 0 128 -7501942 64 128 -7502067 0 128 -7502104 64 128 -7502224 0 128 -7502270 64 128 -7502382 0 128 -7502438 64 128 -7502547 0 128 -7502591 64 128 -7502710 0 128 -7502748 64 128 -7502863 0 128 -7502898 64 128 -7503321 0 128 -7503349 64 128 -7503492 0 128 -7503512 64 128 -7503675 0 128 -7503685 64 128 -7503829 0 128 -7503869 64 128 -7504008 0 128 -7504049 64 128 -7504185 0 128 -7504229 64 128 -7504335 0 128 -7504385 64 128 -7504830 0 128 -7504850 64 128 -7505318 0 128 -7505346 64 128 -7505492 0 128 -7505523 64 128 -7505673 0 128 -7505703 64 128 -7505819 0 128 -7509448 totRewards = 2 -7509448 128 144 -7509648 128 128 -7509830 0 0 -7509841 128 0 -7509844 0 0 -7509909 128 0 -7509912 0 0 -7509920 128 0 -7509985 0 0 -7510002 128 0 -7510144 0 0 -7510154 128 0 -7510255 0 0 -7510314 128 0 -7510656 0 0 -7510682 128 0 -7510795 0 0 -7510807 128 0 -7511073 0 0 -7511090 128 0 -7511207 0 0 -7511234 128 0 -7511347 0 0 -7511392 128 0 -7511490 0 0 -7511537 128 0 -7511633 0 0 -7511693 128 0 -7511798 0 0 -7511856 128 0 -7511969 0 0 -7512023 128 0 -7512135 0 0 -7512198 128 0 -7512321 0 0 -7512384 128 0 -7512512 0 0 -7512575 128 0 -7512699 0 0 -7512769 128 0 -7512896 0 0 -7512953 128 0 -7513081 0 0 -7513127 128 0 -7514538 0 0 -7514575 128 0 -7514712 0 0 -7514754 128 0 -7514891 0 0 -7514952 128 0 -7515072 0 0 -7515133 128 0 -7515263 0 0 -7515316 128 0 -7515435 0 0 -7515498 128 0 -7515609 0 0 -7515678 128 0 -7515789 0 0 -7515866 128 0 -7515967 0 0 -7516022 128 0 -7516088 0 0 -7516194 128 0 -7516468 0 0 -7516494 128 0 -7516627 0 0 -7516666 128 0 -7516803 0 0 -7516877 128 0 -7516984 0 0 -7517035 128 0 -7517176 0 0 -7517288 128 0 -7517394 0 0 -7517922 128 0 -7517951 0 0 -7518111 128 0 -7518125 0 0 -7518392 128 0 -7518503 0 0 -7518598 128 0 -7518683 0 0 -7518837 128 0 -7518854 0 0 -7527467 128 0 -7527970 0 0 -7527980 128 0 -7528348 0 0 -7528369 128 0 -7528497 0 0 -7528533 128 0 -7528645 0 0 -7528691 128 0 -7528805 0 0 -7528852 128 0 -7528967 0 0 -7532478 totRewards = 3 -7532478 64 8 -7532678 64 0 -7533690 0 0 -7533700 64 0 -7533836 0 0 -7533851 64 0 -7533973 0 0 -7533982 64 0 -7534275 0 0 -7534294 64 0 -7534429 0 0 -7534443 64 0 -7534775 0 0 -7534796 64 0 -7534938 0 0 -7534974 64 0 -7535284 0 0 -7535321 64 0 -7536105 0 0 -7536111 64 0 -7536280 0 0 -7536300 64 0 -7536473 0 0 -7536500 64 0 -7536664 0 0 -7536677 64 0 -7536833 0 0 -7536885 64 0 -7537004 0 0 -7537062 64 0 -7537189 0 0 -7537254 64 0 -7537988 0 0 -7538049 64 0 -7538195 0 0 -7538227 64 0 -7538413 0 0 -7538435 64 0 -7538599 0 0 -7538659 64 0 -7538784 0 0 -7539025 64 0 -7539161 0 0 -7539189 64 0 -7539338 0 0 -7539407 64 0 -7539582 0 0 -7540550 64 0 -7540819 0 0 -7540833 64 0 -7540992 0 0 -7541002 64 0 -7541166 0 0 -7541175 64 0 -7541333 0 0 -7541372 64 0 -7541521 0 0 -7541562 64 0 -7541687 0 0 -7545424 totRewards = 4 -7545424 128 16 -7545556 0 16 -7545595 128 16 -7545624 128 0 -7545675 0 0 -7545700 128 0 -7545842 0 0 -7545893 128 0 -7546045 0 0 -7546114 128 0 -7546712 0 0 -7546739 128 0 -7546858 0 0 -7546874 128 0 -7546980 0 0 -7547012 128 0 -7547114 0 0 -7547153 128 0 -7547255 0 0 -7547294 128 0 -7547398 0 0 -7547439 128 0 -7547540 0 0 -7547582 128 0 -7547696 0 0 -7547741 128 0 -7547855 0 0 -7547906 128 0 -7548020 0 0 -7548069 128 0 -7548183 0 0 -7548246 128 0 -7548357 0 0 -7548418 128 0 -7548525 0 0 -7548577 128 0 -7548709 0 0 -7548735 128 0 -7549034 0 0 -7549043 128 0 -7549170 0 0 -7549221 128 0 -7549341 0 0 -7549385 128 0 -7549499 0 0 -7549566 128 0 -7549586 0 0 -7549623 128 0 -7549666 0 0 -7549732 128 0 -7549840 0 0 -7549905 128 0 -7550015 0 0 -7550072 128 0 -7550178 0 0 -7550246 128 0 -7550331 0 0 -7550428 128 0 -7550513 0 0 -7550590 128 0 -7550685 0 0 -7550772 128 0 -7550839 0 0 -7550912 128 0 -7551001 0 0 -7551092 128 0 -7551110 0 0 -7551154 128 0 -7551186 0 0 -7551269 128 0 -7551359 0 0 -7551455 128 0 -7551474 0 0 -7551508 128 0 -7551543 0 0 -7554803 totRewards = 5 -7554803 64 8 -7555003 64 0 -7555514 0 0 -7555522 64 0 -7555924 0 0 -7555942 64 0 -7556063 0 0 -7556081 64 0 -7556203 0 0 -7556225 64 0 -7556353 0 0 -7556376 64 0 -7556520 0 0 -7556534 64 0 -7556675 0 0 -7556704 64 0 -7557239 0 0 -7557274 64 0 -7557449 0 0 -7557479 64 0 -7557658 0 0 -7557687 64 0 -7557844 0 0 -7557899 64 0 -7558036 0 0 -7558079 64 0 -7558777 0 0 -7558799 64 0 -7558950 0 0 -7558985 64 0 -7559119 0 0 -7559170 64 0 -7559304 0 0 -7559320 64 0 -7559771 0 0 -7559798 64 0 -7559938 0 0 -7559966 64 0 -7560124 0 0 -7560146 64 0 -7560327 0 0 -7560337 64 0 -7561101 0 0 -7561107 64 0 -7561272 0 0 -7561309 64 0 -7561449 0 0 -7561499 64 0 -7561608 0 0 -7567350 totRewards = 6 -7567350 128 16 -7567534 0 16 -7567550 0 0 -7567605 128 0 -7567921 0 0 -7567954 128 0 -7568061 0 0 -7568094 128 0 -7568302 0 0 -7568359 128 0 -7568446 0 0 -7568464 128 0 -7568594 0 0 -7568619 128 0 -7568723 0 0 -7568763 128 0 -7568863 0 0 -7568898 128 0 -7569021 0 0 -7569058 128 0 -7569166 0 0 -7569215 128 0 -7569320 0 0 -7569370 128 0 -7569487 0 0 -7569540 128 0 -7569660 0 0 -7569715 128 0 -7569826 0 0 -7569886 128 0 -7569997 0 0 -7570055 128 0 -7570166 0 0 -7570228 128 0 -7570323 0 0 -7570390 128 0 -7570486 0 0 -7570544 128 0 -7570652 0 0 -7570705 128 0 -7570817 0 0 -7570880 128 0 -7570994 0 0 -7571053 128 0 -7571170 0 0 -7571231 128 0 -7571323 0 0 -7571403 128 0 -7571464 0 0 -7574231 totRewards = 7 -7574231 64 8 -7574415 0 8 -7574425 64 8 -7574431 64 0 -7574779 0 0 -7574797 64 0 -7575035 0 0 -7575056 64 0 -7575163 0 0 -7575183 64 0 -7575448 0 0 -7575456 64 0 -7575587 0 0 -7575611 64 0 -7575740 0 0 -7575751 64 0 -7576067 0 0 -7576080 64 0 -7576414 0 0 -7576428 64 0 -7576576 0 0 -7576613 64 0 -7576929 0 0 -7576964 64 0 -7577119 0 0 -7577149 64 0 -7577275 0 0 -7577325 64 0 -7577456 0 0 -7577480 64 0 -7577802 0 0 -7577819 64 0 -7577960 0 0 -7577994 64 0 -7578136 0 0 -7578159 64 0 -7578502 0 0 -7578520 64 0 -7579482 0 0 -7579497 64 0 -7579628 0 0 -7579682 64 0 -7579827 0 0 -7579953 64 0 -7580203 0 0 -7580264 64 0 -7580397 0 0 -7580420 64 0 -7580591 0 0 -7580646 64 0 -7580794 0 0 -7580861 64 0 -7580959 0 0 -7581217 64 0 -7581305 0 0 -7581342 64 0 -7581506 0 0 -7581525 64 0 -7581685 0 0 -7581733 64 0 -7581865 0 0 -7586030 totRewards = 8 -7586030 128 16 -7586203 0 16 -7586230 0 0 -7586276 128 0 -7586594 0 0 -7586646 128 0 -7586869 0 0 -7586882 128 0 -7586984 0 0 -7587040 128 0 -7587141 0 0 -7587153 128 0 -7587270 0 0 -7587284 128 0 -7587411 0 0 -7587449 128 0 -7587570 0 0 -7587605 128 0 -7587719 0 0 -7587756 128 0 -7587868 0 0 -7587918 128 0 -7588020 0 0 -7588073 128 0 -7588193 0 0 -7588236 128 0 -7588357 0 0 -7588414 128 0 -7588530 0 0 -7588595 128 0 -7588708 0 0 -7588763 128 0 -7588882 0 0 -7588938 128 0 -7589043 0 0 -7589094 128 0 -7589207 0 0 -7589228 128 0 -7589361 0 0 -7589395 128 0 -7589516 0 0 -7589559 128 0 -7589671 0 0 -7589729 128 0 -7589838 0 0 -7589910 128 0 -7589918 0 0 -7589962 128 0 -7590005 0 0 -7590071 128 0 -7590176 0 0 -7590329 128 0 -7590370 0 0 -7590473 128 0 -7590481 0 0 -7590519 128 0 -7590565 0 0 -7593508 totRewards = 9 -7593508 64 8 -7593703 0 8 -7593708 0 0 -7593718 64 0 -7593939 0 0 -7593957 64 0 -7594730 0 0 -7594744 64 0 -7594863 0 0 -7594890 64 0 -7595020 0 0 -7595030 64 0 -7595169 0 0 -7595174 64 0 -7595653 0 0 -7595670 64 0 -7595828 0 0 -7595841 64 0 -7595986 0 0 -7596013 64 0 -7596162 0 0 -7596199 64 0 -7596330 0 0 -7596379 64 0 -7596506 0 0 -7596524 64 0 -7596672 0 0 -7596684 64 0 -7596853 0 0 -7596873 64 0 -7597016 0 0 -7597070 64 0 -7597351 0 0 -7597375 64 0 -7597514 0 0 -7597545 64 0 -7598031 0 0 -7598062 64 0 -7598180 0 0 -7600753 totRewards = 10 -7600753 128 16 -7600928 0 16 -7600953 0 0 -7600990 128 0 -7601310 0 0 -7601350 128 0 -7601572 0 0 -7601603 128 0 -7601699 0 0 -7601749 128 0 -7602139 0 0 -7602168 128 0 -7602447 0 0 -7602470 128 0 -7602597 0 0 -7602634 128 0 -7602764 0 0 -7602799 128 0 -7602926 0 0 -7602968 128 0 -7603094 0 0 -7603151 128 0 -7603268 0 0 -7603328 128 0 -7603449 0 0 -7603504 128 0 -7603615 0 0 -7603667 128 0 -7603785 0 0 -7603834 128 0 -7603946 0 0 -7604000 128 0 -7604090 0 0 -7604243 128 0 -7604261 0 0 -7604340 128 0 -7604432 0 0 -7604506 128 0 -7604584 0 0 -7604667 128 0 -7604764 0 0 -7604873 128 0 -7604886 0 0 -7604910 128 0 -7604961 0 0 -7608088 totRewards = 11 -7608088 64 8 -7608263 0 8 -7608281 64 8 -7608288 64 0 -7609448 0 0 -7609467 64 0 -7609592 0 0 -7609607 64 0 -7609745 0 0 -7609757 64 0 -7610240 0 0 -7610256 64 0 -7610412 0 0 -7610424 64 0 -7610764 0 0 -7610772 64 0 -7610918 0 0 -7610952 64 0 -7611077 0 0 -7611115 64 0 -7611243 0 0 -7611289 64 0 -7611586 0 0 -7611606 64 0 -7611757 0 0 -7611794 64 0 -7612355 0 0 -7612386 64 0 -7612574 0 0 -7612614 64 0 -7612884 0 0 -7612901 64 0 -7613054 0 0 -7613091 64 0 -7613221 0 0 -7613257 64 0 -7613386 0 0 -7618178 totRewards = 12 -7618178 128 16 -7618307 0 16 -7618378 0 0 -7618396 128 0 -7618712 0 0 -7618752 128 0 -7618860 0 0 -7618907 128 0 -7618984 0 0 -7619030 128 0 -7619120 0 0 -7619158 128 0 -7619270 0 0 -7619285 128 0 -7619414 0 0 -7619429 128 0 -7619552 0 0 -7619584 128 0 -7619716 0 0 -7619727 128 0 -7619858 0 0 -7619880 128 0 -7620005 0 0 -7620054 128 0 -7620174 0 0 -7620222 128 0 -7620341 0 0 -7620397 128 0 -7620509 0 0 -7620586 128 0 -7620743 0 0 -7621246 128 0 -7621352 0 0 -7621407 128 0 -7621506 0 0 -7621630 128 0 -7621695 0 0 -7621754 128 0 -7621880 0 0 -7621924 128 0 -7622044 0 0 -7622121 128 0 -7622225 0 0 -7622291 128 0 -7622376 0 0 -7622477 128 0 -7622496 0 0 -7627198 totRewards = 13 -7627198 64 8 -7627398 64 0 -7627485 0 0 -7627518 64 0 -7627731 0 0 -7627748 64 0 -7628116 0 0 -7628129 64 0 -7628673 0 0 -7628690 64 0 -7629150 0 0 -7629167 64 0 -7629317 0 0 -7629333 64 0 -7629487 0 0 -7629508 64 0 -7629653 0 0 -7629679 64 0 -7629822 0 0 -7629839 64 0 -7630177 0 0 -7630189 64 0 -7630327 0 0 -7630372 64 0 -7630981 0 0 -7631001 64 0 -7631145 0 0 -7631167 64 0 -7631302 0 0 -7631325 64 0 -7631462 0 0 -7631485 64 0 -7631620 0 0 -7631654 64 0 -7631784 0 0 -7631820 64 0 -7632823 0 0 -7632847 64 0 -7632982 0 0 -7633020 64 0 -7633130 0 0 -7633190 64 0 -7633269 0 0 -7636615 totRewards = 14 -7636615 128 16 -7636786 0 16 -7636815 0 0 -7636824 128 0 -7637013 0 0 -7637060 128 0 -7637204 0 0 -7637225 128 0 -7637386 0 0 -7637443 128 0 -7637537 0 0 -7637577 128 0 -7637671 0 0 -7637683 128 0 -7637804 0 0 -7637816 128 0 -7637937 0 0 -7637954 128 0 -7638227 0 0 -7638255 128 0 -7638375 0 0 -7638411 128 0 -7638523 0 0 -7638558 128 0 -7638691 0 0 -7638728 128 0 -7638849 0 0 -7638900 128 0 -7639021 0 0 -7639074 128 0 -7639196 0 0 -7639244 128 0 -7639364 0 0 -7639418 128 0 -7639531 0 0 -7639582 128 0 -7639692 0 0 -7639746 128 0 -7639849 0 0 -7639908 128 0 -7640017 0 0 -7640064 128 0 -7640179 0 0 -7640234 128 0 -7640353 0 0 -7640407 128 0 -7640516 0 0 -7640591 128 0 -7640656 0 0 -7643472 totRewards = 15 -7643472 64 8 -7643672 64 0 -7644135 0 0 -7644143 64 0 -7644273 0 0 -7644285 64 0 -7644681 0 0 -7644691 64 0 -7644821 0 0 -7644835 64 0 -7645128 0 0 -7645141 64 0 -7645287 0 0 -7645300 64 0 -7645452 0 0 -7645462 64 0 -7645617 0 0 -7645632 64 0 -7645772 0 0 -7645801 64 0 -7645932 0 0 -7645969 64 0 -7646102 0 0 -7646129 64 0 -7646634 0 0 -7646657 64 0 -7646790 0 0 -7646833 64 0 -7646939 0 0 -7647007 64 0 -7647074 0 0 -7649822 totRewards = 16 -7649822 128 16 -7650002 0 16 -7650022 0 0 -7650070 128 0 -7650268 0 0 -7650297 128 0 -7650402 0 0 -7650451 128 0 -7650656 0 0 -7650688 128 0 -7650785 0 0 -7650847 128 0 -7651084 0 0 -7651100 128 0 -7651213 0 0 -7651247 128 0 -7651522 0 0 -7651547 128 0 -7651668 0 0 -7651708 128 0 -7651826 0 0 -7651870 128 0 -7651999 0 0 -7652037 128 0 -7652156 0 0 -7652209 128 0 -7652328 0 0 -7652377 128 0 -7652500 0 0 -7652551 128 0 -7652658 0 0 -7652704 128 0 -7652821 0 0 -7652866 128 0 -7652976 0 0 -7653038 128 0 -7653142 0 0 -7653199 128 0 -7653303 0 0 -7653358 128 0 -7653467 0 0 -7653515 128 0 -7653636 0 0 -7653691 128 0 -7653808 0 0 -7653869 128 0 -7653965 0 0 -7654051 128 0 -7654062 0 0 -7654080 128 0 -7654108 0 0 -7656919 totRewards = 17 -7656919 64 8 -7657100 0 8 -7657110 64 8 -7657119 64 0 -7657724 0 0 -7657737 64 0 -7658450 0 0 -7658463 64 0 -7659093 0 0 -7659110 64 0 -7659260 0 0 -7659287 64 0 -7659582 0 0 -7659623 64 0 -7659745 0 0 -7659761 64 0 -7659910 0 0 -7659923 64 0 -7660072 0 0 -7660091 64 0 -7660226 0 0 -7660267 64 0 -7660403 0 0 -7660430 64 0 -7661645 0 0 -7661670 64 0 -7661804 0 0 -7661850 64 0 -7661970 0 0 -7662038 64 0 -7662070 0 0 -7664957 totRewards = 18 -7664957 128 16 -7665116 0 16 -7665157 0 0 -7665163 128 0 -7665372 0 0 -7665381 128 0 -7665492 0 0 -7665545 128 0 -7665745 0 0 -7665785 128 0 -7665876 0 0 -7665942 128 0 -7666304 0 0 -7666340 128 0 -7666456 0 0 -7666472 128 0 -7666601 0 0 -7666620 128 0 -7666750 0 0 -7666789 128 0 -7666909 0 0 -7666951 128 0 -7667074 0 0 -7667107 128 0 -7667238 0 0 -7667279 128 0 -7667398 0 0 -7667454 128 0 -7667578 0 0 -7667628 128 0 -7667753 0 0 -7667813 128 0 -7667918 0 0 -7667983 128 0 -7668082 0 0 -7668137 128 0 -7668242 0 0 -7668288 128 0 -7668398 0 0 -7668454 128 0 -7668559 0 0 -7668614 128 0 -7668722 0 0 -7668772 128 0 -7668880 0 0 -7668945 128 0 -7669001 0 0 -7669091 128 0 -7669177 0 0 -7669492 128 0 -7669523 0 0 -7669608 128 0 -7669694 0 0 -7672486 totRewards = 19 -7672486 64 8 -7672686 64 0 -7672724 0 0 -7672737 64 0 -7673490 0 0 -7673495 64 0 -7673765 0 0 -7673797 64 0 -7674228 0 0 -7674245 64 0 -7674389 0 0 -7674411 64 0 -7674894 0 0 -7674914 64 0 -7675248 0 0 -7675270 64 0 -7675418 0 0 -7675447 64 0 -7675593 0 0 -7675622 64 0 -7675753 0 0 -7675795 64 0 -7675911 0 0 -7675976 64 0 -7676080 0 0 -7676166 64 0 -7676268 0 0 -7676294 64 0 -7676444 0 0 -7676456 64 0 -7676947 0 0 -7676967 64 0 -7677088 0 0 -7679867 totRewards = 20 -7679867 128 16 -7680067 128 0 -7680094 0 0 -7680125 128 0 -7680335 0 0 -7680382 128 0 -7680469 0 0 -7680492 128 0 -7680727 0 0 -7680767 128 0 -7680855 0 0 -7680935 128 0 -7681001 0 0 -7681018 128 0 -7681159 0 0 -7681172 128 0 -7681294 0 0 -7681324 128 0 -7681588 0 0 -7681609 128 0 -7681743 0 0 -7681767 128 0 -7681906 0 0 -7681934 128 0 -7682065 0 0 -7682103 128 0 -7682226 0 0 -7682266 128 0 -7682390 0 0 -7682438 128 0 -7682573 0 0 -7682621 128 0 -7682747 0 0 -7682802 128 0 -7682920 0 0 -7682969 128 0 -7683084 0 0 -7683134 128 0 -7683243 0 0 -7683297 128 0 -7683398 0 0 -7683455 128 0 -7683562 0 0 -7683617 128 0 -7683726 0 0 -7683780 128 0 -7683889 0 0 -7683948 128 0 -7684062 0 0 -7684129 128 0 -7684181 0 0 -7687149 totRewards = 21 -7687149 64 8 -7687334 0 8 -7687349 0 0 -7687368 64 0 -7688422 0 0 -7688431 64 0 -7689388 0 0 -7689395 64 0 -7689548 0 0 -7689570 64 0 -7689719 0 0 -7689739 64 0 -7690071 0 0 -7690094 64 0 -7690236 0 0 -7690275 64 0 -7690577 0 0 -7690608 64 0 -7690748 0 0 -7690779 64 0 -7690941 0 0 -7690955 64 0 -7691854 0 0 -7691868 64 0 -7692034 0 0 -7692075 64 0 -7692226 0 0 -7692246 64 0 -7692396 0 0 -7692425 64 0 -7692575 0 0 -7692615 64 0 -7692744 0 0 -7692793 64 0 -7692916 0 0 -7695979 totRewards = 22 -7695979 128 16 -7696155 0 16 -7696179 0 0 -7696202 128 0 -7696409 0 0 -7696454 128 0 -7696545 0 0 -7696610 128 0 -7696807 0 0 -7696843 128 0 -7696940 0 0 -7697002 128 0 -7697228 0 0 -7697253 128 0 -7697365 0 0 -7697397 128 0 -7697511 0 0 -7697525 128 0 -7697646 0 0 -7697669 128 0 -7697800 0 0 -7697833 128 0 -7697956 0 0 -7697992 128 0 -7698120 0 0 -7698153 128 0 -7698280 0 0 -7698325 128 0 -7698442 0 0 -7698497 128 0 -7698624 0 0 -7698670 128 0 -7698792 0 0 -7698847 128 0 -7698956 0 0 -7699030 128 0 -7699117 0 0 -7699171 128 0 -7699287 0 0 -7699334 128 0 -7699449 0 0 -7699513 128 0 -7699611 0 0 -7699673 128 0 -7699780 0 0 -7699832 128 0 -7699949 0 0 -7700006 128 0 -7700113 0 0 -7700189 128 0 -7700266 0 0 -7703088 totRewards = 23 -7703088 64 8 -7703250 0 8 -7703277 64 8 -7703288 64 0 -7704632 0 0 -7704645 64 0 -7705600 0 0 -7705615 64 0 -7705765 0 0 -7705782 64 0 -7705935 0 0 -7705961 64 0 -7706103 0 0 -7706131 64 0 -7706267 0 0 -7706301 64 0 -7706431 0 0 -7706463 64 0 -7706601 0 0 -7706627 64 0 -7706764 0 0 -7706802 64 0 -7706930 0 0 -7706960 64 0 -7707407 0 0 -7707434 64 0 -7707562 0 0 -7707602 64 0 -7707904 0 0 -7707925 64 0 -7708075 0 0 -7708098 64 0 -7708229 0 0 -7708267 64 0 -7708371 0 0 -7711071 totRewards = 24 -7711071 128 16 -7711271 128 0 -7711287 0 0 -7711335 128 0 -7711541 0 0 -7711554 128 0 -7711669 0 0 -7711743 128 0 -7711797 0 0 -7711821 128 0 -7711918 0 0 -7711963 128 0 -7712057 0 0 -7712115 128 0 -7712350 0 0 -7712367 128 0 -7712487 0 0 -7712521 128 0 -7712797 0 0 -7712815 128 0 -7712933 0 0 -7712969 128 0 -7713089 0 0 -7713123 128 0 -7713252 0 0 -7713285 128 0 -7713398 0 0 -7713450 128 0 -7713560 0 0 -7713617 128 0 -7713738 0 0 -7713793 128 0 -7713912 0 0 -7713974 128 0 -7714078 0 0 -7714139 128 0 -7714242 0 0 -7714298 128 0 -7714402 0 0 -7714450 128 0 -7714556 0 0 -7714619 128 0 -7714715 0 0 -7714786 128 0 -7714871 0 0 -7714940 128 0 -7715030 0 0 -7715110 128 0 -7715204 0 0 -7715820 128 0 -7715841 0 0 -7715880 128 0 -7715896 0 0 -7716042 128 0 -7716050 0 0 -7718859 totRewards = 25 -7718859 64 8 -7719037 0 8 -7719059 0 0 -7719070 64 0 -7720252 0 0 -7720271 64 0 -7721045 0 0 -7721052 64 0 -7721203 0 0 -7721223 64 0 -7721865 0 0 -7721906 64 0 -7722021 0 0 -7722069 64 0 -7722175 0 0 -7724820 totRewards = 26 -7724820 128 16 -7725007 0 16 -7725020 0 0 -7725058 128 0 -7725272 0 0 -7725298 128 0 -7725406 0 0 -7725460 128 0 -7725661 0 0 -7725701 128 0 -7725799 0 0 -7725877 128 0 -7726100 0 0 -7726104 128 0 -7726227 0 0 -7726259 128 0 -7726377 0 0 -7726398 128 0 -7726533 0 0 -7726549 128 0 -7726683 0 0 -7726707 128 0 -7726844 0 0 -7726875 128 0 -7727015 0 0 -7727044 128 0 -7727172 0 0 -7727210 128 0 -7727333 0 0 -7727378 128 0 -7727492 0 0 -7727541 128 0 -7727649 0 0 -7727701 128 0 -7727819 0 0 -7727862 128 0 -7727984 0 0 -7728027 128 0 -7728146 0 0 -7728201 128 0 -7728307 0 0 -7728367 128 0 -7728477 0 0 -7728526 128 0 -7728646 0 0 -7728696 128 0 -7728805 0 0 -7728869 128 0 -7728900 0 0 -7728928 128 0 -7728972 0 0 -7729027 128 0 -7729129 0 0 -7729183 128 0 -7729286 0 0 -7729366 128 0 -7729498 0 0 -7729527 128 0 -7729646 0 0 -7729719 128 0 -7729814 0 0 -7729893 128 0 -7729988 0 0 -7730070 128 0 -7730141 0 0 -7732750 totRewards = 27 -7732750 64 8 -7732939 0 8 -7732950 0 0 -7732966 64 0 -7734138 0 0 -7734147 64 0 -7735096 0 0 -7735122 64 0 -7735434 0 0 -7735464 64 0 -7735589 0 0 -7735614 64 0 -7735744 0 0 -7735773 64 0 -7735913 0 0 -7735933 64 0 -7736087 0 0 -7736097 64 0 -7737351 0 0 -7737358 64 0 -7737527 0 0 -7737563 64 0 -7737905 0 0 -7737973 64 0 -7738060 0 0 -7738711 64 0 -7739104 0 0 -7739144 64 0 -7739275 0 0 -7739310 64 0 -7740248 0 0 -7740276 64 0 -7740402 0 0 -7740424 64 0 -7740623 0 0 -7740657 64 0 -7740921 0 0 -7740929 64 0 -7741081 0 0 -7741115 64 0 -7741257 0 0 -7741299 64 0 -7741393 0 0 -7744012 totRewards = 28 -7744012 128 16 -7744190 0 16 -7744212 0 0 -7744254 128 0 -7744591 0 0 -7744627 128 0 -7744754 0 0 -7744772 128 0 -7744882 0 0 -7744909 128 0 -7745016 0 0 -7745054 128 0 -7745173 0 0 -7745180 128 0 -7745316 0 0 -7745325 128 0 -7745451 0 0 -7745473 128 0 -7745605 0 0 -7745616 128 0 -7745755 0 0 -7745777 128 0 -7745908 0 0 -7745937 128 0 -7746070 0 0 -7746103 128 0 -7746228 0 0 -7746259 128 0 -7746394 0 0 -7746433 128 0 -7746551 0 0 -7746597 128 0 -7746711 0 0 -7746764 128 0 -7746864 0 0 -7746912 128 0 -7747023 0 0 -7747070 128 0 -7747181 0 0 -7747240 128 0 -7747344 0 0 -7747394 128 0 -7747508 0 0 -7747557 128 0 -7747668 0 0 -7747717 128 0 -7747845 0 0 -7747893 128 0 -7748015 0 0 -7748073 128 0 -7748178 0 0 -7748248 128 0 -7748328 0 0 -7751119 totRewards = 29 -7751119 64 8 -7751284 0 8 -7751297 64 8 -7751319 64 0 -7751936 0 0 -7751944 64 0 -7752075 0 0 -7752081 64 0 -7752352 0 0 -7752369 64 0 -7752495 0 0 -7752509 64 0 -7753308 0 0 -7753311 64 0 -7753472 0 0 -7753484 64 0 -7753615 0 0 -7753653 64 0 -7753782 0 0 -7753808 64 0 -7753948 0 0 -7753967 64 0 -7754108 0 0 -7754132 64 0 -7754263 0 0 -7754300 64 0 -7754433 0 0 -7754457 64 0 -7754590 0 0 -7754618 64 0 -7754934 0 0 -7754951 64 0 -7755096 0 0 -7755117 64 0 -7755269 0 0 -7755280 64 0 -7755421 0 0 -7755464 64 0 -7755583 0 0 -7755614 64 0 -7756426 0 0 -7756435 64 0 -7756575 0 0 -7756621 64 0 -7756735 0 0 -7759346 totRewards = 30 -7759346 128 16 -7759546 128 0 -7759735 0 0 -7759828 128 0 -7759895 0 0 -7760019 128 0 -7760549 0 0 -7760573 128 0 -7761183 0 0 -7761278 128 0 -7761837 0 0 -7761971 128 0 -7762397 0 0 -7770968 128 0 -7771508 0 0 -7771516 128 0 -7771520 0 0 -7771594 128 0 -7771670 0 0 -7778279 128 0 -7778726 0 0 -7778810 128 0 -7781612 0 0 -7781679 128 0 -7781859 0 0 -7781952 128 0 -7782647 0 0 -7782660 128 0 -7783611 0 0 -7783695 128 0 -7783820 0 0 -7783904 128 0 -7784028 0 0 -7784715 128 0 -7784748 0 0 -7784815 128 0 -7784963 0 0 -7784972 128 0 -7785128 0 0 -7785171 128 0 -7785323 0 0 -7785332 128 0 -7785458 0 0 -7785567 128 0 -7785644 0 0 -7785652 128 0 -7785984 0 0 -7786006 128 0 -7786181 0 0 -7798709 128 0 -7799137 0 0 -7799197 128 0 -7799717 0 0 -7799733 128 0 -7799853 0 0 -7799891 128 0 -7800003 0 0 -7800048 128 0 -7800153 0 0 -7800200 128 0 -7800302 0 0 -7800347 128 0 -7800452 0 0 -7800500 128 0 -7800618 0 0 -7803661 128 0 -7803970 0 0 -7804004 128 0 -7804144 0 0 -7813162 128 0 -7813218 0 0 -7813406 128 0 -7813806 0 0 -7813875 128 0 -7814107 0 0 -7823391 totRewards = 31 -7823391 64 8 -7823591 64 0 -7823656 0 0 -7823671 64 0 -7823881 0 0 -7823897 64 0 -7826008 0 0 -7826037 64 0 -7827566 0 0 -7827573 64 0 -7828584 0 0 -7828620 64 0 -7828743 0 0 -7834990 totRewards = 32 -7834990 128 16 -7835139 0 16 -7835167 128 16 -7835190 128 0 -7835449 0 0 -7835485 128 0 -7835835 0 0 -7835868 128 0 -7836110 0 0 -7836120 128 0 -7836236 0 0 -7836256 128 0 -7836367 0 0 -7836396 128 0 -7836513 0 0 -7836531 128 0 -7836651 0 0 -7836676 128 0 -7836789 0 0 -7836818 128 0 -7836938 0 0 -7836957 128 0 -7837076 0 0 -7837105 128 0 -7837232 0 0 -7837258 128 0 -7837401 0 0 -7837432 128 0 -7837572 0 0 -7837608 128 0 -7837734 0 0 -7837774 128 0 -7837900 0 0 -7837949 128 0 -7838076 0 0 -7838119 128 0 -7838241 0 0 -7838288 128 0 -7838407 0 0 -7838416 128 0 -7839140 0 0 -7839167 128 0 -7839306 0 0 -7839334 128 0 -7839474 0 0 -7839510 128 0 -7839648 0 0 -7839695 128 0 -7839813 0 0 -7839849 128 0 -7839976 0 0 -7843754 totRewards = 33 -7843754 64 8 -7843954 64 0 -7843967 0 0 -7843973 64 0 -7845978 0 0 -7845984 64 0 -7846131 0 0 -7846155 64 0 -7846469 0 0 -7846491 64 0 -7846622 0 0 -7846657 64 0 -7846788 0 0 -7846799 64 0 -7847249 0 0 -7847271 64 0 -7847410 0 0 -7847455 64 0 -7847541 0 0 -7850856 totRewards = 34 -7850856 128 16 -7851040 0 16 -7851056 0 0 -7851101 128 0 -7851704 0 0 -7851731 128 0 -7851818 0 0 -7851873 128 0 -7851970 0 0 -7851982 128 0 -7852120 0 0 -7852136 128 0 -7852248 0 0 -7852280 128 0 -7852389 0 0 -7852411 128 0 -7852683 0 0 -7852708 128 0 -7852833 0 0 -7852864 128 0 -7852987 0 0 -7853024 128 0 -7853146 0 0 -7853179 128 0 -7853313 0 0 -7853358 128 0 -7853472 0 0 -7853527 128 0 -7853635 0 0 -7853698 128 0 -7853797 0 0 -7853859 128 0 -7853955 0 0 -7854006 128 0 -7854110 0 0 -7854161 128 0 -7854262 0 0 -7854311 128 0 -7854419 0 0 -7854471 128 0 -7854573 0 0 -7854639 128 0 -7854738 0 0 -7854791 128 0 -7854898 0 0 -7854946 128 0 -7855057 0 0 -7855109 128 0 -7855227 0 0 -7855280 128 0 -7855404 0 0 -7855464 128 0 -7855564 0 0 -7855679 128 0 -7855711 0 0 -7858818 totRewards = 35 -7858818 64 8 -7859018 64 0 -7859614 0 0 -7859624 64 0 -7860163 0 0 -7860171 64 0 -7861607 0 0 -7861621 64 0 -7861768 0 0 -7861798 64 0 -7861923 0 0 -7861961 64 0 -7862077 0 0 -7862128 64 0 -7862227 0 0 -7865126 totRewards = 36 -7865126 128 16 -7865323 0 16 -7865326 0 0 -7865400 128 0 -7865601 0 0 -7865621 128 0 -7865723 0 0 -7865770 128 0 -7865984 0 0 -7866016 128 0 -7866108 0 0 -7866176 128 0 -7866543 0 0 -7866580 128 0 -7866846 0 0 -7866872 128 0 -7866999 0 0 -7867032 128 0 -7867154 0 0 -7867201 128 0 -7867325 0 0 -7867359 128 0 -7867483 0 0 -7867533 128 0 -7867646 0 0 -7867703 128 0 -7867828 0 0 -7867875 128 0 -7867993 0 0 -7868049 128 0 -7868165 0 0 -7868226 128 0 -7868323 0 0 -7868378 128 0 -7868473 0 0 -7868524 128 0 -7868631 0 0 -7868678 128 0 -7868784 0 0 -7868845 128 0 -7868939 0 0 -7869007 128 0 -7869106 0 0 -7869153 128 0 -7869260 0 0 -7869319 128 0 -7869430 0 0 -7869482 128 0 -7869593 0 0 -7869658 128 0 -7869757 0 0 -7869825 128 0 -7869914 0 0 -7870005 128 0 -7870057 0 0 -7873030 totRewards = 37 -7873030 64 8 -7873229 0 8 -7873230 0 0 -7873246 64 0 -7873983 0 0 -7874009 64 0 -7875354 0 0 -7875365 64 0 -7875515 0 0 -7875533 64 0 -7875672 0 0 -7875697 64 0 -7875846 0 0 -7875866 64 0 -7875997 0 0 -7876036 64 0 -7876162 0 0 -7876199 64 0 -7876323 0 0 -7876361 64 0 -7876488 0 0 -7876523 64 0 -7876651 0 0 -7876694 64 0 -7876820 0 0 -7876857 64 0 -7877649 0 0 -7877665 64 0 -7877800 0 0 -7877838 64 0 -7877965 0 0 -7878018 64 0 -7878114 0 0 -7881030 totRewards = 38 -7881030 128 16 -7881192 0 16 -7881230 0 0 -7881250 128 0 -7881470 0 0 -7881478 128 0 -7881591 0 0 -7881617 128 0 -7881863 0 0 -7881878 128 0 -7881978 0 0 -7882035 128 0 -7882400 0 0 -7882433 128 0 -7882567 0 0 -7882573 128 0 -7882714 0 0 -7882749 128 0 -7882875 0 0 -7882921 128 0 -7883043 0 0 -7883089 128 0 -7883214 0 0 -7883259 128 0 -7883386 0 0 -7883443 128 0 -7883561 0 0 -7883614 128 0 -7883727 0 0 -7883786 128 0 -7883878 0 0 -7883938 128 0 -7884042 0 0 -7884087 128 0 -7884198 0 0 -7884250 128 0 -7884353 0 0 -7884421 128 0 -7884510 0 0 -7884579 128 0 -7884678 0 0 -7884729 128 0 -7884846 0 0 -7884901 128 0 -7885012 0 0 -7885074 128 0 -7885174 0 0 -7885254 128 0 -7885376 0 0 -7885445 128 0 -7885529 0 0 -7889531 totRewards = 39 -7889531 64 8 -7889731 64 0 -7889761 0 0 -7889764 64 0 -7890353 0 0 -7890374 64 0 -7890499 0 0 -7890505 64 0 -7891707 0 0 -7891730 64 0 -7891877 0 0 -7891911 64 0 -7892050 0 0 -7892082 64 0 -7892211 0 0 -7892240 64 0 -7892367 0 0 -7892404 64 0 -7892531 0 0 -7892563 64 0 -7892695 0 0 -7892722 64 0 -7892868 0 0 -7892883 64 0 -7893208 0 0 -7893218 64 0 -7893348 0 0 -7893404 64 0 -7893488 0 0 -7896150 totRewards = 40 -7896150 128 16 -7896337 0 16 -7896350 0 0 -7896384 128 0 -7896596 0 0 -7896620 128 0 -7896725 0 0 -7896772 128 0 -7896980 0 0 -7897027 128 0 -7897108 0 0 -7897185 128 0 -7897545 0 0 -7897579 128 0 -7897712 0 0 -7897731 128 0 -7897867 0 0 -7897894 128 0 -7898018 0 0 -7898067 128 0 -7898187 0 0 -7898232 128 0 -7898352 0 0 -7898399 128 0 -7898507 0 0 -7898565 128 0 -7898657 0 0 -7898710 128 0 -7898815 0 0 -7898868 128 0 -7898969 0 0 -7899036 128 0 -7899125 0 0 -7899188 128 0 -7899299 0 0 -7899344 128 0 -7899457 0 0 -7899515 128 0 -7899621 0 0 -7899682 128 0 -7899788 0 0 -7899857 128 0 -7899953 0 0 -7900013 128 0 -7900115 0 0 -7900169 128 0 -7900275 0 0 -7900326 128 0 -7900429 0 0 -7900508 128 0 -7900621 0 0 -7900688 128 0 -7900791 0 0 -7900863 128 0 -7900965 0 0 -7901007 128 0 -7901129 0 0 -7901172 128 0 -7901285 0 0 -7901351 128 0 -7901449 0 0 -7901514 128 0 -7901622 0 0 -7901668 128 0 -7901786 0 0 -7901853 128 0 -7901936 0 0 -7902059 128 0 -7902084 0 0 -7902107 128 0 -7902161 0 0 -7902279 128 0 -7902313 0 0 -7902412 128 0 -7902446 0 0 -7902466 128 0 -7902507 0 0 -7902598 128 0 -7902669 0 0 -7905547 totRewards = 41 -7905547 64 8 -7905735 0 8 -7905747 0 0 -7905759 64 0 -7907837 0 0 -7907860 64 0 -7908013 0 0 -7908024 64 0 -7908328 0 0 -7908367 64 0 -7908481 0 0 -7908518 64 0 -7908635 0 0 -7908672 64 0 -7908961 0 0 -7908986 64 0 -7909114 0 0 -7909176 64 0 -7909231 0 0 -7912019 totRewards = 42 -7912019 128 16 -7912212 0 16 -7912219 0 0 -7912264 128 0 -7912454 0 0 -7912500 128 0 -7912588 0 0 -7912638 128 0 -7912841 0 0 -7912888 128 0 -7912974 0 0 -7913041 128 0 -7913413 0 0 -7913441 128 0 -7913699 0 0 -7913724 128 0 -7913853 0 0 -7913892 128 0 -7914005 0 0 -7914050 128 0 -7914171 0 0 -7914219 128 0 -7914337 0 0 -7914389 128 0 -7914507 0 0 -7914563 128 0 -7914681 0 0 -7914727 128 0 -7914842 0 0 -7914893 128 0 -7915001 0 0 -7915035 128 0 -7915167 0 0 -7915171 128 0 -7915299 0 0 -7915335 128 0 -7915457 0 0 -7915495 128 0 -7915616 0 0 -7915664 128 0 -7915808 0 0 -7915834 128 0 -7915970 0 0 -7916001 128 0 -7916121 0 0 -7916177 128 0 -7916274 0 0 -7919172 totRewards = 43 -7919172 64 8 -7919351 0 8 -7919359 64 8 -7919372 64 0 -7920098 0 0 -7920116 64 0 -7921447 0 0 -7921461 64 0 -7921602 0 0 -7921630 64 0 -7921769 0 0 -7921793 64 0 -7921947 0 0 -7921962 64 0 -7922118 0 0 -7922136 64 0 -7922270 0 0 -7922304 64 0 -7922761 0 0 -7922779 64 0 -7922919 0 0 -7922952 64 0 -7923096 0 0 -7923111 64 0 -7923239 0 0 -7923269 64 0 -7924484 0 0 -7927363 totRewards = 44 -7927363 128 16 -7927531 0 16 -7927563 0 0 -7927599 128 0 -7927793 0 0 -7927820 128 0 -7927920 0 0 -7927987 128 0 -7928176 0 0 -7928212 128 0 -7928306 0 0 -7928369 128 0 -7928592 0 0 -7928607 128 0 -7928731 0 0 -7928766 128 0 -7929039 0 0 -7929058 128 0 -7929183 0 0 -7929227 128 0 -7929342 0 0 -7929388 128 0 -7929500 0 0 -7929543 128 0 -7929670 0 0 -7929713 128 0 -7929829 0 0 -7929884 128 0 -7929990 0 0 -7930047 128 0 -7930145 0 0 -7930196 128 0 -7930300 0 0 -7930357 128 0 -7930465 0 0 -7930507 128 0 -7930622 0 0 -7930675 128 0 -7930784 0 0 -7930844 128 0 -7930943 0 0 -7931008 128 0 -7931097 0 0 -7931161 128 0 -7931267 0 0 -7931325 128 0 -7931412 0 0 -7931479 128 0 -7931537 0 0 -7931635 128 0 -7931736 0 0 -7931802 128 0 -7931882 0 0 -7932056 128 0 -7932077 0 0 -7932323 128 0 -7932341 0 0 -7932532 128 0 -7932567 0 0 -7932648 128 0 -7932722 0 0 -7932796 128 0 -7932900 0 0 -7932956 128 0 -7933070 0 0 -7933137 128 0 -7933227 0 0 -7933318 128 0 -7933372 0 0 -7936145 totRewards = 45 -7936145 64 8 -7936331 0 8 -7936345 0 0 -7936351 64 0 -7938670 0 0 -7938678 64 0 -7938832 0 0 -7938847 64 0 -7938994 0 0 -7939027 64 0 -7939141 0 0 -7939184 64 0 -7939299 0 0 -7939351 64 0 -7939445 0 0 -7942321 totRewards = 46 -7942321 128 16 -7942500 0 16 -7942521 0 0 -7942553 128 0 -7942738 0 0 -7942769 128 0 -7942881 0 0 -7942940 128 0 -7943134 0 0 -7943169 128 0 -7943260 0 0 -7943329 128 0 -7943406 0 0 -7943421 128 0 -7943545 0 0 -7943563 128 0 -7943677 0 0 -7943703 128 0 -7944125 0 0 -7944158 128 0 -7944284 0 0 -7944305 128 0 -7944442 0 0 -7944471 128 0 -7944599 0 0 -7944643 128 0 -7944760 0 0 -7944816 128 0 -7944939 0 0 -7944984 128 0 -7945100 0 0 -7945140 128 0 -7945255 0 0 -7945301 128 0 -7945571 0 0 -7945586 128 0 -7945718 0 0 -7945760 128 0 -7945882 0 0 -7945921 128 0 -7946053 0 0 -7946086 128 0 -7946220 0 0 -7946260 128 0 -7946378 0 0 -7946433 128 0 -7946524 0 0 -7946612 128 0 -7946674 0 0 -7949564 totRewards = 47 -7949564 64 8 -7949764 64 0 -7949764 0 0 -7949783 64 0 -7950950 0 0 -7950954 64 0 -7952222 0 0 -7952250 64 0 -7952562 0 0 -7952598 64 0 -7952723 0 0 -7952758 64 0 -7952880 0 0 -7952917 64 0 -7953050 0 0 -7953078 64 0 -7953208 0 0 -7953249 64 0 -7953367 0 0 -7953409 64 0 -7953523 0 0 -7956542 totRewards = 48 -7956542 128 16 -7956715 0 16 -7956742 0 0 -7956753 128 0 -7956970 0 0 -7956992 128 0 -7957107 0 0 -7957183 128 0 -7957352 0 0 -7957394 128 0 -7957491 0 0 -7957533 128 0 -7957780 0 0 -7957798 128 0 -7957913 0 0 -7957946 128 0 -7958058 0 0 -7958090 128 0 -7958212 0 0 -7958231 128 0 -7958357 0 0 -7958393 128 0 -7958511 0 0 -7958556 128 0 -7958677 0 0 -7958711 128 0 -7958833 0 0 -7958875 128 0 -7959005 0 0 -7959060 128 0 -7959173 0 0 -7959226 128 0 -7959332 0 0 -7959383 128 0 -7959499 0 0 -7959552 128 0 -7959658 0 0 -7959717 128 0 -7959818 0 0 -7959877 128 0 -7959959 0 0 -7960024 128 0 -7960140 0 0 -7960205 128 0 -7960301 0 0 -7960365 128 0 -7960469 0 0 -7960524 128 0 -7960599 0 0 -7960686 128 0 -7960810 0 0 -7960851 128 0 -7960962 0 0 -7961027 128 0 -7961117 0 0 -7961204 128 0 -7961295 0 0 -7964706 totRewards = 49 -7964706 64 8 -7964906 64 0 -7966868 0 0 -7966880 64 0 -7967019 0 0 -7967049 64 0 -7967179 0 0 -7967224 64 0 -7967335 0 0 -7967369 64 0 -7967490 0 0 -7967521 64 0 -7967649 0 0 -7967681 64 0 -7967814 0 0 -7967829 64 0 -7968780 0 0 -7968795 64 0 -7968925 0 0 -7968947 64 0 -7969095 0 0 -7969109 64 0 -7969456 0 0 -7969478 64 0 -7969615 0 0 -7969659 64 0 -7969793 0 0 -7969820 64 0 -7969943 0 0 -7969988 64 0 -7970089 0 0 -7970199 64 0 -7970210 0 0 -7972772 totRewards = 50 -7972772 128 16 -7972924 0 16 -7972972 0 0 -7972975 128 0 -7973169 0 0 -7973199 128 0 -7973306 0 0 -7973375 128 0 -7973442 0 0 -7973458 128 0 -7973560 0 0 -7973591 128 0 -7973689 0 0 -7973740 128 0 -7973845 0 0 -7973852 128 0 -7973973 0 0 -7973988 128 0 -7974111 0 0 -7974138 128 0 -7974403 0 0 -7974429 128 0 -7974551 0 0 -7974581 128 0 -7974707 0 0 -7974748 128 0 -7974875 0 0 -7974905 128 0 -7975034 0 0 -7975077 128 0 -7975198 0 0 -7975249 128 0 -7975365 0 0 -7975419 128 0 -7975531 0 0 -7975595 128 0 -7975677 0 0 -7975763 128 0 -7975835 0 0 -7975909 128 0 -7976004 0 0 -7976053 128 0 -7976170 0 0 -7976219 128 0 -7976333 0 0 -7976381 128 0 -7976490 0 0 -7976543 128 0 -7976648 0 0 -7976714 128 0 -7976793 0 0 -7976870 128 0 -7977000 0 0 -7977036 128 0 -7977156 0 0 -7977203 128 0 -7977313 0 0 -7977377 128 0 -7977451 0 0 -7981685 totRewards = 51 -7981685 64 8 -7981885 64 0 -7982588 0 0 -7982597 64 0 -7983005 0 0 -7983015 64 0 -7983943 0 0 -7983946 64 0 -7984103 0 0 -7984115 64 0 -7984423 0 0 -7984436 64 0 -7984579 0 0 -7984609 64 0 -7984738 0 0 -7984769 64 0 -7984903 0 0 -7984939 64 0 -7985073 0 0 -7985101 64 0 -7985231 0 0 -7985272 64 0 -7985729 0 0 -7985747 64 0 -7985888 0 0 -7985924 64 0 -7986047 0 0 -7988662 totRewards = 52 -7988662 128 16 -7988827 0 16 -7988862 0 0 -7988878 128 0 -7989246 0 0 -7989346 128 0 -7991807 0 0 -7991816 128 0 -7991952 0 0 -7991975 128 0 -7992111 0 0 -7992124 128 0 -7992438 0 0 -7992463 128 0 -7992593 0 0 -7992639 128 0 -7992759 0 0 -7992802 128 0 -7992925 0 0 -7992971 128 0 -7993465 0 0 -7993499 128 0 -7993632 0 0 -7993687 128 0 -7993808 0 0 -7993866 128 0 -7993991 0 0 -7994042 128 0 -7994185 0 0 -7994196 128 0 -7994335 0 0 -7994388 128 0 -7994508 0 0 -7994574 128 0 -7995282 0 0 -7995287 128 0 -7995764 0 0 -7995792 128 0 -7995933 0 0 -7995977 128 0 -7996111 0 0 -7996148 128 0 -7996268 0 0 -7996308 128 0 -7996426 0 0 -7996479 128 0 -7996596 0 0 -7996641 128 0 -7996771 0 0 -8003049 128 0 -8003174 0 0 -8012705 128 0 -8012750 0 0 -8012815 128 0 -8013021 0 0 -8013046 128 0 -8013889 0 0 -8013917 128 0 -8014030 0 0 -8014079 128 0 -8014189 0 0 -8014207 128 0 -8014319 0 0 -8014357 128 0 -8014470 0 0 -8014499 128 0 -8014621 0 0 -8014665 128 0 -8014770 0 0 -8014835 128 0 -8014905 0 0 -8018396 totRewards = 53 -8018396 64 8 -8018426 0 8 -8018596 0 0 -8029486 64 0 -8029770 0 0 -8029782 64 0 -8031102 0 0 -8031129 64 0 -8031239 0 0 -8031275 64 0 -8031387 0 0 -8031407 64 0 -8031872 0 0 -8035335 64 0 -8035389 0 0 -8035423 64 0 -8036330 0 0 -8036340 64 0 -8036844 0 0 -8036869 64 0 -8037008 0 0 -8037055 64 0 -8037175 0 0 -8037229 64 0 -8037354 0 0 -8037464 64 0 -8037474 0 0 -8037506 64 0 -8037540 0 0 -8049713 totRewards = 54 -8049713 128 16 -8049913 128 0 -8050505 0 0 -8050526 128 0 -8051015 0 0 -8051041 128 0 -8051141 0 0 -8051158 128 0 -8051416 0 0 -8051437 128 0 -8051560 0 0 -8051581 128 0 -8051855 0 0 -8051871 128 0 -8052000 0 0 -8052022 128 0 -8052139 0 0 -8052167 128 0 -8052305 0 0 -8052329 128 0 -8052466 0 0 -8052493 128 0 -8052619 0 0 -8052656 128 0 -8052774 0 0 -8052811 128 0 -8052924 0 0 -8052965 128 0 -8053087 0 0 -8053103 128 0 -8053224 0 0 -8053249 128 0 -8053366 0 0 -8053395 128 0 -8053517 0 0 -8053547 128 0 -8053678 0 0 -8053717 128 0 -8053852 0 0 -8053873 128 0 -8054015 0 0 -8054053 128 0 -8054193 0 0 -8054221 128 0 -8054373 0 0 -8054400 128 0 -8054531 0 0 -8054567 128 0 -8054690 0 0 -8054743 128 0 -8054853 0 0 -8054910 128 0 -8055035 0 0 -8055094 128 0 -8055216 0 0 -8055413 128 0 -8055504 0 0 -8055572 128 0 -8055618 0 0 -8055718 128 0 -8055755 0 0 -8061519 totRewards = 55 -8061519 64 8 -8061719 64 0 -8061777 0 0 -8061799 64 0 -8063502 0 0 -8063517 64 0 -8064335 0 0 -8064354 64 0 -8064518 0 0 -8064529 64 0 -8065104 0 0 -8065129 64 0 -8065785 0 0 -8077601 totRewards = 56 -8077601 128 16 -8077801 128 0 -8078493 0 0 -8078510 128 0 -8078622 0 0 -8078650 128 0 -8078743 0 0 -8078774 128 0 -8078881 0 0 -8078908 128 0 -8079013 0 0 -8079045 128 0 -8079142 0 0 -8079173 128 0 -8079283 0 0 -8079310 128 0 -8079433 0 0 -8079451 128 0 -8079573 0 0 -8079611 128 0 -8079718 0 0 -8079758 128 0 -8079866 0 0 -8079905 128 0 -8080022 0 0 -8080066 128 0 -8080183 0 0 -8080227 128 0 -8080339 0 0 -8080389 128 0 -8080491 0 0 -8080553 128 0 -8080649 0 0 -8080719 128 0 -8080818 0 0 -8080946 128 0 -8080976 0 0 -8081195 128 0 -8081288 0 0 -8081325 128 0 -8081467 0 0 -8081510 128 0 -8081636 0 0 -8081676 128 0 -8081799 0 0 -8081841 128 0 -8081958 0 0 -8082018 128 0 -8082121 0 0 -8092708 totRewards = 57 -8092708 64 8 -8092908 64 0 -8095791 0 0 -8095819 64 0 -8096103 0 0 -8096113 64 0 -8096566 0 0 -8096612 64 0 -8096710 0 0 -8100081 totRewards = 58 -8100081 128 16 -8100281 128 0 -8100404 0 0 -8100420 128 0 -8100991 0 0 -8101042 128 0 -8101131 0 0 -8101144 128 0 -8101266 0 0 -8101286 128 0 -8101388 0 0 -8101425 128 0 -8101522 0 0 -8101555 128 0 -8101661 0 0 -8101688 128 0 -8101800 0 0 -8101834 128 0 -8101953 0 0 -8101980 128 0 -8102091 0 0 -8102123 128 0 -8102243 0 0 -8102279 128 0 -8102395 0 0 -8102443 128 0 -8102553 0 0 -8102605 128 0 -8102715 0 0 -8102763 128 0 -8102889 0 0 -8102933 128 0 -8103060 0 0 -8103111 128 0 -8103224 0 0 -8103278 128 0 -8103379 0 0 -8103443 128 0 -8103517 0 0 -8103594 128 0 -8103673 0 0 -8103731 128 0 -8103846 0 0 -8103892 128 0 -8103998 0 0 -8104059 128 0 -8104153 0 0 -8104204 128 0 -8104318 0 0 -8104354 128 0 -8104477 0 0 -8104525 128 0 -8104631 0 0 -8104704 128 0 -8104783 0 0 -8108593 totRewards = 59 -8108593 64 8 -8108793 64 0 -8108799 0 0 -8108811 64 0 -8111156 0 0 -8111170 64 0 -8111314 0 0 -8111343 64 0 -8111490 0 0 -8111510 64 0 -8111661 0 0 -8111690 64 0 -8111819 0 0 -8111864 64 0 -8111972 0 0 -8112035 64 0 -8112134 0 0 -8112172 64 0 -8112310 0 0 -8112334 64 0 -8112490 0 0 -8112505 64 0 -8112655 0 0 -8112709 64 0 -8112827 0 0 -8117626 totRewards = 60 -8117626 128 16 -8117820 0 16 -8117826 0 0 -8117853 128 0 -8118305 0 0 -8118321 128 0 -8118555 0 0 -8118585 128 0 -8118702 0 0 -8118719 128 0 -8118837 0 0 -8118852 128 0 -8118967 0 0 -8118993 128 0 -8119114 0 0 -8119139 128 0 -8119261 0 0 -8119287 128 0 -8119405 0 0 -8119440 128 0 -8119556 0 0 -8119597 128 0 -8119716 0 0 -8119756 128 0 -8119872 0 0 -8119918 128 0 -8120035 0 0 -8120086 128 0 -8120199 0 0 -8120246 128 0 -8120351 0 0 -8120409 128 0 -8120503 0 0 -8120552 128 0 -8120659 0 0 -8120715 128 0 -8120828 0 0 -8120875 128 0 -8120988 0 0 -8121041 128 0 -8121145 0 0 -8121214 128 0 -8121281 0 0 -8121380 128 0 -8121399 0 0 -8121411 128 0 -8121433 0 0 -8124531 totRewards = 61 -8124531 64 8 -8124716 0 8 -8124731 0 0 -8124742 64 0 -8126943 0 0 -8126968 64 0 -8127102 0 0 -8127143 64 0 -8127261 0 0 -8127308 64 0 -8127422 0 0 -8127458 64 0 -8127601 0 0 -8127621 64 0 -8127761 0 0 -8127820 64 0 -8127913 0 0 -8127977 64 0 -8128253 0 0 -8131322 totRewards = 62 -8131322 128 16 -8131479 0 16 -8131522 0 0 -8131568 128 0 -8132034 0 0 -8132047 128 0 -8132175 0 0 -8132196 128 0 -8132282 0 0 -8132322 128 0 -8132579 0 0 -8132593 128 0 -8132716 0 0 -8132740 128 0 -8133001 0 0 -8133032 128 0 -8133158 0 0 -8133175 128 0 -8133309 0 0 -8133344 128 0 -8133467 0 0 -8133512 128 0 -8133626 0 0 -8133676 128 0 -8133793 0 0 -8133841 128 0 -8133966 0 0 -8134005 128 0 -8134131 0 0 -8134185 128 0 -8134292 0 0 -8134349 128 0 -8134446 0 0 -8134504 128 0 -8134604 0 0 -8134655 128 0 -8134760 0 0 -8134813 128 0 -8134926 0 0 -8134974 128 0 -8135090 0 0 -8135148 128 0 -8135258 0 0 -8135337 128 0 -8135361 0 0 -8138305 totRewards = 63 -8138305 64 8 -8138458 0 8 -8138475 64 8 -8138505 64 0 -8139198 0 0 -8139210 64 0 -8140671 0 0 -8140689 64 0 -8140842 0 0 -8140861 64 0 -8141008 0 0 -8141038 64 0 -8141176 0 0 -8141220 64 0 -8141349 0 0 -8141402 64 0 -8141509 0 0 -8148584 totRewards = 64 -8148584 128 16 -8148780 0 16 -8148784 0 0 -8148912 128 0 -8149943 0 0 -8149947 128 0 -8150647 0 0 -8150658 128 0 -8151120 0 0 -8151142 128 0 -8151270 0 0 -8151293 128 0 -8151431 0 0 -8151442 128 0 -8151581 0 0 -8151625 128 0 -8151743 0 0 -8151794 128 0 -8151916 0 0 -8151959 128 0 -8152075 0 0 -8152120 128 0 -8152232 0 0 -8152282 128 0 -8152391 0 0 -8152447 128 0 -8152554 0 0 -8152612 128 0 -8152718 0 0 -8152774 128 0 -8152869 0 0 -8152937 128 0 -8153042 0 0 -8153086 128 0 -8153195 0 0 -8153247 128 0 -8153363 0 0 -8153412 128 0 -8153521 0 0 -8153569 128 0 -8153674 0 0 -8153725 128 0 -8153825 0 0 -8157369 128 0 -8157382 0 0 -8169714 totRewards = 65 -8169714 64 8 -8169914 64 0 -8170381 0 0 -8170395 64 0 -8170508 0 0 -8170520 64 0 -8170632 0 0 -8170651 64 0 -8170757 0 0 -8170775 64 0 -8171163 0 0 -8171179 64 0 -8172073 0 0 -8172083 64 0 -8172243 0 0 -8172268 64 0 -8172577 0 0 -8172610 64 0 -8172735 0 0 -8172785 64 0 -8172902 0 0 -8172956 64 0 -8173064 0 0 -8173112 64 0 -8173241 0 0 -8173288 64 0 -8173403 0 0 -8177958 totRewards = 66 -8177958 128 16 -8178158 128 0 -8178197 0 0 -8178221 128 0 -8178553 0 0 -8178574 128 0 -8178686 0 0 -8178731 128 0 -8178793 0 0 -8178838 128 0 -8178950 0 0 -8178969 128 0 -8179080 0 0 -8179096 128 0 -8179207 0 0 -8179235 128 0 -8179342 0 0 -8179366 128 0 -8179481 0 0 -8179504 128 0 -8179624 0 0 -8179649 128 0 -8179771 0 0 -8179811 128 0 -8179930 0 0 -8179965 128 0 -8180087 0 0 -8180128 128 0 -8180239 0 0 -8180287 128 0 -8180403 0 0 -8180451 128 0 -8180556 0 0 -8180612 128 0 -8180705 0 0 -8180761 128 0 -8180863 0 0 -8180909 128 0 -8181022 0 0 -8181084 128 0 -8181173 0 0 -8181238 128 0 -8181342 0 0 -8181391 128 0 -8181495 0 0 -8181555 128 0 -8181656 0 0 -8181729 128 0 -8181782 0 0 -8184908 totRewards = 67 -8184908 64 8 -8185108 64 0 -8185118 0 0 -8185125 64 0 -8186815 0 0 -8186824 64 0 -8187303 0 0 -8187325 64 0 -8187458 0 0 -8187486 64 0 -8187625 0 0 -8187645 64 0 -8187778 0 0 -8187817 64 0 -8188090 0 0 -8188123 64 0 -8188246 0 0 -8188316 64 0 -8188387 0 0 -8191424 totRewards = 68 -8191424 128 16 -8191610 0 16 -8191624 0 0 -8191647 128 0 -8191866 0 0 -8191900 128 0 -8191987 0 0 -8192032 128 0 -8192246 0 0 -8192281 128 0 -8192384 0 0 -8192463 128 0 -8192504 0 0 -8192538 128 0 -8192655 0 0 -8192673 128 0 -8192795 0 0 -8192819 128 0 -8192935 0 0 -8192971 128 0 -8193089 0 0 -8193114 128 0 -8193226 0 0 -8193259 128 0 -8193377 0 0 -8193418 128 0 -8193532 0 0 -8193573 128 0 -8193687 0 0 -8193738 128 0 -8193850 0 0 -8193914 128 0 -8194019 0 0 -8194078 128 0 -8194175 0 0 -8194239 128 0 -8194321 0 0 -8194378 128 0 -8194468 0 0 -8194533 128 0 -8194630 0 0 -8194685 128 0 -8194786 0 0 -8194835 128 0 -8194940 0 0 -8195005 128 0 -8195104 0 0 -8195162 128 0 -8195263 0 0 -8195324 128 0 -8195424 0 0 -8195480 128 0 -8195577 0 0 -8195643 128 0 -8195723 0 0 -8195795 128 0 -8195897 0 0 -8195945 128 0 -8196058 0 0 -8196114 128 0 -8196227 0 0 -8196350 128 0 -8196369 0 0 -8199703 totRewards = 69 -8199703 64 8 -8199885 0 8 -8199903 0 0 -8199913 64 0 -8200647 0 0 -8200655 64 0 -8201347 0 0 -8201359 64 0 -8201635 0 0 -8201662 64 0 -8202120 0 0 -8202138 64 0 -8202274 0 0 -8202306 64 0 -8202442 0 0 -8202473 64 0 -8202596 0 0 -8202642 64 0 -8202750 0 0 -8202800 64 0 -8202908 0 0 -8202947 64 0 -8203076 0 0 -8203126 64 0 -8203231 0 0 -8206243 totRewards = 70 -8206243 128 16 -8206443 128 0 -8206484 0 0 -8206528 128 0 -8206896 0 0 -8206917 128 0 -8207037 0 0 -8207066 128 0 -8207170 0 0 -8207193 128 0 -8207325 0 0 -8207343 128 0 -8207470 0 0 -8207506 128 0 -8207622 0 0 -8207660 128 0 -8207791 0 0 -8207822 128 0 -8207933 0 0 -8207984 128 0 -8208088 0 0 -8208159 128 0 -8208267 0 0 -8208314 128 0 -8208423 0 0 -8208483 128 0 -8208525 0 0 -8208546 128 0 -8208576 0 0 -8208645 128 0 -8208729 0 0 -8208789 128 0 -8208875 0 0 -8208935 128 0 -8209035 0 0 -8209090 128 0 -8209190 0 0 -8209250 128 0 -8209354 0 0 -8209413 128 0 -8209516 0 0 -8209588 128 0 -8209656 0 0 -8209756 128 0 -8209828 0 0 -8213075 totRewards = 71 -8213075 64 8 -8213257 0 8 -8213264 64 8 -8213275 64 0 -8213998 0 0 -8214014 64 0 -8214422 0 0 -8214434 64 0 -8214718 0 0 -8214728 64 0 -8215513 0 0 -8215534 64 0 -8215678 0 0 -8215705 64 0 -8216025 0 0 -8216049 64 0 -8216185 0 0 -8216226 64 0 -8216343 0 0 -8216389 64 0 -8216501 0 0 -8216551 64 0 -8216650 0 0 -8219650 totRewards = 72 -8219650 128 16 -8219802 0 16 -8219850 0 0 -8219880 128 0 -8220487 0 0 -8220503 128 0 -8220604 0 0 -8220653 128 0 -8220755 0 0 -8220765 128 0 -8220898 0 0 -8220913 128 0 -8221031 0 0 -8221071 128 0 -8221341 0 0 -8221378 128 0 -8221500 0 0 -8221542 128 0 -8221660 0 0 -8221708 128 0 -8221826 0 0 -8221879 128 0 -8221994 0 0 -8222048 128 0 -8222163 0 0 -8222213 128 0 -8222331 0 0 -8222383 128 0 -8222488 0 0 -8222558 128 0 -8222645 0 0 -8222701 128 0 -8222803 0 0 -8222867 128 0 -8222969 0 0 -8223030 128 0 -8223127 0 0 -8223184 128 0 -8223287 0 0 -8223341 128 0 -8223445 0 0 -8223499 128 0 -8223600 0 0 -8223678 128 0 -8223724 0 0 -8223807 128 0 -8223886 0 0 -8223978 128 0 -8224064 0 0 -8224122 128 0 -8224238 0 0 -8224295 128 0 -8224393 0 0 -8224469 128 0 -8224573 0 0 -8224646 128 0 -8224720 0 0 -8227852 totRewards = 73 -8227852 64 8 -8228014 0 8 -8228041 64 8 -8228052 64 0 -8229493 0 0 -8229499 64 0 -8229639 0 0 -8229644 64 0 -8230119 0 0 -8230133 64 0 -8230285 0 0 -8230301 64 0 -8230449 0 0 -8230472 64 0 -8230614 0 0 -8230640 64 0 -8230776 0 0 -8230826 64 0 -8230944 0 0 -8231006 64 0 -8231120 0 0 -8231159 64 0 -8231283 0 0 -8231342 64 0 -8231437 0 0 -8236228 totRewards = 74 -8236228 128 16 -8236363 0 16 -8236422 128 16 -8236428 128 0 -8237434 0 0 -8237455 128 0 -8237565 0 0 -8237590 128 0 -8237710 0 0 -8237720 128 0 -8237851 0 0 -8237873 128 0 -8237996 0 0 -8238028 128 0 -8238142 0 0 -8238173 128 0 -8238296 0 0 -8238317 128 0 -8238453 0 0 -8238479 128 0 -8238615 0 0 -8238640 128 0 -8238767 0 0 -8238803 128 0 -8238925 0 0 -8238966 128 0 -8239092 0 0 -8239131 128 0 -8239255 0 0 -8239300 128 0 -8239414 0 0 -8239466 128 0 -8239578 0 0 -8239630 128 0 -8239736 0 0 -8239788 128 0 -8239904 0 0 -8239964 128 0 -8240057 0 0 -8240098 128 0 -8240191 0 0 -8240262 128 0 -8240351 0 0 -8240412 128 0 -8240522 0 0 -8240586 128 0 -8240686 0 0 -8250887 totRewards = 75 -8250887 64 8 -8251087 64 0 -8251130 0 0 -8251166 64 0 -8251225 0 0 -8251239 64 0 -8253956 0 0 -8253968 64 0 -8254283 0 0 -8254307 64 0 -8254440 0 0 -8254469 64 0 -8254599 0 0 -8254639 64 0 -8254771 0 0 -8254809 64 0 -8254960 0 0 -8254970 64 0 -8255117 0 0 -8255153 64 0 -8255261 0 0 -8255323 64 0 -8255449 0 0 -8255459 64 0 -8255600 0 0 -8255655 64 0 -8255745 0 0 -8279322 totRewards = 76 -8279322 128 16 -8279522 128 0 -8279579 0 0 -8279617 128 0 -8279830 0 0 -8279841 128 0 -8279959 0 0 -8279983 128 0 -8280196 0 0 -8280230 128 0 -8280339 0 0 -8280349 128 0 -8280588 0 0 -8280618 128 0 -8280738 0 0 -8280751 128 0 -8281031 0 0 -8281076 128 0 -8281187 0 0 -8281232 128 0 -8281357 0 0 -8281390 128 0 -8281518 0 0 -8281555 128 0 -8281679 0 0 -8281739 128 0 -8281854 0 0 -8281917 128 0 -8282025 0 0 -8282088 128 0 -8282196 0 0 -8282283 128 0 -8282378 0 0 -8282440 128 0 -8282554 0 0 -8282599 128 0 -8282719 0 0 -8282763 128 0 -8282899 0 0 -8282967 128 0 -8283097 0 0 -8283149 128 0 -8283279 0 0 -8283363 128 0 -8283464 0 0 -8283516 128 0 -8283666 0 0 -8283703 128 0 -8283824 0 0 -8283886 128 0 -8283996 0 0 -8284062 128 0 -8284182 0 0 -8284252 128 0 -8284365 0 0 -8284448 128 0 -8284541 0 0 -8284598 128 0 -8284719 0 0 -8286738 128 0 -8286867 0 0 -8290340 totRewards = 77 -8290339 64 8 -8290540 64 0 -8290590 0 0 -8290601 64 0 -8291851 0 0 -8291862 64 0 -8292282 0 0 -8292292 64 0 -8292432 0 0 -8292444 64 0 -8292585 0 0 -8292603 64 0 -8292743 0 0 -8292767 64 0 -8292903 0 0 -8292929 64 0 -8293055 0 0 -8293084 64 0 -8293206 0 0 -8293239 64 0 -8293362 0 0 -8293378 64 0 -8293522 0 0 -8293538 64 0 -8293676 0 0 -8293703 64 0 -8293837 0 0 -8293860 64 0 -8293983 0 0 -8294017 64 0 -8294140 0 0 -8294168 64 0 -8294299 0 0 -8294324 64 0 -8294438 0 0 -8294463 64 0 -8294577 0 0 -8294624 64 0 -8294933 0 0 -8294971 64 0 -8295097 0 0 -8295149 64 0 -8295259 0 0 -8295316 64 0 -8295411 0 0 -8312427 totRewards = 78 -8312427 128 16 -8312443 0 16 -8312507 128 16 -8312627 128 0 -8312634 0 0 -8312721 128 0 -8312796 0 0 -8312819 128 0 -8312837 0 0 -8312909 128 0 -8313026 0 0 -8313041 128 0 -8313944 0 0 -8313963 128 0 -8314082 0 0 -8314103 128 0 -8314226 0 0 -8314245 128 0 -8314359 0 0 -8314390 128 0 -8314507 0 0 -8314538 128 0 -8314658 0 0 -8314689 128 0 -8314800 0 0 -8314839 128 0 -8314965 0 0 -8315010 128 0 -8315129 0 0 -8315179 128 0 -8315284 0 0 -8315342 128 0 -8315446 0 0 -8315500 128 0 -8315605 0 0 -8315662 128 0 -8315773 0 0 -8315790 128 0 -8316217 0 0 -8316234 128 0 -8316371 0 0 -8316406 128 0 -8316539 0 0 -8316561 128 0 -8316712 0 0 -8316732 128 0 -8316876 0 0 -8316902 128 0 -8317031 0 0 -8317071 128 0 -8317194 0 0 -8317254 128 0 -8317355 0 0 -8324400 totRewards = 79 -8324400 64 8 -8324595 0 8 -8324600 0 0 -8324630 64 0 -8325107 0 0 -8325130 64 0 -8328538 0 0 -8328562 64 0 -8328718 0 0 -8328727 64 0 -8330048 0 0 -8330059 64 0 -8330437 0 0 -8330462 64 0 -8330627 0 0 -8330639 64 0 -8330802 0 0 -8330829 64 0 -8330948 0 0 -8331033 64 0 -8331042 0 0 -8336747 totRewards = 80 -8336747 128 16 -8336947 128 0 -8337131 0 0 -8337170 128 0 -8337664 0 0 -8337671 128 0 -8337778 0 0 -8337808 128 0 -8337916 0 0 -8337946 128 0 -8338049 0 0 -8338083 128 0 -8338180 0 0 -8338220 128 0 -8338330 0 0 -8338363 128 0 -8338466 0 0 -8338506 128 0 -8338617 0 0 -8338661 128 0 -8338767 0 0 -8338812 128 0 -8338932 0 0 -8338983 128 0 -8339098 0 0 -8339157 128 0 -8339270 0 0 -8339332 128 0 -8339452 0 0 -8339515 128 0 -8339635 0 0 -8339686 128 0 -8339806 0 0 -8339853 128 0 -8339969 0 0 -8339993 128 0 -8340265 0 0 -8340281 128 0 -8340408 0 0 -8340456 128 0 -8340569 0 0 -8340613 128 0 -8340723 0 0 -8340772 128 0 -8340884 0 0 -8340936 128 0 -8341039 0 0 -8341088 128 0 -8341198 0 0 -8341257 128 0 -8341365 0 0 -8341425 128 0 -8341533 0 0 -8341600 128 0 -8341701 0 0 -8341774 128 0 -8341866 0 0 -8341940 128 0 -8342058 0 0 -8342106 128 0 -8342187 0 0 -8342856 128 0 -8342930 0 0 -8343078 128 0 -8345964 0 0 -8350233 totRewards = 81 -8350233 64 8 -8350422 0 8 -8350428 64 8 -8350433 64 0 -8352812 0 0 -8352825 64 0 -8352980 0 0 -8352999 64 0 -8353143 0 0 -8353172 64 0 -8353304 0 0 -8353343 64 0 -8353469 0 0 -8353500 64 0 -8353628 0 0 -8353650 64 0 -8353797 0 0 -8353820 64 0 -8353968 0 0 -8353982 64 0 -8354299 0 0 -8354323 64 0 -8354453 0 0 -8354512 64 0 -8354600 0 0 -8357863 totRewards = 82 -8357863 128 16 -8358029 0 16 -8358063 0 0 -8358127 128 0 -8358328 0 0 -8358343 128 0 -8358444 0 0 -8358485 128 0 -8358833 0 0 -8358894 128 0 -8359134 0 0 -8359143 128 0 -8359253 0 0 -8359289 128 0 -8359394 0 0 -8359423 128 0 -8359551 0 0 -8359560 128 0 -8359686 0 0 -8359723 128 0 -8359837 0 0 -8359875 128 0 -8360005 0 0 -8360039 128 0 -8360163 0 0 -8360213 128 0 -8360331 0 0 -8360382 128 0 -8360496 0 0 -8360561 128 0 -8360673 0 0 -8360742 128 0 -8360851 0 0 -8360922 128 0 -8361023 0 0 -8361095 128 0 -8361171 0 0 -8361409 128 0 -8361510 0 0 -8361580 128 0 -8361657 0 0 -8361731 128 0 -8361838 0 0 -8361896 128 0 -8361991 0 0 -8362067 128 0 -8362161 0 0 -8362249 128 0 -8362257 0 0 -8366125 totRewards = 83 -8366125 64 8 -8366325 64 0 -8366348 0 0 -8366371 64 0 -8368634 0 0 -8368647 64 0 -8368798 0 0 -8368820 64 0 -8368956 0 0 -8368986 64 0 -8369110 0 0 -8369141 64 0 -8369276 0 0 -8369299 64 0 -8369430 0 0 -8369476 64 0 -8369597 0 0 -8369625 64 0 -8369761 0 0 -8369781 64 0 -8369926 0 0 -8369948 64 0 -8370611 0 0 -8370623 64 0 -8370769 0 0 -8370801 64 0 -8370942 0 0 -8370980 64 0 -8371113 0 0 -8371163 64 0 -8371250 0 0 -8374448 totRewards = 84 -8374448 128 16 -8374648 128 0 -8374649 0 0 -8374696 128 0 -8374925 0 0 -8374948 128 0 -8375178 0 0 -8375212 128 0 -8375308 0 0 -8375368 128 0 -8375606 0 0 -8375614 128 0 -8375745 0 0 -8375760 128 0 -8376177 0 0 -8376209 128 0 -8376313 0 0 -8376353 128 0 -8376471 0 0 -8376490 128 0 -8376612 0 0 -8376652 128 0 -8376765 0 0 -8376826 128 0 -8376936 0 0 -8376988 128 0 -8377106 0 0 -8377153 128 0 -8377274 0 0 -8377331 128 0 -8377445 0 0 -8377502 128 0 -8377607 0 0 -8377674 128 0 -8377766 0 0 -8377824 128 0 -8377931 0 0 -8377985 128 0 -8378104 0 0 -8378153 128 0 -8378267 0 0 -8378331 128 0 -8378428 0 0 -8385289 totRewards = 85 -8385289 64 8 -8385489 64 0 -8385501 0 0 -8385514 64 0 -8387814 0 0 -8387836 64 0 -8387980 0 0 -8388009 64 0 -8388139 0 0 -8388180 64 0 -8388288 0 0 -8388345 64 0 -8388442 0 0 -8388514 64 0 -8388582 0 0 -8392063 totRewards = 86 -8392063 128 16 -8392225 0 16 -8392263 0 0 -8392332 128 0 -8392799 0 0 -8392820 128 0 -8392933 0 0 -8393022 128 0 -8393049 0 0 -8393081 128 0 -8393354 0 0 -8393367 128 0 -8393481 0 0 -8393504 128 0 -8393933 0 0 -8393964 128 0 -8394089 0 0 -8394118 128 0 -8394247 0 0 -8394274 128 0 -8394404 0 0 -8394449 128 0 -8394571 0 0 -8394614 128 0 -8394738 0 0 -8394776 128 0 -8394899 0 0 -8394948 128 0 -8395062 0 0 -8395119 128 0 -8395222 0 0 -8395272 128 0 -8395384 0 0 -8395450 128 0 -8395540 0 0 -8395598 128 0 -8395707 0 0 -8395756 128 0 -8395869 0 0 -8395923 128 0 -8396037 0 0 -8396098 128 0 -8396204 0 0 -8396274 128 0 -8396357 0 0 -8400269 totRewards = 87 -8400269 64 8 -8400469 64 0 -8400477 0 0 -8400489 64 0 - - description: state script log run 3 - task_epochs: 6, -] -2021-01-28 16:23:04,992 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 16:23:08,829 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 16:23:08,833 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 16:23:08,833 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 16:23:08,834 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 16:23:08,835 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 16:23:08,835 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 16:23:08,836 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 16:23:08,837 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 16:23:11,029 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 16:23:11,030 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 16:23:11,036 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 16:23:11,038 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 16:23:11,041 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 16:23:11,071 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 16:23:11,075 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 16:23:11,080 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 16:23:11,081 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 16:23:14,726 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 16:23:14,729 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:29:44,868 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 18:29:44,942 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 18:29:44,943 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 18:29:44,943 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 18:29:44,943 rec_to_binaries.core: INFO Extracting time... -2021-01-28 18:29:50,465 rec_to_binaries.core: INFO Making position directory... -2021-01-28 18:29:50,481 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 18:29:50,482 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 18:29:50,482 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 18:29:50,482 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 18:29:50,652 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 18:29:51,039 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 18:29:51,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 18:29:51,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 18:29:51,042 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 18:29:51,050 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 18:29:51,050 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 18:29:51,051 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140293977384912 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 18:29:51,052 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 18:29:51,247 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 18:29:51,248 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 18:29:51,248 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 18:29:51,248 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 18:29:51,249 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 18:29:51,256 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 18:29:51,256 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 18:29:51,259 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 18:29:51,260 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 18:29:51,261 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 18:29:51,262 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 18:29:51,263 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 18:29:51,263 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 18:29:51,263 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 18:29:51,264 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 18:29:51,294 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 18:29:51,296 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 18:29:51,297 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 18:29:51,297 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 18:29:51,663 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 18:29:51,665 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:29:52,506 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 18:29:52,507 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 18:29:52,507 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 18:29:52,508 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 18:29:52,508 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 18:29:52,562 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 18:29:52,563 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 18:32:26,009 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 18:32:26,090 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 18:32:26,091 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 18:32:26,091 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 18:32:26,091 rec_to_binaries.core: INFO Extracting time... -2021-01-28 18:32:31,182 rec_to_binaries.core: INFO Making position directory... -2021-01-28 18:32:31,199 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 18:32:31,199 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 18:32:31,200 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 18:32:31,200 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 18:32:31,340 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 18:32:31,676 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 18:32:31,677 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 18:32:31,678 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 18:32:31,678 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 18:32:31,678 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 18:32:31,679 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 18:32:31,679 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 18:32:31,679 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140679954167760 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 18:32:31,680 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 18:32:31,876 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 18:32:31,877 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 18:32:31,877 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 18:32:31,877 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 18:32:31,878 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 18:32:31,887 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 18:32:31,888 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 18:32:31,891 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 18:32:31,892 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 18:32:31,893 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 18:32:31,894 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 18:32:31,895 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 18:32:31,895 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 18:32:31,895 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 18:32:31,896 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 18:32:31,925 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 18:32:31,928 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 18:32:31,929 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 18:32:31,929 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 18:32:32,330 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 18:32:32,331 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:32:33,212 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 18:32:33,212 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 18:32:33,212 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 18:32:33,213 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 18:32:33,213 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 18:32:33,265 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 18:32:33,266 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 18:32:33,266 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 18:32:33,266 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 18:32:33,266 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 18:32:33,965 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 18:32:33,969 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 18:32:34,283 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 18:33:53,399 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 18:33:53,580 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 18:33:53,581 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 18:33:53,581 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 18:33:53,582 rec_to_binaries.core: INFO Extracting time... -2021-01-28 18:33:58,048 rec_to_binaries.core: INFO Making position directory... -2021-01-28 18:33:58,067 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 18:33:58,067 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 18:33:58,067 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 18:33:58,068 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 18:33:58,256 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 18:33:58,591 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 18:33:58,592 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 18:33:58,592 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 18:33:58,592 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 18:33:58,593 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 18:33:58,593 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 18:33:58,593 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 18:33:58,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 18:33:58,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 18:33:58,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 18:33:58,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 18:33:58,596 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 18:33:58,603 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 18:33:58,604 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 18:33:58,605 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140440049918480 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 18:33:58,605 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 18:33:58,821 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 18:33:58,823 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 18:33:58,823 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 18:33:58,825 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 18:33:58,827 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 18:33:58,846 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 18:33:58,847 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 18:33:58,860 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 18:33:58,860 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 18:33:58,861 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 18:33:58,862 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 18:33:58,862 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 18:33:58,863 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 18:33:58,863 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 18:33:58,863 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 18:33:58,864 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 18:33:58,864 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 18:33:58,864 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 18:33:58,865 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 18:33:58,868 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 18:33:58,869 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 18:33:58,870 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 18:33:58,870 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 18:33:58,874 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 18:33:58,976 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 18:33:58,985 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 18:33:58,989 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 18:33:58,989 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 18:33:59,364 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 18:33:59,368 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:34:00,257 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 18:34:00,258 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 18:34:00,259 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 18:34:00,260 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 18:34:00,261 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 18:34:00,319 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 18:34:00,320 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 18:34:00,320 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 18:34:00,320 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 18:34:00,321 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 18:37:35,374 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 18:37:35,554 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 18:37:35,556 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 18:37:35,556 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 18:37:35,557 rec_to_binaries.core: INFO Extracting time... -2021-01-28 18:37:40,539 rec_to_binaries.core: INFO Making position directory... -2021-01-28 18:37:40,558 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 18:37:40,558 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 18:37:40,559 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 18:37:40,559 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 18:37:40,765 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 18:37:41,090 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 18:37:41,090 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 18:37:41,090 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 18:37:41,091 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 18:37:41,091 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 18:37:41,091 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 18:37:41,092 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 18:37:41,092 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 18:37:41,092 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 18:37:41,093 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 18:37:41,093 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 18:37:41,093 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 18:37:41,094 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 18:37:41,094 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 18:37:41,094 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 18:37:41,102 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 18:37:41,103 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 18:37:41,105 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140696836671824 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 18:37:41,105 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 18:37:41,323 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 18:37:41,325 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 18:37:41,325 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 18:37:41,327 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 18:37:41,328 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 18:37:41,347 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 18:37:41,347 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 18:37:41,361 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 18:37:41,361 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 18:37:41,362 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 18:37:41,362 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 18:37:41,363 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 18:37:41,363 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 18:37:41,364 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 18:37:41,364 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 18:37:41,365 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 18:37:41,365 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 18:37:41,365 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 18:37:41,366 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 18:37:41,371 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 18:37:41,371 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 18:37:41,372 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 18:37:41,373 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 18:37:41,376 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 18:37:41,473 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 18:37:41,483 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 18:37:41,486 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 18:37:41,487 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 18:37:41,868 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 18:37:41,872 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:37:42,793 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 18:37:42,793 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 18:37:42,795 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 18:37:42,796 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 18:37:42,797 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 18:37:42,857 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 18:37:42,857 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 18:37:42,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 18:37:42,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 18:51:16,146 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 18:55:20,222 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 18:55:20,417 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 18:55:20,419 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 18:55:20,419 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 18:55:20,420 rec_to_binaries.core: INFO Extracting time... -2021-01-28 18:55:25,487 rec_to_binaries.core: INFO Making position directory... -2021-01-28 18:55:25,506 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 18:55:25,507 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 18:55:25,507 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 18:55:25,507 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 18:55:25,722 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 18:55:26,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 18:55:26,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 18:55:26,040 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 18:55:26,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 18:55:26,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 18:55:26,041 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 18:55:26,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 18:55:26,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 18:55:26,042 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 18:55:26,043 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 18:55:26,043 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 18:55:26,043 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 18:55:26,044 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 18:55:26,044 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 18:55:26,044 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 18:55:26,052 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 18:55:26,053 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 18:55:26,054 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140449153599376 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 18:55:26,055 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 18:55:26,273 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 18:55:26,275 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 18:55:26,275 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 18:55:26,277 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 18:55:26,278 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 18:55:26,298 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 18:55:26,298 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 18:55:26,312 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 18:55:26,313 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 18:55:26,314 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 18:55:26,315 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 18:55:26,315 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 18:55:26,315 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 18:55:26,316 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 18:55:26,316 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 18:55:26,317 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 18:55:26,317 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 18:55:26,317 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 18:55:26,318 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 18:55:26,321 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 18:55:26,322 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 18:55:26,323 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 18:55:26,323 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 18:55:26,327 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 18:55:26,427 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 18:55:26,437 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 18:55:26,441 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 18:55:26,442 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 18:55:26,816 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 18:55:26,819 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:55:27,677 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 18:55:27,678 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 18:55:27,679 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 18:55:27,680 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 18:55:27,681 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 18:55:27,742 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 18:55:40,545 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 18:57:29,697 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 18:57:29,870 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 18:57:29,871 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 18:57:29,872 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 18:57:29,872 rec_to_binaries.core: INFO Extracting time... -2021-01-28 18:57:34,535 rec_to_binaries.core: INFO Making position directory... -2021-01-28 18:57:34,548 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 18:57:34,549 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 18:57:34,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 18:57:34,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 18:57:34,770 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 18:57:35,097 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 18:57:35,098 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 18:57:35,099 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 18:57:35,099 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 18:57:35,099 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 18:57:35,100 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 18:57:35,100 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 18:57:35,100 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 18:57:35,101 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 18:57:35,101 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 18:57:35,101 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 18:57:35,102 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 18:57:35,109 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 18:57:35,110 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 18:57:35,111 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140553625320336 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 18:57:35,111 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 18:57:35,331 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 18:57:35,333 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 18:57:35,333 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 18:57:35,335 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 18:57:35,336 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 18:57:35,355 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 18:57:35,356 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 18:57:35,369 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 18:57:35,369 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 18:57:35,371 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 18:57:35,371 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 18:57:35,371 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 18:57:35,372 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 18:57:35,372 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 18:57:35,373 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 18:57:35,373 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 18:57:35,374 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 18:57:35,374 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 18:57:35,375 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 18:57:35,378 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 18:57:35,378 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 18:57:35,379 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 18:57:35,380 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 18:57:35,383 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 18:57:35,485 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 18:57:35,495 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 18:57:35,500 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 18:57:35,500 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 18:57:35,892 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 18:57:35,896 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:57:36,818 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 18:57:36,818 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 18:57:36,820 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 18:57:36,822 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 18:57:36,823 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 18:57:36,887 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 18:57:55,119 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 18:59:34,464 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 18:59:34,676 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 18:59:34,678 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 18:59:34,678 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 18:59:34,678 rec_to_binaries.core: INFO Extracting time... -2021-01-28 18:59:39,667 rec_to_binaries.core: INFO Making position directory... -2021-01-28 18:59:39,673 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 18:59:39,674 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 18:59:39,674 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 18:59:39,674 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 18:59:39,889 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 18:59:40,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 18:59:40,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 18:59:40,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 18:59:40,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 18:59:40,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 18:59:40,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 18:59:40,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 18:59:40,344 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 18:59:40,344 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 18:59:40,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 18:59:40,345 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 18:59:40,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 18:59:40,346 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 18:59:40,347 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 18:59:40,347 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 18:59:40,348 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 18:59:40,349 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 18:59:40,351 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140650169772560 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 18:59:40,351 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 18:59:40,586 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 18:59:40,588 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 18:59:40,588 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 18:59:40,589 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 18:59:40,591 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 18:59:40,613 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 18:59:40,613 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 18:59:40,627 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 18:59:40,627 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 18:59:40,629 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 18:59:40,629 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 18:59:40,629 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 18:59:40,630 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 18:59:40,630 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 18:59:40,630 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 18:59:40,631 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 18:59:40,632 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 18:59:40,632 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 18:59:40,633 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 18:59:40,637 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 18:59:40,637 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 18:59:40,638 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 18:59:40,639 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 18:59:40,643 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 18:59:40,785 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 18:59:40,796 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 18:59:40,803 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 18:59:40,803 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 18:59:41,227 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 18:59:41,231 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 18:59:42,195 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 18:59:42,196 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 18:59:42,197 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 18:59:42,198 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 18:59:42,199 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 18:59:42,259 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 18:59:42,260 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 18:59:42,260 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 18:59:42,260 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 19:03:04,206 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:03:04,975 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 19:03:04,987 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 19:03:05,317 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:06:36,521 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 19:06:36,716 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 19:06:36,718 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 19:06:36,718 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 19:06:36,718 rec_to_binaries.core: INFO Extracting time... -2021-01-28 19:06:41,484 rec_to_binaries.core: INFO Making position directory... -2021-01-28 19:06:41,503 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 19:06:41,503 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 19:06:41,504 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 19:06:41,504 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 19:06:41,716 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 19:06:42,046 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 19:06:42,047 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 19:06:42,047 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 19:06:42,048 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 19:06:42,048 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 19:06:42,049 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 19:06:42,050 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 19:06:42,050 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 19:06:42,051 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 19:06:42,051 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 19:06:42,052 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 19:06:42,052 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 19:06:42,059 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 19:06:42,060 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 19:06:42,061 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140640774559376 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 19:06:42,062 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 19:06:42,287 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 19:06:42,289 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 19:06:42,289 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 19:06:42,290 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 19:06:42,292 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 19:06:42,313 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 19:06:42,313 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 19:06:42,326 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 19:06:42,327 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 19:06:42,328 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 19:06:42,329 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 19:06:42,329 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 19:06:42,329 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 19:06:42,330 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 19:06:42,330 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 19:06:42,331 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 19:06:42,331 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 19:06:42,331 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 19:06:42,332 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 19:06:42,335 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 19:06:42,335 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 19:06:42,337 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 19:06:42,337 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 19:06:42,341 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 19:06:42,440 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 19:06:42,450 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 19:06:42,454 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 19:06:42,454 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 19:06:42,820 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 19:06:42,824 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 19:06:43,788 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 19:06:43,789 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 19:06:43,790 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 19:06:43,791 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 19:06:43,792 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 19:06:43,857 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 19:06:43,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 19:06:43,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 19:06:43,858 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 19:06:48,963 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:06:49,713 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 19:06:49,723 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 19:06:50,041 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:08:04,552 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 19:08:04,734 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 19:08:04,735 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 19:08:04,736 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 19:08:04,736 rec_to_binaries.core: INFO Extracting time... -2021-01-28 19:08:09,368 rec_to_binaries.core: INFO Making position directory... -2021-01-28 19:08:09,387 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 19:08:09,387 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 19:08:09,388 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 19:08:09,388 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 19:08:09,612 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 19:08:09,934 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 19:08:09,934 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 19:08:09,934 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 19:08:09,935 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 19:08:09,935 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 19:08:09,935 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 19:08:09,936 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 19:08:09,936 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 19:08:09,936 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 19:08:09,937 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 19:08:09,937 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 19:08:09,938 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 19:08:09,946 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 19:08:09,947 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 19:08:09,948 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140611063170832 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 19:08:09,949 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 19:08:10,165 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 19:08:10,167 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 19:08:10,168 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 19:08:10,169 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 19:08:10,170 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 19:08:10,190 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 19:08:10,190 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 19:08:10,204 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 19:08:10,205 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 19:08:10,206 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 19:08:10,207 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 19:08:10,207 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 19:08:10,207 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 19:08:10,208 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 19:08:10,208 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 19:08:10,209 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 19:08:10,209 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 19:08:10,209 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 19:08:10,210 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 19:08:10,213 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 19:08:10,213 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 19:08:10,215 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 19:08:10,215 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 19:08:10,219 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 19:08:10,317 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 19:08:10,327 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 19:08:10,330 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 19:08:10,331 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 19:08:10,696 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 19:08:10,700 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 19:08:11,494 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 19:08:11,495 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 19:08:11,496 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 19:08:11,497 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 19:08:11,498 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 19:08:11,556 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 19:08:11,557 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:08:12,274 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 19:08:12,286 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 19:08:12,598 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:08:58,676 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 19:10:31,636 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 19:10:31,649 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 19:14:37,235 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 19:14:37,310 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 19:14:37,311 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 19:14:37,312 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 19:14:37,312 rec_to_binaries.core: INFO Extracting time... -2021-01-28 19:14:41,509 rec_to_binaries.core: INFO Making position directory... -2021-01-28 19:14:41,520 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 19:14:41,521 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 19:14:41,521 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 19:14:41,521 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 19:14:41,653 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 19:14:41,955 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 19:14:41,956 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 19:14:41,957 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 19:14:41,958 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 19:14:41,958 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 19:14:41,959 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140463737694224 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 19:14:41,959 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 19:14:42,145 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 19:14:42,146 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 19:14:42,155 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 19:14:42,155 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 19:14:42,160 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 19:14:42,161 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 19:14:42,162 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 19:14:42,163 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 19:14:42,164 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 19:14:42,165 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 19:14:42,165 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 19:14:42,165 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 19:14:42,166 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 19:14:42,201 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 19:14:42,204 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 19:14:42,206 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 19:14:42,206 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 19:14:42,519 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 19:14:42,520 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 19:14:43,263 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 19:14:43,263 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 19:14:43,264 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 19:14:43,264 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 19:14:43,264 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 19:14:43,313 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 19:14:43,314 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:14:43,864 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 19:14:43,868 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 19:14:44,171 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:14:46,336 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 19:15:45,333 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 19:15:45,339 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 19:23:56,738 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:23:59,048 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:38:59,866 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 19:38:59,944 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 19:38:59,945 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 19:38:59,945 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 19:38:59,945 rec_to_binaries.core: INFO Extracting time... -2021-01-28 19:39:04,985 rec_to_binaries.core: INFO Making position directory... -2021-01-28 19:39:04,992 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 19:39:04,992 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 19:39:04,993 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 19:39:04,993 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 19:39:05,147 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 19:39:05,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 19:39:05,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 19:39:05,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 19:39:05,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 19:39:05,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 19:39:05,501 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 19:39:05,502 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 19:39:05,502 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 19:39:05,503 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140497116973392 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 19:39:05,503 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 19:39:05,706 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 19:39:05,707 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 19:39:05,715 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 19:39:05,715 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 19:39:05,721 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 19:39:05,721 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 19:39:05,721 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 19:39:05,722 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 19:39:05,723 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 19:39:05,725 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 19:39:05,725 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 19:39:05,725 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 19:39:05,726 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 19:39:05,727 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 19:39:05,767 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 19:39:05,769 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 19:39:05,771 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 19:39:05,771 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 19:39:06,107 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 19:39:06,109 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 19:39:07,008 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 19:39:07,008 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 19:39:07,009 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 19:39:07,009 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 19:39:07,009 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 19:39:07,063 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 19:39:07,063 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 19:39:07,064 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 19:39:07,064 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 19:39:07,064 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:39:11,676 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 19:39:11,680 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 19:39:11,969 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:39:14,479 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 19:40:18,971 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 19:40:19,011 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 19:49:08,310 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:49:10,972 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:49:18,643 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. -2021-01-28 19:52:48,970 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 19:52:49,052 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 19:52:49,053 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 19:52:49,053 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 19:52:49,053 rec_to_binaries.core: INFO Extracting time... -2021-01-28 19:52:53,884 rec_to_binaries.core: INFO Making position directory... -2021-01-28 19:52:53,901 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 19:52:53,901 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 19:52:53,902 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 19:52:53,902 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 19:52:54,047 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 19:52:54,399 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 19:52:54,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 19:52:54,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 19:52:54,402 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 19:52:54,402 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 19:52:54,409 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 19:52:54,410 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 19:52:54,410 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140437473065680 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 19:52:54,411 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 19:52:54,611 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 19:52:54,612 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 19:52:54,612 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 19:52:54,612 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 19:52:54,613 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 19:52:54,621 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 19:52:54,621 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 19:52:54,625 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 19:52:54,625 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 19:52:54,626 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 19:52:54,626 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 19:52:54,626 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 19:52:54,627 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 19:52:54,628 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 19:52:54,628 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 19:52:54,628 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 19:52:54,629 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 19:52:54,629 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 19:52:54,630 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 19:52:54,630 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 19:52:54,631 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 19:52:54,664 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 19:52:54,667 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 19:52:54,668 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 19:52:54,668 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 19:52:55,040 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 19:52:55,042 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 19:52:55,924 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 19:52:55,924 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 19:52:55,925 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 19:52:55,925 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 19:52:55,926 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 19:52:55,978 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 19:52:55,979 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 19:52:55,979 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 19:52:55,979 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 19:52:55,979 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:53:00,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 19:53:00,613 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 19:53:00,922 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 19:53:03,584 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 19:54:15,681 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 19:54:15,728 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 20:01:53,670 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 20:01:56,053 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/raw/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 20:02:03,151 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. -2021-01-28 20:02:03,758 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Building -2021-01-28 20:02:03,762 rec_to_nwb.processing.builder.originators.pos_valid_time_originator: INFO POS valid times: Injecting -2021-01-28 20:02:03,763 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Building -2021-01-28 20:02:03,764 rec_to_nwb.processing.builder.originators.pos_invalid_originator: INFO POS invalid times: Injecting -2021-01-28 20:02:03,765 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Building -2021-01-28 20:02:04,278 rec_to_nwb.processing.builder.originators.mda_valid_time_originator: INFO MDA valid times: Injecting -2021-01-28 20:02:04,279 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Building -2021-01-28 20:02:04,843 rec_to_nwb.processing.builder.originators.mda_invalid_time_originator: INFO MDA invalid times: Injecting -2021-01-28 20:28:45,045 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:28:45,243 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:28:45,244 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:28:45,245 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:28:45,245 rec_to_binaries.core: INFO Extracting time... -2021-01-28 20:28:49,774 rec_to_binaries.core: INFO Making position directory... -2021-01-28 20:28:49,791 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 20:28:49,792 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 20:28:49,792 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 20:28:49,792 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 20:28:50,015 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 20:28:50,325 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 20:28:50,326 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 20:28:50,326 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 20:28:50,326 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 20:28:50,327 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 20:28:50,327 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 20:28:50,327 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 20:28:50,328 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 20:28:50,328 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 20:28:50,329 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 20:28:50,329 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 20:28:50,330 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 20:28:50,339 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 20:28:50,340 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 20:28:50,341 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140276398598352 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 20:28:50,342 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 20:42:57,887 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/raw/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:42:57,932 rec_to_binaries.core: WARNING No epochs found! -2021-01-28 20:42:57,932 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:42:57,933 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:42:57,933 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:42:57,933 rec_to_binaries.core: INFO Extracting time... -2021-01-28 20:42:57,934 rec_to_binaries.core: INFO Making position directory... -2021-01-28 20:43:53,157 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:43:53,203 rec_to_binaries.core: WARNING No epochs found! -2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Extracting time... -2021-01-28 20:43:53,203 rec_to_binaries.core: INFO Making position directory... -2021-01-28 20:44:02,705 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/raw/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:44:02,747 rec_to_binaries.core: WARNING No epochs found! -2021-01-28 20:44:02,747 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Extracting time... -2021-01-28 20:44:02,748 rec_to_binaries.core: INFO Making position directory... -2021-01-28 20:44:36,634 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:44:36,702 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:45:12,775 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:46:07,913 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:54:35,362 rec_to_binaries.core: INFO Extracting time... -2021-01-28 20:55:14,517 rec_to_binaries.core: INFO Making position directory... -2021-01-28 20:55:14,547 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 20:55:14,547 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 20:55:14,548 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 20:55:14,548 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 20:56:14,594 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:56:14,681 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:56:14,684 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:56:14,685 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:56:14,685 rec_to_binaries.core: INFO Extracting time... -2021-01-28 20:56:32,649 rec_to_binaries.core: INFO Making position directory... -2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 20:56:32,669 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 20:56:32,849 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 20:56:32,917 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 20:56:33,255 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 20:56:33,255 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 20:56:33,256 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 20:56:33,257 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 20:56:33,258 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 20:56:33,258 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 20:56:33,259 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 20:56:33,260 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 20:56:33,260 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140475649484880 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 1, -] -2021-01-28 20:56:33,261 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 20:58:17,211 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:58:17,305 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:58:17,305 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:58:17,306 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:58:17,306 rec_to_binaries.core: INFO Extracting time... -2021-01-28 20:58:33,203 rec_to_binaries.core: INFO Making position directory... -2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 20:58:33,221 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 20:58:33,395 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 20:58:33,571 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 20:58:33,908 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 20:58:33,909 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 20:58:33,910 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 20:58:33,918 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 20:58:33,918 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 20:58:33,919 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140694316517968 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 20:58:33,920 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 20:58:34,452 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 20:58:34,453 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 20:58:34,453 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 20:58:34,454 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 20:58:34,454 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 20:58:34,461 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 20:58:34,461 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 20:58:34,465 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 20:58:34,466 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 20:58:34,467 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 20:58:34,470 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 20:58:34,470 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 20:58:34,471 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 20:58:34,471 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 20:58:34,472 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 20:58:34,502 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 20:58:34,505 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 20:58:34,506 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 20:58:34,506 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 20:58:35,723 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 20:58:35,724 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 20:58:38,540 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 20:58:38,541 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 20:58:38,541 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 20:58:38,542 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 20:58:38,542 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 20:58:38,713 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 20:58:38,714 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 20:58:38,714 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 20:58:38,714 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 20:58:38,714 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 20:58:42,969 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 20:59:44,809 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 20:59:45,083 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 20:59:45,086 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 20:59:45,087 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 20:59:45,091 rec_to_binaries.core: INFO Extracting time... -2021-01-28 21:00:00,552 rec_to_binaries.core: INFO Making position directory... -2021-01-28 21:00:00,581 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 21:00:00,582 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 21:00:00,582 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 21:00:00,582 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 21:00:00,920 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 21:00:01,124 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 21:00:01,421 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 21:00:01,421 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 21:00:01,421 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 21:00:01,422 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 21:00:01,422 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 21:00:01,423 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 21:00:01,424 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 21:00:01,424 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 21:00:01,424 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 21:00:01,425 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 21:00:01,425 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 21:00:01,425 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 21:00:01,428 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 21:00:01,429 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 21:00:01,430 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140622931948304 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 21:00:01,430 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 21:00:02,050 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 21:00:02,053 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 21:00:02,054 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 21:00:02,055 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 21:00:02,057 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 21:00:02,076 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 21:00:02,076 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 21:00:02,090 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 21:00:02,090 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 21:00:02,091 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 21:00:02,092 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 21:00:02,092 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 21:00:02,093 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 21:00:02,093 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 21:00:02,093 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 21:00:02,094 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 21:00:02,094 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 21:00:02,094 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 21:00:02,095 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 21:00:02,101 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 21:00:02,102 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 21:00:02,103 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 21:00:02,104 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 21:00:02,108 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 21:00:02,208 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 21:00:02,218 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 21:00:02,222 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 21:00:02,222 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 21:00:03,503 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 21:00:03,507 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 21:00:06,413 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 21:00:06,413 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 21:00:06,415 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 21:00:06,418 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 21:00:06,418 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 21:00:06,608 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 21:00:06,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 21:00:06,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 21:00:06,609 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 21:00:06,610 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:00:10,873 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:08:10,106 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 21:08:10,355 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 21:08:10,356 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 21:08:10,356 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 21:08:10,357 rec_to_binaries.core: INFO Extracting time... -2021-01-28 21:08:26,694 rec_to_binaries.core: INFO Making position directory... -2021-01-28 21:08:26,719 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 21:08:26,720 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 21:08:26,720 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 21:08:26,720 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 21:08:27,057 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 21:08:27,247 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 21:08:27,573 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 21:08:27,574 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 21:08:27,574 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 21:08:27,575 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 21:08:27,575 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 21:08:27,575 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 21:08:27,576 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 21:08:27,576 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 21:08:27,577 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 21:08:27,577 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 21:08:27,577 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 21:08:27,578 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 21:08:27,578 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 21:08:27,579 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 21:08:27,579 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 21:08:27,582 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 21:08:27,583 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 21:08:27,584 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140216748534288 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 21:08:27,584 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 21:08:28,316 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 21:08:28,319 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 21:08:28,319 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 21:08:28,321 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 21:08:28,322 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 21:08:28,341 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 21:08:28,342 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 21:08:28,355 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 21:08:28,356 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 21:08:28,357 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 21:08:28,357 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 21:08:28,358 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 21:08:28,358 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 21:08:28,359 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 21:08:28,359 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 21:08:28,360 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 21:08:28,360 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 21:08:28,360 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 21:08:28,361 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 21:08:28,367 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 21:08:28,367 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 21:08:28,368 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 21:08:28,369 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 21:08:28,372 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 21:08:28,499 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 21:08:28,522 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 21:08:28,529 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 21:08:28,530 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 21:08:29,760 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 21:08:29,764 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 21:08:32,649 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 21:08:32,650 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 21:08:32,652 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 21:08:32,654 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 21:08:32,655 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 21:08:32,836 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 21:08:32,837 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 21:08:32,837 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 21:08:32,837 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 21:08:32,839 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:08:37,375 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:18:01,882 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 21:18:02,139 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 21:18:02,140 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 21:18:02,141 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 21:18:02,141 rec_to_binaries.core: INFO Extracting time... -2021-01-28 21:18:19,694 rec_to_binaries.core: INFO Making position directory... -2021-01-28 21:18:19,723 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 21:18:19,723 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 21:18:19,724 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 21:18:19,724 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 21:18:20,062 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 21:18:20,301 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 21:18:20,608 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 21:18:20,609 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 21:18:20,609 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 21:18:20,609 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 21:18:20,610 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 21:18:20,610 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 21:18:20,610 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 21:18:20,611 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 21:18:20,611 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 21:18:20,611 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 21:18:20,612 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 21:18:20,612 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 21:18:20,612 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 21:18:20,613 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 21:18:20,613 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 21:18:20,619 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 21:18:20,620 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 21:18:20,622 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140347391339216 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 21:18:20,622 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 21:18:21,239 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 21:18:21,242 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 21:18:21,243 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 21:18:21,244 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 21:18:21,246 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 21:18:21,267 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 21:18:21,267 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 21:18:21,281 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 21:18:21,282 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 21:18:21,283 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 21:18:21,283 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 21:18:21,284 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 21:18:21,284 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 21:18:21,285 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 21:18:21,285 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 21:18:21,286 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 21:18:21,286 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 21:18:21,286 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 21:18:21,287 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 21:18:21,293 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 21:18:21,293 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 21:18:21,294 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 21:18:21,295 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 21:18:21,299 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 21:18:21,398 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 21:18:21,407 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 21:18:21,411 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 21:18:21,411 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 21:18:22,652 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 21:18:22,656 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 21:18:25,547 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 21:18:25,548 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 21:18:25,550 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 21:18:25,553 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 21:18:25,553 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 21:18:25,738 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 21:18:25,738 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 21:18:25,738 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 21:18:25,739 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 21:18:25,740 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:18:29,896 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:27:01,850 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 21:27:02,091 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 21:27:02,093 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 21:27:02,093 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 21:27:02,094 rec_to_binaries.core: INFO Extracting time... -2021-01-28 21:27:19,845 rec_to_binaries.core: INFO Making position directory... -2021-01-28 21:27:19,877 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 21:27:19,878 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 21:27:19,878 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 21:27:19,879 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 21:27:20,221 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 21:27:20,398 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 21:27:20,723 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 21:27:20,724 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 21:27:20,725 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 21:27:20,725 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 21:27:20,726 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 21:27:20,726 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 21:27:20,726 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 21:27:20,727 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 21:27:20,727 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 21:27:20,728 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 21:27:20,728 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 21:27:20,728 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 21:27:20,729 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 21:27:20,729 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 21:27:20,730 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 21:27:20,734 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 21:27:20,735 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 21:27:20,736 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140202167769744 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 21:27:20,736 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 21:27:21,349 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 21:27:21,352 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 21:27:21,353 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 21:27:21,354 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 21:27:21,356 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 21:27:21,375 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 21:27:21,376 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 21:27:21,389 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 21:27:21,389 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 21:27:21,391 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 21:27:21,391 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 21:27:21,391 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 21:27:21,392 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 21:27:21,392 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 21:27:21,392 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 21:27:21,393 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 21:27:21,393 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 21:27:21,394 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 21:27:21,395 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 21:27:21,401 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 21:27:21,401 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 21:27:21,402 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 21:27:21,403 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 21:27:21,406 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 21:27:21,502 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 21:27:21,513 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 21:27:21,517 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 21:27:21,517 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 21:27:22,766 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 21:27:22,770 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 21:27:25,279 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 21:27:25,279 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 21:27:25,281 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 21:27:25,283 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 21:27:25,283 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 21:27:25,463 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 21:27:25,464 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 21:27:25,464 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 21:27:25,464 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 21:27:25,472 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:27:29,591 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:30:35,136 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 21:30:35,374 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 21:30:35,376 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 21:30:35,377 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 21:30:35,377 rec_to_binaries.core: INFO Extracting time... -2021-01-28 21:30:52,090 rec_to_binaries.core: INFO Making position directory... -2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 21:30:52,118 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 21:30:52,451 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 21:30:52,622 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 21:30:52,919 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 21:30:52,919 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 21:30:52,919 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 21:30:52,920 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 21:30:52,920 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 21:30:52,921 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 21:30:52,922 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 21:30:52,922 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 21:30:52,923 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 21:30:52,923 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 21:30:52,924 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 21:30:52,924 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 21:30:52,925 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 21:30:52,926 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 21:30:52,927 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140507421124880 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 21:30:52,927 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 21:30:53,546 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 21:30:53,549 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 21:30:53,549 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 21:30:53,551 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 21:30:53,552 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 21:30:53,571 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 21:30:53,572 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 21:30:53,585 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 21:30:53,585 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 21:30:53,586 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 21:30:53,587 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 21:30:53,587 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 21:30:53,587 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 21:30:53,588 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 21:30:53,588 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 21:30:53,589 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 21:30:53,589 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 21:30:53,590 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 21:30:53,590 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 21:30:53,596 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 21:30:53,596 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 21:30:53,597 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 21:30:53,598 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 21:30:53,602 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 21:30:53,701 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 21:30:53,710 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 21:30:53,714 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 21:30:53,714 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 21:30:54,927 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 21:30:54,931 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 21:30:57,725 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 21:30:57,725 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 21:30:57,727 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 21:30:57,729 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 21:30:57,730 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 21:30:57,923 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 21:30:57,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 21:30:57,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 21:30:57,924 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 21:30:57,925 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:31:01,809 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:34:58,258 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 21:34:58,556 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 21:34:58,558 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 21:34:58,558 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 21:34:58,559 rec_to_binaries.core: INFO Extracting time... -2021-01-28 21:35:16,098 rec_to_binaries.core: INFO Making position directory... -2021-01-28 21:35:16,119 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 21:35:16,119 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 21:35:16,119 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 21:35:16,120 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 21:35:16,523 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 21:35:16,698 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 21:35:17,060 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 21:35:17,060 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 21:35:17,061 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 21:35:17,062 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 21:35:17,062 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 21:35:17,063 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 21:35:17,063 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 21:35:17,064 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 21:35:17,064 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 21:35:17,065 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 21:35:17,065 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 21:35:17,066 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 21:35:17,066 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 21:35:17,067 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 21:35:17,067 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 21:35:17,069 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 21:35:17,069 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 21:35:17,070 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140472835693456 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 21:35:17,070 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 21:35:17,941 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 21:35:17,944 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 21:35:17,945 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 21:35:17,951 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 21:35:17,954 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 21:35:17,992 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 21:35:17,993 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 21:35:18,019 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 21:35:18,020 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 21:35:18,022 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 21:35:18,023 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 21:35:18,023 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 21:35:18,024 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 21:35:18,024 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 21:35:18,024 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 21:35:18,025 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 21:35:18,025 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 21:35:18,026 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 21:35:18,027 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 21:35:18,033 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 21:35:18,033 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 21:35:18,034 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 21:35:18,035 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 21:35:18,039 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 21:35:18,196 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 21:35:18,229 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 21:35:18,238 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 21:35:18,238 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 21:35:19,680 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 21:35:19,683 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 21:35:23,078 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 21:35:23,079 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 21:35:23,084 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 21:35:23,089 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 21:35:23,090 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 21:35:23,610 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 21:35:23,611 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 21:35:23,611 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 21:35:23,611 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 21:35:23,615 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:35:28,251 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:36:12,664 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 21:36:12,751 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 21:36:12,753 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 21:36:12,753 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 21:36:12,753 rec_to_binaries.core: INFO Extracting time... -2021-01-28 21:36:29,294 rec_to_binaries.core: INFO Making position directory... -2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 21:36:29,362 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 21:36:29,828 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 21:36:29,980 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 21:36:30,314 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 21:36:30,315 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 21:36:30,316 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 21:36:30,316 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 21:36:30,318 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 21:36:30,319 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 21:36:30,319 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140679834711248 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 21:36:30,319 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 21:36:30,898 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 21:36:30,899 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 21:36:30,899 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 21:36:30,900 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 21:36:30,900 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 21:36:30,909 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 21:36:30,909 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 21:36:30,913 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 21:36:30,913 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 21:36:30,914 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 21:36:30,915 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 21:36:30,918 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 21:36:30,918 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 21:36:30,918 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 21:36:30,919 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 21:36:30,920 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 21:36:30,952 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 21:36:30,955 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 21:36:30,956 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 21:36:30,956 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 21:36:32,166 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 21:36:32,167 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 21:36:35,084 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 21:36:35,084 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 21:36:35,085 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 21:36:35,085 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 21:36:35,086 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 21:36:35,261 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 21:36:35,268 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:36:39,567 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:36:50,683 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 21:36:50,687 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 21:36:50,974 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 21:36:53,854 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 21:37:04,609 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 21:41:40,605 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 21:41:40,675 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 22:09:00,376 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 22:09:00,628 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 22:09:00,629 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 22:09:00,630 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 22:09:00,631 rec_to_binaries.core: INFO Extracting time... -2021-01-28 22:09:16,354 rec_to_binaries.core: INFO Making position directory... -2021-01-28 22:09:16,378 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 22:09:16,378 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 22:09:16,378 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 22:09:16,379 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 22:09:16,740 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 22:09:16,945 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 22:09:17,265 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 22:09:17,266 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 22:09:17,266 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 22:09:17,266 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 22:09:17,267 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 22:09:17,267 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 22:09:17,267 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 22:09:17,268 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 22:09:17,268 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 22:09:17,268 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 22:09:17,269 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 22:09:17,269 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 22:09:17,269 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 22:09:17,270 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 22:09:17,270 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 22:09:17,273 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 22:09:17,274 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 22:09:17,275 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140260243200720 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 22:09:17,276 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 22:09:17,896 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 22:09:17,898 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 22:09:17,898 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 22:09:17,900 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 22:09:17,901 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 22:09:17,920 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 22:09:17,921 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 22:09:17,934 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 22:09:17,935 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 22:09:17,936 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 22:09:17,936 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 22:09:17,937 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 22:09:17,937 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 22:09:17,938 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 22:09:17,938 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 22:09:17,938 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 22:09:17,939 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 22:09:17,939 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 22:09:17,940 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 22:09:17,949 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 22:09:17,949 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 22:09:17,951 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 22:09:17,951 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 22:09:17,955 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 22:09:18,056 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 22:09:18,066 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 22:09:18,070 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 22:09:18,070 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 22:09:19,195 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 22:09:19,199 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 22:09:21,890 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 22:09:21,891 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 22:09:21,893 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 22:09:21,895 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 22:09:21,896 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 22:09:22,080 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 22:09:22,080 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 22:09:22,080 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 22:09:22,081 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 22:09:22,082 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 22:09:26,161 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 22:09:36,857 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 22:09:36,868 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 22:09:37,168 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 22:09:39,766 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 22:09:48,160 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 22:13:50,133 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 22:13:50,238 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 22:13:50,239 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 22:13:50,245 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 22:13:50,250 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 22:13:50,272 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 22:13:50,274 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 22:13:50,290 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 22:13:50,293 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 22:13:50,295 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 22:13:50,301 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 22:13:50,302 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 22:13:50,307 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 22:13:50,307 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 22:13:50,308 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 22:13:50,310 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 22:13:50,310 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 22:13:50,311 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 22:13:50,313 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 22:14:10,378 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 22:14:10,443 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-28 22:15:00,281 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-28 22:15:00,540 rec_to_binaries.core: INFO Extracting analog data... -2021-01-28 22:15:00,543 rec_to_binaries.core: INFO Extracting DIO... -2021-01-28 22:15:00,543 rec_to_binaries.core: INFO Extracting mda... -2021-01-28 22:15:00,544 rec_to_binaries.core: INFO Extracting time... -2021-01-28 22:18:50,049 rec_to_binaries.core: INFO Making position directory... -2021-01-28 22:18:50,183 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-28 22:18:50,187 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-28 22:18:50,192 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-28 22:18:50,196 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-28 22:18:50,721 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-28 22:18:50,965 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-28 22:18:51,337 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-28 22:18:51,338 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-28 22:18:51,339 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-28 22:18:51,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-28 22:18:51,340 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-28 22:18:51,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-28 22:18:51,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-28 22:18:51,341 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-28 22:18:51,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-28 22:18:51,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-28 22:18:51,342 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-28 22:18:51,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-28 22:18:51,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-28 22:18:51,343 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-28 22:18:51,344 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-28 22:18:51,351 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-28 22:18:51,351 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-28 22:18:51,355 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140214036581136 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-28 22:18:51,355 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-28 22:18:52,005 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-28 22:18:52,012 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-28 22:18:52,012 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-28 22:18:52,014 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-28 22:18:52,018 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-28 22:18:52,039 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-28 22:18:52,039 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-28 22:18:52,054 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-28 22:18:52,054 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-28 22:18:52,056 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-28 22:18:52,057 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-28 22:18:52,058 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-28 22:18:52,059 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-28 22:18:52,059 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-28 22:18:52,059 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-28 22:18:52,061 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-28 22:18:52,061 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-28 22:18:52,062 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-28 22:18:52,063 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-28 22:18:52,070 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-28 22:18:52,070 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-28 22:18:52,072 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-28 22:18:52,072 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-28 22:18:52,077 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-28 22:18:52,182 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-28 22:18:52,192 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-28 22:18:52,197 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-28 22:18:52,198 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-28 22:18:54,670 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-28 22:18:54,678 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-28 22:19:06,454 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-28 22:19:06,457 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-28 22:19:06,464 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-28 22:19:06,467 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-28 22:19:06,468 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-28 22:19:06,672 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-28 22:19:06,672 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-28 22:19:06,673 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-28 22:19:06,674 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-28 22:19:06,681 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 22:19:12,182 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 22:19:31,909 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-28 22:19:31,936 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-28 22:19:32,325 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-28 22:19:39,302 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-28 22:20:04,977 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-28 22:28:11,127 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-28 22:28:11,234 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-29 09:08:34,464 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-29 09:08:34,724 rec_to_binaries.core: INFO Extracting analog data... -2021-01-29 09:08:34,727 rec_to_binaries.core: INFO Extracting DIO... -2021-01-29 09:08:34,728 rec_to_binaries.core: INFO Extracting mda... -2021-01-29 09:08:34,728 rec_to_binaries.core: INFO Extracting time... -2021-01-29 09:08:55,417 rec_to_binaries.core: INFO Making position directory... -2021-01-29 09:08:55,483 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-29 09:08:55,484 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-29 09:08:55,485 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-29 09:08:55,486 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-29 09:08:55,963 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-29 09:08:56,150 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-29 09:08:56,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-29 09:08:56,495 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-29 09:08:56,496 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-29 09:08:56,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-29 09:08:56,497 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-29 09:08:56,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-29 09:08:56,498 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-29 09:08:56,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-29 09:08:56,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-29 09:08:56,499 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-29 09:08:56,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-29 09:08:56,500 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-29 09:08:56,501 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-29 09:08:56,501 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-29 09:08:56,501 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-29 09:08:56,505 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-29 09:08:56,506 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-29 09:08:56,507 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140251786373968 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-29 09:08:56,508 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-29 09:08:57,310 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-29 09:08:57,316 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-29 09:08:57,317 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-29 09:08:57,319 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-29 09:08:57,321 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-29 09:08:57,342 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-29 09:08:57,342 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-29 09:08:57,357 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-29 09:08:57,358 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-29 09:08:57,359 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-29 09:08:57,360 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-29 09:08:57,363 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-29 09:08:57,364 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-29 09:08:57,364 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-29 09:08:57,365 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-29 09:08:57,366 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-29 09:08:57,366 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-29 09:08:57,366 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-29 09:08:57,367 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-29 09:08:57,374 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-29 09:08:57,374 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-29 09:08:57,375 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-29 09:08:57,376 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-29 09:08:57,380 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-29 09:08:57,483 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-29 09:08:57,495 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-29 09:08:57,499 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-29 09:08:57,499 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-29 09:08:58,843 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-29 09:08:58,849 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-29 09:09:01,590 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-29 09:09:01,590 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-29 09:09:01,593 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-29 09:09:01,596 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-29 09:09:01,597 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-29 09:09:01,801 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-29 09:09:01,801 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-29 09:09:01,802 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-29 09:09:01,802 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-29 09:09:01,803 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 09:09:05,773 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 09:09:17,151 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-29 09:11:56,368 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-29 09:11:56,676 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 09:11:59,387 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 09:12:11,116 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-29 09:16:25,860 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-29 09:16:25,945 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-29 09:22:02,426 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 2 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-29 09:22:02,515 rec_to_binaries.core: INFO Extracting analog data... -2021-01-29 09:22:02,516 rec_to_binaries.core: INFO Extracting DIO... -2021-01-29 09:22:02,516 rec_to_binaries.core: INFO Extracting mda... -2021-01-29 09:22:02,516 rec_to_binaries.core: INFO Extracting time... -2021-01-29 09:22:18,887 rec_to_binaries.core: INFO Making position directory... -2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-29 09:22:18,913 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-29 09:22:19,090 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-29 09:22:19,258 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-29 09:22:19,570 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-29 09:22:19,570 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-29 09:22:19,571 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-29 09:22:19,572 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-29 09:22:19,573 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-29 09:22:19,574 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-29 09:22:19,574 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140702351632784 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-29 09:22:19,574 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-29 09:22:20,113 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-29 09:22:20,114 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-29 09:22:20,114 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-29 09:22:20,114 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-29 09:22:20,115 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-29 09:22:20,121 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-29 09:22:20,121 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-29 09:22:20,125 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-29 09:22:20,126 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-29 09:22:20,127 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-29 09:22:20,132 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-29 09:22:20,132 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-29 09:22:20,133 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-29 09:22:20,133 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-29 09:22:20,134 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-29 09:22:20,163 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-29 09:22:20,166 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-29 09:22:20,167 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-29 09:22:20,167 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-29 09:22:21,364 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-29 09:22:21,366 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-29 09:22:24,157 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-29 09:22:24,158 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-29 09:22:24,159 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-29 09:22:24,160 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-29 09:22:24,160 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-29 09:22:24,333 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-29 09:22:24,334 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 09:22:28,498 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 09:22:39,113 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-29 09:22:39,117 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-29 09:22:39,390 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 09:22:42,059 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 09:22:51,120 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-29 09:27:06,070 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-29 09:27:06,154 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-29 10:03:28,514 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 2 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-29 10:03:28,618 rec_to_binaries.core: INFO Extracting analog data... -2021-01-29 10:03:28,619 rec_to_binaries.core: INFO Extracting DIO... -2021-01-29 10:03:28,619 rec_to_binaries.core: INFO Extracting mda... -2021-01-29 10:03:28,619 rec_to_binaries.core: INFO Extracting time... -2021-01-29 10:03:48,411 rec_to_binaries.core: INFO Making position directory... -2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-29 10:03:48,438 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-29 10:03:48,667 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-29 10:03:48,835 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-29 10:03:49,155 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-29 10:03:49,155 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-29 10:03:49,155 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-29 10:03:49,156 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-29 10:03:49,156 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-29 10:03:49,157 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-29 10:03:49,158 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-29 10:03:49,161 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-29 10:03:49,162 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-29 10:03:49,162 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140587285060240 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-29 10:03:49,163 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-29 10:03:49,796 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-29 10:03:49,797 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-29 10:03:49,798 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-29 10:03:49,798 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-29 10:03:49,798 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-29 10:03:49,807 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-29 10:03:49,807 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-29 10:03:49,812 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-29 10:03:49,812 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-29 10:03:49,812 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-29 10:03:49,813 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-29 10:03:49,814 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-29 10:03:49,817 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-29 10:03:49,817 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-29 10:03:49,818 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-29 10:03:49,818 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-29 10:03:49,819 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-29 10:03:49,854 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-29 10:03:49,857 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-29 10:03:49,858 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-29 10:03:49,859 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-29 10:03:51,159 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-29 10:03:51,160 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-29 10:03:54,398 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-29 10:03:54,398 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-29 10:03:54,399 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-29 10:03:54,400 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-29 10:03:54,400 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-29 10:03:54,585 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-29 10:03:54,585 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-29 10:03:54,586 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-29 10:03:54,586 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-29 10:03:54,586 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:03:59,608 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:04:12,346 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-29 10:04:12,351 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-29 10:04:12,648 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:04:15,429 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:04:26,213 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-29 10:04:42,509 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:04:43,573 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:04:59,437 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. -2021-01-29 10:09:40,572 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 2 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-29 10:09:40,695 rec_to_binaries.core: INFO Extracting analog data... -2021-01-29 10:09:40,696 rec_to_binaries.core: INFO Extracting DIO... -2021-01-29 10:09:40,696 rec_to_binaries.core: INFO Extracting mda... -2021-01-29 10:09:40,696 rec_to_binaries.core: INFO Extracting time... -2021-01-29 10:10:00,871 rec_to_binaries.core: INFO Making position directory... -2021-01-29 10:10:00,888 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-29 10:10:00,888 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-29 10:10:00,888 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-29 10:10:00,889 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-29 10:10:01,094 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-29 10:10:01,251 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-29 10:10:01,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-29 10:10:01,594 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-29 10:10:01,595 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-29 10:10:01,596 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-29 10:10:01,597 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-29 10:10:01,598 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-29 10:10:01,598 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140719454884176 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-29 10:10:01,598 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-29 10:10:02,217 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-29 10:10:02,218 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-29 10:10:02,218 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-29 10:10:02,218 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-29 10:10:02,219 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-29 10:10:02,227 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-29 10:10:02,227 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-29 10:10:02,232 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-29 10:10:02,232 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-29 10:10:02,233 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-29 10:10:02,234 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-29 10:10:02,237 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-29 10:10:02,237 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-29 10:10:02,237 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-29 10:10:02,238 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-29 10:10:02,239 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-29 10:10:02,272 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-29 10:10:02,275 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-29 10:10:02,278 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-29 10:10:02,278 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-29 10:10:03,734 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-29 10:10:03,736 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-29 10:10:07,256 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-29 10:10:07,256 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-29 10:10:07,257 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-29 10:10:07,258 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-29 10:10:07,258 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-29 10:10:07,443 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-29 10:10:07,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-29 10:10:07,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-29 10:10:07,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-29 10:10:07,444 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:10:12,602 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:10:25,546 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-29 10:10:25,550 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-29 10:10:25,848 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:10:29,016 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:10:43,292 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-01-29 10:11:08,370 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:11:09,984 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:11:27,286 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb file has been created. -2021-01-29 10:13:16,941 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -parallel_instances = 2 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb_builder_test_data/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-01-29 10:13:17,038 rec_to_binaries.core: INFO Extracting analog data... -2021-01-29 10:13:17,039 rec_to_binaries.core: INFO Extracting DIO... -2021-01-29 10:13:17,039 rec_to_binaries.core: INFO Extracting mda... -2021-01-29 10:13:17,039 rec_to_binaries.core: INFO Extracting time... -2021-01-29 10:13:38,315 rec_to_binaries.core: INFO Making position directory... -2021-01-29 10:13:38,348 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-01-29 10:13:38,349 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-01-29 10:13:38,349 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-01-29 10:13:38,349 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb_builder_test_data/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb - -2021-01-29 10:13:38,628 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb_builder_test_data/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-01-29 10:13:38,819 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-01-29 10:13:39,185 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-01-29 10:13:39,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-01-29 10:13:39,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-01-29 10:13:39,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-01-29 10:13:39,187 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-01-29 10:13:39,188 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-01-29 10:13:39,188 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-01-29 10:13:39,188 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-01-29 10:13:39,189 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-01-29 10:13:39,191 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-01-29 10:13:39,191 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-01-29 10:13:39,192 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140553975122896 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-01-29 10:13:39,193 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-01-29 10:13:39,902 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-01-29 10:13:39,904 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-01-29 10:13:39,904 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-01-29 10:13:39,904 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-01-29 10:13:39,905 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-01-29 10:13:39,916 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-01-29 10:13:39,916 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-01-29 10:13:39,921 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-01-29 10:13:39,921 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-01-29 10:13:39,922 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-01-29 10:13:39,923 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-01-29 10:13:39,927 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-01-29 10:13:39,927 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-01-29 10:13:39,928 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-01-29 10:13:39,928 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-01-29 10:13:39,930 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-01-29 10:13:39,974 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-01-29 10:13:39,976 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-01-29 10:13:39,978 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-01-29 10:13:39,979 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-01-29 10:13:41,500 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-01-29 10:13:41,502 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-01-29 10:13:44,733 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-01-29 10:13:44,734 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-01-29 10:13:44,735 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-01-29 10:13:44,735 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-01-29 10:13:44,736 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-01-29 10:13:44,938 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-01-29 10:13:44,939 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-01-29 10:13:44,939 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-01-29 10:13:44,939 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-01-29 10:13:44,940 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:13:49,614 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:14:01,610 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-01-29 10:14:01,614 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-01-29 10:14:01,913 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-01-29 10:14:04,761 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb_builder_test_data/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-01-29 10:14:16,167 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-01-29 10:18:46,146 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-01-29 10:18:46,230 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb_builder_test_data/tmpbeans20190718.nwb -2021-02-14 13:18:09,625 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-02-14 13:18:09,877 rec_to_binaries.core: INFO Extracting analog data... -2021-02-14 13:18:09,882 rec_to_binaries.core: INFO Extracting DIO... -2021-02-14 13:18:09,883 rec_to_binaries.core: INFO Extracting mda... -2021-02-14 13:18:09,883 rec_to_binaries.core: INFO Extracting time... -2021-02-14 13:18:31,354 rec_to_binaries.core: INFO Making position directory... -2021-02-14 13:18:31,381 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-02-14 13:18:31,382 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-02-14 13:18:31,382 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-02-14 13:18:31,382 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 14:14:55,593 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 14:14:55,683 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 14:14:55,685 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 14:14:55,685 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 14:14:55,686 rec_to_binaries.core: INFO Extracting time... -2021-05-23 14:15:09,520 rec_to_binaries.core: INFO Making position directory... -2021-05-23 14:15:09,540 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 14:15:09,541 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 14:15:09,541 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 14:15:09,541 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 14:16:56,587 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 14:16:56,667 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 14:16:56,668 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 14:16:56,668 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 14:16:56,669 rec_to_binaries.core: INFO Extracting time... -2021-05-23 14:17:09,042 rec_to_binaries.core: INFO Making position directory... -2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 14:17:09,065 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 14:18:00,761 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 14:18:00,833 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 14:18:00,835 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 14:18:00,835 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 14:18:00,837 rec_to_binaries.core: INFO Extracting time... -2021-05-23 14:18:11,525 rec_to_binaries.core: INFO Making position directory... -2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 14:18:11,535 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 14:19:45,584 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 14:19:45,663 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 14:19:45,665 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 14:19:45,665 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 14:19:45,665 rec_to_binaries.core: INFO Extracting time... -2021-05-23 14:19:57,859 rec_to_binaries.core: INFO Making position directory... -2021-05-23 14:19:57,879 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 14:19:57,880 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 14:19:57,880 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 14:19:57,880 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 14:19:58,039 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-05-23 14:32:01,963 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 14:32:02,045 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 14:32:02,047 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 14:32:02,047 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 14:32:02,047 rec_to_binaries.core: INFO Extracting time... -2021-05-23 14:32:14,124 rec_to_binaries.core: INFO Making position directory... -2021-05-23 14:32:14,158 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 14:32:14,158 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 14:32:14,159 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 14:32:14,159 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 14:32:14,325 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-05-23 14:32:14,758 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-23 14:32:14,759 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-23 14:32:14,760 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-23 14:32:14,761 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-23 14:32:14,761 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-23 14:32:14,761 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-23 14:32:14,763 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-23 14:32:14,764 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-23 14:32:14,764 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140679691564624 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-05-23 14:32:14,765 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-23 16:43:16,429 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 16:43:16,519 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 16:43:16,521 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 16:43:16,521 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 16:43:16,521 rec_to_binaries.core: INFO Extracting time... -2021-05-23 16:43:28,972 rec_to_binaries.core: INFO Making position directory... -2021-05-23 16:43:28,996 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 16:43:28,996 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 16:43:28,996 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 16:43:28,997 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 16:43:29,156 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-05-23 16:43:29,579 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-23 16:43:29,580 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-23 16:43:29,581 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-23 16:43:29,582 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-23 16:43:29,583 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-23 16:43:29,583 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-23 16:43:29,584 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140383203449040 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-05-23 16:43:29,584 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-23 17:04:48,902 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 17:04:48,987 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 17:04:48,988 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 17:04:48,989 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 17:04:48,989 rec_to_binaries.core: INFO Extracting time... -2021-05-23 17:05:00,647 rec_to_binaries.core: INFO Making position directory... -2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 17:05:00,664 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 17:05:00,825 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-05-23 17:05:01,236 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-23 17:05:01,237 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-23 17:05:01,238 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-23 17:05:01,239 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-23 17:05:01,240 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-23 17:05:01,242 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-23 17:05:01,242 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-23 17:05:01,243 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140297033812624 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-05-23 17:05:01,243 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-23 17:05:01,742 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-05-23 17:05:01,743 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-05-23 17:05:01,744 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-05-23 17:05:01,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-05-23 17:05:01,744 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-05-23 17:05:01,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-05-23 17:05:01,753 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-05-23 17:05:01,757 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-05-23 17:05:01,758 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-05-23 17:05:01,759 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-05-23 17:05:01,759 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. -2021-05-23 17:05:01,760 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. -2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-05-23 17:05:01,762 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-05-23 17:05:01,763 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-05-23 17:05:01,795 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-05-23 17:05:01,798 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-05-23 17:05:01,799 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-05-23 17:05:01,799 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-05-23 17:05:02,938 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-05-23 17:05:02,940 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-05-23 17:05:05,439 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-05-23 17:05:05,439 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-05-23 17:05:05,440 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-05-23 17:05:05,446 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-05-23 17:05:05,446 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-05-23 17:05:05,603 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-05-23 17:05:05,604 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:05:07,685 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:05:17,883 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-05-23 17:05:17,889 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-05-23 17:05:18,106 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:05:19,729 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:05:27,363 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-05-23 17:08:44,455 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 17:08:44,660 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 17:08:44,664 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 17:08:44,665 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 17:08:44,666 rec_to_binaries.core: INFO Extracting time... -2021-05-23 17:08:56,202 rec_to_binaries.core: INFO Making position directory... -2021-05-23 17:08:56,226 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 17:08:56,227 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 17:08:56,227 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 17:08:56,227 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 17:08:56,533 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-05-23 17:08:56,973 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-23 17:08:56,976 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-23 17:08:56,977 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-23 17:08:56,977 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-23 17:08:56,978 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-23 17:08:56,978 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-23 17:08:56,978 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-23 17:08:56,979 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-23 17:08:56,979 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-23 17:08:56,979 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-23 17:08:56,980 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-23 17:08:56,980 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-23 17:08:56,980 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-23 17:08:56,981 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-23 17:08:56,981 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-23 17:08:56,981 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-23 17:08:56,983 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-23 17:08:56,984 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-23 17:08:56,985 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140222907934160 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-05-23 17:08:56,985 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-23 17:08:57,493 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-05-23 17:08:57,495 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-05-23 17:08:57,496 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-05-23 17:08:57,497 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-05-23 17:08:57,498 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-05-23 17:08:57,516 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-05-23 17:08:57,516 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-05-23 17:08:57,528 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-05-23 17:08:57,528 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-05-23 17:08:57,529 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-05-23 17:08:57,530 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-05-23 17:08:57,531 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-05-23 17:08:57,531 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-05-23 17:08:57,532 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-05-23 17:08:57,532 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-05-23 17:08:57,533 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-05-23 17:08:57,533 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. -2021-05-23 17:08:57,534 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. -2021-05-23 17:08:57,537 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-05-23 17:08:57,538 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-05-23 17:08:57,539 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-05-23 17:08:57,539 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-05-23 17:08:57,542 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-05-23 17:08:57,627 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-05-23 17:08:57,637 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-05-23 17:08:57,640 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-05-23 17:08:57,640 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-05-23 17:08:58,751 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-05-23 17:08:58,754 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-05-23 17:09:01,185 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-05-23 17:09:01,185 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-05-23 17:09:01,188 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-05-23 17:09:01,190 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-05-23 17:09:01,191 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-05-23 17:09:01,358 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-05-23 17:09:01,359 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:09:03,408 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:09:13,653 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-05-23 17:09:13,665 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-05-23 17:09:13,897 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:09:15,454 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:09:22,719 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-05-23 17:33:30,542 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 17:33:30,760 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 17:33:30,763 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 17:33:30,764 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 17:33:30,765 rec_to_binaries.core: INFO Extracting time... -2021-05-23 17:33:42,413 rec_to_binaries.core: INFO Making position directory... -2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 17:33:42,430 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 17:33:42,754 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-05-23 17:33:43,178 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-23 17:33:43,181 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-23 17:33:43,181 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-23 17:33:43,182 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-23 17:33:43,182 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-23 17:33:43,182 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-23 17:33:43,183 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-23 17:33:43,183 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-23 17:33:43,183 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-23 17:33:43,184 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-23 17:33:43,184 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-23 17:33:43,184 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-23 17:33:43,185 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-23 17:33:43,185 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-23 17:33:43,186 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-23 17:33:43,186 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-23 17:33:43,187 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-23 17:33:43,188 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-23 17:33:43,188 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140674011547728 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-05-23 17:33:43,189 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-23 17:33:43,750 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-05-23 17:33:43,753 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-05-23 17:33:43,753 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-05-23 17:33:43,754 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-05-23 17:33:43,756 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-05-23 17:33:43,776 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-05-23 17:33:43,777 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-05-23 17:33:43,790 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-05-23 17:33:43,790 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-05-23 17:33:43,792 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-05-23 17:33:43,792 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-05-23 17:33:43,792 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-05-23 17:33:43,793 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-05-23 17:33:43,793 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-05-23 17:33:43,793 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-05-23 17:33:43,795 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-05-23 17:33:43,795 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-05-23 17:33:43,795 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-05-23 17:33:43,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-05-23 17:33:43,796 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. -2021-05-23 17:33:43,797 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. -2021-05-23 17:33:43,801 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-05-23 17:33:43,801 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-05-23 17:33:43,803 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-05-23 17:33:43,803 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-05-23 17:33:43,807 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-05-23 17:33:43,899 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-05-23 17:33:43,909 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-05-23 17:33:43,913 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-05-23 17:33:43,913 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-05-23 17:33:45,108 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-05-23 17:33:45,112 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-05-23 17:33:47,661 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-05-23 17:33:47,662 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-05-23 17:33:47,664 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-05-23 17:33:47,666 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-05-23 17:33:47,667 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-05-23 17:33:47,834 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-05-23 17:33:47,835 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:33:49,914 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:34:00,444 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-05-23 17:34:00,456 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-05-23 17:34:00,695 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:34:02,475 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:34:10,595 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-05-23 17:38:00,331 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /Users/loren/data/nwb/ -animal_name = beans -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0', '-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -analog_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -time_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -spikes_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -dio_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') -trodes_rec_export_args = ('-reconfig', '/Users/loren/data/nwb/beans/Probe_128ch_allnT_DIOs_PTP_reconfig_export_shanks.xml') - -2021-05-23 17:38:00,531 rec_to_binaries.core: INFO Extracting analog data... -2021-05-23 17:38:00,534 rec_to_binaries.core: INFO Extracting DIO... -2021-05-23 17:38:00,535 rec_to_binaries.core: INFO Extracting mda... -2021-05-23 17:38:00,536 rec_to_binaries.core: INFO Extracting time... -2021-05-23 17:38:12,235 rec_to_binaries.core: INFO Making position directory... -2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20190718 -2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-23 17:38:12,249 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /Users/loren/data/nwb/ -animal_name = beans -date = 20190718 -nwb_metadata = Experiment Info: -Experimenter: Alison Comrie -Description: Reinforcement learning -Session Id: beans_01 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /Users/loren/data/nwb/rawbeans20190718.nwb - -2021-05-23 17:38:12,593 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_01_s1.rec'), PosixPath('/Users/loren/data/nwb/beans/raw/20190718/20190718_beans_02_r1.rec')] contain inconsistent xml headers! - , [UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='controllerSerial', value='00000 00000'), UpdateAttrib(node='/Configuration/GlobalConfiguration[1]', name='headstageFirmwareVersion', value='0.0')] -2021-05-23 17:38:13,030 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-23 17:38:13,033 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-23 17:38:13,033 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-23 17:38:13,033 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-23 17:38:13,034 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-23 17:38:13,034 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-23 17:38:13,035 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-23 17:38:13,035 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-23 17:38:13,035 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-23 17:38:13,036 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-23 17:38:13,036 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-23 17:38:13,036 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-23 17:38:13,037 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-23 17:38:13,037 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-23 17:38:13,037 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-23 17:38:13,038 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-23 17:38:13,039 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-23 17:38:13,040 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-23 17:38:13,040 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [statescript_r1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140616841906384 -Fields: - content: ~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71285 UP 1 -71285 1 0 -~~~ -~~~ -71314 DOWN 1 -71314 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -71353 contingency = 0 -71353 trialThresh = 100 -71353 timeMaxOut = 30 -71353 timeElapsed = 0 -71354 totalPokes = 1 -71354 totalRewards = 0 -71354 countPokes1 = 1 -71355 countRewards1 = 0 -71355 leafProbs1 = 20 -71355 countPokes2 = 0 -71355 countRewards2 = 0 -71369 leafProbs2 = 50 -71370 countPokes3 = 0 -71370 countRewards3 = 0 -71371 leafProbs3 = 80 -71371 countPokes4 = 0 -71371 countRewards4 = 0 -71371 leafProbs4 = 50 -71372 countPokes5 = 0 -71372 countRewards5 = 0 -71373 leafProbs5 = 20 -71373 countPokes6 = 0 -71387 countRewards6 = 0 -71387 leafProbs6 = 80 -~~~ -71477 UP 1 -71477 1 0 -71526 DOWN 1 -71526 0 0 -71547 UP 1 -71547 1 0 -71617 DOWN 1 -71617 0 0 -71625 UP 1 -71625 1 0 -73827 DOWN 1 -73827 0 0 -83303 UP 6 -83303 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83332 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -83439 DOWN 6 -83439 0 2048 -~~~ -83459 contingency = 0 -83459 trialThresh = 100 -83459 timeMaxOut = 30 -83459 timeElapsed = 0 -83460 totalPokes = 2 -83460 totalRewards = 1 -83461 countPokes1 = 1 -83461 countRewards1 = 0 -83461 leafProbs1 = 20 -83461 countPokes2 = 0 -83462 countRewards2 = 0 -83476 leafProbs2 = 50 -83476 countPokes3 = 0 -83477 countRewards3 = 0 -83477 leafProbs3 = 80 -83477 countPokes4 = 0 -83477 countRewards4 = 0 -83478 leafProbs4 = 50 -83478 countPokes5 = 0 -83479 countRewards5 = 0 -83479 leafProbs5 = 20 -83479 countPokes6 = 1 -83493 countRewards6 = 1 -83493 leafProbs6 = 80 -~~~ -83494 UP 6 -83494 32 2048 -83607 DOWN 6 -83607 0 2048 -83619 UP 6 -83619 32 2048 -83632 32 0 -83690 DOWN 6 -83690 0 0 -83702 UP 6 -83702 32 0 -83775 DOWN 6 -83775 0 0 -83783 UP 6 -83783 32 0 -86043 DOWN 6 -86043 0 0 -89924 UP 6 -89924 32 0 -90234 DOWN 6 -90234 0 0 -90255 UP 6 -90255 32 0 -90276 DOWN 6 -90276 0 0 -90337 UP 6 -90337 32 0 -90348 DOWN 6 -90348 0 0 -90353 UP 6 -90353 32 0 -90386 DOWN 6 -90386 0 0 -90444 UP 6 -90444 32 0 -90493 DOWN 6 -90493 0 0 -93393 UP 5 -93393 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -93710 DOWN 5 -93710 0 0 -93720 UP 5 -93720 16 0 -~~~ -93729 contingency = 0 -93730 trialThresh = 100 -93730 timeMaxOut = 30 -93731 timeElapsed = 1 -93731 totalPokes = 3 -93731 totalRewards = 1 -93731 countPokes1 = 1 -93732 countRewards1 = 0 -93732 leafProbs1 = 20 -93733 countPokes2 = 0 -93733 countRewards2 = 0 -93747 leafProbs2 = 50 -93747 countPokes3 = 0 -93747 countRewards3 = 0 -93748 leafProbs3 = 80 -93748 countPokes4 = 0 -93749 countRewards4 = 0 -93749 leafProbs4 = 50 -93749 countPokes5 = 1 -93749 countRewards5 = 0 -93749 leafProbs5 = 20 -93750 countPokes6 = 1 -93764 countRewards6 = 1 -93765 leafProbs6 = 80 -~~~ -93795 DOWN 5 -93795 0 0 -93798 UP 5 -93798 16 0 -95741 DOWN 5 -95741 0 0 -95789 UP 5 -95789 16 0 -95836 DOWN 5 -95836 0 0 -95911 UP 5 -95911 16 0 -95943 DOWN 5 -95943 0 0 -99125 UP 4 -99125 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99163 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -99457 DOWN 4 -99457 0 512 -99463 0 0 -99472 UP 4 -99472 8 0 -~~~ -99478 contingency = 0 -99479 trialThresh = 100 -99479 timeMaxOut = 30 -99479 timeElapsed = 1 -99479 totalPokes = 4 -99480 totalRewards = 2 -99480 countPokes1 = 1 -99481 countRewards1 = 0 -99481 leafProbs1 = 20 -99481 countPokes2 = 0 -99481 countRewards2 = 0 -99495 leafProbs2 = 50 -99496 countPokes3 = 0 -99496 countRewards3 = 0 -99497 leafProbs3 = 80 -99497 countPokes4 = 1 -99497 countRewards4 = 1 -99497 leafProbs4 = 50 -99498 countPokes5 = 1 -99498 countRewards5 = 0 -99499 leafProbs5 = 20 -99499 countPokes6 = 1 -99513 countRewards6 = 1 -99513 leafProbs6 = 80 -~~~ -99513 DOWN 4 -99513 0 0 -99514 UP 4 -99514 8 0 -99547 DOWN 4 -99547 0 0 -99559 UP 4 -99559 8 0 -99634 DOWN 4 -99634 0 0 -99644 UP 4 -99644 8 0 -99731 DOWN 4 -99731 0 0 -99735 UP 4 -99734 8 0 -102100 DOWN 4 -102100 0 0 -102117 UP 4 -102117 8 0 -102289 DOWN 4 -102289 0 0 -102294 UP 4 -102294 8 0 -102324 DOWN 4 -102324 0 0 -102328 UP 4 -102328 8 0 -102405 DOWN 4 -102405 0 0 -102433 UP 4 -102433 8 0 -102495 DOWN 4 -102495 0 0 -102499 UP 4 -102499 8 0 -102713 DOWN 4 -102713 0 0 -104714 UP 3 -104714 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104738 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -104837 DOWN 3 -104837 0 256 -104848 UP 3 -104848 4 256 -~~~ -104868 contingency = 0 -104869 trialThresh = 100 -104869 timeMaxOut = 30 -104870 timeElapsed = 1 -104870 totalPokes = 5 -104870 totalRewards = 3 -104870 countPokes1 = 1 -104870 countRewards1 = 0 -104871 leafProbs1 = 20 -104871 countPokes2 = 0 -104872 countRewards2 = 0 -104886 leafProbs2 = 50 -104886 countPokes3 = 1 -104886 countRewards3 = 1 -104886 leafProbs3 = 80 -104886 countPokes4 = 1 -104887 countRewards4 = 1 -104887 leafProbs4 = 50 -104888 countPokes5 = 1 -104888 countRewards5 = 0 -104888 leafProbs5 = 20 -104902 countPokes6 = 1 -104902 countRewards6 = 1 -104902 leafProbs6 = 80 -~~~ -104922 DOWN 3 -104922 0 256 -104926 UP 3 -104926 4 256 -105038 4 0 -109076 DOWN 3 -109076 0 0 -109084 UP 3 -109084 4 0 -109166 DOWN 3 -109166 0 0 -111301 UP 4 -111301 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111332 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -111632 8 0 -111725 DOWN 4 -111725 0 0 -~~~ -111739 contingency = 0 -111740 trialThresh = 100 -111740 timeMaxOut = 30 -111740 timeElapsed = 1 -111740 totalPokes = 6 -111741 totalRewards = 4 -111741 countPokes1 = 1 -111741 countRewards1 = 0 -111742 leafProbs1 = 20 -111742 countPokes2 = 0 -111742 countRewards2 = 0 -111756 leafProbs2 = 50 -111756 countPokes3 = 1 -111757 countRewards3 = 1 -111757 leafProbs3 = 80 -111758 countPokes4 = 2 -111758 countRewards4 = 2 -111758 leafProbs4 = 50 -111758 countPokes5 = 1 -111759 countRewards5 = 0 -111759 leafProbs5 = 20 -111773 countPokes6 = 1 -111773 countRewards6 = 1 -111773 leafProbs6 = 80 -~~~ -111774 UP 4 -111774 8 0 -111822 DOWN 4 -111822 0 0 -111845 UP 4 -111845 8 0 -111859 DOWN 4 -111859 0 0 -111863 UP 4 -111863 8 0 -111916 DOWN 4 -111916 0 0 -111924 UP 4 -111924 8 0 -112011 DOWN 4 -112011 0 0 -112024 UP 4 -112024 8 0 -115862 DOWN 4 -115862 0 0 -120572 UP 3 -120572 4 0 -120578 DOWN 3 -120578 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120596 UP 3 -120596 4 0 -~~~ -~~~ -~~~ -120598 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -120618 contingency = 0 -120618 trialThresh = 100 -120618 timeMaxOut = 30 -120619 timeElapsed = 1 -120619 totalPokes = 7 -120620 totalRewards = 5 -120620 countPokes1 = 1 -120620 countRewards1 = 0 -120620 leafProbs1 = 20 -120621 countPokes2 = 0 -120621 countRewards2 = 0 -120635 leafProbs2 = 50 -120635 countPokes3 = 2 -120636 countRewards3 = 2 -120636 leafProbs3 = 80 -120636 countPokes4 = 2 -120636 countRewards4 = 2 -120637 leafProbs4 = 50 -120637 countPokes5 = 1 -120638 countRewards5 = 0 -120638 leafProbs5 = 20 -120652 countPokes6 = 1 -120652 countRewards6 = 1 -120652 leafProbs6 = 80 -~~~ -120725 DOWN 3 -120725 0 256 -120737 UP 3 -120737 4 256 -120888 DOWN 3 -120888 0 256 -120892 UP 3 -120892 4 256 -120898 4 0 -120972 DOWN 3 -120972 0 0 -120978 UP 3 -120978 4 0 -122784 DOWN 3 -122784 0 0 -122796 UP 3 -122796 4 0 -124186 DOWN 3 -124186 0 0 -124197 UP 3 -124197 4 0 -124412 DOWN 3 -124412 0 0 -124416 UP 3 -124416 4 0 -124523 DOWN 3 -124523 0 0 -124528 UP 3 -124528 4 0 -124634 DOWN 3 -124634 0 0 -124652 UP 3 -124652 4 0 -124737 DOWN 3 -124737 0 0 -127874 UP 3 -127874 4 0 -127960 DOWN 3 -127960 0 0 -129499 UP 4 -129498 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -129734 DOWN 4 -129734 0 0 -~~~ -129756 contingency = 0 -129756 trialThresh = 100 -129756 timeMaxOut = 30 -129757 timeElapsed = 1 -129757 totalPokes = 8 -129758 totalRewards = 5 -129758 countPokes1 = 1 -129758 countRewards1 = 0 -129758 leafProbs1 = 20 -129759 countPokes2 = 0 -129759 countRewards2 = 0 -129773 leafProbs2 = 50 -129774 countPokes3 = 2 -129774 countRewards3 = 2 -129774 leafProbs3 = 80 -129774 countPokes4 = 3 -129774 countRewards4 = 2 -129775 leafProbs4 = 50 -129775 countPokes5 = 1 -129776 countRewards5 = 0 -129776 leafProbs5 = 20 -129790 countPokes6 = 1 -129790 countRewards6 = 1 -129790 leafProbs6 = 80 -~~~ -129790 UP 4 -129790 8 0 -129817 DOWN 4 -129817 0 0 -129837 UP 4 -129837 8 0 -129908 DOWN 4 -129908 0 0 -129938 UP 4 -129938 8 0 -130003 DOWN 4 -130003 0 0 -130018 UP 4 -130018 8 0 -130100 DOWN 4 -130100 0 0 -130107 UP 4 -130107 8 0 -130294 DOWN 4 -130294 0 0 -133136 UP 2 -133136 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -133392 DOWN 2 -133392 0 0 -133402 UP 2 -133402 2 0 -~~~ -133414 contingency = 0 -133414 trialThresh = 100 -133414 timeMaxOut = 30 -133414 timeElapsed = 2 -133414 totalPokes = 9 -133415 totalRewards = 5 -133415 countPokes1 = 1 -133416 countRewards1 = 0 -133416 leafProbs1 = 20 -133416 countPokes2 = 1 -133416 countRewards2 = 0 -133430 leafProbs2 = 50 -133431 countPokes3 = 2 -133431 countRewards3 = 2 -133431 leafProbs3 = 80 -133432 countPokes4 = 3 -133432 countRewards4 = 2 -133432 leafProbs4 = 50 -133432 countPokes5 = 1 -133433 countRewards5 = 0 -133433 leafProbs5 = 20 -133447 countPokes6 = 1 -133447 countRewards6 = 1 -133448 leafProbs6 = 80 -~~~ -133475 DOWN 2 -133475 0 0 -133478 UP 2 -133478 2 0 -135403 DOWN 2 -135403 0 0 -137476 UP 1 -137476 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -138283 DOWN 1 -138283 0 0 -138297 UP 1 -138297 1 0 -~~~ -138299 contingency = 0 -138300 trialThresh = 100 -138300 timeMaxOut = 30 -138300 timeElapsed = 2 -138300 totalPokes = 10 -138301 totalRewards = 5 -138301 countPokes1 = 2 -138302 countRewards1 = 0 -138302 leafProbs1 = 20 -138302 countPokes2 = 1 -138302 countRewards2 = 0 -138316 leafProbs2 = 50 -138317 countPokes3 = 2 -138317 countRewards3 = 2 -138317 leafProbs3 = 80 -138318 countPokes4 = 3 -138318 countRewards4 = 2 -138318 leafProbs4 = 50 -138318 countPokes5 = 1 -138319 countRewards5 = 0 -138319 leafProbs5 = 20 -138333 countPokes6 = 1 -138333 countRewards6 = 1 -138334 leafProbs6 = 80 -~~~ -138383 DOWN 1 -138383 0 0 -143484 UP 2 -143484 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143517 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -143817 2 0 -143874 DOWN 2 -143874 0 0 -143880 UP 2 -143880 2 0 -~~~ -143896 contingency = 0 -143896 trialThresh = 100 -143896 timeMaxOut = 30 -143896 timeElapsed = 2 -143897 totalPokes = 11 -143897 totalRewards = 6 -143898 countPokes1 = 2 -143898 countRewards1 = 0 -143898 leafProbs1 = 20 -143898 countPokes2 = 2 -143898 countRewards2 = 1 -143912 leafProbs2 = 50 -143913 countPokes3 = 2 -143913 countRewards3 = 2 -143914 leafProbs3 = 80 -143914 countPokes4 = 3 -143914 countRewards4 = 2 -143914 leafProbs4 = 50 -143915 countPokes5 = 1 -143915 countRewards5 = 0 -143916 leafProbs5 = 20 -143929 countPokes6 = 1 -143930 countRewards6 = 1 -143930 leafProbs6 = 80 -~~~ -143959 DOWN 2 -143959 0 0 -143964 UP 2 -143964 2 0 -143970 DOWN 2 -143970 0 0 -143984 UP 2 -143984 2 0 -144040 DOWN 2 -144040 0 0 -144048 UP 2 -144048 2 0 -145891 DOWN 2 -145891 0 0 -145894 UP 2 -145894 2 0 -145996 DOWN 2 -145996 0 0 -146009 UP 2 -146009 2 0 -146306 DOWN 2 -146306 0 0 -148972 UP 1 -148972 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -149304 DOWN 1 -149304 0 0 -149316 UP 1 -149316 1 0 -~~~ -149321 contingency = 0 -149321 trialThresh = 100 -149322 timeMaxOut = 30 -149322 timeElapsed = 2 -149322 totalPokes = 12 -149322 totalRewards = 6 -149322 countPokes1 = 3 -149323 countRewards1 = 0 -149323 leafProbs1 = 20 -149324 countPokes2 = 2 -149324 countRewards2 = 1 -149338 leafProbs2 = 50 -149338 countPokes3 = 2 -149338 countRewards3 = 2 -149339 leafProbs3 = 80 -149339 countPokes4 = 3 -149340 countRewards4 = 2 -149340 leafProbs4 = 50 -149340 countPokes5 = 1 -149340 countRewards5 = 0 -149340 leafProbs5 = 20 -149354 countPokes6 = 1 -149354 countRewards6 = 1 -149355 leafProbs6 = 80 -~~~ -149406 DOWN 1 -149406 0 0 -149424 UP 1 -149424 1 0 -149690 DOWN 1 -149690 0 0 -152490 UP 2 -152490 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -152629 DOWN 2 -152629 0 0 -~~~ -152654 contingency = 0 -152655 trialThresh = 100 -152655 timeMaxOut = 30 -152656 timeElapsed = 2 -152656 totalPokes = 13 -152656 totalRewards = 6 -152656 countPokes1 = 3 -152657 countRewards1 = 0 -152657 leafProbs1 = 20 -152658 countPokes2 = 3 -152658 countRewards2 = 1 -152672 leafProbs2 = 50 -152672 countPokes3 = 2 -152672 countRewards3 = 2 -152673 leafProbs3 = 80 -152673 countPokes4 = 3 -152673 countRewards4 = 2 -152674 leafProbs4 = 50 -152674 countPokes5 = 1 -152674 countRewards5 = 0 -152674 leafProbs5 = 20 -152688 countPokes6 = 1 -152688 countRewards6 = 1 -152689 leafProbs6 = 80 -~~~ -152689 UP 2 -152689 2 0 -152726 DOWN 2 -152726 0 0 -152753 UP 2 -152753 2 0 -152996 DOWN 2 -152996 0 0 -156487 UP 6 -156487 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156519 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -156807 DOWN 6 -156807 0 2048 -156819 0 0 -156825 UP 6 -156825 32 0 -~~~ -156838 contingency = 0 -156839 trialThresh = 100 -156839 timeMaxOut = 30 -156839 timeElapsed = 2 -156839 totalPokes = 14 -156840 totalRewards = 7 -156840 countPokes1 = 3 -156841 countRewards1 = 0 -156841 leafProbs1 = 20 -156841 countPokes2 = 3 -156841 countRewards2 = 1 -156855 leafProbs2 = 50 -156855 countPokes3 = 2 -156856 countRewards3 = 2 -156856 leafProbs3 = 80 -156857 countPokes4 = 3 -156857 countRewards4 = 2 -156857 leafProbs4 = 50 -156857 countPokes5 = 1 -156858 countRewards5 = 0 -156858 leafProbs5 = 20 -156872 countPokes6 = 2 -156872 countRewards6 = 2 -156873 leafProbs6 = 80 -~~~ -156896 DOWN 6 -156896 0 0 -156906 UP 6 -156906 32 0 -156983 DOWN 6 -156983 0 0 -156994 UP 6 -156994 32 0 -157073 DOWN 6 -157073 0 0 -157078 UP 6 -157078 32 0 -157166 DOWN 6 -157166 0 0 -157171 UP 6 -157171 32 0 -157255 DOWN 6 -157255 0 0 -157259 UP 6 -157259 32 0 -158705 DOWN 6 -158705 0 0 -158730 UP 6 -158730 32 0 -159239 DOWN 6 -159239 0 0 -166577 UP 5 -166577 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166602 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -166735 DOWN 5 -166735 0 1024 -166740 UP 5 -166740 16 1024 -~~~ -166759 contingency = 0 -166759 trialThresh = 100 -166760 timeMaxOut = 30 -166760 timeElapsed = 2 -166761 totalPokes = 15 -166761 totalRewards = 8 -166761 countPokes1 = 3 -166761 countRewards1 = 0 -166761 leafProbs1 = 20 -166762 countPokes2 = 3 -166762 countRewards2 = 1 -166776 leafProbs2 = 50 -166777 countPokes3 = 2 -166777 countRewards3 = 2 -166777 leafProbs3 = 80 -166777 countPokes4 = 3 -166778 countRewards4 = 2 -166778 leafProbs4 = 50 -166779 countPokes5 = 2 -166779 countRewards5 = 1 -166779 leafProbs5 = 20 -166793 countPokes6 = 2 -166793 countRewards6 = 2 -166793 leafProbs6 = 80 -~~~ -166830 DOWN 5 -166830 0 1024 -166853 UP 5 -166852 16 1024 -166902 16 0 -167066 DOWN 5 -167066 0 0 -167078 UP 5 -167078 16 0 -167329 DOWN 5 -167329 0 0 -167333 UP 5 -167333 16 0 -169197 DOWN 5 -169197 0 0 -169220 UP 5 -169220 16 0 -169283 DOWN 5 -169283 0 0 -173135 UP 6 -173135 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173164 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -173281 DOWN 6 -173281 0 2048 -173299 UP 6 -173299 32 2048 -~~~ -173313 contingency = 0 -173313 trialThresh = 100 -173313 timeMaxOut = 30 -173314 timeElapsed = 3 -173314 totalPokes = 16 -173315 totalRewards = 9 -173315 countPokes1 = 3 -173315 countRewards1 = 0 -173315 leafProbs1 = 20 -173316 countPokes2 = 3 -173316 countRewards2 = 1 -173330 leafProbs2 = 50 -173331 countPokes3 = 2 -173331 countRewards3 = 2 -173331 leafProbs3 = 80 -173331 countPokes4 = 3 -173331 countRewards4 = 2 -173332 leafProbs4 = 50 -173332 countPokes5 = 2 -173333 countRewards5 = 1 -173333 leafProbs5 = 20 -173347 countPokes6 = 3 -173347 countRewards6 = 3 -173347 leafProbs6 = 80 -~~~ -173373 DOWN 6 -173373 0 2048 -173379 UP 6 -173379 32 2048 -173464 32 0 -173559 DOWN 6 -173559 0 0 -173575 UP 6 -173575 32 0 -175758 DOWN 6 -175758 0 0 -177976 UP 5 -177976 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -178223 DOWN 5 -178223 0 0 -178238 UP 5 -178238 16 0 -~~~ -178245 contingency = 0 -178246 trialThresh = 100 -178246 timeMaxOut = 30 -178247 timeElapsed = 3 -178247 totalPokes = 17 -178247 totalRewards = 9 -178247 countPokes1 = 3 -178248 countRewards1 = 0 -178248 leafProbs1 = 20 -178249 countPokes2 = 3 -178249 countRewards2 = 1 -178263 leafProbs2 = 50 -178263 countPokes3 = 2 -178263 countRewards3 = 2 -178263 leafProbs3 = 80 -178264 countPokes4 = 3 -178264 countRewards4 = 2 -178265 leafProbs4 = 50 -178265 countPokes5 = 3 -178265 countRewards5 = 1 -178265 leafProbs5 = 20 -178279 countPokes6 = 3 -178279 countRewards6 = 3 -178280 leafProbs6 = 80 -~~~ -178316 DOWN 5 -178316 0 0 -178318 UP 5 -178318 16 0 -178539 DOWN 5 -178539 0 0 -181379 UP 4 -181379 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -181625 DOWN 4 -181625 0 0 -181645 UP 4 -181645 8 0 -~~~ -181646 contingency = 0 -181646 trialThresh = 100 -181647 timeMaxOut = 30 -181647 timeElapsed = 3 -181647 totalPokes = 18 -181647 totalRewards = 9 -181648 countPokes1 = 3 -181648 countRewards1 = 0 -181649 leafProbs1 = 20 -181649 countPokes2 = 3 -181663 countRewards2 = 1 -181663 leafProbs2 = 50 -181663 countPokes3 = 2 -181664 countRewards3 = 2 -181664 leafProbs3 = 80 -181665 countPokes4 = 4 -181665 countRewards4 = 2 -181665 leafProbs4 = 50 -181665 countPokes5 = 3 -181665 countRewards5 = 1 -181679 leafProbs5 = 20 -181679 countPokes6 = 3 -181680 countRewards6 = 3 -181680 leafProbs6 = 80 -~~~ -182651 DOWN 4 -182651 0 0 -184614 UP 3 -184614 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184641 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -184836 DOWN 3 -184836 0 256 -184849 UP 3 -184849 4 256 -~~~ -184864 contingency = 0 -184864 trialThresh = 100 -184865 timeMaxOut = 30 -184865 timeElapsed = 3 -184865 totalPokes = 19 -184865 totalRewards = 10 -184866 countPokes1 = 3 -184866 countRewards1 = 0 -184867 leafProbs1 = 20 -184867 countPokes2 = 3 -184867 countRewards2 = 1 -184881 leafProbs2 = 50 -184881 countPokes3 = 3 -184882 countRewards3 = 3 -184882 leafProbs3 = 80 -184882 countPokes4 = 4 -184883 countRewards4 = 2 -184883 leafProbs4 = 50 -184883 countPokes5 = 3 -184883 countRewards5 = 1 -184884 leafProbs5 = 20 -184897 countPokes6 = 3 -184898 countRewards6 = 3 -184898 leafProbs6 = 80 -~~~ -184941 4 0 -185009 DOWN 3 -185009 0 0 -185013 UP 3 -185013 4 0 -185092 DOWN 3 -185092 0 0 -185099 UP 3 -185099 4 0 -187981 DOWN 3 -187981 0 0 -188017 UP 3 -188017 4 0 -188096 DOWN 3 -188096 0 0 -188114 UP 3 -188114 4 0 -188411 DOWN 3 -188411 0 0 -190404 UP 4 -190404 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190430 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -190730 8 0 -191085 DOWN 4 -191085 0 0 -191092 UP 4 -191092 8 0 -~~~ -191104 contingency = 0 -191104 trialThresh = 100 -191105 timeMaxOut = 30 -191105 timeElapsed = 3 -191105 totalPokes = 20 -191105 totalRewards = 11 -191106 countPokes1 = 3 -191106 countRewards1 = 0 -191107 leafProbs1 = 20 -191107 countPokes2 = 3 -191107 countRewards2 = 1 -191121 leafProbs2 = 50 -191121 countPokes3 = 3 -191121 countRewards3 = 3 -191122 leafProbs3 = 80 -191122 countPokes4 = 5 -191123 countRewards4 = 3 -191123 leafProbs4 = 50 -191123 countPokes5 = 3 -191123 countRewards5 = 1 -191124 leafProbs5 = 20 -191137 countPokes6 = 3 -191138 countRewards6 = 3 -191138 leafProbs6 = 80 -~~~ -191177 DOWN 4 -191177 0 0 -191181 UP 4 -191181 8 0 -193801 DOWN 4 -193801 0 0 -193999 UP 4 -193999 8 0 -194078 DOWN 4 -194078 0 0 -194135 UP 4 -194135 8 0 -194201 DOWN 4 -194201 0 0 -194265 UP 4 -194265 8 0 -194499 DOWN 4 -194499 0 0 -197620 UP 4 -197620 8 0 -198119 DOWN 4 -198119 0 0 -198133 UP 4 -198133 8 0 -198843 DOWN 4 -198843 0 0 -200377 UP 3 -200377 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200407 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -200602 DOWN 3 -200602 0 256 -200610 UP 3 -200610 4 256 -~~~ -200631 contingency = 0 -200631 trialThresh = 100 -200632 timeMaxOut = 30 -200632 timeElapsed = 3 -200633 totalPokes = 21 -200633 totalRewards = 12 -200633 countPokes1 = 3 -200633 countRewards1 = 0 -200634 leafProbs1 = 20 -200634 countPokes2 = 3 -200635 countRewards2 = 1 -200649 leafProbs2 = 50 -200649 countPokes3 = 4 -200649 countRewards3 = 4 -200649 leafProbs3 = 80 -200649 countPokes4 = 5 -200650 countRewards4 = 3 -200650 leafProbs4 = 50 -200651 countPokes5 = 3 -200651 countRewards5 = 1 -200651 leafProbs5 = 20 -200665 countPokes6 = 3 -200665 countRewards6 = 3 -200665 leafProbs6 = 80 -~~~ -200687 DOWN 3 -200687 0 256 -200691 UP 3 -200691 4 256 -200707 4 0 -200767 DOWN 3 -200767 0 0 -200781 UP 3 -200780 4 0 -200787 DOWN 3 -200787 0 0 -200790 UP 3 -200790 4 0 -200853 DOWN 3 -200853 0 0 -200859 UP 3 -200859 4 0 -203804 DOWN 3 -203804 0 0 -203837 UP 3 -203837 4 0 -203877 DOWN 3 -203877 0 0 -203949 UP 3 -203949 4 0 -203965 DOWN 3 -203965 0 0 -206011 UP 4 -206011 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -206783 DOWN 4 -206783 0 0 -~~~ -206805 contingency = 0 -206805 trialThresh = 100 -206806 timeMaxOut = 30 -206806 timeElapsed = 3 -206807 totalPokes = 22 -206807 totalRewards = 12 -206807 countPokes1 = 3 -206807 countRewards1 = 0 -206807 leafProbs1 = 20 -206808 countPokes2 = 3 -206808 countRewards2 = 1 -206822 leafProbs2 = 50 -206823 countPokes3 = 4 -206823 countRewards3 = 4 -206823 leafProbs3 = 80 -206823 countPokes4 = 6 -206824 countRewards4 = 3 -206824 leafProbs4 = 50 -206825 countPokes5 = 3 -206825 countRewards5 = 1 -206825 leafProbs5 = 20 -206839 countPokes6 = 3 -206839 countRewards6 = 3 -206839 leafProbs6 = 80 -~~~ -208164 UP 3 -208164 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208193 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -208347 DOWN 3 -208347 0 256 -208359 UP 3 -208359 4 256 -~~~ -208376 contingency = 0 -208376 trialThresh = 100 -208377 timeMaxOut = 30 -208377 timeElapsed = 3 -208377 totalPokes = 23 -208377 totalRewards = 13 -208378 countPokes1 = 3 -208378 countRewards1 = 0 -208379 leafProbs1 = 20 -208379 countPokes2 = 3 -208379 countRewards2 = 1 -208393 leafProbs2 = 50 -208393 countPokes3 = 5 -208393 countRewards3 = 5 -208394 leafProbs3 = 80 -208394 countPokes4 = 6 -208395 countRewards4 = 3 -208395 leafProbs4 = 50 -208395 countPokes5 = 3 -208395 countRewards5 = 1 -208396 leafProbs5 = 20 -208409 countPokes6 = 3 -208410 countRewards6 = 3 -208410 leafProbs6 = 80 -~~~ -208434 DOWN 3 -208434 0 256 -208444 UP 3 -208444 4 256 -208493 4 0 -208603 DOWN 3 -208603 0 0 -208620 UP 3 -208620 4 0 -210873 DOWN 3 -210873 0 0 -210881 UP 3 -210881 4 0 -211390 DOWN 3 -211390 0 0 -213232 UP 4 -213232 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -214254 DOWN 4 -214254 0 0 -214266 UP 4 -214266 8 0 -~~~ -214269 contingency = 0 -214269 trialThresh = 100 -214269 timeMaxOut = 30 -214270 timeElapsed = 4 -214270 totalPokes = 24 -214271 totalRewards = 13 -214271 countPokes1 = 3 -214271 countRewards1 = 0 -214271 leafProbs1 = 20 -214272 countPokes2 = 3 -214272 countRewards2 = 1 -214286 leafProbs2 = 50 -214286 countPokes3 = 5 -214287 countRewards3 = 5 -214287 leafProbs3 = 80 -214287 countPokes4 = 7 -214287 countRewards4 = 3 -214288 leafProbs4 = 50 -214288 countPokes5 = 3 -214289 countRewards5 = 1 -214289 leafProbs5 = 20 -214303 countPokes6 = 3 -214303 countRewards6 = 3 -214303 leafProbs6 = 80 -~~~ -214303 DOWN 4 -214303 0 0 -215828 UP 3 -215828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -215859 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -216017 DOWN 3 -216017 0 256 -216023 UP 3 -216023 4 256 -~~~ -216045 contingency = 0 -216045 trialThresh = 100 -216045 timeMaxOut = 30 -216045 timeElapsed = 4 -216046 totalPokes = 25 -216046 totalRewards = 14 -216047 countPokes1 = 3 -216047 countRewards1 = 0 -216047 leafProbs1 = 20 -216047 countPokes2 = 3 -216047 countRewards2 = 1 -216061 leafProbs2 = 50 -216062 countPokes3 = 6 -216062 countRewards3 = 6 -216063 leafProbs3 = 80 -216063 countPokes4 = 7 -216063 countRewards4 = 3 -216063 leafProbs4 = 50 -216064 countPokes5 = 3 -216064 countRewards5 = 1 -216065 leafProbs5 = 20 -216078 countPokes6 = 3 -216079 countRewards6 = 3 -216079 leafProbs6 = 80 -~~~ -216159 4 0 -216180 DOWN 3 -216180 0 0 -216185 UP 3 -216185 4 0 -216269 DOWN 3 -216269 0 0 -216281 UP 3 -216281 4 0 -218089 DOWN 3 -218089 0 0 -218097 UP 3 -218097 4 0 -219287 DOWN 3 -219287 0 0 -219542 UP 3 -219542 4 0 -219594 DOWN 3 -219594 0 0 -219629 UP 3 -219629 4 0 -219734 DOWN 3 -219734 0 0 -219739 UP 3 -219739 4 0 -219965 DOWN 3 -219965 0 0 -219969 UP 3 -219969 4 0 -220048 DOWN 3 -220048 0 0 -222521 UP 4 -222520 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222555 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -222597 DOWN 4 -222597 0 512 -~~~ -222622 contingency = 0 -222622 trialThresh = 100 -222623 timeMaxOut = 30 -222623 timeElapsed = 4 -222623 totalPokes = 26 -222623 totalRewards = 15 -222624 countPokes1 = 3 -222624 countRewards1 = 0 -222625 leafProbs1 = 20 -222625 countPokes2 = 3 -222625 countRewards2 = 1 -222639 leafProbs2 = 50 -222639 countPokes3 = 6 -222639 countRewards3 = 6 -222640 leafProbs3 = 80 -222640 countPokes4 = 8 -222641 countRewards4 = 4 -222641 leafProbs4 = 50 -222641 countPokes5 = 3 -222641 countRewards5 = 1 -222642 leafProbs5 = 20 -222655 countPokes6 = 3 -222656 countRewards6 = 3 -222656 leafProbs6 = 80 -~~~ -222661 UP 4 -222661 8 512 -222855 8 0 -223129 DOWN 4 -223129 0 0 -223137 UP 4 -223137 8 0 -223217 DOWN 4 -223216 0 0 -223221 UP 4 -223221 8 0 -225330 DOWN 4 -225330 0 0 -225335 UP 4 -225335 8 0 -225396 DOWN 4 -225396 0 0 -225433 UP 4 -225433 8 0 -225506 DOWN 4 -225506 0 0 -225522 UP 4 -225522 8 0 -225619 DOWN 4 -225619 0 0 -225622 UP 4 -225622 8 0 -225810 DOWN 4 -225810 0 0 -225847 UP 4 -225847 8 0 -226257 DOWN 4 -226257 0 0 -227900 UP 3 -227900 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -227930 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -228159 DOWN 3 -228159 0 256 -~~~ -228180 contingency = 0 -228180 trialThresh = 100 -228181 timeMaxOut = 30 -228181 timeElapsed = 4 -228181 totalPokes = 27 -228181 totalRewards = 16 -228182 countPokes1 = 3 -228182 countRewards1 = 0 -228183 leafProbs1 = 20 -228183 countPokes2 = 3 -228183 countRewards2 = 1 -228197 leafProbs2 = 50 -228197 countPokes3 = 7 -228197 countRewards3 = 7 -228198 leafProbs3 = 80 -228198 countPokes4 = 8 -228199 countRewards4 = 4 -228199 leafProbs4 = 50 -228199 countPokes5 = 3 -228199 countRewards5 = 1 -228200 leafProbs5 = 20 -228213 countPokes6 = 3 -228214 countRewards6 = 3 -228214 leafProbs6 = 80 -~~~ -228215 UP 3 -228215 4 256 -228230 4 0 -228250 DOWN 3 -228250 0 0 -228252 UP 3 -228252 4 0 -228335 DOWN 3 -228335 0 0 -228340 UP 3 -228340 4 0 -230880 DOWN 3 -230880 0 0 -230888 UP 3 -230888 4 0 -230982 DOWN 3 -230982 0 0 -230989 UP 3 -230989 4 0 -231293 DOWN 3 -231293 0 0 -231314 UP 3 -231314 4 0 -231388 DOWN 3 -231388 0 0 -231444 UP 3 -231444 4 0 -231480 DOWN 3 -231480 0 0 -233140 UP 4 -233140 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233170 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -233350 DOWN 4 -233350 0 512 -233367 UP 4 -233367 8 512 -~~~ -233368 contingency = 0 -233368 trialThresh = 100 -233368 timeMaxOut = 30 -233369 timeElapsed = 4 -233369 totalPokes = 28 -233370 totalRewards = 17 -233370 countPokes1 = 3 -233370 countRewards1 = 0 -233370 leafProbs1 = 20 -233371 countPokes2 = 3 -233385 countRewards2 = 1 -233385 leafProbs2 = 50 -233386 countPokes3 = 7 -233386 countRewards3 = 7 -233386 leafProbs3 = 80 -233386 countPokes4 = 9 -233387 countRewards4 = 5 -233387 leafProbs4 = 50 -233388 countPokes5 = 3 -233388 countRewards5 = 1 -233402 leafProbs5 = 20 -233402 countPokes6 = 3 -233402 countRewards6 = 3 -233402 leafProbs6 = 80 -~~~ -233441 DOWN 4 -233441 0 512 -233449 UP 4 -233449 8 512 -233470 8 0 -235988 DOWN 4 -235988 0 0 -236046 UP 4 -236046 8 0 -236062 DOWN 4 -236062 0 0 -237555 UP 3 -237555 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237582 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -237844 DOWN 3 -237844 0 256 -~~~ -237868 contingency = 0 -237868 trialThresh = 100 -237868 timeMaxOut = 30 -237869 timeElapsed = 4 -237869 totalPokes = 29 -237870 totalRewards = 18 -237870 countPokes1 = 3 -237870 countRewards1 = 0 -237870 leafProbs1 = 20 -237871 countPokes2 = 3 -237871 countRewards2 = 1 -237885 leafProbs2 = 50 -237886 countPokes3 = 8 -237886 countRewards3 = 8 -237886 leafProbs3 = 80 -237886 countPokes4 = 9 -237886 countRewards4 = 5 -237887 leafProbs4 = 50 -237887 countPokes5 = 3 -237888 countRewards5 = 1 -237888 leafProbs5 = 20 -237902 countPokes6 = 3 -237902 countRewards6 = 3 -237902 leafProbs6 = 80 -~~~ -237902 UP 3 -237902 4 256 -237903 4 0 -237927 DOWN 3 -237927 0 0 -237940 UP 3 -237940 4 0 -238016 DOWN 3 -238016 0 0 -238018 UP 3 -238018 4 0 -240469 DOWN 3 -240469 0 0 -240482 UP 3 -240482 4 0 -241000 DOWN 3 -241000 0 0 -241016 UP 3 -241016 4 0 -241093 DOWN 3 -241093 0 0 -242699 UP 4 -242699 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -242738 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -243038 8 0 -245340 DOWN 4 -245340 0 0 -245344 UP 4 -245344 8 0 -~~~ -245365 contingency = 0 -245365 trialThresh = 100 -245366 timeMaxOut = 30 -245366 timeElapsed = 4 -245366 totalPokes = 30 -245366 totalRewards = 19 -245367 countPokes1 = 3 -245367 countRewards1 = 0 -245368 leafProbs1 = 20 -245368 countPokes2 = 3 -245368 countRewards2 = 1 -245382 leafProbs2 = 50 -245382 countPokes3 = 8 -245383 countRewards3 = 8 -245383 leafProbs3 = 80 -245384 countPokes4 = 10 -245384 countRewards4 = 6 -245384 leafProbs4 = 50 -245384 countPokes5 = 3 -245384 countRewards5 = 1 -245385 leafProbs5 = 20 -245399 countPokes6 = 3 -245399 countRewards6 = 3 -245399 leafProbs6 = 80 -~~~ -245548 DOWN 4 -245548 0 0 -245570 UP 4 -245570 8 0 -245612 DOWN 4 -245612 0 0 -247020 UP 3 -247020 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -247193 DOWN 3 -247193 0 0 -247204 UP 3 -247204 4 0 -~~~ -247221 contingency = 0 -247222 trialThresh = 100 -247222 timeMaxOut = 30 -247222 timeElapsed = 4 -247222 totalPokes = 31 -247223 totalRewards = 19 -247223 countPokes1 = 3 -247224 countRewards1 = 0 -247224 leafProbs1 = 20 -247224 countPokes2 = 3 -247224 countRewards2 = 1 -247238 leafProbs2 = 50 -247239 countPokes3 = 9 -247239 countRewards3 = 8 -247239 leafProbs3 = 80 -247240 countPokes4 = 10 -247240 countRewards4 = 6 -247240 leafProbs4 = 50 -247240 countPokes5 = 3 -247241 countRewards5 = 1 -247241 leafProbs5 = 20 -247255 countPokes6 = 3 -247255 countRewards6 = 3 -247256 leafProbs6 = 80 -~~~ -247284 DOWN 3 -247284 0 0 -247288 UP 3 -247288 4 0 -247585 DOWN 3 -247585 0 0 -247604 UP 3 -247604 4 0 -248118 DOWN 3 -248118 0 0 -248154 UP 3 -248154 4 0 -248594 DOWN 3 -248594 0 0 -250886 UP 4 -250886 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -250920 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -251220 8 0 -251431 DOWN 4 -251431 0 0 -251442 UP 4 -251442 8 0 -~~~ -251449 contingency = 0 -251449 trialThresh = 100 -251450 timeMaxOut = 30 -251450 timeElapsed = 5 -251450 totalPokes = 32 -251450 totalRewards = 20 -251450 countPokes1 = 3 -251451 countRewards1 = 0 -251451 leafProbs1 = 20 -251452 countPokes2 = 3 -251452 countRewards2 = 1 -251466 leafProbs2 = 50 -251466 countPokes3 = 9 -251466 countRewards3 = 8 -251467 leafProbs3 = 80 -251467 countPokes4 = 11 -251468 countRewards4 = 7 -251468 leafProbs4 = 50 -251468 countPokes5 = 3 -251468 countRewards5 = 1 -251469 leafProbs5 = 20 -251482 countPokes6 = 3 -251483 countRewards6 = 3 -251483 leafProbs6 = 80 -~~~ -251513 DOWN 4 -251513 0 0 -251526 UP 4 -251526 8 0 -251547 DOWN 4 -251547 0 0 -251552 UP 4 -251552 8 0 -251598 DOWN 4 -251598 0 0 -251607 UP 4 -251607 8 0 -251688 DOWN 4 -251688 0 0 -251694 UP 4 -251694 8 0 -253740 DOWN 4 -253740 0 0 -253764 UP 4 -253764 8 0 -253830 DOWN 4 -253830 0 0 -253876 UP 4 -253876 8 0 -253887 DOWN 4 -253887 0 0 -254166 UP 4 -254166 8 0 -254676 DOWN 4 -254676 0 0 -254698 UP 4 -254698 8 0 -254720 DOWN 4 -254720 0 0 -256371 UP 3 -256371 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256398 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -256406 DOWN 3 -256406 0 256 -~~~ -256434 contingency = 0 -256434 trialThresh = 100 -256434 timeMaxOut = 30 -256434 timeElapsed = 5 -256435 totalPokes = 33 -256435 totalRewards = 21 -256436 countPokes1 = 3 -256436 countRewards1 = 0 -256436 leafProbs1 = 20 -256436 countPokes2 = 3 -256437 countRewards2 = 1 -256451 leafProbs2 = 50 -256451 countPokes3 = 10 -256452 countRewards3 = 9 -256452 leafProbs3 = 80 -256452 countPokes4 = 11 -256452 countRewards4 = 7 -256453 leafProbs4 = 50 -256453 countPokes5 = 3 -256453 countRewards5 = 1 -256454 leafProbs5 = 20 -256468 countPokes6 = 3 -256468 countRewards6 = 3 -256468 leafProbs6 = 80 -~~~ -256468 UP 3 -256468 4 256 -256691 DOWN 3 -256691 0 256 -256698 0 0 -256720 UP 3 -256720 4 0 -256785 DOWN 3 -256785 0 0 -256824 UP 3 -256824 4 0 -256876 DOWN 3 -256876 0 0 -256884 UP 3 -256884 4 0 -258219 DOWN 3 -258219 0 0 -258226 UP 3 -258226 4 0 -258320 DOWN 3 -258320 0 0 -258326 UP 3 -258326 4 0 -259301 DOWN 3 -259301 0 0 -259319 UP 3 -259319 4 0 -259726 DOWN 3 -259726 0 0 -259741 UP 3 -259741 4 0 -259816 DOWN 3 -259816 0 0 -261413 UP 4 -261413 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -262023 DOWN 4 -262023 0 0 -~~~ -262043 contingency = 0 -262044 trialThresh = 100 -262044 timeMaxOut = 30 -262044 timeElapsed = 5 -262044 totalPokes = 34 -262045 totalRewards = 21 -262045 countPokes1 = 3 -262046 countRewards1 = 0 -262046 leafProbs1 = 20 -262046 countPokes2 = 3 -262046 countRewards2 = 1 -262060 leafProbs2 = 50 -262061 countPokes3 = 10 -262061 countRewards3 = 9 -262062 leafProbs3 = 80 -262062 countPokes4 = 12 -262062 countRewards4 = 7 -262062 leafProbs4 = 50 -262063 countPokes5 = 3 -262063 countRewards5 = 1 -262063 leafProbs5 = 20 -262077 countPokes6 = 3 -262078 countRewards6 = 3 -262078 leafProbs6 = 80 -~~~ -263466 UP 3 -263466 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263498 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -263798 4 0 -264206 DOWN 3 -264206 0 0 -264220 UP 3 -264220 4 0 -~~~ -264230 contingency = 0 -264231 trialThresh = 100 -264231 timeMaxOut = 30 -264232 timeElapsed = 5 -264232 totalPokes = 35 -264232 totalRewards = 22 -264232 countPokes1 = 3 -264233 countRewards1 = 0 -264233 leafProbs1 = 20 -264234 countPokes2 = 3 -264234 countRewards2 = 1 -264248 leafProbs2 = 50 -264248 countPokes3 = 11 -264248 countRewards3 = 10 -264248 leafProbs3 = 80 -264249 countPokes4 = 12 -264249 countRewards4 = 7 -264250 leafProbs4 = 50 -264250 countPokes5 = 3 -264250 countRewards5 = 1 -264250 leafProbs5 = 20 -264264 countPokes6 = 3 -264265 countRewards6 = 3 -264265 leafProbs6 = 80 -~~~ -264266 DOWN 3 -264266 0 0 -264266 UP 3 -264266 4 0 -264297 DOWN 3 -264297 0 0 -264306 UP 3 -264306 4 0 -266104 DOWN 3 -266104 0 0 -266122 UP 3 -266122 4 0 -266215 DOWN 3 -266215 0 0 -266227 UP 3 -266227 4 0 -266786 DOWN 3 -266786 0 0 -266806 UP 3 -266806 4 0 -266896 DOWN 3 -266896 0 0 -266908 UP 3 -266908 4 0 -267006 DOWN 3 -267006 0 0 -267012 UP 3 -267012 4 0 -267110 DOWN 3 -267110 0 0 -267129 UP 3 -267129 4 0 -267203 DOWN 3 -267203 0 0 -269184 UP 4 -269184 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269205 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -269505 8 0 -269578 DOWN 4 -269578 0 0 -~~~ -269602 contingency = 0 -269603 trialThresh = 100 -269603 timeMaxOut = 30 -269604 timeElapsed = 5 -269604 totalPokes = 36 -269604 totalRewards = 23 -269604 countPokes1 = 3 -269604 countRewards1 = 0 -269605 leafProbs1 = 20 -269605 countPokes2 = 3 -269606 countRewards2 = 1 -269620 leafProbs2 = 50 -269620 countPokes3 = 11 -269620 countRewards3 = 10 -269620 leafProbs3 = 80 -269621 countPokes4 = 13 -269621 countRewards4 = 8 -269622 leafProbs4 = 50 -269622 countPokes5 = 3 -269622 countRewards5 = 1 -269622 leafProbs5 = 20 -269636 countPokes6 = 3 -269636 countRewards6 = 3 -269637 leafProbs6 = 80 -~~~ -269637 UP 4 -269637 8 0 -269667 DOWN 4 -269667 0 0 -269674 UP 4 -269674 8 0 -269759 DOWN 4 -269759 0 0 -269767 UP 4 -269767 8 0 -272248 DOWN 4 -272248 0 0 -272274 UP 4 -272274 8 0 -272330 DOWN 4 -272330 0 0 -273864 UP 3 -273864 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -274038 DOWN 3 -274038 0 0 -274047 UP 3 -274047 4 0 -~~~ -274065 contingency = 0 -274066 trialThresh = 100 -274066 timeMaxOut = 30 -274066 timeElapsed = 5 -274066 totalPokes = 37 -274067 totalRewards = 23 -274067 countPokes1 = 3 -274068 countRewards1 = 0 -274068 leafProbs1 = 20 -274068 countPokes2 = 3 -274068 countRewards2 = 1 -274082 leafProbs2 = 50 -274083 countPokes3 = 12 -274083 countRewards3 = 10 -274084 leafProbs3 = 80 -274084 countPokes4 = 13 -274084 countRewards4 = 8 -274084 leafProbs4 = 50 -274085 countPokes5 = 3 -274085 countRewards5 = 1 -274085 leafProbs5 = 20 -274099 countPokes6 = 3 -274100 countRewards6 = 3 -274100 leafProbs6 = 80 -~~~ -274127 DOWN 3 -274127 0 0 -274134 UP 3 -274134 4 0 -274216 DOWN 3 -274216 0 0 -274218 UP 3 -274218 4 0 -274324 DOWN 3 -274324 0 0 -274377 UP 3 -274377 4 0 -274908 DOWN 3 -274908 0 0 -277710 UP 2 -277710 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -277741 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -278020 DOWN 2 -278020 0 128 -278035 UP 2 -278035 2 128 -278041 2 0 -~~~ -278044 contingency = 0 -278045 trialThresh = 100 -278045 timeMaxOut = 30 -278046 timeElapsed = 5 -278046 totalPokes = 38 -278046 totalRewards = 24 -278046 countPokes1 = 3 -278047 countRewards1 = 0 -278047 leafProbs1 = 20 -278048 countPokes2 = 4 -278048 countRewards2 = 2 -278062 leafProbs2 = 50 -278062 countPokes3 = 12 -278062 countRewards3 = 10 -278062 leafProbs3 = 80 -278063 countPokes4 = 13 -278063 countRewards4 = 8 -278064 leafProbs4 = 50 -278064 countPokes5 = 3 -278064 countRewards5 = 1 -278064 leafProbs5 = 20 -278078 countPokes6 = 3 -278078 countRewards6 = 3 -278079 leafProbs6 = 80 -~~~ -278109 DOWN 2 -278109 0 0 -278128 UP 2 -278128 2 0 -278139 DOWN 2 -278139 0 0 -278146 UP 2 -278146 2 0 -278194 DOWN 2 -278194 0 0 -278206 UP 2 -278206 2 0 -280282 DOWN 2 -280282 0 0 -280311 UP 2 -280311 2 0 -280376 DOWN 2 -280376 0 0 -283232 UP 2 -283232 2 0 -283566 DOWN 2 -283566 0 0 -285442 UP 1 -285442 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -285976 DOWN 1 -285976 0 0 -285985 UP 1 -285985 1 0 -~~~ -285999 contingency = 0 -285999 trialThresh = 100 -285999 timeMaxOut = 30 -285999 timeElapsed = 5 -286000 totalPokes = 39 -286000 totalRewards = 24 -286001 countPokes1 = 4 -286001 countRewards1 = 0 -286001 leafProbs1 = 20 -286001 countPokes2 = 4 -286002 countRewards2 = 2 -286016 leafProbs2 = 50 -286016 countPokes3 = 12 -286017 countRewards3 = 10 -286017 leafProbs3 = 80 -286017 countPokes4 = 13 -286017 countRewards4 = 8 -286017 leafProbs4 = 50 -286018 countPokes5 = 3 -286018 countRewards5 = 1 -286019 leafProbs5 = 20 -286033 countPokes6 = 3 -286033 countRewards6 = 3 -286033 leafProbs6 = 80 -~~~ -286264 DOWN 1 -286264 0 0 -286281 UP 1 -286281 1 0 -286757 DOWN 1 -286757 0 0 -292251 UP 2 -292251 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292286 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -292481 DOWN 2 -292481 0 128 -292489 UP 2 -292489 2 128 -~~~ -292508 contingency = 0 -292508 trialThresh = 100 -292509 timeMaxOut = 30 -292509 timeElapsed = 6 -292509 totalPokes = 40 -292509 totalRewards = 25 -292510 countPokes1 = 4 -292510 countRewards1 = 0 -292511 leafProbs1 = 20 -292511 countPokes2 = 5 -292511 countRewards2 = 3 -292525 leafProbs2 = 50 -292525 countPokes3 = 12 -292526 countRewards3 = 10 -292526 leafProbs3 = 80 -292527 countPokes4 = 13 -292527 countRewards4 = 8 -292527 leafProbs4 = 50 -292527 countPokes5 = 3 -292527 countRewards5 = 1 -292528 leafProbs5 = 20 -292542 countPokes6 = 3 -292542 countRewards6 = 3 -292543 leafProbs6 = 80 -~~~ -292569 DOWN 2 -292569 0 128 -292571 UP 2 -292571 2 128 -292586 2 0 -292739 DOWN 2 -292739 0 0 -292743 UP 2 -292743 2 0 -294977 DOWN 2 -294977 0 0 -298733 UP 4 -298733 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -299266 DOWN 4 -299266 0 0 -~~~ -299286 UP 4 -299286 8 0 -299287 contingency = 0 -299287 trialThresh = 100 -299287 timeMaxOut = 30 -299288 timeElapsed = 6 -299288 totalPokes = 41 -299289 totalRewards = 25 -299289 countPokes1 = 4 -299289 countRewards1 = 0 -299289 leafProbs1 = 20 -299290 countPokes2 = 5 -299303 countRewards2 = 3 -299304 leafProbs2 = 50 -299304 countPokes3 = 12 -299305 countRewards3 = 10 -299305 leafProbs3 = 80 -299305 countPokes4 = 14 -299305 countRewards4 = 8 -299306 leafProbs4 = 50 -299306 countPokes5 = 3 -299307 countRewards5 = 1 -299321 leafProbs5 = 20 -299321 countPokes6 = 3 -299321 countRewards6 = 3 -299321 leafProbs6 = 80 -~~~ -299331 DOWN 4 -299331 0 0 -299459 UP 4 -299459 8 0 -299474 DOWN 4 -299474 0 0 -299513 UP 4 -299513 8 0 -299553 DOWN 4 -299553 0 0 -301326 UP 3 -301326 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -301583 DOWN 3 -301583 0 0 -~~~ -301601 contingency = 0 -301601 trialThresh = 100 -301601 timeMaxOut = 30 -301602 timeElapsed = 6 -301602 totalPokes = 42 -301602 totalRewards = 25 -301603 countPokes1 = 4 -301603 countRewards1 = 0 -301603 leafProbs1 = 20 -301603 countPokes2 = 5 -301604 countRewards2 = 3 -301618 leafProbs2 = 50 -301618 countPokes3 = 13 -301619 countRewards3 = 10 -301619 leafProbs3 = 80 -301619 countPokes4 = 14 -301619 countRewards4 = 8 -301620 leafProbs4 = 50 -301620 countPokes5 = 3 -301621 countRewards5 = 1 -301621 leafProbs5 = 20 -301635 countPokes6 = 3 -301635 countRewards6 = 3 -301635 leafProbs6 = 80 -~~~ -301635 UP 3 -301635 4 0 -301682 DOWN 3 -301682 0 0 -301719 UP 3 -301719 4 0 -301796 DOWN 3 -301796 0 0 -301839 UP 3 -301839 4 0 -302092 DOWN 3 -302092 0 0 -302121 UP 3 -302121 4 0 -302675 DOWN 3 -302675 0 0 -302688 UP 3 -302688 4 0 -303404 DOWN 3 -303404 0 0 -305043 UP 4 -305043 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305071 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -305371 8 0 -307632 DOWN 4 -307632 0 0 -~~~ -307648 contingency = 0 -307648 trialThresh = 100 -307649 timeMaxOut = 30 -307649 timeElapsed = 6 -307649 totalPokes = 43 -307649 totalRewards = 26 -307649 countPokes1 = 4 -307650 countRewards1 = 0 -307650 leafProbs1 = 20 -307651 countPokes2 = 5 -307651 countRewards2 = 3 -307665 leafProbs2 = 50 -307665 countPokes3 = 13 -307665 countRewards3 = 10 -307666 leafProbs3 = 80 -307666 countPokes4 = 15 -307667 countRewards4 = 9 -307667 leafProbs4 = 50 -307667 countPokes5 = 3 -307667 countRewards5 = 1 -307668 leafProbs5 = 20 -307681 countPokes6 = 3 -307682 countRewards6 = 3 -307682 leafProbs6 = 80 -~~~ -309349 UP 3 -309349 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309382 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -309549 DOWN 3 -309549 0 256 -309557 UP 3 -309557 4 256 -~~~ -309563 contingency = 0 -309563 trialThresh = 100 -309564 timeMaxOut = 30 -309564 timeElapsed = 6 -309565 totalPokes = 44 -309565 totalRewards = 27 -309565 countPokes1 = 4 -309565 countRewards1 = 0 -309566 leafProbs1 = 20 -309566 countPokes2 = 5 -309567 countRewards2 = 3 -309580 leafProbs2 = 50 -309581 countPokes3 = 14 -309581 countRewards3 = 11 -309581 leafProbs3 = 80 -309581 countPokes4 = 15 -309582 countRewards4 = 9 -309582 leafProbs4 = 50 -309583 countPokes5 = 3 -309583 countRewards5 = 1 -309583 leafProbs5 = 20 -309597 countPokes6 = 3 -309597 countRewards6 = 3 -309598 leafProbs6 = 80 -~~~ -309635 DOWN 3 -309635 0 256 -309639 UP 3 -309639 4 256 -309682 4 0 -309725 DOWN 3 -309725 0 0 -309726 UP 3 -309726 4 0 -312213 DOWN 3 -312213 0 0 -312232 UP 3 -312232 4 0 -312326 DOWN 3 -312326 0 0 -312335 UP 3 -312335 4 0 -312541 DOWN 3 -312541 0 0 -312562 UP 3 -312562 4 0 -312653 DOWN 3 -312653 0 0 -312691 UP 3 -312691 4 0 -312766 DOWN 3 -312766 0 0 -312797 UP 3 -312797 4 0 -312893 DOWN 3 -312893 0 0 -312897 UP 3 -312897 4 0 -314219 DOWN 3 -314219 0 0 -314224 UP 3 -314224 4 0 -314326 DOWN 3 -314326 0 0 -314331 UP 3 -314331 4 0 -314611 DOWN 3 -314611 0 0 -314621 UP 3 -314621 4 0 -314714 DOWN 3 -314714 0 0 -314726 UP 3 -314726 4 0 -314739 DOWN 3 -314739 0 0 -314773 UP 3 -314773 4 0 -315565 DOWN 3 -315565 0 0 -315591 UP 3 -315591 4 0 -315600 DOWN 3 -315600 0 0 -315603 UP 3 -315603 4 0 -315657 DOWN 3 -315657 0 0 -315670 UP 3 -315670 4 0 -315681 DOWN 3 -315681 0 0 -315711 UP 3 -315711 4 0 -315764 DOWN 3 -315764 0 0 -315779 UP 3 -315779 4 0 -315809 DOWN 3 -315809 0 0 -315823 UP 3 -315823 4 0 -315875 DOWN 3 -315875 0 0 -315879 UP 3 -315879 4 0 -315966 DOWN 3 -315966 0 0 -315979 UP 3 -315979 4 0 -315995 DOWN 3 -315995 0 0 -316025 UP 3 -316025 4 0 -316401 DOWN 3 -316401 0 0 -316403 UP 3 -316403 4 0 -316434 DOWN 3 -316434 0 0 -316445 UP 3 -316445 4 0 -316452 DOWN 3 -316452 0 0 -316464 UP 3 -316464 4 0 -316507 DOWN 3 -316507 0 0 -316514 UP 3 -316514 4 0 -316543 DOWN 3 -316543 0 0 -316551 UP 3 -316551 4 0 -316560 DOWN 3 -316560 0 0 -316565 UP 3 -316565 4 0 -316617 DOWN 3 -316617 0 0 -316621 UP 3 -316621 4 0 -316741 DOWN 3 -316741 0 0 -319008 UP 4 -319008 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -319429 DOWN 4 -319429 0 0 -~~~ -319453 contingency = 0 -319454 trialThresh = 100 -319454 timeMaxOut = 30 -319454 timeElapsed = 6 -319455 totalPokes = 45 -319455 totalRewards = 27 -319455 countPokes1 = 4 -319455 countRewards1 = 0 -319456 leafProbs1 = 20 -319456 countPokes2 = 5 -319457 countRewards2 = 3 -319471 leafProbs2 = 50 -319471 countPokes3 = 14 -319471 countRewards3 = 11 -319471 leafProbs3 = 80 -319472 countPokes4 = 16 -319472 countRewards4 = 9 -319473 leafProbs4 = 50 -319473 countPokes5 = 3 -319473 countRewards5 = 1 -319473 leafProbs5 = 20 -319487 countPokes6 = 3 -319487 countRewards6 = 3 -319488 leafProbs6 = 80 -~~~ -320895 UP 3 -320895 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -320921 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -321201 DOWN 3 -321201 0 256 -321220 0 0 -~~~ -321222 contingency = 0 -321222 trialThresh = 100 -321223 timeMaxOut = 30 -321223 timeElapsed = 6 -321223 totalPokes = 46 -321223 totalRewards = 28 -321224 countPokes1 = 4 -321224 countRewards1 = 0 -321225 leafProbs1 = 20 -321225 countPokes2 = 5 -321225 countRewards2 = 3 -321239 leafProbs2 = 50 -321239 countPokes3 = 15 -321240 countRewards3 = 12 -321240 leafProbs3 = 80 -321241 countPokes4 = 16 -321241 countRewards4 = 9 -321241 leafProbs4 = 50 -321241 countPokes5 = 3 -321242 countRewards5 = 1 -321242 leafProbs5 = 20 -321256 countPokes6 = 3 -321256 countRewards6 = 3 -321257 leafProbs6 = 80 -~~~ -321257 UP 3 -321257 4 0 -321297 DOWN 3 -321297 0 0 -321312 UP 3 -321312 4 0 -321389 DOWN 3 -321389 0 0 -321393 UP 3 -321393 4 0 -322799 DOWN 3 -322799 0 0 -322817 UP 3 -322817 4 0 -322907 DOWN 3 -322907 0 0 -322914 UP 3 -322914 4 0 -324989 DOWN 3 -324989 0 0 -324993 UP 3 -324993 4 0 -325025 DOWN 3 -325025 0 0 -325032 UP 3 -325032 4 0 -325088 DOWN 3 -325088 0 0 -325090 UP 3 -325090 4 0 -325128 DOWN 3 -325128 0 0 -325136 UP 3 -325136 4 0 -325234 DOWN 3 -325234 0 0 -325240 UP 3 -325240 4 0 -325553 DOWN 3 -325553 0 0 -325559 UP 3 -325559 4 0 -325563 DOWN 3 -325563 0 0 -325586 UP 3 -325586 4 0 -325621 DOWN 3 -325621 0 0 -325629 UP 3 -325629 4 0 -325732 DOWN 3 -325732 0 0 -325747 UP 3 -325747 4 0 -325776 DOWN 3 -325776 0 0 -325782 UP 3 -325782 4 0 -325786 DOWN 3 -325786 0 0 -325797 UP 3 -325797 4 0 -325849 DOWN 3 -325849 0 0 -325855 UP 3 -325855 4 0 -325991 DOWN 3 -325991 0 0 -325994 UP 3 -325994 4 0 -326055 DOWN 3 -326055 0 0 -327705 UP 4 -327705 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -327740 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -328040 8 0 -330977 DOWN 4 -330977 0 0 -~~~ -330998 contingency = 0 -330998 trialThresh = 100 -330999 timeMaxOut = 30 -330999 timeElapsed = 6 -330999 totalPokes = 47 -330999 totalRewards = 29 -331000 countPokes1 = 4 -331000 countRewards1 = 0 -331001 leafProbs1 = 20 -331001 countPokes2 = 5 -331001 countRewards2 = 3 -331015 leafProbs2 = 50 -331015 countPokes3 = 15 -331016 countRewards3 = 12 -331016 leafProbs3 = 80 -331017 countPokes4 = 17 -331017 countRewards4 = 10 -331017 leafProbs4 = 50 -331017 countPokes5 = 3 -331017 countRewards5 = 1 -331018 leafProbs5 = 20 -331032 countPokes6 = 3 -331032 countRewards6 = 3 -331033 leafProbs6 = 80 -~~~ -334094 UP 3 -334094 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334126 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -334275 DOWN 3 -334275 0 256 -334289 UP 3 -334289 4 256 -~~~ -334292 contingency = 0 -334292 trialThresh = 100 -334292 timeMaxOut = 30 -334293 timeElapsed = 7 -334293 totalPokes = 48 -334293 totalRewards = 30 -334293 countPokes1 = 4 -334294 countRewards1 = 0 -334294 leafProbs1 = 20 -334295 countPokes2 = 5 -334295 countRewards2 = 3 -334309 leafProbs2 = 50 -334309 countPokes3 = 16 -334309 countRewards3 = 13 -334310 leafProbs3 = 80 -334310 countPokes4 = 17 -334311 countRewards4 = 10 -334311 leafProbs4 = 50 -334311 countPokes5 = 3 -334311 countRewards5 = 1 -334312 leafProbs5 = 20 -334325 countPokes6 = 3 -334326 countRewards6 = 3 -334326 leafProbs6 = 80 -~~~ -334426 4 0 -337209 DOWN 3 -337209 0 0 -337222 UP 3 -337222 4 0 -337313 DOWN 3 -337313 0 0 -337337 UP 3 -337337 4 0 -338467 DOWN 3 -338467 0 0 -338482 UP 3 -338482 4 0 -339618 DOWN 3 -339618 0 0 -339661 UP 3 -339661 4 0 -339700 DOWN 3 -339700 0 0 -341240 UP 4 -341240 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -341758 DOWN 4 -341758 0 0 -~~~ -341788 contingency = 0 -341788 trialThresh = 100 -341789 timeMaxOut = 30 -341789 timeElapsed = 7 -341789 totalPokes = 49 -341790 totalRewards = 30 -341790 countPokes1 = 4 -341790 countRewards1 = 0 -341790 leafProbs1 = 20 -341791 countPokes2 = 5 -341791 countRewards2 = 3 -341805 leafProbs2 = 50 -341806 countPokes3 = 16 -341806 countRewards3 = 13 -341806 leafProbs3 = 80 -341806 countPokes4 = 18 -341807 countRewards4 = 10 -341807 leafProbs4 = 50 -341808 countPokes5 = 3 -341808 countRewards5 = 1 -341808 leafProbs5 = 20 -341822 countPokes6 = 3 -341822 countRewards6 = 3 -341822 leafProbs6 = 80 -~~~ -343152 UP 3 -343152 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343176 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -343347 DOWN 3 -343347 0 256 -343365 UP 3 -343365 4 256 -~~~ -343369 contingency = 0 -343369 trialThresh = 100 -343370 timeMaxOut = 30 -343370 timeElapsed = 7 -343370 totalPokes = 50 -343370 totalRewards = 31 -343370 countPokes1 = 4 -343371 countRewards1 = 0 -343371 leafProbs1 = 20 -343372 countPokes2 = 5 -343372 countRewards2 = 3 -343386 leafProbs2 = 50 -343386 countPokes3 = 17 -343386 countRewards3 = 14 -343387 leafProbs3 = 80 -343387 countPokes4 = 18 -343388 countRewards4 = 10 -343388 leafProbs4 = 50 -343388 countPokes5 = 3 -343388 countRewards5 = 1 -343389 leafProbs5 = 20 -343402 countPokes6 = 3 -343403 countRewards6 = 3 -343403 leafProbs6 = 80 -~~~ -343437 DOWN 3 -343437 0 256 -343444 UP 3 -343444 4 256 -343476 4 0 -343528 DOWN 3 -343528 0 0 -343534 UP 3 -343534 4 0 -343613 DOWN 3 -343613 0 0 -343619 UP 3 -343619 4 0 -344948 DOWN 3 -344948 0 0 -344966 UP 3 -344966 4 0 -345053 DOWN 3 -345053 0 0 -345060 UP 3 -345060 4 0 -345678 DOWN 3 -345678 0 0 -345694 UP 3 -345694 4 0 -345781 DOWN 3 -345781 0 0 -345788 UP 3 -345788 4 0 -346487 DOWN 3 -346487 0 0 -346494 UP 3 -346494 4 0 -346563 DOWN 3 -346563 0 0 -346639 UP 3 -346639 4 0 -346673 DOWN 3 -346672 0 0 -346706 UP 3 -346706 4 0 -346712 DOWN 3 -346712 0 0 -346724 UP 3 -346724 4 0 -346822 DOWN 3 -346822 0 0 -346830 UP 3 -346830 4 0 -346839 DOWN 3 -346838 0 0 -346842 UP 3 -346842 4 0 -347558 DOWN 3 -347558 0 0 -347593 UP 3 -347593 4 0 -347625 DOWN 3 -347624 0 0 -347677 UP 3 -347677 4 0 -347701 DOWN 3 -347701 0 0 -349490 UP 4 -349490 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349515 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -349815 8 0 -352301 DOWN 4 -352301 0 0 -~~~ -352330 contingency = 0 -352330 trialThresh = 100 -352330 timeMaxOut = 30 -352330 timeElapsed = 7 -352331 totalPokes = 51 -352331 totalRewards = 32 -352332 countPokes1 = 4 -352332 countRewards1 = 0 -352332 leafProbs1 = 20 -352332 countPokes2 = 5 -352333 countRewards2 = 3 -352347 leafProbs2 = 50 -352347 countPokes3 = 17 -352347 countRewards3 = 14 -352348 leafProbs3 = 80 -352348 countPokes4 = 19 -352348 countRewards4 = 11 -352348 leafProbs4 = 50 -352349 countPokes5 = 3 -352349 countRewards5 = 1 -352350 leafProbs5 = 20 -352364 countPokes6 = 3 -352364 countRewards6 = 3 -352364 leafProbs6 = 80 -~~~ -352364 UP 4 -352364 8 0 -352375 DOWN 4 -352375 0 0 -352418 UP 4 -352418 8 0 -352712 DOWN 4 -352712 0 0 -354803 UP 3 -354803 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354828 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -354970 DOWN 3 -354970 0 256 -354983 UP 3 -354983 4 256 -~~~ -354997 contingency = 0 -354997 trialThresh = 100 -354998 timeMaxOut = 30 -354998 timeElapsed = 7 -354998 totalPokes = 52 -354998 totalRewards = 33 -354998 countPokes1 = 4 -354999 countRewards1 = 0 -354999 leafProbs1 = 20 -355000 countPokes2 = 5 -355000 countRewards2 = 3 -355014 leafProbs2 = 50 -355014 countPokes3 = 18 -355014 countRewards3 = 15 -355015 leafProbs3 = 80 -355015 countPokes4 = 19 -355016 countRewards4 = 11 -355016 leafProbs4 = 50 -355016 countPokes5 = 3 -355016 countRewards5 = 1 -355017 leafProbs5 = 20 -355031 countPokes6 = 3 -355031 countRewards6 = 3 -355031 leafProbs6 = 80 -~~~ -355056 DOWN 3 -355056 0 256 -355068 UP 3 -355068 4 256 -355128 4 0 -355140 DOWN 3 -355140 0 0 -355148 UP 3 -355148 4 0 -356468 DOWN 3 -356468 0 0 -356488 UP 3 -356488 4 0 -358317 DOWN 3 -358317 0 0 -358320 UP 3 -358320 4 0 -358358 DOWN 3 -358358 0 0 -358364 UP 3 -358364 4 0 -358425 DOWN 3 -358425 0 0 -358428 UP 3 -358428 4 0 -359181 DOWN 3 -359181 0 0 -359208 UP 3 -359208 4 0 -359312 DOWN 3 -359312 0 0 -359320 UP 3 -359320 4 0 -359378 DOWN 3 -359378 0 0 -359390 UP 3 -359390 4 0 -359406 DOWN 3 -359406 0 0 -359441 UP 3 -359441 4 0 -359472 DOWN 3 -359472 0 0 -359547 UP 3 -359547 4 0 -359588 DOWN 3 -359588 0 0 -359595 UP 3 -359595 4 0 -359626 DOWN 3 -359626 0 0 -359628 UP 3 -359628 4 0 -359690 DOWN 3 -359690 0 0 -359693 UP 3 -359693 4 0 -360138 DOWN 3 -360138 0 0 -360159 UP 3 -360159 4 0 -360230 DOWN 3 -360230 0 0 -361882 UP 4 -361882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -361918 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -362218 8 0 -362283 DOWN 4 -362283 0 0 -362288 UP 4 -362288 8 0 -~~~ -362300 contingency = 0 -362300 trialThresh = 100 -362301 timeMaxOut = 30 -362301 timeElapsed = 7 -362302 totalPokes = 53 -362302 totalRewards = 34 -362302 countPokes1 = 4 -362302 countRewards1 = 0 -362303 leafProbs1 = 20 -362303 countPokes2 = 5 -362304 countRewards2 = 3 -362317 leafProbs2 = 50 -362318 countPokes3 = 18 -362318 countRewards3 = 15 -362318 leafProbs3 = 80 -362318 countPokes4 = 20 -362319 countRewards4 = 12 -362319 leafProbs4 = 50 -362320 countPokes5 = 3 -362320 countRewards5 = 1 -362320 leafProbs5 = 20 -362334 countPokes6 = 3 -362334 countRewards6 = 3 -362335 leafProbs6 = 80 -~~~ -364826 DOWN 4 -364826 0 0 -366280 UP 3 -366280 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366309 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -366444 DOWN 3 -366444 0 256 -366456 UP 3 -366456 4 256 -~~~ -366468 contingency = 0 -366468 trialThresh = 100 -366468 timeMaxOut = 30 -366469 timeElapsed = 7 -366469 totalPokes = 54 -366470 totalRewards = 35 -366470 countPokes1 = 4 -366470 countRewards1 = 0 -366470 leafProbs1 = 20 -366471 countPokes2 = 5 -366471 countRewards2 = 3 -366485 leafProbs2 = 50 -366486 countPokes3 = 19 -366486 countRewards3 = 16 -366486 leafProbs3 = 80 -366486 countPokes4 = 20 -366487 countRewards4 = 12 -366487 leafProbs4 = 50 -366488 countPokes5 = 3 -366488 countRewards5 = 1 -366488 leafProbs5 = 20 -366502 countPokes6 = 3 -366502 countRewards6 = 3 -366502 leafProbs6 = 80 -~~~ -366535 DOWN 3 -366535 0 256 -366541 UP 3 -366541 4 256 -366609 4 0 -366620 DOWN 3 -366620 0 0 -366624 UP 3 -366624 4 0 -368058 DOWN 3 -368058 0 0 -368076 UP 3 -368076 4 0 -368908 DOWN 3 -368908 0 0 -368925 UP 3 -368925 4 0 -369537 DOWN 3 -369537 0 0 -369574 UP 3 -369574 4 0 -369646 DOWN 3 -369646 0 0 -369666 UP 3 -369666 4 0 -370575 DOWN 3 -370575 0 0 -370586 UP 3 -370586 4 0 -370678 DOWN 3 -370678 0 0 -370696 UP 3 -370696 4 0 -370806 DOWN 3 -370806 0 0 -370811 UP 3 -370811 4 0 -370908 DOWN 3 -370908 0 0 -370914 UP 3 -370914 4 0 -371213 DOWN 3 -371213 0 0 -371224 UP 3 -371224 4 0 -371281 DOWN 3 -371281 0 0 -372824 UP 4 -372824 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -372859 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -373159 8 0 -375606 DOWN 4 -375606 0 0 -~~~ -375625 contingency = 0 -375626 trialThresh = 100 -375626 timeMaxOut = 30 -375626 timeElapsed = 8 -375626 totalPokes = 55 -375626 totalRewards = 36 -375627 countPokes1 = 4 -375627 countRewards1 = 0 -375628 leafProbs1 = 20 -375628 countPokes2 = 5 -375628 countRewards2 = 3 -375642 leafProbs2 = 50 -375642 countPokes3 = 19 -375643 countRewards3 = 16 -375643 leafProbs3 = 80 -375644 countPokes4 = 21 -375644 countRewards4 = 13 -375644 leafProbs4 = 50 -375644 countPokes5 = 3 -375645 countRewards5 = 1 -375645 leafProbs5 = 20 -375659 countPokes6 = 3 -375659 countRewards6 = 3 -375660 leafProbs6 = 80 -~~~ -377337 UP 3 -377337 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377362 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -377530 DOWN 3 -377530 0 256 -~~~ -377543 contingency = 0 -377543 trialThresh = 100 -377544 timeMaxOut = 30 -377544 timeElapsed = 8 -377544 totalPokes = 56 -377544 totalRewards = 37 -377545 countPokes1 = 4 -377545 countRewards1 = 0 -377546 leafProbs1 = 20 -377546 countPokes2 = 5 -377546 countRewards2 = 3 -377560 leafProbs2 = 50 -377560 countPokes3 = 20 -377560 countRewards3 = 17 -377561 leafProbs3 = 80 -377561 countPokes4 = 21 -377562 countRewards4 = 13 -377562 leafProbs4 = 50 -377562 countPokes5 = 3 -377562 countRewards5 = 1 -377563 leafProbs5 = 20 -377577 countPokes6 = 3 -377577 countRewards6 = 3 -377578 leafProbs6 = 80 -~~~ -377582 UP 3 -377582 4 256 -377633 DOWN 3 -377633 0 256 -377642 UP 3 -377642 4 256 -377662 4 0 -377719 DOWN 3 -377719 0 0 -377731 UP 3 -377731 4 0 -377778 DOWN 3 -377778 0 0 -377784 UP 3 -377784 4 0 -377806 DOWN 3 -377806 0 0 -377812 UP 3 -377812 4 0 -379314 DOWN 3 -379314 0 0 -379328 UP 3 -379328 4 0 -382348 DOWN 3 -382348 0 0 -382351 UP 3 -382351 4 0 -382965 DOWN 3 -382965 0 0 -383046 UP 3 -383046 4 0 -383635 DOWN 3 -383635 0 0 -391712 UP 4 -391712 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -391901 DOWN 4 -391901 0 0 -~~~ -391927 contingency = 0 -391928 trialThresh = 100 -391928 timeMaxOut = 30 -391928 timeElapsed = 8 -391928 totalPokes = 57 -391929 totalRewards = 37 -391929 countPokes1 = 4 -391930 countRewards1 = 0 -391930 leafProbs1 = 20 -391930 countPokes2 = 5 -391930 countRewards2 = 3 -391944 leafProbs2 = 50 -391944 countPokes3 = 20 -391945 countRewards3 = 17 -391945 leafProbs3 = 80 -391946 countPokes4 = 22 -391946 countRewards4 = 13 -391946 leafProbs4 = 50 -391946 countPokes5 = 3 -391947 countRewards5 = 1 -391947 leafProbs5 = 20 -391961 countPokes6 = 3 -391962 countRewards6 = 3 -391962 leafProbs6 = 80 -~~~ -391962 UP 4 -391962 8 0 -392353 DOWN 4 -392353 0 0 -392670 UP 4 -392670 8 0 -393102 DOWN 4 -393102 0 0 -394720 UP 3 -394720 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394747 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -394938 DOWN 3 -394938 0 256 -394963 UP 3 -394963 4 256 -~~~ -394974 contingency = 0 -394974 trialThresh = 100 -394974 timeMaxOut = 30 -394974 timeElapsed = 8 -394975 totalPokes = 58 -394975 totalRewards = 38 -394975 countPokes1 = 4 -394975 countRewards1 = 0 -394975 leafProbs1 = 20 -394976 countPokes2 = 5 -394976 countRewards2 = 3 -394990 leafProbs2 = 50 -394991 countPokes3 = 21 -394991 countRewards3 = 18 -394991 leafProbs3 = 80 -394991 countPokes4 = 22 -394992 countRewards4 = 13 -394992 leafProbs4 = 50 -394993 countPokes5 = 3 -394993 countRewards5 = 1 -394993 leafProbs5 = 20 -395007 countPokes6 = 3 -395007 countRewards6 = 3 -395008 leafProbs6 = 80 -~~~ -395025 DOWN 3 -395025 0 256 -395032 UP 3 -395032 4 256 -395047 4 0 -395109 DOWN 3 -395109 0 0 -395117 UP 3 -395117 4 0 -396385 DOWN 3 -396385 0 0 -396391 UP 3 -396391 4 0 -396485 DOWN 3 -396485 0 0 -396488 UP 3 -396488 4 0 -399053 DOWN 3 -399053 0 0 -399074 UP 3 -399074 4 0 -399081 DOWN 3 -399081 0 0 -399087 UP 3 -399087 4 0 -399145 DOWN 3 -399145 0 0 -399155 UP 3 -399155 4 0 -399170 DOWN 3 -399170 0 0 -399224 UP 3 -399224 4 0 -399237 DOWN 3 -399237 0 0 -400753 UP 4 -400753 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -400791 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -401091 8 0 -403299 DOWN 4 -403299 0 0 -403316 UP 4 -403316 8 0 -~~~ -403329 contingency = 0 -403330 trialThresh = 100 -403330 timeMaxOut = 30 -403331 timeElapsed = 8 -403331 totalPokes = 59 -403331 totalRewards = 39 -403331 countPokes1 = 4 -403332 countRewards1 = 0 -403332 leafProbs1 = 20 -403333 countPokes2 = 5 -403333 countRewards2 = 3 -403347 leafProbs2 = 50 -403347 countPokes3 = 21 -403347 countRewards3 = 18 -403348 leafProbs3 = 80 -403348 countPokes4 = 23 -403349 countRewards4 = 14 -403349 leafProbs4 = 50 -403349 countPokes5 = 3 -403349 countRewards5 = 1 -403349 leafProbs5 = 20 -403363 countPokes6 = 3 -403364 countRewards6 = 3 -403364 leafProbs6 = 80 -~~~ -403427 DOWN 4 -403427 0 0 -403431 UP 4 -403431 8 0 -403492 DOWN 4 -403492 0 0 -403497 UP 4 -403497 8 0 -403516 DOWN 4 -403516 0 0 -403557 UP 4 -403557 8 0 -403563 DOWN 4 -403563 0 0 -405065 UP 3 -405065 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405093 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -405286 DOWN 3 -405286 0 256 -405291 UP 3 -405291 4 256 -~~~ -405311 contingency = 0 -405311 trialThresh = 100 -405311 timeMaxOut = 30 -405311 timeElapsed = 8 -405311 totalPokes = 60 -405312 totalRewards = 40 -405312 countPokes1 = 4 -405313 countRewards1 = 0 -405313 leafProbs1 = 20 -405313 countPokes2 = 5 -405313 countRewards2 = 3 -405327 leafProbs2 = 50 -405328 countPokes3 = 22 -405328 countRewards3 = 19 -405329 leafProbs3 = 80 -405329 countPokes4 = 23 -405329 countRewards4 = 14 -405329 leafProbs4 = 50 -405330 countPokes5 = 3 -405330 countRewards5 = 1 -405331 leafProbs5 = 20 -405344 countPokes6 = 3 -405345 countRewards6 = 3 -405345 leafProbs6 = 80 -~~~ -405345 DOWN 3 -405345 0 256 -405348 UP 3 -405348 4 256 -405392 4 0 -405421 DOWN 3 -405421 0 0 -405433 UP 3 -405433 4 0 -409527 DOWN 3 -409527 0 0 -411514 UP 4 -411514 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411547 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -411847 8 0 -413959 DOWN 4 -413959 0 0 -~~~ -413973 contingency = 0 -413974 trialThresh = 100 -413974 timeMaxOut = 30 -413975 timeElapsed = 9 -413975 totalPokes = 61 -413975 totalRewards = 41 -413975 countPokes1 = 4 -413976 countRewards1 = 0 -413976 leafProbs1 = 20 -413977 countPokes2 = 5 -413977 countRewards2 = 3 -413991 leafProbs2 = 50 -413991 countPokes3 = 22 -413991 countRewards3 = 19 -413992 leafProbs3 = 80 -413992 countPokes4 = 24 -413992 countRewards4 = 15 -413993 leafProbs4 = 50 -413993 countPokes5 = 3 -413993 countRewards5 = 1 -413993 leafProbs5 = 20 -414007 countPokes6 = 3 -414008 countRewards6 = 3 -414008 leafProbs6 = 80 -~~~ -414009 UP 4 -414009 8 0 -414075 DOWN 4 -414075 0 0 -414079 UP 4 -414079 8 0 -414369 DOWN 4 -414369 0 0 -415901 UP 3 -415901 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -415923 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -416088 DOWN 3 -416088 0 256 -416094 UP 3 -416094 4 256 -~~~ -416107 contingency = 0 -416107 trialThresh = 100 -416108 timeMaxOut = 30 -416108 timeElapsed = 9 -416108 totalPokes = 62 -416109 totalRewards = 42 -416109 countPokes1 = 4 -416109 countRewards1 = 0 -416109 leafProbs1 = 20 -416110 countPokes2 = 5 -416110 countRewards2 = 3 -416124 leafProbs2 = 50 -416125 countPokes3 = 23 -416125 countRewards3 = 20 -416125 leafProbs3 = 80 -416125 countPokes4 = 24 -416126 countRewards4 = 15 -416126 leafProbs4 = 50 -416127 countPokes5 = 3 -416127 countRewards5 = 1 -416127 leafProbs5 = 20 -416141 countPokes6 = 3 -416141 countRewards6 = 3 -416141 leafProbs6 = 80 -~~~ -416176 DOWN 3 -416176 0 256 -416178 UP 3 -416178 4 256 -416223 4 0 -416255 DOWN 3 -416255 0 0 -416264 UP 3 -416264 4 0 -418621 DOWN 3 -418621 0 0 -418635 UP 3 -418635 4 0 -419042 DOWN 3 -419042 0 0 -420627 UP 4 -420627 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420649 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -420949 8 0 -423039 DOWN 4 -423039 0 0 -~~~ -423052 contingency = 0 -423052 trialThresh = 100 -423053 timeMaxOut = 30 -423053 timeElapsed = 9 -423053 totalPokes = 63 -423053 totalRewards = 43 -423054 countPokes1 = 4 -423054 countRewards1 = 0 -423055 leafProbs1 = 20 -423055 countPokes2 = 5 -423055 countRewards2 = 3 -423069 leafProbs2 = 50 -423069 countPokes3 = 23 -423069 countRewards3 = 20 -423070 leafProbs3 = 80 -423070 countPokes4 = 25 -423071 countRewards4 = 16 -423071 leafProbs4 = 50 -423071 countPokes5 = 3 -423071 countRewards5 = 1 -423072 leafProbs5 = 20 -423086 countPokes6 = 3 -423086 countRewards6 = 3 -423087 leafProbs6 = 80 -~~~ -423087 UP 4 -423087 8 0 -423105 DOWN 4 -423105 0 0 -425605 UP 3 -425605 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425635 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -425756 DOWN 3 -425756 0 256 -~~~ -425774 contingency = 0 -425774 trialThresh = 100 -425774 timeMaxOut = 30 -425775 timeElapsed = 9 -425775 totalPokes = 64 -425775 totalRewards = 44 -425775 countPokes1 = 4 -425776 countRewards1 = 0 -425776 leafProbs1 = 20 -425777 countPokes2 = 5 -425777 countRewards2 = 3 -425791 leafProbs2 = 50 -425791 countPokes3 = 24 -425791 countRewards3 = 21 -425792 leafProbs3 = 80 -425792 countPokes4 = 25 -425793 countRewards4 = 16 -425793 leafProbs4 = 50 -425793 countPokes5 = 3 -425793 countRewards5 = 1 -425794 leafProbs5 = 20 -425807 countPokes6 = 3 -425808 countRewards6 = 3 -425808 leafProbs6 = 80 -~~~ -425809 UP 3 -425809 4 256 -425935 4 0 -427982 DOWN 3 -427982 0 0 -427990 UP 3 -427990 4 0 -428051 DOWN 3 -428051 0 0 -428056 UP 3 -428056 4 0 -428276 DOWN 3 -428276 0 0 -429922 UP 4 -429922 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -429960 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -430260 8 0 -431919 DOWN 4 -431919 0 0 -431924 UP 4 -431924 8 0 -~~~ -431935 contingency = 0 -431935 trialThresh = 100 -431935 timeMaxOut = 30 -431935 timeElapsed = 9 -431936 totalPokes = 65 -431936 totalRewards = 45 -431937 countPokes1 = 4 -431937 countRewards1 = 0 -431937 leafProbs1 = 20 -431937 countPokes2 = 5 -431938 countRewards2 = 3 -431952 leafProbs2 = 50 -431952 countPokes3 = 24 -431953 countRewards3 = 21 -431953 leafProbs3 = 80 -431953 countPokes4 = 26 -431953 countRewards4 = 17 -431953 leafProbs4 = 50 -431954 countPokes5 = 3 -431954 countRewards5 = 1 -431955 leafProbs5 = 20 -431969 countPokes6 = 3 -431969 countRewards6 = 3 -431969 leafProbs6 = 80 -~~~ -432523 DOWN 4 -432523 0 0 -434173 UP 3 -434173 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434194 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -434349 DOWN 3 -434349 0 256 -434353 UP 3 -434353 4 256 -~~~ -434375 contingency = 0 -434375 trialThresh = 100 -434375 timeMaxOut = 30 -434376 timeElapsed = 9 -434376 totalPokes = 66 -434377 totalRewards = 46 -434377 countPokes1 = 4 -434377 countRewards1 = 0 -434377 leafProbs1 = 20 -434378 countPokes2 = 5 -434378 countRewards2 = 3 -434392 leafProbs2 = 50 -434393 countPokes3 = 25 -434393 countRewards3 = 22 -434393 leafProbs3 = 80 -434393 countPokes4 = 26 -434394 countRewards4 = 17 -434394 leafProbs4 = 50 -434395 countPokes5 = 3 -434395 countRewards5 = 1 -434395 leafProbs5 = 20 -434409 countPokes6 = 3 -434409 countRewards6 = 3 -434409 leafProbs6 = 80 -~~~ -434494 4 0 -435792 DOWN 3 -435792 0 0 -435799 UP 3 -435799 4 0 -436826 DOWN 3 -436826 0 0 -436844 UP 3 -436844 4 0 -437280 DOWN 3 -437279 0 0 -437311 UP 3 -437311 4 0 -437381 DOWN 3 -437381 0 0 -437423 UP 3 -437423 4 0 -437511 DOWN 3 -437511 0 0 -437522 UP 3 -437522 4 0 -437699 DOWN 3 -437699 0 0 -441205 UP 4 -441205 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441227 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -441527 8 0 -443499 DOWN 4 -443499 0 0 -~~~ -443512 contingency = 0 -443513 trialThresh = 100 -443513 timeMaxOut = 30 -443513 timeElapsed = 9 -443513 totalPokes = 67 -443514 totalRewards = 47 -443514 countPokes1 = 4 -443515 countRewards1 = 0 -443515 leafProbs1 = 20 -443515 countPokes2 = 5 -443515 countRewards2 = 3 -443529 leafProbs2 = 50 -443529 countPokes3 = 25 -443530 countRewards3 = 22 -443530 leafProbs3 = 80 -443531 countPokes4 = 27 -443531 countRewards4 = 18 -443531 leafProbs4 = 50 -443531 countPokes5 = 3 -443532 countRewards5 = 1 -443532 leafProbs5 = 20 -443546 countPokes6 = 3 -443547 countRewards6 = 3 -443547 leafProbs6 = 80 -~~~ -445023 UP 3 -445023 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445051 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -445198 DOWN 3 -445198 0 256 -445203 UP 3 -445203 4 256 -~~~ -445219 contingency = 0 -445219 trialThresh = 100 -445220 timeMaxOut = 30 -445220 timeElapsed = 9 -445221 totalPokes = 68 -445221 totalRewards = 48 -445221 countPokes1 = 4 -445221 countRewards1 = 0 -445222 leafProbs1 = 20 -445222 countPokes2 = 5 -445223 countRewards2 = 3 -445237 leafProbs2 = 50 -445237 countPokes3 = 26 -445237 countRewards3 = 23 -445237 leafProbs3 = 80 -445238 countPokes4 = 27 -445238 countRewards4 = 18 -445238 leafProbs4 = 50 -445239 countPokes5 = 3 -445239 countRewards5 = 1 -445239 leafProbs5 = 20 -445253 countPokes6 = 3 -445253 countRewards6 = 3 -445254 leafProbs6 = 80 -~~~ -445351 4 0 -446564 DOWN 3 -446564 0 0 -446580 UP 3 -446580 4 0 -446666 DOWN 3 -446666 0 0 -446672 UP 3 -446672 4 0 -447271 DOWN 3 -447271 0 0 -447281 UP 3 -447281 4 0 -447399 DOWN 3 -447399 0 0 -447401 UP 3 -447401 4 0 -447585 DOWN 3 -447585 0 0 -447615 UP 3 -447615 4 0 -447643 DOWN 3 -447643 0 0 -450872 UP 3 -450872 4 0 -451134 DOWN 3 -451134 0 0 -458037 UP 3 -458037 4 0 -458053 DOWN 3 -458053 0 0 -460643 UP 4 -460643 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460679 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -460979 8 0 -461063 DOWN 4 -461063 0 0 -461068 UP 4 -461068 8 0 -~~~ -461088 contingency = 0 -461088 trialThresh = 100 -461089 timeMaxOut = 30 -461089 timeElapsed = 10 -461090 totalPokes = 69 -461090 totalRewards = 49 -461090 countPokes1 = 4 -461090 countRewards1 = 0 -461090 leafProbs1 = 20 -461091 countPokes2 = 5 -461091 countRewards2 = 3 -461105 leafProbs2 = 50 -461106 countPokes3 = 26 -461106 countRewards3 = 23 -461106 leafProbs3 = 80 -461106 countPokes4 = 28 -461107 countRewards4 = 19 -461107 leafProbs4 = 50 -461108 countPokes5 = 3 -461108 countRewards5 = 1 -461108 leafProbs5 = 20 -461122 countPokes6 = 3 -461122 countRewards6 = 3 -461123 leafProbs6 = 80 -~~~ -462945 DOWN 4 -462945 0 0 -464503 UP 3 -464503 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464536 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -464675 DOWN 3 -464675 0 256 -464690 UP 3 -464690 4 256 -~~~ -464696 contingency = 0 -464696 trialThresh = 100 -464696 timeMaxOut = 30 -464697 timeElapsed = 10 -464697 totalPokes = 70 -464698 totalRewards = 50 -464698 countPokes1 = 4 -464698 countRewards1 = 0 -464698 leafProbs1 = 20 -464699 countPokes2 = 5 -464699 countRewards2 = 3 -464713 leafProbs2 = 50 -464714 countPokes3 = 27 -464714 countRewards3 = 24 -464714 leafProbs3 = 80 -464714 countPokes4 = 28 -464714 countRewards4 = 19 -464715 leafProbs4 = 50 -464715 countPokes5 = 3 -464716 countRewards5 = 1 -464716 leafProbs5 = 20 -464730 countPokes6 = 3 -464730 countRewards6 = 3 -464730 leafProbs6 = 80 -~~~ -464836 4 0 -466180 DOWN 3 -466180 0 0 -466185 UP 3 -466185 4 0 -466672 DOWN 3 -466672 0 0 -466681 UP 3 -466681 4 0 -467035 DOWN 3 -467035 0 0 -468621 UP 4 -468621 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -469088 DOWN 4 -469088 0 0 -~~~ -469110 contingency = 0 -469110 trialThresh = 100 -469111 timeMaxOut = 30 -469111 timeElapsed = 10 -469112 totalPokes = 71 -469112 totalRewards = 50 -469112 countPokes1 = 4 -469112 countRewards1 = 0 -469113 leafProbs1 = 20 -469113 countPokes2 = 5 -469114 countRewards2 = 3 -469128 leafProbs2 = 50 -469128 countPokes3 = 27 -469128 countRewards3 = 24 -469128 leafProbs3 = 80 -469129 countPokes4 = 29 -469129 countRewards4 = 19 -469130 leafProbs4 = 50 -469130 countPokes5 = 3 -469130 countRewards5 = 1 -469130 leafProbs5 = 20 -469144 countPokes6 = 3 -469144 countRewards6 = 3 -469145 leafProbs6 = 80 -~~~ -469146 UP 4 -469145 8 0 -469254 DOWN 4 -469254 0 0 -470660 UP 3 -470660 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470691 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -470845 DOWN 3 -470845 0 256 -~~~ -470871 contingency = 0 -470872 trialThresh = 100 -470872 timeMaxOut = 30 -470872 timeElapsed = 10 -470872 totalPokes = 72 -470873 totalRewards = 51 -470873 countPokes1 = 4 -470874 countRewards1 = 0 -470874 leafProbs1 = 20 -470874 countPokes2 = 5 -470874 countRewards2 = 3 -470888 leafProbs2 = 50 -470889 countPokes3 = 28 -470889 countRewards3 = 25 -470890 leafProbs3 = 80 -470890 countPokes4 = 29 -470890 countRewards4 = 19 -470890 leafProbs4 = 50 -470890 countPokes5 = 3 -470891 countRewards5 = 1 -470891 leafProbs5 = 20 -470905 countPokes6 = 3 -470906 countRewards6 = 3 -470906 leafProbs6 = 80 -~~~ -470906 UP 3 -470906 4 256 -470939 DOWN 3 -470939 0 256 -470946 UP 3 -470946 4 256 -470991 4 0 -472181 DOWN 3 -472181 0 0 -472195 UP 3 -472195 4 0 -472768 DOWN 3 -472768 0 0 -472803 UP 3 -472803 4 0 -472881 DOWN 3 -472881 0 0 -472900 UP 3 -472900 4 0 -473321 DOWN 3 -473321 0 0 -477310 UP 4 -477310 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477346 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -477646 8 0 -479512 DOWN 4 -479512 0 0 -~~~ -479533 contingency = 0 -479533 trialThresh = 100 -479534 timeMaxOut = 30 -479534 timeElapsed = 10 -479534 totalPokes = 73 -479534 totalRewards = 52 -479535 countPokes1 = 4 -479535 countRewards1 = 0 -479536 leafProbs1 = 20 -479536 countPokes2 = 5 -479536 countRewards2 = 3 -479550 leafProbs2 = 50 -479550 countPokes3 = 28 -479550 countRewards3 = 25 -479551 leafProbs3 = 80 -479551 countPokes4 = 30 -479552 countRewards4 = 20 -479552 leafProbs4 = 50 -479552 countPokes5 = 3 -479552 countRewards5 = 1 -479553 leafProbs5 = 20 -479567 countPokes6 = 3 -479567 countRewards6 = 3 -479568 leafProbs6 = 80 -~~~ -479568 UP 4 -479568 8 0 -479604 DOWN 4 -479604 0 0 -479764 UP 4 -479764 8 0 -479862 DOWN 4 -479862 0 0 -481308 UP 3 -481308 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481334 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -481480 DOWN 3 -481480 0 256 -481487 UP 3 -481486 4 256 -~~~ -481506 contingency = 0 -481506 trialThresh = 100 -481507 timeMaxOut = 30 -481507 timeElapsed = 10 -481508 totalPokes = 74 -481508 totalRewards = 53 -481508 countPokes1 = 4 -481508 countRewards1 = 0 -481509 leafProbs1 = 20 -481509 countPokes2 = 5 -481510 countRewards2 = 3 -481524 leafProbs2 = 50 -481524 countPokes3 = 29 -481524 countRewards3 = 26 -481524 leafProbs3 = 80 -481525 countPokes4 = 30 -481525 countRewards4 = 20 -481526 leafProbs4 = 50 -481526 countPokes5 = 3 -481526 countRewards5 = 1 -481526 leafProbs5 = 20 -481540 countPokes6 = 3 -481540 countRewards6 = 3 -481541 leafProbs6 = 80 -~~~ -481634 4 0 -483938 DOWN 3 -483938 0 0 -483946 UP 3 -483946 4 0 -484246 DOWN 3 -484246 0 0 -485746 UP 4 -485746 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -486222 DOWN 4 -486222 0 0 -~~~ -486242 contingency = 0 -486243 trialThresh = 100 -486243 timeMaxOut = 30 -486244 timeElapsed = 10 -486244 totalPokes = 75 -486244 totalRewards = 53 -486244 countPokes1 = 4 -486245 countRewards1 = 0 -486245 leafProbs1 = 20 -486246 countPokes2 = 5 -486246 countRewards2 = 3 -486260 leafProbs2 = 50 -486260 countPokes3 = 29 -486260 countRewards3 = 26 -486260 leafProbs3 = 80 -486261 countPokes4 = 31 -486261 countRewards4 = 20 -486262 leafProbs4 = 50 -486262 countPokes5 = 3 -486262 countRewards5 = 1 -486262 leafProbs5 = 20 -486276 countPokes6 = 3 -486277 countRewards6 = 3 -486277 leafProbs6 = 80 -~~~ -487845 UP 3 -487845 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -487878 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -488023 DOWN 3 -488023 0 256 -~~~ -488043 contingency = 0 -488043 trialThresh = 100 -488044 timeMaxOut = 30 -488044 timeElapsed = 10 -488044 totalPokes = 76 -488044 totalRewards = 54 -488045 countPokes1 = 4 -488045 countRewards1 = 0 -488046 leafProbs1 = 20 -488046 countPokes2 = 5 -488046 countRewards2 = 3 -488060 leafProbs2 = 50 -488060 countPokes3 = 30 -488061 countRewards3 = 27 -488061 leafProbs3 = 80 -488061 countPokes4 = 31 -488062 countRewards4 = 20 -488062 leafProbs4 = 50 -488062 countPokes5 = 3 -488062 countRewards5 = 1 -488063 leafProbs5 = 20 -488077 countPokes6 = 3 -488077 countRewards6 = 3 -488078 leafProbs6 = 80 -~~~ -488078 UP 3 -488078 4 256 -488177 4 0 -488201 DOWN 3 -488201 0 0 -488207 UP 3 -488207 4 0 -489274 DOWN 3 -489274 0 0 -489282 UP 3 -489282 4 0 -489874 DOWN 3 -489874 0 0 -489897 UP 3 -489897 4 0 -490194 DOWN 3 -490194 0 0 -491882 UP 4 -491882 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -492302 DOWN 4 -492302 0 0 -~~~ -492328 contingency = 0 -492328 trialThresh = 100 -492328 timeMaxOut = 30 -492329 timeElapsed = 11 -492329 totalPokes = 77 -492330 totalRewards = 54 -492330 countPokes1 = 4 -492330 countRewards1 = 0 -492330 leafProbs1 = 20 -492331 countPokes2 = 5 -492331 countRewards2 = 3 -492345 leafProbs2 = 50 -492346 countPokes3 = 30 -492346 countRewards3 = 27 -492346 leafProbs3 = 80 -492346 countPokes4 = 32 -492347 countRewards4 = 20 -492347 leafProbs4 = 50 -492348 countPokes5 = 3 -492348 countRewards5 = 1 -492348 leafProbs5 = 20 -492362 countPokes6 = 3 -492362 countRewards6 = 3 -492363 leafProbs6 = 80 -~~~ -493828 UP 3 -493828 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -493862 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -494037 DOWN 3 -494037 0 256 -494041 UP 3 -494041 4 256 -~~~ -494062 contingency = 0 -494062 trialThresh = 100 -494062 timeMaxOut = 30 -494062 timeElapsed = 11 -494063 totalPokes = 78 -494063 totalRewards = 55 -494064 countPokes1 = 4 -494064 countRewards1 = 0 -494064 leafProbs1 = 20 -494064 countPokes2 = 5 -494065 countRewards2 = 3 -494079 leafProbs2 = 50 -494079 countPokes3 = 31 -494080 countRewards3 = 28 -494080 leafProbs3 = 80 -494080 countPokes4 = 32 -494080 countRewards4 = 20 -494081 leafProbs4 = 50 -494081 countPokes5 = 3 -494082 countRewards5 = 1 -494082 leafProbs5 = 20 -494096 countPokes6 = 3 -494096 countRewards6 = 3 -494096 leafProbs6 = 80 -~~~ -494162 4 0 -495164 DOWN 3 -495164 0 0 -495184 UP 3 -495184 4 0 -497060 DOWN 3 -497060 0 0 -498750 UP 4 -498750 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -499422 DOWN 4 -499422 0 0 -~~~ -499452 contingency = 0 -499452 trialThresh = 100 -499452 timeMaxOut = 30 -499453 timeElapsed = 11 -499453 totalPokes = 79 -499454 totalRewards = 55 -499454 countPokes1 = 4 -499454 countRewards1 = 0 -499454 leafProbs1 = 20 -499455 countPokes2 = 5 -499455 countRewards2 = 3 -499469 leafProbs2 = 50 -499470 countPokes3 = 31 -499470 countRewards3 = 28 -499470 leafProbs3 = 80 -499470 countPokes4 = 33 -499471 countRewards4 = 20 -499471 leafProbs4 = 50 -499472 countPokes5 = 3 -499472 countRewards5 = 1 -499472 leafProbs5 = 20 -499486 countPokes6 = 3 -499486 countRewards6 = 3 -499487 leafProbs6 = 80 -~~~ -502516 UP 3 -502516 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502556 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -502856 4 0 -504370 DOWN 3 -504370 0 0 -504376 UP 3 -504376 4 0 -~~~ -504395 contingency = 0 -504395 trialThresh = 100 -504396 timeMaxOut = 30 -504396 timeElapsed = 11 -504396 totalPokes = 80 -504396 totalRewards = 56 -504397 countPokes1 = 4 -504397 countRewards1 = 0 -504398 leafProbs1 = 20 -504398 countPokes2 = 5 -504398 countRewards2 = 3 -504412 leafProbs2 = 50 -504412 countPokes3 = 32 -504413 countRewards3 = 29 -504413 leafProbs3 = 80 -504414 countPokes4 = 33 -504414 countRewards4 = 20 -504414 leafProbs4 = 50 -504414 countPokes5 = 3 -504415 countRewards5 = 1 -504415 leafProbs5 = 20 -504429 countPokes6 = 3 -504429 countRewards6 = 3 -504430 leafProbs6 = 80 -~~~ -505326 DOWN 3 -505326 0 0 -505337 UP 3 -505337 4 0 -505428 DOWN 3 -505428 0 0 -505438 UP 3 -505438 4 0 -505520 DOWN 3 -505520 0 0 -505527 UP 3 -505527 4 0 -505736 DOWN 3 -505736 0 0 -507569 UP 4 -507569 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -508106 DOWN 4 -508106 0 0 -~~~ -508131 contingency = 0 -508131 trialThresh = 100 -508131 timeMaxOut = 30 -508131 timeElapsed = 11 -508132 totalPokes = 81 -508132 totalRewards = 56 -508133 countPokes1 = 4 -508133 countRewards1 = 0 -508133 leafProbs1 = 20 -508133 countPokes2 = 5 -508134 countRewards2 = 3 -508148 leafProbs2 = 50 -508148 countPokes3 = 32 -508149 countRewards3 = 29 -508149 leafProbs3 = 80 -508149 countPokes4 = 34 -508149 countRewards4 = 20 -508149 leafProbs4 = 50 -508150 countPokes5 = 3 -508150 countRewards5 = 1 -508151 leafProbs5 = 20 -508165 countPokes6 = 3 -508165 countRewards6 = 3 -508165 leafProbs6 = 80 -~~~ -509672 UP 3 -509672 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509706 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -509944 DOWN 3 -509944 0 256 -509950 UP 3 -509949 4 256 -~~~ -509970 contingency = 0 -509971 trialThresh = 100 -509971 timeMaxOut = 30 -509971 timeElapsed = 11 -509971 totalPokes = 82 -509972 totalRewards = 57 -509972 countPokes1 = 4 -509973 countRewards1 = 0 -509973 leafProbs1 = 20 -509973 countPokes2 = 5 -509973 countRewards2 = 3 -509987 leafProbs2 = 50 -509988 countPokes3 = 33 -509988 countRewards3 = 30 -509989 leafProbs3 = 80 -509989 countPokes4 = 34 -509989 countRewards4 = 20 -509989 leafProbs4 = 50 -509990 countPokes5 = 3 -509990 countRewards5 = 1 -509991 leafProbs5 = 20 -510004 countPokes6 = 3 -510005 countRewards6 = 3 -510005 leafProbs6 = 80 -~~~ -510006 4 0 -510025 DOWN 3 -510025 0 0 -510031 UP 3 -510031 4 0 -511178 DOWN 3 -511178 0 0 -511182 UP 3 -511182 4 0 -511997 DOWN 3 -511997 0 0 -512014 UP 3 -512014 4 0 -512108 DOWN 3 -512108 0 0 -512116 UP 3 -512116 4 0 -512525 DOWN 3 -512525 0 0 -512563 UP 3 -512563 4 0 -512575 DOWN 3 -512575 0 0 -514331 UP 4 -514331 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -514854 DOWN 4 -514854 0 0 -~~~ -514871 contingency = 0 -514871 trialThresh = 100 -514871 timeMaxOut = 30 -514871 timeElapsed = 11 -514872 totalPokes = 83 -514872 totalRewards = 57 -514873 countPokes1 = 4 -514873 countRewards1 = 0 -514873 leafProbs1 = 20 -514873 countPokes2 = 5 -514874 countRewards2 = 3 -514888 leafProbs2 = 50 -514888 countPokes3 = 33 -514889 countRewards3 = 30 -514889 leafProbs3 = 80 -514889 countPokes4 = 35 -514889 countRewards4 = 20 -514889 leafProbs4 = 50 -514890 countPokes5 = 3 -514890 countRewards5 = 1 -514891 leafProbs5 = 20 -514905 countPokes6 = 3 -514905 countRewards6 = 3 -514905 leafProbs6 = 80 -~~~ -516388 UP 3 -516388 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516421 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -516567 DOWN 3 -516567 0 256 -~~~ -516585 contingency = 0 -516585 trialThresh = 100 -516585 timeMaxOut = 30 -516586 timeElapsed = 11 -516586 totalPokes = 84 -516586 totalRewards = 58 -516587 countPokes1 = 4 -516587 countRewards1 = 0 -516587 leafProbs1 = 20 -516587 countPokes2 = 5 -516588 countRewards2 = 3 -516602 leafProbs2 = 50 -516602 countPokes3 = 34 -516603 countRewards3 = 31 -516603 leafProbs3 = 80 -516603 countPokes4 = 35 -516603 countRewards4 = 20 -516604 leafProbs4 = 50 -516604 countPokes5 = 3 -516605 countRewards5 = 1 -516605 leafProbs5 = 20 -516619 countPokes6 = 3 -516619 countRewards6 = 3 -516619 leafProbs6 = 80 -~~~ -516620 UP 3 -516620 4 256 -516721 4 0 -517898 DOWN 3 -517898 0 0 -517919 UP 3 -517919 4 0 -518728 DOWN 3 -518728 0 0 -518741 UP 3 -518741 4 0 -519133 DOWN 3 -519133 0 0 -520955 UP 4 -520955 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -520984 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -521284 8 0 -523323 DOWN 4 -523323 0 0 -~~~ -523351 contingency = 0 -523351 trialThresh = 100 -523351 timeMaxOut = 30 -523351 timeElapsed = 11 -523352 totalPokes = 85 -523352 totalRewards = 59 -523353 countPokes1 = 4 -523353 countRewards1 = 0 -523353 leafProbs1 = 20 -523353 countPokes2 = 5 -523354 countRewards2 = 3 -523368 leafProbs2 = 50 -523368 countPokes3 = 34 -523369 countRewards3 = 31 -523369 leafProbs3 = 80 -523369 countPokes4 = 36 -523369 countRewards4 = 21 -523370 leafProbs4 = 50 -523370 countPokes5 = 3 -523370 countRewards5 = 1 -523371 leafProbs5 = 20 -523385 countPokes6 = 3 -523385 countRewards6 = 3 -523385 leafProbs6 = 80 -~~~ -526214 UP 3 -526214 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -526301 DOWN 3 -526301 0 0 -526310 UP 3 -526310 4 0 -~~~ -526327 contingency = 0 -526327 trialThresh = 100 -526327 timeMaxOut = 30 -526327 timeElapsed = 11 -526328 totalPokes = 86 -526328 totalRewards = 59 -526329 countPokes1 = 4 -526329 countRewards1 = 0 -526329 leafProbs1 = 20 -526329 countPokes2 = 5 -526330 countRewards2 = 3 -526344 leafProbs2 = 50 -526344 countPokes3 = 35 -526345 countRewards3 = 31 -526345 leafProbs3 = 80 -526345 countPokes4 = 36 -526345 countRewards4 = 21 -526346 leafProbs4 = 50 -526346 countPokes5 = 3 -526346 countRewards5 = 1 -526347 leafProbs5 = 20 -526361 countPokes6 = 3 -526361 countRewards6 = 3 -526361 leafProbs6 = 80 -~~~ -527470 DOWN 3 -527470 0 0 -529598 UP 3 -529598 4 0 -529755 DOWN 3 -529755 0 0 -531319 UP 4 -531319 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531349 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -531649 8 0 -533663 DOWN 4 -533663 0 0 -~~~ -533685 contingency = 0 -533685 trialThresh = 100 -533686 timeMaxOut = 30 -533686 timeElapsed = 12 -533687 totalPokes = 87 -533687 totalRewards = 60 -533687 countPokes1 = 4 -533687 countRewards1 = 0 -533688 leafProbs1 = 20 -533688 countPokes2 = 5 -533689 countRewards2 = 3 -533703 leafProbs2 = 50 -533703 countPokes3 = 35 -533703 countRewards3 = 31 -533703 leafProbs3 = 80 -533704 countPokes4 = 37 -533704 countRewards4 = 22 -533705 leafProbs4 = 50 -533705 countPokes5 = 3 -533705 countRewards5 = 1 -533705 leafProbs5 = 20 -533719 countPokes6 = 3 -533719 countRewards6 = 3 -533720 leafProbs6 = 80 -~~~ -533720 UP 4 -533720 8 0 -533751 DOWN 4 -533751 0 0 -536909 UP 3 -536909 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -536945 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -537090 DOWN 3 -537090 0 256 -537097 UP 3 -537097 4 256 -~~~ -537116 contingency = 0 -537116 trialThresh = 100 -537117 timeMaxOut = 30 -537117 timeElapsed = 12 -537117 totalPokes = 88 -537117 totalRewards = 61 -537118 countPokes1 = 4 -537118 countRewards1 = 0 -537119 leafProbs1 = 20 -537119 countPokes2 = 5 -537119 countRewards2 = 3 -537133 leafProbs2 = 50 -537133 countPokes3 = 36 -537134 countRewards3 = 32 -537134 leafProbs3 = 80 -537135 countPokes4 = 37 -537135 countRewards4 = 22 -537135 leafProbs4 = 50 -537135 countPokes5 = 3 -537136 countRewards5 = 1 -537136 leafProbs5 = 20 -537150 countPokes6 = 3 -537150 countRewards6 = 3 -537151 leafProbs6 = 80 -~~~ -537245 4 0 -539425 DOWN 3 -539425 0 0 -539438 UP 3 -539438 4 0 -539829 DOWN 3 -539829 0 0 -541662 UP 4 -541662 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -542247 DOWN 4 -542247 0 0 -~~~ -542270 contingency = 0 -542270 trialThresh = 100 -542271 timeMaxOut = 30 -542271 timeElapsed = 12 -542271 totalPokes = 89 -542271 totalRewards = 61 -542272 countPokes1 = 4 -542272 countRewards1 = 0 -542273 leafProbs1 = 20 -542273 countPokes2 = 5 -542273 countRewards2 = 3 -542287 leafProbs2 = 50 -542287 countPokes3 = 36 -542288 countRewards3 = 32 -542288 leafProbs3 = 80 -542289 countPokes4 = 38 -542289 countRewards4 = 22 -542289 leafProbs4 = 50 -542289 countPokes5 = 3 -542290 countRewards5 = 1 -542290 leafProbs5 = 20 -542304 countPokes6 = 3 -542304 countRewards6 = 3 -542305 leafProbs6 = 80 -~~~ -542305 UP 4 -542305 8 0 -542367 DOWN 4 -542367 0 0 -543862 UP 3 -543862 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -543900 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -544127 DOWN 3 -544127 0 256 -544136 UP 3 -544136 4 256 -~~~ -544152 contingency = 0 -544153 trialThresh = 100 -544153 timeMaxOut = 30 -544153 timeElapsed = 12 -544153 totalPokes = 90 -544154 totalRewards = 62 -544154 countPokes1 = 4 -544155 countRewards1 = 0 -544155 leafProbs1 = 20 -544155 countPokes2 = 5 -544155 countRewards2 = 3 -544169 leafProbs2 = 50 -544170 countPokes3 = 37 -544170 countRewards3 = 33 -544171 leafProbs3 = 80 -544171 countPokes4 = 38 -544171 countRewards4 = 22 -544171 leafProbs4 = 50 -544172 countPokes5 = 3 -544172 countRewards5 = 1 -544173 leafProbs5 = 20 -544186 countPokes6 = 3 -544187 countRewards6 = 3 -544187 leafProbs6 = 80 -~~~ -544200 4 0 -545486 DOWN 3 -545486 0 0 -545491 UP 3 -545491 4 0 -545979 DOWN 3 -545979 0 0 -545983 UP 3 -545983 4 0 -546082 DOWN 3 -546082 0 0 -546099 UP 3 -546099 4 0 -546423 DOWN 3 -546423 0 0 -546453 UP 3 -546453 4 0 -546490 DOWN 3 -546490 0 0 -549948 UP 4 -549948 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -550901 DOWN 4 -550901 0 0 -~~~ -550925 contingency = 0 -550926 trialThresh = 100 -550926 timeMaxOut = 30 -550927 timeElapsed = 12 -550927 totalPokes = 91 -550927 totalRewards = 62 -550927 countPokes1 = 4 -550928 countRewards1 = 0 -550928 leafProbs1 = 20 -550929 countPokes2 = 5 -550929 countRewards2 = 3 -550943 leafProbs2 = 50 -550943 countPokes3 = 37 -550943 countRewards3 = 33 -550944 leafProbs3 = 80 -550944 countPokes4 = 39 -550945 countRewards4 = 22 -550945 leafProbs4 = 50 -550945 countPokes5 = 3 -550945 countRewards5 = 1 -550945 leafProbs5 = 20 -550959 countPokes6 = 3 -550960 countRewards6 = 3 -550960 leafProbs6 = 80 -~~~ -552408 UP 3 -552408 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -552598 DOWN 3 -552598 0 0 -552617 UP 3 -552617 4 0 -~~~ -552629 contingency = 0 -552629 trialThresh = 100 -552630 timeMaxOut = 30 -552630 timeElapsed = 12 -552631 totalPokes = 92 -552631 totalRewards = 62 -552631 countPokes1 = 4 -552631 countRewards1 = 0 -552632 leafProbs1 = 20 -552632 countPokes2 = 5 -552633 countRewards2 = 3 -552647 leafProbs2 = 50 -552647 countPokes3 = 38 -552647 countRewards3 = 33 -552647 leafProbs3 = 80 -552648 countPokes4 = 39 -552648 countRewards4 = 22 -552649 leafProbs4 = 50 -552649 countPokes5 = 3 -552649 countRewards5 = 1 -552649 leafProbs5 = 20 -552663 countPokes6 = 3 -552663 countRewards6 = 3 -552664 leafProbs6 = 80 -~~~ -552933 DOWN 3 -552933 0 0 -558142 UP 6 -558142 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558168 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -558468 32 0 -558499 DOWN 6 -558499 0 0 -558519 UP 6 -558519 32 0 -~~~ -558525 contingency = 0 -558525 trialThresh = 100 -558526 timeMaxOut = 30 -558526 timeElapsed = 12 -558527 totalPokes = 93 -558527 totalRewards = 63 -558527 countPokes1 = 4 -558527 countRewards1 = 0 -558528 leafProbs1 = 20 -558528 countPokes2 = 5 -558529 countRewards2 = 3 -558543 leafProbs2 = 50 -558543 countPokes3 = 38 -558543 countRewards3 = 33 -558543 leafProbs3 = 80 -558544 countPokes4 = 39 -558544 countRewards4 = 22 -558544 leafProbs4 = 50 -558545 countPokes5 = 3 -558545 countRewards5 = 1 -558545 leafProbs5 = 20 -558559 countPokes6 = 4 -558559 countRewards6 = 4 -558560 leafProbs6 = 80 -~~~ -558585 DOWN 6 -558585 0 0 -558600 UP 6 -558600 32 0 -558607 DOWN 6 -558607 0 0 -558619 UP 6 -558619 32 0 -558669 DOWN 6 -558669 0 0 -558681 UP 6 -558681 32 0 -558755 DOWN 6 -558755 0 0 -558763 UP 6 -558763 32 0 -558843 DOWN 6 -558843 0 0 -558848 UP 6 -558848 32 0 -560712 DOWN 6 -560712 0 0 -560727 UP 6 -560727 32 0 -561070 DOWN 6 -561070 0 0 -561521 UP 6 -561521 32 0 -561527 DOWN 6 -561527 0 0 -562119 UP 6 -562119 32 0 -562301 DOWN 6 -562301 0 0 -568732 UP 1 -568732 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -568789 DOWN 1 -568789 0 0 -~~~ -568807 contingency = 0 -568807 trialThresh = 100 -568808 timeMaxOut = 30 -568808 timeElapsed = 12 -568808 totalPokes = 94 -568808 totalRewards = 63 -568809 countPokes1 = 5 -568809 countRewards1 = 0 -568810 leafProbs1 = 20 -568810 countPokes2 = 5 -568810 countRewards2 = 3 -568824 leafProbs2 = 50 -568824 countPokes3 = 38 -568825 countRewards3 = 33 -568825 leafProbs3 = 80 -568826 countPokes4 = 39 -568826 countRewards4 = 22 -568826 leafProbs4 = 50 -568826 countPokes5 = 3 -568826 countRewards5 = 1 -568827 leafProbs5 = 20 -568841 countPokes6 = 4 -568841 countRewards6 = 4 -568842 leafProbs6 = 80 -~~~ -568856 UP 1 -568856 1 0 -568902 DOWN 1 -568902 0 0 -568928 UP 1 -568928 1 0 -568972 DOWN 1 -568972 0 0 -568978 UP 1 -568978 1 0 -569138 DOWN 1 -569138 0 0 -591730 UP 2 -591730 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -591756 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -592056 2 0 -592065 DOWN 2 -592065 0 0 -592088 UP 2 -592088 2 0 -~~~ -592108 contingency = 0 -592109 trialThresh = 100 -592109 timeMaxOut = 30 -592110 timeElapsed = 13 -592110 totalPokes = 95 -592110 totalRewards = 64 -592110 countPokes1 = 5 -592111 countRewards1 = 0 -592111 leafProbs1 = 20 -592112 countPokes2 = 6 -592112 countRewards2 = 4 -592126 leafProbs2 = 50 -592126 countPokes3 = 38 -592126 countRewards3 = 33 -592127 leafProbs3 = 80 -592127 countPokes4 = 39 -592128 countRewards4 = 22 -592128 leafProbs4 = 50 -592128 countPokes5 = 3 -592128 countRewards5 = 1 -592129 leafProbs5 = 20 -592142 countPokes6 = 4 -592143 countRewards6 = 4 -592143 leafProbs6 = 80 -~~~ -592150 DOWN 2 -592150 0 0 -592163 UP 2 -592163 2 0 -593402 DOWN 2 -593402 0 0 -593414 UP 2 -593414 2 0 -593972 DOWN 2 -593972 0 0 -604829 UP 6 -604829 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -605011 DOWN 6 -605011 0 0 -~~~ -605028 contingency = 0 -605028 trialThresh = 100 -605028 timeMaxOut = 30 -605028 timeElapsed = 13 -605029 totalPokes = 96 -605029 totalRewards = 64 -605030 countPokes1 = 5 -605030 countRewards1 = 0 -605030 leafProbs1 = 20 -605030 countPokes2 = 6 -605031 countRewards2 = 4 -605045 leafProbs2 = 50 -605045 countPokes3 = 38 -605046 countRewards3 = 33 -605046 leafProbs3 = 80 -605046 countPokes4 = 39 -605046 countRewards4 = 22 -605047 leafProbs4 = 50 -605047 countPokes5 = 3 -605048 countRewards5 = 1 -605048 leafProbs5 = 20 -605062 countPokes6 = 5 -605062 countRewards6 = 4 -605062 leafProbs6 = 80 -~~~ -605062 UP 6 -605062 32 0 -605486 DOWN 6 -605486 0 0 -609736 UP 6 -609736 32 0 -609776 DOWN 6 -609776 0 0 -609785 UP 6 -609785 32 0 -609796 DOWN 6 -609796 0 0 -614642 UP 2 -614642 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614674 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -614974 2 0 -615003 DOWN 2 -615003 0 0 -615025 UP 2 -615025 2 0 -~~~ -615028 contingency = 0 -615028 trialThresh = 100 -615028 timeMaxOut = 30 -615028 timeElapsed = 14 -615029 totalPokes = 97 -615029 totalRewards = 65 -615030 countPokes1 = 5 -615030 countRewards1 = 0 -615030 leafProbs1 = 20 -615030 countPokes2 = 7 -615031 countRewards2 = 5 -615045 leafProbs2 = 50 -615045 countPokes3 = 38 -615046 countRewards3 = 33 -615046 leafProbs3 = 80 -615046 countPokes4 = 39 -615046 countRewards4 = 22 -615047 leafProbs4 = 50 -615047 countPokes5 = 3 -615048 countRewards5 = 1 -615048 leafProbs5 = 20 -615062 countPokes6 = 5 -615062 countRewards6 = 4 -615062 leafProbs6 = 80 -~~~ -615089 DOWN 2 -615089 0 0 -615133 UP 2 -615133 2 0 -615166 DOWN 2 -615166 0 0 -615174 UP 2 -615174 2 0 -615247 DOWN 2 -615247 0 0 -615250 UP 2 -615250 2 0 -616464 DOWN 2 -616464 0 0 -616474 UP 2 -616474 2 0 -616958 DOWN 2 -616958 0 0 -616988 UP 2 -616988 2 0 -617046 DOWN 2 -617046 0 0 -622310 UP 1 -622310 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622334 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -622455 DOWN 1 -622455 0 64 -~~~ -622473 contingency = 0 -622474 trialThresh = 100 -622474 timeMaxOut = 30 -622475 timeElapsed = 14 -622475 totalPokes = 98 -622475 totalRewards = 66 -622475 countPokes1 = 6 -622476 countRewards1 = 1 -622476 leafProbs1 = 20 -622477 countPokes2 = 7 -622477 countRewards2 = 5 -622491 leafProbs2 = 50 -622491 countPokes3 = 38 -622491 countRewards3 = 33 -622492 leafProbs3 = 80 -622492 countPokes4 = 39 -622493 countRewards4 = 22 -622493 leafProbs4 = 50 -622493 countPokes5 = 3 -622493 countRewards5 = 1 -622494 leafProbs5 = 20 -622508 countPokes6 = 5 -622508 countRewards6 = 4 -622508 leafProbs6 = 80 -~~~ -622509 UP 1 -622509 1 64 -622634 1 0 -624194 DOWN 1 -624194 0 0 -624209 UP 1 -624209 1 0 -625083 DOWN 1 -625083 0 0 -625134 UP 1 -625134 1 0 -625417 DOWN 1 -625417 0 0 -625464 UP 1 -625464 1 0 -625483 DOWN 1 -625483 0 0 -625877 UP 1 -625877 1 0 -625949 DOWN 1 -625949 0 0 -625969 UP 1 -625969 1 0 -625992 DOWN 1 -625992 0 0 -633927 UP 2 -633927 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -634281 DOWN 2 -634281 0 0 -~~~ -634297 contingency = 0 -634297 trialThresh = 100 -634298 timeMaxOut = 30 -634298 timeElapsed = 14 -634299 totalPokes = 99 -634299 totalRewards = 66 -634299 countPokes1 = 6 -634299 countRewards1 = 1 -634300 leafProbs1 = 20 -634300 countPokes2 = 8 -634300 countRewards2 = 5 -634315 leafProbs2 = 50 -634315 countPokes3 = 38 -634315 countRewards3 = 33 -634315 leafProbs3 = 80 -634315 countPokes4 = 39 -634316 countRewards4 = 22 -634316 leafProbs4 = 50 -634317 countPokes5 = 3 -634317 countRewards5 = 1 -634317 leafProbs5 = 20 -634331 countPokes6 = 5 -634331 countRewards6 = 4 -634332 leafProbs6 = 80 -~~~ -638222 UP 1 -638222 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638404 DOWN 1 -638404 0 0 -638418 UP 1 -638418 1 0 -~~~ -638425 contingency = 0 -638425 trialThresh = 100 -638425 timeMaxOut = 30 -638426 timeElapsed = 14 -638426 totalPokes = 100 -638427 totalRewards = 66 -638427 countPokes1 = 7 -638427 countRewards1 = 1 -638427 leafProbs1 = 20 -638428 countPokes2 = 8 -638428 countRewards2 = 5 -638442 leafProbs2 = 50 -638443 countPokes3 = 38 -638443 countRewards3 = 33 -638443 leafProbs3 = 80 -638443 countPokes4 = 39 -638444 countRewards4 = 22 -638444 leafProbs4 = 50 -638445 countPokes5 = 3 -638445 countRewards5 = 1 -638445 leafProbs5 = 20 -638459 countPokes6 = 5 -638459 countRewards6 = 4 -638460 leafProbs6 = 80 -~~~ -638461 This contingency is over! -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -638472 DOWN 1 -638472 0 0 -638487 UP 1 -638487 1 0 -638513 DOWN 1 -638513 0 0 -646489 UP 2 -646489 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646515 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -646668 DOWN 2 -646668 0 128 -~~~ -646696 contingency = 1 -646697 trialThresh = 100 -646697 timeMaxOut = 30 -646697 timeElapsed = 0 -646697 totalPokes = 1 -646698 totalRewards = 1 -646698 countPokes1 = 0 -646699 countRewards1 = 0 -646699 leafProbs1 = 80 -646699 countPokes2 = 1 -646699 countRewards2 = 1 -646713 leafProbs2 = 20 -646713 countPokes3 = 0 -646714 countRewards3 = 0 -646714 leafProbs3 = 20 -646715 countPokes4 = 0 -646715 countRewards4 = 0 -646715 leafProbs4 = 50 -646715 countPokes5 = 0 -646716 countRewards5 = 0 -646716 leafProbs5 = 80 -646730 countPokes6 = 0 -646730 countRewards6 = 0 -646730 leafProbs6 = 50 -~~~ -646731 UP 2 -646731 2 128 -646761 DOWN 2 -646761 0 128 -646770 UP 2 -646770 2 128 -646815 2 0 -646848 DOWN 2 -646848 0 0 -646855 UP 2 -646855 2 0 -646933 DOWN 2 -646933 0 0 -646935 UP 2 -646935 2 0 -648132 DOWN 2 -648132 0 0 -648141 UP 2 -648141 2 0 -648226 DOWN 2 -648226 0 0 -648237 UP 2 -648237 2 0 -648715 DOWN 2 -648715 0 0 -653107 UP 1 -653107 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653131 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -653293 DOWN 1 -653293 0 64 -653304 UP 1 -653304 1 64 -~~~ -653311 contingency = 1 -653312 trialThresh = 100 -653312 timeMaxOut = 30 -653313 timeElapsed = 0 -653313 totalPokes = 2 -653313 totalRewards = 2 -653313 countPokes1 = 1 -653314 countRewards1 = 1 -653314 leafProbs1 = 80 -653315 countPokes2 = 1 -653315 countRewards2 = 1 -653329 leafProbs2 = 20 -653329 countPokes3 = 0 -653329 countRewards3 = 0 -653329 leafProbs3 = 20 -653330 countPokes4 = 0 -653330 countRewards4 = 0 -653331 leafProbs4 = 50 -653331 countPokes5 = 0 -653331 countRewards5 = 0 -653331 leafProbs5 = 80 -653345 countPokes6 = 0 -653345 countRewards6 = 0 -653346 leafProbs6 = 50 -~~~ -653431 1 0 -654896 DOWN 1 -654896 0 0 -654909 UP 1 -654909 1 0 -655510 DOWN 1 -655510 0 0 -655525 UP 1 -655525 1 0 -655618 DOWN 1 -655618 0 0 -655645 UP 1 -655645 1 0 -655712 DOWN 1 -655712 0 0 -655745 UP 1 -655745 1 0 -656047 DOWN 1 -656047 0 0 -660017 UP 1 -660017 1 0 -660042 DOWN 1 -660042 0 0 -660144 UP 1 -660144 1 0 -660733 DOWN 1 -660733 0 0 -661455 UP 1 -661455 1 0 -662374 DOWN 1 -662374 0 0 -662767 UP 1 -662767 1 0 -662786 DOWN 1 -662786 0 0 -662843 UP 1 -662843 1 0 -662951 DOWN 1 -662951 0 0 -663092 UP 1 -663092 1 0 -663690 DOWN 1 -663690 0 0 -663868 UP 1 -663868 1 0 -663885 DOWN 1 -663885 0 0 -667344 UP 1 -667344 1 0 -668669 DOWN 1 -668669 0 0 -668771 UP 1 -668771 1 0 -670429 DOWN 1 -670429 0 0 -670599 UP 1 -670599 1 0 -671129 DOWN 1 -671129 0 0 -671135 UP 1 -671135 1 0 -676936 DOWN 1 -676936 0 0 -677158 UP 1 -677158 1 0 -677369 DOWN 1 -677369 0 0 -677386 UP 1 -677386 1 0 -677428 DOWN 1 -677428 0 0 -677446 UP 1 -677446 1 0 -677934 DOWN 1 -677934 0 0 -679615 UP 2 -679615 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679642 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -679879 DOWN 2 -679879 0 128 -~~~ -679904 UP 2 -679904 2 128 -679905 contingency = 1 -679905 trialThresh = 100 -679906 timeMaxOut = 30 -679906 timeElapsed = 1 -679906 totalPokes = 3 -679906 totalRewards = 3 -679906 countPokes1 = 1 -679907 countRewards1 = 1 -679907 leafProbs1 = 80 -679908 countPokes2 = 2 -679922 countRewards2 = 2 -679922 leafProbs2 = 20 -679922 countPokes3 = 0 -679922 countRewards3 = 0 -679923 leafProbs3 = 20 -679923 countPokes4 = 0 -679924 countRewards4 = 0 -679924 leafProbs4 = 50 -679924 countPokes5 = 0 -679924 countRewards5 = 0 -679938 leafProbs5 = 80 -679938 countPokes6 = 0 -679939 countRewards6 = 0 -679939 leafProbs6 = 50 -~~~ -679942 2 0 -679961 DOWN 2 -679961 0 0 -679980 UP 2 -679980 2 0 -680052 DOWN 2 -680052 0 0 -680090 UP 2 -680090 2 0 -680130 DOWN 2 -680130 0 0 -680138 UP 2 -680138 2 0 -680214 DOWN 2 -680214 0 0 -680216 UP 2 -680216 2 0 -681547 DOWN 2 -681547 0 0 -681565 UP 2 -681565 2 0 -681949 DOWN 2 -681949 0 0 -681966 UP 2 -681966 2 0 -682035 DOWN 2 -682035 0 0 -684925 UP 1 -684925 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -684963 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -685263 1 0 -686762 DOWN 1 -686762 0 0 -686785 UP 1 -686785 1 0 -~~~ -686790 contingency = 1 -686791 trialThresh = 100 -686791 timeMaxOut = 30 -686792 timeElapsed = 1 -686792 totalPokes = 4 -686792 totalRewards = 4 -686792 countPokes1 = 2 -686792 countRewards1 = 2 -686793 leafProbs1 = 80 -686793 countPokes2 = 2 -686794 countRewards2 = 2 -686808 leafProbs2 = 20 -686808 countPokes3 = 0 -686808 countRewards3 = 0 -686808 leafProbs3 = 20 -686809 countPokes4 = 0 -686809 countRewards4 = 0 -686810 leafProbs4 = 50 -686810 countPokes5 = 0 -686810 countRewards5 = 0 -686810 leafProbs5 = 80 -686824 countPokes6 = 0 -686824 countRewards6 = 0 -686824 leafProbs6 = 50 -~~~ -686866 DOWN 1 -686866 0 0 -686877 UP 1 -686877 1 0 -687566 DOWN 1 -687566 0 0 -687576 UP 1 -687576 1 0 -687668 DOWN 1 -687668 0 0 -693470 UP 2 -693470 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -693635 DOWN 2 -693635 0 0 -~~~ -693658 contingency = 1 -693658 trialThresh = 100 -693658 timeMaxOut = 30 -693658 timeElapsed = 1 -693658 totalPokes = 5 -693659 totalRewards = 4 -693659 countPokes1 = 2 -693660 countRewards1 = 2 -693660 leafProbs1 = 80 -693660 countPokes2 = 3 -693660 countRewards2 = 2 -693674 leafProbs2 = 20 -693674 countPokes3 = 0 -693675 countRewards3 = 0 -693675 leafProbs3 = 20 -693676 countPokes4 = 0 -693676 countRewards4 = 0 -693676 leafProbs4 = 50 -693676 countPokes5 = 0 -693677 countRewards5 = 0 -693677 leafProbs5 = 80 -693691 countPokes6 = 0 -693691 countRewards6 = 0 -693692 leafProbs6 = 50 -~~~ -693692 UP 2 -693692 2 0 -693956 DOWN 2 -693956 0 0 -696978 UP 2 -696978 2 0 -697030 DOWN 2 -697030 0 0 -699759 UP 1 -699759 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -700230 DOWN 1 -700230 0 0 -~~~ -700245 contingency = 1 -700246 trialThresh = 100 -700246 timeMaxOut = 30 -700246 timeElapsed = 2 -700246 totalPokes = 6 -700247 totalRewards = 4 -700247 countPokes1 = 3 -700247 countRewards1 = 2 -700248 leafProbs1 = 80 -700248 countPokes2 = 3 -700248 countRewards2 = 2 -700262 leafProbs2 = 20 -700262 countPokes3 = 0 -700263 countRewards3 = 0 -700263 leafProbs3 = 20 -700264 countPokes4 = 0 -700264 countRewards4 = 0 -700264 leafProbs4 = 50 -700264 countPokes5 = 0 -700264 countRewards5 = 0 -700265 leafProbs5 = 80 -700278 countPokes6 = 0 -700279 countRewards6 = 0 -700279 leafProbs6 = 50 -~~~ -703081 UP 2 -703081 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -703208 DOWN 2 -703208 0 0 -703223 UP 2 -703223 2 0 -~~~ -703236 contingency = 1 -703236 trialThresh = 100 -703237 timeMaxOut = 30 -703237 timeElapsed = 2 -703238 totalPokes = 7 -703238 totalRewards = 4 -703238 countPokes1 = 3 -703238 countRewards1 = 2 -703239 leafProbs1 = 80 -703239 countPokes2 = 4 -703240 countRewards2 = 2 -703254 leafProbs2 = 20 -703254 countPokes3 = 0 -703254 countRewards3 = 0 -703254 leafProbs3 = 20 -703254 countPokes4 = 0 -703255 countRewards4 = 0 -703255 leafProbs4 = 50 -703256 countPokes5 = 0 -703256 countRewards5 = 0 -703256 leafProbs5 = 80 -703270 countPokes6 = 0 -703270 countRewards6 = 0 -703270 leafProbs6 = 50 -~~~ -703290 DOWN 2 -703290 0 0 -703328 UP 2 -703328 2 0 -703454 DOWN 2 -703454 0 0 -703482 UP 2 -703482 2 0 -703565 DOWN 2 -703565 0 0 -703583 UP 2 -703583 2 0 -703665 DOWN 2 -703665 0 0 -706373 UP 1 -706373 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -706950 DOWN 1 -706950 0 0 -706964 UP 1 -706964 1 0 -~~~ -706971 contingency = 1 -706971 trialThresh = 100 -706972 timeMaxOut = 30 -706972 timeElapsed = 2 -706972 totalPokes = 8 -706972 totalRewards = 4 -706972 countPokes1 = 4 -706973 countRewards1 = 2 -706973 leafProbs1 = 80 -706974 countPokes2 = 4 -706974 countRewards2 = 2 -706988 leafProbs2 = 20 -706988 countPokes3 = 0 -706988 countRewards3 = 0 -706989 leafProbs3 = 20 -706989 countPokes4 = 0 -706990 countRewards4 = 0 -706990 leafProbs4 = 50 -706990 countPokes5 = 0 -706990 countRewards5 = 0 -706990 leafProbs5 = 80 -707004 countPokes6 = 0 -707004 countRewards6 = 0 -707005 leafProbs6 = 50 -~~~ -707161 DOWN 1 -707161 0 0 -707242 UP 1 -707242 1 0 -707332 DOWN 1 -707332 0 0 -707353 UP 1 -707353 1 0 -707676 DOWN 1 -707676 0 0 -711092 UP 2 -711092 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -711282 DOWN 2 -711282 0 0 -~~~ -711306 contingency = 1 -711307 trialThresh = 100 -711307 timeMaxOut = 30 -711308 timeElapsed = 2 -711308 totalPokes = 9 -711308 totalRewards = 4 -711308 countPokes1 = 4 -711309 countRewards1 = 2 -711309 leafProbs1 = 80 -711310 countPokes2 = 5 -711310 countRewards2 = 2 -711324 leafProbs2 = 20 -711324 countPokes3 = 0 -711324 countRewards3 = 0 -711324 leafProbs3 = 20 -711325 countPokes4 = 0 -711325 countRewards4 = 0 -711326 leafProbs4 = 50 -711326 countPokes5 = 0 -711326 countRewards5 = 0 -711326 leafProbs5 = 80 -711340 countPokes6 = 0 -711340 countRewards6 = 0 -711341 leafProbs6 = 50 -~~~ -711341 UP 2 -711341 2 0 -711528 DOWN 2 -711528 0 0 -715382 UP 1 -715382 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715412 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -715712 1 0 -717868 DOWN 1 -717868 0 0 -~~~ -717895 contingency = 1 -717895 trialThresh = 100 -717896 timeMaxOut = 30 -717896 timeElapsed = 2 -717896 totalPokes = 10 -717896 totalRewards = 5 -717897 countPokes1 = 5 -717897 countRewards1 = 3 -717898 leafProbs1 = 80 -717898 countPokes2 = 5 -717898 countRewards2 = 2 -717912 leafProbs2 = 20 -717912 countPokes3 = 0 -717912 countRewards3 = 0 -717913 leafProbs3 = 20 -717913 countPokes4 = 0 -717914 countRewards4 = 0 -717914 leafProbs4 = 50 -717914 countPokes5 = 0 -717914 countRewards5 = 0 -717915 leafProbs5 = 80 -717928 countPokes6 = 0 -717929 countRewards6 = 0 -717929 leafProbs6 = 50 -~~~ -717930 UP 1 -717930 1 0 -717950 DOWN 1 -717950 0 0 -717998 UP 1 -717998 1 0 -718006 DOWN 1 -718006 0 0 -718022 UP 1 -718022 1 0 -718060 DOWN 1 -718060 0 0 -718114 UP 1 -718114 1 0 -718126 DOWN 1 -718126 0 0 -718138 UP 1 -718138 1 0 -718174 DOWN 1 -718174 0 0 -718188 UP 1 -718188 1 0 -718206 DOWN 1 -718206 0 0 -718214 UP 1 -718214 1 0 -718224 DOWN 1 -718224 0 0 -718227 UP 1 -718227 1 0 -718288 DOWN 1 -718288 0 0 -730956 UP 1 -730956 1 0 -731381 DOWN 1 -731381 0 0 -734164 UP 2 -734164 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -734745 DOWN 2 -734745 0 0 -~~~ -734763 contingency = 1 -734763 trialThresh = 100 -734763 timeMaxOut = 30 -734763 timeElapsed = 2 -734764 totalPokes = 11 -734764 totalRewards = 5 -734765 countPokes1 = 5 -734765 countRewards1 = 3 -734765 leafProbs1 = 80 -734765 countPokes2 = 6 -734766 countRewards2 = 2 -734780 leafProbs2 = 20 -734780 countPokes3 = 0 -734781 countRewards3 = 0 -734781 leafProbs3 = 20 -734781 countPokes4 = 0 -734781 countRewards4 = 0 -734781 leafProbs4 = 50 -734782 countPokes5 = 0 -734782 countRewards5 = 0 -734783 leafProbs5 = 80 -734796 countPokes6 = 0 -734797 countRewards6 = 0 -734797 leafProbs6 = 50 -~~~ -734797 UP 2 -734797 2 0 -735089 DOWN 2 -735089 0 0 -735121 UP 2 -735121 2 0 -735145 DOWN 2 -735145 0 0 -745688 UP 3 -745688 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745711 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -745893 DOWN 3 -745893 0 256 -745903 UP 3 -745903 4 256 -~~~ -745921 contingency = 1 -745921 trialThresh = 100 -745921 timeMaxOut = 30 -745921 timeElapsed = 3 -745922 totalPokes = 12 -745922 totalRewards = 6 -745923 countPokes1 = 5 -745923 countRewards1 = 3 -745923 leafProbs1 = 80 -745923 countPokes2 = 6 -745924 countRewards2 = 2 -745938 leafProbs2 = 20 -745938 countPokes3 = 1 -745939 countRewards3 = 1 -745939 leafProbs3 = 20 -745939 countPokes4 = 0 -745939 countRewards4 = 0 -745940 leafProbs4 = 50 -745940 countPokes5 = 0 -745940 countRewards5 = 0 -745941 leafProbs5 = 80 -745954 countPokes6 = 0 -745955 countRewards6 = 0 -745955 leafProbs6 = 50 -~~~ -745973 DOWN 3 -745973 0 256 -745981 UP 3 -745981 4 256 -746011 4 0 -746051 DOWN 3 -746051 0 0 -746057 UP 3 -746057 4 0 -747569 DOWN 3 -747569 0 0 -747585 UP 3 -747585 4 0 -747670 DOWN 3 -747670 0 0 -747673 UP 3 -747673 4 0 -748651 DOWN 3 -748651 0 0 -748698 UP 3 -748698 4 0 -748709 DOWN 3 -748709 0 0 -754494 UP 4 -754494 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754521 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -754821 8 0 -757067 DOWN 4 -757067 0 0 -757085 UP 4 -757085 8 0 -~~~ -757097 contingency = 1 -757097 trialThresh = 100 -757098 timeMaxOut = 30 -757098 timeElapsed = 3 -757099 totalPokes = 13 -757099 totalRewards = 7 -757099 countPokes1 = 5 -757099 countRewards1 = 3 -757100 leafProbs1 = 80 -757100 countPokes2 = 6 -757101 countRewards2 = 2 -757114 leafProbs2 = 20 -757115 countPokes3 = 1 -757115 countRewards3 = 1 -757115 leafProbs3 = 20 -757115 countPokes4 = 1 -757116 countRewards4 = 1 -757116 leafProbs4 = 50 -757117 countPokes5 = 0 -757117 countRewards5 = 0 -757117 leafProbs5 = 80 -757131 countPokes6 = 0 -757131 countRewards6 = 0 -757131 leafProbs6 = 50 -~~~ -757163 DOWN 4 -757163 0 0 -759017 UP 4 -759017 8 0 -759032 DOWN 4 -759032 0 0 -759279 UP 4 -759279 8 0 -759298 DOWN 4 -759298 0 0 -761497 UP 3 -761497 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -761668 DOWN 3 -761668 0 0 -761685 UP 3 -761685 4 0 -~~~ -761690 contingency = 1 -761691 trialThresh = 100 -761691 timeMaxOut = 30 -761691 timeElapsed = 3 -761691 totalPokes = 14 -761692 totalRewards = 7 -761692 countPokes1 = 5 -761693 countRewards1 = 3 -761693 leafProbs1 = 80 -761693 countPokes2 = 6 -761693 countRewards2 = 2 -761707 leafProbs2 = 20 -761707 countPokes3 = 2 -761708 countRewards3 = 1 -761708 leafProbs3 = 20 -761709 countPokes4 = 1 -761709 countRewards4 = 1 -761709 leafProbs4 = 50 -761709 countPokes5 = 0 -761710 countRewards5 = 0 -761710 leafProbs5 = 80 -761724 countPokes6 = 0 -761724 countRewards6 = 0 -761725 leafProbs6 = 50 -~~~ -761756 DOWN 3 -761756 0 0 -761760 UP 3 -761760 4 0 -762060 DOWN 3 -762060 0 0 -767087 UP 6 -767087 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -767503 DOWN 6 -767503 0 0 -767517 UP 6 -767517 32 0 -767529 DOWN 6 -767529 0 0 -~~~ -767533 contingency = 1 -767534 trialThresh = 100 -767534 timeMaxOut = 30 -767535 timeElapsed = 3 -767535 totalPokes = 15 -767535 totalRewards = 7 -767535 countPokes1 = 5 -767535 countRewards1 = 3 -767536 leafProbs1 = 80 -767536 countPokes2 = 6 -767537 countRewards2 = 2 -767551 leafProbs2 = 20 -767551 countPokes3 = 2 -767551 countRewards3 = 1 -767551 leafProbs3 = 20 -767552 countPokes4 = 1 -767552 countRewards4 = 1 -767553 leafProbs4 = 50 -767553 countPokes5 = 0 -767553 countRewards5 = 0 -767553 leafProbs5 = 80 -767567 countPokes6 = 1 -767567 countRewards6 = 0 -767567 leafProbs6 = 50 -~~~ -767612 UP 6 -767612 32 0 -768156 DOWN 6 -768156 0 0 -771823 UP 5 -771823 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -773975 DOWN 5 -773975 0 0 -~~~ -773995 contingency = 1 -773995 trialThresh = 100 -773995 timeMaxOut = 30 -773995 timeElapsed = 3 -773996 totalPokes = 16 -773996 totalRewards = 7 -773997 countPokes1 = 5 -773997 countRewards1 = 3 -773997 leafProbs1 = 80 -773997 countPokes2 = 6 -773998 countRewards2 = 2 -774012 leafProbs2 = 20 -774012 countPokes3 = 2 -774013 countRewards3 = 1 -774013 leafProbs3 = 20 -774013 countPokes4 = 1 -774013 countRewards4 = 1 -774013 leafProbs4 = 50 -774014 countPokes5 = 1 -774014 countRewards5 = 0 -774015 leafProbs5 = 80 -774028 countPokes6 = 1 -774029 countRewards6 = 0 -774029 leafProbs6 = 50 -~~~ -774029 UP 5 -774029 16 0 -774091 DOWN 5 -774091 0 0 -774119 UP 5 -774119 16 0 -774414 DOWN 5 -774414 0 0 -778830 UP 6 -778830 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -779622 DOWN 6 -779622 0 0 -~~~ -779637 contingency = 1 -779637 trialThresh = 100 -779638 timeMaxOut = 30 -779638 timeElapsed = 4 -779639 totalPokes = 17 -779639 totalRewards = 7 -779639 countPokes1 = 5 -779639 countRewards1 = 3 -779640 leafProbs1 = 80 -779640 countPokes2 = 6 -779641 countRewards2 = 2 -779655 leafProbs2 = 20 -779655 countPokes3 = 2 -779655 countRewards3 = 1 -779655 leafProbs3 = 20 -779655 countPokes4 = 1 -779656 countRewards4 = 1 -779656 leafProbs4 = 50 -779657 countPokes5 = 1 -779657 countRewards5 = 0 -779657 leafProbs5 = 80 -779671 countPokes6 = 2 -779671 countRewards6 = 0 -779671 leafProbs6 = 50 -~~~ -788015 UP 2 -788015 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788051 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -788222 DOWN 2 -788222 0 128 -788235 UP 2 -788235 2 128 -~~~ -788247 contingency = 1 -788247 trialThresh = 100 -788248 timeMaxOut = 30 -788248 timeElapsed = 4 -788249 totalPokes = 18 -788249 totalRewards = 8 -788249 countPokes1 = 5 -788249 countRewards1 = 3 -788250 leafProbs1 = 80 -788250 countPokes2 = 7 -788251 countRewards2 = 3 -788264 leafProbs2 = 20 -788265 countPokes3 = 2 -788265 countRewards3 = 1 -788265 leafProbs3 = 20 -788265 countPokes4 = 1 -788266 countRewards4 = 1 -788266 leafProbs4 = 50 -788267 countPokes5 = 1 -788267 countRewards5 = 0 -788267 leafProbs5 = 80 -788281 countPokes6 = 2 -788281 countRewards6 = 0 -788281 leafProbs6 = 50 -~~~ -788308 DOWN 2 -788308 0 128 -788328 UP 2 -788328 2 128 -788351 2 0 -788998 DOWN 2 -788998 0 0 -789007 UP 2 -789007 2 0 -790383 DOWN 2 -790383 0 0 -794214 UP 1 -794214 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794248 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -794548 1 0 -795924 DOWN 1 -795924 0 0 -795934 UP 1 -795934 1 0 -~~~ -795954 contingency = 1 -795955 trialThresh = 100 -795955 timeMaxOut = 30 -795956 timeElapsed = 4 -795956 totalPokes = 19 -795956 totalRewards = 9 -795956 countPokes1 = 6 -795956 countRewards1 = 4 -795957 leafProbs1 = 80 -795957 countPokes2 = 7 -795958 countRewards2 = 3 -795972 leafProbs2 = 20 -795972 countPokes3 = 2 -795972 countRewards3 = 1 -795972 leafProbs3 = 20 -795973 countPokes4 = 1 -795973 countRewards4 = 1 -795974 leafProbs4 = 50 -795974 countPokes5 = 1 -795974 countRewards5 = 0 -795974 leafProbs5 = 80 -795988 countPokes6 = 2 -795988 countRewards6 = 0 -795989 leafProbs6 = 50 -~~~ -796836 DOWN 1 -796836 0 0 -796854 UP 1 -796854 1 0 -797387 DOWN 1 -797387 0 0 -797425 UP 1 -797425 1 0 -797444 DOWN 1 -797444 0 0 -800599 UP 2 -800599 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -800797 DOWN 2 -800797 0 0 -~~~ -800820 contingency = 1 -800821 trialThresh = 100 -800821 timeMaxOut = 30 -800822 timeElapsed = 4 -800822 totalPokes = 20 -800822 totalRewards = 9 -800822 countPokes1 = 6 -800823 countRewards1 = 4 -800823 leafProbs1 = 80 -800824 countPokes2 = 8 -800824 countRewards2 = 3 -800838 leafProbs2 = 20 -800838 countPokes3 = 2 -800838 countRewards3 = 1 -800839 leafProbs3 = 20 -800839 countPokes4 = 1 -800840 countRewards4 = 1 -800840 leafProbs4 = 50 -800840 countPokes5 = 1 -800840 countRewards5 = 0 -800840 leafProbs5 = 80 -800854 countPokes6 = 2 -800854 countRewards6 = 0 -800855 leafProbs6 = 50 -~~~ -800855 UP 2 -800855 2 0 -801028 DOWN 2 -801028 0 0 -801050 UP 2 -801050 2 0 -801110 DOWN 2 -801110 0 0 -815208 UP 1 -815208 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815240 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -815540 1 0 -815983 DOWN 1 -815983 0 0 -~~~ -815998 contingency = 1 -815998 trialThresh = 100 -815998 timeMaxOut = 30 -815998 timeElapsed = 4 -815999 totalPokes = 21 -815999 totalRewards = 10 -816000 countPokes1 = 7 -816000 countRewards1 = 5 -816000 leafProbs1 = 80 -816000 countPokes2 = 8 -816001 countRewards2 = 3 -816015 leafProbs2 = 20 -816015 countPokes3 = 2 -816016 countRewards3 = 1 -816016 leafProbs3 = 20 -816016 countPokes4 = 1 -816016 countRewards4 = 1 -816016 leafProbs4 = 50 -816017 countPokes5 = 1 -816017 countRewards5 = 0 -816018 leafProbs5 = 80 -816031 countPokes6 = 2 -816032 countRewards6 = 0 -816032 leafProbs6 = 50 -~~~ -816182 UP 1 -816182 1 0 -816244 DOWN 1 -816244 0 0 -820529 UP 2 -820529 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -820732 DOWN 2 -820732 0 0 -820740 UP 2 -820740 2 0 -~~~ -820756 contingency = 1 -820756 trialThresh = 100 -820756 timeMaxOut = 30 -820757 timeElapsed = 5 -820757 totalPokes = 22 -820757 totalRewards = 10 -820758 countPokes1 = 7 -820758 countRewards1 = 5 -820758 leafProbs1 = 80 -820758 countPokes2 = 9 -820759 countRewards2 = 3 -820773 leafProbs2 = 20 -820773 countPokes3 = 2 -820774 countRewards3 = 1 -820774 leafProbs3 = 20 -820774 countPokes4 = 1 -820774 countRewards4 = 1 -820775 leafProbs4 = 50 -820775 countPokes5 = 1 -820776 countRewards5 = 0 -820776 leafProbs5 = 80 -820790 countPokes6 = 2 -820790 countRewards6 = 0 -820790 leafProbs6 = 50 -~~~ -820831 DOWN 2 -820831 0 0 -820842 UP 2 -820842 2 0 -820922 DOWN 2 -820922 0 0 -858916 UP 2 -858916 2 0 -859194 DOWN 2 -859194 0 0 -881521 UP 2 -881521 2 0 -881707 DOWN 2 -881707 0 0 -881715 UP 2 -881715 2 0 -881796 DOWN 2 -881796 0 0 -881799 UP 2 -881799 2 0 -881984 DOWN 2 -881984 0 0 -888294 UP 1 -888294 1 0 -888300 DOWN 1 -888300 0 0 -888322 UP 1 -888322 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888331 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -888353 contingency = 1 -888353 trialThresh = 100 -888353 timeMaxOut = 30 -888353 timeElapsed = 6 -888354 totalPokes = 23 -888354 totalRewards = 11 -888355 countPokes1 = 8 -888355 countRewards1 = 6 -888355 leafProbs1 = 80 -888355 countPokes2 = 9 -888356 countRewards2 = 3 -888369 leafProbs2 = 20 -888370 countPokes3 = 2 -888370 countRewards3 = 1 -888371 leafProbs3 = 20 -888371 countPokes4 = 1 -888371 countRewards4 = 1 -888371 leafProbs4 = 50 -888372 countPokes5 = 1 -888372 countRewards5 = 0 -888373 leafProbs5 = 80 -888386 countPokes6 = 2 -888387 countRewards6 = 0 -888387 leafProbs6 = 50 -~~~ -888631 1 0 -888785 DOWN 1 -888785 0 0 -888807 UP 1 -888807 1 0 -888863 DOWN 1 -888863 0 0 -888865 UP 1 -888865 1 0 -890368 DOWN 1 -890368 0 0 -890380 UP 1 -890380 1 0 -891073 DOWN 1 -891073 0 0 -891091 UP 1 -891091 1 0 -891177 DOWN 1 -891177 0 0 -894715 UP 1 -894715 1 0 -894763 DOWN 1 -894763 0 0 -894782 UP 1 -894782 1 0 -894953 DOWN 1 -894953 0 0 -905320 UP 2 -905320 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -905777 DOWN 2 -905777 0 0 -~~~ -905796 contingency = 1 -905796 trialThresh = 100 -905796 timeMaxOut = 30 -905796 timeElapsed = 7 -905796 totalPokes = 24 -905797 totalRewards = 11 -905797 countPokes1 = 8 -905798 countRewards1 = 6 -905798 leafProbs1 = 80 -905798 countPokes2 = 10 -905798 countRewards2 = 3 -905812 leafProbs2 = 20 -905813 countPokes3 = 2 -905813 countRewards3 = 1 -905814 leafProbs3 = 20 -905814 countPokes4 = 1 -905814 countRewards4 = 1 -905814 leafProbs4 = 50 -905815 countPokes5 = 1 -905815 countRewards5 = 0 -905816 leafProbs5 = 80 -905829 countPokes6 = 2 -905830 countRewards6 = 0 -905830 leafProbs6 = 50 -~~~ -908740 UP 1 -908740 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -908766 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -909066 1 0 -909067 DOWN 1 -909067 0 0 -909079 UP 1 -909079 1 0 -~~~ -909107 contingency = 1 -909108 trialThresh = 100 -909108 timeMaxOut = 30 -909108 timeElapsed = 7 -909108 totalPokes = 25 -909109 totalRewards = 12 -909109 countPokes1 = 9 -909110 countRewards1 = 7 -909110 leafProbs1 = 80 -909110 countPokes2 = 10 -909110 countRewards2 = 3 -909124 leafProbs2 = 20 -909125 countPokes3 = 2 -909125 countRewards3 = 1 -909126 leafProbs3 = 20 -909126 countPokes4 = 1 -909126 countRewards4 = 1 -909126 leafProbs4 = 50 -909127 countPokes5 = 1 -909127 countRewards5 = 0 -909128 leafProbs5 = 80 -909141 countPokes6 = 2 -909142 countRewards6 = 0 -909142 leafProbs6 = 50 -~~~ -909154 DOWN 1 -909154 0 0 -909160 UP 1 -909160 1 0 -911404 DOWN 1 -911404 0 0 -911414 UP 1 -911414 1 0 -911764 DOWN 1 -911764 0 0 -911781 UP 1 -911781 1 0 -911996 DOWN 1 -911996 0 0 -912030 UP 1 -912030 1 0 -912190 DOWN 1 -912190 0 0 -912192 UP 1 -912192 1 0 -912439 DOWN 1 -912439 0 0 -912452 UP 1 -912452 1 0 -912496 DOWN 1 -912496 0 0 -926425 UP 1 -926425 1 0 -928889 DOWN 1 -928889 0 0 -931544 UP 2 -931544 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -931960 DOWN 2 -931960 0 0 -~~~ -931988 contingency = 1 -931988 trialThresh = 100 -931988 timeMaxOut = 30 -931989 timeElapsed = 7 -931989 totalPokes = 26 -931989 totalRewards = 12 -931990 countPokes1 = 9 -931990 countRewards1 = 7 -931990 leafProbs1 = 80 -931990 countPokes2 = 11 -931991 countRewards2 = 3 -932005 leafProbs2 = 20 -932005 countPokes3 = 2 -932006 countRewards3 = 1 -932006 leafProbs3 = 20 -932006 countPokes4 = 1 -932006 countRewards4 = 1 -932007 leafProbs4 = 50 -932007 countPokes5 = 1 -932008 countRewards5 = 0 -932008 leafProbs5 = 80 -932022 countPokes6 = 2 -932022 countRewards6 = 0 -932022 leafProbs6 = 50 -~~~ -943435 UP 1 -943435 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943472 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -943542 DOWN 1 -943542 0 64 -~~~ -943572 contingency = 1 -943573 trialThresh = 100 -943573 timeMaxOut = 30 -943574 timeElapsed = 8 -943574 totalPokes = 27 -943574 totalRewards = 13 -943574 countPokes1 = 10 -943575 countRewards1 = 8 -943575 leafProbs1 = 80 -943576 countPokes2 = 11 -943576 countRewards2 = 3 -943590 leafProbs2 = 20 -943590 countPokes3 = 2 -943590 countRewards3 = 1 -943591 leafProbs3 = 20 -943591 countPokes4 = 1 -943592 countRewards4 = 1 -943592 leafProbs4 = 50 -943592 countPokes5 = 1 -943592 countRewards5 = 0 -943592 leafProbs5 = 80 -943606 countPokes6 = 2 -943606 countRewards6 = 0 -943607 leafProbs6 = 50 -~~~ -943632 UP 1 -943632 1 64 -943772 1 0 -944058 DOWN 1 -944058 0 0 -944092 UP 1 -944092 1 0 -944120 DOWN 1 -944120 0 0 -944134 UP 1 -944134 1 0 -944208 DOWN 1 -944208 0 0 -944218 UP 1 -944218 1 0 -946546 DOWN 1 -946546 0 0 -946762 UP 1 -946762 1 0 -946818 DOWN 1 -946818 0 0 -946874 UP 1 -946874 1 0 -946900 DOWN 1 -946900 0 0 -950349 UP 2 -950349 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -950531 DOWN 2 -950531 0 0 -950550 UP 2 -950550 2 0 -~~~ -950552 contingency = 1 -950552 trialThresh = 100 -950552 timeMaxOut = 30 -950553 timeElapsed = 8 -950553 totalPokes = 28 -950554 totalRewards = 13 -950554 countPokes1 = 10 -950554 countRewards1 = 8 -950554 leafProbs1 = 80 -950555 countPokes2 = 12 -950555 countRewards2 = 3 -950569 leafProbs2 = 20 -950569 countPokes3 = 2 -950570 countRewards3 = 1 -950570 leafProbs3 = 20 -950570 countPokes4 = 1 -950570 countRewards4 = 1 -950571 leafProbs4 = 50 -950571 countPokes5 = 1 -950572 countRewards5 = 0 -950572 leafProbs5 = 80 -950586 countPokes6 = 2 -950586 countRewards6 = 0 -950586 leafProbs6 = 50 -~~~ -950646 DOWN 2 -950646 0 0 -950705 UP 2 -950705 2 0 -950708 DOWN 2 -950708 0 0 -959208 UP 4 -959208 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959246 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -959546 8 0 -961797 DOWN 4 -961797 0 0 -~~~ -961823 contingency = 1 -961824 trialThresh = 100 -961824 timeMaxOut = 30 -961825 timeElapsed = 8 -961825 totalPokes = 29 -961825 totalRewards = 14 -961825 countPokes1 = 10 -961825 countRewards1 = 8 -961826 leafProbs1 = 80 -961826 countPokes2 = 12 -961827 countRewards2 = 3 -961841 leafProbs2 = 20 -961841 countPokes3 = 2 -961841 countRewards3 = 1 -961841 leafProbs3 = 20 -961842 countPokes4 = 2 -961842 countRewards4 = 2 -961843 leafProbs4 = 50 -961843 countPokes5 = 1 -961843 countRewards5 = 0 -961843 leafProbs5 = 80 -961857 countPokes6 = 2 -961857 countRewards6 = 0 -961858 leafProbs6 = 50 -~~~ -965182 UP 3 -965182 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -965313 DOWN 3 -965313 0 0 -965324 UP 3 -965324 4 0 -~~~ -965339 contingency = 1 -965339 trialThresh = 100 -965339 timeMaxOut = 30 -965339 timeElapsed = 8 -965340 totalPokes = 30 -965340 totalRewards = 14 -965341 countPokes1 = 10 -965341 countRewards1 = 8 -965341 leafProbs1 = 80 -965341 countPokes2 = 12 -965342 countRewards2 = 3 -965356 leafProbs2 = 20 -965356 countPokes3 = 3 -965357 countRewards3 = 1 -965357 leafProbs3 = 20 -965357 countPokes4 = 2 -965357 countRewards4 = 2 -965358 leafProbs4 = 50 -965358 countPokes5 = 1 -965359 countRewards5 = 0 -965359 leafProbs5 = 80 -965373 countPokes6 = 2 -965373 countRewards6 = 0 -965373 leafProbs6 = 50 -~~~ -965693 DOWN 3 -965693 0 0 -965701 UP 3 -965701 4 0 -965805 DOWN 3 -965805 0 0 -965823 UP 3 -965823 4 0 -965874 DOWN 3 -965874 0 0 -965940 UP 3 -965940 4 0 -966111 DOWN 3 -966111 0 0 -966115 UP 3 -966115 4 0 -966200 DOWN 3 -966200 0 0 -975003 UP 2 -975003 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -975278 DOWN 2 -975278 0 0 -~~~ -975307 contingency = 1 -975307 trialThresh = 100 -975307 timeMaxOut = 30 -975307 timeElapsed = 8 -975307 totalPokes = 31 -975308 totalRewards = 14 -975308 countPokes1 = 10 -975309 countRewards1 = 8 -975309 leafProbs1 = 80 -975309 countPokes2 = 13 -975309 countRewards2 = 3 -975323 leafProbs2 = 20 -975324 countPokes3 = 3 -975324 countRewards3 = 1 -975325 leafProbs3 = 20 -975325 countPokes4 = 2 -975325 countRewards4 = 2 -975325 leafProbs4 = 50 -975326 countPokes5 = 1 -975326 countRewards5 = 0 -975327 leafProbs5 = 80 -975340 countPokes6 = 2 -975341 countRewards6 = 0 -975341 leafProbs6 = 50 -~~~ -975341 UP 2 -975341 2 0 -975454 DOWN 2 -975454 0 0 -978197 UP 1 -978197 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978220 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -978520 1 0 -978578 DOWN 1 -978578 0 0 -978580 UP 1 -978580 1 0 -~~~ -978602 contingency = 1 -978603 trialThresh = 100 -978603 timeMaxOut = 30 -978603 timeElapsed = 9 -978603 totalPokes = 32 -978603 totalRewards = 15 -978604 countPokes1 = 11 -978604 countRewards1 = 9 -978605 leafProbs1 = 80 -978605 countPokes2 = 13 -978605 countRewards2 = 3 -978619 leafProbs2 = 20 -978619 countPokes3 = 3 -978620 countRewards3 = 1 -978620 leafProbs3 = 20 -978621 countPokes4 = 2 -978621 countRewards4 = 2 -978621 leafProbs4 = 50 -978621 countPokes5 = 1 -978622 countRewards5 = 0 -978622 leafProbs5 = 80 -978636 countPokes6 = 2 -978636 countRewards6 = 0 -978637 leafProbs6 = 50 -~~~ -981127 DOWN 1 -981127 0 0 -981171 UP 1 -981171 1 0 -981285 DOWN 1 -981285 0 0 -1016676 UP 1 -1016676 1 0 -1016870 DOWN 1 -1016870 0 0 -1016896 UP 1 -1016896 1 0 -1016954 DOWN 1 -1016954 0 0 -1016984 UP 1 -1016984 1 0 -1017090 DOWN 1 -1017090 0 0 -1017104 UP 1 -1017104 1 0 -1017169 DOWN 1 -1017169 0 0 -1017200 UP 1 -1017200 1 0 -1017293 DOWN 1 -1017293 0 0 -1017334 UP 1 -1017334 1 0 -1017372 DOWN 1 -1017372 0 0 -1039650 UP 6 -1039650 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039680 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1039828 DOWN 6 -1039828 0 2048 -~~~ -1039845 contingency = 1 -1039846 trialThresh = 100 -1039846 timeMaxOut = 30 -1039846 timeElapsed = 10 -1039846 totalPokes = 33 -1039847 totalRewards = 16 -1039847 countPokes1 = 11 -1039848 countRewards1 = 9 -1039848 leafProbs1 = 80 -1039848 countPokes2 = 13 -1039862 countRewards2 = 3 -1039862 leafProbs2 = 20 -1039863 countPokes3 = 3 -1039863 countRewards3 = 1 -1039864 leafProbs3 = 20 -1039864 countPokes4 = 2 -1039864 countRewards4 = 2 -1039864 leafProbs4 = 50 -1039865 countPokes5 = 1 -1039865 countRewards5 = 0 -1039879 leafProbs5 = 80 -1039880 countPokes6 = 3 -1039880 countRewards6 = 1 -1039880 leafProbs6 = 50 -~~~ -1039880 UP 6 -1039880 32 2048 -1039980 32 0 -1042617 DOWN 6 -1042617 0 0 -1048037 UP 6 -1048037 32 0 -1048058 DOWN 6 -1048058 0 0 -1048078 UP 6 -1048078 32 0 -1050392 DOWN 6 -1050392 0 0 -1052484 UP 6 -1052484 32 0 -1052550 DOWN 6 -1052550 0 0 -1052787 UP 6 -1052787 32 0 -1052802 DOWN 6 -1052802 0 0 -1052824 UP 6 -1052824 32 0 -1052870 DOWN 6 -1052870 0 0 -1058451 UP 1 -1058451 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058475 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1058683 DOWN 1 -1058683 0 64 -1058702 UP 1 -1058702 1 64 -~~~ -1058711 contingency = 1 -1058711 trialThresh = 100 -1058712 timeMaxOut = 30 -1058712 timeElapsed = 11 -1058712 totalPokes = 34 -1058712 totalRewards = 17 -1058713 countPokes1 = 12 -1058713 countRewards1 = 10 -1058714 leafProbs1 = 80 -1058714 countPokes2 = 13 -1058728 countRewards2 = 3 -1058728 leafProbs2 = 20 -1058728 countPokes3 = 3 -1058729 countRewards3 = 1 -1058729 leafProbs3 = 20 -1058730 countPokes4 = 2 -1058730 countRewards4 = 2 -1058730 leafProbs4 = 50 -1058730 countPokes5 = 1 -1058731 countRewards5 = 0 -1058745 leafProbs5 = 80 -1058746 countPokes6 = 3 -1058746 countRewards6 = 1 -1058746 leafProbs6 = 50 -~~~ -1058774 1 0 -1058880 DOWN 1 -1058880 0 0 -1058882 UP 1 -1058882 1 0 -1061342 DOWN 1 -1061342 0 0 -1061345 UP 1 -1061345 1 0 -1061644 DOWN 1 -1061644 0 0 -1061646 UP 1 -1061646 1 0 -1061878 DOWN 1 -1061878 0 0 -1065248 UP 2 -1065248 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1065450 DOWN 2 -1065450 0 0 -1065468 UP 2 -1065468 2 0 -~~~ -1065471 contingency = 1 -1065472 trialThresh = 100 -1065472 timeMaxOut = 30 -1065472 timeElapsed = 11 -1065472 totalPokes = 35 -1065473 totalRewards = 17 -1065473 countPokes1 = 12 -1065474 countRewards1 = 10 -1065474 leafProbs1 = 80 -1065474 countPokes2 = 14 -1065488 countRewards2 = 3 -1065488 leafProbs2 = 20 -1065489 countPokes3 = 3 -1065489 countRewards3 = 1 -1065490 leafProbs3 = 20 -1065490 countPokes4 = 2 -1065490 countRewards4 = 2 -1065490 leafProbs4 = 50 -1065490 countPokes5 = 1 -1065491 countRewards5 = 0 -1065505 leafProbs5 = 80 -1065506 countPokes6 = 3 -1065506 countRewards6 = 1 -1065506 leafProbs6 = 50 -~~~ -1065546 DOWN 2 -1065546 0 0 -1065551 UP 2 -1065551 2 0 -1065740 DOWN 2 -1065740 0 0 -1071782 UP 1 -1071782 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1071812 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1072112 1 0 -1074108 DOWN 1 -1074108 0 0 -~~~ -1074121 contingency = 1 -1074121 trialThresh = 100 -1074122 timeMaxOut = 30 -1074122 timeElapsed = 11 -1074123 totalPokes = 36 -1074123 totalRewards = 18 -1074123 countPokes1 = 13 -1074123 countRewards1 = 11 -1074124 leafProbs1 = 80 -1074124 countPokes2 = 14 -1074138 countRewards2 = 3 -1074139 leafProbs2 = 20 -1074139 countPokes3 = 3 -1074139 countRewards3 = 1 -1074139 leafProbs3 = 20 -1074140 countPokes4 = 2 -1074140 countRewards4 = 2 -1074141 leafProbs4 = 50 -1074141 countPokes5 = 1 -1074141 countRewards5 = 0 -1074155 leafProbs5 = 80 -1074155 countPokes6 = 3 -1074156 countRewards6 = 1 -1074156 leafProbs6 = 50 -~~~ -1074157 UP 1 -1074157 1 0 -1074661 DOWN 1 -1074661 0 0 -1084721 UP 6 -1084721 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084745 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1084907 DOWN 6 -1084907 0 2048 -1084925 UP 6 -1084925 32 2048 -~~~ -1084927 contingency = 1 -1084927 trialThresh = 100 -1084927 timeMaxOut = 30 -1084927 timeElapsed = 11 -1084928 totalPokes = 37 -1084928 totalRewards = 19 -1084929 countPokes1 = 13 -1084929 countRewards1 = 11 -1084929 leafProbs1 = 80 -1084929 countPokes2 = 14 -1084943 countRewards2 = 3 -1084944 leafProbs2 = 20 -1084944 countPokes3 = 3 -1084945 countRewards3 = 1 -1084945 leafProbs3 = 20 -1084945 countPokes4 = 2 -1084945 countRewards4 = 2 -1084946 leafProbs4 = 50 -1084946 countPokes5 = 1 -1084947 countRewards5 = 0 -1084961 leafProbs5 = 80 -1084961 countPokes6 = 4 -1084961 countRewards6 = 2 -1084961 leafProbs6 = 50 -~~~ -1085045 32 0 -1087540 DOWN 6 -1087540 0 0 -1087555 UP 6 -1087555 32 0 -1087627 DOWN 6 -1087627 0 0 -1091622 UP 5 -1091622 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091651 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1091927 DOWN 5 -1091927 0 1024 -1091931 UP 5 -1091931 16 1024 -1091951 16 0 -~~~ -1091954 contingency = 1 -1091954 trialThresh = 100 -1091955 timeMaxOut = 30 -1091955 timeElapsed = 11 -1091955 totalPokes = 38 -1091955 totalRewards = 20 -1091956 countPokes1 = 13 -1091956 countRewards1 = 11 -1091957 leafProbs1 = 80 -1091957 countPokes2 = 14 -1091971 countRewards2 = 3 -1091971 leafProbs2 = 20 -1091971 countPokes3 = 3 -1091972 countRewards3 = 1 -1091972 leafProbs3 = 20 -1091973 countPokes4 = 2 -1091973 countRewards4 = 2 -1091973 leafProbs4 = 50 -1091973 countPokes5 = 2 -1091974 countRewards5 = 1 -1091988 leafProbs5 = 80 -1091988 countPokes6 = 4 -1091989 countRewards6 = 2 -1091989 leafProbs6 = 50 -~~~ -1094401 DOWN 5 -1094401 0 0 -1094411 UP 5 -1094411 16 0 -1094943 DOWN 5 -1094943 0 0 -1095158 UP 5 -1095158 16 0 -1095204 DOWN 5 -1095204 0 0 -1095249 UP 5 -1095249 16 0 -1095282 DOWN 5 -1095282 0 0 -1100739 UP 6 -1100739 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1100773 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1101073 32 0 -1101177 DOWN 6 -1101177 0 0 -~~~ -1101195 contingency = 1 -1101195 trialThresh = 100 -1101195 timeMaxOut = 30 -1101196 timeElapsed = 12 -1101196 totalPokes = 39 -1101197 totalRewards = 21 -1101197 countPokes1 = 13 -1101197 countRewards1 = 11 -1101197 leafProbs1 = 80 -1101197 countPokes2 = 14 -1101212 countRewards2 = 3 -1101212 leafProbs2 = 20 -1101213 countPokes3 = 3 -1101213 countRewards3 = 1 -1101213 leafProbs3 = 20 -1101213 countPokes4 = 2 -1101214 countRewards4 = 2 -1101214 leafProbs4 = 50 -1101215 countPokes5 = 2 -1101215 countRewards5 = 1 -1101229 leafProbs5 = 80 -1101229 countPokes6 = 5 -1101229 countRewards6 = 3 -1101230 leafProbs6 = 50 -~~~ -1101230 UP 6 -1101230 32 0 -1101263 DOWN 6 -1101263 0 0 -1101286 UP 6 -1101286 32 0 -1101352 DOWN 6 -1101352 0 0 -1101361 UP 6 -1101361 32 0 -1103083 DOWN 6 -1103083 0 0 -1106055 UP 6 -1106055 32 0 -1106197 DOWN 6 -1106197 0 0 -1113222 UP 4 -1113222 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113255 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1113555 8 0 -1115377 DOWN 4 -1115377 0 0 -1115387 UP 4 -1115387 8 0 -~~~ -1115402 contingency = 1 -1115403 trialThresh = 100 -1115403 timeMaxOut = 30 -1115403 timeElapsed = 12 -1115403 totalPokes = 40 -1115404 totalRewards = 22 -1115404 countPokes1 = 13 -1115405 countRewards1 = 11 -1115405 leafProbs1 = 80 -1115405 countPokes2 = 14 -1115419 countRewards2 = 3 -1115420 leafProbs2 = 20 -1115420 countPokes3 = 3 -1115421 countRewards3 = 1 -1115421 leafProbs3 = 20 -1115421 countPokes4 = 3 -1115421 countRewards4 = 3 -1115421 leafProbs4 = 50 -1115422 countPokes5 = 2 -1115422 countRewards5 = 1 -1115437 leafProbs5 = 80 -1115437 countPokes6 = 5 -1115437 countRewards6 = 3 -1115437 leafProbs6 = 50 -~~~ -1115714 DOWN 4 -1115714 0 0 -1115721 UP 4 -1115721 8 0 -1115806 DOWN 4 -1115806 0 0 -1121197 UP 3 -1121197 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1121315 DOWN 3 -1121315 0 0 -1121326 UP 3 -1121326 4 0 -~~~ -1121337 contingency = 1 -1121337 trialThresh = 100 -1121338 timeMaxOut = 30 -1121338 timeElapsed = 12 -1121339 totalPokes = 41 -1121339 totalRewards = 22 -1121339 countPokes1 = 13 -1121339 countRewards1 = 11 -1121340 leafProbs1 = 80 -1121340 countPokes2 = 14 -1121354 countRewards2 = 3 -1121355 leafProbs2 = 20 -1121355 countPokes3 = 4 -1121355 countRewards3 = 1 -1121355 leafProbs3 = 20 -1121356 countPokes4 = 3 -1121356 countRewards4 = 3 -1121357 leafProbs4 = 50 -1121357 countPokes5 = 2 -1121357 countRewards5 = 1 -1121371 leafProbs5 = 80 -1121371 countPokes6 = 5 -1121372 countRewards6 = 3 -1121372 leafProbs6 = 50 -~~~ -1121405 DOWN 3 -1121405 0 0 -1121409 UP 3 -1121409 4 0 -1121713 DOWN 3 -1121713 0 0 -1121746 UP 3 -1121746 4 0 -1121779 DOWN 3 -1121779 0 0 -1122115 UP 3 -1122115 4 0 -1122428 DOWN 3 -1122428 0 0 -1124279 UP 4 -1124279 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124312 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1124612 8 0 -1126487 DOWN 4 -1126487 0 0 -1126496 UP 4 -1126496 8 0 -~~~ -1126514 contingency = 1 -1126514 trialThresh = 100 -1126515 timeMaxOut = 30 -1126515 timeElapsed = 12 -1126515 totalPokes = 42 -1126515 totalRewards = 23 -1126516 countPokes1 = 13 -1126516 countRewards1 = 11 -1126517 leafProbs1 = 80 -1126517 countPokes2 = 14 -1126531 countRewards2 = 3 -1126531 leafProbs2 = 20 -1126531 countPokes3 = 4 -1126532 countRewards3 = 1 -1126532 leafProbs3 = 20 -1126533 countPokes4 = 4 -1126533 countRewards4 = 4 -1126533 leafProbs4 = 50 -1126533 countPokes5 = 2 -1126534 countRewards5 = 1 -1126548 leafProbs5 = 80 -1126548 countPokes6 = 5 -1126549 countRewards6 = 3 -1126549 leafProbs6 = 50 -~~~ -1126757 DOWN 4 -1126757 0 0 -1127867 UP 4 -1127867 8 0 -1127888 DOWN 4 -1127888 0 0 -1129110 UP 4 -1129110 8 0 -1129114 DOWN 4 -1129114 0 0 -1131757 UP 3 -1131757 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131784 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1131942 DOWN 3 -1131942 0 256 -~~~ -1131963 contingency = 1 -1131964 trialThresh = 100 -1131964 timeMaxOut = 30 -1131964 timeElapsed = 12 -1131964 totalPokes = 43 -1131965 totalRewards = 24 -1131965 countPokes1 = 13 -1131966 countRewards1 = 11 -1131966 leafProbs1 = 80 -1131966 countPokes2 = 14 -1131980 countRewards2 = 3 -1131980 leafProbs2 = 20 -1131981 countPokes3 = 5 -1131981 countRewards3 = 2 -1131982 leafProbs3 = 20 -1131982 countPokes4 = 4 -1131982 countRewards4 = 4 -1131982 leafProbs4 = 50 -1131983 countPokes5 = 2 -1131983 countRewards5 = 1 -1131997 leafProbs5 = 80 -1131998 countPokes6 = 5 -1131998 countRewards6 = 3 -1131998 leafProbs6 = 50 -~~~ -1131998 UP 3 -1131998 4 256 -1132033 DOWN 3 -1132033 0 256 -1132046 UP 3 -1132046 4 256 -1132084 4 0 -1132121 DOWN 3 -1132121 0 0 -1132128 UP 3 -1132128 4 0 -1134662 DOWN 3 -1134662 0 0 -1134678 UP 3 -1134678 4 0 -1134901 DOWN 3 -1134901 0 0 -1134922 UP 3 -1134922 4 0 -1134965 DOWN 3 -1134965 0 0 -1141754 UP 4 -1141754 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1142260 DOWN 4 -1142260 0 0 -~~~ -1142276 contingency = 1 -1142276 trialThresh = 100 -1142276 timeMaxOut = 30 -1142276 timeElapsed = 13 -1142277 totalPokes = 44 -1142277 totalRewards = 24 -1142278 countPokes1 = 13 -1142278 countRewards1 = 11 -1142278 leafProbs1 = 80 -1142278 countPokes2 = 14 -1142292 countRewards2 = 3 -1142293 leafProbs2 = 20 -1142293 countPokes3 = 5 -1142294 countRewards3 = 2 -1142294 leafProbs3 = 20 -1142294 countPokes4 = 5 -1142294 countRewards4 = 4 -1142295 leafProbs4 = 50 -1142295 countPokes5 = 2 -1142296 countRewards5 = 1 -1142310 leafProbs5 = 80 -1142310 countPokes6 = 5 -1142310 countRewards6 = 3 -1142310 leafProbs6 = 50 -~~~ -1147204 UP 3 -1147204 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1147337 DOWN 3 -1147337 0 0 -~~~ -1147360 contingency = 1 -1147361 trialThresh = 100 -1147361 timeMaxOut = 30 -1147362 timeElapsed = 13 -1147362 totalPokes = 45 -1147362 totalRewards = 24 -1147362 countPokes1 = 13 -1147363 countRewards1 = 11 -1147363 leafProbs1 = 80 -1147364 countPokes2 = 14 -1147378 countRewards2 = 3 -1147378 leafProbs2 = 20 -1147378 countPokes3 = 6 -1147378 countRewards3 = 2 -1147379 leafProbs3 = 20 -1147379 countPokes4 = 5 -1147380 countRewards4 = 4 -1147380 leafProbs4 = 50 -1147380 countPokes5 = 2 -1147380 countRewards5 = 1 -1147394 leafProbs5 = 80 -1147395 countPokes6 = 5 -1147395 countRewards6 = 3 -1147396 leafProbs6 = 50 -~~~ -1147396 UP 3 -1147396 4 0 -1147832 DOWN 3 -1147832 0 0 -1147852 UP 3 -1147852 4 0 -1147891 DOWN 3 -1147891 0 0 -1147950 UP 3 -1147950 4 0 -1148024 DOWN 3 -1148024 0 0 -1153956 UP 6 -1153956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1154543 DOWN 6 -1154542 0 0 -1154553 UP 6 -1154553 32 0 -~~~ -1154572 contingency = 1 -1154573 trialThresh = 100 -1154573 timeMaxOut = 30 -1154574 timeElapsed = 13 -1154574 totalPokes = 46 -1154574 totalRewards = 24 -1154574 countPokes1 = 13 -1154575 countRewards1 = 11 -1154575 leafProbs1 = 80 -1154576 countPokes2 = 14 -1154590 countRewards2 = 3 -1154590 leafProbs2 = 20 -1154590 countPokes3 = 6 -1154591 countRewards3 = 2 -1154591 leafProbs3 = 20 -1154592 countPokes4 = 5 -1154592 countRewards4 = 4 -1154592 leafProbs4 = 50 -1154592 countPokes5 = 2 -1154592 countRewards5 = 1 -1154607 leafProbs5 = 80 -1154607 countPokes6 = 6 -1154608 countRewards6 = 3 -1154608 leafProbs6 = 50 -~~~ -1154643 DOWN 6 -1154643 0 0 -1154689 UP 6 -1154689 32 0 -1155273 DOWN 6 -1155273 0 0 -1155288 UP 6 -1155288 32 0 -1155370 DOWN 6 -1155370 0 0 -1155373 UP 6 -1155373 32 0 -1155416 DOWN 6 -1155416 0 0 -1155422 UP 6 -1155422 32 0 -1155482 DOWN 6 -1155482 0 0 -1155496 UP 6 -1155496 32 0 -1155520 DOWN 6 -1155520 0 0 -1155535 UP 6 -1155535 32 0 -1155591 DOWN 6 -1155591 0 0 -1155663 UP 6 -1155663 32 0 -1155704 DOWN 6 -1155704 0 0 -1155768 UP 6 -1155768 32 0 -1155809 DOWN 6 -1155809 0 0 -1159406 UP 5 -1159406 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1159712 DOWN 5 -1159712 0 0 -~~~ -1159730 contingency = 1 -1159730 trialThresh = 100 -1159731 timeMaxOut = 30 -1159731 timeElapsed = 13 -1159732 totalPokes = 47 -1159732 totalRewards = 24 -1159732 countPokes1 = 13 -1159732 countRewards1 = 11 -1159733 leafProbs1 = 80 -1159733 countPokes2 = 14 -1159747 countRewards2 = 3 -1159748 leafProbs2 = 20 -1159748 countPokes3 = 6 -1159748 countRewards3 = 2 -1159748 leafProbs3 = 20 -1159749 countPokes4 = 5 -1159749 countRewards4 = 4 -1159750 leafProbs4 = 50 -1159750 countPokes5 = 3 -1159750 countRewards5 = 1 -1159764 leafProbs5 = 80 -1159764 countPokes6 = 6 -1159765 countRewards6 = 3 -1159765 leafProbs6 = 50 -~~~ -1159766 UP 5 -1159766 16 0 -1159956 DOWN 5 -1159956 0 0 -1160003 UP 5 -1160003 16 0 -1160194 DOWN 5 -1160194 0 0 -1165948 UP 6 -1165948 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1166093 DOWN 6 -1166093 0 0 -~~~ -1166118 contingency = 1 -1166118 trialThresh = 100 -1166118 timeMaxOut = 30 -1166118 timeElapsed = 13 -1166119 totalPokes = 48 -1166119 totalRewards = 24 -1166120 countPokes1 = 13 -1166120 countRewards1 = 11 -1166120 leafProbs1 = 80 -1166120 countPokes2 = 14 -1166135 countRewards2 = 3 -1166135 leafProbs2 = 20 -1166136 countPokes3 = 6 -1166136 countRewards3 = 2 -1166136 leafProbs3 = 20 -1166136 countPokes4 = 5 -1166136 countRewards4 = 4 -1166137 leafProbs4 = 50 -1166137 countPokes5 = 3 -1166138 countRewards5 = 1 -1166152 leafProbs5 = 80 -1166152 countPokes6 = 7 -1166152 countRewards6 = 3 -1166153 leafProbs6 = 50 -~~~ -1166153 UP 6 -1166153 32 0 -1166312 DOWN 6 -1166312 0 0 -1166352 UP 6 -1166352 32 0 -1166412 DOWN 6 -1166412 0 0 -1171718 UP 4 -1171718 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1171960 DOWN 4 -1171960 0 0 -1171982 UP 4 -1171982 8 0 -~~~ -1171994 contingency = 1 -1171994 trialThresh = 100 -1171994 timeMaxOut = 30 -1171995 timeElapsed = 13 -1171995 totalPokes = 49 -1171996 totalRewards = 24 -1171996 countPokes1 = 13 -1171996 countRewards1 = 11 -1171996 leafProbs1 = 80 -1171997 countPokes2 = 14 -1172011 countRewards2 = 3 -1172011 leafProbs2 = 20 -1172012 countPokes3 = 6 -1172012 countRewards3 = 2 -1172012 leafProbs3 = 20 -1172012 countPokes4 = 6 -1172013 countRewards4 = 4 -1172013 leafProbs4 = 50 -1172014 countPokes5 = 3 -1172014 countRewards5 = 1 -1172028 leafProbs5 = 80 -1172028 countPokes6 = 7 -1172028 countRewards6 = 3 -1172029 leafProbs6 = 50 -~~~ -1172288 DOWN 4 -1172288 0 0 -1173219 UP 4 -1173219 8 0 -1173514 DOWN 4 -1173514 0 0 -1177086 UP 3 -1177086 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1177282 DOWN 3 -1177282 0 0 -~~~ -1177304 contingency = 1 -1177304 trialThresh = 100 -1177304 timeMaxOut = 30 -1177304 timeElapsed = 13 -1177305 totalPokes = 50 -1177305 totalRewards = 24 -1177306 countPokes1 = 13 -1177306 countRewards1 = 11 -1177306 leafProbs1 = 80 -1177306 countPokes2 = 14 -1177320 countRewards2 = 3 -1177321 leafProbs2 = 20 -1177321 countPokes3 = 7 -1177322 countRewards3 = 2 -1177322 leafProbs3 = 20 -1177322 countPokes4 = 6 -1177322 countRewards4 = 4 -1177323 leafProbs4 = 50 -1177323 countPokes5 = 3 -1177324 countRewards5 = 1 -1177338 leafProbs5 = 80 -1177338 countPokes6 = 7 -1177338 countRewards6 = 3 -1177338 leafProbs6 = 50 -~~~ -1177339 UP 3 -1177339 4 0 -1177386 DOWN 3 -1177386 0 0 -1177394 UP 3 -1177394 4 0 -1178106 DOWN 3 -1178106 0 0 -1178113 UP 3 -1178113 4 0 -1178132 DOWN 3 -1178132 0 0 -1186869 UP 3 -1186869 4 0 -1187143 DOWN 3 -1187143 0 0 -1187147 UP 3 -1187147 4 0 -1187359 DOWN 3 -1187359 0 0 -1191221 UP 4 -1191221 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1191801 DOWN 4 -1191801 0 0 -~~~ -1191825 contingency = 1 -1191826 trialThresh = 100 -1191826 timeMaxOut = 30 -1191827 timeElapsed = 14 -1191827 totalPokes = 51 -1191827 totalRewards = 24 -1191827 countPokes1 = 13 -1191828 countRewards1 = 11 -1191828 leafProbs1 = 80 -1191829 countPokes2 = 14 -1191843 countRewards2 = 3 -1191843 leafProbs2 = 20 -1191843 countPokes3 = 7 -1191843 countRewards3 = 2 -1191844 leafProbs3 = 20 -1191844 countPokes4 = 7 -1191845 countRewards4 = 4 -1191845 leafProbs4 = 50 -1191845 countPokes5 = 3 -1191845 countRewards5 = 1 -1191860 leafProbs5 = 80 -1191860 countPokes6 = 7 -1191861 countRewards6 = 3 -1191861 leafProbs6 = 50 -~~~ -1191861 UP 4 -1191861 8 0 -1191879 DOWN 4 -1191879 0 0 -1191933 UP 4 -1191933 8 0 -1191985 DOWN 4 -1191985 0 0 -1192051 UP 4 -1192051 8 0 -1192160 DOWN 4 -1192160 0 0 -1194291 UP 3 -1194291 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1194479 DOWN 3 -1194479 0 0 -~~~ -1194505 contingency = 1 -1194505 trialThresh = 100 -1194505 timeMaxOut = 30 -1194505 timeElapsed = 14 -1194506 totalPokes = 52 -1194506 totalRewards = 24 -1194507 countPokes1 = 13 -1194507 countRewards1 = 11 -1194507 leafProbs1 = 80 -1194507 countPokes2 = 14 -1194522 countRewards2 = 3 -1194522 leafProbs2 = 20 -1194523 countPokes3 = 8 -1194523 countRewards3 = 2 -1194523 leafProbs3 = 20 -1194523 countPokes4 = 7 -1194523 countRewards4 = 4 -1194524 leafProbs4 = 50 -1194524 countPokes5 = 3 -1194525 countRewards5 = 1 -1194539 leafProbs5 = 80 -1194539 countPokes6 = 7 -1194539 countRewards6 = 3 -1194540 leafProbs6 = 50 -~~~ -1194540 UP 3 -1194540 4 0 -1194585 DOWN 3 -1194585 0 0 -1194591 UP 3 -1194591 4 0 -1195217 DOWN 3 -1195217 0 0 -1195228 UP 3 -1195228 4 0 -1195291 DOWN 3 -1195291 0 0 -1200633 UP 4 -1200633 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1201231 DOWN 4 -1201231 0 0 -1201253 UP 4 -1201253 8 0 -~~~ -1201257 contingency = 1 -1201257 trialThresh = 100 -1201257 timeMaxOut = 30 -1201258 timeElapsed = 14 -1201258 totalPokes = 53 -1201259 totalRewards = 24 -1201259 countPokes1 = 13 -1201259 countRewards1 = 11 -1201259 leafProbs1 = 80 -1201260 countPokes2 = 14 -1201274 countRewards2 = 3 -1201275 leafProbs2 = 20 -1201275 countPokes3 = 8 -1201275 countRewards3 = 2 -1201275 leafProbs3 = 20 -1201275 countPokes4 = 8 -1201276 countRewards4 = 4 -1201276 leafProbs4 = 50 -1201277 countPokes5 = 3 -1201277 countRewards5 = 1 -1201291 leafProbs5 = 80 -1201291 countPokes6 = 7 -1201291 countRewards6 = 3 -1201292 leafProbs6 = 50 -~~~ -1201625 DOWN 4 -1201625 0 0 -1201650 UP 4 -1201650 8 0 -1201851 DOWN 4 -1201851 0 0 -1206660 UP 1 -1206660 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1207087 DOWN 1 -1207087 0 0 -~~~ -1207109 contingency = 1 -1207109 trialThresh = 100 -1207109 timeMaxOut = 30 -1207110 timeElapsed = 14 -1207110 totalPokes = 54 -1207111 totalRewards = 24 -1207111 countPokes1 = 14 -1207111 countRewards1 = 11 -1207111 leafProbs1 = 80 -1207112 countPokes2 = 14 -1207126 countRewards2 = 3 -1207126 leafProbs2 = 20 -1207127 countPokes3 = 8 -1207127 countRewards3 = 2 -1207127 leafProbs3 = 20 -1207127 countPokes4 = 8 -1207128 countRewards4 = 4 -1207128 leafProbs4 = 50 -1207129 countPokes5 = 3 -1207129 countRewards5 = 1 -1207143 leafProbs5 = 80 -1207143 countPokes6 = 7 -1207143 countRewards6 = 3 -1207144 leafProbs6 = 50 -~~~ -1207832 UP 1 -1207832 1 0 -1207976 DOWN 1 -1207976 0 0 -1211269 UP 1 -1211269 1 0 -1211506 DOWN 1 -1211506 0 0 -1214204 UP 1 -1214204 1 0 -1214248 DOWN 1 -1214248 0 0 -1215744 UP 1 -1215744 1 0 -1215749 DOWN 1 -1215749 0 0 -1231125 UP 2 -1231125 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1231357 DOWN 2 -1231357 0 0 -1231367 UP 2 -1231367 2 0 -1231381 DOWN 2 -1231381 0 0 -~~~ -1231385 contingency = 1 -1231385 trialThresh = 100 -1231386 timeMaxOut = 30 -1231386 timeElapsed = 15 -1231387 totalPokes = 55 -1231387 totalRewards = 24 -1231387 countPokes1 = 14 -1231387 countRewards1 = 11 -1231388 leafProbs1 = 80 -1231388 countPokes2 = 15 -1231403 countRewards2 = 3 -1231403 leafProbs2 = 20 -1231403 countPokes3 = 8 -1231403 countRewards3 = 2 -1231403 leafProbs3 = 20 -1231404 countPokes4 = 8 -1231404 countRewards4 = 4 -1231405 leafProbs4 = 50 -1231405 countPokes5 = 3 -1231405 countRewards5 = 1 -1231419 leafProbs5 = 80 -1231420 countPokes6 = 7 -1231420 countRewards6 = 3 -1231420 leafProbs6 = 50 -~~~ -1231421 UP 2 -1231421 2 0 -1231469 DOWN 2 -1231469 0 0 -1231506 UP 2 -1231506 2 0 -1231616 DOWN 2 -1231616 0 0 -1231625 UP 2 -1231625 2 0 -1231663 DOWN 2 -1231663 0 0 -1231913 UP 2 -1231913 2 0 -1232013 DOWN 2 -1232013 0 0 -1239462 UP 1 -1239462 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239498 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1239797 1 0 -1239872 DOWN 1 -1239872 0 0 -~~~ -1239892 UP 1 -1239892 1 0 -1239893 contingency = 1 -1239893 trialThresh = 100 -1239893 timeMaxOut = 30 -1239893 timeElapsed = 15 -1239894 totalPokes = 56 -1239894 totalRewards = 25 -1239895 countPokes1 = 15 -1239895 countRewards1 = 12 -1239895 leafProbs1 = 80 -1239909 countPokes2 = 15 -1239909 countRewards2 = 3 -1239909 leafProbs2 = 20 -1239910 countPokes3 = 8 -1239910 countRewards3 = 2 -1239911 leafProbs3 = 20 -1239911 countPokes4 = 8 -1239911 countRewards4 = 4 -1239911 leafProbs4 = 50 -1239912 countPokes5 = 3 -1239926 countRewards5 = 1 -1239926 leafProbs5 = 80 -1239927 countPokes6 = 7 -1239927 countRewards6 = 3 -1239927 leafProbs6 = 50 -~~~ -1240294 DOWN 1 -1240294 0 0 -1240297 UP 1 -1240297 1 0 -1240754 DOWN 1 -1240754 0 0 -1240760 UP 1 -1240760 1 0 -1242282 DOWN 1 -1242282 0 0 -1242292 UP 1 -1242292 1 0 -1242905 DOWN 1 -1242905 0 0 -1242946 UP 1 -1242946 1 0 -1242962 DOWN 1 -1242962 0 0 -1250015 UP 1 -1250015 1 0 -1250317 DOWN 1 -1250317 0 0 -1250382 UP 1 -1250382 1 0 -1250384 DOWN 1 -1250384 0 0 -1251029 UP 1 -1251029 1 0 -1251094 DOWN 1 -1251094 0 0 -1254861 UP 1 -1254861 1 0 -1254980 DOWN 1 -1254980 0 0 -1255546 UP 1 -1255546 1 0 -1255704 DOWN 1 -1255704 0 0 -1261826 UP 1 -1261826 1 0 -1261854 DOWN 1 -1261854 0 0 -1263825 UP 2 -1263825 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1263852 2 128 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1264048 DOWN 2 -1264048 0 128 -1264055 UP 2 -1264055 2 128 -~~~ -1264075 contingency = 1 -1264075 trialThresh = 100 -1264076 timeMaxOut = 30 -1264076 timeElapsed = 16 -1264076 totalPokes = 57 -1264076 totalRewards = 26 -1264077 countPokes1 = 15 -1264077 countRewards1 = 12 -1264078 leafProbs1 = 80 -1264078 countPokes2 = 16 -1264092 countRewards2 = 4 -1264092 leafProbs2 = 20 -1264092 countPokes3 = 8 -1264093 countRewards3 = 2 -1264093 leafProbs3 = 20 -1264094 countPokes4 = 8 -1264094 countRewards4 = 4 -1264094 leafProbs4 = 50 -1264094 countPokes5 = 3 -1264095 countRewards5 = 1 -1264109 leafProbs5 = 80 -1264109 countPokes6 = 7 -1264110 countRewards6 = 3 -1264110 leafProbs6 = 50 -~~~ -1264152 2 0 -1264154 DOWN 2 -1264154 0 0 -1264170 UP 2 -1264170 2 0 -1264244 DOWN 2 -1264244 0 0 -1264260 UP 2 -1264260 2 0 -1264326 DOWN 2 -1264326 0 0 -1264334 UP 2 -1264334 2 0 -1264338 DOWN 2 -1264338 0 0 -1264367 UP 2 -1264367 2 0 -1264408 DOWN 2 -1264408 0 0 -1264415 UP 2 -1264415 2 0 -1264494 DOWN 2 -1264494 0 0 -1264500 UP 2 -1264500 2 0 -1265892 DOWN 2 -1265892 0 0 -1265905 UP 2 -1265905 2 0 -1266323 DOWN 2 -1266323 0 0 -1266326 UP 2 -1266326 2 0 -1266426 DOWN 2 -1266426 0 0 -1266473 UP 2 -1266473 2 0 -1266494 DOWN 2 -1266494 0 0 -1273432 UP 1 -1273432 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273459 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1273758 1 0 -1274032 DOWN 1 -1274032 0 0 -1274039 UP 1 -1274039 1 0 -~~~ -1274059 contingency = 1 -1274060 trialThresh = 100 -1274060 timeMaxOut = 30 -1274060 timeElapsed = 16 -1274060 totalPokes = 58 -1274061 totalRewards = 27 -1274061 countPokes1 = 16 -1274062 countRewards1 = 13 -1274062 leafProbs1 = 80 -1274062 countPokes2 = 16 -1274076 countRewards2 = 4 -1274076 leafProbs2 = 20 -1274077 countPokes3 = 8 -1274077 countRewards3 = 2 -1274078 leafProbs3 = 20 -1274078 countPokes4 = 8 -1274078 countRewards4 = 4 -1274078 leafProbs4 = 50 -1274079 countPokes5 = 3 -1274079 countRewards5 = 1 -1274094 leafProbs5 = 80 -1274094 countPokes6 = 7 -1274094 countRewards6 = 3 -1274094 leafProbs6 = 50 -~~~ -1276386 DOWN 1 -1276386 0 0 -1276404 UP 1 -1276404 1 0 -1276717 DOWN 1 -1276717 0 0 -1288662 UP 2 -1288662 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1289167 DOWN 2 -1289167 0 0 -~~~ -1289193 contingency = 1 -1289193 trialThresh = 100 -1289194 timeMaxOut = 30 -1289194 timeElapsed = 16 -1289194 totalPokes = 59 -1289194 totalRewards = 27 -1289195 countPokes1 = 16 -1289195 countRewards1 = 13 -1289196 leafProbs1 = 80 -1289196 countPokes2 = 17 -1289210 countRewards2 = 4 -1289210 leafProbs2 = 20 -1289210 countPokes3 = 8 -1289211 countRewards3 = 2 -1289211 leafProbs3 = 20 -1289212 countPokes4 = 8 -1289212 countRewards4 = 4 -1289212 leafProbs4 = 50 -1289212 countPokes5 = 3 -1289213 countRewards5 = 1 -1289227 leafProbs5 = 80 -1289227 countPokes6 = 7 -1289228 countRewards6 = 3 -1289228 leafProbs6 = 50 -~~~ -1295557 UP 1 -1295557 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295588 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1295748 DOWN 1 -1295748 0 64 -1295765 UP 1 -1295765 1 64 -~~~ -1295772 contingency = 1 -1295772 trialThresh = 100 -1295772 timeMaxOut = 30 -1295772 timeElapsed = 16 -1295772 totalPokes = 60 -1295773 totalRewards = 28 -1295773 countPokes1 = 17 -1295774 countRewards1 = 14 -1295774 leafProbs1 = 80 -1295774 countPokes2 = 17 -1295788 countRewards2 = 4 -1295789 leafProbs2 = 20 -1295789 countPokes3 = 8 -1295790 countRewards3 = 2 -1295790 leafProbs3 = 20 -1295790 countPokes4 = 8 -1295790 countRewards4 = 4 -1295791 leafProbs4 = 50 -1295791 countPokes5 = 3 -1295792 countRewards5 = 1 -1295806 leafProbs5 = 80 -1295806 countPokes6 = 7 -1295806 countRewards6 = 3 -1295806 leafProbs6 = 50 -~~~ -1295888 1 0 -1297809 DOWN 1 -1297809 0 0 -1300950 UP 1 -1300950 1 0 -1300961 DOWN 1 -1300961 0 0 -1303009 UP 1 -1303009 1 0 -1303026 DOWN 1 -1303026 0 0 -1309530 UP 1 -1309530 1 0 -1309548 DOWN 1 -1309548 0 0 -1309711 UP 1 -1309711 1 0 -1309715 DOWN 1 -1309715 0 0 -1309718 UP 1 -1309718 1 0 -1309722 DOWN 1 -1309722 0 0 -1313455 UP 1 -1313455 1 0 -1317834 DOWN 1 -1317834 0 0 -1318487 UP 1 -1318487 1 0 -1319146 DOWN 1 -1319146 0 0 -1323681 UP 2 -1323681 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1324191 DOWN 2 -1324191 0 0 -1324211 UP 2 -1324211 2 0 -~~~ -1324212 contingency = 1 -1324213 trialThresh = 100 -1324213 timeMaxOut = 30 -1324213 timeElapsed = 17 -1324213 totalPokes = 61 -1324214 totalRewards = 28 -1324214 countPokes1 = 17 -1324215 countRewards1 = 14 -1324215 leafProbs1 = 80 -1324215 countPokes2 = 18 -1324229 countRewards2 = 4 -1324229 leafProbs2 = 20 -1324230 countPokes3 = 8 -1324230 countRewards3 = 2 -1324231 leafProbs3 = 20 -1324231 countPokes4 = 8 -1324231 countRewards4 = 4 -1324231 leafProbs4 = 50 -1324232 countPokes5 = 3 -1324232 countRewards5 = 1 -1324247 leafProbs5 = 80 -1324247 countPokes6 = 7 -1324247 countRewards6 = 3 -1324247 leafProbs6 = 50 -~~~ -1324248 DOWN 2 -1324248 0 0 -1324255 UP 2 -1324255 2 0 -1324289 DOWN 2 -1324289 0 0 -1324304 UP 2 -1324304 2 0 -1324393 DOWN 2 -1324393 0 0 -1324402 UP 2 -1324402 2 0 -1324431 DOWN 2 -1324431 0 0 -1324433 UP 2 -1324433 2 0 -1324735 DOWN 2 -1324735 0 0 -1324753 UP 2 -1324753 2 0 -1324849 DOWN 2 -1324849 0 0 -1324893 UP 2 -1324893 2 0 -1324926 DOWN 2 -1324926 0 0 -1330640 UP 1 -1330640 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330664 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1330895 DOWN 1 -1330895 0 64 -1330909 UP 1 -1330909 1 64 -~~~ -1330925 contingency = 1 -1330926 trialThresh = 100 -1330926 timeMaxOut = 30 -1330926 timeElapsed = 17 -1330927 totalPokes = 62 -1330927 totalRewards = 29 -1330927 countPokes1 = 18 -1330927 countRewards1 = 15 -1330928 leafProbs1 = 80 -1330928 countPokes2 = 18 -1330943 countRewards2 = 4 -1330943 leafProbs2 = 20 -1330943 countPokes3 = 8 -1330943 countRewards3 = 2 -1330944 leafProbs3 = 20 -1330944 countPokes4 = 8 -1330945 countRewards4 = 4 -1330945 leafProbs4 = 50 -1330945 countPokes5 = 3 -1330945 countRewards5 = 1 -1330959 leafProbs5 = 80 -1330960 countPokes6 = 7 -1330960 countRewards6 = 3 -1330961 leafProbs6 = 50 -~~~ -1330963 1 0 -1330985 DOWN 1 -1330985 0 0 -1330989 UP 1 -1330989 1 0 -1333183 DOWN 1 -1333183 0 0 -1333194 UP 1 -1333194 1 0 -1333285 DOWN 1 -1333285 0 0 -1333299 UP 1 -1333299 1 0 -1333729 DOWN 1 -1333729 0 0 -1333763 UP 1 -1333763 1 0 -1333837 DOWN 1 -1333837 0 0 -1334076 UP 1 -1334076 1 0 -1334157 DOWN 1 -1334157 0 0 -1363910 UP 1 -1363910 1 0 -1363952 DOWN 1 -1363952 0 0 -1363982 UP 1 -1363982 1 0 -1364188 DOWN 1 -1364188 0 0 -1364372 UP 1 -1364372 1 0 -1364387 DOWN 1 -1364387 0 0 -1364428 UP 1 -1364428 1 0 -1364532 DOWN 1 -1364532 0 0 -1364798 UP 1 -1364798 1 0 -1365786 DOWN 1 -1365786 0 0 -1368358 UP 6 -1368358 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1368387 32 2048 -~~~ -~~~ -1368390 DOWN 6 -1368390 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -1368471 UP 6 -1368471 32 2048 -~~~ -1368503 contingency = 1 -1368503 trialThresh = 100 -1368504 timeMaxOut = 30 -1368504 timeElapsed = 18 -1368504 totalPokes = 63 -1368504 totalRewards = 30 -1368505 countPokes1 = 18 -1368505 countRewards1 = 15 -1368506 leafProbs1 = 80 -1368506 countPokes2 = 18 -1368520 countRewards2 = 4 -1368520 leafProbs2 = 20 -1368520 countPokes3 = 8 -1368521 countRewards3 = 2 -1368521 leafProbs3 = 20 -1368522 countPokes4 = 8 -1368522 countRewards4 = 4 -1368522 leafProbs4 = 50 -1368522 countPokes5 = 3 -1368523 countRewards5 = 1 -1368537 leafProbs5 = 80 -1368537 countPokes6 = 8 -1368538 countRewards6 = 4 -1368538 leafProbs6 = 50 -~~~ -1368538 DOWN 6 -1368538 0 2048 -1368581 UP 6 -1368581 32 2048 -1368687 32 0 -1371416 DOWN 6 -1371416 0 0 -1371448 UP 6 -1371448 32 0 -1371500 DOWN 6 -1371500 0 0 -1373649 UP 6 -1373649 32 0 -1373746 DOWN 6 -1373746 0 0 -1377612 UP 5 -1377612 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377642 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1377941 16 0 -1380619 DOWN 5 -1380619 0 0 -~~~ -1380643 contingency = 1 -1380643 trialThresh = 100 -1380644 timeMaxOut = 30 -1380644 timeElapsed = 19 -1380644 totalPokes = 64 -1380644 totalRewards = 31 -1380645 countPokes1 = 18 -1380645 countRewards1 = 15 -1380646 leafProbs1 = 80 -1380646 countPokes2 = 18 -1380660 countRewards2 = 4 -1380660 leafProbs2 = 20 -1380660 countPokes3 = 8 -1380661 countRewards3 = 2 -1380661 leafProbs3 = 20 -1380662 countPokes4 = 8 -1380662 countRewards4 = 4 -1380662 leafProbs4 = 50 -1380662 countPokes5 = 4 -1380663 countRewards5 = 2 -1380677 leafProbs5 = 80 -1380677 countPokes6 = 8 -1380678 countRewards6 = 4 -1380678 leafProbs6 = 50 -~~~ -1380678 UP 5 -1380678 16 0 -1380938 DOWN 5 -1380938 0 0 -1383956 UP 6 -1383956 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1384571 DOWN 6 -1384571 0 0 -~~~ -1384595 contingency = 1 -1384596 trialThresh = 100 -1384596 timeMaxOut = 30 -1384596 timeElapsed = 19 -1384596 totalPokes = 65 -1384596 totalRewards = 31 -1384597 countPokes1 = 18 -1384597 countRewards1 = 15 -1384598 leafProbs1 = 80 -1384598 countPokes2 = 18 -1384612 countRewards2 = 4 -1384612 leafProbs2 = 20 -1384613 countPokes3 = 8 -1384613 countRewards3 = 2 -1384614 leafProbs3 = 20 -1384614 countPokes4 = 8 -1384614 countRewards4 = 4 -1384614 leafProbs4 = 50 -1384614 countPokes5 = 4 -1384615 countRewards5 = 2 -1384629 leafProbs5 = 80 -1384630 countPokes6 = 9 -1384630 countRewards6 = 4 -1384630 leafProbs6 = 50 -~~~ -1384630 UP 6 -1384630 32 0 -1384690 DOWN 6 -1384690 0 0 -1389274 UP 5 -1389274 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389305 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1389566 DOWN 5 -1389566 0 1024 -1389590 UP 5 -1389590 16 1024 -~~~ -1389592 contingency = 1 -1389593 trialThresh = 100 -1389593 timeMaxOut = 30 -1389594 timeElapsed = 19 -1389594 totalPokes = 66 -1389594 totalRewards = 32 -1389594 countPokes1 = 18 -1389595 countRewards1 = 15 -1389595 leafProbs1 = 80 -1389596 countPokes2 = 18 -1389610 countRewards2 = 4 -1389610 leafProbs2 = 20 -1389610 countPokes3 = 8 -1389611 countRewards3 = 2 -1389611 leafProbs3 = 20 -1389612 countPokes4 = 8 -1389612 countRewards4 = 4 -1389612 leafProbs4 = 50 -1389612 countPokes5 = 5 -1389612 countRewards5 = 3 -1389627 leafProbs5 = 80 -1389627 countPokes6 = 9 -1389628 countRewards6 = 4 -1389628 leafProbs6 = 50 -~~~ -1389628 16 0 -1391076 DOWN 5 -1391076 0 0 -1391080 UP 5 -1391080 16 0 -1392035 DOWN 5 -1392035 0 0 -1392046 UP 5 -1392046 16 0 -1392136 DOWN 5 -1392136 0 0 -1392181 UP 5 -1392181 16 0 -1392250 DOWN 5 -1392250 0 0 -1392284 UP 5 -1392284 16 0 -1392368 DOWN 5 -1392368 0 0 -1392392 UP 5 -1392392 16 0 -1392465 DOWN 5 -1392465 0 0 -1395232 UP 6 -1395232 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395265 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1395565 32 0 -1398420 DOWN 6 -1398420 0 0 -1398438 UP 6 -1398438 32 0 -~~~ -1398451 contingency = 1 -1398452 trialThresh = 100 -1398452 timeMaxOut = 30 -1398452 timeElapsed = 19 -1398452 totalPokes = 67 -1398453 totalRewards = 33 -1398453 countPokes1 = 18 -1398454 countRewards1 = 15 -1398454 leafProbs1 = 80 -1398454 countPokes2 = 18 -1398468 countRewards2 = 4 -1398468 leafProbs2 = 20 -1398469 countPokes3 = 8 -1398469 countRewards3 = 2 -1398470 leafProbs3 = 20 -1398470 countPokes4 = 8 -1398470 countRewards4 = 4 -1398470 leafProbs4 = 50 -1398471 countPokes5 = 5 -1398471 countRewards5 = 3 -1398485 leafProbs5 = 80 -1398486 countPokes6 = 10 -1398486 countRewards6 = 5 -1398486 leafProbs6 = 50 -~~~ -1398548 DOWN 6 -1398548 0 0 -1398554 UP 6 -1398554 32 0 -1398647 DOWN 6 -1398647 0 0 -1406156 UP 1 -1406156 1 0 -1406166 DOWN 1 -1406166 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406185 0 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1406204 contingency = 1 -1406205 trialThresh = 100 -1406205 timeMaxOut = 30 -1406206 timeElapsed = 19 -1406206 totalPokes = 68 -1406206 totalRewards = 34 -1406206 countPokes1 = 19 -1406207 countRewards1 = 16 -1406207 leafProbs1 = 80 -1406208 countPokes2 = 18 -1406222 countRewards2 = 4 -1406222 leafProbs2 = 20 -1406222 countPokes3 = 8 -1406222 countRewards3 = 2 -1406223 leafProbs3 = 20 -1406223 countPokes4 = 8 -1406224 countRewards4 = 4 -1406224 leafProbs4 = 50 -1406224 countPokes5 = 5 -1406224 countRewards5 = 3 -1406238 leafProbs5 = 80 -1406239 countPokes6 = 10 -1406239 countRewards6 = 5 -1406240 leafProbs6 = 50 -~~~ -1406240 UP 1 -1406240 1 64 -1406256 DOWN 1 -1406256 0 64 -1406280 UP 1 -1406280 1 64 -1406485 1 0 -1409665 DOWN 1 -1409665 0 0 -1409685 UP 1 -1409685 1 0 -1409709 DOWN 1 -1409708 0 0 -1417163 UP 2 -1417163 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1417315 DOWN 2 -1417315 0 0 -1417319 UP 2 -1417319 2 0 -~~~ -1417337 contingency = 1 -1417337 trialThresh = 100 -1417337 timeMaxOut = 30 -1417337 timeElapsed = 19 -1417337 totalPokes = 69 -1417338 totalRewards = 34 -1417338 countPokes1 = 19 -1417339 countRewards1 = 16 -1417339 leafProbs1 = 80 -1417339 countPokes2 = 19 -1417353 countRewards2 = 4 -1417354 leafProbs2 = 20 -1417354 countPokes3 = 8 -1417355 countRewards3 = 2 -1417355 leafProbs3 = 20 -1417355 countPokes4 = 8 -1417355 countRewards4 = 4 -1417356 leafProbs4 = 50 -1417356 countPokes5 = 5 -1417356 countRewards5 = 3 -1417371 leafProbs5 = 80 -1417371 countPokes6 = 10 -1417371 countRewards6 = 5 -1417371 leafProbs6 = 50 -~~~ -1417517 DOWN 2 -1417517 0 0 -1425199 UP 1 -1425199 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425232 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1425531 1 0 -1425628 DOWN 1 -1425628 0 0 -1425630 UP 1 -1425630 1 0 -~~~ -1425642 contingency = 1 -1425642 trialThresh = 100 -1425643 timeMaxOut = 30 -1425643 timeElapsed = 20 -1425643 totalPokes = 70 -1425643 totalRewards = 35 -1425644 countPokes1 = 20 -1425644 countRewards1 = 17 -1425645 leafProbs1 = 80 -1425645 countPokes2 = 19 -1425659 countRewards2 = 4 -1425659 leafProbs2 = 20 -1425659 countPokes3 = 8 -1425660 countRewards3 = 2 -1425660 leafProbs3 = 20 -1425661 countPokes4 = 8 -1425661 countRewards4 = 4 -1425661 leafProbs4 = 50 -1425661 countPokes5 = 5 -1425662 countRewards5 = 3 -1425676 leafProbs5 = 80 -1425676 countPokes6 = 10 -1425677 countRewards6 = 5 -1425677 leafProbs6 = 50 -~~~ -1428095 DOWN 1 -1428095 0 0 -1436386 UP 1 -1436386 1 0 -1436553 DOWN 1 -1436553 0 0 -1436573 UP 1 -1436573 1 0 -1436757 DOWN 1 -1436757 0 0 -1439165 UP 1 -1439165 1 0 -1439433 DOWN 1 -1439433 0 0 -1439563 UP 1 -1439563 1 0 -1439677 DOWN 1 -1439677 0 0 -1457845 UP 6 -1457845 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1458384 DOWN 6 -1458384 0 0 -~~~ -1458413 contingency = 1 -1458413 trialThresh = 100 -1458413 timeMaxOut = 30 -1458414 timeElapsed = 20 -1458414 totalPokes = 71 -1458415 totalRewards = 35 -1458415 countPokes1 = 20 -1458415 countRewards1 = 17 -1458415 leafProbs1 = 80 -1458416 countPokes2 = 19 -1458430 countRewards2 = 4 -1458431 leafProbs2 = 20 -1458431 countPokes3 = 8 -1458431 countRewards3 = 2 -1458431 leafProbs3 = 20 -1458431 countPokes4 = 8 -1458432 countRewards4 = 4 -1458432 leafProbs4 = 50 -1458433 countPokes5 = 5 -1458433 countRewards5 = 3 -1458447 leafProbs5 = 80 -1458447 countPokes6 = 11 -1458448 countRewards6 = 5 -1458448 leafProbs6 = 50 -~~~ -1463182 UP 4 -1463182 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463207 8 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1463507 8 0 -1465068 DOWN 4 -1465068 0 0 -1465078 UP 4 -1465078 8 0 -~~~ -1465080 contingency = 1 -1465080 trialThresh = 100 -1465081 timeMaxOut = 30 -1465081 timeElapsed = 21 -1465082 totalPokes = 72 -1465082 totalRewards = 36 -1465082 countPokes1 = 20 -1465082 countRewards1 = 17 -1465083 leafProbs1 = 80 -1465083 countPokes2 = 19 -1465097 countRewards2 = 4 -1465098 leafProbs2 = 20 -1465098 countPokes3 = 8 -1465098 countRewards3 = 2 -1465098 leafProbs3 = 20 -1465099 countPokes4 = 9 -1465099 countRewards4 = 5 -1465100 leafProbs4 = 50 -1465100 countPokes5 = 5 -1465100 countRewards5 = 3 -1465114 leafProbs5 = 80 -1465114 countPokes6 = 11 -1465115 countRewards6 = 5 -1465115 leafProbs6 = 50 -~~~ -1465910 DOWN 4 -1465910 0 0 -1465932 UP 4 -1465932 8 0 -1465982 DOWN 4 -1465982 0 0 -1469977 UP 3 -1469977 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1470102 DOWN 3 -1470102 0 0 -1470106 UP 3 -1470106 4 0 -~~~ -1470131 contingency = 1 -1470131 trialThresh = 100 -1470132 timeMaxOut = 30 -1470132 timeElapsed = 21 -1470132 totalPokes = 73 -1470132 totalRewards = 36 -1470133 countPokes1 = 20 -1470133 countRewards1 = 17 -1470134 leafProbs1 = 80 -1470134 countPokes2 = 19 -1470148 countRewards2 = 4 -1470148 leafProbs2 = 20 -1470148 countPokes3 = 9 -1470149 countRewards3 = 2 -1470149 leafProbs3 = 20 -1470150 countPokes4 = 9 -1470150 countRewards4 = 5 -1470150 leafProbs4 = 50 -1470150 countPokes5 = 5 -1470151 countRewards5 = 3 -1470165 leafProbs5 = 80 -1470166 countPokes6 = 11 -1470166 countRewards6 = 5 -1470166 leafProbs6 = 50 -~~~ -1470412 DOWN 3 -1470412 0 0 -1470744 UP 3 -1470744 4 0 -1470804 DOWN 3 -1470804 0 0 -1470988 UP 3 -1470988 4 0 -1471230 DOWN 3 -1471230 0 0 -1471241 UP 3 -1471241 4 0 -1471517 DOWN 3 -1471517 0 0 -1487864 UP 1 -1487864 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1487894 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1488033 DOWN 1 -1488033 0 64 -~~~ -1488052 contingency = 1 -1488052 trialThresh = 100 -1488052 timeMaxOut = 30 -1488053 timeElapsed = 21 -1488053 totalPokes = 74 -1488054 totalRewards = 37 -1488054 countPokes1 = 21 -1488054 countRewards1 = 18 -1488054 leafProbs1 = 80 -1488055 countPokes2 = 19 -1488069 countRewards2 = 4 -1488069 leafProbs2 = 20 -1488070 countPokes3 = 9 -1488070 countRewards3 = 2 -1488070 leafProbs3 = 20 -1488070 countPokes4 = 9 -1488071 countRewards4 = 5 -1488071 leafProbs4 = 50 -1488072 countPokes5 = 5 -1488072 countRewards5 = 3 -1488086 leafProbs5 = 80 -1488086 countPokes6 = 11 -1488086 countRewards6 = 5 -1488087 leafProbs6 = 50 -~~~ -1488088 UP 1 -1488087 1 64 -1488125 DOWN 1 -1488125 0 64 -1488134 UP 1 -1488134 1 64 -1488194 1 0 -1488215 DOWN 1 -1488215 0 0 -1488224 UP 1 -1488224 1 0 -1490974 DOWN 1 -1490974 0 0 -1509584 UP 1 -1509584 1 0 -1509649 DOWN 1 -1509649 0 0 -1518425 UP 1 -1518425 1 0 -1518702 DOWN 1 -1518702 0 0 -1546275 UP 1 -1546275 1 0 -1546302 DOWN 1 -1546302 0 0 -1546606 UP 1 -1546606 1 0 -1548522 DOWN 1 -1548522 0 0 -1573975 UP 1 -1573975 1 0 -1573983 DOWN 1 -1573983 0 0 -1574029 UP 1 -1574029 1 0 -1574135 DOWN 1 -1574135 0 0 -1574191 UP 1 -1574191 1 0 -1574205 DOWN 1 -1574205 0 0 -1574431 UP 1 -1574431 1 0 -1574458 DOWN 1 -1574458 0 0 -1574699 UP 1 -1574699 1 0 -1574740 DOWN 1 -1574740 0 0 -1574977 UP 1 -1574977 1 0 -1575446 DOWN 1 -1575446 0 0 -1575945 UP 1 -1575945 1 0 -1575990 DOWN 1 -1575990 0 0 -1576114 UP 1 -1576114 1 0 -1578288 DOWN 1 -1578288 0 0 -1578320 UP 1 -1578320 1 0 -1578472 DOWN 1 -1578472 0 0 -1579059 UP 1 -1579059 1 0 -1580865 DOWN 1 -1580865 0 0 -1581494 UP 1 -1581494 1 0 -1581933 DOWN 1 -1581933 0 0 -1584793 UP 2 -1584793 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1585028 DOWN 2 -1585028 0 0 -~~~ -1585042 contingency = 1 -1585042 trialThresh = 100 -1585043 timeMaxOut = 30 -1585043 timeElapsed = 24 -1585044 totalPokes = 75 -1585044 totalRewards = 37 -1585044 countPokes1 = 21 -1585044 countRewards1 = 18 -1585045 leafProbs1 = 80 -1585045 countPokes2 = 20 -1585059 countRewards2 = 4 -1585060 leafProbs2 = 20 -1585060 countPokes3 = 9 -1585060 countRewards3 = 2 -1585060 leafProbs3 = 20 -1585061 countPokes4 = 9 -1585061 countRewards4 = 5 -1585062 leafProbs4 = 50 -1585062 countPokes5 = 5 -1585062 countRewards5 = 3 -1585076 leafProbs5 = 80 -1585076 countPokes6 = 11 -1585077 countRewards6 = 5 -1585077 leafProbs6 = 50 -~~~ -1585078 UP 2 -1585078 2 0 -1585135 DOWN 2 -1585135 0 0 -1585165 UP 2 -1585165 2 0 -1585252 DOWN 2 -1585252 0 0 -1585263 UP 2 -1585263 2 0 -1585596 DOWN 2 -1585596 0 0 -1585618 UP 2 -1585618 2 0 -1585701 DOWN 2 -1585701 0 0 -1596554 UP 1 -1596554 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596579 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1596842 DOWN 1 -1596842 0 64 -1596868 UP 1 -1596868 1 64 -~~~ -1596872 contingency = 1 -1596873 trialThresh = 100 -1596873 timeMaxOut = 30 -1596874 timeElapsed = 24 -1596874 totalPokes = 76 -1596874 totalRewards = 38 -1596874 countPokes1 = 22 -1596875 countRewards1 = 19 -1596875 leafProbs1 = 80 -1596876 countPokes2 = 20 -1596890 countRewards2 = 4 -1596890 leafProbs2 = 20 -1596890 countPokes3 = 9 -1596891 countRewards3 = 2 -1596891 leafProbs3 = 20 -1596891 countPokes4 = 9 -1596892 countRewards4 = 5 -1596892 leafProbs4 = 50 -1596892 countPokes5 = 5 -1596892 countRewards5 = 3 -1596907 leafProbs5 = 80 -1596907 countPokes6 = 11 -1596908 countRewards6 = 5 -1596908 leafProbs6 = 50 -~~~ -1596908 1 0 -1597552 DOWN 1 -1597552 0 0 -1597562 UP 1 -1597562 1 0 -1599590 DOWN 1 -1599590 0 0 -1599603 UP 1 -1599603 1 0 -1599930 DOWN 1 -1599930 0 0 -1599949 UP 1 -1599949 1 0 -1600040 DOWN 1 -1600040 0 0 -1600082 UP 1 -1600082 1 0 -1600148 DOWN 1 -1600148 0 0 -1621420 UP 3 -1621420 4 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621446 4 256 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1621516 DOWN 3 -1621516 0 256 -1621541 UP 3 -1621541 4 256 -~~~ -1621544 contingency = 1 -1621544 trialThresh = 100 -1621544 timeMaxOut = 30 -1621544 timeElapsed = 25 -1621545 totalPokes = 77 -1621545 totalRewards = 39 -1621546 countPokes1 = 22 -1621546 countRewards1 = 19 -1621546 leafProbs1 = 80 -1621546 countPokes2 = 20 -1621561 countRewards2 = 4 -1621561 leafProbs2 = 20 -1621562 countPokes3 = 10 -1621562 countRewards3 = 3 -1621562 leafProbs3 = 20 -1621562 countPokes4 = 9 -1621563 countRewards4 = 5 -1621563 leafProbs4 = 50 -1621564 countPokes5 = 5 -1621564 countRewards5 = 3 -1621577 leafProbs5 = 80 -1621578 countPokes6 = 11 -1621578 countRewards6 = 5 -1621578 leafProbs6 = 50 -~~~ -1621595 DOWN 3 -1621595 0 256 -1621605 UP 3 -1621605 4 256 -1621746 4 0 -1624916 DOWN 3 -1624916 0 0 -1624949 UP 3 -1624949 4 0 -1624966 DOWN 3 -1624966 0 0 -1627332 UP 4 -1627332 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1627640 DOWN 4 -1627640 0 0 -~~~ -1627661 contingency = 1 -1627661 trialThresh = 100 -1627662 timeMaxOut = 30 -1627662 timeElapsed = 25 -1627662 totalPokes = 78 -1627662 totalRewards = 39 -1627663 countPokes1 = 22 -1627663 countRewards1 = 19 -1627663 leafProbs1 = 80 -1627664 countPokes2 = 20 -1627678 countRewards2 = 4 -1627678 leafProbs2 = 20 -1627678 countPokes3 = 10 -1627679 countRewards3 = 3 -1627679 leafProbs3 = 20 -1627680 countPokes4 = 10 -1627680 countRewards4 = 5 -1627680 leafProbs4 = 50 -1627680 countPokes5 = 5 -1627681 countRewards5 = 3 -1627694 leafProbs5 = 80 -1627694 countPokes6 = 11 -1627695 countRewards6 = 5 -1627695 leafProbs6 = 50 -~~~ -1632671 UP 6 -1632671 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1632929 DOWN 6 -1632928 0 0 -~~~ -1632951 contingency = 1 -1632951 trialThresh = 100 -1632951 timeMaxOut = 30 -1632951 timeElapsed = 25 -1632952 totalPokes = 79 -1632952 totalRewards = 39 -1632953 countPokes1 = 22 -1632953 countRewards1 = 19 -1632953 leafProbs1 = 80 -1632953 countPokes2 = 20 -1632967 countRewards2 = 4 -1632968 leafProbs2 = 20 -1632968 countPokes3 = 10 -1632969 countRewards3 = 3 -1632969 leafProbs3 = 20 -1632969 countPokes4 = 10 -1632969 countRewards4 = 5 -1632970 leafProbs4 = 50 -1632970 countPokes5 = 5 -1632971 countRewards5 = 3 -1632984 leafProbs5 = 80 -1632984 countPokes6 = 12 -1632985 countRewards6 = 5 -1632985 leafProbs6 = 50 -~~~ -1632985 UP 6 -1632985 32 0 -1633433 DOWN 6 -1633433 0 0 -1656329 UP 5 -1656329 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1656549 DOWN 5 -1656549 0 0 -1656561 UP 5 -1656561 16 0 -~~~ -1656577 contingency = 1 -1656577 trialThresh = 100 -1656577 timeMaxOut = 30 -1656578 timeElapsed = 25 -1656578 totalPokes = 80 -1656579 totalRewards = 39 -1656579 countPokes1 = 22 -1656579 countRewards1 = 19 -1656579 leafProbs1 = 80 -1656580 countPokes2 = 20 -1656594 countRewards2 = 4 -1656594 leafProbs2 = 20 -1656595 countPokes3 = 10 -1656595 countRewards3 = 3 -1656595 leafProbs3 = 20 -1656595 countPokes4 = 10 -1656596 countRewards4 = 5 -1656596 leafProbs4 = 50 -1656597 countPokes5 = 6 -1656597 countRewards5 = 3 -1656611 leafProbs5 = 80 -1656611 countPokes6 = 12 -1656611 countRewards6 = 5 -1656611 leafProbs6 = 50 -~~~ -1656768 DOWN 5 -1656768 0 0 -1656800 UP 5 -1656800 16 0 -1656865 DOWN 5 -1656865 0 0 -1657065 UP 5 -1657065 16 0 -1657198 DOWN 5 -1657198 0 0 -1657390 UP 5 -1657390 16 0 -1657589 DOWN 5 -1657589 0 0 -1665403 UP 6 -1665403 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1665845 DOWN 6 -1665845 0 0 -~~~ -1665871 contingency = 1 -1665871 trialThresh = 100 -1665871 timeMaxOut = 30 -1665871 timeElapsed = 26 -1665872 totalPokes = 81 -1665872 totalRewards = 39 -1665873 countPokes1 = 22 -1665873 countRewards1 = 19 -1665873 leafProbs1 = 80 -1665873 countPokes2 = 20 -1665888 countRewards2 = 4 -1665888 leafProbs2 = 20 -1665889 countPokes3 = 10 -1665889 countRewards3 = 3 -1665889 leafProbs3 = 20 -1665889 countPokes4 = 10 -1665889 countRewards4 = 5 -1665890 leafProbs4 = 50 -1665890 countPokes5 = 6 -1665891 countRewards5 = 3 -1665904 leafProbs5 = 80 -1665905 countPokes6 = 13 -1665905 countRewards6 = 5 -1665905 leafProbs6 = 50 -~~~ -1669113 UP 6 -1669113 32 0 -1669383 DOWN 6 -1669383 0 0 -1675641 UP 6 -1675641 32 0 -1675761 DOWN 6 -1675761 0 0 -1690033 UP 5 -1690033 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690072 16 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1690281 DOWN 5 -1690281 0 1024 -1690303 UP 5 -1690303 16 1024 -~~~ -1690307 contingency = 1 -1690307 trialThresh = 100 -1690308 timeMaxOut = 30 -1690308 timeElapsed = 26 -1690308 totalPokes = 82 -1690308 totalRewards = 40 -1690309 countPokes1 = 22 -1690309 countRewards1 = 19 -1690310 leafProbs1 = 80 -1690310 countPokes2 = 20 -1690324 countRewards2 = 4 -1690324 leafProbs2 = 20 -1690324 countPokes3 = 10 -1690325 countRewards3 = 3 -1690325 leafProbs3 = 20 -1690326 countPokes4 = 10 -1690326 countRewards4 = 5 -1690326 leafProbs4 = 50 -1690326 countPokes5 = 7 -1690327 countRewards5 = 4 -1690340 leafProbs5 = 80 -1690340 countPokes6 = 13 -1690341 countRewards6 = 5 -1690341 leafProbs6 = 50 -~~~ -1690372 16 0 -1692550 DOWN 5 -1692550 0 0 -1692566 UP 5 -1692566 16 0 -1692648 DOWN 5 -1692648 0 0 -1692660 UP 5 -1692660 16 0 -1692974 DOWN 5 -1692974 0 0 -1692980 UP 5 -1692980 16 0 -1693067 DOWN 5 -1693067 0 0 -1697581 UP 6 -1697581 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697616 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1697849 DOWN 6 -1697849 0 2048 -~~~ -1697876 contingency = 1 -1697877 trialThresh = 100 -1697877 timeMaxOut = 30 -1697878 timeElapsed = 26 -1697878 totalPokes = 83 -1697878 totalRewards = 41 -1697878 countPokes1 = 22 -1697879 countRewards1 = 19 -1697879 leafProbs1 = 80 -1697880 countPokes2 = 20 -1697894 countRewards2 = 4 -1697894 leafProbs2 = 20 -1697894 countPokes3 = 10 -1697895 countRewards3 = 3 -1697895 leafProbs3 = 20 -1697896 countPokes4 = 10 -1697896 countRewards4 = 5 -1697896 leafProbs4 = 50 -1697896 countPokes5 = 7 -1697897 countRewards5 = 4 -1697910 leafProbs5 = 80 -1697910 countPokes6 = 14 -1697911 countRewards6 = 6 -1697911 leafProbs6 = 50 -~~~ -1697912 UP 6 -1697912 32 2048 -1697916 32 0 -1701074 DOWN 6 -1701074 0 0 -1701121 UP 6 -1701121 32 0 -1701172 DOWN 6 -1701172 0 0 -1703985 UP 6 -1703985 32 0 -1704576 DOWN 6 -1704576 0 0 -1713248 UP 6 -1713248 32 0 -1713398 DOWN 6 -1713398 0 0 -1720212 UP 6 -1720212 32 0 -1720425 DOWN 6 -1720425 0 0 -1720460 UP 6 -1720460 32 0 -1720823 DOWN 6 -1720823 0 0 -1720884 UP 6 -1720884 32 0 -1720910 DOWN 6 -1720910 0 0 -1720928 UP 6 -1720928 32 0 -1721029 DOWN 6 -1721029 0 0 -1730404 UP 1 -1730404 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1730828 DOWN 1 -1730828 0 0 -1730838 UP 1 -1730838 1 0 -~~~ -1730854 contingency = 1 -1730854 trialThresh = 100 -1730854 timeMaxOut = 30 -1730855 timeElapsed = 27 -1730855 totalPokes = 84 -1730856 totalRewards = 41 -1730856 countPokes1 = 23 -1730856 countRewards1 = 19 -1730856 leafProbs1 = 80 -1730856 countPokes2 = 20 -1730871 countRewards2 = 4 -1730871 leafProbs2 = 20 -1730872 countPokes3 = 10 -1730872 countRewards3 = 3 -1730872 leafProbs3 = 20 -1730872 countPokes4 = 10 -1730873 countRewards4 = 5 -1730873 leafProbs4 = 50 -1730874 countPokes5 = 7 -1730874 countRewards5 = 4 -1730887 leafProbs5 = 80 -1730888 countPokes6 = 14 -1730888 countRewards6 = 6 -1730888 leafProbs6 = 50 -~~~ -1730888 DOWN 1 -1730888 0 0 -1730978 UP 1 -1730978 1 0 -1731260 DOWN 1 -1731260 0 0 -1731340 UP 1 -1731340 1 0 -1731363 DOWN 1 -1731363 0 0 -1731384 UP 1 -1731384 1 0 -1731536 DOWN 1 -1731536 0 0 -1742889 UP 1 -1742889 1 0 -1742936 DOWN 1 -1742936 0 0 -1743067 UP 1 -1743067 1 0 -1744211 DOWN 1 -1744211 0 0 -1744227 UP 1 -1744227 1 0 -1744330 DOWN 1 -1744330 0 0 -1744349 UP 1 -1744349 1 0 -1744457 DOWN 1 -1744457 0 0 -1744477 UP 1 -1744477 1 0 -1744689 DOWN 1 -1744689 0 0 -1744701 UP 1 -1744701 1 0 -1744721 DOWN 1 -1744721 0 0 -1744786 UP 1 -1744786 1 0 -1744804 DOWN 1 -1744804 0 0 -1744814 UP 1 -1744814 1 0 -1744896 DOWN 1 -1744896 0 0 -1744901 UP 1 -1744901 1 0 -1745017 DOWN 1 -1745017 0 0 -1745024 UP 1 -1745024 1 0 -1745139 DOWN 1 -1745139 0 0 -1761273 UP 1 -1761273 1 0 -1761327 DOWN 1 -1761327 0 0 -1764240 UP 2 -1764240 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1764473 DOWN 2 -1764473 0 0 -1764489 UP 2 -1764489 2 0 -~~~ -1764493 contingency = 1 -1764493 trialThresh = 100 -1764494 timeMaxOut = 30 -1764494 timeElapsed = 28 -1764495 totalPokes = 85 -1764495 totalRewards = 41 -1764495 countPokes1 = 23 -1764495 countRewards1 = 19 -1764496 leafProbs1 = 80 -1764496 countPokes2 = 21 -1764510 countRewards2 = 4 -1764511 leafProbs2 = 20 -1764511 countPokes3 = 10 -1764511 countRewards3 = 3 -1764511 leafProbs3 = 20 -1764512 countPokes4 = 10 -1764512 countRewards4 = 5 -1764513 leafProbs4 = 50 -1764513 countPokes5 = 7 -1764513 countRewards5 = 4 -1764527 leafProbs5 = 80 -1764527 countPokes6 = 14 -1764527 countRewards6 = 6 -1764527 leafProbs6 = 50 -~~~ -1764597 DOWN 2 -1764597 0 0 -1764605 UP 2 -1764605 2 0 -1765104 DOWN 2 -1765103 0 0 -1770599 UP 1 -1770599 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1771061 DOWN 1 -1771061 0 0 -1771071 UP 1 -1771071 1 0 -~~~ -1771083 contingency = 1 -1771084 trialThresh = 100 -1771084 timeMaxOut = 30 -1771085 timeElapsed = 28 -1771085 totalPokes = 86 -1771085 totalRewards = 41 -1771085 countPokes1 = 24 -1771085 countRewards1 = 19 -1771086 leafProbs1 = 80 -1771086 countPokes2 = 21 -1771101 countRewards2 = 4 -1771101 leafProbs2 = 20 -1771101 countPokes3 = 10 -1771101 countRewards3 = 3 -1771102 leafProbs3 = 20 -1771102 countPokes4 = 10 -1771103 countRewards4 = 5 -1771103 leafProbs4 = 50 -1771103 countPokes5 = 7 -1771103 countRewards5 = 4 -1771117 leafProbs5 = 80 -1771117 countPokes6 = 14 -1771117 countRewards6 = 6 -1771118 leafProbs6 = 50 -~~~ -1771118 DOWN 1 -1771118 0 0 -1773853 UP 1 -1773853 1 0 -1773885 DOWN 1 -1773885 0 0 -1796885 UP 2 -1796885 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1797423 DOWN 2 -1797423 0 0 -~~~ -1797451 contingency = 1 -1797451 trialThresh = 100 -1797452 timeMaxOut = 30 -1797452 timeElapsed = 29 -1797452 totalPokes = 87 -1797452 totalRewards = 41 -1797453 countPokes1 = 24 -1797453 countRewards1 = 19 -1797454 leafProbs1 = 80 -1797454 countPokes2 = 22 -1797468 countRewards2 = 4 -1797468 leafProbs2 = 20 -1797469 countPokes3 = 10 -1797469 countRewards3 = 3 -1797470 leafProbs3 = 20 -1797470 countPokes4 = 10 -1797470 countRewards4 = 5 -1797470 leafProbs4 = 50 -1797470 countPokes5 = 7 -1797471 countRewards5 = 4 -1797484 leafProbs5 = 80 -1797485 countPokes6 = 14 -1797485 countRewards6 = 6 -1797486 leafProbs6 = 50 -~~~ -1802774 UP 1 -1802774 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1802803 1 64 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1803012 DOWN 1 -1803012 0 64 -1803039 UP 1 -1803039 1 64 -~~~ -1803040 contingency = 1 -1803040 trialThresh = 100 -1803041 timeMaxOut = 30 -1803041 timeElapsed = 29 -1803042 totalPokes = 88 -1803042 totalRewards = 42 -1803042 countPokes1 = 25 -1803042 countRewards1 = 20 -1803043 leafProbs1 = 80 -1803057 countPokes2 = 22 -1803057 countRewards2 = 4 -1803058 leafProbs2 = 20 -1803058 countPokes3 = 10 -1803058 countRewards3 = 3 -1803058 leafProbs3 = 20 -1803058 countPokes4 = 10 -1803059 countRewards4 = 5 -1803059 leafProbs4 = 50 -1803060 countPokes5 = 7 -1803074 countRewards5 = 4 -1803074 leafProbs5 = 80 -1803074 countPokes6 = 14 -1803074 countRewards6 = 6 -1803074 leafProbs6 = 50 -~~~ -1803103 1 0 -1803107 DOWN 1 -1803107 0 0 -1803121 UP 1 -1803121 1 0 -1805498 DOWN 1 -1805498 0 0 -1805512 UP 1 -1805512 1 0 -1805582 DOWN 1 -1805582 0 0 -1805630 UP 1 -1805630 1 0 -1805694 DOWN 1 -1805694 0 0 -1805708 UP 1 -1805708 1 0 -1805940 DOWN 1 -1805940 0 0 -1811690 UP 1 -1811690 1 0 -1811692 DOWN 1 -1811692 0 0 -1819890 UP 6 -1819890 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1819919 32 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -1820218 32 0 -1823071 DOWN 6 -1823071 0 0 -1823084 UP 6 -1823084 32 0 -~~~ -1823102 contingency = 1 -1823103 trialThresh = 100 -1823103 timeMaxOut = 30 -1823104 timeElapsed = 30 -1823104 totalPokes = 89 -1823104 totalRewards = 43 -1823104 countPokes1 = 25 -1823105 countRewards1 = 20 -1823105 leafProbs1 = 80 -1823106 countPokes2 = 22 -1823120 countRewards2 = 4 -1823120 leafProbs2 = 20 -1823120 countPokes3 = 10 -1823121 countRewards3 = 3 -1823121 leafProbs3 = 20 -1823121 countPokes4 = 10 -1823122 countRewards4 = 5 -1823122 leafProbs4 = 50 -1823122 countPokes5 = 7 -1823122 countRewards5 = 4 -1823136 leafProbs5 = 80 -1823136 countPokes6 = 15 -1823137 countRewards6 = 7 -1823137 leafProbs6 = 50 -~~~ -1823138 This contingency is over! -~~~ -1823138 This session is complete! -~~~ -1823138 32 63 -1823170 DOWN 6 -1823170 0 63 -1823388 0 0 -1823638 0 63 -1823888 0 0 -1824138 0 63 -1824388 0 0 -1824638 0 63 -1824888 0 0 -1825138 0 63 -1825388 0 0 -1825638 0 63 -1825888 0 0 -1826138 0 63 -1826388 0 0 -1826638 0 63 -1826888 0 0 -1827138 0 63 -1827257 UP 6 -1827257 32 63 -1827317 DOWN 6 -1827317 0 63 -1827388 0 0 -1827638 0 63 -1827888 0 0 -1828138 0 63 -1828388 0 0 -1828638 0 63 -1828888 0 0 -1829138 0 63 -1829388 0 0 -1829638 0 63 -1829888 0 0 -1830138 0 63 -1830388 0 0 -1830638 0 63 -1830888 0 0 -1831138 0 63 -1831388 0 0 -1831638 0 63 -1831888 0 0 -1832138 0 63 -1832388 0 0 -1832638 0 63 -1832888 0 0 -1833138 0 63 -1833388 0 0 -1833638 0 63 -1833888 0 0 -1834138 0 63 -1834388 0 0 -1834638 0 63 -1834888 0 0 -1835138 0 63 -1835388 0 0 -1842744 UP 6 -1842744 32 0 -1844444 DOWN 6 -1844444 0 0 - - description: state script log run 1 - task_epochs: 2, -] -2021-05-23 17:38:13,041 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-23 17:38:13,635 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-05-23 17:38:13,638 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-05-23 17:38:13,638 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-05-23 17:38:13,640 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-05-23 17:38:13,641 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-05-23 17:38:13,665 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-05-23 17:38:13,666 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-05-23 17:38:13,683 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-05-23 17:38:13,683 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-05-23 17:38:13,685 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-05-23 17:38:13,685 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-05-23 17:38:13,685 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-05-23 17:38:13,686 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-05-23 17:38:13,686 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-05-23 17:38:13,686 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-05-23 17:38:13,687 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-05-23 17:38:13,688 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-05-23 17:38:13,688 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-05-23 17:38:13,689 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-05-23 17:38:13,689 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_01_s1.1. -2021-05-23 17:38:13,690 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20190718_beans_02_r1.1. -2021-05-23 17:38:13,694 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-05-23 17:38:13,694 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-05-23 17:38:13,696 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-05-23 17:38:13,696 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-05-23 17:38:13,700 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-05-23 17:38:13,800 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-05-23 17:38:13,810 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-05-23 17:38:13,814 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-05-23 17:38:13,815 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-05-23 17:38:14,964 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-05-23 17:38:14,968 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-05-23 17:38:17,421 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-05-23 17:38:17,421 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-05-23 17:38:17,423 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-05-23 17:38:17,425 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-05-23 17:38:17,426 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-05-23 17:38:17,615 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-05-23 17:38:17,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-05-23 17:38:17,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-05-23 17:38:17,616 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-05-23 17:38:17,617 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:38:19,543 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:38:30,035 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-05-23 17:38:30,047 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-05-23 17:38:30,274 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:38:31,939 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:38:40,575 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-05-23 17:38:47,718 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-05-23 17:38:47,719 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /Users/loren/data/nwb/rawbeans20190718.nwb -2021-05-23 17:59:10,080 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:59:10,110 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:59:15,104 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_01_s1.time/20190718_beans_01_s1.continuoustime.dat -2021-05-23 17:59:15,682 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /Users/loren/data/nwb/beans/preprocessing/20190718/20190718_beans_02_r1.time/20190718_beans_02_r1.continuoustime.dat -2021-05-23 17:59:32,903 rec_to_nwb.processing.builder.nwb_file_builder: INFO /Users/loren/data/nwb/rawbeans20190718.nwb file has been created. -2021-05-24 14:07:46,471 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = despereaux -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-05-24 14:07:47,305 rec_to_binaries.core: INFO Extracting analog data... -2021-05-24 14:07:47,307 rec_to_binaries.core: INFO Extracting DIO... -2021-05-24 14:07:47,308 rec_to_binaries.core: INFO Extracting mda... -2021-05-24 14:07:47,308 rec_to_binaries.core: INFO Extracting time... -2021-05-24 14:14:59,695 rec_to_binaries.core: INFO Making position directory... -2021-05-24 14:15:12,372 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-24 14:15:12,373 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 -2021-05-24 14:15:12,374 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-24 14:15:12,375 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = despereaux -date = 20191125 -nwb_metadata = Experiment Info: -Experimenter: Anna Gillespie -Description: Sungod control -Session Id: 4 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/loren/despereaux20191125.nwb - -2021-05-24 14:15:13,577 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! - , [] -2021-05-24 14:15:31,355 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-24 14:15:31,393 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-24 14:15:31,394 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-24 14:15:31,395 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-24 14:15:31,396 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-24 14:15:31,396 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-24 14:15:31,397 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-24 14:15:31,397 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-24 14:15:31,398 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-24 14:15:31,398 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-24 14:15:31,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-24 14:15:31,400 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-24 14:15:31,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-24 14:15:31,401 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-24 14:15:31,402 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-24 14:15:31,402 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-24 14:15:31,409 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-24 14:15:31,411 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-24 14:15:31,414 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [Statescript1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140181332890512 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -2608699 UP 10 -2608699 waslock = 0 -2608699 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2608722 512 16777728 -~~~ -2608872 512 512 -2608885 DOWN 10 -2608885 0 512 -~~~ -~~~ -2608901 0 1536 -~~~ -~~~ -2608903 0 1024 -2608904 homeCount = 1 -2608904 waitCount = 0 -2608905 ripCount = 0 -2608905 locktype1 = 0 -2608906 locktype2 = 0 -2608906 locktype3 = 0 -2608907 goalCount = 0 -2608907 goalTotal = 0 -2608908 otherCount = 0 -~~~ -2609055 UP 10 -2609055 waslock = 0 -2609054 512 1024 -2609074 DOWN 10 -2609074 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -2609109 homeCount = 1 -2609109 waitCount = 0 -2609109 ripCount = 0 -2609110 locktype1 = 0 -2609110 locktype2 = 0 -2609111 locktype3 = 0 -2609111 goalCount = 0 -2609112 goalTotal = 0 -2609112 otherCount = 0 -~~~ -2609182 UP 10 -2609182 waslock = 0 -2609182 512 1024 -~~~ -2609223 DOWN 10 -2609223 0 1024 -~~~ -~~~ -~~~ -~~~ -2609256 homeCount = 1 -2609257 waitCount = 0 -2609257 ripCount = 0 -2609258 locktype1 = 0 -2609258 locktype2 = 0 -2609259 locktype3 = 0 -2609259 goalCount = 0 -2609260 goalTotal = 0 -2609260 otherCount = 0 -~~~ -2609311 UP 10 -2609311 waslock = 0 -2609311 512 1024 -~~~ -2609574 DOWN 10 -2609574 0 1024 -~~~ -~~~ -~~~ -2609597 UP 10 -2609597 waslock = 0 -2609597 512 1024 -~~~ -2609599 homeCount = 1 -2609600 waitCount = 0 -2609600 ripCount = 0 -2609601 locktype1 = 0 -2609601 locktype2 = 0 -2609602 locktype3 = 0 -2609602 goalCount = 0 -2609602 goalTotal = 0 -2609603 otherCount = 0 -~~~ -~~~ -2609728 DOWN 10 -2609728 0 1024 -~~~ -~~~ -~~~ -~~~ -2609754 homeCount = 1 -2609754 waitCount = 0 -2609755 ripCount = 0 -2609755 locktype1 = 0 -2609756 locktype2 = 0 -2609756 locktype3 = 0 -2609757 goalCount = 0 -2609757 goalTotal = 0 -2609758 otherCount = 0 -~~~ -2609758 UP 10 -2609759 waslock = 0 -2609758 512 1024 -~~~ -2609870 DOWN 10 -2609870 0 1024 -~~~ -~~~ -~~~ -~~~ -2609895 homeCount = 1 -2609896 waitCount = 0 -2609896 ripCount = 0 -2609897 locktype1 = 0 -2609897 locktype2 = 0 -2609898 locktype3 = 0 -2609898 goalCount = 0 -2609898 goalTotal = 0 -2609899 otherCount = 0 -~~~ -2609909 UP 10 -2609910 waslock = 0 -2609909 512 1024 -~~~ -2610022 DOWN 10 -2610022 0 1024 -~~~ -~~~ -~~~ -~~~ -2610045 homeCount = 1 -2610045 waitCount = 0 -2610046 ripCount = 0 -2610046 locktype1 = 0 -2610047 locktype2 = 0 -2610047 locktype3 = 0 -2610048 goalCount = 0 -2610048 goalTotal = 0 -2610049 otherCount = 0 -~~~ -2610059 UP 10 -2610059 waslock = 0 -2610059 512 1024 -~~~ -2610177 DOWN 10 -2610177 0 1024 -~~~ -~~~ -~~~ -~~~ -2610204 homeCount = 1 -2610205 waitCount = 0 -2610205 ripCount = 0 -2610206 locktype1 = 0 -2610206 locktype2 = 0 -2610206 locktype3 = 0 -2610207 goalCount = 0 -2610207 goalTotal = 0 -2610208 otherCount = 0 -~~~ -2610208 UP 10 -2610209 waslock = 0 -2610208 512 1024 -~~~ -2610339 DOWN 10 -2610338 0 1024 -~~~ -~~~ -~~~ -2610363 UP 10 -2610363 waslock = 0 -2610363 512 1024 -~~~ -2610365 homeCount = 1 -2610365 waitCount = 0 -2610366 ripCount = 0 -2610366 locktype1 = 0 -2610367 locktype2 = 0 -2610367 locktype3 = 0 -2610367 goalCount = 0 -2610368 goalTotal = 0 -2610368 otherCount = 0 -~~~ -~~~ -2610495 DOWN 10 -2610495 0 1024 -~~~ -~~~ -~~~ -~~~ -2610515 homeCount = 1 -2610515 waitCount = 0 -2610516 ripCount = 0 -2610516 locktype1 = 0 -2610516 locktype2 = 0 -2610517 locktype3 = 0 -2610517 goalCount = 0 -2610518 goalTotal = 0 -2610518 otherCount = 0 -~~~ -2610526 UP 10 -2610526 waslock = 0 -2610526 512 1024 -~~~ -2610666 DOWN 10 -2610666 0 1024 -2610679 UP 10 -2610680 waslock = 0 -2610679 512 1024 -~~~ -~~~ -~~~ -~~~ -2610696 homeCount = 1 -2610697 waitCount = 0 -2610697 ripCount = 0 -2610698 locktype1 = 0 -2610698 locktype2 = 0 -2610699 locktype3 = 0 -2610699 goalCount = 0 -2610700 goalTotal = 0 -2610700 otherCount = 0 -~~~ -~~~ -2611006 DOWN 10 -2611006 0 1024 -2611013 UP 10 -2611013 waslock = 0 -2611013 512 1024 -~~~ -~~~ -~~~ -~~~ -2611036 homeCount = 1 -2611036 waitCount = 0 -2611037 ripCount = 0 -2611037 locktype1 = 0 -2611038 locktype2 = 0 -2611038 locktype3 = 0 -2611038 goalCount = 0 -2611039 goalTotal = 0 -2611039 otherCount = 0 -~~~ -~~~ -2611156 DOWN 10 -2611156 0 1024 -2611188 UP 10 -2611189 waslock = 0 -2611188 512 1024 -~~~ -~~~ -~~~ -~~~ -2611194 homeCount = 1 -2611195 waitCount = 0 -2611195 ripCount = 0 -2611196 locktype1 = 0 -2611196 locktype2 = 0 -2611196 locktype3 = 0 -2611197 goalCount = 0 -2611197 goalTotal = 0 -2611198 otherCount = 0 -~~~ -~~~ -2611313 DOWN 10 -2611313 0 1024 -~~~ -~~~ -~~~ -~~~ -2611336 homeCount = 1 -2611337 waitCount = 0 -2611337 ripCount = 0 -2611338 locktype1 = 0 -2611338 locktype2 = 0 -2611339 locktype3 = 0 -2611339 goalCount = 0 -2611340 goalTotal = 0 -2611340 otherCount = 0 -~~~ -2611352 UP 10 -2611353 waslock = 0 -2611352 512 1024 -~~~ -2611481 DOWN 10 -2611481 0 1024 -~~~ -~~~ -~~~ -~~~ -2611505 homeCount = 1 -2611506 waitCount = 0 -2611506 ripCount = 0 -2611507 locktype1 = 0 -2611507 locktype2 = 0 -2611508 locktype3 = 0 -2611508 goalCount = 0 -2611508 goalTotal = 0 -2611509 otherCount = 0 -~~~ -2611524 UP 10 -2611524 waslock = 0 -2611524 512 1024 -~~~ -2611655 DOWN 10 -2611655 0 1024 -~~~ -~~~ -~~~ -~~~ -2611675 homeCount = 1 -2611676 waitCount = 0 -2611676 ripCount = 0 -2611677 locktype1 = 0 -2611677 locktype2 = 0 -2611678 locktype3 = 0 -2611678 goalCount = 0 -2611679 goalTotal = 0 -2611679 otherCount = 0 -~~~ -2611701 UP 10 -2611702 waslock = 0 -2611701 512 1024 -~~~ -2611829 DOWN 10 -2611829 0 1024 -~~~ -~~~ -~~~ -~~~ -2611855 homeCount = 1 -2611855 waitCount = 0 -2611856 ripCount = 0 -2611856 locktype1 = 0 -2611857 locktype2 = 0 -2611857 locktype3 = 0 -2611858 goalCount = 0 -2611858 goalTotal = 0 -2611859 otherCount = 0 -~~~ -2611865 UP 10 -2611865 waslock = 0 -2611865 512 1024 -~~~ -2612015 DOWN 10 -2612015 0 1024 -~~~ -~~~ -~~~ -2612033 UP 10 -2612034 waslock = 0 -2612033 512 1024 -~~~ -2612035 homeCount = 1 -2612036 waitCount = 0 -2612036 ripCount = 0 -2612037 locktype1 = 0 -2612037 locktype2 = 0 -2612038 locktype3 = 0 -2612038 goalCount = 0 -2612039 goalTotal = 0 -2612039 otherCount = 0 -~~~ -~~~ -2612181 DOWN 10 -2612180 0 1024 -~~~ -~~~ -~~~ -~~~ -2612207 homeCount = 1 -2612208 waitCount = 0 -2612208 ripCount = 0 -2612209 locktype1 = 0 -2612209 locktype2 = 0 -2612210 locktype3 = 0 -2612210 goalCount = 0 -2612211 goalTotal = 0 -2612211 otherCount = 0 -~~~ -2612229 UP 10 -2612229 waslock = 0 -2612229 512 1024 -~~~ -2612356 DOWN 10 -2612356 0 1024 -~~~ -~~~ -~~~ -~~~ -2612387 homeCount = 1 -2612387 waitCount = 0 -2612388 ripCount = 0 -2612388 locktype1 = 0 -2612389 locktype2 = 0 -2612389 locktype3 = 0 -2612390 goalCount = 0 -2612390 goalTotal = 0 -2612391 otherCount = 0 -~~~ -2612407 UP 10 -2612407 waslock = 0 -2612406 512 1024 -~~~ -2614983 DOWN 10 -2614983 0 1024 -~~~ -~~~ -~~~ -~~~ -2615004 homeCount = 1 -2615005 waitCount = 0 -2615005 ripCount = 0 -2615006 locktype1 = 0 -2615006 locktype2 = 0 -2615007 locktype3 = 0 -2615007 goalCount = 0 -2615008 goalTotal = 0 -2615008 otherCount = 0 -~~~ -2617153 UP 12 -2617154 LOCKOUT 1 -2617153 2048 1024 -~~~ -2617175 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -2617178 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2617366 DOWN 12 -2617366 0 0 -2617491 UP 12 -2617491 2048 0 -2617895 DOWN 12 -2617895 0 0 -2617923 UP 12 -2617923 2048 0 -2618053 DOWN 12 -2618053 0 0 -2618075 UP 12 -2618075 2048 0 -2619271 DOWN 12 -2619271 0 0 -2619295 UP 12 -2619295 2048 0 -2619584 DOWN 12 -2619584 0 0 -2619593 UP 12 -2619593 2048 0 -2621137 DOWN 12 -2621137 0 0 -2622946 UP 11 -2622946 1024 0 -2623563 DOWN 11 -2623563 0 0 -2623582 UP 11 -2623582 1024 0 -2623717 DOWN 11 -2623717 0 0 -2623731 UP 11 -2623731 1024 0 -2623879 DOWN 11 -2623879 0 0 -2623904 UP 11 -2623903 1024 0 -2624051 DOWN 11 -2624051 0 0 -2624056 UP 11 -2624056 1024 0 -2626713 DOWN 11 -2626713 0 0 -2626722 UP 11 -2626722 1024 0 -2627171 DOWN 11 -2627171 0 0 -2631902 UP 7 -2631902 64 0 -2632210 DOWN 7 -2632210 0 0 -2632230 64 0 -2634192 DOWN 7 -2634192 0 0 -2634209 64 0 -2635732 DOWN 7 -2635732 0 0 -2642069 512 0 -2642175 LOCKEND -~~~ -~~~ -~~~ -2642201 512 512 -2642433 DOWN 10 -2642433 0 512 -2642526 UP 10 -2642526 waslock = 0 -2642526 512 512 -2642544 DOWN 10 -2642544 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2642558 0 16777728 -~~~ -~~~ -~~~ -2642570 0 16778752 -~~~ -~~~ -2642571 0 16778240 -2642572 homeCount = 2 -2642573 waitCount = 0 -2642573 ripCount = 0 -2642574 locktype1 = 1 -2642574 locktype2 = 0 -2642575 locktype3 = 0 -2642575 goalCount = 0 -2642576 goalTotal = 0 -2642576 otherCount = 0 -~~~ -2642628 UP 10 -2642629 waslock = 0 -2642628 512 16778240 -~~~ -2642704 DOWN 10 -2642704 0 16778240 -2642706 UP 10 -2642707 waslock = 0 -2642706 512 16778240 -2642708 512 1024 -2642713 DOWN 10 -2642713 0 1024 -2642720 UP 10 -2642720 waslock = 0 -2642720 512 1024 -~~~ -~~~ -~~~ -~~~ -2642742 homeCount = 2 -2642742 waitCount = 0 -2642743 ripCount = 0 -2642743 locktype1 = 1 -2642744 locktype2 = 0 -2642744 locktype3 = 0 -2642745 goalCount = 0 -2642745 goalTotal = 0 -2642746 otherCount = 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2642748 homeCount = 2 -2642770 waitCount = 0 -2642770 ripCount = 0 -2642771 locktype1 = 1 -2642771 locktype2 = 0 -2642772 locktype3 = 0 -2642772 goalCount = 0 -2642772 goalTotal = 0 -2642773 otherCount = 0 -~~~ -~~~ -2643241 DOWN 10 -2643241 0 1024 -2643258 UP 10 -2643258 waslock = 0 -2643258 512 1024 -~~~ -~~~ -~~~ -~~~ -2643268 homeCount = 2 -2643268 waitCount = 0 -2643269 ripCount = 0 -2643269 locktype1 = 1 -2643269 locktype2 = 0 -2643270 locktype3 = 0 -2643270 goalCount = 0 -2643271 goalTotal = 0 -2643271 otherCount = 0 -~~~ -~~~ -2643397 DOWN 10 -2643397 0 1024 -~~~ -~~~ -~~~ -~~~ -2643424 homeCount = 2 -2643424 waitCount = 0 -2643425 ripCount = 0 -2643425 locktype1 = 1 -2643426 locktype2 = 0 -2643426 locktype3 = 0 -2643427 goalCount = 0 -2643427 goalTotal = 0 -2643427 otherCount = 0 -~~~ -2643429 UP 10 -2643429 waslock = 0 -2643429 512 1024 -~~~ -2646784 DOWN 10 -2646784 0 1024 -~~~ -~~~ -~~~ -~~~ -2646812 homeCount = 2 -2646812 waitCount = 0 -2646813 ripCount = 0 -2646813 locktype1 = 1 -2646813 locktype2 = 0 -2646814 locktype3 = 0 -2646814 goalCount = 0 -2646815 goalTotal = 0 -2646815 otherCount = 0 -~~~ -2654547 UP 2 -2654547 2 1024 -~~~ -2654570 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -2654574 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2654848 DOWN 2 -2654848 0 0 -2654865 2 0 -2655008 DOWN 2 -2655008 0 0 -2655030 2 0 -2657028 DOWN 2 -2657028 0 0 -2661794 512 0 -2661810 0 0 -2661854 512 0 -2662303 0 0 -2662318 512 0 -2662471 0 0 -2662483 512 0 -2662646 0 0 -2662676 512 0 -2662753 0 0 -2662824 512 0 -2663410 0 0 -2667214 UP 8 -2667214 128 0 -2667509 DOWN 8 -2667509 0 0 -2667541 128 0 -2667910 DOWN 8 -2667910 0 0 -2667936 128 0 -2668075 DOWN 8 -2668075 0 0 -2668097 128 0 -2668243 DOWN 8 -2668243 0 0 -2668267 128 0 -2668421 DOWN 8 -2668421 0 0 -2668438 128 0 -2668589 DOWN 8 -2668589 0 0 -2668622 128 0 -2668952 DOWN 8 -2668952 0 0 -2668978 128 0 -2669136 DOWN 8 -2669136 0 0 -2669147 128 0 -2670697 DOWN 8 -2670697 0 0 -2670704 128 0 -2670876 DOWN 8 -2670876 0 0 -2670890 128 0 -2673117 DOWN 8 -2673117 0 0 -2673168 128 0 -2673243 DOWN 8 -2673243 0 0 -2673296 128 0 -2673609 DOWN 8 -2673609 0 0 -2673620 128 0 -2674173 DOWN 8 -2674173 0 0 -2674176 128 0 -2674222 DOWN 8 -2674222 0 0 -2674261 128 0 -2674378 DOWN 8 -2674378 0 0 -2674393 128 0 -2674564 DOWN 8 -2674564 0 0 -2674583 128 0 -2674681 DOWN 8 -2674681 0 0 -2679570 LOCKEND -~~~ -~~~ -~~~ -2679589 0 512 -2680342 UP 10 -2680343 waslock = 0 -2680342 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2680378 512 16777728 -~~~ -2680411 DOWN 10 -2680411 0 16777728 -~~~ -~~~ -2680438 0 16779776 -~~~ -~~~ -2680440 0 16779264 -2680441 homeCount = 3 -2680442 waitCount = 0 -2680442 ripCount = 0 -2680443 locktype1 = 1 -2680443 locktype2 = 1 -2680443 locktype3 = 0 -2680444 goalCount = 0 -2680444 goalTotal = 0 -2680445 otherCount = 0 -~~~ -2680525 UP 10 -2680525 waslock = 0 -2680525 512 16779264 -2680528 512 2048 -~~~ -2680573 DOWN 10 -2680573 0 2048 -~~~ -~~~ -~~~ -~~~ -2680601 homeCount = 3 -2680601 waitCount = 0 -2680602 ripCount = 0 -2680602 locktype1 = 1 -2680603 locktype2 = 1 -2680603 locktype3 = 0 -2680604 goalCount = 0 -2680604 goalTotal = 0 -2680605 otherCount = 0 -~~~ -2680677 UP 10 -2680678 waslock = 0 -2680677 512 2048 -~~~ -2681296 DOWN 10 -2681296 0 2048 -~~~ -~~~ -2681318 UP 10 -2681318 waslock = 0 -2681318 512 2048 -~~~ -~~~ -2681321 homeCount = 3 -2681321 waitCount = 0 -2681322 ripCount = 0 -2681322 locktype1 = 1 -2681323 locktype2 = 1 -2681323 locktype3 = 0 -2681324 goalCount = 0 -2681324 goalTotal = 0 -2681325 otherCount = 0 -~~~ -~~~ -2682967 DOWN 10 -2682967 0 2048 -2682978 UP 10 -2682978 waslock = 0 -2682978 512 2048 -~~~ -~~~ -~~~ -~~~ -2683005 homeCount = 3 -2683005 waitCount = 0 -2683006 ripCount = 0 -2683006 locktype1 = 1 -2683007 locktype2 = 1 -2683007 locktype3 = 0 -2683008 goalCount = 0 -2683008 goalTotal = 0 -2683009 otherCount = 0 -~~~ -~~~ -2684230 DOWN 10 -2684230 0 2048 -~~~ -~~~ -~~~ -~~~ -2684252 homeCount = 3 -2684253 waitCount = 0 -2684253 ripCount = 0 -2684254 locktype1 = 1 -2684254 locktype2 = 1 -2684255 locktype3 = 0 -2684255 goalCount = 0 -2684256 goalTotal = 0 -2684256 otherCount = 0 -~~~ -2684266 UP 10 -2684266 waslock = 0 -2684266 512 2048 -~~~ -2684599 DOWN 10 -2684599 0 2048 -~~~ -~~~ -2684620 UP 10 -2684620 waslock = 0 -2684620 512 2048 -~~~ -~~~ -2684623 homeCount = 3 -2684623 waitCount = 0 -2684624 ripCount = 0 -2684624 locktype1 = 1 -2684624 locktype2 = 1 -2684625 locktype3 = 0 -2684625 goalCount = 0 -2684626 goalTotal = 0 -2684626 otherCount = 0 -~~~ -~~~ -2684738 DOWN 10 -2684738 0 2048 -~~~ -~~~ -~~~ -~~~ -2684765 homeCount = 3 -2684765 waitCount = 0 -2684766 ripCount = 0 -2684766 locktype1 = 1 -2684767 locktype2 = 1 -2684767 locktype3 = 0 -2684768 goalCount = 0 -2684768 goalTotal = 0 -2684769 otherCount = 0 -~~~ -2685961 UP 12 -2685961 2048 2048 -2686484 DOWN 12 -2686484 0 2048 -2686519 UP 12 -2686519 2048 2048 -2686961 CLICK1 -2686961 CLICK2 -2686961 DOWN 12 -2686961 0 2048 -~~~ -~~~ -~~~ -2686981 0 67110912 -~~~ -2687006 UP 12 -2687006 2048 67110912 -2687131 2048 2048 -~~~ -~~~ -2687156 2048 0 -~~~ -~~~ -2687157 2048 1 -~~~ -~~~ -2687159 2048 3 -~~~ -~~~ -2687161 2048 7 -~~~ -~~~ -2687163 2048 15 -~~~ -~~~ -2687165 2048 31 -~~~ -~~~ -2687166 2048 63 -~~~ -~~~ -2687168 2048 127 -~~~ -~~~ -2687170 2048 255 -2687171 homeCount = 3 -2687172 waitCount = 1 -2687172 ripCount = 0 -2687173 locktype1 = 1 -2687194 locktype2 = 1 -2687194 locktype3 = 0 -2687195 goalCount = 0 -2687195 goalTotal = 0 -2687196 otherCount = 0 -~~~ -2687197 CURRENTGOAL IS [5] -~~~ -2691575 DOWN 12 -2691575 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2691618 homeCount = 3 -2691619 waitCount = 1 -2691619 ripCount = 0 -2691620 locktype1 = 1 -2691620 locktype2 = 1 -2691621 locktype3 = 0 -2691621 goalCount = 0 -2691621 goalTotal = 0 -2691622 otherCount = 0 -~~~ -2691623 CURRENTGOAL IS [5] -~~~ -2694045 UP 4 -2694045 8 255 -~~~ -~~~ -2694307 DOWN 4 -2694307 0 255 -~~~ -~~~ -2694333 0 254 -~~~ -~~~ -2694335 0 252 -~~~ -~~~ -2694337 0 248 -~~~ -~~~ -2694339 0 240 -~~~ -2694340 8 240 -~~~ -~~~ -2694342 8 224 -~~~ -~~~ -2694344 8 192 -~~~ -2694345 8 128 -~~~ -~~~ -2694346 8 0 -~~~ -~~~ -2694348 8 512 -2694349 homeCount = 3 -2694349 waitCount = 1 -2694350 ripCount = 0 -2694371 locktype1 = 1 -2694371 locktype2 = 1 -2694372 locktype3 = 0 -2694372 goalCount = 0 -2694373 goalTotal = 0 -2694373 otherCount = 1 -~~~ -2697167 DOWN 4 -2697167 0 512 -2700619 UP 10 -2700620 waslock = 0 -2700619 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2700643 512 16777728 -~~~ -2700677 DOWN 10 -2700677 0 16777728 -~~~ -~~~ -2700697 0 16778752 -~~~ -~~~ -2700699 0 16778240 -2700700 homeCount = 4 -2700700 waitCount = 1 -2700701 ripCount = 0 -2700701 locktype1 = 1 -2700702 locktype2 = 1 -2700702 locktype3 = 0 -2700703 goalCount = 0 -2700703 goalTotal = 0 -2700703 otherCount = 1 -~~~ -2700725 UP 10 -2700725 waslock = 0 -2700725 512 16778240 -~~~ -2700793 512 1024 -2700811 DOWN 10 -2700811 0 1024 -~~~ -~~~ -~~~ -~~~ -2700832 homeCount = 4 -2700832 waitCount = 1 -2700833 ripCount = 0 -2700833 locktype1 = 1 -2700834 locktype2 = 1 -2700834 locktype3 = 0 -2700835 goalCount = 0 -2700835 goalTotal = 0 -2700836 otherCount = 1 -~~~ -2700921 UP 10 -2700921 waslock = 0 -2700921 512 1024 -~~~ -2703713 DOWN 10 -2703713 0 1024 -2703727 UP 10 -2703728 waslock = 0 -2703727 512 1024 -~~~ -~~~ -~~~ -~~~ -2703741 homeCount = 4 -2703742 waitCount = 1 -2703742 ripCount = 0 -2703743 locktype1 = 1 -2703743 locktype2 = 1 -2703744 locktype3 = 0 -2703744 goalCount = 0 -2703745 goalTotal = 0 -2703745 otherCount = 1 -~~~ -~~~ -2703764 DOWN 10 -2703764 0 1024 -~~~ -~~~ -~~~ -~~~ -2703786 homeCount = 4 -2703786 waitCount = 1 -2703787 ripCount = 0 -2703787 locktype1 = 1 -2703788 locktype2 = 1 -2703788 locktype3 = 0 -2703789 goalCount = 0 -2703789 goalTotal = 0 -2703790 otherCount = 1 -~~~ -2704753 UP 11 -2704753 1024 1024 -2705597 DOWN 11 -2705597 0 1024 -2705617 UP 11 -2705617 1024 1024 -2705678 DOWN 11 -2705678 0 1024 -2705744 UP 11 -2705744 1024 1024 -2705753 BEEP1 -2705753 BEEP2 -~~~ -~~~ -~~~ -2705772 1024 33555456 -~~~ -2705922 1024 1024 -2709117 DOWN 11 -2709117 0 1024 -~~~ -~~~ -2709138 0 0 -~~~ -~~~ -2709140 0 1 -~~~ -~~~ -2709142 0 3 -~~~ -~~~ -2709144 0 7 -~~~ -~~~ -2709146 0 15 -~~~ -~~~ -2709147 0 31 -~~~ -~~~ -2709149 0 63 -~~~ -~~~ -2709151 0 127 -~~~ -~~~ -2709153 0 255 -2709154 homeCount = 4 -2709154 waitCount = 1 -2709155 ripCount = 1 -2709155 locktype1 = 1 -2709156 locktype2 = 1 -2709156 locktype3 = 0 -2709178 goalCount = 0 -2709178 goalTotal = 0 -2709178 otherCount = 1 -~~~ -2709180 CURRENTGOAL IS [5] -~~~ -2709182 UP 11 -2709182 1024 255 -2709619 DOWN 11 -2709619 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2709655 homeCount = 4 -2709655 waitCount = 1 -2709656 ripCount = 1 -2709656 locktype1 = 1 -2709657 locktype2 = 1 -2709657 locktype3 = 0 -2709658 goalCount = 0 -2709658 goalTotal = 0 -2709659 otherCount = 1 -~~~ -2709660 CURRENTGOAL IS [5] -~~~ -2711925 UP 7 -2711925 64 255 -~~~ -~~~ -2714140 DOWN 7 -2714140 0 255 -~~~ -~~~ -2714164 0 254 -~~~ -~~~ -2714166 0 252 -~~~ -~~~ -2714168 0 248 -~~~ -~~~ -2714170 0 240 -~~~ -~~~ -2714171 0 224 -~~~ -~~~ -2714173 0 192 -~~~ -~~~ -2714175 0 128 -~~~ -~~~ -2714177 0 0 -~~~ -~~~ -2714179 0 512 -2714180 homeCount = 4 -2714180 waitCount = 1 -2714181 ripCount = 1 -2714181 locktype1 = 1 -2714182 locktype2 = 1 -2714203 locktype3 = 0 -2714203 goalCount = 0 -2714204 goalTotal = 0 -2714204 otherCount = 2 -~~~ -2714205 64 512 -2714226 DOWN 7 -2714226 0 512 -2717944 UP 10 -2717945 waslock = 0 -2717944 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2717977 512 16777728 -~~~ -2718127 512 512 -2718153 DOWN 10 -2718153 0 512 -~~~ -~~~ -2718172 0 2560 -~~~ -~~~ -2718174 0 2048 -2718175 homeCount = 5 -2718176 waitCount = 1 -2718176 ripCount = 1 -2718177 locktype1 = 1 -2718177 locktype2 = 1 -2718178 locktype3 = 0 -2718178 goalCount = 0 -2718179 goalTotal = 0 -2718179 otherCount = 2 -~~~ -2718313 UP 10 -2718314 waslock = 0 -2718313 512 2048 -~~~ -2721159 DOWN 10 -2721158 0 2048 -2721177 UP 10 -2721177 waslock = 0 -2721177 512 2048 -~~~ -~~~ -~~~ -~~~ -2721185 homeCount = 5 -2721186 waitCount = 1 -2721186 ripCount = 1 -2721187 locktype1 = 1 -2721187 locktype2 = 1 -2721188 locktype3 = 0 -2721188 goalCount = 0 -2721189 goalTotal = 0 -2721189 otherCount = 2 -~~~ -~~~ -2721253 DOWN 10 -2721253 0 2048 -~~~ -~~~ -~~~ -~~~ -2721276 homeCount = 5 -2721276 waitCount = 1 -2721277 ripCount = 1 -2721277 locktype1 = 1 -2721278 locktype2 = 1 -2721278 locktype3 = 0 -2721279 goalCount = 0 -2721279 goalTotal = 0 -2721280 otherCount = 2 -~~~ -2722359 UP 12 -2722359 2048 2048 -2722798 DOWN 12 -2722798 0 2048 -2722838 UP 12 -2722838 2048 2048 -2723142 DOWN 12 -2723142 0 2048 -2723159 UP 12 -2723159 2048 2048 -2723223 DOWN 12 -2723223 0 2048 -2723288 UP 12 -2723288 2048 2048 -2723859 CLICK1 -2723859 CLICK2 -~~~ -~~~ -~~~ -2723886 2048 67110912 -~~~ -2724036 2048 2048 -2727818 DOWN 12 -2727818 0 2048 -~~~ -~~~ -2727844 0 0 -~~~ -~~~ -2727846 0 1 -~~~ -~~~ -2727847 0 3 -~~~ -~~~ -2727849 0 7 -~~~ -~~~ -2727851 0 15 -~~~ -~~~ -2727853 0 31 -~~~ -~~~ -2727855 0 63 -~~~ -~~~ -2727856 0 127 -~~~ -~~~ -2727858 0 255 -2727859 homeCount = 5 -2727860 waitCount = 2 -2727860 ripCount = 1 -2727861 locktype1 = 1 -2727861 locktype2 = 1 -2727862 locktype3 = 0 -2727883 goalCount = 0 -2727883 goalTotal = 0 -2727884 otherCount = 2 -~~~ -2727885 CURRENTGOAL IS [5] -~~~ -2732529 UP 1 -2732529 1 255 -~~~ -~~~ -2732809 DOWN 1 -2732809 0 255 -2732825 1 255 -~~~ -~~~ -2732828 1 254 -~~~ -~~~ -2732830 1 252 -~~~ -~~~ -2732832 1 248 -~~~ -~~~ -2732833 1 240 -~~~ -~~~ -2732835 1 224 -~~~ -~~~ -2732837 1 192 -~~~ -~~~ -2732839 1 128 -~~~ -~~~ -2732841 1 0 -~~~ -~~~ -2732843 1 512 -2732843 homeCount = 5 -2732844 waitCount = 2 -2732844 ripCount = 1 -2732845 locktype1 = 1 -2732845 locktype2 = 1 -2732866 locktype3 = 0 -2732867 goalCount = 0 -2732867 goalTotal = 0 -2732867 otherCount = 3 -~~~ -2734994 DOWN 1 -2734994 0 512 -2735003 1 512 -2735908 DOWN 1 -2735908 0 512 -2735920 1 512 -2736101 DOWN 1 -2736101 0 512 -2736111 1 512 -2737189 DOWN 1 -2737189 0 512 -2737197 1 512 -2737380 DOWN 1 -2737380 0 512 -2737397 1 512 -2737567 DOWN 1 -2737567 0 512 -2737579 1 512 -2737737 DOWN 1 -2737737 0 512 -2737755 1 512 -2737928 DOWN 1 -2737928 0 512 -2737943 1 512 -2738611 DOWN 1 -2738611 0 512 -2738651 1 512 -2738688 DOWN 1 -2738688 0 512 -2738818 1 512 -2738845 DOWN 1 -2738845 0 512 -2743363 UP 10 -2743363 waslock = 0 -2743363 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2743394 512 16777728 -~~~ -2743521 DOWN 10 -2743520 0 16777728 -2743544 0 512 -~~~ -~~~ -2743560 0 2560 -~~~ -~~~ -2743562 0 2048 -2743563 homeCount = 6 -2743564 waitCount = 2 -2743564 ripCount = 1 -2743565 locktype1 = 1 -2743565 locktype2 = 1 -2743566 locktype3 = 0 -2743566 goalCount = 0 -2743567 goalTotal = 0 -2743567 otherCount = 3 -~~~ -2743579 UP 10 -2743579 waslock = 0 -2743579 512 2048 -~~~ -2748231 DOWN 10 -2748231 0 2048 -~~~ -~~~ -~~~ -~~~ -2748261 homeCount = 6 -2748261 waitCount = 2 -2748262 ripCount = 1 -2748262 locktype1 = 1 -2748263 locktype2 = 1 -2748263 locktype3 = 0 -2748263 goalCount = 0 -2748264 goalTotal = 0 -2748264 otherCount = 3 -~~~ -2748272 UP 10 -2748273 waslock = 0 -2748272 512 2048 -~~~ -2748303 DOWN 10 -2748303 0 2048 -~~~ -~~~ -~~~ -~~~ -2748321 homeCount = 6 -2748322 waitCount = 2 -2748322 ripCount = 1 -2748323 locktype1 = 1 -2748323 locktype2 = 1 -2748324 locktype3 = 0 -2748324 goalCount = 0 -2748325 goalTotal = 0 -2748325 otherCount = 3 -~~~ -2749680 UP 12 -2749680 2048 2048 -2751680 CLICK1 -2751680 CLICK2 -~~~ -~~~ -~~~ -2751702 2048 67110912 -~~~ -2751852 2048 2048 -2755155 DOWN 12 -2755155 0 2048 -~~~ -~~~ -2755179 0 0 -~~~ -2755181 UP 12 -2755181 2048 0 -~~~ -~~~ -2755182 2048 1 -~~~ -~~~ -2755184 2048 3 -~~~ -2755185 2048 7 -~~~ -~~~ -2755187 2048 15 -~~~ -~~~ -2755188 2048 31 -~~~ -~~~ -2755190 2048 63 -~~~ -~~~ -2755192 2048 127 -~~~ -~~~ -2755194 2048 255 -2755195 homeCount = 6 -2755216 waitCount = 3 -2755217 ripCount = 1 -2755217 locktype1 = 1 -2755218 locktype2 = 1 -2755218 locktype3 = 0 -2755218 goalCount = 0 -2755219 goalTotal = 0 -2755219 otherCount = 3 -~~~ -2755220 CURRENTGOAL IS [5] -~~~ -2755257 DOWN 12 -2755257 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2755297 homeCount = 6 -2755297 waitCount = 3 -2755298 ripCount = 1 -2755298 locktype1 = 1 -2755299 locktype2 = 1 -2755299 locktype3 = 0 -2755300 goalCount = 0 -2755300 goalTotal = 0 -2755301 otherCount = 3 -~~~ -2755302 CURRENTGOAL IS [5] -~~~ -2758389 UP 6 -2758389 32 255 -~~~ -~~~ -2762845 DOWN 6 -2762845 0 255 -~~~ -~~~ -2762870 0 254 -~~~ -~~~ -2762872 0 252 -~~~ -~~~ -2762873 0 248 -~~~ -~~~ -2762875 0 240 -~~~ -~~~ -2762877 0 224 -~~~ -~~~ -2762879 0 192 -~~~ -~~~ -2762881 0 128 -~~~ -~~~ -2762882 0 0 -~~~ -~~~ -2762884 0 512 -2762885 homeCount = 6 -2762886 waitCount = 3 -2762886 ripCount = 1 -2762887 locktype1 = 1 -2762887 locktype2 = 1 -2762908 locktype3 = 0 -2762909 goalCount = 0 -2762909 goalTotal = 0 -2762910 otherCount = 4 -~~~ -2766008 UP 10 -2766008 waslock = 0 -2766008 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2766038 512 16777728 -~~~ -2766188 512 512 -2766218 DOWN 10 -2766217 0 512 -~~~ -~~~ -2766243 0 1536 -~~~ -~~~ -2766245 0 1024 -2766246 homeCount = 7 -2766246 waitCount = 3 -2766247 ripCount = 1 -2766247 locktype1 = 1 -2766248 locktype2 = 1 -2766248 locktype3 = 0 -2766249 goalCount = 0 -2766249 goalTotal = 0 -2766250 otherCount = 4 -~~~ -2766305 UP 10 -2766305 waslock = 0 -2766305 512 1024 -~~~ -2770192 DOWN 10 -2770192 0 1024 -~~~ -~~~ -~~~ -~~~ -2770215 homeCount = 7 -2770215 waitCount = 3 -2770216 ripCount = 1 -2770216 locktype1 = 1 -2770217 locktype2 = 1 -2770217 locktype3 = 0 -2770218 goalCount = 0 -2770218 goalTotal = 0 -2770219 otherCount = 4 -~~~ -2771671 UP 11 -2771671 1024 1024 -2771682 DOWN 11 -2771682 0 1024 -2771731 UP 11 -2771731 1024 1024 -2773171 BEEP1 -2773171 BEEP2 -~~~ -~~~ -~~~ -2773194 1024 33555456 -~~~ -2773198 DOWN 11 -2773198 0 33555456 -2773250 UP 11 -2773250 1024 33555456 -2773344 1024 1024 -~~~ -~~~ -2773852 1024 0 -~~~ -~~~ -2773854 1024 1 -~~~ -~~~ -2773856 1024 3 -~~~ -~~~ -2773858 1024 7 -~~~ -~~~ -2773860 1024 15 -~~~ -~~~ -2773861 1024 31 -~~~ -~~~ -2773863 1024 63 -~~~ -~~~ -2773865 1024 127 -~~~ -~~~ -2773867 1024 255 -2773868 homeCount = 7 -2773868 waitCount = 3 -2773869 ripCount = 2 -2773869 locktype1 = 1 -2773890 locktype2 = 1 -2773891 locktype3 = 0 -2773891 goalCount = 0 -2773892 goalTotal = 0 -2773892 otherCount = 4 -~~~ -2773893 CURRENTGOAL IS [5] -~~~ -2778754 DOWN 11 -2778754 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2778788 homeCount = 7 -2778789 waitCount = 3 -2778789 ripCount = 2 -2778790 locktype1 = 1 -2778790 locktype2 = 1 -2778790 locktype3 = 0 -2778791 goalCount = 0 -2778791 goalTotal = 0 -2778792 otherCount = 4 -~~~ -2778793 CURRENTGOAL IS [5] -~~~ -2782128 UP 6 -2782128 32 255 -~~~ -~~~ -2783049 DOWN 6 -2783049 0 255 -~~~ -~~~ -2783075 0 254 -~~~ -~~~ -2783077 0 252 -~~~ -~~~ -2783078 0 248 -~~~ -~~~ -2783080 0 240 -~~~ -~~~ -2783082 0 224 -~~~ -~~~ -2783084 0 192 -~~~ -~~~ -2783086 0 128 -~~~ -~~~ -2783088 0 0 -~~~ -~~~ -2783090 0 512 -2783090 homeCount = 7 -2783091 waitCount = 3 -2783091 ripCount = 2 -2783092 locktype1 = 1 -2783092 locktype2 = 1 -2783114 locktype3 = 0 -2783114 goalCount = 0 -2783114 goalTotal = 0 -2783115 otherCount = 5 -~~~ -2786457 UP 10 -2786457 waslock = 0 -2786457 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2786485 512 16777728 -~~~ -2786635 512 512 -2786717 DOWN 10 -2786716 0 512 -~~~ -~~~ -2786737 0 2560 -~~~ -~~~ -2786739 0 2048 -2786740 homeCount = 8 -2786740 waitCount = 3 -2786741 ripCount = 2 -2786741 locktype1 = 1 -2786742 locktype2 = 1 -2786742 locktype3 = 0 -2786742 goalCount = 0 -2786743 goalTotal = 0 -2786743 otherCount = 5 -~~~ -2786787 UP 10 -2786787 waslock = 0 -2786787 512 2048 -~~~ -2790582 DOWN 10 -2790582 0 2048 -~~~ -~~~ -~~~ -~~~ -2790611 UP 10 -2790611 waslock = 0 -2790610 512 2048 -2790612 homeCount = 8 -2790613 waitCount = 3 -2790613 ripCount = 2 -2790614 locktype1 = 1 -2790614 locktype2 = 1 -2790615 locktype3 = 0 -2790615 goalCount = 0 -2790616 goalTotal = 0 -2790616 otherCount = 5 -~~~ -~~~ -2790655 DOWN 10 -2790655 0 2048 -~~~ -~~~ -~~~ -~~~ -2790682 homeCount = 8 -2790682 waitCount = 3 -2790683 ripCount = 2 -2790683 locktype1 = 1 -2790684 locktype2 = 1 -2790684 locktype3 = 0 -2790685 goalCount = 0 -2790685 goalTotal = 0 -2790686 otherCount = 5 -~~~ -2791798 UP 12 -2791798 2048 2048 -2792281 DOWN 12 -2792281 0 2048 -2792337 UP 12 -2792337 2048 2048 -2792758 DOWN 12 -2792758 0 2048 -2792844 UP 12 -2792844 2048 2048 -2795298 CLICK1 -2795298 CLICK2 -~~~ -~~~ -~~~ -2795318 2048 67110912 -~~~ -2795468 2048 2048 -2799664 DOWN 12 -2799664 0 2048 -~~~ -~~~ -2799687 0 0 -~~~ -~~~ -2799689 0 1 -~~~ -~~~ -2799690 0 3 -~~~ -~~~ -2799692 0 7 -~~~ -~~~ -2799694 0 15 -~~~ -~~~ -2799696 0 31 -~~~ -~~~ -2799698 0 63 -~~~ -~~~ -2799700 0 127 -~~~ -~~~ -2799701 0 255 -2799702 homeCount = 8 -2799703 waitCount = 4 -2799703 ripCount = 2 -2799704 locktype1 = 1 -2799704 locktype2 = 1 -2799705 locktype3 = 0 -2799726 goalCount = 0 -2799727 goalTotal = 0 -2799727 otherCount = 5 -~~~ -2799728 CURRENTGOAL IS [5] -~~~ -2802199 UP 4 -2802199 8 255 -~~~ -~~~ -2802576 DOWN 4 -2802576 0 255 -2802593 8 255 -~~~ -~~~ -2802609 8 254 -~~~ -~~~ -2802611 8 252 -~~~ -~~~ -2802613 8 248 -~~~ -~~~ -2802615 8 240 -~~~ -~~~ -2802616 8 224 -~~~ -~~~ -2802618 8 192 -~~~ -~~~ -2802620 8 128 -~~~ -~~~ -2802622 8 0 -~~~ -~~~ -2802624 8 512 -2802625 homeCount = 8 -2802625 waitCount = 4 -2802626 ripCount = 2 -2802626 locktype1 = 1 -2802627 locktype2 = 1 -2802648 locktype3 = 0 -2802648 goalCount = 0 -2802649 goalTotal = 0 -2802649 otherCount = 6 -~~~ -2803199 DOWN 4 -2803199 0 512 -2806645 UP 10 -2806645 waslock = 0 -2806645 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2806667 512 16777728 -~~~ -2806808 DOWN 10 -2806808 0 16777728 -2806817 0 512 -~~~ -~~~ -2806832 0 2560 -~~~ -~~~ -2806834 0 2048 -2806835 homeCount = 9 -2806836 waitCount = 4 -2806836 ripCount = 2 -2806837 locktype1 = 1 -2806837 locktype2 = 1 -2806838 locktype3 = 0 -2806838 goalCount = 0 -2806838 goalTotal = 0 -2806839 otherCount = 6 -~~~ -2806843 UP 10 -2806843 waslock = 0 -2806843 512 2048 -~~~ -2807597 DOWN 10 -2807597 0 2048 -~~~ -~~~ -~~~ -~~~ -2807626 homeCount = 9 -2807626 waitCount = 4 -2807627 ripCount = 2 -2807627 locktype1 = 1 -2807628 locktype2 = 1 -2807628 locktype3 = 0 -2807629 goalCount = 0 -2807629 goalTotal = 0 -2807630 otherCount = 6 -~~~ -2810696 UP 11 -2810696 LOCKOUT 1 -2810696 1024 2048 -~~~ -2810723 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2810729 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2810753 DOWN 11 -2810753 0 0 -2810768 UP 11 -2810768 1024 0 -2811250 DOWN 11 -2811250 0 0 -2811286 UP 11 -2811286 1024 0 -2811744 DOWN 11 -2811744 0 0 -2811766 UP 11 -2811766 1024 0 -2811807 DOWN 11 -2811807 0 0 -2811850 UP 11 -2811850 1024 0 -2812828 DOWN 11 -2812828 0 0 -2812876 UP 11 -2812876 1024 0 -2813995 DOWN 11 -2813995 0 0 -2814049 UP 11 -2814049 1024 0 -2815505 DOWN 11 -2815505 0 0 -2819543 UP 8 -2819543 128 0 -2819585 DOWN 8 -2819585 0 0 -2819606 128 0 -2819875 DOWN 8 -2819875 0 0 -2819901 128 0 -2819941 DOWN 8 -2819941 0 0 -2824340 512 0 -2824731 0 0 -2824770 512 0 -2827498 0 0 -2827513 512 0 -2827572 0 0 -2835723 LOCKEND -~~~ -~~~ -~~~ -2835743 0 512 -2837111 UP 3 -2837111 4 512 -2837391 DOWN 3 -2837391 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2837428 homeCount = 9 -2837428 waitCount = 4 -2837429 ripCount = 2 -2837429 locktype1 = 2 -2837430 locktype2 = 1 -2837430 locktype3 = 0 -2837431 goalCount = 0 -2837431 goalTotal = 0 -2837432 otherCount = 6 -~~~ -2837436 4 512 -2837822 DOWN 3 -2837822 0 512 -2837860 4 512 -2838167 DOWN 3 -2838167 0 512 -2838177 4 512 -2838316 DOWN 3 -2838316 0 512 -2838347 4 512 -2839028 DOWN 3 -2839028 0 512 -2839041 4 512 -2839199 DOWN 3 -2839199 0 512 -2839209 4 512 -2841094 DOWN 3 -2841094 0 512 -2841119 4 512 -2841151 DOWN 3 -2841151 0 512 -2845140 UP 10 -2845140 waslock = 0 -2845140 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2845169 512 16777728 -~~~ -2845199 DOWN 10 -2845199 0 16777728 -~~~ -~~~ -2845224 0 16778752 -~~~ -~~~ -2845226 0 16778240 -2845227 homeCount = 10 -2845227 waitCount = 4 -2845228 ripCount = 2 -2845228 locktype1 = 2 -2845229 locktype2 = 1 -2845229 locktype3 = 0 -2845230 goalCount = 0 -2845230 goalTotal = 0 -2845231 otherCount = 6 -~~~ -2845259 UP 10 -2845259 waslock = 0 -2845259 512 16778240 -~~~ -2845319 512 1024 -2845324 DOWN 10 -2845324 0 1024 -~~~ -~~~ -~~~ -~~~ -2845350 homeCount = 10 -2845350 waitCount = 4 -2845351 ripCount = 2 -2845351 locktype1 = 2 -2845352 locktype2 = 1 -2845352 locktype3 = 0 -2845353 goalCount = 0 -2845353 goalTotal = 0 -2845354 otherCount = 6 -~~~ -2845370 UP 10 -2845370 waslock = 0 -2845370 512 1024 -~~~ -2846016 DOWN 10 -2846016 0 1024 -~~~ -~~~ -~~~ -~~~ -2846039 homeCount = 10 -2846039 waitCount = 4 -2846040 ripCount = 2 -2846040 locktype1 = 2 -2846041 locktype2 = 1 -2846041 locktype3 = 0 -2846041 goalCount = 0 -2846042 goalTotal = 0 -2846042 otherCount = 6 -~~~ -2846045 UP 10 -2846045 waslock = 0 -2846045 512 1024 -~~~ -2846440 DOWN 10 -2846440 0 1024 -~~~ -~~~ -~~~ -~~~ -2846469 homeCount = 10 -2846470 waitCount = 4 -2846470 ripCount = 2 -2846471 locktype1 = 2 -2846471 locktype2 = 1 -2846472 locktype3 = 0 -2846472 goalCount = 0 -2846473 goalTotal = 0 -2846473 otherCount = 6 -~~~ -2846499 UP 10 -2846499 waslock = 0 -2846498 512 1024 -~~~ -2846565 DOWN 10 -2846565 0 1024 -~~~ -~~~ -~~~ -~~~ -2846591 homeCount = 10 -2846592 waitCount = 4 -2846592 ripCount = 2 -2846593 locktype1 = 2 -2846593 locktype2 = 1 -2846594 locktype3 = 0 -2846594 goalCount = 0 -2846595 goalTotal = 0 -2846595 otherCount = 6 -~~~ -2847849 UP 11 -2847849 1024 1024 -2849371 DOWN 11 -2849371 0 1024 -2849409 UP 11 -2849409 1024 1024 -2849850 BEEP1 -2849850 BEEP2 -~~~ -~~~ -~~~ -2849879 1024 33555456 -~~~ -2850029 1024 1024 -2855199 DOWN 11 -2855199 0 1024 -~~~ -~~~ -2855227 0 0 -~~~ -~~~ -2855228 0 1 -~~~ -~~~ -2855230 0 3 -~~~ -~~~ -2855232 0 7 -~~~ -~~~ -2855234 0 15 -~~~ -~~~ -2855236 0 31 -~~~ -~~~ -2855237 0 63 -~~~ -~~~ -2855239 0 127 -~~~ -~~~ -2855241 0 255 -2855242 homeCount = 10 -2855243 waitCount = 4 -2855243 ripCount = 3 -2855244 locktype1 = 2 -2855244 locktype2 = 1 -2855245 locktype3 = 0 -2855266 goalCount = 0 -2855266 goalTotal = 0 -2855267 otherCount = 6 -~~~ -2855268 CURRENTGOAL IS [5] -~~~ -2857717 UP 7 -2857717 64 255 -~~~ -~~~ -2858426 DOWN 7 -2858426 0 255 -~~~ -~~~ -2858445 0 254 -~~~ -~~~ -2858447 0 252 -~~~ -~~~ -2858449 0 248 -~~~ -~~~ -2858451 0 240 -~~~ -~~~ -2858453 0 224 -~~~ -~~~ -2858455 0 192 -~~~ -~~~ -2858456 0 128 -~~~ -~~~ -2858458 0 0 -~~~ -~~~ -2858460 0 512 -2858461 homeCount = 10 -2858462 waitCount = 4 -2858462 ripCount = 3 -2858463 locktype1 = 2 -2858463 locktype2 = 1 -2858484 locktype3 = 0 -2858485 goalCount = 0 -2858485 goalTotal = 0 -2858486 otherCount = 7 -~~~ -2858682 64 512 -2859243 DOWN 7 -2859243 0 512 -2859279 64 512 -2859326 DOWN 7 -2859326 0 512 -2862459 UP 10 -2862459 waslock = 0 -2862459 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2862493 512 16777728 -~~~ -2862499 DOWN 10 -2862499 0 16777728 -~~~ -~~~ -2862523 0 16778752 -~~~ -~~~ -2862525 0 16778240 -2862526 homeCount = 11 -2862527 waitCount = 4 -2862527 ripCount = 3 -2862528 locktype1 = 2 -2862528 locktype2 = 1 -2862528 locktype3 = 0 -2862529 goalCount = 0 -2862529 goalTotal = 0 -2862530 otherCount = 7 -~~~ -2862551 UP 10 -2862551 waslock = 0 -2862551 512 16778240 -~~~ -2862643 512 1024 -2862760 DOWN 10 -2862760 0 1024 -~~~ -~~~ -~~~ -~~~ -2862797 homeCount = 11 -2862798 waitCount = 4 -2862798 ripCount = 3 -2862799 locktype1 = 2 -2862799 locktype2 = 1 -2862799 locktype3 = 0 -2862800 goalCount = 0 -2862800 goalTotal = 0 -2862801 otherCount = 7 -~~~ -2862809 UP 10 -2862809 waslock = 0 -2862809 512 1024 -~~~ -2868573 DOWN 10 -2868573 0 1024 -~~~ -~~~ -~~~ -~~~ -2868601 homeCount = 11 -2868602 waitCount = 4 -2868602 ripCount = 3 -2868603 locktype1 = 2 -2868603 locktype2 = 1 -2868604 locktype3 = 0 -2868604 goalCount = 0 -2868605 goalTotal = 0 -2868605 otherCount = 7 -~~~ -2870096 UP 11 -2870096 1024 1024 -2870130 DOWN 11 -2870130 0 1024 -2870158 UP 11 -2870158 1024 1024 -2870493 DOWN 11 -2870493 0 1024 -2870497 UP 11 -2870497 1024 1024 -2871248 DOWN 11 -2871248 0 1024 -2871278 UP 11 -2871278 1024 1024 -2871621 DOWN 11 -2871621 0 1024 -2871738 UP 11 -2871738 1024 1024 -2874346 BEEP1 -2874346 BEEP2 -~~~ -~~~ -~~~ -2874367 1024 33555456 -~~~ -2874517 1024 1024 -2880959 DOWN 11 -2880959 0 1024 -~~~ -~~~ -2880977 0 0 -~~~ -~~~ -2880978 0 1 -~~~ -~~~ -2880980 0 3 -~~~ -~~~ -2880982 0 7 -~~~ -~~~ -2880984 0 15 -~~~ -~~~ -2880986 0 31 -~~~ -~~~ -2880988 0 63 -~~~ -~~~ -2880989 0 127 -~~~ -~~~ -2880991 0 255 -2880992 homeCount = 11 -2880993 waitCount = 4 -2880993 ripCount = 4 -2880994 locktype1 = 2 -2880994 locktype2 = 1 -2880995 locktype3 = 0 -2881016 goalCount = 0 -2881016 goalTotal = 0 -2881017 otherCount = 7 -~~~ -2881018 CURRENTGOAL IS [5] -~~~ -2881018 UP 11 -2881018 1024 255 -2881052 DOWN 11 -2881052 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2881094 homeCount = 11 -2881095 waitCount = 4 -2881095 ripCount = 4 -2881096 locktype1 = 2 -2881096 locktype2 = 1 -2881097 locktype3 = 0 -2881097 goalCount = 0 -2881098 goalTotal = 0 -2881098 otherCount = 7 -~~~ -2881099 CURRENTGOAL IS [5] -~~~ -2883804 UP 5 -2883804 16 255 -~~~ -~~~ -2883831 outer reward -~~~ -2883831 16 1048831 -~~~ -~~~ -2884000 DOWN 5 -2884000 0 1048831 -~~~ -~~~ -2884018 0 1048830 -~~~ -~~~ -2884020 0 1048828 -~~~ -~~~ -2884022 0 1048824 -~~~ -~~~ -2884024 0 1048816 -~~~ -~~~ -2884026 0 1048800 -~~~ -~~~ -2884027 0 1048768 -~~~ -~~~ -2884029 0 1048704 -~~~ -~~~ -2884031 0 1048576 -~~~ -~~~ -2884033 0 1049088 -2884034 homeCount = 11 -2884034 waitCount = 4 -2884035 ripCount = 4 -2884056 locktype1 = 2 -2884056 locktype2 = 1 -2884057 locktype3 = 0 -2884057 goalCount = 1 -2884058 goalTotal = 1 -2884058 otherCount = 7 -~~~ -2884085 16 1049088 -2884281 16 512 -2884488 DOWN 5 -2884488 0 512 -2884507 16 512 -2884624 DOWN 5 -2884624 0 512 -2884646 16 512 -2884762 DOWN 5 -2884762 0 512 -2884788 16 512 -2884901 DOWN 5 -2884901 0 512 -2884928 16 512 -2885047 DOWN 5 -2885047 0 512 -2885071 16 512 -2885212 DOWN 5 -2885212 0 512 -2885215 16 512 -2885512 DOWN 5 -2885512 0 512 -2885526 16 512 -2893817 DOWN 5 -2893817 0 512 -2893879 16 512 -2893901 DOWN 5 -2893901 0 512 -2900132 UP 10 -2900132 waslock = 0 -2900132 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2900165 512 16777728 -~~~ -2900270 DOWN 10 -2900270 0 16777728 -~~~ -~~~ -2900289 0 16779776 -~~~ -~~~ -2900291 0 16779264 -2900292 homeCount = 12 -2900292 waitCount = 4 -2900293 ripCount = 4 -2900293 locktype1 = 2 -2900294 locktype2 = 1 -2900294 locktype3 = 0 -2900295 goalCount = 1 -2900295 goalTotal = 1 -2900296 otherCount = 7 -~~~ -2900317 0 2048 -2900502 UP 10 -2900503 waslock = 0 -2900502 512 2048 -~~~ -2904478 DOWN 10 -2904478 0 2048 -~~~ -~~~ -~~~ -~~~ -2904501 homeCount = 12 -2904501 waitCount = 4 -2904502 ripCount = 4 -2904502 locktype1 = 2 -2904503 locktype2 = 1 -2904503 locktype3 = 0 -2904504 goalCount = 1 -2904504 goalTotal = 1 -2904505 otherCount = 7 -~~~ -2906493 UP 12 -2906493 2048 2048 -2907045 DOWN 12 -2907045 0 2048 -2907073 UP 12 -2907073 2048 2048 -2907265 DOWN 12 -2907265 0 2048 -2907322 UP 12 -2907322 2048 2048 -2908818 DOWN 12 -2908818 0 2048 -2908848 UP 12 -2908848 2048 2048 -2908879 DOWN 12 -2908879 0 2048 -2908896 UP 12 -2908896 2048 2048 -2908993 CLICK1 -2908993 CLICK2 -~~~ -~~~ -~~~ -2909022 2048 67110912 -~~~ -2909172 2048 2048 -2917583 DOWN 12 -2917583 0 2048 -~~~ -~~~ -2917608 0 0 -~~~ -~~~ -2917610 0 1 -~~~ -~~~ -2917612 0 3 -~~~ -~~~ -2917614 0 7 -~~~ -~~~ -2917616 0 15 -~~~ -~~~ -2917618 0 31 -~~~ -~~~ -2917619 0 63 -~~~ -~~~ -2917621 0 127 -~~~ -~~~ -2917623 0 255 -2917624 homeCount = 12 -2917624 waitCount = 5 -2917625 ripCount = 4 -2917625 locktype1 = 2 -2917626 locktype2 = 1 -2917626 locktype3 = 0 -2917647 goalCount = 1 -2917648 goalTotal = 1 -2917648 otherCount = 7 -~~~ -2917649 CURRENTGOAL IS [5] -~~~ -2926969 UP 10 -2926969 waslock = 0 -2926969 512 255 -~~~ -2926992 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2926999 512 254 -~~~ -~~~ -2927001 512 252 -~~~ -~~~ -2927003 512 248 -~~~ -~~~ -2927005 512 240 -~~~ -~~~ -2927006 512 224 -~~~ -~~~ -2927008 512 192 -~~~ -~~~ -2927010 512 128 -~~~ -~~~ -2927012 512 0 -~~~ -~~~ -~~~ -2927150 0 0 -2927358 512 0 -2927666 0 0 -2929005 UP 11 -2929005 1024 0 -2930091 DOWN 11 -2930091 0 0 -2930141 UP 11 -2930141 1024 0 -2930869 DOWN 11 -2930869 0 0 -2930890 UP 11 -2930890 1024 0 -2930901 DOWN 11 -2930901 0 0 -2930965 UP 11 -2930965 1024 0 -2932611 DOWN 11 -2932611 0 0 -2932703 UP 11 -2932703 1024 0 -2932933 DOWN 11 -2932933 0 0 -2937462 512 0 -2938258 0 0 -2938311 512 0 -2938361 0 0 -2938456 512 0 -2938511 0 0 -2938584 512 0 -2938784 0 0 -2950209 512 0 -2950384 0 0 -2951992 LOCKEND -~~~ -~~~ -~~~ -2952011 0 512 -2955226 UP 10 -2955226 waslock = 0 -2955226 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2955256 512 16777728 -~~~ -2955406 512 512 -2955469 DOWN 10 -2955469 0 512 -~~~ -~~~ -2955491 0 1536 -~~~ -~~~ -2955492 0 1024 -2955493 homeCount = 13 -2955494 waitCount = 5 -2955494 ripCount = 4 -2955495 locktype1 = 2 -2955495 locktype2 = 2 -2955496 locktype3 = 0 -2955496 goalCount = 1 -2955497 goalTotal = 1 -2955497 otherCount = 7 -~~~ -2955567 UP 10 -2955567 waslock = 0 -2955567 512 1024 -~~~ -2959020 DOWN 10 -2959020 0 1024 -2959034 UP 10 -2959035 waslock = 0 -2959034 512 1024 -~~~ -~~~ -~~~ -~~~ -2959056 homeCount = 13 -2959056 waitCount = 5 -2959057 ripCount = 4 -2959057 locktype1 = 2 -2959057 locktype2 = 2 -2959058 locktype3 = 0 -2959058 goalCount = 1 -2959059 goalTotal = 1 -2959059 otherCount = 7 -~~~ -~~~ -2959132 DOWN 10 -2959132 0 1024 -~~~ -~~~ -~~~ -~~~ -2959154 homeCount = 13 -2959154 waitCount = 5 -2959155 ripCount = 4 -2959155 locktype1 = 2 -2959156 locktype2 = 2 -2959156 locktype3 = 0 -2959157 goalCount = 1 -2959157 goalTotal = 1 -2959158 otherCount = 7 -~~~ -2960777 UP 11 -2960777 1024 1024 -2962087 DOWN 11 -2962087 0 1024 -2962136 UP 11 -2962136 1024 1024 -2964777 BEEP1 -2964777 BEEP2 -~~~ -~~~ -~~~ -2964802 1024 33555456 -~~~ -2964952 1024 1024 -2971806 DOWN 11 -2971806 0 1024 -~~~ -~~~ -2971831 0 0 -~~~ -~~~ -2971833 0 1 -~~~ -~~~ -2971835 0 3 -~~~ -~~~ -2971837 0 7 -~~~ -~~~ -2971838 0 15 -~~~ -~~~ -2971840 0 31 -~~~ -~~~ -2971842 0 63 -~~~ -~~~ -2971844 0 127 -~~~ -~~~ -2971846 0 255 -2971847 homeCount = 13 -2971847 waitCount = 5 -2971848 ripCount = 5 -2971848 locktype1 = 2 -2971849 locktype2 = 2 -2971870 locktype3 = 0 -2971870 goalCount = 1 -2971871 goalTotal = 1 -2971871 otherCount = 7 -~~~ -2971872 CURRENTGOAL IS [5] -~~~ -2971877 UP 11 -2971877 1024 255 -2971903 DOWN 11 -2971903 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2971937 homeCount = 13 -2971938 waitCount = 5 -2971938 ripCount = 5 -2971939 locktype1 = 2 -2971939 locktype2 = 2 -2971940 locktype3 = 0 -2971940 goalCount = 1 -2971940 goalTotal = 1 -2971941 otherCount = 7 -~~~ -2971942 CURRENTGOAL IS [5] -~~~ -2976396 UP 5 -2976396 16 255 -~~~ -~~~ -2976414 outer reward -~~~ -2976414 16 1048831 -~~~ -~~~ -2976423 DOWN 5 -2976423 0 1048831 -~~~ -~~~ -2976442 0 1048830 -~~~ -~~~ -2976444 0 1048828 -~~~ -~~~ -2976446 0 1048824 -~~~ -~~~ -2976448 0 1048816 -~~~ -~~~ -2976450 0 1048800 -~~~ -~~~ -2976451 0 1048768 -~~~ -~~~ -2976453 0 1048704 -~~~ -~~~ -2976455 0 1048576 -~~~ -~~~ -2976457 0 1049088 -2976458 homeCount = 13 -2976459 waitCount = 5 -2976459 ripCount = 5 -2976480 locktype1 = 2 -2976481 locktype2 = 2 -2976481 locktype3 = 0 -2976482 goalCount = 2 -2976482 goalTotal = 2 -2976483 otherCount = 7 -~~~ -2976745 16 1049088 -2976864 16 512 -2977119 DOWN 5 -2977119 0 512 -2977139 16 512 -2977247 DOWN 5 -2977247 0 512 -2977273 16 512 -2977378 DOWN 5 -2977378 0 512 -2977408 16 512 -2977520 DOWN 5 -2977520 0 512 -2977546 16 512 -2977661 DOWN 5 -2977661 0 512 -2977678 16 512 -2977805 DOWN 5 -2977805 0 512 -2977822 16 512 -2977954 DOWN 5 -2977954 0 512 -2977960 16 512 -2978103 DOWN 5 -2978103 0 512 -2978108 16 512 -2984704 DOWN 5 -2984704 0 512 -2984779 16 512 -2984829 DOWN 5 -2984829 0 512 -2988561 UP 10 -2988561 waslock = 0 -2988561 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2988589 512 16777728 -~~~ -2988710 DOWN 10 -2988710 0 16777728 -~~~ -~~~ -2988736 0 16779776 -~~~ -~~~ -2988737 0 16779264 -2988738 homeCount = 14 -2988739 waitCount = 5 -2988739 ripCount = 5 -2988740 locktype1 = 2 -2988740 locktype2 = 2 -2988741 locktype3 = 0 -2988741 goalCount = 2 -2988742 goalTotal = 2 -2988742 otherCount = 7 -~~~ -2988763 0 2048 -2988869 UP 10 -2988869 waslock = 0 -2988869 512 2048 -~~~ -2992466 DOWN 10 -2992466 0 2048 -~~~ -~~~ -~~~ -~~~ -2992487 homeCount = 14 -2992487 waitCount = 5 -2992488 ripCount = 5 -2992488 locktype1 = 2 -2992489 locktype2 = 2 -2992489 locktype3 = 0 -2992490 goalCount = 2 -2992490 goalTotal = 2 -2992491 otherCount = 7 -~~~ -2994131 UP 12 -2994131 2048 2048 -2994583 DOWN 12 -2994583 0 2048 -2994618 UP 12 -2994618 2048 2048 -2997762 DOWN 12 -2997762 0 2048 -2997801 UP 12 -2997801 2048 2048 -2998062 DOWN 12 -2998062 0 2048 -2998088 UP 12 -2998088 2048 2048 -2998631 CLICK1 -2998631 CLICK2 -~~~ -~~~ -~~~ -2998655 2048 67110912 -~~~ -2998805 2048 2048 -3004157 DOWN 12 -3004156 0 2048 -~~~ -~~~ -3004183 0 0 -~~~ -~~~ -3004185 0 1 -~~~ -~~~ -3004187 0 3 -~~~ -~~~ -3004188 0 7 -~~~ -~~~ -3004190 0 15 -~~~ -~~~ -3004192 0 31 -~~~ -~~~ -3004194 0 63 -~~~ -~~~ -3004196 0 127 -~~~ -~~~ -3004197 0 255 -3004198 homeCount = 14 -3004199 waitCount = 6 -3004199 ripCount = 5 -3004200 locktype1 = 2 -3004200 locktype2 = 2 -3004201 locktype3 = 0 -3004222 goalCount = 2 -3004222 goalTotal = 2 -3004223 otherCount = 7 -~~~ -3004224 CURRENTGOAL IS [5] -~~~ -3008015 UP 4 -3008015 8 255 -~~~ -~~~ -3008683 DOWN 4 -3008683 0 255 -~~~ -~~~ -3008705 0 254 -~~~ -~~~ -3008706 0 252 -~~~ -~~~ -3008708 0 248 -~~~ -~~~ -3008710 0 240 -~~~ -~~~ -3008712 0 224 -~~~ -~~~ -3008714 0 192 -~~~ -~~~ -3008716 0 128 -~~~ -~~~ -3008717 0 0 -~~~ -~~~ -3008719 0 512 -3008720 homeCount = 14 -3008721 waitCount = 6 -3008721 ripCount = 5 -3008722 locktype1 = 2 -3008722 locktype2 = 2 -3008743 locktype3 = 0 -3008743 goalCount = 2 -3008744 goalTotal = 2 -3008744 otherCount = 8 -~~~ -3008745 8 512 -3008988 DOWN 4 -3008988 0 512 -3012101 UP 10 -3012101 waslock = 0 -3012101 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3012131 512 16777728 -~~~ -3012281 512 512 -3012321 DOWN 10 -3012321 0 512 -3012338 UP 10 -3012338 waslock = 0 -3012338 512 512 -~~~ -~~~ -3012356 512 1536 -~~~ -~~~ -3012358 512 1024 -3012359 homeCount = 15 -3012359 waitCount = 6 -3012360 ripCount = 5 -3012360 locktype1 = 2 -3012361 locktype2 = 2 -3012361 locktype3 = 0 -3012362 goalCount = 2 -3012362 goalTotal = 2 -3012363 otherCount = 8 -~~~ -~~~ -3016884 DOWN 10 -3016884 0 1024 -~~~ -~~~ -~~~ -~~~ -3016910 homeCount = 15 -3016910 waitCount = 6 -3016911 ripCount = 5 -3016911 locktype1 = 2 -3016912 locktype2 = 2 -3016912 locktype3 = 0 -3016913 goalCount = 2 -3016913 goalTotal = 2 -3016913 otherCount = 8 -~~~ -3016929 UP 10 -3016930 waslock = 0 -3016929 512 1024 -~~~ -3016971 DOWN 10 -3016971 0 1024 -~~~ -~~~ -~~~ -~~~ -3017003 homeCount = 15 -3017004 waitCount = 6 -3017004 ripCount = 5 -3017005 locktype1 = 2 -3017005 locktype2 = 2 -3017006 locktype3 = 0 -3017006 goalCount = 2 -3017007 goalTotal = 2 -3017007 otherCount = 8 -~~~ -3018772 UP 11 -3018772 1024 1024 -3022772 BEEP1 -3022772 BEEP2 -~~~ -~~~ -~~~ -3022798 1024 33555456 -~~~ -3022948 1024 1024 -3026798 DOWN 11 -3026798 0 1024 -3026812 UP 11 -3026812 1024 1024 -~~~ -~~~ -3026816 1024 0 -~~~ -~~~ -3026818 1024 1 -~~~ -~~~ -3026820 1024 3 -~~~ -~~~ -3026822 1024 7 -~~~ -~~~ -3026824 1024 15 -~~~ -~~~ -3026826 1024 31 -~~~ -~~~ -3026827 1024 63 -~~~ -~~~ -3026829 1024 127 -~~~ -~~~ -3026831 1024 255 -3026832 homeCount = 15 -3026833 waitCount = 6 -3026833 ripCount = 6 -3026834 locktype1 = 2 -3026855 locktype2 = 2 -3026855 locktype3 = 0 -3026856 goalCount = 2 -3026856 goalTotal = 2 -3026857 otherCount = 8 -~~~ -3026858 CURRENTGOAL IS [5] -~~~ -3029131 DOWN 11 -3029131 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3029172 homeCount = 15 -3029172 waitCount = 6 -3029173 ripCount = 6 -3029173 locktype1 = 2 -3029174 locktype2 = 2 -3029174 locktype3 = 0 -3029175 goalCount = 2 -3029175 goalTotal = 2 -3029176 otherCount = 8 -~~~ -3029177 CURRENTGOAL IS [5] -~~~ -3029180 UP 11 -3029180 1024 255 -3029224 DOWN 11 -3029224 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3029261 homeCount = 15 -3029262 waitCount = 6 -3029262 ripCount = 6 -3029263 locktype1 = 2 -3029263 locktype2 = 2 -3029264 locktype3 = 0 -3029264 goalCount = 2 -3029265 goalTotal = 2 -3029265 otherCount = 8 -~~~ -3029266 CURRENTGOAL IS [5] -~~~ -3033041 UP 5 -3033041 16 255 -~~~ -~~~ -3033069 outer reward -~~~ -3033069 16 1048831 -~~~ -~~~ -3033156 DOWN 5 -3033156 0 1048831 -~~~ -~~~ -3033176 0 1048830 -~~~ -~~~ -3033178 0 1048828 -~~~ -~~~ -3033180 0 1048824 -~~~ -~~~ -3033182 0 1048816 -~~~ -~~~ -3033183 0 1048800 -~~~ -~~~ -3033185 0 1048768 -~~~ -~~~ -3033187 0 1048704 -~~~ -~~~ -3033189 0 1048576 -~~~ -~~~ -3033191 0 1049088 -3033192 homeCount = 15 -3033192 waitCount = 6 -3033193 ripCount = 6 -3033214 locktype1 = 2 -3033214 locktype2 = 2 -3033215 locktype3 = 0 -3033215 goalCount = 3 -3033215 goalTotal = 3 -3033216 otherCount = 8 -~~~ -3033216 16 1049088 -3033519 16 512 -3033749 DOWN 5 -3033749 0 512 -3033766 16 512 -3033865 DOWN 5 -3033865 0 512 -3033899 16 512 -3033999 DOWN 5 -3033999 0 512 -3034031 16 512 -3034141 DOWN 5 -3034141 0 512 -3034169 16 512 -3034280 DOWN 5 -3034280 0 512 -3034309 16 512 -3034429 DOWN 5 -3034429 0 512 -3034450 16 512 -3034576 DOWN 5 -3034576 0 512 -3034597 16 512 -3035054 DOWN 5 -3035054 0 512 -3035067 16 512 -3042062 DOWN 5 -3042062 0 512 -3042075 16 512 -3042174 DOWN 5 -3042174 0 512 -3045701 UP 10 -3045701 waslock = 0 -3045701 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3045733 512 16777728 -~~~ -3045883 512 512 -3045949 DOWN 10 -3045949 0 512 -3045963 UP 10 -3045963 waslock = 0 -3045963 512 512 -~~~ -~~~ -3045967 512 2560 -~~~ -~~~ -3045969 512 2048 -3045970 homeCount = 16 -3045970 waitCount = 6 -3045971 ripCount = 6 -3045971 locktype1 = 2 -3045972 locktype2 = 2 -3045972 locktype3 = 0 -3045973 goalCount = 3 -3045973 goalTotal = 3 -3045973 otherCount = 8 -~~~ -~~~ -3051491 DOWN 10 -3051491 0 2048 -~~~ -~~~ -~~~ -~~~ -3051519 homeCount = 16 -3051520 waitCount = 6 -3051520 ripCount = 6 -3051521 locktype1 = 2 -3051521 locktype2 = 2 -3051522 locktype3 = 0 -3051522 goalCount = 3 -3051523 goalTotal = 3 -3051523 otherCount = 8 -~~~ -3053813 UP 12 -3053813 2048 2048 -3054243 DOWN 12 -3054243 0 2048 -3054339 UP 12 -3054339 2048 2048 -3054607 DOWN 12 -3054607 0 2048 -3054671 UP 12 -3054671 2048 2048 -3056813 CLICK1 -3056813 CLICK2 -~~~ -~~~ -~~~ -3056838 2048 67110912 -~~~ -3056987 2048 2048 -3061603 DOWN 12 -3061603 0 2048 -~~~ -~~~ -3061626 0 0 -~~~ -~~~ -3061627 0 1 -~~~ -~~~ -3061629 0 3 -~~~ -~~~ -3061631 0 7 -~~~ -~~~ -3061633 0 15 -~~~ -~~~ -3061635 0 31 -~~~ -~~~ -3061636 0 63 -~~~ -~~~ -3061638 0 127 -~~~ -~~~ -3061640 0 255 -3061641 homeCount = 16 -3061642 waitCount = 7 -3061642 ripCount = 6 -3061643 locktype1 = 2 -3061643 locktype2 = 2 -3061664 locktype3 = 0 -3061665 goalCount = 3 -3061665 goalTotal = 3 -3061666 otherCount = 8 -~~~ -3061667 CURRENTGOAL IS [5] -~~~ -3065106 UP 5 -3065106 16 255 -~~~ -~~~ -3065129 outer reward -~~~ -3065130 16 1048831 -~~~ -~~~ -3065146 DOWN 5 -3065146 0 1048831 -~~~ -~~~ -3065166 0 1048830 -~~~ -~~~ -3065168 0 1048828 -~~~ -~~~ -3065170 0 1048824 -~~~ -~~~ -3065171 0 1048816 -~~~ -~~~ -3065173 0 1048800 -~~~ -~~~ -3065175 0 1048768 -~~~ -~~~ -3065177 0 1048704 -~~~ -~~~ -3065179 0 1048576 -~~~ -~~~ -3065181 0 1049088 -3065182 homeCount = 16 -3065182 waitCount = 7 -3065183 ripCount = 6 -3065204 locktype1 = 2 -3065204 locktype2 = 2 -3065205 locktype3 = 0 -3065205 goalCount = 4 -3065206 goalTotal = 4 -3065206 otherCount = 8 -~~~ -3065207 16 1049088 -3065270 DOWN 5 -3065270 0 1049088 -3065325 16 1049088 -3065579 16 512 -3065887 DOWN 5 -3065887 0 512 -3065911 16 512 -3066021 DOWN 5 -3066021 0 512 -3066053 16 512 -3066168 DOWN 5 -3066168 0 512 -3066196 16 512 -3066317 DOWN 5 -3066317 0 512 -3066340 16 512 -3074351 DOWN 5 -3074351 0 512 -3074360 16 512 -3075013 DOWN 5 -3075013 0 512 -3075057 16 512 -3076432 DOWN 5 -3076432 0 512 -3080377 UP 10 -3080378 waslock = 0 -3080377 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3080403 512 16777728 -~~~ -3080553 512 512 -3080585 DOWN 10 -3080585 0 512 -~~~ -~~~ -3080606 0 2560 -~~~ -~~~ -3080608 0 2048 -3080609 homeCount = 17 -3080610 waitCount = 7 -3080610 ripCount = 6 -3080611 locktype1 = 2 -3080611 locktype2 = 2 -3080612 locktype3 = 0 -3080612 goalCount = 4 -3080613 goalTotal = 4 -3080613 otherCount = 8 -~~~ -3080614 UP 10 -3080635 waslock = 0 -3080614 512 2048 -~~~ -3084727 DOWN 10 -3084727 0 2048 -~~~ -~~~ -~~~ -3084747 UP 10 -3084747 waslock = 0 -3084747 512 2048 -~~~ -3084749 homeCount = 17 -3084750 waitCount = 7 -3084750 ripCount = 6 -3084751 locktype1 = 2 -3084751 locktype2 = 2 -3084751 locktype3 = 0 -3084752 goalCount = 4 -3084752 goalTotal = 4 -3084753 otherCount = 8 -~~~ -~~~ -3084815 DOWN 10 -3084815 0 2048 -~~~ -~~~ -~~~ -~~~ -3084840 homeCount = 17 -3084840 waitCount = 7 -3084841 ripCount = 6 -3084841 locktype1 = 2 -3084842 locktype2 = 2 -3084842 locktype3 = 0 -3084843 goalCount = 4 -3084843 goalTotal = 4 -3084844 otherCount = 8 -~~~ -3086263 UP 12 -3086263 2048 2048 -3086712 DOWN 12 -3086712 0 2048 -3086759 UP 12 -3086759 2048 2048 -3088514 CLICK1 -3088514 CLICK2 -~~~ -~~~ -~~~ -3088539 2048 67110912 -~~~ -3088689 2048 2048 -3093822 DOWN 12 -3093822 0 2048 -~~~ -~~~ -3093848 0 0 -~~~ -~~~ -3093849 0 1 -~~~ -~~~ -3093851 0 3 -~~~ -~~~ -3093853 0 7 -~~~ -~~~ -3093855 0 15 -~~~ -~~~ -3093857 0 31 -~~~ -~~~ -3093858 0 63 -~~~ -~~~ -3093860 0 127 -~~~ -~~~ -3093862 0 255 -3093863 homeCount = 17 -3093864 waitCount = 8 -3093864 ripCount = 6 -3093865 locktype1 = 2 -3093865 locktype2 = 2 -3093866 locktype3 = 0 -3093887 goalCount = 4 -3093887 goalTotal = 4 -3093888 otherCount = 8 -~~~ -3093889 CURRENTGOAL IS [5] -~~~ -3093890 UP 12 -3093890 2048 255 -3096724 DOWN 12 -3096724 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3096762 homeCount = 17 -3096762 waitCount = 8 -3096763 ripCount = 6 -3096763 locktype1 = 2 -3096764 locktype2 = 2 -3096764 locktype3 = 0 -3096765 goalCount = 4 -3096765 goalTotal = 4 -3096766 otherCount = 8 -~~~ -3096767 CURRENTGOAL IS [5] -~~~ -3096796 UP 12 -3096796 2048 255 -3096833 DOWN 12 -3096833 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3096874 homeCount = 17 -3096874 waitCount = 8 -3096875 ripCount = 6 -3096875 locktype1 = 2 -3096876 locktype2 = 2 -3096876 locktype3 = 0 -3096877 goalCount = 4 -3096877 goalTotal = 4 -3096877 otherCount = 8 -~~~ -3096879 CURRENTGOAL IS [5] -~~~ -3100868 UP 5 -3100868 16 255 -~~~ -~~~ -3100887 outer reward -~~~ -3100888 16 1048831 -~~~ -~~~ -3100913 DOWN 5 -3100913 0 1048831 -~~~ -~~~ -3100937 0 1048830 -~~~ -~~~ -3100939 0 1048828 -~~~ -~~~ -3100941 0 1048824 -~~~ -~~~ -3100942 0 1048816 -~~~ -~~~ -3100944 0 1048800 -~~~ -~~~ -3100946 0 1048768 -~~~ -~~~ -3100948 0 1048704 -~~~ -3100949 16 1048704 -~~~ -~~~ -3100951 16 1048576 -~~~ -3100952 16 1049088 -3100953 homeCount = 17 -3100953 waitCount = 8 -3100974 ripCount = 6 -3100975 locktype1 = 2 -3100975 locktype2 = 2 -3100976 locktype3 = 0 -3100976 goalCount = 5 -3100977 goalTotal = 5 -3100977 otherCount = 8 -~~~ -3101030 DOWN 5 -3101030 0 1049088 -3101085 16 1049088 -3101337 16 512 -3101521 DOWN 5 -3101521 0 512 -3101537 16 512 -3101644 DOWN 5 -3101644 0 512 -3101675 16 512 -3101791 DOWN 5 -3101791 0 512 -3101820 16 512 -3101934 DOWN 5 -3101934 0 512 -3101961 16 512 -3110337 DOWN 5 -3110337 0 512 -3110357 16 512 -3110459 DOWN 5 -3110459 0 512 -3110518 16 512 -3110553 DOWN 5 -3110553 0 512 -3115418 UP 10 -3115418 waslock = 0 -3115418 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3115442 512 16777728 -~~~ -3115592 512 512 -3115661 DOWN 10 -3115661 0 512 -~~~ -~~~ -3115693 0 2560 -~~~ -~~~ -3115694 0 2048 -3115695 homeCount = 18 -3115696 waitCount = 8 -3115696 ripCount = 6 -3115697 locktype1 = 2 -3115697 locktype2 = 2 -3115698 locktype3 = 0 -3115698 goalCount = 5 -3115699 goalTotal = 5 -3115699 otherCount = 8 -~~~ -3115746 UP 10 -3115746 waslock = 0 -3115746 512 2048 -~~~ -3119352 DOWN 10 -3119352 0 2048 -~~~ -~~~ -~~~ -~~~ -3119379 homeCount = 18 -3119379 waitCount = 8 -3119380 ripCount = 6 -3119380 locktype1 = 2 -3119381 locktype2 = 2 -3119381 locktype3 = 0 -3119382 goalCount = 5 -3119382 goalTotal = 5 -3119383 otherCount = 8 -~~~ -3120777 UP 12 -3120777 2048 2048 -3123277 CLICK1 -3123277 CLICK2 -~~~ -~~~ -~~~ -3123299 2048 67110912 -~~~ -3123449 2048 2048 -3130663 DOWN 12 -3130663 0 2048 -~~~ -~~~ -3130687 0 0 -~~~ -~~~ -3130689 0 1 -~~~ -~~~ -3130691 0 3 -~~~ -~~~ -3130693 0 7 -~~~ -~~~ -3130695 0 15 -~~~ -~~~ -3130696 0 31 -~~~ -~~~ -3130698 0 63 -~~~ -~~~ -3130700 0 127 -~~~ -~~~ -3130702 0 255 -3130703 homeCount = 18 -3130703 waitCount = 9 -3130704 ripCount = 6 -3130704 locktype1 = 2 -3130705 locktype2 = 2 -3130705 locktype3 = 0 -3130726 goalCount = 5 -3130726 goalTotal = 5 -3130727 otherCount = 8 -~~~ -3130728 CURRENTGOAL IS [5] -~~~ -3130749 UP 12 -3130749 2048 255 -3130773 DOWN 12 -3130773 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3130808 homeCount = 18 -3130809 waitCount = 9 -3130809 ripCount = 6 -3130810 locktype1 = 2 -3130810 locktype2 = 2 -3130811 locktype3 = 0 -3130811 goalCount = 5 -3130812 goalTotal = 5 -3130812 otherCount = 8 -~~~ -3130813 CURRENTGOAL IS [5] -~~~ -3130908 UP 12 -3130908 2048 255 -3131207 DOWN 12 -3131207 0 255 -3131223 UP 12 -3131223 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131244 homeCount = 18 -3131244 waitCount = 9 -3131245 ripCount = 6 -3131245 locktype1 = 2 -3131246 locktype2 = 2 -3131246 locktype3 = 0 -3131247 goalCount = 5 -3131247 goalTotal = 5 -3131248 otherCount = 8 -~~~ -3131249 CURRENTGOAL IS [5] -~~~ -3131887 DOWN 12 -3131887 0 255 -3131901 UP 12 -3131901 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131929 DOWN 12 -3131929 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131935 homeCount = 18 -3131936 waitCount = 9 -3131936 ripCount = 6 -3131937 locktype1 = 2 -3131937 locktype2 = 2 -3131938 locktype3 = 0 -3131938 goalCount = 5 -3131939 goalTotal = 5 -3131939 otherCount = 8 -~~~ -3131940 CURRENTGOAL IS [5] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131976 homeCount = 18 -3131977 waitCount = 9 -3131977 ripCount = 6 -3131978 locktype1 = 2 -3131978 locktype2 = 2 -3131978 locktype3 = 0 -3131979 goalCount = 5 -3131979 goalTotal = 5 -3131980 otherCount = 8 -~~~ -3131981 CURRENTGOAL IS [5] -~~~ -3135451 UP 5 -3135451 16 255 -~~~ -~~~ -3135472 outer reward -~~~ -3135472 16 1048831 -~~~ -~~~ -3135498 DOWN 5 -3135498 0 1048831 -~~~ -~~~ -3135518 0 1048830 -~~~ -~~~ -3135520 0 1048828 -~~~ -~~~ -3135521 0 1048824 -~~~ -~~~ -3135523 0 1048816 -~~~ -~~~ -3135525 0 1048800 -~~~ -~~~ -3135527 0 1048768 -~~~ -~~~ -3135529 0 1048704 -~~~ -~~~ -3135531 0 1048576 -~~~ -~~~ -3135533 0 1049088 -3135534 homeCount = 18 -3135534 waitCount = 9 -3135534 ripCount = 6 -3135555 locktype1 = 2 -3135556 locktype2 = 2 -3135556 locktype3 = 0 -3135557 goalCount = 6 -3135557 goalTotal = 6 -3135558 otherCount = 8 -~~~ -3135701 16 1049088 -3135922 16 512 -3136141 DOWN 5 -3136141 0 512 -3136162 16 512 -3136267 DOWN 5 -3136267 0 512 -3136300 16 512 -3136417 DOWN 5 -3136417 0 512 -3136440 16 512 -3136571 DOWN 5 -3136571 0 512 -3136593 16 512 -3136726 DOWN 5 -3136726 0 512 -3136735 16 512 -3144812 DOWN 5 -3144812 0 512 -3144860 16 512 -3144921 DOWN 5 -3144921 0 512 -3149602 UP 10 -3149602 waslock = 0 -3149602 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3149626 512 16777728 -~~~ -3149776 512 512 -3149906 DOWN 10 -3149906 0 512 -~~~ -~~~ -3149930 0 2560 -~~~ -~~~ -3149931 0 2048 -3149932 homeCount = 19 -3149933 waitCount = 9 -3149933 ripCount = 6 -3149934 locktype1 = 2 -3149934 locktype2 = 2 -3149935 locktype3 = 0 -3149935 goalCount = 6 -3149936 goalTotal = 6 -3149936 otherCount = 8 -~~~ -3149950 UP 10 -3149950 waslock = 0 -3149950 512 2048 -~~~ -3154133 DOWN 10 -3154133 0 2048 -~~~ -~~~ -~~~ -~~~ -3154161 homeCount = 19 -3154161 waitCount = 9 -3154162 ripCount = 6 -3154162 locktype1 = 2 -3154163 locktype2 = 2 -3154163 locktype3 = 0 -3154164 goalCount = 6 -3154164 goalTotal = 6 -3154165 otherCount = 8 -~~~ -3155594 UP 12 -3155594 2048 2048 -3158393 DOWN 12 -3158393 0 2048 -3158406 UP 12 -3158406 2048 2048 -3158844 CLICK1 -3158844 CLICK2 -~~~ -~~~ -~~~ -3158876 2048 67110912 -~~~ -3159026 2048 2048 -3163507 DOWN 12 -3163507 0 2048 -~~~ -~~~ -3163529 0 0 -~~~ -~~~ -3163531 0 1 -~~~ -~~~ -3163533 0 3 -~~~ -~~~ -3163535 0 7 -~~~ -~~~ -3163536 0 15 -~~~ -~~~ -3163538 0 31 -~~~ -~~~ -3163540 0 63 -~~~ -~~~ -3163542 0 127 -~~~ -~~~ -3163544 0 255 -3163545 homeCount = 19 -3163545 waitCount = 10 -3163546 ripCount = 6 -3163546 locktype1 = 2 -3163547 locktype2 = 2 -3163568 locktype3 = 0 -3163568 goalCount = 6 -3163569 goalTotal = 6 -3163569 otherCount = 8 -~~~ -3163570 CURRENTGOAL IS [5] -~~~ -3163578 UP 12 -3163578 2048 255 -3163598 DOWN 12 -3163598 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3163638 homeCount = 19 -3163638 waitCount = 10 -3163639 ripCount = 6 -3163639 locktype1 = 2 -3163640 locktype2 = 2 -3163640 locktype3 = 0 -3163641 goalCount = 6 -3163641 goalTotal = 6 -3163642 otherCount = 8 -~~~ -3163643 CURRENTGOAL IS [5] -~~~ -3166713 UP 5 -3166713 16 255 -~~~ -~~~ -3166733 outer reward -~~~ -3166734 16 1048831 -~~~ -~~~ -3166852 DOWN 5 -3166852 0 1048831 -~~~ -~~~ -3166871 0 1048830 -~~~ -~~~ -3166872 0 1048828 -~~~ -~~~ -3166874 0 1048824 -~~~ -~~~ -3166876 0 1048816 -~~~ -~~~ -3166878 0 1048800 -~~~ -~~~ -3166880 0 1048768 -~~~ -~~~ -3166881 0 1048704 -~~~ -~~~ -3166883 0 1048576 -~~~ -~~~ -3166885 0 1049088 -3166886 homeCount = 19 -3166887 waitCount = 10 -3166887 ripCount = 6 -3166908 locktype1 = 2 -3166909 locktype2 = 2 -3166909 locktype3 = 0 -3166910 goalCount = 7 -3166910 goalTotal = 7 -3166911 otherCount = 8 -~~~ -3166920 16 1049088 -3167183 16 512 -3167467 DOWN 5 -3167467 0 512 -3167492 16 512 -3167596 DOWN 5 -3167596 0 512 -3167627 16 512 -3167749 DOWN 5 -3167749 0 512 -3167769 16 512 -3167902 DOWN 5 -3167902 0 512 -3167918 16 512 -3168063 DOWN 5 -3168063 0 512 -3168067 16 512 -3168216 DOWN 5 -3168216 0 512 -3168221 16 512 -3173245 DOWN 5 -3173245 0 512 -3173274 16 512 -3173358 DOWN 5 -3173358 0 512 -3173398 16 512 -3173533 DOWN 5 -3173533 0 512 -3173545 16 512 -3174748 DOWN 5 -3174748 0 512 -3178391 UP 10 -3178391 waslock = 0 -3178391 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3178419 512 16777728 -~~~ -3178513 DOWN 10 -3178513 0 16777728 -~~~ -~~~ -3178533 0 16779776 -~~~ -~~~ -3178535 0 16779264 -3178536 homeCount = 20 -3178536 waitCount = 10 -3178537 ripCount = 6 -3178537 locktype1 = 2 -3178538 locktype2 = 2 -3178538 locktype3 = 0 -3178539 goalCount = 7 -3178539 goalTotal = 7 -3178540 otherCount = 8 -~~~ -3178565 UP 10 -3178565 waslock = 0 -3178565 512 16779264 -3178569 512 2048 -~~~ -3181110 DOWN 10 -3181110 0 2048 -~~~ -~~~ -~~~ -~~~ -3181136 homeCount = 20 -3181137 waitCount = 10 -3181137 ripCount = 6 -3181138 locktype1 = 2 -3181138 locktype2 = 2 -3181138 locktype3 = 0 -3181139 goalCount = 7 -3181139 goalTotal = 7 -3181140 otherCount = 8 -~~~ -3181148 UP 10 -3181148 waslock = 0 -3181148 512 2048 -~~~ -3182879 DOWN 10 -3182879 0 2048 -~~~ -~~~ -~~~ -~~~ -3182909 homeCount = 20 -3182909 waitCount = 10 -3182910 ripCount = 6 -3182910 locktype1 = 2 -3182911 locktype2 = 2 -3182911 locktype3 = 0 -3182912 goalCount = 7 -3182912 goalTotal = 7 -3182912 otherCount = 8 -~~~ -3184248 UP 12 -3184248 2048 2048 -3184441 DOWN 12 -3184441 0 2048 -3184642 LOCKOUT 3 -~~~ -3184664 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3184670 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3184821 UP 12 -3184821 2048 0 -3186676 DOWN 12 -3186676 0 0 -3186687 UP 12 -3186687 2048 0 -3186880 DOWN 12 -3186880 0 0 -3186888 UP 12 -3186888 2048 0 -3192209 DOWN 12 -3192209 0 0 -3203995 512 0 -3204208 0 0 -3204247 512 0 -3204551 0 0 -3209664 LOCKEND -~~~ -~~~ -~~~ -3209684 0 512 -3211290 UP 10 -3211291 waslock = 0 -3211290 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3211319 512 16777728 -~~~ -3211469 512 512 -3211753 DOWN 10 -3211753 0 512 -~~~ -~~~ -3211773 0 2560 -~~~ -~~~ -3211775 0 2048 -3211776 homeCount = 21 -3211776 waitCount = 10 -3211777 ripCount = 6 -3211777 locktype1 = 2 -3211778 locktype2 = 2 -3211778 locktype3 = 1 -3211779 goalCount = 7 -3211779 goalTotal = 7 -3211780 otherCount = 8 -~~~ -3212060 UP 10 -3212061 waslock = 0 -3212060 512 2048 -~~~ -3212477 DOWN 10 -3212477 0 2048 -3212487 UP 10 -3212488 waslock = 0 -3212487 512 2048 -~~~ -~~~ -~~~ -~~~ -3212507 homeCount = 21 -3212508 waitCount = 10 -3212508 ripCount = 6 -3212509 locktype1 = 2 -3212509 locktype2 = 2 -3212510 locktype3 = 1 -3212510 goalCount = 7 -3212511 goalTotal = 7 -3212511 otherCount = 8 -~~~ -~~~ -3215388 DOWN 10 -3215388 0 2048 -3215405 UP 10 -3215405 waslock = 0 -3215405 512 2048 -~~~ -~~~ -~~~ -~~~ -3215428 homeCount = 21 -3215428 waitCount = 10 -3215429 ripCount = 6 -3215429 locktype1 = 2 -3215430 locktype2 = 2 -3215430 locktype3 = 1 -3215431 goalCount = 7 -3215431 goalTotal = 7 -3215432 otherCount = 8 -~~~ -~~~ -3215479 DOWN 10 -3215479 0 2048 -~~~ -~~~ -~~~ -~~~ -3215506 homeCount = 21 -3215506 waitCount = 10 -3215507 ripCount = 6 -3215507 locktype1 = 2 -3215508 locktype2 = 2 -3215508 locktype3 = 1 -3215508 goalCount = 7 -3215509 goalTotal = 7 -3215509 otherCount = 8 -~~~ -3216863 UP 12 -3216863 2048 2048 -3218565 DOWN 12 -3218565 0 2048 -3218574 UP 12 -3218574 2048 2048 -3220863 CLICK1 -3220863 CLICK2 -~~~ -~~~ -~~~ -3220884 2048 67110912 -~~~ -3221034 2048 2048 -3226345 DOWN 12 -3226345 0 2048 -~~~ -~~~ -3226363 0 0 -~~~ -~~~ -3226365 0 1 -~~~ -~~~ -3226367 0 3 -~~~ -~~~ -3226368 0 7 -~~~ -~~~ -3226370 0 15 -~~~ -~~~ -3226372 0 31 -~~~ -~~~ -3226374 0 63 -~~~ -~~~ -3226376 0 127 -~~~ -~~~ -3226377 0 255 -3226378 homeCount = 21 -3226379 waitCount = 11 -3226379 ripCount = 6 -3226380 locktype1 = 2 -3226380 locktype2 = 2 -3226402 locktype3 = 1 -3226402 goalCount = 7 -3226403 goalTotal = 7 -3226403 otherCount = 8 -~~~ -3226404 CURRENTGOAL IS [5] -~~~ -3226405 UP 12 -3226405 2048 255 -3226446 DOWN 12 -3226446 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3226478 homeCount = 21 -3226479 waitCount = 11 -3226479 ripCount = 6 -3226480 locktype1 = 2 -3226480 locktype2 = 2 -3226481 locktype3 = 1 -3226481 goalCount = 7 -3226482 goalTotal = 7 -3226482 otherCount = 8 -~~~ -3226483 CURRENTGOAL IS [5] -~~~ -3229553 UP 5 -3229553 16 255 -~~~ -~~~ -3229574 outer reward -~~~ -3229575 16 1048831 -~~~ -~~~ -3229607 DOWN 5 -3229607 0 1048831 -~~~ -~~~ -3229632 0 1048830 -~~~ -~~~ -3229634 0 1048828 -~~~ -~~~ -3229636 0 1048824 -~~~ -~~~ -3229638 0 1048816 -~~~ -~~~ -3229640 0 1048800 -~~~ -~~~ -3229642 0 1048768 -~~~ -~~~ -3229643 0 1048704 -~~~ -~~~ -3229645 0 1048576 -~~~ -~~~ -3229647 16 1049088 -3229648 homeCount = 21 -3229649 waitCount = 11 -3229649 ripCount = 6 -3229670 locktype1 = 2 -3229671 locktype2 = 2 -3229671 locktype3 = 1 -3229672 goalCount = 8 -3229672 goalTotal = 8 -3229673 otherCount = 8 -~~~ -3229707 DOWN 5 -3229707 0 1049088 -3229782 16 1049088 -3230024 16 512 -3230230 DOWN 5 -3230230 0 512 -3230247 16 512 -3230349 DOWN 5 -3230349 0 512 -3230385 16 512 -3230485 DOWN 5 -3230485 0 512 -3230525 16 512 -3230632 DOWN 5 -3230632 0 512 -3230658 16 512 -3231216 DOWN 5 -3231216 0 512 -3231224 16 512 -3238685 DOWN 5 -3238685 0 512 -3242068 UP 10 -3242068 waslock = 0 -3242068 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3242100 512 16777728 -~~~ -3242250 512 512 -3242279 DOWN 10 -3242279 0 512 -3242291 UP 10 -3242291 waslock = 0 -3242291 512 512 -~~~ -~~~ -3242317 512 1536 -~~~ -~~~ -3242319 512 1024 -3242320 homeCount = 22 -3242321 waitCount = 11 -3242321 ripCount = 6 -3242322 locktype1 = 2 -3242322 locktype2 = 2 -3242322 locktype3 = 1 -3242323 goalCount = 8 -3242323 goalTotal = 8 -3242324 otherCount = 8 -~~~ -~~~ -3245953 DOWN 10 -3245953 0 1024 -~~~ -~~~ -~~~ -~~~ -3245977 homeCount = 22 -3245977 waitCount = 11 -3245978 ripCount = 6 -3245978 locktype1 = 2 -3245979 locktype2 = 2 -3245979 locktype3 = 1 -3245980 goalCount = 8 -3245980 goalTotal = 8 -3245981 otherCount = 8 -~~~ -3248007 UP 11 -3248006 1024 1024 -3248996 DOWN 11 -3248996 0 1024 -3249014 UP 11 -3249014 1024 1024 -3249041 DOWN 11 -3249041 0 1024 -3249053 UP 11 -3249053 1024 1024 -3249157 DOWN 11 -3249157 0 1024 -3249226 UP 11 -3249226 1024 1024 -3250007 BEEP1 -3250007 BEEP2 -~~~ -~~~ -~~~ -3250027 1024 33555456 -~~~ -3250177 1024 1024 -3254636 DOWN 11 -3254636 0 1024 -~~~ -~~~ -3254664 0 0 -~~~ -~~~ -3254666 0 1 -~~~ -~~~ -3254668 0 3 -~~~ -~~~ -3254669 0 7 -~~~ -~~~ -3254671 0 15 -~~~ -~~~ -3254673 0 31 -~~~ -~~~ -3254675 0 63 -~~~ -~~~ -3254677 0 127 -~~~ -~~~ -3254679 0 255 -3254680 homeCount = 22 -3254680 waitCount = 11 -3254681 ripCount = 7 -3254681 locktype1 = 2 -3254682 locktype2 = 2 -3254703 locktype3 = 1 -3254703 goalCount = 8 -3254704 goalTotal = 8 -3254704 otherCount = 8 -~~~ -3254705 CURRENTGOAL IS [5] -~~~ -3254706 UP 11 -3254706 1024 255 -3254903 DOWN 11 -3254903 0 255 -3254916 UP 11 -3254916 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3254954 homeCount = 22 -3254955 waitCount = 11 -3254955 ripCount = 7 -3254956 locktype1 = 2 -3254956 locktype2 = 2 -3254957 locktype3 = 1 -3254957 goalCount = 8 -3254957 goalTotal = 8 -3254958 otherCount = 8 -~~~ -3254959 CURRENTGOAL IS [5] -~~~ -3256704 DOWN 11 -3256704 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3256740 homeCount = 22 -3256741 waitCount = 11 -3256741 ripCount = 7 -3256742 locktype1 = 2 -3256742 locktype2 = 2 -3256743 locktype3 = 1 -3256743 goalCount = 8 -3256744 goalTotal = 8 -3256744 otherCount = 8 -~~~ -3256745 CURRENTGOAL IS [5] -~~~ -3256756 UP 11 -3256756 1024 255 -3256791 DOWN 11 -3256791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3256831 homeCount = 22 -3256832 waitCount = 11 -3256832 ripCount = 7 -3256833 locktype1 = 2 -3256833 locktype2 = 2 -3256834 locktype3 = 1 -3256834 goalCount = 8 -3256835 goalTotal = 8 -3256835 otherCount = 8 -~~~ -3256836 CURRENTGOAL IS [5] -~~~ -3256857 UP 11 -3256857 1024 255 -3259186 DOWN 11 -3259186 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3259222 homeCount = 22 -3259222 waitCount = 11 -3259223 ripCount = 7 -3259223 locktype1 = 2 -3259224 locktype2 = 2 -3259224 locktype3 = 1 -3259225 goalCount = 8 -3259225 goalTotal = 8 -3259226 otherCount = 8 -~~~ -3259227 CURRENTGOAL IS [5] -~~~ -3262562 UP 5 -3262562 16 255 -~~~ -~~~ -3262589 outer reward -~~~ -3262589 16 1048831 -~~~ -~~~ -3262710 DOWN 5 -3262710 0 1048831 -~~~ -~~~ -3262726 0 1048830 -~~~ -~~~ -3262728 0 1048828 -~~~ -~~~ -3262730 0 1048824 -~~~ -~~~ -3262732 0 1048816 -~~~ -~~~ -3262733 0 1048800 -~~~ -~~~ -3262735 0 1048768 -~~~ -~~~ -3262737 0 1048704 -~~~ -~~~ -3262739 0 1048576 -~~~ -~~~ -3262741 0 1049088 -3262742 homeCount = 22 -3262742 waitCount = 11 -3262743 ripCount = 7 -3262764 locktype1 = 2 -3262764 locktype2 = 2 -3262764 locktype3 = 1 -3262765 goalCount = 9 -3262765 goalTotal = 9 -3262766 otherCount = 8 -~~~ -3262801 16 1049088 -3263039 16 512 -3263359 DOWN 5 -3263359 0 512 -3263383 16 512 -3263493 DOWN 5 -3263493 0 512 -3263518 16 512 -3264398 DOWN 5 -3264398 0 512 -3264406 16 512 -3270249 DOWN 5 -3270249 0 512 -3270308 16 512 -3270360 DOWN 5 -3270360 0 512 -3273977 UP 10 -3273977 waslock = 0 -3273977 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3274003 512 16777728 -~~~ -3274153 512 512 -3274201 DOWN 10 -3274201 0 512 -~~~ -~~~ -3274227 0 2560 -~~~ -~~~ -3274229 0 2048 -3274230 homeCount = 23 -3274230 waitCount = 11 -3274231 ripCount = 7 -3274231 locktype1 = 2 -3274232 locktype2 = 2 -3274232 locktype3 = 1 -3274233 goalCount = 9 -3274233 goalTotal = 9 -3274234 otherCount = 8 -~~~ -3274240 UP 10 -3274240 waslock = 0 -3274240 512 2048 -~~~ -3278548 DOWN 10 -3278548 0 2048 -~~~ -~~~ -~~~ -~~~ -3278571 homeCount = 23 -3278571 waitCount = 11 -3278572 ripCount = 7 -3278572 locktype1 = 2 -3278572 locktype2 = 2 -3278573 locktype3 = 1 -3278573 goalCount = 9 -3278574 goalTotal = 9 -3278574 otherCount = 8 -~~~ -3280094 UP 12 -3280093 2048 2048 -3283094 CLICK1 -3283094 CLICK2 -~~~ -~~~ -~~~ -3283119 2048 67110912 -~~~ -3283269 2048 2048 -3287508 DOWN 12 -3287508 0 2048 -~~~ -~~~ -3287532 0 0 -~~~ -~~~ -3287534 0 1 -~~~ -~~~ -3287536 0 3 -~~~ -~~~ -3287538 0 7 -~~~ -~~~ -3287539 0 15 -~~~ -~~~ -3287541 0 31 -~~~ -~~~ -3287543 0 63 -~~~ -~~~ -3287545 0 127 -~~~ -~~~ -3287547 0 255 -3287548 homeCount = 23 -3287548 waitCount = 12 -3287549 ripCount = 7 -3287549 locktype1 = 2 -3287550 locktype2 = 2 -3287550 locktype3 = 1 -3287571 goalCount = 9 -3287572 goalTotal = 9 -3287572 otherCount = 8 -~~~ -3287573 CURRENTGOAL IS [5] -~~~ -3287592 UP 12 -3287592 2048 255 -3289873 DOWN 12 -3289873 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3289914 homeCount = 23 -3289914 waitCount = 12 -3289915 ripCount = 7 -3289915 locktype1 = 2 -3289916 locktype2 = 2 -3289916 locktype3 = 1 -3289917 goalCount = 9 -3289917 goalTotal = 9 -3289918 otherCount = 8 -~~~ -3289919 CURRENTGOAL IS [5] -~~~ -3289919 UP 12 -3289919 2048 255 -3289957 DOWN 12 -3289957 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3289993 homeCount = 23 -3289994 waitCount = 12 -3289994 ripCount = 7 -3289995 locktype1 = 2 -3289995 locktype2 = 2 -3289996 locktype3 = 1 -3289996 goalCount = 9 -3289997 goalTotal = 9 -3289997 otherCount = 8 -~~~ -3289998 CURRENTGOAL IS [5] -~~~ -3293507 UP 5 -3293507 16 255 -~~~ -~~~ -3293531 outer reward -~~~ -3293531 16 1048831 -~~~ -~~~ -3293536 outerreps = 12 -~~~ -~~~ -3293615 DOWN 5 -3293615 0 1048831 -~~~ -~~~ -3293637 0 1048830 -~~~ -~~~ -3293639 0 1048828 -~~~ -~~~ -3293641 0 1048824 -~~~ -~~~ -3293643 0 1048816 -~~~ -~~~ -3293645 0 1048800 -~~~ -~~~ -3293647 0 1048768 -~~~ -~~~ -3293648 0 1048704 -~~~ -~~~ -3293650 0 1048576 -~~~ -~~~ -3293652 0 1049088 -3293653 homeCount = 23 -3293654 waitCount = 12 -3293654 ripCount = 7 -3293675 locktype1 = 2 -3293675 locktype2 = 2 -3293676 locktype3 = 1 -3293676 goalCount = 0 -3293677 goalTotal = 10 -3293677 otherCount = 8 -~~~ -3293737 16 1049088 -3293981 16 512 -3294292 DOWN 5 -3294292 0 512 -3294316 16 512 -3294427 DOWN 5 -3294427 0 512 -3294455 16 512 -3294576 DOWN 5 -3294576 0 512 -3294585 16 512 -3300882 DOWN 5 -3300882 0 512 -3300930 16 512 -3300943 DOWN 5 -3300943 0 512 -3304714 UP 10 -3304714 waslock = 0 -3304714 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3304747 512 16777728 -~~~ -3304897 512 512 -3304898 DOWN 10 -3304898 0 512 -3304908 UP 10 -3304908 waslock = 0 -3304908 512 512 -~~~ -~~~ -3304923 512 1536 -~~~ -~~~ -3304925 512 1024 -3304926 homeCount = 24 -3304927 waitCount = 12 -3304927 ripCount = 7 -3304928 locktype1 = 2 -3304928 locktype2 = 2 -3304928 locktype3 = 1 -3304929 goalCount = 0 -3304929 goalTotal = 10 -3304930 otherCount = 8 -~~~ -~~~ -3308761 DOWN 10 -3308761 0 1024 -~~~ -~~~ -~~~ -~~~ -3308787 homeCount = 24 -3308788 waitCount = 12 -3308788 ripCount = 7 -3308789 locktype1 = 2 -3308789 locktype2 = 2 -3308790 locktype3 = 1 -3308790 goalCount = 0 -3308791 goalTotal = 10 -3308791 otherCount = 8 -~~~ -3308798 UP 10 -3308798 waslock = 0 -3308798 512 1024 -~~~ -3308860 DOWN 10 -3308860 0 1024 -~~~ -~~~ -~~~ -~~~ -3308885 homeCount = 24 -3308886 waitCount = 12 -3308886 ripCount = 7 -3308887 locktype1 = 2 -3308887 locktype2 = 2 -3308888 locktype3 = 1 -3308888 goalCount = 0 -3308889 goalTotal = 10 -3308889 otherCount = 8 -~~~ -3311076 UP 11 -3311076 1024 1024 -3313181 DOWN 11 -3313181 0 1024 -3313192 UP 11 -3313192 1024 1024 -3314077 BEEP1 -3314077 BEEP2 -~~~ -~~~ -~~~ -3314104 1024 33555456 -~~~ -3314254 1024 1024 -3318081 DOWN 11 -3318081 0 1024 -~~~ -3318103 UP 11 -3318103 1024 1024 -~~~ -~~~ -3318105 1024 0 -~~~ -~~~ -3318106 1024 1 -~~~ -3318107 1024 3 -~~~ -~~~ -3318109 1024 7 -~~~ -~~~ -3318111 1024 15 -~~~ -~~~ -3318113 1024 31 -~~~ -~~~ -3318114 1024 63 -~~~ -~~~ -3318116 1024 127 -~~~ -~~~ -3318118 1024 255 -3318119 homeCount = 24 -3318140 waitCount = 12 -3318141 ripCount = 8 -3318141 locktype1 = 2 -3318142 locktype2 = 2 -3318142 locktype3 = 1 -3318142 goalCount = 0 -3318143 goalTotal = 10 -3318143 otherCount = 8 -~~~ -3318144 CURRENTGOAL IS [4] -~~~ -3318210 DOWN 11 -3318210 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3318243 homeCount = 24 -3318243 waitCount = 12 -3318244 ripCount = 8 -3318244 locktype1 = 2 -3318245 locktype2 = 2 -3318245 locktype3 = 1 -3318246 goalCount = 0 -3318246 goalTotal = 10 -3318247 otherCount = 8 -~~~ -3318248 CURRENTGOAL IS [4] -~~~ -3318282 UP 11 -3318282 1024 255 -3320896 DOWN 11 -3320896 0 255 -3320908 UP 11 -3320907 1024 255 -3320920 DOWN 11 -3320920 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3320943 homeCount = 24 -3320944 waitCount = 12 -3320944 ripCount = 8 -3320945 locktype1 = 2 -3320945 locktype2 = 2 -3320946 locktype3 = 1 -3320946 goalCount = 0 -3320947 goalTotal = 10 -3320947 otherCount = 8 -~~~ -3320948 CURRENTGOAL IS [4] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3320976 homeCount = 24 -3320976 waitCount = 12 -3320977 ripCount = 8 -3320977 locktype1 = 2 -3320978 locktype2 = 2 -3320978 locktype3 = 1 -3320979 goalCount = 0 -3320979 goalTotal = 10 -3321000 otherCount = 8 -~~~ -3321001 CURRENTGOAL IS [4] -~~~ -3321002 UP 11 -3321002 1024 255 -3323162 DOWN 11 -3323162 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3323198 homeCount = 24 -3323198 waitCount = 12 -3323199 ripCount = 8 -3323199 locktype1 = 2 -3323200 locktype2 = 2 -3323200 locktype3 = 1 -3323201 goalCount = 0 -3323201 goalTotal = 10 -3323202 otherCount = 8 -~~~ -3323203 CURRENTGOAL IS [4] -~~~ -3326113 UP 5 -3326113 16 255 -~~~ -~~~ -3326327 DOWN 5 -3326327 0 255 -~~~ -~~~ -3326352 0 254 -~~~ -~~~ -3326354 0 252 -~~~ -~~~ -3326356 0 248 -~~~ -~~~ -3326358 0 240 -~~~ -~~~ -3326360 0 224 -~~~ -~~~ -3326361 0 192 -~~~ -~~~ -3326363 0 128 -~~~ -~~~ -3326365 0 0 -~~~ -~~~ -3326367 0 512 -3326368 homeCount = 24 -3326368 waitCount = 12 -3326369 ripCount = 8 -3326369 locktype1 = 2 -3326370 locktype2 = 2 -3326391 locktype3 = 1 -3326392 goalCount = 0 -3326392 goalTotal = 10 -3326392 otherCount = 9 -~~~ -3326393 16 512 -3327275 DOWN 5 -3327275 0 512 -3331483 UP 10 -3331483 waslock = 0 -3331483 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3331515 512 16777728 -~~~ -3331628 DOWN 10 -3331628 0 16777728 -~~~ -~~~ -3331648 0 16779776 -~~~ -~~~ -3331650 0 16779264 -3331651 homeCount = 25 -3331652 waitCount = 12 -3331652 ripCount = 8 -3331653 locktype1 = 2 -3331653 locktype2 = 2 -3331654 locktype3 = 1 -3331654 goalCount = 0 -3331655 goalTotal = 10 -3331655 otherCount = 9 -~~~ -3331676 0 2048 -3331678 UP 10 -3331678 waslock = 0 -3331678 512 2048 -~~~ -3335072 DOWN 10 -3335072 0 2048 -~~~ -~~~ -~~~ -~~~ -3335101 homeCount = 25 -3335102 waitCount = 12 -3335102 ripCount = 8 -3335103 locktype1 = 2 -3335103 locktype2 = 2 -3335104 locktype3 = 1 -3335104 goalCount = 0 -3335105 goalTotal = 10 -3335105 otherCount = 9 -~~~ -3335111 UP 10 -3335111 waslock = 0 -3335111 512 2048 -~~~ -3335173 DOWN 10 -3335173 0 2048 -~~~ -~~~ -~~~ -~~~ -3335201 homeCount = 25 -3335201 waitCount = 12 -3335202 ripCount = 8 -3335202 locktype1 = 2 -3335202 locktype2 = 2 -3335203 locktype3 = 1 -3335203 goalCount = 0 -3335204 goalTotal = 10 -3335204 otherCount = 9 -~~~ -3337393 UP 12 -3337393 2048 2048 -3338245 DOWN 12 -3338245 0 2048 -3338263 UP 12 -3338263 2048 2048 -3338315 DOWN 12 -3338315 0 2048 -3338351 UP 12 -3338351 2048 2048 -3341498 DOWN 12 -3341498 0 2048 -3341509 UP 12 -3341509 2048 2048 -3343393 CLICK1 -3343393 CLICK2 -~~~ -~~~ -~~~ -3343422 2048 67110912 -~~~ -3343572 2048 2048 -3347572 DOWN 12 -3347572 0 2048 -~~~ -~~~ -3347598 0 0 -~~~ -~~~ -3347599 0 1 -~~~ -~~~ -3347601 0 3 -~~~ -~~~ -3347603 0 7 -~~~ -~~~ -3347605 0 15 -~~~ -~~~ -3347607 0 31 -~~~ -~~~ -3347608 0 63 -~~~ -~~~ -3347610 0 127 -~~~ -~~~ -3347612 0 255 -3347613 homeCount = 25 -3347614 waitCount = 13 -3347614 ripCount = 8 -3347615 locktype1 = 2 -3347615 locktype2 = 2 -3347616 locktype3 = 1 -3347636 goalCount = 0 -3347637 goalTotal = 10 -3347637 otherCount = 9 -~~~ -3347638 CURRENTGOAL IS [4] -~~~ -3353871 UP 1 -3353871 1 255 -~~~ -~~~ -3355979 DOWN 1 -3355979 0 255 -~~~ -~~~ -3355998 0 254 -~~~ -~~~ -3355999 0 252 -~~~ -~~~ -3356001 0 248 -~~~ -~~~ -3356003 0 240 -~~~ -~~~ -3356005 0 224 -~~~ -~~~ -3356007 0 192 -~~~ -~~~ -3356008 0 128 -~~~ -~~~ -3356010 0 0 -~~~ -~~~ -3356012 0 512 -3356013 homeCount = 25 -3356014 waitCount = 13 -3356014 ripCount = 8 -3356015 locktype1 = 2 -3356015 locktype2 = 2 -3356036 locktype3 = 1 -3356037 goalCount = 0 -3356037 goalTotal = 10 -3356038 otherCount = 10 -~~~ -3356051 1 512 -3356113 DOWN 1 -3356113 0 512 -3364545 UP 10 -3364546 waslock = 0 -3364545 512 512 -3364564 DOWN 10 -3364564 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3364574 0 16777728 -~~~ -3364586 UP 10 -3364587 waslock = 0 -3364586 512 16777728 -~~~ -~~~ -3364589 512 16779776 -~~~ -~~~ -3364591 512 16779264 -3364592 homeCount = 26 -3364592 waitCount = 13 -3364593 ripCount = 8 -3364593 locktype1 = 2 -3364594 locktype2 = 2 -3364594 locktype3 = 1 -3364595 goalCount = 0 -3364616 goalTotal = 10 -3364616 otherCount = 10 -~~~ -~~~ -3364724 512 2048 -3364785 DOWN 10 -3364785 0 2048 -~~~ -~~~ -~~~ -~~~ -3364814 homeCount = 26 -3364815 waitCount = 13 -3364815 ripCount = 8 -3364816 locktype1 = 2 -3364816 locktype2 = 2 -3364817 locktype3 = 1 -3364817 goalCount = 0 -3364818 goalTotal = 10 -3364818 otherCount = 10 -~~~ -3364820 UP 10 -3364821 waslock = 0 -3364820 512 2048 -~~~ -3369000 DOWN 10 -3369000 0 2048 -~~~ -~~~ -~~~ -~~~ -3369021 homeCount = 26 -3369021 waitCount = 13 -3369022 ripCount = 8 -3369022 locktype1 = 2 -3369023 locktype2 = 2 -3369023 locktype3 = 1 -3369024 goalCount = 0 -3369024 goalTotal = 10 -3369025 otherCount = 10 -~~~ -3371473 UP 12 -3371473 2048 2048 -3371491 DOWN 12 -3371491 0 2048 -3371539 UP 12 -3371539 2048 2048 -3372597 DOWN 12 -3372597 0 2048 -3372605 UP 12 -3372605 2048 2048 -3372635 DOWN 12 -3372635 0 2048 -3372713 UP 12 -3372713 2048 2048 -3374473 CLICK1 -3374473 CLICK2 -~~~ -~~~ -~~~ -3374502 2048 67110912 -~~~ -3374652 2048 2048 -3379419 DOWN 12 -3379419 0 2048 -~~~ -~~~ -3379439 0 0 -~~~ -~~~ -3379441 0 1 -~~~ -3379442 UP 12 -3379442 2048 1 -~~~ -~~~ -3379444 2048 3 -~~~ -~~~ -3379446 2048 7 -~~~ -3379447 2048 15 -~~~ -~~~ -3379448 2048 31 -~~~ -~~~ -3379450 2048 63 -~~~ -~~~ -3379452 2048 127 -~~~ -~~~ -3379454 2048 255 -3379455 homeCount = 26 -3379455 waitCount = 14 -3379476 ripCount = 8 -3379477 locktype1 = 2 -3379477 locktype2 = 2 -3379478 locktype3 = 1 -3379478 goalCount = 0 -3379479 goalTotal = 10 -3379479 otherCount = 10 -~~~ -3379480 CURRENTGOAL IS [4] -~~~ -3379501 DOWN 12 -3379501 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3379536 homeCount = 26 -3379537 waitCount = 14 -3379537 ripCount = 8 -3379538 locktype1 = 2 -3379538 locktype2 = 2 -3379539 locktype3 = 1 -3379539 goalCount = 0 -3379540 goalTotal = 10 -3379540 otherCount = 10 -~~~ -3379541 CURRENTGOAL IS [4] -~~~ -3382877 UP 5 -3382877 16 255 -~~~ -~~~ -3383277 DOWN 5 -3383277 0 255 -~~~ -~~~ -3383303 0 254 -~~~ -~~~ -3383305 0 252 -~~~ -~~~ -3383307 0 248 -~~~ -~~~ -3383309 0 240 -~~~ -~~~ -3383311 0 224 -~~~ -~~~ -3383312 0 192 -~~~ -~~~ -3383314 0 128 -~~~ -~~~ -3383316 0 0 -~~~ -~~~ -3383318 0 512 -3383319 homeCount = 26 -3383319 waitCount = 14 -3383320 ripCount = 8 -3383320 locktype1 = 2 -3383321 locktype2 = 2 -3383342 locktype3 = 1 -3383342 goalCount = 0 -3383343 goalTotal = 10 -3383343 otherCount = 11 -~~~ -3383433 16 512 -3383515 DOWN 5 -3383515 0 512 -3386814 UP 10 -3386815 waslock = 0 -3386814 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3386842 512 16777728 -~~~ -3386992 512 512 -3387046 DOWN 10 -3387046 0 512 -~~~ -~~~ -3387067 0 1536 -~~~ -~~~ -3387069 0 1024 -3387070 homeCount = 27 -3387070 waitCount = 14 -3387071 ripCount = 8 -3387071 locktype1 = 2 -3387072 locktype2 = 2 -3387072 locktype3 = 1 -3387073 goalCount = 0 -3387073 goalTotal = 10 -3387074 otherCount = 11 -~~~ -3387074 UP 10 -3387095 waslock = 0 -3387074 512 1024 -~~~ -3390332 DOWN 10 -3390332 0 1024 -~~~ -~~~ -~~~ -~~~ -3390354 homeCount = 27 -3390354 waitCount = 14 -3390355 ripCount = 8 -3390355 locktype1 = 2 -3390356 locktype2 = 2 -3390356 locktype3 = 1 -3390357 goalCount = 0 -3390357 goalTotal = 10 -3390358 otherCount = 11 -~~~ -3390364 UP 10 -3390364 waslock = 0 -3390363 512 1024 -~~~ -3390422 DOWN 10 -3390422 0 1024 -~~~ -~~~ -~~~ -~~~ -3390446 homeCount = 27 -3390446 waitCount = 14 -3390447 ripCount = 8 -3390447 locktype1 = 2 -3390448 locktype2 = 2 -3390448 locktype3 = 1 -3390449 goalCount = 0 -3390449 goalTotal = 10 -3390450 otherCount = 11 -~~~ -3392373 UP 11 -3392373 1024 1024 -3394624 BEEP1 -3394624 BEEP2 -~~~ -~~~ -~~~ -3394644 1024 33555456 -~~~ -3394794 1024 1024 -3402282 DOWN 11 -3402282 0 1024 -~~~ -~~~ -3402303 0 0 -~~~ -~~~ -3402305 0 1 -~~~ -~~~ -3402307 0 3 -~~~ -~~~ -3402308 0 7 -~~~ -~~~ -3402310 0 15 -~~~ -~~~ -3402312 0 31 -~~~ -~~~ -3402314 0 63 -~~~ -~~~ -3402316 0 127 -~~~ -~~~ -3402317 0 255 -3402318 homeCount = 27 -3402319 waitCount = 14 -3402319 ripCount = 9 -3402320 locktype1 = 2 -3402320 locktype2 = 2 -3402321 locktype3 = 1 -3402342 goalCount = 0 -3402342 goalTotal = 10 -3402343 otherCount = 11 -~~~ -3402344 CURRENTGOAL IS [4] -~~~ -3405003 UP 8 -3405003 128 255 -~~~ -~~~ -3405483 DOWN 8 -3405483 0 255 -3405500 128 255 -~~~ -~~~ -3405509 128 254 -~~~ -~~~ -3405511 128 252 -~~~ -~~~ -3405513 128 248 -~~~ -~~~ -3405515 128 240 -~~~ -~~~ -3405517 128 224 -~~~ -~~~ -3405518 128 192 -~~~ -~~~ -3405520 128 128 -~~~ -~~~ -3405522 128 0 -~~~ -~~~ -3405524 128 512 -3405525 homeCount = 27 -3405526 waitCount = 14 -3405526 ripCount = 9 -3405526 locktype1 = 2 -3405547 locktype2 = 2 -3405548 locktype3 = 1 -3405548 goalCount = 0 -3405549 goalTotal = 10 -3405549 otherCount = 12 -~~~ -3405550 DOWN 8 -3405550 0 512 -3405554 128 512 -3405618 DOWN 8 -3405618 0 512 -3405768 128 512 -3406173 DOWN 8 -3406173 0 512 -3406190 128 512 -3406488 DOWN 8 -3406488 0 512 -3412401 UP 10 -3412402 waslock = 0 -3412401 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3412426 512 16777728 -~~~ -3412576 512 512 -3417283 DOWN 10 -3417283 0 512 -~~~ -~~~ -3417301 0 1536 -~~~ -~~~ -3417303 0 1024 -3417304 homeCount = 28 -3417305 waitCount = 14 -3417305 ripCount = 9 -3417306 locktype1 = 2 -3417306 locktype2 = 2 -3417306 locktype3 = 1 -3417307 goalCount = 0 -3417307 goalTotal = 10 -3417308 otherCount = 12 -~~~ -3417314 UP 10 -3417314 waslock = 0 -3417314 512 1024 -~~~ -3417369 DOWN 10 -3417369 0 1024 -~~~ -~~~ -~~~ -~~~ -3417395 homeCount = 28 -3417395 waitCount = 14 -3417396 ripCount = 9 -3417396 locktype1 = 2 -3417397 locktype2 = 2 -3417397 locktype3 = 1 -3417398 goalCount = 0 -3417398 goalTotal = 10 -3417398 otherCount = 12 -~~~ -3418917 UP 11 -3418917 1024 1024 -3421167 BEEP1 -3421167 BEEP2 -~~~ -~~~ -~~~ -3421193 1024 33555456 -~~~ -3421343 1024 1024 -3426415 DOWN 11 -3426415 0 1024 -~~~ -~~~ -3426441 0 0 -~~~ -3426442 UP 11 -3426442 1024 0 -~~~ -~~~ -3426444 1024 1 -~~~ -~~~ -3426446 1024 3 -~~~ -3426447 1024 7 -~~~ -~~~ -3426448 1024 15 -~~~ -~~~ -3426450 1024 31 -~~~ -~~~ -3426452 1024 63 -~~~ -~~~ -3426453 1024 127 -~~~ -~~~ -3426455 1024 255 -3426456 homeCount = 28 -3426478 waitCount = 14 -3426478 ripCount = 10 -3426478 locktype1 = 2 -3426479 locktype2 = 2 -3426479 locktype3 = 1 -3426480 goalCount = 0 -3426480 goalTotal = 10 -3426481 otherCount = 12 -~~~ -3426482 CURRENTGOAL IS [4] -~~~ -3426484 DOWN 11 -3426484 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3426535 UP 11 -3426535 1024 255 -~~~ -~~~ -~~~ -~~~ -3426539 homeCount = 28 -3426540 waitCount = 14 -3426540 ripCount = 10 -3426541 locktype1 = 2 -3426541 locktype2 = 2 -3426542 locktype3 = 1 -3426542 goalCount = 0 -3426543 goalTotal = 10 -3426543 otherCount = 12 -~~~ -3426544 CURRENTGOAL IS [4] -~~~ -3428785 DOWN 11 -3428785 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3428822 homeCount = 28 -3428823 waitCount = 14 -3428823 ripCount = 10 -3428824 locktype1 = 2 -3428824 locktype2 = 2 -3428825 locktype3 = 1 -3428825 goalCount = 0 -3428826 goalTotal = 10 -3428826 otherCount = 12 -~~~ -3428827 CURRENTGOAL IS [4] -~~~ -3431457 UP 6 -3431457 32 255 -~~~ -~~~ -3433724 DOWN 6 -3433724 0 255 -~~~ -~~~ -3433746 0 254 -~~~ -~~~ -3433747 0 252 -~~~ -~~~ -3433749 0 248 -~~~ -~~~ -3433751 0 240 -~~~ -~~~ -3433753 0 224 -~~~ -~~~ -3433755 0 192 -~~~ -~~~ -3433757 0 128 -~~~ -~~~ -3433758 0 0 -~~~ -~~~ -3433760 0 512 -3433761 homeCount = 28 -3433762 waitCount = 14 -3433762 ripCount = 10 -3433763 locktype1 = 2 -3433763 locktype2 = 2 -3433784 locktype3 = 1 -3433785 goalCount = 0 -3433785 goalTotal = 10 -3433786 otherCount = 13 -~~~ -3433786 32 512 -3433787 DOWN 6 -3433787 0 512 -3437391 UP 10 -3437392 waslock = 0 -3437391 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3437423 512 16777728 -~~~ -3437573 512 512 -3439941 DOWN 10 -3439941 0 512 -~~~ -~~~ -3439966 0 1536 -~~~ -~~~ -3439968 0 1024 -3439969 homeCount = 29 -3439969 waitCount = 14 -3439970 ripCount = 10 -3439970 locktype1 = 2 -3439971 locktype2 = 2 -3439971 locktype3 = 1 -3439971 goalCount = 0 -3439972 goalTotal = 10 -3439972 otherCount = 13 -~~~ -3440045 UP 10 -3440045 waslock = 0 -3440045 512 1024 -~~~ -3443900 DOWN 10 -3443900 0 1024 -~~~ -~~~ -~~~ -~~~ -3443928 homeCount = 29 -3443929 waitCount = 14 -3443929 ripCount = 10 -3443930 locktype1 = 2 -3443930 locktype2 = 2 -3443931 locktype3 = 1 -3443931 goalCount = 0 -3443932 goalTotal = 10 -3443932 otherCount = 13 -~~~ -3443937 UP 10 -3443938 waslock = 0 -3443937 512 1024 -~~~ -3444010 DOWN 10 -3444010 0 1024 -~~~ -~~~ -~~~ -~~~ -3444047 homeCount = 29 -3444048 waitCount = 14 -3444048 ripCount = 10 -3444049 locktype1 = 2 -3444049 locktype2 = 2 -3444050 locktype3 = 1 -3444050 goalCount = 0 -3444051 goalTotal = 10 -3444051 otherCount = 13 -~~~ -3447480 UP 11 -3447480 1024 1024 -3449428 DOWN 11 -3449428 0 1024 -3449534 UP 11 -3449534 1024 1024 -3450480 BEEP1 -3450480 BEEP2 -~~~ -~~~ -~~~ -3450499 1024 33555456 -~~~ -3450520 DOWN 11 -3450520 0 33555456 -3450539 UP 11 -3450539 1024 33555456 -3450649 1024 1024 -3450808 DOWN 11 -3450808 0 1024 -3450838 UP 11 -3450838 1024 1024 -~~~ -~~~ -3451150 1024 0 -~~~ -~~~ -3451152 1024 1 -~~~ -~~~ -3451154 1024 3 -~~~ -~~~ -3451156 1024 7 -~~~ -~~~ -3451158 1024 15 -~~~ -~~~ -3451160 1024 31 -~~~ -~~~ -3451161 1024 63 -~~~ -~~~ -3451163 1024 127 -~~~ -~~~ -3451165 1024 255 -3451166 homeCount = 29 -3451167 waitCount = 14 -3451167 ripCount = 11 -3451168 locktype1 = 2 -3451188 locktype2 = 2 -3451189 locktype3 = 1 -3451189 goalCount = 0 -3451190 goalTotal = 10 -3451190 otherCount = 13 -~~~ -3451191 CURRENTGOAL IS [4] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3451219 homeCount = 29 -3451219 waitCount = 14 -3451220 ripCount = 11 -3451220 locktype1 = 2 -3451221 locktype2 = 2 -3451221 locktype3 = 1 -3451222 goalCount = 0 -3451222 goalTotal = 10 -3451223 otherCount = 13 -~~~ -3451224 CURRENTGOAL IS [4] -~~~ -3455069 DOWN 11 -3455069 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3455110 homeCount = 29 -3455111 waitCount = 14 -3455111 ripCount = 11 -3455112 locktype1 = 2 -3455112 locktype2 = 2 -3455113 locktype3 = 1 -3455113 goalCount = 0 -3455113 goalTotal = 10 -3455114 otherCount = 13 -~~~ -3455115 CURRENTGOAL IS [4] -~~~ -3455116 UP 11 -3455115 1024 255 -3455168 DOWN 11 -3455168 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3455204 homeCount = 29 -3455205 waitCount = 14 -3455205 ripCount = 11 -3455206 locktype1 = 2 -3455206 locktype2 = 2 -3455207 locktype3 = 1 -3455207 goalCount = 0 -3455208 goalTotal = 10 -3455208 otherCount = 13 -~~~ -3455209 CURRENTGOAL IS [4] -~~~ -3467183 UP 5 -3467183 16 255 -~~~ -~~~ -3467241 DOWN 5 -3467241 0 255 -3467259 16 255 -~~~ -~~~ -3467270 16 254 -~~~ -~~~ -3467271 16 252 -~~~ -~~~ -3467273 16 248 -~~~ -~~~ -3467275 16 240 -~~~ -~~~ -3467277 16 224 -~~~ -~~~ -3467279 16 192 -~~~ -~~~ -3467281 16 128 -~~~ -~~~ -3467282 16 0 -~~~ -~~~ -3467284 16 512 -3467285 homeCount = 29 -3467286 waitCount = 14 -3467286 ripCount = 11 -3467287 locktype1 = 2 -3467308 locktype2 = 2 -3467308 locktype3 = 1 -3467309 goalCount = 0 -3467309 goalTotal = 10 -3467310 otherCount = 14 -~~~ -3467494 DOWN 5 -3467494 0 512 -3470785 UP 10 -3470785 waslock = 0 -3470785 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3470815 512 16777728 -~~~ -3470959 DOWN 10 -3470959 0 16777728 -3470965 0 512 -3470971 UP 10 -3470971 waslock = 0 -3470971 512 512 -~~~ -~~~ -3470990 512 1536 -~~~ -~~~ -3470992 512 1024 -3470993 homeCount = 30 -3470994 waitCount = 14 -3470994 ripCount = 11 -3470995 locktype1 = 2 -3470995 locktype2 = 2 -3470996 locktype3 = 1 -3470996 goalCount = 0 -3470997 goalTotal = 10 -3470997 otherCount = 14 -~~~ -~~~ -3471019 DOWN 10 -3471019 0 1024 -~~~ -~~~ -~~~ -~~~ -3471035 homeCount = 30 -3471036 waitCount = 14 -3471036 ripCount = 11 -3471037 locktype1 = 2 -3471037 locktype2 = 2 -3471038 locktype3 = 1 -3471038 goalCount = 0 -3471039 goalTotal = 10 -3471039 otherCount = 14 -~~~ -3471096 UP 10 -3471097 waslock = 0 -3471096 512 1024 -~~~ -3474249 DOWN 10 -3474249 0 1024 -~~~ -~~~ -~~~ -~~~ -3474271 homeCount = 30 -3474271 waitCount = 14 -3474272 ripCount = 11 -3474272 locktype1 = 2 -3474273 locktype2 = 2 -3474273 locktype3 = 1 -3474274 goalCount = 0 -3474274 goalTotal = 10 -3474275 otherCount = 14 -~~~ -3474308 UP 10 -3474308 waslock = 0 -3474307 512 1024 -3474331 DOWN 10 -3474331 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -3474354 homeCount = 30 -3474354 waitCount = 14 -3474355 ripCount = 11 -3474355 locktype1 = 2 -3474356 locktype2 = 2 -3474356 locktype3 = 1 -3474356 goalCount = 0 -3474357 goalTotal = 10 -3474357 otherCount = 14 -~~~ -3476396 UP 11 -3476396 1024 1024 -3476414 DOWN 11 -3476414 0 1024 -3476440 UP 11 -3476440 1024 1024 -3477699 DOWN 11 -3477699 0 1024 -3477756 UP 11 -3477756 1024 1024 -3482397 BEEP1 -3482397 BEEP2 -~~~ -~~~ -~~~ -3482421 1024 33555456 -~~~ -3482571 1024 1024 -3487234 DOWN 11 -3487234 0 1024 -~~~ -~~~ -3487260 0 0 -~~~ -~~~ -3487261 0 1 -~~~ -~~~ -3487263 0 3 -~~~ -~~~ -3487265 0 7 -~~~ -~~~ -3487267 0 15 -~~~ -~~~ -3487269 0 31 -~~~ -~~~ -3487271 0 63 -~~~ -~~~ -3487272 0 127 -~~~ -~~~ -3487274 0 255 -3487275 homeCount = 30 -3487276 waitCount = 14 -3487276 ripCount = 12 -3487277 locktype1 = 2 -3487277 locktype2 = 2 -3487278 locktype3 = 1 -3487299 goalCount = 0 -3487299 goalTotal = 10 -3487299 otherCount = 14 -~~~ -3487301 CURRENTGOAL IS [4] -~~~ -3492075 UP 3 -3492075 4 255 -~~~ -~~~ -3493640 DOWN 3 -3493640 0 255 -~~~ -~~~ -3493660 0 254 -~~~ -~~~ -3493662 0 252 -~~~ -~~~ -3493664 0 248 -~~~ -~~~ -3493666 0 240 -~~~ -~~~ -3493668 0 224 -~~~ -~~~ -3493669 0 192 -~~~ -~~~ -3493671 0 128 -~~~ -~~~ -3493673 0 0 -~~~ -~~~ -3493675 0 512 -3493676 homeCount = 30 -3493676 waitCount = 14 -3493677 ripCount = 12 -3493677 locktype1 = 2 -3493678 locktype2 = 2 -3493699 locktype3 = 1 -3493699 goalCount = 0 -3493700 goalTotal = 10 -3493700 otherCount = 15 -~~~ -3496771 UP 10 -3496771 waslock = 0 -3496771 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3496799 512 16777728 -~~~ -3496949 512 512 -3496960 DOWN 10 -3496959 0 512 -~~~ -~~~ -3496976 0 2560 -~~~ -~~~ -3496978 0 2048 -3496979 homeCount = 31 -3496980 waitCount = 14 -3496980 ripCount = 12 -3496981 locktype1 = 2 -3496981 locktype2 = 2 -3496982 locktype3 = 1 -3496982 goalCount = 0 -3496983 goalTotal = 10 -3496983 otherCount = 15 -~~~ -3496994 UP 10 -3496994 waslock = 0 -3496994 512 2048 -~~~ -3500863 DOWN 10 -3500863 0 2048 -~~~ -~~~ -~~~ -~~~ -3500884 homeCount = 31 -3500884 waitCount = 14 -3500885 ripCount = 12 -3500885 locktype1 = 2 -3500886 locktype2 = 2 -3500886 locktype3 = 1 -3500887 goalCount = 0 -3500887 goalTotal = 10 -3500888 otherCount = 15 -~~~ -3502510 UP 12 -3502510 2048 2048 -3503845 DOWN 12 -3503845 0 2048 -3503872 UP 12 -3503872 2048 2048 -3508139 DOWN 12 -3508139 0 2048 -3508145 UP 12 -3508145 2048 2048 -3508156 DOWN 12 -3508156 0 2048 -3508173 UP 12 -3508173 2048 2048 -3508510 CLICK1 -3508510 CLICK2 -~~~ -~~~ -~~~ -3508533 2048 67110912 -~~~ -3508683 2048 2048 -3515792 DOWN 12 -3515792 0 2048 -~~~ -~~~ -3515814 0 0 -~~~ -~~~ -3515816 0 1 -~~~ -~~~ -3515818 0 3 -~~~ -~~~ -3515820 0 7 -~~~ -~~~ -3515821 0 15 -~~~ -~~~ -3515823 0 31 -~~~ -~~~ -3515825 0 63 -~~~ -~~~ -3515827 0 127 -~~~ -~~~ -3515829 0 255 -3515830 homeCount = 31 -3515830 waitCount = 15 -3515831 ripCount = 12 -3515831 locktype1 = 2 -3515832 locktype2 = 2 -3515853 locktype3 = 1 -3515853 goalCount = 0 -3515854 goalTotal = 10 -3515854 otherCount = 15 -~~~ -3515855 CURRENTGOAL IS [4] -~~~ -3521707 UP 8 -3521707 128 255 -~~~ -~~~ -3522495 DOWN 8 -3522494 0 255 -~~~ -~~~ -3522516 0 254 -~~~ -~~~ -3522517 0 252 -~~~ -~~~ -3522519 0 248 -~~~ -~~~ -3522521 0 240 -~~~ -~~~ -3522523 0 224 -~~~ -~~~ -3522525 0 192 -~~~ -~~~ -3522526 0 128 -~~~ -~~~ -3522528 0 0 -~~~ -~~~ -3522530 0 512 -3522531 homeCount = 31 -3522532 waitCount = 15 -3522532 ripCount = 12 -3522533 locktype1 = 2 -3522533 locktype2 = 2 -3522554 locktype3 = 1 -3522554 goalCount = 0 -3522555 goalTotal = 10 -3522555 otherCount = 16 -~~~ -3528013 UP 10 -3528013 waslock = 0 -3528013 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3528040 512 16777728 -~~~ -3528190 512 512 -3532039 DOWN 10 -3532039 0 512 -3532051 UP 10 -3532051 waslock = 0 -3532051 512 512 -~~~ -~~~ -3532064 512 2560 -~~~ -~~~ -3532066 512 2048 -3532067 homeCount = 32 -3532068 waitCount = 15 -3532068 ripCount = 12 -3532069 locktype1 = 2 -3532069 locktype2 = 2 -3532070 locktype3 = 1 -3532070 goalCount = 0 -3532071 goalTotal = 10 -3532071 otherCount = 16 -~~~ -~~~ -3532129 DOWN 10 -3532129 0 2048 -~~~ -~~~ -~~~ -~~~ -3532159 homeCount = 32 -3532159 waitCount = 15 -3532160 ripCount = 12 -3532160 locktype1 = 2 -3532161 locktype2 = 2 -3532161 locktype3 = 1 -3532162 goalCount = 0 -3532162 goalTotal = 10 -3532163 otherCount = 16 -~~~ -3533716 UP 12 -3533716 2048 2048 -3535140 DOWN 12 -3535140 0 2048 -3535175 UP 12 -3535175 2048 2048 -3535301 DOWN 12 -3535301 0 2048 -3535317 UP 12 -3535317 2048 2048 -3540716 CLICK1 -3540716 CLICK2 -~~~ -~~~ -~~~ -3540738 2048 67110912 -~~~ -3540888 2048 2048 -3547369 DOWN 12 -3547369 0 2048 -~~~ -~~~ -3547388 0 0 -~~~ -~~~ -3547390 0 1 -~~~ -~~~ -3547391 0 3 -~~~ -~~~ -3547393 0 7 -~~~ -~~~ -3547395 0 15 -~~~ -~~~ -3547397 0 31 -~~~ -~~~ -3547399 0 63 -~~~ -~~~ -3547401 0 127 -~~~ -~~~ -3547402 0 255 -3547403 homeCount = 32 -3547404 waitCount = 16 -3547404 ripCount = 12 -3547405 locktype1 = 2 -3547405 locktype2 = 2 -3547427 locktype3 = 1 -3547427 goalCount = 0 -3547428 goalTotal = 10 -3547428 otherCount = 16 -~~~ -3547429 CURRENTGOAL IS [4] -~~~ -3561111 UP 10 -3561112 waslock = 0 -3561111 512 255 -~~~ -3561132 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3561140 512 254 -~~~ -~~~ -3561142 512 252 -~~~ -~~~ -3561143 512 248 -~~~ -~~~ -3561145 512 240 -~~~ -~~~ -3561147 512 224 -~~~ -~~~ -3561149 512 192 -~~~ -~~~ -3561151 512 128 -~~~ -~~~ -3561152 512 0 -~~~ -~~~ -~~~ -3561157 0 0 -3561238 512 0 -3562992 0 0 -3564933 UP 11 -3564933 1024 0 -3565541 DOWN 11 -3565541 0 0 -3565809 UP 11 -3565809 1024 0 -3566154 DOWN 11 -3566154 0 0 -3576441 512 0 -3576538 0 0 -3582894 512 0 -3583443 0 0 -3583733 512 0 -3584225 0 0 -3584278 512 0 -3584343 0 0 -3584390 512 0 -3585280 0 0 -3585494 512 0 -3585871 0 0 -3586132 LOCKEND -~~~ -~~~ -~~~ -3586153 0 512 -3586897 UP 10 -3586897 waslock = 0 -3586897 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3586928 512 16777728 -~~~ -3587078 512 512 -3590979 DOWN 10 -3590979 0 512 -3590998 UP 10 -3590999 waslock = 0 -3590998 512 512 -~~~ -~~~ -3591002 512 1536 -~~~ -~~~ -3591004 512 1024 -3591005 homeCount = 33 -3591005 waitCount = 16 -3591006 ripCount = 12 -3591006 locktype1 = 2 -3591007 locktype2 = 3 -3591007 locktype3 = 1 -3591008 goalCount = 0 -3591008 goalTotal = 10 -3591009 otherCount = 16 -~~~ -~~~ -3591090 DOWN 10 -3591090 0 1024 -~~~ -~~~ -~~~ -~~~ -3591121 homeCount = 33 -3591121 waitCount = 16 -3591122 ripCount = 12 -3591122 locktype1 = 2 -3591123 locktype2 = 3 -3591123 locktype3 = 1 -3591124 goalCount = 0 -3591124 goalTotal = 10 -3591125 otherCount = 16 -~~~ -3591146 UP 10 -3591147 waslock = 0 -3591146 512 1024 -~~~ -3591191 DOWN 10 -3591191 0 1024 -~~~ -~~~ -~~~ -~~~ -3591219 homeCount = 33 -3591219 waitCount = 16 -3591220 ripCount = 12 -3591220 locktype1 = 2 -3591221 locktype2 = 3 -3591221 locktype3 = 1 -3591222 goalCount = 0 -3591222 goalTotal = 10 -3591223 otherCount = 16 -~~~ -3593272 UP 11 -3593272 1024 1024 -3593859 DOWN 11 -3593859 0 1024 -3593918 UP 11 -3593918 1024 1024 -3593945 DOWN 11 -3593945 0 1024 -3593960 UP 11 -3593960 1024 1024 -3594765 DOWN 11 -3594765 0 1024 -3594779 UP 11 -3594779 1024 1024 -3598015 DOWN 11 -3598015 0 1024 -3598034 UP 11 -3598034 1024 1024 -3600272 BEEP1 -3600272 BEEP2 -~~~ -~~~ -~~~ -3600296 1024 33555456 -~~~ -3600445 1024 1024 -3604781 DOWN 11 -3604781 0 1024 -3604791 UP 11 -3604791 1024 1024 -~~~ -~~~ -3604804 1024 0 -~~~ -~~~ -3604806 1024 1 -~~~ -~~~ -3604808 1024 3 -~~~ -~~~ -3604809 1024 7 -~~~ -~~~ -3604811 1024 15 -~~~ -~~~ -3604813 1024 31 -~~~ -~~~ -3604815 1024 63 -~~~ -~~~ -3604817 1024 127 -~~~ -~~~ -3604818 1024 255 -3604819 homeCount = 33 -3604820 waitCount = 16 -3604821 ripCount = 13 -3604821 locktype1 = 2 -3604842 locktype2 = 3 -3604843 locktype3 = 1 -3604843 goalCount = 0 -3604844 goalTotal = 10 -3604844 otherCount = 16 -~~~ -3604845 CURRENTGOAL IS [4] -~~~ -3604903 DOWN 11 -3604903 0 255 -3604925 UP 11 -3604925 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3604942 homeCount = 33 -3604943 waitCount = 16 -3604943 ripCount = 13 -3604944 locktype1 = 2 -3604944 locktype2 = 3 -3604945 locktype3 = 1 -3604945 goalCount = 0 -3604946 goalTotal = 10 -3604946 otherCount = 16 -~~~ -3604947 CURRENTGOAL IS [4] -~~~ -3605028 DOWN 11 -3605028 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3605064 homeCount = 33 -3605064 waitCount = 16 -3605065 ripCount = 13 -3605065 locktype1 = 2 -3605066 locktype2 = 3 -3605066 locktype3 = 1 -3605067 goalCount = 0 -3605067 goalTotal = 10 -3605068 otherCount = 16 -~~~ -3605069 CURRENTGOAL IS [4] -~~~ -3605092 UP 11 -3605092 1024 255 -3608325 DOWN 11 -3608325 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3608364 homeCount = 33 -3608364 waitCount = 16 -3608365 ripCount = 13 -3608365 locktype1 = 2 -3608366 locktype2 = 3 -3608366 locktype3 = 1 -3608367 goalCount = 0 -3608367 goalTotal = 10 -3608368 otherCount = 16 -~~~ -3608369 CURRENTGOAL IS [4] -~~~ -3608378 UP 11 -3608378 1024 255 -3608425 DOWN 11 -3608425 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3608464 homeCount = 33 -3608465 waitCount = 16 -3608465 ripCount = 13 -3608466 locktype1 = 2 -3608466 locktype2 = 3 -3608467 locktype3 = 1 -3608467 goalCount = 0 -3608467 goalTotal = 10 -3608468 otherCount = 16 -~~~ -3608469 CURRENTGOAL IS [4] -~~~ -3616545 UP 10 -3616545 waslock = 0 -3616545 512 255 -~~~ -3616569 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3616577 512 254 -~~~ -~~~ -3616579 512 252 -~~~ -~~~ -3616581 512 248 -~~~ -~~~ -3616582 512 240 -~~~ -~~~ -3616584 512 224 -~~~ -~~~ -3616586 512 192 -~~~ -~~~ -3616588 512 128 -~~~ -~~~ -3616590 512 0 -~~~ -~~~ -~~~ -3617133 0 0 -3617163 512 0 -3617761 0 0 -3617783 512 0 -3617868 0 0 -3618349 512 0 -3618488 0 0 -3620077 512 0 -3620300 0 0 -3623436 UP 12 -3623436 2048 0 -3623470 DOWN 12 -3623470 0 0 -3626087 512 0 -3626274 0 0 -3628560 UP 11 -3628560 1024 0 -3629234 DOWN 11 -3629234 0 0 -3640902 512 0 -3641510 0 0 -3641538 512 0 -3641569 LOCKEND -~~~ -~~~ -~~~ -3641592 512 512 -3641834 DOWN 10 -3641834 0 512 -3642205 UP 10 -3642205 waslock = 0 -3642205 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3642238 512 16777728 -~~~ -3642263 DOWN 10 -3642263 0 16777728 -~~~ -~~~ -3642281 0 16779776 -~~~ -~~~ -3642283 0 16779264 -3642284 homeCount = 34 -3642284 waitCount = 16 -3642285 ripCount = 13 -3642285 locktype1 = 2 -3642286 locktype2 = 4 -3642286 locktype3 = 1 -3642287 goalCount = 0 -3642287 goalTotal = 10 -3642288 otherCount = 16 -~~~ -3642363 UP 10 -3642363 waslock = 0 -3642363 512 16779264 -~~~ -3642386 DOWN 10 -3642386 0 16779264 -3642388 0 2048 -~~~ -~~~ -~~~ -~~~ -3642414 homeCount = 34 -3642415 waitCount = 16 -3642415 ripCount = 13 -3642416 locktype1 = 2 -3642416 locktype2 = 4 -3642416 locktype3 = 1 -3642417 goalCount = 0 -3642417 goalTotal = 10 -3642418 otherCount = 16 -~~~ -3642507 UP 10 -3642507 waslock = 0 -3642506 512 2048 -~~~ -3648667 DOWN 10 -3648667 0 2048 -3648678 UP 10 -3648678 waslock = 0 -3648678 512 2048 -~~~ -~~~ -~~~ -~~~ -3648694 homeCount = 34 -3648695 waitCount = 16 -3648695 ripCount = 13 -3648696 locktype1 = 2 -3648696 locktype2 = 4 -3648697 locktype3 = 1 -3648697 goalCount = 0 -3648698 goalTotal = 10 -3648698 otherCount = 16 -~~~ -~~~ -3648761 DOWN 10 -3648761 0 2048 -~~~ -~~~ -~~~ -~~~ -3648785 homeCount = 34 -3648786 waitCount = 16 -3648786 ripCount = 13 -3648787 locktype1 = 2 -3648787 locktype2 = 4 -3648788 locktype3 = 1 -3648788 goalCount = 0 -3648789 goalTotal = 10 -3648789 otherCount = 16 -~~~ -3648842 UP 10 -3648842 waslock = 0 -3648842 512 2048 -3648864 DOWN 10 -3648864 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3648895 homeCount = 34 -3648895 waitCount = 16 -3648895 ripCount = 13 -3648896 locktype1 = 2 -3648896 locktype2 = 4 -3648897 locktype3 = 1 -3648897 goalCount = 0 -3648898 goalTotal = 10 -3648898 otherCount = 16 -~~~ -3652123 UP 12 -3652123 2048 2048 -3652932 DOWN 12 -3652932 0 2048 -3652964 UP 12 -3652964 2048 2048 -3653181 DOWN 12 -3653181 0 2048 -3653233 UP 12 -3653233 2048 2048 -3654201 DOWN 12 -3654201 0 2048 -3654214 UP 12 -3654214 2048 2048 -3654302 DOWN 12 -3654302 0 2048 -3654322 UP 12 -3654322 2048 2048 -3656123 CLICK1 -3656123 CLICK2 -~~~ -~~~ -~~~ -3656142 2048 67110912 -~~~ -3656292 2048 2048 -3663270 DOWN 12 -3663270 0 2048 -~~~ -~~~ -3663292 0 0 -~~~ -~~~ -3663294 0 1 -~~~ -~~~ -3663295 0 3 -~~~ -~~~ -3663297 0 7 -~~~ -~~~ -3663299 0 15 -~~~ -~~~ -3663301 0 31 -~~~ -~~~ -3663303 0 63 -~~~ -~~~ -3663305 0 127 -~~~ -~~~ -3663306 0 255 -3663307 homeCount = 34 -3663308 waitCount = 17 -3663308 ripCount = 13 -3663309 locktype1 = 2 -3663309 locktype2 = 4 -3663310 locktype3 = 1 -3663331 goalCount = 0 -3663331 goalTotal = 10 -3663332 otherCount = 16 -~~~ -3663333 CURRENTGOAL IS [4] -~~~ -3663342 UP 12 -3663342 2048 255 -3663376 DOWN 12 -3663376 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3663417 homeCount = 34 -3663418 waitCount = 17 -3663418 ripCount = 13 -3663419 locktype1 = 2 -3663419 locktype2 = 4 -3663420 locktype3 = 1 -3663420 goalCount = 0 -3663421 goalTotal = 10 -3663421 otherCount = 16 -~~~ -3663422 CURRENTGOAL IS [4] -~~~ -3667780 UP 8 -3667780 128 255 -~~~ -~~~ -3669059 DOWN 8 -3669059 0 255 -~~~ -~~~ -3669082 0 254 -~~~ -~~~ -3669083 0 252 -~~~ -~~~ -3669085 0 248 -~~~ -~~~ -3669087 0 240 -~~~ -~~~ -3669089 0 224 -~~~ -~~~ -3669091 0 192 -~~~ -~~~ -3669092 0 128 -~~~ -~~~ -3669094 0 0 -~~~ -~~~ -3669096 0 512 -3669097 homeCount = 34 -3669098 waitCount = 17 -3669098 ripCount = 13 -3669099 locktype1 = 2 -3669099 locktype2 = 4 -3669120 locktype3 = 1 -3669120 goalCount = 0 -3669121 goalTotal = 10 -3669121 otherCount = 17 -~~~ -3669122 128 512 -3669779 DOWN 8 -3669778 0 512 -3673367 UP 10 -3673368 waslock = 0 -3673367 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3673398 512 16777728 -~~~ -3673548 512 512 -3674004 DOWN 10 -3674004 0 512 -~~~ -~~~ -3674022 0 2560 -~~~ -~~~ -3674024 0 2048 -3674025 homeCount = 35 -3674026 waitCount = 17 -3674026 ripCount = 13 -3674027 locktype1 = 2 -3674027 locktype2 = 4 -3674028 locktype3 = 1 -3674028 goalCount = 0 -3674029 goalTotal = 10 -3674029 otherCount = 17 -~~~ -3674070 UP 10 -3674071 waslock = 0 -3674070 512 2048 -~~~ -3674098 DOWN 10 -3674098 0 2048 -~~~ -~~~ -~~~ -~~~ -3674117 homeCount = 35 -3674117 waitCount = 17 -3674118 ripCount = 13 -3674118 locktype1 = 2 -3674119 locktype2 = 4 -3674119 locktype3 = 1 -3674120 goalCount = 0 -3674120 goalTotal = 10 -3674121 otherCount = 17 -~~~ -3674174 UP 10 -3674174 waslock = 0 -3674174 512 2048 -~~~ -3674249 DOWN 10 -3674249 0 2048 -~~~ -~~~ -~~~ -~~~ -3674275 homeCount = 35 -3674276 waitCount = 17 -3674276 ripCount = 13 -3674277 locktype1 = 2 -3674277 locktype2 = 4 -3674277 locktype3 = 1 -3674278 goalCount = 0 -3674278 goalTotal = 10 -3674279 otherCount = 17 -~~~ -3674293 UP 10 -3674293 waslock = 0 -3674293 512 2048 -~~~ -3677709 DOWN 10 -3677709 0 2048 -~~~ -~~~ -~~~ -~~~ -3677735 homeCount = 35 -3677736 waitCount = 17 -3677736 ripCount = 13 -3677737 locktype1 = 2 -3677737 locktype2 = 4 -3677738 locktype3 = 1 -3677738 goalCount = 0 -3677738 goalTotal = 10 -3677739 otherCount = 17 -~~~ -3677740 UP 10 -3677740 waslock = 0 -3677740 512 2048 -~~~ -3677816 DOWN 10 -3677816 0 2048 -~~~ -~~~ -~~~ -~~~ -3677847 homeCount = 35 -3677847 waitCount = 17 -3677848 ripCount = 13 -3677848 locktype1 = 2 -3677849 locktype2 = 4 -3677849 locktype3 = 1 -3677850 goalCount = 0 -3677850 goalTotal = 10 -3677851 otherCount = 17 -~~~ -3679816 UP 12 -3679816 2048 2048 -3681588 DOWN 12 -3681588 0 2048 -3681597 UP 12 -3681597 2048 2048 -3684430 DOWN 12 -3684430 0 2048 -3684485 UP 12 -3684485 2048 2048 -3684747 DOWN 12 -3684747 0 2048 -3684948 LOCKOUT 3 -~~~ -3684973 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3684978 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3685030 UP 12 -3685030 2048 0 -3685082 DOWN 12 -3685082 0 0 -3685355 UP 12 -3685355 2048 0 -3692687 DOWN 12 -3692687 0 0 -3692745 UP 12 -3692745 2048 0 -3692881 DOWN 12 -3692881 0 0 -3692939 UP 12 -3692939 2048 0 -3694152 DOWN 12 -3694152 0 0 -3699170 UP 4 -3699170 8 0 -3699650 DOWN 4 -3699650 0 0 -3699701 8 0 -3700017 DOWN 4 -3700017 0 0 -3706263 512 0 -3706530 0 0 -3706569 512 0 -3707502 0 0 -3709664 512 0 -3709973 LOCKEND -~~~ -~~~ -~~~ -3709995 512 512 -3710150 DOWN 10 -3710150 0 512 -3710528 UP 10 -3710528 waslock = 0 -3710528 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3710560 512 16777728 -~~~ -3710592 DOWN 10 -3710592 0 16777728 -~~~ -~~~ -3710613 0 16778752 -~~~ -~~~ -3710615 0 16778240 -3710616 homeCount = 36 -3710616 waitCount = 17 -3710617 ripCount = 13 -3710617 locktype1 = 2 -3710618 locktype2 = 4 -3710618 locktype3 = 2 -3710618 goalCount = 0 -3710619 goalTotal = 10 -3710619 otherCount = 17 -~~~ -3710647 UP 10 -3710647 waslock = 0 -3710647 512 16778240 -~~~ -3710710 512 1024 -3710725 DOWN 10 -3710725 0 1024 -~~~ -~~~ -~~~ -~~~ -3710752 homeCount = 36 -3710752 waitCount = 17 -3710753 ripCount = 13 -3710753 locktype1 = 2 -3710754 locktype2 = 4 -3710754 locktype3 = 2 -3710755 goalCount = 0 -3710755 goalTotal = 10 -3710756 otherCount = 17 -~~~ -3710813 UP 10 -3710813 waslock = 0 -3710813 512 1024 -~~~ -3716169 DOWN 10 -3716169 0 1024 -~~~ -3716193 UP 10 -3716194 waslock = 0 -3716193 512 1024 -~~~ -~~~ -~~~ -3716197 homeCount = 36 -3716197 waitCount = 17 -3716198 ripCount = 13 -3716198 locktype1 = 2 -3716199 locktype2 = 4 -3716199 locktype3 = 2 -3716200 goalCount = 0 -3716200 goalTotal = 10 -3716201 otherCount = 17 -~~~ -~~~ -3716276 DOWN 10 -3716276 0 1024 -~~~ -~~~ -~~~ -~~~ -3716297 homeCount = 36 -3716297 waitCount = 17 -3716298 ripCount = 13 -3716298 locktype1 = 2 -3716299 locktype2 = 4 -3716299 locktype3 = 2 -3716300 goalCount = 0 -3716300 goalTotal = 10 -3716301 otherCount = 17 -~~~ -3717906 UP 11 -3717906 1024 1024 -3723028 DOWN 11 -3723028 0 1024 -3723040 UP 11 -3723040 1024 1024 -3724906 BEEP1 -3724906 BEEP2 -~~~ -~~~ -~~~ -3724926 1024 33555456 -~~~ -3725076 1024 1024 -3731454 DOWN 11 -3731454 0 1024 -~~~ -3731474 UP 11 -3731474 1024 1024 -~~~ -~~~ -3731475 1024 0 -~~~ -3731477 1024 1 -~~~ -~~~ -3731478 1024 3 -~~~ -~~~ -3731480 1024 7 -~~~ -~~~ -3731482 1024 15 -~~~ -~~~ -3731483 1024 31 -~~~ -~~~ -3731485 1024 63 -~~~ -~~~ -3731487 1024 127 -~~~ -~~~ -3731489 1024 255 -3731490 homeCount = 36 -3731490 waitCount = 17 -3731511 ripCount = 14 -3731512 locktype1 = 2 -3731512 locktype2 = 4 -3731513 locktype3 = 2 -3731513 goalCount = 0 -3731514 goalTotal = 10 -3731514 otherCount = 17 -~~~ -3731515 CURRENTGOAL IS [4] -~~~ -3731564 DOWN 11 -3731564 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3731600 homeCount = 36 -3731600 waitCount = 17 -3731601 ripCount = 14 -3731601 locktype1 = 2 -3731602 locktype2 = 4 -3731602 locktype3 = 2 -3731603 goalCount = 0 -3731603 goalTotal = 10 -3731604 otherCount = 17 -~~~ -3731605 CURRENTGOAL IS [4] -~~~ -3731649 UP 11 -3731648 1024 255 -3731667 DOWN 11 -3731667 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3731701 homeCount = 36 -3731702 waitCount = 17 -3731702 ripCount = 14 -3731703 locktype1 = 2 -3731703 locktype2 = 4 -3731704 locktype3 = 2 -3731704 goalCount = 0 -3731705 goalTotal = 10 -3731705 otherCount = 17 -~~~ -3731706 CURRENTGOAL IS [4] -~~~ -3745775 UP 10 -3745776 waslock = 0 -3745775 512 255 -~~~ -3745796 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3745804 512 254 -~~~ -~~~ -3745805 512 252 -~~~ -~~~ -3745807 512 248 -~~~ -~~~ -3745809 512 240 -~~~ -~~~ -3745811 512 224 -~~~ -~~~ -3745813 512 192 -~~~ -~~~ -3745815 512 128 -~~~ -~~~ -3745816 512 0 -~~~ -~~~ -~~~ -3745982 0 0 -3749232 512 0 -3749422 0 0 -3749467 512 0 -3749501 0 0 -3749833 512 0 -3750026 0 0 -3750243 512 0 -3750549 0 0 -3752435 512 0 -3753237 0 0 -3753302 512 0 -3753343 0 0 -3759767 512 0 -3760055 0 0 -3760344 512 0 -3760578 0 0 -3768463 512 0 -3768985 0 0 -3769220 512 0 -3769969 0 0 -3770796 LOCKEND -~~~ -~~~ -~~~ -3770817 0 512 -3771670 UP 10 -3771670 waslock = 0 -3771670 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3771703 512 16777728 -~~~ -3771725 DOWN 10 -3771725 0 16777728 -~~~ -~~~ -3771749 0 16779776 -~~~ -~~~ -3771751 0 16779264 -3771752 homeCount = 37 -3771753 waitCount = 17 -3771753 ripCount = 14 -3771754 locktype1 = 2 -3771754 locktype2 = 5 -3771755 locktype3 = 2 -3771755 goalCount = 0 -3771756 goalTotal = 10 -3771756 otherCount = 17 -~~~ -3771805 UP 10 -3771805 waslock = 0 -3771805 512 16779264 -~~~ -3771853 512 2048 -3776248 DOWN 10 -3776248 0 2048 -3776261 UP 10 -3776261 waslock = 0 -3776261 512 2048 -~~~ -~~~ -~~~ -~~~ -3776269 homeCount = 37 -3776269 waitCount = 17 -3776270 ripCount = 14 -3776270 locktype1 = 2 -3776271 locktype2 = 5 -3776271 locktype3 = 2 -3776272 goalCount = 0 -3776272 goalTotal = 10 -3776272 otherCount = 17 -~~~ -~~~ -3777488 DOWN 10 -3777488 0 2048 -~~~ -~~~ -~~~ -~~~ -3777511 homeCount = 37 -3777511 waitCount = 17 -3777512 ripCount = 14 -3777512 locktype1 = 2 -3777513 locktype2 = 5 -3777513 locktype3 = 2 -3777514 goalCount = 0 -3777514 goalTotal = 10 -3777515 otherCount = 17 -~~~ -3778917 UP 12 -3778916 2048 2048 -3780637 DOWN 12 -3780637 0 2048 -3780645 UP 12 -3780645 2048 2048 -3781520 DOWN 12 -3781520 0 2048 -3781545 UP 12 -3781544 2048 2048 -3781571 DOWN 12 -3781571 0 2048 -3781623 UP 12 -3781623 2048 2048 -3781643 DOWN 12 -3781643 0 2048 -3781678 UP 12 -3781678 2048 2048 -3784417 CLICK1 -3784417 CLICK2 -~~~ -~~~ -~~~ -3784438 2048 67110912 -~~~ -3784588 2048 2048 -3789657 DOWN 12 -3789657 0 2048 -~~~ -~~~ -3789677 0 0 -~~~ -~~~ -3789678 0 1 -~~~ -~~~ -3789680 0 3 -~~~ -~~~ -3789682 0 7 -~~~ -~~~ -3789684 0 15 -~~~ -~~~ -3789686 0 31 -~~~ -~~~ -3789688 0 63 -~~~ -~~~ -3789689 0 127 -~~~ -~~~ -3789691 0 255 -3789692 homeCount = 37 -3789693 waitCount = 18 -3789693 ripCount = 14 -3789694 locktype1 = 2 -3789694 locktype2 = 5 -3789715 locktype3 = 2 -3789716 goalCount = 0 -3789716 goalTotal = 10 -3789717 otherCount = 17 -~~~ -3789718 CURRENTGOAL IS [4] -~~~ -3789718 UP 12 -3789718 2048 255 -3789772 DOWN 12 -3789772 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3789807 homeCount = 37 -3789808 waitCount = 18 -3789808 ripCount = 14 -3789809 locktype1 = 2 -3789809 locktype2 = 5 -3789810 locktype3 = 2 -3789810 goalCount = 0 -3789811 goalTotal = 10 -3789811 otherCount = 17 -~~~ -3789812 CURRENTGOAL IS [4] -~~~ -3794235 UP 5 -3794235 16 255 -~~~ -~~~ -3795367 DOWN 5 -3795367 0 255 -~~~ -~~~ -3795392 0 254 -~~~ -~~~ -3795394 0 252 -~~~ -~~~ -3795396 0 248 -~~~ -~~~ -3795398 0 240 -~~~ -~~~ -3795399 0 224 -~~~ -~~~ -3795401 0 192 -~~~ -~~~ -3795403 0 128 -~~~ -~~~ -3795405 0 0 -~~~ -~~~ -3795407 0 512 -3795408 homeCount = 37 -3795408 waitCount = 18 -3795409 ripCount = 14 -3795409 locktype1 = 2 -3795410 locktype2 = 5 -3795431 locktype3 = 2 -3795431 goalCount = 0 -3795432 goalTotal = 10 -3795432 otherCount = 18 -~~~ -3795433 16 512 -3795632 DOWN 5 -3795632 0 512 -3795657 16 512 -3795681 DOWN 5 -3795681 0 512 -3799735 UP 10 -3799735 waslock = 0 -3799735 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3799766 512 16777728 -~~~ -3799916 512 512 -3800136 DOWN 10 -3800136 0 512 -~~~ -~~~ -3800161 0 2560 -~~~ -~~~ -3800163 0 2048 -3800164 homeCount = 38 -3800165 waitCount = 18 -3800165 ripCount = 14 -3800166 locktype1 = 2 -3800166 locktype2 = 5 -3800167 locktype3 = 2 -3800167 goalCount = 0 -3800168 goalTotal = 10 -3800168 otherCount = 18 -~~~ -3800211 UP 10 -3800211 waslock = 0 -3800211 512 2048 -3800219 DOWN 10 -3800219 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3800237 homeCount = 38 -3800238 waitCount = 18 -3800238 ripCount = 14 -3800239 locktype1 = 2 -3800239 locktype2 = 5 -3800239 locktype3 = 2 -3800240 goalCount = 0 -3800240 goalTotal = 10 -3800241 otherCount = 18 -~~~ -3800339 UP 10 -3800340 waslock = 0 -3800339 512 2048 -~~~ -3800385 DOWN 10 -3800385 0 2048 -3800396 UP 10 -3800396 waslock = 0 -3800396 512 2048 -~~~ -~~~ -~~~ -~~~ -3800409 homeCount = 38 -3800410 waitCount = 18 -3800410 ripCount = 14 -3800411 locktype1 = 2 -3800411 locktype2 = 5 -3800412 locktype3 = 2 -3800412 goalCount = 0 -3800413 goalTotal = 10 -3800413 otherCount = 18 -~~~ -3800414 DOWN 10 -3800414 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3800451 homeCount = 38 -3800452 waitCount = 18 -3800452 ripCount = 14 -3800453 locktype1 = 2 -3800453 locktype2 = 5 -3800453 locktype3 = 2 -3800454 goalCount = 0 -3800454 goalTotal = 10 -3800455 otherCount = 18 -~~~ -3800468 UP 10 -3800468 waslock = 0 -3800467 512 2048 -~~~ -3803996 DOWN 10 -3803996 0 2048 -~~~ -~~~ -~~~ -~~~ -3804015 homeCount = 38 -3804016 waitCount = 18 -3804016 ripCount = 14 -3804017 locktype1 = 2 -3804017 locktype2 = 5 -3804018 locktype3 = 2 -3804018 goalCount = 0 -3804019 goalTotal = 10 -3804019 otherCount = 18 -~~~ -3804022 UP 10 -3804022 waslock = 0 -3804022 512 2048 -~~~ -3804098 DOWN 10 -3804098 0 2048 -~~~ -~~~ -~~~ -~~~ -3804127 homeCount = 38 -3804128 waitCount = 18 -3804128 ripCount = 14 -3804129 locktype1 = 2 -3804129 locktype2 = 5 -3804129 locktype3 = 2 -3804130 goalCount = 0 -3804130 goalTotal = 10 -3804131 otherCount = 18 -~~~ -3805817 UP 12 -3805817 2048 2048 -3807265 DOWN 12 -3807265 0 2048 -3807349 UP 12 -3807349 2048 2048 -3807359 DOWN 12 -3807359 0 2048 -3807468 UP 12 -3807468 2048 2048 -3807502 DOWN 12 -3807502 0 2048 -3807537 UP 12 -3807537 2048 2048 -3811317 CLICK1 -3811317 CLICK2 -~~~ -~~~ -~~~ -3811334 2048 67110912 -~~~ -3811484 2048 2048 -3817632 DOWN 12 -3817632 0 2048 -~~~ -~~~ -3817654 0 0 -~~~ -~~~ -3817656 0 1 -~~~ -~~~ -3817658 0 3 -~~~ -~~~ -3817660 0 7 -~~~ -~~~ -3817662 0 15 -~~~ -~~~ -3817664 0 31 -~~~ -~~~ -3817665 0 63 -~~~ -~~~ -3817667 0 127 -~~~ -~~~ -3817669 0 255 -3817670 homeCount = 38 -3817671 waitCount = 19 -3817671 ripCount = 14 -3817672 locktype1 = 2 -3817672 locktype2 = 5 -3817673 locktype3 = 2 -3817694 goalCount = 0 -3817694 goalTotal = 10 -3817695 otherCount = 18 -~~~ -3817696 CURRENTGOAL IS [4] -~~~ -3817696 UP 12 -3817696 2048 255 -3817723 DOWN 12 -3817723 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3817760 homeCount = 38 -3817760 waitCount = 19 -3817761 ripCount = 14 -3817761 locktype1 = 2 -3817762 locktype2 = 5 -3817762 locktype3 = 2 -3817763 goalCount = 0 -3817763 goalTotal = 10 -3817764 otherCount = 18 -~~~ -3817765 CURRENTGOAL IS [4] -~~~ -3821477 UP 1 -3821477 1 255 -~~~ -~~~ -3822494 DOWN 1 -3822494 0 255 -~~~ -~~~ -3822514 0 254 -~~~ -~~~ -3822516 0 252 -~~~ -~~~ -3822517 0 248 -~~~ -~~~ -3822519 0 240 -~~~ -~~~ -3822521 0 224 -~~~ -~~~ -3822523 0 192 -~~~ -~~~ -3822525 0 128 -~~~ -~~~ -3822526 0 0 -~~~ -~~~ -3822528 0 512 -3822529 homeCount = 38 -3822530 waitCount = 19 -3822530 ripCount = 14 -3822531 locktype1 = 2 -3822531 locktype2 = 5 -3822552 locktype3 = 2 -3822553 goalCount = 0 -3822553 goalTotal = 10 -3822554 otherCount = 19 -~~~ -3826161 UP 10 -3826161 waslock = 0 -3826161 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3826190 512 16777728 -~~~ -3826340 512 512 -3826395 DOWN 10 -3826395 0 512 -3826408 UP 10 -3826408 waslock = 0 -3826408 512 512 -~~~ -~~~ -3826416 512 1536 -~~~ -~~~ -3826418 512 1024 -3826419 homeCount = 39 -3826420 waitCount = 19 -3826420 ripCount = 14 -3826420 locktype1 = 2 -3826421 locktype2 = 5 -3826421 locktype3 = 2 -3826422 goalCount = 0 -3826422 goalTotal = 10 -3826423 otherCount = 19 -~~~ -~~~ -3829789 DOWN 10 -3829789 0 1024 -~~~ -~~~ -~~~ -~~~ -3829819 homeCount = 39 -3829820 waitCount = 19 -3829820 ripCount = 14 -3829821 locktype1 = 2 -3829821 locktype2 = 5 -3829822 locktype3 = 2 -3829822 goalCount = 0 -3829823 goalTotal = 10 -3829823 otherCount = 19 -~~~ -3829857 UP 10 -3829857 waslock = 0 -3829857 512 1024 -~~~ -3829908 DOWN 10 -3829908 0 1024 -~~~ -~~~ -~~~ -~~~ -3829939 homeCount = 39 -3829939 waitCount = 19 -3829940 ripCount = 14 -3829940 locktype1 = 2 -3829941 locktype2 = 5 -3829941 locktype3 = 2 -3829942 goalCount = 0 -3829942 goalTotal = 10 -3829943 otherCount = 19 -~~~ -3831810 UP 11 -3831810 1024 1024 -3834588 DOWN 11 -3834588 0 1024 -3834611 UP 11 -3834611 1024 1024 -3834810 BEEP1 -3834810 BEEP2 -~~~ -~~~ -~~~ -3834838 1024 33555456 -~~~ -3834988 1024 1024 -3843339 DOWN 11 -3843339 0 1024 -~~~ -~~~ -3843368 0 0 -~~~ -~~~ -3843370 0 1 -~~~ -~~~ -3843372 0 3 -~~~ -~~~ -3843373 0 7 -~~~ -~~~ -3843375 0 15 -~~~ -~~~ -3843377 0 31 -~~~ -~~~ -3843379 0 63 -~~~ -~~~ -3843381 0 127 -~~~ -~~~ -3843382 0 255 -3843383 homeCount = 39 -3843384 waitCount = 19 -3843384 ripCount = 15 -3843385 locktype1 = 2 -3843385 locktype2 = 5 -3843407 locktype3 = 2 -3843407 goalCount = 0 -3843408 goalTotal = 10 -3843408 otherCount = 19 -~~~ -3843409 CURRENTGOAL IS [4] -~~~ -3850007 UP 6 -3850007 32 255 -~~~ -~~~ -3850438 DOWN 6 -3850438 0 255 -~~~ -~~~ -3850460 0 254 -~~~ -~~~ -3850461 0 252 -~~~ -~~~ -3850463 0 248 -~~~ -~~~ -3850465 0 240 -~~~ -~~~ -3850467 0 224 -~~~ -~~~ -3850469 0 192 -~~~ -~~~ -3850471 0 128 -~~~ -~~~ -3850472 0 0 -~~~ -~~~ -3850474 0 512 -3850475 homeCount = 39 -3850476 waitCount = 19 -3850476 ripCount = 15 -3850477 locktype1 = 2 -3850477 locktype2 = 5 -3850498 locktype3 = 2 -3850499 goalCount = 0 -3850499 goalTotal = 10 -3850500 otherCount = 20 -~~~ -3854285 UP 10 -3854285 waslock = 0 -3854285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3854318 512 16777728 -~~~ -3854327 DOWN 10 -3854327 0 16777728 -~~~ -~~~ -3854355 0 16778752 -~~~ -~~~ -3854357 0 16778240 -3854358 homeCount = 40 -3854359 waitCount = 19 -3854359 ripCount = 15 -3854359 locktype1 = 2 -3854360 locktype2 = 5 -3854360 locktype3 = 2 -3854361 goalCount = 0 -3854361 goalTotal = 10 -3854362 otherCount = 20 -~~~ -3854428 UP 10 -3854428 waslock = 0 -3854428 512 16778240 -~~~ -3854468 512 1024 -3854575 DOWN 10 -3854575 0 1024 -3854594 UP 10 -3854594 waslock = 0 -3854594 512 1024 -~~~ -~~~ -~~~ -~~~ -3854615 homeCount = 40 -3854616 waitCount = 19 -3854616 ripCount = 15 -3854617 locktype1 = 2 -3854617 locktype2 = 5 -3854617 locktype3 = 2 -3854618 goalCount = 0 -3854618 goalTotal = 10 -3854619 otherCount = 20 -~~~ -~~~ -3858624 DOWN 10 -3858624 0 1024 -3858631 UP 10 -3858632 waslock = 0 -3858631 512 1024 -~~~ -~~~ -~~~ -~~~ -3858656 homeCount = 40 -3858657 waitCount = 19 -3858657 ripCount = 15 -3858658 locktype1 = 2 -3858658 locktype2 = 5 -3858659 locktype3 = 2 -3858659 goalCount = 0 -3858660 goalTotal = 10 -3858660 otherCount = 20 -~~~ -~~~ -3858741 DOWN 10 -3858741 0 1024 -~~~ -~~~ -~~~ -~~~ -3858764 homeCount = 40 -3858764 waitCount = 19 -3858765 ripCount = 15 -3858765 locktype1 = 2 -3858765 locktype2 = 5 -3858766 locktype3 = 2 -3858766 goalCount = 0 -3858767 goalTotal = 10 -3858767 otherCount = 20 -~~~ -3858768 UP 10 -3858768 waslock = 0 -3858768 512 1024 -~~~ -3858851 DOWN 10 -3858851 0 1024 -~~~ -~~~ -~~~ -~~~ -3858874 homeCount = 40 -3858874 waitCount = 19 -3858875 ripCount = 15 -3858875 locktype1 = 2 -3858876 locktype2 = 5 -3858876 locktype3 = 2 -3858877 goalCount = 0 -3858877 goalTotal = 10 -3858878 otherCount = 20 -~~~ -3861332 UP 11 -3861332 1024 1024 -3864187 DOWN 11 -3864187 0 1024 -3864226 UP 11 -3864226 1024 1024 -3864504 DOWN 11 -3864504 0 1024 -3864515 UP 11 -3864515 1024 1024 -3869332 BEEP1 -3869332 BEEP2 -~~~ -~~~ -~~~ -3869353 1024 33555456 -~~~ -3869503 1024 1024 -3877388 DOWN 11 -3877388 0 1024 -~~~ -~~~ -3877411 0 0 -~~~ -~~~ -3877413 0 1 -~~~ -~~~ -3877415 0 3 -~~~ -~~~ -3877416 0 7 -~~~ -~~~ -3877418 0 15 -~~~ -~~~ -3877420 0 31 -~~~ -~~~ -3877422 0 63 -~~~ -~~~ -3877424 0 127 -~~~ -~~~ -3877425 0 255 -3877426 homeCount = 40 -3877427 waitCount = 19 -3877427 ripCount = 16 -3877428 locktype1 = 2 -3877428 locktype2 = 5 -3877429 locktype3 = 2 -3877450 goalCount = 0 -3877450 goalTotal = 10 -3877451 otherCount = 20 -~~~ -3877452 CURRENTGOAL IS [4] -~~~ -3877452 UP 11 -3877452 1024 255 -3877495 DOWN 11 -3877495 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3877536 homeCount = 40 -3877537 waitCount = 19 -3877537 ripCount = 16 -3877538 locktype1 = 2 -3877538 locktype2 = 5 -3877539 locktype3 = 2 -3877539 goalCount = 0 -3877540 goalTotal = 10 -3877540 otherCount = 20 -~~~ -3877541 CURRENTGOAL IS [4] -~~~ -3888649 UP 10 -3888649 waslock = 0 -3888649 512 255 -~~~ -3888671 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3888679 512 254 -~~~ -~~~ -3888681 512 252 -~~~ -~~~ -3888683 512 248 -~~~ -~~~ -3888684 512 240 -~~~ -~~~ -3888686 512 224 -~~~ -~~~ -3888688 512 192 -~~~ -~~~ -3888690 512 128 -~~~ -~~~ -3888692 512 0 -~~~ -~~~ -~~~ -3888764 0 0 -3888945 512 0 -3889129 0 0 -3892595 UP 11 -3892595 1024 0 -3892720 DOWN 11 -3892720 0 0 -3896362 512 0 -3896505 0 0 -3896586 512 0 -3896737 0 0 -3896765 512 0 -3897158 0 0 -3897194 512 0 -3897289 0 0 -3897321 512 0 -3897709 0 0 -3899622 512 0 -3900148 0 0 -3906959 512 0 -3908083 0 0 -3908132 512 0 -3908168 0 0 -3913671 LOCKEND -~~~ -~~~ -~~~ -3913693 0 512 -3919562 UP 10 -3919562 waslock = 0 -3919562 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3919587 512 16777728 -~~~ -3919709 DOWN 10 -3919709 0 16777728 -3919737 0 512 -~~~ -~~~ -3919739 0 1536 -~~~ -~~~ -3919740 0 1024 -3919741 homeCount = 41 -3919742 waitCount = 19 -3919742 ripCount = 16 -3919743 locktype1 = 2 -3919743 locktype2 = 6 -3919744 locktype3 = 2 -3919744 goalCount = 0 -3919745 goalTotal = 10 -3919745 otherCount = 20 -~~~ -3919773 UP 10 -3919773 waslock = 0 -3919773 512 1024 -3919795 DOWN 10 -3919795 0 1024 -~~~ -3919811 UP 10 -3919811 waslock = 0 -3919811 512 1024 -~~~ -~~~ -~~~ -~~~ -3919830 homeCount = 41 -3919830 waitCount = 19 -3919831 ripCount = 16 -3919831 locktype1 = 2 -3919832 locktype2 = 6 -3919832 locktype3 = 2 -3919833 goalCount = 0 -3919833 goalTotal = 10 -3919834 otherCount = 20 -~~~ -~~~ -3924979 DOWN 10 -3924979 0 1024 -~~~ -~~~ -~~~ -~~~ -3925005 homeCount = 41 -3925006 waitCount = 19 -3925006 ripCount = 16 -3925007 locktype1 = 2 -3925007 locktype2 = 6 -3925008 locktype3 = 2 -3925008 goalCount = 0 -3925008 goalTotal = 10 -3925009 otherCount = 20 -~~~ -3926610 UP 11 -3926610 1024 1024 -3926694 DOWN 11 -3926694 0 1024 -3926742 UP 11 -3926742 1024 1024 -3930573 DOWN 11 -3930573 0 1024 -3930600 UP 11 -3930600 1024 1024 -3930610 BEEP1 -3930610 BEEP2 -~~~ -~~~ -~~~ -3930628 1024 33555456 -~~~ -3930778 1024 1024 -3937964 DOWN 11 -3937964 0 1024 -3937975 UP 11 -3937975 1024 1024 -~~~ -~~~ -3937994 1024 0 -~~~ -~~~ -3937996 1024 1 -~~~ -~~~ -3937997 1024 3 -~~~ -~~~ -3937999 1024 7 -~~~ -~~~ -3938001 1024 15 -~~~ -~~~ -3938003 1024 31 -~~~ -~~~ -3938005 1024 63 -~~~ -~~~ -3938006 1024 127 -~~~ -~~~ -3938008 1024 255 -3938009 homeCount = 41 -3938010 waitCount = 19 -3938010 ripCount = 17 -3938011 locktype1 = 2 -3938031 locktype2 = 6 -3938032 locktype3 = 2 -3938032 goalCount = 0 -3938033 goalTotal = 10 -3938033 otherCount = 20 -~~~ -3938034 CURRENTGOAL IS [4] -~~~ -3938094 DOWN 11 -3938094 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3938130 homeCount = 41 -3938131 waitCount = 19 -3938131 ripCount = 17 -3938132 locktype1 = 2 -3938132 locktype2 = 6 -3938133 locktype3 = 2 -3938133 goalCount = 0 -3938134 goalTotal = 10 -3938134 otherCount = 20 -~~~ -3938135 CURRENTGOAL IS [4] -~~~ -3944182 UP 7 -3944182 64 255 -~~~ -~~~ -3945239 DOWN 7 -3945239 0 255 -~~~ -~~~ -3945265 0 254 -~~~ -~~~ -3945267 0 252 -~~~ -~~~ -3945269 0 248 -~~~ -~~~ -3945271 0 240 -~~~ -~~~ -3945272 0 224 -~~~ -~~~ -3945274 0 192 -~~~ -~~~ -3945276 0 128 -~~~ -~~~ -3945278 0 0 -~~~ -~~~ -3945280 0 512 -3945281 homeCount = 41 -3945281 waitCount = 19 -3945282 ripCount = 17 -3945282 locktype1 = 2 -3945283 locktype2 = 6 -3945304 locktype3 = 2 -3945304 goalCount = 0 -3945305 goalTotal = 10 -3945305 otherCount = 21 -~~~ -3945639 64 512 -3945686 DOWN 7 -3945686 0 512 -3950837 UP 10 -3950838 waslock = 0 -3950837 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3950872 512 16777728 -~~~ -3951022 512 512 -3955553 DOWN 10 -3955553 0 512 -~~~ -~~~ -3955574 0 2560 -~~~ -~~~ -3955576 0 2048 -3955577 homeCount = 42 -3955578 waitCount = 19 -3955578 ripCount = 17 -3955579 locktype1 = 2 -3955579 locktype2 = 6 -3955580 locktype3 = 2 -3955580 goalCount = 0 -3955581 goalTotal = 10 -3955581 otherCount = 21 -~~~ -3955584 UP 10 -3955584 waslock = 0 -3955584 512 2048 -~~~ -3955653 DOWN 10 -3955653 0 2048 -~~~ -~~~ -~~~ -~~~ -3955679 homeCount = 42 -3955679 waitCount = 19 -3955680 ripCount = 17 -3955680 locktype1 = 2 -3955681 locktype2 = 6 -3955681 locktype3 = 2 -3955682 goalCount = 0 -3955682 goalTotal = 10 -3955683 otherCount = 21 -~~~ -3957642 UP 12 -3957642 2048 2048 -3960221 DOWN 12 -3960221 0 2048 -3960243 UP 12 -3960243 2048 2048 -3960399 DOWN 12 -3960399 0 2048 -3960427 UP 12 -3960427 2048 2048 -3960642 CLICK1 -3960642 CLICK2 -~~~ -~~~ -~~~ -3960669 2048 67110912 -~~~ -3960819 2048 2048 -3965466 DOWN 12 -3965465 0 2048 -~~~ -~~~ -3965487 0 0 -~~~ -~~~ -3965489 0 1 -~~~ -~~~ -3965491 0 3 -~~~ -~~~ -3965492 0 7 -~~~ -~~~ -3965494 0 15 -~~~ -~~~ -3965496 0 31 -~~~ -~~~ -3965498 0 63 -~~~ -~~~ -3965500 0 127 -~~~ -~~~ -3965502 0 255 -3965503 homeCount = 42 -3965503 waitCount = 20 -3965504 ripCount = 17 -3965504 locktype1 = 2 -3965505 locktype2 = 6 -3965505 locktype3 = 2 -3965526 goalCount = 0 -3965526 goalTotal = 10 -3965527 otherCount = 21 -~~~ -3965528 CURRENTGOAL IS [4] -~~~ -3965532 UP 12 -3965532 2048 255 -3965567 DOWN 12 -3965567 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3965604 homeCount = 42 -3965604 waitCount = 20 -3965605 ripCount = 17 -3965605 locktype1 = 2 -3965606 locktype2 = 6 -3965606 locktype3 = 2 -3965607 goalCount = 0 -3965607 goalTotal = 10 -3965608 otherCount = 21 -~~~ -3965609 CURRENTGOAL IS [4] -~~~ -3978210 UP 1 -3978210 1 255 -~~~ -~~~ -3979269 DOWN 1 -3979269 0 255 -~~~ -~~~ -3979288 0 254 -~~~ -~~~ -3979290 0 252 -~~~ -~~~ -3979292 0 248 -~~~ -~~~ -3979294 0 240 -~~~ -~~~ -3979295 0 224 -~~~ -~~~ -3979297 0 192 -~~~ -~~~ -3979299 0 128 -~~~ -~~~ -3979301 0 0 -~~~ -~~~ -3979303 0 512 -3979304 homeCount = 42 -3979304 waitCount = 20 -3979305 ripCount = 17 -3979305 locktype1 = 2 -3979306 locktype2 = 6 -3979326 locktype3 = 2 -3979327 goalCount = 0 -3979327 goalTotal = 10 -3979328 otherCount = 22 -~~~ -3982606 UP 10 -3982607 waslock = 0 -3982606 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3982633 512 16777728 -~~~ -3982783 512 512 -3982795 DOWN 10 -3982795 0 512 -~~~ -~~~ -3982807 0 1536 -~~~ -~~~ -3982809 0 1024 -3982810 homeCount = 43 -3982811 waitCount = 20 -3982811 ripCount = 17 -3982812 locktype1 = 2 -3982812 locktype2 = 6 -3982813 locktype3 = 2 -3982813 goalCount = 0 -3982814 goalTotal = 10 -3982814 otherCount = 22 -~~~ -3982834 UP 10 -3982834 waslock = 0 -3982834 512 1024 -~~~ -3987599 DOWN 10 -3987599 0 1024 -3987616 UP 10 -3987617 waslock = 0 -3987616 512 1024 -~~~ -~~~ -~~~ -~~~ -3987621 homeCount = 43 -3987622 waitCount = 20 -3987622 ripCount = 17 -3987623 locktype1 = 2 -3987623 locktype2 = 6 -3987624 locktype3 = 2 -3987624 goalCount = 0 -3987625 goalTotal = 10 -3987625 otherCount = 22 -~~~ -~~~ -3987720 DOWN 10 -3987720 0 1024 -~~~ -~~~ -~~~ -~~~ -3987742 homeCount = 43 -3987742 waitCount = 20 -3987743 ripCount = 17 -3987743 locktype1 = 2 -3987744 locktype2 = 6 -3987744 locktype3 = 2 -3987745 goalCount = 0 -3987745 goalTotal = 10 -3987746 otherCount = 22 -~~~ -3987749 UP 10 -3987749 waslock = 0 -3987749 512 1024 -~~~ -3987825 DOWN 10 -3987825 0 1024 -~~~ -~~~ -~~~ -~~~ -3987859 homeCount = 43 -3987860 waitCount = 20 -3987860 ripCount = 17 -3987861 locktype1 = 2 -3987861 locktype2 = 6 -3987862 locktype3 = 2 -3987862 goalCount = 0 -3987862 goalTotal = 10 -3987863 otherCount = 22 -~~~ -3989547 UP 11 -3989547 1024 1024 -3995048 BEEP1 -3995048 BEEP2 -~~~ -~~~ -~~~ -3995074 1024 33555456 -~~~ -3995224 1024 1024 -4000147 DOWN 11 -4000147 0 1024 -~~~ -~~~ -4000174 0 0 -~~~ -~~~ -4000176 UP 11 -4000176 1024 1 -~~~ -~~~ -4000178 1024 3 -~~~ -~~~ -4000180 1024 7 -~~~ -~~~ -4000181 1024 15 -~~~ -~~~ -4000183 1024 31 -~~~ -~~~ -4000185 1024 63 -~~~ -~~~ -4000187 1024 127 -~~~ -~~~ -4000189 1024 255 -4000190 homeCount = 43 -4000190 waitCount = 20 -4000191 ripCount = 18 -4000212 locktype1 = 2 -4000212 locktype2 = 6 -4000213 locktype3 = 2 -4000213 goalCount = 0 -4000214 goalTotal = 10 -4000214 otherCount = 22 -~~~ -4000215 CURRENTGOAL IS [4] -~~~ -4002715 DOWN 11 -4002715 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4002752 homeCount = 43 -4002752 waitCount = 20 -4002753 ripCount = 18 -4002753 locktype1 = 2 -4002754 locktype2 = 6 -4002754 locktype3 = 2 -4002755 goalCount = 0 -4002755 goalTotal = 10 -4002756 otherCount = 22 -~~~ -4002757 CURRENTGOAL IS [4] -~~~ -4002789 UP 11 -4002789 1024 255 -4002814 DOWN 11 -4002814 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4002852 homeCount = 43 -4002853 waitCount = 20 -4002853 ripCount = 18 -4002854 locktype1 = 2 -4002854 locktype2 = 6 -4002855 locktype3 = 2 -4002855 goalCount = 0 -4002855 goalTotal = 10 -4002856 otherCount = 22 -~~~ -4002857 CURRENTGOAL IS [4] -~~~ -4017754 UP 4 -4017754 8 255 -~~~ -~~~ -4017778 outer reward -~~~ -4017778 8 524543 -~~~ -~~~ -4018228 8 255 -4026115 DOWN 4 -4026115 0 255 -4026124 8 255 -~~~ -~~~ -4026135 8 254 -~~~ -~~~ -4026137 8 252 -~~~ -~~~ -4026139 8 248 -~~~ -~~~ -4026141 8 240 -~~~ -~~~ -4026143 8 224 -~~~ -~~~ -4026145 8 192 -~~~ -~~~ -4026146 8 128 -~~~ -~~~ -4026148 8 0 -~~~ -~~~ -4026150 8 512 -4026151 homeCount = 43 -4026152 waitCount = 20 -4026152 ripCount = 18 -4026153 locktype1 = 2 -4026153 locktype2 = 6 -4026174 locktype3 = 2 -4026175 goalCount = 1 -4026175 goalTotal = 11 -4026176 otherCount = 22 -~~~ -4026210 DOWN 4 -4026210 0 512 -4031912 UP 10 -4031913 waslock = 0 -4031912 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4031942 512 16777728 -~~~ -4032092 512 512 -4034692 DOWN 10 -4034692 0 512 -4034708 UP 10 -4034708 waslock = 0 -4034708 512 512 -~~~ -~~~ -4034727 512 1536 -~~~ -~~~ -4034729 512 1024 -4034730 homeCount = 44 -4034730 waitCount = 20 -4034731 ripCount = 18 -4034731 locktype1 = 2 -4034732 locktype2 = 6 -4034732 locktype3 = 2 -4034733 goalCount = 1 -4034733 goalTotal = 11 -4034734 otherCount = 22 -~~~ -~~~ -4034802 DOWN 10 -4034802 0 1024 -~~~ -~~~ -~~~ -~~~ -4034829 homeCount = 44 -4034829 waitCount = 20 -4034830 ripCount = 18 -4034830 locktype1 = 2 -4034831 locktype2 = 6 -4034831 locktype3 = 2 -4034832 goalCount = 1 -4034832 goalTotal = 11 -4034833 otherCount = 22 -~~~ -4034845 UP 10 -4034845 waslock = 0 -4034845 512 1024 -~~~ -4034916 DOWN 10 -4034916 0 1024 -~~~ -~~~ -~~~ -~~~ -4034938 homeCount = 44 -4034939 waitCount = 20 -4034939 ripCount = 18 -4034940 locktype1 = 2 -4034940 locktype2 = 6 -4034941 locktype3 = 2 -4034941 goalCount = 1 -4034942 goalTotal = 11 -4034942 otherCount = 22 -~~~ -4034974 UP 10 -4034974 waslock = 0 -4034974 512 1024 -~~~ -4036788 DOWN 10 -4036788 0 1024 -4036798 UP 10 -4036798 waslock = 0 -4036798 512 1024 -~~~ -~~~ -~~~ -~~~ -4036820 homeCount = 44 -4036821 waitCount = 20 -4036821 ripCount = 18 -4036822 locktype1 = 2 -4036822 locktype2 = 6 -4036823 locktype3 = 2 -4036823 goalCount = 1 -4036824 goalTotal = 11 -4036824 otherCount = 22 -~~~ -~~~ -4036891 DOWN 10 -4036891 0 1024 -~~~ -~~~ -~~~ -~~~ -4036918 homeCount = 44 -4036919 waitCount = 20 -4036919 ripCount = 18 -4036920 locktype1 = 2 -4036920 locktype2 = 6 -4036921 locktype3 = 2 -4036921 goalCount = 1 -4036922 goalTotal = 11 -4036922 otherCount = 22 -~~~ -4039257 UP 11 -4039257 1024 1024 -4040494 DOWN 11 -4040494 0 1024 -4040534 UP 11 -4040534 1024 1024 -4041183 DOWN 11 -4041183 0 1024 -4041188 UP 11 -4041188 1024 1024 -4046257 BEEP1 -4046257 BEEP2 -~~~ -~~~ -~~~ -4046278 1024 33555456 -~~~ -4046428 1024 1024 -4052299 DOWN 11 -4052299 0 1024 -~~~ -~~~ -4052326 0 0 -~~~ -~~~ -4052328 0 1 -~~~ -~~~ -4052330 0 3 -~~~ -~~~ -4052331 0 7 -~~~ -~~~ -4052333 0 15 -~~~ -~~~ -4052335 0 31 -~~~ -~~~ -4052337 0 63 -~~~ -~~~ -4052339 0 127 -~~~ -~~~ -4052340 0 255 -4052341 homeCount = 44 -4052342 waitCount = 20 -4052342 ripCount = 19 -4052343 locktype1 = 2 -4052343 locktype2 = 6 -4052344 locktype3 = 2 -4052365 goalCount = 1 -4052365 goalTotal = 11 -4052366 otherCount = 22 -~~~ -4052367 CURRENTGOAL IS [4] -~~~ -4052367 UP 11 -4052367 1024 255 -4052392 DOWN 11 -4052392 0 255 -4052405 UP 11 -4052405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4052432 homeCount = 44 -4052432 waitCount = 20 -4052433 ripCount = 19 -4052433 locktype1 = 2 -4052434 locktype2 = 6 -4052434 locktype3 = 2 -4052435 goalCount = 1 -4052435 goalTotal = 11 -4052436 otherCount = 22 -~~~ -4052437 CURRENTGOAL IS [4] -~~~ -4055242 DOWN 11 -4055242 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4055281 homeCount = 44 -4055281 waitCount = 20 -4055282 ripCount = 19 -4055282 locktype1 = 2 -4055283 locktype2 = 6 -4055283 locktype3 = 2 -4055284 goalCount = 1 -4055284 goalTotal = 11 -4055285 otherCount = 22 -~~~ -4055286 CURRENTGOAL IS [4] -~~~ -4059122 UP 8 -4059122 128 255 -~~~ -~~~ -4059571 DOWN 8 -4059571 0 255 -~~~ -~~~ -4059595 0 254 -~~~ -~~~ -4059597 0 252 -~~~ -~~~ -4059599 0 248 -~~~ -~~~ -4059601 0 240 -~~~ -~~~ -4059603 0 224 -~~~ -~~~ -4059604 0 192 -~~~ -~~~ -4059606 0 128 -~~~ -~~~ -4059608 0 0 -~~~ -~~~ -4059610 0 512 -4059611 homeCount = 44 -4059611 waitCount = 20 -4059612 ripCount = 19 -4059612 locktype1 = 2 -4059613 locktype2 = 6 -4059634 locktype3 = 2 -4059635 goalCount = 1 -4059635 goalTotal = 11 -4059635 otherCount = 23 -~~~ -4059721 128 512 -4059773 DOWN 8 -4059773 0 512 -4067416 UP 10 -4067416 waslock = 0 -4067416 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4067444 512 16777728 -~~~ -4067594 512 512 -4068209 DOWN 10 -4068209 0 512 -4068223 UP 10 -4068223 waslock = 0 -4068223 512 512 -~~~ -~~~ -4068228 512 1536 -~~~ -~~~ -4068230 512 1024 -4068231 homeCount = 45 -4068231 waitCount = 20 -4068232 ripCount = 19 -4068232 locktype1 = 2 -4068233 locktype2 = 6 -4068233 locktype3 = 2 -4068234 goalCount = 1 -4068234 goalTotal = 11 -4068235 otherCount = 23 -~~~ -~~~ -4068337 DOWN 10 -4068337 0 1024 -~~~ -~~~ -~~~ -~~~ -4068363 homeCount = 45 -4068363 waitCount = 20 -4068364 ripCount = 19 -4068364 locktype1 = 2 -4068365 locktype2 = 6 -4068365 locktype3 = 2 -4068366 goalCount = 1 -4068366 goalTotal = 11 -4068367 otherCount = 23 -~~~ -4068380 UP 10 -4068380 waslock = 0 -4068380 512 1024 -~~~ -4068460 DOWN 10 -4068460 0 1024 -~~~ -~~~ -~~~ -~~~ -4068482 homeCount = 45 -4068482 waitCount = 20 -4068483 ripCount = 19 -4068483 locktype1 = 2 -4068484 locktype2 = 6 -4068484 locktype3 = 2 -4068485 goalCount = 1 -4068485 goalTotal = 11 -4068486 otherCount = 23 -~~~ -4068495 UP 10 -4068496 waslock = 0 -4068495 512 1024 -~~~ -4072504 DOWN 10 -4072504 0 1024 -~~~ -~~~ -~~~ -~~~ -4072531 homeCount = 45 -4072531 waitCount = 20 -4072532 ripCount = 19 -4072532 locktype1 = 2 -4072533 locktype2 = 6 -4072533 locktype3 = 2 -4072534 goalCount = 1 -4072534 goalTotal = 11 -4072535 otherCount = 23 -~~~ -4072546 UP 10 -4072546 waslock = 0 -4072546 512 1024 -~~~ -4072605 DOWN 10 -4072605 0 1024 -~~~ -~~~ -~~~ -~~~ -4072634 homeCount = 45 -4072635 waitCount = 20 -4072635 ripCount = 19 -4072636 locktype1 = 2 -4072636 locktype2 = 6 -4072637 locktype3 = 2 -4072637 goalCount = 1 -4072638 goalTotal = 11 -4072638 otherCount = 23 -~~~ -4074839 UP 11 -4074839 1024 1024 -4077839 BEEP1 -4077839 BEEP2 -~~~ -~~~ -~~~ -4077859 1024 33555456 -~~~ -4078009 1024 1024 -4083791 DOWN 11 -4083791 0 1024 -~~~ -~~~ -4083818 0 0 -~~~ -~~~ -4083820 0 1 -~~~ -~~~ -4083822 0 3 -~~~ -~~~ -4083823 0 7 -~~~ -~~~ -4083825 0 15 -~~~ -4083827 UP 11 -4083826 1024 15 -~~~ -~~~ -4083828 1024 31 -~~~ -~~~ -4083830 1024 63 -~~~ -4083831 1024 127 -~~~ -~~~ -4083833 1024 255 -4083834 homeCount = 45 -4083834 waitCount = 20 -4083855 ripCount = 20 -4083855 locktype1 = 2 -4083856 locktype2 = 6 -4083856 locktype3 = 2 -4083857 goalCount = 1 -4083857 goalTotal = 11 -4083858 otherCount = 23 -~~~ -4083859 CURRENTGOAL IS [4] -~~~ -4083859 DOWN 11 -4083859 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4083907 homeCount = 45 -4083908 waitCount = 20 -4083909 ripCount = 20 -4083909 locktype1 = 2 -4083910 locktype2 = 6 -4083910 locktype3 = 2 -4083911 goalCount = 1 -4083911 goalTotal = 11 -4083911 otherCount = 23 -~~~ -4083913 CURRENTGOAL IS [4] -~~~ -4083913 UP 11 -4083913 1024 255 -4086791 DOWN 11 -4086791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4086829 homeCount = 45 -4086829 waitCount = 20 -4086830 ripCount = 20 -4086830 locktype1 = 2 -4086831 locktype2 = 6 -4086831 locktype3 = 2 -4086832 goalCount = 1 -4086832 goalTotal = 11 -4086833 otherCount = 23 -~~~ -4086834 CURRENTGOAL IS [4] -~~~ -4087998 UP 11 -4087998 1024 255 -4088002 DOWN 11 -4088002 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4088043 homeCount = 45 -4088043 waitCount = 20 -4088044 ripCount = 20 -4088044 locktype1 = 2 -4088045 locktype2 = 6 -4088045 locktype3 = 2 -4088046 goalCount = 1 -4088046 goalTotal = 11 -4088047 otherCount = 23 -~~~ -4088048 CURRENTGOAL IS [4] -~~~ -4090950 UP 5 -4090950 16 255 -~~~ -~~~ -4091298 DOWN 5 -4091297 0 255 -~~~ -~~~ -4091323 0 254 -~~~ -~~~ -4091325 0 252 -~~~ -~~~ -4091327 0 248 -~~~ -~~~ -4091329 0 240 -~~~ -~~~ -4091330 0 224 -~~~ -~~~ -4091332 0 192 -~~~ -~~~ -4091334 0 128 -~~~ -~~~ -4091336 0 0 -~~~ -~~~ -4091338 0 512 -4091339 homeCount = 45 -4091339 waitCount = 20 -4091340 ripCount = 20 -4091340 locktype1 = 2 -4091341 locktype2 = 6 -4091362 locktype3 = 2 -4091362 goalCount = 1 -4091363 goalTotal = 11 -4091363 otherCount = 24 -~~~ -4091364 16 512 -4091503 DOWN 5 -4091503 0 512 -4095890 UP 10 -4095891 waslock = 0 -4095890 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4095915 512 16777728 -~~~ -4096065 512 512 -4096110 DOWN 10 -4096110 0 512 -~~~ -~~~ -4096133 0 2560 -~~~ -~~~ -4096135 0 2048 -4096136 homeCount = 46 -4096137 waitCount = 20 -4096137 ripCount = 20 -4096138 locktype1 = 2 -4096138 locktype2 = 6 -4096139 locktype3 = 2 -4096139 goalCount = 1 -4096140 goalTotal = 11 -4096140 otherCount = 24 -~~~ -4096211 UP 10 -4096211 waslock = 0 -4096211 512 2048 -~~~ -4100984 DOWN 10 -4100984 0 2048 -~~~ -~~~ -~~~ -~~~ -4101012 homeCount = 46 -4101012 waitCount = 20 -4101013 ripCount = 20 -4101013 locktype1 = 2 -4101014 locktype2 = 6 -4101014 locktype3 = 2 -4101015 goalCount = 1 -4101015 goalTotal = 11 -4101016 otherCount = 24 -~~~ -4102585 UP 12 -4102585 2048 2048 -4104563 DOWN 12 -4104563 0 2048 -4104602 UP 12 -4104602 2048 2048 -4106085 CLICK1 -4106085 CLICK2 -~~~ -~~~ -~~~ -4106111 2048 67110912 -~~~ -4106261 2048 2048 -4113653 DOWN 12 -4113653 0 2048 -~~~ -~~~ -4113670 0 0 -~~~ -~~~ -4113672 0 1 -~~~ -~~~ -4113674 0 3 -~~~ -~~~ -4113675 0 7 -~~~ -~~~ -4113677 0 15 -~~~ -~~~ -4113679 0 31 -~~~ -~~~ -4113681 0 63 -~~~ -~~~ -4113683 0 127 -~~~ -~~~ -4113685 0 255 -4113686 homeCount = 46 -4113686 waitCount = 21 -4113687 ripCount = 20 -4113687 locktype1 = 2 -4113688 locktype2 = 6 -4113709 locktype3 = 2 -4113709 goalCount = 1 -4113710 goalTotal = 11 -4113710 otherCount = 24 -~~~ -4113711 CURRENTGOAL IS [4] -~~~ -4113721 UP 12 -4113721 2048 255 -4113777 DOWN 12 -4113777 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4113818 homeCount = 46 -4113819 waitCount = 21 -4113819 ripCount = 20 -4113820 locktype1 = 2 -4113820 locktype2 = 6 -4113821 locktype3 = 2 -4113821 goalCount = 1 -4113822 goalTotal = 11 -4113822 otherCount = 24 -~~~ -4113823 CURRENTGOAL IS [4] -~~~ -4114284 UP 12 -4114284 2048 255 -4114665 DOWN 12 -4114665 0 255 -4114670 UP 12 -4114670 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4114698 homeCount = 46 -4114699 waitCount = 21 -4114699 ripCount = 20 -4114700 locktype1 = 2 -4114700 locktype2 = 6 -4114701 locktype3 = 2 -4114701 goalCount = 1 -4114702 goalTotal = 11 -4114702 otherCount = 24 -~~~ -4114703 CURRENTGOAL IS [4] -~~~ -4114704 DOWN 12 -4114704 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4114761 homeCount = 46 -4114761 waitCount = 21 -4114762 ripCount = 20 -4114763 locktype1 = 2 -4114763 locktype2 = 6 -4114763 locktype3 = 2 -4114764 goalCount = 1 -4114764 goalTotal = 11 -4114765 otherCount = 24 -~~~ -4114766 CURRENTGOAL IS [4] -~~~ -4114819 UP 12 -4114819 2048 255 -4114989 DOWN 12 -4114989 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4115028 homeCount = 46 -4115028 waitCount = 21 -4115029 ripCount = 20 -4115030 locktype1 = 2 -4115030 locktype2 = 6 -4115030 locktype3 = 2 -4115031 goalCount = 1 -4115031 goalTotal = 11 -4115032 otherCount = 24 -~~~ -4115033 CURRENTGOAL IS [4] -~~~ -4115131 UP 12 -4115131 2048 255 -4115180 DOWN 12 -4115180 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4115219 homeCount = 46 -4115220 waitCount = 21 -4115220 ripCount = 20 -4115221 locktype1 = 2 -4115221 locktype2 = 6 -4115222 locktype3 = 2 -4115222 goalCount = 1 -4115223 goalTotal = 11 -4115223 otherCount = 24 -~~~ -4115224 CURRENTGOAL IS [4] -~~~ -4122428 UP 4 -4122428 8 255 -~~~ -~~~ -4122455 outer reward -~~~ -4122456 8 524543 -~~~ -~~~ -4122729 DOWN 4 -4122729 0 524543 -~~~ -~~~ -4122753 0 524542 -~~~ -~~~ -4122755 0 524540 -~~~ -~~~ -4122757 0 524536 -~~~ -~~~ -4122759 0 524528 -~~~ -~~~ -4122761 0 524512 -~~~ -~~~ -4122762 0 524480 -~~~ -~~~ -4122764 0 524416 -~~~ -~~~ -4122766 0 524288 -~~~ -4122767 8 524288 -~~~ -4122769 8 524800 -4122770 homeCount = 46 -4122770 waitCount = 21 -4122791 ripCount = 20 -4122792 locktype1 = 2 -4122792 locktype2 = 6 -4122793 locktype3 = 2 -4122793 goalCount = 2 -4122794 goalTotal = 12 -4122794 otherCount = 24 -~~~ -4122905 8 512 -4123027 DOWN 4 -4123027 0 512 -4123052 8 512 -4123136 DOWN 4 -4123136 0 512 -4123166 8 512 -4123268 DOWN 4 -4123268 0 512 -4123295 8 512 -4123386 DOWN 4 -4123386 0 512 -4123423 8 512 -4123521 DOWN 4 -4123521 0 512 -4123554 8 512 -4123652 DOWN 4 -4123652 0 512 -4123684 8 512 -4123785 DOWN 4 -4123785 0 512 -4123811 8 512 -4123915 DOWN 4 -4123915 0 512 -4123946 8 512 -4124055 DOWN 4 -4124055 0 512 -4124079 8 512 -4124194 DOWN 4 -4124194 0 512 -4124218 8 512 -4124337 DOWN 4 -4124337 0 512 -4124358 8 512 -4124486 DOWN 4 -4124486 0 512 -4124501 8 512 -4124634 DOWN 4 -4124634 0 512 -4124650 8 512 -4124790 DOWN 4 -4124790 0 512 -4124797 8 512 -4125100 DOWN 4 -4125100 0 512 -4125109 8 512 -4128672 DOWN 4 -4128672 0 512 -4128679 8 512 -4128805 DOWN 4 -4128805 0 512 -4128828 8 512 -4130462 DOWN 4 -4130462 0 512 -4134961 UP 10 -4134961 waslock = 0 -4134961 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4134991 512 16777728 -~~~ -4135000 DOWN 10 -4135000 0 16777728 -~~~ -~~~ -4135021 0 16778752 -~~~ -~~~ -4135023 0 16778240 -4135024 homeCount = 47 -4135025 waitCount = 21 -4135025 ripCount = 20 -4135026 locktype1 = 2 -4135026 locktype2 = 6 -4135027 locktype3 = 2 -4135027 goalCount = 2 -4135028 goalTotal = 12 -4135028 otherCount = 24 -~~~ -4135049 UP 10 -4135050 waslock = 0 -4135049 512 16778240 -~~~ -4135141 512 1024 -4135184 DOWN 10 -4135184 0 1024 -~~~ -~~~ -~~~ -~~~ -4135208 homeCount = 47 -4135209 waitCount = 21 -4135209 ripCount = 20 -4135210 locktype1 = 2 -4135210 locktype2 = 6 -4135211 locktype3 = 2 -4135211 goalCount = 2 -4135212 goalTotal = 12 -4135212 otherCount = 24 -~~~ -4135243 UP 10 -4135243 waslock = 0 -4135243 512 1024 -~~~ -4139256 DOWN 10 -4139256 0 1024 -~~~ -~~~ -~~~ -~~~ -4139281 homeCount = 47 -4139281 waitCount = 21 -4139282 ripCount = 20 -4139282 locktype1 = 2 -4139283 locktype2 = 6 -4139283 locktype3 = 2 -4139284 goalCount = 2 -4139284 goalTotal = 12 -4139285 otherCount = 24 -~~~ -4141258 UP 11 -4141258 1024 1024 -4143110 DOWN 11 -4143110 0 1024 -4143119 UP 11 -4143119 1024 1024 -4143125 DOWN 11 -4143125 0 1024 -4143142 UP 11 -4143142 1024 1024 -4143768 DOWN 11 -4143768 0 1024 -4143852 UP 11 -4143852 1024 1024 -4144258 BEEP1 -4144258 BEEP2 -~~~ -~~~ -~~~ -4144279 1024 33555456 -~~~ -4144429 1024 1024 -4148801 DOWN 11 -4148801 0 1024 -4148814 UP 11 -4148814 1024 1024 -~~~ -~~~ -4148830 1024 0 -~~~ -~~~ -4148831 1024 1 -~~~ -~~~ -4148833 1024 3 -~~~ -~~~ -4148835 1024 7 -~~~ -~~~ -4148837 1024 15 -~~~ -~~~ -4148839 1024 31 -~~~ -~~~ -4148841 1024 63 -~~~ -~~~ -4148842 1024 127 -~~~ -~~~ -4148844 1024 255 -4148845 homeCount = 47 -4148846 waitCount = 21 -4148846 ripCount = 21 -4148847 locktype1 = 2 -4148868 locktype2 = 6 -4148868 locktype3 = 2 -4148869 goalCount = 2 -4148869 goalTotal = 12 -4148870 otherCount = 24 -~~~ -4148871 CURRENTGOAL IS [4] -~~~ -4150765 DOWN 11 -4150765 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4150803 homeCount = 47 -4150804 waitCount = 21 -4150805 ripCount = 21 -4150805 locktype1 = 2 -4150806 locktype2 = 6 -4150806 locktype3 = 2 -4150806 goalCount = 2 -4150807 goalTotal = 12 -4150807 otherCount = 24 -~~~ -4150808 CURRENTGOAL IS [4] -~~~ -4150827 UP 11 -4150827 1024 255 -4150902 DOWN 11 -4150902 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4150944 homeCount = 47 -4150944 waitCount = 21 -4150945 ripCount = 21 -4150945 locktype1 = 2 -4150946 locktype2 = 6 -4150946 locktype3 = 2 -4150947 goalCount = 2 -4150947 goalTotal = 12 -4150948 otherCount = 24 -~~~ -4150949 CURRENTGOAL IS [4] -~~~ -4154099 UP 4 -4154099 8 255 -~~~ -~~~ -4154121 outer reward -~~~ -4154121 8 524543 -~~~ -~~~ -4154381 DOWN 4 -4154381 0 524543 -~~~ -~~~ -4154408 0 524542 -~~~ -4154409 8 524542 -~~~ -~~~ -4154411 8 524540 -~~~ -4154412 8 524536 -~~~ -~~~ -4154414 8 524528 -~~~ -~~~ -4154415 8 524512 -~~~ -~~~ -4154417 8 524480 -~~~ -~~~ -4154419 8 524416 -~~~ -~~~ -4154421 8 524288 -~~~ -~~~ -4154423 8 524800 -4154424 homeCount = 47 -4154424 waitCount = 21 -4154445 ripCount = 21 -4154446 locktype1 = 2 -4154446 locktype2 = 6 -4154447 locktype3 = 2 -4154447 goalCount = 3 -4154448 goalTotal = 13 -4154448 otherCount = 24 -~~~ -4154571 8 512 -4154798 DOWN 4 -4154798 0 512 -4154825 8 512 -4154922 DOWN 4 -4154922 0 512 -4154958 8 512 -4155053 DOWN 4 -4155053 0 512 -4155087 8 512 -4155192 DOWN 4 -4155192 0 512 -4155219 8 512 -4155325 DOWN 4 -4155325 0 512 -4155360 8 512 -4155624 DOWN 4 -4155624 0 512 -4155633 8 512 -4156054 DOWN 4 -4156054 0 512 -4156064 8 512 -4162502 DOWN 4 -4162502 0 512 -4162532 8 512 -4162633 DOWN 4 -4162633 0 512 -4162670 8 512 -4162773 DOWN 4 -4162773 0 512 -4167844 UP 10 -4167845 waslock = 0 -4167844 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4167875 512 16777728 -~~~ -4168025 512 512 -4170914 DOWN 10 -4170914 0 512 -~~~ -~~~ -4170942 0 2560 -~~~ -~~~ -4170944 0 2048 -4170945 homeCount = 48 -4170945 waitCount = 21 -4170946 ripCount = 21 -4170946 locktype1 = 2 -4170946 locktype2 = 6 -4170947 locktype3 = 2 -4170947 goalCount = 3 -4170948 goalTotal = 13 -4170948 otherCount = 24 -~~~ -4170949 UP 10 -4170970 waslock = 0 -4170949 512 2048 -~~~ -4171034 DOWN 10 -4171034 0 2048 -~~~ -~~~ -~~~ -~~~ -4171061 homeCount = 48 -4171062 waitCount = 21 -4171062 ripCount = 21 -4171063 locktype1 = 2 -4171063 locktype2 = 6 -4171064 locktype3 = 2 -4171064 goalCount = 3 -4171065 goalTotal = 13 -4171065 otherCount = 24 -~~~ -4171069 UP 10 -4171071 waslock = 0 -4171069 512 2048 -~~~ -4173229 DOWN 10 -4173229 0 2048 -~~~ -~~~ -~~~ -~~~ -4173254 homeCount = 48 -4173254 waitCount = 21 -4173255 ripCount = 21 -4173255 locktype1 = 2 -4173256 locktype2 = 6 -4173256 locktype3 = 2 -4173257 goalCount = 3 -4173257 goalTotal = 13 -4173258 otherCount = 24 -~~~ -4174888 UP 12 -4174888 2048 2048 -4177658 DOWN 12 -4177658 0 2048 -4177681 UP 12 -4177681 2048 2048 -4177889 CLICK1 -4177889 CLICK2 -~~~ -~~~ -~~~ -4177910 2048 67110912 -~~~ -4178060 2048 2048 -4183984 DOWN 12 -4183984 0 2048 -4184003 UP 12 -4184003 2048 2048 -~~~ -~~~ -4184010 2048 0 -~~~ -~~~ -4184012 2048 1 -~~~ -~~~ -4184014 2048 3 -~~~ -~~~ -4184016 2048 7 -~~~ -~~~ -4184018 2048 15 -~~~ -~~~ -4184019 2048 31 -~~~ -~~~ -4184021 2048 63 -~~~ -~~~ -4184023 2048 127 -~~~ -~~~ -4184025 2048 255 -4184026 homeCount = 48 -4184026 waitCount = 22 -4184027 ripCount = 21 -4184027 locktype1 = 2 -4184048 locktype2 = 6 -4184049 locktype3 = 2 -4184049 goalCount = 3 -4184050 goalTotal = 13 -4184050 otherCount = 24 -~~~ -4184051 CURRENTGOAL IS [4] -~~~ -4184071 DOWN 12 -4184071 0 255 -~~~ -~~~ -~~~ -~~~ -4184086 UP 12 -4184086 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184100 homeCount = 48 -4184100 waitCount = 22 -4184101 ripCount = 21 -4184101 locktype1 = 2 -4184102 locktype2 = 6 -4184102 locktype3 = 2 -4184103 goalCount = 3 -4184103 goalTotal = 13 -4184104 otherCount = 24 -~~~ -4184105 CURRENTGOAL IS [4] -~~~ -4184107 DOWN 12 -4184107 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184155 homeCount = 48 -4184155 waitCount = 22 -4184156 ripCount = 21 -4184156 locktype1 = 2 -4184157 locktype2 = 6 -4184157 locktype3 = 2 -4184158 goalCount = 3 -4184158 goalTotal = 13 -4184159 otherCount = 24 -~~~ -4184160 CURRENTGOAL IS [4] -~~~ -4184181 UP 12 -4184181 2048 255 -4184186 DOWN 12 -4184186 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184206 UP 12 -4184206 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184212 homeCount = 48 -4184213 waitCount = 22 -4184213 ripCount = 21 -4184214 locktype1 = 2 -4184214 locktype2 = 6 -4184215 locktype3 = 2 -4184215 goalCount = 3 -4184216 goalTotal = 13 -4184216 otherCount = 24 -~~~ -4184217 CURRENTGOAL IS [4] -~~~ -4184649 DOWN 12 -4184649 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184690 homeCount = 48 -4184691 waitCount = 22 -4184691 ripCount = 21 -4184692 locktype1 = 2 -4184692 locktype2 = 6 -4184693 locktype3 = 2 -4184693 goalCount = 3 -4184694 goalTotal = 13 -4184694 otherCount = 24 -~~~ -4184695 CURRENTGOAL IS [4] -~~~ -4184704 UP 12 -4184704 2048 255 -4185594 DOWN 12 -4185594 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4185628 homeCount = 48 -4185629 waitCount = 22 -4185629 ripCount = 21 -4185630 locktype1 = 2 -4185630 locktype2 = 6 -4185631 locktype3 = 2 -4185631 goalCount = 3 -4185632 goalTotal = 13 -4185632 otherCount = 24 -~~~ -4185633 CURRENTGOAL IS [4] -~~~ -4185641 UP 12 -4185641 2048 255 -4185708 DOWN 12 -4185707 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4185750 homeCount = 48 -4185750 waitCount = 22 -4185751 ripCount = 21 -4185751 locktype1 = 2 -4185752 locktype2 = 6 -4185752 locktype3 = 2 -4185752 goalCount = 3 -4185753 goalTotal = 13 -4185753 otherCount = 24 -~~~ -4185755 CURRENTGOAL IS [4] -~~~ -4189317 UP 4 -4189317 8 255 -~~~ -~~~ -4189337 outer reward -~~~ -4189337 8 524543 -~~~ -~~~ -4189569 DOWN 4 -4189569 0 524543 -~~~ -~~~ -4189593 0 524542 -~~~ -~~~ -4189595 0 524540 -~~~ -~~~ -4189597 0 524536 -~~~ -~~~ -4189599 0 524528 -~~~ -~~~ -4189601 0 524512 -~~~ -~~~ -4189603 0 524480 -~~~ -~~~ -4189604 0 524416 -~~~ -~~~ -4189606 0 524288 -~~~ -~~~ -4189608 0 524800 -4189609 homeCount = 48 -4189610 waitCount = 22 -4189610 ripCount = 21 -4189611 locktype1 = 2 -4189631 locktype2 = 6 -4189632 locktype3 = 2 -4189632 goalCount = 4 -4189633 goalTotal = 14 -4189633 otherCount = 24 -~~~ -4189634 8 524800 -4189787 8 512 -4190012 DOWN 4 -4190012 0 512 -4190037 8 512 -4190135 DOWN 4 -4190135 0 512 -4190166 8 512 -4190263 DOWN 4 -4190263 0 512 -4190291 8 512 -4190397 DOWN 4 -4190397 0 512 -4190428 8 512 -4190540 DOWN 4 -4190540 0 512 -4190564 8 512 -4190690 DOWN 4 -4190690 0 512 -4190706 8 512 -4190823 DOWN 4 -4190823 0 512 -4190850 8 512 -4190967 DOWN 4 -4190967 0 512 -4190989 8 512 -4191427 DOWN 4 -4191427 0 512 -4191434 8 512 -4196787 DOWN 4 -4196787 0 512 -4196850 8 512 -4196885 DOWN 4 -4196885 0 512 -4201709 UP 10 -4201709 waslock = 0 -4201709 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4201743 512 16777728 -~~~ -4201893 512 512 -4205616 DOWN 10 -4205616 0 512 -~~~ -~~~ -4205637 0 2560 -~~~ -~~~ -4205639 0 2048 -4205640 homeCount = 49 -4205640 waitCount = 22 -4205641 ripCount = 21 -4205641 locktype1 = 2 -4205642 locktype2 = 6 -4205642 locktype3 = 2 -4205643 goalCount = 4 -4205643 goalTotal = 14 -4205644 otherCount = 24 -~~~ -4207370 UP 12 -4207370 2048 2048 -4210795 DOWN 12 -4210795 0 2048 -4210828 UP 12 -4210828 2048 2048 -4213370 CLICK1 -4213370 CLICK2 -~~~ -~~~ -~~~ -4213398 2048 67110912 -~~~ -4213548 2048 2048 -4218738 DOWN 12 -4218738 0 2048 -4218747 UP 12 -4218747 2048 2048 -~~~ -~~~ -4218767 2048 0 -~~~ -~~~ -4218768 2048 1 -~~~ -~~~ -4218770 2048 3 -~~~ -~~~ -4218772 2048 7 -~~~ -~~~ -4218774 2048 15 -~~~ -~~~ -4218776 2048 31 -~~~ -~~~ -4218777 2048 63 -~~~ -~~~ -4218779 2048 127 -~~~ -~~~ -4218781 2048 255 -4218782 homeCount = 49 -4218783 waitCount = 23 -4218783 ripCount = 21 -4218784 locktype1 = 2 -4218805 locktype2 = 6 -4218805 locktype3 = 2 -4218805 goalCount = 4 -4218806 goalTotal = 14 -4218806 otherCount = 24 -~~~ -4218807 CURRENTGOAL IS [4] -~~~ -4218872 DOWN 12 -4218872 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4218914 homeCount = 49 -4218915 waitCount = 23 -4218915 ripCount = 21 -4218916 locktype1 = 2 -4218916 locktype2 = 6 -4218917 locktype3 = 2 -4218917 goalCount = 4 -4218918 goalTotal = 14 -4218918 otherCount = 24 -~~~ -4218919 CURRENTGOAL IS [4] -~~~ -4218920 UP 12 -4218920 2048 255 -4221459 DOWN 12 -4221459 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4221495 homeCount = 49 -4221495 waitCount = 23 -4221496 ripCount = 21 -4221496 locktype1 = 2 -4221497 locktype2 = 6 -4221497 locktype3 = 2 -4221498 goalCount = 4 -4221498 goalTotal = 14 -4221498 otherCount = 24 -~~~ -4221500 CURRENTGOAL IS [4] -~~~ -4224609 UP 4 -4224609 8 255 -~~~ -~~~ -4224631 outer reward -~~~ -4224631 8 524543 -~~~ -~~~ -4224876 DOWN 4 -4224876 0 524543 -~~~ -~~~ -4224899 0 524542 -~~~ -~~~ -4224900 0 524540 -~~~ -~~~ -4224902 0 524536 -~~~ -~~~ -4224904 0 524528 -~~~ -~~~ -4224906 0 524512 -~~~ -~~~ -4224908 0 524480 -~~~ -~~~ -4224909 0 524416 -~~~ -~~~ -4224911 0 524288 -~~~ -~~~ -4224913 0 524800 -4224914 homeCount = 49 -4224915 waitCount = 23 -4224915 ripCount = 21 -4224916 locktype1 = 2 -4224936 locktype2 = 6 -4224937 locktype3 = 2 -4224937 goalCount = 5 -4224938 goalTotal = 15 -4224938 otherCount = 24 -~~~ -4224939 8 524800 -4225081 8 512 -4225313 DOWN 4 -4225313 0 512 -4225326 8 512 -4225439 DOWN 4 -4225439 0 512 -4225457 8 512 -4225572 DOWN 4 -4225572 0 512 -4225586 8 512 -4225707 DOWN 4 -4225707 0 512 -4225724 8 512 -4225835 DOWN 4 -4225835 0 512 -4225858 8 512 -4225971 DOWN 4 -4225971 0 512 -4225988 8 512 -4226102 DOWN 4 -4226102 0 512 -4226123 8 512 -4226240 DOWN 4 -4226240 0 512 -4226257 8 512 -4226379 DOWN 4 -4226379 0 512 -4226390 8 512 -4226527 DOWN 4 -4226527 0 512 -4226533 8 512 -4231515 DOWN 4 -4231515 0 512 -4231529 8 512 -4233369 DOWN 4 -4233369 0 512 -4237735 UP 10 -4237735 waslock = 0 -4237735 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4237765 512 16777728 -~~~ -4237915 512 512 -4241880 DOWN 10 -4241880 0 512 -~~~ -~~~ -4241900 0 1536 -~~~ -~~~ -4241902 0 1024 -4241903 homeCount = 50 -4241903 waitCount = 23 -4241904 ripCount = 21 -4241904 locktype1 = 2 -4241905 locktype2 = 6 -4241905 locktype3 = 2 -4241905 goalCount = 5 -4241906 goalTotal = 15 -4241906 otherCount = 24 -~~~ -4243762 UP 11 -4243762 1024 1024 -4243837 DOWN 11 -4243837 0 1024 -4243952 UP 11 -4243952 1024 1024 -4250763 BEEP1 -4250763 BEEP2 -~~~ -~~~ -~~~ -4250781 1024 33555456 -~~~ -4250931 1024 1024 -4256515 DOWN 11 -4256515 0 1024 -~~~ -~~~ -4256539 0 0 -~~~ -~~~ -4256541 0 1 -~~~ -~~~ -4256543 0 3 -~~~ -~~~ -4256545 0 7 -~~~ -~~~ -4256546 0 15 -~~~ -~~~ -4256548 0 31 -~~~ -~~~ -4256550 0 63 -~~~ -~~~ -4256552 0 127 -~~~ -~~~ -4256554 0 255 -4256555 homeCount = 50 -4256555 waitCount = 23 -4256556 ripCount = 22 -4256556 locktype1 = 2 -4256557 locktype2 = 6 -4256557 locktype3 = 2 -4256578 goalCount = 5 -4256579 goalTotal = 15 -4256579 otherCount = 24 -~~~ -4256580 CURRENTGOAL IS [4] -~~~ -4256581 UP 11 -4256581 1024 255 -4259496 DOWN 11 -4259496 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4259538 homeCount = 50 -4259538 waitCount = 23 -4259539 ripCount = 22 -4259539 locktype1 = 2 -4259540 locktype2 = 6 -4259540 locktype3 = 2 -4259541 goalCount = 5 -4259541 goalTotal = 15 -4259542 otherCount = 24 -~~~ -4259543 CURRENTGOAL IS [4] -~~~ -4265652 UP 4 -4265652 8 255 -~~~ -~~~ -4265674 outer reward -~~~ -4265674 8 524543 -~~~ -~~~ -4265917 DOWN 4 -4265917 0 524543 -~~~ -~~~ -4265942 0 524542 -~~~ -~~~ -4265944 0 524540 -~~~ -~~~ -4265945 0 524536 -~~~ -~~~ -4265947 0 524528 -~~~ -~~~ -4265949 0 524512 -~~~ -~~~ -4265951 0 524480 -~~~ -~~~ -4265953 0 524416 -~~~ -~~~ -4265955 0 524288 -~~~ -~~~ -4265956 0 524800 -4265957 homeCount = 50 -4265958 waitCount = 23 -4265958 ripCount = 22 -4265959 locktype1 = 2 -4265980 locktype2 = 6 -4265980 locktype3 = 2 -4265981 goalCount = 6 -4265981 goalTotal = 16 -4265982 otherCount = 24 -~~~ -4265982 8 524800 -4266107 DOWN 4 -4266107 0 524800 -4266124 0 512 -4266129 8 512 -4266357 DOWN 4 -4266357 0 512 -4266378 8 512 -4266481 DOWN 4 -4266481 0 512 -4266507 8 512 -4266607 DOWN 4 -4266607 0 512 -4266639 8 512 -4266745 DOWN 4 -4266745 0 512 -4266764 8 512 -4266865 DOWN 4 -4266865 0 512 -4266891 8 512 -4266997 DOWN 4 -4266997 0 512 -4267021 8 512 -4267136 DOWN 4 -4267136 0 512 -4267154 8 512 -4274215 DOWN 4 -4274215 0 512 -4280342 UP 10 -4280343 waslock = 0 -4280342 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4280370 512 16777728 -~~~ -4280520 512 512 -4280525 DOWN 10 -4280525 0 512 -4280544 UP 10 -4280544 waslock = 0 -4280544 512 512 -~~~ -~~~ -4280547 512 1536 -~~~ -~~~ -4280549 512 1024 -4280550 homeCount = 51 -4280551 waitCount = 23 -4280551 ripCount = 22 -4280552 locktype1 = 2 -4280552 locktype2 = 6 -4280553 locktype3 = 2 -4280553 goalCount = 6 -4280554 goalTotal = 16 -4280554 otherCount = 24 -~~~ -~~~ -4284174 DOWN 10 -4284174 0 1024 -~~~ -~~~ -~~~ -~~~ -4284198 homeCount = 51 -4284199 waitCount = 23 -4284199 ripCount = 22 -4284200 locktype1 = 2 -4284200 locktype2 = 6 -4284201 locktype3 = 2 -4284201 goalCount = 6 -4284202 goalTotal = 16 -4284202 otherCount = 24 -~~~ -4285958 UP 11 -4285958 1024 1024 -4289670 DOWN 11 -4289669 0 1024 -4289688 UP 11 -4289688 1024 1024 -4290459 BEEP1 -4290459 BEEP2 -~~~ -~~~ -~~~ -4290489 1024 33555456 -~~~ -4290638 1024 1024 -4295683 DOWN 11 -4295683 0 1024 -4295693 UP 11 -4295693 1024 1024 -~~~ -~~~ -4295706 1024 0 -~~~ -~~~ -4295708 1024 1 -~~~ -~~~ -4295710 1024 3 -~~~ -~~~ -4295712 1024 7 -~~~ -~~~ -4295713 1024 15 -~~~ -~~~ -4295715 1024 31 -~~~ -~~~ -4295717 1024 63 -~~~ -~~~ -4295719 1024 127 -~~~ -~~~ -4295721 1024 255 -4295722 homeCount = 51 -4295722 waitCount = 23 -4295723 ripCount = 23 -4295723 locktype1 = 2 -4295744 locktype2 = 6 -4295745 locktype3 = 2 -4295745 goalCount = 6 -4295745 goalTotal = 16 -4295746 otherCount = 24 -~~~ -4295747 CURRENTGOAL IS [4] -~~~ -4295766 DOWN 11 -4295766 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4295801 UP 11 -4295801 1024 255 -4295803 homeCount = 51 -4295803 waitCount = 23 -4295804 ripCount = 23 -4295804 locktype1 = 2 -4295805 locktype2 = 6 -4295805 locktype3 = 2 -4295805 goalCount = 6 -4295806 goalTotal = 16 -4295806 otherCount = 24 -~~~ -4295808 CURRENTGOAL IS [4] -~~~ -4298136 DOWN 11 -4298136 0 255 -4298151 UP 11 -4298150 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298186 homeCount = 51 -4298186 waitCount = 23 -4298187 ripCount = 23 -4298187 locktype1 = 2 -4298188 locktype2 = 6 -4298188 locktype3 = 2 -4298189 goalCount = 6 -4298189 goalTotal = 16 -4298189 otherCount = 24 -~~~ -4298191 CURRENTGOAL IS [4] -~~~ -4298236 DOWN 11 -4298236 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298273 homeCount = 51 -4298274 waitCount = 23 -4298274 ripCount = 23 -4298275 locktype1 = 2 -4298275 locktype2 = 6 -4298276 locktype3 = 2 -4298276 goalCount = 6 -4298277 goalTotal = 16 -4298277 otherCount = 24 -~~~ -4298278 CURRENTGOAL IS [4] -~~~ -4298331 UP 11 -4298331 1024 255 -4298354 DOWN 11 -4298354 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298397 homeCount = 51 -4298397 waitCount = 23 -4298398 ripCount = 23 -4298399 locktype1 = 2 -4298399 locktype2 = 6 -4298399 locktype3 = 2 -4298400 goalCount = 6 -4298400 goalTotal = 16 -4298401 otherCount = 24 -~~~ -4298402 CURRENTGOAL IS [4] -~~~ -4302468 UP 4 -4302468 8 255 -~~~ -~~~ -4302491 outer reward -~~~ -4302492 8 524543 -~~~ -~~~ -4302679 DOWN 4 -4302679 0 524543 -~~~ -~~~ -4302699 0 524542 -~~~ -~~~ -4302701 0 524540 -~~~ -~~~ -4302703 0 524536 -~~~ -~~~ -4302704 0 524528 -~~~ -~~~ -4302706 0 524512 -~~~ -~~~ -4302708 0 524480 -~~~ -~~~ -4302710 0 524416 -~~~ -~~~ -4302712 0 524288 -~~~ -~~~ -4302714 0 524800 -4302715 homeCount = 51 -4302715 waitCount = 23 -4302716 ripCount = 23 -4302716 locktype1 = 2 -4302737 locktype2 = 6 -4302737 locktype3 = 2 -4302738 goalCount = 7 -4302738 goalTotal = 17 -4302739 otherCount = 24 -~~~ -4302739 8 524800 -4302941 8 512 -4303248 DOWN 4 -4303248 0 512 -4303265 8 512 -4303374 DOWN 4 -4303374 0 512 -4303389 8 512 -4303497 DOWN 4 -4303497 0 512 -4303521 8 512 -4303616 DOWN 4 -4303616 0 512 -4303650 8 512 -4303768 DOWN 4 -4303768 0 512 -4303779 8 512 -4304355 DOWN 4 -4304355 0 512 -4304361 8 512 -4309831 DOWN 4 -4309831 0 512 -4314365 UP 10 -4314365 waslock = 0 -4314365 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4314398 512 16777728 -~~~ -4314518 DOWN 10 -4314518 0 16777728 -~~~ -~~~ -4314541 0 16778752 -~~~ -~~~ -4314543 0 16778240 -4314544 homeCount = 52 -4314544 waitCount = 23 -4314545 ripCount = 23 -4314545 locktype1 = 2 -4314546 locktype2 = 6 -4314546 locktype3 = 2 -4314547 goalCount = 7 -4314547 goalTotal = 17 -4314548 otherCount = 24 -~~~ -4314569 UP 10 -4314569 waslock = 0 -4314569 512 16778240 -4314571 512 1024 -~~~ -4320357 DOWN 10 -4320357 0 1024 -~~~ -~~~ -~~~ -~~~ -4320385 homeCount = 52 -4320385 waitCount = 23 -4320386 ripCount = 23 -4320386 locktype1 = 2 -4320387 locktype2 = 6 -4320387 locktype3 = 2 -4320388 goalCount = 7 -4320388 goalTotal = 17 -4320389 otherCount = 24 -~~~ -4322525 UP 11 -4322525 1024 1024 -4324497 DOWN 11 -4324497 0 1024 -4324536 UP 11 -4324536 1024 1024 -4326525 BEEP1 -4326525 BEEP2 -~~~ -~~~ -~~~ -4326554 1024 33555456 -~~~ -4326703 1024 1024 -4332297 DOWN 11 -4332297 0 1024 -~~~ -~~~ -4332321 0 0 -~~~ -~~~ -4332323 0 1 -~~~ -~~~ -4332325 0 3 -~~~ -~~~ -4332327 0 7 -~~~ -~~~ -4332329 0 15 -~~~ -~~~ -4332331 0 31 -~~~ -~~~ -4332332 0 63 -~~~ -~~~ -4332334 0 127 -~~~ -~~~ -4332336 0 255 -4332337 homeCount = 52 -4332338 waitCount = 23 -4332338 ripCount = 24 -4332339 locktype1 = 2 -4332339 locktype2 = 6 -4332360 locktype3 = 2 -4332361 goalCount = 7 -4332361 goalTotal = 17 -4332362 otherCount = 24 -~~~ -4332363 CURRENTGOAL IS [4] -~~~ -4332363 UP 11 -4332363 1024 255 -4336000 DOWN 11 -4336000 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4336037 homeCount = 52 -4336038 waitCount = 23 -4336038 ripCount = 24 -4336039 locktype1 = 2 -4336039 locktype2 = 6 -4336040 locktype3 = 2 -4336040 goalCount = 7 -4336041 goalTotal = 17 -4336041 otherCount = 24 -~~~ -4336042 CURRENTGOAL IS [4] -~~~ -4336052 UP 11 -4336052 1024 255 -4336156 DOWN 11 -4336156 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4336197 homeCount = 52 -4336198 waitCount = 23 -4336198 ripCount = 24 -4336199 locktype1 = 2 -4336199 locktype2 = 6 -4336200 locktype3 = 2 -4336200 goalCount = 7 -4336201 goalTotal = 17 -4336201 otherCount = 24 -~~~ -4336202 CURRENTGOAL IS [4] -~~~ -4340725 UP 4 -4340725 8 255 -~~~ -~~~ -4340744 outer reward -~~~ -4340745 8 524543 -~~~ -~~~ -4340992 DOWN 4 -4340992 0 524543 -~~~ -~~~ -4341014 0 524542 -~~~ -~~~ -4341016 0 524540 -~~~ -~~~ -4341018 0 524536 -~~~ -~~~ -4341020 0 524528 -~~~ -~~~ -4341022 0 524512 -~~~ -~~~ -4341023 0 524480 -~~~ -~~~ -4341025 0 524416 -~~~ -~~~ -4341027 0 524288 -~~~ -~~~ -4341029 0 524800 -4341030 homeCount = 52 -4341030 waitCount = 23 -4341031 ripCount = 24 -4341031 locktype1 = 2 -4341052 locktype2 = 6 -4341053 locktype3 = 2 -4341053 goalCount = 8 -4341054 goalTotal = 18 -4341054 otherCount = 24 -~~~ -4341055 8 524800 -4341194 8 512 -4341417 DOWN 4 -4341417 0 512 -4341435 8 512 -4341664 DOWN 4 -4341664 0 512 -4341693 8 512 -4341796 DOWN 4 -4341796 0 512 -4341811 8 512 -4341917 DOWN 4 -4341917 0 512 -4341945 8 512 -4342051 DOWN 4 -4342051 0 512 -4342074 8 512 -4342192 DOWN 4 -4342192 0 512 -4342207 8 512 -4342332 DOWN 4 -4342332 0 512 -4342351 8 512 -4342475 DOWN 4 -4342475 0 512 -4342489 8 512 -4342627 DOWN 4 -4342627 0 512 -4342636 8 512 -4342773 DOWN 4 -4342773 0 512 -4342786 8 512 -4342928 DOWN 4 -4342928 0 512 -4342942 8 512 -4343079 DOWN 4 -4343079 0 512 -4343090 8 512 -4345668 DOWN 4 -4345668 0 512 -4345673 8 512 -4347893 DOWN 4 -4347893 0 512 -4347977 8 512 -4347999 DOWN 4 -4347999 0 512 -4352959 UP 10 -4352959 waslock = 0 -4352959 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4352990 512 16777728 -~~~ -4353126 DOWN 10 -4353126 0 16777728 -4353139 0 512 -~~~ -~~~ -4353148 0 1536 -~~~ -~~~ -4353150 0 1024 -4353150 homeCount = 53 -4353151 waitCount = 23 -4353151 ripCount = 24 -4353152 locktype1 = 2 -4353152 locktype2 = 6 -4353153 locktype3 = 2 -4353153 goalCount = 8 -4353154 goalTotal = 18 -4353154 otherCount = 24 -~~~ -4353161 UP 10 -4353161 waslock = 0 -4353161 512 1024 -~~~ -4356494 DOWN 10 -4356494 0 1024 -~~~ -~~~ -~~~ -~~~ -4356516 homeCount = 53 -4356517 waitCount = 23 -4356517 ripCount = 24 -4356518 locktype1 = 2 -4356518 locktype2 = 6 -4356519 locktype3 = 2 -4356519 goalCount = 8 -4356520 goalTotal = 18 -4356520 otherCount = 24 -~~~ -4356538 UP 10 -4356539 waslock = 0 -4356538 512 1024 -~~~ -4356593 DOWN 10 -4356593 0 1024 -~~~ -~~~ -~~~ -~~~ -4356618 homeCount = 53 -4356619 waitCount = 23 -4356619 ripCount = 24 -4356620 locktype1 = 2 -4356620 locktype2 = 6 -4356621 locktype3 = 2 -4356621 goalCount = 8 -4356622 goalTotal = 18 -4356622 otherCount = 24 -~~~ -4358394 UP 11 -4358394 1024 1024 -4361395 BEEP1 -4361395 BEEP2 -~~~ -~~~ -~~~ -4361417 1024 33555456 -~~~ -4361567 1024 1024 -4368629 DOWN 11 -4368629 0 1024 -~~~ -~~~ -4368655 0 0 -~~~ -~~~ -4368657 0 1 -~~~ -~~~ -4368659 0 3 -~~~ -~~~ -4368660 0 7 -~~~ -~~~ -4368662 0 15 -~~~ -~~~ -4368664 0 31 -~~~ -~~~ -4368666 0 63 -~~~ -~~~ -4368668 0 127 -~~~ -~~~ -4368669 0 255 -4368670 homeCount = 53 -4368671 waitCount = 23 -4368672 ripCount = 25 -4368672 locktype1 = 2 -4368673 locktype2 = 6 -4368673 locktype3 = 2 -4368694 goalCount = 8 -4368694 goalTotal = 18 -4368695 otherCount = 24 -~~~ -4368696 CURRENTGOAL IS [4] -~~~ -4368696 UP 11 -4368696 1024 255 -4370757 DOWN 11 -4370757 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4370794 homeCount = 53 -4370794 waitCount = 23 -4370795 ripCount = 25 -4370795 locktype1 = 2 -4370796 locktype2 = 6 -4370796 locktype3 = 2 -4370797 goalCount = 8 -4370797 goalTotal = 18 -4370798 otherCount = 24 -~~~ -4370799 CURRENTGOAL IS [4] -~~~ -4370799 UP 11 -4370799 1024 255 -4370853 DOWN 11 -4370853 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4370893 homeCount = 53 -4370893 waitCount = 23 -4370894 ripCount = 25 -4370894 locktype1 = 2 -4370895 locktype2 = 6 -4370895 locktype3 = 2 -4370896 goalCount = 8 -4370896 goalTotal = 18 -4370897 otherCount = 24 -~~~ -4370898 CURRENTGOAL IS [4] -~~~ -4374044 UP 4 -4374044 8 255 -~~~ -~~~ -4374070 outer reward -~~~ -4374070 8 524543 -~~~ -~~~ -4374256 DOWN 4 -4374256 0 524543 -~~~ -~~~ -4374277 0 524542 -~~~ -~~~ -4374279 0 524540 -~~~ -~~~ -4374281 0 524536 -~~~ -~~~ -4374283 0 524528 -~~~ -~~~ -4374284 0 524512 -~~~ -~~~ -4374286 0 524480 -~~~ -~~~ -4374288 0 524416 -~~~ -~~~ -4374290 0 524288 -~~~ -~~~ -4374292 0 524800 -4374293 homeCount = 53 -4374293 waitCount = 23 -4374294 ripCount = 25 -4374315 locktype1 = 2 -4374315 locktype2 = 6 -4374316 locktype3 = 2 -4374316 goalCount = 9 -4374317 goalTotal = 19 -4374317 otherCount = 24 -~~~ -4374318 8 524800 -4374520 8 512 -4374698 DOWN 4 -4374698 0 512 -4374706 8 512 -4374816 DOWN 4 -4374815 0 512 -4374836 8 512 -4374934 DOWN 4 -4374934 0 512 -4374972 8 512 -4375072 DOWN 4 -4375071 0 512 -4375096 8 512 -4375198 DOWN 4 -4375198 0 512 -4375232 8 512 -4375338 DOWN 4 -4375338 0 512 -4375353 8 512 -4375631 DOWN 4 -4375631 0 512 -4375642 8 512 -4379874 DOWN 4 -4379874 0 512 -4379885 8 512 -4380055 DOWN 4 -4380055 0 512 -4380062 8 512 -4381987 DOWN 4 -4381987 0 512 -4382016 8 512 -4382061 DOWN 4 -4382061 0 512 -4385877 UP 10 -4385878 waslock = 0 -4385877 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4385906 512 16777728 -~~~ -4385914 DOWN 10 -4385913 0 16777728 -~~~ -~~~ -4385944 0 16778752 -~~~ -4385945 UP 10 -4385945 waslock = 0 -4385945 512 16778752 -~~~ -4385947 homeCount = 54 -4385948 waitCount = 23 -4385948 ripCount = 25 -4385949 locktype1 = 2 -4385949 locktype2 = 6 -4385950 locktype3 = 2 -4385950 goalCount = 9 -4385951 goalTotal = 19 -4385972 otherCount = 24 -~~~ -4385972 512 16778240 -~~~ -4386055 512 1024 -4390253 DOWN 10 -4390253 0 1024 -~~~ -~~~ -~~~ -~~~ -4390279 homeCount = 54 -4390280 waitCount = 23 -4390280 ripCount = 25 -4390281 locktype1 = 2 -4390281 locktype2 = 6 -4390282 locktype3 = 2 -4390282 goalCount = 9 -4390283 goalTotal = 19 -4390283 otherCount = 24 -~~~ -4390329 UP 10 -4390330 waslock = 0 -4390329 512 1024 -~~~ -4390375 DOWN 10 -4390375 0 1024 -~~~ -~~~ -~~~ -~~~ -4390398 homeCount = 54 -4390399 waitCount = 23 -4390399 ripCount = 25 -4390400 locktype1 = 2 -4390400 locktype2 = 6 -4390401 locktype3 = 2 -4390401 goalCount = 9 -4390402 goalTotal = 19 -4390402 otherCount = 24 -~~~ -4391799 UP 11 -4391799 1024 1024 -4395467 DOWN 11 -4395467 0 1024 -4395532 UP 11 -4395532 1024 1024 -4398800 BEEP1 -4398800 BEEP2 -~~~ -~~~ -~~~ -4398827 1024 33555456 -~~~ -4398977 1024 1024 -4404797 DOWN 11 -4404797 0 1024 -~~~ -~~~ -4404815 0 0 -~~~ -~~~ -4404817 0 1 -~~~ -~~~ -4404819 0 3 -~~~ -~~~ -4404821 0 7 -~~~ -~~~ -4404823 0 15 -~~~ -4404824 UP 11 -4404824 1024 15 -~~~ -~~~ -~~~ -4404826 1024 63 -~~~ -~~~ -4404828 1024 127 -~~~ -~~~ -4404830 1024 255 -4404831 homeCount = 54 -4404831 waitCount = 23 -4404832 ripCount = 26 -4404853 locktype1 = 2 -4404854 locktype2 = 6 -4404854 locktype3 = 2 -4404855 goalCount = 9 -4404855 goalTotal = 19 -4404856 otherCount = 24 -~~~ -4404857 CURRENTGOAL IS [4] -~~~ -4404857 DOWN 11 -4404857 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -4404890 UP 11 -4404890 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4404902 homeCount = 54 -4404903 waitCount = 23 -4404903 ripCount = 26 -4404904 locktype1 = 2 -4404904 locktype2 = 6 -4404905 locktype3 = 2 -4404905 goalCount = 9 -4404906 goalTotal = 19 -4404906 otherCount = 24 -~~~ -4404907 CURRENTGOAL IS [4] -~~~ -4408442 DOWN 11 -4408442 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4408483 homeCount = 54 -4408483 waitCount = 23 -4408484 ripCount = 26 -4408484 locktype1 = 2 -4408485 locktype2 = 6 -4408485 locktype3 = 2 -4408486 goalCount = 9 -4408486 goalTotal = 19 -4408486 otherCount = 24 -~~~ -4408488 CURRENTGOAL IS [4] -~~~ -4411793 UP 4 -4411793 8 255 -~~~ -~~~ -4411820 outer reward -~~~ -4411820 8 524543 -~~~ -~~~ -4411825 outerreps = 12 -~~~ -~~~ -4412010 DOWN 4 -4412010 0 524543 -~~~ -~~~ -4412036 0 524542 -~~~ -~~~ -4412037 0 524540 -~~~ -~~~ -4412039 0 524536 -~~~ -~~~ -4412041 0 524528 -~~~ -~~~ -4412043 0 524512 -~~~ -~~~ -4412045 0 524480 -~~~ -~~~ -4412047 0 524416 -~~~ -~~~ -4412048 0 524288 -~~~ -~~~ -4412050 0 524800 -4412051 homeCount = 54 -4412052 waitCount = 23 -4412052 ripCount = 26 -4412073 locktype1 = 2 -4412074 locktype2 = 6 -4412074 locktype3 = 2 -4412075 goalCount = 0 -4412075 goalTotal = 20 -4412076 otherCount = 24 -~~~ -4412076 8 524800 -4412270 8 512 -4412461 DOWN 4 -4412461 0 512 -4412488 8 512 -4412620 DOWN 4 -4412620 0 512 -4412641 8 512 -4412756 DOWN 4 -4412756 0 512 -4412785 8 512 -4412892 DOWN 4 -4412892 0 512 -4412925 8 512 -4413034 DOWN 4 -4413034 0 512 -4413058 8 512 -4413170 DOWN 4 -4413170 0 512 -4413199 8 512 -4413313 DOWN 4 -4413313 0 512 -4413341 8 512 -4413460 DOWN 4 -4413460 0 512 -4413480 8 512 -4413605 DOWN 4 -4413605 0 512 -4413626 8 512 -4413754 DOWN 4 -4413754 0 512 -4413772 8 512 -4413907 DOWN 4 -4413907 0 512 -4413921 8 512 -4420599 DOWN 4 -4420599 0 512 -4420642 8 512 -4420716 DOWN 4 -4420716 0 512 -4425492 UP 10 -4425492 waslock = 0 -4425492 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4425523 512 16777728 -~~~ -4425673 512 512 -4428204 DOWN 10 -4428204 0 512 -~~~ -~~~ -4428226 0 2560 -~~~ -~~~ -4428228 0 2048 -4428229 homeCount = 55 -4428229 waitCount = 23 -4428230 ripCount = 26 -4428230 locktype1 = 2 -4428231 locktype2 = 6 -4428231 locktype3 = 2 -4428232 goalCount = 0 -4428232 goalTotal = 20 -4428233 otherCount = 24 -~~~ -4430289 UP 12 -4430289 2048 2048 -4435709 DOWN 12 -4435709 0 2048 -4435765 UP 12 -4435765 2048 2048 -4435789 CLICK1 -4435789 CLICK2 -~~~ -~~~ -~~~ -4435811 2048 67110912 -~~~ -4435961 2048 2048 -4442288 DOWN 12 -4442288 0 2048 -~~~ -~~~ -4442307 0 0 -~~~ -~~~ -4442309 0 1 -~~~ -~~~ -4442310 0 3 -~~~ -~~~ -4442312 0 7 -~~~ -~~~ -4442314 0 15 -~~~ -~~~ -4442316 0 31 -~~~ -~~~ -4442318 0 63 -~~~ -~~~ -4442319 0 127 -~~~ -~~~ -4442321 0 255 -4442322 homeCount = 55 -4442323 waitCount = 24 -4442323 ripCount = 26 -4442324 locktype1 = 2 -4442324 locktype2 = 6 -4442325 locktype3 = 2 -4442346 goalCount = 0 -4442346 goalTotal = 20 -4442347 otherCount = 24 -~~~ -4442348 CURRENTGOAL IS [6] -~~~ -4442348 UP 12 -4442348 2048 255 -4442406 DOWN 12 -4442406 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4442443 homeCount = 55 -4442443 waitCount = 24 -4442444 ripCount = 26 -4442444 locktype1 = 2 -4442445 locktype2 = 6 -4442445 locktype3 = 2 -4442446 goalCount = 0 -4442446 goalTotal = 20 -4442447 otherCount = 24 -~~~ -4442448 CURRENTGOAL IS [6] -~~~ -4442871 UP 12 -4442871 2048 255 -4444133 DOWN 12 -4444133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4444173 homeCount = 55 -4444173 waitCount = 24 -4444174 ripCount = 26 -4444174 locktype1 = 2 -4444175 locktype2 = 6 -4444175 locktype3 = 2 -4444176 goalCount = 0 -4444176 goalTotal = 20 -4444177 otherCount = 24 -~~~ -4444178 CURRENTGOAL IS [6] -~~~ -4446862 UP 4 -4446862 8 255 -~~~ -~~~ -4447080 DOWN 4 -4447080 0 255 -~~~ -~~~ -4447099 0 254 -~~~ -~~~ -4447101 0 252 -~~~ -~~~ -4447102 0 248 -~~~ -~~~ -4447104 0 240 -~~~ -~~~ -4447106 0 224 -~~~ -~~~ -4447108 0 192 -~~~ -~~~ -4447110 0 128 -~~~ -~~~ -4447112 0 0 -~~~ -~~~ -4447113 0 512 -4447114 homeCount = 55 -4447115 waitCount = 24 -4447115 ripCount = 26 -4447116 locktype1 = 2 -4447116 locktype2 = 6 -4447137 locktype3 = 2 -4447138 goalCount = 0 -4447138 goalTotal = 20 -4447139 otherCount = 25 -~~~ -4447139 8 512 -4447799 DOWN 4 -4447799 0 512 -4452075 UP 10 -4452076 waslock = 0 -4452075 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4452106 512 16777728 -~~~ -4452117 DOWN 10 -4452117 0 16777728 -4452125 UP 10 -4452125 waslock = 0 -4452125 512 16777728 -~~~ -~~~ -4452143 512 16779776 -~~~ -~~~ -4452145 512 16779264 -4452146 homeCount = 56 -4452147 waitCount = 24 -4452147 ripCount = 26 -4452148 locktype1 = 2 -4452148 locktype2 = 6 -4452149 locktype3 = 2 -4452149 goalCount = 0 -4452150 goalTotal = 20 -4452150 otherCount = 25 -~~~ -~~~ -4452256 512 2048 -4452265 DOWN 10 -4452265 0 2048 -4452277 UP 10 -4452277 waslock = 0 -4452277 512 2048 -~~~ -~~~ -~~~ -~~~ -4452287 homeCount = 56 -4452287 waitCount = 24 -4452288 ripCount = 26 -4452288 locktype1 = 2 -4452289 locktype2 = 6 -4452289 locktype3 = 2 -4452290 goalCount = 0 -4452290 goalTotal = 20 -4452291 otherCount = 25 -~~~ -~~~ -4456357 DOWN 10 -4456357 0 2048 -~~~ -~~~ -~~~ -~~~ -4456382 homeCount = 56 -4456382 waitCount = 24 -4456383 ripCount = 26 -4456383 locktype1 = 2 -4456384 locktype2 = 6 -4456384 locktype3 = 2 -4456385 goalCount = 0 -4456385 goalTotal = 20 -4456386 otherCount = 25 -~~~ -4458260 UP 12 -4458260 2048 2048 -4461699 DOWN 12 -4461699 0 2048 -4461721 UP 12 -4461721 2048 2048 -4461856 DOWN 12 -4461856 0 2048 -4461869 UP 12 -4461869 2048 2048 -4461961 DOWN 12 -4461961 0 2048 -4461992 UP 12 -4461992 2048 2048 -4462760 CLICK1 -4462760 CLICK2 -~~~ -~~~ -~~~ -4462782 2048 67110912 -~~~ -4462932 2048 2048 -4469122 DOWN 12 -4469122 0 2048 -4469136 UP 12 -4469136 2048 2048 -~~~ -~~~ -4469143 2048 0 -~~~ -~~~ -4469145 2048 1 -~~~ -~~~ -4469146 2048 3 -~~~ -~~~ -4469148 2048 7 -~~~ -~~~ -4469150 2048 15 -~~~ -~~~ -4469152 2048 31 -~~~ -~~~ -4469154 2048 63 -~~~ -~~~ -4469155 2048 127 -~~~ -~~~ -4469157 2048 255 -4469158 homeCount = 56 -4469159 waitCount = 25 -4469159 ripCount = 26 -4469160 locktype1 = 2 -4469181 locktype2 = 6 -4469181 locktype3 = 2 -4469181 goalCount = 0 -4469182 goalTotal = 20 -4469182 otherCount = 25 -~~~ -4469183 CURRENTGOAL IS [6] -~~~ -4469216 DOWN 12 -4469216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4469257 homeCount = 56 -4469258 waitCount = 25 -4469258 ripCount = 26 -4469259 locktype1 = 2 -4469259 locktype2 = 6 -4469260 locktype3 = 2 -4469260 goalCount = 0 -4469261 goalTotal = 20 -4469261 otherCount = 25 -~~~ -4469262 CURRENTGOAL IS [6] -~~~ -4478752 UP 4 -4478752 8 255 -~~~ -~~~ -4479850 DOWN 4 -4479850 0 255 -4479863 8 255 -~~~ -~~~ -4479870 8 254 -~~~ -~~~ -4479872 8 252 -~~~ -~~~ -4479874 8 248 -~~~ -~~~ -4479876 8 240 -~~~ -~~~ -4479877 8 224 -~~~ -~~~ -4479879 8 192 -~~~ -~~~ -4479881 8 128 -~~~ -~~~ -4479883 8 0 -~~~ -~~~ -4479885 8 512 -4479886 homeCount = 56 -4479886 waitCount = 25 -4479887 ripCount = 26 -4479887 locktype1 = 2 -4479888 locktype2 = 6 -4479909 locktype3 = 2 -4479909 goalCount = 0 -4479910 goalTotal = 20 -4479910 otherCount = 26 -~~~ -4480518 DOWN 4 -4480518 0 512 -4480662 8 512 -4480695 DOWN 4 -4480695 0 512 -4488328 UP 10 -4488329 waslock = 0 -4488328 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4488357 512 16777728 -~~~ -4488507 512 512 -4491647 DOWN 10 -4491647 0 512 -~~~ -~~~ -4491671 0 1536 -~~~ -~~~ -4491673 0 1024 -4491674 homeCount = 57 -4491675 waitCount = 25 -4491675 ripCount = 26 -4491676 locktype1 = 2 -4491676 locktype2 = 6 -4491677 locktype3 = 2 -4491677 goalCount = 0 -4491678 goalTotal = 20 -4491678 otherCount = 26 -~~~ -4491681 UP 10 -4491681 waslock = 0 -4491681 512 1024 -~~~ -4491732 DOWN 10 -4491732 0 1024 -~~~ -~~~ -~~~ -~~~ -4491759 homeCount = 57 -4491760 waitCount = 25 -4491760 ripCount = 26 -4491761 locktype1 = 2 -4491761 locktype2 = 6 -4491762 locktype3 = 2 -4491762 goalCount = 0 -4491763 goalTotal = 20 -4491763 otherCount = 26 -~~~ -4493146 UP 11 -4493146 1024 1024 -4496146 BEEP1 -4496146 BEEP2 -~~~ -~~~ -~~~ -4496174 1024 33555456 -~~~ -4496324 1024 1024 -4502061 DOWN 11 -4502061 0 1024 -4502078 UP 11 -4502078 1024 1024 -~~~ -~~~ -4502085 1024 0 -~~~ -~~~ -4502087 1024 1 -~~~ -~~~ -4502089 1024 3 -~~~ -~~~ -4502091 1024 7 -~~~ -~~~ -4502093 1024 15 -~~~ -~~~ -4502094 1024 31 -~~~ -~~~ -4502096 1024 63 -~~~ -~~~ -4502098 1024 127 -~~~ -~~~ -4502100 1024 255 -4502101 homeCount = 57 -4502101 waitCount = 25 -4502102 ripCount = 27 -4502102 locktype1 = 2 -4502123 locktype2 = 6 -4502124 locktype3 = 2 -4502124 goalCount = 0 -4502124 goalTotal = 20 -4502125 otherCount = 26 -~~~ -4502126 CURRENTGOAL IS [6] -~~~ -4502199 DOWN 11 -4502199 0 255 -4502220 UP 11 -4502220 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4502253 homeCount = 57 -4502254 waitCount = 25 -4502254 ripCount = 27 -4502255 locktype1 = 2 -4502255 locktype2 = 6 -4502256 locktype3 = 2 -4502256 goalCount = 0 -4502256 goalTotal = 20 -4502257 otherCount = 26 -~~~ -4502258 CURRENTGOAL IS [6] -~~~ -4503858 DOWN 11 -4503858 0 255 -4503869 UP 11 -4503869 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4503906 homeCount = 57 -4503907 waitCount = 25 -4503907 ripCount = 27 -4503908 locktype1 = 2 -4503908 locktype2 = 6 -4503909 locktype3 = 2 -4503909 goalCount = 0 -4503910 goalTotal = 20 -4503910 otherCount = 26 -~~~ -4503911 CURRENTGOAL IS [6] -~~~ -4503932 DOWN 11 -4503932 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4503967 homeCount = 57 -4503967 waitCount = 25 -4503968 ripCount = 27 -4503968 locktype1 = 2 -4503969 locktype2 = 6 -4503969 locktype3 = 2 -4503970 goalCount = 0 -4503970 goalTotal = 20 -4503971 otherCount = 26 -~~~ -4503972 CURRENTGOAL IS [6] -~~~ -4508236 UP 7 -4508236 64 255 -~~~ -~~~ -4509602 DOWN 7 -4509602 0 255 -~~~ -~~~ -4509629 0 254 -~~~ -~~~ -4509631 0 252 -~~~ -~~~ -4509632 0 248 -~~~ -~~~ -4509634 0 240 -~~~ -~~~ -4509636 0 224 -~~~ -~~~ -4509638 0 192 -~~~ -~~~ -4509640 0 128 -~~~ -~~~ -4509642 0 0 -~~~ -~~~ -4509643 0 512 -4509644 homeCount = 57 -4509645 waitCount = 25 -4509645 ripCount = 27 -4509646 locktype1 = 2 -4509646 locktype2 = 6 -4509667 locktype3 = 2 -4509668 goalCount = 0 -4509668 goalTotal = 20 -4509669 otherCount = 27 -~~~ -4513958 UP 10 -4513958 waslock = 0 -4513958 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4513985 512 16777728 -~~~ -4514134 512 512 -4518768 DOWN 10 -4518768 0 512 -4518781 UP 10 -4518781 waslock = 0 -4518781 512 512 -~~~ -~~~ -4518788 512 2560 -~~~ -~~~ -4518790 512 2048 -4518791 homeCount = 58 -4518792 waitCount = 25 -4518792 ripCount = 27 -4518793 locktype1 = 2 -4518793 locktype2 = 6 -4518794 locktype3 = 2 -4518794 goalCount = 0 -4518795 goalTotal = 20 -4518795 otherCount = 27 -~~~ -~~~ -4518875 DOWN 10 -4518875 0 2048 -~~~ -~~~ -~~~ -~~~ -4518904 homeCount = 58 -4518905 waitCount = 25 -4518905 ripCount = 27 -4518906 locktype1 = 2 -4518906 locktype2 = 6 -4518907 locktype3 = 2 -4518907 goalCount = 0 -4518908 goalTotal = 20 -4518908 otherCount = 27 -~~~ -4518933 UP 10 -4518934 waslock = 0 -4518933 512 2048 -~~~ -4518972 DOWN 10 -4518972 0 2048 -~~~ -~~~ -~~~ -~~~ -4518998 homeCount = 58 -4518998 waitCount = 25 -4518999 ripCount = 27 -4518999 locktype1 = 2 -4519000 locktype2 = 6 -4519000 locktype3 = 2 -4519001 goalCount = 0 -4519001 goalTotal = 20 -4519002 otherCount = 27 -~~~ -4522457 UP 12 -4522457 2048 2048 -4523944 DOWN 12 -4523944 0 2048 -4523959 UP 12 -4523959 2048 2048 -4525297 DOWN 12 -4525297 0 2048 -4525313 UP 12 -4525313 2048 2048 -4525457 CLICK1 -4525457 CLICK2 -~~~ -~~~ -~~~ -4525481 2048 67110912 -~~~ -4525631 2048 2048 -4533270 DOWN 12 -4533270 0 2048 -~~~ -~~~ -4533292 0 0 -~~~ -~~~ -4533294 0 1 -~~~ -~~~ -4533295 0 3 -~~~ -~~~ -4533297 0 7 -~~~ -~~~ -4533299 0 15 -~~~ -~~~ -4533301 0 31 -~~~ -~~~ -4533303 0 63 -~~~ -~~~ -4533304 0 127 -~~~ -~~~ -4533306 0 255 -4533307 homeCount = 58 -4533308 waitCount = 26 -4533308 ripCount = 27 -4533309 locktype1 = 2 -4533309 locktype2 = 6 -4533310 locktype3 = 2 -4533331 goalCount = 0 -4533331 goalTotal = 20 -4533332 otherCount = 27 -~~~ -4533333 CURRENTGOAL IS [6] -~~~ -4536223 UP 1 -4536223 1 255 -~~~ -~~~ -4537485 DOWN 1 -4537485 0 255 -~~~ -~~~ -4537514 0 254 -~~~ -~~~ -4537516 0 252 -~~~ -~~~ -4537518 0 248 -~~~ -~~~ -4537519 0 240 -~~~ -~~~ -4537521 0 224 -~~~ -~~~ -4537523 0 192 -~~~ -~~~ -4537525 0 128 -~~~ -~~~ -4537527 0 0 -~~~ -~~~ -4537529 0 512 -4537530 homeCount = 58 -4537530 waitCount = 26 -4537531 ripCount = 27 -4537531 locktype1 = 2 -4537532 locktype2 = 6 -4537553 locktype3 = 2 -4537553 goalCount = 0 -4537554 goalTotal = 20 -4537554 otherCount = 28 -~~~ -4541072 UP 10 -4541073 waslock = 0 -4541072 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4541100 512 16777728 -~~~ -4541113 DOWN 10 -4541113 0 16777728 -4541130 UP 10 -4541130 waslock = 0 -4541130 512 16777728 -~~~ -~~~ -4541134 512 16779776 -~~~ -~~~ -4541136 512 16779264 -4541137 homeCount = 59 -4541138 waitCount = 26 -4541138 ripCount = 27 -4541139 locktype1 = 2 -4541139 locktype2 = 6 -4541139 locktype3 = 2 -4541140 goalCount = 0 -4541140 goalTotal = 20 -4541162 otherCount = 28 -~~~ -~~~ -4541250 512 2048 -4544625 DOWN 10 -4544625 0 2048 -4544638 UP 10 -4544638 waslock = 0 -4544638 512 2048 -~~~ -~~~ -~~~ -~~~ -4544662 homeCount = 59 -4544663 waitCount = 26 -4544663 ripCount = 27 -4544664 locktype1 = 2 -4544664 locktype2 = 6 -4544665 locktype3 = 2 -4544665 goalCount = 0 -4544666 goalTotal = 20 -4544666 otherCount = 28 -~~~ -~~~ -4544737 DOWN 10 -4544737 0 2048 -~~~ -~~~ -~~~ -~~~ -4544772 homeCount = 59 -4544773 waitCount = 26 -4544773 ripCount = 27 -4544774 locktype1 = 2 -4544774 locktype2 = 6 -4544775 locktype3 = 2 -4544775 goalCount = 0 -4544776 goalTotal = 20 -4544776 otherCount = 28 -~~~ -4544787 UP 10 -4544787 waslock = 0 -4544787 512 2048 -~~~ -4544820 DOWN 10 -4544820 0 2048 -~~~ -~~~ -~~~ -~~~ -4544842 homeCount = 59 -4544842 waitCount = 26 -4544843 ripCount = 27 -4544843 locktype1 = 2 -4544844 locktype2 = 6 -4544844 locktype3 = 2 -4544845 goalCount = 0 -4544845 goalTotal = 20 -4544846 otherCount = 28 -~~~ -4546342 UP 12 -4546342 2048 2048 -4548004 DOWN 12 -4548004 0 2048 -4548042 UP 12 -4548042 2048 2048 -4549331 DOWN 12 -4549331 0 2048 -4549341 UP 12 -4549341 2048 2048 -4549342 CLICK1 -4549343 CLICK2 -~~~ -~~~ -~~~ -4549361 2048 67110912 -~~~ -4549511 2048 2048 -4555132 DOWN 12 -4555132 0 2048 -~~~ -~~~ -4555156 0 0 -~~~ -~~~ -4555158 0 1 -~~~ -~~~ -4555159 0 3 -~~~ -~~~ -4555161 0 7 -~~~ -~~~ -4555163 0 15 -~~~ -~~~ -4555165 0 31 -~~~ -~~~ -4555167 0 63 -~~~ -4555168 UP 12 -4555168 2048 63 -~~~ -~~~ -4555170 2048 127 -~~~ -4555171 homeCount = 59 -4555172 waitCount = 27 -4555172 ripCount = 27 -4555173 locktype1 = 2 -4555194 locktype2 = 6 -4555194 locktype3 = 2 -4555194 goalCount = 0 -4555195 goalTotal = 20 -4555195 otherCount = 28 -~~~ -4555197 CURRENTGOAL IS [6] -~~~ -4555197 2048 255 -4555226 DOWN 12 -4555226 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4555259 homeCount = 59 -4555259 waitCount = 27 -4555260 ripCount = 27 -4555260 locktype1 = 2 -4555261 locktype2 = 6 -4555261 locktype3 = 2 -4555262 goalCount = 0 -4555262 goalTotal = 20 -4555263 otherCount = 28 -~~~ -4555264 CURRENTGOAL IS [6] -~~~ -4578122 UP 1 -4578122 1 255 -~~~ -~~~ -4578407 DOWN 1 -4578407 0 255 -~~~ -~~~ -4578425 0 254 -~~~ -~~~ -4578427 0 252 -~~~ -~~~ -4578428 0 248 -~~~ -~~~ -4578430 0 240 -~~~ -~~~ -4578432 0 224 -~~~ -~~~ -4578434 0 192 -~~~ -~~~ -4578436 0 128 -~~~ -~~~ -4578438 0 0 -~~~ -~~~ -4578439 0 512 -4578440 homeCount = 59 -4578441 waitCount = 27 -4578441 ripCount = 27 -4578442 locktype1 = 2 -4578442 locktype2 = 6 -4578463 locktype3 = 2 -4578464 goalCount = 0 -4578464 goalTotal = 20 -4578465 otherCount = 29 -~~~ -4578465 1 512 -4578663 DOWN 1 -4578663 0 512 -4582924 1 512 -4582970 DOWN 1 -4582970 0 512 -4591382 UP 10 -4591383 waslock = 0 -4591382 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4591413 512 16777728 -~~~ -4591509 DOWN 10 -4591509 0 16777728 -4591521 UP 10 -4591521 waslock = 0 -4591521 512 16777728 -~~~ -~~~ -4591537 512 16779776 -~~~ -~~~ -4591539 512 16779264 -4591540 homeCount = 60 -4591541 waitCount = 27 -4591541 ripCount = 27 -4591542 locktype1 = 2 -4591542 locktype2 = 6 -4591543 locktype3 = 2 -4591543 goalCount = 0 -4591544 goalTotal = 20 -4591544 otherCount = 29 -~~~ -~~~ -4591566 512 2048 -4591576 DOWN 10 -4591576 0 2048 -~~~ -~~~ -~~~ -~~~ -4591602 homeCount = 60 -4591603 waitCount = 27 -4591603 ripCount = 27 -4591604 locktype1 = 2 -4591604 locktype2 = 6 -4591605 locktype3 = 2 -4591605 goalCount = 0 -4591606 goalTotal = 20 -4591606 otherCount = 29 -~~~ -4591669 UP 10 -4591669 waslock = 0 -4591669 512 2048 -~~~ -4591896 DOWN 10 -4591896 0 2048 -4591916 UP 10 -4591917 waslock = 0 -4591916 512 2048 -~~~ -~~~ -~~~ -~~~ -4591922 homeCount = 60 -4591922 waitCount = 27 -4591923 ripCount = 27 -4591923 locktype1 = 2 -4591924 locktype2 = 6 -4591924 locktype3 = 2 -4591925 goalCount = 0 -4591925 goalTotal = 20 -4591926 otherCount = 29 -~~~ -~~~ -4592040 DOWN 10 -4592040 0 2048 -~~~ -~~~ -~~~ -~~~ -4592063 homeCount = 60 -4592064 waitCount = 27 -4592064 ripCount = 27 -4592065 locktype1 = 2 -4592065 locktype2 = 6 -4592066 locktype3 = 2 -4592066 goalCount = 0 -4592067 goalTotal = 20 -4592067 otherCount = 29 -~~~ -4592076 UP 10 -4592076 waslock = 0 -4592076 512 2048 -~~~ -4592555 DOWN 10 -4592555 0 2048 -4592571 UP 10 -4592571 waslock = 0 -4592571 512 2048 -~~~ -~~~ -~~~ -~~~ -4592596 homeCount = 60 -4592597 waitCount = 27 -4592597 ripCount = 27 -4592598 locktype1 = 2 -4592598 locktype2 = 6 -4592599 locktype3 = 2 -4592599 goalCount = 0 -4592600 goalTotal = 20 -4592600 otherCount = 29 -~~~ -~~~ -4596305 DOWN 10 -4596305 0 2048 -4596315 UP 10 -4596315 waslock = 0 -4596315 512 2048 -~~~ -~~~ -~~~ -~~~ -4596335 homeCount = 60 -4596335 waitCount = 27 -4596336 ripCount = 27 -4596336 locktype1 = 2 -4596337 locktype2 = 6 -4596337 locktype3 = 2 -4596338 goalCount = 0 -4596338 goalTotal = 20 -4596338 otherCount = 29 -~~~ -~~~ -4596388 DOWN 10 -4596388 0 2048 -~~~ -~~~ -~~~ -~~~ -4596418 homeCount = 60 -4596418 waitCount = 27 -4596419 ripCount = 27 -4596419 locktype1 = 2 -4596420 locktype2 = 6 -4596420 locktype3 = 2 -4596421 goalCount = 0 -4596421 goalTotal = 20 -4596422 otherCount = 29 -~~~ -4598400 UP 12 -4598400 2048 2048 -4599231 DOWN 12 -4599231 0 2048 -4599308 UP 12 -4599308 2048 2048 -4599343 DOWN 12 -4599343 0 2048 -4599349 UP 12 -4599349 2048 2048 -4599898 DOWN 12 -4599898 0 2048 -4599929 UP 12 -4599929 2048 2048 -4599943 DOWN 12 -4599943 0 2048 -4599987 UP 12 -4599987 2048 2048 -4601873 DOWN 12 -4601873 0 2048 -4601883 UP 12 -4601883 2048 2048 -4601892 DOWN 12 -4601892 0 2048 -4601911 UP 12 -4601911 2048 2048 -4602165 DOWN 12 -4602165 0 2048 -4602189 UP 12 -4602189 2048 2048 -4602226 DOWN 12 -4602226 0 2048 -4602261 UP 12 -4602261 2048 2048 -4602431 DOWN 12 -4602431 0 2048 -4602447 UP 12 -4602447 2048 2048 -4604401 CLICK1 -4604401 CLICK2 -~~~ -~~~ -~~~ -4604423 2048 67110912 -~~~ -4604573 2048 2048 -4611485 DOWN 12 -4611485 0 2048 -~~~ -~~~ -4611512 0 0 -~~~ -~~~ -4611513 0 1 -~~~ -~~~ -4611515 0 3 -~~~ -~~~ -4611517 0 7 -~~~ -~~~ -4611519 0 15 -~~~ -~~~ -4611521 0 31 -~~~ -4611522 UP 12 -4611522 2048 31 -~~~ -~~~ -4611524 2048 63 -~~~ -~~~ -4611526 2048 127 -~~~ -4611527 2048 255 -4611528 homeCount = 60 -4611528 waitCount = 28 -4611529 ripCount = 27 -4611550 locktype1 = 2 -4611550 locktype2 = 6 -4611551 locktype3 = 2 -4611551 goalCount = 0 -4611552 goalTotal = 20 -4611552 otherCount = 29 -~~~ -4611553 CURRENTGOAL IS [6] -~~~ -4611569 DOWN 12 -4611569 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4611608 homeCount = 60 -4611608 waitCount = 28 -4611609 ripCount = 27 -4611609 locktype1 = 2 -4611610 locktype2 = 6 -4611610 locktype3 = 2 -4611611 goalCount = 0 -4611611 goalTotal = 20 -4611612 otherCount = 29 -~~~ -4611613 CURRENTGOAL IS [6] -~~~ -4621158 UP 5 -4621158 16 255 -~~~ -~~~ -4621238 DOWN 5 -4621238 0 255 -~~~ -~~~ -4621262 0 254 -~~~ -~~~ -4621263 0 252 -~~~ -~~~ -4621265 0 248 -~~~ -~~~ -4621267 0 240 -~~~ -~~~ -4621269 0 224 -~~~ -~~~ -4621271 0 192 -~~~ -~~~ -4621272 0 128 -~~~ -~~~ -4621274 0 0 -~~~ -~~~ -4621276 0 512 -4621277 homeCount = 60 -4621278 waitCount = 28 -4621278 ripCount = 27 -4621279 locktype1 = 2 -4621279 locktype2 = 6 -4621300 locktype3 = 2 -4621301 goalCount = 0 -4621301 goalTotal = 20 -4621302 otherCount = 30 -~~~ -4621492 16 512 -4621883 DOWN 5 -4621883 0 512 -4653143 UP 10 -4653144 waslock = 0 -4653143 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4653177 512 16777728 -~~~ -4653234 DOWN 10 -4653234 0 16777728 -~~~ -~~~ -4653265 0 16779776 -~~~ -~~~ -4653267 0 16779264 -4653268 homeCount = 61 -4653269 waitCount = 28 -4653269 ripCount = 27 -4653270 locktype1 = 2 -4653270 locktype2 = 6 -4653271 locktype3 = 2 -4653271 goalCount = 0 -4653272 goalTotal = 20 -4653272 otherCount = 30 -~~~ -4653327 0 2048 -4653569 UP 10 -4653569 waslock = 0 -4653569 512 2048 -~~~ -4659370 DOWN 10 -4659370 0 2048 -~~~ -~~~ -~~~ -~~~ -4659397 homeCount = 61 -4659397 waitCount = 28 -4659398 ripCount = 27 -4659398 locktype1 = 2 -4659399 locktype2 = 6 -4659399 locktype3 = 2 -4659400 goalCount = 0 -4659400 goalTotal = 20 -4659401 otherCount = 30 -~~~ -4659401 UP 10 -4659402 waslock = 0 -4659401 512 2048 -~~~ -4659484 DOWN 10 -4659484 0 2048 -~~~ -~~~ -~~~ -~~~ -4659507 homeCount = 61 -4659507 waitCount = 28 -4659508 ripCount = 27 -4659508 locktype1 = 2 -4659509 locktype2 = 6 -4659509 locktype3 = 2 -4659510 goalCount = 0 -4659510 goalTotal = 20 -4659511 otherCount = 30 -~~~ -4662675 UP 12 -4662675 2048 2048 -4664127 DOWN 12 -4664127 0 2048 -4664217 UP 12 -4664217 2048 2048 -4664276 DOWN 12 -4664276 0 2048 -4664339 UP 12 -4664339 2048 2048 -4664365 DOWN 12 -4664365 0 2048 -4664394 UP 12 -4664394 2048 2048 -4664592 DOWN 12 -4664592 0 2048 -4664696 UP 12 -4664696 2048 2048 -4666175 CLICK1 -4666175 CLICK2 -~~~ -~~~ -~~~ -4666193 2048 67110912 -~~~ -4666343 2048 2048 -4673291 DOWN 12 -4673291 0 2048 -~~~ -~~~ -4673313 0 0 -~~~ -~~~ -4673315 0 1 -~~~ -~~~ -4673317 0 3 -~~~ -~~~ -4673319 0 7 -~~~ -~~~ -4673321 0 15 -~~~ -~~~ -4673322 0 31 -~~~ -~~~ -4673324 0 63 -~~~ -~~~ -4673326 0 127 -~~~ -~~~ -4673328 0 255 -4673329 homeCount = 61 -4673329 waitCount = 29 -4673330 ripCount = 27 -4673330 locktype1 = 2 -4673331 locktype2 = 6 -4673331 locktype3 = 2 -4673352 goalCount = 0 -4673353 goalTotal = 20 -4673353 otherCount = 30 -~~~ -4673354 CURRENTGOAL IS [6] -~~~ -4685779 UP 4 -4685779 8 255 -~~~ -~~~ -4686370 DOWN 4 -4686370 0 255 -~~~ -~~~ -4686393 0 254 -~~~ -~~~ -4686395 0 252 -~~~ -~~~ -4686397 0 248 -~~~ -~~~ -4686399 0 240 -~~~ -~~~ -4686400 0 224 -~~~ -~~~ -4686402 0 192 -~~~ -~~~ -4686404 0 128 -~~~ -~~~ -4686406 0 0 -~~~ -~~~ -4686408 0 512 -4686409 homeCount = 61 -4686409 waitCount = 29 -4686410 ripCount = 27 -4686410 locktype1 = 2 -4686411 locktype2 = 6 -4686432 locktype3 = 2 -4686432 goalCount = 0 -4686433 goalTotal = 20 -4686433 otherCount = 31 -~~~ -4686950 8 512 -4687129 DOWN 4 -4687129 0 512 -4691150 UP 10 -4691150 waslock = 0 -4691150 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4691178 512 16777728 -~~~ -4691328 512 512 -4694660 DOWN 10 -4694660 0 512 -~~~ -~~~ -4694682 0 2560 -~~~ -~~~ -4694684 0 2048 -4694685 homeCount = 62 -4694685 waitCount = 29 -4694686 ripCount = 27 -4694686 locktype1 = 2 -4694687 locktype2 = 6 -4694687 locktype3 = 2 -4694688 goalCount = 0 -4694688 goalTotal = 20 -4694689 otherCount = 31 -~~~ -4697293 UP 12 -4697293 2048 2048 -4698720 DOWN 12 -4698720 0 2048 -4698799 UP 12 -4698799 2048 2048 -4700121 DOWN 12 -4700121 0 2048 -4700144 UP 12 -4700144 2048 2048 -4700294 CLICK1 -4700294 CLICK2 -~~~ -~~~ -~~~ -4700314 2048 67110912 -~~~ -4700464 2048 2048 -4707458 DOWN 12 -4707458 0 2048 -~~~ -~~~ -4707482 0 0 -~~~ -~~~ -4707484 0 1 -~~~ -~~~ -4707485 0 3 -~~~ -~~~ -4707487 0 7 -~~~ -~~~ -4707489 0 15 -~~~ -~~~ -4707491 0 31 -~~~ -~~~ -4707493 0 63 -~~~ -~~~ -4707495 0 127 -~~~ -~~~ -4707496 0 255 -4707497 homeCount = 62 -4707498 waitCount = 30 -4707498 ripCount = 27 -4707499 locktype1 = 2 -4707499 locktype2 = 6 -4707521 locktype3 = 2 -4707521 goalCount = 0 -4707522 goalTotal = 20 -4707522 otherCount = 31 -~~~ -4707523 CURRENTGOAL IS [6] -~~~ -4708450 UP 12 -4708450 2048 255 -4708630 DOWN 12 -4708630 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4708670 homeCount = 62 -4708670 waitCount = 30 -4708671 ripCount = 27 -4708671 locktype1 = 2 -4708672 locktype2 = 6 -4708672 locktype3 = 2 -4708673 goalCount = 0 -4708673 goalTotal = 20 -4708674 otherCount = 31 -~~~ -4708675 CURRENTGOAL IS [6] -~~~ -4712657 UP 8 -4712657 128 255 -~~~ -~~~ -4713151 DOWN 8 -4713151 0 255 -~~~ -~~~ -4713172 0 254 -~~~ -~~~ -4713174 0 252 -~~~ -~~~ -4713176 0 248 -~~~ -~~~ -4713178 0 240 -~~~ -~~~ -4713180 0 224 -~~~ -~~~ -4713181 0 192 -~~~ -~~~ -4713183 0 128 -~~~ -~~~ -4713185 0 0 -~~~ -~~~ -4713187 0 512 -4713188 homeCount = 62 -4713188 waitCount = 30 -4713189 ripCount = 27 -4713189 locktype1 = 2 -4713190 locktype2 = 6 -4713211 locktype3 = 2 -4713211 goalCount = 0 -4713212 goalTotal = 20 -4713212 otherCount = 32 -~~~ -4717890 UP 10 -4717891 waslock = 0 -4717890 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4717919 512 16777728 -~~~ -4718069 512 512 -4718228 DOWN 10 -4718228 0 512 -~~~ -~~~ -4718252 0 2560 -~~~ -~~~ -4718254 0 2048 -4718255 homeCount = 63 -4718256 waitCount = 30 -4718256 ripCount = 27 -4718257 locktype1 = 2 -4718257 locktype2 = 6 -4718258 locktype3 = 2 -4718258 goalCount = 0 -4718259 goalTotal = 20 -4718259 otherCount = 32 -~~~ -4718277 UP 10 -4718277 waslock = 0 -4718277 512 2048 -~~~ -4723383 DOWN 10 -4723383 0 2048 -~~~ -~~~ -~~~ -~~~ -4723407 homeCount = 63 -4723408 waitCount = 30 -4723408 ripCount = 27 -4723409 locktype1 = 2 -4723409 locktype2 = 6 -4723409 locktype3 = 2 -4723410 goalCount = 0 -4723410 goalTotal = 20 -4723411 otherCount = 32 -~~~ -4723434 UP 10 -4723434 waslock = 0 -4723434 512 2048 -~~~ -4723461 DOWN 10 -4723461 0 2048 -~~~ -~~~ -~~~ -~~~ -4723486 homeCount = 63 -4723487 waitCount = 30 -4723487 ripCount = 27 -4723488 locktype1 = 2 -4723488 locktype2 = 6 -4723489 locktype3 = 2 -4723489 goalCount = 0 -4723490 goalTotal = 20 -4723490 otherCount = 32 -~~~ -4725181 UP 12 -4725181 2048 2048 -4730467 DOWN 12 -4730467 0 2048 -4730514 UP 12 -4730514 2048 2048 -4732181 CLICK1 -4732181 CLICK2 -~~~ -~~~ -~~~ -4732205 2048 67110912 -~~~ -4732354 2048 2048 -4741145 DOWN 12 -4741145 0 2048 -~~~ -~~~ -4741163 0 0 -~~~ -~~~ -4741165 0 1 -~~~ -~~~ -4741167 0 3 -~~~ -~~~ -4741169 0 7 -~~~ -~~~ -4741171 0 15 -~~~ -~~~ -4741172 0 31 -~~~ -~~~ -4741174 0 63 -~~~ -~~~ -4741176 0 127 -~~~ -~~~ -4741178 0 255 -4741179 homeCount = 63 -4741179 waitCount = 31 -4741180 ripCount = 27 -4741180 locktype1 = 2 -4741181 locktype2 = 6 -4741202 locktype3 = 2 -4741203 goalCount = 0 -4741203 goalTotal = 20 -4741204 otherCount = 32 -~~~ -4741205 CURRENTGOAL IS [6] -~~~ -4744871 UP 4 -4744871 8 255 -~~~ -~~~ -4745068 DOWN 4 -4745068 0 255 -~~~ -~~~ -4745095 0 254 -~~~ -~~~ -4745097 0 252 -~~~ -~~~ -4745099 0 248 -~~~ -~~~ -4745101 0 240 -~~~ -~~~ -4745102 0 224 -~~~ -~~~ -4745104 0 192 -~~~ -~~~ -4745106 0 128 -~~~ -~~~ -4745108 0 0 -~~~ -~~~ -4745110 0 512 -4745111 homeCount = 63 -4745111 waitCount = 31 -4745112 ripCount = 27 -4745112 locktype1 = 2 -4745113 locktype2 = 6 -4745134 locktype3 = 2 -4745134 goalCount = 0 -4745135 goalTotal = 20 -4745135 otherCount = 33 -~~~ -4749055 UP 10 -4749055 waslock = 0 -4749055 512 512 -4749065 DOWN 10 -4749065 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4749082 0 16777728 -~~~ -~~~ -~~~ -4749085 0 16779776 -~~~ -~~~ -4749087 0 16779264 -4749088 homeCount = 64 -4749088 waitCount = 31 -4749089 ripCount = 27 -4749089 locktype1 = 2 -4749089 locktype2 = 6 -4749090 locktype3 = 2 -4749090 goalCount = 0 -4749091 goalTotal = 20 -4749091 otherCount = 33 -~~~ -4749164 UP 10 -4749165 waslock = 0 -4749164 512 16779264 -~~~ -4749232 512 2048 -4752944 DOWN 10 -4752944 0 2048 -~~~ -~~~ -~~~ -~~~ -4752969 homeCount = 64 -4752969 waitCount = 31 -4752970 ripCount = 27 -4752970 locktype1 = 2 -4752971 locktype2 = 6 -4752971 locktype3 = 2 -4752972 goalCount = 0 -4752972 goalTotal = 20 -4752972 otherCount = 33 -~~~ -4752973 UP 10 -4752973 waslock = 0 -4752973 512 2048 -~~~ -4753030 DOWN 10 -4753030 0 2048 -~~~ -~~~ -~~~ -~~~ -4753060 homeCount = 64 -4753061 waitCount = 31 -4753061 ripCount = 27 -4753062 locktype1 = 2 -4753062 locktype2 = 6 -4753063 locktype3 = 2 -4753063 goalCount = 0 -4753064 goalTotal = 20 -4753064 otherCount = 33 -~~~ -4754833 UP 12 -4754833 2048 2048 -4758334 CLICK1 -4758334 CLICK2 -~~~ -~~~ -~~~ -4758357 2048 67110912 -~~~ -4758507 2048 2048 -4765227 DOWN 12 -4765226 0 2048 -~~~ -~~~ -4765245 0 0 -~~~ -~~~ -4765247 0 1 -~~~ -~~~ -4765249 0 3 -~~~ -~~~ -4765251 0 7 -~~~ -~~~ -4765253 0 15 -~~~ -~~~ -4765254 0 31 -~~~ -~~~ -4765256 0 63 -~~~ -~~~ -4765258 0 127 -~~~ -~~~ -4765260 0 255 -4765261 homeCount = 64 -4765261 waitCount = 32 -4765262 ripCount = 27 -4765262 locktype1 = 2 -4765263 locktype2 = 6 -4765284 locktype3 = 2 -4765284 goalCount = 0 -4765285 goalTotal = 20 -4765285 otherCount = 33 -~~~ -4765286 CURRENTGOAL IS [6] -~~~ -4765287 UP 12 -4765287 2048 255 -4765315 DOWN 12 -4765315 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4765350 homeCount = 64 -4765351 waitCount = 32 -4765351 ripCount = 27 -4765352 locktype1 = 2 -4765352 locktype2 = 6 -4765353 locktype3 = 2 -4765353 goalCount = 0 -4765354 goalTotal = 20 -4765354 otherCount = 33 -~~~ -4765355 CURRENTGOAL IS [6] -~~~ -4770972 UP 2 -4770972 2 255 -~~~ -~~~ -4771352 DOWN 2 -4771352 0 255 -~~~ -~~~ -4771375 0 254 -~~~ -~~~ -4771377 0 252 -~~~ -4771379 2 252 -~~~ -~~~ -4771380 2 248 -~~~ -4771381 2 240 -~~~ -~~~ -4771383 2 224 -~~~ -~~~ -4771384 2 192 -~~~ -~~~ -4771386 2 128 -~~~ -~~~ -4771388 2 0 -~~~ -~~~ -4771390 2 512 -4771391 homeCount = 64 -4771392 waitCount = 32 -4771392 ripCount = 27 -4771393 locktype1 = 2 -4771414 locktype2 = 6 -4771414 locktype3 = 2 -4771415 goalCount = 0 -4771415 goalTotal = 20 -4771416 otherCount = 34 -~~~ -4772044 DOWN 2 -4772044 0 512 -4772070 2 512 -4772136 DOWN 2 -4772136 0 512 -4776301 UP 10 -4776302 waslock = 0 -4776301 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4776334 512 16777728 -~~~ -4776484 512 512 -4780543 DOWN 10 -4780543 0 512 -~~~ -~~~ -4780568 0 1536 -~~~ -~~~ -4780570 0 1024 -4780571 homeCount = 65 -4780572 waitCount = 32 -4780572 ripCount = 27 -4780573 locktype1 = 2 -4780573 locktype2 = 6 -4780574 locktype3 = 2 -4780574 goalCount = 0 -4780574 goalTotal = 20 -4780575 otherCount = 34 -~~~ -4780616 UP 10 -4780616 waslock = 0 -4780616 512 1024 -4780631 DOWN 10 -4780631 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -4780658 homeCount = 65 -4780659 waitCount = 32 -4780659 ripCount = 27 -4780660 locktype1 = 2 -4780660 locktype2 = 6 -4780661 locktype3 = 2 -4780661 goalCount = 0 -4780662 goalTotal = 20 -4780662 otherCount = 34 -~~~ -4782283 UP 11 -4782283 1024 1024 -4785849 DOWN 11 -4785849 0 1024 -4785873 UP 11 -4785873 1024 1024 -4785903 DOWN 11 -4785903 0 1024 -4785929 UP 11 -4785929 1024 1024 -4786783 BEEP1 -4786783 BEEP2 -~~~ -~~~ -~~~ -4786802 1024 33555456 -~~~ -4786952 1024 1024 -4791693 DOWN 11 -4791693 0 1024 -~~~ -~~~ -4791720 0 0 -~~~ -~~~ -4791722 0 1 -~~~ -~~~ -4791724 0 3 -~~~ -~~~ -4791726 0 7 -~~~ -~~~ -4791727 0 15 -~~~ -~~~ -4791729 0 31 -~~~ -~~~ -4791731 0 63 -~~~ -~~~ -4791733 0 127 -~~~ -~~~ -4791735 0 255 -4791736 homeCount = 65 -4791736 waitCount = 32 -4791737 ripCount = 28 -4791737 locktype1 = 2 -4791738 locktype2 = 6 -4791738 locktype3 = 2 -4791759 goalCount = 0 -4791760 goalTotal = 20 -4791760 otherCount = 34 -~~~ -4791761 CURRENTGOAL IS [6] -~~~ -4791762 UP 11 -4791762 1024 255 -4796159 DOWN 11 -4796159 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4796199 homeCount = 65 -4796200 waitCount = 32 -4796200 ripCount = 28 -4796201 locktype1 = 2 -4796201 locktype2 = 6 -4796202 locktype3 = 2 -4796202 goalCount = 0 -4796203 goalTotal = 20 -4796203 otherCount = 34 -~~~ -4796204 CURRENTGOAL IS [6] -~~~ -4803475 UP 6 -4803475 32 255 -~~~ -~~~ -4803496 outer reward -~~~ -4803496 32 2097407 -~~~ -~~~ -4803946 32 255 -4810377 DOWN 6 -4810377 0 255 -~~~ -~~~ -4810403 0 254 -~~~ -~~~ -4810405 0 252 -~~~ -~~~ -4810407 0 248 -~~~ -~~~ -4810408 0 240 -~~~ -~~~ -4810410 0 224 -~~~ -~~~ -4810412 0 192 -~~~ -~~~ -4810414 0 128 -~~~ -~~~ -4810416 0 0 -~~~ -~~~ -4810418 0 512 -4810419 homeCount = 65 -4810419 waitCount = 32 -4810420 ripCount = 28 -4810420 locktype1 = 2 -4810420 locktype2 = 6 -4810442 locktype3 = 2 -4810442 goalCount = 1 -4810442 goalTotal = 21 -4810443 otherCount = 34 -~~~ -4810443 32 512 -4810501 DOWN 6 -4810501 0 512 -4810580 32 512 -4810629 DOWN 6 -4810629 0 512 -4813598 32 512 -4813796 DOWN 6 -4813796 0 512 -4813876 32 512 -4813942 DOWN 6 -4813942 0 512 -4818623 UP 10 -4818623 waslock = 0 -4818623 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4818651 512 16777728 -~~~ -4818801 512 512 -4818900 DOWN 10 -4818900 0 512 -~~~ -~~~ -4818925 0 2560 -~~~ -~~~ -4818927 0 2048 -4818928 homeCount = 66 -4818929 waitCount = 32 -4818929 ripCount = 28 -4818930 locktype1 = 2 -4818930 locktype2 = 6 -4818930 locktype3 = 2 -4818931 goalCount = 1 -4818931 goalTotal = 21 -4818932 otherCount = 34 -~~~ -4818952 UP 10 -4818953 waslock = 0 -4818952 512 2048 -~~~ -4822693 DOWN 10 -4822693 0 2048 -~~~ -~~~ -~~~ -~~~ -4822716 homeCount = 66 -4822717 waitCount = 32 -4822717 ripCount = 28 -4822718 locktype1 = 2 -4822718 locktype2 = 6 -4822719 locktype3 = 2 -4822719 goalCount = 1 -4822720 goalTotal = 21 -4822720 otherCount = 34 -~~~ -4824694 UP 12 -4824694 2048 2048 -4829105 DOWN 12 -4829105 0 2048 -4829150 UP 12 -4829150 2048 2048 -4829195 CLICK1 -4829195 CLICK2 -~~~ -~~~ -~~~ -4829217 2048 67110912 -~~~ -4829366 2048 2048 -4835687 DOWN 12 -4835687 0 2048 -~~~ -~~~ -4835713 0 0 -~~~ -~~~ -4835715 0 1 -~~~ -~~~ -4835717 0 3 -~~~ -~~~ -4835719 0 7 -~~~ -~~~ -4835720 0 15 -~~~ -~~~ -4835722 0 31 -~~~ -~~~ -4835724 0 63 -~~~ -~~~ -4835726 0 127 -~~~ -~~~ -4835728 0 255 -4835729 homeCount = 66 -4835729 waitCount = 33 -4835730 ripCount = 28 -4835730 locktype1 = 2 -4835731 locktype2 = 6 -4835752 locktype3 = 2 -4835752 goalCount = 1 -4835753 goalTotal = 21 -4835753 otherCount = 34 -~~~ -4835754 CURRENTGOAL IS [6] -~~~ -4845023 UP 6 -4845023 32 255 -~~~ -~~~ -4845047 outer reward -~~~ -4845048 32 2097407 -~~~ -~~~ -4845425 DOWN 6 -4845425 0 2097407 -4845446 32 2097407 -~~~ -~~~ -4845448 32 2097406 -~~~ -~~~ -4845449 32 2097404 -~~~ -~~~ -4845451 32 2097400 -~~~ -~~~ -4845453 32 2097392 -~~~ -~~~ -4845455 32 2097376 -~~~ -~~~ -4845457 32 2097344 -~~~ -~~~ -4845458 32 2097280 -~~~ -~~~ -4845460 32 2097152 -~~~ -~~~ -4845462 32 2097664 -4845463 homeCount = 66 -4845464 waitCount = 33 -4845484 ripCount = 28 -4845485 locktype1 = 2 -4845485 locktype2 = 6 -4845486 locktype3 = 2 -4845486 goalCount = 2 -4845487 goalTotal = 22 -4845487 otherCount = 34 -~~~ -4845497 32 512 -4851372 DOWN 6 -4851372 0 512 -4851430 32 512 -4851482 DOWN 6 -4851482 0 512 -4851574 32 512 -4851594 DOWN 6 -4851594 0 512 -4855743 UP 10 -4855743 waslock = 0 -4855743 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4855773 512 16777728 -~~~ -4855923 512 512 -4860434 DOWN 10 -4860434 0 512 -~~~ -~~~ -4860459 0 1536 -~~~ -~~~ -4860461 0 1024 -4860462 homeCount = 67 -4860462 waitCount = 33 -4860463 ripCount = 28 -4860463 locktype1 = 2 -4860464 locktype2 = 6 -4860464 locktype3 = 2 -4860464 goalCount = 2 -4860465 goalTotal = 22 -4860465 otherCount = 34 -~~~ -4862633 UP 11 -4862633 1024 1024 -4864053 DOWN 11 -4864053 0 1024 -4864086 UP 11 -4864086 1024 1024 -4865406 DOWN 11 -4865406 0 1024 -4865441 UP 11 -4865441 1024 1024 -4866186 DOWN 11 -4866186 0 1024 -4866229 UP 11 -4866229 1024 1024 -4866243 DOWN 11 -4866243 0 1024 -4866287 UP 11 -4866287 1024 1024 -4866547 DOWN 11 -4866547 0 1024 -4866559 UP 11 -4866559 1024 1024 -4866633 BEEP1 -4866633 BEEP2 -~~~ -~~~ -~~~ -4866656 1024 33555456 -~~~ -4866806 1024 1024 -4871315 DOWN 11 -4871315 0 1024 -~~~ -~~~ -4871342 0 0 -~~~ -~~~ -4871344 0 1 -~~~ -4871345 UP 11 -4871345 1024 1 -~~~ -~~~ -4871347 1024 3 -~~~ -~~~ -4871348 1024 7 -~~~ -~~~ -4871350 1024 15 -~~~ -4871351 1024 31 -~~~ -~~~ -4871353 1024 63 -~~~ -~~~ -4871354 1024 127 -~~~ -~~~ -4871356 1024 255 -4871357 homeCount = 67 -4871379 waitCount = 33 -4871379 ripCount = 29 -4871380 locktype1 = 2 -4871380 locktype2 = 6 -4871380 locktype3 = 2 -4871381 goalCount = 2 -4871381 goalTotal = 22 -4871382 otherCount = 34 -~~~ -4871383 CURRENTGOAL IS [6] -~~~ -4871383 DOWN 11 -4871383 0 255 -4871405 UP 11 -4871405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4871442 homeCount = 67 -4871442 waitCount = 33 -4871443 ripCount = 29 -4871443 locktype1 = 2 -4871444 locktype2 = 6 -4871444 locktype3 = 2 -4871445 goalCount = 2 -4871445 goalTotal = 22 -4871445 otherCount = 34 -~~~ -4871447 CURRENTGOAL IS [6] -~~~ -4873361 DOWN 11 -4873361 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4873397 homeCount = 67 -4873397 waitCount = 33 -4873398 ripCount = 29 -4873398 locktype1 = 2 -4873399 locktype2 = 6 -4873399 locktype3 = 2 -4873400 goalCount = 2 -4873400 goalTotal = 22 -4873401 otherCount = 34 -~~~ -4873402 CURRENTGOAL IS [6] -~~~ -4873455 UP 11 -4873455 1024 255 -4873472 DOWN 11 -4873472 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -4873497 UP 11 -4873497 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4873509 homeCount = 67 -4873510 waitCount = 33 -4873510 ripCount = 29 -4873511 locktype1 = 2 -4873511 locktype2 = 6 -4873512 locktype3 = 2 -4873512 goalCount = 2 -4873512 goalTotal = 22 -4873513 otherCount = 34 -~~~ -4873514 CURRENTGOAL IS [6] -~~~ -4874404 DOWN 11 -4874404 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4874438 homeCount = 67 -4874438 waitCount = 33 -4874439 ripCount = 29 -4874439 locktype1 = 2 -4874440 locktype2 = 6 -4874440 locktype3 = 2 -4874441 goalCount = 2 -4874441 goalTotal = 22 -4874442 otherCount = 34 -~~~ -4874443 CURRENTGOAL IS [6] -~~~ -4877582 UP 7 -4877582 64 255 -~~~ -~~~ -4878186 DOWN 7 -4878186 0 255 -~~~ -~~~ -4878208 0 254 -~~~ -~~~ -4878210 0 252 -~~~ -~~~ -4878212 0 248 -~~~ -~~~ -4878214 0 240 -~~~ -~~~ -4878215 0 224 -~~~ -~~~ -4878217 0 192 -~~~ -~~~ -4878219 0 128 -~~~ -~~~ -4878221 0 0 -~~~ -~~~ -4878223 0 512 -4878224 homeCount = 67 -4878224 waitCount = 33 -4878225 ripCount = 29 -4878225 locktype1 = 2 -4878226 locktype2 = 6 -4878247 locktype3 = 2 -4878247 goalCount = 2 -4878248 goalTotal = 22 -4878248 otherCount = 35 -~~~ -4878255 64 512 -4878364 DOWN 7 -4878364 0 512 -4888220 UP 6 -4888220 32 512 -~~~ -4888240 WHITENOISE -~~~ -~~~ -~~~ -4888242 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4888552 DOWN 6 -4888552 0 0 -4888580 32 0 -4889335 DOWN 6 -4889335 0 0 -4895758 512 0 -4895900 0 0 -4896086 512 0 -4896709 0 0 -4896767 512 0 -4896810 0 0 -4913240 LOCKEND -~~~ -~~~ -~~~ -4913260 0 512 -4913827 UP 10 -4913827 waslock = 0 -4913827 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4913856 512 16777728 -~~~ -4914006 512 512 -4919172 DOWN 10 -4919171 0 512 -~~~ -~~~ -4919189 0 1536 -~~~ -~~~ -4919191 0 1024 -4919192 homeCount = 68 -4919192 waitCount = 33 -4919193 ripCount = 29 -4919193 locktype1 = 2 -4919193 locktype2 = 7 -4919194 locktype3 = 2 -4919194 goalCount = 2 -4919195 goalTotal = 22 -4919195 otherCount = 35 -~~~ -4919208 UP 10 -4919208 waslock = 0 -4919208 512 1024 -~~~ -4919258 DOWN 10 -4919258 0 1024 -~~~ -~~~ -~~~ -~~~ -4919283 homeCount = 68 -4919284 waitCount = 33 -4919284 ripCount = 29 -4919285 locktype1 = 2 -4919285 locktype2 = 7 -4919286 locktype3 = 2 -4919286 goalCount = 2 -4919287 goalTotal = 22 -4919287 otherCount = 35 -~~~ -4920827 UP 11 -4920827 1024 1024 -4923419 DOWN 11 -4923419 0 1024 -4923459 UP 11 -4923459 1024 1024 -4924327 BEEP1 -4924327 BEEP2 -~~~ -~~~ -~~~ -4924356 1024 33555456 -~~~ -4924506 1024 1024 -4930037 DOWN 11 -4930037 0 1024 -~~~ -~~~ -4930062 UP 11 -4930062 1024 0 -~~~ -~~~ -4930064 1024 1 -~~~ -~~~ -4930066 1024 3 -~~~ -~~~ -4930067 1024 7 -~~~ -~~~ -4930069 1024 15 -~~~ -~~~ -4930071 1024 31 -~~~ -~~~ -4930073 1024 63 -~~~ -~~~ -4930075 1024 127 -~~~ -~~~ -4930076 1024 255 -4930078 homeCount = 68 -4930078 waitCount = 33 -4930079 ripCount = 30 -4930100 locktype1 = 2 -4930100 locktype2 = 7 -4930101 locktype3 = 2 -4930101 goalCount = 2 -4930102 goalTotal = 22 -4930102 otherCount = 35 -~~~ -4930103 CURRENTGOAL IS [6] -~~~ -4931788 DOWN 11 -4931788 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4931830 homeCount = 68 -4931831 waitCount = 33 -4931831 ripCount = 30 -4931832 locktype1 = 2 -4931832 locktype2 = 7 -4931833 locktype3 = 2 -4931833 goalCount = 2 -4931834 goalTotal = 22 -4931834 otherCount = 35 -~~~ -4931835 CURRENTGOAL IS [6] -~~~ -4931856 UP 11 -4931856 1024 255 -4931911 DOWN 11 -4931911 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4931949 homeCount = 68 -4931949 waitCount = 33 -4931950 ripCount = 30 -4931950 locktype1 = 2 -4931951 locktype2 = 7 -4931951 locktype3 = 2 -4931952 goalCount = 2 -4931952 goalTotal = 22 -4931953 otherCount = 35 -~~~ -4931954 CURRENTGOAL IS [6] -~~~ -4935641 UP 6 -4935641 32 255 -~~~ -~~~ -4935667 outer reward -~~~ -4935667 32 2097407 -~~~ -~~~ -4935968 DOWN 6 -4935968 0 2097407 -~~~ -4935992 32 2097407 -~~~ -4935993 32 2097406 -~~~ -~~~ -4935995 32 2097404 -~~~ -~~~ -4935997 32 2097400 -~~~ -~~~ -4935999 32 2097392 -~~~ -~~~ -4936000 32 2097376 -~~~ -~~~ -4936002 32 2097344 -~~~ -~~~ -4936004 32 2097280 -~~~ -~~~ -4936006 32 2097152 -~~~ -~~~ -4936008 32 2097664 -4936009 homeCount = 68 -4936029 waitCount = 33 -4936031 ripCount = 30 -4936031 locktype1 = 2 -4936031 locktype2 = 7 -4936032 locktype3 = 2 -4936032 goalCount = 3 -4936033 goalTotal = 23 -4936033 otherCount = 35 -~~~ -4936117 32 512 -4943256 DOWN 6 -4943256 0 512 -4943326 32 512 -4943341 DOWN 6 -4943341 0 512 -4947597 UP 10 -4947597 waslock = 0 -4947597 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4947631 512 16777728 -~~~ -4947780 512 512 -4947829 DOWN 10 -4947829 0 512 -~~~ -~~~ -4947853 0 2560 -~~~ -~~~ -4947855 0 2048 -4947856 homeCount = 69 -4947856 waitCount = 33 -4947857 ripCount = 30 -4947857 locktype1 = 2 -4947858 locktype2 = 7 -4947858 locktype3 = 2 -4947859 goalCount = 3 -4947859 goalTotal = 23 -4947860 otherCount = 35 -~~~ -4947988 UP 10 -4947989 waslock = 0 -4947988 512 2048 -~~~ -4952305 DOWN 10 -4952305 0 2048 -~~~ -~~~ -~~~ -~~~ -4952326 homeCount = 69 -4952326 waitCount = 33 -4952327 ripCount = 30 -4952327 locktype1 = 2 -4952328 locktype2 = 7 -4952328 locktype3 = 2 -4952329 goalCount = 3 -4952329 goalTotal = 23 -4952330 otherCount = 35 -~~~ -4952364 UP 10 -4952365 waslock = 0 -4952364 512 2048 -~~~ -4952401 DOWN 10 -4952401 0 2048 -~~~ -~~~ -~~~ -~~~ -4952421 homeCount = 69 -4952422 waitCount = 33 -4952422 ripCount = 30 -4952423 locktype1 = 2 -4952423 locktype2 = 7 -4952424 locktype3 = 2 -4952424 goalCount = 3 -4952425 goalTotal = 23 -4952425 otherCount = 35 -~~~ -4954268 UP 12 -4954268 2048 2048 -4956332 DOWN 12 -4956332 0 2048 -4956407 UP 12 -4956407 2048 2048 -4957946 DOWN 12 -4957946 0 2048 -4958000 UP 12 -4958000 2048 2048 -4959769 CLICK1 -4959769 CLICK2 -~~~ -~~~ -~~~ -4959795 2048 67110912 -~~~ -4959945 2048 2048 -4966527 DOWN 12 -4966527 0 2048 -~~~ -~~~ -4966544 0 0 -~~~ -~~~ -4966546 0 1 -~~~ -~~~ -4966548 0 3 -~~~ -~~~ -4966550 0 7 -~~~ -~~~ -4966552 0 15 -~~~ -~~~ -4966553 0 31 -~~~ -4966555 UP 12 -4966555 2048 31 -~~~ -~~~ -4966557 2048 63 -~~~ -~~~ -4966558 2048 127 -~~~ -4966559 2048 255 -4966560 homeCount = 69 -4966561 waitCount = 34 -4966562 ripCount = 30 -4966583 locktype1 = 2 -4966583 locktype2 = 7 -4966584 locktype3 = 2 -4966584 goalCount = 3 -4966585 goalTotal = 23 -4966585 otherCount = 35 -~~~ -4966586 CURRENTGOAL IS [6] -~~~ -4966600 DOWN 12 -4966600 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4966632 homeCount = 69 -4966632 waitCount = 34 -4966633 ripCount = 30 -4966633 locktype1 = 2 -4966634 locktype2 = 7 -4966634 locktype3 = 2 -4966635 goalCount = 3 -4966635 goalTotal = 23 -4966636 otherCount = 35 -~~~ -4966637 CURRENTGOAL IS [6] -~~~ -4966668 UP 12 -4966668 2048 255 -4969174 DOWN 12 -4969174 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4969211 homeCount = 69 -4969212 waitCount = 34 -4969212 ripCount = 30 -4969213 locktype1 = 2 -4969213 locktype2 = 7 -4969214 locktype3 = 2 -4969214 goalCount = 3 -4969215 goalTotal = 23 -4969215 otherCount = 35 -~~~ -4969216 CURRENTGOAL IS [6] -~~~ -4974183 UP 6 -4974183 32 255 -~~~ -~~~ -4974209 outer reward -~~~ -4974209 32 2097407 -~~~ -~~~ -4974418 DOWN 6 -4974418 0 2097407 -~~~ -~~~ -4974436 0 2097406 -~~~ -~~~ -4974438 0 2097404 -~~~ -~~~ -4974440 0 2097400 -~~~ -~~~ -4974442 0 2097392 -~~~ -~~~ -4974444 0 2097376 -~~~ -~~~ -4974445 0 2097344 -~~~ -~~~ -4974447 0 2097280 -~~~ -~~~ -4974449 0 2097152 -~~~ -~~~ -4974451 0 2097664 -4974452 homeCount = 69 -4974453 waitCount = 34 -4974453 ripCount = 30 -4974474 locktype1 = 2 -4974475 locktype2 = 7 -4974475 locktype3 = 2 -4974476 goalCount = 4 -4974476 goalTotal = 24 -4974477 otherCount = 35 -~~~ -4974477 32 2097664 -4974659 32 512 -4975104 DOWN 6 -4975104 0 512 -4975119 32 512 -4975232 DOWN 6 -4975232 0 512 -4975246 32 512 -4975346 DOWN 6 -4975346 0 512 -4975380 32 512 -4975480 DOWN 6 -4975480 0 512 -4975509 32 512 -4975617 DOWN 6 -4975617 0 512 -4975642 32 512 -4975756 DOWN 6 -4975756 0 512 -4975773 32 512 -4975895 DOWN 6 -4975895 0 512 -4975910 32 512 -4980733 DOWN 6 -4980733 0 512 -4980774 32 512 -4980818 DOWN 6 -4980818 0 512 -4984695 UP 10 -4984695 waslock = 0 -4984694 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4984722 512 16777728 -~~~ -4984872 512 512 -4989193 DOWN 10 -4989193 0 512 -~~~ -~~~ -4989216 0 1536 -~~~ -~~~ -4989218 0 1024 -4989219 homeCount = 70 -4989219 waitCount = 34 -4989220 ripCount = 30 -4989220 locktype1 = 2 -4989221 locktype2 = 7 -4989221 locktype3 = 2 -4989222 goalCount = 4 -4989222 goalTotal = 24 -4989223 otherCount = 35 -~~~ -4989259 UP 10 -4989260 waslock = 0 -4989259 512 1024 -4989279 DOWN 10 -4989279 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -4989301 homeCount = 70 -4989301 waitCount = 34 -4989302 ripCount = 30 -4989302 locktype1 = 2 -4989303 locktype2 = 7 -4989303 locktype3 = 2 -4989304 goalCount = 4 -4989304 goalTotal = 24 -4989305 otherCount = 35 -~~~ -4991305 UP 11 -4991305 1024 1024 -4992871 DOWN 11 -4992871 0 1024 -4992939 UP 11 -4992939 1024 1024 -4992987 DOWN 11 -4992987 0 1024 -4992997 UP 11 -4992997 1024 1024 -4994737 DOWN 11 -4994737 0 1024 -4994747 UP 11 -4994747 1024 1024 -4997651 DOWN 11 -4997651 0 1024 -4997663 UP 11 -4997663 1024 1024 -4998026 DOWN 11 -4998026 0 1024 -4998060 UP 11 -4998060 1024 1024 -4998077 DOWN 11 -4998077 0 1024 -4998088 UP 11 -4998088 1024 1024 -4998306 BEEP1 -4998306 BEEP2 -~~~ -~~~ -~~~ -4998329 1024 33555456 -~~~ -4998478 1024 1024 -5004681 DOWN 11 -5004681 0 1024 -~~~ -~~~ -5004706 0 0 -~~~ -~~~ -5004708 0 1 -~~~ -~~~ -5004710 0 3 -~~~ -~~~ -5004711 UP 11 -5004711 1024 7 -~~~ -~~~ -5004713 1024 15 -~~~ -~~~ -5004715 1024 31 -~~~ -~~~ -5004717 1024 63 -~~~ -~~~ -5004719 1024 127 -~~~ -~~~ -5004720 1024 255 -5004721 homeCount = 70 -5004722 waitCount = 34 -5004723 ripCount = 31 -5004744 locktype1 = 2 -5004744 locktype2 = 7 -5004744 locktype3 = 2 -5004745 goalCount = 4 -5004745 goalTotal = 24 -5004746 otherCount = 35 -~~~ -5004747 CURRENTGOAL IS [6] -~~~ -5004769 DOWN 11 -5004769 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5004805 homeCount = 70 -5004806 waitCount = 34 -5004806 ripCount = 31 -5004807 locktype1 = 2 -5004807 locktype2 = 7 -5004808 locktype3 = 2 -5004808 goalCount = 4 -5004809 goalTotal = 24 -5004809 otherCount = 35 -~~~ -5004810 CURRENTGOAL IS [6] -~~~ -5014643 UP 6 -5014643 32 255 -~~~ -~~~ -5014669 outer reward -~~~ -5014670 32 2097407 -~~~ -~~~ -5014904 DOWN 6 -5014904 0 2097407 -~~~ -~~~ -5014928 0 2097406 -~~~ -~~~ -5014930 0 2097404 -~~~ -~~~ -5014931 0 2097400 -~~~ -~~~ -5014933 0 2097392 -~~~ -~~~ -5014935 0 2097376 -~~~ -~~~ -5014937 0 2097344 -~~~ -~~~ -5014939 0 2097280 -~~~ -~~~ -5014940 0 2097152 -~~~ -~~~ -5014942 0 2097664 -5014943 homeCount = 70 -5014944 waitCount = 34 -5014944 ripCount = 31 -5014966 locktype1 = 2 -5014966 locktype2 = 7 -5014966 locktype3 = 2 -5014967 goalCount = 5 -5014967 goalTotal = 25 -5014968 otherCount = 35 -~~~ -5014968 32 2097664 -5015119 32 512 -5015329 DOWN 6 -5015329 0 512 -5015358 32 512 -5015461 DOWN 6 -5015461 0 512 -5015476 32 512 -5015588 DOWN 6 -5015588 0 512 -5015600 32 512 -5015717 DOWN 6 -5015717 0 512 -5015727 32 512 -5015843 DOWN 6 -5015843 0 512 -5015855 32 512 -5020832 DOWN 6 -5020832 0 512 -5020886 32 512 -5020928 DOWN 6 -5020928 0 512 -5026912 UP 10 -5026912 waslock = 0 -5026912 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5026939 512 16777728 -~~~ -5027086 DOWN 10 -5027086 0 16777728 -5027089 0 512 -~~~ -~~~ -5027104 0 2560 -~~~ -~~~ -5027106 0 2048 -5027107 homeCount = 71 -5027107 waitCount = 34 -5027108 ripCount = 31 -5027108 locktype1 = 2 -5027109 locktype2 = 7 -5027109 locktype3 = 2 -5027110 goalCount = 5 -5027110 goalTotal = 25 -5027111 otherCount = 35 -~~~ -5027415 UP 10 -5027415 waslock = 0 -5027415 512 2048 -~~~ -5032403 DOWN 10 -5032403 0 2048 -5032408 UP 10 -5032409 waslock = 0 -5032408 512 2048 -~~~ -~~~ -~~~ -~~~ -5032426 homeCount = 71 -5032427 waitCount = 34 -5032427 ripCount = 31 -5032428 locktype1 = 2 -5032428 locktype2 = 7 -5032429 locktype3 = 2 -5032429 goalCount = 5 -5032430 goalTotal = 25 -5032430 otherCount = 35 -~~~ -~~~ -5032515 DOWN 10 -5032515 0 2048 -~~~ -~~~ -~~~ -~~~ -5032539 homeCount = 71 -5032539 waitCount = 34 -5032540 ripCount = 31 -5032540 locktype1 = 2 -5032541 locktype2 = 7 -5032541 locktype3 = 2 -5032542 goalCount = 5 -5032542 goalTotal = 25 -5032543 otherCount = 35 -~~~ -5032546 UP 10 -5032546 waslock = 0 -5032546 512 2048 -~~~ -5032613 DOWN 10 -5032613 0 2048 -~~~ -~~~ -~~~ -~~~ -5032639 homeCount = 71 -5032640 waitCount = 34 -5032640 ripCount = 31 -5032641 locktype1 = 2 -5032641 locktype2 = 7 -5032642 locktype3 = 2 -5032642 goalCount = 5 -5032643 goalTotal = 25 -5032643 otherCount = 35 -~~~ -5034484 UP 12 -5034484 2048 2048 -5036958 DOWN 12 -5036958 0 2048 -5037036 UP 12 -5037036 2048 2048 -5040518 DOWN 12 -5040518 0 2048 -5040568 UP 12 -5040568 2048 2048 -5042485 CLICK1 -5042485 CLICK2 -~~~ -~~~ -~~~ -5042506 2048 67110912 -~~~ -5042656 2048 2048 -5047511 DOWN 12 -5047510 0 2048 -5047520 UP 12 -5047520 2048 2048 -~~~ -~~~ -5047534 2048 0 -~~~ -~~~ -5047536 2048 1 -~~~ -~~~ -5047538 2048 3 -~~~ -~~~ -5047540 2048 7 -~~~ -~~~ -5047541 2048 15 -~~~ -~~~ -5047543 2048 31 -~~~ -~~~ -5047545 2048 63 -~~~ -~~~ -5047547 2048 127 -~~~ -~~~ -5047549 2048 255 -5047550 homeCount = 71 -5047550 waitCount = 35 -5047551 ripCount = 31 -5047551 locktype1 = 2 -5047573 locktype2 = 7 -5047573 locktype3 = 2 -5047573 goalCount = 5 -5047574 goalTotal = 25 -5047574 otherCount = 35 -~~~ -5047575 CURRENTGOAL IS [6] -~~~ -5047576 DOWN 12 -5047576 0 255 -5047581 UP 12 -5047581 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5047620 homeCount = 71 -5047621 waitCount = 35 -5047621 ripCount = 31 -5047622 locktype1 = 2 -5047622 locktype2 = 7 -5047623 locktype3 = 2 -5047623 goalCount = 5 -5047624 goalTotal = 25 -5047624 otherCount = 35 -~~~ -5047625 CURRENTGOAL IS [6] -~~~ -5050479 DOWN 12 -5050479 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5050518 homeCount = 71 -5050518 waitCount = 35 -5050519 ripCount = 31 -5050519 locktype1 = 2 -5050520 locktype2 = 7 -5050520 locktype3 = 2 -5050521 goalCount = 5 -5050521 goalTotal = 25 -5050522 otherCount = 35 -~~~ -5050523 CURRENTGOAL IS [6] -~~~ -5065836 UP 6 -5065836 32 255 -~~~ -~~~ -5065861 outer reward -~~~ -5065862 32 2097407 -~~~ -~~~ -5066136 DOWN 6 -5066136 0 2097407 -~~~ -~~~ -5066159 0 2097406 -~~~ -~~~ -5066161 0 2097404 -~~~ -~~~ -5066163 0 2097400 -~~~ -~~~ -5066165 0 2097392 -~~~ -~~~ -5066167 0 2097376 -~~~ -~~~ -5066168 0 2097344 -~~~ -~~~ -5066170 0 2097280 -~~~ -5066172 32 2097280 -~~~ -~~~ -5066173 32 2097152 -~~~ -5066174 32 2097664 -5066176 homeCount = 71 -5066176 waitCount = 35 -5066197 ripCount = 31 -5066197 locktype1 = 2 -5066198 locktype2 = 7 -5066198 locktype3 = 2 -5066199 goalCount = 6 -5066199 goalTotal = 26 -5066200 otherCount = 35 -~~~ -5066311 32 512 -5066557 DOWN 6 -5066557 0 512 -5066572 32 512 -5067050 DOWN 6 -5067050 0 512 -5067083 32 512 -5071100 DOWN 6 -5071100 0 512 -5071143 32 512 -5072577 DOWN 6 -5072577 0 512 -5079381 UP 10 -5079382 waslock = 0 -5079381 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5079405 512 16777728 -~~~ -5079555 512 512 -5084925 DOWN 10 -5084925 0 512 -5084940 UP 10 -5084940 waslock = 0 -5084940 512 512 -~~~ -~~~ -5084949 512 2560 -~~~ -~~~ -5084951 512 2048 -5084952 homeCount = 72 -5084952 waitCount = 35 -5084953 ripCount = 31 -5084953 locktype1 = 2 -5084954 locktype2 = 7 -5084954 locktype3 = 2 -5084955 goalCount = 6 -5084955 goalTotal = 26 -5084955 otherCount = 35 -~~~ -~~~ -5085037 DOWN 10 -5085037 0 2048 -~~~ -~~~ -~~~ -~~~ -5085065 homeCount = 72 -5085066 waitCount = 35 -5085066 ripCount = 31 -5085067 locktype1 = 2 -5085067 locktype2 = 7 -5085068 locktype3 = 2 -5085068 goalCount = 6 -5085069 goalTotal = 26 -5085069 otherCount = 35 -~~~ -5086546 UP 12 -5086546 2048 2048 -5086603 DOWN 12 -5086603 0 2048 -5086685 UP 12 -5086685 2048 2048 -5088393 DOWN 12 -5088393 0 2048 -5088565 UP 12 -5088565 2048 2048 -5089288 DOWN 12 -5089288 0 2048 -5089293 UP 12 -5089293 2048 2048 -5094546 CLICK1 -5094546 CLICK2 -~~~ -~~~ -~~~ -5094571 2048 67110912 -~~~ -5094721 2048 2048 -5100032 DOWN 12 -5100032 0 2048 -5100044 UP 12 -5100044 2048 2048 -~~~ -~~~ -5100049 2048 0 -~~~ -~~~ -5100051 2048 1 -~~~ -~~~ -5100052 2048 3 -~~~ -~~~ -5100054 2048 7 -~~~ -~~~ -5100056 2048 15 -~~~ -~~~ -5100058 2048 31 -~~~ -~~~ -5100060 2048 63 -~~~ -~~~ -5100062 2048 127 -~~~ -~~~ -5100063 2048 255 -5100064 homeCount = 72 -5100065 waitCount = 36 -5100065 ripCount = 31 -5100066 locktype1 = 2 -5100087 locktype2 = 7 -5100088 locktype3 = 2 -5100088 goalCount = 6 -5100089 goalTotal = 26 -5100089 otherCount = 35 -~~~ -5100090 CURRENTGOAL IS [6] -~~~ -5100091 DOWN 12 -5100090 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5100137 homeCount = 72 -5100137 waitCount = 36 -5100138 ripCount = 31 -5100138 locktype1 = 2 -5100139 locktype2 = 7 -5100139 locktype3 = 2 -5100140 goalCount = 6 -5100140 goalTotal = 26 -5100141 otherCount = 35 -~~~ -5100142 CURRENTGOAL IS [6] -~~~ -5100176 UP 12 -5100176 2048 255 -5100497 DOWN 12 -5100497 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5100537 homeCount = 72 -5100538 waitCount = 36 -5100538 ripCount = 31 -5100539 locktype1 = 2 -5100539 locktype2 = 7 -5100540 locktype3 = 2 -5100540 goalCount = 6 -5100541 goalTotal = 26 -5100541 otherCount = 35 -~~~ -5100542 CURRENTGOAL IS [6] -~~~ -5100637 UP 12 -5100637 2048 255 -5102022 DOWN 12 -5102022 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5102060 homeCount = 72 -5102061 waitCount = 36 -5102061 ripCount = 31 -5102062 locktype1 = 2 -5102062 locktype2 = 7 -5102063 locktype3 = 2 -5102063 goalCount = 6 -5102064 goalTotal = 26 -5102064 otherCount = 35 -~~~ -5102065 CURRENTGOAL IS [6] -~~~ -5108521 UP 6 -5108521 32 255 -~~~ -~~~ -5108549 outer reward -~~~ -5108549 32 2097407 -~~~ -~~~ -5108766 DOWN 6 -5108766 0 2097407 -~~~ -~~~ -5108789 0 2097406 -~~~ -~~~ -5108791 0 2097404 -~~~ -~~~ -5108793 0 2097400 -~~~ -~~~ -5108795 0 2097392 -~~~ -~~~ -5108797 0 2097376 -~~~ -~~~ -5108798 0 2097344 -~~~ -~~~ -5108800 0 2097280 -~~~ -~~~ -5108802 0 2097152 -~~~ -~~~ -5108804 0 2097664 -5108805 homeCount = 72 -5108805 waitCount = 36 -5108806 ripCount = 31 -5108827 locktype1 = 2 -5108828 locktype2 = 7 -5108828 locktype3 = 2 -5108829 goalCount = 7 -5108829 goalTotal = 27 -5108830 otherCount = 35 -~~~ -5108830 32 2097664 -5108999 32 512 -5109204 DOWN 6 -5109204 0 512 -5109215 32 512 -5109317 DOWN 6 -5109317 0 512 -5109351 32 512 -5109448 DOWN 6 -5109448 0 512 -5109470 32 512 -5109572 DOWN 6 -5109572 0 512 -5109589 32 512 -5109693 DOWN 6 -5109693 0 512 -5109723 32 512 -5113979 DOWN 6 -5113979 0 512 -5113984 32 512 -5115574 DOWN 6 -5115574 0 512 -5119927 UP 10 -5119927 waslock = 0 -5119927 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5119957 512 16777728 -~~~ -5119972 DOWN 10 -5119971 0 16777728 -~~~ -~~~ -5119990 0 16779776 -~~~ -~~~ -5119992 0 16779264 -5119993 homeCount = 73 -5119994 waitCount = 36 -5119994 ripCount = 31 -5119995 locktype1 = 2 -5119995 locktype2 = 7 -5119996 locktype3 = 2 -5119996 goalCount = 7 -5119997 goalTotal = 27 -5119997 otherCount = 35 -~~~ -5120049 UP 10 -5120049 waslock = 0 -5120049 512 16779264 -~~~ -5120107 512 2048 -5123786 DOWN 10 -5123786 0 2048 -~~~ -~~~ -~~~ -~~~ -5123813 homeCount = 73 -5123813 waitCount = 36 -5123814 ripCount = 31 -5123814 locktype1 = 2 -5123814 locktype2 = 7 -5123815 locktype3 = 2 -5123815 goalCount = 7 -5123816 goalTotal = 27 -5123816 otherCount = 35 -~~~ -5125790 UP 12 -5125790 2048 2048 -5127598 DOWN 12 -5127598 0 2048 -5127629 UP 12 -5127629 2048 2048 -5129445 DOWN 12 -5129445 0 2048 -5129463 UP 12 -5129463 2048 2048 -5130858 DOWN 12 -5130858 0 2048 -5130864 UP 12 -5130864 2048 2048 -5133790 CLICK1 -5133790 CLICK2 -~~~ -~~~ -~~~ -5133813 2048 67110912 -~~~ -5133963 2048 2048 -5138931 DOWN 12 -5138931 0 2048 -5138937 UP 12 -5138937 2048 2048 -~~~ -~~~ -5138950 2048 0 -~~~ -~~~ -5138951 2048 1 -~~~ -~~~ -5138953 2048 3 -~~~ -~~~ -5138955 2048 7 -~~~ -~~~ -5138957 2048 15 -~~~ -~~~ -5138959 2048 31 -~~~ -~~~ -5138961 2048 63 -~~~ -~~~ -5138962 2048 127 -~~~ -~~~ -5138964 2048 255 -5138965 homeCount = 73 -5138966 waitCount = 37 -5138966 ripCount = 31 -5138967 locktype1 = 2 -5138987 locktype2 = 7 -5138988 locktype3 = 2 -5138988 goalCount = 7 -5138989 goalTotal = 27 -5138989 otherCount = 35 -~~~ -5138990 CURRENTGOAL IS [6] -~~~ -5138991 DOWN 12 -5138991 0 255 -5139007 UP 12 -5139007 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5139035 homeCount = 73 -5139035 waitCount = 37 -5139036 ripCount = 31 -5139036 locktype1 = 2 -5139037 locktype2 = 7 -5139037 locktype3 = 2 -5139038 goalCount = 7 -5139038 goalTotal = 27 -5139039 otherCount = 35 -~~~ -5139040 CURRENTGOAL IS [6] -~~~ -5141276 DOWN 12 -5141276 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5141318 homeCount = 73 -5141319 waitCount = 37 -5141319 ripCount = 31 -5141320 locktype1 = 2 -5141320 locktype2 = 7 -5141321 locktype3 = 2 -5141321 goalCount = 7 -5141322 goalTotal = 27 -5141322 otherCount = 35 -~~~ -5141323 CURRENTGOAL IS [6] -~~~ -5147743 UP 6 -5147743 32 255 -~~~ -~~~ -5147763 outer reward -~~~ -5147764 32 2097407 -~~~ -~~~ -5147993 DOWN 6 -5147993 0 2097407 -~~~ -~~~ -5148012 0 2097406 -~~~ -~~~ -5148014 0 2097404 -~~~ -~~~ -5148016 0 2097400 -~~~ -~~~ -5148018 0 2097392 -~~~ -~~~ -5148019 0 2097376 -~~~ -~~~ -5148021 0 2097344 -~~~ -~~~ -5148023 0 2097280 -~~~ -~~~ -5148025 0 2097152 -~~~ -~~~ -5148027 0 2097664 -5148028 homeCount = 73 -5148028 waitCount = 37 -5148029 ripCount = 31 -5148050 locktype1 = 2 -5148050 locktype2 = 7 -5148051 locktype3 = 2 -5148051 goalCount = 8 -5148052 goalTotal = 28 -5148052 otherCount = 35 -~~~ -5148068 32 2097664 -5148213 32 512 -5148335 DOWN 6 -5148335 0 512 -5148358 32 512 -5148457 DOWN 6 -5148457 0 512 -5148501 32 512 -5148589 DOWN 6 -5148589 0 512 -5148618 32 512 -5155375 DOWN 6 -5155374 0 512 -5159939 UP 10 -5159939 waslock = 0 -5159939 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5159964 512 16777728 -~~~ -5160114 512 512 -5160151 DOWN 10 -5160151 0 512 -5160165 UP 10 -5160165 waslock = 0 -5160165 512 512 -~~~ -~~~ -5160171 512 2560 -~~~ -~~~ -5160173 512 2048 -5160174 homeCount = 74 -5160175 waitCount = 37 -5160175 ripCount = 31 -5160176 locktype1 = 2 -5160176 locktype2 = 7 -5160177 locktype3 = 2 -5160177 goalCount = 8 -5160178 goalTotal = 28 -5160178 otherCount = 35 -~~~ -~~~ -5164052 DOWN 10 -5164052 0 2048 -~~~ -~~~ -~~~ -~~~ -5164072 homeCount = 74 -5164073 waitCount = 37 -5164073 ripCount = 31 -5164074 locktype1 = 2 -5164074 locktype2 = 7 -5164075 locktype3 = 2 -5164075 goalCount = 8 -5164076 goalTotal = 28 -5164076 otherCount = 35 -~~~ -5165621 UP 12 -5165621 2048 2048 -5172621 CLICK1 -5172621 CLICK2 -~~~ -~~~ -~~~ -5172641 2048 67110912 -~~~ -5172791 2048 2048 -5178708 DOWN 12 -5178708 0 2048 -5178727 UP 12 -5178727 2048 2048 -~~~ -~~~ -5178729 2048 0 -~~~ -~~~ -5178731 2048 1 -~~~ -~~~ -5178733 2048 3 -~~~ -~~~ -5178735 2048 7 -~~~ -~~~ -5178737 2048 15 -~~~ -~~~ -5178738 2048 31 -~~~ -~~~ -5178740 2048 63 -~~~ -~~~ -5178742 2048 127 -~~~ -~~~ -5178744 2048 255 -5178745 homeCount = 74 -5178745 waitCount = 38 -5178766 ripCount = 31 -5178767 locktype1 = 2 -5178767 locktype2 = 7 -5178768 locktype3 = 2 -5178768 goalCount = 8 -5178769 goalTotal = 28 -5178769 otherCount = 35 -~~~ -5178770 CURRENTGOAL IS [6] -~~~ -5178791 DOWN 12 -5178791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5178818 homeCount = 74 -5178819 waitCount = 38 -5178819 ripCount = 31 -5178820 locktype1 = 2 -5178820 locktype2 = 7 -5178821 locktype3 = 2 -5178821 goalCount = 8 -5178822 goalTotal = 28 -5178822 otherCount = 35 -~~~ -5178823 CURRENTGOAL IS [6] -~~~ -5178824 UP 12 -5178824 2048 255 -5178846 DOWN 12 -5178846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5178877 homeCount = 74 -5178877 waitCount = 38 -5178878 ripCount = 31 -5178878 locktype1 = 2 -5178879 locktype2 = 7 -5178879 locktype3 = 2 -5178880 goalCount = 8 -5178880 goalTotal = 28 -5178881 otherCount = 35 -~~~ -5178882 CURRENTGOAL IS [6] -~~~ -5179006 UP 12 -5179006 2048 255 -5180699 DOWN 12 -5180699 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5180741 homeCount = 74 -5180741 waitCount = 38 -5180742 ripCount = 31 -5180742 locktype1 = 2 -5180743 locktype2 = 7 -5180743 locktype3 = 2 -5180744 goalCount = 8 -5180744 goalTotal = 28 -5180744 otherCount = 35 -~~~ -5180746 CURRENTGOAL IS [6] -~~~ -5185076 UP 6 -5185076 32 255 -~~~ -~~~ -5185099 outer reward -~~~ -5185100 32 2097407 -~~~ -~~~ -5185320 DOWN 6 -5185320 0 2097407 -~~~ -~~~ -5185345 0 2097406 -~~~ -~~~ -5185347 0 2097404 -~~~ -~~~ -5185349 0 2097400 -~~~ -~~~ -5185351 0 2097392 -~~~ -~~~ -5185353 0 2097376 -~~~ -~~~ -5185355 0 2097344 -~~~ -~~~ -5185356 0 2097280 -~~~ -~~~ -5185358 0 2097152 -~~~ -~~~ -5185360 0 2097664 -5185361 homeCount = 74 -5185362 waitCount = 38 -5185362 ripCount = 31 -5185383 locktype1 = 2 -5185384 locktype2 = 7 -5185384 locktype3 = 2 -5185385 goalCount = 9 -5185385 goalTotal = 29 -5185386 otherCount = 35 -~~~ -5185386 32 2097664 -5185549 32 512 -5185758 DOWN 6 -5185757 0 512 -5185784 32 512 -5186141 DOWN 6 -5186141 0 512 -5186165 32 512 -5189858 DOWN 6 -5189857 0 512 -5189864 32 512 -5192101 DOWN 6 -5192101 0 512 -5202397 UP 10 -5202398 waslock = 0 -5202397 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5202424 512 16777728 -~~~ -5202574 512 512 -5202655 DOWN 10 -5202655 0 512 -~~~ -~~~ -5202677 0 1536 -~~~ -~~~ -5202679 0 1024 -5202680 homeCount = 75 -5202680 waitCount = 38 -5202681 ripCount = 31 -5202681 locktype1 = 2 -5202682 locktype2 = 7 -5202682 locktype3 = 2 -5202683 goalCount = 9 -5202683 goalTotal = 29 -5202684 otherCount = 35 -~~~ -5202757 UP 10 -5202758 waslock = 0 -5202757 512 1024 -~~~ -5207019 DOWN 10 -5207019 0 1024 -5207036 UP 10 -5207036 waslock = 0 -5207035 512 1024 -~~~ -~~~ -~~~ -~~~ -5207042 homeCount = 75 -5207042 waitCount = 38 -5207043 ripCount = 31 -5207043 locktype1 = 2 -5207044 locktype2 = 7 -5207044 locktype3 = 2 -5207045 goalCount = 9 -5207045 goalTotal = 29 -5207046 otherCount = 35 -~~~ -~~~ -5207117 DOWN 10 -5207117 0 1024 -~~~ -~~~ -~~~ -~~~ -5207144 homeCount = 75 -5207144 waitCount = 38 -5207145 ripCount = 31 -5207145 locktype1 = 2 -5207146 locktype2 = 7 -5207146 locktype3 = 2 -5207147 goalCount = 9 -5207147 goalTotal = 29 -5207148 otherCount = 35 -~~~ -5209520 UP 11 -5209520 1024 1024 -5211517 DOWN 11 -5211517 0 1024 -5211529 UP 11 -5211529 1024 1024 -5212520 BEEP1 -5212520 BEEP2 -~~~ -~~~ -~~~ -5212541 1024 33555456 -~~~ -5212691 1024 1024 -5217823 DOWN 11 -5217823 0 1024 -5217847 UP 11 -5217847 1024 1024 -~~~ -~~~ -5217850 1024 0 -~~~ -~~~ -5217852 1024 1 -~~~ -~~~ -5217854 1024 3 -~~~ -~~~ -5217856 1024 7 -~~~ -~~~ -5217857 1024 15 -~~~ -~~~ -5217859 1024 31 -~~~ -~~~ -5217861 1024 63 -~~~ -~~~ -5217863 1024 127 -~~~ -~~~ -5217865 1024 255 -5217866 homeCount = 75 -5217866 waitCount = 38 -5217867 ripCount = 32 -5217867 locktype1 = 2 -5217888 locktype2 = 7 -5217889 locktype3 = 2 -5217889 goalCount = 9 -5217889 goalTotal = 29 -5217890 otherCount = 35 -~~~ -5217891 CURRENTGOAL IS [6] -~~~ -5217891 DOWN 11 -5217891 0 255 -5217918 UP 11 -5217918 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5217949 homeCount = 75 -5217949 waitCount = 38 -5217950 ripCount = 32 -5217950 locktype1 = 2 -5217951 locktype2 = 7 -5217951 locktype3 = 2 -5217952 goalCount = 9 -5217952 goalTotal = 29 -5217953 otherCount = 35 -~~~ -5217954 CURRENTGOAL IS [6] -~~~ -5217954 DOWN 11 -5217954 0 255 -5217976 UP 11 -5217976 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5218014 homeCount = 75 -5218015 waitCount = 38 -5218016 ripCount = 32 -5218016 locktype1 = 2 -5218017 locktype2 = 7 -5218017 locktype3 = 2 -5218017 goalCount = 9 -5218018 goalTotal = 29 -5218018 otherCount = 35 -~~~ -5218019 CURRENTGOAL IS [6] -~~~ -5219962 DOWN 11 -5219962 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5219994 homeCount = 75 -5219995 waitCount = 38 -5219996 ripCount = 32 -5219996 locktype1 = 2 -5219997 locktype2 = 7 -5219997 locktype3 = 2 -5219997 goalCount = 9 -5219998 goalTotal = 29 -5219998 otherCount = 35 -~~~ -5219999 CURRENTGOAL IS [6] -~~~ -5220006 UP 11 -5220006 1024 255 -5220095 DOWN 11 -5220095 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5220135 homeCount = 75 -5220135 waitCount = 38 -5220136 ripCount = 32 -5220136 locktype1 = 2 -5220137 locktype2 = 7 -5220137 locktype3 = 2 -5220138 goalCount = 9 -5220138 goalTotal = 29 -5220139 otherCount = 35 -~~~ -5220140 CURRENTGOAL IS [6] -~~~ -5220369 UP 11 -5220369 1024 255 -5220384 DOWN 11 -5220384 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5220420 homeCount = 75 -5220421 waitCount = 38 -5220421 ripCount = 32 -5220422 locktype1 = 2 -5220422 locktype2 = 7 -5220423 locktype3 = 2 -5220423 goalCount = 9 -5220424 goalTotal = 29 -5220424 otherCount = 35 -~~~ -5220425 CURRENTGOAL IS [6] -~~~ -5220756 UP 11 -5220756 1024 255 -5222629 DOWN 11 -5222629 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222658 UP 11 -5222658 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222666 homeCount = 75 -5222666 waitCount = 38 -5222667 ripCount = 32 -5222667 locktype1 = 2 -5222668 locktype2 = 7 -5222668 locktype3 = 2 -5222669 goalCount = 9 -5222669 goalTotal = 29 -5222669 otherCount = 35 -~~~ -5222671 CURRENTGOAL IS [6] -~~~ -5222721 DOWN 11 -5222721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222756 homeCount = 75 -5222757 waitCount = 38 -5222757 ripCount = 32 -5222758 locktype1 = 2 -5222758 locktype2 = 7 -5222759 locktype3 = 2 -5222759 goalCount = 9 -5222760 goalTotal = 29 -5222760 otherCount = 35 -~~~ -5222761 CURRENTGOAL IS [6] -~~~ -5225752 UP 6 -5225752 32 255 -~~~ -~~~ -5225775 outer reward -~~~ -5225775 32 2097407 -~~~ -~~~ -5225780 outerreps = 8 -~~~ -~~~ -5226029 DOWN 6 -5226029 0 2097407 -~~~ -~~~ -5226052 0 2097406 -~~~ -~~~ -5226053 0 2097404 -~~~ -~~~ -5226055 0 2097400 -~~~ -~~~ -5226057 0 2097392 -~~~ -~~~ -5226059 0 2097376 -~~~ -~~~ -5226061 0 2097344 -~~~ -~~~ -5226062 0 2097280 -~~~ -5226064 32 2097280 -~~~ -~~~ -5226066 32 2097152 -~~~ -5226067 32 2097664 -5226068 homeCount = 75 -5226068 waitCount = 38 -5226089 ripCount = 32 -5226090 locktype1 = 2 -5226090 locktype2 = 7 -5226091 locktype3 = 2 -5226091 goalCount = 0 -5226092 goalTotal = 30 -5226092 otherCount = 35 -~~~ -5226225 32 512 -5234212 DOWN 6 -5234212 0 512 -5234299 32 512 -5234328 DOWN 6 -5234328 0 512 -5238432 UP 10 -5238432 waslock = 0 -5238432 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5238461 512 16777728 -~~~ -5238611 512 512 -5238651 DOWN 10 -5238651 0 512 -5238675 UP 10 -5238675 waslock = 0 -5238675 512 512 -~~~ -~~~ -~~~ -5238678 512 1536 -~~~ -5238679 512 1024 -5238680 homeCount = 76 -5238680 waitCount = 38 -5238681 ripCount = 32 -5238681 locktype1 = 2 -5238682 locktype2 = 7 -5238682 locktype3 = 2 -5238683 goalCount = 0 -5238704 goalTotal = 30 -5238704 otherCount = 35 -~~~ -~~~ -5242681 DOWN 10 -5242681 0 1024 -~~~ -~~~ -5242707 UP 10 -5242707 waslock = 0 -5242707 512 1024 -~~~ -~~~ -5242710 homeCount = 76 -5242710 waitCount = 38 -5242711 ripCount = 32 -5242711 locktype1 = 2 -5242712 locktype2 = 7 -5242712 locktype3 = 2 -5242713 goalCount = 0 -5242713 goalTotal = 30 -5242714 otherCount = 35 -~~~ -~~~ -5242781 DOWN 10 -5242781 0 1024 -~~~ -~~~ -~~~ -~~~ -5242809 homeCount = 76 -5242809 waitCount = 38 -5242810 ripCount = 32 -5242810 locktype1 = 2 -5242811 locktype2 = 7 -5242811 locktype3 = 2 -5242812 goalCount = 0 -5242812 goalTotal = 30 -5242813 otherCount = 35 -~~~ -5244744 UP 11 -5244744 1024 1024 -5245062 DOWN 11 -5245062 0 1024 -5245263 LOCKOUT 3 -~~~ -5245287 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -5245291 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5245390 UP 11 -5245390 1024 0 -5247273 DOWN 11 -5247273 0 0 -5247303 UP 11 -5247303 1024 0 -5248048 DOWN 11 -5248048 0 0 -5248092 UP 11 -5248092 1024 0 -5249639 DOWN 11 -5249639 0 0 -5270287 LOCKEND -~~~ -~~~ -~~~ -5270306 0 512 -5281092 UP 10 -5281092 waslock = 0 -5281092 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5281122 512 16777728 -~~~ -5281134 DOWN 10 -5281134 0 16777728 -~~~ -~~~ -5281155 0 16778752 -~~~ -~~~ -5281157 0 16778240 -5281158 homeCount = 77 -5281159 waitCount = 38 -5281159 ripCount = 32 -5281160 locktype1 = 2 -5281160 locktype2 = 7 -5281161 locktype3 = 3 -5281161 goalCount = 0 -5281162 goalTotal = 30 -5281162 otherCount = 35 -~~~ -5281227 UP 10 -5281228 waslock = 0 -5281227 512 16778240 -~~~ -5281272 512 1024 -5281345 DOWN 10 -5281344 0 1024 -~~~ -~~~ -~~~ -~~~ -5281368 homeCount = 77 -5281369 waitCount = 38 -5281369 ripCount = 32 -5281370 locktype1 = 2 -5281370 locktype2 = 7 -5281371 locktype3 = 3 -5281371 goalCount = 0 -5281372 goalTotal = 30 -5281372 otherCount = 35 -~~~ -5281376 UP 10 -5281376 waslock = 0 -5281376 512 1024 -~~~ -5281500 DOWN 10 -5281500 0 1024 -5281522 UP 10 -5281522 waslock = 0 -5281522 512 1024 -~~~ -~~~ -~~~ -~~~ -5281529 homeCount = 77 -5281530 waitCount = 38 -5281530 ripCount = 32 -5281531 locktype1 = 2 -5281531 locktype2 = 7 -5281532 locktype3 = 3 -5281532 goalCount = 0 -5281533 goalTotal = 30 -5281533 otherCount = 35 -~~~ -~~~ -5281646 DOWN 10 -5281646 0 1024 -~~~ -~~~ -~~~ -~~~ -5281669 homeCount = 77 -5281669 waitCount = 38 -5281670 ripCount = 32 -5281670 locktype1 = 2 -5281671 locktype2 = 7 -5281671 locktype3 = 3 -5281672 goalCount = 0 -5281672 goalTotal = 30 -5281673 otherCount = 35 -~~~ -5281674 UP 10 -5281675 waslock = 0 -5281674 512 1024 -~~~ -5281809 DOWN 10 -5281809 0 1024 -5281818 UP 10 -5281818 waslock = 0 -5281818 512 1024 -~~~ -~~~ -~~~ -~~~ -5281840 homeCount = 77 -5281841 waitCount = 38 -5281841 ripCount = 32 -5281842 locktype1 = 2 -5281842 locktype2 = 7 -5281843 locktype3 = 3 -5281843 goalCount = 0 -5281844 goalTotal = 30 -5281844 otherCount = 35 -~~~ -~~~ -5285763 DOWN 10 -5285763 0 1024 -5285779 UP 10 -5285780 waslock = 0 -5285779 512 1024 -~~~ -~~~ -~~~ -~~~ -5285799 homeCount = 77 -5285800 waitCount = 38 -5285800 ripCount = 32 -5285801 locktype1 = 2 -5285801 locktype2 = 7 -5285802 locktype3 = 3 -5285802 goalCount = 0 -5285803 goalTotal = 30 -5285803 otherCount = 35 -~~~ -~~~ -5285874 DOWN 10 -5285874 0 1024 -~~~ -~~~ -~~~ -~~~ -5285900 homeCount = 77 -5285900 waitCount = 38 -5285901 ripCount = 32 -5285901 locktype1 = 2 -5285902 locktype2 = 7 -5285902 locktype3 = 3 -5285902 goalCount = 0 -5285903 goalTotal = 30 -5285903 otherCount = 35 -~~~ -5285920 UP 10 -5285920 waslock = 0 -5285920 512 1024 -~~~ -5285968 DOWN 10 -5285968 0 1024 -~~~ -~~~ -~~~ -~~~ -5285989 homeCount = 77 -5285990 waitCount = 38 -5285990 ripCount = 32 -5285991 locktype1 = 2 -5285991 locktype2 = 7 -5285992 locktype3 = 3 -5285992 goalCount = 0 -5285993 goalTotal = 30 -5285993 otherCount = 35 -~~~ -5287968 UP 11 -5287968 1024 1024 -5290407 DOWN 11 -5290407 0 1024 -5290421 UP 11 -5290421 1024 1024 -5290437 DOWN 11 -5290437 0 1024 -5290524 UP 11 -5290524 1024 1024 -5290968 BEEP1 -5290968 BEEP2 -~~~ -~~~ -~~~ -5290989 1024 33555456 -~~~ -5291139 1024 1024 -5296670 DOWN 11 -5296670 0 1024 -~~~ -~~~ -5296696 0 0 -~~~ -~~~ -5296698 0 1 -~~~ -~~~ -5296700 0 3 -~~~ -~~~ -5296702 0 7 -~~~ -~~~ -5296703 0 15 -~~~ -~~~ -5296705 0 31 -~~~ -~~~ -5296707 0 63 -~~~ -~~~ -5296709 0 127 -~~~ -~~~ -5296711 0 255 -5296712 homeCount = 77 -5296712 waitCount = 38 -5296713 ripCount = 33 -5296713 locktype1 = 2 -5296714 locktype2 = 7 -5296735 locktype3 = 3 -5296735 goalCount = 0 -5296736 goalTotal = 30 -5296736 otherCount = 35 -~~~ -5296737 CURRENTGOAL IS [3] -~~~ -5296738 UP 11 -5296738 1024 255 -5296936 DOWN 11 -5296936 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5296973 homeCount = 77 -5296973 waitCount = 38 -5296974 ripCount = 33 -5296974 locktype1 = 2 -5296975 locktype2 = 7 -5296975 locktype3 = 3 -5296976 goalCount = 0 -5296976 goalTotal = 30 -5296976 otherCount = 35 -~~~ -5296978 CURRENTGOAL IS [3] -~~~ -5296981 UP 11 -5296981 1024 255 -5300102 DOWN 11 -5300102 0 255 -5300120 UP 11 -5300120 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5300155 homeCount = 77 -5300156 waitCount = 38 -5300156 ripCount = 33 -5300157 locktype1 = 2 -5300157 locktype2 = 7 -5300158 locktype3 = 3 -5300158 goalCount = 0 -5300159 goalTotal = 30 -5300159 otherCount = 35 -~~~ -5300160 CURRENTGOAL IS [3] -~~~ -5302657 DOWN 11 -5302657 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5302699 homeCount = 77 -5302699 waitCount = 38 -5302700 ripCount = 33 -5302700 locktype1 = 2 -5302701 locktype2 = 7 -5302701 locktype3 = 3 -5302702 goalCount = 0 -5302702 goalTotal = 30 -5302703 otherCount = 35 -~~~ -5302704 CURRENTGOAL IS [3] -~~~ -5302808 UP 11 -5302808 1024 255 -5302848 DOWN 11 -5302848 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5302888 homeCount = 77 -5302889 waitCount = 38 -5302889 ripCount = 33 -5302890 locktype1 = 2 -5302890 locktype2 = 7 -5302891 locktype3 = 3 -5302891 goalCount = 0 -5302892 goalTotal = 30 -5302892 otherCount = 35 -~~~ -5302893 CURRENTGOAL IS [3] -~~~ -5306189 UP 8 -5306189 128 255 -~~~ -~~~ -5306730 DOWN 8 -5306730 0 255 -~~~ -~~~ -5306752 0 254 -~~~ -~~~ -5306754 0 252 -~~~ -~~~ -5306756 0 248 -~~~ -~~~ -5306757 0 240 -~~~ -~~~ -5306759 0 224 -~~~ -~~~ -5306761 0 192 -~~~ -~~~ -5306763 0 128 -~~~ -~~~ -5306765 0 0 -~~~ -~~~ -5306767 0 512 -5306768 homeCount = 77 -5306768 waitCount = 38 -5306769 ripCount = 33 -5306769 locktype1 = 2 -5306770 locktype2 = 7 -5306790 locktype3 = 3 -5306791 goalCount = 0 -5306791 goalTotal = 30 -5306792 otherCount = 36 -~~~ -5306792 128 512 -5307532 DOWN 8 -5307532 0 512 -5312695 UP 10 -5312695 waslock = 0 -5312695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5312721 512 16777728 -~~~ -5312871 512 512 -5319453 DOWN 10 -5319453 0 512 -~~~ -~~~ -5319475 0 1536 -~~~ -~~~ -5319477 0 1024 -5319478 homeCount = 78 -5319478 waitCount = 38 -5319479 ripCount = 33 -5319479 locktype1 = 2 -5319480 locktype2 = 7 -5319480 locktype3 = 3 -5319481 goalCount = 0 -5319481 goalTotal = 30 -5319482 otherCount = 36 -~~~ -5319509 UP 10 -5319509 waslock = 0 -5319509 512 1024 -5319535 DOWN 10 -5319535 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -5319565 homeCount = 78 -5319565 waitCount = 38 -5319566 ripCount = 33 -5319566 locktype1 = 2 -5319567 locktype2 = 7 -5319567 locktype3 = 3 -5319568 goalCount = 0 -5319568 goalTotal = 30 -5319569 otherCount = 36 -~~~ -5323431 UP 11 -5323431 1024 1024 -5327431 BEEP1 -5327431 BEEP2 -~~~ -~~~ -~~~ -5327453 1024 33555456 -~~~ -5327603 1024 1024 -5332677 DOWN 11 -5332677 0 1024 -5332695 UP 11 -5332695 1024 1024 -~~~ -~~~ -5332702 1024 0 -~~~ -~~~ -5332704 1024 1 -~~~ -~~~ -5332706 1024 3 -~~~ -~~~ -5332708 1024 7 -~~~ -~~~ -5332709 1024 15 -~~~ -~~~ -5332711 1024 31 -~~~ -~~~ -5332713 1024 63 -~~~ -~~~ -5332715 1024 127 -~~~ -~~~ -5332717 1024 255 -5332718 homeCount = 78 -5332718 waitCount = 38 -5332719 ripCount = 34 -5332719 locktype1 = 2 -5332740 locktype2 = 7 -5332741 locktype3 = 3 -5332741 goalCount = 0 -5332741 goalTotal = 30 -5332742 otherCount = 36 -~~~ -5332743 CURRENTGOAL IS [3] -~~~ -5332814 DOWN 11 -5332814 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5332843 UP 11 -5332842 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -5332848 homeCount = 78 -5332848 waitCount = 38 -5332849 ripCount = 34 -5332849 locktype1 = 2 -5332850 locktype2 = 7 -5332850 locktype3 = 3 -5332851 goalCount = 0 -5332851 goalTotal = 30 -5332852 otherCount = 36 -~~~ -5332853 CURRENTGOAL IS [3] -~~~ -5332941 DOWN 11 -5332941 0 255 -5332961 UP 11 -5332961 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5332978 homeCount = 78 -5332978 waitCount = 38 -5332979 ripCount = 34 -5332979 locktype1 = 2 -5332980 locktype2 = 7 -5332980 locktype3 = 3 -5332981 goalCount = 0 -5332981 goalTotal = 30 -5332982 otherCount = 36 -~~~ -5332983 CURRENTGOAL IS [3] -~~~ -5334881 DOWN 11 -5334881 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5334919 homeCount = 78 -5334919 waitCount = 38 -5334920 ripCount = 34 -5334920 locktype1 = 2 -5334921 locktype2 = 7 -5334921 locktype3 = 3 -5334922 goalCount = 0 -5334922 goalTotal = 30 -5334923 otherCount = 36 -~~~ -5334924 CURRENTGOAL IS [3] -~~~ -5340609 UP 5 -5340608 16 255 -~~~ -~~~ -5340874 DOWN 5 -5340874 0 255 -~~~ -~~~ -5340892 0 254 -~~~ -~~~ -5340894 0 252 -~~~ -~~~ -5340895 0 248 -~~~ -~~~ -5340897 0 240 -~~~ -~~~ -5340899 0 224 -~~~ -~~~ -5340901 0 192 -~~~ -~~~ -5340903 0 128 -~~~ -~~~ -5340904 0 0 -~~~ -~~~ -5340906 0 512 -5340907 homeCount = 78 -5340908 waitCount = 38 -5340908 ripCount = 34 -5340909 locktype1 = 2 -5340909 locktype2 = 7 -5340930 locktype3 = 3 -5340931 goalCount = 0 -5340931 goalTotal = 30 -5340932 otherCount = 37 -~~~ -5345212 UP 10 -5345212 waslock = 0 -5345212 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5345238 512 16777728 -~~~ -5345303 DOWN 10 -5345303 0 16777728 -~~~ -~~~ -5345330 0 16779776 -~~~ -~~~ -5345332 0 16779264 -5345333 homeCount = 79 -5345333 waitCount = 38 -5345334 ripCount = 34 -5345334 locktype1 = 2 -5345335 locktype2 = 7 -5345335 locktype3 = 3 -5345335 goalCount = 0 -5345336 goalTotal = 30 -5345336 otherCount = 37 -~~~ -5345388 0 2048 -5345395 UP 10 -5345395 waslock = 0 -5345395 512 2048 -~~~ -5345443 DOWN 10 -5345443 0 2048 -~~~ -~~~ -~~~ -~~~ -5345465 homeCount = 79 -5345466 waitCount = 38 -5345467 ripCount = 34 -5345467 locktype1 = 2 -5345467 locktype2 = 7 -5345468 locktype3 = 3 -5345468 goalCount = 0 -5345469 goalTotal = 30 -5345469 otherCount = 37 -~~~ -5345470 UP 10 -5345470 waslock = 0 -5345470 512 2048 -~~~ -5345649 DOWN 10 -5345649 0 2048 -~~~ -~~~ -~~~ -~~~ -5345675 homeCount = 79 -5345675 waitCount = 38 -5345676 ripCount = 34 -5345676 locktype1 = 2 -5345677 locktype2 = 7 -5345677 locktype3 = 3 -5345678 goalCount = 0 -5345678 goalTotal = 30 -5345679 otherCount = 37 -~~~ -5345679 UP 10 -5345679 waslock = 0 -5345679 512 2048 -~~~ -5345795 DOWN 10 -5345795 0 2048 -~~~ -~~~ -~~~ -~~~ -5345817 homeCount = 79 -5345818 waitCount = 38 -5345818 ripCount = 34 -5345819 locktype1 = 2 -5345819 locktype2 = 7 -5345819 locktype3 = 3 -5345820 goalCount = 0 -5345820 goalTotal = 30 -5345821 otherCount = 37 -~~~ -5345824 UP 10 -5345825 waslock = 0 -5345824 512 2048 -5345847 DOWN 10 -5345847 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5345864 homeCount = 79 -5345864 waitCount = 38 -5345865 ripCount = 34 -5345865 locktype1 = 2 -5345866 locktype2 = 7 -5345866 locktype3 = 3 -5345867 goalCount = 0 -5345867 goalTotal = 30 -5345868 otherCount = 37 -~~~ -5345956 UP 10 -5345956 waslock = 0 -5345956 512 2048 -5345982 DOWN 10 -5345982 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5346004 UP 10 -5346004 waslock = 0 -5346004 512 2048 -5346006 homeCount = 79 -5346006 waitCount = 38 -5346007 ripCount = 34 -5346007 locktype1 = 2 -5346008 locktype2 = 7 -5346008 locktype3 = 3 -5346009 goalCount = 0 -5346009 goalTotal = 30 -5346010 otherCount = 37 -~~~ -~~~ -5351222 DOWN 10 -5351222 0 2048 -~~~ -~~~ -~~~ -~~~ -5351245 homeCount = 79 -5351246 waitCount = 38 -5351246 ripCount = 34 -5351247 locktype1 = 2 -5351247 locktype2 = 7 -5351247 locktype3 = 3 -5351248 goalCount = 0 -5351248 goalTotal = 30 -5351249 otherCount = 37 -~~~ -5351281 UP 10 -5351281 waslock = 0 -5351281 512 2048 -~~~ -5351364 DOWN 10 -5351364 0 2048 -~~~ -~~~ -~~~ -~~~ -5351388 homeCount = 79 -5351389 waitCount = 38 -5351389 ripCount = 34 -5351390 locktype1 = 2 -5351390 locktype2 = 7 -5351391 locktype3 = 3 -5351391 goalCount = 0 -5351392 goalTotal = 30 -5351392 otherCount = 37 -~~~ -5353583 UP 12 -5353583 2048 2048 -5355776 DOWN 12 -5355776 0 2048 -5355802 UP 12 -5355802 2048 2048 -5355812 DOWN 12 -5355812 0 2048 -5355851 UP 12 -5355851 2048 2048 -5356583 CLICK1 -5356583 CLICK2 -5356595 DOWN 12 -5356595 0 2048 -~~~ -~~~ -~~~ -5356616 0 67110912 -~~~ -5356659 UP 12 -5356659 2048 67110912 -5356766 2048 2048 -~~~ -~~~ -5356769 2048 0 -~~~ -~~~ -5356771 2048 1 -~~~ -~~~ -5356773 2048 3 -~~~ -~~~ -5356774 2048 7 -~~~ -~~~ -5356776 2048 15 -~~~ -~~~ -5356778 2048 31 -~~~ -~~~ -5356780 2048 63 -~~~ -~~~ -5356782 2048 127 -~~~ -~~~ -5356784 2048 255 -5356785 homeCount = 79 -5356785 waitCount = 39 -5356786 ripCount = 34 -5356786 locktype1 = 2 -5356807 locktype2 = 7 -5356808 locktype3 = 3 -5356808 goalCount = 0 -5356809 goalTotal = 30 -5356809 otherCount = 37 -~~~ -5356810 CURRENTGOAL IS [3] -~~~ -5356916 DOWN 12 -5356916 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5356942 UP 12 -5356942 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5356950 homeCount = 79 -5356950 waitCount = 39 -5356951 ripCount = 34 -5356951 locktype1 = 2 -5356952 locktype2 = 7 -5356952 locktype3 = 3 -5356953 goalCount = 0 -5356953 goalTotal = 30 -5356954 otherCount = 37 -~~~ -5356955 CURRENTGOAL IS [3] -~~~ -5362292 DOWN 12 -5362292 0 255 -5362302 UP 12 -5362302 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5362333 homeCount = 79 -5362333 waitCount = 39 -5362334 ripCount = 34 -5362334 locktype1 = 2 -5362335 locktype2 = 7 -5362335 locktype3 = 3 -5362336 goalCount = 0 -5362336 goalTotal = 30 -5362337 otherCount = 37 -~~~ -5362338 CURRENTGOAL IS [3] -~~~ -5365136 DOWN 12 -5365136 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5365170 homeCount = 79 -5365170 waitCount = 39 -5365171 ripCount = 34 -5365171 locktype1 = 2 -5365172 locktype2 = 7 -5365172 locktype3 = 3 -5365173 goalCount = 0 -5365173 goalTotal = 30 -5365174 otherCount = 37 -~~~ -5365175 CURRENTGOAL IS [3] -~~~ -5369259 UP 6 -5369259 32 255 -~~~ -~~~ -5369588 DOWN 6 -5369587 0 255 -~~~ -~~~ -5369606 0 254 -~~~ -~~~ -5369607 0 252 -~~~ -~~~ -5369609 32 248 -~~~ -~~~ -5369611 32 240 -~~~ -~~~ -5369613 32 224 -~~~ -~~~ -5369615 32 192 -~~~ -~~~ -5369616 32 128 -~~~ -~~~ -5369618 32 0 -~~~ -~~~ -5369620 32 512 -5369621 homeCount = 79 -5369622 waitCount = 39 -5369622 ripCount = 34 -5369623 locktype1 = 2 -5369623 locktype2 = 7 -5369644 locktype3 = 3 -5369645 goalCount = 0 -5369645 goalTotal = 30 -5369646 otherCount = 38 -~~~ -5370768 DOWN 6 -5370768 0 512 -5374899 UP 10 -5374899 waslock = 0 -5374899 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5374926 512 16777728 -~~~ -5375076 512 512 -5375078 DOWN 10 -5375077 0 512 -~~~ -~~~ -5375101 0 2560 -~~~ -~~~ -5375103 0 2048 -5375104 homeCount = 80 -5375105 waitCount = 39 -5375105 ripCount = 34 -5375106 locktype1 = 2 -5375106 locktype2 = 7 -5375107 locktype3 = 3 -5375107 goalCount = 0 -5375108 goalTotal = 30 -5375108 otherCount = 38 -~~~ -5375122 UP 10 -5375122 waslock = 0 -5375122 512 2048 -~~~ -5379775 DOWN 10 -5379775 0 2048 -5379790 UP 10 -5379791 waslock = 0 -5379790 512 2048 -~~~ -~~~ -~~~ -~~~ -5379818 homeCount = 80 -5379818 waitCount = 39 -5379819 ripCount = 34 -5379819 locktype1 = 2 -5379820 locktype2 = 7 -5379820 locktype3 = 3 -5379821 goalCount = 0 -5379821 goalTotal = 30 -5379822 otherCount = 38 -~~~ -~~~ -5379874 DOWN 10 -5379874 0 2048 -~~~ -~~~ -~~~ -~~~ -5379897 homeCount = 80 -5379898 waitCount = 39 -5379898 ripCount = 34 -5379899 locktype1 = 2 -5379899 locktype2 = 7 -5379899 locktype3 = 3 -5379900 goalCount = 0 -5379900 goalTotal = 30 -5379901 otherCount = 38 -~~~ -5382027 UP 12 -5382026 2048 2048 -5383448 DOWN 12 -5383447 0 2048 -5383464 UP 12 -5383464 2048 2048 -5384242 DOWN 12 -5384242 0 2048 -5384443 LOCKOUT 3 -~~~ -5384462 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5384468 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5384556 UP 12 -5384556 2048 0 -5384693 DOWN 12 -5384693 0 0 -5384742 UP 12 -5384742 2048 0 -5384902 DOWN 12 -5384902 0 0 -5384936 UP 12 -5384936 2048 0 -5385183 DOWN 12 -5385183 0 0 -5409462 LOCKEND -~~~ -~~~ -~~~ -5409482 0 512 -5421059 UP 10 -5421059 waslock = 0 -5421059 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5421086 512 16777728 -~~~ -5421236 512 512 -5421325 DOWN 10 -5421325 0 512 -5421337 UP 10 -5421337 waslock = 0 -5421337 512 512 -~~~ -~~~ -5421350 512 1536 -~~~ -~~~ -5421352 512 1024 -5421353 homeCount = 81 -5421354 waitCount = 39 -5421354 ripCount = 34 -5421355 locktype1 = 2 -5421355 locktype2 = 7 -5421355 locktype3 = 4 -5421356 goalCount = 0 -5421356 goalTotal = 30 -5421357 otherCount = 38 -~~~ -~~~ -5421379 DOWN 10 -5421379 0 1024 -~~~ -~~~ -~~~ -~~~ -5421398 homeCount = 81 -5421398 waitCount = 39 -5421399 ripCount = 34 -5421399 locktype1 = 2 -5421400 locktype2 = 7 -5421400 locktype3 = 4 -5421401 goalCount = 0 -5421401 goalTotal = 30 -5421402 otherCount = 38 -~~~ -5421457 UP 10 -5421457 waslock = 0 -5421456 512 1024 -~~~ -5424643 DOWN 10 -5424643 0 1024 -~~~ -~~~ -~~~ -~~~ -5424663 homeCount = 81 -5424664 waitCount = 39 -5424664 ripCount = 34 -5424665 locktype1 = 2 -5424665 locktype2 = 7 -5424666 locktype3 = 4 -5424666 goalCount = 0 -5424667 goalTotal = 30 -5424667 otherCount = 38 -~~~ -5424697 UP 10 -5424698 waslock = 0 -5424697 512 1024 -~~~ -5426707 DOWN 10 -5426707 0 1024 -~~~ -~~~ -~~~ -~~~ -5426734 homeCount = 81 -5426734 waitCount = 39 -5426735 ripCount = 34 -5426735 locktype1 = 2 -5426736 locktype2 = 7 -5426736 locktype3 = 4 -5426737 goalCount = 0 -5426737 goalTotal = 30 -5426738 otherCount = 38 -~~~ -5426750 UP 10 -5426750 waslock = 0 -5426750 512 1024 -~~~ -5426812 DOWN 10 -5426812 0 1024 -~~~ -~~~ -~~~ -~~~ -5426833 homeCount = 81 -5426833 waitCount = 39 -5426834 ripCount = 34 -5426834 locktype1 = 2 -5426835 locktype2 = 7 -5426835 locktype3 = 4 -5426836 goalCount = 0 -5426836 goalTotal = 30 -5426837 otherCount = 38 -~~~ -5429056 UP 11 -5429056 1024 1024 -5429109 DOWN 11 -5429109 0 1024 -5429215 UP 11 -5429215 1024 1024 -5433057 BEEP1 -5433057 BEEP2 -~~~ -~~~ -~~~ -5433081 1024 33555456 -~~~ -5433231 1024 1024 -5433241 DOWN 11 -5433241 0 1024 -5433252 UP 11 -5433252 1024 1024 -~~~ -~~~ -5433732 1024 0 -~~~ -~~~ -5433734 1024 1 -~~~ -~~~ -5433736 1024 3 -~~~ -~~~ -5433737 1024 7 -~~~ -~~~ -5433739 1024 15 -~~~ -~~~ -5433741 1024 31 -~~~ -~~~ -5433743 1024 63 -~~~ -~~~ -5433745 1024 127 -~~~ -~~~ -5433746 1024 255 -5433747 homeCount = 81 -5433748 waitCount = 39 -5433749 ripCount = 35 -5433749 locktype1 = 2 -5433770 locktype2 = 7 -5433770 locktype3 = 4 -5433771 goalCount = 0 -5433771 goalTotal = 30 -5433772 otherCount = 38 -~~~ -5433773 CURRENTGOAL IS [3] -~~~ -5439996 DOWN 11 -5439996 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5440032 homeCount = 81 -5440032 waitCount = 39 -5440033 ripCount = 35 -5440033 locktype1 = 2 -5440034 locktype2 = 7 -5440034 locktype3 = 4 -5440035 goalCount = 0 -5440035 goalTotal = 30 -5440035 otherCount = 38 -~~~ -5440037 CURRENTGOAL IS [3] -~~~ -5448817 UP 6 -5448817 32 255 -~~~ -~~~ -5449550 DOWN 6 -5449550 0 255 -~~~ -~~~ -5449577 0 254 -~~~ -~~~ -5449579 0 252 -~~~ -~~~ -5449580 0 248 -~~~ -~~~ -5449582 0 240 -~~~ -~~~ -5449584 0 224 -~~~ -~~~ -5449586 0 192 -~~~ -~~~ -5449588 0 128 -~~~ -~~~ -5449589 0 0 -~~~ -~~~ -5449591 0 512 -5449592 homeCount = 81 -5449593 waitCount = 39 -5449593 ripCount = 35 -5449594 locktype1 = 2 -5449594 locktype2 = 7 -5449615 locktype3 = 4 -5449616 goalCount = 0 -5449616 goalTotal = 30 -5449617 otherCount = 39 -~~~ -5453833 UP 10 -5453833 waslock = 0 -5453833 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5453864 512 16777728 -~~~ -5454014 512 512 -5454054 DOWN 10 -5454054 0 512 -5454062 UP 10 -5454062 waslock = 0 -5454062 512 512 -~~~ -~~~ -5454080 512 2560 -~~~ -~~~ -5454082 512 2048 -5454083 homeCount = 82 -5454084 waitCount = 39 -5454084 ripCount = 35 -5454085 locktype1 = 2 -5454085 locktype2 = 7 -5454086 locktype3 = 4 -5454086 goalCount = 0 -5454087 goalTotal = 30 -5454087 otherCount = 39 -~~~ -~~~ -5454109 DOWN 10 -5454109 0 2048 -~~~ -~~~ -~~~ -~~~ -5454135 homeCount = 82 -5454135 waitCount = 39 -5454136 ripCount = 35 -5454136 locktype1 = 2 -5454137 locktype2 = 7 -5454137 locktype3 = 4 -5454138 goalCount = 0 -5454138 goalTotal = 30 -5454139 otherCount = 39 -~~~ -5454155 UP 10 -5454155 waslock = 0 -5454155 512 2048 -~~~ -5459304 DOWN 10 -5459304 0 2048 -~~~ -~~~ -~~~ -~~~ -5459331 homeCount = 82 -5459331 waitCount = 39 -5459332 ripCount = 35 -5459332 locktype1 = 2 -5459333 locktype2 = 7 -5459333 locktype3 = 4 -5459334 goalCount = 0 -5459334 goalTotal = 30 -5459335 otherCount = 39 -~~~ -5461800 UP 12 -5461800 2048 2048 -5464976 DOWN 12 -5464975 0 2048 -5464998 UP 12 -5464998 2048 2048 -5465058 DOWN 12 -5465058 0 2048 -5465105 UP 12 -5465105 2048 2048 -5465228 DOWN 12 -5465228 0 2048 -5465245 UP 12 -5465245 2048 2048 -5467049 DOWN 12 -5467049 0 2048 -5467092 UP 12 -5467092 2048 2048 -5467349 DOWN 12 -5467349 0 2048 -5467359 UP 12 -5467359 2048 2048 -5468800 CLICK1 -5468800 CLICK2 -~~~ -~~~ -~~~ -5468821 2048 67110912 -~~~ -5468971 2048 2048 -5477415 DOWN 12 -5477415 0 2048 -~~~ -~~~ -5477438 0 0 -~~~ -~~~ -5477440 0 1 -~~~ -~~~ -5477442 0 3 -~~~ -~~~ -5477444 0 7 -~~~ -~~~ -5477446 0 15 -~~~ -~~~ -5477447 0 31 -~~~ -~~~ -5477449 0 63 -~~~ -~~~ -5477451 0 127 -~~~ -~~~ -5477453 0 255 -5477454 homeCount = 82 -5477454 waitCount = 40 -5477455 ripCount = 35 -5477455 locktype1 = 2 -5477456 locktype2 = 7 -5477456 locktype3 = 4 -5477477 goalCount = 0 -5477478 goalTotal = 30 -5477478 otherCount = 39 -~~~ -5477479 CURRENTGOAL IS [3] -~~~ -5481136 UP 3 -5481136 4 255 -~~~ -~~~ -5481155 outer reward -~~~ -5481155 4 262399 -~~~ -~~~ -5481605 4 255 -5487589 DOWN 3 -5487589 0 255 -5487610 4 255 -~~~ -~~~ -5487626 4 254 -~~~ -~~~ -5487628 4 252 -~~~ -~~~ -5487630 4 248 -~~~ -~~~ -5487631 4 240 -~~~ -~~~ -5487633 4 224 -~~~ -~~~ -5487635 4 192 -~~~ -~~~ -5487637 4 128 -~~~ -~~~ -5487639 4 0 -~~~ -~~~ -5487641 4 512 -5487642 homeCount = 82 -5487642 waitCount = 40 -5487643 ripCount = 35 -5487643 locktype1 = 2 -5487644 locktype2 = 7 -5487665 locktype3 = 4 -5487665 goalCount = 1 -5487666 goalTotal = 31 -5487666 otherCount = 39 -~~~ -5487708 DOWN 3 -5487708 0 512 -5487767 4 512 -5487817 DOWN 3 -5487817 0 512 -5492910 UP 10 -5492910 waslock = 0 -5492910 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5492939 512 16777728 -~~~ -5493089 512 512 -5493153 DOWN 10 -5493153 0 512 -~~~ -~~~ -5493174 0 1536 -~~~ -~~~ -5493176 0 1024 -5493177 homeCount = 83 -5493178 waitCount = 40 -5493178 ripCount = 35 -5493179 locktype1 = 2 -5493179 locktype2 = 7 -5493180 locktype3 = 4 -5493180 goalCount = 1 -5493181 goalTotal = 31 -5493181 otherCount = 39 -~~~ -5493182 UP 10 -5493203 waslock = 0 -5493182 512 1024 -~~~ -5496843 DOWN 10 -5496843 0 1024 -~~~ -~~~ -~~~ -~~~ -5496867 homeCount = 83 -5496867 waitCount = 40 -5496868 ripCount = 35 -5496868 locktype1 = 2 -5496869 locktype2 = 7 -5496869 locktype3 = 4 -5496870 goalCount = 1 -5496870 goalTotal = 31 -5496870 otherCount = 39 -~~~ -5496907 UP 10 -5496907 waslock = 0 -5496907 512 1024 -~~~ -5496966 DOWN 10 -5496966 0 1024 -~~~ -~~~ -~~~ -~~~ -5496990 homeCount = 83 -5496990 waitCount = 40 -5496991 ripCount = 35 -5496991 locktype1 = 2 -5496992 locktype2 = 7 -5496992 locktype3 = 4 -5496993 goalCount = 1 -5496993 goalTotal = 31 -5496994 otherCount = 39 -~~~ -5499060 UP 11 -5499060 1024 1024 -5502861 DOWN 11 -5502861 0 1024 -5502900 UP 11 -5502900 1024 1024 -5503033 DOWN 11 -5503033 0 1024 -5503058 UP 11 -5503058 1024 1024 -5503803 DOWN 11 -5503803 0 1024 -5503839 UP 11 -5503839 1024 1024 -5504854 DOWN 11 -5504854 0 1024 -5504881 UP 11 -5504881 1024 1024 -5506061 BEEP1 -5506061 BEEP2 -~~~ -~~~ -~~~ -5506088 1024 33555456 -~~~ -5506238 1024 1024 -5512469 DOWN 11 -5512469 0 1024 -~~~ -~~~ -5512494 0 0 -~~~ -~~~ -5512496 0 1 -~~~ -~~~ -5512497 0 3 -~~~ -~~~ -5512499 0 7 -~~~ -~~~ -5512501 0 15 -~~~ -~~~ -5512503 0 31 -~~~ -~~~ -5512505 0 63 -~~~ -~~~ -5512507 0 127 -~~~ -~~~ -5512508 0 255 -5512509 homeCount = 83 -5512510 waitCount = 40 -5512510 ripCount = 36 -5512511 locktype1 = 2 -5512511 locktype2 = 7 -5512532 locktype3 = 4 -5512533 goalCount = 1 -5512533 goalTotal = 31 -5512534 otherCount = 39 -~~~ -5512535 CURRENTGOAL IS [3] -~~~ -5512585 UP 11 -5512585 1024 255 -5512624 DOWN 11 -5512624 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5512659 homeCount = 83 -5512660 waitCount = 40 -5512660 ripCount = 36 -5512661 locktype1 = 2 -5512661 locktype2 = 7 -5512662 locktype3 = 4 -5512662 goalCount = 1 -5512663 goalTotal = 31 -5512663 otherCount = 39 -~~~ -5512664 CURRENTGOAL IS [3] -~~~ -5512721 UP 11 -5512721 1024 255 -5512757 DOWN 11 -5512757 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5512790 homeCount = 83 -5512791 waitCount = 40 -5512791 ripCount = 36 -5512792 locktype1 = 2 -5512792 locktype2 = 7 -5512793 locktype3 = 4 -5512793 goalCount = 1 -5512794 goalTotal = 31 -5512794 otherCount = 39 -~~~ -5512795 CURRENTGOAL IS [3] -~~~ -5512798 UP 11 -5512798 1024 255 -5515026 DOWN 11 -5515026 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5515062 homeCount = 83 -5515062 waitCount = 40 -5515063 ripCount = 36 -5515063 locktype1 = 2 -5515064 locktype2 = 7 -5515064 locktype3 = 4 -5515065 goalCount = 1 -5515065 goalTotal = 31 -5515066 otherCount = 39 -~~~ -5515067 CURRENTGOAL IS [3] -~~~ -5515067 UP 11 -5515067 1024 255 -5515120 DOWN 11 -5515120 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5515163 homeCount = 83 -5515163 waitCount = 40 -5515164 ripCount = 36 -5515164 locktype1 = 2 -5515165 locktype2 = 7 -5515165 locktype3 = 4 -5515166 goalCount = 1 -5515166 goalTotal = 31 -5515167 otherCount = 39 -~~~ -5515168 CURRENTGOAL IS [3] -~~~ -5522004 UP 7 -5522004 64 255 -~~~ -~~~ -5523259 DOWN 7 -5523259 0 255 -~~~ -~~~ -5523277 0 254 -~~~ -~~~ -5523278 0 252 -~~~ -~~~ -5523280 0 248 -~~~ -~~~ -5523282 0 240 -~~~ -~~~ -5523284 0 224 -~~~ -~~~ -5523286 0 192 -~~~ -~~~ -5523288 0 128 -~~~ -~~~ -5523289 0 0 -~~~ -~~~ -5523291 0 512 -5523292 homeCount = 83 -5523293 waitCount = 40 -5523293 ripCount = 36 -5523294 locktype1 = 2 -5523294 locktype2 = 7 -5523315 locktype3 = 4 -5523316 goalCount = 1 -5523316 goalTotal = 31 -5523317 otherCount = 40 -~~~ -5529655 UP 10 -5529655 waslock = 0 -5529655 512 512 -~~~ -5529677 DOWN 10 -5529677 0 512 -~~~ -~~~ -~~~ -~~~ -5529683 0 16777728 -~~~ -5529696 UP 10 -5529697 waslock = 0 -5529696 512 16777728 -~~~ -~~~ -5529707 512 16779776 -~~~ -~~~ -5529709 512 16779264 -5529710 homeCount = 84 -5529710 waitCount = 40 -5529711 ripCount = 36 -5529711 locktype1 = 2 -5529712 locktype2 = 7 -5529712 locktype3 = 4 -5529713 goalCount = 1 -5529713 goalTotal = 31 -5529713 otherCount = 40 -~~~ -~~~ -5529833 512 2048 -5535219 DOWN 10 -5535219 0 2048 -~~~ -~~~ -~~~ -~~~ -5535242 homeCount = 84 -5535243 waitCount = 40 -5535243 ripCount = 36 -5535244 locktype1 = 2 -5535244 locktype2 = 7 -5535244 locktype3 = 4 -5535245 goalCount = 1 -5535245 goalTotal = 31 -5535246 otherCount = 40 -~~~ -5538565 UP 12 -5538565 2048 2048 -5544549 DOWN 12 -5544549 0 2048 -5544570 UP 12 -5544570 2048 2048 -5545566 CLICK1 -5545566 CLICK2 -~~~ -~~~ -~~~ -5545592 2048 67110912 -~~~ -5545742 2048 2048 -5550885 DOWN 12 -5550885 0 2048 -~~~ -~~~ -5550911 0 0 -~~~ -~~~ -5550912 0 1 -~~~ -~~~ -5550914 0 3 -~~~ -~~~ -5550916 0 7 -~~~ -~~~ -5550918 0 15 -~~~ -~~~ -5550920 0 31 -~~~ -~~~ -5550922 0 63 -~~~ -~~~ -5550923 0 127 -~~~ -~~~ -5550925 0 255 -5550926 homeCount = 84 -5550927 waitCount = 41 -5550927 ripCount = 36 -5550928 locktype1 = 2 -5550928 locktype2 = 7 -5550929 locktype3 = 4 -5550950 goalCount = 1 -5550950 goalTotal = 31 -5550951 otherCount = 40 -~~~ -5550952 CURRENTGOAL IS [3] -~~~ -5550952 UP 12 -5550952 2048 255 -5551037 DOWN 12 -5551037 0 255 -~~~ -~~~ -~~~ -5551057 UP 12 -5551057 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5551071 homeCount = 84 -5551072 waitCount = 41 -5551072 ripCount = 36 -5551073 locktype1 = 2 -5551073 locktype2 = 7 -5551074 locktype3 = 4 -5551074 goalCount = 1 -5551075 goalTotal = 31 -5551075 otherCount = 40 -~~~ -5551076 CURRENTGOAL IS [3] -~~~ -5551164 DOWN 12 -5551164 0 255 -5551176 UP 12 -5551176 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5551213 homeCount = 84 -5551214 waitCount = 41 -5551214 ripCount = 36 -5551215 locktype1 = 2 -5551215 locktype2 = 7 -5551216 locktype3 = 4 -5551216 goalCount = 1 -5551217 goalTotal = 31 -5551217 otherCount = 40 -~~~ -5551218 CURRENTGOAL IS [3] -~~~ -5554861 DOWN 12 -5554861 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5554903 homeCount = 84 -5554904 waitCount = 41 -5554904 ripCount = 36 -5554905 locktype1 = 2 -5554905 locktype2 = 7 -5554906 locktype3 = 4 -5554906 goalCount = 1 -5554907 goalTotal = 31 -5554907 otherCount = 40 -~~~ -5554908 CURRENTGOAL IS [3] -~~~ -5559663 UP 2 -5559663 2 255 -~~~ -~~~ -5561437 DOWN 2 -5561437 0 255 -~~~ -~~~ -5561457 0 254 -~~~ -~~~ -5561459 0 252 -~~~ -~~~ -5561460 0 248 -~~~ -~~~ -5561462 0 240 -~~~ -~~~ -5561464 0 224 -~~~ -~~~ -5561466 0 192 -~~~ -~~~ -5561468 0 128 -~~~ -~~~ -5561469 0 0 -~~~ -~~~ -5561471 0 512 -5561472 homeCount = 84 -5561473 waitCount = 41 -5561473 ripCount = 36 -5561474 locktype1 = 2 -5561474 locktype2 = 7 -5561495 locktype3 = 4 -5561496 goalCount = 1 -5561496 goalTotal = 31 -5561497 otherCount = 41 -~~~ -5564965 UP 10 -5564965 waslock = 0 -5564965 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5564994 512 16777728 -~~~ -5565007 DOWN 10 -5565007 0 16777728 -~~~ -~~~ -5565037 0 16778752 -~~~ -~~~ -5565039 0 16778240 -5565040 homeCount = 85 -5565040 waitCount = 41 -5565041 ripCount = 36 -5565041 locktype1 = 2 -5565042 locktype2 = 7 -5565042 locktype3 = 4 -5565043 goalCount = 1 -5565043 goalTotal = 31 -5565044 otherCount = 41 -~~~ -5565065 UP 10 -5565065 waslock = 0 -5565065 512 16778240 -~~~ -5565144 512 1024 -5565160 DOWN 10 -5565160 0 1024 -5565173 UP 10 -5565173 waslock = 0 -5565173 512 1024 -~~~ -~~~ -~~~ -~~~ -5565194 homeCount = 85 -5565194 waitCount = 41 -5565195 ripCount = 36 -5565195 locktype1 = 2 -5565196 locktype2 = 7 -5565196 locktype3 = 4 -5565196 goalCount = 1 -5565197 goalTotal = 31 -5565197 otherCount = 41 -~~~ -~~~ -5569406 DOWN 10 -5569406 0 1024 -~~~ -~~~ -~~~ -~~~ -5569433 homeCount = 85 -5569433 waitCount = 41 -5569434 ripCount = 36 -5569434 locktype1 = 2 -5569435 locktype2 = 7 -5569435 locktype3 = 4 -5569435 goalCount = 1 -5569436 goalTotal = 31 -5569436 otherCount = 41 -~~~ -5569465 UP 10 -5569466 waslock = 0 -5569465 512 1024 -5569491 DOWN 10 -5569491 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -5569518 homeCount = 85 -5569518 waitCount = 41 -5569519 ripCount = 36 -5569519 locktype1 = 2 -5569520 locktype2 = 7 -5569520 locktype3 = 4 -5569521 goalCount = 1 -5569521 goalTotal = 31 -5569522 otherCount = 41 -~~~ -5571097 UP 11 -5571097 1024 1024 -5574495 DOWN 11 -5574495 0 1024 -5574542 UP 11 -5574542 1024 1024 -5574781 DOWN 11 -5574781 0 1024 -5574802 UP 11 -5574802 1024 1024 -5576598 BEEP1 -5576598 BEEP2 -~~~ -~~~ -~~~ -5576622 1024 33555456 -~~~ -5576771 1024 1024 -5582951 DOWN 11 -5582951 0 1024 -~~~ -~~~ -5582969 0 0 -~~~ -~~~ -5582971 0 1 -~~~ -~~~ -5582973 0 3 -~~~ -~~~ -5582974 0 7 -~~~ -~~~ -5582976 0 15 -~~~ -~~~ -5582978 0 31 -~~~ -~~~ -5582980 0 63 -~~~ -~~~ -5582982 0 127 -~~~ -~~~ -5582984 0 255 -5582985 homeCount = 85 -5582985 waitCount = 41 -5582986 ripCount = 37 -5582986 locktype1 = 2 -5582987 locktype2 = 7 -5582987 locktype3 = 4 -5583008 goalCount = 1 -5583008 goalTotal = 31 -5583009 otherCount = 41 -~~~ -5583010 CURRENTGOAL IS [3] -~~~ -5583073 UP 11 -5583073 1024 255 -5583104 DOWN 11 -5583104 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5583138 homeCount = 85 -5583138 waitCount = 41 -5583139 ripCount = 37 -5583139 locktype1 = 2 -5583140 locktype2 = 7 -5583140 locktype3 = 4 -5583141 goalCount = 1 -5583141 goalTotal = 31 -5583142 otherCount = 41 -~~~ -5583143 CURRENTGOAL IS [3] -~~~ -5583208 UP 11 -5583208 1024 255 -5583225 DOWN 11 -5583225 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5583261 homeCount = 85 -5583262 waitCount = 41 -5583262 ripCount = 37 -5583263 locktype1 = 2 -5583263 locktype2 = 7 -5583264 locktype3 = 4 -5583264 goalCount = 1 -5583265 goalTotal = 31 -5583265 otherCount = 41 -~~~ -5583266 CURRENTGOAL IS [3] -~~~ -5583336 UP 11 -5583336 1024 255 -5585553 DOWN 11 -5585553 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5585591 homeCount = 85 -5585592 waitCount = 41 -5585592 ripCount = 37 -5585593 locktype1 = 2 -5585593 locktype2 = 7 -5585594 locktype3 = 4 -5585594 goalCount = 1 -5585595 goalTotal = 31 -5585595 otherCount = 41 -~~~ -5585596 CURRENTGOAL IS [3] -~~~ -5585606 UP 11 -5585606 1024 255 -5585621 DOWN 11 -5585621 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5585656 homeCount = 85 -5585656 waitCount = 41 -5585657 ripCount = 37 -5585657 locktype1 = 2 -5585658 locktype2 = 7 -5585658 locktype3 = 4 -5585659 goalCount = 1 -5585659 goalTotal = 31 -5585660 otherCount = 41 -~~~ -5585661 CURRENTGOAL IS [3] -~~~ -5589893 UP 4 -5589893 8 255 -~~~ -~~~ -5590508 DOWN 4 -5590508 0 255 -~~~ -~~~ -5590526 0 254 -~~~ -~~~ -5590528 0 252 -~~~ -~~~ -5590530 0 248 -~~~ -~~~ -5590532 0 240 -~~~ -~~~ -5590533 0 224 -~~~ -~~~ -5590535 0 192 -~~~ -~~~ -5590537 0 128 -~~~ -~~~ -5590539 0 0 -~~~ -~~~ -5590541 0 512 -5590542 homeCount = 85 -5590542 waitCount = 41 -5590543 ripCount = 37 -5590543 locktype1 = 2 -5590544 locktype2 = 7 -5590565 locktype3 = 4 -5590565 goalCount = 1 -5590566 goalTotal = 31 -5590566 otherCount = 42 -~~~ -5590567 8 512 -5590669 DOWN 4 -5590669 0 512 -5590754 8 512 -5590937 DOWN 4 -5590937 0 512 -5595749 UP 10 -5595749 waslock = 0 -5595749 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5595775 512 16777728 -~~~ -5595925 512 512 -5595965 DOWN 10 -5595965 0 512 -~~~ -~~~ -5595990 0 2560 -~~~ -5595992 UP 10 -5595992 waslock = 0 -5595992 512 2560 -~~~ -5595994 homeCount = 86 -5595994 waitCount = 41 -5595995 ripCount = 37 -5595995 locktype1 = 2 -5595996 locktype2 = 7 -5595996 locktype3 = 4 -5595997 goalCount = 1 -5595997 goalTotal = 31 -5596018 otherCount = 42 -~~~ -5596019 512 2048 -~~~ -5601517 DOWN 10 -5601517 0 2048 -~~~ -~~~ -~~~ -~~~ -5601544 homeCount = 86 -5601544 waitCount = 41 -5601545 ripCount = 37 -5601545 locktype1 = 2 -5601546 locktype2 = 7 -5601546 locktype3 = 4 -5601547 goalCount = 1 -5601547 goalTotal = 31 -5601548 otherCount = 42 -~~~ -5601560 UP 10 -5601560 waslock = 0 -5601560 512 2048 -~~~ -5601601 DOWN 10 -5601601 0 2048 -~~~ -~~~ -~~~ -~~~ -5601625 homeCount = 86 -5601625 waitCount = 41 -5601626 ripCount = 37 -5601626 locktype1 = 2 -5601627 locktype2 = 7 -5601627 locktype3 = 4 -5601628 goalCount = 1 -5601628 goalTotal = 31 -5601629 otherCount = 42 -~~~ -5603350 UP 12 -5603350 2048 2048 -5607351 CLICK1 -5607351 CLICK2 -~~~ -~~~ -~~~ -5607373 2048 67110912 -~~~ -5607523 2048 2048 -5613771 DOWN 12 -5613771 0 2048 -~~~ -~~~ -5613791 0 0 -~~~ -~~~ -5613793 0 1 -~~~ -~~~ -5613794 0 3 -~~~ -~~~ -5613796 0 7 -~~~ -~~~ -5613798 0 15 -~~~ -~~~ -5613800 0 31 -~~~ -~~~ -5613802 0 63 -~~~ -~~~ -5613803 0 127 -~~~ -~~~ -5613805 0 255 -5613806 homeCount = 86 -5613807 waitCount = 42 -5613807 ripCount = 37 -5613808 locktype1 = 2 -5613808 locktype2 = 7 -5613829 locktype3 = 4 -5613830 goalCount = 1 -5613830 goalTotal = 31 -5613831 otherCount = 42 -~~~ -5613832 CURRENTGOAL IS [3] -~~~ -5613832 UP 12 -5613832 2048 255 -5613856 DOWN 12 -5613856 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5613886 homeCount = 86 -5613886 waitCount = 42 -5613887 ripCount = 37 -5613887 locktype1 = 2 -5613888 locktype2 = 7 -5613888 locktype3 = 4 -5613889 goalCount = 1 -5613889 goalTotal = 31 -5613890 otherCount = 42 -~~~ -5613891 CURRENTGOAL IS [3] -~~~ -5613970 UP 12 -5613970 2048 255 -5613993 DOWN 12 -5613993 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5614033 homeCount = 86 -5614034 waitCount = 42 -5614034 ripCount = 37 -5614035 locktype1 = 2 -5614035 locktype2 = 7 -5614036 locktype3 = 4 -5614036 goalCount = 1 -5614037 goalTotal = 31 -5614037 otherCount = 42 -~~~ -5614038 CURRENTGOAL IS [3] -~~~ -5614039 UP 12 -5614039 2048 255 -5614423 DOWN 12 -5614423 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5614462 homeCount = 86 -5614463 waitCount = 42 -5614463 ripCount = 37 -5614464 locktype1 = 2 -5614464 locktype2 = 7 -5614465 locktype3 = 4 -5614465 goalCount = 1 -5614466 goalTotal = 31 -5614466 otherCount = 42 -~~~ -5614467 CURRENTGOAL IS [3] -~~~ -5617914 UP 1 -5617914 1 255 -~~~ -~~~ -5619242 DOWN 1 -5619242 0 255 -~~~ -~~~ -5619266 0 254 -~~~ -~~~ -5619268 0 252 -~~~ -~~~ -5619270 0 248 -~~~ -~~~ -5619271 0 240 -~~~ -~~~ -5619273 0 224 -~~~ -~~~ -5619275 0 192 -~~~ -~~~ -5619277 0 128 -~~~ -~~~ -5619279 0 0 -~~~ -~~~ -5619281 0 512 -5619282 homeCount = 86 -5619282 waitCount = 42 -5619282 ripCount = 37 -5619283 locktype1 = 2 -5619283 locktype2 = 7 -5619305 locktype3 = 4 -5619305 goalCount = 1 -5619305 goalTotal = 31 -5619306 otherCount = 43 -~~~ -5623329 UP 10 -5623329 waslock = 0 -5623329 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5623362 512 16777728 -~~~ -5623512 512 512 -5623523 DOWN 10 -5623523 0 512 -~~~ -~~~ -5623537 0 2560 -~~~ -~~~ -5623539 0 2048 -5623540 homeCount = 87 -5623540 waitCount = 42 -5623541 ripCount = 37 -5623541 locktype1 = 2 -5623542 locktype2 = 7 -5623542 locktype3 = 4 -5623543 goalCount = 1 -5623543 goalTotal = 31 -5623544 otherCount = 43 -~~~ -5623544 UP 10 -5623565 waslock = 0 -5623544 512 2048 -~~~ -5623698 DOWN 10 -5623698 0 2048 -5623712 UP 10 -5623712 waslock = 0 -5623712 512 2048 -~~~ -~~~ -~~~ -~~~ -5623721 homeCount = 87 -5623722 waitCount = 42 -5623722 ripCount = 37 -5623723 locktype1 = 2 -5623723 locktype2 = 7 -5623723 locktype3 = 4 -5623724 goalCount = 1 -5623724 goalTotal = 31 -5623725 otherCount = 43 -~~~ -~~~ -5627894 DOWN 10 -5627894 0 2048 -~~~ -~~~ -~~~ -~~~ -5627923 homeCount = 87 -5627923 waitCount = 42 -5627924 ripCount = 37 -5627924 locktype1 = 2 -5627925 locktype2 = 7 -5627925 locktype3 = 4 -5627926 goalCount = 1 -5627926 goalTotal = 31 -5627927 otherCount = 43 -~~~ -5629774 UP 12 -5629774 2048 2048 -5635275 CLICK1 -5635275 CLICK2 -~~~ -~~~ -~~~ -5635302 2048 67110912 -~~~ -5635452 2048 2048 -5641984 DOWN 12 -5641984 0 2048 -5642006 UP 12 -5642006 2048 2048 -~~~ -~~~ -5642011 2048 0 -~~~ -~~~ -5642013 2048 1 -~~~ -~~~ -5642015 2048 3 -~~~ -~~~ -5642016 2048 7 -~~~ -~~~ -5642018 2048 15 -~~~ -~~~ -5642020 2048 31 -~~~ -~~~ -5642022 2048 63 -~~~ -~~~ -5642024 2048 127 -~~~ -~~~ -5642026 2048 255 -5642027 homeCount = 87 -5642027 waitCount = 43 -5642028 ripCount = 37 -5642028 locktype1 = 2 -5642049 locktype2 = 7 -5642049 locktype3 = 4 -5642050 goalCount = 1 -5642050 goalTotal = 31 -5642051 otherCount = 43 -~~~ -5642052 CURRENTGOAL IS [3] -~~~ -5642075 DOWN 12 -5642075 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5642117 homeCount = 87 -5642117 waitCount = 43 -5642118 ripCount = 37 -5642118 locktype1 = 2 -5642119 locktype2 = 7 -5642119 locktype3 = 4 -5642120 goalCount = 1 -5642120 goalTotal = 31 -5642121 otherCount = 43 -~~~ -5642122 CURRENTGOAL IS [3] -~~~ -5647230 UP 2 -5647229 2 255 -~~~ -~~~ -5647953 DOWN 2 -5647953 0 255 -~~~ -~~~ -5647972 0 254 -~~~ -~~~ -5647974 0 252 -~~~ -~~~ -5647976 0 248 -~~~ -~~~ -5647977 0 240 -~~~ -~~~ -5647979 0 224 -~~~ -~~~ -5647981 0 192 -~~~ -~~~ -5647983 0 128 -~~~ -~~~ -5647985 0 0 -~~~ -~~~ -5647987 0 512 -5647988 homeCount = 87 -5647988 waitCount = 43 -5647989 ripCount = 37 -5647989 locktype1 = 2 -5647990 locktype2 = 7 -5648010 locktype3 = 4 -5648011 goalCount = 1 -5648011 goalTotal = 31 -5648012 otherCount = 44 -~~~ -5648216 2 512 -5648546 DOWN 2 -5648546 0 512 -5648670 2 512 -5648920 DOWN 2 -5648920 0 512 -5652561 UP 10 -5652561 waslock = 0 -5652561 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5652587 512 16777728 -~~~ -5652737 512 512 -5657217 DOWN 10 -5657217 0 512 -5657227 UP 10 -5657227 waslock = 0 -5657227 512 512 -~~~ -~~~ -5657243 512 2560 -~~~ -~~~ -5657245 512 2048 -5657246 homeCount = 88 -5657247 waitCount = 43 -5657247 ripCount = 37 -5657248 locktype1 = 2 -5657248 locktype2 = 7 -5657248 locktype3 = 4 -5657249 goalCount = 1 -5657249 goalTotal = 31 -5657250 otherCount = 44 -~~~ -~~~ -5657312 DOWN 10 -5657312 0 2048 -~~~ -~~~ -~~~ -~~~ -5657336 homeCount = 88 -5657336 waitCount = 43 -5657337 ripCount = 37 -5657337 locktype1 = 2 -5657338 locktype2 = 7 -5657338 locktype3 = 4 -5657339 goalCount = 1 -5657339 goalTotal = 31 -5657340 otherCount = 44 -~~~ -5659131 UP 12 -5659131 2048 2048 -5662533 DOWN 12 -5662533 0 2048 -5662574 UP 12 -5662574 2048 2048 -5662705 DOWN 12 -5662705 0 2048 -5662761 UP 12 -5662761 2048 2048 -5663131 CLICK1 -5663131 CLICK2 -~~~ -~~~ -~~~ -5663154 2048 67110912 -~~~ -5663304 2048 2048 -5670561 DOWN 12 -5670561 0 2048 -~~~ -~~~ -5670583 0 0 -~~~ -~~~ -5670585 0 1 -~~~ -~~~ -5670587 0 3 -~~~ -~~~ -5670589 0 7 -~~~ -~~~ -5670591 0 15 -~~~ -~~~ -5670592 0 31 -~~~ -~~~ -5670594 0 63 -~~~ -~~~ -5670596 0 127 -~~~ -~~~ -5670598 0 255 -5670599 homeCount = 88 -5670599 waitCount = 44 -5670600 ripCount = 37 -5670600 locktype1 = 2 -5670601 locktype2 = 7 -5670601 locktype3 = 4 -5670622 goalCount = 1 -5670623 goalTotal = 31 -5670623 otherCount = 44 -~~~ -5670624 CURRENTGOAL IS [3] -~~~ -5670625 UP 12 -5670625 2048 255 -5670656 DOWN 12 -5670656 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5670690 homeCount = 88 -5670691 waitCount = 44 -5670691 ripCount = 37 -5670692 locktype1 = 2 -5670692 locktype2 = 7 -5670693 locktype3 = 4 -5670693 goalCount = 1 -5670694 goalTotal = 31 -5670694 otherCount = 44 -~~~ -5670695 CURRENTGOAL IS [3] -~~~ -5677942 UP 2 -5677942 2 255 -~~~ -~~~ -5678387 DOWN 2 -5678387 0 255 -~~~ -~~~ -5678415 0 254 -~~~ -~~~ -5678417 0 252 -~~~ -~~~ -5678419 0 248 -~~~ -~~~ -5678420 0 240 -~~~ -~~~ -5678422 0 224 -~~~ -~~~ -5678424 0 192 -~~~ -~~~ -5678426 0 128 -~~~ -~~~ -5678428 0 0 -~~~ -~~~ -5678430 0 512 -5678431 homeCount = 88 -5678431 waitCount = 44 -5678432 ripCount = 37 -5678432 locktype1 = 2 -5678433 locktype2 = 7 -5678454 locktype3 = 4 -5678454 goalCount = 1 -5678455 goalTotal = 31 -5678455 otherCount = 45 -~~~ -5681630 UP 10 -5681630 waslock = 0 -5681630 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5681661 512 16777728 -~~~ -5681811 512 512 -5686735 DOWN 10 -5686735 0 512 -~~~ -~~~ -5686755 0 1536 -~~~ -~~~ -5686757 0 1024 -5686758 homeCount = 89 -5686759 waitCount = 44 -5686759 ripCount = 37 -5686760 locktype1 = 2 -5686760 locktype2 = 7 -5686761 locktype3 = 4 -5686761 goalCount = 1 -5686761 goalTotal = 31 -5686762 otherCount = 45 -~~~ -5688438 UP 11 -5688438 1024 1024 -5691438 BEEP1 -5691438 BEEP2 -~~~ -~~~ -~~~ -5691457 1024 33555456 -~~~ -5691544 DOWN 11 -5691544 0 33555456 -5691547 UP 11 -5691547 1024 33555456 -5691607 1024 1024 -~~~ -~~~ -5692129 1024 0 -~~~ -~~~ -5692131 1024 1 -~~~ -~~~ -5692133 1024 3 -~~~ -~~~ -5692134 1024 7 -~~~ -~~~ -5692136 1024 15 -~~~ -~~~ -5692138 1024 31 -~~~ -~~~ -5692140 1024 63 -~~~ -~~~ -5692142 1024 127 -~~~ -~~~ -5692144 1024 255 -5692145 homeCount = 89 -5692145 waitCount = 44 -5692146 ripCount = 38 -5692146 locktype1 = 2 -5692167 locktype2 = 7 -5692168 locktype3 = 4 -5692168 goalCount = 1 -5692169 goalTotal = 31 -5692169 otherCount = 45 -~~~ -5692170 CURRENTGOAL IS [3] -~~~ -5697547 DOWN 11 -5697547 0 255 -5697564 UP 11 -5697564 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697582 homeCount = 89 -5697583 waitCount = 44 -5697583 ripCount = 38 -5697584 locktype1 = 2 -5697584 locktype2 = 7 -5697585 locktype3 = 4 -5697585 goalCount = 1 -5697586 goalTotal = 31 -5697586 otherCount = 45 -~~~ -5697587 CURRENTGOAL IS [3] -~~~ -5697675 DOWN 11 -5697675 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697707 UP 11 -5697707 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -5697712 homeCount = 89 -5697713 waitCount = 44 -5697713 ripCount = 38 -5697714 locktype1 = 2 -5697714 locktype2 = 7 -5697715 locktype3 = 4 -5697715 goalCount = 1 -5697716 goalTotal = 31 -5697716 otherCount = 45 -~~~ -5697717 CURRENTGOAL IS [3] -~~~ -5697811 DOWN 11 -5697811 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697843 UP 11 -5697843 1024 255 -~~~ -~~~ -~~~ -5697846 homeCount = 89 -5697847 waitCount = 44 -5697847 ripCount = 38 -5697848 locktype1 = 2 -5697848 locktype2 = 7 -5697849 locktype3 = 4 -5697849 goalCount = 1 -5697850 goalTotal = 31 -5697850 otherCount = 45 -~~~ -5697851 CURRENTGOAL IS [3] -~~~ -5700488 DOWN 11 -5700488 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5700525 homeCount = 89 -5700526 waitCount = 44 -5700526 ripCount = 38 -5700527 locktype1 = 2 -5700527 locktype2 = 7 -5700528 locktype3 = 4 -5700528 goalCount = 1 -5700528 goalTotal = 31 -5700529 otherCount = 45 -~~~ -5700530 CURRENTGOAL IS [3] -~~~ -5700536 UP 11 -5700536 1024 255 -5700622 DOWN 11 -5700622 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5700656 homeCount = 89 -5700656 waitCount = 44 -5700657 ripCount = 38 -5700657 locktype1 = 2 -5700658 locktype2 = 7 -5700658 locktype3 = 4 -5700659 goalCount = 1 -5700659 goalTotal = 31 -5700660 otherCount = 45 -~~~ -5700661 CURRENTGOAL IS [3] -~~~ -5701175 UP 11 -5701175 1024 255 -5701502 DOWN 11 -5701502 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5701545 homeCount = 89 -5701546 waitCount = 44 -5701547 ripCount = 38 -5701547 locktype1 = 2 -5701548 locktype2 = 7 -5701548 locktype3 = 4 -5701548 goalCount = 1 -5701549 goalTotal = 31 -5701549 otherCount = 45 -~~~ -5701551 CURRENTGOAL IS [3] -~~~ -5701590 UP 11 -5701590 1024 255 -5702159 DOWN 11 -5702159 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5702196 homeCount = 89 -5702196 waitCount = 44 -5702197 ripCount = 38 -5702197 locktype1 = 2 -5702198 locktype2 = 7 -5702198 locktype3 = 4 -5702199 goalCount = 1 -5702199 goalTotal = 31 -5702200 otherCount = 45 -~~~ -5702201 CURRENTGOAL IS [3] -~~~ -5702214 UP 11 -5702214 1024 255 -5703249 DOWN 11 -5703249 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5703287 homeCount = 89 -5703288 waitCount = 44 -5703288 ripCount = 38 -5703289 locktype1 = 2 -5703290 locktype2 = 7 -5703290 locktype3 = 4 -5703290 goalCount = 1 -5703291 goalTotal = 31 -5703291 otherCount = 45 -~~~ -5703292 CURRENTGOAL IS [3] -~~~ -5716846 UP 3 -5716846 4 255 -~~~ -~~~ -5716863 outer reward -~~~ -5716864 4 262399 -~~~ -~~~ -5716866 DOWN 3 -5716866 0 262399 -~~~ -~~~ -5716883 0 262398 -~~~ -~~~ -5716885 0 262396 -~~~ -~~~ -5716887 0 262392 -~~~ -5716888 4 262392 -~~~ -~~~ -5716890 4 262384 -~~~ -~~~ -5716891 4 262368 -~~~ -5716892 4 262336 -~~~ -~~~ -5716894 4 262272 -~~~ -~~~ -5716896 4 262144 -~~~ -~~~ -5716898 4 262656 -5716899 homeCount = 89 -5716899 waitCount = 44 -5716920 ripCount = 38 -5716921 locktype1 = 2 -5716921 locktype2 = 7 -5716922 locktype3 = 4 -5716922 goalCount = 2 -5716923 goalTotal = 32 -5716923 otherCount = 45 -~~~ -5717199 DOWN 3 -5717199 0 262656 -5717223 4 262656 -5717313 4 512 -5717605 DOWN 3 -5717605 0 512 -5717612 4 512 -5717719 DOWN 3 -5717719 0 512 -5717740 4 512 -5717840 DOWN 3 -5717840 0 512 -5717858 4 512 -5717966 DOWN 3 -5717966 0 512 -5717983 4 512 -5718090 DOWN 3 -5718090 0 512 -5718109 4 512 -5723871 DOWN 3 -5723871 0 512 -5723884 4 512 -5724350 DOWN 3 -5724350 0 512 -5724405 4 512 -5724458 DOWN 3 -5724458 0 512 -5728178 UP 10 -5728179 waslock = 0 -5728178 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5728208 512 16777728 -~~~ -5728358 512 512 -5734718 DOWN 10 -5734718 0 512 -5734740 UP 10 -5734740 waslock = 0 -5734740 512 512 -~~~ -~~~ -~~~ -5734743 512 1536 -~~~ -5734744 512 1024 -5734745 homeCount = 90 -5734745 waitCount = 44 -5734746 ripCount = 38 -5734746 locktype1 = 2 -5734747 locktype2 = 7 -5734747 locktype3 = 4 -5734748 goalCount = 2 -5734769 goalTotal = 32 -5734769 otherCount = 45 -~~~ -~~~ -5734818 DOWN 10 -5734818 0 1024 -~~~ -~~~ -~~~ -~~~ -5734839 homeCount = 90 -5734840 waitCount = 44 -5734840 ripCount = 38 -5734841 locktype1 = 2 -5734841 locktype2 = 7 -5734842 locktype3 = 4 -5734842 goalCount = 2 -5734843 goalTotal = 32 -5734843 otherCount = 45 -~~~ -5736341 UP 11 -5736341 1024 1024 -5739841 BEEP1 -5739841 BEEP2 -~~~ -~~~ -~~~ -5739868 1024 33555456 -~~~ -5740018 1024 1024 -5746448 DOWN 11 -5746448 0 1024 -5746457 UP 11 -5746456 1024 1024 -~~~ -~~~ -5746467 1024 0 -~~~ -~~~ -5746469 1024 1 -~~~ -~~~ -5746471 1024 3 -~~~ -~~~ -5746472 1024 7 -~~~ -~~~ -5746474 1024 15 -~~~ -~~~ -5746476 1024 31 -~~~ -~~~ -5746478 1024 63 -~~~ -~~~ -5746480 1024 127 -~~~ -~~~ -5746481 1024 255 -5746482 homeCount = 90 -5746483 waitCount = 44 -5746484 ripCount = 39 -5746484 locktype1 = 2 -5746505 locktype2 = 7 -5746505 locktype3 = 4 -5746506 goalCount = 2 -5746506 goalTotal = 32 -5746507 otherCount = 45 -~~~ -5746508 CURRENTGOAL IS [3] -~~~ -5750211 DOWN 11 -5750211 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5750252 homeCount = 90 -5750253 waitCount = 44 -5750253 ripCount = 39 -5750254 locktype1 = 2 -5750254 locktype2 = 7 -5750255 locktype3 = 4 -5750255 goalCount = 2 -5750256 goalTotal = 32 -5750256 otherCount = 45 -~~~ -5750257 CURRENTGOAL IS [3] -~~~ -5750278 UP 11 -5750278 1024 255 -5751976 DOWN 11 -5751976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5752013 homeCount = 90 -5752013 waitCount = 44 -5752014 ripCount = 39 -5752014 locktype1 = 2 -5752015 locktype2 = 7 -5752015 locktype3 = 4 -5752016 goalCount = 2 -5752016 goalTotal = 32 -5752016 otherCount = 45 -~~~ -5752018 CURRENTGOAL IS [3] -~~~ -5758629 UP 2 -5758629 2 255 -~~~ -~~~ -5759431 DOWN 2 -5759431 0 255 -~~~ -~~~ -5759455 0 254 -~~~ -~~~ -5759457 0 252 -~~~ -~~~ -5759459 0 248 -~~~ -~~~ -5759461 0 240 -~~~ -~~~ -5759463 0 224 -~~~ -~~~ -5759465 0 192 -~~~ -~~~ -5759466 0 128 -~~~ -~~~ -5759468 0 0 -~~~ -~~~ -5759470 0 512 -5759471 homeCount = 90 -5759472 waitCount = 44 -5759472 ripCount = 39 -5759473 locktype1 = 2 -5759473 locktype2 = 7 -5759494 locktype3 = 4 -5759495 goalCount = 2 -5759495 goalTotal = 32 -5759495 otherCount = 46 -~~~ -5759663 2 512 -5759777 DOWN 2 -5759777 0 512 -5765697 UP 10 -5765697 waslock = 0 -5765697 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5765722 512 16777728 -~~~ -5765872 512 512 -5765931 DOWN 10 -5765931 0 512 -5765938 UP 10 -5765938 waslock = 0 -5765938 512 512 -~~~ -~~~ -5765957 512 2560 -~~~ -~~~ -5765959 512 2048 -5765960 homeCount = 91 -5765961 waitCount = 44 -5765961 ripCount = 39 -5765962 locktype1 = 2 -5765962 locktype2 = 7 -5765962 locktype3 = 4 -5765963 goalCount = 2 -5765963 goalTotal = 32 -5765964 otherCount = 46 -~~~ -~~~ -5770516 DOWN 10 -5770516 0 2048 -5770527 UP 10 -5770527 waslock = 0 -5770527 512 2048 -~~~ -~~~ -~~~ -~~~ -5770552 homeCount = 91 -5770553 waitCount = 44 -5770553 ripCount = 39 -5770554 locktype1 = 2 -5770554 locktype2 = 7 -5770555 locktype3 = 4 -5770555 goalCount = 2 -5770556 goalTotal = 32 -5770556 otherCount = 46 -~~~ -~~~ -5770605 DOWN 10 -5770605 0 2048 -~~~ -~~~ -~~~ -~~~ -5770632 homeCount = 91 -5770632 waitCount = 44 -5770633 ripCount = 39 -5770633 locktype1 = 2 -5770634 locktype2 = 7 -5770634 locktype3 = 4 -5770635 goalCount = 2 -5770635 goalTotal = 32 -5770635 otherCount = 46 -~~~ -5772538 UP 12 -5772538 2048 2048 -5774762 DOWN 12 -5774762 0 2048 -5774792 UP 12 -5774792 2048 2048 -5774819 DOWN 12 -5774819 0 2048 -5774837 UP 12 -5774837 2048 2048 -5777111 DOWN 12 -5777111 0 2048 -5777126 UP 12 -5777126 2048 2048 -5780539 CLICK1 -5780539 CLICK2 -~~~ -~~~ -~~~ -5780558 2048 67110912 -~~~ -5780708 2048 2048 -5787618 DOWN 12 -5787618 0 2048 -~~~ -~~~ -5787637 0 0 -~~~ -~~~ -5787639 0 1 -~~~ -~~~ -5787640 0 3 -~~~ -~~~ -5787642 0 7 -~~~ -~~~ -5787644 0 15 -~~~ -~~~ -5787646 0 31 -~~~ -~~~ -5787648 0 63 -~~~ -~~~ -5787649 0 127 -~~~ -~~~ -5787651 0 255 -5787652 homeCount = 91 -5787653 waitCount = 45 -5787653 ripCount = 39 -5787654 locktype1 = 2 -5787654 locktype2 = 7 -5787675 locktype3 = 4 -5787675 goalCount = 2 -5787676 goalTotal = 32 -5787676 otherCount = 46 -~~~ -5787677 CURRENTGOAL IS [3] -~~~ -5787678 UP 12 -5787678 2048 255 -5787722 DOWN 12 -5787722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5787754 homeCount = 91 -5787755 waitCount = 45 -5787755 ripCount = 39 -5787756 locktype1 = 2 -5787756 locktype2 = 7 -5787757 locktype3 = 4 -5787757 goalCount = 2 -5787758 goalTotal = 32 -5787758 otherCount = 46 -~~~ -5787759 CURRENTGOAL IS [3] -~~~ -5795603 UP 7 -5795603 64 255 -~~~ -~~~ -5796010 DOWN 7 -5796010 0 255 -~~~ -~~~ -5796029 0 254 -~~~ -~~~ -5796031 0 252 -~~~ -~~~ -5796033 0 248 -~~~ -~~~ -5796034 0 240 -~~~ -~~~ -5796036 0 224 -~~~ -~~~ -5796038 0 192 -~~~ -~~~ -5796040 0 128 -~~~ -~~~ -5796042 0 0 -~~~ -~~~ -5796044 0 512 -5796045 homeCount = 91 -5796045 waitCount = 45 -5796046 ripCount = 39 -5796046 locktype1 = 2 -5796047 locktype2 = 7 -5796068 locktype3 = 4 -5796068 goalCount = 2 -5796069 goalTotal = 32 -5796069 otherCount = 47 -~~~ -5796070 64 512 -5796533 DOWN 7 -5796533 0 512 -5800125 UP 10 -5800125 waslock = 0 -5800125 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5800149 512 16777728 -~~~ -5800299 512 512 -5800329 DOWN 10 -5800329 0 512 -5800334 UP 10 -5800334 waslock = 0 -5800334 512 512 -~~~ -~~~ -5800353 512 1536 -~~~ -~~~ -5800355 512 1024 -5800356 homeCount = 92 -5800357 waitCount = 45 -5800357 ripCount = 39 -5800358 locktype1 = 2 -5800358 locktype2 = 7 -5800359 locktype3 = 4 -5800359 goalCount = 2 -5800359 goalTotal = 32 -5800360 otherCount = 47 -~~~ -~~~ -5805808 DOWN 10 -5805808 0 1024 -~~~ -~~~ -~~~ -~~~ -5805836 homeCount = 92 -5805836 waitCount = 45 -5805837 ripCount = 39 -5805837 locktype1 = 2 -5805838 locktype2 = 7 -5805838 locktype3 = 4 -5805839 goalCount = 2 -5805839 goalTotal = 32 -5805840 otherCount = 47 -~~~ -5807754 UP 11 -5807754 1024 1024 -5810234 DOWN 11 -5810234 0 1024 -5810278 UP 11 -5810278 1024 1024 -5810754 BEEP1 -5810754 BEEP2 -~~~ -~~~ -~~~ -5810775 1024 33555456 -~~~ -5810925 1024 1024 -5817367 DOWN 11 -5817367 0 1024 -5817376 UP 11 -5817376 1024 1024 -~~~ -~~~ -5817392 1024 0 -~~~ -~~~ -5817394 1024 1 -~~~ -~~~ -5817396 1024 3 -~~~ -~~~ -5817397 1024 7 -~~~ -~~~ -5817399 1024 15 -~~~ -~~~ -5817401 1024 31 -~~~ -~~~ -5817403 1024 63 -~~~ -~~~ -5817405 1024 127 -~~~ -~~~ -5817407 1024 255 -5817408 homeCount = 92 -5817408 waitCount = 45 -5817409 ripCount = 40 -5817409 locktype1 = 2 -5817430 locktype2 = 7 -5817431 locktype3 = 4 -5817431 goalCount = 2 -5817432 goalTotal = 32 -5817432 otherCount = 47 -~~~ -5817433 CURRENTGOAL IS [3] -~~~ -5820017 DOWN 11 -5820017 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5820058 homeCount = 92 -5820059 waitCount = 45 -5820059 ripCount = 40 -5820060 locktype1 = 2 -5820060 locktype2 = 7 -5820061 locktype3 = 4 -5820061 goalCount = 2 -5820061 goalTotal = 32 -5820062 otherCount = 47 -~~~ -5820063 CURRENTGOAL IS [3] -~~~ -5828153 UP 3 -5828153 4 255 -~~~ -~~~ -5828176 outer reward -~~~ -5828176 4 262399 -~~~ -~~~ -5828381 DOWN 3 -5828381 0 262399 -~~~ -~~~ -5828405 0 262398 -~~~ -~~~ -5828407 0 262396 -~~~ -~~~ -5828409 0 262392 -~~~ -~~~ -5828411 0 262384 -~~~ -~~~ -5828412 0 262368 -~~~ -~~~ -5828414 0 262336 -~~~ -5828416 4 262336 -~~~ -~~~ -5828417 4 262272 -~~~ -5828418 4 262144 -~~~ -~~~ -5828420 4 262656 -5828421 homeCount = 92 -5828421 waitCount = 45 -5828442 ripCount = 40 -5828443 locktype1 = 2 -5828443 locktype2 = 7 -5828444 locktype3 = 4 -5828444 goalCount = 3 -5828445 goalTotal = 33 -5828445 otherCount = 47 -~~~ -5828626 4 512 -5828783 DOWN 3 -5828783 0 512 -5828810 4 512 -5828903 DOWN 3 -5828903 0 512 -5828941 4 512 -5829030 DOWN 3 -5829030 0 512 -5829062 4 512 -5829159 DOWN 3 -5829159 0 512 -5829194 4 512 -5829292 DOWN 3 -5829292 0 512 -5829324 4 512 -5829422 DOWN 3 -5829422 0 512 -5829451 4 512 -5829559 DOWN 3 -5829559 0 512 -5829588 4 512 -5829697 DOWN 3 -5829697 0 512 -5829724 4 512 -5829837 DOWN 3 -5829837 0 512 -5829860 4 512 -5829982 DOWN 3 -5829982 0 512 -5830000 4 512 -5830129 DOWN 3 -5830129 0 512 -5830141 4 512 -5830435 DOWN 3 -5830435 0 512 -5830444 4 512 -5833394 DOWN 3 -5833394 0 512 -5833418 4 512 -5834560 DOWN 3 -5834560 0 512 -5834571 4 512 -5834740 DOWN 3 -5834740 0 512 -5834746 4 512 -5836809 DOWN 3 -5836809 0 512 -5836847 4 512 -5836894 DOWN 3 -5836894 0 512 -5840557 UP 10 -5840558 waslock = 0 -5840557 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5840584 512 16777728 -~~~ -5840734 512 512 -5844296 DOWN 10 -5844296 0 512 -~~~ -~~~ -5844316 0 2560 -~~~ -~~~ -5844318 0 2048 -5844319 homeCount = 93 -5844320 waitCount = 45 -5844320 ripCount = 40 -5844321 locktype1 = 2 -5844321 locktype2 = 7 -5844321 locktype3 = 4 -5844322 goalCount = 3 -5844322 goalTotal = 33 -5844323 otherCount = 47 -~~~ -5845949 UP 12 -5845949 2048 2048 -5849054 DOWN 12 -5849054 0 2048 -5849095 UP 12 -5849095 2048 2048 -5849949 CLICK1 -5849949 CLICK2 -~~~ -~~~ -~~~ -5849973 2048 67110912 -~~~ -5850123 2048 2048 -5856550 DOWN 12 -5856550 0 2048 -~~~ -~~~ -5856578 0 0 -~~~ -~~~ -5856580 0 1 -~~~ -~~~ -5856581 0 3 -~~~ -~~~ -5856583 0 7 -~~~ -~~~ -5856585 0 15 -~~~ -~~~ -5856587 0 31 -~~~ -~~~ -5856589 0 63 -~~~ -~~~ -5856590 0 127 -~~~ -~~~ -5856592 0 255 -5856593 homeCount = 93 -5856594 waitCount = 46 -5856594 ripCount = 40 -5856595 locktype1 = 2 -5856595 locktype2 = 7 -5856596 locktype3 = 4 -5856617 goalCount = 3 -5856618 goalTotal = 33 -5856618 otherCount = 47 -~~~ -5856619 CURRENTGOAL IS [3] -~~~ -5856644 UP 12 -5856644 2048 255 -5858693 DOWN 12 -5858693 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5858736 homeCount = 93 -5858736 waitCount = 46 -5858737 ripCount = 40 -5858737 locktype1 = 2 -5858738 locktype2 = 7 -5858738 locktype3 = 4 -5858739 goalCount = 3 -5858739 goalTotal = 33 -5858740 otherCount = 47 -~~~ -5858741 CURRENTGOAL IS [3] -~~~ -5862529 UP 3 -5862529 4 255 -~~~ -~~~ -5862552 outer reward -~~~ -5862552 4 262399 -~~~ -~~~ -5862752 DOWN 3 -5862752 0 262399 -~~~ -~~~ -5862770 0 262398 -~~~ -~~~ -5862772 0 262396 -~~~ -~~~ -5862774 0 262392 -~~~ -~~~ -5862776 0 262384 -~~~ -~~~ -5862777 0 262368 -~~~ -~~~ -5862779 0 262336 -~~~ -~~~ -5862781 0 262272 -~~~ -~~~ -5862783 0 262144 -~~~ -~~~ -5862785 0 262656 -5862786 homeCount = 93 -5862786 waitCount = 46 -5862787 ripCount = 40 -5862808 locktype1 = 2 -5862809 locktype2 = 7 -5862809 locktype3 = 4 -5862809 goalCount = 4 -5862810 goalTotal = 34 -5862810 otherCount = 47 -~~~ -5862811 4 262656 -5863002 4 512 -5863190 DOWN 3 -5863190 0 512 -5863214 4 512 -5863309 DOWN 3 -5863309 0 512 -5863346 4 512 -5863438 DOWN 3 -5863438 0 512 -5863466 4 512 -5863585 DOWN 3 -5863585 0 512 -5863605 4 512 -5863714 DOWN 3 -5863714 0 512 -5863740 4 512 -5863854 DOWN 3 -5863854 0 512 -5863877 4 512 -5863999 DOWN 3 -5863999 0 512 -5864018 4 512 -5864142 DOWN 3 -5864142 0 512 -5864162 4 512 -5864291 DOWN 3 -5864291 0 512 -5864306 4 512 -5864440 DOWN 3 -5864440 0 512 -5864456 4 512 -5870702 DOWN 3 -5870702 0 512 -5870792 4 512 -5870801 DOWN 3 -5870801 0 512 -5874682 UP 10 -5874682 waslock = 0 -5874682 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5874707 512 16777728 -~~~ -5874857 512 512 -5874917 DOWN 10 -5874917 0 512 -5874930 UP 10 -5874931 waslock = 0 -5874930 512 512 -~~~ -~~~ -5874941 512 2560 -~~~ -~~~ -5874943 512 2048 -5874944 homeCount = 94 -5874945 waitCount = 46 -5874945 ripCount = 40 -5874946 locktype1 = 2 -5874946 locktype2 = 7 -5874947 locktype3 = 4 -5874947 goalCount = 4 -5874947 goalTotal = 34 -5874948 otherCount = 47 -~~~ -~~~ -5879193 DOWN 10 -5879193 0 2048 -~~~ -~~~ -~~~ -~~~ -5879215 homeCount = 94 -5879216 waitCount = 46 -5879216 ripCount = 40 -5879217 locktype1 = 2 -5879217 locktype2 = 7 -5879218 locktype3 = 4 -5879218 goalCount = 4 -5879219 goalTotal = 34 -5879219 otherCount = 47 -~~~ -5880914 UP 12 -5880914 2048 2048 -5881174 DOWN 12 -5881174 0 2048 -5881272 UP 12 -5881272 2048 2048 -5881331 DOWN 12 -5881331 0 2048 -5881349 UP 12 -5881349 2048 2048 -5882641 DOWN 12 -5882641 0 2048 -5882721 UP 12 -5882721 2048 2048 -5883785 DOWN 12 -5883785 0 2048 -5883812 UP 12 -5883812 2048 2048 -5886414 CLICK1 -5886414 CLICK2 -~~~ -~~~ -~~~ -5886435 2048 67110912 -~~~ -5886585 2048 2048 -5892947 DOWN 12 -5892947 0 2048 -5892961 UP 12 -5892961 2048 2048 -~~~ -~~~ -5892972 2048 0 -~~~ -~~~ -5892974 2048 1 -~~~ -~~~ -5892976 2048 3 -~~~ -~~~ -5892978 2048 7 -~~~ -~~~ -5892979 2048 15 -~~~ -~~~ -5892981 2048 31 -~~~ -~~~ -5892983 2048 63 -~~~ -~~~ -5892985 2048 127 -~~~ -~~~ -5892987 2048 255 -5892988 homeCount = 94 -5892988 waitCount = 47 -5892989 ripCount = 40 -5892989 locktype1 = 2 -5893010 locktype2 = 7 -5893010 locktype3 = 4 -5893011 goalCount = 4 -5893011 goalTotal = 34 -5893012 otherCount = 47 -~~~ -5893013 CURRENTGOAL IS [3] -~~~ -5893066 DOWN 12 -5893066 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5893100 homeCount = 94 -5893101 waitCount = 47 -5893101 ripCount = 40 -5893102 locktype1 = 2 -5893102 locktype2 = 7 -5893103 locktype3 = 4 -5893103 goalCount = 4 -5893104 goalTotal = 34 -5893104 otherCount = 47 -~~~ -5893105 CURRENTGOAL IS [3] -~~~ -5893124 UP 12 -5893124 2048 255 -5894503 DOWN 12 -5894503 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5894542 homeCount = 94 -5894542 waitCount = 47 -5894543 ripCount = 40 -5894543 locktype1 = 2 -5894544 locktype2 = 7 -5894544 locktype3 = 4 -5894545 goalCount = 4 -5894545 goalTotal = 34 -5894546 otherCount = 47 -~~~ -5894547 CURRENTGOAL IS [3] -~~~ -5898051 UP 3 -5898051 4 255 -~~~ -~~~ -5898075 outer reward -~~~ -5898075 4 262399 -~~~ -~~~ -5898084 DOWN 3 -5898084 0 262399 -~~~ -~~~ -5898105 0 262398 -~~~ -~~~ -5898107 0 262396 -~~~ -~~~ -5898109 0 262392 -~~~ -~~~ -5898111 0 262384 -~~~ -~~~ -5898113 0 262368 -~~~ -~~~ -5898114 0 262336 -~~~ -~~~ -5898116 0 262272 -~~~ -~~~ -5898118 0 262144 -~~~ -5898119 4 262144 -~~~ -5898121 4 262656 -5898121 homeCount = 94 -5898122 waitCount = 47 -5898143 ripCount = 40 -5898143 locktype1 = 2 -5898143 locktype2 = 7 -5898144 locktype3 = 4 -5898144 goalCount = 5 -5898145 goalTotal = 35 -5898145 otherCount = 47 -~~~ -5898295 DOWN 3 -5898295 0 262656 -5898339 4 262656 -5898474 DOWN 3 -5898474 0 262656 -5898485 4 262656 -5898525 4 512 -5898613 DOWN 3 -5898613 0 512 -5898629 4 512 -5898725 DOWN 3 -5898725 0 512 -5898757 4 512 -5899023 DOWN 3 -5899023 0 512 -5899036 4 512 -5899150 DOWN 3 -5899150 0 512 -5899168 4 512 -5899278 DOWN 3 -5899278 0 512 -5899303 4 512 -5899418 DOWN 3 -5899418 0 512 -5899436 4 512 -5899556 DOWN 3 -5899556 0 512 -5899573 4 512 -5900710 DOWN 3 -5900710 0 512 -5900719 4 512 -5901495 DOWN 3 -5901495 0 512 -5901502 4 512 -5907977 DOWN 3 -5907977 0 512 -5907988 4 512 -5908474 DOWN 3 -5908474 0 512 -5908635 4 512 -5908689 DOWN 3 -5908689 0 512 -5913757 UP 10 -5913758 waslock = 0 -5913757 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5913783 512 16777728 -~~~ -5913933 512 512 -5917745 DOWN 10 -5917745 0 512 -~~~ -~~~ -5917767 0 2560 -~~~ -~~~ -5917769 0 2048 -5917770 homeCount = 95 -5917771 waitCount = 47 -5917771 ripCount = 40 -5917771 locktype1 = 2 -5917772 locktype2 = 7 -5917772 locktype3 = 4 -5917773 goalCount = 5 -5917773 goalTotal = 35 -5917774 otherCount = 47 -~~~ -5917777 UP 10 -5917778 waslock = 0 -5917777 512 2048 -5917816 DOWN 10 -5917816 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5917844 homeCount = 95 -5917844 waitCount = 47 -5917845 ripCount = 40 -5917845 locktype1 = 2 -5917846 locktype2 = 7 -5917846 locktype3 = 4 -5917847 goalCount = 5 -5917847 goalTotal = 35 -5917848 otherCount = 47 -~~~ -5919813 UP 12 -5919813 2048 2048 -5920060 DOWN 12 -5920060 0 2048 -5920260 LOCKOUT 3 -~~~ -5920281 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5920287 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5920319 UP 12 -5920319 2048 0 -5921986 DOWN 12 -5921986 0 0 -5922031 UP 12 -5922031 2048 0 -5928322 DOWN 12 -5928322 0 0 -5928360 UP 12 -5928360 2048 0 -5928730 DOWN 12 -5928729 0 0 -5928859 UP 12 -5928859 2048 0 -5930252 DOWN 12 -5930252 0 0 -5942734 UP 8 -5942734 128 0 -5943812 DOWN 8 -5943812 0 0 -5944012 128 0 -5944110 DOWN 8 -5944110 0 0 -5945254 128 0 -5945281 LOCKEND -~~~ -~~~ -~~~ -5945306 128 512 -5945311 DOWN 8 -5945311 0 512 -5945821 128 512 -5947058 DOWN 8 -5947058 0 512 -5970247 UP 10 -5970248 waslock = 0 -5970247 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5970272 512 16777728 -~~~ -5970422 512 512 -5972015 DOWN 10 -5972015 0 512 -5972026 UP 10 -5972026 waslock = 0 -5972026 512 512 -~~~ -~~~ -5972046 512 1536 -~~~ -~~~ -5972048 512 1024 -5972049 homeCount = 96 -5972050 waitCount = 47 -5972050 ripCount = 40 -5972051 locktype1 = 2 -5972051 locktype2 = 7 -5972052 locktype3 = 5 -5972052 goalCount = 5 -5972053 goalTotal = 35 -5972053 otherCount = 47 -~~~ -~~~ -5976454 DOWN 10 -5976454 0 1024 -~~~ -~~~ -~~~ -~~~ -5976477 homeCount = 96 -5976477 waitCount = 47 -5976478 ripCount = 40 -5976478 locktype1 = 2 -5976479 locktype2 = 7 -5976479 locktype3 = 5 -5976480 goalCount = 5 -5976480 goalTotal = 35 -5976481 otherCount = 47 -~~~ -5982820 UP 11 -5982820 1024 1024 -5983404 DOWN 11 -5983404 0 1024 -5983449 UP 11 -5983449 1024 1024 -5983553 DOWN 11 -5983553 0 1024 -5983643 UP 11 -5983643 1024 1024 -5984311 DOWN 11 -5984311 0 1024 -5984334 UP 11 -5984334 1024 1024 -5984358 DOWN 11 -5984358 0 1024 -5984404 UP 11 -5984404 1024 1024 -5984446 DOWN 11 -5984446 0 1024 -5984470 UP 11 -5984470 1024 1024 -5985787 DOWN 11 -5985787 0 1024 -5985812 UP 11 -5985812 1024 1024 -5987321 BEEP1 -5987321 BEEP2 -~~~ -~~~ -~~~ -5987346 1024 33555456 -~~~ -5987496 1024 1024 -5995025 DOWN 11 -5995025 0 1024 -~~~ -~~~ -5995044 0 0 -~~~ -~~~ -5995046 0 1 -~~~ -~~~ -5995048 0 3 -~~~ -~~~ -5995050 0 7 -~~~ -~~~ -5995052 0 15 -~~~ -~~~ -5995053 0 31 -~~~ -~~~ -5995055 0 63 -~~~ -~~~ -5995057 0 127 -~~~ -~~~ -5995059 0 255 -5995060 homeCount = 96 -5995060 waitCount = 47 -5995061 ripCount = 41 -5995061 locktype1 = 2 -5995062 locktype2 = 7 -5995062 locktype3 = 5 -5995083 goalCount = 5 -5995084 goalTotal = 35 -5995084 otherCount = 47 -~~~ -5995085 CURRENTGOAL IS [3] -~~~ -5995086 UP 11 -5995086 1024 255 -5995127 DOWN 11 -5995127 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5995166 homeCount = 96 -5995166 waitCount = 47 -5995167 ripCount = 41 -5995167 locktype1 = 2 -5995168 locktype2 = 7 -5995168 locktype3 = 5 -5995169 goalCount = 5 -5995169 goalTotal = 35 -5995170 otherCount = 47 -~~~ -5995171 CURRENTGOAL IS [3] -~~~ -5998831 UP 6 -5998831 32 255 -~~~ -~~~ -5999406 DOWN 6 -5999406 0 255 -~~~ -~~~ -5999430 0 254 -~~~ -~~~ -5999432 0 252 -~~~ -~~~ -5999434 0 248 -~~~ -~~~ -5999435 0 240 -~~~ -~~~ -5999437 0 224 -~~~ -~~~ -5999439 0 192 -~~~ -~~~ -5999441 0 128 -~~~ -~~~ -5999443 0 0 -~~~ -~~~ -5999445 0 512 -5999446 homeCount = 96 -5999446 waitCount = 47 -5999446 ripCount = 41 -5999447 locktype1 = 2 -5999447 locktype2 = 7 -5999469 locktype3 = 5 -5999469 goalCount = 5 -5999470 goalTotal = 35 -5999470 otherCount = 48 -~~~ -6003715 UP 10 -6003715 waslock = 0 -6003715 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6003747 512 16777728 -~~~ -6003897 512 512 -6003918 DOWN 10 -6003918 0 512 -~~~ -~~~ -6003946 0 1536 -~~~ -6003948 UP 10 -6003948 waslock = 0 -6003948 512 1536 -~~~ -6003950 homeCount = 97 -6003950 waitCount = 47 -6003951 ripCount = 41 -6003951 locktype1 = 2 -6003952 locktype2 = 7 -6003952 locktype3 = 5 -6003953 goalCount = 5 -6003953 goalTotal = 35 -6003974 otherCount = 48 -~~~ -6003975 DOWN 10 -6003975 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6003999 homeCount = 97 -6004000 waitCount = 47 -6004000 ripCount = 41 -6004001 locktype1 = 2 -6004001 locktype2 = 7 -6004002 locktype3 = 5 -6004002 goalCount = 5 -6004003 goalTotal = 35 -6004003 otherCount = 48 -~~~ -6004012 UP 10 -6004013 waslock = 0 -6004012 512 1024 -~~~ -6009857 DOWN 10 -6009857 0 1024 -~~~ -~~~ -~~~ -~~~ -6009879 homeCount = 97 -6009879 waitCount = 47 -6009880 ripCount = 41 -6009880 locktype1 = 2 -6009881 locktype2 = 7 -6009881 locktype3 = 5 -6009882 goalCount = 5 -6009882 goalTotal = 35 -6009883 otherCount = 48 -~~~ -6009933 UP 10 -6009934 waslock = 0 -6009933 512 1024 -6009944 DOWN 10 -6009944 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6009963 homeCount = 97 -6009964 waitCount = 47 -6009964 ripCount = 41 -6009965 locktype1 = 2 -6009965 locktype2 = 7 -6009966 locktype3 = 5 -6009966 goalCount = 5 -6009967 goalTotal = 35 -6009967 otherCount = 48 -~~~ -6012452 UP 11 -6012452 1024 1024 -6015272 DOWN 11 -6015272 0 1024 -6015283 UP 11 -6015283 1024 1024 -6015352 DOWN 11 -6015352 0 1024 -6015388 UP 11 -6015388 1024 1024 -6017952 BEEP1 -6017952 BEEP2 -~~~ -~~~ -~~~ -6017977 1024 33555456 -~~~ -6018127 1024 1024 -6023478 DOWN 11 -6023478 0 1024 -6023492 UP 11 -6023492 1024 1024 -~~~ -~~~ -6023498 1024 0 -~~~ -~~~ -6023499 1024 1 -~~~ -~~~ -6023501 1024 3 -~~~ -~~~ -6023503 1024 7 -~~~ -~~~ -6023505 1024 15 -~~~ -~~~ -6023507 1024 31 -~~~ -~~~ -6023509 1024 63 -~~~ -~~~ -6023510 1024 127 -~~~ -~~~ -6023512 1024 255 -6023513 homeCount = 97 -6023514 waitCount = 47 -6023514 ripCount = 42 -6023515 locktype1 = 2 -6023536 locktype2 = 7 -6023536 locktype3 = 5 -6023537 goalCount = 5 -6023537 goalTotal = 35 -6023538 otherCount = 48 -~~~ -6023539 CURRENTGOAL IS [3] -~~~ -6023606 DOWN 11 -6023606 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023634 UP 11 -6023634 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023643 homeCount = 97 -6023643 waitCount = 47 -6023644 ripCount = 42 -6023644 locktype1 = 2 -6023645 locktype2 = 7 -6023645 locktype3 = 5 -6023646 goalCount = 5 -6023646 goalTotal = 35 -6023647 otherCount = 48 -~~~ -6023648 CURRENTGOAL IS [3] -~~~ -6023702 DOWN 11 -6023702 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023742 homeCount = 97 -6023743 waitCount = 47 -6023743 ripCount = 42 -6023744 locktype1 = 2 -6023744 locktype2 = 7 -6023745 locktype3 = 5 -6023745 goalCount = 5 -6023746 goalTotal = 35 -6023746 otherCount = 48 -~~~ -6023747 CURRENTGOAL IS [3] -~~~ -6023800 UP 11 -6023800 1024 255 -6023848 DOWN 11 -6023848 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023883 UP 11 -6023883 1024 255 -6023884 homeCount = 97 -6023884 waitCount = 47 -6023885 ripCount = 42 -6023885 locktype1 = 2 -6023886 locktype2 = 7 -6023886 locktype3 = 5 -6023887 goalCount = 5 -6023887 goalTotal = 35 -6023888 otherCount = 48 -~~~ -6023889 CURRENTGOAL IS [3] -~~~ -6023989 DOWN 11 -6023989 0 255 -~~~ -~~~ -~~~ -~~~ -6024013 UP 11 -6024013 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6024026 homeCount = 97 -6024027 waitCount = 47 -6024027 ripCount = 42 -6024028 locktype1 = 2 -6024028 locktype2 = 7 -6024029 locktype3 = 5 -6024029 goalCount = 5 -6024030 goalTotal = 35 -6024030 otherCount = 48 -~~~ -6024031 CURRENTGOAL IS [3] -~~~ -6024163 DOWN 11 -6024163 0 255 -6024176 UP 11 -6024176 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6024197 homeCount = 97 -6024198 waitCount = 47 -6024198 ripCount = 42 -6024199 locktype1 = 2 -6024199 locktype2 = 7 -6024200 locktype3 = 5 -6024200 goalCount = 5 -6024201 goalTotal = 35 -6024201 otherCount = 48 -~~~ -6024202 CURRENTGOAL IS [3] -~~~ -6026519 DOWN 11 -6026519 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6026563 homeCount = 97 -6026563 waitCount = 47 -6026564 ripCount = 42 -6026564 locktype1 = 2 -6026565 locktype2 = 7 -6026565 locktype3 = 5 -6026566 goalCount = 5 -6026566 goalTotal = 35 -6026567 otherCount = 48 -~~~ -6026568 CURRENTGOAL IS [3] -~~~ -6032818 UP 8 -6032818 128 255 -~~~ -~~~ -6033239 DOWN 8 -6033239 0 255 -~~~ -~~~ -6033258 0 254 -~~~ -~~~ -6033259 0 252 -~~~ -~~~ -6033261 0 248 -~~~ -~~~ -6033263 0 240 -~~~ -~~~ -6033265 0 224 -~~~ -~~~ -6033267 0 192 -~~~ -~~~ -6033269 0 128 -~~~ -~~~ -6033270 0 0 -~~~ -~~~ -6033272 0 512 -6033273 homeCount = 97 -6033274 waitCount = 47 -6033274 ripCount = 42 -6033275 locktype1 = 2 -6033275 locktype2 = 7 -6033296 locktype3 = 5 -6033297 goalCount = 5 -6033297 goalTotal = 35 -6033298 otherCount = 49 -~~~ -6033317 128 512 -6033371 DOWN 8 -6033371 0 512 -6038368 UP 10 -6038368 waslock = 0 -6038368 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6038397 512 16777728 -~~~ -6038547 512 512 -6039272 DOWN 10 -6039272 0 512 -~~~ -~~~ -6039291 0 1536 -~~~ -~~~ -6039293 0 1024 -6039294 homeCount = 98 -6039294 waitCount = 47 -6039295 ripCount = 42 -6039295 locktype1 = 2 -6039296 locktype2 = 7 -6039296 locktype3 = 5 -6039297 goalCount = 5 -6039297 goalTotal = 35 -6039297 otherCount = 49 -~~~ -6039298 UP 10 -6039319 waslock = 0 -6039298 512 1024 -~~~ -6044381 DOWN 10 -6044381 0 1024 -~~~ -~~~ -~~~ -~~~ -6044402 homeCount = 98 -6044403 waitCount = 47 -6044403 ripCount = 42 -6044404 locktype1 = 2 -6044404 locktype2 = 7 -6044405 locktype3 = 5 -6044405 goalCount = 5 -6044406 goalTotal = 35 -6044406 otherCount = 49 -~~~ -6044424 UP 10 -6044424 waslock = 0 -6044424 512 1024 -~~~ -6044471 DOWN 10 -6044471 0 1024 -~~~ -~~~ -~~~ -~~~ -6044493 homeCount = 98 -6044493 waitCount = 47 -6044494 ripCount = 42 -6044494 locktype1 = 2 -6044495 locktype2 = 7 -6044495 locktype3 = 5 -6044496 goalCount = 5 -6044496 goalTotal = 35 -6044497 otherCount = 49 -~~~ -6046733 UP 11 -6046733 1024 1024 -6049202 DOWN 11 -6049202 0 1024 -6049248 UP 11 -6049248 1024 1024 -6050940 DOWN 11 -6050940 0 1024 -6050972 UP 11 -6050972 1024 1024 -6053734 BEEP1 -6053734 BEEP2 -~~~ -~~~ -~~~ -6053752 1024 33555456 -~~~ -6053902 1024 1024 -6059069 DOWN 11 -6059069 0 1024 -~~~ -~~~ -6059095 0 0 -~~~ -~~~ -6059097 0 1 -~~~ -6059098 UP 11 -6059098 1024 1 -~~~ -~~~ -6059100 1024 3 -~~~ -~~~ -6059102 1024 7 -~~~ -6059103 1024 15 -~~~ -~~~ -6059104 1024 31 -~~~ -~~~ -6059106 1024 63 -~~~ -~~~ -6059108 1024 127 -~~~ -~~~ -6059110 1024 255 -6059111 homeCount = 98 -6059111 waitCount = 47 -6059132 ripCount = 43 -6059133 locktype1 = 2 -6059133 locktype2 = 7 -6059134 locktype3 = 5 -6059134 goalCount = 5 -6059135 goalTotal = 35 -6059135 otherCount = 49 -~~~ -6059136 CURRENTGOAL IS [3] -~~~ -6059137 DOWN 11 -6059137 0 255 -6059158 UP 11 -6059158 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059192 DOWN 11 -6059192 0 255 -~~~ -6059193 homeCount = 98 -6059194 waitCount = 47 -6059194 ripCount = 43 -6059195 locktype1 = 2 -6059195 locktype2 = 7 -6059196 locktype3 = 5 -6059196 goalCount = 5 -6059197 goalTotal = 35 -6059197 otherCount = 49 -~~~ -6059198 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059242 homeCount = 98 -6059242 waitCount = 47 -6059243 ripCount = 43 -6059243 locktype1 = 2 -6059244 locktype2 = 7 -6059244 locktype3 = 5 -6059245 goalCount = 5 -6059245 goalTotal = 35 -6059246 otherCount = 49 -~~~ -6059247 CURRENTGOAL IS [3] -~~~ -6059274 UP 11 -6059274 1024 255 -6059335 DOWN 11 -6059335 0 255 -6059341 UP 11 -6059341 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059378 homeCount = 98 -6059378 waitCount = 47 -6059379 ripCount = 43 -6059379 locktype1 = 2 -6059380 locktype2 = 7 -6059380 locktype3 = 5 -6059381 goalCount = 5 -6059381 goalTotal = 35 -6059381 otherCount = 49 -~~~ -6059383 CURRENTGOAL IS [3] -~~~ -6061599 DOWN 11 -6061599 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6061639 homeCount = 98 -6061639 waitCount = 47 -6061640 ripCount = 43 -6061640 locktype1 = 2 -6061641 locktype2 = 7 -6061641 locktype3 = 5 -6061642 goalCount = 5 -6061642 goalTotal = 35 -6061643 otherCount = 49 -~~~ -6061644 CURRENTGOAL IS [3] -~~~ -6061677 UP 11 -6061677 1024 255 -6061721 DOWN 11 -6061721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6061756 homeCount = 98 -6061757 waitCount = 47 -6061757 ripCount = 43 -6061758 locktype1 = 2 -6061758 locktype2 = 7 -6061759 locktype3 = 5 -6061759 goalCount = 5 -6061760 goalTotal = 35 -6061760 otherCount = 49 -~~~ -6061761 CURRENTGOAL IS [3] -~~~ -6067760 UP 6 -6067760 32 255 -~~~ -~~~ -6068412 DOWN 6 -6068412 0 255 -~~~ -~~~ -6068434 0 254 -~~~ -~~~ -6068436 0 252 -~~~ -~~~ -6068438 0 248 -~~~ -~~~ -6068440 0 240 -~~~ -~~~ -6068442 0 224 -~~~ -~~~ -6068443 0 192 -~~~ -~~~ -6068445 0 128 -~~~ -~~~ -6068447 0 0 -~~~ -~~~ -6068449 0 512 -6068450 homeCount = 98 -6068450 waitCount = 47 -6068451 ripCount = 43 -6068451 locktype1 = 2 -6068452 locktype2 = 7 -6068473 locktype3 = 5 -6068474 goalCount = 5 -6068474 goalTotal = 35 -6068474 otherCount = 50 -~~~ -6068505 32 512 -6068699 DOWN 6 -6068699 0 512 -6072218 UP 10 -6072218 waslock = 0 -6072218 512 512 -6072233 DOWN 10 -6072233 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6072251 0 16777728 -~~~ -~~~ -~~~ -6072254 0 16778752 -~~~ -~~~ -6072256 0 16778240 -6072257 homeCount = 99 -6072257 waitCount = 47 -6072258 ripCount = 43 -6072258 locktype1 = 2 -6072258 locktype2 = 7 -6072259 locktype3 = 5 -6072259 goalCount = 5 -6072260 goalTotal = 35 -6072260 otherCount = 50 -~~~ -6072286 UP 10 -6072286 waslock = 0 -6072286 512 16778240 -~~~ -6072401 512 1024 -6072436 DOWN 10 -6072436 0 1024 -~~~ -~~~ -~~~ -~~~ -6072460 homeCount = 99 -6072460 waitCount = 47 -6072461 ripCount = 43 -6072461 locktype1 = 2 -6072462 locktype2 = 7 -6072462 locktype3 = 5 -6072463 goalCount = 5 -6072463 goalTotal = 35 -6072464 otherCount = 50 -~~~ -6072496 UP 10 -6072496 waslock = 0 -6072496 512 1024 -~~~ -6077367 DOWN 10 -6077367 0 1024 -~~~ -~~~ -~~~ -~~~ -6077388 homeCount = 99 -6077388 waitCount = 47 -6077389 ripCount = 43 -6077389 locktype1 = 2 -6077390 locktype2 = 7 -6077390 locktype3 = 5 -6077391 goalCount = 5 -6077391 goalTotal = 35 -6077392 otherCount = 50 -~~~ -6080272 UP 11 -6080272 1024 1024 -6081281 DOWN 11 -6081281 0 1024 -6081297 UP 11 -6081297 1024 1024 -6086272 BEEP1 -6086272 BEEP2 -~~~ -~~~ -~~~ -6086296 1024 33555456 -~~~ -6086446 1024 1024 -6092798 DOWN 11 -6092798 0 1024 -~~~ -~~~ -6092824 0 0 -~~~ -~~~ -6092826 0 1 -~~~ -~~~ -6092828 0 3 -~~~ -~~~ -6092830 0 7 -~~~ -6092831 UP 11 -6092831 1024 7 -~~~ -~~~ -6092833 1024 15 -~~~ -~~~ -6092835 1024 31 -~~~ -~~~ -6092837 1024 63 -~~~ -6092838 1024 127 -~~~ -~~~ -6092839 1024 255 -6092840 homeCount = 99 -6092841 waitCount = 47 -6092862 ripCount = 44 -6092862 locktype1 = 2 -6092863 locktype2 = 7 -6092863 locktype3 = 5 -6092864 goalCount = 5 -6092864 goalTotal = 35 -6092865 otherCount = 50 -~~~ -6092866 CURRENTGOAL IS [3] -~~~ -6095570 DOWN 11 -6095570 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6095610 homeCount = 99 -6095610 waitCount = 47 -6095611 ripCount = 44 -6095611 locktype1 = 2 -6095612 locktype2 = 7 -6095612 locktype3 = 5 -6095613 goalCount = 5 -6095613 goalTotal = 35 -6095614 otherCount = 50 -~~~ -6095615 CURRENTGOAL IS [3] -~~~ -6095619 UP 11 -6095619 1024 255 -6095697 DOWN 11 -6095697 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6095730 homeCount = 99 -6095730 waitCount = 47 -6095731 ripCount = 44 -6095731 locktype1 = 2 -6095732 locktype2 = 7 -6095732 locktype3 = 5 -6095733 goalCount = 5 -6095733 goalTotal = 35 -6095734 otherCount = 50 -~~~ -6095735 CURRENTGOAL IS [3] -~~~ -6100784 UP 4 -6100784 8 255 -~~~ -~~~ -6101758 DOWN 4 -6101758 0 255 -~~~ -~~~ -6101784 0 254 -~~~ -~~~ -6101785 0 252 -~~~ -~~~ -6101787 0 248 -~~~ -~~~ -6101789 0 240 -~~~ -~~~ -6101791 0 224 -~~~ -~~~ -6101793 0 192 -~~~ -~~~ -6101794 0 128 -~~~ -~~~ -6101796 0 0 -~~~ -~~~ -6101798 0 512 -6101799 homeCount = 99 -6101800 waitCount = 47 -6101800 ripCount = 44 -6101801 locktype1 = 2 -6101801 locktype2 = 7 -6101822 locktype3 = 5 -6101823 goalCount = 5 -6101823 goalTotal = 35 -6101824 otherCount = 51 -~~~ -6101824 8 512 -6101854 DOWN 4 -6101854 0 512 -6106062 UP 10 -6106062 waslock = 0 -6106062 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6106095 512 16777728 -~~~ -6106238 DOWN 10 -6106238 0 16777728 -6106245 0 512 -~~~ -~~~ -6106259 0 2560 -~~~ -~~~ -6106261 0 2048 -6106261 homeCount = 100 -6106262 waitCount = 47 -6106262 ripCount = 44 -6106263 locktype1 = 2 -6106263 locktype2 = 7 -6106264 locktype3 = 5 -6106264 goalCount = 5 -6106265 goalTotal = 35 -6106265 otherCount = 51 -~~~ -6106278 UP 10 -6106279 waslock = 0 -6106278 512 2048 -~~~ -6111719 DOWN 10 -6111719 0 2048 -~~~ -~~~ -~~~ -~~~ -6111739 homeCount = 100 -6111739 waitCount = 47 -6111740 ripCount = 44 -6111740 locktype1 = 2 -6111741 locktype2 = 7 -6111741 locktype3 = 5 -6111742 goalCount = 5 -6111742 goalTotal = 35 -6111743 otherCount = 51 -~~~ -6113476 UP 12 -6113476 2048 2048 -6115635 DOWN 12 -6115635 0 2048 -6115646 UP 12 -6115646 2048 2048 -6116424 DOWN 12 -6116424 0 2048 -6116461 UP 12 -6116461 2048 2048 -6119477 CLICK1 -6119477 CLICK2 -~~~ -~~~ -~~~ -6119497 2048 67110912 -~~~ -6119647 2048 2048 -6127039 DOWN 12 -6127039 0 2048 -~~~ -~~~ -6127056 0 0 -~~~ -~~~ -6127058 0 1 -~~~ -~~~ -6127059 0 3 -~~~ -~~~ -6127061 0 7 -~~~ -~~~ -6127063 0 15 -~~~ -~~~ -6127065 0 31 -~~~ -~~~ -6127067 0 63 -~~~ -~~~ -6127069 0 127 -~~~ -~~~ -6127070 UP 12 -6127070 2048 255 -6127072 homeCount = 100 -6127072 waitCount = 48 -6127073 ripCount = 44 -6127073 locktype1 = 2 -6127074 locktype2 = 7 -6127095 locktype3 = 5 -6127096 goalCount = 5 -6127096 goalTotal = 35 -6127097 otherCount = 51 -~~~ -6127098 CURRENTGOAL IS [3] -~~~ -6127133 DOWN 12 -6127133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6127167 homeCount = 100 -6127167 waitCount = 48 -6127168 ripCount = 44 -6127168 locktype1 = 2 -6127169 locktype2 = 7 -6127169 locktype3 = 5 -6127170 goalCount = 5 -6127170 goalTotal = 35 -6127170 otherCount = 51 -~~~ -6127172 CURRENTGOAL IS [3] -~~~ -6131072 UP 3 -6131072 4 255 -~~~ -~~~ -6131101 outer reward -~~~ -6131102 4 262399 -~~~ -~~~ -6131384 DOWN 3 -6131384 0 262399 -~~~ -~~~ -6131407 0 262398 -~~~ -~~~ -6131409 0 262396 -~~~ -~~~ -6131411 0 262392 -~~~ -~~~ -6131413 0 262384 -~~~ -~~~ -6131415 0 262368 -~~~ -~~~ -6131416 0 262336 -~~~ -6131418 4 262336 -~~~ -~~~ -6131419 4 262272 -~~~ -6131420 4 262144 -~~~ -~~~ -6131422 4 262656 -6131423 homeCount = 100 -6131424 waitCount = 48 -6131445 ripCount = 44 -6131445 locktype1 = 2 -6131446 locktype2 = 7 -6131446 locktype3 = 5 -6131446 goalCount = 6 -6131447 goalTotal = 36 -6131447 otherCount = 51 -~~~ -6131551 4 512 -6131811 DOWN 3 -6131811 0 512 -6131828 4 512 -6131927 DOWN 3 -6131927 0 512 -6131955 4 512 -6132052 DOWN 3 -6132052 0 512 -6132082 4 512 -6132182 DOWN 3 -6132182 0 512 -6132209 4 512 -6132313 DOWN 3 -6132313 0 512 -6132339 4 512 -6132450 DOWN 3 -6132450 0 512 -6132471 4 512 -6132587 DOWN 3 -6132587 0 512 -6132610 4 512 -6132731 DOWN 3 -6132731 0 512 -6132748 4 512 -6133033 DOWN 3 -6133033 0 512 -6133043 4 512 -6138943 DOWN 3 -6138943 0 512 -6138970 4 512 -6139046 DOWN 3 -6139046 0 512 -6139128 4 512 -6139165 DOWN 3 -6139165 0 512 -6143292 UP 10 -6143293 waslock = 0 -6143292 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6143325 512 16777728 -~~~ -6143475 512 512 -6147475 DOWN 10 -6147475 0 512 -~~~ -~~~ -6147499 0 1536 -~~~ -~~~ -6147501 0 1024 -6147502 homeCount = 101 -6147502 waitCount = 48 -6147503 ripCount = 44 -6147503 locktype1 = 2 -6147504 locktype2 = 7 -6147504 locktype3 = 5 -6147505 goalCount = 6 -6147505 goalTotal = 36 -6147506 otherCount = 51 -~~~ -6147549 UP 10 -6147549 waslock = 0 -6147549 512 1024 -~~~ -6147584 DOWN 10 -6147584 0 1024 -~~~ -~~~ -~~~ -~~~ -6147612 homeCount = 101 -6147613 waitCount = 48 -6147613 ripCount = 44 -6147614 locktype1 = 2 -6147614 locktype2 = 7 -6147615 locktype3 = 5 -6147615 goalCount = 6 -6147615 goalTotal = 36 -6147616 otherCount = 51 -~~~ -6149443 UP 11 -6149443 1024 1024 -6151946 DOWN 11 -6151946 0 1024 -6152022 UP 11 -6152022 1024 1024 -6152046 DOWN 11 -6152046 0 1024 -6152082 UP 11 -6152082 1024 1024 -6153249 DOWN 11 -6153249 0 1024 -6153276 UP 11 -6153276 1024 1024 -6157443 BEEP1 -6157443 BEEP2 -~~~ -~~~ -~~~ -6157469 1024 33555456 -~~~ -6157619 1024 1024 -6163143 DOWN 11 -6163142 0 1024 -6163159 UP 11 -6163159 1024 1024 -~~~ -~~~ -6163178 1024 0 -~~~ -~~~ -6163180 1024 1 -~~~ -~~~ -6163182 1024 3 -~~~ -~~~ -6163184 1024 7 -~~~ -~~~ -6163185 1024 15 -~~~ -~~~ -6163187 1024 31 -~~~ -~~~ -6163189 1024 63 -~~~ -~~~ -6163191 1024 127 -~~~ -~~~ -6163193 1024 255 -6163194 homeCount = 101 -6163194 waitCount = 48 -6163195 ripCount = 45 -6163195 locktype1 = 2 -6163216 locktype2 = 7 -6163216 locktype3 = 5 -6163217 goalCount = 6 -6163217 goalTotal = 36 -6163218 otherCount = 51 -~~~ -6163219 CURRENTGOAL IS [3] -~~~ -6163273 DOWN 11 -6163273 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -6163305 UP 11 -6163304 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6163317 homeCount = 101 -6163317 waitCount = 48 -6163318 ripCount = 45 -6163318 locktype1 = 2 -6163319 locktype2 = 7 -6163319 locktype3 = 5 -6163320 goalCount = 6 -6163320 goalTotal = 36 -6163321 otherCount = 51 -~~~ -6163322 CURRENTGOAL IS [3] -~~~ -6167538 DOWN 11 -6167538 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6167575 homeCount = 101 -6167576 waitCount = 48 -6167576 ripCount = 45 -6167577 locktype1 = 2 -6167577 locktype2 = 7 -6167578 locktype3 = 5 -6167578 goalCount = 6 -6167579 goalTotal = 36 -6167579 otherCount = 51 -~~~ -6167580 CURRENTGOAL IS [3] -~~~ -6167605 UP 11 -6167605 1024 255 -6167660 DOWN 11 -6167660 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6167698 homeCount = 101 -6167699 waitCount = 48 -6167700 ripCount = 45 -6167700 locktype1 = 2 -6167701 locktype2 = 7 -6167701 locktype3 = 5 -6167701 goalCount = 6 -6167702 goalTotal = 36 -6167702 otherCount = 51 -~~~ -6167704 CURRENTGOAL IS [3] -~~~ -6174471 UP 2 -6174471 2 255 -~~~ -~~~ -6174897 DOWN 2 -6174897 0 255 -~~~ -~~~ -6174923 0 254 -~~~ -~~~ -6174924 0 252 -~~~ -~~~ -6174926 0 248 -~~~ -~~~ -6174928 0 240 -~~~ -~~~ -6174930 0 224 -~~~ -~~~ -6174932 0 192 -~~~ -~~~ -6174934 0 128 -~~~ -~~~ -6174935 0 0 -~~~ -~~~ -6174937 0 512 -6174938 homeCount = 101 -6174939 waitCount = 48 -6174939 ripCount = 45 -6174940 locktype1 = 2 -6174940 locktype2 = 7 -6174961 locktype3 = 5 -6174962 goalCount = 6 -6174962 goalTotal = 36 -6174963 otherCount = 52 -~~~ -6178638 UP 10 -6178638 waslock = 0 -6178638 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6178661 512 16777728 -~~~ -6178781 DOWN 10 -6178781 0 16777728 -6178796 UP 10 -6178797 waslock = 0 -6178796 512 16777728 -6178811 512 512 -~~~ -~~~ -6178815 512 1536 -~~~ -~~~ -6178817 512 1024 -6178818 homeCount = 102 -6178818 waitCount = 48 -6178819 ripCount = 45 -6178819 locktype1 = 2 -6178820 locktype2 = 7 -6178820 locktype3 = 5 -6178821 goalCount = 6 -6178821 goalTotal = 36 -6178822 otherCount = 52 -~~~ -~~~ -6183138 DOWN 10 -6183138 0 1024 -~~~ -~~~ -~~~ -~~~ -6183158 homeCount = 102 -6183159 waitCount = 48 -6183159 ripCount = 45 -6183160 locktype1 = 2 -6183160 locktype2 = 7 -6183161 locktype3 = 5 -6183161 goalCount = 6 -6183161 goalTotal = 36 -6183162 otherCount = 52 -~~~ -6184941 UP 11 -6184941 1024 1024 -6186798 DOWN 11 -6186798 0 1024 -6186827 UP 11 -6186827 1024 1024 -6187258 DOWN 11 -6187258 0 1024 -6187286 UP 11 -6187286 1024 1024 -6188348 DOWN 11 -6188348 0 1024 -6188360 UP 11 -6188360 1024 1024 -6189441 BEEP1 -6189441 BEEP2 -~~~ -~~~ -~~~ -6189469 1024 33555456 -~~~ -6189619 1024 1024 -6190398 DOWN 11 -6190398 0 1024 -6190417 UP 11 -6190417 1024 1024 -~~~ -~~~ -6190424 1024 0 -~~~ -~~~ -6190426 1024 1 -~~~ -~~~ -6190428 1024 3 -~~~ -~~~ -6190429 1024 7 -~~~ -~~~ -6190431 1024 15 -~~~ -~~~ -6190433 1024 31 -~~~ -~~~ -6190435 1024 63 -~~~ -~~~ -6190437 1024 127 -~~~ -~~~ -6190438 1024 255 -6190439 homeCount = 102 -6190440 waitCount = 48 -6190441 ripCount = 46 -6190441 locktype1 = 2 -6190462 locktype2 = 7 -6190462 locktype3 = 5 -6190463 goalCount = 6 -6190463 goalTotal = 36 -6190464 otherCount = 52 -~~~ -6190465 CURRENTGOAL IS [3] -~~~ -6190523 DOWN 11 -6190523 0 255 -6190528 UP 11 -6190528 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190560 homeCount = 102 -6190561 waitCount = 48 -6190561 ripCount = 46 -6190562 locktype1 = 2 -6190562 locktype2 = 7 -6190563 locktype3 = 5 -6190563 goalCount = 6 -6190564 goalTotal = 36 -6190564 otherCount = 52 -~~~ -6190565 CURRENTGOAL IS [3] -~~~ -6190622 DOWN 11 -6190622 0 255 -~~~ -~~~ -~~~ -6190646 UP 11 -6190646 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190660 homeCount = 102 -6190660 waitCount = 48 -6190661 ripCount = 46 -6190661 locktype1 = 2 -6190662 locktype2 = 7 -6190662 locktype3 = 5 -6190663 goalCount = 6 -6190663 goalTotal = 36 -6190664 otherCount = 52 -~~~ -6190665 CURRENTGOAL IS [3] -~~~ -6190698 DOWN 11 -6190698 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190740 homeCount = 102 -6190741 waitCount = 48 -6190741 ripCount = 46 -6190742 locktype1 = 2 -6190742 locktype2 = 7 -6190743 locktype3 = 5 -6190743 goalCount = 6 -6190744 goalTotal = 36 -6190744 otherCount = 52 -~~~ -6190745 CURRENTGOAL IS [3] -~~~ -6190756 UP 11 -6190756 1024 255 -6190794 DOWN 11 -6190794 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190830 homeCount = 102 -6190830 waitCount = 48 -6190831 ripCount = 46 -6190831 locktype1 = 2 -6190832 locktype2 = 7 -6190832 locktype3 = 5 -6190833 goalCount = 6 -6190833 goalTotal = 36 -6190834 otherCount = 52 -~~~ -6190835 CURRENTGOAL IS [3] -~~~ -6190983 UP 11 -6190983 1024 255 -6191069 DOWN 11 -6191069 0 255 -6191089 UP 11 -6191089 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6191108 DOWN 11 -6191108 0 255 -~~~ -~~~ -6191110 homeCount = 102 -6191111 waitCount = 48 -6191111 ripCount = 46 -6191112 locktype1 = 2 -6191112 locktype2 = 7 -6191113 locktype3 = 5 -6191113 goalCount = 6 -6191114 goalTotal = 36 -6191114 otherCount = 52 -~~~ -6191115 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6191164 homeCount = 102 -6191165 waitCount = 48 -6191165 ripCount = 46 -6191166 locktype1 = 2 -6191166 locktype2 = 7 -6191167 locktype3 = 5 -6191167 goalCount = 6 -6191168 goalTotal = 36 -6191168 otherCount = 52 -~~~ -6191169 CURRENTGOAL IS [3] -~~~ -6191273 UP 11 -6191273 1024 255 -6198093 DOWN 11 -6198093 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6198130 homeCount = 102 -6198130 waitCount = 48 -6198131 ripCount = 46 -6198131 locktype1 = 2 -6198132 locktype2 = 7 -6198132 locktype3 = 5 -6198133 goalCount = 6 -6198133 goalTotal = 36 -6198134 otherCount = 52 -~~~ -6198135 CURRENTGOAL IS [3] -~~~ -6202523 UP 7 -6202523 64 255 -~~~ -~~~ -6203214 DOWN 7 -6203214 0 255 -~~~ -~~~ -6203234 0 254 -~~~ -~~~ -6203236 0 252 -~~~ -~~~ -6203237 0 248 -~~~ -~~~ -6203239 0 240 -~~~ -~~~ -6203241 0 224 -~~~ -~~~ -6203243 0 192 -~~~ -~~~ -6203245 0 128 -~~~ -~~~ -6203247 0 0 -~~~ -~~~ -6203248 0 512 -6203249 homeCount = 102 -6203250 waitCount = 48 -6203250 ripCount = 46 -6203251 locktype1 = 2 -6203251 locktype2 = 7 -6203273 locktype3 = 5 -6203273 goalCount = 6 -6203274 goalTotal = 36 -6203274 otherCount = 53 -~~~ -6207230 UP 10 -6207230 waslock = 0 -6207230 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6207261 512 16777728 -~~~ -6207411 512 512 -6207527 DOWN 10 -6207527 0 512 -~~~ -~~~ -6207550 0 2560 -~~~ -~~~ -6207551 0 2048 -6207552 homeCount = 103 -6207553 waitCount = 48 -6207553 ripCount = 46 -6207554 locktype1 = 2 -6207554 locktype2 = 7 -6207555 locktype3 = 5 -6207555 goalCount = 6 -6207556 goalTotal = 36 -6207556 otherCount = 53 -~~~ -6207598 UP 10 -6207598 waslock = 0 -6207598 512 2048 -~~~ -6212686 DOWN 10 -6212686 0 2048 -~~~ -~~~ -~~~ -~~~ -6212708 homeCount = 103 -6212709 waitCount = 48 -6212709 ripCount = 46 -6212710 locktype1 = 2 -6212710 locktype2 = 7 -6212711 locktype3 = 5 -6212711 goalCount = 6 -6212712 goalTotal = 36 -6212712 otherCount = 53 -~~~ -6212713 UP 10 -6212713 waslock = 0 -6212713 512 2048 -~~~ -6212776 DOWN 10 -6212775 0 2048 -~~~ -~~~ -~~~ -~~~ -6212795 homeCount = 103 -6212796 waitCount = 48 -6212796 ripCount = 46 -6212797 locktype1 = 2 -6212797 locktype2 = 7 -6212798 locktype3 = 5 -6212798 goalCount = 6 -6212799 goalTotal = 36 -6212799 otherCount = 53 -~~~ -6214555 UP 12 -6214555 2048 2048 -6217353 DOWN 12 -6217353 0 2048 -6217356 UP 12 -6217356 2048 2048 -6217399 DOWN 12 -6217398 0 2048 -6217438 UP 12 -6217438 2048 2048 -6217465 DOWN 12 -6217465 0 2048 -6217505 UP 12 -6217505 2048 2048 -6217817 DOWN 12 -6217817 0 2048 -6217832 UP 12 -6217831 2048 2048 -6219593 DOWN 12 -6219593 0 2048 -6219608 UP 12 -6219608 2048 2048 -6219625 DOWN 12 -6219625 0 2048 -6219676 UP 12 -6219676 2048 2048 -6219797 DOWN 12 -6219797 0 2048 -6219831 UP 12 -6219831 2048 2048 -6219937 DOWN 12 -6219937 0 2048 -6219953 UP 12 -6219953 2048 2048 -6221555 CLICK1 -6221555 CLICK2 -~~~ -~~~ -~~~ -6221572 2048 67110912 -~~~ -6221722 2048 2048 -6227526 DOWN 12 -6227526 0 2048 -~~~ -~~~ -6227551 0 0 -~~~ -6227552 UP 12 -6227552 2048 0 -~~~ -~~~ -6227554 2048 1 -~~~ -~~~ -6227556 2048 3 -~~~ -6227557 2048 7 -~~~ -~~~ -6227559 2048 15 -~~~ -~~~ -6227560 2048 31 -~~~ -~~~ -6227562 2048 63 -~~~ -~~~ -6227564 2048 127 -~~~ -~~~ -6227566 2048 255 -6227567 homeCount = 103 -6227588 waitCount = 49 -6227588 ripCount = 46 -6227589 locktype1 = 2 -6227589 locktype2 = 7 -6227590 locktype3 = 5 -6227590 goalCount = 6 -6227591 goalTotal = 36 -6227591 otherCount = 53 -~~~ -6227592 CURRENTGOAL IS [3] -~~~ -6227652 DOWN 12 -6227652 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227689 homeCount = 103 -6227689 waitCount = 49 -6227690 ripCount = 46 -6227690 locktype1 = 2 -6227691 locktype2 = 7 -6227691 locktype3 = 5 -6227692 goalCount = 6 -6227692 goalTotal = 36 -6227693 otherCount = 53 -~~~ -6227694 CURRENTGOAL IS [3] -~~~ -6227745 UP 12 -6227745 2048 255 -6227816 DOWN 12 -6227816 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227853 homeCount = 103 -6227853 waitCount = 49 -6227854 ripCount = 46 -6227854 locktype1 = 2 -6227855 locktype2 = 7 -6227855 locktype3 = 5 -6227856 goalCount = 6 -6227856 goalTotal = 36 -6227857 otherCount = 53 -~~~ -6227858 CURRENTGOAL IS [3] -~~~ -6227893 UP 12 -6227893 2048 255 -6227926 DOWN 12 -6227926 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227964 homeCount = 103 -6227965 waitCount = 49 -6227966 ripCount = 46 -6227966 locktype1 = 2 -6227967 locktype2 = 7 -6227967 locktype3 = 5 -6227967 goalCount = 6 -6227968 goalTotal = 36 -6227968 otherCount = 53 -~~~ -6227970 CURRENTGOAL IS [3] -~~~ -6231199 UP 3 -6231199 4 255 -~~~ -~~~ -6231224 outer reward -~~~ -6231224 4 262399 -~~~ -~~~ -6231461 DOWN 3 -6231461 0 262399 -~~~ -~~~ -6231481 0 262398 -~~~ -~~~ -6231483 0 262396 -~~~ -~~~ -6231484 0 262392 -~~~ -~~~ -6231486 0 262384 -~~~ -~~~ -6231488 0 262368 -~~~ -~~~ -6231490 0 262336 -~~~ -~~~ -6231492 0 262272 -~~~ -~~~ -6231493 0 262144 -~~~ -~~~ -6231495 0 262656 -6231496 homeCount = 103 -6231497 waitCount = 49 -6231497 ripCount = 46 -6231498 locktype1 = 2 -6231519 locktype2 = 7 -6231519 locktype3 = 5 -6231520 goalCount = 7 -6231520 goalTotal = 37 -6231521 otherCount = 53 -~~~ -6231521 4 262656 -6231674 4 512 -6232282 DOWN 3 -6232282 0 512 -6232288 4 512 -6232415 DOWN 3 -6232415 0 512 -6232423 4 512 -6232682 DOWN 3 -6232682 0 512 -6232691 4 512 -6232821 DOWN 3 -6232821 0 512 -6232830 4 512 -6239654 DOWN 3 -6239654 0 512 -6239693 4 512 -6239759 DOWN 3 -6239759 0 512 -6243665 UP 10 -6243665 waslock = 0 -6243665 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6243697 512 16777728 -~~~ -6243847 512 512 -6247688 DOWN 10 -6247688 0 512 -~~~ -~~~ -6247711 0 2560 -~~~ -~~~ -6247713 0 2048 -6247714 homeCount = 104 -6247714 waitCount = 49 -6247715 ripCount = 46 -6247715 locktype1 = 2 -6247716 locktype2 = 7 -6247716 locktype3 = 5 -6247717 goalCount = 7 -6247717 goalTotal = 37 -6247718 otherCount = 53 -~~~ -6247723 UP 10 -6247723 waslock = 0 -6247723 512 2048 -~~~ -6247911 DOWN 10 -6247911 0 2048 -6247926 UP 10 -6247926 waslock = 0 -6247926 512 2048 -~~~ -~~~ -~~~ -~~~ -6247936 homeCount = 104 -6247937 waitCount = 49 -6247937 ripCount = 46 -6247938 locktype1 = 2 -6247938 locktype2 = 7 -6247939 locktype3 = 5 -6247939 goalCount = 7 -6247940 goalTotal = 37 -6247940 otherCount = 53 -~~~ -6247944 DOWN 10 -6247944 0 2048 -~~~ -6247985 UP 10 -6247986 waslock = 0 -6247985 512 2048 -~~~ -~~~ -~~~ -~~~ -6247991 homeCount = 104 -6247992 waitCount = 49 -6247992 ripCount = 46 -6247993 locktype1 = 2 -6247993 locktype2 = 7 -6247994 locktype3 = 5 -6247994 goalCount = 7 -6247995 goalTotal = 37 -6247995 otherCount = 53 -~~~ -~~~ -6248478 DOWN 10 -6248478 0 2048 -~~~ -~~~ -~~~ -~~~ -6248498 homeCount = 104 -6248498 waitCount = 49 -6248499 ripCount = 46 -6248499 locktype1 = 2 -6248499 locktype2 = 7 -6248500 locktype3 = 5 -6248500 goalCount = 7 -6248501 goalTotal = 37 -6248501 otherCount = 53 -~~~ -6250170 UP 12 -6250170 2048 2048 -6253007 DOWN 12 -6253007 0 2048 -6253018 UP 12 -6253018 2048 2048 -6253170 CLICK1 -6253170 CLICK2 -~~~ -~~~ -~~~ -6253198 2048 67110912 -~~~ -6253274 DOWN 12 -6253274 0 67110912 -6253295 UP 12 -6253295 2048 67110912 -6253348 2048 2048 -~~~ -~~~ -6253374 2048 0 -~~~ -~~~ -6253376 2048 1 -~~~ -~~~ -6253378 2048 3 -~~~ -~~~ -6253380 2048 7 -~~~ -~~~ -6253382 2048 15 -~~~ -~~~ -6253384 2048 31 -~~~ -~~~ -6253385 2048 63 -~~~ -~~~ -6253387 2048 127 -~~~ -~~~ -6253389 2048 255 -6253390 homeCount = 104 -6253390 waitCount = 50 -6253391 ripCount = 46 -6253392 locktype1 = 2 -6253412 locktype2 = 7 -6253413 locktype3 = 5 -6253413 goalCount = 7 -6253414 goalTotal = 37 -6253414 otherCount = 53 -~~~ -6253415 CURRENTGOAL IS [3] -~~~ -6253465 DOWN 12 -6253465 0 255 -6253469 UP 12 -6253469 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6253503 homeCount = 104 -6253504 waitCount = 50 -6253504 ripCount = 46 -6253505 locktype1 = 2 -6253505 locktype2 = 7 -6253506 locktype3 = 5 -6253506 goalCount = 7 -6253507 goalTotal = 37 -6253507 otherCount = 53 -~~~ -6253508 CURRENTGOAL IS [3] -~~~ -6259155 DOWN 12 -6259155 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259190 UP 12 -6259190 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -6259195 homeCount = 104 -6259196 waitCount = 50 -6259196 ripCount = 46 -6259197 locktype1 = 2 -6259197 locktype2 = 7 -6259198 locktype3 = 5 -6259198 goalCount = 7 -6259199 goalTotal = 37 -6259199 otherCount = 53 -~~~ -6259200 CURRENTGOAL IS [3] -~~~ -6259288 DOWN 12 -6259288 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259323 homeCount = 104 -6259324 waitCount = 50 -6259324 ripCount = 46 -6259325 locktype1 = 2 -6259325 locktype2 = 7 -6259326 locktype3 = 5 -6259326 goalCount = 7 -6259326 goalTotal = 37 -6259327 otherCount = 53 -~~~ -6259328 CURRENTGOAL IS [3] -~~~ -6259354 UP 12 -6259354 2048 255 -6259423 DOWN 12 -6259423 0 255 -6259433 UP 12 -6259433 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259464 homeCount = 104 -6259464 waitCount = 50 -6259465 ripCount = 46 -6259465 locktype1 = 2 -6259466 locktype2 = 7 -6259466 locktype3 = 5 -6259467 goalCount = 7 -6259467 goalTotal = 37 -6259468 otherCount = 53 -~~~ -6259469 CURRENTGOAL IS [3] -~~~ -6259556 DOWN 12 -6259556 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259593 homeCount = 104 -6259593 waitCount = 50 -6259594 ripCount = 46 -6259594 locktype1 = 2 -6259595 locktype2 = 7 -6259595 locktype3 = 5 -6259596 goalCount = 7 -6259596 goalTotal = 37 -6259597 otherCount = 53 -~~~ -6259598 CURRENTGOAL IS [3] -~~~ -6259605 UP 12 -6259605 2048 255 -6262944 DOWN 12 -6262944 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6262983 homeCount = 104 -6262984 waitCount = 50 -6262984 ripCount = 46 -6262985 locktype1 = 2 -6262985 locktype2 = 7 -6262986 locktype3 = 5 -6262986 goalCount = 7 -6262987 goalTotal = 37 -6262987 otherCount = 53 -~~~ -6262988 CURRENTGOAL IS [3] -~~~ -6263015 UP 12 -6263015 2048 255 -6263063 DOWN 12 -6263063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6263105 homeCount = 104 -6263106 waitCount = 50 -6263106 ripCount = 46 -6263107 locktype1 = 2 -6263107 locktype2 = 7 -6263108 locktype3 = 5 -6263108 goalCount = 7 -6263109 goalTotal = 37 -6263109 otherCount = 53 -~~~ -6263110 CURRENTGOAL IS [3] -~~~ -6267639 UP 3 -6267639 4 255 -~~~ -~~~ -6267661 outer reward -~~~ -6267661 4 262399 -~~~ -~~~ -6267664 DOWN 3 -6267664 0 262399 -~~~ -~~~ -6267681 0 262398 -~~~ -~~~ -6267683 0 262396 -~~~ -~~~ -6267685 0 262392 -~~~ -~~~ -6267687 0 262384 -~~~ -~~~ -6267688 0 262368 -~~~ -~~~ -6267690 0 262336 -~~~ -~~~ -6267692 0 262272 -~~~ -~~~ -6267694 0 262144 -~~~ -~~~ -6267696 0 262656 -6267697 homeCount = 104 -6267697 waitCount = 50 -6267698 ripCount = 46 -6267719 locktype1 = 2 -6267719 locktype2 = 7 -6267720 locktype3 = 5 -6267720 goalCount = 8 -6267721 goalTotal = 38 -6267721 otherCount = 53 -~~~ -6267722 4 262656 -6267864 DOWN 3 -6267864 0 262656 -6267907 4 262656 -6268111 4 512 -6268292 DOWN 3 -6268292 0 512 -6268311 4 512 -6268414 DOWN 3 -6268414 0 512 -6268420 4 512 -6268533 DOWN 3 -6268533 0 512 -6268554 4 512 -6268660 DOWN 3 -6268660 0 512 -6268682 4 512 -6268788 DOWN 3 -6268788 0 512 -6268816 4 512 -6268915 DOWN 3 -6268915 0 512 -6268939 4 512 -6269056 DOWN 3 -6269056 0 512 -6269079 4 512 -6269201 DOWN 3 -6269201 0 512 -6269219 4 512 -6269342 DOWN 3 -6269342 0 512 -6269357 4 512 -6275261 DOWN 3 -6275261 0 512 -6275326 4 512 -6275364 DOWN 3 -6275364 0 512 -6279323 UP 10 -6279324 waslock = 0 -6279323 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6279349 512 16777728 -~~~ -6279499 512 512 -6279523 DOWN 10 -6279523 0 512 -~~~ -~~~ -6279540 0 2560 -~~~ -~~~ -6279542 0 2048 -6279543 homeCount = 105 -6279544 waitCount = 50 -6279544 ripCount = 46 -6279545 locktype1 = 2 -6279545 locktype2 = 7 -6279546 locktype3 = 5 -6279546 goalCount = 8 -6279547 goalTotal = 38 -6279547 otherCount = 53 -~~~ -6279555 UP 10 -6279556 waslock = 0 -6279555 512 2048 -~~~ -6284324 DOWN 10 -6284324 0 2048 -~~~ -~~~ -~~~ -~~~ -6284344 homeCount = 105 -6284345 waitCount = 50 -6284345 ripCount = 46 -6284346 locktype1 = 2 -6284346 locktype2 = 7 -6284346 locktype3 = 5 -6284347 goalCount = 8 -6284347 goalTotal = 38 -6284348 otherCount = 53 -~~~ -6286304 UP 12 -6286304 2048 2048 -6287753 DOWN 12 -6287753 0 2048 -6287762 UP 12 -6287762 2048 2048 -6288087 DOWN 12 -6288087 0 2048 -6288126 UP 12 -6288126 2048 2048 -6291804 CLICK1 -6291804 CLICK2 -~~~ -~~~ -~~~ -6291824 2048 67110912 -~~~ -6291974 2048 2048 -6292013 DOWN 12 -6292013 0 2048 -~~~ -6292031 UP 12 -6292031 2048 2048 -~~~ -~~~ -6292033 2048 0 -~~~ -~~~ -6292035 2048 1 -~~~ -6292036 2048 3 -~~~ -~~~ -6292037 2048 7 -~~~ -~~~ -6292039 2048 15 -~~~ -~~~ -6292041 2048 31 -~~~ -~~~ -6292043 2048 63 -~~~ -~~~ -6292044 2048 127 -~~~ -~~~ -6292046 2048 255 -6292047 homeCount = 105 -6292069 waitCount = 51 -6292069 ripCount = 46 -6292069 locktype1 = 2 -6292070 locktype2 = 7 -6292070 locktype3 = 5 -6292071 goalCount = 8 -6292071 goalTotal = 38 -6292072 otherCount = 53 -~~~ -6292073 CURRENTGOAL IS [3] -~~~ -6303041 DOWN 12 -6303041 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6303078 homeCount = 105 -6303078 waitCount = 51 -6303079 ripCount = 46 -6303079 locktype1 = 2 -6303080 locktype2 = 7 -6303080 locktype3 = 5 -6303081 goalCount = 8 -6303081 goalTotal = 38 -6303082 otherCount = 53 -~~~ -6303083 CURRENTGOAL IS [3] -~~~ -6315313 UP 3 -6315313 4 255 -~~~ -~~~ -6315334 outer reward -~~~ -6315334 4 262399 -~~~ -~~~ -6315575 DOWN 3 -6315575 0 262399 -~~~ -~~~ -6315601 0 262398 -~~~ -~~~ -6315603 0 262396 -~~~ -~~~ -6315605 0 262392 -~~~ -~~~ -6315607 0 262384 -~~~ -~~~ -6315609 0 262368 -~~~ -~~~ -6315610 0 262336 -~~~ -~~~ -6315612 0 262272 -~~~ -~~~ -6315614 0 262144 -~~~ -~~~ -6315616 0 262656 -6315617 homeCount = 105 -6315618 waitCount = 51 -6315618 ripCount = 46 -6315618 locktype1 = 2 -6315639 locktype2 = 7 -6315640 locktype3 = 5 -6315640 goalCount = 9 -6315641 goalTotal = 39 -6315641 otherCount = 53 -~~~ -6315642 4 262656 -6315784 4 512 -6316000 DOWN 3 -6316000 0 512 -6316026 4 512 -6316119 DOWN 3 -6316119 0 512 -6316154 4 512 -6316241 DOWN 3 -6316241 0 512 -6316280 4 512 -6316365 DOWN 3 -6316365 0 512 -6316407 4 512 -6316494 DOWN 3 -6316494 0 512 -6316535 4 512 -6316625 DOWN 3 -6316625 0 512 -6316661 4 512 -6316759 DOWN 3 -6316759 0 512 -6316793 4 512 -6316912 DOWN 3 -6316912 0 512 -6316933 4 512 -6317060 DOWN 3 -6317060 0 512 -6317083 4 512 -6317210 DOWN 3 -6317210 0 512 -6317225 4 512 -6317355 DOWN 3 -6317355 0 512 -6317371 4 512 -6320953 DOWN 3 -6320953 0 512 -6320959 4 512 -6323512 DOWN 3 -6323512 0 512 -6323580 4 512 -6323594 DOWN 3 -6323594 0 512 -6329005 UP 10 -6329005 waslock = 0 -6329005 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6329038 512 16777728 -~~~ -6329156 DOWN 10 -6329156 0 16777728 -~~~ -~~~ -6329185 0 16779776 -~~~ -~~~ -6329187 0 16779264 -6329188 homeCount = 106 -6329189 waitCount = 51 -6329189 ripCount = 46 -6329190 locktype1 = 2 -6329190 locktype2 = 7 -6329191 locktype3 = 5 -6329191 goalCount = 9 -6329192 goalTotal = 39 -6329192 otherCount = 53 -~~~ -6329213 UP 10 -6329214 waslock = 0 -6329213 512 2048 -~~~ -6333127 DOWN 10 -6333127 0 2048 -~~~ -~~~ -~~~ -~~~ -6333148 homeCount = 106 -6333149 waitCount = 51 -6333149 ripCount = 46 -6333150 locktype1 = 2 -6333150 locktype2 = 7 -6333151 locktype3 = 5 -6333151 goalCount = 9 -6333151 goalTotal = 39 -6333152 otherCount = 53 -~~~ -6334853 UP 12 -6334853 2048 2048 -6336358 DOWN 12 -6336358 0 2048 -6336394 UP 12 -6336394 2048 2048 -6336421 DOWN 12 -6336421 0 2048 -6336448 UP 12 -6336448 2048 2048 -6339836 DOWN 12 -6339836 0 2048 -6339849 UP 12 -6339849 2048 2048 -6340353 CLICK1 -6340353 CLICK2 -~~~ -~~~ -~~~ -6340372 2048 67110912 -~~~ -6340522 2048 2048 -6348413 DOWN 12 -6348413 0 2048 -~~~ -~~~ -6348439 0 0 -~~~ -~~~ -6348441 0 1 -~~~ -~~~ -6348442 0 3 -~~~ -~~~ -6348444 0 7 -~~~ -~~~ -6348446 0 15 -~~~ -~~~ -6348448 0 31 -~~~ -~~~ -6348450 0 63 -~~~ -~~~ -6348452 0 127 -~~~ -~~~ -6348453 0 255 -6348454 homeCount = 106 -6348455 waitCount = 52 -6348455 ripCount = 46 -6348456 locktype1 = 2 -6348456 locktype2 = 7 -6348478 locktype3 = 5 -6348478 goalCount = 9 -6348479 goalTotal = 39 -6348479 otherCount = 53 -~~~ -6348480 CURRENTGOAL IS [3] -~~~ -6348481 UP 12 -6348481 2048 255 -6348533 DOWN 12 -6348533 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6348567 homeCount = 106 -6348567 waitCount = 52 -6348568 ripCount = 46 -6348568 locktype1 = 2 -6348569 locktype2 = 7 -6348569 locktype3 = 5 -6348570 goalCount = 9 -6348570 goalTotal = 39 -6348571 otherCount = 53 -~~~ -6348572 CURRENTGOAL IS [3] -~~~ -6348593 UP 12 -6348593 2048 255 -6348632 DOWN 12 -6348631 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6348670 homeCount = 106 -6348671 waitCount = 52 -6348671 ripCount = 46 -6348672 locktype1 = 2 -6348672 locktype2 = 7 -6348673 locktype3 = 5 -6348673 goalCount = 9 -6348674 goalTotal = 39 -6348674 otherCount = 53 -~~~ -6348675 CURRENTGOAL IS [3] -~~~ -6348773 UP 12 -6348773 2048 255 -6349353 DOWN 12 -6349352 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6349389 homeCount = 106 -6349389 waitCount = 52 -6349390 ripCount = 46 -6349390 locktype1 = 2 -6349391 locktype2 = 7 -6349391 locktype3 = 5 -6349392 goalCount = 9 -6349392 goalTotal = 39 -6349393 otherCount = 53 -~~~ -6349394 CURRENTGOAL IS [3] -~~~ -6349471 UP 12 -6349471 2048 255 -6349488 DOWN 12 -6349488 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6349526 homeCount = 106 -6349527 waitCount = 52 -6349528 ripCount = 46 -6349528 locktype1 = 2 -6349529 locktype2 = 7 -6349529 locktype3 = 5 -6349529 goalCount = 9 -6349530 goalTotal = 39 -6349530 otherCount = 53 -~~~ -6349531 CURRENTGOAL IS [3] -~~~ -6352357 UP 3 -6352357 4 255 -6352373 DOWN 3 -6352373 0 255 -~~~ -~~~ -6352379 outer reward -~~~ -6352379 0 262399 -~~~ -~~~ -6352384 outerreps = 8 -~~~ -~~~ -~~~ -~~~ -6352397 0 262398 -~~~ -~~~ -6352399 0 262396 -~~~ -~~~ -6352401 0 262392 -~~~ -~~~ -6352403 0 262384 -~~~ -~~~ -6352404 0 262368 -~~~ -~~~ -6352406 0 262336 -~~~ -~~~ -6352408 0 262272 -~~~ -~~~ -6352410 0 262144 -~~~ -~~~ -6352412 0 262656 -6352413 homeCount = 106 -6352413 waitCount = 52 -6352414 ripCount = 46 -6352435 locktype1 = 2 -6352435 locktype2 = 7 -6352436 locktype3 = 5 -6352436 goalCount = 0 -6352437 goalTotal = 40 -6352437 otherCount = 53 -~~~ -6352438 4 262656 -6352613 DOWN 3 -6352613 0 262656 -6352654 4 262656 -6352829 4 512 -6353457 DOWN 3 -6353457 0 512 -6353469 4 512 -6353587 DOWN 3 -6353587 0 512 -6353600 4 512 -6353729 DOWN 3 -6353729 0 512 -6353735 4 512 -6353868 DOWN 3 -6353868 0 512 -6353873 4 512 -6360563 DOWN 3 -6360563 0 512 -6364715 UP 10 -6364715 waslock = 0 -6364715 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6364745 512 16777728 -~~~ -6364878 DOWN 10 -6364878 0 16777728 -6364892 UP 10 -6364892 waslock = 0 -6364891 512 16777728 -6364895 512 512 -~~~ -~~~ -6364910 512 2560 -~~~ -~~~ -6364912 512 2048 -6364913 homeCount = 107 -6364913 waitCount = 52 -6364914 ripCount = 46 -6364914 locktype1 = 2 -6364915 locktype2 = 7 -6364915 locktype3 = 5 -6364916 goalCount = 0 -6364916 goalTotal = 40 -6364917 otherCount = 53 -~~~ -~~~ -6367991 DOWN 10 -6367991 0 2048 -6368002 UP 10 -6368002 waslock = 0 -6368002 512 2048 -~~~ -~~~ -~~~ -~~~ -6368025 homeCount = 107 -6368026 waitCount = 52 -6368026 ripCount = 46 -6368027 locktype1 = 2 -6368027 locktype2 = 7 -6368028 locktype3 = 5 -6368028 goalCount = 0 -6368029 goalTotal = 40 -6368029 otherCount = 53 -~~~ -~~~ -6368090 DOWN 10 -6368090 0 2048 -~~~ -~~~ -~~~ -~~~ -6368115 homeCount = 107 -6368116 waitCount = 52 -6368116 ripCount = 46 -6368117 locktype1 = 2 -6368117 locktype2 = 7 -6368118 locktype3 = 5 -6368118 goalCount = 0 -6368119 goalTotal = 40 -6368119 otherCount = 53 -~~~ -6369955 UP 12 -6369955 2048 2048 -6370697 DOWN 12 -6370697 0 2048 -6370710 UP 12 -6370710 2048 2048 -6372380 DOWN 12 -6372380 0 2048 -6372417 UP 12 -6372417 2048 2048 -6372446 DOWN 12 -6372446 0 2048 -6372474 UP 12 -6372474 2048 2048 -6373955 CLICK1 -6373955 CLICK2 -~~~ -~~~ -~~~ -6373985 2048 67110912 -~~~ -6374135 2048 2048 -6381542 DOWN 12 -6381542 0 2048 -~~~ -~~~ -6381563 0 0 -~~~ -~~~ -6381564 0 1 -~~~ -~~~ -6381566 0 3 -~~~ -~~~ -6381568 0 7 -~~~ -~~~ -6381570 0 15 -~~~ -~~~ -6381572 0 31 -~~~ -~~~ -6381574 0 63 -~~~ -~~~ -6381575 0 127 -~~~ -~~~ -6381577 0 255 -6381578 homeCount = 107 -6381579 waitCount = 53 -6381579 ripCount = 46 -6381580 locktype1 = 2 -6381580 locktype2 = 7 -6381581 locktype3 = 5 -6381602 goalCount = 0 -6381602 goalTotal = 40 -6381603 otherCount = 53 -~~~ -6381604 CURRENTGOAL IS [7] -~~~ -6381604 UP 12 -6381604 2048 255 -6381673 DOWN 12 -6381673 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6381708 homeCount = 107 -6381709 waitCount = 53 -6381709 ripCount = 46 -6381710 locktype1 = 2 -6381710 locktype2 = 7 -6381711 locktype3 = 5 -6381711 goalCount = 0 -6381712 goalTotal = 40 -6381712 otherCount = 53 -~~~ -6381713 CURRENTGOAL IS [7] -~~~ -6381775 UP 12 -6381775 2048 255 -6383359 DOWN 12 -6383359 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6383398 homeCount = 107 -6383399 waitCount = 53 -6383399 ripCount = 46 -6383400 locktype1 = 2 -6383400 locktype2 = 7 -6383401 locktype3 = 5 -6383401 goalCount = 0 -6383402 goalTotal = 40 -6383402 otherCount = 53 -~~~ -6383403 CURRENTGOAL IS [7] -~~~ -6383439 UP 12 -6383439 2048 255 -6383453 DOWN 12 -6383453 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6383489 homeCount = 107 -6383490 waitCount = 53 -6383490 ripCount = 46 -6383491 locktype1 = 2 -6383491 locktype2 = 7 -6383492 locktype3 = 5 -6383492 goalCount = 0 -6383492 goalTotal = 40 -6383493 otherCount = 53 -~~~ -6383494 CURRENTGOAL IS [7] -~~~ -6386266 UP 3 -6386266 4 255 -~~~ -~~~ -6386457 DOWN 3 -6386457 0 255 -~~~ -~~~ -6386481 0 254 -~~~ -~~~ -6386483 0 252 -~~~ -~~~ -6386485 0 248 -~~~ -~~~ -6386486 0 240 -~~~ -~~~ -6386488 0 224 -~~~ -~~~ -6386490 0 192 -~~~ -~~~ -6386492 0 128 -~~~ -~~~ -6386494 0 0 -~~~ -~~~ -6386496 0 512 -6386497 homeCount = 107 -6386497 waitCount = 53 -6386498 ripCount = 46 -6386498 locktype1 = 2 -6386499 locktype2 = 7 -6386520 locktype3 = 5 -6386520 goalCount = 0 -6386521 goalTotal = 40 -6386521 otherCount = 54 -~~~ -6386522 4 512 -6387215 DOWN 3 -6387215 0 512 -6387280 4 512 -6387330 DOWN 3 -6387330 0 512 -6391562 UP 10 -6391563 waslock = 0 -6391562 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6391588 512 16777728 -~~~ -6391612 DOWN 10 -6391612 0 16777728 -~~~ -~~~ -6391632 0 16779776 -~~~ -~~~ -6391634 0 16779264 -6391635 homeCount = 108 -6391635 waitCount = 53 -6391636 ripCount = 46 -6391636 locktype1 = 2 -6391637 locktype2 = 7 -6391637 locktype3 = 5 -6391638 goalCount = 0 -6391638 goalTotal = 40 -6391639 otherCount = 54 -~~~ -6391738 0 2048 -6391756 UP 10 -6391757 waslock = 0 -6391756 512 2048 -~~~ -6396193 DOWN 10 -6396193 0 2048 -~~~ -~~~ -6396213 UP 10 -6396213 waslock = 0 -6396213 512 2048 -~~~ -~~~ -6396215 homeCount = 108 -6396216 waitCount = 53 -6396216 ripCount = 46 -6396217 locktype1 = 2 -6396217 locktype2 = 7 -6396218 locktype3 = 5 -6396218 goalCount = 0 -6396219 goalTotal = 40 -6396219 otherCount = 54 -~~~ -~~~ -6396293 DOWN 10 -6396293 0 2048 -~~~ -~~~ -~~~ -~~~ -6396321 homeCount = 108 -6396321 waitCount = 53 -6396322 ripCount = 46 -6396322 locktype1 = 2 -6396323 locktype2 = 7 -6396323 locktype3 = 5 -6396324 goalCount = 0 -6396324 goalTotal = 40 -6396325 otherCount = 54 -~~~ -6398084 UP 12 -6398084 2048 2048 -6400258 DOWN 12 -6400258 0 2048 -6400290 UP 12 -6400289 2048 2048 -6400802 DOWN 12 -6400802 0 2048 -6400821 UP 12 -6400821 2048 2048 -6403585 CLICK1 -6403585 CLICK2 -~~~ -~~~ -~~~ -6403609 2048 67110912 -~~~ -6403759 2048 2048 -6410651 DOWN 12 -6410651 0 2048 -~~~ -~~~ -6410669 0 0 -~~~ -~~~ -6410670 0 1 -~~~ -~~~ -6410672 0 3 -~~~ -~~~ -6410674 0 7 -~~~ -~~~ -6410676 0 15 -~~~ -~~~ -6410678 0 31 -~~~ -~~~ -6410680 0 63 -~~~ -~~~ -6410681 0 127 -~~~ -~~~ -6410683 0 255 -6410684 homeCount = 108 -6410685 waitCount = 54 -6410685 ripCount = 46 -6410686 locktype1 = 2 -6410686 locktype2 = 7 -6410707 locktype3 = 5 -6410708 goalCount = 0 -6410708 goalTotal = 40 -6410709 otherCount = 54 -~~~ -6410710 CURRENTGOAL IS [7] -~~~ -6410710 UP 12 -6410710 2048 255 -6410790 DOWN 12 -6410790 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6410827 homeCount = 108 -6410827 waitCount = 54 -6410828 ripCount = 46 -6410828 locktype1 = 2 -6410829 locktype2 = 7 -6410829 locktype3 = 5 -6410830 goalCount = 0 -6410830 goalTotal = 40 -6410831 otherCount = 54 -~~~ -6410832 CURRENTGOAL IS [7] -~~~ -6410869 UP 12 -6410869 2048 255 -6410882 DOWN 12 -6410882 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6410918 homeCount = 108 -6410919 waitCount = 54 -6410919 ripCount = 46 -6410920 locktype1 = 2 -6410920 locktype2 = 7 -6410921 locktype3 = 5 -6410921 goalCount = 0 -6410922 goalTotal = 40 -6410922 otherCount = 54 -~~~ -6410923 CURRENTGOAL IS [7] -~~~ -6411007 UP 12 -6411007 2048 255 -6412314 DOWN 12 -6412314 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412351 UP 12 -6412351 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412357 homeCount = 108 -6412358 waitCount = 54 -6412358 ripCount = 46 -6412359 locktype1 = 2 -6412359 locktype2 = 7 -6412360 locktype3 = 5 -6412360 goalCount = 0 -6412361 goalTotal = 40 -6412361 otherCount = 54 -~~~ -6412362 CURRENTGOAL IS [7] -~~~ -6412418 DOWN 12 -6412418 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412457 homeCount = 108 -6412458 waitCount = 54 -6412458 ripCount = 46 -6412459 locktype1 = 2 -6412459 locktype2 = 7 -6412460 locktype3 = 5 -6412460 goalCount = 0 -6412461 goalTotal = 40 -6412461 otherCount = 54 -~~~ -6412462 CURRENTGOAL IS [7] -~~~ -6416338 UP 3 -6416338 4 255 -~~~ -~~~ -6417568 DOWN 3 -6417568 0 255 -~~~ -~~~ -6417592 0 254 -~~~ -~~~ -6417594 0 252 -~~~ -~~~ -6417596 0 248 -~~~ -~~~ -6417597 0 240 -~~~ -~~~ -6417599 0 224 -~~~ -~~~ -6417601 0 192 -~~~ -~~~ -6417603 0 128 -~~~ -~~~ -6417605 0 0 -~~~ -~~~ -6417607 0 512 -6417608 homeCount = 108 -6417608 waitCount = 54 -6417609 ripCount = 46 -6417609 locktype1 = 2 -6417610 locktype2 = 7 -6417631 locktype3 = 5 -6417631 goalCount = 0 -6417632 goalTotal = 40 -6417632 otherCount = 55 -~~~ -6417933 4 512 -6418142 DOWN 3 -6418142 0 512 -6421661 UP 10 -6421661 waslock = 0 -6421661 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6421689 512 16777728 -~~~ -6421839 512 512 -6425407 DOWN 10 -6425407 0 512 -~~~ -~~~ -6425434 0 2560 -~~~ -~~~ -6425436 0 2048 -6425437 homeCount = 109 -6425437 waitCount = 54 -6425438 ripCount = 46 -6425438 locktype1 = 2 -6425439 locktype2 = 7 -6425439 locktype3 = 5 -6425440 goalCount = 0 -6425440 goalTotal = 40 -6425441 otherCount = 55 -~~~ -6425446 UP 10 -6425446 waslock = 0 -6425446 512 2048 -~~~ -6425482 DOWN 10 -6425482 0 2048 -~~~ -~~~ -~~~ -~~~ -6425507 homeCount = 109 -6425508 waitCount = 54 -6425508 ripCount = 46 -6425509 locktype1 = 2 -6425509 locktype2 = 7 -6425510 locktype3 = 5 -6425510 goalCount = 0 -6425511 goalTotal = 40 -6425511 otherCount = 55 -~~~ -6427001 UP 12 -6427001 2048 2048 -6428272 DOWN 12 -6428272 0 2048 -6428389 UP 12 -6428389 2048 2048 -6429840 DOWN 12 -6429840 0 2048 -6429852 UP 12 -6429852 2048 2048 -6429884 DOWN 12 -6429884 0 2048 -6429912 UP 12 -6429912 2048 2048 -6430001 CLICK1 -6430001 CLICK2 -~~~ -~~~ -~~~ -6430025 2048 67110912 -~~~ -6430175 2048 2048 -6437146 DOWN 12 -6437145 0 2048 -~~~ -~~~ -6437173 0 0 -~~~ -~~~ -6437175 0 1 -~~~ -~~~ -6437176 0 3 -~~~ -~~~ -6437178 0 7 -~~~ -~~~ -6437180 0 15 -~~~ -~~~ -6437182 0 31 -~~~ -~~~ -6437184 0 63 -~~~ -~~~ -6437186 0 127 -~~~ -~~~ -6437187 0 255 -6437188 homeCount = 109 -6437189 waitCount = 55 -6437189 ripCount = 46 -6437190 locktype1 = 2 -6437190 locktype2 = 7 -6437191 locktype3 = 5 -6437212 goalCount = 0 -6437212 goalTotal = 40 -6437213 otherCount = 55 -~~~ -6437214 CURRENTGOAL IS [7] -~~~ -6448275 UP 1 -6448275 1 255 -~~~ -~~~ -6449347 DOWN 1 -6449347 0 255 -~~~ -~~~ -6449367 0 254 -~~~ -~~~ -6449369 0 252 -~~~ -~~~ -6449371 0 248 -~~~ -~~~ -6449373 0 240 -~~~ -~~~ -6449375 0 224 -~~~ -~~~ -6449376 0 192 -~~~ -~~~ -6449378 0 128 -~~~ -~~~ -6449380 0 0 -~~~ -~~~ -6449382 0 512 -6449383 homeCount = 109 -6449384 waitCount = 55 -6449384 ripCount = 46 -6449384 locktype1 = 2 -6449385 locktype2 = 7 -6449405 locktype3 = 5 -6449406 goalCount = 0 -6449406 goalTotal = 40 -6449407 otherCount = 56 -~~~ -6457553 UP 10 -6457553 waslock = 0 -6457553 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6457583 512 16777728 -~~~ -6457733 512 512 -6457762 DOWN 10 -6457762 0 512 -6457777 UP 10 -6457778 waslock = 0 -6457777 512 512 -~~~ -~~~ -6457799 512 2560 -~~~ -~~~ -6457801 512 2048 -6457802 homeCount = 110 -6457802 waitCount = 55 -6457803 ripCount = 46 -6457803 locktype1 = 2 -6457804 locktype2 = 7 -6457804 locktype3 = 5 -6457805 goalCount = 0 -6457805 goalTotal = 40 -6457806 otherCount = 56 -~~~ -~~~ -6463809 DOWN 10 -6463809 0 2048 -~~~ -~~~ -~~~ -~~~ -6463830 homeCount = 110 -6463831 waitCount = 55 -6463831 ripCount = 46 -6463832 locktype1 = 2 -6463832 locktype2 = 7 -6463833 locktype3 = 5 -6463833 goalCount = 0 -6463833 goalTotal = 40 -6463834 otherCount = 56 -~~~ -6463835 UP 10 -6463835 waslock = 0 -6463835 512 2048 -~~~ -6463903 DOWN 10 -6463903 0 2048 -~~~ -~~~ -~~~ -~~~ -6463930 homeCount = 110 -6463930 waitCount = 55 -6463931 ripCount = 46 -6463931 locktype1 = 2 -6463932 locktype2 = 7 -6463932 locktype3 = 5 -6463933 goalCount = 0 -6463933 goalTotal = 40 -6463934 otherCount = 56 -~~~ -6465881 UP 12 -6465881 2048 2048 -6467657 DOWN 12 -6467657 0 2048 -6467693 UP 12 -6467693 2048 2048 -6468741 DOWN 12 -6468741 0 2048 -6468762 UP 12 -6468762 2048 2048 -6468914 DOWN 12 -6468914 0 2048 -6468932 UP 12 -6468932 2048 2048 -6472795 DOWN 12 -6472795 0 2048 -6472832 UP 12 -6472832 2048 2048 -6472881 CLICK1 -6472881 CLICK2 -~~~ -~~~ -~~~ -6472910 2048 67110912 -~~~ -6473060 2048 2048 -6479548 DOWN 12 -6479548 0 2048 -~~~ -~~~ -6479568 0 0 -~~~ -~~~ -6479570 0 1 -~~~ -~~~ -6479572 0 3 -~~~ -~~~ -6479573 0 7 -~~~ -~~~ -6479575 0 15 -~~~ -~~~ -6479577 0 31 -~~~ -~~~ -6479579 0 63 -~~~ -~~~ -6479581 0 127 -~~~ -~~~ -6479583 0 255 -6479584 homeCount = 110 -6479584 waitCount = 56 -6479585 ripCount = 46 -6479585 locktype1 = 2 -6479586 locktype2 = 7 -6479586 locktype3 = 5 -6479607 goalCount = 0 -6479608 goalTotal = 40 -6479608 otherCount = 56 -~~~ -6479609 CURRENTGOAL IS [7] -~~~ -6479609 UP 12 -6479609 2048 255 -6479644 DOWN 12 -6479644 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6479684 homeCount = 110 -6479685 waitCount = 56 -6479685 ripCount = 46 -6479686 locktype1 = 2 -6479686 locktype2 = 7 -6479686 locktype3 = 5 -6479687 goalCount = 0 -6479687 goalTotal = 40 -6479688 otherCount = 56 -~~~ -6479689 CURRENTGOAL IS [7] -~~~ -6485355 UP 8 -6485355 128 255 -~~~ -~~~ -6486346 DOWN 8 -6486346 0 255 -~~~ -~~~ -6486369 0 254 -~~~ -~~~ -6486371 0 252 -~~~ -~~~ -6486372 0 248 -~~~ -~~~ -6486374 0 240 -~~~ -~~~ -6486376 0 224 -~~~ -~~~ -6486378 0 192 -~~~ -~~~ -6486380 0 128 -~~~ -~~~ -6486381 0 0 -~~~ -~~~ -6486383 0 512 -6486384 homeCount = 110 -6486385 waitCount = 56 -6486385 ripCount = 46 -6486386 locktype1 = 2 -6486386 locktype2 = 7 -6486407 locktype3 = 5 -6486408 goalCount = 0 -6486408 goalTotal = 40 -6486409 otherCount = 57 -~~~ -6491312 UP 10 -6491312 waslock = 0 -6491312 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6491343 512 16777728 -~~~ -6491493 512 512 -6497957 DOWN 10 -6497957 0 512 -~~~ -~~~ -6497977 0 1536 -~~~ -~~~ -6497979 0 1024 -6497980 homeCount = 111 -6497981 waitCount = 56 -6497981 ripCount = 46 -6497982 locktype1 = 2 -6497982 locktype2 = 7 -6497983 locktype3 = 5 -6497983 goalCount = 0 -6497984 goalTotal = 40 -6497984 otherCount = 57 -~~~ -6500268 UP 11 -6500268 1024 1024 -6501862 DOWN 11 -6501862 0 1024 -6501896 UP 11 -6501896 1024 1024 -6502555 DOWN 11 -6502555 0 1024 -6502573 UP 11 -6502573 1024 1024 -6502784 DOWN 11 -6502784 0 1024 -6502832 UP 11 -6502832 1024 1024 -6502852 DOWN 11 -6502852 0 1024 -6502873 UP 11 -6502873 1024 1024 -6502971 DOWN 11 -6502971 0 1024 -6502994 UP 11 -6502994 1024 1024 -6503021 DOWN 11 -6503021 0 1024 -6503040 UP 11 -6503040 1024 1024 -6503112 DOWN 11 -6503112 0 1024 -6503129 UP 11 -6503129 1024 1024 -6503268 BEEP1 -6503268 BEEP2 -~~~ -~~~ -~~~ -6503292 1024 33555456 -~~~ -6503442 1024 1024 -6503531 DOWN 11 -6503531 0 1024 -6503557 UP 11 -6503557 1024 1024 -~~~ -~~~ -6503943 1024 0 -~~~ -~~~ -6503945 1024 1 -~~~ -~~~ -6503947 1024 3 -~~~ -~~~ -6503949 1024 7 -~~~ -~~~ -6503950 1024 15 -~~~ -~~~ -6503952 1024 31 -~~~ -~~~ -6503954 1024 63 -~~~ -~~~ -6503956 1024 127 -~~~ -~~~ -6503958 1024 255 -6503959 homeCount = 111 -6503959 waitCount = 56 -6503960 ripCount = 47 -6503960 locktype1 = 2 -6503981 locktype2 = 7 -6503981 locktype3 = 5 -6503982 goalCount = 0 -6503982 goalTotal = 40 -6503983 otherCount = 57 -~~~ -6503984 CURRENTGOAL IS [7] -~~~ -6508798 DOWN 11 -6508798 0 255 -6508816 UP 11 -6508816 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6508838 homeCount = 111 -6508839 waitCount = 56 -6508839 ripCount = 47 -6508840 locktype1 = 2 -6508840 locktype2 = 7 -6508841 locktype3 = 5 -6508841 goalCount = 0 -6508842 goalTotal = 40 -6508842 otherCount = 57 -~~~ -6508843 CURRENTGOAL IS [7] -~~~ -6508920 DOWN 11 -6508920 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6508959 homeCount = 111 -6508959 waitCount = 56 -6508960 ripCount = 47 -6508960 locktype1 = 2 -6508961 locktype2 = 7 -6508961 locktype3 = 5 -6508962 goalCount = 0 -6508962 goalTotal = 40 -6508963 otherCount = 57 -~~~ -6508964 CURRENTGOAL IS [7] -~~~ -6508969 UP 11 -6508969 1024 255 -6511527 DOWN 11 -6511527 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6511571 homeCount = 111 -6511571 waitCount = 56 -6511572 ripCount = 47 -6511572 locktype1 = 2 -6511573 locktype2 = 7 -6511573 locktype3 = 5 -6511574 goalCount = 0 -6511574 goalTotal = 40 -6511574 otherCount = 57 -~~~ -6511576 CURRENTGOAL IS [7] -~~~ -6511576 UP 11 -6511576 1024 255 -6511638 DOWN 11 -6511638 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6511680 homeCount = 111 -6511680 waitCount = 56 -6511681 ripCount = 47 -6511681 locktype1 = 2 -6511682 locktype2 = 7 -6511682 locktype3 = 5 -6511683 goalCount = 0 -6511683 goalTotal = 40 -6511684 otherCount = 57 -~~~ -6511685 CURRENTGOAL IS [7] -~~~ -6512177 UP 11 -6512177 1024 255 -6513881 DOWN 11 -6513881 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6513921 homeCount = 111 -6513921 waitCount = 56 -6513922 ripCount = 47 -6513922 locktype1 = 2 -6513923 locktype2 = 7 -6513923 locktype3 = 5 -6513924 goalCount = 0 -6513924 goalTotal = 40 -6513925 otherCount = 57 -~~~ -6513926 CURRENTGOAL IS [7] -~~~ -6518545 UP 5 -6518545 16 255 -~~~ -~~~ -6518724 DOWN 5 -6518723 0 255 -~~~ -~~~ -6518744 0 254 -~~~ -~~~ -6518745 0 252 -~~~ -~~~ -6518747 0 248 -~~~ -~~~ -6518749 0 240 -~~~ -~~~ -6518751 0 224 -~~~ -~~~ -6518753 0 192 -~~~ -~~~ -6518754 0 128 -~~~ -~~~ -6518756 0 0 -~~~ -~~~ -6518758 0 512 -6518759 homeCount = 111 -6518760 waitCount = 56 -6518760 ripCount = 47 -6518761 locktype1 = 2 -6518761 locktype2 = 7 -6518782 locktype3 = 5 -6518783 goalCount = 0 -6518783 goalTotal = 40 -6518784 otherCount = 58 -~~~ -6518788 16 512 -6519650 DOWN 5 -6519650 0 512 -6524649 UP 10 -6524649 waslock = 0 -6524649 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6524681 512 16777728 -~~~ -6524831 512 512 -6529752 DOWN 10 -6529752 0 512 -~~~ -~~~ -6529776 0 2560 -~~~ -~~~ -6529778 0 2048 -6529779 homeCount = 112 -6529779 waitCount = 56 -6529780 ripCount = 47 -6529780 locktype1 = 2 -6529781 locktype2 = 7 -6529781 locktype3 = 5 -6529782 goalCount = 0 -6529782 goalTotal = 40 -6529783 otherCount = 58 -~~~ -6530785 UP 10 -6530786 waslock = 0 -6530785 512 2048 -~~~ -6531302 DOWN 10 -6531302 0 2048 -~~~ -~~~ -~~~ -~~~ -6531328 homeCount = 112 -6531329 waitCount = 56 -6531329 ripCount = 47 -6531330 locktype1 = 2 -6531330 locktype2 = 7 -6531331 locktype3 = 5 -6531331 goalCount = 0 -6531332 goalTotal = 40 -6531332 otherCount = 58 -~~~ -6533320 UP 12 -6533320 2048 2048 -6536249 DOWN 12 -6536249 0 2048 -6536449 LOCKOUT 3 -~~~ -6536465 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6536471 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6536576 UP 12 -6536576 2048 0 -6536890 DOWN 12 -6536890 0 0 -6561465 LOCKEND -~~~ -~~~ -~~~ -6561485 0 512 -6569294 UP 10 -6569295 waslock = 0 -6569294 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6569321 512 16777728 -~~~ -6569368 DOWN 10 -6569368 0 16777728 -6569397 UP 10 -6569397 waslock = 0 -6569397 512 16777728 -~~~ -~~~ -6569400 512 16778752 -~~~ -~~~ -6569402 512 16778240 -6569403 homeCount = 113 -6569404 waitCount = 56 -6569404 ripCount = 47 -6569405 locktype1 = 2 -6569405 locktype2 = 7 -6569405 locktype3 = 6 -6569406 goalCount = 0 -6569406 goalTotal = 40 -6569428 otherCount = 58 -~~~ -~~~ -6569470 512 1024 -6569498 DOWN 10 -6569498 0 1024 -~~~ -~~~ -~~~ -6569518 UP 10 -6569518 waslock = 0 -6569518 512 1024 -~~~ -6569520 homeCount = 113 -6569520 waitCount = 56 -6569521 ripCount = 47 -6569521 locktype1 = 2 -6569522 locktype2 = 7 -6569522 locktype3 = 6 -6569523 goalCount = 0 -6569523 goalTotal = 40 -6569524 otherCount = 58 -~~~ -~~~ -6569573 DOWN 10 -6569573 0 1024 -~~~ -~~~ -~~~ -~~~ -6569600 homeCount = 113 -6569601 waitCount = 56 -6569601 ripCount = 47 -6569602 locktype1 = 2 -6569602 locktype2 = 7 -6569603 locktype3 = 6 -6569603 goalCount = 0 -6569604 goalTotal = 40 -6569604 otherCount = 58 -~~~ -6569619 UP 10 -6569620 waslock = 0 -6569619 512 1024 -~~~ -6569711 DOWN 10 -6569711 0 1024 -~~~ -~~~ -~~~ -~~~ -6569740 homeCount = 113 -6569741 waitCount = 56 -6569741 ripCount = 47 -6569742 locktype1 = 2 -6569742 locktype2 = 7 -6569742 locktype3 = 6 -6569743 goalCount = 0 -6569743 goalTotal = 40 -6569744 otherCount = 58 -~~~ -6569744 UP 10 -6569745 waslock = 0 -6569744 512 1024 -~~~ -6570069 DOWN 10 -6570069 0 1024 -~~~ -~~~ -~~~ -~~~ -6570090 homeCount = 113 -6570090 waitCount = 56 -6570091 ripCount = 47 -6570091 locktype1 = 2 -6570092 locktype2 = 7 -6570092 locktype3 = 6 -6570093 goalCount = 0 -6570093 goalTotal = 40 -6570094 otherCount = 58 -~~~ -6570155 UP 10 -6570155 waslock = 0 -6570155 512 1024 -~~~ -6570216 DOWN 10 -6570216 0 1024 -~~~ -~~~ -~~~ -~~~ -6570241 homeCount = 113 -6570242 waitCount = 56 -6570242 ripCount = 47 -6570243 locktype1 = 2 -6570243 locktype2 = 7 -6570244 locktype3 = 6 -6570244 goalCount = 0 -6570245 goalTotal = 40 -6570245 otherCount = 58 -~~~ -6570297 UP 10 -6570297 waslock = 0 -6570297 512 1024 -~~~ -6570360 DOWN 10 -6570360 0 1024 -~~~ -~~~ -~~~ -~~~ -6570390 homeCount = 113 -6570390 waitCount = 56 -6570391 ripCount = 47 -6570391 locktype1 = 2 -6570392 locktype2 = 7 -6570392 locktype3 = 6 -6570393 goalCount = 0 -6570393 goalTotal = 40 -6570394 otherCount = 58 -~~~ -6570433 UP 10 -6570433 waslock = 0 -6570432 512 1024 -~~~ -6573876 DOWN 10 -6573876 0 1024 -~~~ -~~~ -~~~ -~~~ -6573901 homeCount = 113 -6573902 waitCount = 56 -6573902 ripCount = 47 -6573903 locktype1 = 2 -6573903 locktype2 = 7 -6573903 locktype3 = 6 -6573904 goalCount = 0 -6573904 goalTotal = 40 -6573905 otherCount = 58 -~~~ -6573934 UP 10 -6573935 waslock = 0 -6573934 512 1024 -~~~ -6573977 DOWN 10 -6573977 0 1024 -~~~ -~~~ -~~~ -~~~ -6574003 homeCount = 113 -6574004 waitCount = 56 -6574004 ripCount = 47 -6574005 locktype1 = 2 -6574005 locktype2 = 7 -6574006 locktype3 = 6 -6574006 goalCount = 0 -6574007 goalTotal = 40 -6574007 otherCount = 58 -~~~ -6575372 UP 11 -6575372 1024 1024 -6576446 DOWN 11 -6576446 0 1024 -6576491 UP 11 -6576491 1024 1024 -6577984 DOWN 11 -6577984 0 1024 -6577998 UP 11 -6577998 1024 1024 -6578373 BEEP1 -6578373 BEEP2 -~~~ -~~~ -~~~ -6578399 1024 33555456 -~~~ -6578549 1024 1024 -6578714 DOWN 11 -6578714 0 1024 -6578721 UP 11 -6578721 1024 1024 -6578866 DOWN 11 -6578866 0 1024 -6578903 UP 11 -6578903 1024 1024 -~~~ -~~~ -6579074 1024 0 -~~~ -~~~ -6579075 1024 1 -~~~ -~~~ -6579077 1024 3 -~~~ -~~~ -6579079 1024 7 -~~~ -~~~ -6579081 1024 15 -~~~ -~~~ -6579083 1024 31 -~~~ -~~~ -6579085 1024 63 -~~~ -~~~ -6579086 1024 127 -~~~ -~~~ -6579088 1024 255 -6579089 homeCount = 113 -6579090 waitCount = 56 -6579090 ripCount = 48 -6579091 locktype1 = 2 -6579112 locktype2 = 7 -6579112 locktype3 = 6 -6579113 goalCount = 0 -6579113 goalTotal = 40 -6579113 otherCount = 58 -~~~ -6579115 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6579142 homeCount = 113 -6579143 waitCount = 56 -6579143 ripCount = 48 -6579144 locktype1 = 2 -6579144 locktype2 = 7 -6579145 locktype3 = 6 -6579145 goalCount = 0 -6579146 goalTotal = 40 -6579146 otherCount = 58 -~~~ -6579147 CURRENTGOAL IS [7] -~~~ -6586385 DOWN 11 -6586385 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6586420 homeCount = 113 -6586421 waitCount = 56 -6586421 ripCount = 48 -6586422 locktype1 = 2 -6586422 locktype2 = 7 -6586422 locktype3 = 6 -6586423 goalCount = 0 -6586423 goalTotal = 40 -6586424 otherCount = 58 -~~~ -6586425 CURRENTGOAL IS [7] -~~~ -6590698 UP 7 -6590698 64 255 -6590720 DOWN 7 -6590720 0 255 -~~~ -~~~ -6590725 outer reward -~~~ -6590725 0 4194559 -~~~ -~~~ -~~~ -~~~ -6590745 0 4194558 -~~~ -~~~ -6590747 0 4194556 -~~~ -~~~ -6590749 0 4194552 -~~~ -~~~ -6590750 0 4194544 -~~~ -~~~ -6590752 0 4194528 -~~~ -~~~ -6590754 0 4194496 -~~~ -~~~ -6590756 0 4194432 -~~~ -~~~ -6590758 0 4194304 -~~~ -~~~ -6590760 0 4194816 -6590761 homeCount = 113 -6590761 waitCount = 56 -6590762 ripCount = 48 -6590782 locktype1 = 2 -6590783 locktype2 = 7 -6590783 locktype3 = 6 -6590784 goalCount = 1 -6590784 goalTotal = 41 -6590785 otherCount = 58 -~~~ -6590785 64 4194816 -6591175 64 512 -6599661 DOWN 7 -6599661 0 512 -6608285 UP 10 -6608286 waslock = 0 -6608285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6608312 512 16777728 -~~~ -6608462 512 512 -6608513 DOWN 10 -6608513 0 512 -~~~ -~~~ -6608534 0 2560 -~~~ -~~~ -6608535 0 2048 -6608536 homeCount = 114 -6608537 waitCount = 56 -6608537 ripCount = 48 -6608538 locktype1 = 2 -6608538 locktype2 = 7 -6608539 locktype3 = 6 -6608539 goalCount = 1 -6608540 goalTotal = 41 -6608540 otherCount = 58 -~~~ -6608630 UP 10 -6608630 waslock = 0 -6608630 512 2048 -~~~ -6613637 DOWN 10 -6613637 0 2048 -~~~ -~~~ -~~~ -~~~ -6613666 homeCount = 114 -6613667 waitCount = 56 -6613667 ripCount = 48 -6613668 locktype1 = 2 -6613668 locktype2 = 7 -6613669 locktype3 = 6 -6613669 goalCount = 1 -6613670 goalTotal = 41 -6613670 otherCount = 58 -~~~ -6616329 UP 12 -6616329 2048 2048 -6619830 CLICK1 -6619830 CLICK2 -~~~ -~~~ -~~~ -6619856 2048 67110912 -~~~ -6620006 2048 2048 -6628530 DOWN 12 -6628530 0 2048 -6628552 UP 12 -6628552 2048 2048 -~~~ -~~~ -6628554 2048 0 -~~~ -~~~ -6628556 2048 1 -~~~ -~~~ -6628557 2048 3 -~~~ -~~~ -6628559 2048 7 -~~~ -~~~ -6628561 2048 15 -~~~ -~~~ -6628563 2048 31 -~~~ -~~~ -6628565 2048 63 -~~~ -~~~ -6628566 2048 127 -~~~ -~~~ -6628568 2048 255 -6628569 homeCount = 114 -6628570 waitCount = 57 -6628591 ripCount = 48 -6628591 locktype1 = 2 -6628592 locktype2 = 7 -6628592 locktype3 = 6 -6628592 goalCount = 1 -6628593 goalTotal = 41 -6628593 otherCount = 58 -~~~ -6628595 CURRENTGOAL IS [7] -~~~ -6628616 DOWN 12 -6628616 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6628645 homeCount = 114 -6628646 waitCount = 57 -6628646 ripCount = 48 -6628647 locktype1 = 2 -6628647 locktype2 = 7 -6628648 locktype3 = 6 -6628648 goalCount = 1 -6628648 goalTotal = 41 -6628649 otherCount = 58 -~~~ -6628650 CURRENTGOAL IS [7] -~~~ -6632543 UP 4 -6632543 8 255 -~~~ -~~~ -6633261 DOWN 4 -6633261 0 255 -~~~ -~~~ -6633284 0 254 -~~~ -~~~ -6633286 0 252 -~~~ -~~~ -6633288 0 248 -~~~ -~~~ -6633289 0 240 -~~~ -~~~ -6633291 0 224 -~~~ -~~~ -6633293 0 192 -~~~ -~~~ -6633295 0 128 -~~~ -~~~ -6633297 0 0 -~~~ -~~~ -6633299 0 512 -6633300 homeCount = 114 -6633300 waitCount = 57 -6633301 ripCount = 48 -6633301 locktype1 = 2 -6633302 locktype2 = 7 -6633323 locktype3 = 6 -6633323 goalCount = 1 -6633324 goalTotal = 41 -6633324 otherCount = 59 -~~~ -6637699 UP 10 -6637699 waslock = 0 -6637699 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6637730 512 16777728 -~~~ -6637866 DOWN 10 -6637866 0 16777728 -6637880 0 512 -~~~ -~~~ -6637887 0 2560 -~~~ -~~~ -6637889 0 2048 -6637890 homeCount = 115 -6637890 waitCount = 57 -6637891 ripCount = 48 -6637891 locktype1 = 2 -6637892 locktype2 = 7 -6637892 locktype3 = 6 -6637893 goalCount = 1 -6637893 goalTotal = 41 -6637894 otherCount = 59 -~~~ -6637949 UP 10 -6637949 waslock = 0 -6637949 512 2048 -~~~ -6640995 DOWN 10 -6640995 0 2048 -~~~ -~~~ -~~~ -~~~ -6641017 homeCount = 115 -6641017 waitCount = 57 -6641018 ripCount = 48 -6641018 locktype1 = 2 -6641019 locktype2 = 7 -6641019 locktype3 = 6 -6641020 goalCount = 1 -6641020 goalTotal = 41 -6641021 otherCount = 59 -~~~ -6642706 UP 12 -6642706 2048 2048 -6645350 DOWN 12 -6645350 0 2048 -6645380 UP 12 -6645380 2048 2048 -6647206 CLICK1 -6647206 CLICK2 -~~~ -~~~ -~~~ -6647227 2048 67110912 -~~~ -6647377 2048 2048 -6657145 DOWN 12 -6657144 0 2048 -~~~ -~~~ -6657165 0 0 -~~~ -~~~ -6657167 0 1 -~~~ -~~~ -6657169 0 3 -~~~ -~~~ -6657170 0 7 -~~~ -~~~ -6657172 0 15 -~~~ -~~~ -6657174 0 31 -~~~ -~~~ -6657176 0 63 -~~~ -~~~ -6657178 0 127 -~~~ -~~~ -6657180 0 255 -6657181 homeCount = 115 -6657181 waitCount = 58 -6657182 ripCount = 48 -6657182 locktype1 = 2 -6657183 locktype2 = 7 -6657204 locktype3 = 6 -6657204 goalCount = 1 -6657205 goalTotal = 41 -6657205 otherCount = 59 -~~~ -6657206 CURRENTGOAL IS [7] -~~~ -6657218 UP 12 -6657218 2048 255 -6657280 DOWN 12 -6657280 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6657313 homeCount = 115 -6657314 waitCount = 58 -6657314 ripCount = 48 -6657315 locktype1 = 2 -6657315 locktype2 = 7 -6657316 locktype3 = 6 -6657316 goalCount = 1 -6657317 goalTotal = 41 -6657317 otherCount = 59 -~~~ -6657318 CURRENTGOAL IS [7] -~~~ -6661264 UP 3 -6661264 4 255 -~~~ -~~~ -6661872 DOWN 3 -6661872 0 255 -~~~ -~~~ -6661892 0 254 -~~~ -~~~ -6661894 0 252 -~~~ -~~~ -6661896 0 248 -~~~ -~~~ -6661898 0 240 -~~~ -~~~ -6661900 0 224 -~~~ -~~~ -6661901 0 192 -~~~ -~~~ -6661903 0 128 -~~~ -~~~ -6661905 0 0 -~~~ -~~~ -6661907 0 512 -6661908 homeCount = 115 -6661909 waitCount = 58 -6661909 ripCount = 48 -6661909 locktype1 = 2 -6661910 locktype2 = 7 -6661931 locktype3 = 6 -6661931 goalCount = 1 -6661932 goalTotal = 41 -6661932 otherCount = 60 -~~~ -6661933 4 512 -6662264 DOWN 3 -6662264 0 512 -6665814 UP 10 -6665814 waslock = 0 -6665814 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6665840 512 16777728 -~~~ -6665975 DOWN 10 -6665975 0 16777728 -6665990 0 512 -~~~ -~~~ -6665993 0 1536 -~~~ -~~~ -6665995 0 1024 -6665996 homeCount = 116 -6665997 waitCount = 58 -6665997 ripCount = 48 -6665998 locktype1 = 2 -6665998 locktype2 = 7 -6665999 locktype3 = 6 -6665999 goalCount = 1 -6666000 goalTotal = 41 -6666000 otherCount = 60 -~~~ -6666060 UP 10 -6666060 waslock = 0 -6666060 512 1024 -~~~ -6671137 DOWN 10 -6671137 0 1024 -~~~ -~~~ -~~~ -~~~ -6671163 homeCount = 116 -6671163 waitCount = 58 -6671164 ripCount = 48 -6671164 locktype1 = 2 -6671165 locktype2 = 7 -6671165 locktype3 = 6 -6671166 goalCount = 1 -6671166 goalTotal = 41 -6671167 otherCount = 60 -~~~ -6671175 UP 10 -6671175 waslock = 0 -6671175 512 1024 -6671210 DOWN 10 -6671210 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6671233 homeCount = 116 -6671234 waitCount = 58 -6671234 ripCount = 48 -6671235 locktype1 = 2 -6671235 locktype2 = 7 -6671236 locktype3 = 6 -6671236 goalCount = 1 -6671237 goalTotal = 41 -6671237 otherCount = 60 -~~~ -6672888 UP 11 -6672888 1024 1024 -6675281 DOWN 11 -6675281 0 1024 -6675325 UP 11 -6675325 1024 1024 -6675888 BEEP1 -6675888 BEEP2 -~~~ -~~~ -~~~ -6675910 1024 33555456 -~~~ -6676060 1024 1024 -6683979 DOWN 11 -6683979 0 1024 -~~~ -~~~ -6683999 0 0 -~~~ -~~~ -6684001 0 1 -~~~ -~~~ -6684003 0 3 -~~~ -~~~ -6684004 0 7 -~~~ -~~~ -6684006 0 15 -~~~ -~~~ -6684008 0 31 -~~~ -~~~ -6684010 0 63 -~~~ -~~~ -6684012 0 127 -~~~ -~~~ -6684014 0 255 -6684015 homeCount = 116 -6684015 waitCount = 58 -6684016 ripCount = 49 -6684016 locktype1 = 2 -6684017 locktype2 = 7 -6684017 locktype3 = 6 -6684038 goalCount = 1 -6684039 goalTotal = 41 -6684039 otherCount = 60 -~~~ -6684040 CURRENTGOAL IS [7] -~~~ -6684055 UP 11 -6684055 1024 255 -6684116 DOWN 11 -6684116 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6684159 homeCount = 116 -6684159 waitCount = 58 -6684160 ripCount = 49 -6684160 locktype1 = 2 -6684161 locktype2 = 7 -6684161 locktype3 = 6 -6684162 goalCount = 1 -6684162 goalTotal = 41 -6684163 otherCount = 60 -~~~ -6684164 CURRENTGOAL IS [7] -~~~ -6684221 UP 11 -6684221 1024 255 -6684256 DOWN 11 -6684256 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6684297 homeCount = 116 -6684298 waitCount = 58 -6684298 ripCount = 49 -6684299 locktype1 = 2 -6684299 locktype2 = 7 -6684300 locktype3 = 6 -6684300 goalCount = 1 -6684301 goalTotal = 41 -6684301 otherCount = 60 -~~~ -6684302 CURRENTGOAL IS [7] -~~~ -6684474 UP 11 -6684474 1024 255 -6685220 DOWN 11 -6685220 0 255 -6685235 UP 11 -6685235 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685260 DOWN 11 -6685260 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685272 homeCount = 116 -6685272 waitCount = 58 -6685273 ripCount = 49 -6685273 locktype1 = 2 -6685274 locktype2 = 7 -6685274 locktype3 = 6 -6685275 goalCount = 1 -6685275 goalTotal = 41 -6685276 otherCount = 60 -~~~ -6685277 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685304 homeCount = 116 -6685304 waitCount = 58 -6685305 ripCount = 49 -6685305 locktype1 = 2 -6685306 locktype2 = 7 -6685306 locktype3 = 6 -6685307 goalCount = 1 -6685307 goalTotal = 41 -6685308 otherCount = 60 -~~~ -6685309 CURRENTGOAL IS [7] -~~~ -6685357 UP 11 -6685357 1024 255 -6685427 DOWN 11 -6685427 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685466 homeCount = 116 -6685466 waitCount = 58 -6685467 ripCount = 49 -6685467 locktype1 = 2 -6685468 locktype2 = 7 -6685468 locktype3 = 6 -6685469 goalCount = 1 -6685469 goalTotal = 41 -6685470 otherCount = 60 -~~~ -6685471 CURRENTGOAL IS [7] -~~~ -6691250 UP 8 -6691250 128 255 -~~~ -~~~ -6691294 DOWN 8 -6691294 0 255 -~~~ -6691318 128 255 -~~~ -6691319 128 254 -~~~ -~~~ -6691320 128 252 -~~~ -~~~ -6691322 128 248 -~~~ -~~~ -6691324 128 240 -~~~ -~~~ -6691326 128 224 -~~~ -~~~ -6691328 128 192 -~~~ -~~~ -6691329 128 128 -~~~ -~~~ -6691331 128 0 -~~~ -~~~ -6691333 128 512 -6691334 homeCount = 116 -6691335 waitCount = 58 -6691356 ripCount = 49 -6691356 locktype1 = 2 -6691357 locktype2 = 7 -6691357 locktype3 = 6 -6691358 goalCount = 1 -6691358 goalTotal = 41 -6691359 otherCount = 61 -~~~ -6691705 DOWN 8 -6691705 0 512 -6692128 128 512 -6692970 DOWN 8 -6692969 0 512 -6693144 128 512 -6693170 DOWN 8 -6693170 0 512 -6693199 128 512 -6693388 DOWN 8 -6693388 0 512 -6693402 128 512 -6693443 DOWN 8 -6693443 0 512 -6693515 128 512 -6693538 DOWN 8 -6693538 0 512 -6693619 128 512 -6693648 DOWN 8 -6693648 0 512 -6694010 128 512 -6694839 DOWN 8 -6694838 0 512 -6701433 UP 10 -6701434 waslock = 0 -6701433 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6701465 512 16777728 -~~~ -6701615 512 512 -6701718 DOWN 10 -6701718 0 512 -~~~ -~~~ -6701739 0 1536 -~~~ -~~~ -6701741 0 1024 -6701742 homeCount = 117 -6701743 waitCount = 58 -6701743 ripCount = 49 -6701744 locktype1 = 2 -6701744 locktype2 = 7 -6701745 locktype3 = 6 -6701745 goalCount = 1 -6701746 goalTotal = 41 -6701746 otherCount = 61 -~~~ -6701748 UP 10 -6701748 waslock = 0 -6701748 512 1024 -~~~ -6705821 DOWN 10 -6705821 0 1024 -~~~ -~~~ -~~~ -~~~ -6705843 homeCount = 117 -6705843 waitCount = 58 -6705844 ripCount = 49 -6705844 locktype1 = 2 -6705845 locktype2 = 7 -6705845 locktype3 = 6 -6705846 goalCount = 1 -6705846 goalTotal = 41 -6705847 otherCount = 61 -~~~ -6705847 UP 10 -6705848 waslock = 0 -6705847 512 1024 -~~~ -6705920 DOWN 10 -6705920 0 1024 -~~~ -~~~ -~~~ -~~~ -6705943 homeCount = 117 -6705943 waitCount = 58 -6705944 ripCount = 49 -6705944 locktype1 = 2 -6705944 locktype2 = 7 -6705945 locktype3 = 6 -6705945 goalCount = 1 -6705946 goalTotal = 41 -6705946 otherCount = 61 -~~~ -6708068 UP 11 -6708068 1024 1024 -6708086 DOWN 11 -6708086 0 1024 -6708133 UP 11 -6708133 1024 1024 -6709911 DOWN 11 -6709911 0 1024 -6709920 UP 11 -6709920 1024 1024 -6711114 DOWN 11 -6711114 0 1024 -6711120 UP 11 -6711120 1024 1024 -6711125 DOWN 11 -6711125 0 1024 -6711144 UP 11 -6711144 1024 1024 -6711546 DOWN 11 -6711546 0 1024 -6711576 UP 11 -6711576 1024 1024 -6711611 DOWN 11 -6711611 0 1024 -6711618 UP 11 -6711618 1024 1024 -6715068 BEEP1 -6715068 BEEP2 -~~~ -~~~ -~~~ -6715093 1024 33555456 -~~~ -6715243 1024 1024 -6721928 DOWN 11 -6721928 0 1024 -~~~ -~~~ -6721951 UP 11 -6721951 1024 0 -~~~ -~~~ -6721953 1024 1 -~~~ -~~~ -6721955 1024 3 -~~~ -~~~ -6721956 1024 7 -~~~ -~~~ -6721958 1024 15 -~~~ -~~~ -6721960 1024 31 -~~~ -~~~ -6721962 1024 63 -~~~ -~~~ -6721964 1024 127 -~~~ -~~~ -6721966 1024 255 -6721967 homeCount = 117 -6721967 waitCount = 58 -6721968 ripCount = 50 -6721989 locktype1 = 2 -6721989 locktype2 = 7 -6721990 locktype3 = 6 -6721990 goalCount = 1 -6721991 goalTotal = 41 -6721991 otherCount = 61 -~~~ -6721992 CURRENTGOAL IS [7] -~~~ -6722015 DOWN 11 -6722015 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6722057 homeCount = 117 -6722057 waitCount = 58 -6722058 ripCount = 50 -6722058 locktype1 = 2 -6722059 locktype2 = 7 -6722059 locktype3 = 6 -6722060 goalCount = 1 -6722060 goalTotal = 41 -6722060 otherCount = 61 -~~~ -6722062 CURRENTGOAL IS [7] -~~~ -6725264 UP 6 -6725264 32 255 -~~~ -~~~ -6727484 DOWN 6 -6727484 0 255 -~~~ -~~~ -6727509 0 254 -~~~ -~~~ -6727510 0 252 -~~~ -~~~ -6727512 0 248 -~~~ -~~~ -6727514 0 240 -~~~ -~~~ -6727516 0 224 -~~~ -~~~ -6727518 0 192 -~~~ -~~~ -6727519 0 128 -~~~ -~~~ -6727521 0 0 -~~~ -~~~ -6727523 0 512 -6727524 homeCount = 117 -6727525 waitCount = 58 -6727525 ripCount = 50 -6727526 locktype1 = 2 -6727526 locktype2 = 7 -6727547 locktype3 = 6 -6727548 goalCount = 1 -6727548 goalTotal = 41 -6727549 otherCount = 62 -~~~ -6727577 32 512 -6727791 DOWN 6 -6727791 0 512 -6732072 UP 10 -6732072 waslock = 0 -6732072 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6732099 DOWN 10 -6732099 0 16777728 -~~~ -~~~ -~~~ -6732121 0 16779776 -~~~ -~~~ -6732123 0 16779264 -6732124 homeCount = 118 -6732124 waitCount = 58 -6732125 ripCount = 50 -6732125 locktype1 = 2 -6732126 locktype2 = 7 -6732126 locktype3 = 6 -6732127 goalCount = 1 -6732127 goalTotal = 41 -6732128 otherCount = 62 -~~~ -6732179 UP 10 -6732179 waslock = 0 -6732179 512 16779264 -~~~ -6732249 512 2048 -6732403 DOWN 10 -6732403 0 2048 -~~~ -~~~ -~~~ -~~~ -6732424 homeCount = 118 -6732425 waitCount = 58 -6732425 ripCount = 50 -6732426 locktype1 = 2 -6732426 locktype2 = 7 -6732427 locktype3 = 6 -6732427 goalCount = 1 -6732428 goalTotal = 41 -6732428 otherCount = 62 -~~~ -6732461 UP 10 -6732462 waslock = 0 -6732461 512 2048 -~~~ -6738947 DOWN 10 -6738947 0 2048 -~~~ -~~~ -~~~ -~~~ -6738973 homeCount = 118 -6738973 waitCount = 58 -6738974 ripCount = 50 -6738974 locktype1 = 2 -6738975 locktype2 = 7 -6738975 locktype3 = 6 -6738976 goalCount = 1 -6738976 goalTotal = 41 -6738976 otherCount = 62 -~~~ -6739010 UP 10 -6739010 waslock = 0 -6739010 512 2048 -~~~ -6739045 DOWN 10 -6739045 0 2048 -~~~ -~~~ -~~~ -~~~ -6739064 homeCount = 118 -6739064 waitCount = 58 -6739065 ripCount = 50 -6739065 locktype1 = 2 -6739066 locktype2 = 7 -6739066 locktype3 = 6 -6739067 goalCount = 1 -6739067 goalTotal = 41 -6739068 otherCount = 62 -~~~ -6741119 UP 12 -6741119 2048 2048 -6742871 DOWN 12 -6742871 0 2048 -6742901 UP 12 -6742901 2048 2048 -6744620 CLICK1 -6744620 CLICK2 -~~~ -~~~ -~~~ -6744642 2048 67110912 -~~~ -6744792 2048 2048 -6752291 DOWN 12 -6752291 0 2048 -~~~ -~~~ -6752311 0 0 -~~~ -~~~ -6752313 0 1 -~~~ -~~~ -6752315 0 3 -~~~ -~~~ -6752316 0 7 -~~~ -~~~ -6752318 0 15 -~~~ -~~~ -6752320 0 31 -~~~ -~~~ -6752322 0 63 -~~~ -~~~ -6752324 0 127 -~~~ -~~~ -6752325 0 255 -6752326 homeCount = 118 -6752327 waitCount = 59 -6752328 ripCount = 50 -6752328 locktype1 = 2 -6752329 locktype2 = 7 -6752329 locktype3 = 6 -6752350 goalCount = 1 -6752350 goalTotal = 41 -6752351 otherCount = 62 -~~~ -6752352 CURRENTGOAL IS [7] -~~~ -6752352 UP 12 -6752352 2048 255 -6752415 DOWN 12 -6752415 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6752456 homeCount = 118 -6752456 waitCount = 59 -6752457 ripCount = 50 -6752457 locktype1 = 2 -6752458 locktype2 = 7 -6752458 locktype3 = 6 -6752459 goalCount = 1 -6752459 goalTotal = 41 -6752460 otherCount = 62 -~~~ -6752461 CURRENTGOAL IS [7] -~~~ -6757646 UP 3 -6757646 4 255 -~~~ -~~~ -6758067 DOWN 3 -6758067 0 255 -~~~ -~~~ -6758091 0 254 -~~~ -~~~ -6758093 0 252 -~~~ -~~~ -6758094 0 248 -~~~ -~~~ -6758096 0 240 -~~~ -~~~ -6758098 0 224 -~~~ -~~~ -6758100 0 192 -~~~ -~~~ -6758102 0 128 -~~~ -~~~ -6758103 0 0 -~~~ -~~~ -6758105 0 512 -6758106 homeCount = 118 -6758107 waitCount = 59 -6758107 ripCount = 50 -6758108 locktype1 = 2 -6758108 locktype2 = 7 -6758129 locktype3 = 6 -6758130 goalCount = 1 -6758130 goalTotal = 41 -6758131 otherCount = 63 -~~~ -6761238 UP 10 -6761239 waslock = 0 -6761238 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6761268 512 16777728 -~~~ -6761417 512 512 -6761428 DOWN 10 -6761428 0 512 -~~~ -~~~ -6761445 0 2560 -~~~ -~~~ -6761446 0 2048 -6761447 homeCount = 119 -6761448 waitCount = 59 -6761448 ripCount = 50 -6761449 locktype1 = 2 -6761449 locktype2 = 7 -6761450 locktype3 = 6 -6761450 goalCount = 1 -6761451 goalTotal = 41 -6761451 otherCount = 63 -~~~ -6761468 UP 10 -6761468 waslock = 0 -6761468 512 2048 -~~~ -6768410 DOWN 10 -6768410 0 2048 -~~~ -~~~ -~~~ -~~~ -6768433 homeCount = 119 -6768433 waitCount = 59 -6768434 ripCount = 50 -6768434 locktype1 = 2 -6768434 locktype2 = 7 -6768435 locktype3 = 6 -6768435 goalCount = 1 -6768436 goalTotal = 41 -6768436 otherCount = 63 -~~~ -6770299 UP 12 -6770299 2048 2048 -6772302 DOWN 12 -6772302 0 2048 -6772362 UP 12 -6772362 2048 2048 -6773300 CLICK1 -6773300 CLICK2 -~~~ -~~~ -~~~ -6773325 2048 67110912 -~~~ -6773475 2048 2048 -6779649 DOWN 12 -6779649 0 2048 -~~~ -~~~ -6779670 0 0 -~~~ -~~~ -6779672 0 1 -~~~ -~~~ -6779674 0 3 -~~~ -~~~ -6779676 0 7 -~~~ -~~~ -6779678 0 15 -~~~ -~~~ -6779679 0 31 -~~~ -~~~ -6779681 0 63 -~~~ -~~~ -6779683 0 127 -~~~ -6779684 UP 12 -6779684 2048 127 -~~~ -6779686 homeCount = 119 -6779687 waitCount = 60 -6779687 ripCount = 50 -6779688 locktype1 = 2 -6779708 locktype2 = 7 -6779709 locktype3 = 6 -6779709 goalCount = 1 -6779710 goalTotal = 41 -6779710 otherCount = 63 -~~~ -6779711 CURRENTGOAL IS [7] -~~~ -6779712 2048 255 -6779786 DOWN 12 -6779786 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6779830 homeCount = 119 -6779831 waitCount = 60 -6779831 ripCount = 50 -6779832 locktype1 = 2 -6779832 locktype2 = 7 -6779833 locktype3 = 6 -6779833 goalCount = 1 -6779834 goalTotal = 41 -6779834 otherCount = 63 -~~~ -6779835 CURRENTGOAL IS [7] -~~~ -6779836 UP 12 -6779836 2048 255 -6779858 DOWN 12 -6779858 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6779888 homeCount = 119 -6779888 waitCount = 60 -6779889 ripCount = 50 -6779889 locktype1 = 2 -6779890 locktype2 = 7 -6779890 locktype3 = 6 -6779891 goalCount = 1 -6779891 goalTotal = 41 -6779892 otherCount = 63 -~~~ -6779893 CURRENTGOAL IS [7] -~~~ -6779906 UP 12 -6779906 2048 255 -6783028 DOWN 12 -6783028 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6783069 homeCount = 119 -6783070 waitCount = 60 -6783070 ripCount = 50 -6783071 locktype1 = 2 -6783071 locktype2 = 7 -6783072 locktype3 = 6 -6783072 goalCount = 1 -6783073 goalTotal = 41 -6783073 otherCount = 63 -~~~ -6783074 CURRENTGOAL IS [7] -~~~ -6792931 UP 6 -6792931 32 255 -~~~ -~~~ -6793358 DOWN 6 -6793358 0 255 -~~~ -~~~ -6793374 0 254 -~~~ -~~~ -6793376 0 252 -~~~ -~~~ -6793377 0 248 -~~~ -~~~ -6793379 0 240 -~~~ -~~~ -6793381 0 224 -~~~ -~~~ -6793383 0 192 -~~~ -~~~ -6793385 0 128 -~~~ -~~~ -6793387 0 0 -~~~ -~~~ -6793388 0 512 -6793389 homeCount = 119 -6793390 waitCount = 60 -6793390 ripCount = 50 -6793391 locktype1 = 2 -6793391 locktype2 = 7 -6793413 locktype3 = 6 -6793413 goalCount = 1 -6793414 goalTotal = 41 -6793414 otherCount = 64 -~~~ -6797527 UP 10 -6797527 waslock = 0 -6797527 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6797551 512 16777728 -~~~ -6797585 DOWN 10 -6797585 0 16777728 -~~~ -~~~ -6797604 0 16779776 -~~~ -~~~ -6797606 0 16779264 -6797607 homeCount = 120 -6797608 waitCount = 60 -6797608 ripCount = 50 -6797609 locktype1 = 2 -6797609 locktype2 = 7 -6797610 locktype3 = 6 -6797610 goalCount = 1 -6797611 goalTotal = 41 -6797611 otherCount = 64 -~~~ -6797632 UP 10 -6797633 waslock = 0 -6797632 512 16779264 -~~~ -6797700 DOWN 10 -6797700 0 16779264 -6797701 0 2048 -~~~ -~~~ -~~~ -~~~ -6797728 homeCount = 120 -6797728 waitCount = 60 -6797729 ripCount = 50 -6797729 locktype1 = 2 -6797730 locktype2 = 7 -6797730 locktype3 = 6 -6797731 goalCount = 1 -6797731 goalTotal = 41 -6797732 otherCount = 64 -~~~ -6797848 UP 10 -6797848 waslock = 0 -6797848 512 2048 -~~~ -6804936 DOWN 10 -6804936 0 2048 -~~~ -~~~ -~~~ -~~~ -6804957 homeCount = 120 -6804958 waitCount = 60 -6804958 ripCount = 50 -6804959 locktype1 = 2 -6804959 locktype2 = 7 -6804960 locktype3 = 6 -6804960 goalCount = 1 -6804961 goalTotal = 41 -6804961 otherCount = 64 -~~~ -6804962 UP 10 -6804962 waslock = 0 -6804962 512 2048 -~~~ -6805032 DOWN 10 -6805032 0 2048 -~~~ -~~~ -~~~ -~~~ -6805061 homeCount = 120 -6805061 waitCount = 60 -6805062 ripCount = 50 -6805062 locktype1 = 2 -6805063 locktype2 = 7 -6805063 locktype3 = 6 -6805064 goalCount = 1 -6805064 goalTotal = 41 -6805065 otherCount = 64 -~~~ -6807081 UP 12 -6807081 2048 2048 -6807157 DOWN 12 -6807157 0 2048 -6807196 UP 12 -6807196 2048 2048 -6808281 DOWN 12 -6808281 0 2048 -6808302 UP 12 -6808302 2048 2048 -6811278 DOWN 12 -6811278 0 2048 -6811347 UP 12 -6811347 2048 2048 -6814081 CLICK1 -6814081 CLICK2 -~~~ -~~~ -~~~ -6814107 2048 67110912 -~~~ -6814257 2048 2048 -6819298 DOWN 12 -6819298 0 2048 -~~~ -~~~ -6819318 0 0 -~~~ -~~~ -6819319 0 1 -~~~ -~~~ -6819321 0 3 -~~~ -~~~ -6819323 0 7 -~~~ -~~~ -6819325 0 15 -~~~ -~~~ -6819327 0 31 -~~~ -~~~ -6819329 0 63 -~~~ -~~~ -6819330 0 127 -~~~ -~~~ -6819332 0 255 -6819333 homeCount = 120 -6819334 waitCount = 61 -6819334 ripCount = 50 -6819335 locktype1 = 2 -6819335 locktype2 = 7 -6819336 locktype3 = 6 -6819357 goalCount = 1 -6819357 goalTotal = 41 -6819358 otherCount = 64 -~~~ -6819359 CURRENTGOAL IS [7] -~~~ -6819367 UP 12 -6819367 2048 255 -6819410 DOWN 12 -6819410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6819444 homeCount = 120 -6819444 waitCount = 61 -6819445 ripCount = 50 -6819445 locktype1 = 2 -6819446 locktype2 = 7 -6819446 locktype3 = 6 -6819447 goalCount = 1 -6819447 goalTotal = 41 -6819448 otherCount = 64 -~~~ -6819449 CURRENTGOAL IS [7] -~~~ -6819507 UP 12 -6819507 2048 255 -6819537 DOWN 12 -6819537 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6819574 homeCount = 120 -6819575 waitCount = 61 -6819575 ripCount = 50 -6819576 locktype1 = 2 -6819576 locktype2 = 7 -6819577 locktype3 = 6 -6819577 goalCount = 1 -6819578 goalTotal = 41 -6819578 otherCount = 64 -~~~ -6819579 CURRENTGOAL IS [7] -~~~ -6828002 UP 4 -6828002 8 255 -~~~ -~~~ -6828645 DOWN 4 -6828645 0 255 -~~~ -~~~ -6828668 0 254 -~~~ -~~~ -6828670 0 252 -~~~ -~~~ -6828672 0 248 -~~~ -~~~ -6828673 0 240 -~~~ -~~~ -6828675 0 224 -~~~ -~~~ -6828677 0 192 -~~~ -~~~ -6828679 0 128 -~~~ -~~~ -6828681 0 0 -~~~ -~~~ -6828683 0 512 -6828684 homeCount = 120 -6828684 waitCount = 61 -6828685 ripCount = 50 -6828685 locktype1 = 2 -6828686 locktype2 = 7 -6828707 locktype3 = 6 -6828707 goalCount = 1 -6828708 goalTotal = 41 -6828708 otherCount = 65 -~~~ -6832786 UP 10 -6832787 waslock = 0 -6832786 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6832816 512 16777728 -~~~ -6832958 DOWN 10 -6832958 0 16777728 -6832966 0 512 -~~~ -~~~ -6832983 0 2560 -~~~ -~~~ -6832985 0 2048 -6832986 homeCount = 121 -6832986 waitCount = 61 -6832987 ripCount = 50 -6832987 locktype1 = 2 -6832987 locktype2 = 7 -6832988 locktype3 = 6 -6832988 goalCount = 1 -6832989 goalTotal = 41 -6832989 otherCount = 65 -~~~ -6833089 UP 10 -6833089 waslock = 0 -6833088 512 2048 -~~~ -6833877 DOWN 10 -6833877 0 2048 -~~~ -~~~ -~~~ -~~~ -6833903 homeCount = 121 -6833904 waitCount = 61 -6833904 ripCount = 50 -6833905 locktype1 = 2 -6833905 locktype2 = 7 -6833906 locktype3 = 6 -6833906 goalCount = 1 -6833906 goalTotal = 41 -6833907 otherCount = 65 -~~~ -6833908 UP 10 -6833908 waslock = 0 -6833907 512 2048 -6833930 DOWN 10 -6833930 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -6833955 homeCount = 121 -6833956 waitCount = 61 -6833956 ripCount = 50 -6833957 locktype1 = 2 -6833957 locktype2 = 7 -6833958 locktype3 = 6 -6833958 goalCount = 1 -6833959 goalTotal = 41 -6833959 otherCount = 65 -~~~ -6833962 UP 10 -6833962 waslock = 0 -6833962 512 2048 -~~~ -6837947 DOWN 10 -6837947 0 2048 -~~~ -~~~ -~~~ -~~~ -6837972 homeCount = 121 -6837973 waitCount = 61 -6837973 ripCount = 50 -6837974 locktype1 = 2 -6837974 locktype2 = 7 -6837974 locktype3 = 6 -6837975 goalCount = 1 -6837975 goalTotal = 41 -6837976 otherCount = 65 -~~~ -6837999 UP 10 -6838000 waslock = 0 -6837999 512 2048 -6838018 DOWN 10 -6838018 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -6838043 homeCount = 121 -6838044 waitCount = 61 -6838044 ripCount = 50 -6838045 locktype1 = 2 -6838045 locktype2 = 7 -6838046 locktype3 = 6 -6838046 goalCount = 1 -6838046 goalTotal = 41 -6838047 otherCount = 65 -~~~ -6839502 UP 12 -6839502 2048 2048 -6842503 CLICK1 -6842503 CLICK2 -~~~ -~~~ -~~~ -6842522 2048 67110912 -~~~ -6842672 2048 2048 -6851012 DOWN 12 -6851012 0 2048 -~~~ -~~~ -6851029 0 0 -~~~ -~~~ -6851031 0 1 -~~~ -~~~ -6851033 0 3 -~~~ -~~~ -6851035 0 7 -~~~ -~~~ -6851036 0 15 -~~~ -~~~ -6851038 0 31 -~~~ -~~~ -6851040 0 63 -~~~ -~~~ -6851042 0 127 -~~~ -~~~ -6851044 0 255 -6851045 homeCount = 121 -6851045 waitCount = 62 -6851046 ripCount = 50 -6851046 locktype1 = 2 -6851047 locktype2 = 7 -6851047 locktype3 = 6 -6851068 goalCount = 1 -6851069 goalTotal = 41 -6851069 otherCount = 65 -~~~ -6851070 CURRENTGOAL IS [7] -~~~ -6867037 UP 6 -6867037 32 255 -~~~ -~~~ -6867390 DOWN 6 -6867390 0 255 -~~~ -~~~ -6867410 0 254 -~~~ -~~~ -6867412 0 252 -~~~ -~~~ -6867414 0 248 -~~~ -~~~ -6867416 0 240 -~~~ -~~~ -6867417 0 224 -~~~ -~~~ -6867419 0 192 -~~~ -~~~ -6867421 0 128 -~~~ -~~~ -6867423 0 0 -~~~ -~~~ -6867425 0 512 -6867426 homeCount = 121 -6867426 waitCount = 62 -6867427 ripCount = 50 -6867427 locktype1 = 2 -6867428 locktype2 = 7 -6867449 locktype3 = 6 -6867449 goalCount = 1 -6867450 goalTotal = 41 -6867450 otherCount = 66 -~~~ -6871554 UP 10 -6871554 waslock = 0 -6871553 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6871589 512 16777728 -~~~ -6871739 512 512 -6871848 DOWN 10 -6871848 0 512 -~~~ -~~~ -6871874 0 2560 -~~~ -~~~ -6871876 0 2048 -6871877 homeCount = 122 -6871877 waitCount = 62 -6871878 ripCount = 50 -6871878 locktype1 = 2 -6871879 locktype2 = 7 -6871879 locktype3 = 6 -6871880 goalCount = 1 -6871880 goalTotal = 41 -6871881 otherCount = 66 -~~~ -6871905 UP 10 -6871905 waslock = 0 -6871905 512 2048 -~~~ -6877839 DOWN 10 -6877839 0 2048 -~~~ -~~~ -~~~ -~~~ -6877866 homeCount = 122 -6877867 waitCount = 62 -6877867 ripCount = 50 -6877868 locktype1 = 2 -6877868 locktype2 = 7 -6877869 locktype3 = 6 -6877869 goalCount = 1 -6877869 goalTotal = 41 -6877870 otherCount = 66 -~~~ -6879791 UP 12 -6879791 2048 2048 -6881416 DOWN 12 -6881416 0 2048 -6881430 UP 12 -6881430 2048 2048 -6881961 DOWN 12 -6881961 0 2048 -6881975 UP 12 -6881975 2048 2048 -6883663 DOWN 12 -6883663 0 2048 -6883693 UP 12 -6883693 2048 2048 -6886792 CLICK1 -6886792 CLICK2 -~~~ -~~~ -~~~ -6886815 2048 67110912 -~~~ -6886965 2048 2048 -6893793 DOWN 12 -6893793 0 2048 -~~~ -~~~ -6893814 0 0 -~~~ -~~~ -6893816 0 1 -~~~ -~~~ -6893817 0 3 -~~~ -~~~ -6893819 0 7 -~~~ -~~~ -6893821 0 15 -~~~ -~~~ -6893823 0 31 -~~~ -~~~ -6893825 0 63 -~~~ -~~~ -6893826 0 127 -~~~ -~~~ -6893828 0 255 -6893829 homeCount = 122 -6893830 waitCount = 63 -6893830 ripCount = 50 -6893831 locktype1 = 2 -6893831 locktype2 = 7 -6893832 locktype3 = 6 -6893853 goalCount = 1 -6893853 goalTotal = 41 -6893854 otherCount = 66 -~~~ -6893855 CURRENTGOAL IS [7] -~~~ -6905937 UP 10 -6905938 waslock = 0 -6905937 512 255 -~~~ -6905957 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6905965 512 254 -~~~ -~~~ -6905966 512 252 -~~~ -~~~ -6905968 512 248 -~~~ -~~~ -6905970 512 240 -~~~ -~~~ -6905972 512 224 -~~~ -~~~ -6905974 512 192 -~~~ -~~~ -6905975 512 128 -~~~ -~~~ -6905977 512 0 -~~~ -~~~ -~~~ -6906246 0 0 -6930957 LOCKEND -~~~ -~~~ -~~~ -6930979 0 512 -6934646 UP 10 -6934646 waslock = 0 -6934646 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6934672 512 16777728 -~~~ -6934799 DOWN 10 -6934799 0 16777728 -~~~ -~~~ -6934819 0 16779776 -~~~ -~~~ -6934821 0 16779264 -6934822 homeCount = 123 -6934822 waitCount = 63 -6934823 ripCount = 50 -6934823 locktype1 = 2 -6934824 locktype2 = 8 -6934824 locktype3 = 6 -6934825 goalCount = 1 -6934825 goalTotal = 41 -6934826 otherCount = 66 -~~~ -6934847 0 2048 -6934867 UP 10 -6934867 waslock = 0 -6934867 512 2048 -~~~ -6934893 DOWN 10 -6934893 0 2048 -~~~ -~~~ -~~~ -~~~ -6934910 homeCount = 123 -6934911 waitCount = 63 -6934911 ripCount = 50 -6934912 locktype1 = 2 -6934912 locktype2 = 8 -6934913 locktype3 = 6 -6934913 goalCount = 1 -6934914 goalTotal = 41 -6934914 otherCount = 66 -~~~ -6935112 UP 10 -6935112 waslock = 0 -6935112 512 2048 -~~~ -6935617 DOWN 10 -6935616 0 2048 -~~~ -~~~ -~~~ -~~~ -6935639 homeCount = 123 -6935640 waitCount = 63 -6935640 ripCount = 50 -6935641 locktype1 = 2 -6935641 locktype2 = 8 -6935642 locktype3 = 6 -6935642 goalCount = 1 -6935643 goalTotal = 41 -6935643 otherCount = 66 -~~~ -6935681 UP 10 -6935682 waslock = 0 -6935681 512 2048 -~~~ -6935714 DOWN 10 -6935714 0 2048 -~~~ -~~~ -~~~ -~~~ -6935740 homeCount = 123 -6935741 waitCount = 63 -6935741 ripCount = 50 -6935742 locktype1 = 2 -6935742 locktype2 = 8 -6935743 locktype3 = 6 -6935743 goalCount = 1 -6935744 goalTotal = 41 -6935744 otherCount = 66 -~~~ -6935801 UP 10 -6935801 waslock = 0 -6935801 512 2048 -~~~ -6935843 DOWN 10 -6935843 0 2048 -~~~ -~~~ -~~~ -~~~ -6935871 homeCount = 123 -6935872 waitCount = 63 -6935872 ripCount = 50 -6935873 locktype1 = 2 -6935873 locktype2 = 8 -6935874 locktype3 = 6 -6935874 goalCount = 1 -6935875 goalTotal = 41 -6935875 otherCount = 66 -~~~ -6935918 UP 10 -6935918 waslock = 0 -6935918 512 2048 -~~~ -6935945 DOWN 10 -6935945 0 2048 -~~~ -~~~ -~~~ -~~~ -6935960 homeCount = 123 -6935960 waitCount = 63 -6935961 ripCount = 50 -6935961 locktype1 = 2 -6935962 locktype2 = 8 -6935962 locktype3 = 6 -6935963 goalCount = 1 -6935963 goalTotal = 41 -6935964 otherCount = 66 -~~~ -6936031 UP 10 -6936031 waslock = 0 -6936031 512 2048 -~~~ -6941357 DOWN 10 -6941357 0 2048 -6941366 UP 10 -6941366 waslock = 0 -6941366 512 2048 -~~~ -~~~ -~~~ -~~~ -6941394 homeCount = 123 -6941395 waitCount = 63 -6941395 ripCount = 50 -6941396 locktype1 = 2 -6941396 locktype2 = 8 -6941397 locktype3 = 6 -6941397 goalCount = 1 -6941398 goalTotal = 41 -6941398 otherCount = 66 -~~~ -~~~ -6941466 DOWN 10 -6941466 0 2048 -~~~ -~~~ -~~~ -~~~ -6941491 homeCount = 123 -6941492 waitCount = 63 -6941492 ripCount = 50 -6941493 locktype1 = 2 -6941493 locktype2 = 8 -6941493 locktype3 = 6 -6941494 goalCount = 1 -6941494 goalTotal = 41 -6941495 otherCount = 66 -~~~ -6941496 UP 10 -6941496 waslock = 0 -6941495 512 2048 -~~~ -6941566 DOWN 10 -6941566 0 2048 -~~~ -~~~ -~~~ -~~~ -6941591 homeCount = 123 -6941592 waitCount = 63 -6941592 ripCount = 50 -6941593 locktype1 = 2 -6941593 locktype2 = 8 -6941594 locktype3 = 6 -6941594 goalCount = 1 -6941595 goalTotal = 41 -6941595 otherCount = 66 -~~~ -6943531 UP 12 -6943531 2048 2048 -6945000 DOWN 12 -6945000 0 2048 -6945026 UP 12 -6945026 2048 2048 -6945349 DOWN 12 -6945349 0 2048 -6945363 UP 12 -6945363 2048 2048 -6945387 DOWN 12 -6945387 0 2048 -6945442 UP 12 -6945442 2048 2048 -6947532 CLICK1 -6947532 CLICK2 -~~~ -~~~ -~~~ -6947560 2048 67110912 -~~~ -6947710 2048 2048 -6953981 DOWN 12 -6953981 0 2048 -6953994 UP 12 -6953994 2048 2048 -~~~ -~~~ -6953999 2048 0 -~~~ -~~~ -6954001 2048 1 -~~~ -~~~ -6954002 2048 3 -~~~ -~~~ -6954004 2048 7 -~~~ -~~~ -6954006 2048 15 -~~~ -~~~ -6954008 2048 31 -~~~ -~~~ -6954010 2048 63 -~~~ -~~~ -6954012 2048 127 -~~~ -~~~ -6954013 2048 255 -6954014 homeCount = 123 -6954015 waitCount = 64 -6954015 ripCount = 50 -6954016 locktype1 = 2 -6954037 locktype2 = 8 -6954037 locktype3 = 6 -6954038 goalCount = 1 -6954038 goalTotal = 41 -6954039 otherCount = 66 -~~~ -6954040 CURRENTGOAL IS [7] -~~~ -6954190 DOWN 12 -6954190 0 255 -~~~ -~~~ -~~~ -~~~ -6954214 UP 12 -6954214 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6954227 homeCount = 123 -6954228 waitCount = 64 -6954228 ripCount = 50 -6954229 locktype1 = 2 -6954229 locktype2 = 8 -6954230 locktype3 = 6 -6954230 goalCount = 1 -6954231 goalTotal = 41 -6954231 otherCount = 66 -~~~ -6954232 CURRENTGOAL IS [7] -~~~ -6954328 DOWN 12 -6954328 0 255 -6954335 UP 12 -6954335 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6954367 homeCount = 123 -6954368 waitCount = 64 -6954368 ripCount = 50 -6954369 locktype1 = 2 -6954369 locktype2 = 8 -6954370 locktype3 = 6 -6954370 goalCount = 1 -6954371 goalTotal = 41 -6954371 otherCount = 66 -~~~ -6954372 CURRENTGOAL IS [7] -~~~ -6956456 DOWN 12 -6956456 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6956490 homeCount = 123 -6956491 waitCount = 64 -6956491 ripCount = 50 -6956492 locktype1 = 2 -6956492 locktype2 = 8 -6956493 locktype3 = 6 -6956493 goalCount = 1 -6956494 goalTotal = 41 -6956494 otherCount = 66 -~~~ -6956495 CURRENTGOAL IS [7] -~~~ -6961679 UP 5 -6961679 16 255 -~~~ -~~~ -6961995 DOWN 5 -6961995 0 255 -~~~ -~~~ -6962013 0 254 -~~~ -~~~ -6962015 0 252 -~~~ -~~~ -6962017 0 248 -~~~ -~~~ -6962019 0 240 -~~~ -~~~ -6962021 0 224 -~~~ -~~~ -6962022 0 192 -~~~ -~~~ -6962024 0 128 -~~~ -~~~ -6962026 0 0 -~~~ -~~~ -6962028 0 512 -6962029 homeCount = 123 -6962030 waitCount = 64 -6962030 ripCount = 50 -6962030 locktype1 = 2 -6962031 locktype2 = 8 -6962052 locktype3 = 6 -6962053 goalCount = 1 -6962053 goalTotal = 41 -6962054 otherCount = 67 -~~~ -6962054 16 512 -6962809 DOWN 5 -6962809 0 512 -6967089 UP 10 -6967089 waslock = 0 -6967089 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6967119 512 16777728 -~~~ -6967269 512 512 -6973816 DOWN 10 -6973816 0 512 -~~~ -~~~ -6973835 0 2560 -~~~ -~~~ -6973836 0 2048 -6973837 homeCount = 124 -6973838 waitCount = 64 -6973838 ripCount = 50 -6973839 locktype1 = 2 -6973839 locktype2 = 8 -6973840 locktype3 = 6 -6973840 goalCount = 1 -6973841 goalTotal = 41 -6973841 otherCount = 67 -~~~ -6973842 UP 10 -6973863 waslock = 0 -6973842 512 2048 -~~~ -6973904 DOWN 10 -6973904 0 2048 -~~~ -~~~ -~~~ -~~~ -6973929 homeCount = 124 -6973929 waitCount = 64 -6973930 ripCount = 50 -6973930 locktype1 = 2 -6973931 locktype2 = 8 -6973931 locktype3 = 6 -6973932 goalCount = 1 -6973932 goalTotal = 41 -6973933 otherCount = 67 -~~~ -6975942 UP 12 -6975942 2048 2048 -6978569 DOWN 12 -6978569 0 2048 -6978588 UP 12 -6978588 2048 2048 -6980629 DOWN 12 -6980629 0 2048 -6980662 UP 12 -6980662 2048 2048 -6981442 CLICK1 -6981442 CLICK2 -~~~ -~~~ -~~~ -6981468 2048 67110912 -~~~ -6981618 2048 2048 -6987168 DOWN 12 -6987168 0 2048 -~~~ -~~~ -6987185 0 0 -~~~ -~~~ -6987187 0 1 -~~~ -~~~ -6987188 0 3 -~~~ -~~~ -6987190 0 7 -~~~ -~~~ -6987192 0 15 -~~~ -~~~ -6987194 0 31 -~~~ -~~~ -6987196 0 63 -~~~ -~~~ -6987197 0 127 -~~~ -~~~ -6987199 0 255 -6987200 homeCount = 124 -6987201 waitCount = 65 -6987201 ripCount = 50 -6987202 locktype1 = 2 -6987202 locktype2 = 8 -6987203 locktype3 = 6 -6987224 goalCount = 1 -6987224 goalTotal = 41 -6987225 otherCount = 67 -~~~ -6987226 CURRENTGOAL IS [7] -~~~ -6995646 UP 5 -6995646 16 255 -~~~ -~~~ -6996817 DOWN 5 -6996817 0 255 -~~~ -~~~ -6996836 0 254 -~~~ -~~~ -6996838 0 252 -~~~ -~~~ -6996840 0 248 -~~~ -~~~ -6996841 0 240 -~~~ -~~~ -6996843 0 224 -~~~ -~~~ -6996845 0 192 -~~~ -~~~ -6996847 0 128 -~~~ -~~~ -6996849 0 0 -~~~ -~~~ -6996851 0 512 -6996852 homeCount = 124 -6996852 waitCount = 65 -6996853 ripCount = 50 -6996853 locktype1 = 2 -6996854 locktype2 = 8 -6996875 locktype3 = 6 -6996875 goalCount = 1 -6996876 goalTotal = 41 -6996876 otherCount = 68 -~~~ -6996877 16 512 -6996887 DOWN 5 -6996887 0 512 -6997103 16 512 -6997395 DOWN 5 -6997395 0 512 -6997437 16 512 -6997638 DOWN 5 -6997638 0 512 -7003045 UP 10 -7003046 waslock = 0 -7003045 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7003072 512 16777728 -~~~ -7003222 512 512 -7003296 DOWN 10 -7003296 0 512 -~~~ -~~~ -7003317 0 2560 -~~~ -~~~ -7003319 0 2048 -7003320 homeCount = 125 -7003320 waitCount = 65 -7003321 ripCount = 50 -7003321 locktype1 = 2 -7003322 locktype2 = 8 -7003322 locktype3 = 6 -7003323 goalCount = 1 -7003323 goalTotal = 41 -7003324 otherCount = 68 -~~~ -7003445 UP 10 -7003445 waslock = 0 -7003445 512 2048 -~~~ -7003799 DOWN 10 -7003799 0 2048 -~~~ -~~~ -~~~ -~~~ -7003820 homeCount = 125 -7003821 waitCount = 65 -7003821 ripCount = 50 -7003822 locktype1 = 2 -7003822 locktype2 = 8 -7003823 locktype3 = 6 -7003823 goalCount = 1 -7003824 goalTotal = 41 -7003824 otherCount = 68 -~~~ -7003825 UP 10 -7003825 waslock = 0 -7003825 512 2048 -7003847 DOWN 10 -7003847 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -7003870 homeCount = 125 -7003871 waitCount = 65 -7003871 ripCount = 50 -7003872 locktype1 = 2 -7003872 locktype2 = 8 -7003873 locktype3 = 6 -7003873 goalCount = 1 -7003874 goalTotal = 41 -7003874 otherCount = 68 -~~~ -7003892 UP 10 -7003893 waslock = 0 -7003892 512 2048 -~~~ -7008206 DOWN 10 -7008206 0 2048 -~~~ -~~~ -~~~ -~~~ -7008230 homeCount = 125 -7008230 waitCount = 65 -7008231 ripCount = 50 -7008231 locktype1 = 2 -7008232 locktype2 = 8 -7008232 locktype3 = 6 -7008233 goalCount = 1 -7008233 goalTotal = 41 -7008234 otherCount = 68 -~~~ -7008234 UP 10 -7008234 waslock = 0 -7008234 512 2048 -~~~ -7008328 DOWN 10 -7008328 0 2048 -~~~ -~~~ -~~~ -~~~ -7008353 homeCount = 125 -7008353 waitCount = 65 -7008354 ripCount = 50 -7008354 locktype1 = 2 -7008355 locktype2 = 8 -7008355 locktype3 = 6 -7008355 goalCount = 1 -7008356 goalTotal = 41 -7008356 otherCount = 68 -~~~ -7008384 UP 10 -7008385 waslock = 0 -7008384 512 2048 -~~~ -7008410 DOWN 10 -7008410 0 2048 -~~~ -~~~ -~~~ -~~~ -7008432 homeCount = 125 -7008433 waitCount = 65 -7008433 ripCount = 50 -7008434 locktype1 = 2 -7008434 locktype2 = 8 -7008435 locktype3 = 6 -7008435 goalCount = 1 -7008436 goalTotal = 41 -7008436 otherCount = 68 -~~~ -7010275 UP 12 -7010275 2048 2048 -7014339 DOWN 12 -7014339 0 2048 -7014351 UP 12 -7014351 2048 2048 -7015775 CLICK1 -7015775 CLICK2 -~~~ -~~~ -~~~ -7015800 2048 67110912 -~~~ -7015950 2048 2048 -7021725 DOWN 12 -7021725 0 2048 -~~~ -~~~ -7021748 0 0 -~~~ -~~~ -7021750 0 1 -~~~ -~~~ -7021751 0 3 -~~~ -~~~ -7021753 0 7 -~~~ -~~~ -7021755 0 15 -~~~ -~~~ -7021757 0 31 -~~~ -~~~ -7021759 0 63 -~~~ -~~~ -7021760 0 127 -~~~ -~~~ -7021762 0 255 -7021763 homeCount = 125 -7021764 waitCount = 66 -7021764 ripCount = 50 -7021765 locktype1 = 2 -7021765 locktype2 = 8 -7021766 locktype3 = 6 -7021787 goalCount = 1 -7021787 goalTotal = 41 -7021788 otherCount = 68 -~~~ -7021789 CURRENTGOAL IS [7] -~~~ -7029936 UP 11 -7029936 LOCKOUT 2 -7029935 1024 255 -~~~ -7029959 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7029967 1024 254 -~~~ -~~~ -7029969 1024 252 -~~~ -~~~ -7029970 1024 248 -~~~ -~~~ -7029972 1024 240 -~~~ -~~~ -7029974 1024 224 -~~~ -~~~ -7029976 1024 192 -~~~ -~~~ -7029978 1024 128 -~~~ -~~~ -7029980 1024 0 -~~~ -~~~ -7030046 DOWN 11 -7030046 0 0 -7038812 UP 1 -7038812 1 0 -7040163 DOWN 1 -7040163 0 0 -7044450 512 0 -7045274 0 0 -7045315 512 0 -7045409 0 0 -7045452 512 0 -7045487 0 0 -7045609 512 0 -7048059 0 0 -7048119 512 0 -7048160 0 0 -7054959 LOCKEND -~~~ -~~~ -~~~ -7054982 0 512 -7059549 UP 10 -7059549 waslock = 0 -7059549 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7059577 512 16777728 -~~~ -7059727 512 512 -7060080 DOWN 10 -7060080 0 512 -~~~ -~~~ -7060101 0 1536 -~~~ -~~~ -7060103 0 1024 -7060104 homeCount = 126 -7060104 waitCount = 66 -7060105 ripCount = 50 -7060105 locktype1 = 2 -7060106 locktype2 = 9 -7060106 locktype3 = 6 -7060107 goalCount = 1 -7060107 goalTotal = 41 -7060108 otherCount = 68 -~~~ -7060126 UP 10 -7060126 waslock = 0 -7060126 512 1024 -~~~ -7060201 DOWN 10 -7060201 0 1024 -~~~ -~~~ -~~~ -~~~ -7060230 homeCount = 126 -7060231 waitCount = 66 -7060231 ripCount = 50 -7060232 locktype1 = 2 -7060232 locktype2 = 9 -7060233 locktype3 = 6 -7060233 goalCount = 1 -7060234 goalTotal = 41 -7060234 otherCount = 68 -~~~ -7060239 UP 10 -7060240 waslock = 0 -7060239 512 1024 -~~~ -7065567 DOWN 10 -7065567 0 1024 -7065581 UP 10 -7065581 waslock = 0 -7065581 512 1024 -~~~ -~~~ -~~~ -~~~ -7065605 homeCount = 126 -7065605 waitCount = 66 -7065606 ripCount = 50 -7065606 locktype1 = 2 -7065607 locktype2 = 9 -7065607 locktype3 = 6 -7065608 goalCount = 1 -7065608 goalTotal = 41 -7065609 otherCount = 68 -~~~ -~~~ -7065644 DOWN 10 -7065644 0 1024 -~~~ -~~~ -~~~ -~~~ -7065673 homeCount = 126 -7065673 waitCount = 66 -7065674 ripCount = 50 -7065674 locktype1 = 2 -7065675 locktype2 = 9 -7065675 locktype3 = 6 -7065676 goalCount = 1 -7065676 goalTotal = 41 -7065677 otherCount = 68 -~~~ -7067367 UP 11 -7067367 1024 1024 -7069514 DOWN 11 -7069514 0 1024 -7069517 UP 11 -7069517 1024 1024 -7072868 BEEP1 -7072868 BEEP2 -~~~ -~~~ -~~~ -7072891 1024 33555456 -~~~ -7073041 1024 1024 -7079165 DOWN 11 -7079165 0 1024 -7079170 UP 11 -7079170 1024 1024 -~~~ -~~~ -7079193 1024 0 -~~~ -~~~ -7079195 1024 1 -~~~ -~~~ -7079197 1024 3 -~~~ -~~~ -7079199 1024 7 -~~~ -~~~ -7079200 1024 15 -~~~ -~~~ -7079202 1024 31 -~~~ -~~~ -7079204 1024 63 -~~~ -~~~ -7079206 1024 127 -~~~ -~~~ -7079208 1024 255 -7079209 homeCount = 126 -7079209 waitCount = 66 -7079210 ripCount = 51 -7079210 locktype1 = 2 -7079231 locktype2 = 9 -7079231 locktype3 = 6 -7079232 goalCount = 1 -7079232 goalTotal = 41 -7079233 otherCount = 68 -~~~ -7079234 CURRENTGOAL IS [7] -~~~ -7079287 DOWN 11 -7079287 0 255 -7079298 UP 11 -7079298 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7079327 homeCount = 126 -7079328 waitCount = 66 -7079328 ripCount = 51 -7079329 locktype1 = 2 -7079329 locktype2 = 9 -7079330 locktype3 = 6 -7079330 goalCount = 1 -7079331 goalTotal = 41 -7079331 otherCount = 68 -~~~ -7079332 CURRENTGOAL IS [7] -~~~ -7082284 DOWN 11 -7082284 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7082317 homeCount = 126 -7082318 waitCount = 66 -7082318 ripCount = 51 -7082319 locktype1 = 2 -7082319 locktype2 = 9 -7082320 locktype3 = 6 -7082320 goalCount = 1 -7082321 goalTotal = 41 -7082321 otherCount = 68 -~~~ -7082322 CURRENTGOAL IS [7] -~~~ -7085804 UP 7 -7085804 64 255 -~~~ -~~~ -7085824 outer reward -~~~ -7085824 64 4194559 -~~~ -~~~ -7085981 DOWN 7 -7085981 0 4194559 -~~~ -~~~ -7086003 0 4194558 -~~~ -~~~ -7086005 0 4194556 -~~~ -~~~ -7086007 0 4194552 -~~~ -~~~ -7086008 0 4194544 -~~~ -~~~ -7086010 0 4194528 -~~~ -~~~ -7086012 0 4194496 -~~~ -~~~ -7086014 0 4194432 -~~~ -~~~ -7086016 0 4194304 -~~~ -~~~ -7086018 0 4194816 -7086019 homeCount = 126 -7086019 waitCount = 66 -7086020 ripCount = 51 -7086041 locktype1 = 2 -7086041 locktype2 = 9 -7086042 locktype3 = 6 -7086042 goalCount = 2 -7086043 goalTotal = 42 -7086043 otherCount = 68 -~~~ -7086044 64 4194816 -7086274 64 512 -7094087 DOWN 7 -7094087 0 512 -7099767 UP 10 -7099767 waslock = 0 -7099767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7099800 512 16777728 -~~~ -7099950 512 512 -7104805 DOWN 10 -7104805 0 512 -~~~ -~~~ -7104824 0 2560 -~~~ -~~~ -7104826 0 2048 -7104827 homeCount = 127 -7104828 waitCount = 66 -7104828 ripCount = 51 -7104829 locktype1 = 2 -7104829 locktype2 = 9 -7104830 locktype3 = 6 -7104830 goalCount = 2 -7104831 goalTotal = 42 -7104831 otherCount = 68 -~~~ -7106451 UP 12 -7106451 2048 2048 -7108789 DOWN 12 -7108789 0 2048 -7108810 UP 12 -7108810 2048 2048 -7108872 DOWN 12 -7108872 0 2048 -7108884 UP 12 -7108884 2048 2048 -7111310 DOWN 12 -7111310 0 2048 -7111315 UP 12 -7111315 2048 2048 -7111952 CLICK1 -7111952 CLICK2 -~~~ -~~~ -~~~ -7111980 2048 67110912 -~~~ -7112130 2048 2048 -7119398 DOWN 12 -7119398 0 2048 -~~~ -~~~ -7119425 0 0 -~~~ -~~~ -7119426 0 1 -~~~ -~~~ -7119428 0 3 -~~~ -~~~ -7119430 0 7 -~~~ -~~~ -7119432 0 15 -~~~ -~~~ -7119434 0 31 -~~~ -~~~ -7119436 0 63 -~~~ -~~~ -7119437 0 127 -~~~ -7119439 UP 12 -7119439 2048 127 -~~~ -7119440 homeCount = 127 -7119441 waitCount = 67 -7119442 ripCount = 51 -7119442 locktype1 = 2 -7119463 locktype2 = 9 -7119464 locktype3 = 6 -7119464 goalCount = 2 -7119465 goalTotal = 42 -7119465 otherCount = 68 -~~~ -7119466 CURRENTGOAL IS [7] -~~~ -7119467 2048 255 -7121503 DOWN 12 -7121503 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7121544 homeCount = 127 -7121544 waitCount = 67 -7121545 ripCount = 51 -7121545 locktype1 = 2 -7121546 locktype2 = 9 -7121546 locktype3 = 6 -7121547 goalCount = 2 -7121547 goalTotal = 42 -7121548 otherCount = 68 -~~~ -7121549 CURRENTGOAL IS [7] -~~~ -7121574 UP 12 -7121574 2048 255 -7121609 DOWN 12 -7121609 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7121643 homeCount = 127 -7121643 waitCount = 67 -7121644 ripCount = 51 -7121644 locktype1 = 2 -7121645 locktype2 = 9 -7121645 locktype3 = 6 -7121646 goalCount = 2 -7121646 goalTotal = 42 -7121647 otherCount = 68 -~~~ -7121648 CURRENTGOAL IS [7] -~~~ -7126447 UP 7 -7126447 64 255 -~~~ -~~~ -7126469 outer reward -~~~ -7126469 64 4194559 -~~~ -~~~ -7126710 DOWN 7 -7126710 0 4194559 -~~~ -~~~ -7126737 0 4194558 -~~~ -~~~ -7126739 0 4194556 -~~~ -~~~ -7126740 0 4194552 -~~~ -~~~ -7126742 0 4194544 -~~~ -7126744 64 4194544 -~~~ -~~~ -7126745 64 4194528 -~~~ -~~~ -7126747 64 4194496 -~~~ -7126748 64 4194432 -~~~ -~~~ -7126750 64 4194304 -~~~ -~~~ -7126751 64 4194816 -7126752 homeCount = 127 -7126774 waitCount = 67 -7126774 ripCount = 51 -7126775 locktype1 = 2 -7126775 locktype2 = 9 -7126775 locktype3 = 6 -7126776 goalCount = 3 -7126776 goalTotal = 43 -7126777 otherCount = 68 -~~~ -7126919 64 512 -7127253 DOWN 7 -7127253 0 512 -7127273 64 512 -7127534 DOWN 7 -7127534 0 512 -7127543 64 512 -7127670 DOWN 7 -7127670 0 512 -7127680 64 512 -7136565 DOWN 7 -7136565 0 512 -7136647 64 512 -7136665 DOWN 7 -7136665 0 512 -7140698 UP 10 -7140698 waslock = 0 -7140698 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7140726 512 16777728 -~~~ -7140876 512 512 -7147055 DOWN 10 -7147055 0 512 -~~~ -~~~ -7147078 0 1536 -~~~ -~~~ -7147080 0 1024 -7147081 homeCount = 128 -7147081 waitCount = 67 -7147082 ripCount = 51 -7147082 locktype1 = 2 -7147083 locktype2 = 9 -7147083 locktype3 = 6 -7147084 goalCount = 3 -7147084 goalTotal = 43 -7147085 otherCount = 68 -~~~ -7148849 UP 11 -7148849 1024 1024 -7151745 DOWN 11 -7151745 0 1024 -7151771 UP 11 -7151771 1024 1024 -7151783 DOWN 11 -7151783 0 1024 -7151814 UP 11 -7151814 1024 1024 -7151849 BEEP1 -7151849 BEEP2 -~~~ -~~~ -~~~ -7151871 1024 33555456 -~~~ -7152020 1024 1024 -7158055 DOWN 11 -7158055 0 1024 -7158073 UP 11 -7158073 1024 1024 -~~~ -~~~ -7158091 1024 0 -~~~ -~~~ -7158093 1024 1 -~~~ -~~~ -7158095 1024 3 -~~~ -~~~ -7158097 1024 7 -~~~ -~~~ -7158098 1024 15 -~~~ -~~~ -7158100 1024 31 -~~~ -~~~ -7158102 1024 63 -~~~ -~~~ -7158104 1024 127 -~~~ -~~~ -7158106 1024 255 -7158107 homeCount = 128 -7158107 waitCount = 67 -7158108 ripCount = 52 -7158108 locktype1 = 2 -7158130 locktype2 = 9 -7158130 locktype3 = 6 -7158130 goalCount = 3 -7158131 goalTotal = 43 -7158131 otherCount = 68 -~~~ -7158132 CURRENTGOAL IS [7] -~~~ -7160244 DOWN 11 -7160244 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7160279 homeCount = 128 -7160280 waitCount = 67 -7160280 ripCount = 52 -7160281 locktype1 = 2 -7160281 locktype2 = 9 -7160282 locktype3 = 6 -7160282 goalCount = 3 -7160283 goalTotal = 43 -7160283 otherCount = 68 -~~~ -7160284 CURRENTGOAL IS [7] -~~~ -7160372 UP 11 -7160371 1024 255 -7160380 DOWN 11 -7160380 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7160417 homeCount = 128 -7160418 waitCount = 67 -7160418 ripCount = 52 -7160419 locktype1 = 2 -7160419 locktype2 = 9 -7160420 locktype3 = 6 -7160420 goalCount = 3 -7160421 goalTotal = 43 -7160421 otherCount = 68 -~~~ -7160422 CURRENTGOAL IS [7] -~~~ -7163197 UP 7 -7163197 64 255 -~~~ -~~~ -7163218 outer reward -~~~ -7163218 64 4194559 -~~~ -~~~ -7163445 DOWN 7 -7163445 0 4194559 -~~~ -~~~ -7163466 0 4194558 -~~~ -~~~ -7163468 0 4194556 -~~~ -~~~ -7163470 0 4194552 -~~~ -~~~ -7163472 0 4194544 -~~~ -~~~ -7163473 0 4194528 -~~~ -~~~ -7163475 0 4194496 -~~~ -~~~ -7163477 0 4194432 -~~~ -~~~ -7163479 0 4194304 -~~~ -~~~ -7163481 0 4194816 -7163482 homeCount = 128 -7163482 waitCount = 67 -7163483 ripCount = 52 -7163503 locktype1 = 2 -7163504 locktype2 = 9 -7163504 locktype3 = 6 -7163505 goalCount = 4 -7163505 goalTotal = 44 -7163506 otherCount = 68 -~~~ -7163506 64 4194816 -7163668 64 512 -7173399 DOWN 7 -7173399 0 512 -7173483 64 512 -7173516 DOWN 7 -7173516 0 512 -7177879 UP 10 -7177879 waslock = 0 -7177879 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7177905 512 16777728 -~~~ -7178055 512 512 -7185421 DOWN 10 -7185421 0 512 -~~~ -~~~ -7185440 0 1536 -~~~ -~~~ -7185441 0 1024 -7185442 homeCount = 129 -7185443 waitCount = 67 -7185443 ripCount = 52 -7185444 locktype1 = 2 -7185444 locktype2 = 9 -7185445 locktype3 = 6 -7185445 goalCount = 4 -7185446 goalTotal = 44 -7185446 otherCount = 68 -~~~ -7187609 UP 11 -7187609 1024 1024 -7189528 DOWN 11 -7189527 0 1024 -7189561 UP 11 -7189561 1024 1024 -7190448 DOWN 11 -7190448 0 1024 -7190455 UP 11 -7190455 1024 1024 -7190610 BEEP1 -7190610 BEEP2 -~~~ -~~~ -~~~ -7190633 1024 33555456 -~~~ -7190783 1024 1024 -7196165 DOWN 11 -7196165 0 1024 -~~~ -~~~ -7196190 0 0 -~~~ -~~~ -7196192 0 1 -~~~ -~~~ -7196194 0 3 -~~~ -~~~ -7196196 0 7 -~~~ -~~~ -7196198 0 15 -~~~ -~~~ -7196199 0 31 -~~~ -~~~ -7196201 0 63 -~~~ -~~~ -7196203 0 127 -~~~ -~~~ -7196205 0 255 -7196206 homeCount = 129 -7196206 waitCount = 67 -7196207 ripCount = 53 -7196207 locktype1 = 2 -7196208 locktype2 = 9 -7196208 locktype3 = 6 -7196229 goalCount = 4 -7196230 goalTotal = 44 -7196230 otherCount = 68 -~~~ -7196231 CURRENTGOAL IS [7] -~~~ -7196249 UP 11 -7196249 1024 255 -7196252 DOWN 11 -7196252 0 255 -7196254 UP 11 -7196254 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7196289 homeCount = 129 -7196290 waitCount = 67 -7196290 ripCount = 53 -7196291 locktype1 = 2 -7196291 locktype2 = 9 -7196291 locktype3 = 6 -7196292 goalCount = 4 -7196292 goalTotal = 44 -7196293 otherCount = 68 -~~~ -7196294 CURRENTGOAL IS [7] -~~~ -7196297 DOWN 11 -7196297 0 255 -7196324 UP 11 -7196324 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7196352 homeCount = 129 -7196352 waitCount = 67 -7196353 ripCount = 53 -7196353 locktype1 = 2 -7196354 locktype2 = 9 -7196354 locktype3 = 6 -7196355 goalCount = 4 -7196355 goalTotal = 44 -7196356 otherCount = 68 -~~~ -7196357 CURRENTGOAL IS [7] -~~~ -7198389 DOWN 11 -7198389 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198425 homeCount = 129 -7198426 waitCount = 67 -7198426 ripCount = 53 -7198427 locktype1 = 2 -7198428 locktype2 = 9 -7198428 locktype3 = 6 -7198428 goalCount = 4 -7198429 goalTotal = 44 -7198429 otherCount = 68 -~~~ -7198430 CURRENTGOAL IS [7] -~~~ -7198437 UP 11 -7198437 1024 255 -7198523 DOWN 11 -7198523 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198559 homeCount = 129 -7198560 waitCount = 67 -7198560 ripCount = 53 -7198561 locktype1 = 2 -7198561 locktype2 = 9 -7198562 locktype3 = 6 -7198562 goalCount = 4 -7198563 goalTotal = 44 -7198563 otherCount = 68 -~~~ -7198564 CURRENTGOAL IS [7] -~~~ -7198624 UP 11 -7198624 1024 255 -7198644 DOWN 11 -7198644 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198681 homeCount = 129 -7198682 waitCount = 67 -7198682 ripCount = 53 -7198683 locktype1 = 2 -7198683 locktype2 = 9 -7198684 locktype3 = 6 -7198684 goalCount = 4 -7198685 goalTotal = 44 -7198685 otherCount = 68 -~~~ -7198686 CURRENTGOAL IS [7] -~~~ -7198805 UP 11 -7198805 1024 255 -7198849 DOWN 11 -7198849 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198882 homeCount = 129 -7198883 waitCount = 67 -7198883 ripCount = 53 -7198884 locktype1 = 2 -7198884 locktype2 = 9 -7198885 locktype3 = 6 -7198885 goalCount = 4 -7198885 goalTotal = 44 -7198886 otherCount = 68 -~~~ -7198887 CURRENTGOAL IS [7] -~~~ -7201380 UP 7 -7201380 64 255 -~~~ -~~~ -7201408 outer reward -~~~ -7201408 64 4194559 -~~~ -~~~ -7201633 DOWN 7 -7201633 0 4194559 -~~~ -~~~ -7201656 0 4194558 -~~~ -~~~ -7201657 0 4194556 -~~~ -~~~ -7201659 0 4194552 -~~~ -~~~ -7201661 0 4194544 -~~~ -~~~ -7201663 0 4194528 -~~~ -~~~ -7201665 0 4194496 -~~~ -~~~ -7201666 0 4194432 -~~~ -~~~ -7201668 0 4194304 -~~~ -~~~ -7201670 0 4194816 -7201671 homeCount = 129 -7201672 waitCount = 67 -7201672 ripCount = 53 -7201693 locktype1 = 2 -7201694 locktype2 = 9 -7201694 locktype3 = 6 -7201695 goalCount = 5 -7201695 goalTotal = 45 -7201696 otherCount = 68 -~~~ -7201696 64 4194816 -7201858 64 512 -7212005 DOWN 7 -7212005 0 512 -7212062 64 512 -7212101 DOWN 7 -7212101 0 512 -7216582 UP 10 -7216582 waslock = 0 -7216582 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7216613 512 16777728 -~~~ -7216763 512 512 -7216790 DOWN 10 -7216790 0 512 -~~~ -~~~ -7216807 0 2560 -~~~ -~~~ -7216809 0 2048 -7216810 homeCount = 130 -7216810 waitCount = 67 -7216811 ripCount = 53 -7216811 locktype1 = 2 -7216812 locktype2 = 9 -7216812 locktype3 = 6 -7216813 goalCount = 5 -7216813 goalTotal = 45 -7216813 otherCount = 68 -~~~ -7216851 UP 10 -7216851 waslock = 0 -7216851 512 2048 -~~~ -7222018 DOWN 10 -7222018 0 2048 -7222030 UP 10 -7222030 waslock = 0 -7222030 512 2048 -~~~ -~~~ -~~~ -~~~ -7222052 homeCount = 130 -7222052 waitCount = 67 -7222053 ripCount = 53 -7222053 locktype1 = 2 -7222054 locktype2 = 9 -7222054 locktype3 = 6 -7222054 goalCount = 5 -7222055 goalTotal = 45 -7222055 otherCount = 68 -~~~ -~~~ -7222139 DOWN 10 -7222139 0 2048 -~~~ -~~~ -~~~ -~~~ -7222164 homeCount = 130 -7222165 waitCount = 67 -7222165 ripCount = 53 -7222166 locktype1 = 2 -7222166 locktype2 = 9 -7222167 locktype3 = 6 -7222167 goalCount = 5 -7222167 goalTotal = 45 -7222168 otherCount = 68 -~~~ -7224209 UP 12 -7224208 2048 2048 -7226515 DOWN 12 -7226515 0 2048 -7226537 UP 12 -7226537 2048 2048 -7226794 DOWN 12 -7226794 0 2048 -7226874 UP 12 -7226874 2048 2048 -7227064 DOWN 12 -7227064 0 2048 -7227084 UP 12 -7227084 2048 2048 -7227343 DOWN 12 -7227343 0 2048 -7227375 UP 12 -7227375 2048 2048 -7227423 DOWN 12 -7227423 0 2048 -7227448 UP 12 -7227447 2048 2048 -7227489 DOWN 12 -7227489 0 2048 -7227575 UP 12 -7227575 2048 2048 -7227698 DOWN 12 -7227698 0 2048 -7227728 UP 12 -7227727 2048 2048 -7230295 DOWN 12 -7230295 0 2048 -7230303 UP 12 -7230303 2048 2048 -7230405 DOWN 12 -7230405 0 2048 -7230418 UP 12 -7230418 2048 2048 -7231209 CLICK1 -7231209 CLICK2 -~~~ -~~~ -~~~ -7231238 2048 67110912 -~~~ -7231388 2048 2048 -7238786 DOWN 12 -7238786 0 2048 -~~~ -~~~ -7238809 0 0 -~~~ -~~~ -7238810 0 1 -~~~ -~~~ -7238812 0 3 -~~~ -~~~ -7238814 0 7 -~~~ -~~~ -7238816 0 15 -~~~ -~~~ -7238818 0 31 -~~~ -~~~ -7238820 0 63 -~~~ -~~~ -7238821 0 127 -~~~ -~~~ -7238823 0 255 -7238824 homeCount = 130 -7238825 waitCount = 68 -7238825 ripCount = 53 -7238826 locktype1 = 2 -7238826 locktype2 = 9 -7238848 locktype3 = 6 -7238848 goalCount = 5 -7238848 goalTotal = 45 -7238849 otherCount = 68 -~~~ -7238850 CURRENTGOAL IS [7] -~~~ -7238850 UP 12 -7238850 2048 255 -7238885 DOWN 12 -7238885 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7238925 homeCount = 130 -7238926 waitCount = 68 -7238926 ripCount = 53 -7238927 locktype1 = 2 -7238927 locktype2 = 9 -7238928 locktype3 = 6 -7238928 goalCount = 5 -7238929 goalTotal = 45 -7238929 otherCount = 68 -~~~ -7238930 CURRENTGOAL IS [7] -~~~ -7239004 UP 12 -7239004 2048 255 -7241346 DOWN 12 -7241346 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7241387 homeCount = 130 -7241388 waitCount = 68 -7241388 ripCount = 53 -7241389 locktype1 = 2 -7241389 locktype2 = 9 -7241390 locktype3 = 6 -7241390 goalCount = 5 -7241391 goalTotal = 45 -7241391 otherCount = 68 -~~~ -7241392 CURRENTGOAL IS [7] -~~~ -7241393 UP 12 -7241393 2048 255 -7241448 DOWN 12 -7241448 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7241486 homeCount = 130 -7241487 waitCount = 68 -7241487 ripCount = 53 -7241488 locktype1 = 2 -7241488 locktype2 = 9 -7241489 locktype3 = 6 -7241489 goalCount = 5 -7241490 goalTotal = 45 -7241490 otherCount = 68 -~~~ -7241491 CURRENTGOAL IS [7] -~~~ -7246047 UP 7 -7246047 64 255 -~~~ -~~~ -7246073 outer reward -~~~ -7246073 64 4194559 -~~~ -~~~ -7246239 DOWN 7 -7246239 0 4194559 -~~~ -~~~ -7246263 0 4194558 -~~~ -~~~ -7246265 0 4194556 -~~~ -~~~ -7246267 0 4194552 -~~~ -~~~ -7246269 0 4194544 -~~~ -~~~ -7246271 0 4194528 -~~~ -~~~ -7246273 0 4194496 -~~~ -~~~ -7246274 0 4194432 -~~~ -~~~ -7246276 0 4194304 -~~~ -~~~ -7246278 0 4194816 -7246279 homeCount = 130 -7246280 waitCount = 68 -7246280 ripCount = 53 -7246301 locktype1 = 2 -7246302 locktype2 = 9 -7246302 locktype3 = 6 -7246303 goalCount = 6 -7246303 goalTotal = 46 -7246304 otherCount = 68 -~~~ -7246304 64 4194816 -7246523 64 512 -7246844 DOWN 7 -7246844 0 512 -7246865 64 512 -7246981 DOWN 7 -7246981 0 512 -7246989 64 512 -7247265 DOWN 7 -7247265 0 512 -7247273 64 512 -7253973 DOWN 7 -7253973 0 512 -7253988 64 512 -7255948 DOWN 7 -7255948 0 512 -7260197 UP 10 -7260197 waslock = 0 -7260197 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7260223 512 16777728 -~~~ -7260373 512 512 -7264997 DOWN 10 -7264997 0 512 -~~~ -~~~ -7265017 0 1536 -~~~ -~~~ -7265019 0 1024 -7265020 homeCount = 131 -7265021 waitCount = 68 -7265021 ripCount = 53 -7265022 locktype1 = 2 -7265022 locktype2 = 9 -7265023 locktype3 = 6 -7265023 goalCount = 6 -7265024 goalTotal = 46 -7265024 otherCount = 68 -~~~ -7267139 UP 11 -7267139 1024 1024 -7267176 DOWN 11 -7267176 0 1024 -7267210 UP 11 -7267210 1024 1024 -7267240 DOWN 11 -7267240 0 1024 -7267440 LOCKOUT 3 -~~~ -7267457 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -7267461 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7267592 UP 11 -7267592 1024 0 -7269771 DOWN 11 -7269771 0 0 -7269794 UP 11 -7269794 1024 0 -7271659 DOWN 11 -7271659 0 0 -7271674 UP 11 -7271674 1024 0 -7275691 DOWN 11 -7275691 0 0 -7282884 UP 8 -7282884 128 0 -7283366 DOWN 8 -7283366 0 0 -7292457 LOCKEND -~~~ -~~~ -~~~ -7292478 0 512 -7293423 UP 10 -7293423 waslock = 0 -7293423 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7293452 512 16777728 -~~~ -7293602 512 512 -7298559 DOWN 10 -7298559 0 512 -~~~ -~~~ -7298577 0 2560 -~~~ -~~~ -7298579 0 2048 -7298580 homeCount = 132 -7298580 waitCount = 68 -7298581 ripCount = 53 -7298581 locktype1 = 2 -7298582 locktype2 = 9 -7298582 locktype3 = 7 -7298583 goalCount = 6 -7298583 goalTotal = 46 -7298584 otherCount = 68 -~~~ -7298630 UP 10 -7298630 waslock = 0 -7298630 512 2048 -~~~ -7298656 DOWN 10 -7298656 0 2048 -~~~ -~~~ -~~~ -~~~ -7298670 homeCount = 132 -7298670 waitCount = 68 -7298671 ripCount = 53 -7298671 locktype1 = 2 -7298672 locktype2 = 9 -7298672 locktype3 = 7 -7298673 goalCount = 6 -7298673 goalTotal = 46 -7298674 otherCount = 68 -~~~ -7300525 UP 12 -7300525 2048 2048 -7303861 DOWN 12 -7303861 0 2048 -7303914 UP 12 -7303914 2048 2048 -7304045 DOWN 12 -7304045 0 2048 -7304061 UP 12 -7304061 2048 2048 -7308526 CLICK1 -7308526 CLICK2 -~~~ -~~~ -~~~ -7308548 2048 67110912 -~~~ -7308698 2048 2048 -7317748 DOWN 12 -7317748 0 2048 -~~~ -~~~ -7317770 0 0 -~~~ -~~~ -7317772 0 1 -~~~ -~~~ -7317774 0 3 -~~~ -~~~ -7317776 0 7 -~~~ -~~~ -7317777 0 15 -~~~ -~~~ -7317779 0 31 -~~~ -~~~ -7317781 0 63 -~~~ -~~~ -7317783 0 127 -~~~ -~~~ -7317785 0 255 -7317786 homeCount = 132 -7317786 waitCount = 69 -7317787 ripCount = 53 -7317787 locktype1 = 2 -7317788 locktype2 = 9 -7317809 locktype3 = 7 -7317809 goalCount = 6 -7317810 goalTotal = 46 -7317810 otherCount = 68 -~~~ -7317811 CURRENTGOAL IS [7] -~~~ -7326698 UP 7 -7326698 64 255 -~~~ -~~~ -7326722 outer reward -~~~ -7326722 64 4194559 -~~~ -~~~ -7327001 DOWN 7 -7327001 0 4194559 -~~~ -~~~ -7327021 0 4194558 -~~~ -~~~ -7327022 0 4194556 -~~~ -~~~ -7327024 0 4194552 -~~~ -~~~ -7327026 0 4194544 -~~~ -~~~ -7327028 0 4194528 -~~~ -~~~ -7327030 0 4194496 -~~~ -~~~ -7327032 0 4194432 -~~~ -~~~ -7327033 0 4194304 -~~~ -~~~ -7327035 0 4194816 -7327036 homeCount = 132 -7327037 waitCount = 69 -7327037 ripCount = 53 -7327058 locktype1 = 2 -7327059 locktype2 = 9 -7327059 locktype3 = 7 -7327059 goalCount = 7 -7327060 goalTotal = 47 -7327060 otherCount = 68 -~~~ -7327061 64 4194816 -7327172 64 512 -7327436 DOWN 7 -7327436 0 512 -7327444 64 512 -7335677 DOWN 7 -7335677 0 512 -7335702 64 512 -7335769 DOWN 7 -7335769 0 512 -7340817 UP 10 -7340817 waslock = 0 -7340817 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7340846 512 16777728 -~~~ -7340996 512 512 -7341059 DOWN 10 -7341059 0 512 -~~~ -~~~ -7341080 0 1536 -~~~ -~~~ -7341082 0 1024 -7341083 homeCount = 133 -7341084 waitCount = 69 -7341084 ripCount = 53 -7341085 locktype1 = 2 -7341085 locktype2 = 9 -7341086 locktype3 = 7 -7341086 goalCount = 7 -7341087 goalTotal = 47 -7341087 otherCount = 68 -~~~ -7341163 UP 10 -7341163 waslock = 0 -7341163 512 1024 -~~~ -7345850 DOWN 10 -7345850 0 1024 -7345862 UP 10 -7345862 waslock = 0 -7345862 512 1024 -~~~ -~~~ -~~~ -~~~ -7345873 homeCount = 133 -7345873 waitCount = 69 -7345874 ripCount = 53 -7345874 locktype1 = 2 -7345875 locktype2 = 9 -7345875 locktype3 = 7 -7345876 goalCount = 7 -7345876 goalTotal = 47 -7345876 otherCount = 68 -~~~ -~~~ -7345957 DOWN 10 -7345957 0 1024 -~~~ -~~~ -~~~ -~~~ -7345984 homeCount = 133 -7345985 waitCount = 69 -7345985 ripCount = 53 -7345986 locktype1 = 2 -7345986 locktype2 = 9 -7345987 locktype3 = 7 -7345987 goalCount = 7 -7345988 goalTotal = 47 -7345988 otherCount = 68 -~~~ -7346012 UP 10 -7346012 waslock = 0 -7346012 512 1024 -~~~ -7346063 DOWN 10 -7346063 0 1024 -~~~ -~~~ -~~~ -~~~ -7346083 homeCount = 133 -7346083 waitCount = 69 -7346084 ripCount = 53 -7346084 locktype1 = 2 -7346085 locktype2 = 9 -7346085 locktype3 = 7 -7346086 goalCount = 7 -7346086 goalTotal = 47 -7346087 otherCount = 68 -~~~ -7348564 UP 11 -7348564 1024 1024 -7348580 DOWN 11 -7348580 0 1024 -7348605 UP 11 -7348605 1024 1024 -7350658 DOWN 11 -7350658 0 1024 -7350674 UP 11 -7350674 1024 1024 -7351121 DOWN 11 -7351121 0 1024 -7351136 UP 11 -7351136 1024 1024 -7353064 BEEP1 -7353064 BEEP2 -~~~ -~~~ -~~~ -7353083 1024 33555456 -~~~ -7353233 1024 1024 -7360547 DOWN 11 -7360547 0 1024 -~~~ -~~~ -7360571 0 0 -~~~ -~~~ -7360573 0 1 -~~~ -~~~ -7360575 0 3 -~~~ -~~~ -7360577 0 7 -~~~ -~~~ -7360578 0 15 -~~~ -~~~ -7360580 0 31 -~~~ -~~~ -7360582 0 63 -~~~ -~~~ -7360584 0 127 -~~~ -~~~ -7360586 0 255 -7360587 homeCount = 133 -7360587 waitCount = 69 -7360588 ripCount = 54 -7360588 locktype1 = 2 -7360589 locktype2 = 9 -7360610 locktype3 = 7 -7360610 goalCount = 7 -7360611 goalTotal = 47 -7360611 otherCount = 68 -~~~ -7360612 CURRENTGOAL IS [7] -~~~ -7360641 UP 11 -7360641 1024 255 -7360672 DOWN 11 -7360672 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7360707 homeCount = 133 -7360708 waitCount = 69 -7360708 ripCount = 54 -7360709 locktype1 = 2 -7360709 locktype2 = 9 -7360710 locktype3 = 7 -7360710 goalCount = 7 -7360711 goalTotal = 47 -7360711 otherCount = 68 -~~~ -7360712 CURRENTGOAL IS [7] -~~~ -7360721 UP 11 -7360721 1024 255 -7362656 DOWN 11 -7362656 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7362697 homeCount = 133 -7362698 waitCount = 69 -7362698 ripCount = 54 -7362699 locktype1 = 2 -7362699 locktype2 = 9 -7362700 locktype3 = 7 -7362700 goalCount = 7 -7362701 goalTotal = 47 -7362701 otherCount = 68 -~~~ -7362702 CURRENTGOAL IS [7] -~~~ -7365352 UP 7 -7365352 64 255 -~~~ -~~~ -7365373 outer reward -~~~ -7365374 64 4194559 -~~~ -~~~ -7365536 DOWN 7 -7365536 0 4194559 -~~~ -~~~ -7365562 0 4194558 -~~~ -~~~ -7365563 0 4194556 -~~~ -~~~ -7365565 0 4194552 -~~~ -~~~ -7365567 0 4194544 -~~~ -~~~ -7365569 0 4194528 -~~~ -~~~ -7365571 0 4194496 -~~~ -~~~ -7365572 0 4194432 -~~~ -~~~ -7365574 0 4194304 -~~~ -~~~ -7365576 0 4194816 -7365577 homeCount = 133 -7365578 waitCount = 69 -7365578 ripCount = 54 -7365599 locktype1 = 2 -7365599 locktype2 = 9 -7365600 locktype3 = 7 -7365600 goalCount = 8 -7365601 goalTotal = 48 -7365601 otherCount = 68 -~~~ -7365605 64 4194816 -7365823 64 512 -7366174 DOWN 7 -7366174 0 512 -7366179 64 512 -7374623 DOWN 7 -7374623 0 512 -7379786 UP 10 -7379786 waslock = 0 -7379786 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7379809 512 16777728 -~~~ -7379959 512 512 -7384922 DOWN 10 -7384922 0 512 -~~~ -~~~ -7384944 0 1536 -~~~ -~~~ -7384946 0 1024 -7384947 homeCount = 134 -7384948 waitCount = 69 -7384948 ripCount = 54 -7384948 locktype1 = 2 -7384949 locktype2 = 9 -7384949 locktype3 = 7 -7384950 goalCount = 8 -7384950 goalTotal = 48 -7384951 otherCount = 68 -~~~ -7384996 UP 10 -7384996 waslock = 0 -7384996 512 1024 -7385026 DOWN 10 -7385026 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -7385048 homeCount = 134 -7385048 waitCount = 69 -7385049 ripCount = 54 -7385049 locktype1 = 2 -7385050 locktype2 = 9 -7385050 locktype3 = 7 -7385051 goalCount = 8 -7385051 goalTotal = 48 -7385052 otherCount = 68 -~~~ -7387275 UP 11 -7387275 1024 1024 -7389347 DOWN 11 -7389347 0 1024 -7389404 UP 11 -7389404 1024 1024 -7393276 BEEP1 -7393276 BEEP2 -~~~ -~~~ -~~~ -7393295 1024 33555456 -~~~ -7393445 1024 1024 -7402954 DOWN 11 -7402954 0 1024 -~~~ -~~~ -7402973 0 0 -~~~ -~~~ -7402975 0 1 -~~~ -~~~ -7402977 0 3 -~~~ -~~~ -7402979 0 7 -~~~ -~~~ -7402981 0 15 -~~~ -~~~ -7402982 0 31 -~~~ -~~~ -7402984 0 63 -~~~ -~~~ -7402986 0 127 -~~~ -~~~ -7402988 0 255 -7402989 homeCount = 134 -7402989 waitCount = 69 -7402990 ripCount = 55 -7402990 locktype1 = 2 -7402991 locktype2 = 9 -7403012 locktype3 = 7 -7403013 goalCount = 8 -7403013 goalTotal = 48 -7403013 otherCount = 68 -~~~ -7403015 CURRENTGOAL IS [7] -~~~ -7403015 UP 11 -7403015 1024 255 -7403061 DOWN 11 -7403061 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7403099 homeCount = 134 -7403100 waitCount = 69 -7403100 ripCount = 55 -7403101 locktype1 = 2 -7403101 locktype2 = 9 -7403102 locktype3 = 7 -7403102 goalCount = 8 -7403103 goalTotal = 48 -7403103 otherCount = 68 -~~~ -7403104 CURRENTGOAL IS [7] -~~~ -7406281 UP 7 -7406281 64 255 -~~~ -~~~ -7406307 outer reward -~~~ -7406307 64 4194559 -~~~ -~~~ -7406343 DOWN 7 -7406343 0 4194559 -~~~ -~~~ -7406364 0 4194558 -~~~ -~~~ -7406366 0 4194556 -~~~ -~~~ -7406368 0 4194552 -~~~ -7406369 64 4194552 -~~~ -~~~ -7406371 64 4194544 -~~~ -~~~ -7406373 64 4194528 -~~~ -7406374 64 4194496 -~~~ -~~~ -7406375 64 4194432 -~~~ -~~~ -7406377 64 4194304 -~~~ -~~~ -7406379 64 4194816 -7406380 homeCount = 134 -7406401 waitCount = 69 -7406402 ripCount = 55 -7406402 locktype1 = 2 -7406403 locktype2 = 9 -7406403 locktype3 = 7 -7406404 goalCount = 9 -7406404 goalTotal = 49 -7406405 otherCount = 68 -~~~ -7406561 DOWN 7 -7406561 0 4194816 -7406594 64 4194816 -7406757 64 512 -7415726 DOWN 7 -7415726 0 512 -7415737 64 512 -7417333 DOWN 7 -7417333 0 512 -7417337 64 512 -7417494 DOWN 7 -7417494 0 512 -7417522 64 512 -7417596 DOWN 7 -7417596 0 512 -7425090 UP 10 -7425090 waslock = 0 -7425090 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7425120 512 16777728 -~~~ -7425270 512 512 -7431156 DOWN 10 -7431156 0 512 -7431172 UP 10 -7431172 waslock = 0 -7431172 512 512 -~~~ -~~~ -7431176 512 1536 -~~~ -~~~ -7431178 512 1024 -7431179 homeCount = 135 -7431179 waitCount = 69 -7431180 ripCount = 55 -7431180 locktype1 = 2 -7431181 locktype2 = 9 -7431181 locktype3 = 7 -7431181 goalCount = 9 -7431182 goalTotal = 49 -7431182 otherCount = 68 -~~~ -~~~ -7431273 DOWN 10 -7431273 0 1024 -~~~ -~~~ -~~~ -~~~ -7431299 homeCount = 135 -7431300 waitCount = 69 -7431300 ripCount = 55 -7431301 locktype1 = 2 -7431301 locktype2 = 9 -7431302 locktype3 = 7 -7431302 goalCount = 9 -7431303 goalTotal = 49 -7431303 otherCount = 68 -~~~ -7431350 UP 10 -7431350 waslock = 0 -7431350 512 1024 -7431373 DOWN 10 -7431373 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -7431399 homeCount = 135 -7431399 waitCount = 69 -7431400 ripCount = 55 -7431400 locktype1 = 2 -7431401 locktype2 = 9 -7431401 locktype3 = 7 -7431402 goalCount = 9 -7431402 goalTotal = 49 -7431403 otherCount = 68 -~~~ -7433644 UP 11 -7433644 1024 1024 -7435685 DOWN 11 -7435685 0 1024 -7435694 UP 11 -7435694 1024 1024 -7435696 DOWN 11 -7435696 0 1024 -7435712 UP 11 -7435712 1024 1024 -7435877 DOWN 11 -7435877 0 1024 -7435902 UP 11 -7435902 1024 1024 -7436645 BEEP1 -7436645 BEEP2 -~~~ -~~~ -~~~ -7436666 1024 33555456 -~~~ -7436816 1024 1024 -7444254 DOWN 11 -7444254 0 1024 -~~~ -~~~ -7444275 0 0 -~~~ -~~~ -7444277 0 1 -~~~ -~~~ -7444279 0 3 -~~~ -~~~ -7444281 0 7 -~~~ -~~~ -7444283 0 15 -~~~ -~~~ -7444285 0 31 -~~~ -~~~ -7444286 0 63 -~~~ -~~~ -7444288 0 127 -~~~ -~~~ -7444290 0 255 -7444291 homeCount = 135 -7444292 waitCount = 69 -7444292 ripCount = 56 -7444293 locktype1 = 2 -7444293 locktype2 = 9 -7444294 locktype3 = 7 -7444315 goalCount = 9 -7444315 goalTotal = 49 -7444316 otherCount = 68 -~~~ -7444317 CURRENTGOAL IS [7] -~~~ -7444336 UP 11 -7444336 1024 255 -7446175 DOWN 11 -7446175 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7446211 homeCount = 135 -7446212 waitCount = 69 -7446212 ripCount = 56 -7446213 locktype1 = 2 -7446213 locktype2 = 9 -7446214 locktype3 = 7 -7446214 goalCount = 9 -7446215 goalTotal = 49 -7446215 otherCount = 68 -~~~ -7446216 CURRENTGOAL IS [7] -~~~ -7448886 UP 7 -7448886 64 255 -~~~ -~~~ -7448911 outer reward -~~~ -7448911 64 4194559 -~~~ -~~~ -7448916 outerreps = 8 -~~~ -~~~ -7449078 DOWN 7 -7449078 0 4194559 -~~~ -~~~ -7449097 0 4194558 -~~~ -~~~ -7449099 0 4194556 -~~~ -~~~ -7449100 0 4194552 -~~~ -~~~ -7449102 0 4194544 -~~~ -~~~ -7449104 0 4194528 -~~~ -~~~ -7449106 0 4194496 -~~~ -~~~ -7449108 0 4194432 -~~~ -~~~ -7449110 0 4194304 -~~~ -~~~ -7449111 0 4194816 -7449112 homeCount = 135 -7449113 waitCount = 69 -7449113 ripCount = 56 -7449134 locktype1 = 2 -7449135 locktype2 = 9 -7449135 locktype3 = 7 -7449136 goalCount = 0 -7449136 goalTotal = 50 -7449137 otherCount = 68 -~~~ -7449142 64 4194816 -7449361 64 512 -7449716 DOWN 7 -7449716 0 512 -7449737 64 512 -7450009 DOWN 7 -7450009 0 512 -7450016 64 512 -7460272 DOWN 7 -7460272 0 512 -7460347 64 512 -7460391 DOWN 7 -7460391 0 512 -7460925 64 512 -7460936 DOWN 7 -7460936 0 512 -7466038 UP 10 -7466038 waslock = 0 -7466038 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7466064 512 16777728 -~~~ -7466214 512 512 -7466234 DOWN 10 -7466234 0 512 -~~~ -~~~ -7466261 0 2560 -~~~ -~~~ -7466262 0 2048 -7466263 homeCount = 136 -7466264 waitCount = 69 -7466264 ripCount = 56 -7466265 locktype1 = 2 -7466265 locktype2 = 9 -7466266 locktype3 = 7 -7466266 goalCount = 0 -7466267 goalTotal = 50 -7466267 otherCount = 68 -~~~ -7466338 UP 10 -7466339 waslock = 0 -7466338 512 2048 -~~~ -7473072 DOWN 10 -7473072 0 2048 -~~~ -~~~ -~~~ -~~~ -7473098 homeCount = 136 -7473099 waitCount = 69 -7473099 ripCount = 56 -7473100 locktype1 = 2 -7473100 locktype2 = 9 -7473100 locktype3 = 7 -7473101 goalCount = 0 -7473101 goalTotal = 50 -7473102 otherCount = 68 -~~~ -7473122 UP 10 -7473122 waslock = 0 -7473122 512 2048 -~~~ -7473189 DOWN 10 -7473189 0 2048 -~~~ -~~~ -~~~ -~~~ -7473215 homeCount = 136 -7473216 waitCount = 69 -7473216 ripCount = 56 -7473217 locktype1 = 2 -7473217 locktype2 = 9 -7473218 locktype3 = 7 -7473218 goalCount = 0 -7473219 goalTotal = 50 -7473219 otherCount = 68 -~~~ -7473271 UP 10 -7473271 waslock = 0 -7473271 512 2048 -7473287 DOWN 10 -7473287 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -7473310 homeCount = 136 -7473310 waitCount = 69 -7473311 ripCount = 56 -7473311 locktype1 = 2 -7473312 locktype2 = 9 -7473312 locktype3 = 7 -7473313 goalCount = 0 -7473313 goalTotal = 50 -7473314 otherCount = 68 -~~~ -7475182 UP 12 -7475182 2048 2048 -7478357 DOWN 12 -7478357 0 2048 -7478404 UP 12 -7478404 2048 2048 -7478682 CLICK1 -7478682 CLICK2 -~~~ -~~~ -~~~ -7478704 2048 67110912 -~~~ -7478854 2048 2048 -7487545 DOWN 12 -7487545 0 2048 -~~~ -~~~ -7487563 0 0 -~~~ -~~~ -7487565 0 1 -~~~ -~~~ -7487567 0 3 -~~~ -~~~ -7487569 0 7 -~~~ -~~~ -7487571 0 15 -~~~ -~~~ -7487572 0 31 -~~~ -~~~ -7487574 0 63 -~~~ -~~~ -7487576 0 127 -~~~ -~~~ -7487578 0 255 -7487579 homeCount = 136 -7487579 waitCount = 70 -7487580 ripCount = 56 -7487580 locktype1 = 2 -7487581 locktype2 = 9 -7487581 locktype3 = 7 -7487602 goalCount = 0 -7487603 goalTotal = 50 -7487603 otherCount = 68 -~~~ -7487604 CURRENTGOAL IS [1] -~~~ -7487614 UP 12 -7487614 2048 255 -7487665 DOWN 12 -7487665 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7487702 homeCount = 136 -7487703 waitCount = 70 -7487703 ripCount = 56 -7487704 locktype1 = 2 -7487704 locktype2 = 9 -7487705 locktype3 = 7 -7487705 goalCount = 0 -7487706 goalTotal = 50 -7487706 otherCount = 68 -~~~ -7487707 CURRENTGOAL IS [1] -~~~ -7497495 UP 7 -7497495 64 255 -~~~ -~~~ -7497692 DOWN 7 -7497692 0 255 -~~~ -~~~ -7497716 0 254 -~~~ -~~~ -7497718 0 252 -~~~ -~~~ -7497719 0 248 -~~~ -~~~ -7497721 0 240 -~~~ -~~~ -7497723 0 224 -~~~ -~~~ -7497725 0 192 -~~~ -~~~ -7497727 0 128 -~~~ -~~~ -7497728 0 0 -~~~ -~~~ -7497730 0 512 -7497731 homeCount = 136 -7497732 waitCount = 70 -7497732 ripCount = 56 -7497733 locktype1 = 2 -7497733 locktype2 = 9 -7497754 locktype3 = 7 -7497754 goalCount = 0 -7497755 goalTotal = 50 -7497755 otherCount = 69 -~~~ -7497775 64 512 -7498876 DOWN 7 -7498876 0 512 -7498954 64 512 -7498988 DOWN 7 -7498988 0 512 -7503794 UP 10 -7503795 waslock = 0 -7503794 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7503825 512 16777728 -~~~ -7503975 512 512 -7504038 DOWN 10 -7504038 0 512 -~~~ -~~~ -7504058 0 2560 -~~~ -~~~ -7504060 0 2048 -7504061 homeCount = 137 -7504062 waitCount = 70 -7504062 ripCount = 56 -7504063 locktype1 = 2 -7504063 locktype2 = 9 -7504064 locktype3 = 7 -7504064 goalCount = 0 -7504065 goalTotal = 50 -7504065 otherCount = 69 -~~~ -7504073 UP 10 -7504073 waslock = 0 -7504073 512 2048 -~~~ -7509916 DOWN 10 -7509916 0 2048 -~~~ -~~~ -~~~ -~~~ -7509944 homeCount = 137 -7509945 waitCount = 70 -7509945 ripCount = 56 -7509946 locktype1 = 2 -7509946 locktype2 = 9 -7509947 locktype3 = 7 -7509947 goalCount = 0 -7509948 goalTotal = 50 -7509948 otherCount = 69 -~~~ -7509968 UP 10 -7509968 waslock = 0 -7509968 512 2048 -~~~ -7510017 DOWN 10 -7510017 0 2048 -~~~ -~~~ -~~~ -~~~ -7510044 homeCount = 137 -7510045 waitCount = 70 -7510045 ripCount = 56 -7510046 locktype1 = 2 -7510046 locktype2 = 9 -7510047 locktype3 = 7 -7510047 goalCount = 0 -7510048 goalTotal = 50 -7510048 otherCount = 69 -~~~ -7512207 UP 12 -7512207 2048 2048 -7515181 DOWN 12 -7515181 0 2048 -7515189 UP 12 -7515189 2048 2048 -7515191 DOWN 12 -7515191 0 2048 -7515212 UP 12 -7515212 2048 2048 -7518208 CLICK1 -7518208 CLICK2 -~~~ -~~~ -~~~ -7518231 2048 67110912 -~~~ -7518381 2048 2048 -7527917 DOWN 12 -7527917 0 2048 -~~~ -~~~ -7527940 0 0 -~~~ -~~~ -7527942 0 1 -~~~ -~~~ -7527944 0 3 -~~~ -~~~ -7527946 0 7 -~~~ -~~~ -7527948 0 15 -~~~ -~~~ -7527949 0 31 -~~~ -~~~ -7527951 0 63 -~~~ -~~~ -7527953 0 127 -~~~ -~~~ -7527955 0 255 -7527956 homeCount = 137 -7527956 waitCount = 71 -7527957 ripCount = 56 -7527957 locktype1 = 2 -7527958 locktype2 = 9 -7527958 locktype3 = 7 -7527979 goalCount = 0 -7527980 goalTotal = 50 -7527980 otherCount = 69 -~~~ -7527981 CURRENTGOAL IS [1] -~~~ -7535073 UP 7 -7535073 64 255 -~~~ -~~~ -7535887 DOWN 7 -7535887 0 255 -~~~ -~~~ -7535912 0 254 -~~~ -~~~ -7535914 0 252 -~~~ -~~~ -7535916 0 248 -~~~ -~~~ -7535917 0 240 -~~~ -~~~ -7535919 0 224 -~~~ -~~~ -7535921 0 192 -~~~ -~~~ -7535923 0 128 -~~~ -~~~ -7535925 0 0 -~~~ -~~~ -7535927 0 512 -7535928 homeCount = 137 -7535928 waitCount = 71 -7535929 ripCount = 56 -7535929 locktype1 = 2 -7535930 locktype2 = 9 -7535951 locktype3 = 7 -7535951 goalCount = 0 -7535952 goalTotal = 50 -7535952 otherCount = 70 -~~~ -7541930 UP 10 -7541931 waslock = 0 -7541930 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7541958 512 16777728 -~~~ -7542108 512 512 -7542121 DOWN 10 -7542121 0 512 -~~~ -~~~ -7542138 0 2560 -~~~ -~~~ -7542140 0 2048 -7542141 homeCount = 138 -7542142 waitCount = 71 -7542142 ripCount = 56 -7542143 locktype1 = 2 -7542143 locktype2 = 9 -7542144 locktype3 = 7 -7542144 goalCount = 0 -7542145 goalTotal = 50 -7542145 otherCount = 70 -~~~ -7542404 UP 10 -7542404 waslock = 0 -7542404 512 2048 -~~~ -7548488 DOWN 10 -7548488 0 2048 -~~~ -~~~ -~~~ -~~~ -7548516 homeCount = 138 -7548516 waitCount = 71 -7548517 ripCount = 56 -7548517 locktype1 = 2 -7548517 locktype2 = 9 -7548518 locktype3 = 7 -7548518 goalCount = 0 -7548519 goalTotal = 50 -7548519 otherCount = 70 -~~~ -7548548 UP 10 -7548549 waslock = 0 -7548548 512 2048 -~~~ -7548586 DOWN 10 -7548586 0 2048 -~~~ -~~~ -~~~ -~~~ -7548609 homeCount = 138 -7548609 waitCount = 71 -7548610 ripCount = 56 -7548610 locktype1 = 2 -7548611 locktype2 = 9 -7548611 locktype3 = 7 -7548612 goalCount = 0 -7548612 goalTotal = 50 -7548613 otherCount = 70 -~~~ -7550864 UP 12 -7550864 2048 2048 -7551269 DOWN 12 -7551269 0 2048 -7551469 LOCKOUT 3 -~~~ -7551491 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7551497 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7551703 UP 12 -7551703 2048 0 -7552563 DOWN 12 -7552563 0 0 -7556268 512 0 -7557015 0 0 -7557777 512 0 -7557804 0 0 -7570040 512 0 -7570455 0 0 -7570527 512 0 -7570550 0 0 -7576491 LOCKEND -~~~ -~~~ -~~~ -7576514 0 512 -7579140 UP 10 -7579140 waslock = 0 -7579140 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7579169 512 16777728 -~~~ -7579319 512 512 -7579898 DOWN 10 -7579898 0 512 -7579912 UP 10 -7579913 waslock = 0 -7579912 512 512 -~~~ -~~~ -7579932 512 1536 -~~~ -~~~ -7579934 512 1024 -7579935 homeCount = 139 -7579936 waitCount = 71 -7579936 ripCount = 56 -7579937 locktype1 = 2 -7579937 locktype2 = 9 -7579938 locktype3 = 8 -7579938 goalCount = 0 -7579939 goalTotal = 50 -7579939 otherCount = 70 -~~~ -~~~ -7589333 DOWN 10 -7589333 0 1024 -~~~ -~~~ -~~~ -~~~ -7589354 homeCount = 139 -7589354 waitCount = 71 -7589355 ripCount = 56 -7589355 locktype1 = 2 -7589356 locktype2 = 9 -7589356 locktype3 = 8 -7589357 goalCount = 0 -7589357 goalTotal = 50 -7589358 otherCount = 70 -~~~ -7589393 UP 10 -7589393 waslock = 0 -7589393 512 1024 -~~~ -7589430 DOWN 10 -7589430 0 1024 -~~~ -~~~ -~~~ -~~~ -7589457 homeCount = 139 -7589458 waitCount = 71 -7589458 ripCount = 56 -7589459 locktype1 = 2 -7589459 locktype2 = 9 -7589460 locktype3 = 8 -7589460 goalCount = 0 -7589461 goalTotal = 50 -7589461 otherCount = 70 -~~~ -7590928 UP 11 -7590928 1024 1024 -7592834 DOWN 11 -7592834 0 1024 -7592866 UP 11 -7592866 1024 1024 -7593816 DOWN 11 -7593816 0 1024 -7593925 UP 11 -7593925 1024 1024 -7593962 DOWN 11 -7593962 0 1024 -7594016 UP 11 -7594016 1024 1024 -7594027 DOWN 11 -7594027 0 1024 -7594053 UP 11 -7594053 1024 1024 -7596310 DOWN 11 -7596310 0 1024 -7596336 UP 11 -7596336 1024 1024 -7596428 BEEP1 -7596428 BEEP2 -~~~ -~~~ -~~~ -7596454 1024 33555456 -~~~ -7596604 1024 1024 -7604212 DOWN 11 -7604212 0 1024 -~~~ -~~~ -7604232 0 0 -~~~ -~~~ -7604234 0 1 -~~~ -~~~ -7604236 0 3 -~~~ -~~~ -7604238 0 7 -~~~ -~~~ -7604240 0 15 -~~~ -~~~ -7604241 0 31 -~~~ -~~~ -7604243 0 63 -~~~ -~~~ -7604245 0 127 -~~~ -7604246 UP 11 -7604246 1024 127 -~~~ -7604248 homeCount = 139 -7604249 waitCount = 71 -7604249 ripCount = 57 -7604250 locktype1 = 2 -7604250 locktype2 = 9 -7604271 locktype3 = 8 -7604272 goalCount = 0 -7604272 goalTotal = 50 -7604273 otherCount = 70 -~~~ -7604274 CURRENTGOAL IS [1] -~~~ -7604274 1024 255 -7607328 DOWN 11 -7607328 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7607363 homeCount = 139 -7607363 waitCount = 71 -7607364 ripCount = 57 -7607364 locktype1 = 2 -7607365 locktype2 = 9 -7607365 locktype3 = 8 -7607366 goalCount = 0 -7607366 goalTotal = 50 -7607367 otherCount = 70 -~~~ -7607368 CURRENTGOAL IS [1] -~~~ -7608096 UP 11 -7608096 1024 255 -7608235 DOWN 11 -7608235 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7608273 homeCount = 139 -7608273 waitCount = 71 -7608274 ripCount = 57 -7608274 locktype1 = 2 -7608275 locktype2 = 9 -7608275 locktype3 = 8 -7608276 goalCount = 0 -7608276 goalTotal = 50 -7608277 otherCount = 70 -~~~ -7608278 CURRENTGOAL IS [1] -~~~ -7613872 UP 5 -7613872 16 255 -~~~ -~~~ -7614090 DOWN 5 -7614090 0 255 -~~~ -~~~ -7614106 0 254 -~~~ -~~~ -7614108 0 252 -~~~ -~~~ -7614110 0 248 -~~~ -~~~ -7614112 0 240 -~~~ -~~~ -7614113 0 224 -~~~ -~~~ -7614115 0 192 -~~~ -~~~ -7614117 0 128 -~~~ -~~~ -7614119 0 0 -~~~ -~~~ -7614121 0 512 -7614122 homeCount = 139 -7614122 waitCount = 71 -7614123 ripCount = 57 -7614123 locktype1 = 2 -7614124 locktype2 = 9 -7614145 locktype3 = 8 -7614145 goalCount = 0 -7614146 goalTotal = 50 -7614146 otherCount = 71 -~~~ -7614151 16 512 -7614918 DOWN 5 -7614918 0 512 -7615042 16 512 -7615066 DOWN 5 -7615066 0 512 -7620314 UP 10 -7620314 waslock = 0 -7620314 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7620344 512 16777728 -~~~ -7620494 512 512 -7620617 DOWN 10 -7620617 0 512 -~~~ -~~~ -7620642 0 2560 -~~~ -~~~ -7620644 0 2048 -7620645 homeCount = 140 -7620646 waitCount = 71 -7620646 ripCount = 57 -7620647 locktype1 = 2 -7620647 locktype2 = 9 -7620648 locktype3 = 8 -7620648 goalCount = 0 -7620649 goalTotal = 50 -7620649 otherCount = 71 -~~~ -7620663 UP 10 -7620663 waslock = 0 -7620663 512 2048 -~~~ -7624814 DOWN 10 -7624814 0 2048 -~~~ -~~~ -~~~ -~~~ -7624833 homeCount = 140 -7624834 waitCount = 71 -7624834 ripCount = 57 -7624835 locktype1 = 2 -7624835 locktype2 = 9 -7624836 locktype3 = 8 -7624836 goalCount = 0 -7624837 goalTotal = 50 -7624837 otherCount = 71 -~~~ -7624849 UP 10 -7624849 waslock = 0 -7624849 512 2048 -~~~ -7624910 DOWN 10 -7624910 0 2048 -~~~ -~~~ -~~~ -~~~ -7624933 homeCount = 140 -7624934 waitCount = 71 -7624934 ripCount = 57 -7624935 locktype1 = 2 -7624935 locktype2 = 9 -7624936 locktype3 = 8 -7624936 goalCount = 0 -7624937 goalTotal = 50 -7624937 otherCount = 71 -~~~ -7627214 UP 12 -7627214 2048 2048 -7629405 DOWN 12 -7629405 0 2048 -7629414 UP 12 -7629414 2048 2048 -7630600 DOWN 12 -7630600 0 2048 -7630608 UP 12 -7630608 2048 2048 -7630610 DOWN 12 -7630610 0 2048 -7630629 UP 12 -7630629 2048 2048 -7631348 DOWN 12 -7631348 0 2048 -7631373 UP 12 -7631373 2048 2048 -7631500 DOWN 12 -7631500 0 2048 -7631549 UP 12 -7631549 2048 2048 -7632751 DOWN 12 -7632751 0 2048 -7632791 UP 12 -7632791 2048 2048 -7634214 CLICK1 -7634214 CLICK2 -~~~ -~~~ -~~~ -7634234 2048 67110912 -~~~ -7634384 2048 2048 -7641364 DOWN 12 -7641364 0 2048 -~~~ -~~~ -7641390 0 0 -~~~ -~~~ -7641392 0 1 -~~~ -~~~ -7641394 0 3 -~~~ -~~~ -7641396 0 7 -~~~ -~~~ -7641398 0 15 -~~~ -~~~ -7641400 0 31 -~~~ -~~~ -7641401 0 63 -~~~ -~~~ -7641403 UP 12 -7641403 2048 127 -~~~ -~~~ -7641405 2048 255 -7641406 homeCount = 140 -7641407 waitCount = 72 -7641407 ripCount = 57 -7641408 locktype1 = 2 -7641429 locktype2 = 9 -7641429 locktype3 = 8 -7641429 goalCount = 0 -7641430 goalTotal = 50 -7641430 otherCount = 71 -~~~ -7641432 CURRENTGOAL IS [1] -~~~ -7641495 DOWN 12 -7641495 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7641537 homeCount = 140 -7641537 waitCount = 72 -7641538 ripCount = 57 -7641538 locktype1 = 2 -7641539 locktype2 = 9 -7641539 locktype3 = 8 -7641540 goalCount = 0 -7641540 goalTotal = 50 -7641540 otherCount = 71 -~~~ -7641542 CURRENTGOAL IS [1] -~~~ -7646776 UP 2 -7646776 2 255 -~~~ -~~~ -7647342 DOWN 2 -7647342 0 255 -~~~ -~~~ -7647363 0 254 -~~~ -~~~ -7647365 0 252 -~~~ -~~~ -7647367 0 248 -~~~ -~~~ -7647368 0 240 -~~~ -~~~ -7647370 0 224 -~~~ -~~~ -7647372 0 192 -~~~ -~~~ -7647374 0 128 -~~~ -~~~ -7647376 0 0 -~~~ -~~~ -7647377 0 512 -7647378 homeCount = 140 -7647379 waitCount = 72 -7647379 ripCount = 57 -7647380 locktype1 = 2 -7647380 locktype2 = 9 -7647402 locktype3 = 8 -7647402 goalCount = 0 -7647403 goalTotal = 50 -7647403 otherCount = 72 -~~~ -7651568 UP 10 -7651569 waslock = 0 -7651568 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7651599 512 16777728 -~~~ -7651749 512 512 -7651776 DOWN 10 -7651776 0 512 -~~~ -~~~ -7651794 0 2560 -~~~ -~~~ -7651796 0 2048 -7651797 homeCount = 141 -7651797 waitCount = 72 -7651798 ripCount = 57 -7651798 locktype1 = 2 -7651799 locktype2 = 9 -7651799 locktype3 = 8 -7651800 goalCount = 0 -7651800 goalTotal = 50 -7651801 otherCount = 72 -~~~ -7651924 UP 10 -7651924 waslock = 0 -7651924 512 2048 -~~~ -7657794 DOWN 10 -7657794 0 2048 -~~~ -~~~ -~~~ -~~~ -7657816 homeCount = 141 -7657816 waitCount = 72 -7657817 ripCount = 57 -7657817 locktype1 = 2 -7657817 locktype2 = 9 -7657818 locktype3 = 8 -7657818 goalCount = 0 -7657819 goalTotal = 50 -7657819 otherCount = 72 -~~~ -7657839 UP 10 -7657839 waslock = 0 -7657839 512 2048 -~~~ -7657896 DOWN 10 -7657896 0 2048 -~~~ -~~~ -~~~ -~~~ -7657929 homeCount = 141 -7657929 waitCount = 72 -7657930 ripCount = 57 -7657930 locktype1 = 2 -7657931 locktype2 = 9 -7657931 locktype3 = 8 -7657932 goalCount = 0 -7657932 goalTotal = 50 -7657933 otherCount = 72 -~~~ -7657955 UP 10 -7657956 waslock = 0 -7657955 512 2048 -~~~ -7658197 DOWN 10 -7658197 0 2048 -~~~ -~~~ -~~~ -~~~ -7658232 homeCount = 141 -7658232 waitCount = 72 -7658233 ripCount = 57 -7658233 locktype1 = 2 -7658234 locktype2 = 9 -7658234 locktype3 = 8 -7658235 goalCount = 0 -7658235 goalTotal = 50 -7658235 otherCount = 72 -~~~ -7658246 UP 10 -7658246 waslock = 0 -7658246 512 2048 -~~~ -7659679 DOWN 10 -7659679 0 2048 -~~~ -~~~ -~~~ -~~~ -7659709 homeCount = 141 -7659710 waitCount = 72 -7659710 ripCount = 57 -7659711 locktype1 = 2 -7659711 locktype2 = 9 -7659712 locktype3 = 8 -7659712 goalCount = 0 -7659712 goalTotal = 50 -7659713 otherCount = 72 -~~~ -7661563 UP 12 -7661563 2048 2048 -7662992 DOWN 12 -7662992 0 2048 -7663010 UP 12 -7663010 2048 2048 -7665836 DOWN 12 -7665836 0 2048 -7665848 UP 12 -7665848 2048 2048 -7667063 CLICK1 -7667063 CLICK2 -~~~ -~~~ -~~~ -7667083 2048 67110912 -~~~ -7667233 2048 2048 -7673720 DOWN 12 -7673720 0 2048 -~~~ -~~~ -7673742 0 0 -~~~ -~~~ -7673744 0 1 -~~~ -~~~ -7673746 0 3 -~~~ -~~~ -7673747 0 7 -~~~ -~~~ -7673749 0 15 -~~~ -~~~ -7673751 0 31 -~~~ -~~~ -7673753 0 63 -~~~ -~~~ -7673755 0 127 -~~~ -~~~ -7673757 0 255 -7673758 homeCount = 141 -7673758 waitCount = 73 -7673759 ripCount = 57 -7673759 locktype1 = 2 -7673760 locktype2 = 9 -7673760 locktype3 = 8 -7673781 goalCount = 0 -7673782 goalTotal = 50 -7673782 otherCount = 72 -~~~ -7673783 CURRENTGOAL IS [1] -~~~ -7701490 UP 6 -7701490 32 255 -~~~ -~~~ -7702442 DOWN 6 -7702442 0 255 -~~~ -~~~ -7702466 0 254 -~~~ -~~~ -7702468 0 252 -~~~ -~~~ -7702470 0 248 -~~~ -~~~ -7702472 0 240 -~~~ -~~~ -7702474 0 224 -~~~ -~~~ -7702476 0 192 -~~~ -~~~ -7702477 0 128 -~~~ -~~~ -7702479 0 0 -~~~ -~~~ -7702481 0 512 -7702482 homeCount = 141 -7702483 waitCount = 73 -7702483 ripCount = 57 -7702484 locktype1 = 2 -7702484 locktype2 = 9 -7702505 locktype3 = 8 -7702506 goalCount = 0 -7702506 goalTotal = 50 -7702507 otherCount = 73 -~~~ -7702548 32 512 -7702742 DOWN 6 -7702742 0 512 -7707698 UP 10 -7707698 waslock = 0 -7707698 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7707722 512 16777728 -~~~ -7707872 512 512 -7707990 DOWN 10 -7707990 0 512 -~~~ -~~~ -7708015 0 1536 -~~~ -~~~ -7708016 0 1024 -7708017 homeCount = 142 -7708018 waitCount = 73 -7708018 ripCount = 57 -7708019 locktype1 = 2 -7708019 locktype2 = 9 -7708020 locktype3 = 8 -7708020 goalCount = 0 -7708021 goalTotal = 50 -7708021 otherCount = 73 -~~~ -7708107 UP 10 -7708107 waslock = 0 -7708107 512 1024 -~~~ -7712341 DOWN 10 -7712341 0 1024 -~~~ -~~~ -~~~ -~~~ -7712370 homeCount = 142 -7712371 waitCount = 73 -7712371 ripCount = 57 -7712372 locktype1 = 2 -7712372 locktype2 = 9 -7712373 locktype3 = 8 -7712373 goalCount = 0 -7712374 goalTotal = 50 -7712374 otherCount = 73 -~~~ -7714949 UP 11 -7714949 1024 1024 -7715014 DOWN 11 -7715014 0 1024 -7715081 UP 11 -7715081 1024 1024 -7717142 DOWN 11 -7717142 0 1024 -7717158 UP 11 -7717158 1024 1024 -7718192 DOWN 11 -7718192 0 1024 -7718202 UP 11 -7718202 1024 1024 -7720449 BEEP1 -7720449 BEEP2 -~~~ -~~~ -~~~ -7720468 1024 33555456 -~~~ -7720618 1024 1024 -7720992 DOWN 11 -7720992 0 1024 -7721019 UP 11 -7721019 1024 1024 -~~~ -~~~ -7721117 1024 0 -~~~ -~~~ -7721119 1024 1 -~~~ -~~~ -7721121 1024 3 -~~~ -~~~ -7721123 1024 7 -~~~ -~~~ -7721124 1024 15 -~~~ -~~~ -7721126 1024 31 -~~~ -~~~ -7721128 1024 63 -~~~ -~~~ -7721130 1024 127 -~~~ -~~~ -7721132 1024 255 -7721133 homeCount = 142 -7721133 waitCount = 73 -7721134 ripCount = 58 -7721134 locktype1 = 2 -7721155 locktype2 = 9 -7721155 locktype3 = 8 -7721156 goalCount = 0 -7721156 goalTotal = 50 -7721157 otherCount = 73 -~~~ -7721158 CURRENTGOAL IS [1] -~~~ -7721158 DOWN 11 -7721158 0 255 -7721177 UP 11 -7721177 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7721207 homeCount = 142 -7721208 waitCount = 73 -7721208 ripCount = 58 -7721209 locktype1 = 2 -7721209 locktype2 = 9 -7721210 locktype3 = 8 -7721210 goalCount = 0 -7721211 goalTotal = 50 -7721211 otherCount = 73 -~~~ -7721213 CURRENTGOAL IS [1] -~~~ -7728036 DOWN 11 -7728036 0 255 -7728055 UP 11 -7728055 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7728075 homeCount = 142 -7728076 waitCount = 73 -7728076 ripCount = 58 -7728077 locktype1 = 2 -7728077 locktype2 = 9 -7728078 locktype3 = 8 -7728078 goalCount = 0 -7728079 goalTotal = 50 -7728079 otherCount = 73 -~~~ -7728080 CURRENTGOAL IS [1] -~~~ -7728150 DOWN 11 -7728150 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7728188 homeCount = 142 -7728189 waitCount = 73 -7728189 ripCount = 58 -7728190 locktype1 = 2 -7728190 locktype2 = 9 -7728191 locktype3 = 8 -7728191 goalCount = 0 -7728192 goalTotal = 50 -7728192 otherCount = 73 -~~~ -7728193 CURRENTGOAL IS [1] -~~~ -7732180 UP 8 -7732180 128 255 -~~~ -~~~ -7732779 DOWN 8 -7732779 0 255 -~~~ -~~~ -7732803 0 254 -~~~ -~~~ -7732805 0 252 -~~~ -~~~ -7732807 0 248 -~~~ -~~~ -7732809 0 240 -~~~ -~~~ -7732811 0 224 -~~~ -~~~ -7732812 0 192 -~~~ -~~~ -7732814 0 128 -~~~ -~~~ -7732816 0 0 -~~~ -~~~ -7732818 0 512 -7732819 homeCount = 142 -7732819 waitCount = 73 -7732820 ripCount = 58 -7732820 locktype1 = 2 -7732821 locktype2 = 9 -7732842 locktype3 = 8 -7732842 goalCount = 0 -7732843 goalTotal = 50 -7732843 otherCount = 74 -~~~ -7738334 UP 10 -7738334 waslock = 0 -7738334 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7738360 512 16777728 -~~~ -7738509 512 512 -7743306 DOWN 10 -7743306 0 512 -~~~ -~~~ -7743322 0 1536 -~~~ -~~~ -7743324 0 1024 -7743325 homeCount = 143 -7743326 waitCount = 73 -7743326 ripCount = 58 -7743327 locktype1 = 2 -7743327 locktype2 = 9 -7743328 locktype3 = 8 -7743328 goalCount = 0 -7743329 goalTotal = 50 -7743329 otherCount = 74 -~~~ -7743362 UP 10 -7743363 waslock = 0 -7743362 512 1024 -~~~ -7743405 DOWN 10 -7743405 0 1024 -~~~ -~~~ -~~~ -~~~ -7743418 homeCount = 143 -7743418 waitCount = 73 -7743419 ripCount = 58 -7743419 locktype1 = 2 -7743419 locktype2 = 9 -7743420 locktype3 = 8 -7743420 goalCount = 0 -7743421 goalTotal = 50 -7743421 otherCount = 74 -~~~ -7745977 UP 11 -7745977 1024 1024 -7748173 DOWN 11 -7748173 0 1024 -7748196 UP 11 -7748196 1024 1024 -7748905 DOWN 11 -7748905 0 1024 -7748925 UP 11 -7748925 1024 1024 -7748966 DOWN 11 -7748966 0 1024 -7748995 UP 11 -7748995 1024 1024 -7749281 DOWN 11 -7749281 0 1024 -7749328 UP 11 -7749328 1024 1024 -7749977 BEEP1 -7749977 BEEP2 -~~~ -~~~ -~~~ -7750008 1024 33555456 -~~~ -7750158 1024 1024 -7750253 DOWN 11 -7750253 0 1024 -7750272 UP 11 -7750272 1024 1024 -7750402 DOWN 11 -7750402 0 1024 -7750430 UP 11 -7750430 1024 1024 -~~~ -~~~ -7750674 1024 0 -~~~ -~~~ -7750675 1024 1 -~~~ -~~~ -7750677 1024 3 -~~~ -~~~ -7750679 1024 7 -~~~ -~~~ -7750681 1024 15 -~~~ -~~~ -7750683 1024 31 -~~~ -~~~ -7750685 1024 63 -~~~ -~~~ -7750686 1024 127 -~~~ -~~~ -7750688 1024 255 -7750689 homeCount = 143 -7750690 waitCount = 73 -7750690 ripCount = 59 -7750691 locktype1 = 2 -7750711 locktype2 = 9 -7750712 locktype3 = 8 -7750712 goalCount = 0 -7750713 goalTotal = 50 -7750713 otherCount = 74 -~~~ -7750714 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7750742 homeCount = 143 -7750743 waitCount = 73 -7750743 ripCount = 59 -7750744 locktype1 = 2 -7750744 locktype2 = 9 -7750744 locktype3 = 8 -7750745 goalCount = 0 -7750745 goalTotal = 50 -7750746 otherCount = 74 -~~~ -7750747 CURRENTGOAL IS [1] -~~~ -7757155 DOWN 11 -7757155 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7757187 UP 11 -7757187 1024 255 -~~~ -~~~ -~~~ -7757191 homeCount = 143 -7757191 waitCount = 73 -7757192 ripCount = 59 -7757192 locktype1 = 2 -7757193 locktype2 = 9 -7757193 locktype3 = 8 -7757194 goalCount = 0 -7757194 goalTotal = 50 -7757195 otherCount = 74 -~~~ -7757196 CURRENTGOAL IS [1] -~~~ -7757216 DOWN 11 -7757216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7757258 homeCount = 143 -7757259 waitCount = 73 -7757259 ripCount = 59 -7757260 locktype1 = 2 -7757260 locktype2 = 9 -7757261 locktype3 = 8 -7757261 goalCount = 0 -7757262 goalTotal = 50 -7757262 otherCount = 74 -~~~ -7757263 CURRENTGOAL IS [1] -~~~ -7757290 UP 11 -7757290 1024 255 -7758580 DOWN 11 -7758580 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -7758604 UP 11 -7758604 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758616 homeCount = 143 -7758617 waitCount = 73 -7758617 ripCount = 59 -7758618 locktype1 = 2 -7758618 locktype2 = 9 -7758619 locktype3 = 8 -7758619 goalCount = 0 -7758620 goalTotal = 50 -7758620 otherCount = 74 -~~~ -7758621 CURRENTGOAL IS [1] -~~~ -7758633 DOWN 11 -7758633 0 255 -7758654 UP 11 -7758654 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758676 homeCount = 143 -7758677 waitCount = 73 -7758677 ripCount = 59 -7758678 locktype1 = 2 -7758678 locktype2 = 9 -7758679 locktype3 = 8 -7758679 goalCount = 0 -7758680 goalTotal = 50 -7758680 otherCount = 74 -~~~ -7758681 CURRENTGOAL IS [1] -~~~ -7758900 DOWN 11 -7758900 0 255 -7758918 UP 11 -7758918 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758939 homeCount = 143 -7758939 waitCount = 73 -7758940 ripCount = 59 -7758940 locktype1 = 2 -7758941 locktype2 = 9 -7758941 locktype3 = 8 -7758942 goalCount = 0 -7758942 goalTotal = 50 -7758943 otherCount = 74 -~~~ -7758944 CURRENTGOAL IS [1] -~~~ -7758953 DOWN 11 -7758953 0 255 -7758981 UP 11 -7758981 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7759001 homeCount = 143 -7759001 waitCount = 73 -7759002 ripCount = 59 -7759002 locktype1 = 2 -7759003 locktype2 = 9 -7759003 locktype3 = 8 -7759004 goalCount = 0 -7759004 goalTotal = 50 -7759005 otherCount = 74 -~~~ -7759006 CURRENTGOAL IS [1] -~~~ -7760612 DOWN 11 -7760612 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7760649 homeCount = 143 -7760649 waitCount = 73 -7760650 ripCount = 59 -7760650 locktype1 = 2 -7760651 locktype2 = 9 -7760651 locktype3 = 8 -7760652 goalCount = 0 -7760652 goalTotal = 50 -7760653 otherCount = 74 -~~~ -7760654 CURRENTGOAL IS [1] -~~~ -7766970 UP 4 -7766970 8 255 -~~~ -~~~ -7767557 DOWN 4 -7767557 0 255 -~~~ -~~~ -7767576 0 254 -~~~ -~~~ -7767578 0 252 -~~~ -~~~ -7767579 0 248 -~~~ -~~~ -7767581 0 240 -~~~ -~~~ -7767583 0 224 -~~~ -~~~ -7767585 0 192 -~~~ -~~~ -7767587 0 128 -~~~ -~~~ -7767589 0 0 -~~~ -~~~ -7767591 0 512 -7767591 homeCount = 143 -7767592 waitCount = 73 -7767592 ripCount = 59 -7767593 locktype1 = 2 -7767593 locktype2 = 9 -7767615 locktype3 = 8 -7767615 goalCount = 0 -7767616 goalTotal = 50 -7767616 otherCount = 75 -~~~ -7772489 UP 10 -7772489 waslock = 0 -7772489 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7772523 512 16777728 -~~~ -7772673 512 512 -7772757 DOWN 10 -7772757 0 512 -~~~ -~~~ -7772776 0 1536 -~~~ -~~~ -7772778 0 1024 -7772779 homeCount = 144 -7772780 waitCount = 73 -7772780 ripCount = 59 -7772781 locktype1 = 2 -7772781 locktype2 = 9 -7772782 locktype3 = 8 -7772782 goalCount = 0 -7772783 goalTotal = 50 -7772783 otherCount = 75 -~~~ -7772786 UP 10 -7772786 waslock = 0 -7772786 512 1024 -~~~ -7776498 DOWN 10 -7776498 0 1024 -~~~ -~~~ -~~~ -~~~ -7776519 homeCount = 144 -7776520 waitCount = 73 -7776520 ripCount = 59 -7776521 locktype1 = 2 -7776521 locktype2 = 9 -7776522 locktype3 = 8 -7776522 goalCount = 0 -7776523 goalTotal = 50 -7776523 otherCount = 75 -~~~ -7778339 UP 11 -7778339 1024 1024 -7781339 BEEP1 -7781339 BEEP2 -~~~ -~~~ -~~~ -7781360 1024 33555456 -~~~ -7781510 1024 1024 -7790808 DOWN 11 -7790808 0 1024 -~~~ -~~~ -7790827 0 0 -~~~ -~~~ -7790829 0 1 -~~~ -~~~ -7790831 0 3 -~~~ -~~~ -7790833 0 7 -~~~ -~~~ -7790835 0 15 -~~~ -~~~ -7790836 0 31 -~~~ -~~~ -7790838 0 63 -~~~ -~~~ -7790840 0 127 -~~~ -~~~ -7790842 0 255 -7790843 homeCount = 144 -7790843 waitCount = 73 -7790844 ripCount = 60 -7790844 locktype1 = 2 -7790845 locktype2 = 9 -7790866 locktype3 = 8 -7790866 goalCount = 0 -7790867 goalTotal = 50 -7790867 otherCount = 75 -~~~ -7790868 CURRENTGOAL IS [1] -~~~ -7817653 UP 5 -7817653 16 255 -~~~ -~~~ -7817945 DOWN 5 -7817945 0 255 -~~~ -~~~ -7817966 0 254 -~~~ -~~~ -7817968 0 252 -~~~ -~~~ -7817970 0 248 -~~~ -~~~ -7817972 0 240 -~~~ -~~~ -7817974 0 224 -~~~ -~~~ -7817976 0 192 -~~~ -~~~ -7817977 0 128 -~~~ -~~~ -7817979 0 0 -~~~ -~~~ -7817981 0 512 -7817982 homeCount = 144 -7817983 waitCount = 73 -7817983 ripCount = 60 -7817984 locktype1 = 2 -7817984 locktype2 = 9 -7818005 locktype3 = 8 -7818005 goalCount = 0 -7818006 goalTotal = 50 -7818006 otherCount = 76 -~~~ -7818129 16 512 -7819084 DOWN 5 -7819084 0 512 -7819102 16 512 -7819229 DOWN 5 -7819229 0 512 -7819556 16 512 -7819594 DOWN 5 -7819594 0 512 -7824936 UP 10 -7824937 waslock = 0 -7824936 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7824966 512 16777728 -~~~ -7825116 512 512 -7825293 DOWN 10 -7825293 0 512 -~~~ -~~~ -7825317 0 1536 -~~~ -~~~ -7825319 0 1024 -7825320 homeCount = 145 -7825321 waitCount = 73 -7825321 ripCount = 60 -7825322 locktype1 = 2 -7825322 locktype2 = 9 -7825323 locktype3 = 8 -7825323 goalCount = 0 -7825324 goalTotal = 50 -7825324 otherCount = 76 -~~~ -7825341 UP 10 -7825341 waslock = 0 -7825341 512 1024 -~~~ -7829403 DOWN 10 -7829403 0 1024 -~~~ -~~~ -~~~ -~~~ -7829431 homeCount = 145 -7829431 waitCount = 73 -7829432 ripCount = 60 -7829432 locktype1 = 2 -7829433 locktype2 = 9 -7829433 locktype3 = 8 -7829434 goalCount = 0 -7829434 goalTotal = 50 -7829435 otherCount = 76 -~~~ -7829941 UP 10 -7829941 waslock = 0 -7829941 512 1024 -~~~ -7831848 DOWN 10 -7831848 0 1024 -~~~ -~~~ -~~~ -~~~ -7831870 homeCount = 145 -7831871 waitCount = 73 -7831871 ripCount = 60 -7831872 locktype1 = 2 -7831872 locktype2 = 9 -7831872 locktype3 = 8 -7831873 goalCount = 0 -7831873 goalTotal = 50 -7831874 otherCount = 76 -~~~ -7831894 UP 10 -7831894 waslock = 0 -7831894 512 1024 -~~~ -7831944 DOWN 10 -7831944 0 1024 -~~~ -~~~ -~~~ -~~~ -7831972 homeCount = 145 -7831972 waitCount = 73 -7831973 ripCount = 60 -7831973 locktype1 = 2 -7831974 locktype2 = 9 -7831974 locktype3 = 8 -7831975 goalCount = 0 -7831975 goalTotal = 50 -7831976 otherCount = 76 -~~~ -7835528 UP 11 -7835528 1024 1024 -7837151 DOWN 11 -7837151 0 1024 -7837163 UP 11 -7837163 1024 1024 -7837648 DOWN 11 -7837648 0 1024 -7837684 UP 11 -7837684 1024 1024 -7838242 DOWN 11 -7838242 0 1024 -7838271 UP 11 -7838271 1024 1024 -7840891 DOWN 11 -7840891 0 1024 -7840902 UP 11 -7840902 1024 1024 -7842529 BEEP1 -7842529 BEEP2 -~~~ -~~~ -~~~ -7842549 1024 33555456 -~~~ -7842699 1024 1024 -7849088 DOWN 11 -7849088 0 1024 -~~~ -~~~ -7849110 0 0 -~~~ -~~~ -7849112 0 1 -~~~ -~~~ -7849114 0 3 -~~~ -~~~ -7849116 0 7 -~~~ -~~~ -7849118 0 15 -~~~ -~~~ -7849119 0 31 -~~~ -~~~ -7849121 0 63 -~~~ -~~~ -7849123 0 127 -~~~ -~~~ -7849125 0 255 -7849126 homeCount = 145 -7849126 waitCount = 73 -7849127 ripCount = 61 -7849127 locktype1 = 2 -7849128 locktype2 = 9 -7849128 locktype3 = 8 -7849149 goalCount = 0 -7849150 goalTotal = 50 -7849150 otherCount = 76 -~~~ -7849151 CURRENTGOAL IS [1] -~~~ -7855904 UP 1 -7855904 1 255 -~~~ -~~~ -7855933 outer reward -~~~ -7855933 1 65791 -~~~ -~~~ -7856383 1 255 -7864549 DOWN 1 -7864549 0 255 -~~~ -~~~ -7864571 0 254 -~~~ -~~~ -7864573 0 252 -~~~ -~~~ -7864574 0 248 -~~~ -~~~ -7864576 0 240 -~~~ -~~~ -7864578 0 224 -~~~ -~~~ -7864580 0 192 -~~~ -~~~ -7864582 0 128 -~~~ -~~~ -7864583 0 0 -~~~ -~~~ -7864585 0 512 -7864586 homeCount = 145 -7864587 waitCount = 73 -7864587 ripCount = 61 -7864588 locktype1 = 2 -7864588 locktype2 = 9 -7864610 locktype3 = 8 -7864610 goalCount = 1 -7864610 goalTotal = 51 -7864611 otherCount = 76 -~~~ -7868827 UP 10 -7868828 waslock = 0 -7868827 512 512 -~~~ -~~~ -7868851 DOWN 10 -7868851 0 512 -~~~ -~~~ -~~~ -7868854 0 16777728 -~~~ -7868866 UP 10 -7868866 waslock = 0 -7868866 512 16777728 -~~~ -~~~ -7868870 512 16779776 -~~~ -~~~ -7868872 512 16779264 -7868873 homeCount = 146 -7868873 waitCount = 73 -7868874 ripCount = 61 -7868874 locktype1 = 2 -7868875 locktype2 = 9 -7868875 locktype3 = 8 -7868876 goalCount = 1 -7868876 goalTotal = 51 -7868897 otherCount = 76 -~~~ -~~~ -7869004 512 2048 -7872166 DOWN 10 -7872166 0 2048 -~~~ -~~~ -~~~ -7872190 UP 10 -7872191 waslock = 0 -7872190 512 2048 -~~~ -7872192 homeCount = 146 -7872193 waitCount = 73 -7872193 ripCount = 61 -7872194 locktype1 = 2 -7872194 locktype2 = 9 -7872195 locktype3 = 8 -7872195 goalCount = 1 -7872196 goalTotal = 51 -7872196 otherCount = 76 -~~~ -~~~ -7872268 DOWN 10 -7872268 0 2048 -~~~ -~~~ -~~~ -~~~ -7872293 homeCount = 146 -7872293 waitCount = 73 -7872294 ripCount = 61 -7872294 locktype1 = 2 -7872295 locktype2 = 9 -7872295 locktype3 = 8 -7872296 goalCount = 1 -7872296 goalTotal = 51 -7872297 otherCount = 76 -~~~ -7872341 UP 10 -7872341 waslock = 0 -7872341 512 2048 -~~~ -7872384 DOWN 10 -7872384 0 2048 -~~~ -~~~ -~~~ -~~~ -7872419 homeCount = 146 -7872419 waitCount = 73 -7872420 ripCount = 61 -7872420 locktype1 = 2 -7872421 locktype2 = 9 -7872421 locktype3 = 8 -7872421 goalCount = 1 -7872422 goalTotal = 51 -7872422 otherCount = 76 -~~~ -7874412 UP 12 -7874412 2048 2048 -7877331 DOWN 12 -7877331 0 2048 -7877347 UP 12 -7877347 2048 2048 -7877792 DOWN 12 -7877792 0 2048 -7877797 UP 12 -7877796 2048 2048 -7877912 CLICK1 -7877912 CLICK2 -~~~ -~~~ -~~~ -7877935 2048 67110912 -~~~ -7878085 2048 2048 -7885038 DOWN 12 -7885038 0 2048 -~~~ -~~~ -7885060 0 0 -~~~ -~~~ -7885062 0 1 -~~~ -~~~ -7885064 0 3 -~~~ -~~~ -7885065 0 7 -~~~ -~~~ -7885067 0 15 -~~~ -~~~ -7885069 0 31 -~~~ -~~~ -7885071 0 63 -~~~ -~~~ -7885073 0 127 -~~~ -~~~ -7885074 0 255 -7885075 homeCount = 146 -7885076 waitCount = 74 -7885077 ripCount = 61 -7885077 locktype1 = 2 -7885078 locktype2 = 9 -7885099 locktype3 = 8 -7885099 goalCount = 1 -7885100 goalTotal = 51 -7885100 otherCount = 76 -~~~ -7885101 CURRENTGOAL IS [1] -~~~ -7894917 UP 8 -7894917 128 255 -~~~ -~~~ -7895450 DOWN 8 -7895450 0 255 -~~~ -~~~ -7895471 0 254 -~~~ -~~~ -7895473 0 252 -~~~ -~~~ -7895474 0 248 -~~~ -~~~ -7895476 0 240 -~~~ -~~~ -7895478 0 224 -~~~ -~~~ -7895480 0 192 -~~~ -~~~ -7895482 0 128 -~~~ -~~~ -7895484 0 0 -~~~ -~~~ -7895485 0 512 -7895486 homeCount = 146 -7895487 waitCount = 74 -7895487 ripCount = 61 -7895488 locktype1 = 2 -7895488 locktype2 = 9 -7895510 locktype3 = 8 -7895510 goalCount = 1 -7895511 goalTotal = 51 -7895511 otherCount = 77 -~~~ -7895776 128 512 -7895968 DOWN 8 -7895968 0 512 -7896139 128 512 -7896189 DOWN 8 -7896189 0 512 -7900458 UP 10 -7900458 waslock = 0 -7900458 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7900487 512 16777728 -~~~ -7900637 512 512 -7900779 DOWN 10 -7900779 0 512 -~~~ -~~~ -7900802 0 2560 -~~~ -~~~ -7900804 0 2048 -7900805 homeCount = 147 -7900805 waitCount = 74 -7900806 ripCount = 61 -7900806 locktype1 = 2 -7900807 locktype2 = 9 -7900807 locktype3 = 8 -7900808 goalCount = 1 -7900808 goalTotal = 51 -7900809 otherCount = 77 -~~~ -7900813 UP 10 -7900814 waslock = 0 -7900813 512 2048 -~~~ -7906111 DOWN 10 -7906111 0 2048 -~~~ -~~~ -~~~ -~~~ -7906135 homeCount = 147 -7906135 waitCount = 74 -7906136 ripCount = 61 -7906136 locktype1 = 2 -7906137 locktype2 = 9 -7906137 locktype3 = 8 -7906137 goalCount = 1 -7906138 goalTotal = 51 -7906138 otherCount = 77 -~~~ -7906159 UP 10 -7906159 waslock = 0 -7906159 512 2048 -~~~ -7906195 DOWN 10 -7906195 0 2048 -~~~ -~~~ -~~~ -~~~ -7906236 homeCount = 147 -7906236 waitCount = 74 -7906237 ripCount = 61 -7906237 locktype1 = 2 -7906238 locktype2 = 9 -7906238 locktype3 = 8 -7906239 goalCount = 1 -7906239 goalTotal = 51 -7906240 otherCount = 77 -~~~ -7908017 UP 12 -7908017 2048 2048 -7911017 CLICK1 -7911017 CLICK2 -~~~ -~~~ -~~~ -7911043 2048 67110912 -~~~ -7911193 2048 2048 -7911194 DOWN 12 -7911194 0 2048 -7911200 UP 12 -7911200 2048 2048 -~~~ -~~~ -7911226 2048 0 -~~~ -~~~ -7911228 2048 1 -~~~ -~~~ -7911230 2048 3 -~~~ -~~~ -7911232 2048 7 -~~~ -~~~ -7911233 2048 15 -~~~ -~~~ -7911235 2048 31 -~~~ -~~~ -7911237 2048 63 -~~~ -~~~ -7911239 2048 127 -~~~ -~~~ -7911241 2048 255 -7911242 homeCount = 147 -7911242 waitCount = 75 -7911243 ripCount = 61 -7911243 locktype1 = 2 -7911264 locktype2 = 9 -7911265 locktype3 = 8 -7911265 goalCount = 1 -7911265 goalTotal = 51 -7911266 otherCount = 77 -~~~ -7911267 CURRENTGOAL IS [1] -~~~ -7911361 DOWN 12 -7911361 0 255 -7911380 UP 12 -7911380 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7911397 homeCount = 147 -7911398 waitCount = 75 -7911399 ripCount = 61 -7911399 locktype1 = 2 -7911400 locktype2 = 9 -7911400 locktype3 = 8 -7911400 goalCount = 1 -7911401 goalTotal = 51 -7911401 otherCount = 77 -~~~ -7911403 CURRENTGOAL IS [1] -~~~ -7919722 DOWN 12 -7919722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7919758 homeCount = 147 -7919759 waitCount = 75 -7919759 ripCount = 61 -7919760 locktype1 = 2 -7919760 locktype2 = 9 -7919761 locktype3 = 8 -7919761 goalCount = 1 -7919762 goalTotal = 51 -7919762 otherCount = 77 -~~~ -7919763 CURRENTGOAL IS [1] -~~~ -7919799 UP 12 -7919799 2048 255 -7919845 DOWN 12 -7919845 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7919877 homeCount = 147 -7919877 waitCount = 75 -7919878 ripCount = 61 -7919878 locktype1 = 2 -7919879 locktype2 = 9 -7919879 locktype3 = 8 -7919880 goalCount = 1 -7919880 goalTotal = 51 -7919881 otherCount = 77 -~~~ -7919882 CURRENTGOAL IS [1] -~~~ -7928018 UP 3 -7928018 4 255 -~~~ -~~~ -7928533 DOWN 3 -7928533 0 255 -~~~ -~~~ -7928553 0 254 -~~~ -~~~ -7928555 0 252 -~~~ -~~~ -7928557 0 248 -~~~ -~~~ -7928558 0 240 -~~~ -~~~ -7928560 0 224 -~~~ -~~~ -7928562 0 192 -~~~ -~~~ -7928564 0 128 -~~~ -~~~ -7928566 0 0 -~~~ -~~~ -7928568 0 512 -7928569 homeCount = 147 -7928569 waitCount = 75 -7928570 ripCount = 61 -7928570 locktype1 = 2 -7928570 locktype2 = 9 -7928592 locktype3 = 8 -7928592 goalCount = 1 -7928593 goalTotal = 51 -7928593 otherCount = 78 -~~~ -7932281 UP 10 -7932281 waslock = 0 -7932281 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7932304 512 16777728 -~~~ -7932453 512 512 -7932498 DOWN 10 -7932498 0 512 -~~~ -7932518 UP 10 -7932518 waslock = 0 -7932518 512 512 -~~~ -~~~ -~~~ -7932520 512 2048 -7932521 homeCount = 148 -7932522 waitCount = 75 -7932522 ripCount = 61 -7932523 locktype1 = 2 -7932523 locktype2 = 9 -7932524 locktype3 = 8 -7932524 goalCount = 1 -7932525 goalTotal = 51 -7932546 otherCount = 78 -~~~ -~~~ -7933232 DOWN 10 -7933232 0 2048 -~~~ -~~~ -~~~ -~~~ -7933254 homeCount = 148 -7933255 waitCount = 75 -7933255 ripCount = 61 -7933256 locktype1 = 2 -7933256 locktype2 = 9 -7933256 locktype3 = 8 -7933257 goalCount = 1 -7933257 goalTotal = 51 -7933258 otherCount = 78 -~~~ -7933259 UP 10 -7933259 waslock = 0 -7933258 512 2048 -~~~ -7936681 DOWN 10 -7936681 0 2048 -~~~ -~~~ -~~~ -~~~ -7936705 homeCount = 148 -7936705 waitCount = 75 -7936706 ripCount = 61 -7936706 locktype1 = 2 -7936706 locktype2 = 9 -7936707 locktype3 = 8 -7936707 goalCount = 1 -7936708 goalTotal = 51 -7936708 otherCount = 78 -~~~ -7938394 UP 12 -7938394 2048 2048 -7941781 DOWN 12 -7941781 0 2048 -7941837 UP 12 -7941837 2048 2048 -7941956 DOWN 12 -7941956 0 2048 -7941983 UP 12 -7941983 2048 2048 -7943894 CLICK1 -7943894 CLICK2 -~~~ -~~~ -~~~ -7943913 2048 67110912 -~~~ -7944063 2048 2048 -7950204 DOWN 12 -7950204 0 2048 -~~~ -~~~ -7950231 0 0 -~~~ -~~~ -7950233 0 1 -~~~ -~~~ -7950235 0 3 -~~~ -~~~ -7950237 0 7 -~~~ -~~~ -7950238 0 15 -~~~ -~~~ -7950240 0 31 -~~~ -~~~ -7950242 0 63 -~~~ -~~~ -7950244 0 127 -~~~ -~~~ -7950246 0 255 -7950247 homeCount = 148 -7950247 waitCount = 76 -7950248 ripCount = 61 -7950248 locktype1 = 2 -7950249 locktype2 = 9 -7950249 locktype3 = 8 -7950270 goalCount = 1 -7950271 goalTotal = 51 -7950271 otherCount = 78 -~~~ -7950272 CURRENTGOAL IS [1] -~~~ -7956075 UP 1 -7956075 1 255 -~~~ -~~~ -7956097 outer reward -~~~ -7956097 1 65791 -~~~ -~~~ -7956547 1 255 -7965194 DOWN 1 -7965194 0 255 -~~~ -~~~ -7965214 0 254 -~~~ -~~~ -7965216 0 252 -~~~ -~~~ -7965217 0 248 -~~~ -~~~ -7965219 0 240 -~~~ -~~~ -7965221 0 224 -~~~ -~~~ -7965223 0 192 -~~~ -~~~ -7965225 0 128 -~~~ -~~~ -7965226 0 0 -~~~ -~~~ -7965228 0 512 -7965229 homeCount = 148 -7965230 waitCount = 76 -7965230 ripCount = 61 -7965231 locktype1 = 2 -7965231 locktype2 = 9 -7965252 locktype3 = 8 -7965253 goalCount = 2 -7965253 goalTotal = 52 -7965254 otherCount = 78 -~~~ -7965254 1 512 -7965322 DOWN 1 -7965322 0 512 -7965364 1 512 -7969410 DOWN 1 -7969410 0 512 -7973544 UP 10 -7973544 waslock = 0 -7973543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7973568 512 16777728 -~~~ -7973718 512 512 -7978713 DOWN 10 -7978713 0 512 -~~~ -~~~ -7978733 0 1536 -~~~ -~~~ -7978735 0 1024 -7978736 homeCount = 149 -7978736 waitCount = 76 -7978737 ripCount = 61 -7978737 locktype1 = 2 -7978738 locktype2 = 9 -7978738 locktype3 = 8 -7978739 goalCount = 2 -7978739 goalTotal = 52 -7978740 otherCount = 78 -~~~ -7978779 UP 10 -7978779 waslock = 0 -7978779 512 1024 -~~~ -7978830 DOWN 10 -7978830 0 1024 -~~~ -~~~ -~~~ -~~~ -7978858 homeCount = 149 -7978859 waitCount = 76 -7978859 ripCount = 61 -7978860 locktype1 = 2 -7978860 locktype2 = 9 -7978861 locktype3 = 8 -7978861 goalCount = 2 -7978862 goalTotal = 52 -7978862 otherCount = 78 -~~~ -7980517 UP 11 -7980517 1024 1024 -7983057 DOWN 11 -7983057 0 1024 -7983112 UP 11 -7983112 1024 1024 -7984017 BEEP1 -7984017 BEEP2 -~~~ -~~~ -~~~ -7984035 1024 33555456 -~~~ -7984185 1024 1024 -7992797 DOWN 11 -7992797 0 1024 -~~~ -~~~ -7992824 0 0 -~~~ -7992825 UP 11 -7992825 1024 0 -~~~ -~~~ -7992827 1024 1 -~~~ -~~~ -7992829 1024 3 -~~~ -7992830 1024 7 -~~~ -~~~ -7992831 1024 15 -~~~ -~~~ -7992833 1024 31 -~~~ -~~~ -7992835 1024 63 -~~~ -~~~ -7992837 1024 127 -~~~ -~~~ -7992838 1024 255 -7992840 homeCount = 149 -7992861 waitCount = 76 -7992861 ripCount = 62 -7992862 locktype1 = 2 -7992862 locktype2 = 9 -7992863 locktype3 = 8 -7992863 goalCount = 2 -7992864 goalTotal = 52 -7992864 otherCount = 78 -~~~ -7992865 CURRENTGOAL IS [1] -~~~ -7994733 DOWN 11 -7994733 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7994771 homeCount = 149 -7994772 waitCount = 76 -7994772 ripCount = 62 -7994773 locktype1 = 2 -7994773 locktype2 = 9 -7994774 locktype3 = 8 -7994774 goalCount = 2 -7994775 goalTotal = 52 -7994775 otherCount = 78 -~~~ -7994776 CURRENTGOAL IS [1] -~~~ -7994783 UP 11 -7994783 1024 255 -7994819 DOWN 11 -7994819 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7994853 homeCount = 149 -7994853 waitCount = 76 -7994854 ripCount = 62 -7994854 locktype1 = 2 -7994855 locktype2 = 9 -7994855 locktype3 = 8 -7994856 goalCount = 2 -7994856 goalTotal = 52 -7994856 otherCount = 78 -~~~ -7994858 CURRENTGOAL IS [1] -~~~ -7999561 UP 1 -7999561 1 255 -~~~ -~~~ -7999580 outer reward -~~~ -7999581 1 65791 -~~~ -~~~ -7999876 DOWN 1 -7999876 0 65791 -7999895 1 65791 -~~~ -~~~ -7999897 1 65790 -~~~ -~~~ -7999899 1 65788 -~~~ -~~~ -7999901 1 65784 -~~~ -~~~ -7999903 1 65776 -~~~ -~~~ -7999905 1 65760 -~~~ -~~~ -7999907 1 65728 -~~~ -~~~ -7999908 1 65664 -~~~ -~~~ -7999910 1 65536 -~~~ -~~~ -7999912 1 66048 -7999913 homeCount = 149 -7999914 waitCount = 76 -7999914 ripCount = 62 -7999915 locktype1 = 2 -7999935 locktype2 = 9 -7999936 locktype3 = 8 -7999936 goalCount = 3 -7999937 goalTotal = 53 -7999937 otherCount = 78 -~~~ -8000030 1 512 -8010845 DOWN 1 -8010845 0 512 -8010907 1 512 -8010958 DOWN 1 -8010958 0 512 -8011043 1 512 -8011084 DOWN 1 -8011084 0 512 -8015421 UP 10 -8015421 waslock = 0 -8015421 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -8015455 512 16777728 -~~~ -8015605 512 512 -8018818 DOWN 10 -8018818 0 512 -~~~ -~~~ -8018839 0 2560 -~~~ -~~~ -8018841 0 2048 -8018842 homeCount = 150 -8018843 waitCount = 76 -8018843 ripCount = 62 -8018844 locktype1 = 2 -8018844 locktype2 = 9 -8018845 locktype3 = 8 -8018845 goalCount = 3 -8018846 goalTotal = 53 -8018846 otherCount = 78 -~~~ -8018847 UP 10 -8018867 waslock = 0 -8018847 512 2048 -~~~ -8018914 DOWN 10 -8018913 0 2048 -~~~ -~~~ -~~~ -~~~ -8018945 homeCount = 150 -8018945 waitCount = 76 -8018946 ripCount = 62 -8018946 locktype1 = 2 -8018946 locktype2 = 9 -8018947 locktype3 = 8 -8018947 goalCount = 3 -8018948 goalTotal = 53 -8018948 otherCount = 78 -~~~ -8020546 UP 12 -8020546 2048 2048 -8023546 CLICK1 -8023546 CLICK2 -~~~ -~~~ -~~~ -8023571 2048 67110912 -~~~ -8023721 2048 2048 -8031115 DOWN 12 -8031115 0 2048 -~~~ -~~~ -8031138 0 0 -~~~ -8031140 UP 12 -8031140 2048 0 -~~~ -~~~ -8031142 2048 1 -~~~ -~~~ -8031143 2048 3 -~~~ -8031144 2048 7 -~~~ -~~~ -8031146 2048 15 -~~~ -~~~ -8031148 2048 31 -~~~ -~~~ -8031149 2048 63 -~~~ -~~~ -8031151 2048 127 -~~~ -~~~ -8031153 2048 255 -8031154 homeCount = 150 -8031175 waitCount = 77 -8031176 ripCount = 62 -8031176 locktype1 = 2 -8031177 locktype2 = 9 -8031177 locktype3 = 8 -8031178 goalCount = 3 -8031178 goalTotal = 53 -8031179 otherCount = 78 -~~~ -8031180 CURRENTGOAL IS [1] -~~~ -8031198 DOWN 12 -8031198 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8031228 homeCount = 150 -8031228 waitCount = 77 -8031229 ripCount = 62 -8031229 locktype1 = 2 -8031230 locktype2 = 9 -8031230 locktype3 = 8 -8031231 goalCount = 3 -8031231 goalTotal = 53 -8031231 otherCount = 78 -~~~ -8031233 CURRENTGOAL IS [1] -~~~ -8031282 UP 12 -8031282 2048 255 -8032109 DOWN 12 -8032109 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8032146 homeCount = 150 -8032146 waitCount = 77 -8032147 ripCount = 62 -8032148 locktype1 = 2 -8032148 locktype2 = 9 -8032148 locktype3 = 8 -8032149 goalCount = 3 -8032149 goalTotal = 53 -8032150 otherCount = 78 -~~~ -8032151 CURRENTGOAL IS [1] -~~~ -8032154 UP 12 -8032154 2048 255 -8032202 DOWN 12 -8032202 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8032236 homeCount = 150 -8032236 waitCount = 77 -8032237 ripCount = 62 -8032237 locktype1 = 2 -8032238 locktype2 = 9 -8032238 locktype3 = 8 -8032239 goalCount = 3 -8032239 goalTotal = 53 -8032240 otherCount = 78 -~~~ -8032241 CURRENTGOAL IS [1] -~~~ -8035149 UP 1 -8035149 1 255 -~~~ -~~~ -8035173 outer reward -~~~ -8035174 1 65791 -~~~ -~~~ -8035421 DOWN 1 -8035421 0 65791 -~~~ -~~~ -8035442 0 65790 -~~~ -~~~ -8035444 0 65788 -~~~ -~~~ -8035445 0 65784 -~~~ -~~~ -8035447 0 65776 -~~~ -~~~ -8035449 0 65760 -~~~ -~~~ -8035451 0 65728 -~~~ -~~~ -8035453 0 65664 -~~~ -8035454 1 65664 -~~~ -~~~ -8035456 1 65536 -~~~ -8035457 1 66048 -8035458 homeCount = 150 -8035458 waitCount = 77 -8035459 ripCount = 62 -8035480 locktype1 = 2 -8035481 locktype2 = 9 -8035481 locktype3 = 8 -8035481 goalCount = 4 -8035482 goalTotal = 54 -8035482 otherCount = 78 -~~~ -8035623 1 512 -8047000 DOWN 1 -8047000 0 512 -8047011 1 512 -8047114 DOWN 1 -8047114 0 512 -8047158 1 512 -8047251 DOWN 1 -8047251 0 512 -8047290 1 512 -8047390 DOWN 1 -8047390 0 512 -8047404 1 512 -8047629 DOWN 1 -8047629 0 512 -8051873 UP 10 -8051873 waslock = 0 -8051873 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -8051906 512 16777728 -~~~ -8052056 512 512 -8057856 DOWN 10 -8057856 0 512 -~~~ -~~~ -8057882 0 1536 -~~~ -~~~ -8057884 0 1024 -8057885 homeCount = 151 -8057886 waitCount = 77 -8057886 ripCount = 62 -8057887 locktype1 = 2 -8057887 locktype2 = 9 -8057888 locktype3 = 8 -8057888 goalCount = 4 -8057889 goalTotal = 54 -8057889 otherCount = 78 -~~~ -8057925 UP 10 -8057925 waslock = 0 -8057925 512 1024 -~~~ -8057961 DOWN 10 -8057961 0 1024 -~~~ -~~~ -~~~ -~~~ -8057985 homeCount = 151 -8057985 waitCount = 77 -8057986 ripCount = 62 -8057986 locktype1 = 2 -8057987 locktype2 = 9 -8057987 locktype3 = 8 -8057988 goalCount = 4 -8057988 goalTotal = 54 -8057989 otherCount = 78 -~~~ -8059817 UP 11 -8059817 1024 1024 -8063817 BEEP1 -8063817 BEEP2 -~~~ -~~~ -~~~ -8063842 1024 33555456 -~~~ -8063992 1024 1024 -8074007 DOWN 11 -8074007 0 1024 -~~~ -~~~ -8074031 0 0 -~~~ -~~~ -8074033 0 1 -~~~ -~~~ -8074035 0 3 -~~~ -~~~ -8074037 0 7 -~~~ -~~~ -8074039 0 15 -~~~ -~~~ -8074041 0 31 -~~~ -~~~ -8074042 0 63 -~~~ -~~~ -8074044 0 127 -~~~ -~~~ -8074046 0 255 -8074047 homeCount = 151 -8074048 waitCount = 77 -8074048 ripCount = 63 -8074049 locktype1 = 2 -8074049 locktype2 = 9 -8074070 locktype3 = 8 -8074071 goalCount = 4 -8074071 goalTotal = 54 -8074072 otherCount = 78 -~~~ -8074073 CURRENTGOAL IS [1] -~~~ - - description: Statescript log r1 - task_epochs: 2, -, Statescript2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140181332891024 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -# -#import math -#import struct -#import re -#import time -#import random -#import numpy as np -#import pyaudio -#import wave -#from statistics import mean -## V8pre_forage -## visits to incorrect wells cause 5s lockout -## exception is repeat visit to prior well (is ok, no lockout) -## can go to any outer well, any number of times -## lockout from getting rip/wait wells wrong is also 5s -# -# -## decide what type of up trigger was just recieved; act accordingly -#def pokeIn(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# doHome() -# -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# doOuter(num) -# -## decide what type of down trigger was just recieved; act accordingly -#def pokeOut(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# global lastWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# endHome() -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# endWait() -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# endOuter() -# lastWell = currWell -# -##home poke: decide trial type and upcoming wait length; turn on lights accordingly -#def doHome(): -# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout -# global homePump -# global lastWell -# global currWell -# #global waitdist -# -# if trialtype == 0: -# opts = [1, 2] -# randnum = np.random.randint(0,2) #-1 -# trialtype = opts[randnum] -# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #randnum = np.random.randint(0,8) -# delaytime = chooseDelay() -# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") -# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime -# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC -# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") -# print("SCQTMESSAGE: trigger(1);\n") # deliver reward -# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: -# lockout([2,2]) -# -#def chooseDelay(): -# global trialtype -# global RWcount -# global waitdist -# global startwaitdist -# -# print(RWcount) -# -# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short -# return startwaitdist[RWcount[trialtype-1]] -# -# else: -# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist -# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) -# -# else: -# return int(np.random.choice(waitdist,1)) -# -# -#def endHome(): -# global trialtype -# global lastWell -# global homeWell -# global waitWells -# -# if trialtype == 1 or trialtype == 2: -# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -# -#def click(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# -# #generate_click() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC -# -#def beep(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# #generate_beep() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC -# -#def endWait(): -# global trialtype -# global goalWell -# global currWell -# global outerWells -# -# if trialtype == 3: # wait complete -# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): # turn on outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") -# -# -#def doOuter(val): -# global outerPumps -# global trialtype -# global allGoal -# global thisGoal -# global goalWell -# global outerReps -# global currWell -# global lastWell -# global homeWell -# global numgoals -# global validOuterWells -# global waslock -# -# if trialtype == 3: -# trialtype = 0 # outer satisfied, head home next -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# if currWell in goalWell : # repeated; reward -# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") -# print("SCQTMESSAGE: trigger(2);\n") # deliver reward -# allGoal+=1 -# thisGoal+=1 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC -# -# if thisGoal >= outerReps: #maxed repeats reached, time to switch -# print("time to choose new goalS!") -# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats -# chooseGoal() -# else: -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection -# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection -# print(goalWell) -# -# thisGoal = 0 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# -# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) -# goalWell = [currWell] -# -# else: # wrong well; add to forage record if newly visited -# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC -# -# elif trialtype < 3 and waslock<1: -# lockout([2,2]) -# -#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal -# global goalWell -# global oldGoals -# global numgoals -# global outerWells -# global forageNum -# #global outerReps -# -# oldGoals.append(goalWell) -# print(oldGoals) -# -# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms -# forageNum = 1 -# -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# if len(oldGoals)>7: # if all outers have been goal, reset -# print("resetting oldgoals") -# oldGoals = [None] -# -# while any(i in goalWell for i in oldGoals): #if any common elements -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# print(goalWell) -# -# outerReps = np.random.randint(4,13) -# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# print("new goal is "+str(goalWell)+"\n") -# -#def endOuter(): -# global trialtype -# global outerWells -# global homeWell -# global lastWell -# global currWell -# -# if trialtype == 0 and lastWell != currWell: # outer satisfied -# for num in range(len(outerWells)): # turn off outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -#def lockout(val): # turn off all lights for certain amount of time -# global waitWells -# global outerWells -# global lastWell -# global trialtype -# global waslock -# -# locktype = int(val[1]) -# trialtype = 4 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE -# #turn off all lights -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(waitWells)): #turn off all wait and outer well lights -# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# waslock=1 -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well -# if locktype == 1: -# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well -# if locktype == 2: -# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC -# if locktype == 3: -# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors -# -# -#def lockend(): -# global trialtype -# global homeWell -# -# trialtype = 0 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well -# print("SCQTMESSAGE: trigger(3);\n") -# -#def updateWaslock(val): -# global waslock -# -# waslock = int(val[1]) -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") -# -## Function: generate click sound -#def generate_click(): -# -# File='ZippoClick_short.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -## Function: generate cowbell sound -#def generate_beep(): -# -# File='Beep.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -#def makewhitenoise(): #play white noise for duration of lockout -# global locksoundlength -# -# soundlength = int(44100*locksoundlength/1000) -# p = pyaudio.PyAudio() -# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) -# whitenoise = np.random.randint(700,size = soundlength) -# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) -# stream.write(data) -# stream.close() -# p.terminate() -# -# -## This is the custom callback function. When events occur, addScQtEvent will -## call this function. This function MUST BE NAMED 'callback'!!!! -#def callback(line): -# -# global waslock -# -# if line.find("UP") >= 0: #input triggered -# pokeIn(re.findall(r'\d+',line)) -# if line.find("DOWN") >= 0: #input triggered -# pokeOut(re.findall(r'\d+',line)) -# if line.find("BEEP1") >= 0: # make a beep and deliver reward -# beep() -# if line.find("BEEP2") >= 0: # make a beep and deliver reward -# generate_beep() -# if line.find("CLICK1") >= 0: # make a click and deliver reward -# click() -# if line.find("CLICK2") >= 0: # make a click and deliver reward -# generate_click() -# if line.find("LOCKOUT") >= 0: # lockout procedure -# lockout(re.findall(r'\d+',line)) -# if line.find("LOCKEND") >= 0: # reset trialtype to 0 -# lockend() -# if line.find("WHITENOISE") >= 0: # make noise during lockout -# makewhitenoise() -# if line.find("waslock") >= 0: #update waslock value -# updateWaslock(re.findall(r'\d+',line)) -# -# -## define wells -#homeWell = 10 -#waitWells = [11,12] -#outerWells = [1,2,3,4,5,6,7,8] -##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num -## define pumps -#homePump = 25 -#waitPumps = [26, 27] -#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] -# -##global variables -#lastWell = -1 -#currWell = -1 -#trialtype = 0 -#outerReps = 10 -##outerReps = np.random.randint(4,13) #10 -#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# -#allGoal = 0 -#thisGoal = 0 -#numgoals = 1 # number of outer arms rewarded -#forageNum = 1 -#if numgoals == 1: -# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells -#else: -# goalWell = np.random.choice(outerWells,numgoals,replace=False) -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) -# -#oldGoals = [] #initialize with any wells to exclude from being goal -##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] -#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] -# -#startwaitdist = [1000, 1500, 2000] -# -#locksoundlength = 1000 -#print(goalWell) -#waslock=0 -#RWcount = [0,0 -# -17097908 UP 10 -17097909 waslock = 0 -17097908 512 512 -~~~ -~~~ -17097929 DOWN 10 -17097929 0 512 -~~~ -~~~ -~~~ -17097934 0 16777728 -~~~ -~~~ -~~~ -17097954 0 16779776 -~~~ -~~~ -17097956 0 16779264 -17097957 homeCount = 1 -17097957 waitCount = 0 -17097958 ripCount = 0 -17097958 locktype1 = 0 -17097959 locktype2 = 0 -17097959 locktype3 = 0 -17097960 goalCount = 0 -17097960 goalTotal = 0 -17097960 otherCount = 0 -~~~ -17098084 0 2048 -17098097 UP 10 -17098097 waslock = 0 -17098097 512 2048 -17098115 DOWN 10 -17098115 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098140 homeCount = 1 -17098140 waitCount = 0 -17098141 ripCount = 0 -17098141 locktype1 = 0 -17098142 locktype2 = 0 -17098142 locktype3 = 0 -17098143 goalCount = 0 -17098143 goalTotal = 0 -17098144 otherCount = 0 -~~~ -17098196 UP 10 -17098196 waslock = 0 -17098196 512 2048 -17098203 DOWN 10 -17098203 0 2048 -17098215 UP 10 -17098215 waslock = 0 -17098215 512 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098224 homeCount = 1 -17098224 waitCount = 0 -17098225 ripCount = 0 -17098225 locktype1 = 0 -17098226 locktype2 = 0 -17098226 locktype3 = 0 -17098227 goalCount = 0 -17098227 goalTotal = 0 -17098228 otherCount = 0 -~~~ -17098232 DOWN 10 -17098232 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098271 homeCount = 1 -17098271 waitCount = 0 -17098272 ripCount = 0 -17098272 locktype1 = 0 -17098273 locktype2 = 0 -17098273 locktype3 = 0 -17098274 goalCount = 0 -17098274 goalTotal = 0 -17098275 otherCount = 0 -~~~ -17098313 UP 10 -17098314 waslock = 0 -17098313 512 2048 -17098325 DOWN 10 -17098325 0 2048 -~~~ -~~~ -~~~ -17098341 UP 10 -17098341 waslock = 0 -17098340 512 2048 -~~~ -~~~ -17098343 homeCount = 1 -17098344 waitCount = 0 -17098344 ripCount = 0 -17098345 locktype1 = 0 -17098345 locktype2 = 0 -17098346 locktype3 = 0 -17098346 goalCount = 0 -17098347 goalTotal = 0 -17098368 otherCount = 0 -~~~ -17098368 DOWN 10 -17098368 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098389 homeCount = 1 -17098389 waitCount = 0 -17098390 ripCount = 0 -17098390 locktype1 = 0 -17098391 locktype2 = 0 -17098391 locktype3 = 0 -17098392 goalCount = 0 -17098392 goalTotal = 0 -17098393 otherCount = 0 -~~~ -17098443 UP 10 -17098443 waslock = 0 -17098443 512 2048 -~~~ -17098479 DOWN 10 -17098479 0 2048 -~~~ -~~~ -~~~ -~~~ -17098504 homeCount = 1 -17098504 waitCount = 0 -17098505 ripCount = 0 -17098505 locktype1 = 0 -17098505 locktype2 = 0 -17098506 locktype3 = 0 -17098506 goalCount = 0 -17098507 goalTotal = 0 -17098507 otherCount = 0 -~~~ -17098562 UP 10 -17098562 waslock = 0 -17098562 512 2048 -~~~ -17098607 DOWN 10 -17098607 0 2048 -~~~ -~~~ -~~~ -~~~ -17098626 homeCount = 1 -17098627 waitCount = 0 -17098627 ripCount = 0 -17098628 locktype1 = 0 -17098628 locktype2 = 0 -17098629 locktype3 = 0 -17098629 goalCount = 0 -17098630 goalTotal = 0 -17098630 otherCount = 0 -~~~ -17098693 UP 10 -17098693 waslock = 0 -17098693 512 2048 -~~~ -17098737 DOWN 10 -17098737 0 2048 -~~~ -~~~ -~~~ -~~~ -17098764 homeCount = 1 -17098764 waitCount = 0 -17098765 ripCount = 0 -17098765 locktype1 = 0 -17098766 locktype2 = 0 -17098766 locktype3 = 0 -17098767 goalCount = 0 -17098767 goalTotal = 0 -17098768 otherCount = 0 -~~~ -17098821 UP 10 -17098822 waslock = 0 -17098821 512 2048 -~~~ -17098866 DOWN 10 -17098866 0 2048 -~~~ -~~~ -~~~ -~~~ -17098893 homeCount = 1 -17098894 waitCount = 0 -17098895 ripCount = 0 -17098895 locktype1 = 0 -17098895 locktype2 = 0 -17098896 locktype3 = 0 -17098896 goalCount = 0 -17098897 goalTotal = 0 -17098897 otherCount = 0 -~~~ -17098951 UP 10 -17098951 waslock = 0 -17098951 512 2048 -~~~ -17098997 DOWN 10 -17098997 0 2048 -~~~ -~~~ -~~~ -~~~ -17099024 homeCount = 1 -17099024 waitCount = 0 -17099025 ripCount = 0 -17099025 locktype1 = 0 -17099026 locktype2 = 0 -17099026 locktype3 = 0 -17099027 goalCount = 0 -17099027 goalTotal = 0 -17099028 otherCount = 0 -~~~ -17099078 UP 10 -17099078 waslock = 0 -17099078 512 2048 -~~~ -17099137 DOWN 10 -17099137 0 2048 -~~~ -~~~ -~~~ -~~~ -17099164 homeCount = 1 -17099164 waitCount = 0 -17099165 ripCount = 0 -17099165 locktype1 = 0 -17099166 locktype2 = 0 -17099166 locktype3 = 0 -17099167 goalCount = 0 -17099167 goalTotal = 0 -17099168 otherCount = 0 -~~~ -17099210 UP 10 -17099210 waslock = 0 -17099209 512 2048 -~~~ -17099274 DOWN 10 -17099274 0 2048 -~~~ -~~~ -~~~ -~~~ -17099295 homeCount = 1 -17099295 waitCount = 0 -17099296 ripCount = 0 -17099296 locktype1 = 0 -17099297 locktype2 = 0 -17099297 locktype3 = 0 -17099298 goalCount = 0 -17099298 goalTotal = 0 -17099299 otherCount = 0 -~~~ -17099341 UP 10 -17099342 waslock = 0 -17099341 512 2048 -~~~ -17099412 DOWN 10 -17099412 0 2048 -~~~ -~~~ -~~~ -~~~ -17099438 homeCount = 1 -17099438 waitCount = 0 -17099439 ripCount = 0 -17099439 locktype1 = 0 -17099440 locktype2 = 0 -17099440 locktype3 = 0 -17099441 goalCount = 0 -17099441 goalTotal = 0 -17099442 otherCount = 0 -~~~ -17099483 UP 10 -17099483 waslock = 0 -17099483 512 2048 -~~~ -17099557 DOWN 10 -17099557 0 2048 -17099566 UP 10 -17099566 waslock = 0 -17099566 512 2048 -~~~ -~~~ -~~~ -~~~ -17099587 homeCount = 1 -17099588 waitCount = 0 -17099588 ripCount = 0 -17099589 locktype1 = 0 -17099589 locktype2 = 0 -17099590 locktype3 = 0 -17099590 goalCount = 0 -17099591 goalTotal = 0 -17099591 otherCount = 0 -~~~ -~~~ -17099696 DOWN 10 -17099696 0 2048 -17099699 UP 10 -17099699 waslock = 0 -17099699 512 2048 -~~~ -~~~ -~~~ -~~~ -17099724 homeCount = 1 -17099724 waitCount = 0 -17099725 ripCount = 0 -17099725 locktype1 = 0 -17099726 locktype2 = 0 -17099726 locktype3 = 0 -17099727 goalCount = 0 -17099727 goalTotal = 0 -17099728 otherCount = 0 -~~~ -~~~ -17100772 DOWN 10 -17100772 0 2048 -17100789 UP 10 -17100789 waslock = 0 -17100789 512 2048 -~~~ -~~~ -~~~ -~~~ -17100795 homeCount = 1 -17100795 waitCount = 0 -17100796 ripCount = 0 -17100796 locktype1 = 0 -17100797 locktype2 = 0 -17100797 locktype3 = 0 -17100798 goalCount = 0 -17100798 goalTotal = 0 -17100799 otherCount = 0 -~~~ -~~~ -17100909 DOWN 10 -17100909 0 2048 -~~~ -~~~ -~~~ -~~~ -17100938 homeCount = 1 -17100938 waitCount = 0 -17100939 ripCount = 0 -17100939 locktype1 = 0 -17100940 locktype2 = 0 -17100940 locktype3 = 0 -17100941 goalCount = 0 -17100941 goalTotal = 0 -17100942 otherCount = 0 -~~~ -17100945 UP 10 -17100945 waslock = 0 -17100945 512 2048 -~~~ -17101065 DOWN 10 -17101065 0 2048 -~~~ -~~~ -~~~ -~~~ -17101093 homeCount = 1 -17101093 waitCount = 0 -17101094 ripCount = 0 -17101094 locktype1 = 0 -17101095 locktype2 = 0 -17101095 locktype3 = 0 -17101096 goalCount = 0 -17101096 goalTotal = 0 -17101097 otherCount = 0 -~~~ -17101099 UP 10 -17101100 waslock = 0 -17101099 512 2048 -~~~ -17101243 DOWN 10 -17101243 0 2048 -~~~ -~~~ -~~~ -~~~ -17101263 UP 10 -17101264 waslock = 0 -17101263 512 2048 -17101265 homeCount = 1 -17101266 waitCount = 0 -17101266 ripCount = 0 -17101267 locktype1 = 0 -17101267 locktype2 = 0 -17101268 locktype3 = 0 -17101268 goalCount = 0 -17101269 goalTotal = 0 -17101269 otherCount = 0 -~~~ -~~~ -17101399 DOWN 10 -17101399 0 2048 -17101416 UP 10 -17101416 waslock = 0 -17101416 512 2048 -~~~ -~~~ -~~~ -~~~ -17101424 homeCount = 1 -17101424 waitCount = 0 -17101425 ripCount = 0 -17101425 locktype1 = 0 -17101425 locktype2 = 0 -17101426 locktype3 = 0 -17101426 goalCount = 0 -17101427 goalTotal = 0 -17101427 otherCount = 0 -~~~ -~~~ -17101561 DOWN 10 -17101561 0 2048 -17101572 UP 10 -17101572 waslock = 0 -17101572 512 2048 -~~~ -~~~ -~~~ -~~~ -17101596 homeCount = 1 -17101596 waitCount = 0 -17101597 ripCount = 0 -17101597 locktype1 = 0 -17101598 locktype2 = 0 -17101598 locktype3 = 0 -17101599 goalCount = 0 -17101599 goalTotal = 0 -17101600 otherCount = 0 -~~~ -~~~ -17101896 DOWN 10 -17101896 0 2048 -17101911 UP 10 -17101911 waslock = 0 -17101911 512 2048 -~~~ -~~~ -~~~ -~~~ -17101939 homeCount = 1 -17101940 waitCount = 0 -17101940 ripCount = 0 -17101940 locktype1 = 0 -17101941 locktype2 = 0 -17101941 locktype3 = 0 -17101942 goalCount = 0 -17101942 goalTotal = 0 -17101943 otherCount = 0 -~~~ -~~~ -17102043 DOWN 10 -17102043 0 2048 -~~~ -~~~ -~~~ -~~~ -17102068 homeCount = 1 -17102069 waitCount = 0 -17102069 ripCount = 0 -17102070 locktype1 = 0 -17102070 locktype2 = 0 -17102071 locktype3 = 0 -17102071 goalCount = 0 -17102072 goalTotal = 0 -17102072 otherCount = 0 -~~~ -17102073 UP 10 -17102073 waslock = 0 -17102073 512 2048 -~~~ -17102213 DOWN 10 -17102213 0 2048 -~~~ -17102236 UP 10 -17102236 waslock = 0 -17102236 512 2048 -~~~ -~~~ -~~~ -17102240 homeCount = 1 -17102240 waitCount = 0 -17102241 ripCount = 0 -17102241 locktype1 = 0 -17102242 locktype2 = 0 -17102242 locktype3 = 0 -17102242 goalCount = 0 -17102243 goalTotal = 0 -17102243 otherCount = 0 -~~~ -~~~ -17102394 DOWN 10 -17102394 0 2048 -17102404 UP 10 -17102404 waslock = 0 -17102404 512 2048 -~~~ -~~~ -~~~ -~~~ -17102428 homeCount = 1 -17102429 waitCount = 0 -17102429 ripCount = 0 -17102430 locktype1 = 0 -17102430 locktype2 = 0 -17102431 locktype3 = 0 -17102431 goalCount = 0 -17102431 goalTotal = 0 -17102432 otherCount = 0 -~~~ -~~~ -17102533 DOWN 10 -17102532 0 2048 -~~~ -~~~ -~~~ -~~~ -17102555 homeCount = 1 -17102556 waitCount = 0 -17102556 ripCount = 0 -17102557 locktype1 = 0 -17102557 locktype2 = 0 -17102558 locktype3 = 0 -17102558 goalCount = 0 -17102559 goalTotal = 0 -17102559 otherCount = 0 -~~~ -17102568 UP 10 -17102568 waslock = 0 -17102568 512 2048 -~~~ -17105160 DOWN 10 -17105160 0 2048 -17105166 UP 10 -17105167 waslock = 0 -17105166 512 2048 -~~~ -~~~ -~~~ -~~~ -17105185 homeCount = 1 -17105186 waitCount = 0 -17105186 ripCount = 0 -17105187 locktype1 = 0 -17105187 locktype2 = 0 -17105188 locktype3 = 0 -17105188 goalCount = 0 -17105189 goalTotal = 0 -17105189 otherCount = 0 -~~~ -~~~ -17105317 DOWN 10 -17105317 0 2048 -17105343 UP 10 -17105343 waslock = 0 -17105343 512 2048 -~~~ -~~~ -~~~ -~~~ -17105348 homeCount = 1 -17105348 waitCount = 0 -17105349 ripCount = 0 -17105349 locktype1 = 0 -17105350 locktype2 = 0 -17105350 locktype3 = 0 -17105351 goalCount = 0 -17105351 goalTotal = 0 -17105352 otherCount = 0 -~~~ -~~~ -17105443 DOWN 10 -17105443 0 2048 -~~~ -~~~ -~~~ -~~~ -17105469 homeCount = 1 -17105469 waitCount = 0 -17105470 ripCount = 0 -17105470 locktype1 = 0 -17105471 locktype2 = 0 -17105471 locktype3 = 0 -17105472 goalCount = 0 -17105472 goalTotal = 0 -17105473 otherCount = 0 -~~~ -17105486 UP 10 -17105486 waslock = 0 -17105486 512 2048 -~~~ -17105600 DOWN 10 -17105600 0 2048 -~~~ -~~~ -~~~ -~~~ -17105628 homeCount = 1 -17105628 waitCount = 0 -17105629 ripCount = 0 -17105629 locktype1 = 0 -17105629 locktype2 = 0 -17105630 locktype3 = 0 -17105630 goalCount = 0 -17105631 goalTotal = 0 -17105631 otherCount = 0 -~~~ -17105636 UP 10 -17105636 waslock = 0 -17105636 512 2048 -~~~ -17105791 DOWN 10 -17105791 0 2048 -~~~ -17105814 UP 10 -17105814 waslock = 0 -17105814 512 2048 -~~~ -~~~ -~~~ -17105817 homeCount = 1 -17105818 waitCount = 0 -17105818 ripCount = 0 -17105819 locktype1 = 0 -17105819 locktype2 = 0 -17105820 locktype3 = 0 -17105820 goalCount = 0 -17105821 goalTotal = 0 -17105821 otherCount = 0 -~~~ -~~~ -17105974 DOWN 10 -17105974 0 2048 -17105987 UP 10 -17105988 waslock = 0 -17105987 512 2048 -~~~ -~~~ -~~~ -~~~ -17106001 homeCount = 1 -17106002 waitCount = 0 -17106002 ripCount = 0 -17106003 locktype1 = 0 -17106003 locktype2 = 0 -17106004 locktype3 = 0 -17106004 goalCount = 0 -17106005 goalTotal = 0 -17106005 otherCount = 0 -~~~ -~~~ -17106145 DOWN 10 -17106145 0 2048 -17106156 UP 10 -17106156 waslock = 0 -17106156 512 2048 -~~~ -~~~ -~~~ -~~~ -17106177 homeCount = 1 -17106177 waitCount = 0 -17106178 ripCount = 0 -17106178 locktype1 = 0 -17106179 locktype2 = 0 -17106179 locktype3 = 0 -17106180 goalCount = 0 -17106180 goalTotal = 0 -17106181 otherCount = 0 -~~~ -~~~ -17106662 DOWN 10 -17106662 0 2048 -17106678 UP 10 -17106679 waslock = 0 -17106678 512 2048 -~~~ -~~~ -~~~ -~~~ -17106686 homeCount = 1 -17106686 waitCount = 0 -17106687 ripCount = 0 -17106687 locktype1 = 0 -17106688 locktype2 = 0 -17106688 locktype3 = 0 -17106689 goalCount = 0 -17106689 goalTotal = 0 -17106689 otherCount = 0 -~~~ -~~~ -17107378 DOWN 10 -17107378 0 2048 -17107394 UP 10 -17107395 waslock = 0 -17107394 512 2048 -~~~ -~~~ -~~~ -~~~ -17107416 homeCount = 1 -17107416 waitCount = 0 -17107417 ripCount = 0 -17107417 locktype1 = 0 -17107418 locktype2 = 0 -17107418 locktype3 = 0 -17107419 goalCount = 0 -17107419 goalTotal = 0 -17107420 otherCount = 0 -~~~ -~~~ -17110357 DOWN 10 -17110357 0 2048 -17110367 UP 10 -17110368 waslock = 0 -17110367 512 2048 -~~~ -~~~ -~~~ -~~~ -17110384 homeCount = 1 -17110384 waitCount = 0 -17110385 ripCount = 0 -17110385 locktype1 = 0 -17110386 locktype2 = 0 -17110386 locktype3 = 0 -17110387 goalCount = 0 -17110387 goalTotal = 0 -17110388 otherCount = 0 -~~~ -~~~ -17111248 DOWN 10 -17111248 0 2048 -~~~ -~~~ -~~~ -~~~ -17111278 homeCount = 1 -17111278 waitCount = 0 -17111279 ripCount = 0 -17111279 locktype1 = 0 -17111280 locktype2 = 0 -17111280 locktype3 = 0 -17111281 goalCount = 0 -17111281 goalTotal = 0 -17111282 otherCount = 0 -~~~ -17112980 UP 12 -17112980 2048 2048 -17113019 DOWN 12 -17113019 0 2048 -17113078 UP 12 -17113078 2048 2048 -17113162 DOWN 12 -17113162 0 2048 -17113362 LOCKOUT 3 -~~~ -17113381 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17113387 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17115071 UP 12 -17115071 2048 0 -17115080 DOWN 12 -17115080 0 0 -17115215 UP 12 -17115215 2048 0 -17115221 DOWN 12 -17115221 0 0 -17115349 UP 12 -17115349 2048 0 -17115363 DOWN 12 -17115363 0 0 -17115440 UP 12 -17115440 2048 0 -17115466 DOWN 12 -17115466 0 0 -17115645 UP 12 -17115645 2048 0 -17115657 DOWN 12 -17115657 0 0 -17115667 UP 12 -17115666 2048 0 -17115675 DOWN 12 -17115675 0 0 -17115780 UP 12 -17115780 2048 0 -17115801 DOWN 12 -17115801 0 0 -17115810 UP 12 -17115810 2048 0 -17115816 DOWN 12 -17115816 0 0 -17115955 UP 12 -17115955 2048 0 -17115960 DOWN 12 -17115960 0 0 -17116066 UP 12 -17116066 2048 0 -17116100 DOWN 12 -17116100 0 0 -17116204 UP 12 -17116204 2048 0 -17116257 DOWN 12 -17116257 0 0 -17116327 UP 12 -17116326 2048 0 -17116902 DOWN 12 -17116902 0 0 -17116938 UP 12 -17116938 2048 0 -17117078 DOWN 12 -17117078 0 0 -17117106 UP 12 -17117106 2048 0 -17117247 DOWN 12 -17117247 0 0 -17117269 UP 12 -17117269 2048 0 -17117395 DOWN 12 -17117394 0 0 -17117444 UP 12 -17117443 2048 0 -17117560 DOWN 12 -17117560 0 0 -17117578 UP 12 -17117578 2048 0 -17120536 DOWN 12 -17120536 0 0 -17120564 UP 12 -17120564 2048 0 -17120692 DOWN 12 -17120692 0 0 -17120734 UP 12 -17120734 2048 0 -17122749 DOWN 12 -17122749 0 0 -17122862 UP 12 -17122862 2048 0 -17122925 DOWN 12 -17122925 0 0 -17122966 UP 12 -17122966 2048 0 -17122985 DOWN 12 -17122985 0 0 -17126115 UP 11 -17126115 1024 0 -17126590 DOWN 11 -17126590 0 0 -17126628 UP 11 -17126628 1024 0 -17126735 DOWN 11 -17126735 0 0 -17126767 UP 11 -17126767 1024 0 -17126848 DOWN 11 -17126848 0 0 -17126961 UP 11 -17126961 1024 0 -17127005 DOWN 11 -17127005 0 0 -17127070 UP 11 -17127070 1024 0 -17127268 DOWN 11 -17127268 0 0 -17127323 UP 11 -17127323 1024 0 -17127360 DOWN 11 -17127360 0 0 -17128371 UP 11 -17128371 1024 0 -17128378 DOWN 11 -17128378 0 0 -17128512 UP 11 -17128512 1024 0 -17128520 DOWN 11 -17128520 0 0 -17128657 UP 11 -17128657 1024 0 -17128664 DOWN 11 -17128664 0 0 -17128799 UP 11 -17128799 1024 0 -17128814 DOWN 11 -17128814 0 0 -17128924 UP 11 -17128924 1024 0 -17128955 DOWN 11 -17128955 0 0 -17129072 UP 11 -17129072 1024 0 -17129121 DOWN 11 -17129121 0 0 -17129193 UP 11 -17129193 1024 0 -17129199 DOWN 11 -17129199 0 0 -17129206 UP 11 -17129206 1024 0 -17129273 DOWN 11 -17129273 0 0 -17129339 UP 11 -17129339 1024 0 -17129427 DOWN 11 -17129427 0 0 -17129465 UP 11 -17129465 1024 0 -17129478 DOWN 11 -17129478 0 0 -17129493 UP 11 -17129493 1024 0 -17129584 DOWN 11 -17129584 0 0 -17129604 UP 11 -17129604 1024 0 -17129642 DOWN 11 -17129642 0 0 -17129647 UP 11 -17129647 1024 0 -17129741 DOWN 11 -17129741 0 0 -17129755 UP 11 -17129755 1024 0 -17129913 DOWN 11 -17129913 0 0 -17129916 UP 11 -17129916 1024 0 -17131282 DOWN 11 -17131282 0 0 -17131290 UP 11 -17131290 1024 0 -17131452 DOWN 11 -17131452 0 0 -17131471 UP 11 -17131471 1024 0 -17131613 DOWN 11 -17131613 0 0 -17131648 UP 11 -17131648 1024 0 -17134290 DOWN 11 -17134290 0 0 -17134769 UP 11 -17134769 1024 0 -17134823 DOWN 11 -17134823 0 0 -17138381 LOCKEND -~~~ -~~~ -~~~ -17138406 0 512 -17139837 UP 10 -17139837 waslock = 0 -17139837 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17139872 512 16777728 -~~~ -17139893 DOWN 10 -17139893 0 16777728 -~~~ -~~~ -17139915 0 16779776 -~~~ -~~~ -17139917 0 16779264 -17139918 homeCount = 2 -17139918 waitCount = 0 -17139919 ripCount = 0 -17139919 locktype1 = 0 -17139920 locktype2 = 0 -17139920 locktype3 = 1 -17139921 goalCount = 0 -17139921 goalTotal = 0 -17139922 otherCount = 0 -~~~ -17139950 UP 10 -17139950 waslock = 0 -17139950 512 16779264 -~~~ -17140022 512 2048 -17140065 DOWN 10 -17140065 0 2048 -~~~ -~~~ -~~~ -~~~ -17140088 homeCount = 2 -17140089 waitCount = 0 -17140089 ripCount = 0 -17140090 locktype1 = 0 -17140090 locktype2 = 0 -17140091 locktype3 = 1 -17140091 goalCount = 0 -17140092 goalTotal = 0 -17140092 otherCount = 0 -~~~ -17140101 UP 10 -17140101 waslock = 0 -17140101 512 2048 -~~~ -17140240 DOWN 10 -17140240 0 2048 -17140257 UP 10 -17140257 waslock = 0 -17140257 512 2048 -~~~ -~~~ -~~~ -~~~ -17140270 homeCount = 2 -17140270 waitCount = 0 -17140271 ripCount = 0 -17140271 locktype1 = 0 -17140272 locktype2 = 0 -17140272 locktype3 = 1 -17140273 goalCount = 0 -17140273 goalTotal = 0 -17140274 otherCount = 0 -~~~ -~~~ -17140410 DOWN 10 -17140410 0 2048 -17140426 UP 10 -17140427 waslock = 0 -17140426 512 2048 -~~~ -~~~ -~~~ -~~~ -17140449 homeCount = 2 -17140449 waitCount = 0 -17140450 ripCount = 0 -17140450 locktype1 = 0 -17140451 locktype2 = 0 -17140451 locktype3 = 1 -17140452 goalCount = 0 -17140452 goalTotal = 0 -17140453 otherCount = 0 -~~~ -~~~ -17140577 DOWN 10 -17140577 0 2048 -17140594 UP 10 -17140594 waslock = 0 -17140594 512 2048 -~~~ -~~~ -~~~ -~~~ -17140620 homeCount = 2 -17140621 waitCount = 0 -17140621 ripCount = 0 -17140622 locktype1 = 0 -17140622 locktype2 = 0 -17140623 locktype3 = 1 -17140623 goalCount = 0 -17140624 goalTotal = 0 -17140624 otherCount = 0 -~~~ -~~~ -17142212 DOWN 10 -17142212 0 2048 -17142228 UP 10 -17142229 waslock = 0 -17142228 512 2048 -~~~ -~~~ -~~~ -~~~ -17142249 homeCount = 2 -17142250 waitCount = 0 -17142250 ripCount = 0 -17142251 locktype1 = 0 -17142251 locktype2 = 0 -17142252 locktype3 = 1 -17142252 goalCount = 0 -17142253 goalTotal = 0 -17142253 otherCount = 0 -~~~ -~~~ -17142366 DOWN 10 -17142366 0 2048 -~~~ -~~~ -~~~ -~~~ -17142389 homeCount = 2 -17142389 waitCount = 0 -17142390 ripCount = 0 -17142390 locktype1 = 0 -17142391 locktype2 = 0 -17142391 locktype3 = 1 -17142391 goalCount = 0 -17142392 goalTotal = 0 -17142392 otherCount = 0 -~~~ -17142404 UP 10 -17142405 waslock = 0 -17142404 512 2048 -~~~ -17142467 DOWN 10 -17142467 0 2048 -~~~ -~~~ -~~~ -~~~ -17142488 homeCount = 2 -17142489 waitCount = 0 -17142489 ripCount = 0 -17142490 locktype1 = 0 -17142490 locktype2 = 0 -17142491 locktype3 = 1 -17142491 goalCount = 0 -17142492 goalTotal = 0 -17142492 otherCount = 0 -~~~ -17145618 UP 7 -17145618 64 2048 -~~~ -17145638 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17145644 64 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17145661 DOWN 7 -17145661 0 0 -~~~ -17145688 64 0 -17145936 DOWN 7 -17145935 0 0 -17145982 64 0 -17146406 DOWN 7 -17146406 0 0 -17146420 64 0 -17148954 DOWN 7 -17148954 0 0 -17148975 64 0 -17149053 DOWN 7 -17149053 0 0 -17156173 512 0 -17156617 0 0 -17156641 512 0 -17156974 0 0 -17156988 512 0 -17157127 0 0 -17157152 512 0 -17157306 0 0 -17157321 512 0 -17157477 0 0 -17157493 512 0 -17157661 0 0 -17157668 512 0 -17158019 0 0 -17158039 512 0 -17158176 0 0 -17158207 512 0 -17158364 0 0 -17158393 512 0 -17158518 0 0 -17160113 UP 12 -17160113 2048 0 -17160307 DOWN 12 -17160307 0 0 -17164258 UP 2 -17164258 2 0 -17164330 DOWN 2 -17164330 0 0 -17164364 2 0 -17164660 DOWN 2 -17164660 0 0 -17164694 2 0 -17165098 DOWN 2 -17165098 0 0 -17165116 2 0 -17165603 DOWN 2 -17165603 0 0 -17165620 2 0 -17165783 DOWN 2 -17165783 0 0 -17165803 2 0 -17165960 DOWN 2 -17165960 0 0 -17165976 2 0 -17166139 DOWN 2 -17166139 0 0 -17166149 2 0 -17167551 DOWN 2 -17167551 0 0 -17167564 2 0 -17167726 DOWN 2 -17167726 0 0 -17167754 2 0 -17167812 DOWN 2 -17167812 0 0 -17167901 2 0 -17168006 DOWN 2 -17168006 0 0 -17168074 2 0 -17168160 DOWN 2 -17168160 0 0 -17168269 2 0 -17168360 DOWN 2 -17168360 0 0 -17168390 2 0 -17168528 DOWN 2 -17168528 0 0 -17168554 2 0 -17168701 DOWN 2 -17168701 0 0 -17168770 2 0 -17168793 DOWN 2 -17168793 0 0 -17170638 LOCKEND -~~~ -~~~ -~~~ -17170656 0 512 -17173427 UP 10 -17173427 waslock = 0 -17173427 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17173450 512 16777728 -~~~ -17173481 DOWN 10 -17173481 0 16777728 -~~~ -~~~ -17173505 0 16778752 -~~~ -~~~ -17173507 0 16778240 -17173508 homeCount = 3 -17173509 waitCount = 0 -17173509 ripCount = 0 -17173510 locktype1 = 0 -17173510 locktype2 = 1 -17173511 locktype3 = 1 -17173511 goalCount = 0 -17173512 goalTotal = 0 -17173512 otherCount = 0 -~~~ -17173600 0 1024 -17173629 UP 10 -17173629 waslock = 0 -17173629 512 1024 -~~~ -17177285 DOWN 10 -17177285 0 1024 -17177297 UP 10 -17177298 waslock = 0 -17177297 512 1024 -~~~ -~~~ -~~~ -~~~ -17177320 homeCount = 3 -17177320 waitCount = 0 -17177321 ripCount = 0 -17177321 locktype1 = 0 -17177322 locktype2 = 1 -17177322 locktype3 = 1 -17177322 goalCount = 0 -17177323 goalTotal = 0 -17177323 otherCount = 0 -~~~ -~~~ -17177371 DOWN 10 -17177371 0 1024 -~~~ -~~~ -~~~ -~~~ -17177399 homeCount = 3 -17177399 waitCount = 0 -17177400 ripCount = 0 -17177400 locktype1 = 0 -17177401 locktype2 = 1 -17177401 locktype3 = 1 -17177402 goalCount = 0 -17177402 goalTotal = 0 -17177403 otherCount = 0 -~~~ -17178689 UP 11 -17178689 1024 1024 -17179443 DOWN 11 -17179443 0 1024 -17179507 UP 11 -17179507 1024 1024 -17179689 BEEP1 -17179689 BEEP2 -~~~ -~~~ -~~~ -17179722 1024 33555456 -~~~ -17179872 1024 1024 -17185130 DOWN 11 -17185130 0 1024 -~~~ -~~~ -17185149 0 0 -~~~ -~~~ -17185151 0 1 -~~~ -~~~ -17185153 0 3 -~~~ -~~~ -17185155 0 7 -~~~ -~~~ -17185157 0 15 -~~~ -~~~ -17185159 0 31 -~~~ -~~~ -17185160 0 63 -~~~ -~~~ -17185162 0 127 -~~~ -~~~ -17185164 0 255 -17185165 homeCount = 3 -17185166 waitCount = 0 -17185166 ripCount = 1 -17185167 locktype1 = 0 -17185167 locktype2 = 1 -17185188 locktype3 = 1 -17185189 goalCount = 0 -17185189 goalTotal = 0 -17185190 otherCount = 0 -~~~ -17185191 CURRENTGOAL IS [8] -~~~ -17185191 UP 11 -17185191 1024 255 -17185193 DOWN 11 -17185193 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17185237 homeCount = 3 -17185238 waitCount = 0 -17185238 ripCount = 1 -17185239 locktype1 = 0 -17185239 locktype2 = 1 -17185240 locktype3 = 1 -17185240 goalCount = 0 -17185241 goalTotal = 0 -17185241 otherCount = 0 -~~~ -17185242 CURRENTGOAL IS [8] -~~~ -17187525 UP 8 -17187525 128 255 -17187540 DOWN 8 -17187540 0 255 -17187549 128 255 -~~~ -~~~ -17187564 outer reward -~~~ -17187564 128 8388863 -~~~ -~~~ -~~~ -~~~ -17187568 128 8388862 -~~~ -~~~ -17187570 128 8388860 -~~~ -~~~ -17187572 128 8388856 -~~~ -~~~ -17187574 128 8388848 -~~~ -~~~ -17187575 128 8388832 -~~~ -~~~ -17187577 128 8388800 -~~~ -~~~ -17187579 128 8388736 -~~~ -~~~ -17187581 128 8388608 -~~~ -~~~ -17187583 128 8389120 -17187604 homeCount = 3 -17187605 waitCount = 0 -17187605 ripCount = 1 -17187606 locktype1 = 0 -17187606 locktype2 = 1 -17187607 locktype3 = 1 -17187607 goalCount = 1 -17187608 goalTotal = 1 -17187608 otherCount = 0 -~~~ -17188014 128 512 -17188249 DOWN 8 -17188248 0 512 -17188270 128 512 -17188380 DOWN 8 -17188380 0 512 -17188411 128 512 -17188512 DOWN 8 -17188512 0 512 -17188550 128 512 -17188649 DOWN 8 -17188649 0 512 -17188680 128 512 -17188804 DOWN 8 -17188804 0 512 -17188815 128 512 -17188947 DOWN 8 -17188947 0 512 -17188964 128 512 -17190940 DOWN 8 -17190940 0 512 -17190964 128 512 -17193457 DOWN 8 -17193457 0 512 -17193811 128 512 -17193844 DOWN 8 -17193844 0 512 -17199369 UP 10 -17199369 waslock = 0 -17199369 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17199397 512 16777728 -~~~ -17199547 512 512 -17199572 DOWN 10 -17199572 0 512 -~~~ -~~~ -17199595 0 2560 -~~~ -~~~ -17199596 0 2048 -17199597 homeCount = 4 -17199598 waitCount = 0 -17199598 ripCount = 1 -17199599 locktype1 = 0 -17199599 locktype2 = 1 -17199600 locktype3 = 1 -17199600 goalCount = 1 -17199601 goalTotal = 1 -17199601 otherCount = 0 -~~~ -17199646 UP 10 -17199646 waslock = 0 -17199645 512 2048 -~~~ -17199747 DOWN 10 -17199747 0 2048 -~~~ -~~~ -~~~ -~~~ -17199774 homeCount = 4 -17199775 waitCount = 0 -17199775 ripCount = 1 -17199776 locktype1 = 0 -17199776 locktype2 = 1 -17199777 locktype3 = 1 -17199777 goalCount = 1 -17199778 goalTotal = 1 -17199778 otherCount = 0 -~~~ -17199781 UP 10 -17199781 waslock = 0 -17199781 512 2048 -~~~ -17199882 DOWN 10 -17199882 0 2048 -~~~ -~~~ -~~~ -~~~ -17199908 homeCount = 4 -17199909 waitCount = 0 -17199909 ripCount = 1 -17199909 locktype1 = 0 -17199910 locktype2 = 1 -17199910 locktype3 = 1 -17199911 goalCount = 1 -17199911 goalTotal = 1 -17199912 otherCount = 0 -~~~ -17199918 UP 10 -17199919 waslock = 0 -17199918 512 2048 -~~~ -17200055 DOWN 10 -17200055 0 2048 -~~~ -~~~ -~~~ -~~~ -17200079 UP 10 -17200079 waslock = 0 -17200079 512 2048 -17200080 homeCount = 4 -17200081 waitCount = 0 -17200081 ripCount = 1 -17200082 locktype1 = 0 -17200082 locktype2 = 1 -17200083 locktype3 = 1 -17200083 goalCount = 1 -17200084 goalTotal = 1 -17200084 otherCount = 0 -~~~ -~~~ -17200203 DOWN 10 -17200203 0 2048 -~~~ -~~~ -~~~ -17200231 UP 10 -17200231 waslock = 0 -17200231 512 2048 -~~~ -17200233 homeCount = 4 -17200234 waitCount = 0 -17200234 ripCount = 1 -17200235 locktype1 = 0 -17200235 locktype2 = 1 -17200235 locktype3 = 1 -17200236 goalCount = 1 -17200236 goalTotal = 1 -17200258 otherCount = 0 -~~~ -~~~ -17200369 DOWN 10 -17200369 0 2048 -17200387 UP 10 -17200388 waslock = 0 -17200387 512 2048 -~~~ -~~~ -~~~ -~~~ -17200392 homeCount = 4 -17200393 waitCount = 0 -17200393 ripCount = 1 -17200394 locktype1 = 0 -17200394 locktype2 = 1 -17200395 locktype3 = 1 -17200395 goalCount = 1 -17200396 goalTotal = 1 -17200396 otherCount = 0 -~~~ -~~~ -17200549 DOWN 10 -17200549 0 2048 -17200555 UP 10 -17200555 waslock = 0 -17200555 512 2048 -~~~ -~~~ -~~~ -~~~ -17200573 homeCount = 4 -17200574 waitCount = 0 -17200574 ripCount = 1 -17200575 locktype1 = 0 -17200575 locktype2 = 1 -17200576 locktype3 = 1 -17200576 goalCount = 1 -17200577 goalTotal = 1 -17200577 otherCount = 0 -~~~ -~~~ -17201066 DOWN 10 -17201066 0 2048 -17201087 UP 10 -17201087 waslock = 0 -17201086 512 2048 -~~~ -~~~ -~~~ -~~~ -17201094 homeCount = 4 -17201095 waitCount = 0 -17201095 ripCount = 1 -17201096 locktype1 = 0 -17201096 locktype2 = 1 -17201097 locktype3 = 1 -17201097 goalCount = 1 -17201098 goalTotal = 1 -17201098 otherCount = 0 -~~~ -~~~ -17201975 DOWN 10 -17201975 0 2048 -~~~ -~~~ -~~~ -17202002 UP 10 -17202003 waslock = 0 -17202002 512 2048 -~~~ -17202005 homeCount = 4 -17202005 waitCount = 0 -17202005 ripCount = 1 -17202006 locktype1 = 0 -17202006 locktype2 = 1 -17202007 locktype3 = 1 -17202007 goalCount = 1 -17202008 goalTotal = 1 -17202029 otherCount = 0 -~~~ -~~~ -17202166 DOWN 10 -17202166 0 2048 -17202183 UP 10 -17202183 waslock = 0 -17202183 512 2048 -~~~ -~~~ -~~~ -~~~ -17202206 homeCount = 4 -17202207 waitCount = 0 -17202207 ripCount = 1 -17202208 locktype1 = 0 -17202208 locktype2 = 1 -17202209 locktype3 = 1 -17202209 goalCount = 1 -17202210 goalTotal = 1 -17202210 otherCount = 0 -~~~ -~~~ -17202352 DOWN 10 -17202352 0 2048 -~~~ -~~~ -~~~ -17202373 UP 10 -17202373 waslock = 0 -17202372 512 2048 -~~~ -17202375 homeCount = 4 -17202375 waitCount = 0 -17202376 ripCount = 1 -17202376 locktype1 = 0 -17202377 locktype2 = 1 -17202377 locktype3 = 1 -17202378 goalCount = 1 -17202378 goalTotal = 1 -17202378 otherCount = 0 -~~~ -~~~ -17202533 DOWN 10 -17202533 0 2048 -17202545 UP 10 -17202545 waslock = 0 -17202545 512 2048 -~~~ -~~~ -~~~ -~~~ -17202570 homeCount = 4 -17202570 waitCount = 0 -17202571 ripCount = 1 -17202571 locktype1 = 0 -17202572 locktype2 = 1 -17202572 locktype3 = 1 -17202572 goalCount = 1 -17202573 goalTotal = 1 -17202573 otherCount = 0 -~~~ -~~~ -17202723 DOWN 10 -17202723 0 2048 -17202740 UP 10 -17202740 waslock = 0 -17202740 512 2048 -~~~ -~~~ -~~~ -~~~ -17202747 homeCount = 4 -17202747 waitCount = 0 -17202748 ripCount = 1 -17202748 locktype1 = 0 -17202749 locktype2 = 1 -17202749 locktype3 = 1 -17202750 goalCount = 1 -17202750 goalTotal = 1 -17202751 otherCount = 0 -~~~ -~~~ -17202889 DOWN 10 -17202889 0 2048 -~~~ -~~~ -~~~ -~~~ -17202917 homeCount = 4 -17202918 waitCount = 0 -17202918 ripCount = 1 -17202919 locktype1 = 0 -17202919 locktype2 = 1 -17202920 locktype3 = 1 -17202920 goalCount = 1 -17202921 goalTotal = 1 -17202921 otherCount = 0 -~~~ -17202922 UP 10 -17202922 waslock = 0 -17202922 512 2048 -~~~ -17203082 DOWN 10 -17203082 0 2048 -~~~ -~~~ -~~~ -~~~ -17203107 homeCount = 4 -17203107 waitCount = 0 -17203108 ripCount = 1 -17203108 locktype1 = 0 -17203109 locktype2 = 1 -17203109 locktype3 = 1 -17203110 goalCount = 1 -17203110 goalTotal = 1 -17203111 otherCount = 0 -~~~ -17203111 UP 10 -17203112 waslock = 0 -17203111 512 2048 -~~~ -17203454 DOWN 10 -17203454 0 2048 -~~~ -~~~ -~~~ -~~~ -17203476 homeCount = 4 -17203476 waitCount = 0 -17203477 ripCount = 1 -17203477 locktype1 = 0 -17203478 locktype2 = 1 -17203478 locktype3 = 1 -17203479 goalCount = 1 -17203479 goalTotal = 1 -17203480 otherCount = 0 -~~~ -17203503 UP 10 -17203504 waslock = 0 -17203503 512 2048 -~~~ -17203529 DOWN 10 -17203529 0 2048 -~~~ -~~~ -~~~ -~~~ -17203551 homeCount = 4 -17203551 waitCount = 0 -17203552 ripCount = 1 -17203552 locktype1 = 0 -17203553 locktype2 = 1 -17203553 locktype3 = 1 -17203554 goalCount = 1 -17203554 goalTotal = 1 -17203555 otherCount = 0 -~~~ -17204874 UP 12 -17204874 2048 2048 -17205289 DOWN 12 -17205289 0 2048 -17205350 UP 12 -17205350 2048 2048 -17205874 CLICK1 -17205874 CLICK2 -~~~ -~~~ -~~~ -17205897 2048 67110912 -~~~ -17206047 2048 2048 -17209020 DOWN 12 -17209019 0 2048 -17209027 UP 12 -17209027 2048 2048 -~~~ -~~~ -17209045 2048 0 -~~~ -~~~ -17209047 2048 1 -~~~ -~~~ -17209049 2048 3 -~~~ -~~~ -17209051 2048 7 -~~~ -~~~ -17209053 2048 15 -~~~ -~~~ -17209054 2048 31 -~~~ -~~~ -17209056 2048 63 -~~~ -~~~ -17209058 2048 127 -~~~ -~~~ -17209060 2048 255 -17209061 homeCount = 4 -17209061 waitCount = 1 -17209062 ripCount = 1 -17209083 locktype1 = 0 -17209084 locktype2 = 1 -17209084 locktype3 = 1 -17209085 goalCount = 1 -17209085 goalTotal = 1 -17209086 otherCount = 0 -~~~ -17209087 CURRENTGOAL IS [8] -~~~ -17209208 DOWN 12 -17209207 0 255 -17209215 UP 12 -17209215 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209252 homeCount = 4 -17209253 waitCount = 1 -17209253 ripCount = 1 -17209254 locktype1 = 0 -17209254 locktype2 = 1 -17209255 locktype3 = 1 -17209255 goalCount = 1 -17209256 goalTotal = 1 -17209256 otherCount = 0 -~~~ -17209257 CURRENTGOAL IS [8] -~~~ -17209297 DOWN 12 -17209297 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209333 homeCount = 4 -17209333 waitCount = 1 -17209334 ripCount = 1 -17209334 locktype1 = 0 -17209335 locktype2 = 1 -17209335 locktype3 = 1 -17209336 goalCount = 1 -17209336 goalTotal = 1 -17209337 otherCount = 0 -~~~ -17209338 CURRENTGOAL IS [8] -~~~ -17209367 UP 12 -17209367 2048 255 -17209442 DOWN 12 -17209441 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209482 homeCount = 4 -17209482 waitCount = 1 -17209483 ripCount = 1 -17209483 locktype1 = 0 -17209484 locktype2 = 1 -17209484 locktype3 = 1 -17209485 goalCount = 1 -17209485 goalTotal = 1 -17209486 otherCount = 0 -~~~ -17209487 CURRENTGOAL IS [8] -~~~ -17209521 UP 12 -17209521 2048 255 -17209548 DOWN 12 -17209548 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209584 homeCount = 4 -17209584 waitCount = 1 -17209585 ripCount = 1 -17209585 locktype1 = 0 -17209586 locktype2 = 1 -17209586 locktype3 = 1 -17209587 goalCount = 1 -17209587 goalTotal = 1 -17209588 otherCount = 0 -~~~ -17209589 CURRENTGOAL IS [8] -~~~ -17214096 UP 3 -17214096 4 255 -~~~ -~~~ -17214382 DOWN 3 -17214382 0 255 -~~~ -~~~ -17214406 0 254 -~~~ -~~~ -17214408 0 252 -~~~ -~~~ -17214410 0 248 -~~~ -~~~ -17214412 0 240 -~~~ -~~~ -17214413 0 224 -~~~ -~~~ -17214415 0 192 -~~~ -17214417 4 192 -~~~ -~~~ -17214418 4 128 -~~~ -17214419 4 0 -~~~ -~~~ -17214421 4 512 -17214422 homeCount = 4 -17214422 waitCount = 1 -17214423 ripCount = 1 -17214444 locktype1 = 0 -17214444 locktype2 = 1 -17214445 locktype3 = 1 -17214445 goalCount = 1 -17214446 goalTotal = 1 -17214446 otherCount = 1 -~~~ -17216429 DOWN 3 -17216429 0 512 -17221376 UP 5 -17221376 16 512 -~~~ -17221403 WHITENOISE -~~~ -~~~ -~~~ -17221405 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17221498 DOWN 5 -17221498 0 0 -17221556 16 0 -17221956 DOWN 5 -17221956 0 0 -17221991 16 0 -17222305 DOWN 5 -17222305 0 0 -17222315 16 0 -17224674 DOWN 5 -17224674 0 0 -17229229 512 0 -17229265 0 0 -17229285 512 0 -17229569 0 0 -17229641 512 0 -17230107 0 0 -17230128 512 0 -17230800 0 0 -17230861 512 0 -17230891 0 0 -17241365 UP 1 -17241365 1 0 -17243735 DOWN 1 -17243735 0 0 -17243748 1 0 -17243765 DOWN 1 -17243765 0 0 -17246403 LOCKEND -~~~ -~~~ -~~~ -17246427 0 512 -17248354 UP 10 -17248354 waslock = 0 -17248354 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17248382 512 16777728 -~~~ -17248431 DOWN 10 -17248431 0 16777728 -~~~ -~~~ -17248459 0 16778752 -~~~ -~~~ -17248461 0 16778240 -17248462 homeCount = 5 -17248462 waitCount = 1 -17248463 ripCount = 1 -17248463 locktype1 = 0 -17248464 locktype2 = 2 -17248464 locktype3 = 1 -17248465 goalCount = 1 -17248465 goalTotal = 1 -17248466 otherCount = 1 -~~~ -17248532 0 1024 -17248648 UP 10 -17248648 waslock = 0 -17248648 512 1024 -~~~ -17252377 DOWN 10 -17252377 0 1024 -~~~ -~~~ -~~~ -~~~ -17252397 homeCount = 5 -17252398 waitCount = 1 -17252399 ripCount = 1 -17252399 locktype1 = 0 -17252400 locktype2 = 2 -17252400 locktype3 = 1 -17252400 goalCount = 1 -17252401 goalTotal = 1 -17252401 otherCount = 1 -~~~ -17252421 UP 10 -17252421 waslock = 0 -17252421 512 1024 -~~~ -17252951 DOWN 10 -17252951 0 1024 -~~~ -~~~ -~~~ -~~~ -17252980 homeCount = 5 -17252980 waitCount = 1 -17252981 ripCount = 1 -17252981 locktype1 = 0 -17252981 locktype2 = 2 -17252982 locktype3 = 1 -17252982 goalCount = 1 -17252983 goalTotal = 1 -17252983 otherCount = 1 -~~~ -17254005 UP 11 -17254004 1024 1024 -17254582 DOWN 11 -17254582 0 1024 -17254724 UP 11 -17254724 1024 1024 -17255505 BEEP1 -17255505 BEEP2 -~~~ -~~~ -~~~ -17255528 1024 33555456 -~~~ -17255678 1024 1024 -17260300 DOWN 11 -17260300 0 1024 -~~~ -~~~ -17260324 0 0 -~~~ -~~~ -17260326 0 1 -~~~ -~~~ -17260328 0 3 -~~~ -~~~ -17260330 0 7 -~~~ -~~~ -17260331 0 15 -~~~ -~~~ -17260333 0 31 -~~~ -~~~ -17260335 0 63 -~~~ -~~~ -17260337 0 127 -~~~ -~~~ -17260339 0 255 -17260340 homeCount = 5 -17260340 waitCount = 1 -17260341 ripCount = 2 -17260341 locktype1 = 0 -17260342 locktype2 = 2 -17260363 locktype3 = 1 -17260363 goalCount = 1 -17260364 goalTotal = 1 -17260364 otherCount = 1 -~~~ -17260365 CURRENTGOAL IS [8] -~~~ -17260366 UP 11 -17260366 1024 255 -17260390 DOWN 11 -17260390 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17260428 homeCount = 5 -17260428 waitCount = 1 -17260429 ripCount = 2 -17260429 locktype1 = 0 -17260430 locktype2 = 2 -17260430 locktype3 = 1 -17260431 goalCount = 1 -17260431 goalTotal = 1 -17260432 otherCount = 1 -~~~ -17260433 CURRENTGOAL IS [8] -~~~ -17262731 UP 7 -17262731 64 255 -~~~ -~~~ -17262993 DOWN 7 -17262993 0 255 -~~~ -~~~ -17263010 0 254 -~~~ -~~~ -17263012 0 252 -~~~ -~~~ -17263013 0 248 -~~~ -~~~ -17263015 0 240 -~~~ -~~~ -17263017 0 224 -~~~ -~~~ -17263019 0 192 -~~~ -~~~ -17263021 0 128 -~~~ -~~~ -17263023 0 0 -~~~ -~~~ -17263024 0 512 -17263025 homeCount = 5 -17263026 waitCount = 1 -17263026 ripCount = 2 -17263027 locktype1 = 0 -17263047 locktype2 = 2 -17263048 locktype3 = 1 -17263048 goalCount = 1 -17263049 goalTotal = 1 -17263049 otherCount = 2 -~~~ -17263101 64 512 -17263724 DOWN 7 -17263724 0 512 -17267314 UP 10 -17267315 waslock = 0 -17267314 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17267339 512 16777728 -~~~ -17267489 512 512 -17267798 DOWN 10 -17267798 0 512 -~~~ -~~~ -17267824 0 1536 -~~~ -~~~ -17267826 0 1024 -17267827 homeCount = 6 -17267827 waitCount = 1 -17267828 ripCount = 2 -17267828 locktype1 = 0 -17267829 locktype2 = 2 -17267829 locktype3 = 1 -17267830 goalCount = 1 -17267830 goalTotal = 1 -17267831 otherCount = 2 -~~~ -17267852 UP 10 -17267852 waslock = 0 -17267852 512 1024 -~~~ -17271549 DOWN 10 -17271549 0 1024 -~~~ -~~~ -~~~ -~~~ -17271577 homeCount = 6 -17271577 waitCount = 1 -17271578 ripCount = 2 -17271578 locktype1 = 0 -17271579 locktype2 = 2 -17271579 locktype3 = 1 -17271580 goalCount = 1 -17271580 goalTotal = 1 -17271580 otherCount = 2 -~~~ -17273398 UP 11 -17273398 1024 1024 -17275399 BEEP1 -17275399 BEEP2 -~~~ -~~~ -~~~ -17275425 1024 33555456 -~~~ -17275575 1024 1024 -17280164 DOWN 11 -17280164 0 1024 -~~~ -~~~ -17280183 0 0 -~~~ -~~~ -17280185 0 1 -~~~ -~~~ -17280187 0 3 -~~~ -~~~ -17280189 0 7 -~~~ -~~~ -17280190 0 15 -~~~ -~~~ -17280192 0 31 -~~~ -~~~ -17280194 0 63 -~~~ -~~~ -17280196 0 127 -~~~ -~~~ -17280198 0 255 -17280199 homeCount = 6 -17280199 waitCount = 1 -17280200 ripCount = 3 -17280200 locktype1 = 0 -17280201 locktype2 = 2 -17280222 locktype3 = 1 -17280222 goalCount = 1 -17280223 goalTotal = 1 -17280223 otherCount = 2 -~~~ -17280224 CURRENTGOAL IS [8] -~~~ -17283276 UP 6 -17283276 32 255 -~~~ -~~~ -17287545 DOWN 6 -17287545 0 255 -~~~ -~~~ -17287566 0 254 -~~~ -~~~ -17287568 0 252 -~~~ -~~~ -17287570 0 248 -~~~ -~~~ -17287572 0 240 -~~~ -~~~ -17287574 0 224 -~~~ -~~~ -17287576 0 192 -~~~ -~~~ -17287577 0 128 -~~~ -~~~ -17287579 0 0 -~~~ -~~~ -17287581 0 512 -17287582 homeCount = 6 -17287583 waitCount = 1 -17287583 ripCount = 3 -17287584 locktype1 = 0 -17287584 locktype2 = 2 -17287605 locktype3 = 1 -17287606 goalCount = 1 -17287606 goalTotal = 1 -17287607 otherCount = 3 -~~~ -17292442 UP 10 -17292442 waslock = 0 -17292442 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17292474 512 16777728 -~~~ -17292624 512 512 -17292916 DOWN 10 -17292916 0 512 -~~~ -~~~ -17292940 0 2560 -~~~ -~~~ -17292942 0 2048 -17292943 homeCount = 7 -17292943 waitCount = 1 -17292944 ripCount = 3 -17292944 locktype1 = 0 -17292945 locktype2 = 2 -17292945 locktype3 = 1 -17292946 goalCount = 1 -17292946 goalTotal = 1 -17292947 otherCount = 3 -~~~ -17292968 UP 10 -17292968 waslock = 0 -17292968 512 2048 -~~~ -17295724 DOWN 10 -17295724 0 2048 -~~~ -~~~ -~~~ -~~~ -17295752 homeCount = 7 -17295753 waitCount = 1 -17295753 ripCount = 3 -17295754 locktype1 = 0 -17295754 locktype2 = 2 -17295755 locktype3 = 1 -17295755 goalCount = 1 -17295756 goalTotal = 1 -17295756 otherCount = 3 -~~~ -17297251 UP 12 -17297251 2048 2048 -17298067 DOWN 12 -17298067 0 2048 -17298091 UP 12 -17298090 2048 2048 -17298405 DOWN 12 -17298404 0 2048 -17298448 UP 12 -17298448 2048 2048 -17298503 DOWN 12 -17298503 0 2048 -17298517 UP 12 -17298517 2048 2048 -17298751 CLICK1 -17298751 CLICK2 -~~~ -~~~ -~~~ -17298774 2048 67110912 -~~~ -17298924 2048 2048 -17303723 DOWN 12 -17303723 0 2048 -~~~ -~~~ -17303749 0 0 -~~~ -~~~ -17303751 0 1 -~~~ -~~~ -17303753 0 3 -~~~ -~~~ -17303755 0 7 -~~~ -~~~ -17303757 0 15 -~~~ -~~~ -17303758 0 31 -~~~ -~~~ -17303760 0 63 -~~~ -~~~ -17303762 0 127 -~~~ -~~~ -17303764 0 255 -17303765 homeCount = 7 -17303765 waitCount = 2 -17303766 ripCount = 3 -17303766 locktype1 = 0 -17303767 locktype2 = 2 -17303788 locktype3 = 1 -17303789 goalCount = 1 -17303789 goalTotal = 1 -17303789 otherCount = 3 -~~~ -17303791 CURRENTGOAL IS [8] -~~~ -17306124 UP 3 -17306124 4 255 -~~~ -~~~ -17306596 DOWN 3 -17306596 0 255 -~~~ -~~~ -17306619 0 254 -~~~ -~~~ -17306621 0 252 -~~~ -~~~ -17306623 0 248 -~~~ -~~~ -17306625 0 240 -~~~ -~~~ -17306626 0 224 -~~~ -17306628 4 224 -~~~ -~~~ -17306630 4 192 -~~~ -~~~ -17306631 4 128 -~~~ -17306632 4 0 -~~~ -~~~ -17306634 4 512 -17306635 homeCount = 7 -17306635 waitCount = 2 -17306657 ripCount = 3 -17306657 locktype1 = 0 -17306657 locktype2 = 2 -17306658 locktype3 = 1 -17306658 goalCount = 1 -17306659 goalTotal = 1 -17306659 otherCount = 4 -~~~ -17306899 DOWN 3 -17306899 0 512 -17310805 UP 10 -17310806 waslock = 0 -17310805 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17310836 512 16777728 -~~~ -17310985 512 512 -17311009 DOWN 10 -17311009 0 512 -~~~ -~~~ -17311029 0 2560 -~~~ -~~~ -17311031 0 2048 -17311032 homeCount = 8 -17311033 waitCount = 2 -17311033 ripCount = 3 -17311034 locktype1 = 0 -17311034 locktype2 = 2 -17311034 locktype3 = 1 -17311035 goalCount = 1 -17311035 goalTotal = 1 -17311036 otherCount = 4 -~~~ -17311057 UP 10 -17311058 waslock = 0 -17311057 512 2048 -~~~ -17316712 DOWN 10 -17316712 0 2048 -~~~ -~~~ -~~~ -~~~ -17316732 homeCount = 8 -17316733 waitCount = 2 -17316733 ripCount = 3 -17316734 locktype1 = 0 -17316734 locktype2 = 2 -17316735 locktype3 = 1 -17316735 goalCount = 1 -17316736 goalTotal = 1 -17316736 otherCount = 4 -~~~ -17318338 UP 12 -17318338 2048 2048 -17319026 DOWN 12 -17319026 0 2048 -17319032 UP 12 -17319032 2048 2048 -17319678 DOWN 12 -17319678 0 2048 -17319738 UP 12 -17319738 2048 2048 -17320338 CLICK1 -17320338 CLICK2 -~~~ -~~~ -~~~ -17320363 2048 67110912 -~~~ -17320513 2048 2048 -17326725 DOWN 12 -17326725 0 2048 -~~~ -~~~ -17326751 0 0 -~~~ -~~~ -17326753 0 1 -~~~ -~~~ -17326755 0 3 -~~~ -~~~ -17326757 0 7 -~~~ -~~~ -17326758 0 15 -~~~ -~~~ -17326760 0 31 -~~~ -~~~ -17326762 0 63 -~~~ -~~~ -17326764 0 127 -~~~ -~~~ -17326766 0 255 -17326767 homeCount = 8 -17326767 waitCount = 3 -17326768 ripCount = 3 -17326768 locktype1 = 0 -17326769 locktype2 = 2 -17326790 locktype3 = 1 -17326790 goalCount = 1 -17326791 goalTotal = 1 -17326791 otherCount = 4 -~~~ -17326792 CURRENTGOAL IS [8] -~~~ -17329863 UP 8 -17329863 128 255 -~~~ -~~~ -17329893 outer reward -~~~ -17329893 128 8388863 -~~~ -~~~ -17330172 DOWN 8 -17330172 0 8388863 -~~~ -~~~ -17330190 0 8388862 -~~~ -~~~ -17330192 0 8388860 -~~~ -~~~ -17330194 0 8388856 -~~~ -17330195 128 8388856 -~~~ -~~~ -17330197 128 8388848 -~~~ -~~~ -17330198 128 8388832 -~~~ -~~~ -17330200 128 8388800 -~~~ -17330201 128 8388736 -~~~ -~~~ -17330203 128 8388608 -~~~ -~~~ -17330225 homeCount = 8 -17330226 waitCount = 3 -17330226 ripCount = 3 -17330227 locktype1 = 0 -17330227 locktype2 = 2 -17330228 locktype3 = 1 -17330228 goalCount = 2 -17330229 goalTotal = 2 -17330229 otherCount = 4 -~~~ -17330230 128 8389120 -17330343 128 512 -17330465 DOWN 8 -17330465 0 512 -17330476 128 512 -17330578 DOWN 8 -17330578 0 512 -17330607 128 512 -17330830 DOWN 8 -17330830 0 512 -17330847 128 512 -17330966 DOWN 8 -17330966 0 512 -17330984 128 512 -17331109 DOWN 8 -17331109 0 512 -17331117 128 512 -17333342 DOWN 8 -17333342 0 512 -17333351 128 512 -17333497 DOWN 8 -17333497 0 512 -17333526 128 512 -17336388 DOWN 8 -17336388 0 512 -17336425 128 512 -17336477 DOWN 8 -17336477 0 512 -17340374 UP 10 -17340375 waslock = 0 -17340374 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17340400 512 16777728 -~~~ -17340550 512 512 -17340693 DOWN 10 -17340693 0 512 -~~~ -~~~ -17340713 0 1536 -~~~ -~~~ -17340715 0 1024 -17340716 homeCount = 9 -17340716 waitCount = 3 -17340717 ripCount = 3 -17340717 locktype1 = 0 -17340718 locktype2 = 2 -17340718 locktype3 = 1 -17340719 goalCount = 2 -17340719 goalTotal = 2 -17340720 otherCount = 4 -~~~ -17340741 UP 10 -17340741 waslock = 0 -17340741 512 1024 -~~~ -17340763 DOWN 10 -17340763 0 1024 -~~~ -~~~ -~~~ -~~~ -17340794 homeCount = 9 -17340795 waitCount = 3 -17340795 ripCount = 3 -17340796 locktype1 = 0 -17340796 locktype2 = 2 -17340797 locktype3 = 1 -17340797 goalCount = 2 -17340798 goalTotal = 2 -17340798 otherCount = 4 -~~~ -17340826 UP 10 -17340826 waslock = 0 -17340826 512 1024 -~~~ -17341139 DOWN 10 -17341139 0 1024 -~~~ -17341164 UP 10 -17341164 waslock = 0 -17341164 512 1024 -~~~ -~~~ -~~~ -17341168 homeCount = 9 -17341168 waitCount = 3 -17341168 ripCount = 3 -17341169 locktype1 = 0 -17341169 locktype2 = 2 -17341170 locktype3 = 1 -17341170 goalCount = 2 -17341171 goalTotal = 2 -17341171 otherCount = 4 -~~~ -~~~ -17341287 DOWN 10 -17341287 0 1024 -~~~ -~~~ -~~~ -~~~ -17341311 homeCount = 9 -17341312 waitCount = 3 -17341312 ripCount = 3 -17341312 locktype1 = 0 -17341313 locktype2 = 2 -17341313 locktype3 = 1 -17341314 goalCount = 2 -17341314 goalTotal = 2 -17341315 otherCount = 4 -~~~ -17341319 UP 10 -17341319 waslock = 0 -17341319 512 1024 -~~~ -17345688 DOWN 10 -17345688 0 1024 -~~~ -~~~ -~~~ -~~~ -17345716 homeCount = 9 -17345716 waitCount = 3 -17345717 ripCount = 3 -17345717 locktype1 = 0 -17345718 locktype2 = 2 -17345718 locktype3 = 1 -17345719 goalCount = 2 -17345719 goalTotal = 2 -17345720 otherCount = 4 -~~~ -17345720 UP 10 -17345721 waslock = 0 -17345720 512 1024 -~~~ -17346020 DOWN 10 -17346020 0 1024 -~~~ -~~~ -~~~ -~~~ -17346050 homeCount = 9 -17346051 waitCount = 3 -17346051 ripCount = 3 -17346052 locktype1 = 0 -17346052 locktype2 = 2 -17346053 locktype3 = 1 -17346053 goalCount = 2 -17346054 goalTotal = 2 -17346054 otherCount = 4 -~~~ -17346061 UP 10 -17346061 waslock = 0 -17346061 512 1024 -~~~ -17346109 DOWN 10 -17346109 0 1024 -~~~ -~~~ -~~~ -~~~ -17346131 homeCount = 9 -17346132 waitCount = 3 -17346132 ripCount = 3 -17346133 locktype1 = 0 -17346133 locktype2 = 2 -17346134 locktype3 = 1 -17346134 goalCount = 2 -17346135 goalTotal = 2 -17346135 otherCount = 4 -~~~ -17348173 UP 11 -17348173 1024 1024 -17348892 DOWN 11 -17348892 0 1024 -17348931 UP 11 -17348931 1024 1024 -17349733 DOWN 11 -17349733 0 1024 -17349791 UP 11 -17349791 1024 1024 -17352368 DOWN 11 -17352368 0 1024 -17352424 UP 11 -17352424 1024 1024 -17353673 BEEP1 -17353673 BEEP2 -~~~ -~~~ -~~~ -17353696 1024 33555456 -~~~ -17353846 1024 1024 -17358269 DOWN 11 -17358269 0 1024 -~~~ -~~~ -17358285 0 0 -~~~ -~~~ -17358286 0 1 -~~~ -~~~ -17358288 0 3 -~~~ -~~~ -17358290 0 7 -~~~ -~~~ -17358292 0 15 -~~~ -~~~ -17358294 0 31 -~~~ -~~~ -17358295 0 63 -~~~ -~~~ -17358297 0 127 -~~~ -~~~ -17358299 0 255 -17358300 homeCount = 9 -17358301 waitCount = 3 -17358301 ripCount = 4 -17358302 locktype1 = 0 -17358302 locktype2 = 2 -17358323 locktype3 = 1 -17358323 goalCount = 2 -17358324 goalTotal = 2 -17358324 otherCount = 4 -~~~ -17358325 CURRENTGOAL IS [8] -~~~ -17365570 UP 5 -17365570 16 255 -~~~ -~~~ -17365592 DOWN 5 -17365592 0 255 -~~~ -~~~ -17365610 0 254 -~~~ -~~~ -17365612 0 252 -~~~ -~~~ -17365613 0 248 -~~~ -~~~ -17365615 0 240 -~~~ -~~~ -17365617 0 224 -~~~ -~~~ -17365619 0 192 -~~~ -~~~ -17365621 0 128 -~~~ -~~~ -17365623 0 0 -~~~ -~~~ -17365624 0 512 -17365625 homeCount = 9 -17365626 waitCount = 3 -17365626 ripCount = 4 -17365627 locktype1 = 0 -17365627 locktype2 = 2 -17365648 locktype3 = 1 -17365649 goalCount = 2 -17365649 goalTotal = 2 -17365650 otherCount = 5 -~~~ -17365781 16 512 -17365998 DOWN 5 -17365998 0 512 -17366057 16 512 -17366358 DOWN 5 -17366358 0 512 -17370017 UP 10 -17370017 waslock = 0 -17370016 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17370044 512 16777728 -~~~ -17370086 DOWN 10 -17370086 0 16777728 -17370102 UP 10 -17370102 waslock = 0 -17370102 512 16777728 -~~~ -~~~ -17370109 512 16779776 -~~~ -~~~ -17370110 512 16779264 -17370111 homeCount = 10 -17370112 waitCount = 3 -17370112 ripCount = 4 -17370113 locktype1 = 0 -17370113 locktype2 = 2 -17370114 locktype3 = 1 -17370114 goalCount = 2 -17370115 goalTotal = 2 -17370115 otherCount = 5 -~~~ -~~~ -17370194 512 2048 -17370314 DOWN 10 -17370314 0 2048 -~~~ -~~~ -~~~ -~~~ -17370342 homeCount = 10 -17370342 waitCount = 3 -17370343 ripCount = 4 -17370343 locktype1 = 0 -17370344 locktype2 = 2 -17370344 locktype3 = 1 -17370345 goalCount = 2 -17370345 goalTotal = 2 -17370346 otherCount = 5 -~~~ -17370349 UP 10 -17370350 waslock = 0 -17370349 512 2048 -~~~ -17375317 DOWN 10 -17375317 0 2048 -~~~ -~~~ -~~~ -~~~ -17375343 homeCount = 10 -17375343 waitCount = 3 -17375344 ripCount = 4 -17375344 locktype1 = 0 -17375345 locktype2 = 2 -17375345 locktype3 = 1 -17375346 goalCount = 2 -17375346 goalTotal = 2 -17375347 otherCount = 5 -~~~ -17376808 UP 12 -17376808 2048 2048 -17377545 DOWN 12 -17377545 0 2048 -17377568 UP 12 -17377568 2048 2048 -17377991 DOWN 12 -17377991 0 2048 -17378027 UP 12 -17378027 2048 2048 -17378035 DOWN 12 -17378035 0 2048 -17378077 UP 12 -17378077 2048 2048 -17379308 CLICK1 -17379308 CLICK2 -~~~ -~~~ -~~~ -17379331 2048 67110912 -~~~ -17379481 2048 2048 -17385850 DOWN 12 -17385850 0 2048 -~~~ -~~~ -17385870 0 0 -~~~ -~~~ -17385872 0 1 -~~~ -~~~ -17385874 0 3 -~~~ -~~~ -17385876 0 7 -~~~ -~~~ -17385878 0 15 -~~~ -~~~ -17385879 0 31 -~~~ -~~~ -17385881 0 63 -~~~ -~~~ -17385883 0 127 -~~~ -~~~ -17385885 0 255 -17385886 homeCount = 10 -17385886 waitCount = 4 -17385887 ripCount = 4 -17385887 locktype1 = 0 -17385888 locktype2 = 2 -17385909 locktype3 = 1 -17385910 goalCount = 2 -17385910 goalTotal = 2 -17385911 otherCount = 5 -~~~ -17385912 CURRENTGOAL IS [8] -~~~ -17388562 UP 4 -17388562 8 255 -~~~ -~~~ -17388885 DOWN 4 -17388885 0 255 -~~~ -~~~ -17388905 0 254 -~~~ -~~~ -17388907 0 252 -~~~ -~~~ -17388909 0 248 -~~~ -~~~ -17388911 0 240 -~~~ -~~~ -17388913 0 224 -~~~ -~~~ -17388915 0 192 -~~~ -~~~ -17388916 0 128 -~~~ -~~~ -17388918 0 0 -~~~ -~~~ -17388920 0 512 -17388921 homeCount = 10 -17388922 waitCount = 4 -17388922 ripCount = 4 -17388923 locktype1 = 0 -17388923 locktype2 = 2 -17388944 locktype3 = 1 -17388945 goalCount = 2 -17388945 goalTotal = 2 -17388946 otherCount = 6 -~~~ -17388946 8 512 -17390803 DOWN 4 -17390803 0 512 -17390805 8 512 -17390813 DOWN 4 -17390813 0 512 -17390818 8 512 -17392370 DOWN 4 -17392370 0 512 -17392384 8 512 -17392555 DOWN 4 -17392555 0 512 -17392566 8 512 -17392739 DOWN 4 -17392739 0 512 -17392749 8 512 -17393053 DOWN 4 -17393053 0 512 -17397905 UP 10 -17397905 waslock = 0 -17397905 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17397935 512 16777728 -~~~ -17397959 DOWN 10 -17397959 0 16777728 -~~~ -~~~ -17397988 0 16778752 -~~~ -~~~ -17397989 0 16778240 -17397990 homeCount = 11 -17397991 waitCount = 4 -17397991 ripCount = 4 -17397992 locktype1 = 0 -17397992 locktype2 = 2 -17397993 locktype3 = 1 -17397993 goalCount = 2 -17397994 goalTotal = 2 -17397994 otherCount = 6 -~~~ -17398015 UP 10 -17398015 waslock = 0 -17398015 512 16778240 -~~~ -17398085 512 1024 -17398135 DOWN 10 -17398135 0 1024 -~~~ -~~~ -~~~ -~~~ -17398161 homeCount = 11 -17398161 waitCount = 4 -17398162 ripCount = 4 -17398162 locktype1 = 0 -17398163 locktype2 = 2 -17398163 locktype3 = 1 -17398164 goalCount = 2 -17398164 goalTotal = 2 -17398165 otherCount = 6 -~~~ -17398199 UP 10 -17398200 waslock = 0 -17398199 512 1024 -~~~ -17401566 DOWN 10 -17401566 0 1024 -~~~ -~~~ -~~~ -~~~ -17401591 homeCount = 11 -17401591 waitCount = 4 -17401592 ripCount = 4 -17401592 locktype1 = 0 -17401593 locktype2 = 2 -17401593 locktype3 = 1 -17401594 goalCount = 2 -17401594 goalTotal = 2 -17401595 otherCount = 6 -~~~ -17401630 UP 10 -17401630 waslock = 0 -17401630 512 1024 -17401646 DOWN 10 -17401646 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -17401673 homeCount = 11 -17401673 waitCount = 4 -17401674 ripCount = 4 -17401674 locktype1 = 0 -17401674 locktype2 = 2 -17401675 locktype3 = 1 -17401675 goalCount = 2 -17401676 goalTotal = 2 -17401676 otherCount = 6 -~~~ -17403114 UP 11 -17403114 1024 1024 -17403966 DOWN 11 -17403966 0 1024 -17404015 UP 11 -17404015 1024 1024 -17404028 DOWN 11 -17404028 0 1024 -17404049 UP 11 -17404049 1024 1024 -17405538 DOWN 11 -17405538 0 1024 -17405561 UP 11 -17405561 1024 1024 -17407114 BEEP1 -17407114 BEEP2 -~~~ -~~~ -~~~ -17407139 1024 33555456 -~~~ -17407289 1024 1024 -17411324 DOWN 11 -17411324 0 1024 -17411329 UP 11 -17411329 1024 1024 -~~~ -~~~ -17411346 1024 0 -~~~ -~~~ -17411348 1024 1 -~~~ -~~~ -17411350 1024 3 -~~~ -~~~ -17411352 1024 7 -~~~ -~~~ -17411353 1024 15 -~~~ -~~~ -17411355 1024 31 -~~~ -~~~ -17411357 1024 63 -~~~ -~~~ -17411359 1024 127 -~~~ -~~~ -17411361 1024 255 -17411362 homeCount = 11 -17411362 waitCount = 4 -17411363 ripCount = 5 -17411384 locktype1 = 0 -17411384 locktype2 = 2 -17411385 locktype3 = 1 -17411385 goalCount = 2 -17411386 goalTotal = 2 -17411386 otherCount = 6 -~~~ -17411387 CURRENTGOAL IS [8] -~~~ -17411388 DOWN 11 -17411388 0 255 -17411400 UP 11 -17411400 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411443 homeCount = 11 -17411444 waitCount = 4 -17411444 ripCount = 5 -17411445 locktype1 = 0 -17411445 locktype2 = 2 -17411446 locktype3 = 1 -17411446 goalCount = 2 -17411447 goalTotal = 2 -17411447 otherCount = 6 -~~~ -17411448 CURRENTGOAL IS [8] -~~~ -17411594 DOWN 11 -17411594 0 255 -17411605 UP 11 -17411605 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411634 homeCount = 11 -17411635 waitCount = 4 -17411636 ripCount = 5 -17411636 locktype1 = 0 -17411637 locktype2 = 2 -17411637 locktype3 = 1 -17411638 goalCount = 2 -17411638 goalTotal = 2 -17411638 otherCount = 6 -~~~ -17411640 CURRENTGOAL IS [8] -~~~ -17411643 DOWN 11 -17411643 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411684 UP 11 -17411684 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411695 homeCount = 11 -17411696 waitCount = 4 -17411696 ripCount = 5 -17411697 locktype1 = 0 -17411697 locktype2 = 2 -17411698 locktype3 = 1 -17411698 goalCount = 2 -17411699 goalTotal = 2 -17411699 otherCount = 6 -~~~ -17411700 CURRENTGOAL IS [8] -~~~ -17411725 DOWN 11 -17411725 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411763 homeCount = 11 -17411764 waitCount = 4 -17411765 ripCount = 5 -17411765 locktype1 = 0 -17411766 locktype2 = 2 -17411766 locktype3 = 1 -17411766 goalCount = 2 -17411767 goalTotal = 2 -17411767 otherCount = 6 -~~~ -17411769 CURRENTGOAL IS [8] -~~~ -17414174 UP 8 -17414174 128 255 -~~~ -~~~ -17414201 outer reward -~~~ -17414202 128 8388863 -~~~ -~~~ -17414479 DOWN 8 -17414479 0 8388863 -17414498 128 8388863 -~~~ -~~~ -17414500 128 8388862 -~~~ -~~~ -17414502 128 8388860 -~~~ -~~~ -17414503 128 8388856 -~~~ -~~~ -17414505 128 8388848 -~~~ -~~~ -17414507 128 8388832 -~~~ -~~~ -17414509 128 8388800 -~~~ -~~~ -17414511 128 8388736 -~~~ -~~~ -17414513 128 8388608 -~~~ -~~~ -17414514 128 8389120 -17414536 homeCount = 11 -17414537 waitCount = 4 -17414537 ripCount = 5 -17414537 locktype1 = 0 -17414538 locktype2 = 2 -17414538 locktype3 = 1 -17414539 goalCount = 3 -17414539 goalTotal = 3 -17414540 otherCount = 6 -~~~ -17414651 128 512 -17414876 DOWN 8 -17414876 0 512 -17414889 128 512 -17421666 DOWN 8 -17421666 0 512 -17426251 UP 10 -17426251 waslock = 0 -17426251 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17426278 512 16777728 -~~~ -17426428 512 512 -17426438 DOWN 10 -17426438 0 512 -~~~ -~~~ -17426454 0 1536 -~~~ -~~~ -17426456 0 1024 -17426457 homeCount = 12 -17426458 waitCount = 4 -17426458 ripCount = 5 -17426459 locktype1 = 0 -17426459 locktype2 = 2 -17426460 locktype3 = 1 -17426460 goalCount = 3 -17426461 goalTotal = 3 -17426461 otherCount = 6 -~~~ -17426536 UP 10 -17426537 waslock = 0 -17426536 512 1024 -~~~ -17430663 DOWN 10 -17430663 0 1024 -~~~ -~~~ -~~~ -~~~ -17430685 homeCount = 12 -17430685 waitCount = 4 -17430686 ripCount = 5 -17430686 locktype1 = 0 -17430687 locktype2 = 2 -17430687 locktype3 = 1 -17430688 goalCount = 3 -17430688 goalTotal = 3 -17430689 otherCount = 6 -~~~ -17432753 UP 11 -17432753 1024 1024 -17433614 DOWN 11 -17433614 0 1024 -17433672 UP 11 -17433672 1024 1024 -17434770 DOWN 11 -17434770 0 1024 -17434790 UP 11 -17434790 1024 1024 -17437253 DOWN 11 -17437253 0 1024 -17437320 UP 11 -17437320 1024 1024 -17437753 BEEP1 -17437753 BEEP2 -~~~ -~~~ -~~~ -17437773 1024 33555456 -~~~ -17437923 1024 1024 -17443197 DOWN 11 -17443197 0 1024 -~~~ -~~~ -17443221 0 0 -~~~ -~~~ -17443222 0 1 -~~~ -~~~ -17443224 0 3 -~~~ -~~~ -17443226 0 7 -~~~ -~~~ -17443228 0 15 -~~~ -~~~ -17443230 0 31 -~~~ -~~~ -17443232 0 63 -~~~ -~~~ -17443233 0 127 -~~~ -17443235 UP 11 -17443235 1024 127 -~~~ -17443236 homeCount = 12 -17443237 waitCount = 4 -17443237 ripCount = 6 -17443238 locktype1 = 0 -17443259 locktype2 = 2 -17443259 locktype3 = 1 -17443260 goalCount = 3 -17443260 goalTotal = 3 -17443261 otherCount = 6 -~~~ -17443262 CURRENTGOAL IS [8] -~~~ -17443262 1024 255 -17443287 DOWN 11 -17443287 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17443317 homeCount = 12 -17443318 waitCount = 4 -17443318 ripCount = 6 -17443319 locktype1 = 0 -17443319 locktype2 = 2 -17443320 locktype3 = 1 -17443320 goalCount = 3 -17443320 goalTotal = 3 -17443321 otherCount = 6 -~~~ -17443322 CURRENTGOAL IS [8] -~~~ -17443352 UP 11 -17443352 1024 255 -17443995 DOWN 11 -17443995 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444028 homeCount = 12 -17444028 waitCount = 4 -17444029 ripCount = 6 -17444029 locktype1 = 0 -17444030 locktype2 = 2 -17444030 locktype3 = 1 -17444031 goalCount = 3 -17444031 goalTotal = 3 -17444032 otherCount = 6 -~~~ -17444033 CURRENTGOAL IS [8] -~~~ -17444354 UP 11 -17444354 1024 255 -17444599 DOWN 11 -17444599 0 255 -17444616 UP 11 -17444616 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444637 homeCount = 12 -17444637 waitCount = 4 -17444638 ripCount = 6 -17444638 locktype1 = 0 -17444639 locktype2 = 2 -17444639 locktype3 = 1 -17444640 goalCount = 3 -17444640 goalTotal = 3 -17444641 otherCount = 6 -~~~ -17444642 CURRENTGOAL IS [8] -~~~ -17444645 DOWN 11 -17444645 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444702 homeCount = 12 -17444702 waitCount = 4 -17444703 ripCount = 6 -17444703 locktype1 = 0 -17444704 locktype2 = 2 -17444704 locktype3 = 1 -17444705 goalCount = 3 -17444705 goalTotal = 3 -17444706 otherCount = 6 -~~~ -17444707 CURRENTGOAL IS [8] -~~~ -17448341 UP 8 -17448341 128 255 -~~~ -~~~ -17448364 outer reward -~~~ -17448364 128 8388863 -~~~ -~~~ -17448537 DOWN 8 -17448537 0 8388863 -~~~ -~~~ -17448561 0 8388862 -~~~ -~~~ -17448563 0 8388860 -~~~ -~~~ -17448564 0 8388856 -~~~ -~~~ -17448566 0 8388848 -~~~ -~~~ -17448568 0 8388832 -~~~ -~~~ -17448570 0 8388800 -~~~ -~~~ -17448572 0 8388736 -~~~ -~~~ -17448573 0 8388608 -~~~ -~~~ -17448575 0 8389120 -17448576 homeCount = 12 -17448577 waitCount = 4 -17448598 ripCount = 6 -17448598 locktype1 = 0 -17448599 locktype2 = 2 -17448599 locktype3 = 1 -17448600 goalCount = 4 -17448600 goalTotal = 4 -17448601 otherCount = 6 -~~~ -17448601 128 8389120 -17448814 128 512 -17448949 DOWN 8 -17448949 0 512 -17448983 128 512 -17449076 DOWN 8 -17449076 0 512 -17449099 128 512 -17449201 DOWN 8 -17449201 0 512 -17449231 128 512 -17449326 DOWN 8 -17449326 0 512 -17449363 128 512 -17449462 DOWN 8 -17449462 0 512 -17449484 128 512 -17454977 DOWN 8 -17454977 0 512 -17461792 UP 10 -17461793 waslock = 0 -17461792 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17461817 512 16777728 -~~~ -17461948 DOWN 10 -17461948 0 16777728 -17461967 0 512 -~~~ -~~~ -17461972 0 2560 -~~~ -~~~ -17461974 0 2048 -17461975 homeCount = 13 -17461975 waitCount = 4 -17461976 ripCount = 6 -17461976 locktype1 = 0 -17461977 locktype2 = 2 -17461977 locktype3 = 1 -17461978 goalCount = 4 -17461978 goalTotal = 4 -17461979 otherCount = 6 -~~~ -17462000 UP 10 -17462000 waslock = 0 -17462000 512 2048 -~~~ -17465243 DOWN 10 -17465243 0 2048 -~~~ -~~~ -~~~ -~~~ -17465265 homeCount = 13 -17465266 waitCount = 4 -17465266 ripCount = 6 -17465267 locktype1 = 0 -17465267 locktype2 = 2 -17465268 locktype3 = 1 -17465268 goalCount = 4 -17465269 goalTotal = 4 -17465269 otherCount = 6 -~~~ -17465307 UP 10 -17465308 waslock = 0 -17465307 512 2048 -17465331 DOWN 10 -17465331 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17465361 homeCount = 13 -17465362 waitCount = 4 -17465362 ripCount = 6 -17465362 locktype1 = 0 -17465363 locktype2 = 2 -17465363 locktype3 = 1 -17465364 goalCount = 4 -17465364 goalTotal = 4 -17465365 otherCount = 6 -~~~ -17466887 UP 12 -17466887 2048 2048 -17466953 DOWN 12 -17466953 0 2048 -17466965 UP 12 -17466965 2048 2048 -17467866 DOWN 12 -17467866 0 2048 -17467881 UP 12 -17467881 2048 2048 -17468821 DOWN 12 -17468821 0 2048 -17468850 UP 12 -17468850 2048 2048 -17470138 CLICK1 -17470138 CLICK2 -~~~ -~~~ -~~~ -17470157 2048 67110912 -~~~ -17470307 2048 2048 -17478019 DOWN 12 -17478019 0 2048 -~~~ -~~~ -17478045 0 0 -~~~ -~~~ -17478047 0 1 -~~~ -~~~ -17478049 0 3 -~~~ -~~~ -17478051 0 7 -~~~ -~~~ -17478052 0 15 -~~~ -~~~ -17478054 0 31 -~~~ -~~~ -17478056 0 63 -~~~ -~~~ -17478058 0 127 -~~~ -~~~ -17478060 0 255 -17478061 homeCount = 13 -17478061 waitCount = 5 -17478062 ripCount = 6 -17478062 locktype1 = 0 -17478063 locktype2 = 2 -17478084 locktype3 = 1 -17478084 goalCount = 4 -17478085 goalTotal = 4 -17478085 otherCount = 6 -~~~ -17478086 CURRENTGOAL IS [8] -~~~ -17483323 UP 8 -17483323 128 255 -~~~ -~~~ -17483350 outer reward -~~~ -17483351 128 8388863 -~~~ -~~~ -17483557 DOWN 8 -17483557 0 8388863 -~~~ -~~~ -17483578 0 8388862 -~~~ -~~~ -17483580 0 8388860 -~~~ -~~~ -17483582 0 8388856 -~~~ -~~~ -17483584 0 8388848 -~~~ -~~~ -17483585 0 8388832 -~~~ -~~~ -17483587 0 8388800 -~~~ -~~~ -17483589 0 8388736 -~~~ -~~~ -17483591 0 8388608 -~~~ -~~~ -17483593 0 8389120 -17483594 homeCount = 13 -17483594 waitCount = 5 -17483616 ripCount = 6 -17483616 locktype1 = 0 -17483616 locktype2 = 2 -17483617 locktype3 = 1 -17483617 goalCount = 5 -17483618 goalTotal = 5 -17483618 otherCount = 6 -~~~ -17483619 128 8389120 -17483800 128 512 -17483845 DOWN 8 -17483845 0 512 -17483863 128 512 -17483965 DOWN 8 -17483965 0 512 -17483990 128 512 -17484079 DOWN 8 -17484079 0 512 -17484114 128 512 -17484192 DOWN 8 -17484192 0 512 -17484238 128 512 -17484318 DOWN 8 -17484318 0 512 -17484367 128 512 -17484450 DOWN 8 -17484450 0 512 -17484491 128 512 -17486711 DOWN 8 -17486711 0 512 -17486727 128 512 -17489526 DOWN 8 -17489526 0 512 -17489546 128 512 -17489608 DOWN 8 -17489608 0 512 -17493929 UP 10 -17493929 waslock = 0 -17493929 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17493954 512 16777728 -~~~ -17494104 512 512 -17494144 DOWN 10 -17494144 0 512 -17494153 UP 10 -17494153 waslock = 0 -17494153 512 512 -~~~ -~~~ -17494169 512 1536 -~~~ -~~~ -17494171 512 1024 -17494172 homeCount = 14 -17494172 waitCount = 5 -17494173 ripCount = 6 -17494173 locktype1 = 0 -17494174 locktype2 = 2 -17494174 locktype3 = 1 -17494175 goalCount = 5 -17494175 goalTotal = 5 -17494176 otherCount = 6 -~~~ -~~~ -17497685 DOWN 10 -17497685 0 1024 -~~~ -~~~ -~~~ -~~~ -17497711 homeCount = 14 -17497712 waitCount = 5 -17497712 ripCount = 6 -17497713 locktype1 = 0 -17497713 locktype2 = 2 -17497714 locktype3 = 1 -17497714 goalCount = 5 -17497715 goalTotal = 5 -17497715 otherCount = 6 -~~~ -17497748 UP 10 -17497748 waslock = 0 -17497748 512 1024 -17497761 DOWN 10 -17497761 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -17497787 homeCount = 14 -17497788 waitCount = 5 -17497788 ripCount = 6 -17497789 locktype1 = 0 -17497789 locktype2 = 2 -17497790 locktype3 = 1 -17497790 goalCount = 5 -17497790 goalTotal = 5 -17497791 otherCount = 6 -~~~ -17499720 UP 11 -17499720 1024 1024 -17501721 BEEP1 -17501721 BEEP2 -~~~ -~~~ -~~~ -17501741 1024 33555456 -~~~ -17501890 1024 1024 -17506486 DOWN 11 -17506486 0 1024 -17506499 UP 11 -17506499 1024 1024 -~~~ -~~~ -17506521 1024 0 -~~~ -~~~ -17506523 1024 1 -~~~ -~~~ -17506525 1024 3 -~~~ -~~~ -17506527 1024 7 -~~~ -~~~ -17506529 1024 15 -~~~ -~~~ -17506530 1024 31 -~~~ -~~~ -17506532 1024 63 -~~~ -~~~ -17506534 1024 127 -~~~ -~~~ -17506536 1024 255 -17506537 homeCount = 14 -17506537 waitCount = 5 -17506538 ripCount = 7 -17506559 locktype1 = 0 -17506560 locktype2 = 2 -17506560 locktype3 = 1 -17506561 goalCount = 5 -17506561 goalTotal = 5 -17506561 otherCount = 6 -~~~ -17506563 CURRENTGOAL IS [8] -~~~ -17506564 DOWN 11 -17506564 0 255 -17506596 UP 11 -17506596 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17506617 homeCount = 14 -17506617 waitCount = 5 -17506618 ripCount = 7 -17506618 locktype1 = 0 -17506619 locktype2 = 2 -17506619 locktype3 = 1 -17506620 goalCount = 5 -17506620 goalTotal = 5 -17506621 otherCount = 6 -~~~ -17506622 CURRENTGOAL IS [8] -~~~ -17509072 DOWN 11 -17509072 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17509109 homeCount = 14 -17509110 waitCount = 5 -17509110 ripCount = 7 -17509111 locktype1 = 0 -17509111 locktype2 = 2 -17509112 locktype3 = 1 -17509112 goalCount = 5 -17509113 goalTotal = 5 -17509113 otherCount = 6 -~~~ -17509114 CURRENTGOAL IS [8] -~~~ -17512927 UP 8 -17512927 128 255 -~~~ -~~~ -17512955 outer reward -~~~ -17512955 128 8388863 -~~~ -~~~ -17513181 DOWN 8 -17513181 0 8388863 -~~~ -~~~ -17513203 0 8388862 -~~~ -~~~ -17513205 0 8388860 -~~~ -~~~ -17513207 0 8388856 -~~~ -~~~ -17513209 0 8388848 -~~~ -~~~ -17513211 0 8388832 -~~~ -~~~ -17513213 0 8388800 -~~~ -~~~ -17513214 0 8388736 -~~~ -~~~ -17513216 0 8388608 -~~~ -~~~ -17513218 0 8389120 -17513219 homeCount = 14 -17513220 waitCount = 5 -17513240 ripCount = 7 -17513241 locktype1 = 0 -17513241 locktype2 = 2 -17513242 locktype3 = 1 -17513242 goalCount = 6 -17513243 goalTotal = 6 -17513243 otherCount = 6 -~~~ -17513244 128 8389120 -17513405 128 512 -17513479 DOWN 8 -17513479 0 512 -17513494 128 512 -17513590 DOWN 8 -17513590 0 512 -17513629 128 512 -17513711 DOWN 8 -17513711 0 512 -17513756 128 512 -17513838 DOWN 8 -17513838 0 512 -17513885 128 512 -17513986 DOWN 8 -17513986 0 512 -17514007 128 512 -17514134 DOWN 8 -17514134 0 512 -17514141 128 512 -17514281 DOWN 8 -17514281 0 512 -17514290 128 512 -17514893 DOWN 8 -17514893 0 512 -17514904 128 512 -17518932 DOWN 8 -17518932 0 512 -17518938 128 512 -17519269 DOWN 8 -17519269 0 512 -17519335 128 512 -17519347 DOWN 8 -17519347 0 512 -17524157 UP 10 -17524157 waslock = 0 -17524157 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17524183 512 16777728 -~~~ -17524333 512 512 -17529362 DOWN 10 -17529362 0 512 -~~~ -~~~ -17529386 0 2560 -~~~ -~~~ -17529388 0 2048 -17529389 homeCount = 15 -17529390 waitCount = 5 -17529390 ripCount = 7 -17529391 locktype1 = 0 -17529391 locktype2 = 2 -17529392 locktype3 = 1 -17529392 goalCount = 6 -17529393 goalTotal = 6 -17529393 otherCount = 6 -~~~ -17530797 UP 12 -17530797 2048 2048 -17532183 DOWN 12 -17532183 0 2048 -17532260 UP 12 -17532260 2048 2048 -17533139 DOWN 12 -17533139 0 2048 -17533154 UP 12 -17533154 2048 2048 -17533246 DOWN 12 -17533246 0 2048 -17533274 UP 12 -17533274 2048 2048 -17534047 CLICK1 -17534047 CLICK2 -~~~ -~~~ -~~~ -17534071 2048 67110912 -~~~ -17534221 2048 2048 -17540436 DOWN 12 -17540436 0 2048 -~~~ -~~~ -17540456 0 0 -~~~ -~~~ -17540458 0 1 -~~~ -~~~ -17540460 UP 12 -17540460 2048 3 -~~~ -~~~ -17540462 2048 7 -~~~ -~~~ -17540463 2048 15 -~~~ -~~~ -17540465 2048 31 -~~~ -~~~ -17540467 2048 63 -~~~ -~~~ -17540469 2048 127 -~~~ -~~~ -17540471 2048 255 -17540472 homeCount = 15 -17540472 waitCount = 6 -17540494 ripCount = 7 -17540494 locktype1 = 0 -17540494 locktype2 = 2 -17540495 locktype3 = 1 -17540495 goalCount = 6 -17540496 goalTotal = 6 -17540496 otherCount = 6 -~~~ -17540497 CURRENTGOAL IS [8] -~~~ -17541587 DOWN 12 -17541587 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17541625 homeCount = 15 -17541625 waitCount = 6 -17541626 ripCount = 7 -17541626 locktype1 = 0 -17541627 locktype2 = 2 -17541627 locktype3 = 1 -17541628 goalCount = 6 -17541628 goalTotal = 6 -17541629 otherCount = 6 -~~~ -17541630 CURRENTGOAL IS [8] -~~~ -17541658 UP 12 -17541658 2048 255 -17541921 DOWN 12 -17541921 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17541955 homeCount = 15 -17541956 waitCount = 6 -17541956 ripCount = 7 -17541957 locktype1 = 0 -17541957 locktype2 = 2 -17541958 locktype3 = 1 -17541958 goalCount = 6 -17541959 goalTotal = 6 -17541959 otherCount = 6 -~~~ -17541960 CURRENTGOAL IS [8] -~~~ -17545684 UP 8 -17545684 128 255 -~~~ -~~~ -17545712 outer reward -~~~ -17545712 128 8388863 -~~~ -~~~ -17545903 DOWN 8 -17545903 0 8388863 -~~~ -~~~ -17545920 0 8388862 -~~~ -~~~ -17545921 0 8388860 -~~~ -~~~ -17545923 0 8388856 -~~~ -~~~ -17545925 0 8388848 -~~~ -~~~ -17545927 0 8388832 -~~~ -~~~ -17545929 0 8388800 -~~~ -~~~ -17545930 0 8388736 -~~~ -~~~ -17545932 0 8388608 -~~~ -~~~ -17545934 0 8389120 -17545935 homeCount = 15 -17545936 waitCount = 6 -17545957 ripCount = 7 -17545957 locktype1 = 0 -17545958 locktype2 = 2 -17545958 locktype3 = 1 -17545959 goalCount = 7 -17545959 goalTotal = 7 -17545960 otherCount = 6 -~~~ -17545973 128 8389120 -17546162 128 512 -17546357 DOWN 8 -17546357 0 512 -17546382 128 512 -17546476 DOWN 8 -17546476 0 512 -17546510 128 512 -17546604 DOWN 8 -17546604 0 512 -17546636 128 512 -17546732 DOWN 8 -17546732 0 512 -17546771 128 512 -17546862 DOWN 8 -17546862 0 512 -17546900 128 512 -17547009 DOWN 8 -17547009 0 512 -17547028 128 512 -17549002 DOWN 8 -17549002 0 512 -17549012 128 512 -17551604 DOWN 8 -17551604 0 512 -17551642 128 512 -17551692 DOWN 8 -17551692 0 512 -17555613 UP 10 -17555614 waslock = 0 -17555613 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17555639 512 16777728 -~~~ -17555789 512 512 -17555789 DOWN 10 -17555789 0 512 -~~~ -~~~ -17555815 0 2560 -~~~ -~~~ -17555817 0 2048 -17555818 homeCount = 16 -17555819 waitCount = 6 -17555819 ripCount = 7 -17555820 locktype1 = 0 -17555820 locktype2 = 2 -17555821 locktype3 = 1 -17555821 goalCount = 7 -17555822 goalTotal = 7 -17555822 otherCount = 6 -~~~ -17555873 UP 10 -17555874 waslock = 0 -17555873 512 2048 -~~~ -17560044 DOWN 10 -17560044 0 2048 -~~~ -~~~ -~~~ -~~~ -17560066 homeCount = 16 -17560066 waitCount = 6 -17560067 ripCount = 7 -17560067 locktype1 = 0 -17560068 locktype2 = 2 -17560068 locktype3 = 1 -17560069 goalCount = 7 -17560069 goalTotal = 7 -17560070 otherCount = 6 -~~~ -17561628 UP 12 -17561628 2048 2048 -17563348 DOWN 12 -17563348 0 2048 -17563378 UP 12 -17563378 2048 2048 -17563628 CLICK1 -17563628 CLICK2 -~~~ -~~~ -~~~ -17563654 2048 67110912 -~~~ -17563804 2048 2048 -17569146 DOWN 12 -17569146 0 2048 -~~~ -~~~ -17569173 0 0 -~~~ -~~~ -17569175 0 1 -~~~ -~~~ -17569177 0 3 -~~~ -~~~ -17569179 0 7 -~~~ -~~~ -17569180 0 15 -~~~ -~~~ -17569182 0 31 -~~~ -~~~ -17569184 0 63 -~~~ -~~~ -17569186 0 127 -~~~ -17569187 UP 12 -17569187 2048 127 -~~~ -17569189 homeCount = 16 -17569189 waitCount = 7 -17569190 ripCount = 7 -17569190 locktype1 = 0 -17569211 locktype2 = 2 -17569212 locktype3 = 1 -17569212 goalCount = 7 -17569212 goalTotal = 7 -17569213 otherCount = 6 -~~~ -17569214 CURRENTGOAL IS [8] -~~~ -17569214 DOWN 12 -17569214 0 255 -17569225 UP 12 -17569225 2048 255 -17569227 DOWN 12 -17569226 0 255 -17569253 UP 12 -17569253 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17569271 homeCount = 16 -17569271 waitCount = 7 -17569272 ripCount = 7 -17569272 locktype1 = 0 -17569273 locktype2 = 2 -17569273 locktype3 = 1 -17569274 goalCount = 7 -17569274 goalTotal = 7 -17569275 otherCount = 6 -~~~ -17569276 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17569304 homeCount = 16 -17569304 waitCount = 7 -17569305 ripCount = 7 -17569305 locktype1 = 0 -17569306 locktype2 = 2 -17569306 locktype3 = 1 -17569307 goalCount = 7 -17569328 goalTotal = 7 -17569328 otherCount = 6 -~~~ -17569329 CURRENTGOAL IS [8] -~~~ -17570621 DOWN 12 -17570621 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17570647 UP 12 -17570647 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17570656 homeCount = 16 -17570656 waitCount = 7 -17570657 ripCount = 7 -17570657 locktype1 = 0 -17570658 locktype2 = 2 -17570658 locktype3 = 1 -17570659 goalCount = 7 -17570659 goalTotal = 7 -17570660 otherCount = 6 -~~~ -17570661 CURRENTGOAL IS [8] -~~~ -17572075 DOWN 12 -17572075 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17572108 homeCount = 16 -17572109 waitCount = 7 -17572109 ripCount = 7 -17572110 locktype1 = 0 -17572110 locktype2 = 2 -17572111 locktype3 = 1 -17572111 goalCount = 7 -17572112 goalTotal = 7 -17572112 otherCount = 6 -~~~ -17572113 CURRENTGOAL IS [8] -~~~ -17576141 UP 8 -17576141 128 255 -~~~ -~~~ -17576167 outer reward -~~~ -17576167 128 8388863 -~~~ -~~~ -17576274 DOWN 8 -17576274 0 8388863 -~~~ -~~~ -17576295 0 8388862 -~~~ -~~~ -17576297 0 8388860 -~~~ -~~~ -17576299 0 8388856 -~~~ -~~~ -17576301 0 8388848 -~~~ -~~~ -17576303 0 8388832 -~~~ -~~~ -17576304 0 8388800 -~~~ -~~~ -17576306 0 8388736 -~~~ -~~~ -17576308 0 8388608 -~~~ -~~~ -17576310 0 8389120 -17576311 homeCount = 16 -17576311 waitCount = 7 -17576333 ripCount = 7 -17576333 locktype1 = 0 -17576334 locktype2 = 2 -17576334 locktype3 = 1 -17576335 goalCount = 8 -17576335 goalTotal = 8 -17576336 otherCount = 6 -~~~ -17576336 128 8389120 -17576457 DOWN 8 -17576457 0 8389120 -17576472 128 8389120 -17576617 128 512 -17576727 DOWN 8 -17576727 0 512 -17576733 128 512 -17576842 DOWN 8 -17576842 0 512 -17576862 128 512 -17576969 DOWN 8 -17576969 0 512 -17576981 128 512 -17577099 DOWN 8 -17577099 0 512 -17577112 128 512 -17577236 DOWN 8 -17577236 0 512 -17577241 128 512 -17582498 DOWN 8 -17582498 0 512 -17586638 UP 10 -17586638 waslock = 0 -17586638 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17586667 512 16777728 -~~~ -17586817 512 512 -17586841 DOWN 10 -17586841 0 512 -~~~ -~~~ -17586860 0 1536 -~~~ -~~~ -17586862 0 1024 -17586863 homeCount = 17 -17586863 waitCount = 7 -17586864 ripCount = 7 -17586864 locktype1 = 0 -17586865 locktype2 = 2 -17586865 locktype3 = 1 -17586866 goalCount = 8 -17586866 goalTotal = 8 -17586867 otherCount = 6 -~~~ -17586888 UP 10 -17586888 waslock = 0 -17586888 512 1024 -~~~ -17591203 DOWN 10 -17591203 0 1024 -~~~ -~~~ -~~~ -~~~ -17591232 homeCount = 17 -17591233 waitCount = 7 -17591233 ripCount = 7 -17591234 locktype1 = 0 -17591234 locktype2 = 2 -17591235 locktype3 = 1 -17591235 goalCount = 8 -17591236 goalTotal = 8 -17591236 otherCount = 6 -~~~ -17591254 UP 10 -17591255 waslock = 0 -17591254 512 1024 -~~~ -17591283 DOWN 10 -17591283 0 1024 -~~~ -~~~ -~~~ -~~~ -17591304 homeCount = 17 -17591305 waitCount = 7 -17591305 ripCount = 7 -17591306 locktype1 = 0 -17591306 locktype2 = 2 -17591307 locktype3 = 1 -17591307 goalCount = 8 -17591308 goalTotal = 8 -17591308 otherCount = 6 -~~~ -17593343 UP 11 -17593343 1024 1024 -17594782 DOWN 11 -17594782 0 1024 -17594806 UP 11 -17594806 1024 1024 -17596343 BEEP1 -17596343 BEEP2 -~~~ -~~~ -~~~ -17596371 1024 33555456 -~~~ -17596521 1024 1024 -17602296 DOWN 11 -17602296 0 1024 -~~~ -~~~ -17602317 0 0 -~~~ -~~~ -17602319 0 1 -~~~ -~~~ -17602321 0 3 -~~~ -~~~ -17602323 0 7 -~~~ -~~~ -17602324 0 15 -~~~ -~~~ -17602326 0 31 -~~~ -~~~ -17602328 0 63 -~~~ -~~~ -17602330 0 127 -~~~ -17602331 UP 11 -17602331 1024 127 -~~~ -17602333 homeCount = 17 -17602333 waitCount = 7 -17602334 ripCount = 8 -17602334 locktype1 = 0 -17602355 locktype2 = 2 -17602356 locktype3 = 1 -17602356 goalCount = 8 -17602357 goalTotal = 8 -17602357 otherCount = 6 -~~~ -17602358 CURRENTGOAL IS [8] -~~~ -17602358 1024 255 -17602389 DOWN 11 -17602389 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17602424 homeCount = 17 -17602424 waitCount = 7 -17602425 ripCount = 8 -17602425 locktype1 = 0 -17602426 locktype2 = 2 -17602426 locktype3 = 1 -17602427 goalCount = 8 -17602427 goalTotal = 8 -17602428 otherCount = 6 -~~~ -17602429 CURRENTGOAL IS [8] -~~~ -17605378 UP 8 -17605378 128 255 -~~~ -~~~ -17605400 outer reward -~~~ -17605401 128 8388863 -~~~ -~~~ -17605620 DOWN 8 -17605620 0 8388863 -~~~ -~~~ -17605639 0 8388862 -~~~ -~~~ -17605641 0 8388860 -~~~ -~~~ -17605643 0 8388856 -~~~ -~~~ -17605644 0 8388848 -~~~ -~~~ -17605646 0 8388832 -~~~ -~~~ -17605648 0 8388800 -~~~ -~~~ -17605650 0 8388736 -~~~ -~~~ -17605652 0 8388608 -~~~ -~~~ -17605654 0 8389120 -17605655 homeCount = 17 -17605655 waitCount = 7 -17605676 ripCount = 8 -17605677 locktype1 = 0 -17605677 locktype2 = 2 -17605678 locktype3 = 1 -17605678 goalCount = 9 -17605679 goalTotal = 9 -17605679 otherCount = 6 -~~~ -17605680 128 8389120 -17605850 128 512 -17606053 DOWN 8 -17606053 0 512 -17606073 128 512 -17606178 DOWN 8 -17606178 0 512 -17606191 128 512 -17606307 DOWN 8 -17606307 0 512 -17606321 128 512 -17606437 DOWN 8 -17606437 0 512 -17606454 128 512 -17606881 DOWN 8 -17606881 0 512 -17606887 128 512 -17611622 DOWN 8 -17611622 0 512 -17611648 128 512 -17611713 DOWN 8 -17611713 0 512 -17616088 UP 10 -17616088 waslock = 0 -17616088 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17616116 512 16777728 -~~~ -17616256 DOWN 10 -17616256 0 16777728 -17616266 0 512 -~~~ -~~~ -17616281 0 1536 -~~~ -~~~ -17616283 0 1024 -17616284 homeCount = 18 -17616285 waitCount = 7 -17616285 ripCount = 8 -17616286 locktype1 = 0 -17616286 locktype2 = 2 -17616286 locktype3 = 1 -17616287 goalCount = 9 -17616287 goalTotal = 9 -17616288 otherCount = 6 -~~~ -17616317 UP 10 -17616318 waslock = 0 -17616317 512 1024 -~~~ -17619930 DOWN 10 -17619930 0 1024 -~~~ -~~~ -~~~ -~~~ -17619958 homeCount = 18 -17619958 waitCount = 7 -17619959 ripCount = 8 -17619959 locktype1 = 0 -17619960 locktype2 = 2 -17619960 locktype3 = 1 -17619961 goalCount = 9 -17619961 goalTotal = 9 -17619962 otherCount = 6 -~~~ -17619966 UP 10 -17619966 waslock = 0 -17619966 512 1024 -~~~ -17620023 DOWN 10 -17620022 0 1024 -~~~ -~~~ -~~~ -~~~ -17620051 homeCount = 18 -17620051 waitCount = 7 -17620052 ripCount = 8 -17620052 locktype1 = 0 -17620053 locktype2 = 2 -17620053 locktype3 = 1 -17620054 goalCount = 9 -17620054 goalTotal = 9 -17620055 otherCount = 6 -~~~ -17622132 UP 11 -17622132 1024 1024 -17623222 DOWN 11 -17623222 0 1024 -17623251 UP 11 -17623251 1024 1024 -17624459 DOWN 11 -17624459 0 1024 -17624483 UP 11 -17624483 1024 1024 -17624883 BEEP1 -17624883 BEEP2 -~~~ -~~~ -~~~ -17624910 1024 33555456 -~~~ -17625060 1024 1024 -17629415 DOWN 11 -17629415 0 1024 -~~~ -~~~ -17629435 0 0 -~~~ -~~~ -17629437 0 1 -~~~ -~~~ -17629439 0 3 -~~~ -~~~ -17629440 0 7 -~~~ -~~~ -17629442 0 15 -~~~ -~~~ -17629444 UP 11 -17629444 1024 31 -~~~ -~~~ -17629446 1024 63 -~~~ -~~~ -17629448 1024 127 -~~~ -~~~ -17629450 1024 255 -17629451 homeCount = 18 -17629451 waitCount = 7 -17629452 ripCount = 9 -17629473 locktype1 = 0 -17629473 locktype2 = 2 -17629474 locktype3 = 1 -17629474 goalCount = 9 -17629475 goalTotal = 9 -17629475 otherCount = 6 -~~~ -17629476 CURRENTGOAL IS [8] -~~~ -17629477 DOWN 11 -17629477 0 255 -17629481 UP 11 -17629481 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17629533 homeCount = 18 -17629533 waitCount = 7 -17629534 ripCount = 9 -17629534 locktype1 = 0 -17629535 locktype2 = 2 -17629535 locktype3 = 1 -17629536 goalCount = 9 -17629536 goalTotal = 9 -17629537 otherCount = 6 -~~~ -17629538 CURRENTGOAL IS [8] -~~~ -17631515 DOWN 11 -17631515 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17631553 homeCount = 18 -17631553 waitCount = 7 -17631554 ripCount = 9 -17631554 locktype1 = 0 -17631555 locktype2 = 2 -17631556 locktype3 = 1 -17631556 goalCount = 9 -17631556 goalTotal = 9 -17631557 otherCount = 6 -~~~ -17631558 CURRENTGOAL IS [8] -~~~ -17634612 UP 8 -17634612 128 255 -~~~ -~~~ -17634638 outer reward -~~~ -17634638 128 8388863 -~~~ -~~~ -17634643 outerreps = 8 -~~~ -~~~ -17634881 DOWN 8 -17634881 0 8388863 -~~~ -~~~ -17634905 0 8388862 -~~~ -~~~ -17634907 0 8388860 -~~~ -~~~ -17634909 0 8388856 -~~~ -~~~ -17634911 0 8388848 -~~~ -~~~ -17634913 0 8388832 -~~~ -~~~ -17634914 0 8388800 -~~~ -~~~ -17634916 0 8388736 -~~~ -~~~ -17634918 0 8388608 -~~~ -~~~ -17634920 0 8389120 -17634921 homeCount = 18 -17634922 waitCount = 7 -17634942 ripCount = 9 -17634943 locktype1 = 0 -17634943 locktype2 = 2 -17634944 locktype3 = 1 -17634944 goalCount = 0 -17634945 goalTotal = 10 -17634945 otherCount = 6 -~~~ -17634946 128 8389120 -17635088 128 512 -17635186 DOWN 8 -17635186 0 512 -17635204 128 512 -17635303 DOWN 8 -17635303 0 512 -17635337 128 512 -17635422 DOWN 8 -17635422 0 512 -17635469 128 512 -17635548 DOWN 8 -17635548 0 512 -17635588 128 512 -17635675 DOWN 8 -17635675 0 512 -17635720 128 512 -17635815 DOWN 8 -17635815 0 512 -17635847 128 512 -17635966 DOWN 8 -17635966 0 512 -17635980 128 512 -17641244 DOWN 8 -17641243 0 512 -17646112 UP 10 -17646112 waslock = 0 -17646112 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17646140 512 16777728 -~~~ -17646290 512 512 -17646421 DOWN 10 -17646421 0 512 -~~~ -~~~ -17646445 0 2560 -~~~ -~~~ -17646447 0 2048 -17646448 homeCount = 19 -17646449 waitCount = 7 -17646449 ripCount = 9 -17646450 locktype1 = 0 -17646450 locktype2 = 2 -17646451 locktype3 = 1 -17646451 goalCount = 0 -17646452 goalTotal = 10 -17646452 otherCount = 6 -~~~ -17646474 UP 10 -17646474 waslock = 0 -17646474 512 2048 -~~~ -17650594 DOWN 10 -17650594 0 2048 -~~~ -~~~ -~~~ -~~~ -17650618 homeCount = 19 -17650619 waitCount = 7 -17650619 ripCount = 9 -17650620 locktype1 = 0 -17650620 locktype2 = 2 -17650621 locktype3 = 1 -17650621 goalCount = 0 -17650621 goalTotal = 10 -17650622 otherCount = 6 -~~~ -17650651 UP 10 -17650651 waslock = 0 -17650651 512 2048 -~~~ -17650683 DOWN 10 -17650683 0 2048 -~~~ -~~~ -~~~ -~~~ -17650701 homeCount = 19 -17650702 waitCount = 7 -17650702 ripCount = 9 -17650703 locktype1 = 0 -17650703 locktype2 = 2 -17650704 locktype3 = 1 -17650704 goalCount = 0 -17650705 goalTotal = 10 -17650705 otherCount = 6 -~~~ -17652063 UP 12 -17652063 2048 2048 -17654813 CLICK1 -17654813 CLICK2 -~~~ -~~~ -~~~ -17654838 2048 67110912 -~~~ -17654988 2048 2048 -17661976 DOWN 12 -17661976 0 2048 -~~~ -~~~ -17661996 0 0 -~~~ -~~~ -17661998 0 1 -~~~ -~~~ -17662000 0 3 -~~~ -~~~ -17662002 0 7 -~~~ -~~~ -17662004 0 15 -~~~ -~~~ -17662005 0 31 -~~~ -~~~ -17662007 0 63 -~~~ -~~~ -17662009 0 127 -~~~ -~~~ -17662011 0 255 -17662012 homeCount = 19 -17662012 waitCount = 8 -17662013 ripCount = 9 -17662014 locktype1 = 0 -17662014 locktype2 = 2 -17662035 locktype3 = 1 -17662035 goalCount = 0 -17662036 goalTotal = 10 -17662036 otherCount = 6 -~~~ -17662037 CURRENTGOAL IS [2] -~~~ -17662039 UP 12 -17662039 2048 255 -17662076 DOWN 12 -17662076 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17662113 homeCount = 19 -17662113 waitCount = 8 -17662114 ripCount = 9 -17662114 locktype1 = 0 -17662115 locktype2 = 2 -17662115 locktype3 = 1 -17662116 goalCount = 0 -17662116 goalTotal = 10 -17662117 otherCount = 6 -~~~ -17662118 CURRENTGOAL IS [2] -~~~ -17666107 UP 8 -17666107 128 255 -~~~ -~~~ -17666295 DOWN 8 -17666295 0 255 -~~~ -~~~ -17666317 0 254 -~~~ -~~~ -17666319 0 252 -~~~ -~~~ -17666321 0 248 -~~~ -~~~ -17666323 0 240 -~~~ -~~~ -17666324 0 224 -~~~ -~~~ -17666326 0 192 -~~~ -~~~ -17666328 0 128 -~~~ -~~~ -17666330 0 0 -~~~ -~~~ -17666332 0 512 -17666333 homeCount = 19 -17666333 waitCount = 8 -17666334 ripCount = 9 -17666334 locktype1 = 0 -17666355 locktype2 = 2 -17666356 locktype3 = 1 -17666356 goalCount = 0 -17666357 goalTotal = 10 -17666357 otherCount = 7 -~~~ -17666359 128 512 -17666796 DOWN 8 -17666796 0 512 -17671204 UP 10 -17671204 waslock = 0 -17671204 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17671234 512 16777728 -~~~ -17671353 DOWN 10 -17671353 0 16777728 -~~~ -~~~ -17671381 0 16779776 -~~~ -~~~ -17671382 0 16779264 -17671383 homeCount = 20 -17671384 waitCount = 8 -17671384 ripCount = 9 -17671385 locktype1 = 0 -17671385 locktype2 = 2 -17671386 locktype3 = 1 -17671386 goalCount = 0 -17671387 goalTotal = 10 -17671387 otherCount = 7 -~~~ -17671408 0 2048 -17671450 UP 10 -17671450 waslock = 0 -17671450 512 2048 -~~~ -17674585 DOWN 10 -17674585 0 2048 -~~~ -~~~ -~~~ -~~~ -17674611 homeCount = 20 -17674611 waitCount = 8 -17674612 ripCount = 9 -17674612 locktype1 = 0 -17674613 locktype2 = 2 -17674613 locktype3 = 1 -17674614 goalCount = 0 -17674614 goalTotal = 10 -17674615 otherCount = 7 -~~~ -17676314 UP 12 -17676314 2048 2048 -17676340 DOWN 12 -17676340 0 2048 -17676358 UP 12 -17676358 2048 2048 -17678656 DOWN 12 -17678656 0 2048 -17678662 UP 12 -17678662 2048 2048 -17681064 CLICK1 -17681064 CLICK2 -~~~ -~~~ -~~~ -17681098 2048 67110912 -~~~ -17681199 DOWN 12 -17681199 0 67110912 -17681207 UP 12 -17681207 2048 67110912 -17681248 2048 2048 -~~~ -~~~ -17681272 2048 0 -~~~ -~~~ -17681273 2048 1 -~~~ -~~~ -17681275 2048 3 -~~~ -~~~ -17681277 2048 7 -~~~ -~~~ -17681279 2048 15 -~~~ -~~~ -17681281 2048 31 -~~~ -~~~ -17681282 2048 63 -~~~ -~~~ -17681284 2048 127 -~~~ -~~~ -17681286 2048 255 -17681287 homeCount = 20 -17681288 waitCount = 9 -17681288 ripCount = 9 -17681309 locktype1 = 0 -17681309 locktype2 = 2 -17681310 locktype3 = 1 -17681310 goalCount = 0 -17681311 goalTotal = 10 -17681311 otherCount = 7 -~~~ -17681313 CURRENTGOAL IS [2] -~~~ -17687455 DOWN 12 -17687455 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17687496 homeCount = 20 -17687497 waitCount = 9 -17687497 ripCount = 9 -17687498 locktype1 = 0 -17687498 locktype2 = 2 -17687499 locktype3 = 1 -17687499 goalCount = 0 -17687500 goalTotal = 10 -17687500 otherCount = 7 -~~~ -17687501 CURRENTGOAL IS [2] -~~~ -17693473 UP 2 -17693473 2 255 -~~~ -~~~ -17693497 outer reward -~~~ -17693498 2 131327 -~~~ -~~~ -17693506 DOWN 2 -17693506 0 131327 -~~~ -~~~ -17693527 0 131326 -~~~ -~~~ -17693529 0 131324 -~~~ -~~~ -17693531 0 131320 -~~~ -~~~ -17693532 0 131312 -~~~ -~~~ -17693534 0 131296 -~~~ -~~~ -17693536 0 131264 -~~~ -~~~ -17693538 0 131200 -~~~ -~~~ -17693540 0 131072 -~~~ -~~~ -17693542 0 131584 -17693543 homeCount = 20 -17693543 waitCount = 9 -17693544 ripCount = 9 -17693565 locktype1 = 0 -17693565 locktype2 = 2 -17693566 locktype3 = 1 -17693566 goalCount = 1 -17693567 goalTotal = 11 -17693567 otherCount = 7 -~~~ -17693568 2 131584 -17693947 2 512 -17699688 DOWN 2 -17699687 0 512 -17699753 2 512 -17699799 DOWN 2 -17699799 0 512 -17705120 UP 10 -17705121 waslock = 0 -17705120 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17705153 512 16777728 -~~~ -17705303 512 512 -17708019 DOWN 10 -17708019 0 512 -~~~ -~~~ -17708036 0 2560 -~~~ -~~~ -17708038 0 2048 -17708039 homeCount = 21 -17708039 waitCount = 9 -17708040 ripCount = 9 -17708040 locktype1 = 0 -17708041 locktype2 = 2 -17708041 locktype3 = 1 -17708042 goalCount = 1 -17708042 goalTotal = 11 -17708043 otherCount = 7 -~~~ -17708064 UP 10 -17708064 waslock = 0 -17708064 512 2048 -~~~ -17708128 DOWN 10 -17708128 0 2048 -~~~ -~~~ -~~~ -~~~ -17708149 homeCount = 21 -17708150 waitCount = 9 -17708150 ripCount = 9 -17708151 locktype1 = 0 -17708151 locktype2 = 2 -17708152 locktype3 = 1 -17708152 goalCount = 1 -17708153 goalTotal = 11 -17708153 otherCount = 7 -~~~ -17710005 UP 12 -17710005 2048 2048 -17710933 DOWN 12 -17710933 0 2048 -17710973 UP 12 -17710973 2048 2048 -17711488 DOWN 12 -17711488 0 2048 -17711505 UP 12 -17711505 2048 2048 -17713006 CLICK1 -17713006 CLICK2 -~~~ -~~~ -~~~ -17713029 2048 67110912 -~~~ -17713179 2048 2048 -17718698 DOWN 12 -17718698 0 2048 -17718711 UP 12 -17718711 2048 2048 -~~~ -~~~ -17718718 2048 0 -~~~ -~~~ -17718719 2048 1 -~~~ -~~~ -17718721 2048 3 -~~~ -~~~ -17718723 2048 7 -~~~ -~~~ -17718725 2048 15 -~~~ -~~~ -17718727 2048 31 -~~~ -~~~ -17718728 2048 63 -~~~ -~~~ -17718730 2048 127 -~~~ -~~~ -17718732 2048 255 -17718733 homeCount = 21 -17718734 waitCount = 10 -17718734 ripCount = 9 -17718755 locktype1 = 0 -17718756 locktype2 = 2 -17718756 locktype3 = 1 -17718757 goalCount = 1 -17718757 goalTotal = 11 -17718758 otherCount = 7 -~~~ -17718759 CURRENTGOAL IS [2] -~~~ -17718770 DOWN 12 -17718770 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17718805 homeCount = 21 -17718805 waitCount = 10 -17718806 ripCount = 9 -17718806 locktype1 = 0 -17718807 locktype2 = 2 -17718807 locktype3 = 1 -17718808 goalCount = 1 -17718808 goalTotal = 11 -17718809 otherCount = 7 -~~~ -17718810 CURRENTGOAL IS [2] -~~~ -17718839 UP 12 -17718839 2048 255 -17719213 DOWN 12 -17719213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17719257 homeCount = 21 -17719258 waitCount = 10 -17719258 ripCount = 9 -17719259 locktype1 = 0 -17719259 locktype2 = 2 -17719260 locktype3 = 1 -17719260 goalCount = 1 -17719261 goalTotal = 11 -17719261 otherCount = 7 -~~~ -17719262 CURRENTGOAL IS [2] -~~~ -17719283 UP 12 -17719283 2048 255 -17719362 DOWN 12 -17719362 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17719398 homeCount = 21 -17719399 waitCount = 10 -17719399 ripCount = 9 -17719400 locktype1 = 0 -17719400 locktype2 = 2 -17719401 locktype3 = 1 -17719401 goalCount = 1 -17719402 goalTotal = 11 -17719402 otherCount = 7 -~~~ -17719403 CURRENTGOAL IS [2] -~~~ -17726146 UP 8 -17726146 128 255 -~~~ -~~~ -17726549 DOWN 8 -17726549 0 255 -~~~ -~~~ -17726574 0 254 -~~~ -~~~ -17726576 0 252 -~~~ -~~~ -17726578 0 248 -~~~ -~~~ -17726580 0 240 -~~~ -~~~ -17726582 0 224 -~~~ -~~~ -17726584 0 192 -~~~ -~~~ -17726585 0 128 -~~~ -~~~ -17726587 0 0 -~~~ -~~~ -17726589 0 512 -17726590 homeCount = 21 -17726591 waitCount = 10 -17726591 ripCount = 9 -17726592 locktype1 = 0 -17726592 locktype2 = 2 -17726613 locktype3 = 1 -17726614 goalCount = 1 -17726614 goalTotal = 11 -17726615 otherCount = 8 -~~~ -17729916 UP 10 -17729917 waslock = 0 -17729916 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17729943 512 16777728 -~~~ -17730093 512 512 -17733254 DOWN 10 -17733254 0 512 -~~~ -~~~ -17733279 0 1536 -~~~ -~~~ -17733281 0 1024 -17733282 homeCount = 22 -17733282 waitCount = 10 -17733283 ripCount = 9 -17733283 locktype1 = 0 -17733284 locktype2 = 2 -17733284 locktype3 = 1 -17733284 goalCount = 1 -17733285 goalTotal = 11 -17733285 otherCount = 8 -~~~ -17733307 UP 10 -17733307 waslock = 0 -17733307 512 1024 -~~~ -17733339 DOWN 10 -17733339 0 1024 -~~~ -~~~ -~~~ -~~~ -17733373 homeCount = 22 -17733373 waitCount = 10 -17733374 ripCount = 9 -17733374 locktype1 = 0 -17733375 locktype2 = 2 -17733375 locktype3 = 1 -17733376 goalCount = 1 -17733376 goalTotal = 11 -17733377 otherCount = 8 -~~~ -17735628 UP 11 -17735628 1024 1024 -17736890 DOWN 11 -17736890 0 1024 -17736924 UP 11 -17736924 1024 1024 -17736932 DOWN 11 -17736931 0 1024 -17736962 UP 11 -17736962 1024 1024 -17739879 BEEP1 -17739879 BEEP2 -~~~ -~~~ -~~~ -17739899 1024 33555456 -~~~ -17740049 1024 1024 -17746662 DOWN 11 -17746662 0 1024 -~~~ -~~~ -17746687 0 0 -~~~ -~~~ -17746689 0 1 -~~~ -~~~ -17746691 0 3 -~~~ -~~~ -17746692 0 7 -~~~ -~~~ -17746694 0 15 -~~~ -~~~ -17746696 0 31 -~~~ -~~~ -17746698 0 63 -~~~ -~~~ -17746700 0 127 -~~~ -~~~ -17746701 0 255 -17746703 homeCount = 22 -17746703 waitCount = 10 -17746704 ripCount = 10 -17746704 locktype1 = 0 -17746705 locktype2 = 2 -17746726 locktype3 = 1 -17746726 goalCount = 1 -17746727 goalTotal = 11 -17746727 otherCount = 8 -~~~ -17746728 CURRENTGOAL IS [2] -~~~ -17751159 UP 6 -17751159 32 255 -~~~ -~~~ -17752137 DOWN 6 -17752137 0 255 -~~~ -~~~ -17752159 0 254 -~~~ -~~~ -17752160 0 252 -~~~ -~~~ -17752162 0 248 -~~~ -~~~ -17752164 0 240 -~~~ -~~~ -17752166 0 224 -~~~ -~~~ -17752168 0 192 -~~~ -~~~ -17752169 0 128 -~~~ -~~~ -17752171 0 0 -~~~ -~~~ -17752173 0 512 -17752174 homeCount = 22 -17752175 waitCount = 10 -17752175 ripCount = 10 -17752176 locktype1 = 0 -17752197 locktype2 = 2 -17752197 locktype3 = 1 -17752198 goalCount = 1 -17752198 goalTotal = 11 -17752199 otherCount = 9 -~~~ -17755821 UP 10 -17755821 waslock = 0 -17755821 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17755853 512 16777728 -~~~ -17756003 512 512 -17756059 DOWN 10 -17756059 0 512 -~~~ -~~~ -17756076 UP 10 -17756076 waslock = 0 -17756076 512 2560 -~~~ -~~~ -17756078 512 2048 -17756079 homeCount = 23 -17756080 waitCount = 10 -17756080 ripCount = 10 -17756081 locktype1 = 0 -17756081 locktype2 = 2 -17756082 locktype3 = 1 -17756082 goalCount = 1 -17756104 goalTotal = 11 -17756104 otherCount = 9 -~~~ -~~~ -17759339 DOWN 10 -17759339 0 2048 -~~~ -~~~ -~~~ -~~~ -17759360 homeCount = 23 -17759361 waitCount = 10 -17759361 ripCount = 10 -17759362 locktype1 = 0 -17759362 locktype2 = 2 -17759363 locktype3 = 1 -17759363 goalCount = 1 -17759364 goalTotal = 11 -17759364 otherCount = 9 -~~~ -17761118 UP 12 -17761118 2048 2048 -17762724 DOWN 12 -17762724 0 2048 -17762734 UP 12 -17762734 2048 2048 -17762739 DOWN 12 -17762739 0 2048 -17762757 UP 12 -17762757 2048 2048 -17763369 CLICK1 -17763369 CLICK2 -~~~ -~~~ -~~~ -17763395 2048 67110912 -~~~ -17763545 2048 2048 -17768970 DOWN 12 -17768970 0 2048 -~~~ -~~~ -17768992 0 0 -~~~ -~~~ -17768994 0 1 -~~~ -~~~ -17768996 0 3 -~~~ -~~~ -17768997 0 7 -~~~ -~~~ -17768999 0 15 -~~~ -~~~ -17769001 0 31 -~~~ -~~~ -17769003 0 63 -~~~ -~~~ -17769005 0 127 -~~~ -~~~ -17769006 0 255 -17769008 homeCount = 23 -17769008 waitCount = 11 -17769009 ripCount = 10 -17769009 locktype1 = 0 -17769010 locktype2 = 2 -17769030 locktype3 = 1 -17769031 goalCount = 1 -17769031 goalTotal = 11 -17769032 otherCount = 9 -~~~ -17769033 CURRENTGOAL IS [2] -~~~ -17772566 UP 1 -17772566 1 255 -~~~ -~~~ -17774132 DOWN 1 -17774132 0 255 -~~~ -~~~ -17774151 0 254 -~~~ -~~~ -17774153 0 252 -~~~ -~~~ -17774155 0 248 -~~~ -~~~ -17774157 0 240 -~~~ -~~~ -17774159 0 224 -~~~ -~~~ -17774161 0 192 -~~~ -~~~ -17774162 0 128 -~~~ -~~~ -17774164 0 0 -~~~ -~~~ -17774166 0 512 -17774167 homeCount = 23 -17774168 waitCount = 11 -17774168 ripCount = 10 -17774169 locktype1 = 0 -17774190 locktype2 = 2 -17774190 locktype3 = 1 -17774191 goalCount = 1 -17774191 goalTotal = 11 -17774192 otherCount = 10 -~~~ -17777742 UP 10 -17777742 waslock = 0 -17777742 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17777769 512 16777728 -~~~ -17777919 512 512 -17777993 DOWN 10 -17777993 0 512 -~~~ -~~~ -17778017 0 1536 -~~~ -~~~ -17778019 0 1024 -17778020 homeCount = 24 -17778020 waitCount = 11 -17778021 ripCount = 10 -17778021 locktype1 = 0 -17778022 locktype2 = 2 -17778022 locktype3 = 1 -17778023 goalCount = 1 -17778023 goalTotal = 11 -17778024 otherCount = 10 -~~~ -17778045 UP 10 -17778045 waslock = 0 -17778045 512 1024 -~~~ -17781684 DOWN 10 -17781684 0 1024 -~~~ -~~~ -~~~ -~~~ -17781705 homeCount = 24 -17781706 waitCount = 11 -17781706 ripCount = 10 -17781707 locktype1 = 0 -17781707 locktype2 = 2 -17781707 locktype3 = 1 -17781708 goalCount = 1 -17781708 goalTotal = 11 -17781709 otherCount = 10 -~~~ -17781741 UP 10 -17781741 waslock = 0 -17781741 512 1024 -~~~ -17781763 DOWN 10 -17781763 0 1024 -~~~ -~~~ -~~~ -~~~ -17781788 homeCount = 24 -17781788 waitCount = 11 -17781789 ripCount = 10 -17781789 locktype1 = 0 -17781790 locktype2 = 2 -17781790 locktype3 = 1 -17781791 goalCount = 1 -17781791 goalTotal = 11 -17781792 otherCount = 10 -~~~ -17783131 UP 11 -17783131 1024 1024 -17786131 BEEP1 -17786131 BEEP2 -~~~ -~~~ -~~~ -17786156 1024 33555456 -~~~ -17786306 1024 1024 -17793507 DOWN 11 -17793507 0 1024 -~~~ -~~~ -17793532 0 0 -~~~ -~~~ -17793534 0 1 -~~~ -~~~ -17793536 0 3 -~~~ -~~~ -17793538 0 7 -~~~ -~~~ -17793540 0 15 -~~~ -~~~ -17793541 0 31 -~~~ -~~~ -17793543 0 63 -~~~ -~~~ -17793545 0 127 -~~~ -~~~ -17793547 0 255 -17793548 homeCount = 24 -17793548 waitCount = 11 -17793549 ripCount = 11 -17793549 locktype1 = 0 -17793550 locktype2 = 2 -17793571 locktype3 = 1 -17793571 goalCount = 1 -17793572 goalTotal = 11 -17793572 otherCount = 10 -~~~ -17793573 CURRENTGOAL IS [2] -~~~ -17799331 UP 7 -17799331 64 255 -~~~ -~~~ -17799555 DOWN 7 -17799555 0 255 -~~~ -~~~ -17799574 0 254 -~~~ -~~~ -17799576 0 252 -~~~ -~~~ -17799578 0 248 -~~~ -~~~ -17799579 0 240 -~~~ -~~~ -17799581 0 224 -~~~ -~~~ -17799583 0 192 -~~~ -~~~ -17799585 0 128 -~~~ -~~~ -17799587 0 0 -~~~ -~~~ -17799588 0 512 -17799589 homeCount = 24 -17799590 waitCount = 11 -17799591 ripCount = 11 -17799591 locktype1 = 0 -17799612 locktype2 = 2 -17799612 locktype3 = 1 -17799613 goalCount = 1 -17799613 goalTotal = 11 -17799614 otherCount = 11 -~~~ -17799621 64 512 -17800053 DOWN 7 -17800053 0 512 -17804037 UP 10 -17804037 waslock = 0 -17804037 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17804064 512 16777728 -~~~ -17804214 512 512 -17804372 DOWN 10 -17804372 0 512 -17804384 UP 10 -17804385 waslock = 0 -17804384 512 512 -~~~ -~~~ -17804404 512 2560 -~~~ -~~~ -17804406 512 2048 -17804407 homeCount = 25 -17804408 waitCount = 11 -17804408 ripCount = 11 -17804409 locktype1 = 0 -17804409 locktype2 = 2 -17804410 locktype3 = 1 -17804410 goalCount = 1 -17804411 goalTotal = 11 -17804411 otherCount = 11 -~~~ -~~~ -17808182 DOWN 10 -17808182 0 2048 -~~~ -~~~ -~~~ -~~~ -17808210 homeCount = 25 -17808211 waitCount = 11 -17808211 ripCount = 11 -17808212 locktype1 = 0 -17808212 locktype2 = 2 -17808213 locktype3 = 1 -17808213 goalCount = 1 -17808214 goalTotal = 11 -17808214 otherCount = 11 -~~~ -17809982 UP 12 -17809982 2048 2048 -17811792 DOWN 12 -17811792 0 2048 -17811817 UP 12 -17811817 2048 2048 -17813483 CLICK1 -17813483 CLICK2 -~~~ -~~~ -~~~ -17813510 2048 67110912 -~~~ -17813658 DOWN 12 -17813658 0 67110912 -17813660 0 2048 -17813687 UP 12 -17813687 2048 2048 -~~~ -~~~ -17813690 2048 0 -~~~ -~~~ -17813692 2048 1 -~~~ -~~~ -17813693 2048 3 -~~~ -~~~ -17813695 2048 7 -~~~ -~~~ -17813697 2048 15 -~~~ -~~~ -17813699 2048 31 -~~~ -~~~ -17813701 2048 63 -~~~ -~~~ -17813703 2048 127 -~~~ -~~~ -17813704 2048 255 -17813706 homeCount = 25 -17813706 waitCount = 12 -17813727 ripCount = 11 -17813727 locktype1 = 0 -17813728 locktype2 = 2 -17813728 locktype3 = 1 -17813729 goalCount = 1 -17813729 goalTotal = 11 -17813730 otherCount = 11 -~~~ -17813731 CURRENTGOAL IS [2] -~~~ -17818291 DOWN 12 -17818291 0 255 -17818296 UP 12 -17818296 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17818326 homeCount = 25 -17818327 waitCount = 12 -17818327 ripCount = 11 -17818328 locktype1 = 0 -17818328 locktype2 = 2 -17818329 locktype3 = 1 -17818329 goalCount = 1 -17818330 goalTotal = 11 -17818330 otherCount = 11 -~~~ -17818331 CURRENTGOAL IS [2] -~~~ -17818368 DOWN 12 -17818368 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17818405 homeCount = 25 -17818406 waitCount = 12 -17818406 ripCount = 11 -17818407 locktype1 = 0 -17818407 locktype2 = 2 -17818408 locktype3 = 1 -17818408 goalCount = 1 -17818409 goalTotal = 11 -17818409 otherCount = 11 -~~~ -17818410 CURRENTGOAL IS [2] -~~~ -17823832 UP 2 -17823832 2 255 -~~~ -~~~ -17823852 outer reward -~~~ -17823852 2 131327 -~~~ -~~~ -17824185 DOWN 2 -17824185 0 131327 -~~~ -17824208 2 131327 -~~~ -17824210 2 131326 -~~~ -~~~ -17824211 2 131324 -~~~ -~~~ -17824213 2 131320 -~~~ -~~~ -17824215 2 131312 -~~~ -~~~ -17824216 2 131296 -~~~ -~~~ -17824218 2 131264 -~~~ -~~~ -17824220 2 131200 -~~~ -~~~ -17824222 2 131072 -~~~ -~~~ -17824224 2 131584 -17824225 homeCount = 25 -17824225 waitCount = 12 -17824247 ripCount = 11 -17824247 locktype1 = 0 -17824248 locktype2 = 2 -17824248 locktype3 = 1 -17824249 goalCount = 2 -17824249 goalTotal = 12 -17824250 otherCount = 11 -~~~ -17824302 2 512 -17824581 DOWN 2 -17824581 0 512 -17824598 2 512 -17824700 DOWN 2 -17824700 0 512 -17824721 2 512 -17824823 DOWN 2 -17824823 0 512 -17824846 2 512 -17824949 DOWN 2 -17824949 0 512 -17824965 2 512 -17829925 DOWN 2 -17829925 0 512 -17829977 2 512 -17830030 DOWN 2 -17830030 0 512 -17830113 2 512 -17830135 DOWN 2 -17830135 0 512 -17835168 UP 10 -17835169 waslock = 0 -17835168 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17835195 512 16777728 -~~~ -17835345 512 512 -17835401 DOWN 10 -17835401 0 512 -~~~ -~~~ -17835421 0 2560 -~~~ -17835422 UP 10 -17835423 waslock = 0 -17835422 512 2560 -~~~ -17835424 homeCount = 26 -17835425 waitCount = 12 -17835425 ripCount = 11 -17835426 locktype1 = 0 -17835426 locktype2 = 2 -17835427 locktype3 = 1 -17835427 goalCount = 2 -17835448 goalTotal = 12 -17835449 otherCount = 11 -~~~ -~~~ -17835450 512 2048 -17839165 DOWN 10 -17839165 0 2048 -~~~ -~~~ -~~~ -~~~ -17839192 homeCount = 26 -17839192 waitCount = 12 -17839193 ripCount = 11 -17839193 locktype1 = 0 -17839194 locktype2 = 2 -17839194 locktype3 = 1 -17839195 goalCount = 2 -17839195 goalTotal = 12 -17839196 otherCount = 11 -~~~ -17839209 UP 10 -17839210 waslock = 0 -17839209 512 2048 -~~~ -17839245 DOWN 10 -17839245 0 2048 -~~~ -~~~ -~~~ -~~~ -17839268 homeCount = 26 -17839268 waitCount = 12 -17839269 ripCount = 11 -17839269 locktype1 = 0 -17839270 locktype2 = 2 -17839270 locktype3 = 1 -17839271 goalCount = 2 -17839271 goalTotal = 12 -17839272 otherCount = 11 -~~~ -17840917 UP 12 -17840917 2048 2048 -17843738 DOWN 12 -17843738 0 2048 -17843774 UP 12 -17843774 2048 2048 -17844418 CLICK1 -17844418 CLICK2 -~~~ -~~~ -~~~ -17844442 2048 67110912 -~~~ -17844592 2048 2048 -17849626 DOWN 12 -17849626 0 2048 -~~~ -~~~ -17849650 0 0 -~~~ -~~~ -17849652 0 1 -~~~ -~~~ -17849653 0 3 -~~~ -~~~ -17849655 0 7 -~~~ -~~~ -17849657 0 15 -~~~ -~~~ -17849659 0 31 -~~~ -~~~ -17849661 0 63 -~~~ -~~~ -17849663 0 127 -~~~ -~~~ -17849664 0 255 -17849665 homeCount = 26 -17849666 waitCount = 13 -17849666 ripCount = 11 -17849667 locktype1 = 0 -17849667 locktype2 = 2 -17849688 locktype3 = 1 -17849689 goalCount = 2 -17849689 goalTotal = 12 -17849690 otherCount = 11 -~~~ -17849691 CURRENTGOAL IS [2] -~~~ -17849708 UP 12 -17849708 2048 255 -17849722 DOWN 12 -17849722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17849759 homeCount = 26 -17849760 waitCount = 13 -17849760 ripCount = 11 -17849761 locktype1 = 0 -17849761 locktype2 = 2 -17849762 locktype3 = 1 -17849762 goalCount = 2 -17849763 goalTotal = 12 -17849763 otherCount = 11 -~~~ -17849764 CURRENTGOAL IS [2] -~~~ -17853717 UP 2 -17853717 2 255 -~~~ -~~~ -17853745 outer reward -~~~ -17853745 2 131327 -~~~ -~~~ -17853940 DOWN 2 -17853940 0 131327 -~~~ -~~~ -17853964 0 131326 -~~~ -~~~ -17853966 0 131324 -~~~ -~~~ -17853967 0 131320 -~~~ -~~~ -17853969 0 131312 -~~~ -~~~ -17853971 0 131296 -~~~ -~~~ -17853973 0 131264 -~~~ -~~~ -17853975 0 131200 -~~~ -~~~ -17853977 0 131072 -~~~ -~~~ -17853978 0 131584 -17853979 homeCount = 26 -17853980 waitCount = 13 -17853981 ripCount = 11 -17854002 locktype1 = 0 -17854002 locktype2 = 2 -17854003 locktype3 = 1 -17854003 goalCount = 3 -17854004 goalTotal = 13 -17854004 otherCount = 11 -~~~ -17854005 2 131584 -17854195 2 512 -17854610 DOWN 2 -17854610 0 512 -17854627 2 512 -17854734 DOWN 2 -17854734 0 512 -17854760 2 512 -17854858 DOWN 2 -17854858 0 512 -17854884 2 512 -17854994 DOWN 2 -17854994 0 512 -17855017 2 512 -17855122 DOWN 2 -17855122 0 512 -17855152 2 512 -17855268 DOWN 2 -17855268 0 512 -17855283 2 512 -17861087 DOWN 2 -17861087 0 512 -17866371 UP 10 -17866371 waslock = 0 -17866371 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17866401 512 16777728 -~~~ -17866500 DOWN 10 -17866500 0 16777728 -17866522 UP 10 -17866522 waslock = 0 -17866522 512 16777728 -~~~ -~~~ -17866529 512 16778752 -~~~ -~~~ -17866531 512 16778240 -17866532 homeCount = 27 -17866532 waitCount = 13 -17866533 ripCount = 11 -17866533 locktype1 = 0 -17866534 locktype2 = 2 -17866534 locktype3 = 1 -17866535 goalCount = 3 -17866535 goalTotal = 13 -17866536 otherCount = 11 -~~~ -17866557 512 1024 -~~~ -17871309 DOWN 10 -17871309 0 1024 -~~~ -~~~ -~~~ -~~~ -17871338 homeCount = 27 -17871338 waitCount = 13 -17871339 ripCount = 11 -17871339 locktype1 = 0 -17871340 locktype2 = 2 -17871340 locktype3 = 1 -17871341 goalCount = 3 -17871341 goalTotal = 13 -17871342 otherCount = 11 -~~~ -17872797 UP 11 -17872797 1024 1024 -17876092 DOWN 11 -17876092 0 1024 -17876102 UP 11 -17876102 1024 1024 -17880683 DOWN 11 -17880683 0 1024 -17880710 UP 11 -17880710 1024 1024 -17880798 BEEP1 -17880798 BEEP2 -~~~ -~~~ -~~~ -17880819 1024 33555456 -~~~ -17880968 1024 1024 -17885726 DOWN 11 -17885726 0 1024 -~~~ -~~~ -17885745 0 0 -~~~ -~~~ -17885747 0 1 -~~~ -~~~ -17885748 0 3 -~~~ -~~~ -17885750 0 7 -~~~ -~~~ -17885752 0 15 -~~~ -~~~ -17885754 0 31 -~~~ -~~~ -17885756 0 63 -~~~ -~~~ -17885757 0 127 -~~~ -~~~ -17885759 0 255 -17885760 homeCount = 27 -17885761 waitCount = 13 -17885761 ripCount = 12 -17885762 locktype1 = 0 -17885783 locktype2 = 2 -17885784 locktype3 = 1 -17885784 goalCount = 3 -17885785 goalTotal = 13 -17885785 otherCount = 11 -~~~ -17885786 CURRENTGOAL IS [2] -~~~ -17885798 UP 11 -17885798 1024 255 -17887457 DOWN 11 -17887457 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887486 UP 11 -17887486 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887492 homeCount = 27 -17887493 waitCount = 13 -17887493 ripCount = 12 -17887494 locktype1 = 0 -17887494 locktype2 = 2 -17887495 locktype3 = 1 -17887495 goalCount = 3 -17887496 goalTotal = 13 -17887496 otherCount = 11 -~~~ -17887497 CURRENTGOAL IS [2] -~~~ -17887540 DOWN 11 -17887540 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887582 homeCount = 27 -17887583 waitCount = 13 -17887583 ripCount = 12 -17887584 locktype1 = 0 -17887584 locktype2 = 2 -17887585 locktype3 = 1 -17887585 goalCount = 3 -17887586 goalTotal = 13 -17887586 otherCount = 11 -~~~ -17887587 CURRENTGOAL IS [2] -~~~ -17891303 UP 2 -17891303 2 255 -~~~ -~~~ -17891329 outer reward -~~~ -17891329 2 131327 -~~~ -~~~ -17891504 DOWN 2 -17891504 0 131327 -~~~ -~~~ -17891528 0 131326 -~~~ -~~~ -17891530 0 131324 -~~~ -~~~ -17891531 0 131320 -~~~ -~~~ -17891533 0 131312 -~~~ -~~~ -17891535 0 131296 -~~~ -~~~ -17891537 0 131264 -~~~ -~~~ -17891539 0 131200 -~~~ -~~~ -17891540 0 131072 -~~~ -~~~ -17891542 0 131584 -17891543 homeCount = 27 -17891544 waitCount = 13 -17891544 ripCount = 12 -17891566 locktype1 = 0 -17891566 locktype2 = 2 -17891567 locktype3 = 1 -17891567 goalCount = 4 -17891568 goalTotal = 14 -17891568 otherCount = 11 -~~~ -17891569 2 131584 -17891779 2 512 -17892060 DOWN 2 -17892060 0 512 -17892075 2 512 -17892185 DOWN 2 -17892185 0 512 -17892200 2 512 -17898873 DOWN 2 -17898873 0 512 -17898936 2 512 -17898969 DOWN 2 -17898969 0 512 -17903622 UP 10 -17903623 waslock = 0 -17903622 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17903655 512 16777728 -~~~ -17903805 512 512 -17907190 DOWN 10 -17907190 0 512 -~~~ -~~~ -17907209 0 1536 -~~~ -~~~ -17907211 0 1024 -17907212 homeCount = 28 -17907212 waitCount = 13 -17907213 ripCount = 12 -17907213 locktype1 = 0 -17907214 locktype2 = 2 -17907214 locktype3 = 1 -17907215 goalCount = 4 -17907215 goalTotal = 14 -17907216 otherCount = 11 -~~~ -17907245 UP 10 -17907245 waslock = 0 -17907245 512 1024 -~~~ -17907292 DOWN 10 -17907292 0 1024 -~~~ -~~~ -~~~ -~~~ -17907315 homeCount = 28 -17907316 waitCount = 13 -17907316 ripCount = 12 -17907317 locktype1 = 0 -17907317 locktype2 = 2 -17907318 locktype3 = 1 -17907318 goalCount = 4 -17907319 goalTotal = 14 -17907319 otherCount = 11 -~~~ -17908743 UP 11 -17908743 1024 1024 -17911424 DOWN 11 -17911424 0 1024 -17911439 UP 11 -17911439 1024 1024 -17914044 DOWN 11 -17914044 0 1024 -17914054 UP 11 -17914054 1024 1024 -17914744 BEEP1 -17914744 BEEP2 -~~~ -~~~ -~~~ -17914764 1024 33555456 -~~~ -17914914 1024 1024 -17920379 DOWN 11 -17920379 0 1024 -17920399 UP 11 -17920399 1024 1024 -~~~ -~~~ -17920402 1024 0 -~~~ -~~~ -17920404 1024 1 -~~~ -~~~ -17920406 1024 3 -~~~ -~~~ -17920408 1024 7 -~~~ -~~~ -17920409 1024 15 -~~~ -~~~ -17920411 1024 31 -~~~ -~~~ -17920413 1024 63 -~~~ -~~~ -17920415 1024 127 -~~~ -~~~ -17920417 1024 255 -17920418 homeCount = 28 -17920418 waitCount = 13 -17920439 ripCount = 13 -17920440 locktype1 = 0 -17920440 locktype2 = 2 -17920441 locktype3 = 1 -17920441 goalCount = 4 -17920442 goalTotal = 14 -17920442 otherCount = 11 -~~~ -17920443 CURRENTGOAL IS [2] -~~~ -17920510 DOWN 11 -17920510 0 255 -17920518 UP 11 -17920517 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17920542 homeCount = 28 -17920543 waitCount = 13 -17920543 ripCount = 13 -17920544 locktype1 = 0 -17920544 locktype2 = 2 -17920545 locktype3 = 1 -17920545 goalCount = 4 -17920546 goalTotal = 14 -17920546 otherCount = 11 -~~~ -17920547 CURRENTGOAL IS [2] -~~~ -17922012 DOWN 11 -17922012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17922052 homeCount = 28 -17922053 waitCount = 13 -17922054 ripCount = 13 -17922054 locktype1 = 0 -17922055 locktype2 = 2 -17922055 locktype3 = 1 -17922055 goalCount = 4 -17922056 goalTotal = 14 -17922056 otherCount = 11 -~~~ -17922058 CURRENTGOAL IS [2] -~~~ -17925749 UP 2 -17925749 2 255 -~~~ -~~~ -17925768 outer reward -~~~ -17925768 2 131327 -~~~ -~~~ -17925771 DOWN 2 -17925771 0 131327 -~~~ -~~~ -17925792 0 131326 -~~~ -~~~ -17925794 0 131324 -~~~ -~~~ -17925796 0 131320 -~~~ -~~~ -17925797 0 131312 -~~~ -~~~ -17925799 0 131296 -~~~ -~~~ -17925801 0 131264 -~~~ -~~~ -17925803 0 131200 -~~~ -17925804 2 131200 -~~~ -~~~ -17925806 2 131072 -~~~ -17925807 2 131584 -17925808 homeCount = 28 -17925809 waitCount = 13 -17925830 ripCount = 13 -17925830 locktype1 = 0 -17925831 locktype2 = 2 -17925831 locktype3 = 1 -17925832 goalCount = 5 -17925832 goalTotal = 15 -17925833 otherCount = 11 -~~~ -17926043 DOWN 2 -17926043 0 131584 -17926080 2 131584 -17926218 2 512 -17926346 DOWN 2 -17926346 0 512 -17926352 2 512 -17926453 DOWN 2 -17926453 0 512 -17926478 2 512 -17926574 DOWN 2 -17926574 0 512 -17926610 2 512 -17926695 DOWN 2 -17926695 0 512 -17926739 2 512 -17926820 DOWN 2 -17926820 0 512 -17926863 2 512 -17926961 DOWN 2 -17926961 0 512 -17926990 2 512 -17927108 DOWN 2 -17927108 0 512 -17927126 2 512 -17932908 DOWN 2 -17932908 0 512 -17937014 UP 10 -17937014 waslock = 0 -17937014 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17937042 512 16777728 -~~~ -17937192 512 512 -17941745 DOWN 10 -17941745 0 512 -~~~ -~~~ -17941767 0 2560 -~~~ -~~~ -17941769 0 2048 -17941770 homeCount = 29 -17941771 waitCount = 13 -17941771 ripCount = 13 -17941772 locktype1 = 0 -17941772 locktype2 = 2 -17941772 locktype3 = 1 -17941773 goalCount = 5 -17941773 goalTotal = 15 -17941774 otherCount = 11 -~~~ -17943411 UP 12 -17943411 2048 2048 -17945337 DOWN 12 -17945337 0 2048 -17945386 UP 12 -17945386 2048 2048 -17951411 CLICK1 -17951411 CLICK2 -~~~ -~~~ -~~~ -17951429 2048 67110912 -~~~ -17951579 2048 2048 -17957761 DOWN 12 -17957761 0 2048 -~~~ -~~~ -17957779 0 0 -~~~ -~~~ -17957781 0 1 -~~~ -~~~ -17957783 0 3 -~~~ -~~~ -17957784 0 7 -~~~ -~~~ -17957786 0 15 -~~~ -~~~ -17957788 0 31 -~~~ -~~~ -17957790 0 63 -~~~ -~~~ -17957792 0 127 -~~~ -~~~ -17957794 0 255 -17957795 homeCount = 29 -17957795 waitCount = 14 -17957796 ripCount = 13 -17957796 locktype1 = 0 -17957797 locktype2 = 2 -17957817 locktype3 = 1 -17957818 goalCount = 5 -17957818 goalTotal = 15 -17957819 otherCount = 11 -~~~ -17957820 CURRENTGOAL IS [2] -~~~ -17957820 UP 12 -17957820 2048 255 -17957860 DOWN 12 -17957860 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17957900 homeCount = 29 -17957900 waitCount = 14 -17957901 ripCount = 13 -17957902 locktype1 = 0 -17957902 locktype2 = 2 -17957903 locktype3 = 1 -17957903 goalCount = 5 -17957903 goalTotal = 15 -17957904 otherCount = 11 -~~~ -17957905 CURRENTGOAL IS [2] -~~~ -17960837 UP 2 -17960837 2 255 -~~~ -~~~ -17960865 outer reward -~~~ -17960866 2 131327 -~~~ -~~~ -17960983 DOWN 2 -17960983 0 131327 -~~~ -~~~ -17961004 0 131326 -~~~ -~~~ -17961006 0 131324 -~~~ -~~~ -17961008 0 131320 -~~~ -~~~ -17961009 0 131312 -~~~ -~~~ -17961011 0 131296 -~~~ -~~~ -17961013 0 131264 -~~~ -~~~ -17961015 0 131200 -~~~ -~~~ -17961017 0 131072 -~~~ -~~~ -17961019 0 131584 -17961020 homeCount = 29 -17961020 waitCount = 14 -17961021 ripCount = 13 -17961042 locktype1 = 0 -17961042 locktype2 = 2 -17961043 locktype3 = 1 -17961043 goalCount = 6 -17961044 goalTotal = 16 -17961044 otherCount = 11 -~~~ -17961051 2 131584 -17961315 2 512 -17961832 DOWN 2 -17961832 0 512 -17961853 2 512 -17961968 DOWN 2 -17961968 0 512 -17961983 2 512 -17962107 DOWN 2 -17962107 0 512 -17962114 2 512 -17962230 DOWN 2 -17962230 0 512 -17962255 2 512 -17969076 DOWN 2 -17969076 0 512 -17969149 2 512 -17969179 DOWN 2 -17969179 0 512 -17973719 UP 10 -17973719 waslock = 0 -17973719 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17973748 512 16777728 -~~~ -17973898 512 512 -17978571 DOWN 10 -17978571 0 512 -~~~ -~~~ -17978594 0 1536 -~~~ -~~~ -17978596 0 1024 -17978597 homeCount = 30 -17978597 waitCount = 14 -17978598 ripCount = 13 -17978598 locktype1 = 0 -17978599 locktype2 = 2 -17978599 locktype3 = 1 -17978600 goalCount = 6 -17978600 goalTotal = 16 -17978601 otherCount = 11 -~~~ -17978622 UP 10 -17978622 waslock = 0 -17978622 512 1024 -~~~ -17978673 DOWN 10 -17978673 0 1024 -~~~ -~~~ -~~~ -~~~ -17978698 homeCount = 30 -17978699 waitCount = 14 -17978699 ripCount = 13 -17978700 locktype1 = 0 -17978700 locktype2 = 2 -17978701 locktype3 = 1 -17978701 goalCount = 6 -17978702 goalTotal = 16 -17978702 otherCount = 11 -~~~ -17980140 UP 11 -17980140 1024 1024 -17982129 DOWN 11 -17982129 0 1024 -17982145 UP 11 -17982145 1024 1024 -17987640 BEEP1 -17987640 BEEP2 -~~~ -~~~ -~~~ -17987665 1024 33555456 -~~~ -17987815 1024 1024 -17995055 DOWN 11 -17995055 0 1024 -~~~ -~~~ -17995073 0 0 -~~~ -~~~ -17995075 0 1 -~~~ -~~~ -17995077 0 3 -~~~ -~~~ -17995079 0 7 -~~~ -~~~ -17995081 0 15 -~~~ -~~~ -17995083 0 31 -~~~ -~~~ -17995084 0 63 -~~~ -~~~ -17995086 0 127 -~~~ -~~~ -17995088 0 255 -17995089 homeCount = 30 -17995090 waitCount = 14 -17995090 ripCount = 14 -17995091 locktype1 = 0 -17995112 locktype2 = 2 -17995112 locktype3 = 1 -17995113 goalCount = 6 -17995113 goalTotal = 16 -17995114 otherCount = 11 -~~~ -17995115 CURRENTGOAL IS [2] -~~~ -17999238 UP 2 -17999238 2 255 -~~~ -~~~ -17999256 outer reward -~~~ -17999256 2 131327 -~~~ -~~~ -17999414 DOWN 2 -17999414 0 131327 -~~~ -~~~ -17999435 0 131326 -~~~ -~~~ -17999437 0 131324 -~~~ -~~~ -17999438 0 131320 -~~~ -~~~ -17999440 0 131312 -~~~ -~~~ -17999442 0 131296 -~~~ -~~~ -17999444 0 131264 -~~~ -~~~ -17999446 0 131200 -~~~ -~~~ -17999448 0 131072 -~~~ -~~~ -17999449 0 131584 -17999451 homeCount = 30 -17999451 waitCount = 14 -17999452 ripCount = 14 -17999472 locktype1 = 0 -17999473 locktype2 = 2 -17999473 locktype3 = 1 -17999474 goalCount = 7 -17999474 goalTotal = 17 -17999475 otherCount = 11 -~~~ -17999475 2 131584 -17999706 2 512 -17999969 DOWN 2 -17999969 0 512 -17999988 2 512 -18000082 DOWN 2 -18000082 0 512 -18000121 2 512 -18000212 DOWN 2 -18000212 0 512 -18000243 2 512 -18000338 DOWN 2 -18000338 0 512 -18000379 2 512 -18000475 DOWN 2 -18000475 0 512 -18000502 2 512 -18001062 DOWN 2 -18001062 0 512 -18001075 2 512 -18006367 DOWN 2 -18006367 0 512 -18006392 2 512 -18006463 DOWN 2 -18006463 0 512 -18011267 UP 10 -18011267 waslock = 0 -18011267 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18011300 512 16777728 -~~~ -18011450 512 512 -18011639 DOWN 10 -18011639 0 512 -18011656 UP 10 -18011656 waslock = 0 -18011656 512 512 -~~~ -~~~ -18011664 512 1536 -~~~ -~~~ -18011666 512 1024 -18011667 homeCount = 31 -18011668 waitCount = 14 -18011668 ripCount = 14 -18011669 locktype1 = 0 -18011669 locktype2 = 2 -18011670 locktype3 = 1 -18011670 goalCount = 7 -18011671 goalTotal = 17 -18011671 otherCount = 11 -~~~ -~~~ -18014768 DOWN 10 -18014768 0 1024 -~~~ -~~~ -~~~ -~~~ -18014787 homeCount = 31 -18014788 waitCount = 14 -18014788 ripCount = 14 -18014789 locktype1 = 0 -18014789 locktype2 = 2 -18014789 locktype3 = 1 -18014790 goalCount = 7 -18014790 goalTotal = 17 -18014791 otherCount = 11 -~~~ -18014805 UP 10 -18014805 waslock = 0 -18014804 512 1024 -~~~ -18014873 DOWN 10 -18014873 0 1024 -~~~ -~~~ -~~~ -~~~ -18014898 homeCount = 31 -18014899 waitCount = 14 -18014899 ripCount = 14 -18014900 locktype1 = 0 -18014900 locktype2 = 2 -18014901 locktype3 = 1 -18014901 goalCount = 7 -18014902 goalTotal = 17 -18014902 otherCount = 11 -~~~ -18016371 UP 11 -18016371 1024 1024 -18019466 DOWN 11 -18019466 0 1024 -18019477 UP 11 -18019477 1024 1024 -18020371 BEEP1 -18020371 BEEP2 -~~~ -~~~ -~~~ -18020397 1024 33555456 -~~~ -18020547 1024 1024 -18025455 DOWN 11 -18025454 0 1024 -18025472 UP 11 -18025472 1024 1024 -~~~ -~~~ -18025475 1024 0 -~~~ -~~~ -18025477 1024 1 -~~~ -~~~ -18025479 1024 3 -~~~ -~~~ -18025480 1024 7 -~~~ -~~~ -18025482 1024 15 -~~~ -~~~ -18025484 1024 31 -~~~ -~~~ -18025486 1024 63 -~~~ -~~~ -18025488 1024 127 -~~~ -~~~ -18025490 1024 255 -18025491 homeCount = 31 -18025491 waitCount = 14 -18025492 ripCount = 15 -18025513 locktype1 = 0 -18025513 locktype2 = 2 -18025514 locktype3 = 1 -18025514 goalCount = 7 -18025514 goalTotal = 17 -18025515 otherCount = 11 -~~~ -18025516 CURRENTGOAL IS [2] -~~~ -18025534 DOWN 11 -18025534 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18025574 homeCount = 31 -18025574 waitCount = 14 -18025575 ripCount = 15 -18025575 locktype1 = 0 -18025576 locktype2 = 2 -18025576 locktype3 = 1 -18025577 goalCount = 7 -18025577 goalTotal = 17 -18025578 otherCount = 11 -~~~ -18025579 CURRENTGOAL IS [2] -~~~ -18025617 UP 11 -18025617 1024 255 -18028361 DOWN 11 -18028361 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18028404 homeCount = 31 -18028404 waitCount = 14 -18028405 ripCount = 15 -18028405 locktype1 = 0 -18028406 locktype2 = 2 -18028406 locktype3 = 1 -18028407 goalCount = 7 -18028407 goalTotal = 17 -18028408 otherCount = 11 -~~~ -18028409 CURRENTGOAL IS [2] -~~~ -18028430 UP 11 -18028430 1024 255 -18028451 DOWN 11 -18028451 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18028494 homeCount = 31 -18028494 waitCount = 14 -18028495 ripCount = 15 -18028495 locktype1 = 0 -18028496 locktype2 = 2 -18028496 locktype3 = 1 -18028497 goalCount = 7 -18028497 goalTotal = 17 -18028498 otherCount = 11 -~~~ -18028499 CURRENTGOAL IS [2] -~~~ -18032808 UP 2 -18032808 2 255 -~~~ -~~~ -18032831 outer reward -~~~ -18032831 2 131327 -~~~ -~~~ -18033013 DOWN 2 -18033013 0 131327 -~~~ -~~~ -18033039 0 131326 -~~~ -~~~ -18033040 0 131324 -~~~ -~~~ -18033042 0 131320 -~~~ -~~~ -18033044 0 131312 -~~~ -~~~ -18033046 0 131296 -~~~ -~~~ -18033048 0 131264 -~~~ -~~~ -18033050 0 131200 -~~~ -~~~ -18033051 0 131072 -~~~ -~~~ -18033053 0 131584 -18033054 homeCount = 31 -18033055 waitCount = 14 -18033055 ripCount = 15 -18033076 locktype1 = 0 -18033077 locktype2 = 2 -18033077 locktype3 = 1 -18033078 goalCount = 8 -18033078 goalTotal = 18 -18033079 otherCount = 11 -~~~ -18033079 2 131584 -18033281 2 512 -18033570 DOWN 2 -18033570 0 512 -18033590 2 512 -18033697 DOWN 2 -18033697 0 512 -18033720 2 512 -18033834 DOWN 2 -18033834 0 512 -18033851 2 512 -18033956 DOWN 2 -18033956 0 512 -18033979 2 512 -18034089 DOWN 2 -18034089 0 512 -18034108 2 512 -18034220 DOWN 2 -18034220 0 512 -18034238 2 512 -18034509 DOWN 2 -18034509 0 512 -18034533 2 512 -18043258 DOWN 2 -18043258 0 512 -18057543 UP 10 -18057543 waslock = 0 -18057543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18057574 512 16777728 -~~~ -18057724 512 512 -18062627 DOWN 10 -18062627 0 512 -~~~ -~~~ -18062649 0 2560 -~~~ -~~~ -18062651 0 2048 -18062652 homeCount = 32 -18062653 waitCount = 14 -18062653 ripCount = 15 -18062654 locktype1 = 0 -18062654 locktype2 = 2 -18062655 locktype3 = 1 -18062655 goalCount = 8 -18062656 goalTotal = 18 -18062656 otherCount = 11 -~~~ -18064275 UP 12 -18064275 2048 2048 -18065776 DOWN 12 -18065776 0 2048 -18065788 UP 12 -18065788 2048 2048 -18066962 DOWN 12 -18066962 0 2048 -18066982 UP 12 -18066982 2048 2048 -18069995 DOWN 12 -18069995 0 2048 -18070016 UP 12 -18070016 2048 2048 -18070275 CLICK1 -18070275 CLICK2 -~~~ -~~~ -~~~ -18070302 2048 67110912 -~~~ -18070452 2048 2048 -18076097 DOWN 12 -18076097 0 2048 -~~~ -~~~ -18076120 0 0 -~~~ -~~~ -18076122 0 1 -~~~ -18076123 UP 12 -18076123 2048 1 -~~~ -~~~ -18076125 2048 3 -~~~ -~~~ -18076127 2048 7 -~~~ -~~~ -18076128 2048 15 -~~~ -18076129 2048 31 -~~~ -~~~ -18076131 2048 63 -~~~ -~~~ -18076132 2048 127 -~~~ -~~~ -18076134 2048 255 -18076135 homeCount = 32 -18076156 waitCount = 15 -18076157 ripCount = 15 -18076157 locktype1 = 0 -18076158 locktype2 = 2 -18076158 locktype3 = 1 -18076159 goalCount = 8 -18076159 goalTotal = 18 -18076160 otherCount = 11 -~~~ -18076161 CURRENTGOAL IS [2] -~~~ -18076417 DOWN 12 -18076417 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076446 UP 12 -18076446 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076455 homeCount = 32 -18076456 waitCount = 15 -18076456 ripCount = 15 -18076457 locktype1 = 0 -18076457 locktype2 = 2 -18076458 locktype3 = 1 -18076458 goalCount = 8 -18076459 goalTotal = 18 -18076459 otherCount = 11 -~~~ -18076460 CURRENTGOAL IS [2] -~~~ -18076482 DOWN 12 -18076481 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076512 homeCount = 32 -18076512 waitCount = 15 -18076513 ripCount = 15 -18076513 locktype1 = 0 -18076514 locktype2 = 2 -18076514 locktype3 = 1 -18076515 goalCount = 8 -18076515 goalTotal = 18 -18076516 otherCount = 11 -~~~ -18076517 CURRENTGOAL IS [2] -~~~ -18076538 UP 12 -18076538 2048 255 -18078783 DOWN 12 -18078783 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078807 UP 12 -18078807 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078818 homeCount = 32 -18078818 waitCount = 15 -18078819 ripCount = 15 -18078819 locktype1 = 0 -18078820 locktype2 = 2 -18078820 locktype3 = 1 -18078821 goalCount = 8 -18078821 goalTotal = 18 -18078822 otherCount = 11 -~~~ -18078823 CURRENTGOAL IS [2] -~~~ -18078844 DOWN 12 -18078844 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078877 homeCount = 32 -18078878 waitCount = 15 -18078878 ripCount = 15 -18078879 locktype1 = 0 -18078879 locktype2 = 2 -18078880 locktype3 = 1 -18078880 goalCount = 8 -18078881 goalTotal = 18 -18078881 otherCount = 11 -~~~ -18078882 CURRENTGOAL IS [2] -~~~ -18082583 UP 2 -18082583 2 255 -~~~ -~~~ -18082608 outer reward -~~~ -18082608 2 131327 -~~~ -~~~ -18082618 DOWN 2 -18082618 0 131327 -~~~ -~~~ -18082642 0 131326 -~~~ -~~~ -18082644 0 131324 -~~~ -~~~ -18082646 0 131320 -~~~ -~~~ -18082647 0 131312 -~~~ -~~~ -18082649 0 131296 -~~~ -~~~ -18082651 0 131264 -~~~ -~~~ -18082653 0 131200 -~~~ -~~~ -18082655 0 131072 -~~~ -~~~ -18082657 0 131584 -18082658 homeCount = 32 -18082658 waitCount = 15 -18082659 ripCount = 15 -18082679 locktype1 = 0 -18082680 locktype2 = 2 -18082680 locktype3 = 1 -18082681 goalCount = 9 -18082681 goalTotal = 19 -18082682 otherCount = 11 -~~~ -18082682 2 131584 -18082895 DOWN 2 -18082895 0 131584 -18082932 2 131584 -18083058 2 512 -18083217 DOWN 2 -18083217 0 512 -18083238 2 512 -18083329 DOWN 2 -18083329 0 512 -18083357 2 512 -18083584 DOWN 2 -18083584 0 512 -18083594 2 512 -18083695 DOWN 2 -18083695 0 512 -18083729 2 512 -18083842 DOWN 2 -18083842 0 512 -18083852 2 512 -18089144 DOWN 2 -18089144 0 512 -18089198 2 512 -18089250 DOWN 2 -18089250 0 512 -18095222 UP 10 -18095222 waslock = 0 -18095222 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18095251 512 16777728 -~~~ -18095401 512 512 -18095403 DOWN 10 -18095403 0 512 -~~~ -~~~ -18095434 0 1536 -~~~ -~~~ -18095436 0 1024 -18095437 homeCount = 33 -18095437 waitCount = 15 -18095438 ripCount = 15 -18095438 locktype1 = 0 -18095439 locktype2 = 2 -18095439 locktype3 = 1 -18095440 goalCount = 9 -18095440 goalTotal = 19 -18095441 otherCount = 11 -~~~ -18095462 UP 10 -18095462 waslock = 0 -18095462 512 1024 -~~~ -18098815 DOWN 10 -18098815 0 1024 -~~~ -~~~ -~~~ -~~~ -18098837 homeCount = 33 -18098837 waitCount = 15 -18098838 ripCount = 15 -18098838 locktype1 = 0 -18098839 locktype2 = 2 -18098839 locktype3 = 1 -18098840 goalCount = 9 -18098840 goalTotal = 19 -18098841 otherCount = 11 -~~~ -18098841 UP 10 -18098842 waslock = 0 -18098841 512 1024 -~~~ -18098941 DOWN 10 -18098941 0 1024 -~~~ -~~~ -~~~ -~~~ -18098969 homeCount = 33 -18098969 waitCount = 15 -18098970 ripCount = 15 -18098970 locktype1 = 0 -18098971 locktype2 = 2 -18098971 locktype3 = 1 -18098972 goalCount = 9 -18098972 goalTotal = 19 -18098973 otherCount = 11 -~~~ -18100646 UP 11 -18100646 1024 1024 -18102966 DOWN 11 -18102966 0 1024 -18102978 UP 11 -18102978 1024 1024 -18104195 DOWN 11 -18104195 0 1024 -18104215 UP 11 -18104215 1024 1024 -18106646 BEEP1 -18106646 BEEP2 -~~~ -~~~ -~~~ -18106667 1024 33555456 -~~~ -18106817 1024 1024 -18106960 DOWN 11 -18106959 0 1024 -18107054 UP 11 -18107054 1024 1024 -~~~ -~~~ -18107351 1024 0 -~~~ -~~~ -18107353 1024 1 -~~~ -~~~ -18107355 1024 3 -~~~ -~~~ -18107357 1024 7 -~~~ -~~~ -18107359 1024 15 -~~~ -~~~ -18107361 1024 31 -~~~ -~~~ -18107362 1024 63 -~~~ -~~~ -18107364 1024 127 -~~~ -~~~ -18107366 1024 255 -18107367 homeCount = 33 -18107368 waitCount = 15 -18107368 ripCount = 16 -18107389 locktype1 = 0 -18107390 locktype2 = 2 -18107390 locktype3 = 1 -18107391 goalCount = 9 -18107391 goalTotal = 19 -18107392 otherCount = 11 -~~~ -18107393 CURRENTGOAL IS [2] -~~~ -18113951 DOWN 11 -18113951 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18113992 homeCount = 33 -18113993 waitCount = 15 -18113993 ripCount = 16 -18113994 locktype1 = 0 -18113994 locktype2 = 2 -18113995 locktype3 = 1 -18113995 goalCount = 9 -18113996 goalTotal = 19 -18113996 otherCount = 11 -~~~ -18113997 CURRENTGOAL IS [2] -~~~ -18114018 UP 11 -18114018 1024 255 -18114037 DOWN 11 -18114037 0 255 -18114051 UP 11 -18114051 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18114071 homeCount = 33 -18114072 waitCount = 15 -18114072 ripCount = 16 -18114073 locktype1 = 0 -18114073 locktype2 = 2 -18114074 locktype3 = 1 -18114074 goalCount = 9 -18114075 goalTotal = 19 -18114075 otherCount = 11 -~~~ -18114076 CURRENTGOAL IS [2] -~~~ -18115869 DOWN 11 -18115869 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18115903 homeCount = 33 -18115904 waitCount = 15 -18115904 ripCount = 16 -18115905 locktype1 = 0 -18115905 locktype2 = 2 -18115906 locktype3 = 1 -18115906 goalCount = 9 -18115907 goalTotal = 19 -18115907 otherCount = 11 -~~~ -18115908 CURRENTGOAL IS [2] -~~~ -18115930 UP 11 -18115929 1024 255 -18115962 DOWN 11 -18115962 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18116001 homeCount = 33 -18116002 waitCount = 15 -18116003 ripCount = 16 -18116003 locktype1 = 0 -18116004 locktype2 = 2 -18116004 locktype3 = 1 -18116005 goalCount = 9 -18116005 goalTotal = 19 -18116005 otherCount = 11 -~~~ -18116007 CURRENTGOAL IS [2] -~~~ -18119662 UP 2 -18119662 2 255 -~~~ -~~~ -18119689 outer reward -~~~ -18119690 2 131327 -~~~ -~~~ -18119694 outerreps = 6 -~~~ -~~~ -18119938 DOWN 2 -18119938 0 131327 -~~~ -~~~ -18119956 0 131326 -~~~ -~~~ -18119958 0 131324 -~~~ -~~~ -18119960 0 131320 -~~~ -~~~ -18119962 0 131312 -~~~ -~~~ -18119964 0 131296 -~~~ -~~~ -18119965 0 131264 -~~~ -~~~ -18119967 0 131200 -~~~ -~~~ -18119969 0 131072 -~~~ -~~~ -18119971 0 131584 -18119972 homeCount = 33 -18119972 waitCount = 15 -18119973 ripCount = 16 -18119994 locktype1 = 0 -18119995 locktype2 = 2 -18119995 locktype3 = 1 -18119996 goalCount = 0 -18119996 goalTotal = 20 -18119997 otherCount = 11 -~~~ -18119997 2 131584 -18120139 2 512 -18120369 DOWN 2 -18120369 0 512 -18120413 2 512 -18120500 DOWN 2 -18120500 0 512 -18120526 2 512 -18120623 DOWN 2 -18120623 0 512 -18120657 2 512 -18120748 DOWN 2 -18120748 0 512 -18120794 2 512 -18120885 DOWN 2 -18120885 0 512 -18120911 2 512 -18121020 DOWN 2 -18121020 0 512 -18121047 2 512 -18121152 DOWN 2 -18121152 0 512 -18121183 2 512 -18122677 DOWN 2 -18122677 0 512 -18122709 2 512 -18125125 DOWN 2 -18125125 0 512 -18125302 2 512 -18125328 DOWN 2 -18125328 0 512 -18125357 2 512 -18128345 DOWN 2 -18128345 0 512 -18128359 2 512 -18128526 DOWN 2 -18128525 0 512 -18128539 2 512 -18128866 DOWN 2 -18128866 0 512 -18133826 UP 10 -18133826 waslock = 0 -18133826 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18133854 512 16777728 -~~~ -18134004 512 512 -18139345 DOWN 10 -18139345 0 512 -~~~ -~~~ -18139368 0 2560 -~~~ -~~~ -18139370 0 2048 -18139371 homeCount = 34 -18139371 waitCount = 15 -18139372 ripCount = 16 -18139372 locktype1 = 0 -18139373 locktype2 = 2 -18139373 locktype3 = 1 -18139374 goalCount = 0 -18139374 goalTotal = 20 -18139375 otherCount = 11 -~~~ -18139396 UP 10 -18139396 waslock = 0 -18139396 512 2048 -~~~ -18139449 DOWN 10 -18139449 0 2048 -~~~ -~~~ -~~~ -~~~ -18139471 homeCount = 34 -18139471 waitCount = 15 -18139472 ripCount = 16 -18139472 locktype1 = 0 -18139473 locktype2 = 2 -18139473 locktype3 = 1 -18139474 goalCount = 0 -18139474 goalTotal = 20 -18139475 otherCount = 11 -~~~ -18141355 UP 12 -18141355 2048 2048 -18143540 DOWN 12 -18143540 0 2048 -18143589 UP 12 -18143589 2048 2048 -18144355 CLICK1 -18144355 CLICK2 -~~~ -~~~ -~~~ -18144383 2048 67110912 -~~~ -18144533 2048 2048 -18149565 DOWN 12 -18149565 0 2048 -18149572 UP 12 -18149572 2048 2048 -~~~ -~~~ -18149589 2048 0 -~~~ -~~~ -18149591 2048 1 -~~~ -~~~ -18149593 2048 3 -~~~ -~~~ -18149595 2048 7 -~~~ -~~~ -18149596 2048 15 -~~~ -~~~ -18149598 2048 31 -~~~ -~~~ -18149600 2048 63 -~~~ -~~~ -18149602 2048 127 -~~~ -~~~ -18149604 2048 255 -18149605 homeCount = 34 -18149605 waitCount = 16 -18149606 ripCount = 16 -18149627 locktype1 = 0 -18149627 locktype2 = 2 -18149628 locktype3 = 1 -18149628 goalCount = 0 -18149629 goalTotal = 20 -18149629 otherCount = 11 -~~~ -18149630 CURRENTGOAL IS [3] -~~~ -18149645 DOWN 12 -18149645 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18149687 homeCount = 34 -18149688 waitCount = 16 -18149688 ripCount = 16 -18149689 locktype1 = 0 -18149689 locktype2 = 2 -18149690 locktype3 = 1 -18149690 goalCount = 0 -18149691 goalTotal = 20 -18149691 otherCount = 11 -~~~ -18149692 CURRENTGOAL IS [3] -~~~ -18149746 UP 12 -18149746 2048 255 -18153121 DOWN 12 -18153121 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18153157 homeCount = 34 -18153158 waitCount = 16 -18153158 ripCount = 16 -18153159 locktype1 = 0 -18153159 locktype2 = 2 -18153160 locktype3 = 1 -18153160 goalCount = 0 -18153161 goalTotal = 20 -18153161 otherCount = 11 -~~~ -18153162 CURRENTGOAL IS [3] -~~~ -18155871 UP 2 -18155871 2 255 -~~~ -~~~ -18156143 DOWN 2 -18156143 0 255 -~~~ -~~~ -18156160 0 254 -~~~ -~~~ -18156162 0 252 -~~~ -~~~ -18156163 0 248 -~~~ -~~~ -18156165 0 240 -~~~ -~~~ -18156167 0 224 -~~~ -~~~ -18156169 0 192 -~~~ -~~~ -18156171 0 128 -~~~ -~~~ -18156172 0 0 -~~~ -~~~ -18156174 0 512 -18156175 homeCount = 34 -18156176 waitCount = 16 -18156176 ripCount = 16 -18156177 locktype1 = 0 -18156198 locktype2 = 2 -18156199 locktype3 = 1 -18156199 goalCount = 0 -18156200 goalTotal = 20 -18156200 otherCount = 12 -~~~ -18156201 2 512 -18156901 DOWN 2 -18156901 0 512 -18163599 UP 10 -18163599 waslock = 0 -18163599 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18163626 512 16777728 -18163628 DOWN 10 -18163628 0 16777728 -~~~ -~~~ -18163651 UP 10 -18163651 waslock = 0 -18163651 512 16777728 -~~~ -~~~ -~~~ -18163654 512 16778240 -18163655 homeCount = 35 -18163655 waitCount = 16 -18163656 ripCount = 16 -18163656 locktype1 = 0 -18163657 locktype2 = 2 -18163657 locktype3 = 1 -18163658 goalCount = 0 -18163679 goalTotal = 20 -18163679 otherCount = 12 -~~~ -~~~ -18163776 512 1024 -18168791 DOWN 10 -18168791 0 1024 -~~~ -~~~ -~~~ -~~~ -18168813 homeCount = 35 -18168814 waitCount = 16 -18168814 ripCount = 16 -18168815 locktype1 = 0 -18168815 locktype2 = 2 -18168816 locktype3 = 1 -18168816 goalCount = 0 -18168817 goalTotal = 20 -18168817 otherCount = 12 -~~~ -18170139 UP 11 -18170139 1024 1024 -18172433 DOWN 11 -18172433 0 1024 -18172442 UP 11 -18172442 1024 1024 -18174140 BEEP1 -18174140 BEEP2 -~~~ -~~~ -~~~ -18174161 1024 33555456 -~~~ -18174311 1024 1024 -18174484 DOWN 11 -18174484 0 1024 -18174503 UP 11 -18174503 1024 1024 -~~~ -~~~ -18174835 1024 0 -~~~ -~~~ -18174837 1024 1 -~~~ -~~~ -18174839 1024 3 -~~~ -~~~ -18174841 1024 7 -~~~ -~~~ -18174842 1024 15 -~~~ -~~~ -18174844 1024 31 -~~~ -~~~ -18174846 1024 63 -~~~ -~~~ -18174848 1024 127 -~~~ -~~~ -18174850 1024 255 -18174851 homeCount = 35 -18174851 waitCount = 16 -18174852 ripCount = 17 -18174873 locktype1 = 0 -18174873 locktype2 = 2 -18174874 locktype3 = 1 -18174874 goalCount = 0 -18174875 goalTotal = 20 -18174875 otherCount = 12 -~~~ -18174876 CURRENTGOAL IS [3] -~~~ -18179712 DOWN 11 -18179712 0 255 -18179726 UP 11 -18179726 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18179746 homeCount = 35 -18179747 waitCount = 16 -18179747 ripCount = 17 -18179748 locktype1 = 0 -18179748 locktype2 = 2 -18179749 locktype3 = 1 -18179749 goalCount = 0 -18179750 goalTotal = 20 -18179750 otherCount = 12 -~~~ -18179751 CURRENTGOAL IS [3] -~~~ -18179980 DOWN 11 -18179980 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18180007 UP 11 -18180007 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18180016 homeCount = 35 -18180017 waitCount = 16 -18180017 ripCount = 17 -18180018 locktype1 = 0 -18180018 locktype2 = 2 -18180019 locktype3 = 1 -18180019 goalCount = 0 -18180020 goalTotal = 20 -18180020 otherCount = 12 -~~~ -18180021 CURRENTGOAL IS [3] -~~~ -18182924 DOWN 11 -18182924 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18182966 homeCount = 35 -18182966 waitCount = 16 -18182967 ripCount = 17 -18182967 locktype1 = 0 -18182968 locktype2 = 2 -18182968 locktype3 = 1 -18182969 goalCount = 0 -18182969 goalTotal = 20 -18182970 otherCount = 12 -~~~ -18182971 CURRENTGOAL IS [3] -~~~ -18185764 UP 8 -18185764 128 255 -~~~ -~~~ -18185790 DOWN 8 -18185790 0 255 -~~~ -~~~ -18185804 0 254 -~~~ -~~~ -18185806 0 252 -~~~ -~~~ -18185808 0 248 -~~~ -~~~ -18185809 0 240 -~~~ -~~~ -18185811 0 224 -~~~ -~~~ -18185813 0 192 -~~~ -~~~ -18185815 0 128 -~~~ -~~~ -18185817 0 0 -~~~ -~~~ -18185819 0 512 -18185820 homeCount = 35 -18185820 waitCount = 16 -18185821 ripCount = 17 -18185821 locktype1 = 0 -18185842 locktype2 = 2 -18185843 locktype3 = 1 -18185843 goalCount = 0 -18185844 goalTotal = 20 -18185844 otherCount = 13 -~~~ -18185900 128 512 -18186287 DOWN 8 -18186287 0 512 -18186568 128 512 -18186592 DOWN 8 -18186592 0 512 -18196202 UP 10 -18196202 waslock = 0 -18196202 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18196229 512 16777728 -~~~ -18196378 512 512 -18200273 DOWN 10 -18200273 0 512 -~~~ -~~~ -18200292 0 1536 -~~~ -~~~ -18200294 0 1024 -18200295 homeCount = 36 -18200296 waitCount = 16 -18200296 ripCount = 17 -18200297 locktype1 = 0 -18200297 locktype2 = 2 -18200298 locktype3 = 1 -18200298 goalCount = 0 -18200299 goalTotal = 20 -18200299 otherCount = 13 -~~~ -18208210 UP 11 -18208210 1024 1024 -18208226 DOWN 11 -18208226 0 1024 -18208284 UP 11 -18208284 1024 1024 -18209774 DOWN 11 -18209774 0 1024 -18209820 UP 11 -18209820 1024 1024 -18210790 DOWN 11 -18210790 0 1024 -18210798 UP 11 -18210798 1024 1024 -18216211 BEEP1 -18216211 BEEP2 -~~~ -~~~ -~~~ -18216234 1024 33555456 -~~~ -18216384 1024 1024 -18223775 DOWN 11 -18223775 0 1024 -~~~ -~~~ -18223793 0 0 -~~~ -~~~ -18223795 0 1 -~~~ -~~~ -18223797 0 3 -~~~ -~~~ -18223798 0 7 -~~~ -~~~ -18223800 0 15 -~~~ -~~~ -18223802 0 31 -~~~ -~~~ -18223804 0 63 -~~~ -~~~ -18223806 0 127 -~~~ -~~~ -18223807 0 255 -18223808 homeCount = 36 -18223809 waitCount = 16 -18223810 ripCount = 18 -18223810 locktype1 = 0 -18223811 locktype2 = 2 -18223831 locktype3 = 1 -18223832 goalCount = 0 -18223832 goalTotal = 20 -18223833 otherCount = 13 -~~~ -18223834 CURRENTGOAL IS [3] -~~~ -18227228 UP 5 -18227228 16 255 -~~~ -18227252 DOWN 5 -18227252 0 255 -~~~ -~~~ -~~~ -18227283 0 254 -~~~ -~~~ -18227284 0 252 -~~~ -~~~ -18227286 0 248 -~~~ -~~~ -18227288 0 240 -~~~ -~~~ -18227290 0 224 -~~~ -~~~ -18227292 0 192 -~~~ -~~~ -18227294 0 128 -~~~ -~~~ -18227295 0 0 -~~~ -~~~ -18227297 0 512 -18227298 homeCount = 36 -18227299 waitCount = 16 -18227299 ripCount = 18 -18227300 locktype1 = 0 -18227321 locktype2 = 2 -18227321 locktype3 = 1 -18227322 goalCount = 0 -18227322 goalTotal = 20 -18227323 otherCount = 14 -~~~ -18227714 16 512 -18228137 DOWN 5 -18228137 0 512 -18235161 UP 10 -18235161 waslock = 0 -18235161 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18235189 512 16777728 -~~~ -18235339 512 512 -18235410 DOWN 10 -18235410 0 512 -18235431 UP 10 -18235431 waslock = 0 -18235431 512 512 -~~~ -~~~ -~~~ -18235434 512 1536 -~~~ -18235435 512 1024 -18235436 homeCount = 37 -18235436 waitCount = 16 -18235437 ripCount = 18 -18235437 locktype1 = 0 -18235438 locktype2 = 2 -18235438 locktype3 = 1 -18235460 goalCount = 0 -18235460 goalTotal = 20 -18235460 otherCount = 14 -~~~ -~~~ -18235511 DOWN 10 -18235511 0 1024 -~~~ -~~~ -~~~ -~~~ -18235536 homeCount = 37 -18235537 waitCount = 16 -18235537 ripCount = 18 -18235538 locktype1 = 0 -18235538 locktype2 = 2 -18235539 locktype3 = 1 -18235539 goalCount = 0 -18235540 goalTotal = 20 -18235540 otherCount = 14 -~~~ -18235607 UP 10 -18235607 waslock = 0 -18235607 512 1024 -~~~ -18239208 DOWN 10 -18239208 0 1024 -18239219 UP 10 -18239220 waslock = 0 -18239219 512 1024 -~~~ -~~~ -~~~ -~~~ -18239239 homeCount = 37 -18239239 waitCount = 16 -18239240 ripCount = 18 -18239240 locktype1 = 0 -18239241 locktype2 = 2 -18239241 locktype3 = 1 -18239242 goalCount = 0 -18239242 goalTotal = 20 -18239243 otherCount = 14 -~~~ -~~~ -18239327 DOWN 10 -18239327 0 1024 -~~~ -~~~ -~~~ -~~~ -18239348 homeCount = 37 -18239348 waitCount = 16 -18239349 ripCount = 18 -18239349 locktype1 = 0 -18239350 locktype2 = 2 -18239350 locktype3 = 1 -18239351 goalCount = 0 -18239351 goalTotal = 20 -18239352 otherCount = 14 -~~~ -18239392 UP 10 -18239393 waslock = 0 -18239392 512 1024 -18239414 DOWN 10 -18239414 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -18239439 homeCount = 37 -18239439 waitCount = 16 -18239440 ripCount = 18 -18239440 locktype1 = 0 -18239441 locktype2 = 2 -18239441 locktype3 = 1 -18239442 goalCount = 0 -18239442 goalTotal = 20 -18239443 otherCount = 14 -~~~ -18242195 UP 11 -18242195 1024 1024 -18242247 DOWN 11 -18242247 0 1024 -18242425 UP 11 -18242425 1024 1024 -18242444 DOWN 11 -18242444 0 1024 -18242544 UP 11 -18242544 1024 1024 -18245225 DOWN 11 -18245225 0 1024 -18245246 UP 11 -18245246 1024 1024 -18246696 BEEP1 -18246696 BEEP2 -~~~ -~~~ -~~~ -18246717 1024 33555456 -~~~ -18246867 1024 1024 -18252109 DOWN 11 -18252109 0 1024 -18252130 UP 11 -18252130 1024 1024 -~~~ -~~~ -18252136 1024 0 -~~~ -~~~ -18252138 1024 1 -~~~ -~~~ -18252140 1024 3 -~~~ -~~~ -18252142 1024 7 -~~~ -~~~ -18252144 1024 15 -~~~ -~~~ -18252145 1024 31 -~~~ -~~~ -18252147 1024 63 -~~~ -~~~ -18252149 1024 127 -~~~ -~~~ -18252151 1024 255 -18252152 homeCount = 37 -18252153 waitCount = 16 -18252153 ripCount = 19 -18252174 locktype1 = 0 -18252175 locktype2 = 2 -18252175 locktype3 = 1 -18252176 goalCount = 0 -18252176 goalTotal = 20 -18252177 otherCount = 14 -~~~ -18252178 CURRENTGOAL IS [3] -~~~ -18254872 DOWN 11 -18254872 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18254913 homeCount = 37 -18254913 waitCount = 16 -18254914 ripCount = 19 -18254914 locktype1 = 0 -18254915 locktype2 = 2 -18254915 locktype3 = 1 -18254916 goalCount = 0 -18254916 goalTotal = 20 -18254917 otherCount = 14 -~~~ -18254918 CURRENTGOAL IS [3] -~~~ -18258249 UP 4 -18258249 8 255 -~~~ -~~~ -18258276 DOWN 4 -18258276 0 255 -~~~ -~~~ -18258294 0 254 -~~~ -~~~ -18258296 0 252 -~~~ -~~~ -18258298 0 248 -~~~ -~~~ -18258300 0 240 -~~~ -~~~ -18258301 0 224 -~~~ -~~~ -18258303 0 192 -~~~ -~~~ -18258305 0 128 -~~~ -~~~ -18258307 0 0 -~~~ -~~~ -18258309 0 512 -18258310 homeCount = 37 -18258310 waitCount = 16 -18258311 ripCount = 19 -18258311 locktype1 = 0 -18258333 locktype2 = 2 -18258333 locktype3 = 1 -18258333 goalCount = 0 -18258334 goalTotal = 20 -18258334 otherCount = 15 -~~~ -18258335 8 512 -18259587 DOWN 4 -18259587 0 512 -18266478 UP 10 -18266478 waslock = 0 -18266477 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18266509 512 16777728 -~~~ -18266659 512 512 -18266771 DOWN 10 -18266771 0 512 -~~~ -~~~ -18266793 0 2560 -~~~ -~~~ -18266795 0 2048 -18266796 homeCount = 38 -18266796 waitCount = 16 -18266797 ripCount = 19 -18266797 locktype1 = 0 -18266798 locktype2 = 2 -18266798 locktype3 = 1 -18266799 goalCount = 0 -18266799 goalTotal = 20 -18266800 otherCount = 15 -~~~ -18266821 UP 10 -18266821 waslock = 0 -18266821 512 2048 -~~~ -18272909 DOWN 10 -18272909 0 2048 -~~~ -~~~ -~~~ -~~~ -18272936 homeCount = 38 -18272936 waitCount = 16 -18272937 ripCount = 19 -18272937 locktype1 = 0 -18272938 locktype2 = 2 -18272938 locktype3 = 1 -18272939 goalCount = 0 -18272939 goalTotal = 20 -18272940 otherCount = 15 -~~~ -18274852 UP 12 -18274852 2048 2048 -18278279 DOWN 12 -18278279 0 2048 -18278286 UP 12 -18278286 2048 2048 -18278290 DOWN 12 -18278290 0 2048 -18278305 UP 12 -18278305 2048 2048 -18281568 DOWN 12 -18281568 0 2048 -18281603 UP 12 -18281603 2048 2048 -18282352 CLICK1 -18282352 CLICK2 -~~~ -~~~ -~~~ -18282379 2048 67110912 -~~~ -18282529 2048 2048 -18288085 DOWN 12 -18288085 0 2048 -~~~ -~~~ -18288103 0 0 -~~~ -~~~ -18288105 0 1 -~~~ -18288106 UP 12 -18288106 2048 1 -~~~ -~~~ -~~~ -18288109 2048 7 -~~~ -~~~ -18288110 2048 15 -~~~ -~~~ -18288112 2048 31 -~~~ -~~~ -18288114 2048 63 -~~~ -~~~ -18288116 2048 127 -~~~ -~~~ -18288118 2048 255 -18288119 homeCount = 38 -18288119 waitCount = 17 -18288140 ripCount = 19 -18288140 locktype1 = 0 -18288141 locktype2 = 2 -18288141 locktype3 = 1 -18288142 goalCount = 0 -18288142 goalTotal = 20 -18288143 otherCount = 15 -~~~ -18288144 CURRENTGOAL IS [3] -~~~ -18288166 DOWN 12 -18288166 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18288203 homeCount = 38 -18288203 waitCount = 17 -18288204 ripCount = 19 -18288204 locktype1 = 0 -18288205 locktype2 = 2 -18288205 locktype3 = 1 -18288206 goalCount = 0 -18288206 goalTotal = 20 -18288207 otherCount = 15 -~~~ -18288208 CURRENTGOAL IS [3] -~~~ -18292311 UP 3 -18292311 4 255 -~~~ -~~~ -18292337 outer reward -~~~ -18292338 4 262399 -~~~ -~~~ -18292624 DOWN 3 -18292624 0 262399 -~~~ -~~~ -18292648 0 262398 -~~~ -~~~ -18292650 0 262396 -~~~ -~~~ -18292651 0 262392 -~~~ -~~~ -18292653 0 262384 -~~~ -~~~ -18292655 0 262368 -~~~ -18292656 4 262368 -~~~ -~~~ -18292658 4 262336 -~~~ -~~~ -18292660 4 262272 -~~~ -18292661 4 262144 -~~~ -~~~ -18292662 4 262656 -18292663 homeCount = 38 -18292684 waitCount = 17 -18292685 ripCount = 19 -18292685 locktype1 = 0 -18292686 locktype2 = 2 -18292686 locktype3 = 1 -18292687 goalCount = 1 -18292687 goalTotal = 21 -18292688 otherCount = 15 -~~~ -18292787 4 512 -18293056 DOWN 3 -18293056 0 512 -18293081 4 512 -18293179 DOWN 3 -18293179 0 512 -18293201 4 512 -18293306 DOWN 3 -18293306 0 512 -18293327 4 512 -18293431 DOWN 3 -18293431 0 512 -18293456 4 512 -18293561 DOWN 3 -18293561 0 512 -18293585 4 512 -18293698 DOWN 3 -18293698 0 512 -18293718 4 512 -18293833 DOWN 3 -18293833 0 512 -18293855 4 512 -18293976 DOWN 3 -18293976 0 512 -18293991 4 512 -18294119 DOWN 3 -18294119 0 512 -18294131 4 512 -18299516 DOWN 3 -18299516 0 512 -18299584 4 512 -18299611 DOWN 3 -18299611 0 512 -18305797 UP 10 -18305797 waslock = 0 -18305797 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18305825 512 16777728 -~~~ -18305975 512 512 -18311404 DOWN 10 -18311404 0 512 -~~~ -~~~ -18311429 0 1536 -~~~ -~~~ -18311431 0 1024 -18311432 homeCount = 39 -18311432 waitCount = 17 -18311433 ripCount = 19 -18311433 locktype1 = 0 -18311434 locktype2 = 2 -18311434 locktype3 = 1 -18311435 goalCount = 1 -18311435 goalTotal = 21 -18311436 otherCount = 15 -~~~ -18311457 UP 10 -18311457 waslock = 0 -18311457 512 1024 -~~~ -18311489 DOWN 10 -18311489 0 1024 -~~~ -~~~ -~~~ -~~~ -18311503 homeCount = 39 -18311503 waitCount = 17 -18311504 ripCount = 19 -18311504 locktype1 = 0 -18311505 locktype2 = 2 -18311505 locktype3 = 1 -18311506 goalCount = 1 -18311506 goalTotal = 21 -18311507 otherCount = 15 -~~~ -18313122 UP 11 -18313122 1024 1024 -18322122 BEEP1 -18322122 BEEP2 -~~~ -~~~ -~~~ -18322144 1024 33555456 -~~~ -18322294 1024 1024 -18326944 DOWN 11 -18326944 0 1024 -18326951 UP 11 -18326951 1024 1024 -~~~ -~~~ -18326969 1024 0 -~~~ -~~~ -18326971 1024 1 -~~~ -~~~ -18326973 1024 3 -~~~ -~~~ -18326975 1024 7 -~~~ -~~~ -18326976 1024 15 -~~~ -~~~ -18326978 1024 31 -~~~ -~~~ -18326980 1024 63 -~~~ -~~~ -18326982 1024 127 -~~~ -~~~ -18326984 1024 255 -18326985 homeCount = 39 -18326985 waitCount = 17 -18326986 ripCount = 20 -18327007 locktype1 = 0 -18327007 locktype2 = 2 -18327008 locktype3 = 1 -18327008 goalCount = 1 -18327009 goalTotal = 21 -18327009 otherCount = 15 -~~~ -18327010 CURRENTGOAL IS [3] -~~~ -18327218 DOWN 11 -18327218 0 255 -~~~ -~~~ -~~~ -18327242 UP 11 -18327242 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18327257 homeCount = 39 -18327257 waitCount = 17 -18327258 ripCount = 20 -18327258 locktype1 = 0 -18327259 locktype2 = 2 -18327259 locktype3 = 1 -18327260 goalCount = 1 -18327260 goalTotal = 21 -18327261 otherCount = 15 -~~~ -18327262 CURRENTGOAL IS [3] -~~~ -18330417 DOWN 11 -18330417 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18330460 homeCount = 39 -18330461 waitCount = 17 -18330461 ripCount = 20 -18330462 locktype1 = 0 -18330462 locktype2 = 2 -18330463 locktype3 = 1 -18330463 goalCount = 1 -18330464 goalTotal = 21 -18330464 otherCount = 15 -~~~ -18330465 CURRENTGOAL IS [3] -~~~ -18335296 UP 2 -18335296 2 255 -~~~ -~~~ -18335330 DOWN 2 -18335330 0 255 -~~~ -18335345 2 255 -~~~ -~~~ -18335347 2 254 -~~~ -~~~ -18335348 2 252 -~~~ -18335350 2 248 -~~~ -~~~ -18335351 2 240 -~~~ -~~~ -18335353 2 224 -~~~ -~~~ -18335355 2 192 -~~~ -~~~ -18335357 2 128 -~~~ -~~~ -18335358 2 0 -~~~ -~~~ -18335360 2 512 -18335361 homeCount = 39 -18335362 waitCount = 17 -18335362 ripCount = 20 -18335384 locktype1 = 0 -18335384 locktype2 = 2 -18335385 locktype3 = 1 -18335385 goalCount = 1 -18335385 goalTotal = 21 -18335386 otherCount = 16 -~~~ -18335768 DOWN 2 -18335768 0 512 -18335780 2 512 -18336120 DOWN 2 -18336120 0 512 -18336346 2 512 -18336362 DOWN 2 -18336362 0 512 -18336949 2 512 -18337029 DOWN 2 -18337029 0 512 -18340544 UP 10 -18340544 waslock = 0 -18340544 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18340570 512 16777728 -~~~ -18340720 512 512 -18344340 DOWN 10 -18344340 0 512 -~~~ -~~~ -18344365 0 2560 -~~~ -~~~ -18344367 0 2048 -18344368 homeCount = 40 -18344368 waitCount = 17 -18344369 ripCount = 20 -18344369 locktype1 = 0 -18344370 locktype2 = 2 -18344370 locktype3 = 1 -18344371 goalCount = 1 -18344371 goalTotal = 21 -18344372 otherCount = 16 -~~~ -18344393 UP 10 -18344393 waslock = 0 -18344393 512 2048 -~~~ -18344426 DOWN 10 -18344426 0 2048 -~~~ -~~~ -~~~ -~~~ -18344451 homeCount = 40 -18344451 waitCount = 17 -18344452 ripCount = 20 -18344452 locktype1 = 0 -18344453 locktype2 = 2 -18344453 locktype3 = 1 -18344454 goalCount = 1 -18344454 goalTotal = 21 -18344455 otherCount = 16 -~~~ -18346034 UP 12 -18346034 2048 2048 -18353034 CLICK1 -18353034 CLICK2 -~~~ -~~~ -~~~ -18353058 2048 67110912 -~~~ -18353208 2048 2048 -18353356 DOWN 12 -18353356 0 2048 -~~~ -~~~ -18353377 0 0 -~~~ -~~~ -18353379 0 1 -~~~ -~~~ -18353381 0 3 -~~~ -~~~ -18353383 0 7 -~~~ -~~~ -18353385 0 15 -~~~ -~~~ -18353387 0 31 -~~~ -~~~ -18353388 0 63 -~~~ -~~~ -18353390 0 127 -~~~ -~~~ -18353392 0 255 -18353393 homeCount = 40 -18353394 waitCount = 18 -18353394 ripCount = 20 -18353395 locktype1 = 0 -18353395 locktype2 = 2 -18353416 locktype3 = 1 -18353417 goalCount = 1 -18353417 goalTotal = 21 -18353418 otherCount = 16 -~~~ -18353419 CURRENTGOAL IS [3] -~~~ -18353419 UP 12 -18353419 2048 255 -18359231 DOWN 12 -18359231 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18359273 homeCount = 40 -18359274 waitCount = 18 -18359274 ripCount = 20 -18359275 locktype1 = 0 -18359276 locktype2 = 2 -18359276 locktype3 = 1 -18359276 goalCount = 1 -18359277 goalTotal = 21 -18359277 otherCount = 16 -~~~ -18359279 CURRENTGOAL IS [3] -~~~ -18359318 UP 12 -18359318 2048 255 -18359326 DOWN 12 -18359326 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18359353 homeCount = 40 -18359354 waitCount = 18 -18359354 ripCount = 20 -18359355 locktype1 = 0 -18359355 locktype2 = 2 -18359356 locktype3 = 1 -18359356 goalCount = 1 -18359357 goalTotal = 21 -18359357 otherCount = 16 -~~~ -18359358 CURRENTGOAL IS [3] -~~~ -18367152 UP 10 -18367152 waslock = 0 -18367152 512 255 -~~~ -18367170 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18367178 512 254 -~~~ -~~~ -18367180 512 252 -~~~ -~~~ -18367181 512 248 -~~~ -~~~ -18367183 512 240 -~~~ -~~~ -18367185 512 224 -~~~ -~~~ -18367187 512 192 -~~~ -~~~ -18367189 512 128 -~~~ -~~~ -18367191 512 0 -~~~ -~~~ -~~~ -18367431 0 0 -18367494 512 0 -18368467 0 0 -18370070 512 0 -18370115 0 0 -18390750 512 0 -18390835 0 0 -18390853 512 0 -18391792 0 0 -18391867 512 0 -18392170 LOCKEND -~~~ -~~~ -~~~ -18392191 512 512 -18392406 DOWN 10 -18392406 0 512 -18392474 UP 10 -18392474 waslock = 0 -18392474 512 512 -18392493 DOWN 10 -18392493 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18392519 0 16777728 -~~~ -~~~ -~~~ -18392522 0 16778752 -~~~ -~~~ -18392524 0 16778240 -18392525 homeCount = 41 -18392525 waitCount = 18 -18392526 ripCount = 20 -18392526 locktype1 = 0 -18392527 locktype2 = 3 -18392527 locktype3 = 1 -18392528 goalCount = 1 -18392528 goalTotal = 21 -18392529 otherCount = 16 -~~~ -18392654 UP 10 -18392654 waslock = 0 -18392654 512 16778240 -18392669 512 1024 -~~~ -18392693 DOWN 10 -18392693 0 1024 -~~~ -~~~ -~~~ -~~~ -18392714 homeCount = 41 -18392715 waitCount = 18 -18392715 ripCount = 20 -18392716 locktype1 = 0 -18392716 locktype2 = 3 -18392717 locktype3 = 1 -18392717 goalCount = 1 -18392718 goalTotal = 21 -18392718 otherCount = 16 -~~~ -18392893 UP 10 -18392894 waslock = 0 -18392893 512 1024 -~~~ -18399200 DOWN 10 -18399200 0 1024 -~~~ -~~~ -~~~ -~~~ -18399223 homeCount = 41 -18399224 waitCount = 18 -18399224 ripCount = 20 -18399225 locktype1 = 0 -18399225 locktype2 = 3 -18399226 locktype3 = 1 -18399226 goalCount = 1 -18399227 goalTotal = 21 -18399227 otherCount = 16 -~~~ -18399231 UP 10 -18399231 waslock = 0 -18399231 512 1024 -~~~ -18399278 DOWN 10 -18399278 0 1024 -~~~ -~~~ -~~~ -~~~ -18399297 homeCount = 41 -18399297 waitCount = 18 -18399298 ripCount = 20 -18399298 locktype1 = 0 -18399299 locktype2 = 3 -18399299 locktype3 = 1 -18399300 goalCount = 1 -18399300 goalTotal = 21 -18399301 otherCount = 16 -~~~ -18402849 UP 11 -18402849 1024 1024 -18403841 DOWN 11 -18403841 0 1024 -18403876 UP 11 -18403876 1024 1024 -18404665 DOWN 11 -18404665 0 1024 -18404719 UP 11 -18404719 1024 1024 -18405850 BEEP1 -18405850 BEEP2 -~~~ -~~~ -~~~ -18405873 1024 33555456 -~~~ -18406023 1024 1024 -18411287 DOWN 11 -18411286 0 1024 -~~~ -~~~ -18411311 0 0 -~~~ -~~~ -18411313 0 1 -~~~ -~~~ -18411315 0 3 -~~~ -~~~ -18411317 UP 11 -18411317 1024 7 -~~~ -~~~ -18411319 1024 15 -~~~ -~~~ -18411320 1024 31 -~~~ -~~~ -18411322 1024 63 -~~~ -~~~ -18411324 1024 127 -~~~ -~~~ -18411326 1024 255 -18411327 homeCount = 41 -18411327 waitCount = 18 -18411349 ripCount = 21 -18411349 locktype1 = 0 -18411349 locktype2 = 3 -18411350 locktype3 = 1 -18411350 goalCount = 1 -18411351 goalTotal = 21 -18411352 otherCount = 16 -~~~ -18411353 CURRENTGOAL IS [3] -~~~ -18411418 DOWN 11 -18411418 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18411461 homeCount = 41 -18411461 waitCount = 18 -18411462 ripCount = 21 -18411462 locktype1 = 0 -18411463 locktype2 = 3 -18411463 locktype3 = 1 -18411464 goalCount = 1 -18411464 goalTotal = 21 -18411465 otherCount = 16 -~~~ -18411466 CURRENTGOAL IS [3] -~~~ -18411487 UP 11 -18411487 1024 255 -18411552 DOWN 11 -18411552 0 255 -18411570 UP 11 -18411570 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18411606 homeCount = 41 -18411606 waitCount = 18 -18411607 ripCount = 21 -18411607 locktype1 = 0 -18411608 locktype2 = 3 -18411608 locktype3 = 1 -18411609 goalCount = 1 -18411609 goalTotal = 21 -18411610 otherCount = 16 -~~~ -18411611 CURRENTGOAL IS [3] -~~~ -18413548 DOWN 11 -18413548 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18413589 homeCount = 41 -18413590 waitCount = 18 -18413590 ripCount = 21 -18413591 locktype1 = 0 -18413591 locktype2 = 3 -18413592 locktype3 = 1 -18413592 goalCount = 1 -18413593 goalTotal = 21 -18413593 otherCount = 16 -~~~ -18413594 CURRENTGOAL IS [3] -~~~ -18413618 UP 11 -18413618 1024 255 -18413653 DOWN 11 -18413653 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18413689 homeCount = 41 -18413690 waitCount = 18 -18413691 ripCount = 21 -18413691 locktype1 = 0 -18413692 locktype2 = 3 -18413692 locktype3 = 1 -18413693 goalCount = 1 -18413693 goalTotal = 21 -18413694 otherCount = 16 -~~~ -18413695 CURRENTGOAL IS [3] -~~~ -18427752 UP 3 -18427752 4 255 -~~~ -~~~ -18427780 outer reward -~~~ -18427781 4 262399 -~~~ -~~~ -18428037 DOWN 3 -18428037 0 262399 -~~~ -~~~ -18428056 0 262398 -~~~ -~~~ -18428057 0 262396 -~~~ -~~~ -18428059 0 262392 -~~~ -~~~ -18428061 0 262384 -~~~ -~~~ -18428063 0 262368 -~~~ -~~~ -18428065 0 262336 -~~~ -~~~ -18428067 0 262272 -~~~ -~~~ -18428068 0 262144 -~~~ -~~~ -18428070 0 262656 -18428071 homeCount = 41 -18428072 waitCount = 18 -18428072 ripCount = 21 -18428093 locktype1 = 0 -18428094 locktype2 = 3 -18428094 locktype3 = 1 -18428095 goalCount = 2 -18428095 goalTotal = 22 -18428096 otherCount = 16 -~~~ -18428096 4 262656 -18428230 4 512 -18428443 DOWN 3 -18428443 0 512 -18428476 4 512 -18428561 DOWN 3 -18428561 0 512 -18428599 4 512 -18428685 DOWN 3 -18428685 0 512 -18428724 4 512 -18428808 DOWN 3 -18428808 0 512 -18428850 4 512 -18428934 DOWN 3 -18428934 0 512 -18428970 4 512 -18429072 DOWN 3 -18429072 0 512 -18429100 4 512 -18429211 DOWN 3 -18429211 0 512 -18429239 4 512 -18429351 DOWN 3 -18429351 0 512 -18429374 4 512 -18429495 DOWN 3 -18429495 0 512 -18429514 4 512 -18429638 DOWN 3 -18429638 0 512 -18429655 4 512 -18435540 DOWN 3 -18435540 0 512 -18435579 4 512 -18435628 DOWN 3 -18435628 0 512 -18441200 UP 10 -18441200 waslock = 0 -18441200 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18441225 512 16777728 -~~~ -18441375 512 512 -18446646 DOWN 10 -18446646 0 512 -18446663 UP 10 -18446663 waslock = 0 -18446663 512 512 -~~~ -~~~ -18446669 512 1536 -~~~ -~~~ -18446671 512 1024 -18446672 homeCount = 42 -18446673 waitCount = 18 -18446673 ripCount = 21 -18446674 locktype1 = 0 -18446674 locktype2 = 3 -18446675 locktype3 = 1 -18446675 goalCount = 2 -18446676 goalTotal = 22 -18446676 otherCount = 16 -~~~ -~~~ -18446731 DOWN 10 -18446731 0 1024 -~~~ -~~~ -~~~ -~~~ -18446752 homeCount = 42 -18446752 waitCount = 18 -18446753 ripCount = 21 -18446753 locktype1 = 0 -18446754 locktype2 = 3 -18446754 locktype3 = 1 -18446755 goalCount = 2 -18446755 goalTotal = 22 -18446756 otherCount = 16 -~~~ -18449519 UP 11 -18449519 1024 1024 -18449878 DOWN 11 -18449878 0 1024 -18450078 LOCKOUT 3 -~~~ -18450101 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -18450105 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18463180 UP 1 -18463180 1 0 -18465562 DOWN 1 -18465562 0 0 -18465583 1 0 -18465670 DOWN 1 -18465670 0 0 -18465744 1 0 -18465767 DOWN 1 -18465767 0 0 -18475101 LOCKEND -~~~ -~~~ -~~~ -18475120 0 512 -18476607 UP 10 -18476608 waslock = 0 -18476607 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18476638 512 16777728 -~~~ -18476788 512 512 -18476832 DOWN 10 -18476832 0 512 -18476847 UP 10 -18476848 waslock = 0 -18476847 512 512 -~~~ -~~~ -18476852 512 2560 -~~~ -~~~ -18476854 512 2048 -18476855 homeCount = 43 -18476855 waitCount = 18 -18476856 ripCount = 21 -18476856 locktype1 = 0 -18476857 locktype2 = 3 -18476857 locktype3 = 2 -18476858 goalCount = 2 -18476858 goalTotal = 22 -18476859 otherCount = 16 -~~~ -~~~ -18477271 DOWN 10 -18477271 0 2048 -~~~ -~~~ -~~~ -~~~ -18477297 homeCount = 43 -18477297 waitCount = 18 -18477298 ripCount = 21 -18477298 locktype1 = 0 -18477299 locktype2 = 3 -18477299 locktype3 = 2 -18477299 goalCount = 2 -18477300 goalTotal = 22 -18477300 otherCount = 16 -~~~ -18477304 UP 10 -18477305 waslock = 0 -18477304 512 2048 -~~~ -18480504 DOWN 10 -18480503 0 2048 -~~~ -~~~ -~~~ -~~~ -18480533 homeCount = 43 -18480533 waitCount = 18 -18480534 ripCount = 21 -18480534 locktype1 = 0 -18480535 locktype2 = 3 -18480535 locktype3 = 2 -18480535 goalCount = 2 -18480536 goalTotal = 22 -18480536 otherCount = 16 -~~~ -18486382 UP 12 -18486382 2048 2048 -18489050 DOWN 12 -18489050 0 2048 -18489054 UP 12 -18489054 2048 2048 -18489417 DOWN 12 -18489417 0 2048 -18489429 UP 12 -18489429 2048 2048 -18492382 CLICK1 -18492382 CLICK2 -~~~ -~~~ -~~~ -18492402 2048 67110912 -~~~ -18492552 2048 2048 -18499697 DOWN 12 -18499697 0 2048 -~~~ -~~~ -18499721 0 0 -~~~ -~~~ -18499722 0 1 -~~~ -~~~ -18499724 0 3 -~~~ -~~~ -18499726 0 7 -~~~ -~~~ -18499728 0 15 -~~~ -~~~ -18499730 0 31 -~~~ -~~~ -18499731 0 63 -~~~ -~~~ -18499733 0 127 -~~~ -~~~ -18499735 0 255 -18499736 homeCount = 43 -18499737 waitCount = 19 -18499737 ripCount = 21 -18499738 locktype1 = 0 -18499738 locktype2 = 3 -18499759 locktype3 = 2 -18499759 goalCount = 2 -18499760 goalTotal = 22 -18499760 otherCount = 16 -~~~ -18499761 CURRENTGOAL IS [3] -~~~ -18499762 UP 12 -18499762 2048 255 -18499791 DOWN 12 -18499791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18499824 homeCount = 43 -18499824 waitCount = 19 -18499825 ripCount = 21 -18499825 locktype1 = 0 -18499826 locktype2 = 3 -18499826 locktype3 = 2 -18499827 goalCount = 2 -18499827 goalTotal = 22 -18499828 otherCount = 16 -~~~ -18499829 CURRENTGOAL IS [3] -~~~ -18503006 UP 3 -18503006 4 255 -~~~ -~~~ -18503026 outer reward -~~~ -18503026 4 262399 -~~~ -~~~ -18503213 DOWN 3 -18503213 0 262399 -~~~ -~~~ -18503234 0 262398 -~~~ -~~~ -18503236 0 262396 -~~~ -~~~ -18503238 0 262392 -~~~ -~~~ -18503240 0 262384 -~~~ -~~~ -18503242 0 262368 -~~~ -~~~ -18503243 0 262336 -~~~ -~~~ -18503245 0 262272 -~~~ -~~~ -18503247 0 262144 -~~~ -~~~ -18503249 0 262656 -18503250 homeCount = 43 -18503250 waitCount = 19 -18503251 ripCount = 21 -18503272 locktype1 = 0 -18503273 locktype2 = 3 -18503273 locktype3 = 2 -18503274 goalCount = 3 -18503274 goalTotal = 23 -18503275 otherCount = 16 -~~~ -18503279 4 262656 -18503402 DOWN 3 -18503402 0 262656 -18503448 4 262656 -18503476 4 512 -18503554 DOWN 3 -18503554 0 512 -18503589 4 512 -18504212 DOWN 3 -18504212 0 512 -18504219 4 512 -18504339 DOWN 3 -18504339 0 512 -18504353 4 512 -18504473 DOWN 3 -18504473 0 512 -18504487 4 512 -18504613 DOWN 3 -18504613 0 512 -18504623 4 512 -18511674 DOWN 3 -18511674 0 512 -18516945 UP 10 -18516945 waslock = 0 -18516944 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18516972 512 16777728 -~~~ -18517021 DOWN 10 -18517021 0 16777728 -~~~ -~~~ -18517045 0 16779776 -~~~ -~~~ -18517047 0 16779264 -18517048 homeCount = 44 -18517049 waitCount = 19 -18517049 ripCount = 21 -18517050 locktype1 = 0 -18517050 locktype2 = 3 -18517051 locktype3 = 2 -18517051 goalCount = 3 -18517052 goalTotal = 23 -18517052 otherCount = 16 -~~~ -18517073 UP 10 -18517073 waslock = 0 -18517073 512 16779264 -~~~ -18517122 512 2048 -18517244 DOWN 10 -18517244 0 2048 -~~~ -~~~ -~~~ -~~~ -18517267 homeCount = 44 -18517268 waitCount = 19 -18517268 ripCount = 21 -18517269 locktype1 = 0 -18517269 locktype2 = 3 -18517270 locktype3 = 2 -18517270 goalCount = 3 -18517271 goalTotal = 23 -18517271 otherCount = 16 -~~~ -18517332 UP 10 -18517332 waslock = 0 -18517332 512 2048 -~~~ -18523840 DOWN 10 -18523840 0 2048 -~~~ -~~~ -~~~ -~~~ -18523866 homeCount = 44 -18523867 waitCount = 19 -18523867 ripCount = 21 -18523868 locktype1 = 0 -18523868 locktype2 = 3 -18523869 locktype3 = 2 -18523869 goalCount = 3 -18523870 goalTotal = 23 -18523870 otherCount = 16 -~~~ -18523918 UP 10 -18523918 waslock = 0 -18523918 512 2048 -~~~ -18523968 DOWN 10 -18523968 0 2048 -~~~ -~~~ -~~~ -~~~ -18524000 homeCount = 44 -18524000 waitCount = 19 -18524001 ripCount = 21 -18524001 locktype1 = 0 -18524002 locktype2 = 3 -18524002 locktype3 = 2 -18524003 goalCount = 3 -18524003 goalTotal = 23 -18524004 otherCount = 16 -~~~ -18526588 UP 12 -18526588 2048 2048 -18528844 DOWN 12 -18528844 0 2048 -18528979 UP 12 -18528979 2048 2048 -18530361 DOWN 12 -18530361 0 2048 -18530370 UP 12 -18530370 2048 2048 -18533589 CLICK1 -18533589 CLICK2 -~~~ -~~~ -~~~ -18533616 2048 67110912 -~~~ -18533766 2048 2048 -18539900 DOWN 12 -18539900 0 2048 -18539915 UP 12 -18539915 2048 2048 -~~~ -~~~ -18539936 2048 0 -~~~ -~~~ -18539938 2048 1 -~~~ -~~~ -18539940 2048 3 -~~~ -~~~ -18539942 2048 7 -~~~ -~~~ -18539944 2048 15 -~~~ -~~~ -18539945 2048 31 -~~~ -~~~ -18539947 2048 63 -~~~ -~~~ -18539949 2048 127 -~~~ -~~~ -18539951 2048 255 -18539952 homeCount = 44 -18539952 waitCount = 20 -18539953 ripCount = 21 -18539974 locktype1 = 0 -18539974 locktype2 = 3 -18539975 locktype3 = 2 -18539975 goalCount = 3 -18539976 goalTotal = 23 -18539976 otherCount = 16 -~~~ -18539978 CURRENTGOAL IS [3] -~~~ -18539978 DOWN 12 -18539978 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18540031 homeCount = 44 -18540031 waitCount = 20 -18540032 ripCount = 21 -18540032 locktype1 = 0 -18540033 locktype2 = 3 -18540033 locktype3 = 2 -18540034 goalCount = 3 -18540034 goalTotal = 23 -18540035 otherCount = 16 -~~~ -18540036 CURRENTGOAL IS [3] -~~~ -18540070 UP 12 -18540070 2048 255 -18541775 DOWN 12 -18541775 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18541811 homeCount = 44 -18541811 waitCount = 20 -18541812 ripCount = 21 -18541812 locktype1 = 0 -18541813 locktype2 = 3 -18541813 locktype3 = 2 -18541814 goalCount = 3 -18541814 goalTotal = 23 -18541815 otherCount = 16 -~~~ -18541816 CURRENTGOAL IS [3] -~~~ -18546659 UP 3 -18546659 4 255 -18546682 DOWN 3 -18546682 0 255 -~~~ -~~~ -18546687 outer reward -~~~ -18546687 0 262399 -~~~ -~~~ -~~~ -~~~ -18546705 0 262398 -~~~ -~~~ -18546707 0 262396 -~~~ -~~~ -18546708 0 262392 -~~~ -~~~ -18546710 0 262384 -~~~ -~~~ -18546712 0 262368 -~~~ -~~~ -18546714 0 262336 -~~~ -~~~ -18546716 0 262272 -~~~ -~~~ -18546718 0 262144 -~~~ -~~~ -18546720 0 262656 -18546721 homeCount = 44 -18546721 waitCount = 20 -18546722 ripCount = 21 -18546743 locktype1 = 0 -18546743 locktype2 = 3 -18546744 locktype3 = 2 -18546744 goalCount = 4 -18546745 goalTotal = 24 -18546745 otherCount = 16 -~~~ -18546749 4 262656 -18546765 DOWN 3 -18546765 0 262656 -18546772 4 262656 -18547009 DOWN 3 -18547009 0 262656 -18547054 4 262656 -18547137 4 512 -18547322 DOWN 3 -18547322 0 512 -18547332 4 512 -18547439 DOWN 3 -18547439 0 512 -18547461 4 512 -18547566 DOWN 3 -18547566 0 512 -18547594 4 512 -18547707 DOWN 3 -18547707 0 512 -18547728 4 512 -18547850 DOWN 3 -18547850 0 512 -18547867 4 512 -18547995 DOWN 3 -18547995 0 512 -18548006 4 512 -18548140 DOWN 3 -18548140 0 512 -18548148 4 512 -18554299 DOWN 3 -18554299 0 512 -18554342 4 512 -18554410 DOWN 3 -18554410 0 512 -18559726 UP 10 -18559727 waslock = 0 -18559726 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18559752 512 16777728 -~~~ -18559902 512 512 -18559951 DOWN 10 -18559951 0 512 -18559967 UP 10 -18559967 waslock = 0 -18559967 512 512 -~~~ -~~~ -18559990 512 2560 -~~~ -~~~ -18559992 512 2048 -18559993 homeCount = 45 -18559994 waitCount = 20 -18559994 ripCount = 21 -18559995 locktype1 = 0 -18559995 locktype2 = 3 -18559996 locktype3 = 2 -18559996 goalCount = 4 -18559997 goalTotal = 24 -18559997 otherCount = 16 -~~~ -~~~ -18564270 DOWN 10 -18564270 0 2048 -~~~ -~~~ -~~~ -~~~ -18564299 homeCount = 45 -18564299 waitCount = 20 -18564300 ripCount = 21 -18564300 locktype1 = 0 -18564301 locktype2 = 3 -18564301 locktype3 = 2 -18564302 goalCount = 4 -18564302 goalTotal = 24 -18564303 otherCount = 16 -~~~ -18564342 UP 10 -18564343 waslock = 0 -18564342 512 2048 -18564366 DOWN 10 -18564366 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -18564389 homeCount = 45 -18564389 waitCount = 20 -18564390 ripCount = 21 -18564390 locktype1 = 0 -18564391 locktype2 = 3 -18564391 locktype3 = 2 -18564392 goalCount = 4 -18564392 goalTotal = 24 -18564393 otherCount = 16 -~~~ -18567704 UP 12 -18567704 2048 2048 -18569618 DOWN 12 -18569618 0 2048 -18569670 UP 12 -18569670 2048 2048 -18570808 DOWN 12 -18570808 0 2048 -18570818 UP 12 -18570818 2048 2048 -18572697 DOWN 12 -18572697 0 2048 -18572719 UP 12 -18572719 2048 2048 -18576704 CLICK1 -18576704 CLICK2 -~~~ -~~~ -~~~ -18576729 2048 67110912 -~~~ -18576879 2048 2048 -18583757 DOWN 12 -18583757 0 2048 -~~~ -~~~ -18583777 0 0 -~~~ -~~~ -18583779 0 1 -~~~ -~~~ -18583781 0 3 -~~~ -~~~ -18583783 0 7 -~~~ -~~~ -18583785 0 15 -~~~ -~~~ -18583786 0 31 -~~~ -~~~ -18583788 0 63 -~~~ -~~~ -18583790 0 127 -~~~ -~~~ -18583792 0 255 -18583793 homeCount = 45 -18583793 waitCount = 21 -18583794 ripCount = 21 -18583794 locktype1 = 0 -18583815 locktype2 = 3 -18583816 locktype3 = 2 -18583816 goalCount = 4 -18583817 goalTotal = 24 -18583817 otherCount = 16 -~~~ -18583819 CURRENTGOAL IS [3] -~~~ -18587416 UP 3 -18587416 4 255 -~~~ -~~~ -18587438 outer reward -~~~ -18587438 4 262399 -~~~ -~~~ -18587710 DOWN 3 -18587710 0 262399 -~~~ -~~~ -18587736 0 262398 -~~~ -~~~ -18587738 0 262396 -~~~ -~~~ -18587739 0 262392 -~~~ -~~~ -18587741 0 262384 -~~~ -~~~ -18587743 0 262368 -~~~ -~~~ -18587745 0 262336 -~~~ -~~~ -18587747 0 262272 -~~~ -~~~ -18587748 0 262144 -~~~ -~~~ -18587750 0 262656 -18587752 homeCount = 45 -18587752 waitCount = 21 -18587753 ripCount = 21 -18587774 locktype1 = 0 -18587774 locktype2 = 3 -18587775 locktype3 = 2 -18587775 goalCount = 5 -18587776 goalTotal = 25 -18587776 otherCount = 16 -~~~ -18587777 4 262656 -18587888 4 512 -18588129 DOWN 3 -18588129 0 512 -18588142 4 512 -18588388 DOWN 3 -18588388 0 512 -18588399 4 512 -18588514 DOWN 3 -18588514 0 512 -18588530 4 512 -18588647 DOWN 3 -18588647 0 512 -18588665 4 512 -18588781 DOWN 3 -18588781 0 512 -18588798 4 512 -18593276 DOWN 3 -18593276 0 512 -18593288 4 512 -18596652 DOWN 3 -18596652 0 512 -18602809 UP 10 -18602809 waslock = 0 -18602809 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18602835 512 16777728 -~~~ -18602985 512 512 -18606263 DOWN 10 -18606263 0 512 -~~~ -~~~ -18606286 0 2560 -~~~ -~~~ -18606288 0 2048 -18606289 homeCount = 46 -18606290 waitCount = 21 -18606290 ripCount = 21 -18606291 locktype1 = 0 -18606291 locktype2 = 3 -18606292 locktype3 = 2 -18606292 goalCount = 5 -18606293 goalTotal = 25 -18606293 otherCount = 16 -~~~ -18608915 UP 12 -18608915 2048 2048 -18610847 DOWN 12 -18610847 0 2048 -18610865 UP 12 -18610865 2048 2048 -18616415 CLICK1 -18616415 CLICK2 -~~~ -~~~ -~~~ -18616441 2048 67110912 -~~~ -18616590 2048 2048 -18621494 DOWN 12 -18621494 0 2048 -~~~ -~~~ -18621517 0 0 -~~~ -~~~ -18621519 0 1 -~~~ -~~~ -18621521 0 3 -~~~ -~~~ -18621522 0 7 -~~~ -~~~ -18621524 0 15 -~~~ -~~~ -18621526 0 31 -~~~ -~~~ -18621528 0 63 -~~~ -~~~ -18621530 0 127 -~~~ -~~~ -18621532 0 255 -18621533 homeCount = 46 -18621533 waitCount = 22 -18621534 ripCount = 21 -18621534 locktype1 = 0 -18621535 locktype2 = 3 -18621556 locktype3 = 2 -18621556 goalCount = 5 -18621557 goalTotal = 25 -18621557 otherCount = 16 -~~~ -18621558 CURRENTGOAL IS [3] -~~~ -18621560 UP 12 -18621560 2048 255 -18621597 DOWN 12 -18621597 0 255 -18621612 UP 12 -18621612 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18621629 DOWN 12 -18621629 0 255 -~~~ -~~~ -18621631 homeCount = 46 -18621632 waitCount = 22 -18621632 ripCount = 21 -18621633 locktype1 = 0 -18621633 locktype2 = 3 -18621634 locktype3 = 2 -18621634 goalCount = 5 -18621635 goalTotal = 25 -18621635 otherCount = 16 -~~~ -18621657 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18621682 homeCount = 46 -18621682 waitCount = 22 -18621683 ripCount = 21 -18621683 locktype1 = 0 -18621684 locktype2 = 3 -18621684 locktype3 = 2 -18621685 goalCount = 5 -18621685 goalTotal = 25 -18621686 otherCount = 16 -~~~ -18621687 CURRENTGOAL IS [3] -~~~ -18624994 UP 3 -18624994 4 255 -~~~ -~~~ -18625017 outer reward -~~~ -18625018 4 262399 -~~~ -~~~ -18625215 DOWN 3 -18625215 0 262399 -~~~ -~~~ -18625239 0 262398 -~~~ -~~~ -18625241 0 262396 -~~~ -~~~ -18625243 0 262392 -~~~ -~~~ -18625244 0 262384 -~~~ -~~~ -18625246 0 262368 -~~~ -~~~ -18625248 0 262336 -~~~ -~~~ -18625250 0 262272 -~~~ -~~~ -18625252 0 262144 -~~~ -~~~ -18625254 0 262656 -18625255 homeCount = 46 -18625255 waitCount = 22 -18625256 ripCount = 21 -18625277 locktype1 = 0 -18625277 locktype2 = 3 -18625278 locktype3 = 2 -18625278 goalCount = 6 -18625279 goalTotal = 26 -18625279 otherCount = 16 -~~~ -18625280 4 262656 -18625467 4 512 -18625771 DOWN 3 -18625771 0 512 -18625792 4 512 -18625894 DOWN 3 -18625894 0 512 -18625916 4 512 -18626018 DOWN 3 -18626018 0 512 -18626045 4 512 -18626149 DOWN 3 -18626149 0 512 -18626175 4 512 -18626293 DOWN 3 -18626293 0 512 -18626309 4 512 -18626446 DOWN 3 -18626446 0 512 -18626455 4 512 -18626598 DOWN 3 -18626598 0 512 -18626604 4 512 -18628358 DOWN 3 -18628358 0 512 -18628374 4 512 -18633219 DOWN 3 -18633219 0 512 -18633229 4 512 -18633558 DOWN 3 -18633558 0 512 -18640894 UP 10 -18640895 waslock = 0 -18640894 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18640921 512 16777728 -~~~ -18641071 512 512 -18641125 DOWN 10 -18641125 0 512 -~~~ -~~~ -18641147 0 1536 -~~~ -~~~ -18641149 0 1024 -18641150 homeCount = 47 -18641151 waitCount = 22 -18641151 ripCount = 21 -18641152 locktype1 = 0 -18641152 locktype2 = 3 -18641152 locktype3 = 2 -18641153 goalCount = 6 -18641153 goalTotal = 26 -18641154 otherCount = 16 -~~~ -18641175 UP 10 -18641175 waslock = 0 -18641175 512 1024 -~~~ -18644766 DOWN 10 -18644766 0 1024 -~~~ -~~~ -~~~ -~~~ -18644789 homeCount = 47 -18644790 waitCount = 22 -18644790 ripCount = 21 -18644791 locktype1 = 0 -18644791 locktype2 = 3 -18644792 locktype3 = 2 -18644792 goalCount = 6 -18644793 goalTotal = 26 -18644793 otherCount = 16 -~~~ -18644817 UP 10 -18644817 waslock = 0 -18644817 512 1024 -~~~ -18644873 DOWN 10 -18644873 0 1024 -~~~ -~~~ -~~~ -~~~ -18644899 homeCount = 47 -18644900 waitCount = 22 -18644900 ripCount = 21 -18644901 locktype1 = 0 -18644901 locktype2 = 3 -18644902 locktype3 = 2 -18644902 goalCount = 6 -18644903 goalTotal = 26 -18644903 otherCount = 16 -~~~ -18647367 UP 11 -18647367 1024 1024 -18647805 DOWN 11 -18647805 0 1024 -18647964 UP 11 -18647964 1024 1024 -18648007 DOWN 11 -18648007 0 1024 -18648039 UP 11 -18648039 1024 1024 -18649073 DOWN 11 -18649073 0 1024 -18649104 UP 11 -18649104 1024 1024 -18650368 BEEP1 -18650368 BEEP2 -~~~ -~~~ -~~~ -18650388 1024 33555456 -~~~ -18650538 1024 1024 -18658120 DOWN 11 -18658120 0 1024 -~~~ -~~~ -18658145 0 0 -~~~ -~~~ -18658147 0 1 -~~~ -~~~ -18658149 0 3 -~~~ -~~~ -18658150 0 7 -~~~ -~~~ -18658152 0 15 -~~~ -~~~ -18658154 0 31 -~~~ -18658155 UP 11 -18658155 1024 31 -~~~ -~~~ -18658157 1024 63 -~~~ -~~~ -18658159 1024 127 -~~~ -18658160 1024 255 -18658161 homeCount = 47 -18658162 waitCount = 22 -18658183 ripCount = 22 -18658183 locktype1 = 0 -18658184 locktype2 = 3 -18658184 locktype3 = 2 -18658185 goalCount = 6 -18658185 goalTotal = 26 -18658186 otherCount = 16 -~~~ -18658187 CURRENTGOAL IS [3] -~~~ -18658213 DOWN 11 -18658213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -18658239 UP 11 -18658239 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18658251 DOWN 11 -18658250 0 255 -18658252 homeCount = 47 -18658252 waitCount = 22 -18658253 ripCount = 22 -18658253 locktype1 = 0 -18658254 locktype2 = 3 -18658254 locktype3 = 2 -18658255 goalCount = 6 -18658255 goalTotal = 26 -18658256 otherCount = 16 -~~~ -18658278 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18658306 homeCount = 47 -18658307 waitCount = 22 -18658307 ripCount = 22 -18658308 locktype1 = 0 -18658308 locktype2 = 3 -18658309 locktype3 = 2 -18658309 goalCount = 6 -18658310 goalTotal = 26 -18658310 otherCount = 16 -~~~ -18658311 CURRENTGOAL IS [3] -~~~ -18658333 UP 11 -18658332 1024 255 -18660179 DOWN 11 -18660179 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18660213 homeCount = 47 -18660214 waitCount = 22 -18660214 ripCount = 22 -18660215 locktype1 = 0 -18660215 locktype2 = 3 -18660216 locktype3 = 2 -18660216 goalCount = 6 -18660217 goalTotal = 26 -18660217 otherCount = 16 -~~~ -18660218 CURRENTGOAL IS [3] -~~~ -18669161 UP 4 -18669161 8 255 -~~~ -~~~ -18669847 DOWN 4 -18669847 0 255 -~~~ -~~~ -18669867 0 254 -~~~ -~~~ -18669869 0 252 -~~~ -~~~ -18669871 0 248 -~~~ -~~~ -18669873 0 240 -~~~ -~~~ -18669874 0 224 -~~~ -~~~ -18669876 0 192 -~~~ -~~~ -18669878 0 128 -~~~ -~~~ -18669880 0 0 -~~~ -~~~ -18669882 0 512 -18669883 homeCount = 47 -18669883 waitCount = 22 -18669884 ripCount = 22 -18669884 locktype1 = 0 -18669906 locktype2 = 3 -18669906 locktype3 = 2 -18669907 goalCount = 6 -18669907 goalTotal = 26 -18669907 otherCount = 17 -~~~ -18675216 UP 10 -18675217 waslock = 0 -18675216 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18675244 512 16777728 -~~~ -18675394 512 512 -18675464 DOWN 10 -18675464 0 512 -~~~ -~~~ -18675487 0 1536 -~~~ -~~~ -18675489 0 1024 -18675490 homeCount = 48 -18675491 waitCount = 22 -18675491 ripCount = 22 -18675492 locktype1 = 0 -18675492 locktype2 = 3 -18675493 locktype3 = 2 -18675493 goalCount = 6 -18675494 goalTotal = 26 -18675494 otherCount = 17 -~~~ -18675516 UP 10 -18675516 waslock = 0 -18675516 512 1024 -~~~ -18678929 DOWN 10 -18678929 0 1024 -~~~ -~~~ -~~~ -~~~ -18678952 homeCount = 48 -18678953 waitCount = 22 -18678953 ripCount = 22 -18678954 locktype1 = 0 -18678954 locktype2 = 3 -18678955 locktype3 = 2 -18678955 goalCount = 6 -18678956 goalTotal = 26 -18678956 otherCount = 17 -~~~ -18680811 UP 11 -18680810 1024 1024 -18683346 DOWN 11 -18683346 0 1024 -18683354 UP 11 -18683354 1024 1024 -18683811 BEEP1 -18683811 BEEP2 -~~~ -~~~ -~~~ -18683831 1024 33555456 -~~~ -18683981 1024 1024 -18690848 DOWN 11 -18690848 0 1024 -~~~ -~~~ -18690870 0 0 -~~~ -~~~ -18690872 0 1 -~~~ -~~~ -18690874 0 3 -~~~ -~~~ -18690876 0 7 -~~~ -~~~ -18690878 0 15 -~~~ -~~~ -18690879 0 31 -~~~ -~~~ -18690881 0 63 -~~~ -~~~ -18690883 0 127 -~~~ -~~~ -18690885 0 255 -18690886 homeCount = 48 -18690886 waitCount = 22 -18690887 ripCount = 23 -18690888 locktype1 = 0 -18690888 locktype2 = 3 -18690909 locktype3 = 2 -18690909 goalCount = 6 -18690910 goalTotal = 26 -18690910 otherCount = 17 -~~~ -18690911 CURRENTGOAL IS [3] -~~~ -18690912 UP 11 -18690912 1024 255 -18690951 DOWN 11 -18690951 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18690988 homeCount = 48 -18690989 waitCount = 22 -18690989 ripCount = 23 -18690990 locktype1 = 0 -18690990 locktype2 = 3 -18690991 locktype3 = 2 -18690991 goalCount = 6 -18690992 goalTotal = 26 -18690992 otherCount = 17 -~~~ -18690993 CURRENTGOAL IS [3] -~~~ -18691033 UP 11 -18691033 1024 255 -18693082 DOWN 11 -18693082 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18693117 homeCount = 48 -18693118 waitCount = 22 -18693118 ripCount = 23 -18693119 locktype1 = 0 -18693119 locktype2 = 3 -18693120 locktype3 = 2 -18693120 goalCount = 6 -18693121 goalTotal = 26 -18693121 otherCount = 17 -~~~ -18693123 CURRENTGOAL IS [3] -~~~ -18698599 UP 2 -18698599 2 255 -~~~ -~~~ -18699845 DOWN 2 -18699845 0 255 -~~~ -~~~ -18699870 0 254 -~~~ -~~~ -18699872 0 252 -~~~ -~~~ -18699874 0 248 -~~~ -~~~ -18699876 0 240 -~~~ -~~~ -18699877 0 224 -~~~ -~~~ -18699879 0 192 -~~~ -~~~ -18699881 0 128 -~~~ -~~~ -18699883 0 0 -~~~ -~~~ -18699885 0 512 -18699886 homeCount = 48 -18699886 waitCount = 22 -18699887 ripCount = 23 -18699887 locktype1 = 0 -18699908 locktype2 = 3 -18699908 locktype3 = 2 -18699909 goalCount = 6 -18699909 goalTotal = 26 -18699910 otherCount = 18 -~~~ -18699963 2 512 -18700182 DOWN 2 -18700182 0 512 -18700384 2 512 -18700951 DOWN 2 -18700951 0 512 -18704490 UP 10 -18704491 waslock = 0 -18704490 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18704517 512 16777728 -~~~ -18704667 512 512 -18704708 DOWN 10 -18704708 0 512 -~~~ -~~~ -18704735 0 2560 -~~~ -~~~ -18704737 0 2048 -18704738 homeCount = 49 -18704738 waitCount = 22 -18704739 ripCount = 23 -18704739 locktype1 = 0 -18704740 locktype2 = 3 -18704740 locktype3 = 2 -18704741 goalCount = 6 -18704741 goalTotal = 26 -18704741 otherCount = 18 -~~~ -18704814 UP 10 -18704814 waslock = 0 -18704814 512 2048 -~~~ -18710733 DOWN 10 -18710733 0 2048 -18710750 UP 10 -18710750 waslock = 0 -18710750 512 2048 -~~~ -~~~ -~~~ -~~~ -18710758 homeCount = 49 -18710759 waitCount = 22 -18710759 ripCount = 23 -18710760 locktype1 = 0 -18710760 locktype2 = 3 -18710761 locktype3 = 2 -18710761 goalCount = 6 -18710762 goalTotal = 26 -18710762 otherCount = 18 -~~~ -~~~ -18710824 DOWN 10 -18710824 0 2048 -~~~ -~~~ -~~~ -~~~ -18710848 homeCount = 49 -18710848 waitCount = 22 -18710849 ripCount = 23 -18710849 locktype1 = 0 -18710850 locktype2 = 3 -18710850 locktype3 = 2 -18710851 goalCount = 6 -18710851 goalTotal = 26 -18710852 otherCount = 18 -~~~ -18712891 UP 12 -18712891 2048 2048 -18714448 DOWN 12 -18714448 0 2048 -18714495 UP 12 -18714495 2048 2048 -18719953 DOWN 12 -18719953 0 2048 -18719966 UP 12 -18719966 2048 2048 -18721892 CLICK1 -18721892 CLICK2 -~~~ -~~~ -~~~ -18721916 2048 67110912 -~~~ -18722066 2048 2048 -18727895 DOWN 12 -18727895 0 2048 -~~~ -~~~ -18727917 0 0 -~~~ -~~~ -18727919 0 1 -~~~ -~~~ -18727921 0 3 -~~~ -~~~ -18727923 0 7 -~~~ -~~~ -18727925 0 15 -~~~ -~~~ -18727926 0 31 -~~~ -~~~ -18727928 0 63 -~~~ -~~~ -18727930 0 127 -~~~ -~~~ -18727932 0 255 -18727933 homeCount = 49 -18727933 waitCount = 23 -18727934 ripCount = 23 -18727934 locktype1 = 0 -18727935 locktype2 = 3 -18727956 locktype3 = 2 -18727956 goalCount = 6 -18727957 goalTotal = 26 -18727957 otherCount = 18 -~~~ -18727958 CURRENTGOAL IS [3] -~~~ -18727959 UP 12 -18727959 2048 255 -18727992 DOWN 12 -18727992 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18728034 homeCount = 49 -18728035 waitCount = 23 -18728035 ripCount = 23 -18728036 locktype1 = 0 -18728036 locktype2 = 3 -18728037 locktype3 = 2 -18728037 goalCount = 6 -18728038 goalTotal = 26 -18728038 otherCount = 18 -~~~ -18728039 CURRENTGOAL IS [3] -~~~ -18755525 UP 10 -18755525 waslock = 0 -18755525 512 255 -~~~ -18755550 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18755557 512 254 -~~~ -~~~ -18755559 512 252 -~~~ -~~~ -18755561 512 248 -~~~ -~~~ -18755563 512 240 -~~~ -~~~ -18755565 512 224 -~~~ -~~~ -18755566 512 192 -~~~ -~~~ -18755568 512 128 -~~~ -~~~ -18755570 512 0 -~~~ -~~~ -~~~ -18755790 0 0 -18755827 512 0 -18756881 0 0 -18756920 512 0 -18756992 0 0 -18757067 512 0 -18757128 0 0 -18757165 512 0 -18757749 0 0 -18757778 512 0 -18757848 0 0 -18779443 UP 2 -18779443 2 0 -18779457 DOWN 2 -18779457 0 0 -18779539 2 0 -18779749 DOWN 2 -18779749 0 0 -18780550 LOCKEND -~~~ -~~~ -~~~ -18780570 0 512 -18787322 UP 10 -18787322 waslock = 0 -18787322 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18787355 512 16777728 -~~~ -18787505 512 512 -18787570 DOWN 10 -18787570 0 512 -~~~ -~~~ -18787590 0 2560 -~~~ -~~~ -18787592 0 2048 -18787593 homeCount = 50 -18787593 waitCount = 23 -18787594 ripCount = 23 -18787594 locktype1 = 0 -18787595 locktype2 = 4 -18787595 locktype3 = 2 -18787596 goalCount = 6 -18787596 goalTotal = 26 -18787597 otherCount = 18 -~~~ -18787721 UP 10 -18787721 waslock = 0 -18787721 512 2048 -~~~ -18788131 DOWN 10 -18788130 0 2048 -~~~ -~~~ -~~~ -~~~ -18788152 homeCount = 50 -18788153 waitCount = 23 -18788153 ripCount = 23 -18788154 locktype1 = 0 -18788155 locktype2 = 4 -18788155 locktype3 = 2 -18788156 goalCount = 6 -18788156 goalTotal = 26 -18788156 otherCount = 18 -~~~ -18788200 UP 10 -18788200 waslock = 0 -18788200 512 2048 -~~~ -18788239 DOWN 10 -18788239 0 2048 -~~~ -~~~ -~~~ -~~~ -18788265 homeCount = 50 -18788265 waitCount = 23 -18788266 ripCount = 23 -18788266 locktype1 = 0 -18788267 locktype2 = 4 -18788267 locktype3 = 2 -18788268 goalCount = 6 -18788268 goalTotal = 26 -18788269 otherCount = 18 -~~~ -18788360 UP 10 -18788360 waslock = 0 -18788360 512 2048 -~~~ -18788394 DOWN 10 -18788394 0 2048 -~~~ -~~~ -~~~ -~~~ -18788420 homeCount = 50 -18788420 waitCount = 23 -18788421 ripCount = 23 -18788421 locktype1 = 0 -18788422 locktype2 = 4 -18788422 locktype3 = 2 -18788423 goalCount = 6 -18788423 goalTotal = 26 -18788424 otherCount = 18 -~~~ -18788497 UP 10 -18788497 waslock = 0 -18788497 512 2048 -~~~ -18792370 DOWN 10 -18792370 0 2048 -~~~ -~~~ -~~~ -~~~ -18792392 homeCount = 50 -18792393 waitCount = 23 -18792393 ripCount = 23 -18792394 locktype1 = 0 -18792394 locktype2 = 4 -18792395 locktype3 = 2 -18792395 goalCount = 6 -18792396 goalTotal = 26 -18792396 otherCount = 18 -~~~ -18794314 UP 12 -18794314 2048 2048 -18798314 CLICK1 -18798314 CLICK2 -~~~ -~~~ -~~~ -18798335 2048 67110912 -~~~ -18798485 2048 2048 -18798830 DOWN 12 -18798830 0 2048 -~~~ -~~~ -18798852 0 0 -~~~ -~~~ -18798854 0 1 -~~~ -~~~ -18798856 0 3 -~~~ -~~~ -18798858 0 7 -~~~ -~~~ -18798860 0 15 -~~~ -~~~ -18798861 0 31 -~~~ -~~~ -18798863 0 63 -~~~ -~~~ -18798865 0 127 -~~~ -~~~ -18798867 0 255 -18798868 homeCount = 50 -18798868 waitCount = 24 -18798869 ripCount = 23 -18798869 locktype1 = 0 -18798870 locktype2 = 4 -18798891 locktype3 = 2 -18798891 goalCount = 6 -18798892 goalTotal = 26 -18798892 otherCount = 18 -~~~ -18798893 CURRENTGOAL IS [3] -~~~ -18799141 UP 12 -18799141 2048 255 -18805238 DOWN 12 -18805238 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18805280 homeCount = 50 -18805281 waitCount = 24 -18805281 ripCount = 23 -18805282 locktype1 = 0 -18805282 locktype2 = 4 -18805283 locktype3 = 2 -18805283 goalCount = 6 -18805284 goalTotal = 26 -18805284 otherCount = 18 -~~~ -18805285 CURRENTGOAL IS [3] -~~~ -18816138 UP 3 -18816138 4 255 -~~~ -~~~ -18816163 outer reward -~~~ -18816164 4 262399 -~~~ -~~~ -18816446 DOWN 3 -18816446 0 262399 -~~~ -~~~ -18816472 0 262398 -~~~ -~~~ -18816474 0 262396 -~~~ -~~~ -18816476 0 262392 -~~~ -~~~ -18816477 0 262384 -~~~ -~~~ -18816479 0 262368 -~~~ -~~~ -18816481 0 262336 -~~~ -~~~ -18816483 0 262272 -~~~ -~~~ -18816485 0 262144 -~~~ -~~~ -18816487 0 262656 -18816488 homeCount = 50 -18816488 waitCount = 24 -18816489 ripCount = 23 -18816510 locktype1 = 0 -18816510 locktype2 = 4 -18816511 locktype3 = 2 -18816511 goalCount = 7 -18816512 goalTotal = 27 -18816512 otherCount = 18 -~~~ -18816513 4 262656 -18816613 4 512 -18816865 DOWN 3 -18816865 0 512 -18816894 4 512 -18816982 DOWN 3 -18816982 0 512 -18817017 4 512 -18817107 DOWN 3 -18817107 0 512 -18817140 4 512 -18817244 DOWN 3 -18817244 0 512 -18817270 4 512 -18817376 DOWN 3 -18817376 0 512 -18817404 4 512 -18817518 DOWN 3 -18817518 0 512 -18817544 4 512 -18817665 DOWN 3 -18817665 0 512 -18817685 4 512 -18817810 DOWN 3 -18817810 0 512 -18817828 4 512 -18817959 DOWN 3 -18817959 0 512 -18817972 4 512 -18818112 DOWN 3 -18818112 0 512 -18818118 4 512 -18824909 DOWN 3 -18824909 0 512 -18824934 4 512 -18825030 DOWN 3 -18825030 0 512 -18825078 4 512 -18825125 DOWN 3 -18825125 0 512 -18830803 UP 10 -18830803 waslock = 0 -18830803 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18830828 512 16777728 -~~~ -18830978 512 512 -18831044 DOWN 10 -18831044 0 512 -~~~ -~~~ -18831064 0 1536 -~~~ -~~~ -18831066 0 1024 -18831067 homeCount = 51 -18831068 waitCount = 24 -18831068 ripCount = 23 -18831069 locktype1 = 0 -18831069 locktype2 = 4 -18831070 locktype3 = 2 -18831070 goalCount = 7 -18831071 goalTotal = 27 -18831071 otherCount = 18 -~~~ -18831092 UP 10 -18831093 waslock = 0 -18831092 512 1024 -~~~ -18838139 DOWN 10 -18838139 0 1024 -~~~ -~~~ -~~~ -~~~ -18838168 homeCount = 51 -18838169 waitCount = 24 -18838169 ripCount = 23 -18838170 locktype1 = 0 -18838170 locktype2 = 4 -18838171 locktype3 = 2 -18838171 goalCount = 7 -18838172 goalTotal = 27 -18838172 otherCount = 18 -~~~ -18840028 UP 11 -18840028 1024 1024 -18843430 DOWN 11 -18843430 0 1024 -18843441 UP 11 -18843441 1024 1024 -18844015 DOWN 11 -18844015 0 1024 -18844035 UP 11 -18844035 1024 1024 -18844730 DOWN 11 -18844730 0 1024 -18844737 UP 11 -18844737 1024 1024 -18844739 DOWN 11 -18844739 0 1024 -18844762 UP 11 -18844762 1024 1024 -18846028 BEEP1 -18846028 BEEP2 -~~~ -~~~ -~~~ -18846047 1024 33555456 -~~~ -18846197 1024 1024 -18851283 DOWN 11 -18851283 0 1024 -~~~ -~~~ -18851304 0 0 -~~~ -18851305 UP 11 -18851305 1024 0 -~~~ -~~~ -18851307 1024 1 -~~~ -~~~ -18851308 1024 3 -~~~ -~~~ -18851310 1024 7 -~~~ -18851311 1024 15 -~~~ -~~~ -18851313 1024 31 -~~~ -~~~ -18851314 1024 63 -~~~ -~~~ -18851316 1024 127 -~~~ -~~~ -18851318 1024 255 -18851319 homeCount = 51 -18851340 waitCount = 24 -18851341 ripCount = 24 -18851341 locktype1 = 0 -18851342 locktype2 = 4 -18851342 locktype3 = 2 -18851342 goalCount = 7 -18851343 goalTotal = 27 -18851343 otherCount = 18 -~~~ -18851345 CURRENTGOAL IS [3] -~~~ -18851424 DOWN 11 -18851424 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851453 UP 11 -18851453 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851460 homeCount = 51 -18851460 waitCount = 24 -18851461 ripCount = 24 -18851461 locktype1 = 0 -18851462 locktype2 = 4 -18851462 locktype3 = 2 -18851463 goalCount = 7 -18851463 goalTotal = 27 -18851464 otherCount = 18 -~~~ -18851465 CURRENTGOAL IS [3] -~~~ -18851571 DOWN 11 -18851571 0 255 -18851591 UP 11 -18851591 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851623 homeCount = 51 -18851624 waitCount = 24 -18851624 ripCount = 24 -18851625 locktype1 = 0 -18851625 locktype2 = 4 -18851626 locktype3 = 2 -18851626 goalCount = 7 -18851627 goalTotal = 27 -18851627 otherCount = 18 -~~~ -18851628 CURRENTGOAL IS [3] -~~~ -18854817 DOWN 11 -18854817 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18854855 homeCount = 51 -18854856 waitCount = 24 -18854856 ripCount = 24 -18854857 locktype1 = 0 -18854857 locktype2 = 4 -18854858 locktype3 = 2 -18854858 goalCount = 7 -18854859 goalTotal = 27 -18854859 otherCount = 18 -~~~ -18854860 CURRENTGOAL IS [3] -~~~ -18859075 UP 7 -18859075 64 255 -~~~ -~~~ -18860364 DOWN 7 -18860364 0 255 -~~~ -~~~ -18860388 0 254 -~~~ -~~~ -18860390 0 252 -~~~ -~~~ -18860392 0 248 -~~~ -~~~ -18860394 0 240 -~~~ -~~~ -18860396 0 224 -~~~ -~~~ -18860397 0 192 -~~~ -~~~ -18860399 0 128 -~~~ -~~~ -18860401 0 0 -~~~ -~~~ -18860403 0 512 -18860404 homeCount = 51 -18860404 waitCount = 24 -18860405 ripCount = 24 -18860405 locktype1 = 0 -18860426 locktype2 = 4 -18860426 locktype3 = 2 -18860427 goalCount = 7 -18860427 goalTotal = 27 -18860428 otherCount = 19 -~~~ -18866353 UP 10 -18866353 waslock = 0 -18866353 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18866384 512 16777728 -~~~ -18866534 512 512 -18866683 DOWN 10 -18866683 0 512 -18866707 UP 10 -18866707 waslock = 0 -18866707 512 512 -~~~ -~~~ -18866712 512 1536 -~~~ -~~~ -18866713 512 1024 -18866715 homeCount = 52 -18866715 waitCount = 24 -18866716 ripCount = 24 -18866716 locktype1 = 0 -18866716 locktype2 = 4 -18866717 locktype3 = 2 -18866717 goalCount = 7 -18866718 goalTotal = 27 -18866718 otherCount = 19 -~~~ -~~~ -18872118 DOWN 10 -18872118 0 1024 -18872136 UP 10 -18872136 waslock = 0 -18872136 512 1024 -~~~ -~~~ -~~~ -~~~ -18872142 homeCount = 52 -18872143 waitCount = 24 -18872143 ripCount = 24 -18872144 locktype1 = 0 -18872144 locktype2 = 4 -18872145 locktype3 = 2 -18872145 goalCount = 7 -18872146 goalTotal = 27 -18872146 otherCount = 19 -~~~ -~~~ -18872215 DOWN 10 -18872215 0 1024 -~~~ -~~~ -~~~ -~~~ -18872244 homeCount = 52 -18872245 waitCount = 24 -18872245 ripCount = 24 -18872246 locktype1 = 0 -18872246 locktype2 = 4 -18872247 locktype3 = 2 -18872247 goalCount = 7 -18872248 goalTotal = 27 -18872248 otherCount = 19 -~~~ -18876242 UP 11 -18876242 1024 1024 -18880510 DOWN 11 -18880510 0 1024 -18880546 UP 11 -18880546 1024 1024 -18883742 BEEP1 -18883742 BEEP2 -~~~ -~~~ -~~~ -18883760 1024 33555456 -~~~ -18883910 1024 1024 -18890371 DOWN 11 -18890371 0 1024 -~~~ -~~~ -18890388 0 0 -~~~ -~~~ -18890390 0 1 -~~~ -~~~ -18890392 0 3 -~~~ -~~~ -18890394 0 7 -~~~ -~~~ -18890396 0 15 -~~~ -~~~ -18890397 0 31 -~~~ -~~~ -18890399 0 63 -~~~ -~~~ -18890401 0 127 -~~~ -~~~ -18890403 0 255 -18890404 homeCount = 52 -18890404 waitCount = 24 -18890405 ripCount = 25 -18890405 locktype1 = 0 -18890427 locktype2 = 4 -18890427 locktype3 = 2 -18890428 goalCount = 7 -18890428 goalTotal = 27 -18890429 otherCount = 19 -~~~ -18890430 CURRENTGOAL IS [3] -~~~ -18890451 UP 11 -18890451 1024 255 -18893254 DOWN 11 -18893254 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18893297 homeCount = 52 -18893297 waitCount = 24 -18893298 ripCount = 25 -18893298 locktype1 = 0 -18893299 locktype2 = 4 -18893299 locktype3 = 2 -18893300 goalCount = 7 -18893300 goalTotal = 27 -18893301 otherCount = 19 -~~~ -18893302 CURRENTGOAL IS [3] -~~~ -18900482 UP 3 -18900482 4 255 -~~~ -~~~ -18900502 outer reward -~~~ -18900502 4 262399 -~~~ -~~~ -18900730 DOWN 3 -18900730 0 262399 -~~~ -~~~ -18900753 0 262398 -~~~ -~~~ -18900755 0 262396 -~~~ -~~~ -18900756 0 262392 -~~~ -~~~ -18900758 0 262384 -~~~ -~~~ -18900760 0 262368 -~~~ -~~~ -18900762 0 262336 -~~~ -~~~ -18900764 0 262272 -~~~ -~~~ -18900765 0 262144 -~~~ -~~~ -18900767 0 262656 -18900768 homeCount = 52 -18900769 waitCount = 24 -18900769 ripCount = 25 -18900791 locktype1 = 0 -18900791 locktype2 = 4 -18900792 locktype3 = 2 -18900792 goalCount = 8 -18900793 goalTotal = 28 -18900793 otherCount = 19 -~~~ -18900794 4 262656 -18900903 DOWN 3 -18900903 0 262656 -18900920 4 262656 -18900952 4 512 -18901039 DOWN 3 -18901039 0 512 -18901060 4 512 -18901156 DOWN 3 -18901156 0 512 -18901187 4 512 -18901292 DOWN 3 -18901292 0 512 -18901310 4 512 -18901420 DOWN 3 -18901420 0 512 -18901440 4 512 -18901546 DOWN 3 -18901546 0 512 -18901573 4 512 -18901676 DOWN 3 -18901676 0 512 -18901702 4 512 -18901804 DOWN 3 -18901804 0 512 -18901832 4 512 -18901936 DOWN 3 -18901936 0 512 -18901964 4 512 -18902072 DOWN 3 -18902072 0 512 -18902098 4 512 -18902211 DOWN 3 -18902211 0 512 -18902233 4 512 -18902355 DOWN 3 -18902355 0 512 -18902378 4 512 -18909942 DOWN 3 -18909942 0 512 -18922266 UP 10 -18922267 waslock = 0 -18922266 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18922297 512 16777728 -~~~ -18922447 512 512 -18929052 DOWN 10 -18929052 0 512 -~~~ -~~~ -18929069 0 1536 -~~~ -~~~ -18929071 0 1024 -18929072 homeCount = 53 -18929073 waitCount = 24 -18929073 ripCount = 25 -18929074 locktype1 = 0 -18929074 locktype2 = 4 -18929075 locktype3 = 2 -18929075 goalCount = 8 -18929076 goalTotal = 28 -18929076 otherCount = 19 -~~~ -18929098 UP 10 -18929098 waslock = 0 -18929097 512 1024 -~~~ -18929166 DOWN 10 -18929166 0 1024 -~~~ -~~~ -~~~ -~~~ -18929193 homeCount = 53 -18929194 waitCount = 24 -18929194 ripCount = 25 -18929194 locktype1 = 0 -18929195 locktype2 = 4 -18929195 locktype3 = 2 -18929196 goalCount = 8 -18929196 goalTotal = 28 -18929197 otherCount = 19 -~~~ -18934312 UP 11 -18934312 1024 1024 -18935944 DOWN 11 -18935944 0 1024 -18935995 UP 11 -18935995 1024 1024 -18937812 BEEP1 -18937812 BEEP2 -~~~ -~~~ -~~~ -18937832 1024 33555456 -~~~ -18937982 1024 1024 -18944487 DOWN 11 -18944487 0 1024 -18944496 UP 11 -18944496 1024 1024 -~~~ -~~~ -18944510 1024 0 -~~~ -~~~ -18944512 1024 1 -~~~ -~~~ -18944513 1024 3 -~~~ -~~~ -18944515 1024 7 -~~~ -~~~ -18944517 1024 15 -~~~ -~~~ -18944519 1024 31 -~~~ -~~~ -18944521 1024 63 -~~~ -~~~ -18944523 1024 127 -~~~ -~~~ -18944524 1024 255 -18944525 homeCount = 53 -18944526 waitCount = 24 -18944526 ripCount = 26 -18944548 locktype1 = 0 -18944548 locktype2 = 4 -18944548 locktype3 = 2 -18944549 goalCount = 8 -18944549 goalTotal = 28 -18944550 otherCount = 19 -~~~ -18944551 CURRENTGOAL IS [3] -~~~ -18944560 DOWN 11 -18944560 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18944597 UP 11 -18944597 1024 255 -18944599 homeCount = 53 -18944599 waitCount = 24 -18944600 ripCount = 26 -18944600 locktype1 = 0 -18944601 locktype2 = 4 -18944601 locktype3 = 2 -18944602 goalCount = 8 -18944602 goalTotal = 28 -18944603 otherCount = 19 -~~~ -18944625 CURRENTGOAL IS [3] -~~~ -18947334 DOWN 11 -18947334 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18947369 homeCount = 53 -18947369 waitCount = 24 -18947370 ripCount = 26 -18947370 locktype1 = 0 -18947371 locktype2 = 4 -18947371 locktype3 = 2 -18947372 goalCount = 8 -18947372 goalTotal = 28 -18947373 otherCount = 19 -~~~ -18947374 CURRENTGOAL IS [3] -~~~ -18958627 UP 3 -18958627 4 255 -~~~ -~~~ -18958649 outer reward -~~~ -18958650 4 262399 -~~~ -~~~ -18958918 DOWN 3 -18958918 0 262399 -~~~ -~~~ -18958945 0 262398 -~~~ -~~~ -18958947 0 262396 -~~~ -~~~ -18958948 0 262392 -~~~ -~~~ -18958950 0 262384 -~~~ -~~~ -18958952 0 262368 -~~~ -~~~ -18958954 0 262336 -~~~ -~~~ -18958956 0 262272 -~~~ -~~~ -18958958 0 262144 -~~~ -~~~ -18958959 0 262656 -18958960 homeCount = 53 -18958961 waitCount = 24 -18958961 ripCount = 26 -18958983 locktype1 = 0 -18958983 locktype2 = 4 -18958984 locktype3 = 2 -18958984 goalCount = 9 -18958985 goalTotal = 29 -18958985 otherCount = 19 -~~~ -18958986 4 262656 -18959099 4 512 -18959236 DOWN 3 -18959236 0 512 -18959257 4 512 -18959354 DOWN 3 -18959354 0 512 -18959373 4 512 -18959476 DOWN 3 -18959476 0 512 -18959502 4 512 -18959605 DOWN 3 -18959605 0 512 -18959631 4 512 -18959734 DOWN 3 -18959734 0 512 -18959764 4 512 -18959869 DOWN 3 -18959869 0 512 -18959901 4 512 -18960009 DOWN 3 -18960009 0 512 -18960036 4 512 -18960155 DOWN 3 -18960155 0 512 -18960176 4 512 -18960303 DOWN 3 -18960303 0 512 -18960314 4 512 -18964481 DOWN 3 -18964481 0 512 -18964498 4 512 -18967799 DOWN 3 -18967799 0 512 -18967877 4 512 -18967898 DOWN 3 -18967898 0 512 - - description: Statescript log r2 - task_epochs: 4, -, Statescript3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140181332891728 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -# -#import math -#import struct -#import re -#import time -#import random -#import numpy as np -#import pyaudio -#import wave -#from statistics import mean -## V8pre_forage -## visits to incorrect wells cause 5s lockout -## exception is repeat visit to prior well (is ok, no lockout) -## can go to any outer well, any number of times -## lockout from getting rip/wait wells wrong is also 5s -# -# -## decide what type of up trigger was just recieved; act accordingly -#def pokeIn(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# doHome() -# -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# doOuter(num) -# -## decide what type of down trigger was just recieved; act accordingly -#def pokeOut(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# global lastWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# endHome() -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# endWait() -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# endOuter() -# lastWell = currWell -# -##home poke: decide trial type and upcoming wait length; turn on lights accordingly -#def doHome(): -# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout -# global homePump -# global lastWell -# global currWell -# #global waitdist -# -# if trialtype == 0: -# opts = [1, 2] -# randnum = np.random.randint(0,2) #-1 -# trialtype = opts[randnum] -# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #randnum = np.random.randint(0,8) -# delaytime = chooseDelay() -# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") -# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime -# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC -# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") -# print("SCQTMESSAGE: trigger(1);\n") # deliver reward -# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: -# lockout([2,2]) -# -#def chooseDelay(): -# global trialtype -# global RWcount -# global waitdist -# global startwaitdist -# -# print(RWcount) -# -# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short -# return startwaitdist[RWcount[trialtype-1]] -# -# else: -# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist -# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) -# -# else: -# return int(np.random.choice(waitdist,1)) -# -# -#def endHome(): -# global trialtype -# global lastWell -# global homeWell -# global waitWells -# -# if trialtype == 1 or trialtype == 2: -# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -# -#def click(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# -# #generate_click() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC -# -#def beep(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# #generate_beep() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC -# -#def endWait(): -# global trialtype -# global goalWell -# global currWell -# global outerWells -# -# if trialtype == 3: # wait complete -# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): # turn on outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") -# -# -#def doOuter(val): -# global outerPumps -# global trialtype -# global allGoal -# global thisGoal -# global goalWell -# global outerReps -# global currWell -# global lastWell -# global homeWell -# global numgoals -# global validOuterWells -# global waslock -# -# if trialtype == 3: -# trialtype = 0 # outer satisfied, head home next -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# if currWell in goalWell : # repeated; reward -# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") -# print("SCQTMESSAGE: trigger(2);\n") # deliver reward -# allGoal+=1 -# thisGoal+=1 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC -# -# if thisGoal >= outerReps: #maxed repeats reached, time to switch -# print("time to choose new goalS!") -# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats -# chooseGoal() -# else: -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection -# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection -# print(goalWell) -# -# thisGoal = 0 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# -# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) -# goalWell = [currWell] -# -# else: # wrong well; add to forage record if newly visited -# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC -# -# elif trialtype < 3 and waslock<1: -# lockout([2,2]) -# -#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal -# global goalWell -# global oldGoals -# global numgoals -# global outerWells -# global forageNum -# #global outerReps -# -# oldGoals.append(goalWell) -# print(oldGoals) -# -# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms -# forageNum = 1 -# -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# if len(oldGoals)>7: # if all outers have been goal, reset -# print("resetting oldgoals") -# oldGoals = [None] -# -# while any(i in goalWell for i in oldGoals): #if any common elements -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# print(goalWell) -# -# outerReps = np.random.randint(4,13) -# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# print("new goal is "+str(goalWell)+"\n") -# -#def endOuter(): -# global trialtype -# global outerWells -# global homeWell -# global lastWell -# global currWell -# -# if trialtype == 0 and lastWell != currWell: # outer satisfied -# for num in range(len(outerWells)): # turn off outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -#def lockout(val): # turn off all lights for certain amount of time -# global waitWells -# global outerWells -# global lastWell -# global trialtype -# global waslock -# -# locktype = int(val[1]) -# trialtype = 4 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE -# #turn off all lights -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(waitWells)): #turn off all wait and outer well lights -# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# waslock=1 -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well -# if locktype == 1: -# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well -# if locktype == 2: -# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC -# if locktype == 3: -# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors -# -# -#def lockend(): -# global trialtype -# global homeWell -# -# trialtype = 0 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well -# print("SCQTMESSAGE: trigger(3);\n") -# -#def updateWaslock(val): -# global waslock -# -# waslock = int(val[1]) -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") -# -## Function: generate click sound -#def generate_click(): -# -# File='ZippoClick_short.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -## Function: generate cowbell sound -#def generate_beep(): -# -# File='Beep.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -#def makewhitenoise(): #play white noise for duration of lockout -# global locksoundlength -# -# soundlength = int(44100*locksoundlength/1000) -# p = pyaudio.PyAudio() -# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) -# whitenoise = np.random.randint(700,size = soundlength) -# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) -# stream.write(data) -# stream.close() -# p.terminate() -# -# -## This is the custom callback function. When events occur, addScQtEvent will -## call this function. This function MUST BE NAMED 'callback'!!!! -#def callback(line): -# -# global waslock -# -# if line.find("UP") >= 0: #input triggered -# pokeIn(re.findall(r'\d+',line)) -# if line.find("DOWN") >= 0: #input triggered -# pokeOut(re.findall(r'\d+',line)) -# if line.find("BEEP1") >= 0: # make a beep and deliver reward -# beep() -# if line.find("BEEP2") >= 0: # make a beep and deliver reward -# generate_beep() -# if line.find("CLICK1") >= 0: # make a click and deliver reward -# click() -# if line.find("CLICK2") >= 0: # make a click and deliver reward -# generate_click() -# if line.find("LOCKOUT") >= 0: # lockout procedure -# lockout(re.findall(r'\d+',line)) -# if line.find("LOCKEND") >= 0: # reset trialtype to 0 -# lockend() -# if line.find("WHITENOISE") >= 0: # make noise during lockout -# makewhitenoise() -# if line.find("waslock") >= 0: #update waslock value -# updateWaslock(re.findall(r'\d+',line)) -# -# -## define wells -#homeWell = 10 -#waitWells = [11,12] -#outerWells = [1,2,3,4,5,6,7,8] -##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num -## define pumps -#homePump = 25 -#waitPumps = [26, 27] -#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] -# -##global variables -#lastWell = -1 -#currWell = -1 -#trialtype = 0 -#outerReps = 10 -##outerReps = np.random.randint(4,13) #10 -#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# -#allGoal = 0 -#thisGoal = 0 -#numgoals = 1 # number of outer arms rewarded -#forageNum = 1 -#if numgoals == 1: -# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells -#else: -# goalWell = np.random.choice(outerWells,numgoals,replace=False) -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) -# -#oldGoals = [] #initialize with any wells to exclude from being goal -##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] -#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] -# -#startwaitdist = [1000, 1500, 2000] -# -#locksoundlength = 1000 -#print(goalWell) -#waslock=0 -#RWcount = [0,0 -# -24056604 UP 10 -24056604 waslock = 0 -24056604 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24056628 512 16777728 -~~~ -24056778 512 512 -24056821 DOWN 10 -24056821 0 512 -~~~ -~~~ -24056843 0 1536 -~~~ -~~~ -24056845 0 1024 -24056846 homeCount = 1 -24056846 waitCount = 0 -24056847 ripCount = 0 -24056847 locktype1 = 0 -24056848 locktype2 = 0 -24056848 locktype3 = 0 -24056849 goalCount = 0 -24056849 goalTotal = 0 -24056850 otherCount = 0 -~~~ -24057124 UP 10 -24057124 waslock = 0 -24057124 512 1024 -24057128 DOWN 10 -24057128 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057147 homeCount = 1 -24057147 waitCount = 0 -24057148 ripCount = 0 -24057148 locktype1 = 0 -24057149 locktype2 = 0 -24057149 locktype3 = 0 -24057150 goalCount = 0 -24057150 goalTotal = 0 -24057151 otherCount = 0 -~~~ -24057247 UP 10 -24057247 waslock = 0 -24057247 512 1024 -24057257 DOWN 10 -24057256 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057278 homeCount = 1 -24057279 waitCount = 0 -24057280 ripCount = 0 -24057280 locktype1 = 0 -24057281 locktype2 = 0 -24057281 locktype3 = 0 -24057281 goalCount = 0 -24057282 goalTotal = 0 -24057282 otherCount = 0 -~~~ -24057380 UP 10 -24057380 waslock = 0 -24057379 512 1024 -24057390 DOWN 10 -24057390 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057406 homeCount = 1 -24057407 waitCount = 0 -24057407 ripCount = 0 -24057408 locktype1 = 0 -24057408 locktype2 = 0 -24057409 locktype3 = 0 -24057409 goalCount = 0 -24057410 goalTotal = 0 -24057410 otherCount = 0 -~~~ -24057508 UP 10 -24057508 waslock = 0 -24057508 512 1024 -24057525 DOWN 10 -24057525 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057549 homeCount = 1 -24057549 waitCount = 0 -24057550 ripCount = 0 -24057550 locktype1 = 0 -24057551 locktype2 = 0 -24057551 locktype3 = 0 -24057552 goalCount = 0 -24057552 goalTotal = 0 -24057553 otherCount = 0 -~~~ -24057634 UP 10 -24057634 waslock = 0 -24057634 512 1024 -~~~ -24057659 DOWN 10 -24057659 0 1024 -~~~ -~~~ -~~~ -~~~ -24057678 homeCount = 1 -24057679 waitCount = 0 -24057679 ripCount = 0 -24057680 locktype1 = 0 -24057680 locktype2 = 0 -24057681 locktype3 = 0 -24057681 goalCount = 0 -24057682 goalTotal = 0 -24057682 otherCount = 0 -~~~ -24057752 UP 10 -24057752 waslock = 0 -24057752 512 1024 -~~~ -24057792 DOWN 10 -24057792 0 1024 -~~~ -~~~ -~~~ -~~~ -24057817 homeCount = 1 -24057818 waitCount = 0 -24057818 ripCount = 0 -24057819 locktype1 = 0 -24057819 locktype2 = 0 -24057820 locktype3 = 0 -24057820 goalCount = 0 -24057821 goalTotal = 0 -24057821 otherCount = 0 -~~~ -24057884 UP 10 -24057884 waslock = 0 -24057884 512 1024 -~~~ -24057931 DOWN 10 -24057931 0 1024 -~~~ -~~~ -~~~ -~~~ -24057955 homeCount = 1 -24057956 waitCount = 0 -24057956 ripCount = 0 -24057957 locktype1 = 0 -24057957 locktype2 = 0 -24057958 locktype3 = 0 -24057958 goalCount = 0 -24057959 goalTotal = 0 -24057959 otherCount = 0 -~~~ -24058025 UP 10 -24058025 waslock = 0 -24058025 512 1024 -~~~ -24058092 DOWN 10 -24058092 0 1024 -~~~ -~~~ -~~~ -~~~ -24058115 homeCount = 1 -24058115 waitCount = 0 -24058116 ripCount = 0 -24058116 locktype1 = 0 -24058117 locktype2 = 0 -24058117 locktype3 = 0 -24058118 goalCount = 0 -24058118 goalTotal = 0 -24058119 otherCount = 0 -~~~ -24058171 UP 10 -24058172 waslock = 0 -24058171 512 1024 -~~~ -24058243 DOWN 10 -24058243 0 1024 -24058250 UP 10 -24058251 waslock = 0 -24058250 512 1024 -24058271 DOWN 10 -24058271 0 1024 -~~~ -~~~ -~~~ -~~~ -24058277 homeCount = 1 -24058278 waitCount = 0 -24058278 ripCount = 0 -24058279 locktype1 = 0 -24058279 locktype2 = 0 -24058280 locktype3 = 0 -24058280 goalCount = 0 -24058281 goalTotal = 0 -24058281 otherCount = 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24058307 homeCount = 1 -24058307 waitCount = 0 -24058308 ripCount = 0 -24058308 locktype1 = 0 -24058309 locktype2 = 0 -24058309 locktype3 = 0 -24058310 goalCount = 0 -24058310 goalTotal = 0 -24058311 otherCount = 0 -~~~ -24058325 UP 10 -24058325 waslock = 0 -24058325 512 1024 -~~~ -24058429 DOWN 10 -24058429 0 1024 -24058443 UP 10 -24058443 waslock = 0 -24058443 512 1024 -~~~ -~~~ -~~~ -~~~ -24058462 homeCount = 1 -24058463 waitCount = 0 -24058463 ripCount = 0 -24058464 locktype1 = 0 -24058464 locktype2 = 0 -24058465 locktype3 = 0 -24058465 goalCount = 0 -24058466 goalTotal = 0 -24058466 otherCount = 0 -~~~ -~~~ -24058585 DOWN 10 -24058585 0 1024 -24058597 UP 10 -24058597 waslock = 0 -24058597 512 1024 -~~~ -~~~ -~~~ -~~~ -24058624 homeCount = 1 -24058625 waitCount = 0 -24058625 ripCount = 0 -24058626 locktype1 = 0 -24058626 locktype2 = 0 -24058627 locktype3 = 0 -24058627 goalCount = 0 -24058628 goalTotal = 0 -24058628 otherCount = 0 -~~~ -~~~ -24058732 DOWN 10 -24058732 0 1024 -24058752 UP 10 -24058752 waslock = 0 -24058752 512 1024 -~~~ -~~~ -~~~ -~~~ -24058759 homeCount = 1 -24058759 waitCount = 0 -24058760 ripCount = 0 -24058760 locktype1 = 0 -24058761 locktype2 = 0 -24058761 locktype3 = 0 -24058762 goalCount = 0 -24058762 goalTotal = 0 -24058763 otherCount = 0 -~~~ -~~~ -24059043 DOWN 10 -24059043 0 1024 -~~~ -24059062 UP 10 -24059063 waslock = 0 -24059062 512 1024 -~~~ -~~~ -~~~ -24059066 homeCount = 1 -24059067 waitCount = 0 -24059067 ripCount = 0 -24059068 locktype1 = 0 -24059068 locktype2 = 0 -24059069 locktype3 = 0 -24059069 goalCount = 0 -24059070 goalTotal = 0 -24059070 otherCount = 0 -~~~ -~~~ -24059196 DOWN 10 -24059196 0 1024 -~~~ -~~~ -~~~ -~~~ -24059218 homeCount = 1 -24059218 waitCount = 0 -24059219 ripCount = 0 -24059219 locktype1 = 0 -24059220 locktype2 = 0 -24059220 locktype3 = 0 -24059221 goalCount = 0 -24059221 goalTotal = 0 -24059222 otherCount = 0 -~~~ -24059223 UP 10 -24059223 waslock = 0 -24059223 512 1024 -~~~ -24059360 DOWN 10 -24059360 0 1024 -24059385 UP 10 -24059385 waslock = 0 -24059385 512 1024 -~~~ -~~~ -~~~ -~~~ -24059399 homeCount = 1 -24059399 waitCount = 0 -24059400 ripCount = 0 -24059400 locktype1 = 0 -24059401 locktype2 = 0 -24059401 locktype3 = 0 -24059402 goalCount = 0 -24059402 goalTotal = 0 -24059403 otherCount = 0 -~~~ -~~~ -24059519 DOWN 10 -24059519 0 1024 -~~~ -~~~ -~~~ -~~~ -24059539 homeCount = 1 -24059539 waitCount = 0 -24059540 ripCount = 0 -24059540 locktype1 = 0 -24059541 locktype2 = 0 -24059541 locktype3 = 0 -24059542 goalCount = 0 -24059542 goalTotal = 0 -24059543 otherCount = 0 -~~~ -24059548 UP 10 -24059548 waslock = 0 -24059547 512 1024 -~~~ -24059681 DOWN 10 -24059681 0 1024 -~~~ -~~~ -~~~ -~~~ -24059713 homeCount = 1 -24059713 waitCount = 0 -24059714 ripCount = 0 -24059714 locktype1 = 0 -24059715 locktype2 = 0 -24059715 locktype3 = 0 -24059716 goalCount = 0 -24059716 goalTotal = 0 -24059717 otherCount = 0 -~~~ -24059717 UP 10 -24059718 waslock = 0 -24059717 512 1024 -~~~ -24059856 DOWN 10 -24059856 0 1024 -~~~ -~~~ -~~~ -~~~ -24059881 homeCount = 1 -24059882 waitCount = 0 -24059882 ripCount = 0 -24059883 locktype1 = 0 -24059883 locktype2 = 0 -24059884 locktype3 = 0 -24059884 goalCount = 0 -24059885 goalTotal = 0 -24059885 otherCount = 0 -~~~ -24059888 UP 10 -24059889 waslock = 0 -24059888 512 1024 -~~~ -24060002 DOWN 10 -24060002 0 1024 -~~~ -~~~ -~~~ -~~~ -24060036 homeCount = 1 -24060037 waitCount = 0 -24060037 ripCount = 0 -24060038 locktype1 = 0 -24060038 locktype2 = 0 -24060039 locktype3 = 0 -24060039 goalCount = 0 -24060040 goalTotal = 0 -24060040 otherCount = 0 -~~~ -24060057 UP 10 -24060058 waslock = 0 -24060057 512 1024 -~~~ -24060155 DOWN 10 -24060155 0 1024 -~~~ -~~~ -~~~ -~~~ -24060183 homeCount = 1 -24060184 waitCount = 0 -24060184 ripCount = 0 -24060185 locktype1 = 0 -24060185 locktype2 = 0 -24060186 locktype3 = 0 -24060186 goalCount = 0 -24060187 goalTotal = 0 -24060187 otherCount = 0 -~~~ -24060218 UP 10 -24060219 waslock = 0 -24060218 512 1024 -~~~ -24060311 DOWN 10 -24060311 0 1024 -~~~ -~~~ -~~~ -~~~ -24060333 homeCount = 1 -24060333 waitCount = 0 -24060334 ripCount = 0 -24060334 locktype1 = 0 -24060335 locktype2 = 0 -24060335 locktype3 = 0 -24060336 goalCount = 0 -24060336 goalTotal = 0 -24060337 otherCount = 0 -~~~ -24060384 UP 10 -24060384 waslock = 0 -24060383 512 1024 -~~~ -24060470 DOWN 10 -24060470 0 1024 -~~~ -~~~ -~~~ -~~~ -24060494 homeCount = 1 -24060494 waitCount = 0 -24060495 ripCount = 0 -24060495 locktype1 = 0 -24060496 locktype2 = 0 -24060496 locktype3 = 0 -24060497 goalCount = 0 -24060497 goalTotal = 0 -24060498 otherCount = 0 -~~~ -24060541 UP 10 -24060542 waslock = 0 -24060541 512 1024 -~~~ -24060656 DOWN 10 -24060656 0 1024 -~~~ -~~~ -~~~ -~~~ -24060683 homeCount = 1 -24060683 waitCount = 0 -24060684 ripCount = 0 -24060684 locktype1 = 0 -24060685 locktype2 = 0 -24060685 locktype3 = 0 -24060686 goalCount = 0 -24060686 goalTotal = 0 -24060687 otherCount = 0 -~~~ -24060718 UP 10 -24060718 waslock = 0 -24060718 512 1024 -~~~ -24060821 DOWN 10 -24060821 0 1024 -~~~ -~~~ -~~~ -~~~ -24060844 homeCount = 1 -24060844 waitCount = 0 -24060845 ripCount = 0 -24060845 locktype1 = 0 -24060846 locktype2 = 0 -24060846 locktype3 = 0 -24060847 goalCount = 0 -24060847 goalTotal = 0 -24060848 otherCount = 0 -~~~ -24060875 UP 10 -24060875 waslock = 0 -24060875 512 1024 -~~~ -24061011 DOWN 10 -24061011 0 1024 -~~~ -~~~ -~~~ -~~~ -24061035 homeCount = 1 -24061035 waitCount = 0 -24061036 ripCount = 0 -24061036 locktype1 = 0 -24061037 locktype2 = 0 -24061037 locktype3 = 0 -24061038 goalCount = 0 -24061038 goalTotal = 0 -24061039 otherCount = 0 -~~~ -24061064 UP 10 -24061065 waslock = 0 -24061064 512 1024 -~~~ -24061209 DOWN 10 -24061209 0 1024 -24061222 UP 10 -24061223 waslock = 0 -24061222 512 1024 -~~~ -~~~ -~~~ -~~~ -24061246 homeCount = 1 -24061247 waitCount = 0 -24061247 ripCount = 0 -24061248 locktype1 = 0 -24061248 locktype2 = 0 -24061249 locktype3 = 0 -24061249 goalCount = 0 -24061250 goalTotal = 0 -24061250 otherCount = 0 -~~~ -~~~ -24061545 DOWN 10 -24061545 0 1024 -24061560 UP 10 -24061560 waslock = 0 -24061560 512 1024 -~~~ -~~~ -~~~ -~~~ -24061597 homeCount = 1 -24061598 waitCount = 0 -24061598 ripCount = 0 -24061599 locktype1 = 0 -24061599 locktype2 = 0 -24061600 locktype3 = 0 -24061600 goalCount = 0 -24061601 goalTotal = 0 -24061601 otherCount = 0 -~~~ -~~~ -24063988 DOWN 10 -24063988 0 1024 -24064005 UP 10 -24064006 waslock = 0 -24064005 512 1024 -~~~ -~~~ -~~~ -~~~ -24064014 homeCount = 1 -24064014 waitCount = 0 -24064015 ripCount = 0 -24064015 locktype1 = 0 -24064016 locktype2 = 0 -24064016 locktype3 = 0 -24064017 goalCount = 0 -24064017 goalTotal = 0 -24064018 otherCount = 0 -~~~ -~~~ -24064723 DOWN 10 -24064723 0 1024 -~~~ -~~~ -24064751 UP 10 -24064751 waslock = 0 -24064751 512 1024 -~~~ -~~~ -24064754 homeCount = 1 -24064754 waitCount = 0 -24064755 ripCount = 0 -24064755 locktype1 = 0 -24064756 locktype2 = 0 -24064756 locktype3 = 0 -24064757 goalCount = 0 -24064757 goalTotal = 0 -24064778 otherCount = 0 -~~~ -~~~ -24065124 DOWN 10 -24065124 0 1024 -24065130 UP 10 -24065130 waslock = 0 -24065130 512 1024 -~~~ -~~~ -~~~ -~~~ -24065153 homeCount = 1 -24065153 waitCount = 0 -24065154 ripCount = 0 -24065154 locktype1 = 0 -24065155 locktype2 = 0 -24065155 locktype3 = 0 -24065156 goalCount = 0 -24065156 goalTotal = 0 -24065157 otherCount = 0 -~~~ -~~~ -24065460 DOWN 10 -24065460 0 1024 -~~~ -~~~ -~~~ -~~~ -24065484 homeCount = 1 -24065484 waitCount = 0 -24065485 ripCount = 0 -24065485 locktype1 = 0 -24065486 locktype2 = 0 -24065486 locktype3 = 0 -24065487 goalCount = 0 -24065487 goalTotal = 0 -24065488 otherCount = 0 -~~~ -24065532 UP 10 -24065532 waslock = 0 -24065531 512 1024 -~~~ -24065573 DOWN 10 -24065573 0 1024 -~~~ -~~~ -~~~ -~~~ -24065598 homeCount = 1 -24065598 waitCount = 0 -24065599 ripCount = 0 -24065599 locktype1 = 0 -24065600 locktype2 = 0 -24065600 locktype3 = 0 -24065601 goalCount = 0 -24065601 goalTotal = 0 -24065602 otherCount = 0 -~~~ -24065685 UP 10 -24065685 waslock = 0 -24065685 512 1024 -24065713 DOWN 10 -24065713 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24065736 homeCount = 1 -24065737 waitCount = 0 -24065737 ripCount = 0 -24065738 locktype1 = 0 -24065738 locktype2 = 0 -24065739 locktype3 = 0 -24065739 goalCount = 0 -24065740 goalTotal = 0 -24065740 otherCount = 0 -~~~ -24067490 UP 12 -24067490 LOCKOUT 1 -24067490 2048 1024 -~~~ -24067512 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -24067516 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24067665 DOWN 12 -24067665 0 0 -24067738 UP 12 -24067738 2048 0 -24067825 DOWN 12 -24067825 0 0 -24067873 UP 12 -24067873 2048 0 -24067961 DOWN 12 -24067961 0 0 -24068038 UP 12 -24068038 2048 0 -24068088 DOWN 12 -24068088 0 0 -24068334 UP 12 -24068334 2048 0 -24068564 DOWN 12 -24068564 0 0 -24068910 UP 12 -24068910 2048 0 -24068985 DOWN 12 -24068985 0 0 -24069745 UP 12 -24069745 2048 0 -24069769 DOWN 12 -24069769 0 0 -24070207 UP 12 -24070207 2048 0 -24070211 DOWN 12 -24070211 0 0 -24070465 UP 12 -24070465 2048 0 -24070485 DOWN 12 -24070485 0 0 -24070493 UP 12 -24070493 2048 0 -24070500 DOWN 12 -24070500 0 0 -24070608 UP 12 -24070608 2048 0 -24070632 DOWN 12 -24070632 0 0 -24070641 UP 12 -24070641 2048 0 -24070650 DOWN 12 -24070650 0 0 -24070709 UP 12 -24070709 2048 0 -24070737 DOWN 12 -24070737 0 0 -24070752 UP 12 -24070752 2048 0 -24070796 DOWN 12 -24070796 0 0 -24070859 UP 12 -24070859 2048 0 -24070876 DOWN 12 -24070876 0 0 -24070898 UP 12 -24070898 2048 0 -24070949 DOWN 12 -24070949 0 0 -24071006 UP 12 -24071006 2048 0 -24071024 DOWN 12 -24071024 0 0 -24071048 UP 12 -24071048 2048 0 -24071100 DOWN 12 -24071100 0 0 -24071199 UP 12 -24071199 2048 0 -24071254 DOWN 12 -24071254 0 0 -24071325 UP 12 -24071325 2048 0 -24071406 DOWN 12 -24071406 0 0 -24071413 UP 12 -24071413 2048 0 -24071565 DOWN 12 -24071565 0 0 -24071569 UP 12 -24071569 2048 0 -24072422 DOWN 12 -24072422 0 0 -24072431 UP 12 -24072430 2048 0 -24072582 DOWN 12 -24072582 0 0 -24072603 UP 12 -24072603 2048 0 -24072753 DOWN 12 -24072753 0 0 -24072770 UP 12 -24072770 2048 0 -24072935 DOWN 12 -24072935 0 0 -24072956 UP 12 -24072956 2048 0 -24073295 DOWN 12 -24073295 0 0 -24073309 UP 12 -24073309 2048 0 -24073471 DOWN 12 -24073471 0 0 -24073494 UP 12 -24073494 2048 0 -24073657 DOWN 12 -24073657 0 0 -24073677 UP 12 -24073677 2048 0 -24073837 DOWN 12 -24073837 0 0 -24073859 UP 12 -24073859 2048 0 -24076260 DOWN 12 -24076260 0 0 -24076298 UP 12 -24076298 2048 0 -24076357 DOWN 12 -24076357 0 0 -24078484 UP 11 -24078484 1024 0 -24078510 DOWN 11 -24078510 0 0 -24078583 UP 11 -24078583 1024 0 -24078838 DOWN 11 -24078838 0 0 -24078872 UP 11 -24078872 1024 0 -24078960 DOWN 11 -24078960 0 0 -24081253 UP 11 -24081253 1024 0 -24081256 DOWN 11 -24081256 0 0 -24081403 UP 11 -24081403 1024 0 -24081408 DOWN 11 -24081408 0 0 -24081555 UP 11 -24081555 1024 0 -24081559 DOWN 11 -24081559 0 0 -24081780 UP 11 -24081780 1024 0 -24081797 DOWN 11 -24081797 0 0 -24081990 UP 11 -24081990 1024 0 -24081998 DOWN 11 -24081998 0 0 -24082137 UP 11 -24082137 1024 0 -24082165 DOWN 11 -24082165 0 0 -24082275 UP 11 -24082275 1024 0 -24082334 DOWN 11 -24082334 0 0 -24082411 UP 11 -24082411 1024 0 -24082495 DOWN 11 -24082495 0 0 -24082530 UP 11 -24082530 1024 0 -24082553 DOWN 11 -24082553 0 0 -24082562 UP 11 -24082562 1024 0 -24082667 DOWN 11 -24082667 0 0 -24082693 UP 11 -24082693 1024 0 -24082844 DOWN 11 -24082844 0 0 -24082860 UP 11 -24082860 1024 0 -24083018 DOWN 11 -24083018 0 0 -24083043 UP 11 -24083043 1024 0 -24083092 DOWN 11 -24083092 0 0 -24083101 UP 11 -24083101 1024 0 -24083201 DOWN 11 -24083201 0 0 -24083211 UP 11 -24083211 1024 0 -24083378 DOWN 11 -24083378 0 0 -24083382 UP 11 -24083382 1024 0 -24083552 DOWN 11 -24083552 0 0 -24083557 UP 11 -24083557 1024 0 -24083729 DOWN 11 -24083729 0 0 -24083743 UP 11 -24083743 1024 0 -24083912 DOWN 11 -24083912 0 0 -24083936 UP 11 -24083936 1024 0 -24084098 DOWN 11 -24084098 0 0 -24084109 UP 11 -24084108 1024 0 -24086825 DOWN 11 -24086825 0 0 -24086849 UP 11 -24086849 1024 0 -24086884 DOWN 11 -24086884 0 0 -24086917 UP 11 -24086917 1024 0 -24086937 DOWN 11 -24086937 0 0 -24086949 UP 11 -24086949 1024 0 -24087030 DOWN 11 -24087030 0 0 -24087064 UP 11 -24087064 1024 0 -24087088 DOWN 11 -24087088 0 0 -24087108 UP 11 -24087108 1024 0 -24087213 DOWN 11 -24087213 0 0 -24087245 UP 11 -24087245 1024 0 -24087271 DOWN 11 -24087271 0 0 -24087277 UP 11 -24087277 1024 0 -24087389 DOWN 11 -24087389 0 0 -24087403 UP 11 -24087403 1024 0 -24087574 DOWN 11 -24087574 0 0 -24087584 UP 11 -24087584 1024 0 -24088308 DOWN 11 -24088308 0 0 -24088330 UP 11 -24088330 1024 0 -24088411 DOWN 11 -24088411 0 0 -24088480 UP 11 -24088480 1024 0 -24088557 DOWN 11 -24088557 0 0 -24088788 UP 11 -24088788 1024 0 -24089081 DOWN 11 -24089081 0 0 -24092512 LOCKEND -~~~ -~~~ -~~~ -24092533 0 512 -24094091 UP 7 -24094091 64 512 -24094400 DOWN 7 -24094399 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24094430 64 512 -~~~ -~~~ -~~~ -24094434 homeCount = 1 -24094434 waitCount = 0 -24094435 ripCount = 0 -24094435 locktype1 = 1 -24094436 locktype2 = 0 -24094436 locktype3 = 0 -24094437 goalCount = 0 -24094437 goalTotal = 0 -24094438 otherCount = 0 -~~~ -24095843 DOWN 7 -24095843 0 512 -24100125 UP 10 -24100125 waslock = 0 -24100125 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24100155 512 16777728 -~~~ -24100304 512 512 -24100517 DOWN 10 -24100517 0 512 -~~~ -~~~ -24100541 0 2560 -~~~ -~~~ -24100543 0 2048 -24100544 homeCount = 2 -24100545 waitCount = 0 -24100545 ripCount = 0 -24100546 locktype1 = 1 -24100546 locktype2 = 0 -24100547 locktype3 = 0 -24100547 goalCount = 0 -24100548 goalTotal = 0 -24100548 otherCount = 0 -~~~ -24100569 UP 10 -24100570 waslock = 0 -24100569 512 2048 -~~~ -24100616 DOWN 10 -24100616 0 2048 -~~~ -~~~ -~~~ -~~~ -24100646 homeCount = 2 -24100646 waitCount = 0 -24100647 ripCount = 0 -24100647 locktype1 = 1 -24100648 locktype2 = 0 -24100648 locktype3 = 0 -24100649 goalCount = 0 -24100649 goalTotal = 0 -24100650 otherCount = 0 -~~~ -24100783 UP 10 -24100783 waslock = 0 -24100783 512 2048 -~~~ -24100815 DOWN 10 -24100815 0 2048 -~~~ -~~~ -~~~ -~~~ -24100843 homeCount = 2 -24100843 waitCount = 0 -24100844 ripCount = 0 -24100844 locktype1 = 1 -24100845 locktype2 = 0 -24100845 locktype3 = 0 -24100846 goalCount = 0 -24100846 goalTotal = 0 -24100847 otherCount = 0 -~~~ -24100909 UP 10 -24100909 waslock = 0 -24100909 512 2048 -~~~ -24100989 DOWN 10 -24100989 0 2048 -~~~ -~~~ -~~~ -~~~ -24101013 homeCount = 2 -24101013 waitCount = 0 -24101014 ripCount = 0 -24101014 locktype1 = 1 -24101015 locktype2 = 0 -24101015 locktype3 = 0 -24101016 goalCount = 0 -24101016 goalTotal = 0 -24101017 otherCount = 0 -~~~ -24101018 UP 10 -24101018 waslock = 0 -24101018 512 2048 -~~~ -24101542 DOWN 10 -24101542 0 2048 -24101568 UP 10 -24101569 waslock = 0 -24101568 512 2048 -~~~ -~~~ -~~~ -~~~ -24101575 homeCount = 2 -24101575 waitCount = 0 -24101576 ripCount = 0 -24101576 locktype1 = 1 -24101577 locktype2 = 0 -24101577 locktype3 = 0 -24101578 goalCount = 0 -24101578 goalTotal = 0 -24101579 otherCount = 0 -~~~ -~~~ -24101712 DOWN 10 -24101712 0 2048 -~~~ -24101739 UP 10 -24101739 waslock = 0 -24101739 512 2048 -~~~ -~~~ -~~~ -24101742 homeCount = 2 -24101743 waitCount = 0 -24101743 ripCount = 0 -24101744 locktype1 = 1 -24101744 locktype2 = 0 -24101745 locktype3 = 0 -24101745 goalCount = 0 -24101746 goalTotal = 0 -24101746 otherCount = 0 -~~~ -~~~ -24101900 DOWN 10 -24101900 0 2048 -24101911 UP 10 -24101911 waslock = 0 -24101911 512 2048 -~~~ -~~~ -~~~ -~~~ -24101935 homeCount = 2 -24101935 waitCount = 0 -24101936 ripCount = 0 -24101936 locktype1 = 1 -24101937 locktype2 = 0 -24101937 locktype3 = 0 -24101938 goalCount = 0 -24101938 goalTotal = 0 -24101939 otherCount = 0 -~~~ -~~~ -24102072 DOWN 10 -24102071 0 2048 -24102086 UP 10 -24102086 waslock = 0 -24102086 512 2048 -~~~ -~~~ -~~~ -~~~ -24102094 homeCount = 2 -24102095 waitCount = 0 -24102095 ripCount = 0 -24102096 locktype1 = 1 -24102096 locktype2 = 0 -24102097 locktype3 = 0 -24102097 goalCount = 0 -24102098 goalTotal = 0 -24102098 otherCount = 0 -~~~ -~~~ -24103807 DOWN 10 -24103807 0 2048 -24103823 UP 10 -24103823 waslock = 0 -24103823 512 2048 -~~~ -~~~ -~~~ -~~~ -24103831 homeCount = 2 -24103831 waitCount = 0 -24103832 ripCount = 0 -24103832 locktype1 = 1 -24103833 locktype2 = 0 -24103833 locktype3 = 0 -24103834 goalCount = 0 -24103834 goalTotal = 0 -24103835 otherCount = 0 -~~~ -~~~ -24103981 DOWN 10 -24103981 0 2048 -~~~ -~~~ -~~~ -~~~ -24104009 homeCount = 2 -24104010 waitCount = 0 -24104010 ripCount = 0 -24104011 locktype1 = 1 -24104011 locktype2 = 0 -24104012 locktype3 = 0 -24104012 goalCount = 0 -24104013 goalTotal = 0 -24104013 otherCount = 0 -~~~ -24104014 UP 10 -24104014 waslock = 0 -24104014 512 2048 -~~~ -24104173 DOWN 10 -24104173 0 2048 -~~~ -~~~ -~~~ -~~~ -24104198 homeCount = 2 -24104199 waitCount = 0 -24104199 ripCount = 0 -24104200 locktype1 = 1 -24104200 locktype2 = 0 -24104201 locktype3 = 0 -24104201 goalCount = 0 -24104202 goalTotal = 0 -24104202 otherCount = 0 -~~~ -24116229 UP 12 -24116229 2048 2048 -24116292 DOWN 12 -24116292 0 2048 -24116492 LOCKOUT 3 -~~~ -24116519 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24116525 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24116631 UP 12 -24116631 2048 0 -24116733 DOWN 12 -24116732 0 0 -24116782 UP 12 -24116782 2048 0 -24116880 DOWN 12 -24116880 0 0 -24116947 UP 12 -24116947 2048 0 -24117083 DOWN 12 -24117083 0 0 -24117145 UP 12 -24117145 2048 0 -24117245 DOWN 12 -24117245 0 0 -24120977 UP 3 -24120976 4 0 -24121186 DOWN 3 -24121186 0 0 -24121258 4 0 -24121715 DOWN 3 -24121715 0 0 -24121728 4 0 -24121872 DOWN 3 -24121872 0 0 -24121886 4 0 -24122597 DOWN 3 -24122597 0 0 -24122606 4 0 -24123130 DOWN 3 -24123130 0 0 -24123149 4 0 -24124151 DOWN 3 -24124151 0 0 -24124156 4 0 -24124181 DOWN 3 -24124181 0 0 -24133999 512 0 -24134020 0 0 -24134058 512 0 -24134337 0 0 -24134372 512 0 -24134413 0 0 -24134490 512 0 -24134977 0 0 -24134997 512 0 -24135340 0 0 -24135350 512 0 -24135514 0 0 -24135570 512 0 -24135615 0 0 -24139773 UP 8 -24139773 128 0 -24139806 DOWN 8 -24139806 0 0 -24139876 128 0 -24140057 DOWN 8 -24140057 0 0 -24140110 128 0 -24140388 DOWN 8 -24140388 0 0 -24140409 128 0 -24140533 DOWN 8 -24140533 0 0 -24140560 128 0 -24140693 DOWN 8 -24140693 0 0 -24140720 128 0 -24140869 DOWN 8 -24140869 0 0 -24140886 128 0 -24141045 DOWN 8 -24141045 0 0 -24141064 128 0 -24141211 DOWN 8 -24141211 0 0 -24141242 128 0 -24141397 DOWN 8 -24141397 0 0 -24141423 128 0 -24141519 LOCKEND -~~~ -~~~ -~~~ -24141542 128 512 -24141565 DOWN 8 -24141565 0 512 -24141596 128 512 -24141750 DOWN 8 -24141750 0 512 -24141766 128 512 -24142090 DOWN 8 -24142090 0 512 -24142106 128 512 -24143455 DOWN 8 -24143455 0 512 -24149708 UP 10 -24149708 waslock = 0 -24149708 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24149735 512 16777728 -~~~ -24149823 DOWN 10 -24149823 0 16777728 -24149841 UP 10 -24149842 waslock = 0 -24149841 512 16777728 -~~~ -~~~ -24149848 512 16779776 -~~~ -~~~ -24149850 512 16779264 -24149851 homeCount = 3 -24149852 waitCount = 0 -24149852 ripCount = 0 -24149853 locktype1 = 1 -24149853 locktype2 = 0 -24149854 locktype3 = 1 -24149854 goalCount = 0 -24149855 goalTotal = 0 -24149855 otherCount = 0 -~~~ -~~~ -24149885 512 2048 -24150195 DOWN 10 -24150195 0 2048 -~~~ -~~~ -~~~ -~~~ -24150224 homeCount = 3 -24150224 waitCount = 0 -24150225 ripCount = 0 -24150225 locktype1 = 1 -24150226 locktype2 = 0 -24150226 locktype3 = 1 -24150227 goalCount = 0 -24150227 goalTotal = 0 -24150228 otherCount = 0 -~~~ -24150237 UP 10 -24150237 waslock = 0 -24150236 512 2048 -~~~ -24150377 DOWN 10 -24150377 0 2048 -~~~ -~~~ -~~~ -~~~ -24150405 homeCount = 3 -24150405 waitCount = 0 -24150406 ripCount = 0 -24150406 locktype1 = 1 -24150407 locktype2 = 0 -24150407 locktype3 = 1 -24150408 goalCount = 0 -24150408 goalTotal = 0 -24150409 otherCount = 0 -~~~ -24150410 UP 10 -24150410 waslock = 0 -24150410 512 2048 -~~~ -24150548 DOWN 10 -24150547 0 2048 -~~~ -~~~ -~~~ -~~~ -24150574 homeCount = 3 -24150574 waitCount = 0 -24150575 ripCount = 0 -24150575 locktype1 = 1 -24150576 locktype2 = 0 -24150576 locktype3 = 1 -24150577 goalCount = 0 -24150577 goalTotal = 0 -24150578 otherCount = 0 -~~~ -24150582 UP 10 -24150582 waslock = 0 -24150582 512 2048 -~~~ -24150712 DOWN 10 -24150712 0 2048 -~~~ -~~~ -~~~ -~~~ -24150732 homeCount = 3 -24150732 waitCount = 0 -24150733 ripCount = 0 -24150733 locktype1 = 1 -24150734 locktype2 = 0 -24150734 locktype3 = 1 -24150735 goalCount = 0 -24150735 goalTotal = 0 -24150736 otherCount = 0 -~~~ -24150746 UP 10 -24150747 waslock = 0 -24150746 512 2048 -~~~ -24150885 DOWN 10 -24150885 0 2048 -~~~ -~~~ -~~~ -~~~ -24150911 homeCount = 3 -24150912 waitCount = 0 -24150912 ripCount = 0 -24150913 locktype1 = 1 -24150913 locktype2 = 0 -24150914 locktype3 = 1 -24150914 goalCount = 0 -24150915 goalTotal = 0 -24150915 otherCount = 0 -~~~ -24150922 UP 10 -24150922 waslock = 0 -24150922 512 2048 -~~~ -24151063 DOWN 10 -24151063 0 2048 -~~~ -~~~ -~~~ -~~~ -24151091 homeCount = 3 -24151092 waitCount = 0 -24151092 ripCount = 0 -24151093 locktype1 = 1 -24151093 locktype2 = 0 -24151094 locktype3 = 1 -24151094 goalCount = 0 -24151095 goalTotal = 0 -24151095 otherCount = 0 -~~~ -24151096 UP 10 -24151096 waslock = 0 -24151096 512 2048 -~~~ -24151239 DOWN 10 -24151239 0 2048 -~~~ -~~~ -~~~ -~~~ -24151264 homeCount = 3 -24151264 waitCount = 0 -24151265 ripCount = 0 -24151265 locktype1 = 1 -24151266 locktype2 = 0 -24151266 locktype3 = 1 -24151267 goalCount = 0 -24151267 goalTotal = 0 -24151268 otherCount = 0 -~~~ -24151272 UP 10 -24151273 waslock = 0 -24151272 512 2048 -~~~ -24151430 DOWN 10 -24151430 0 2048 -~~~ -~~~ -~~~ -~~~ -24151453 homeCount = 3 -24151454 waitCount = 0 -24151454 ripCount = 0 -24151455 locktype1 = 1 -24151455 locktype2 = 0 -24151456 locktype3 = 1 -24151456 goalCount = 0 -24151457 goalTotal = 0 -24151457 otherCount = 0 -~~~ -24151458 UP 10 -24151458 waslock = 0 -24151458 512 2048 -~~~ -24151611 DOWN 10 -24151610 0 2048 -~~~ -~~~ -~~~ -~~~ -24151634 homeCount = 3 -24151635 waitCount = 0 -24151635 ripCount = 0 -24151636 locktype1 = 1 -24151636 locktype2 = 0 -24151637 locktype3 = 1 -24151637 goalCount = 0 -24151638 goalTotal = 0 -24151638 otherCount = 0 -~~~ -24151641 UP 10 -24151642 waslock = 0 -24151641 512 2048 -~~~ -24151782 DOWN 10 -24151782 0 2048 -~~~ -~~~ -~~~ -~~~ -24151805 homeCount = 3 -24151805 waitCount = 0 -24151806 ripCount = 0 -24151806 locktype1 = 1 -24151807 locktype2 = 0 -24151807 locktype3 = 1 -24151808 goalCount = 0 -24151808 goalTotal = 0 -24151809 otherCount = 0 -~~~ -24151823 UP 10 -24151824 waslock = 0 -24151823 512 2048 -~~~ -24151978 DOWN 10 -24151978 0 2048 -24152002 UP 10 -24152003 waslock = 0 -24152002 512 2048 -~~~ -~~~ -~~~ -~~~ -24152007 homeCount = 3 -24152007 waitCount = 0 -24152008 ripCount = 0 -24152008 locktype1 = 1 -24152009 locktype2 = 0 -24152009 locktype3 = 1 -24152010 goalCount = 0 -24152010 goalTotal = 0 -24152011 otherCount = 0 -~~~ -~~~ -24152184 DOWN 10 -24152184 0 2048 -24152194 UP 10 -24152195 waslock = 0 -24152194 512 2048 -~~~ -~~~ -~~~ -~~~ -24152213 homeCount = 3 -24152213 waitCount = 0 -24152214 ripCount = 0 -24152214 locktype1 = 1 -24152215 locktype2 = 0 -24152215 locktype3 = 1 -24152216 goalCount = 0 -24152216 goalTotal = 0 -24152217 otherCount = 0 -~~~ -~~~ -24152367 DOWN 10 -24152367 0 2048 -~~~ -~~~ -~~~ -~~~ -24152395 homeCount = 3 -24152395 waitCount = 0 -24152396 ripCount = 0 -24152396 locktype1 = 1 -24152397 locktype2 = 0 -24152397 locktype3 = 1 -24152398 goalCount = 0 -24152398 goalTotal = 0 -24152399 otherCount = 0 -~~~ -24152402 UP 10 -24152403 waslock = 0 -24152402 512 2048 -~~~ -24152539 DOWN 10 -24152539 0 2048 -~~~ -~~~ -~~~ -~~~ -24152564 homeCount = 3 -24152564 waitCount = 0 -24152565 ripCount = 0 -24152565 locktype1 = 1 -24152566 locktype2 = 0 -24152566 locktype3 = 1 -24152567 goalCount = 0 -24152567 goalTotal = 0 -24152568 otherCount = 0 -~~~ -24152572 UP 10 -24152573 waslock = 0 -24152572 512 2048 -~~~ -24152741 DOWN 10 -24152741 0 2048 -24152759 UP 10 -24152760 waslock = 0 -24152759 512 2048 -~~~ -~~~ -~~~ -~~~ -24152763 homeCount = 3 -24152764 waitCount = 0 -24152764 ripCount = 0 -24152765 locktype1 = 1 -24152765 locktype2 = 0 -24152766 locktype3 = 1 -24152766 goalCount = 0 -24152767 goalTotal = 0 -24152767 otherCount = 0 -~~~ -~~~ -24153497 DOWN 10 -24153497 0 2048 -~~~ -~~~ -~~~ -~~~ -24153532 homeCount = 3 -24153532 waitCount = 0 -24153533 ripCount = 0 -24153533 locktype1 = 1 -24153534 locktype2 = 0 -24153534 locktype3 = 1 -24153535 goalCount = 0 -24153535 goalTotal = 0 -24153536 otherCount = 0 -~~~ -24153539 UP 10 -24153539 waslock = 0 -24153539 512 2048 -~~~ -24153665 DOWN 10 -24153665 0 2048 -~~~ -~~~ -24153684 UP 10 -24153684 waslock = 0 -24153684 512 2048 -~~~ -~~~ -24153686 homeCount = 3 -24153687 waitCount = 0 -24153687 ripCount = 0 -24153688 locktype1 = 1 -24153688 locktype2 = 0 -24153689 locktype3 = 1 -24153689 goalCount = 0 -24153690 goalTotal = 0 -24153711 otherCount = 0 -~~~ -~~~ -24153879 DOWN 10 -24153879 0 2048 -~~~ -~~~ -~~~ -~~~ -24153906 UP 10 -24153906 waslock = 0 -24153906 512 2048 -24153907 homeCount = 3 -24153908 waitCount = 0 -24153908 ripCount = 0 -24153909 locktype1 = 1 -24153909 locktype2 = 0 -24153910 locktype3 = 1 -24153910 goalCount = 0 -24153911 goalTotal = 0 -24153911 otherCount = 0 -~~~ -~~~ -24154063 DOWN 10 -24154063 0 2048 -~~~ -~~~ -24154084 UP 10 -24154084 waslock = 0 -24154084 512 2048 -~~~ -~~~ -24154087 homeCount = 3 -24154087 waitCount = 0 -24154088 ripCount = 0 -24154088 locktype1 = 1 -24154089 locktype2 = 0 -24154089 locktype3 = 1 -24154090 goalCount = 0 -24154090 goalTotal = 0 -24154111 otherCount = 0 -~~~ -~~~ -24154734 DOWN 10 -24154734 0 2048 -~~~ -24154753 UP 10 -24154753 waslock = 0 -24154753 512 2048 -~~~ -~~~ -~~~ -24154757 homeCount = 3 -24154757 waitCount = 0 -24154758 ripCount = 0 -24154758 locktype1 = 1 -24154759 locktype2 = 0 -24154759 locktype3 = 1 -24154760 goalCount = 0 -24154760 goalTotal = 0 -24154761 otherCount = 0 -~~~ -~~~ -24155139 DOWN 10 -24155139 0 2048 -24155152 UP 10 -24155152 waslock = 0 -24155152 512 2048 -~~~ -~~~ -~~~ -~~~ -24155162 homeCount = 3 -24155163 waitCount = 0 -24155163 ripCount = 0 -24155163 locktype1 = 1 -24155164 locktype2 = 0 -24155164 locktype3 = 1 -24155165 goalCount = 0 -24155165 goalTotal = 0 -24155166 otherCount = 0 -~~~ -~~~ -24155249 DOWN 10 -24155249 0 2048 -~~~ -~~~ -~~~ -~~~ -24155276 homeCount = 3 -24155276 waitCount = 0 -24155277 ripCount = 0 -24155277 locktype1 = 1 -24155278 locktype2 = 0 -24155278 locktype3 = 1 -24155279 goalCount = 0 -24155279 goalTotal = 0 -24155280 otherCount = 0 -~~~ -24155317 UP 10 -24155317 waslock = 0 -24155317 512 2048 -~~~ -24155370 DOWN 10 -24155370 0 2048 -~~~ -~~~ -~~~ -~~~ -24155391 homeCount = 3 -24155392 waitCount = 0 -24155392 ripCount = 0 -24155393 locktype1 = 1 -24155393 locktype2 = 0 -24155394 locktype3 = 1 -24155394 goalCount = 0 -24155395 goalTotal = 0 -24155395 otherCount = 0 -~~~ -24157118 UP 12 -24157118 2048 2048 -24158118 CLICK1 -24158118 CLICK2 -~~~ -~~~ -~~~ -24158143 2048 67110912 -~~~ -24158293 2048 2048 -24162037 DOWN 12 -24162037 0 2048 -24162046 UP 12 -24162046 2048 2048 -~~~ -~~~ -24162059 2048 0 -~~~ -~~~ -24162061 2048 1 -~~~ -~~~ -24162063 2048 3 -~~~ -~~~ -24162065 2048 7 -~~~ -~~~ -24162066 2048 15 -~~~ -~~~ -24162068 2048 31 -~~~ -~~~ -24162070 2048 63 -~~~ -~~~ -24162072 2048 127 -~~~ -~~~ -24162074 2048 255 -24162075 homeCount = 3 -24162075 waitCount = 1 -24162076 ripCount = 0 -24162076 locktype1 = 1 -24162097 locktype2 = 0 -24162098 locktype3 = 1 -24162098 goalCount = 0 -24162099 goalTotal = 0 -24162099 otherCount = 0 -~~~ -24162100 CURRENTGOAL IS [2] -~~~ -24164104 DOWN 12 -24164104 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24164146 homeCount = 3 -24164147 waitCount = 1 -24164147 ripCount = 0 -24164148 locktype1 = 1 -24164148 locktype2 = 0 -24164149 locktype3 = 1 -24164149 goalCount = 0 -24164150 goalTotal = 0 -24164150 otherCount = 0 -~~~ -24164151 CURRENTGOAL IS [2] -~~~ -24166882 UP 3 -24166882 4 255 -~~~ -~~~ -24167174 DOWN 3 -24167174 0 255 -~~~ -~~~ -24167201 0 254 -~~~ -~~~ -24167203 0 252 -~~~ -~~~ -24167205 0 248 -~~~ -~~~ -24167207 0 240 -~~~ -~~~ -24167209 0 224 -~~~ -~~~ -24167211 0 192 -~~~ -~~~ -24167212 0 128 -~~~ -~~~ -24167214 0 0 -~~~ -~~~ -24167216 0 512 -24167217 homeCount = 3 -24167218 waitCount = 1 -24167218 ripCount = 0 -24167219 locktype1 = 1 -24167219 locktype2 = 0 -24167240 locktype3 = 1 -24167240 goalCount = 0 -24167241 goalTotal = 0 -24167241 otherCount = 1 -~~~ -24167242 4 512 -24167909 DOWN 3 -24167909 0 512 -24167987 4 512 -24167998 DOWN 3 -24167998 0 512 -24171196 UP 10 -24171196 waslock = 0 -24171196 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24171228 512 16777728 -~~~ -24171232 DOWN 10 -24171232 0 16777728 -~~~ -~~~ -24171244 0 16778752 -~~~ -~~~ -24171246 0 16778240 -24171247 homeCount = 4 -24171247 waitCount = 1 -24171248 ripCount = 0 -24171248 locktype1 = 1 -24171249 locktype2 = 0 -24171249 locktype3 = 1 -24171250 goalCount = 0 -24171250 goalTotal = 0 -24171251 otherCount = 1 -~~~ -24171296 UP 10 -24171296 waslock = 0 -24171296 512 16778240 -~~~ -24171323 DOWN 10 -24171323 0 16778240 -~~~ -~~~ -~~~ -~~~ -24171346 homeCount = 4 -24171346 waitCount = 1 -24171347 ripCount = 0 -24171347 locktype1 = 1 -24171348 locktype2 = 0 -24171348 locktype3 = 1 -24171349 goalCount = 0 -24171349 goalTotal = 0 -24171350 otherCount = 1 -~~~ -24171378 0 1024 -24171850 UP 10 -24171850 waslock = 0 -24171850 512 1024 -~~~ -24172122 DOWN 10 -24172122 0 1024 -~~~ -~~~ -~~~ -~~~ -24172155 homeCount = 4 -24172156 waitCount = 1 -24172156 ripCount = 0 -24172157 locktype1 = 1 -24172157 locktype2 = 0 -24172158 locktype3 = 1 -24172158 goalCount = 0 -24172159 goalTotal = 0 -24172159 otherCount = 1 -~~~ -24172177 UP 10 -24172177 waslock = 0 -24172177 512 1024 -24172206 DOWN 10 -24172206 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24172253 homeCount = 4 -24172254 waitCount = 1 -24172254 ripCount = 0 -24172255 locktype1 = 1 -24172255 locktype2 = 0 -24172256 locktype3 = 1 -24172256 goalCount = 0 -24172257 goalTotal = 0 -24172257 otherCount = 1 -~~~ -24172303 UP 10 -24172303 waslock = 0 -24172303 512 1024 -~~~ -24172431 DOWN 10 -24172431 0 1024 -24172454 UP 10 -24172454 waslock = 0 -24172454 512 1024 -~~~ -~~~ -~~~ -~~~ -24172460 homeCount = 4 -24172461 waitCount = 1 -24172461 ripCount = 0 -24172462 locktype1 = 1 -24172462 locktype2 = 0 -24172463 locktype3 = 1 -24172463 goalCount = 0 -24172464 goalTotal = 0 -24172464 otherCount = 1 -~~~ -~~~ -24176002 DOWN 10 -24176002 0 1024 -~~~ -~~~ -~~~ -~~~ -24176021 homeCount = 4 -24176022 waitCount = 1 -24176022 ripCount = 0 -24176023 locktype1 = 1 -24176023 locktype2 = 0 -24176024 locktype3 = 1 -24176024 goalCount = 0 -24176025 goalTotal = 0 -24176025 otherCount = 1 -~~~ -24176057 UP 10 -24176057 waslock = 0 -24176057 512 1024 -~~~ -24176101 DOWN 10 -24176101 0 1024 -~~~ -~~~ -~~~ -~~~ -24176131 homeCount = 4 -24176131 waitCount = 1 -24176132 ripCount = 0 -24176132 locktype1 = 1 -24176133 locktype2 = 0 -24176133 locktype3 = 1 -24176134 goalCount = 0 -24176134 goalTotal = 0 -24176135 otherCount = 1 -~~~ -24177410 UP 11 -24177410 1024 1024 -24177464 DOWN 11 -24177464 0 1024 -24177493 UP 11 -24177493 1024 1024 -24178180 DOWN 11 -24178180 0 1024 -24178233 UP 11 -24178233 1024 1024 -24178411 BEEP1 -24178411 BEEP2 -~~~ -~~~ -~~~ -24178442 1024 33555456 -~~~ -24178528 DOWN 11 -24178528 0 33555456 -24178550 UP 11 -24178550 1024 33555456 -24178592 1024 1024 -~~~ -~~~ -24179111 1024 0 -~~~ -~~~ -24179113 1024 1 -~~~ -~~~ -24179115 1024 3 -~~~ -~~~ -24179116 1024 7 -~~~ -~~~ -24179118 1024 15 -~~~ -~~~ -24179120 1024 31 -~~~ -24179121 DOWN 11 -24179121 0 31 -~~~ -~~~ -24179123 0 63 -~~~ -~~~ -24179125 0 127 -~~~ -24179126 0 255 -24179127 homeCount = 4 -24179128 waitCount = 1 -24179149 ripCount = 1 -24179149 locktype1 = 1 -24179150 locktype2 = 0 -24179150 locktype3 = 1 -24179151 goalCount = 0 -24179151 goalTotal = 0 -24179152 otherCount = 1 -~~~ -24179153 CURRENTGOAL IS [2] -~~~ -24179153 UP 11 -24179153 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24179182 homeCount = 4 -24179183 waitCount = 1 -24179183 ripCount = 1 -24179184 locktype1 = 1 -24179184 locktype2 = 0 -24179185 locktype3 = 1 -24179185 goalCount = 0 -24179206 goalTotal = 0 -24179207 otherCount = 1 -~~~ -24179208 CURRENTGOAL IS [2] -~~~ -24183586 DOWN 11 -24183586 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24183630 homeCount = 4 -24183630 waitCount = 1 -24183631 ripCount = 1 -24183631 locktype1 = 1 -24183632 locktype2 = 0 -24183632 locktype3 = 1 -24183633 goalCount = 0 -24183633 goalTotal = 0 -24183634 otherCount = 1 -~~~ -24183635 CURRENTGOAL IS [2] -~~~ -24186519 UP 7 -24186519 64 255 -24186539 DOWN 7 -24186539 0 255 -~~~ -~~~ -~~~ -~~~ -24186563 0 254 -~~~ -~~~ -24186565 0 252 -~~~ -~~~ -24186567 0 248 -~~~ -~~~ -24186569 0 240 -~~~ -~~~ -24186571 0 224 -~~~ -~~~ -24186573 0 192 -~~~ -~~~ -24186574 0 128 -~~~ -~~~ -24186576 0 0 -~~~ -~~~ -24186578 0 512 -24186579 homeCount = 4 -24186580 waitCount = 1 -24186580 ripCount = 1 -24186581 locktype1 = 1 -24186581 locktype2 = 0 -24186602 locktype3 = 1 -24186602 goalCount = 0 -24186603 goalTotal = 0 -24186603 otherCount = 2 -~~~ -24186624 64 512 -24186990 DOWN 7 -24186990 0 512 -24187012 64 512 -24189589 DOWN 7 -24189589 0 512 -24189637 64 512 -24189704 DOWN 7 -24189704 0 512 -24196352 UP 10 -24196352 waslock = 0 -24196352 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24196378 512 16777728 -~~~ -24196528 512 512 -24196681 DOWN 10 -24196680 0 512 -~~~ -~~~ -24196702 0 1536 -~~~ -~~~ -24196704 0 1024 -24196705 homeCount = 5 -24196706 waitCount = 1 -24196706 ripCount = 1 -24196707 locktype1 = 1 -24196707 locktype2 = 0 -24196708 locktype3 = 1 -24196708 goalCount = 0 -24196709 goalTotal = 0 -24196709 otherCount = 2 -~~~ -24196730 UP 10 -24196731 waslock = 0 -24196730 512 1024 -~~~ -24200930 DOWN 10 -24200930 0 1024 -~~~ -~~~ -~~~ -~~~ -24200956 homeCount = 5 -24200957 waitCount = 1 -24200957 ripCount = 1 -24200958 locktype1 = 1 -24200958 locktype2 = 0 -24200959 locktype3 = 1 -24200960 goalCount = 0 -24200960 goalTotal = 0 -24200960 otherCount = 2 -~~~ -24200961 UP 10 -24200961 waslock = 0 -24200961 512 1024 -~~~ -24201037 DOWN 10 -24201037 0 1024 -~~~ -~~~ -~~~ -~~~ -24201065 homeCount = 5 -24201065 waitCount = 1 -24201066 ripCount = 1 -24201066 locktype1 = 1 -24201067 locktype2 = 0 -24201067 locktype3 = 1 -24201068 goalCount = 0 -24201068 goalTotal = 0 -24201069 otherCount = 2 -~~~ -24203157 UP 11 -24203157 1024 1024 -24203186 DOWN 11 -24203186 0 1024 -24203242 UP 11 -24203242 1024 1024 -24204343 DOWN 11 -24204343 0 1024 -24204378 UP 11 -24204378 1024 1024 -24204450 DOWN 11 -24204450 0 1024 -24204510 UP 11 -24204510 1024 1024 -24204657 BEEP1 -24204657 BEEP2 -~~~ -~~~ -~~~ -24204685 1024 33555456 -~~~ -24204835 1024 1024 -24208431 DOWN 11 -24208431 0 1024 -24208433 UP 11 -24208433 1024 1024 -~~~ -~~~ -24208455 1024 0 -~~~ -~~~ -24208457 1024 1 -~~~ -~~~ -24208459 1024 3 -~~~ -~~~ -24208460 1024 7 -~~~ -~~~ -24208462 1024 15 -~~~ -~~~ -24208464 1024 31 -~~~ -~~~ -24208466 1024 63 -~~~ -~~~ -24208468 1024 127 -~~~ -~~~ -24208469 1024 255 -24208470 homeCount = 5 -24208471 waitCount = 1 -24208472 ripCount = 2 -24208472 locktype1 = 1 -24208493 locktype2 = 0 -24208493 locktype3 = 1 -24208494 goalCount = 0 -24208494 goalTotal = 0 -24208495 otherCount = 2 -~~~ -24208496 CURRENTGOAL IS [2] -~~~ -24208558 DOWN 11 -24208558 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208599 UP 11 -24208599 1024 255 -24208600 homeCount = 5 -24208601 waitCount = 1 -24208601 ripCount = 2 -24208602 locktype1 = 1 -24208602 locktype2 = 0 -24208603 locktype3 = 1 -24208603 goalCount = 0 -24208604 goalTotal = 0 -24208604 otherCount = 2 -~~~ -24208626 CURRENTGOAL IS [2] -~~~ -24208626 DOWN 11 -24208626 0 255 -24208640 UP 11 -24208640 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208681 homeCount = 5 -24208682 waitCount = 1 -24208682 ripCount = 2 -24208683 locktype1 = 1 -24208684 locktype2 = 0 -24208684 locktype3 = 1 -24208685 goalCount = 0 -24208685 goalTotal = 0 -24208686 otherCount = 2 -~~~ -24208687 CURRENTGOAL IS [2] -~~~ -24208711 DOWN 11 -24208711 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208740 homeCount = 5 -24208741 waitCount = 1 -24208741 ripCount = 2 -24208742 locktype1 = 1 -24208742 locktype2 = 0 -24208743 locktype3 = 1 -24208743 goalCount = 0 -24208744 goalTotal = 0 -24208744 otherCount = 2 -~~~ -24208745 CURRENTGOAL IS [2] -~~~ -24208812 UP 11 -24208812 1024 255 -24208850 DOWN 11 -24208850 0 255 -24208860 UP 11 -24208860 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208893 homeCount = 5 -24208893 waitCount = 1 -24208894 ripCount = 2 -24208894 locktype1 = 1 -24208895 locktype2 = 0 -24208895 locktype3 = 1 -24208896 goalCount = 0 -24208896 goalTotal = 0 -24208897 otherCount = 2 -~~~ -24208898 CURRENTGOAL IS [2] -~~~ -24209074 DOWN 11 -24209074 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209106 UP 11 -24209106 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -24209112 homeCount = 5 -24209112 waitCount = 1 -24209113 ripCount = 2 -24209113 locktype1 = 1 -24209114 locktype2 = 0 -24209114 locktype3 = 1 -24209115 goalCount = 0 -24209115 goalTotal = 0 -24209116 otherCount = 2 -~~~ -24209117 CURRENTGOAL IS [2] -~~~ -24209145 DOWN 11 -24209145 0 255 -24209163 UP 11 -24209163 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209187 homeCount = 5 -24209188 waitCount = 1 -24209188 ripCount = 2 -24209189 locktype1 = 1 -24209189 locktype2 = 0 -24209190 locktype3 = 1 -24209190 goalCount = 0 -24209191 goalTotal = 0 -24209191 otherCount = 2 -~~~ -24209192 CURRENTGOAL IS [2] -~~~ -24209289 DOWN 11 -24209289 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209331 homeCount = 5 -24209332 waitCount = 1 -24209332 ripCount = 2 -24209333 locktype1 = 1 -24209333 locktype2 = 0 -24209334 locktype3 = 1 -24209334 goalCount = 0 -24209335 goalTotal = 0 -24209335 otherCount = 2 -~~~ -24209337 CURRENTGOAL IS [2] -~~~ -24212126 UP 5 -24212126 16 255 -~~~ -24212146 DOWN 5 -24212146 0 255 -~~~ -~~~ -~~~ -24212177 0 254 -~~~ -~~~ -24212178 0 252 -~~~ -~~~ -24212180 0 248 -~~~ -~~~ -24212182 0 240 -~~~ -~~~ -24212184 0 224 -~~~ -~~~ -24212186 0 192 -~~~ -~~~ -24212187 0 128 -~~~ -~~~ -24212189 0 0 -~~~ -~~~ -24212191 0 512 -24212192 homeCount = 5 -24212193 waitCount = 1 -24212193 ripCount = 2 -24212194 locktype1 = 1 -24212194 locktype2 = 0 -24212215 locktype3 = 1 -24212215 goalCount = 0 -24212216 goalTotal = 0 -24212216 otherCount = 3 -~~~ -24212469 16 512 -24212756 DOWN 5 -24212756 0 512 -24212762 16 512 -24213578 DOWN 5 -24213578 0 512 -24213590 16 512 -24213754 DOWN 5 -24213754 0 512 -24213774 16 512 -24214290 DOWN 5 -24214290 0 512 -24214316 16 512 -24214469 DOWN 5 -24214469 0 512 -24214501 16 512 -24214663 DOWN 5 -24214663 0 512 -24214680 16 512 -24214843 DOWN 5 -24214843 0 512 -24214884 16 512 -24215375 DOWN 5 -24215375 0 512 -24215398 16 512 -24215554 DOWN 5 -24215554 0 512 -24215575 16 512 -24216148 DOWN 5 -24216148 0 512 -24216172 16 512 -24216867 DOWN 5 -24216867 0 512 -24216888 16 512 -24216954 DOWN 5 -24216954 0 512 -24216960 16 512 -24217048 DOWN 5 -24217048 0 512 -24217080 16 512 -24217982 DOWN 5 -24217982 0 512 -24218106 16 512 -24218201 DOWN 5 -24218201 0 512 -24218225 16 512 -24218393 DOWN 5 -24218393 0 512 -24218402 16 512 -24218595 DOWN 5 -24218595 0 512 -24218607 16 512 -24218777 DOWN 5 -24218777 0 512 -24218799 16 512 -24218818 DOWN 5 -24218818 0 512 -24218852 16 512 -24218964 DOWN 5 -24218964 0 512 -24218986 16 512 -24219001 DOWN 5 -24219001 0 512 -24219056 16 512 -24219074 DOWN 5 -24219074 0 512 -24233913 UP 10 -24233913 waslock = 0 -24233913 512 512 -24233926 DOWN 10 -24233926 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24233953 0 16777728 -~~~ -~~~ -~~~ -24233956 0 16779776 -~~~ -~~~ -24233958 0 16779264 -24233959 homeCount = 6 -24233959 waitCount = 1 -24233960 ripCount = 2 -24233960 locktype1 = 1 -24233961 locktype2 = 0 -24233961 locktype3 = 1 -24233962 goalCount = 0 -24233962 goalTotal = 0 -24233963 otherCount = 3 -~~~ -24234035 UP 10 -24234035 waslock = 0 -24234035 512 16779264 -~~~ -24234103 512 2048 -24234151 DOWN 10 -24234151 0 2048 -~~~ -~~~ -~~~ -~~~ -24234174 homeCount = 6 -24234175 waitCount = 1 -24234175 ripCount = 2 -24234176 locktype1 = 1 -24234176 locktype2 = 0 -24234177 locktype3 = 1 -24234177 goalCount = 0 -24234178 goalTotal = 0 -24234178 otherCount = 3 -~~~ -24234246 UP 10 -24234246 waslock = 0 -24234246 512 2048 -~~~ -24234719 DOWN 10 -24234719 0 2048 -24234733 UP 10 -24234733 waslock = 0 -24234733 512 2048 -~~~ -~~~ -~~~ -~~~ -24234756 homeCount = 6 -24234757 waitCount = 1 -24234757 ripCount = 2 -24234758 locktype1 = 1 -24234758 locktype2 = 0 -24234759 locktype3 = 1 -24234759 goalCount = 0 -24234760 goalTotal = 0 -24234760 otherCount = 3 -~~~ -~~~ -24234879 DOWN 10 -24234879 0 2048 -24234898 UP 10 -24234899 waslock = 0 -24234898 512 2048 -~~~ -~~~ -~~~ -~~~ -24234904 homeCount = 6 -24234904 waitCount = 1 -24234905 ripCount = 2 -24234905 locktype1 = 1 -24234906 locktype2 = 0 -24234906 locktype3 = 1 -24234907 goalCount = 0 -24234907 goalTotal = 0 -24234908 otherCount = 3 -~~~ -~~~ -24235038 DOWN 10 -24235038 0 2048 -24235063 UP 10 -24235064 waslock = 0 -24235063 512 2048 -~~~ -~~~ -~~~ -~~~ -24235074 homeCount = 6 -24235074 waitCount = 1 -24235075 ripCount = 2 -24235075 locktype1 = 1 -24235076 locktype2 = 0 -24235076 locktype3 = 1 -24235077 goalCount = 0 -24235077 goalTotal = 0 -24235078 otherCount = 3 -~~~ -~~~ -24238546 DOWN 10 -24238546 0 2048 -24238564 UP 10 -24238564 waslock = 0 -24238564 512 2048 -~~~ -~~~ -~~~ -~~~ -24238587 homeCount = 6 -24238588 waitCount = 1 -24238588 ripCount = 2 -24238589 locktype1 = 1 -24238589 locktype2 = 0 -24238590 locktype3 = 1 -24238590 goalCount = 0 -24238591 goalTotal = 0 -24238591 otherCount = 3 -~~~ -~~~ -24238665 DOWN 10 -24238665 0 2048 -~~~ -~~~ -~~~ -~~~ -24238694 homeCount = 6 -24238694 waitCount = 1 -24238695 ripCount = 2 -24238695 locktype1 = 1 -24238696 locktype2 = 0 -24238696 locktype3 = 1 -24238697 goalCount = 0 -24238697 goalTotal = 0 -24238698 otherCount = 3 -~~~ -24238715 UP 10 -24238715 waslock = 0 -24238715 512 2048 -~~~ -24238760 DOWN 10 -24238760 0 2048 -~~~ -~~~ -~~~ -~~~ -24238786 homeCount = 6 -24238787 waitCount = 1 -24238787 ripCount = 2 -24238788 locktype1 = 1 -24238788 locktype2 = 0 -24238789 locktype3 = 1 -24238789 goalCount = 0 -24238790 goalTotal = 0 -24238790 otherCount = 3 -~~~ -24240420 UP 12 -24240420 2048 2048 -24241195 DOWN 12 -24241195 0 2048 -24241237 UP 12 -24241237 2048 2048 -24241466 DOWN 12 -24241466 0 2048 -24241603 UP 12 -24241603 2048 2048 -24241920 CLICK1 -24241920 CLICK2 -~~~ -~~~ -~~~ -24241942 2048 67110912 -~~~ -24242092 2048 2048 -24248498 DOWN 12 -24248498 0 2048 -~~~ -~~~ -24248521 0 0 -~~~ -~~~ -24248523 UP 12 -24248523 2048 1 -~~~ -~~~ -24248525 2048 3 -~~~ -~~~ -24248526 2048 7 -~~~ -~~~ -24248528 2048 15 -~~~ -~~~ -24248530 2048 31 -~~~ -~~~ -24248532 2048 63 -~~~ -~~~ -24248533 2048 127 -~~~ -~~~ -24248535 2048 255 -24248536 homeCount = 6 -24248537 waitCount = 2 -24248537 ripCount = 2 -24248559 locktype1 = 1 -24248559 locktype2 = 0 -24248560 locktype3 = 1 -24248560 goalCount = 0 -24248561 goalTotal = 0 -24248561 otherCount = 3 -~~~ -24248562 CURRENTGOAL IS [2] -~~~ -24248563 DOWN 12 -24248563 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24248619 homeCount = 6 -24248619 waitCount = 2 -24248620 ripCount = 2 -24248620 locktype1 = 1 -24248621 locktype2 = 0 -24248621 locktype3 = 1 -24248622 goalCount = 0 -24248622 goalTotal = 0 -24248623 otherCount = 3 -~~~ -24248624 CURRENTGOAL IS [2] -~~~ -24251525 UP 1 -24251524 1 255 -~~~ -~~~ -24252734 DOWN 1 -24252734 0 255 -24252741 1 255 -~~~ -~~~ -24252757 1 254 -~~~ -~~~ -24252759 1 252 -~~~ -~~~ -24252760 1 248 -~~~ -~~~ -24252762 1 240 -~~~ -~~~ -24252764 1 224 -~~~ -~~~ -24252766 1 192 -~~~ -~~~ -24252768 1 128 -~~~ -~~~ -24252769 1 0 -~~~ -~~~ -24252771 1 512 -24252772 homeCount = 6 -24252773 waitCount = 2 -24252773 ripCount = 2 -24252774 locktype1 = 1 -24252774 locktype2 = 0 -24252795 locktype3 = 1 -24252796 goalCount = 0 -24252796 goalTotal = 0 -24252797 otherCount = 4 -~~~ -24253082 DOWN 1 -24253082 0 512 -24253096 1 512 -24253270 DOWN 1 -24253270 0 512 -24253278 1 512 -24253999 DOWN 1 -24253999 0 512 -24254012 1 512 -24254185 DOWN 1 -24254185 0 512 -24254197 1 512 -24254296 DOWN 1 -24254296 0 512 -24254647 1 512 -24254672 DOWN 1 -24254672 0 512 -24262772 UP 10 -24262773 waslock = 0 -24262772 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24262798 512 16777728 -~~~ -24262832 DOWN 10 -24262832 0 16777728 -~~~ -~~~ -24262851 0 16778752 -~~~ -~~~ -24262853 0 16778240 -24262854 homeCount = 7 -24262855 waitCount = 2 -24262855 ripCount = 2 -24262856 locktype1 = 1 -24262856 locktype2 = 0 -24262857 locktype3 = 1 -24262857 goalCount = 0 -24262858 goalTotal = 0 -24262858 otherCount = 4 -~~~ -24262879 UP 10 -24262879 waslock = 0 -24262879 512 16778240 -~~~ -24262948 512 1024 -24262970 DOWN 10 -24262970 0 1024 -~~~ -~~~ -~~~ -~~~ -24262994 homeCount = 7 -24262995 waitCount = 2 -24262995 ripCount = 2 -24262996 locktype1 = 1 -24262996 locktype2 = 0 -24262997 locktype3 = 1 -24262997 goalCount = 0 -24262998 goalTotal = 0 -24262998 otherCount = 4 -~~~ -24263099 UP 10 -24263099 waslock = 0 -24263099 512 1024 -~~~ -24263849 DOWN 10 -24263849 0 1024 -24263863 UP 10 -24263863 waslock = 0 -24263863 512 1024 -~~~ -~~~ -~~~ -~~~ -24263874 homeCount = 7 -24263874 waitCount = 2 -24263875 ripCount = 2 -24263875 locktype1 = 1 -24263876 locktype2 = 0 -24263876 locktype3 = 1 -24263877 goalCount = 0 -24263877 goalTotal = 0 -24263878 otherCount = 4 -~~~ -~~~ -24266888 DOWN 10 -24266888 0 1024 -~~~ -~~~ -~~~ -~~~ -24266911 homeCount = 7 -24266912 waitCount = 2 -24266912 ripCount = 2 -24266913 locktype1 = 1 -24266913 locktype2 = 0 -24266914 locktype3 = 1 -24266914 goalCount = 0 -24266915 goalTotal = 0 -24266915 otherCount = 4 -~~~ -24266933 UP 10 -24266933 waslock = 0 -24266933 512 1024 -~~~ -24266988 DOWN 10 -24266988 0 1024 -~~~ -~~~ -~~~ -~~~ -24267015 homeCount = 7 -24267016 waitCount = 2 -24267016 ripCount = 2 -24267017 locktype1 = 1 -24267017 locktype2 = 0 -24267018 locktype3 = 1 -24267018 goalCount = 0 -24267019 goalTotal = 0 -24267019 otherCount = 4 -~~~ -24271770 UP 11 -24271770 1024 1024 -24273771 BEEP1 -24273771 BEEP2 -~~~ -~~~ -~~~ -24273793 1024 33555456 -~~~ -24273943 1024 1024 -24277448 DOWN 11 -24277448 0 1024 -~~~ -~~~ -24277475 0 0 -~~~ -~~~ -24277476 0 1 -~~~ -~~~ -24277478 0 3 -~~~ -~~~ -24277480 0 7 -~~~ -~~~ -24277482 0 15 -~~~ -~~~ -24277484 0 31 -~~~ -24277485 UP 11 -24277485 1024 31 -~~~ -~~~ -24277487 1024 63 -~~~ -~~~ -24277489 1024 127 -~~~ -24277490 1024 255 -24277491 homeCount = 7 -24277491 waitCount = 2 -24277512 ripCount = 3 -24277513 locktype1 = 1 -24277513 locktype2 = 0 -24277514 locktype3 = 1 -24277514 goalCount = 0 -24277515 goalTotal = 0 -24277515 otherCount = 4 -~~~ -24277517 CURRENTGOAL IS [2] -~~~ -24277552 DOWN 11 -24277552 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24277592 homeCount = 7 -24277593 waitCount = 2 -24277593 ripCount = 3 -24277594 locktype1 = 1 -24277594 locktype2 = 0 -24277595 locktype3 = 1 -24277596 goalCount = 0 -24277596 goalTotal = 0 -24277597 otherCount = 4 -~~~ -24277598 CURRENTGOAL IS [2] -~~~ -24281549 UP 8 -24281549 128 255 -~~~ -~~~ -24281853 DOWN 8 -24281853 0 255 -~~~ -~~~ -24281878 0 254 -~~~ -~~~ -24281880 0 252 -~~~ -~~~ -24281882 0 248 -~~~ -~~~ -24281883 0 240 -~~~ -~~~ -24281885 0 224 -~~~ -~~~ -24281887 0 192 -~~~ -~~~ -24281889 0 128 -~~~ -~~~ -24281891 0 0 -~~~ -~~~ -24281893 0 512 -24281893 homeCount = 7 -24281894 waitCount = 2 -24281895 ripCount = 3 -24281895 locktype1 = 1 -24281895 locktype2 = 0 -24281916 locktype3 = 1 -24281917 goalCount = 0 -24281917 goalTotal = 0 -24281918 otherCount = 5 -~~~ -24281918 128 512 -24282421 DOWN 8 -24282421 0 512 -24286521 UP 10 -24286521 waslock = 0 -24286521 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24286555 512 16777728 -~~~ -24286705 512 512 -24286795 DOWN 10 -24286795 0 512 -~~~ -~~~ -24286820 0 2560 -~~~ -~~~ -24286822 0 2048 -24286823 homeCount = 8 -24286823 waitCount = 2 -24286824 ripCount = 3 -24286824 locktype1 = 1 -24286825 locktype2 = 0 -24286825 locktype3 = 1 -24286826 goalCount = 0 -24286826 goalTotal = 0 -24286827 otherCount = 5 -~~~ -24286920 UP 10 -24286920 waslock = 0 -24286920 512 2048 -~~~ -24287572 DOWN 10 -24287572 0 2048 -24287592 UP 10 -24287592 waslock = 0 -24287592 512 2048 -~~~ -~~~ -~~~ -~~~ -24287596 homeCount = 8 -24287597 waitCount = 2 -24287597 ripCount = 3 -24287598 locktype1 = 1 -24287598 locktype2 = 0 -24287599 locktype3 = 1 -24287599 goalCount = 0 -24287600 goalTotal = 0 -24287600 otherCount = 5 -~~~ -~~~ -24291624 DOWN 10 -24291624 0 2048 -~~~ -~~~ -~~~ -~~~ -24291653 homeCount = 8 -24291653 waitCount = 2 -24291654 ripCount = 3 -24291654 locktype1 = 1 -24291655 locktype2 = 0 -24291655 locktype3 = 1 -24291656 goalCount = 0 -24291656 goalTotal = 0 -24291657 otherCount = 5 -~~~ -24291697 UP 10 -24291698 waslock = 0 -24291697 512 2048 -24291715 DOWN 10 -24291715 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -24291743 homeCount = 8 -24291743 waitCount = 2 -24291744 ripCount = 3 -24291744 locktype1 = 1 -24291745 locktype2 = 0 -24291745 locktype3 = 1 -24291746 goalCount = 0 -24291746 goalTotal = 0 -24291746 otherCount = 5 -~~~ -24293130 UP 12 -24293130 2048 2048 -24293155 DOWN 12 -24293155 0 2048 -24293209 UP 12 -24293209 2048 2048 -24294378 DOWN 12 -24294378 0 2048 -24294428 UP 12 -24294428 2048 2048 -24295131 CLICK1 -24295131 CLICK2 -~~~ -~~~ -~~~ -24295153 2048 67110912 -~~~ -24295303 2048 2048 -24300097 DOWN 12 -24300097 0 2048 -~~~ -~~~ -24300119 0 0 -~~~ -~~~ -24300121 0 1 -~~~ -~~~ -24300123 0 3 -~~~ -~~~ -24300125 0 7 -~~~ -~~~ -24300127 0 15 -~~~ -~~~ -24300129 0 31 -~~~ -~~~ -24300130 0 63 -~~~ -~~~ -24300132 0 127 -~~~ -~~~ -24300134 0 255 -24300135 homeCount = 8 -24300136 waitCount = 3 -24300136 ripCount = 3 -24300137 locktype1 = 1 -24300137 locktype2 = 0 -24300158 locktype3 = 1 -24300158 goalCount = 0 -24300159 goalTotal = 0 -24300159 otherCount = 5 -~~~ -24300160 CURRENTGOAL IS [2] -~~~ -24303861 UP 3 -24303861 4 255 -~~~ -~~~ -24304128 DOWN 3 -24304128 0 255 -~~~ -~~~ -24304149 0 254 -~~~ -~~~ -24304151 0 252 -~~~ -~~~ -24304153 0 248 -~~~ -~~~ -24304155 0 240 -~~~ -~~~ -24304157 0 224 -~~~ -~~~ -24304158 0 192 -~~~ -~~~ -24304160 0 128 -~~~ -~~~ -24304162 0 0 -~~~ -~~~ -24304164 0 512 -24304165 homeCount = 8 -24304165 waitCount = 3 -24304166 ripCount = 3 -24304166 locktype1 = 1 -24304188 locktype2 = 0 -24304188 locktype3 = 1 -24304189 goalCount = 0 -24304189 goalTotal = 0 -24304190 otherCount = 6 -~~~ -24305317 4 512 -24305742 DOWN 3 -24305742 0 512 -24309794 UP 10 -24309795 waslock = 0 -24309794 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24309826 512 16777728 -~~~ -24309976 512 512 -24310016 DOWN 10 -24310016 0 512 -~~~ -~~~ -24310043 0 1536 -~~~ -~~~ -24310045 0 1024 -24310046 homeCount = 9 -24310047 waitCount = 3 -24310047 ripCount = 3 -24310048 locktype1 = 1 -24310048 locktype2 = 0 -24310049 locktype3 = 1 -24310049 goalCount = 0 -24310050 goalTotal = 0 -24310050 otherCount = 6 -~~~ -24310071 UP 10 -24310072 waslock = 0 -24310071 512 1024 -~~~ -24316271 DOWN 10 -24316271 0 1024 -~~~ -~~~ -~~~ -~~~ -24316293 homeCount = 9 -24316294 waitCount = 3 -24316294 ripCount = 3 -24316295 locktype1 = 1 -24316295 locktype2 = 0 -24316296 locktype3 = 1 -24316296 goalCount = 0 -24316297 goalTotal = 0 -24316297 otherCount = 6 -~~~ -24316327 UP 10 -24316327 waslock = 0 -24316327 512 1024 -~~~ -24316347 DOWN 10 -24316347 0 1024 -~~~ -~~~ -~~~ -~~~ -24316382 homeCount = 9 -24316383 waitCount = 3 -24316383 ripCount = 3 -24316384 locktype1 = 1 -24316384 locktype2 = 0 -24316385 locktype3 = 1 -24316385 goalCount = 0 -24316386 goalTotal = 0 -24316386 otherCount = 6 -~~~ -24317934 UP 11 -24317934 1024 1024 -24319937 DOWN 11 -24319937 0 1024 -24319996 UP 11 -24319996 1024 1024 -24321434 BEEP1 -24321434 BEEP2 -~~~ -~~~ -~~~ -24321456 1024 33555456 -~~~ -24321606 1024 1024 -24325737 DOWN 11 -24325737 0 1024 -~~~ -~~~ -24325761 0 0 -~~~ -~~~ -24325762 0 1 -~~~ -~~~ -24325764 0 3 -~~~ -~~~ -24325766 0 7 -~~~ -24325767 UP 11 -24325767 1024 7 -~~~ -~~~ -24325769 1024 15 -~~~ -~~~ -24325771 1024 31 -~~~ -~~~ -24325773 1024 63 -~~~ -24325774 1024 127 -~~~ -~~~ -24325775 1024 255 -24325776 homeCount = 9 -24325777 waitCount = 3 -24325798 ripCount = 4 -24325799 locktype1 = 1 -24325799 locktype2 = 0 -24325800 locktype3 = 1 -24325800 goalCount = 0 -24325801 goalTotal = 0 -24325801 otherCount = 6 -~~~ -24325802 CURRENTGOAL IS [2] -~~~ -24325834 DOWN 11 -24325834 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24325867 homeCount = 9 -24325867 waitCount = 3 -24325868 ripCount = 4 -24325868 locktype1 = 1 -24325869 locktype2 = 0 -24325870 locktype3 = 1 -24325870 goalCount = 0 -24325871 goalTotal = 0 -24325871 otherCount = 6 -~~~ -24325872 CURRENTGOAL IS [2] -~~~ -24328994 UP 7 -24328994 64 255 -~~~ -~~~ -24329409 DOWN 7 -24329409 0 255 -~~~ -~~~ -24329431 0 254 -~~~ -~~~ -24329433 0 252 -~~~ -~~~ -24329434 0 248 -~~~ -~~~ -24329436 0 240 -~~~ -~~~ -24329438 0 224 -~~~ -~~~ -24329440 0 192 -~~~ -~~~ -24329442 0 128 -~~~ -~~~ -24329444 0 0 -~~~ -~~~ -24329445 0 512 -24329446 homeCount = 9 -24329447 waitCount = 3 -24329447 ripCount = 4 -24329448 locktype1 = 1 -24329448 locktype2 = 0 -24329470 locktype3 = 1 -24329470 goalCount = 0 -24329471 goalTotal = 0 -24329471 otherCount = 7 -~~~ -24329556 64 512 -24330105 DOWN 7 -24330105 0 512 -24330111 64 512 -24330227 DOWN 7 -24330227 0 512 -24330263 64 512 -24330369 DOWN 7 -24330369 0 512 -24334809 UP 10 -24334810 waslock = 0 -24334809 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24334837 512 16777728 -~~~ -24334987 512 512 -24335207 DOWN 10 -24335207 0 512 -~~~ -~~~ -24335235 0 2560 -~~~ -~~~ -24335237 0 2048 -24335238 homeCount = 10 -24335238 waitCount = 3 -24335239 ripCount = 4 -24335239 locktype1 = 1 -24335240 locktype2 = 0 -24335240 locktype3 = 1 -24335241 goalCount = 0 -24335241 goalTotal = 0 -24335242 otherCount = 7 -~~~ -24335265 UP 10 -24335265 waslock = 0 -24335265 512 2048 -~~~ -24338650 DOWN 10 -24338650 0 2048 -~~~ -~~~ -~~~ -~~~ -24338675 homeCount = 10 -24338675 waitCount = 3 -24338676 ripCount = 4 -24338676 locktype1 = 1 -24338677 locktype2 = 0 -24338677 locktype3 = 1 -24338678 goalCount = 0 -24338678 goalTotal = 0 -24338679 otherCount = 7 -~~~ -24340261 UP 12 -24340261 2048 2048 -24342412 DOWN 12 -24342411 0 2048 -24342434 UP 12 -24342434 2048 2048 -24343011 CLICK1 -24343011 CLICK2 -~~~ -~~~ -~~~ -24343038 2048 67110912 -~~~ -24343188 2048 2048 -24349505 DOWN 12 -24349505 0 2048 -~~~ -~~~ -24349532 0 0 -~~~ -~~~ -24349534 0 1 -~~~ -~~~ -24349536 0 3 -~~~ -~~~ -24349538 0 7 -~~~ -~~~ -24349540 0 15 -~~~ -~~~ -24349541 0 31 -~~~ -~~~ -24349543 0 63 -~~~ -~~~ -24349545 0 127 -~~~ -~~~ -24349547 0 255 -24349548 homeCount = 10 -24349548 waitCount = 4 -24349549 ripCount = 4 -24349549 locktype1 = 1 -24349550 locktype2 = 0 -24349571 locktype3 = 1 -24349571 goalCount = 0 -24349572 goalTotal = 0 -24349572 otherCount = 7 -~~~ -24349573 CURRENTGOAL IS [2] -~~~ -24349574 UP 12 -24349574 2048 255 -24349612 DOWN 12 -24349612 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24349653 homeCount = 10 -24349653 waitCount = 4 -24349654 ripCount = 4 -24349654 locktype1 = 1 -24349655 locktype2 = 0 -24349655 locktype3 = 1 -24349656 goalCount = 0 -24349656 goalTotal = 0 -24349657 otherCount = 7 -~~~ -24349658 CURRENTGOAL IS [2] -~~~ -24357745 UP 4 -24357745 8 255 -~~~ -~~~ -24358074 DOWN 4 -24358074 0 255 -~~~ -~~~ -24358096 0 254 -~~~ -~~~ -24358098 0 252 -~~~ -24358099 8 252 -~~~ -~~~ -24358101 8 248 -~~~ -24358102 8 240 -~~~ -~~~ -24358104 8 224 -~~~ -~~~ -24358105 8 192 -~~~ -~~~ -24358107 8 128 -~~~ -~~~ -24358109 8 0 -~~~ -~~~ -24358111 8 512 -24358112 homeCount = 10 -24358112 waitCount = 4 -24358113 ripCount = 4 -24358134 locktype1 = 1 -24358135 locktype2 = 0 -24358135 locktype3 = 1 -24358136 goalCount = 0 -24358136 goalTotal = 0 -24358137 otherCount = 8 -~~~ -24361306 DOWN 4 -24361306 0 512 -24361341 8 512 -24361402 DOWN 4 -24361402 0 512 -24368998 UP 10 -24368998 waslock = 0 -24368998 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24369024 512 16777728 -~~~ -24369174 512 512 -24369202 DOWN 10 -24369202 0 512 -~~~ -~~~ -24369219 0 2560 -~~~ -~~~ -24369221 0 2048 -24369222 homeCount = 11 -24369222 waitCount = 4 -24369223 ripCount = 4 -24369223 locktype1 = 1 -24369224 locktype2 = 0 -24369224 locktype3 = 1 -24369225 goalCount = 0 -24369225 goalTotal = 0 -24369226 otherCount = 8 -~~~ -24369297 UP 10 -24369297 waslock = 0 -24369297 512 2048 -~~~ -24369593 DOWN 10 -24369593 0 2048 -24369603 UP 10 -24369604 waslock = 0 -24369603 512 2048 -~~~ -~~~ -~~~ -~~~ -24369622 homeCount = 11 -24369622 waitCount = 4 -24369623 ripCount = 4 -24369623 locktype1 = 1 -24369624 locktype2 = 0 -24369624 locktype3 = 1 -24369625 goalCount = 0 -24369625 goalTotal = 0 -24369626 otherCount = 8 -~~~ -~~~ -24373779 DOWN 10 -24373779 0 2048 -24373792 UP 10 -24373793 waslock = 0 -24373792 512 2048 -~~~ -~~~ -~~~ -~~~ -24373815 homeCount = 11 -24373816 waitCount = 4 -24373816 ripCount = 4 -24373817 locktype1 = 1 -24373817 locktype2 = 0 -24373818 locktype3 = 1 -24373818 goalCount = 0 -24373819 goalTotal = 0 -24373819 otherCount = 8 -~~~ -~~~ -24373870 DOWN 10 -24373870 0 2048 -~~~ -~~~ -~~~ -~~~ -24373899 homeCount = 11 -24373899 waitCount = 4 -24373900 ripCount = 4 -24373900 locktype1 = 1 -24373901 locktype2 = 0 -24373901 locktype3 = 1 -24373902 goalCount = 0 -24373902 goalTotal = 0 -24373903 otherCount = 8 -~~~ -24375836 UP 12 -24375835 2048 2048 -24378836 CLICK1 -24378836 CLICK2 -~~~ -~~~ -~~~ -24378857 2048 67110912 -~~~ -24379007 2048 2048 -24384231 DOWN 12 -24384231 0 2048 -~~~ -~~~ -24384256 0 0 -~~~ -~~~ -24384258 0 1 -~~~ -~~~ -24384260 0 3 -~~~ -~~~ -24384262 0 7 -~~~ -~~~ -24384263 0 15 -~~~ -~~~ -24384265 0 31 -~~~ -~~~ -24384267 0 63 -~~~ -~~~ -24384269 0 127 -~~~ -~~~ -24384271 0 255 -24384272 homeCount = 11 -24384272 waitCount = 5 -24384273 ripCount = 4 -24384273 locktype1 = 1 -24384274 locktype2 = 0 -24384295 locktype3 = 1 -24384296 goalCount = 0 -24384296 goalTotal = 0 -24384297 otherCount = 8 -~~~ -24384298 CURRENTGOAL IS [2] -~~~ -24384298 UP 12 -24384298 2048 255 -24384325 DOWN 12 -24384325 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24384360 homeCount = 11 -24384361 waitCount = 5 -24384361 ripCount = 4 -24384362 locktype1 = 1 -24384362 locktype2 = 0 -24384363 locktype3 = 1 -24384363 goalCount = 0 -24384364 goalTotal = 0 -24384364 otherCount = 8 -~~~ -24384365 CURRENTGOAL IS [2] -~~~ -24389237 UP 6 -24389236 32 255 -~~~ -~~~ -24389519 DOWN 6 -24389519 0 255 -24389542 32 255 -~~~ -~~~ -24389544 32 254 -~~~ -~~~ -24389546 32 252 -~~~ -~~~ -24389548 32 248 -~~~ -~~~ -24389549 32 240 -~~~ -~~~ -24389551 32 224 -~~~ -~~~ -24389553 32 192 -~~~ -~~~ -24389555 32 128 -~~~ -~~~ -24389557 32 0 -~~~ -~~~ -24389559 32 512 -24389560 homeCount = 11 -24389560 waitCount = 5 -24389561 ripCount = 4 -24389582 locktype1 = 1 -24389582 locktype2 = 0 -24389583 locktype3 = 1 -24389583 goalCount = 0 -24389584 goalTotal = 0 -24389584 otherCount = 9 -~~~ -24392219 DOWN 6 -24392219 0 512 -24392230 32 512 -24393458 DOWN 6 -24393458 0 512 -24393466 32 512 -24393642 DOWN 6 -24393642 0 512 -24393651 32 512 -24393817 DOWN 6 -24393817 0 512 -24393821 32 512 -24393825 DOWN 6 -24393825 0 512 -24393836 32 512 -24394208 DOWN 6 -24394207 0 512 -24394217 32 512 -24394415 DOWN 6 -24394415 0 512 -24394427 32 512 -24394798 DOWN 6 -24394798 0 512 -24394811 32 512 -24394998 DOWN 6 -24394998 0 512 -24395017 32 512 -24395073 DOWN 6 -24395073 0 512 -24395092 32 512 -24395192 DOWN 6 -24395192 0 512 -24395196 32 512 -24395200 DOWN 6 -24395200 0 512 -24395237 32 512 -24395252 DOWN 6 -24395252 0 512 -24395263 32 512 -24395284 DOWN 6 -24395284 0 512 -24395295 32 512 -24395361 DOWN 6 -24395361 0 512 -24395449 32 512 -24395489 DOWN 6 -24395489 0 512 -24402448 UP 10 -24402449 waslock = 0 -24402448 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24402483 512 16777728 -~~~ -24402602 DOWN 10 -24402602 0 16777728 -~~~ -~~~ -24402626 0 16778752 -~~~ -~~~ -24402628 0 16778240 -24402629 homeCount = 12 -24402630 waitCount = 5 -24402630 ripCount = 4 -24402631 locktype1 = 1 -24402631 locktype2 = 0 -24402632 locktype3 = 1 -24402632 goalCount = 0 -24402633 goalTotal = 0 -24402633 otherCount = 9 -~~~ -24402654 0 1024 -24402740 UP 10 -24402740 waslock = 0 -24402740 512 1024 -~~~ -24408234 DOWN 10 -24408234 0 1024 -~~~ -~~~ -~~~ -~~~ -24408258 homeCount = 12 -24408259 waitCount = 5 -24408259 ripCount = 4 -24408260 locktype1 = 1 -24408260 locktype2 = 0 -24408261 locktype3 = 1 -24408261 goalCount = 0 -24408262 goalTotal = 0 -24408262 otherCount = 9 -~~~ -24408263 UP 10 -24408263 waslock = 0 -24408263 512 1024 -~~~ -24408328 DOWN 10 -24408328 0 1024 -~~~ -~~~ -~~~ -~~~ -24408348 homeCount = 12 -24408349 waitCount = 5 -24408349 ripCount = 4 -24408350 locktype1 = 1 -24408350 locktype2 = 0 -24408351 locktype3 = 1 -24408351 goalCount = 0 -24408352 goalTotal = 0 -24408352 otherCount = 9 -~~~ -24410668 UP 11 -24410668 1024 1024 -24411491 DOWN 11 -24411491 0 1024 -24411562 UP 11 -24411562 1024 1024 -24412763 DOWN 11 -24412763 0 1024 -24412794 UP 11 -24412794 1024 1024 -24415418 BEEP1 -24415418 BEEP2 -~~~ -~~~ -~~~ -24415438 1024 33555456 -~~~ -24415588 1024 1024 -24420194 DOWN 11 -24420194 0 1024 -~~~ -~~~ -24420218 0 0 -~~~ -~~~ -24420220 0 1 -~~~ -~~~ -24420222 0 3 -~~~ -~~~ -24420223 0 7 -~~~ -~~~ -24420225 0 15 -~~~ -24420227 UP 11 -24420227 1024 15 -~~~ -~~~ -24420229 1024 31 -~~~ -~~~ -24420230 1024 63 -~~~ -~~~ -24420232 1024 127 -~~~ -24420233 1024 255 -24420234 homeCount = 12 -24420235 waitCount = 5 -24420256 ripCount = 5 -24420256 locktype1 = 1 -24420257 locktype2 = 0 -24420257 locktype3 = 1 -24420258 goalCount = 0 -24420258 goalTotal = 0 -24420259 otherCount = 9 -~~~ -24420260 CURRENTGOAL IS [2] -~~~ -24420296 DOWN 11 -24420296 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24420332 homeCount = 12 -24420332 waitCount = 5 -24420333 ripCount = 5 -24420333 locktype1 = 1 -24420334 locktype2 = 0 -24420334 locktype3 = 1 -24420335 goalCount = 0 -24420335 goalTotal = 0 -24420336 otherCount = 9 -~~~ -24420337 CURRENTGOAL IS [2] -~~~ -24426866 UP 5 -24426866 16 255 -~~~ -~~~ -24426890 DOWN 5 -24426890 0 255 -~~~ -~~~ -24426907 0 254 -~~~ -~~~ -24426909 0 252 -~~~ -~~~ -24426911 0 248 -~~~ -~~~ -24426913 0 240 -~~~ -~~~ -24426915 0 224 -~~~ -~~~ -24426917 0 192 -~~~ -~~~ -24426918 0 128 -~~~ -~~~ -24426920 0 0 -~~~ -~~~ -24426922 0 512 -24426923 homeCount = 12 -24426924 waitCount = 5 -24426924 ripCount = 5 -24426925 locktype1 = 1 -24426925 locktype2 = 0 -24426946 locktype3 = 1 -24426946 goalCount = 0 -24426947 goalTotal = 0 -24426947 otherCount = 10 -~~~ -24426979 16 512 -24427073 DOWN 5 -24427072 0 512 -24427218 16 512 -24429575 DOWN 5 -24429575 0 512 -24434372 UP 10 -24434372 waslock = 0 -24434372 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24434403 512 16777728 -~~~ -24434419 DOWN 10 -24434419 0 16777728 -~~~ -~~~ -24434438 0 16778752 -~~~ -~~~ -24434440 0 16778240 -24434441 homeCount = 13 -24434441 waitCount = 5 -24434442 ripCount = 5 -24434442 locktype1 = 1 -24434443 locktype2 = 0 -24434443 locktype3 = 1 -24434444 goalCount = 0 -24434444 goalTotal = 0 -24434445 otherCount = 10 -~~~ -24434477 UP 10 -24434477 waslock = 0 -24434477 512 16778240 -~~~ -24434553 512 1024 -24434651 DOWN 10 -24434651 0 1024 -~~~ -~~~ -~~~ -~~~ -24434677 homeCount = 13 -24434677 waitCount = 5 -24434678 ripCount = 5 -24434678 locktype1 = 1 -24434679 locktype2 = 0 -24434679 locktype3 = 1 -24434680 goalCount = 0 -24434680 goalTotal = 0 -24434681 otherCount = 10 -~~~ -24434692 UP 10 -24434692 waslock = 0 -24434692 512 1024 -~~~ -24438070 DOWN 10 -24438070 0 1024 -~~~ -~~~ -~~~ -~~~ -24438094 homeCount = 13 -24438095 waitCount = 5 -24438096 ripCount = 5 -24438096 locktype1 = 1 -24438096 locktype2 = 0 -24438097 locktype3 = 1 -24438097 goalCount = 0 -24438098 goalTotal = 0 -24438098 otherCount = 10 -~~~ -24438103 UP 10 -24438103 waslock = 0 -24438103 512 1024 -~~~ -24438161 DOWN 10 -24438161 0 1024 -~~~ -~~~ -~~~ -~~~ -24438185 homeCount = 13 -24438186 waitCount = 5 -24438186 ripCount = 5 -24438187 locktype1 = 1 -24438187 locktype2 = 0 -24438188 locktype3 = 1 -24438188 goalCount = 0 -24438189 goalTotal = 0 -24438189 otherCount = 10 -~~~ -24440662 UP 11 -24440662 1024 1024 -24442855 DOWN 11 -24442855 0 1024 -24442904 UP 11 -24442904 1024 1024 -24443662 BEEP1 -24443662 BEEP2 -~~~ -~~~ -~~~ -24443685 1024 33555456 -~~~ -24443834 1024 1024 -24451080 DOWN 11 -24451079 0 1024 -~~~ -~~~ -24451102 0 0 -~~~ -~~~ -24451104 0 1 -~~~ -~~~ -24451106 0 3 -~~~ -~~~ -24451108 0 7 -~~~ -~~~ -24451109 0 15 -~~~ -~~~ -24451111 0 31 -~~~ -~~~ -24451113 0 63 -~~~ -~~~ -24451115 0 127 -~~~ -~~~ -24451117 0 255 -24451118 homeCount = 13 -24451118 waitCount = 5 -24451119 ripCount = 6 -24451119 locktype1 = 1 -24451120 locktype2 = 0 -24451141 locktype3 = 1 -24451141 goalCount = 0 -24451142 goalTotal = 0 -24451142 otherCount = 10 -~~~ -24451143 CURRENTGOAL IS [2] -~~~ -24460605 UP 3 -24460605 4 255 -~~~ -~~~ -24461083 DOWN 3 -24461083 0 255 -~~~ -~~~ -24461101 0 254 -~~~ -~~~ -24461102 0 252 -~~~ -~~~ -24461104 0 248 -~~~ -~~~ -24461106 0 240 -~~~ -~~~ -24461108 0 224 -~~~ -~~~ -24461110 0 192 -~~~ -~~~ -24461112 0 128 -~~~ -~~~ -24461113 0 0 -~~~ -~~~ -24461115 0 512 -24461116 homeCount = 13 -24461117 waitCount = 5 -24461117 ripCount = 6 -24461118 locktype1 = 1 -24461118 locktype2 = 0 -24461139 locktype3 = 1 -24461139 goalCount = 0 -24461140 goalTotal = 0 -24461140 otherCount = 11 -~~~ -24470566 UP 10 -24470566 waslock = 0 -24470566 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24470600 512 16777728 -~~~ -24470618 DOWN 10 -24470618 0 16777728 -~~~ -~~~ -24470642 0 16779776 -~~~ -~~~ -24470644 0 16779264 -24470645 homeCount = 14 -24470646 waitCount = 5 -24470646 ripCount = 6 -24470647 locktype1 = 1 -24470647 locktype2 = 0 -24470648 locktype3 = 1 -24470648 goalCount = 0 -24470649 goalTotal = 0 -24470649 otherCount = 11 -~~~ -24470750 0 2048 -24470776 UP 10 -24470777 waslock = 0 -24470776 512 2048 -~~~ -24471246 DOWN 10 -24471246 0 2048 -~~~ -~~~ -~~~ -~~~ -24471267 homeCount = 14 -24471268 waitCount = 5 -24471268 ripCount = 6 -24471269 locktype1 = 1 -24471269 locktype2 = 0 -24471270 locktype3 = 1 -24471270 goalCount = 0 -24471271 goalTotal = 0 -24471271 otherCount = 11 -~~~ -24471304 UP 10 -24471304 waslock = 0 -24471304 512 2048 -~~~ -24474135 DOWN 10 -24474135 0 2048 -~~~ -~~~ -~~~ -~~~ -24474157 homeCount = 14 -24474158 waitCount = 5 -24474158 ripCount = 6 -24474159 locktype1 = 1 -24474159 locktype2 = 0 -24474160 locktype3 = 1 -24474160 goalCount = 0 -24474161 goalTotal = 0 -24474161 otherCount = 11 -~~~ -24474162 UP 10 -24474162 waslock = 0 -24474162 512 2048 -~~~ -24474229 DOWN 10 -24474229 0 2048 -~~~ -~~~ -~~~ -~~~ -24474257 homeCount = 14 -24474257 waitCount = 5 -24474258 ripCount = 6 -24474258 locktype1 = 1 -24474259 locktype2 = 0 -24474259 locktype3 = 1 -24474260 goalCount = 0 -24474260 goalTotal = 0 -24474261 otherCount = 11 -~~~ -24476866 UP 12 -24476866 2048 2048 -24478171 DOWN 12 -24478171 0 2048 -24478314 UP 12 -24478314 2048 2048 -24478478 DOWN 12 -24478478 0 2048 -24478534 UP 12 -24478534 2048 2048 -24479866 CLICK1 -24479866 CLICK2 -~~~ -~~~ -~~~ -24479885 2048 67110912 -~~~ -24480035 2048 2048 -24480170 DOWN 12 -24480169 0 2048 -24480191 UP 12 -24480191 2048 2048 -~~~ -~~~ -24480194 2048 0 -~~~ -~~~ -24480196 2048 1 -~~~ -~~~ -24480198 2048 3 -~~~ -~~~ -24480200 2048 7 -~~~ -~~~ -24480201 2048 15 -~~~ -~~~ -24480203 2048 31 -~~~ -~~~ -24480205 2048 63 -~~~ -~~~ -24480207 2048 127 -~~~ -~~~ -24480209 2048 255 -24480210 homeCount = 14 -24480210 waitCount = 6 -24480211 ripCount = 6 -24480211 locktype1 = 1 -24480232 locktype2 = 0 -24480233 locktype3 = 1 -24480233 goalCount = 0 -24480234 goalTotal = 0 -24480234 otherCount = 11 -~~~ -24480235 CURRENTGOAL IS [2] -~~~ -24480236 DOWN 12 -24480236 0 255 -24480241 UP 12 -24480241 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24480291 homeCount = 14 -24480292 waitCount = 6 -24480292 ripCount = 6 -24480293 locktype1 = 1 -24480293 locktype2 = 0 -24480294 locktype3 = 1 -24480294 goalCount = 0 -24480295 goalTotal = 0 -24480295 otherCount = 11 -~~~ -24480296 CURRENTGOAL IS [2] -~~~ -24486384 DOWN 12 -24486384 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24486422 homeCount = 14 -24486423 waitCount = 6 -24486423 ripCount = 6 -24486424 locktype1 = 1 -24486424 locktype2 = 0 -24486425 locktype3 = 1 -24486425 goalCount = 0 -24486426 goalTotal = 0 -24486426 otherCount = 11 -~~~ -24486427 CURRENTGOAL IS [2] -~~~ -24486451 UP 12 -24486451 2048 255 -24486485 DOWN 12 -24486485 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24486522 homeCount = 14 -24486523 waitCount = 6 -24486523 ripCount = 6 -24486524 locktype1 = 1 -24486524 locktype2 = 0 -24486525 locktype3 = 1 -24486525 goalCount = 0 -24486526 goalTotal = 0 -24486526 otherCount = 11 -~~~ -24486528 CURRENTGOAL IS [2] -~~~ -24495698 UP 10 -24495698 waslock = 0 -24495698 512 255 -~~~ -24495716 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24495724 512 254 -~~~ -~~~ -24495726 512 252 -~~~ -~~~ -24495728 512 248 -~~~ -~~~ -24495730 512 240 -~~~ -~~~ -24495731 512 224 -~~~ -~~~ -24495733 512 192 -~~~ -~~~ -24495735 512 128 -~~~ -~~~ -24495737 512 0 -~~~ -~~~ -~~~ -24495945 0 0 -24495963 512 0 -24496559 0 0 -24506369 UP 4 -24506369 8 0 -24506413 DOWN 4 -24506413 0 0 -24506422 8 0 -24506707 DOWN 4 -24506707 0 0 -24506736 8 0 -24507337 DOWN 4 -24507337 0 0 -24507431 8 0 -24507448 DOWN 4 -24507448 0 0 -24516898 512 0 -24517038 0 0 -24517058 512 0 -24517301 0 0 -24517347 512 0 -24517934 0 0 -24518002 512 0 -24518042 0 0 -24518118 512 0 -24518339 0 0 -24518366 512 0 -24518604 0 0 -24520716 LOCKEND -~~~ -~~~ -~~~ -24520736 0 512 -24521787 UP 10 -24521788 waslock = 0 -24521787 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24521813 512 16777728 -~~~ -24521815 DOWN 10 -24521815 0 16777728 -~~~ -~~~ -24521838 0 16778752 -~~~ -~~~ -24521840 0 16778240 -24521841 homeCount = 15 -24521842 waitCount = 6 -24521842 ripCount = 6 -24521843 locktype1 = 1 -24521843 locktype2 = 1 -24521844 locktype3 = 1 -24521844 goalCount = 0 -24521845 goalTotal = 0 -24521845 otherCount = 11 -~~~ -24521869 UP 10 -24521869 waslock = 0 -24521869 512 16778240 -~~~ -24521963 512 1024 -24521981 DOWN 10 -24521981 0 1024 -~~~ -24522000 UP 10 -24522000 waslock = 0 -24522000 512 1024 -~~~ -~~~ -~~~ -24522004 homeCount = 15 -24522004 waitCount = 6 -24522005 ripCount = 6 -24522005 locktype1 = 1 -24522006 locktype2 = 1 -24522006 locktype3 = 1 -24522007 goalCount = 0 -24522007 goalTotal = 0 -24522008 otherCount = 11 -~~~ -~~~ -24522130 DOWN 10 -24522130 0 1024 -24522156 UP 10 -24522156 waslock = 0 -24522156 512 1024 -~~~ -~~~ -~~~ -~~~ -24522160 homeCount = 15 -24522161 waitCount = 6 -24522161 ripCount = 6 -24522162 locktype1 = 1 -24522162 locktype2 = 1 -24522163 locktype3 = 1 -24522163 goalCount = 0 -24522164 goalTotal = 0 -24522164 otherCount = 11 -~~~ -~~~ -24522270 DOWN 10 -24522270 0 1024 -24522292 UP 10 -24522292 waslock = 0 -24522292 512 1024 -~~~ -~~~ -~~~ -~~~ -24522296 homeCount = 15 -24522297 waitCount = 6 -24522298 ripCount = 6 -24522298 locktype1 = 1 -24522299 locktype2 = 1 -24522299 locktype3 = 1 -24522300 goalCount = 0 -24522300 goalTotal = 0 -24522301 otherCount = 11 -~~~ -~~~ -24526070 DOWN 10 -24526069 0 1024 -~~~ -~~~ -~~~ -~~~ -24526094 homeCount = 15 -24526094 waitCount = 6 -24526095 ripCount = 6 -24526095 locktype1 = 1 -24526096 locktype2 = 1 -24526096 locktype3 = 1 -24526097 goalCount = 0 -24526097 goalTotal = 0 -24526098 otherCount = 11 -~~~ -24526110 UP 10 -24526110 waslock = 0 -24526110 512 1024 -~~~ -24526164 DOWN 10 -24526164 0 1024 -~~~ -~~~ -~~~ -~~~ -24526194 homeCount = 15 -24526194 waitCount = 6 -24526195 ripCount = 6 -24526195 locktype1 = 1 -24526196 locktype2 = 1 -24526196 locktype3 = 1 -24526197 goalCount = 0 -24526197 goalTotal = 0 -24526198 otherCount = 11 -~~~ -24528059 UP 11 -24528059 1024 1024 -24529285 DOWN 11 -24529285 0 1024 -24529326 UP 11 -24529326 1024 1024 -24530226 DOWN 11 -24530226 0 1024 -24530258 UP 11 -24530258 1024 1024 -24530559 BEEP1 -24530559 BEEP2 -~~~ -~~~ -~~~ -24530584 1024 33555456 -~~~ -24530734 1024 1024 -24535727 DOWN 11 -24535727 0 1024 -~~~ -~~~ -24535750 0 0 -~~~ -~~~ -24535752 0 1 -~~~ -~~~ -24535754 0 3 -~~~ -~~~ -24535756 0 7 -~~~ -~~~ -24535757 0 15 -~~~ -~~~ -24535759 0 31 -~~~ -~~~ -24535761 0 63 -~~~ -~~~ -24535763 0 127 -~~~ -~~~ -24535765 0 255 -24535766 homeCount = 15 -24535766 waitCount = 6 -24535767 ripCount = 7 -24535767 locktype1 = 1 -24535768 locktype2 = 1 -24535789 locktype3 = 1 -24535789 goalCount = 0 -24535790 goalTotal = 0 -24535790 otherCount = 11 -~~~ -24535791 CURRENTGOAL IS [2] -~~~ -24535792 UP 11 -24535792 1024 255 -24535865 DOWN 11 -24535865 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24535907 homeCount = 15 -24535907 waitCount = 6 -24535908 ripCount = 7 -24535909 locktype1 = 1 -24535909 locktype2 = 1 -24535910 locktype3 = 1 -24535910 goalCount = 0 -24535911 goalTotal = 0 -24535911 otherCount = 11 -~~~ -24535912 CURRENTGOAL IS [2] -~~~ -24535936 UP 11 -24535936 1024 255 -24535954 DOWN 11 -24535954 0 255 -24535969 UP 11 -24535969 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24535990 homeCount = 15 -24535990 waitCount = 6 -24535991 ripCount = 7 -24535991 locktype1 = 1 -24535992 locktype2 = 1 -24535992 locktype3 = 1 -24535993 goalCount = 0 -24535993 goalTotal = 0 -24535994 otherCount = 11 -~~~ -24535995 CURRENTGOAL IS [2] -~~~ -24536278 DOWN 11 -24536278 0 255 -24536289 UP 11 -24536289 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24536318 homeCount = 15 -24536318 waitCount = 6 -24536319 ripCount = 7 -24536319 locktype1 = 1 -24536320 locktype2 = 1 -24536320 locktype3 = 1 -24536321 goalCount = 0 -24536321 goalTotal = 0 -24536322 otherCount = 11 -~~~ -24536323 CURRENTGOAL IS [2] -~~~ -24536680 DOWN 11 -24536680 0 255 -24536699 UP 11 -24536699 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24536718 homeCount = 15 -24536718 waitCount = 6 -24536719 ripCount = 7 -24536719 locktype1 = 1 -24536720 locktype2 = 1 -24536720 locktype3 = 1 -24536721 goalCount = 0 -24536721 goalTotal = 0 -24536722 otherCount = 11 -~~~ -24536723 CURRENTGOAL IS [2] -~~~ -24539066 DOWN 11 -24539066 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24539109 homeCount = 15 -24539110 waitCount = 6 -24539110 ripCount = 7 -24539111 locktype1 = 1 -24539111 locktype2 = 1 -24539112 locktype3 = 1 -24539112 goalCount = 0 -24539113 goalTotal = 0 -24539113 otherCount = 11 -~~~ -24539114 CURRENTGOAL IS [2] -~~~ -24545155 UP 8 -24545155 128 255 -~~~ -~~~ -24545193 DOWN 8 -24545193 0 255 -~~~ -~~~ -24545213 0 254 -~~~ -~~~ -24545215 0 252 -~~~ -~~~ -24545217 0 248 -~~~ -~~~ -24545219 0 240 -~~~ -~~~ -24545220 0 224 -~~~ -~~~ -24545222 0 192 -~~~ -~~~ -24545224 0 128 -~~~ -~~~ -24545226 0 0 -~~~ -~~~ -24545228 0 512 -24545229 homeCount = 15 -24545229 waitCount = 6 -24545230 ripCount = 7 -24545230 locktype1 = 1 -24545231 locktype2 = 1 -24545252 locktype3 = 1 -24545252 goalCount = 0 -24545253 goalTotal = 0 -24545253 otherCount = 12 -~~~ -24545254 128 512 -24545775 DOWN 8 -24545775 0 512 -24549428 UP 10 -24549428 waslock = 0 -24549428 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24549451 512 16777728 -~~~ -24549601 512 512 -24549640 DOWN 10 -24549640 0 512 -~~~ -~~~ -24549668 0 2560 -~~~ -~~~ -24549670 0 2048 -24549671 homeCount = 16 -24549672 waitCount = 6 -24549672 ripCount = 7 -24549673 locktype1 = 1 -24549673 locktype2 = 1 -24549674 locktype3 = 1 -24549674 goalCount = 0 -24549675 goalTotal = 0 -24549675 otherCount = 12 -~~~ -24549810 UP 10 -24549810 waslock = 0 -24549810 512 2048 -~~~ -24553189 DOWN 10 -24553189 0 2048 -~~~ -~~~ -~~~ -~~~ -24553217 homeCount = 16 -24553218 waitCount = 6 -24553218 ripCount = 7 -24553219 locktype1 = 1 -24553219 locktype2 = 1 -24553220 locktype3 = 1 -24553220 goalCount = 0 -24553221 goalTotal = 0 -24553221 otherCount = 12 -~~~ -24553222 UP 10 -24553222 waslock = 0 -24553222 512 2048 -~~~ -24553263 DOWN 10 -24553263 0 2048 -~~~ -~~~ -~~~ -~~~ -24553290 homeCount = 16 -24553291 waitCount = 6 -24553291 ripCount = 7 -24553292 locktype1 = 1 -24553292 locktype2 = 1 -24553293 locktype3 = 1 -24553293 goalCount = 0 -24553294 goalTotal = 0 -24553294 otherCount = 12 -~~~ -24561352 UP 12 -24561352 2048 2048 -24562969 DOWN 12 -24562969 0 2048 -24563044 UP 12 -24563044 2048 2048 -24565353 CLICK1 -24565353 CLICK2 -~~~ -~~~ -~~~ -24565378 2048 67110912 -~~~ -24565527 2048 2048 -24569179 DOWN 12 -24569179 0 2048 -~~~ -~~~ -24569206 0 0 -~~~ -~~~ -24569208 0 1 -~~~ -~~~ -24569210 0 3 -~~~ -~~~ -24569212 0 7 -~~~ -~~~ -24569214 0 15 -~~~ -~~~ -24569215 0 31 -~~~ -~~~ -24569217 0 63 -~~~ -~~~ -24569219 0 127 -~~~ -24569220 UP 12 -24569220 2048 127 -~~~ -24569222 homeCount = 16 -24569223 waitCount = 7 -24569223 ripCount = 7 -24569224 locktype1 = 1 -24569245 locktype2 = 1 -24569245 locktype3 = 1 -24569246 goalCount = 0 -24569246 goalTotal = 0 -24569247 otherCount = 12 -~~~ -24569248 CURRENTGOAL IS [2] -~~~ -24569248 DOWN 12 -24569248 0 255 -24569257 UP 12 -24569256 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569303 homeCount = 16 -24569304 waitCount = 7 -24569304 ripCount = 7 -24569305 locktype1 = 1 -24569305 locktype2 = 1 -24569306 locktype3 = 1 -24569306 goalCount = 0 -24569307 goalTotal = 0 -24569307 otherCount = 12 -~~~ -24569308 CURRENTGOAL IS [2] -~~~ -24569329 DOWN 12 -24569329 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569365 homeCount = 16 -24569366 waitCount = 7 -24569366 ripCount = 7 -24569367 locktype1 = 1 -24569367 locktype2 = 1 -24569368 locktype3 = 1 -24569368 goalCount = 0 -24569369 goalTotal = 0 -24569369 otherCount = 12 -~~~ -24569370 CURRENTGOAL IS [2] -~~~ -24569392 UP 12 -24569392 2048 255 -24569399 DOWN 12 -24569399 0 255 -24569404 UP 12 -24569404 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569430 DOWN 12 -24569430 0 255 -~~~ -~~~ -~~~ -24569434 homeCount = 16 -24569434 waitCount = 7 -24569435 ripCount = 7 -24569435 locktype1 = 1 -24569436 locktype2 = 1 -24569436 locktype3 = 1 -24569437 goalCount = 0 -24569437 goalTotal = 0 -24569438 otherCount = 12 -~~~ -24569439 CURRENTGOAL IS [2] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569466 homeCount = 16 -24569467 waitCount = 7 -24569467 ripCount = 7 -24569468 locktype1 = 1 -24569468 locktype2 = 1 -24569469 locktype3 = 1 -24569490 goalCount = 0 -24569491 goalTotal = 0 -24569491 otherCount = 12 -~~~ -24569492 CURRENTGOAL IS [2] -~~~ -24569541 UP 12 -24569541 2048 255 -24569575 DOWN 12 -24569575 0 255 -24569590 UP 12 -24569590 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569628 homeCount = 16 -24569629 waitCount = 7 -24569630 ripCount = 7 -24569630 locktype1 = 1 -24569631 locktype2 = 1 -24569631 locktype3 = 1 -24569632 goalCount = 0 -24569632 goalTotal = 0 -24569633 otherCount = 12 -~~~ -24569634 CURRENTGOAL IS [2] -~~~ -24569745 DOWN 12 -24569745 0 255 -24569762 UP 12 -24569762 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569779 homeCount = 16 -24569780 waitCount = 7 -24569781 ripCount = 7 -24569781 locktype1 = 1 -24569782 locktype2 = 1 -24569782 locktype3 = 1 -24569783 goalCount = 0 -24569783 goalTotal = 0 -24569784 otherCount = 12 -~~~ -24569785 CURRENTGOAL IS [2] -~~~ -24571050 DOWN 12 -24571050 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24571089 homeCount = 16 -24571090 waitCount = 7 -24571091 ripCount = 7 -24571091 locktype1 = 1 -24571092 locktype2 = 1 -24571092 locktype3 = 1 -24571093 goalCount = 0 -24571093 goalTotal = 0 -24571094 otherCount = 12 -~~~ -24571095 CURRENTGOAL IS [2] -~~~ -24581925 UP 5 -24581925 16 255 -~~~ -~~~ -24582431 DOWN 5 -24582431 0 255 -~~~ -~~~ -24582453 0 254 -~~~ -~~~ -24582454 0 252 -~~~ -~~~ -24582456 0 248 -~~~ -~~~ -24582458 0 240 -~~~ -~~~ -24582460 0 224 -~~~ -~~~ -24582462 0 192 -~~~ -~~~ -24582463 0 128 -~~~ -~~~ -24582465 0 0 -~~~ -~~~ -24582467 0 512 -24582468 homeCount = 16 -24582469 waitCount = 7 -24582469 ripCount = 7 -24582470 locktype1 = 1 -24582491 locktype2 = 1 -24582491 locktype3 = 1 -24582492 goalCount = 0 -24582492 goalTotal = 0 -24582493 otherCount = 13 -~~~ -24587390 UP 10 -24587390 waslock = 0 -24587390 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24587414 512 16777728 -~~~ -24587539 DOWN 10 -24587539 0 16777728 -24587564 0 512 -~~~ -~~~ -24587570 0 2560 -~~~ -~~~ -24587572 0 2048 -24587573 homeCount = 17 -24587574 waitCount = 7 -24587574 ripCount = 7 -24587575 locktype1 = 1 -24587575 locktype2 = 1 -24587576 locktype3 = 1 -24587576 goalCount = 0 -24587577 goalTotal = 0 -24587577 otherCount = 13 -~~~ -24587616 UP 10 -24587617 waslock = 0 -24587616 512 2048 -~~~ -24592258 DOWN 10 -24592258 0 2048 -24592272 UP 10 -24592273 waslock = 0 -24592272 512 2048 -~~~ -~~~ -~~~ -~~~ -24592280 homeCount = 17 -24592280 waitCount = 7 -24592281 ripCount = 7 -24592281 locktype1 = 1 -24592282 locktype2 = 1 -24592282 locktype3 = 1 -24592283 goalCount = 0 -24592283 goalTotal = 0 -24592284 otherCount = 13 -~~~ -~~~ -24592358 DOWN 10 -24592358 0 2048 -~~~ -~~~ -~~~ -~~~ -24592383 homeCount = 17 -24592383 waitCount = 7 -24592384 ripCount = 7 -24592384 locktype1 = 1 -24592385 locktype2 = 1 -24592385 locktype3 = 1 -24592386 goalCount = 0 -24592386 goalTotal = 0 -24592387 otherCount = 13 -~~~ -24616551 UP 12 -24616551 2048 2048 -24617583 DOWN 12 -24617583 0 2048 -24617639 UP 12 -24617639 2048 2048 -24617756 DOWN 12 -24617756 0 2048 -24617784 UP 12 -24617784 2048 2048 -24618319 DOWN 12 -24618319 0 2048 -24618357 UP 12 -24618357 2048 2048 -24618387 DOWN 12 -24618386 0 2048 -24618449 UP 12 -24618449 2048 2048 -24620577 DOWN 12 -24620577 0 2048 -24620632 UP 12 -24620632 2048 2048 -24621302 CLICK1 -24621302 CLICK2 -~~~ -~~~ -~~~ -24621333 2048 67110912 -~~~ -24621483 2048 2048 -24625570 DOWN 12 -24625570 0 2048 -~~~ -~~~ -24625587 0 0 -~~~ -~~~ -24625589 0 1 -~~~ -~~~ -24625591 0 3 -~~~ -~~~ -24625593 0 7 -~~~ -~~~ -24625595 0 15 -~~~ -~~~ -24625596 0 31 -~~~ -~~~ -24625598 0 63 -~~~ -~~~ -24625600 0 127 -~~~ -~~~ -24625602 0 255 -24625603 homeCount = 17 -24625603 waitCount = 8 -24625604 ripCount = 7 -24625604 locktype1 = 1 -24625605 locktype2 = 1 -24625626 locktype3 = 1 -24625627 goalCount = 0 -24625627 goalTotal = 0 -24625628 otherCount = 13 -~~~ -24625629 CURRENTGOAL IS [2] -~~~ -24625629 UP 12 -24625629 2048 255 -24625651 DOWN 12 -24625651 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24625689 homeCount = 17 -24625689 waitCount = 8 -24625690 ripCount = 7 -24625690 locktype1 = 1 -24625691 locktype2 = 1 -24625691 locktype3 = 1 -24625692 goalCount = 0 -24625692 goalTotal = 0 -24625693 otherCount = 13 -~~~ -24625694 CURRENTGOAL IS [2] -~~~ -24642952 UP 1 -24642952 1 255 -~~~ -~~~ -24645925 DOWN 1 -24645925 0 255 -~~~ -~~~ -24645946 0 254 -~~~ -~~~ -24645948 0 252 -~~~ -~~~ -24645949 0 248 -~~~ -~~~ -24645951 0 240 -~~~ -~~~ -24645953 0 224 -~~~ -~~~ -24645955 0 192 -~~~ -~~~ -24645957 0 128 -~~~ -~~~ -24645959 0 0 -~~~ -~~~ -24645960 0 512 -24645961 homeCount = 17 -24645962 waitCount = 8 -24645963 ripCount = 7 -24645963 locktype1 = 1 -24645964 locktype2 = 1 -24645984 locktype3 = 1 -24645985 goalCount = 0 -24645985 goalTotal = 0 -24645986 otherCount = 14 -~~~ -24651763 UP 10 -24651763 waslock = 0 -24651763 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24651793 512 16777728 -~~~ -24651860 DOWN 10 -24651860 0 16777728 -~~~ -~~~ -24651887 0 16778752 -~~~ -~~~ -24651889 0 16778240 -24651890 homeCount = 18 -24651890 waitCount = 8 -24651891 ripCount = 7 -24651891 locktype1 = 1 -24651892 locktype2 = 1 -24651892 locktype3 = 1 -24651893 goalCount = 0 -24651893 goalTotal = 0 -24651894 otherCount = 14 -~~~ -24651915 UP 10 -24651915 waslock = 0 -24651915 512 16778240 -~~~ -24651942 512 1024 -24652117 DOWN 10 -24652117 0 1024 -~~~ -~~~ -~~~ -~~~ -24652140 homeCount = 18 -24652141 waitCount = 8 -24652141 ripCount = 7 -24652142 locktype1 = 1 -24652142 locktype2 = 1 -24652143 locktype3 = 1 -24652143 goalCount = 0 -24652144 goalTotal = 0 -24652144 otherCount = 14 -~~~ -24652150 UP 10 -24652150 waslock = 0 -24652150 512 1024 -~~~ -24655008 DOWN 10 -24655008 0 1024 -~~~ -~~~ -~~~ -~~~ -24655031 homeCount = 18 -24655032 waitCount = 8 -24655032 ripCount = 7 -24655033 locktype1 = 1 -24655033 locktype2 = 1 -24655034 locktype3 = 1 -24655034 goalCount = 0 -24655035 goalTotal = 0 -24655035 otherCount = 14 -~~~ -24655066 UP 10 -24655066 waslock = 0 -24655066 512 1024 -~~~ -24655104 DOWN 10 -24655104 0 1024 -~~~ -~~~ -~~~ -~~~ -24655122 homeCount = 18 -24655122 waitCount = 8 -24655123 ripCount = 7 -24655123 locktype1 = 1 -24655124 locktype2 = 1 -24655124 locktype3 = 1 -24655125 goalCount = 0 -24655125 goalTotal = 0 -24655126 otherCount = 14 -~~~ -24657381 UP 11 -24657381 1024 1024 -24658427 DOWN 11 -24658427 0 1024 -24658437 UP 11 -24658437 1024 1024 -24661881 BEEP1 -24661881 BEEP2 -~~~ -~~~ -~~~ -24661900 1024 33555456 -~~~ -24662050 1024 1024 -24667500 DOWN 11 -24667500 0 1024 -~~~ -~~~ -24667519 0 0 -~~~ -~~~ -24667520 0 1 -~~~ -~~~ -24667522 0 3 -~~~ -~~~ -24667524 0 7 -~~~ -~~~ -24667526 0 15 -~~~ -~~~ -24667528 0 31 -~~~ -~~~ -24667529 0 63 -~~~ -~~~ -24667531 0 127 -~~~ -~~~ -24667533 0 255 -24667534 homeCount = 18 -24667535 waitCount = 8 -24667535 ripCount = 8 -24667536 locktype1 = 1 -24667536 locktype2 = 1 -24667557 locktype3 = 1 -24667557 goalCount = 0 -24667558 goalTotal = 0 -24667558 otherCount = 14 -~~~ -24667559 CURRENTGOAL IS [2] -~~~ -24731227 UP 11 -24731227 1024 255 -24732218 DOWN 11 -24732218 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24732257 homeCount = 18 -24732258 waitCount = 8 -24732258 ripCount = 8 -24732259 locktype1 = 1 -24732259 locktype2 = 1 -24732260 locktype3 = 1 -24732260 goalCount = 0 -24732261 goalTotal = 0 -24732261 otherCount = 14 -~~~ -24732262 CURRENTGOAL IS [2] -~~~ -24744749 UP 4 -24744749 8 255 -~~~ -~~~ -24745153 DOWN 4 -24745153 0 255 -~~~ -~~~ -24745173 0 254 -~~~ -~~~ -24745175 0 252 -~~~ -~~~ -24745177 0 248 -~~~ -~~~ -24745178 0 240 -~~~ -~~~ -24745180 0 224 -~~~ -~~~ -24745182 0 192 -~~~ -24745183 8 192 -~~~ -~~~ -24745185 8 128 -~~~ -24745186 8 0 -~~~ -~~~ -24745188 8 512 -24745189 homeCount = 18 -24745189 waitCount = 8 -24745190 ripCount = 8 -24745211 locktype1 = 1 -24745211 locktype2 = 1 -24745212 locktype3 = 1 -24745212 goalCount = 0 -24745213 goalTotal = 0 -24745213 otherCount = 15 -~~~ -24746821 DOWN 4 -24746821 0 512 -24746860 8 512 -24746902 DOWN 4 -24746901 0 512 -24752241 UP 10 -24752241 waslock = 0 -24752241 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24752270 512 16777728 -~~~ -24752379 DOWN 10 -24752379 0 16777728 -~~~ -~~~ -24752404 0 16779776 -~~~ -~~~ -24752406 0 16779264 -24752407 homeCount = 19 -24752407 waitCount = 8 -24752408 ripCount = 8 -24752408 locktype1 = 1 -24752409 locktype2 = 1 -24752409 locktype3 = 1 -24752410 goalCount = 0 -24752410 goalTotal = 0 -24752411 otherCount = 15 -~~~ -24752431 0 2048 -24752545 UP 10 -24752545 waslock = 0 -24752545 512 2048 -~~~ -24753086 DOWN 10 -24753086 0 2048 -24753096 UP 10 -24753096 waslock = 0 -24753096 512 2048 -~~~ -~~~ -~~~ -~~~ -24753119 homeCount = 19 -24753119 waitCount = 8 -24753120 ripCount = 8 -24753120 locktype1 = 1 -24753121 locktype2 = 1 -24753121 locktype3 = 1 -24753122 goalCount = 0 -24753122 goalTotal = 0 -24753123 otherCount = 15 -~~~ -~~~ -24758163 DOWN 10 -24758163 0 2048 -~~~ -~~~ -~~~ -~~~ -24758187 homeCount = 19 -24758187 waitCount = 8 -24758188 ripCount = 8 -24758188 locktype1 = 1 -24758189 locktype2 = 1 -24758189 locktype3 = 1 -24758190 goalCount = 0 -24758190 goalTotal = 0 -24758191 otherCount = 15 -~~~ -24760831 UP 12 -24760831 2048 2048 -24761455 DOWN 12 -24761455 0 2048 -24761656 LOCKOUT 3 -~~~ -24761677 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24761683 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24762044 UP 12 -24762044 2048 0 -24762069 DOWN 12 -24762069 0 0 -24762110 UP 12 -24762110 2048 0 -24762804 DOWN 12 -24762804 0 0 -24786677 LOCKEND -~~~ -~~~ -~~~ -24786697 0 512 -24787613 UP 10 -24787613 waslock = 0 -24787613 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24787645 512 16777728 -~~~ -24787699 DOWN 10 -24787699 0 16777728 -24787723 UP 10 -24787723 waslock = 0 -24787723 512 16777728 -~~~ -~~~ -24787726 512 16779776 -~~~ -~~~ -24787728 512 16779264 -24787729 homeCount = 20 -24787730 waitCount = 8 -24787730 ripCount = 8 -24787731 locktype1 = 1 -24787731 locktype2 = 1 -24787732 locktype3 = 2 -24787732 goalCount = 0 -24787733 goalTotal = 0 -24787754 otherCount = 15 -~~~ -~~~ -24787795 512 2048 -24788471 DOWN 10 -24788471 0 2048 -~~~ -~~~ -~~~ -~~~ -24788500 homeCount = 20 -24788500 waitCount = 8 -24788501 ripCount = 8 -24788501 locktype1 = 1 -24788502 locktype2 = 1 -24788502 locktype3 = 2 -24788503 goalCount = 0 -24788503 goalTotal = 0 -24788504 otherCount = 15 -~~~ -24788523 UP 10 -24788523 waslock = 0 -24788523 512 2048 -~~~ -24793994 DOWN 10 -24793994 0 2048 -~~~ -~~~ -~~~ -~~~ -24794018 homeCount = 20 -24794019 waitCount = 8 -24794019 ripCount = 8 -24794020 locktype1 = 1 -24794020 locktype2 = 1 -24794021 locktype3 = 2 -24794021 goalCount = 0 -24794022 goalTotal = 0 -24794022 otherCount = 15 -~~~ -24833942 UP 12 -24833942 2048 2048 -24834649 DOWN 12 -24834649 0 2048 -24834690 UP 12 -24834690 2048 2048 -24835479 DOWN 12 -24835479 0 2048 -24835513 UP 12 -24835513 2048 2048 -24835759 DOWN 12 -24835759 0 2048 -24835877 UP 12 -24835877 2048 2048 -24835927 DOWN 12 -24835927 0 2048 -24835951 UP 12 -24835951 2048 2048 -24836281 DOWN 12 -24836281 0 2048 -24836323 UP 12 -24836323 2048 2048 -24836439 DOWN 12 -24836439 0 2048 -24836452 UP 12 -24836452 2048 2048 -24836649 DOWN 12 -24836649 0 2048 -24836676 UP 12 -24836676 2048 2048 -24836942 CLICK1 -24836942 CLICK2 -~~~ -~~~ -~~~ -24836972 2048 67110912 -~~~ -24837059 DOWN 12 -24837059 0 67110912 -24837122 0 2048 -24837133 UP 12 -24837133 2048 2048 -~~~ -~~~ -24837144 2048 0 -~~~ -~~~ -24837146 2048 1 -~~~ -~~~ -24837148 2048 3 -~~~ -~~~ -24837150 2048 7 -~~~ -~~~ -24837152 2048 15 -~~~ -~~~ -24837153 2048 31 -~~~ -~~~ -24837155 2048 63 -~~~ -~~~ -24837157 2048 127 -~~~ -~~~ -24837159 2048 255 -24837160 homeCount = 20 -24837160 waitCount = 9 -24837161 ripCount = 8 -24837182 locktype1 = 1 -24837183 locktype2 = 1 -24837183 locktype3 = 2 -24837184 goalCount = 0 -24837184 goalTotal = 0 -24837185 otherCount = 15 -~~~ -24837186 CURRENTGOAL IS [2] -~~~ -24837229 DOWN 12 -24837229 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24837272 homeCount = 20 -24837272 waitCount = 9 -24837273 ripCount = 8 -24837273 locktype1 = 1 -24837274 locktype2 = 1 -24837274 locktype3 = 2 -24837275 goalCount = 0 -24837275 goalTotal = 0 -24837276 otherCount = 15 -~~~ -24837277 CURRENTGOAL IS [2] -~~~ -24837298 UP 12 -24837298 2048 255 -24842976 DOWN 12 -24842976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24843011 homeCount = 20 -24843011 waitCount = 9 -24843012 ripCount = 8 -24843012 locktype1 = 1 -24843013 locktype2 = 1 -24843013 locktype3 = 2 -24843014 goalCount = 0 -24843014 goalTotal = 0 -24843015 otherCount = 15 -~~~ -24843016 CURRENTGOAL IS [2] -~~~ -24848553 UP 4 -24848553 8 255 -~~~ -~~~ -24848589 DOWN 4 -24848589 0 255 -~~~ -~~~ -24848608 0 254 -~~~ -~~~ -24848610 0 252 -~~~ -~~~ -24848612 0 248 -~~~ -~~~ -24848613 0 240 -~~~ -~~~ -24848615 0 224 -~~~ -~~~ -24848617 0 192 -~~~ -~~~ -24848619 0 128 -~~~ -~~~ -24848621 0 0 -~~~ -~~~ -24848623 0 512 -24848624 homeCount = 20 -24848624 waitCount = 9 -24848625 ripCount = 8 -24848625 locktype1 = 1 -24848646 locktype2 = 1 -24848647 locktype3 = 2 -24848647 goalCount = 0 -24848648 goalTotal = 0 -24848648 otherCount = 16 -~~~ -24848649 8 512 -24848856 DOWN 4 -24848856 0 512 -24857480 UP 10 -24857481 waslock = 0 -24857480 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24857509 512 16777728 -~~~ -24857659 512 512 -24858225 DOWN 10 -24858225 0 512 -~~~ -24858250 UP 10 -24858251 waslock = 0 -24858250 512 512 -~~~ -~~~ -~~~ -24858253 512 2048 -24858254 homeCount = 21 -24858255 waitCount = 9 -24858255 ripCount = 8 -24858256 locktype1 = 1 -24858256 locktype2 = 1 -24858257 locktype3 = 2 -24858257 goalCount = 0 -24858278 goalTotal = 0 -24858279 otherCount = 16 -~~~ -~~~ -24862400 DOWN 10 -24862400 0 2048 -24862418 UP 10 -24862419 waslock = 0 -24862418 512 2048 -~~~ -~~~ -~~~ -~~~ -24862426 homeCount = 21 -24862426 waitCount = 9 -24862427 ripCount = 8 -24862427 locktype1 = 1 -24862428 locktype2 = 1 -24862428 locktype3 = 2 -24862429 goalCount = 0 -24862429 goalTotal = 0 -24862430 otherCount = 16 -~~~ -~~~ -24862493 DOWN 10 -24862493 0 2048 -~~~ -~~~ -~~~ -~~~ -24862522 homeCount = 21 -24862523 waitCount = 9 -24862523 ripCount = 8 -24862524 locktype1 = 1 -24862524 locktype2 = 1 -24862525 locktype3 = 2 -24862525 goalCount = 0 -24862526 goalTotal = 0 -24862526 otherCount = 16 -~~~ -24930514 UP 10 -24930515 waslock = 0 -24930514 512 2048 -~~~ -24930785 DOWN 10 -24930785 0 2048 -~~~ -~~~ -~~~ -~~~ -24930806 homeCount = 21 -24930806 waitCount = 9 -24930807 ripCount = 8 -24930807 locktype1 = 1 -24930808 locktype2 = 1 -24930808 locktype3 = 2 -24930809 goalCount = 0 -24930809 goalTotal = 0 -24930810 otherCount = 16 -~~~ -24930873 UP 10 -24930874 waslock = 0 -24930873 512 2048 -~~~ -24931398 DOWN 10 -24931398 0 2048 -~~~ -~~~ -~~~ -~~~ -24931425 homeCount = 21 -24931426 waitCount = 9 -24931426 ripCount = 8 -24931427 locktype1 = 1 -24931427 locktype2 = 1 -24931428 locktype3 = 2 -24931428 goalCount = 0 -24931429 goalTotal = 0 -24931429 otherCount = 16 -~~~ -24931444 UP 10 -24931445 waslock = 0 -24931444 512 2048 -~~~ -24932304 DOWN 10 -24932304 0 2048 -24932319 UP 10 -24932320 waslock = 0 -24932319 512 2048 -~~~ -~~~ -~~~ -~~~ -24932326 homeCount = 21 -24932327 waitCount = 9 -24932327 ripCount = 8 -24932328 locktype1 = 1 -24932328 locktype2 = 1 -24932329 locktype3 = 2 -24932329 goalCount = 0 -24932330 goalTotal = 0 -24932330 otherCount = 16 -~~~ -~~~ -24933504 DOWN 10 -24933504 0 2048 -~~~ -~~~ -~~~ -~~~ -24933528 homeCount = 21 -24933529 waitCount = 9 -24933529 ripCount = 8 -24933530 locktype1 = 1 -24933530 locktype2 = 1 -24933531 locktype3 = 2 -24933531 goalCount = 0 -24933532 goalTotal = 0 -24933532 otherCount = 16 -~~~ -24933557 UP 10 -24933558 waslock = 0 -24933557 512 2048 -~~~ -24933598 DOWN 10 -24933598 0 2048 -~~~ -~~~ -~~~ -~~~ -24933626 homeCount = 21 -24933627 waitCount = 9 -24933627 ripCount = 8 -24933628 locktype1 = 1 -24933628 locktype2 = 1 -24933629 locktype3 = 2 -24933629 goalCount = 0 -24933630 goalTotal = 0 -24933630 otherCount = 16 -~~~ -24937095 UP 12 -24937095 2048 2048 -24939013 DOWN 12 -24939013 0 2048 -24939059 UP 12 -24939059 2048 2048 -24940772 DOWN 12 -24940772 0 2048 -24940815 UP 12 -24940815 2048 2048 -24940959 DOWN 12 -24940959 0 2048 -24940980 UP 12 -24940980 2048 2048 -24941345 CLICK1 -24941345 CLICK2 -~~~ -~~~ -~~~ -24941365 2048 67110912 -~~~ -24941515 2048 2048 -24946106 DOWN 12 -24946105 0 2048 -~~~ -~~~ -24946124 0 0 -~~~ -~~~ -24946126 0 1 -~~~ -~~~ -24946128 0 3 -~~~ -~~~ -24946130 0 7 -~~~ -~~~ -24946132 0 15 -~~~ -~~~ -24946133 0 31 -~~~ -~~~ -24946135 0 63 -~~~ -~~~ -24946137 0 127 -~~~ -~~~ -24946139 0 255 -24946140 homeCount = 21 -24946140 waitCount = 10 -24946141 ripCount = 8 -24946141 locktype1 = 1 -24946142 locktype2 = 1 -24946163 locktype3 = 2 -24946163 goalCount = 0 -24946164 goalTotal = 0 -24946164 otherCount = 16 -~~~ -24946165 CURRENTGOAL IS [2] -~~~ -24946181 UP 12 -24946181 2048 255 -24946208 DOWN 12 -24946208 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24946241 homeCount = 21 -24946241 waitCount = 10 -24946242 ripCount = 8 -24946242 locktype1 = 1 -24946243 locktype2 = 1 -24946243 locktype3 = 2 -24946244 goalCount = 0 -24946244 goalTotal = 0 -24946245 otherCount = 16 -~~~ -24946246 CURRENTGOAL IS [2] -~~~ -24950351 UP 1 -24950351 1 255 -~~~ -~~~ -24951379 DOWN 1 -24951379 0 255 -~~~ -~~~ -24951405 0 254 -~~~ -~~~ -24951406 0 252 -~~~ -~~~ -24951408 0 248 -~~~ -~~~ -24951410 0 240 -~~~ -~~~ -24951412 0 224 -~~~ -~~~ -24951414 0 192 -~~~ -~~~ -24951415 0 128 -~~~ -~~~ -24951417 0 0 -~~~ -~~~ -24951419 0 512 -24951420 homeCount = 21 -24951421 waitCount = 10 -24951421 ripCount = 8 -24951422 locktype1 = 1 -24951422 locktype2 = 1 -24951443 locktype3 = 2 -24951443 goalCount = 0 -24951444 goalTotal = 0 -24951444 otherCount = 17 -~~~ -24955122 UP 10 -24955122 waslock = 0 -24955122 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24955153 512 16777728 -~~~ -24955284 DOWN 10 -24955284 0 16777728 -24955303 0 512 -24955318 UP 10 -24955319 waslock = 0 -24955318 512 512 -~~~ -~~~ -24955321 512 1536 -~~~ -~~~ -24955323 512 1024 -24955324 homeCount = 22 -24955324 waitCount = 10 -24955325 ripCount = 8 -24955325 locktype1 = 1 -24955326 locktype2 = 1 -24955326 locktype3 = 2 -24955327 goalCount = 0 -24955348 goalTotal = 0 -24955348 otherCount = 17 -~~~ -~~~ -24955745 DOWN 10 -24955745 0 1024 -~~~ -~~~ -~~~ -24955771 UP 10 -24955771 waslock = 0 -24955771 512 1024 -~~~ -24955773 homeCount = 22 -24955774 waitCount = 10 -24955774 ripCount = 8 -24955775 locktype1 = 1 -24955775 locktype2 = 1 -24955776 locktype3 = 2 -24955776 goalCount = 0 -24955777 goalTotal = 0 -24955798 otherCount = 17 -~~~ -~~~ -24958679 DOWN 10 -24958679 0 1024 -~~~ -~~~ -~~~ -~~~ -24958701 homeCount = 22 -24958702 waitCount = 10 -24958702 ripCount = 8 -24958703 locktype1 = 1 -24958703 locktype2 = 1 -24958704 locktype3 = 2 -24958704 goalCount = 0 -24958705 goalTotal = 0 -24958705 otherCount = 17 -~~~ -24958730 UP 10 -24958730 waslock = 0 -24958730 512 1024 -24958749 DOWN 10 -24958749 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24958773 homeCount = 22 -24958773 waitCount = 10 -24958774 ripCount = 8 -24958774 locktype1 = 1 -24958775 locktype2 = 1 -24958775 locktype3 = 2 -24958776 goalCount = 0 -24958776 goalTotal = 0 -24958777 otherCount = 17 -~~~ -24960062 UP 11 -24960062 1024 1024 -24961852 DOWN 11 -24961852 0 1024 -24961864 UP 11 -24961864 1024 1024 -24962813 BEEP1 -24962813 BEEP2 -~~~ -~~~ -~~~ -24962837 1024 33555456 -~~~ -24962987 1024 1024 -24963064 DOWN 11 -24963064 0 1024 -24963077 UP 11 -24963077 1024 1024 -~~~ -~~~ -24963504 1024 0 -~~~ -~~~ -24963505 1024 1 -~~~ -~~~ -24963507 1024 3 -~~~ -~~~ -24963509 1024 7 -~~~ -~~~ -24963511 1024 15 -~~~ -~~~ -24963513 1024 31 -~~~ -~~~ -24963514 1024 63 -~~~ -~~~ -24963516 1024 127 -~~~ -~~~ -24963518 1024 255 -24963519 homeCount = 22 -24963520 waitCount = 10 -24963520 ripCount = 9 -24963521 locktype1 = 1 -24963542 locktype2 = 1 -24963542 locktype3 = 2 -24963543 goalCount = 0 -24963543 goalTotal = 0 -24963544 otherCount = 17 -~~~ -24963545 CURRENTGOAL IS [2] -~~~ -24968316 DOWN 11 -24968316 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24968356 homeCount = 22 -24968357 waitCount = 10 -24968357 ripCount = 9 -24968358 locktype1 = 1 -24968358 locktype2 = 1 -24968359 locktype3 = 2 -24968359 goalCount = 0 -24968360 goalTotal = 0 -24968360 otherCount = 17 -~~~ -24968361 CURRENTGOAL IS [2] -~~~ -24968382 UP 11 -24968382 1024 255 -24968404 DOWN 11 -24968404 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24968438 homeCount = 22 -24968439 waitCount = 10 -24968439 ripCount = 9 -24968440 locktype1 = 1 -24968441 locktype2 = 1 -24968441 locktype3 = 2 -24968442 goalCount = 0 -24968442 goalTotal = 0 -24968443 otherCount = 17 -~~~ -24968444 CURRENTGOAL IS [2] -~~~ -24971124 UP 7 -24971124 64 255 -~~~ -~~~ -24971481 DOWN 7 -24971481 0 255 -~~~ -~~~ -24971503 0 254 -~~~ -~~~ -24971505 0 252 -~~~ -~~~ -24971506 0 248 -~~~ -~~~ -24971508 0 240 -~~~ -~~~ -24971510 0 224 -~~~ -~~~ -24971512 0 192 -~~~ -~~~ -24971514 64 128 -~~~ -~~~ -24971515 64 0 -~~~ -~~~ -24971517 64 512 -24971518 homeCount = 22 -24971519 waitCount = 10 -24971519 ripCount = 9 -24971520 locktype1 = 1 -24971541 locktype2 = 1 -24971542 locktype3 = 2 -24971542 goalCount = 0 -24971543 goalTotal = 0 -24971543 otherCount = 18 -~~~ -24972028 DOWN 7 -24972028 0 512 -24972049 64 512 -24972113 DOWN 7 -24972113 0 512 -24978577 UP 10 -24978578 waslock = 0 -24978577 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24978604 512 16777728 -~~~ -24978753 512 512 -24978766 DOWN 10 -24978766 0 512 -~~~ -~~~ -24978786 0 1536 -~~~ -~~~ -24978788 0 1024 -24978789 homeCount = 23 -24978789 waitCount = 10 -24978790 ripCount = 9 -24978790 locktype1 = 1 -24978791 locktype2 = 1 -24978791 locktype3 = 2 -24978792 goalCount = 0 -24978792 goalTotal = 0 -24978793 otherCount = 18 -~~~ -24978850 UP 10 -24978851 waslock = 0 -24978850 512 1024 -~~~ -24978958 DOWN 10 -24978958 0 1024 -24978966 UP 10 -24978966 waslock = 0 -24978966 512 1024 -~~~ -~~~ -~~~ -~~~ -24978988 homeCount = 23 -24978989 waitCount = 10 -24978989 ripCount = 9 -24978990 locktype1 = 1 -24978990 locktype2 = 1 -24978991 locktype3 = 2 -24978991 goalCount = 0 -24978992 goalTotal = 0 -24978992 otherCount = 18 -~~~ -~~~ -24978997 DOWN 10 -24978997 0 1024 -~~~ -~~~ -~~~ -~~~ -24979033 homeCount = 23 -24979034 waitCount = 10 -24979034 ripCount = 9 -24979035 locktype1 = 1 -24979035 locktype2 = 1 -24979036 locktype3 = 2 -24979036 goalCount = 0 -24979037 goalTotal = 0 -24979037 otherCount = 18 -~~~ -24979055 UP 10 -24979055 waslock = 0 -24979055 512 1024 -~~~ -24983166 DOWN 10 -24983166 0 1024 -~~~ -~~~ -~~~ -~~~ -24983190 homeCount = 23 -24983190 waitCount = 10 -24983191 ripCount = 9 -24983191 locktype1 = 1 -24983192 locktype2 = 1 -24983192 locktype3 = 2 -24983193 goalCount = 0 -24983193 goalTotal = 0 -24983194 otherCount = 18 -~~~ -24983202 UP 10 -24983202 waslock = 0 -24983202 512 1024 -~~~ -24983259 DOWN 10 -24983259 0 1024 -~~~ -~~~ -~~~ -~~~ -24983280 homeCount = 23 -24983281 waitCount = 10 -24983281 ripCount = 9 -24983282 locktype1 = 1 -24983282 locktype2 = 1 -24983283 locktype3 = 2 -24983283 goalCount = 0 -24983284 goalTotal = 0 -24983284 otherCount = 18 -~~~ -24992949 UP 10 -24992949 waslock = 0 -24992948 512 1024 -~~~ -24993619 DOWN 10 -24993619 0 1024 -~~~ -~~~ -~~~ -~~~ -24993640 homeCount = 23 -24993641 waitCount = 10 -24993641 ripCount = 9 -24993642 locktype1 = 1 -24993642 locktype2 = 1 -24993643 locktype3 = 2 -24993643 goalCount = 0 -24993644 goalTotal = 0 -24993644 otherCount = 18 -~~~ -24993658 UP 10 -24993658 waslock = 0 -24993658 512 1024 -~~~ -24993819 DOWN 10 -24993819 0 1024 -~~~ -~~~ -~~~ -~~~ -24993845 homeCount = 23 -24993845 waitCount = 10 -24993846 ripCount = 9 -24993846 locktype1 = 1 -24993847 locktype2 = 1 -24993847 locktype3 = 2 -24993848 goalCount = 0 -24993848 goalTotal = 0 -24993849 otherCount = 18 -~~~ -24993855 UP 10 -24993855 waslock = 0 -24993855 512 1024 -~~~ -24994083 DOWN 10 -24994083 0 1024 -~~~ -~~~ -~~~ -~~~ -24994116 homeCount = 23 -24994117 waitCount = 10 -24994117 ripCount = 9 -24994118 locktype1 = 1 -24994118 locktype2 = 1 -24994119 locktype3 = 2 -24994119 goalCount = 0 -24994120 goalTotal = 0 -24994120 otherCount = 18 -~~~ -25014055 UP 10 -25014055 waslock = 0 -25014055 512 1024 -~~~ -25014332 DOWN 10 -25014332 0 1024 -~~~ -~~~ -~~~ -~~~ -25014361 homeCount = 23 -25014361 waitCount = 10 -25014362 ripCount = 9 -25014362 locktype1 = 1 -25014363 locktype2 = 1 -25014363 locktype3 = 2 -25014364 goalCount = 0 -25014364 goalTotal = 0 -25014365 otherCount = 18 -~~~ -25014825 UP 10 -25014825 waslock = 0 -25014825 512 1024 -~~~ -25015812 DOWN 10 -25015812 0 1024 -~~~ -~~~ -~~~ -~~~ -25015841 homeCount = 23 -25015841 waitCount = 10 -25015842 ripCount = 9 -25015842 locktype1 = 1 -25015843 locktype2 = 1 -25015843 locktype3 = 2 -25015844 goalCount = 0 -25015844 goalTotal = 0 -25015845 otherCount = 18 -~~~ -25015866 UP 10 -25015866 waslock = 0 -25015866 512 1024 -~~~ -25015908 DOWN 10 -25015908 0 1024 -~~~ -~~~ -~~~ -~~~ -25015937 homeCount = 23 -25015938 waitCount = 10 -25015938 ripCount = 9 -25015939 locktype1 = 1 -25015940 locktype2 = 1 -25015940 locktype3 = 2 -25015941 goalCount = 0 -25015941 goalTotal = 0 -25015942 otherCount = 18 -~~~ -25026289 UP 11 -25026289 1024 1024 -25027542 DOWN 11 -25027542 0 1024 -25027560 UP 11 -25027560 1024 1024 -25027600 DOWN 11 -25027600 0 1024 -25027621 UP 11 -25027621 1024 1024 -25028239 DOWN 11 -25028239 0 1024 -25028248 UP 11 -25028248 1024 1024 -25028279 DOWN 11 -25028279 0 1024 -25028295 UP 11 -25028295 1024 1024 -25029519 DOWN 11 -25029519 0 1024 -25029539 UP 11 -25029539 1024 1024 -25031039 BEEP1 -25031039 BEEP2 -~~~ -~~~ -~~~ -25031065 1024 33555456 -~~~ -25031215 1024 1024 -25034863 DOWN 11 -25034863 0 1024 -~~~ -~~~ -25034883 0 0 -~~~ -~~~ -25034884 0 1 -~~~ -~~~ -25034886 0 3 -~~~ -~~~ -25034888 0 7 -~~~ -~~~ -25034890 0 15 -~~~ -~~~ -25034892 0 31 -~~~ -~~~ -25034893 0 63 -~~~ -~~~ -25034895 0 127 -~~~ -~~~ -25034897 0 255 -25034898 homeCount = 23 -25034899 waitCount = 10 -25034899 ripCount = 10 -25034900 locktype1 = 1 -25034900 locktype2 = 1 -25034921 locktype3 = 2 -25034922 goalCount = 0 -25034922 goalTotal = 0 -25034923 otherCount = 18 -~~~ -25034924 CURRENTGOAL IS [2] -~~~ -25034924 UP 11 -25034924 1024 255 -25034974 DOWN 11 -25034974 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25035007 homeCount = 23 -25035008 waitCount = 10 -25035008 ripCount = 10 -25035009 locktype1 = 1 -25035010 locktype2 = 1 -25035010 locktype3 = 2 -25035011 goalCount = 0 -25035011 goalTotal = 0 -25035012 otherCount = 18 -~~~ -25035013 CURRENTGOAL IS [2] -~~~ -25037912 UP 8 -25037912 128 255 -~~~ -~~~ -25038494 DOWN 8 -25038494 0 255 -~~~ -~~~ -25038511 0 254 -~~~ -~~~ -25038513 0 252 -~~~ -~~~ -25038514 0 248 -~~~ -~~~ -25038516 0 240 -~~~ -~~~ -25038518 0 224 -~~~ -~~~ -25038520 0 192 -~~~ -~~~ -25038522 0 128 -~~~ -~~~ -25038524 0 0 -~~~ -~~~ -25038525 0 512 -25038526 homeCount = 23 -25038527 waitCount = 10 -25038527 ripCount = 10 -25038528 locktype1 = 1 -25038528 locktype2 = 1 -25038549 locktype3 = 2 -25038550 goalCount = 0 -25038550 goalTotal = 0 -25038551 otherCount = 19 -~~~ -25043144 UP 10 -25043144 waslock = 0 -25043144 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25043167 512 16777728 -~~~ -25043317 512 512 -25043535 DOWN 10 -25043535 0 512 -~~~ -~~~ -25043565 0 2560 -~~~ -~~~ -25043567 0 2048 -25043568 homeCount = 24 -25043568 waitCount = 10 -25043569 ripCount = 10 -25043569 locktype1 = 1 -25043570 locktype2 = 1 -25043570 locktype3 = 2 -25043571 goalCount = 0 -25043571 goalTotal = 0 -25043572 otherCount = 19 -~~~ -25043738 UP 10 -25043738 waslock = 0 -25043738 512 2048 -~~~ -25047500 DOWN 10 -25047500 0 2048 -~~~ -~~~ -25047525 UP 10 -25047526 waslock = 0 -25047525 512 2048 -~~~ -~~~ -25047528 homeCount = 24 -25047528 waitCount = 10 -25047529 ripCount = 10 -25047529 locktype1 = 1 -25047530 locktype2 = 1 -25047530 locktype3 = 2 -25047531 goalCount = 0 -25047531 goalTotal = 0 -25047552 otherCount = 19 -~~~ -~~~ -25047584 DOWN 10 -25047584 0 2048 -~~~ -~~~ -~~~ -~~~ -25047608 homeCount = 24 -25047608 waitCount = 10 -25047609 ripCount = 10 -25047609 locktype1 = 1 -25047610 locktype2 = 1 -25047610 locktype3 = 2 -25047611 goalCount = 0 -25047611 goalTotal = 0 -25047612 otherCount = 19 -~~~ -25052125 UP 12 -25052125 2048 2048 -25054402 DOWN 12 -25054401 0 2048 -25054425 UP 12 -25054425 2048 2048 -25054523 DOWN 12 -25054523 0 2048 -25054564 UP 12 -25054564 2048 2048 -25054625 CLICK1 -25054625 CLICK2 -~~~ -~~~ -~~~ -25054647 2048 67110912 -~~~ -25054797 2048 2048 -25060172 DOWN 12 -25060172 0 2048 -25060192 UP 12 -25060192 2048 2048 -~~~ -~~~ -25060196 2048 0 -~~~ -~~~ -25060198 2048 1 -~~~ -~~~ -25060199 2048 3 -~~~ -~~~ -25060201 2048 7 -~~~ -~~~ -25060203 2048 15 -~~~ -~~~ -25060205 2048 31 -~~~ -~~~ -25060207 2048 63 -~~~ -~~~ -25060209 2048 127 -~~~ -~~~ -25060210 2048 255 -25060211 homeCount = 24 -25060212 waitCount = 11 -25060213 ripCount = 10 -25060213 locktype1 = 1 -25060234 locktype2 = 1 -25060235 locktype3 = 2 -25060235 goalCount = 0 -25060236 goalTotal = 0 -25060236 otherCount = 19 -~~~ -25060237 CURRENTGOAL IS [2] -~~~ -25060249 DOWN 12 -25060249 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25060289 homeCount = 24 -25060289 waitCount = 11 -25060290 ripCount = 10 -25060290 locktype1 = 1 -25060291 locktype2 = 1 -25060291 locktype3 = 2 -25060292 goalCount = 0 -25060292 goalTotal = 0 -25060293 otherCount = 19 -~~~ -25060294 CURRENTGOAL IS [2] -~~~ -25063141 UP 3 -25063141 4 255 -~~~ -~~~ -25063547 DOWN 3 -25063547 0 255 -~~~ -~~~ -25063565 0 254 -~~~ -~~~ -25063567 0 252 -~~~ -~~~ -25063569 0 248 -~~~ -~~~ -25063570 0 240 -~~~ -~~~ -25063572 0 224 -~~~ -~~~ -25063574 0 192 -~~~ -~~~ -25063576 0 128 -~~~ -~~~ -25063578 0 0 -~~~ -~~~ -25063580 0 512 -25063581 homeCount = 24 -25063581 waitCount = 11 -25063582 ripCount = 10 -25063582 locktype1 = 1 -25063603 locktype2 = 1 -25063604 locktype3 = 2 -25063604 goalCount = 0 -25063605 goalTotal = 0 -25063605 otherCount = 20 -~~~ -25067425 UP 10 -25067425 waslock = 0 -25067425 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25067452 512 16777728 -~~~ -25067602 512 512 -25067687 DOWN 10 -25067687 0 512 -~~~ -~~~ -25067706 0 1536 -~~~ -~~~ -25067708 0 1024 -25067709 homeCount = 25 -25067710 waitCount = 11 -25067710 ripCount = 10 -25067711 locktype1 = 1 -25067711 locktype2 = 1 -25067712 locktype3 = 2 -25067712 goalCount = 0 -25067713 goalTotal = 0 -25067713 otherCount = 20 -~~~ -25067735 UP 10 -25067735 waslock = 0 -25067735 512 1024 -~~~ -25071823 DOWN 10 -25071823 0 1024 -~~~ -~~~ -~~~ -~~~ -25071852 homeCount = 25 -25071853 waitCount = 11 -25071853 ripCount = 10 -25071854 locktype1 = 1 -25071854 locktype2 = 1 -25071855 locktype3 = 2 -25071855 goalCount = 0 -25071856 goalTotal = 0 -25071856 otherCount = 20 -~~~ -25073297 UP 11 -25073297 1024 1024 -25075903 DOWN 11 -25075903 0 1024 -25075949 UP 11 -25075949 1024 1024 -25076047 BEEP1 -25076047 BEEP2 -~~~ -~~~ -~~~ -25076076 1024 33555456 -~~~ -25076226 1024 1024 -25080864 DOWN 11 -25080864 0 1024 -25080887 UP 11 -25080887 1024 1024 -~~~ -~~~ -25080891 1024 0 -~~~ -~~~ -25080892 1024 1 -~~~ -~~~ -25080894 1024 3 -~~~ -~~~ -25080896 1024 7 -~~~ -~~~ -25080898 1024 15 -~~~ -~~~ -25080900 1024 31 -~~~ -~~~ -25080901 1024 63 -~~~ -~~~ -25080903 1024 127 -~~~ -~~~ -25080905 1024 255 -25080906 homeCount = 25 -25080907 waitCount = 11 -25080907 ripCount = 11 -25080928 locktype1 = 1 -25080929 locktype2 = 1 -25080929 locktype3 = 2 -25080930 goalCount = 0 -25080930 goalTotal = 0 -25080931 otherCount = 20 -~~~ -25080932 CURRENTGOAL IS [2] -~~~ -25080976 DOWN 11 -25080976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25081015 homeCount = 25 -25081015 waitCount = 11 -25081016 ripCount = 11 -25081016 locktype1 = 1 -25081017 locktype2 = 1 -25081018 locktype3 = 2 -25081018 goalCount = 0 -25081018 goalTotal = 0 -25081019 otherCount = 20 -~~~ -25081020 CURRENTGOAL IS [2] -~~~ -25084278 UP 6 -25084278 32 255 -~~~ -~~~ -25085001 DOWN 6 -25085001 0 255 -25085013 32 255 -~~~ -~~~ -25085032 32 254 -~~~ -~~~ -25085034 32 252 -~~~ -~~~ -25085036 32 248 -~~~ -~~~ -25085037 32 240 -~~~ -~~~ -25085039 32 224 -~~~ -~~~ -25085041 32 192 -~~~ -~~~ -25085043 32 128 -~~~ -~~~ -25085045 32 0 -~~~ -~~~ -25085047 32 512 -25085048 homeCount = 25 -25085048 waitCount = 11 -25085049 ripCount = 11 -25085049 locktype1 = 1 -25085070 locktype2 = 1 -25085070 locktype3 = 2 -25085071 goalCount = 0 -25085071 goalTotal = 0 -25085072 otherCount = 21 -~~~ -25085490 DOWN 6 -25085490 0 512 -25089559 UP 10 -25089560 waslock = 0 -25089559 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25089592 512 16777728 -~~~ -25089594 DOWN 10 -25089594 0 16777728 -~~~ -~~~ -25089613 0 16779776 -~~~ -~~~ -25089615 0 16779264 -25089616 homeCount = 26 -25089616 waitCount = 11 -25089617 ripCount = 11 -25089617 locktype1 = 1 -25089618 locktype2 = 1 -25089618 locktype3 = 2 -25089619 goalCount = 0 -25089619 goalTotal = 0 -25089620 otherCount = 21 -~~~ -25089742 0 2048 -25089753 UP 10 -25089753 waslock = 0 -25089753 512 2048 -~~~ -25090106 DOWN 10 -25090106 0 2048 -~~~ -~~~ -~~~ -~~~ -25090129 homeCount = 26 -25090129 waitCount = 11 -25090130 ripCount = 11 -25090130 locktype1 = 1 -25090131 locktype2 = 1 -25090131 locktype3 = 2 -25090132 goalCount = 0 -25090132 goalTotal = 0 -25090133 otherCount = 21 -~~~ -25090343 UP 10 -25090344 waslock = 0 -25090343 512 2048 -~~~ -25093735 DOWN 10 -25093735 0 2048 -~~~ -~~~ -~~~ -25093757 UP 10 -25093757 waslock = 0 -25093757 512 2048 -~~~ -25093759 homeCount = 26 -25093759 waitCount = 11 -25093760 ripCount = 11 -25093760 locktype1 = 1 -25093761 locktype2 = 1 -25093761 locktype3 = 2 -25093762 goalCount = 0 -25093762 goalTotal = 0 -25093763 otherCount = 21 -~~~ -~~~ -25093831 DOWN 10 -25093831 0 2048 -~~~ -~~~ -~~~ -~~~ -25093859 homeCount = 26 -25093859 waitCount = 11 -25093860 ripCount = 11 -25093860 locktype1 = 1 -25093861 locktype2 = 1 -25093861 locktype3 = 2 -25093862 goalCount = 0 -25093862 goalTotal = 0 -25093863 otherCount = 21 -~~~ -25095923 UP 12 -25095923 2048 2048 -25099423 CLICK1 -25099423 CLICK2 -~~~ -~~~ -~~~ -25099447 2048 67110912 -~~~ -25099548 DOWN 12 -25099548 0 67110912 -25099570 UP 12 -25099570 2048 67110912 -25099596 2048 2048 -~~~ -~~~ -25099615 2048 0 -~~~ -~~~ -25099616 2048 1 -~~~ -~~~ -25099618 2048 3 -~~~ -~~~ -25099620 2048 7 -~~~ -~~~ -25099622 2048 15 -~~~ -~~~ -25099624 2048 31 -~~~ -~~~ -25099625 2048 63 -~~~ -~~~ -25099627 2048 127 -~~~ -~~~ -25099629 2048 255 -25099630 homeCount = 26 -25099631 waitCount = 12 -25099631 ripCount = 11 -25099652 locktype1 = 1 -25099653 locktype2 = 1 -25099653 locktype3 = 2 -25099654 goalCount = 0 -25099654 goalTotal = 0 -25099655 otherCount = 21 -~~~ -25099656 CURRENTGOAL IS [2] -~~~ -25103441 DOWN 12 -25103441 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25103483 homeCount = 26 -25103484 waitCount = 12 -25103484 ripCount = 11 -25103485 locktype1 = 1 -25103485 locktype2 = 1 -25103486 locktype3 = 2 -25103486 goalCount = 0 -25103487 goalTotal = 0 -25103487 otherCount = 21 -~~~ -25103488 CURRENTGOAL IS [2] -~~~ -25107617 UP 2 -25107617 2 255 -~~~ -~~~ -25107640 outer reward -~~~ -25107640 2 131327 -~~~ -~~~ -25108090 2 255 -25108090 DOWN 2 -25108090 0 255 -~~~ -~~~ -25108124 0 254 -~~~ -~~~ -25108126 0 252 -~~~ -~~~ -25108128 0 248 -~~~ -~~~ -25108129 0 240 -~~~ -~~~ -25108131 0 224 -~~~ -~~~ -25108133 0 192 -~~~ -~~~ -25108135 0 128 -~~~ -~~~ -25108137 0 0 -~~~ -~~~ -25108139 0 512 -25108139 homeCount = 26 -25108140 waitCount = 12 -25108141 ripCount = 11 -25108141 locktype1 = 1 -25108162 locktype2 = 1 -25108163 locktype3 = 2 -25108163 goalCount = 1 -25108164 goalTotal = 1 -25108164 otherCount = 21 -~~~ -25108165 2 512 -25108303 DOWN 2 -25108303 0 512 -25108337 2 512 -25108404 DOWN 2 -25108404 0 512 -25108444 2 512 -25108534 DOWN 2 -25108534 0 512 -25108561 2 512 -25108675 DOWN 2 -25108675 0 512 -25108681 2 512 -25108797 DOWN 2 -25108797 0 512 -25108808 2 512 -25108923 DOWN 2 -25108923 0 512 -25108940 2 512 -25109063 DOWN 2 -25109063 0 512 -25109079 2 512 -25109213 DOWN 2 -25109213 0 512 -25109221 2 512 -25111989 DOWN 2 -25111989 0 512 -25111997 2 512 -25112095 DOWN 2 -25112095 0 512 -25112143 2 512 -25112170 DOWN 2 -25112170 0 512 -25112175 2 512 -25112334 DOWN 2 -25112334 0 512 -25112350 2 512 -25112437 DOWN 2 -25112437 0 512 -25112458 2 512 -25112510 DOWN 2 -25112510 0 512 -25112516 2 512 -25112519 DOWN 2 -25112519 0 512 -25112525 2 512 -25112616 DOWN 2 -25112616 0 512 -25112644 2 512 -25112863 DOWN 2 -25112863 0 512 -25112875 2 512 -25112908 DOWN 2 -25112908 0 512 -25112924 2 512 -25112973 DOWN 2 -25112973 0 512 -25112985 2 512 -25113064 DOWN 2 -25113064 0 512 -25113068 2 512 -25113165 DOWN 2 -25113165 0 512 -25113182 2 512 -25113240 DOWN 2 -25113240 0 512 -25113268 2 512 -25113362 DOWN 2 -25113362 0 512 -25113405 2 512 -25113427 DOWN 2 -25113427 0 512 -25113453 2 512 -25113486 DOWN 2 -25113486 0 512 -25113492 2 512 -25113607 DOWN 2 -25113607 0 512 -25113626 2 512 -25114161 DOWN 2 -25114161 0 512 -25114185 2 512 -25114363 DOWN 2 -25114363 0 512 -25114372 2 512 -25114757 DOWN 2 -25114757 0 512 -25114769 2 512 -25114897 DOWN 2 -25114897 0 512 -25114923 2 512 -25115469 DOWN 2 -25115469 0 512 -25115493 2 512 -25115664 DOWN 2 -25115664 0 512 -25115679 2 512 -25118445 DOWN 2 -25118445 0 512 -25118505 2 512 -25118523 DOWN 2 -25118523 0 512 -25123502 UP 10 -25123502 waslock = 0 -25123502 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25123535 512 16777728 -~~~ -25123685 512 512 -25123787 DOWN 10 -25123787 0 512 -~~~ -~~~ -25123809 0 2560 -~~~ -~~~ -25123811 0 2048 -25123812 homeCount = 27 -25123812 waitCount = 12 -25123813 ripCount = 11 -25123813 locktype1 = 1 -25123814 locktype2 = 1 -25123814 locktype3 = 2 -25123815 goalCount = 1 -25123815 goalTotal = 1 -25123816 otherCount = 21 -~~~ -25123946 UP 10 -25123946 waslock = 0 -25123946 512 2048 -~~~ -25128830 DOWN 10 -25128830 0 2048 -~~~ -~~~ -~~~ -~~~ -25128851 homeCount = 27 -25128852 waitCount = 12 -25128852 ripCount = 11 -25128853 locktype1 = 1 -25128853 locktype2 = 1 -25128854 locktype3 = 2 -25128854 goalCount = 1 -25128855 goalTotal = 1 -25128855 otherCount = 21 -~~~ -25130706 UP 12 -25130706 2048 2048 -25132114 DOWN 12 -25132114 0 2048 -25132126 UP 12 -25132126 2048 2048 -25133707 CLICK1 -25133707 CLICK2 -~~~ -~~~ -~~~ -25133732 2048 67110912 -~~~ -25133881 2048 2048 -25138417 DOWN 12 -25138417 0 2048 -~~~ -~~~ -25138438 0 0 -~~~ -~~~ -25138440 0 1 -~~~ -~~~ -25138441 0 3 -~~~ -~~~ -25138443 0 7 -~~~ -~~~ -25138445 0 15 -~~~ -~~~ -25138447 0 31 -~~~ -~~~ -25138449 0 63 -~~~ -~~~ -25138451 0 127 -~~~ -~~~ -25138452 0 255 -25138453 homeCount = 27 -25138454 waitCount = 13 -25138454 ripCount = 11 -25138455 locktype1 = 1 -25138456 locktype2 = 1 -25138476 locktype3 = 2 -25138477 goalCount = 1 -25138477 goalTotal = 1 -25138478 otherCount = 21 -~~~ -25138479 CURRENTGOAL IS [2] -~~~ -25138480 UP 12 -25138479 2048 255 -25138526 DOWN 12 -25138526 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25138567 homeCount = 27 -25138567 waitCount = 13 -25138568 ripCount = 11 -25138568 locktype1 = 1 -25138569 locktype2 = 1 -25138569 locktype3 = 2 -25138570 goalCount = 1 -25138570 goalTotal = 1 -25138571 otherCount = 21 -~~~ -25138572 CURRENTGOAL IS [2] -~~~ -25142186 UP 2 -25142186 2 255 -~~~ -~~~ -25142212 outer reward -~~~ -25142212 2 131327 -~~~ -~~~ -25142409 DOWN 2 -25142409 0 131327 -~~~ -~~~ -25142429 0 131326 -~~~ -~~~ -25142431 0 131324 -~~~ -~~~ -25142433 0 131320 -~~~ -~~~ -25142435 0 131312 -~~~ -~~~ -25142437 0 131296 -~~~ -~~~ -25142438 0 131264 -~~~ -~~~ -25142440 0 131200 -~~~ -~~~ -25142442 0 131072 -~~~ -~~~ -25142444 0 131584 -25142445 homeCount = 27 -25142445 waitCount = 13 -25142446 ripCount = 11 -25142467 locktype1 = 1 -25142467 locktype2 = 1 -25142468 locktype3 = 2 -25142468 goalCount = 2 -25142469 goalTotal = 2 -25142469 otherCount = 21 -~~~ -25142514 2 131584 -25142662 2 512 -25142890 DOWN 2 -25142890 0 512 -25142916 2 512 -25143005 DOWN 2 -25143005 0 512 -25143054 2 512 -25143131 DOWN 2 -25143131 0 512 -25143167 2 512 -25143275 DOWN 2 -25143275 0 512 -25143289 2 512 -25143415 DOWN 2 -25143415 0 512 -25143426 2 512 -25143556 DOWN 2 -25143556 0 512 -25143574 2 512 -25143700 DOWN 2 -25143700 0 512 -25143717 2 512 -25143855 DOWN 2 -25143855 0 512 -25143873 2 512 -25145835 DOWN 2 -25145835 0 512 -25145862 2 512 -25146013 DOWN 2 -25146013 0 512 -25146025 2 512 -25146180 DOWN 2 -25146180 0 512 -25146196 2 512 -25146245 DOWN 2 -25146245 0 512 -25146262 2 512 -25146416 DOWN 2 -25146416 0 512 -25146444 2 512 -25146594 DOWN 2 -25146594 0 512 -25146604 2 512 -25146772 DOWN 2 -25146772 0 512 -25146776 2 512 -25146903 DOWN 2 -25146903 0 512 -25146914 2 512 -25147108 DOWN 2 -25147108 0 512 -25147157 2 512 -25147264 DOWN 2 -25147264 0 512 -25147283 2 512 -25147322 DOWN 2 -25147322 0 512 -25147326 2 512 -25147510 DOWN 2 -25147510 0 512 -25147517 2 512 -25149784 DOWN 2 -25149784 0 512 -25149798 2 512 -25149902 DOWN 2 -25149902 0 512 -25154660 UP 10 -25154660 waslock = 0 -25154660 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25154687 512 16777728 -~~~ -25154837 512 512 -25154873 DOWN 10 -25154873 0 512 -~~~ -~~~ -25154890 0 1536 -~~~ -~~~ -25154892 0 1024 -25154893 homeCount = 28 -25154893 waitCount = 13 -25154894 ripCount = 11 -25154894 locktype1 = 1 -25154895 locktype2 = 1 -25154895 locktype3 = 2 -25154896 goalCount = 2 -25154896 goalTotal = 2 -25154897 otherCount = 21 -~~~ -25154918 UP 10 -25154919 waslock = 0 -25154918 512 1024 -~~~ -25159969 DOWN 10 -25159969 0 1024 -~~~ -~~~ -~~~ -~~~ -25159992 homeCount = 28 -25159992 waitCount = 13 -25159993 ripCount = 11 -25159993 locktype1 = 1 -25159994 locktype2 = 1 -25159994 locktype3 = 2 -25159995 goalCount = 2 -25159995 goalTotal = 2 -25159996 otherCount = 21 -~~~ -25161799 UP 11 -25161799 1024 1024 -25164091 DOWN 11 -25164091 0 1024 -25164144 UP 11 -25164144 1024 1024 -25164160 DOWN 11 -25164160 0 1024 -25164179 UP 11 -25164179 1024 1024 -25164800 BEEP1 -25164800 BEEP2 -~~~ -~~~ -~~~ -25164824 1024 33555456 -~~~ -25164974 1024 1024 -25169371 DOWN 11 -25169371 0 1024 -~~~ -~~~ -25169390 0 0 -~~~ -~~~ -25169392 0 1 -~~~ -~~~ -25169394 0 3 -~~~ -~~~ -25169396 0 7 -~~~ -~~~ -25169398 0 15 -~~~ -~~~ -25169400 0 31 -~~~ -~~~ -25169401 0 63 -~~~ -~~~ -25169403 0 127 -~~~ -~~~ -25169405 0 255 -25169406 homeCount = 28 -25169407 waitCount = 13 -25169407 ripCount = 12 -25169408 locktype1 = 1 -25169408 locktype2 = 1 -25169429 locktype3 = 2 -25169430 goalCount = 2 -25169430 goalTotal = 2 -25169431 otherCount = 21 -~~~ -25169432 CURRENTGOAL IS [2] -~~~ -25169432 UP 11 -25169432 1024 255 -25171560 DOWN 11 -25171560 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25171599 homeCount = 28 -25171599 waitCount = 13 -25171600 ripCount = 12 -25171600 locktype1 = 1 -25171601 locktype2 = 1 -25171601 locktype3 = 2 -25171602 goalCount = 2 -25171602 goalTotal = 2 -25171603 otherCount = 21 -~~~ -25171604 CURRENTGOAL IS [2] -~~~ -25175596 UP 2 -25175596 2 255 -~~~ -~~~ -25175623 outer reward -~~~ -25175624 2 131327 -~~~ -~~~ -25175843 DOWN 2 -25175843 0 131327 -~~~ -~~~ -25175862 0 131326 -~~~ -~~~ -25175863 0 131324 -~~~ -~~~ -25175865 0 131320 -~~~ -~~~ -25175867 0 131312 -~~~ -~~~ -25175869 0 131296 -~~~ -~~~ -25175871 0 131264 -~~~ -~~~ -25175872 0 131200 -~~~ -~~~ -25175874 0 131072 -~~~ -~~~ -25175876 0 131584 -25175877 homeCount = 28 -25175878 waitCount = 13 -25175878 ripCount = 12 -25175899 locktype1 = 1 -25175899 locktype2 = 1 -25175900 locktype3 = 2 -25175900 goalCount = 3 -25175901 goalTotal = 3 -25175901 otherCount = 21 -~~~ -25175912 2 131584 -25176073 2 512 -25176303 DOWN 2 -25176303 0 512 -25176332 2 512 -25176429 DOWN 2 -25176428 0 512 -25176458 2 512 -25176562 DOWN 2 -25176562 0 512 -25176589 2 512 -25176708 DOWN 2 -25176707 0 512 -25176725 2 512 -25176848 DOWN 2 -25176848 0 512 -25176866 2 512 -25176998 DOWN 2 -25176998 0 512 -25177012 2 512 -25177155 DOWN 2 -25177155 0 512 -25177160 2 512 -25179505 DOWN 2 -25179505 0 512 -25179517 2 512 -25179928 DOWN 2 -25179928 0 512 -25179960 2 512 -25180105 DOWN 2 -25180105 0 512 -25180114 2 512 -25180168 DOWN 2 -25180168 0 512 -25180175 2 512 -25180180 DOWN 2 -25180180 0 512 -25180183 2 512 -25180269 DOWN 2 -25180269 0 512 -25180276 2 512 -25180707 DOWN 2 -25180707 0 512 -25180712 2 512 -25180718 DOWN 2 -25180718 0 512 -25180730 2 512 -25180907 DOWN 2 -25180907 0 512 -25180911 2 512 -25180916 DOWN 2 -25180916 0 512 -25180927 2 512 -25181086 DOWN 2 -25181086 0 512 -25181088 2 512 -25181094 DOWN 2 -25181094 0 512 -25181102 2 512 -25182687 DOWN 2 -25182687 0 512 -25182694 2 512 -25182785 DOWN 2 -25182785 0 512 -25188753 UP 10 -25188754 waslock = 0 -25188753 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25188782 512 16777728 -~~~ -25188784 DOWN 10 -25188784 0 16777728 -~~~ -~~~ -25188799 0 16779776 -~~~ -~~~ -25188801 0 16779264 -25188802 homeCount = 29 -25188803 waitCount = 13 -25188803 ripCount = 12 -25188804 locktype1 = 1 -25188804 locktype2 = 1 -25188805 locktype3 = 2 -25188805 goalCount = 3 -25188806 goalTotal = 3 -25188806 otherCount = 21 -~~~ -25188827 UP 10 -25188827 waslock = 0 -25188827 512 16779264 -~~~ -25188932 512 2048 -25188960 DOWN 10 -25188960 0 2048 -25188979 UP 10 -25188980 waslock = 0 -25188979 512 2048 -~~~ -~~~ -~~~ -~~~ -25188986 homeCount = 29 -25188987 waitCount = 13 -25188987 ripCount = 12 -25188988 locktype1 = 1 -25188988 locktype2 = 1 -25188989 locktype3 = 2 -25188989 goalCount = 3 -25188990 goalTotal = 3 -25188990 otherCount = 21 -~~~ -~~~ -25193421 DOWN 10 -25193421 0 2048 -~~~ -~~~ -~~~ -~~~ -25193442 homeCount = 29 -25193442 waitCount = 13 -25193443 ripCount = 12 -25193443 locktype1 = 1 -25193444 locktype2 = 1 -25193444 locktype3 = 2 -25193445 goalCount = 3 -25193445 goalTotal = 3 -25193446 otherCount = 21 -~~~ -25195698 UP 12 -25195698 2048 2048 -25198392 DOWN 12 -25198392 0 2048 -25198421 UP 12 -25198421 2048 2048 -25198445 DOWN 12 -25198445 0 2048 -25198456 UP 12 -25198456 2048 2048 -25198532 DOWN 12 -25198532 0 2048 -25198548 UP 12 -25198548 2048 2048 -25201743 DOWN 12 -25201743 0 2048 -25201782 UP 12 -25201782 2048 2048 -25203699 CLICK1 -25203699 CLICK2 -~~~ -~~~ -~~~ -25203727 2048 67110912 -~~~ -25203877 2048 2048 -25209218 DOWN 12 -25209218 0 2048 -~~~ -~~~ -25209234 0 0 -~~~ -~~~ -25209236 0 1 -~~~ -~~~ -25209238 0 3 -~~~ -~~~ -25209240 0 7 -~~~ -~~~ -25209241 0 15 -~~~ -~~~ -25209243 0 31 -~~~ -~~~ -25209245 0 63 -~~~ -~~~ -25209247 0 127 -~~~ -~~~ -25209249 0 255 -25209250 homeCount = 29 -25209250 waitCount = 14 -25209251 ripCount = 12 -25209251 locktype1 = 1 -25209252 locktype2 = 1 -25209273 locktype3 = 2 -25209273 goalCount = 3 -25209274 goalTotal = 3 -25209274 otherCount = 21 -~~~ -25209275 CURRENTGOAL IS [2] -~~~ -25209277 UP 12 -25209277 2048 255 -25209310 DOWN 12 -25209310 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25209342 homeCount = 29 -25209342 waitCount = 14 -25209343 ripCount = 12 -25209343 locktype1 = 1 -25209344 locktype2 = 1 -25209344 locktype3 = 2 -25209345 goalCount = 3 -25209345 goalTotal = 3 -25209346 otherCount = 21 -~~~ -25209347 CURRENTGOAL IS [2] -~~~ -25224023 UP 2 -25224023 2 255 -~~~ -~~~ -25224050 outer reward -~~~ -25224051 2 131327 -~~~ -~~~ -25224076 DOWN 2 -25224076 0 131327 -~~~ -~~~ -25224097 0 131326 -~~~ -~~~ -25224098 0 131324 -~~~ -~~~ -25224100 0 131320 -~~~ -~~~ -25224102 0 131312 -~~~ -~~~ -25224104 0 131296 -~~~ -~~~ -25224106 0 131264 -~~~ -~~~ -25224107 0 131200 -~~~ -~~~ -25224109 0 131072 -~~~ -~~~ -25224111 0 131584 -25224112 homeCount = 29 -25224113 waitCount = 14 -25224113 ripCount = 12 -25224134 locktype1 = 1 -25224134 locktype2 = 1 -25224135 locktype3 = 2 -25224135 goalCount = 4 -25224136 goalTotal = 4 -25224136 otherCount = 21 -~~~ -25224137 2 131584 -25224348 DOWN 2 -25224348 0 131584 -25224404 2 131584 -25224500 2 512 -25224662 DOWN 2 -25224662 0 512 -25224678 2 512 -25224773 DOWN 2 -25224773 0 512 -25224805 2 512 -25224898 DOWN 2 -25224898 0 512 -25224928 2 512 -25225017 DOWN 2 -25225017 0 512 -25225059 2 512 -25225149 DOWN 2 -25225149 0 512 -25225185 2 512 -25225285 DOWN 2 -25225285 0 512 -25225318 2 512 -25225427 DOWN 2 -25225427 0 512 -25225455 2 512 -25225579 DOWN 2 -25225579 0 512 -25225598 2 512 -25225730 DOWN 2 -25225730 0 512 -25225749 2 512 -25226040 DOWN 2 -25226040 0 512 -25226046 2 512 -25228169 DOWN 2 -25228169 0 512 -25228174 2 512 -25228345 DOWN 2 -25228345 0 512 -25228356 2 512 -25228509 DOWN 2 -25228509 0 512 -25228532 2 512 -25230264 DOWN 2 -25230264 0 512 -25230289 2 512 -25230334 DOWN 2 -25230334 0 512 -25234295 UP 10 -25234295 waslock = 0 -25234295 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25234324 512 16777728 -~~~ -25234474 512 512 -25234489 DOWN 10 -25234488 0 512 -25234502 UP 10 -25234503 waslock = 0 -25234502 512 512 -~~~ -~~~ -25234510 512 2560 -~~~ -~~~ -25234511 512 2048 -25234512 homeCount = 30 -25234513 waitCount = 14 -25234514 ripCount = 12 -25234514 locktype1 = 1 -25234515 locktype2 = 1 -25234515 locktype3 = 2 -25234516 goalCount = 4 -25234516 goalTotal = 4 -25234517 otherCount = 21 -~~~ -~~~ -25238280 DOWN 10 -25238280 0 2048 -~~~ -~~~ -~~~ -~~~ -25238301 homeCount = 30 -25238301 waitCount = 14 -25238302 ripCount = 12 -25238302 locktype1 = 1 -25238303 locktype2 = 1 -25238303 locktype3 = 2 -25238304 goalCount = 4 -25238304 goalTotal = 4 -25238305 otherCount = 21 -~~~ -25239988 UP 12 -25239988 2048 2048 -25248189 DOWN 12 -25248189 0 2048 -25248207 UP 12 -25248207 2048 2048 -25248906 DOWN 12 -25248906 0 2048 -25248913 UP 12 -25248913 2048 2048 -25248988 CLICK1 -25248988 CLICK2 -~~~ -~~~ -~~~ -25249009 2048 67110912 -~~~ -25249159 2048 2048 -25254041 DOWN 12 -25254041 0 2048 -~~~ -~~~ -25254067 0 0 -~~~ -~~~ -25254068 0 1 -~~~ -~~~ -25254070 0 3 -~~~ -~~~ -25254072 0 7 -~~~ -~~~ -25254074 0 15 -~~~ -~~~ -25254076 0 31 -~~~ -~~~ -25254077 0 63 -~~~ -~~~ -25254079 0 127 -~~~ -~~~ -25254081 0 255 -25254082 homeCount = 30 -25254083 waitCount = 15 -25254083 ripCount = 12 -25254084 locktype1 = 1 -25254084 locktype2 = 1 -25254105 locktype3 = 2 -25254106 goalCount = 4 -25254106 goalTotal = 4 -25254107 otherCount = 21 -~~~ -25254108 CURRENTGOAL IS [2] -~~~ -25254108 UP 12 -25254108 2048 255 -25254169 DOWN 12 -25254169 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25254205 homeCount = 30 -25254206 waitCount = 15 -25254206 ripCount = 12 -25254207 locktype1 = 1 -25254207 locktype2 = 1 -25254208 locktype3 = 2 -25254208 goalCount = 4 -25254209 goalTotal = 4 -25254209 otherCount = 21 -~~~ -25254211 CURRENTGOAL IS [2] -~~~ -25258239 UP 2 -25258239 2 255 -~~~ -~~~ -25258262 outer reward -~~~ -25258263 2 131327 -~~~ -~~~ -25258296 DOWN 2 -25258296 0 131327 -~~~ -~~~ -25258319 0 131326 -~~~ -~~~ -25258321 0 131324 -~~~ -~~~ -25258323 0 131320 -~~~ -~~~ -25258325 0 131312 -~~~ -~~~ -25258326 0 131296 -~~~ -~~~ -25258328 0 131264 -~~~ -~~~ -25258330 2 131200 -~~~ -~~~ -25258332 2 131072 -~~~ -~~~ -25258334 2 131584 -25258335 homeCount = 30 -25258335 waitCount = 15 -25258336 ripCount = 12 -25258357 locktype1 = 1 -25258357 locktype2 = 1 -25258358 locktype3 = 2 -25258358 goalCount = 5 -25258359 goalTotal = 5 -25258359 otherCount = 21 -~~~ -25258494 DOWN 2 -25258494 0 131584 -25258540 2 131584 -25258712 2 512 -25258902 DOWN 2 -25258902 0 512 -25258920 2 512 -25259017 DOWN 2 -25259017 0 512 -25259045 2 512 -25259135 DOWN 2 -25259135 0 512 -25259172 2 512 -25259262 DOWN 2 -25259262 0 512 -25259297 2 512 -25259389 DOWN 2 -25259389 0 512 -25259433 2 512 -25259522 DOWN 2 -25259522 0 512 -25259562 2 512 -25259655 DOWN 2 -25259655 0 512 -25259693 2 512 -25259792 DOWN 2 -25259792 0 512 -25259825 2 512 -25259938 DOWN 2 -25259938 0 512 -25259963 2 512 -25260096 DOWN 2 -25260096 0 512 -25260109 2 512 -25260255 DOWN 2 -25260255 0 512 -25260267 2 512 -25260407 DOWN 2 -25260407 0 512 -25260417 2 512 -25260562 DOWN 2 -25260562 0 512 -25260572 2 512 -25264430 DOWN 2 -25264430 0 512 -25264465 2 512 -25264520 DOWN 2 -25264520 0 512 -25268595 UP 10 -25268595 waslock = 0 -25268595 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25268618 512 16777728 -~~~ -25268768 512 512 -25268819 DOWN 10 -25268819 0 512 -25268840 UP 10 -25268840 waslock = 0 -25268839 512 512 -~~~ -~~~ -25268846 512 1536 -~~~ -~~~ -25268848 512 1024 -25268849 homeCount = 31 -25268850 waitCount = 15 -25268850 ripCount = 12 -25268851 locktype1 = 1 -25268851 locktype2 = 1 -25268852 locktype3 = 2 -25268852 goalCount = 5 -25268853 goalTotal = 5 -25268853 otherCount = 21 -~~~ -~~~ -25271996 DOWN 10 -25271996 0 1024 -~~~ -~~~ -~~~ -~~~ -25272015 homeCount = 31 -25272015 waitCount = 15 -25272016 ripCount = 12 -25272016 locktype1 = 1 -25272017 locktype2 = 1 -25272017 locktype3 = 2 -25272018 goalCount = 5 -25272018 goalTotal = 5 -25272019 otherCount = 21 -~~~ -25273511 UP 11 -25273511 1024 1024 -25275924 DOWN 11 -25275924 0 1024 -25275938 UP 11 -25275938 1024 1024 -25277719 DOWN 11 -25277719 0 1024 -25277728 UP 11 -25277728 1024 1024 -25280511 BEEP1 -25280511 BEEP2 -~~~ -~~~ -~~~ -25280536 1024 33555456 -~~~ -25280686 1024 1024 -25285951 DOWN 11 -25285951 0 1024 -~~~ -~~~ -25285973 0 0 -~~~ -~~~ -25285975 0 1 -~~~ -~~~ -25285976 0 3 -~~~ -~~~ -25285978 0 7 -~~~ -~~~ -25285980 0 15 -~~~ -~~~ -25285982 0 31 -~~~ -~~~ -25285984 0 63 -~~~ -~~~ -25285986 0 127 -~~~ -~~~ -25285987 0 255 -25285988 homeCount = 31 -25285989 waitCount = 15 -25285990 ripCount = 13 -25285990 locktype1 = 1 -25285991 locktype2 = 1 -25286011 locktype3 = 2 -25286012 goalCount = 5 -25286012 goalTotal = 5 -25286013 otherCount = 21 -~~~ -25286014 CURRENTGOAL IS [2] -~~~ -25286014 UP 11 -25286014 1024 255 -25288352 DOWN 11 -25288352 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288383 UP 11 -25288383 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288393 homeCount = 31 -25288394 waitCount = 15 -25288394 ripCount = 13 -25288395 locktype1 = 1 -25288395 locktype2 = 1 -25288396 locktype3 = 2 -25288396 goalCount = 5 -25288397 goalTotal = 5 -25288397 otherCount = 21 -~~~ -25288398 CURRENTGOAL IS [2] -~~~ -25288446 DOWN 11 -25288446 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288484 homeCount = 31 -25288485 waitCount = 15 -25288485 ripCount = 13 -25288486 locktype1 = 1 -25288486 locktype2 = 1 -25288487 locktype3 = 2 -25288487 goalCount = 5 -25288488 goalTotal = 5 -25288488 otherCount = 21 -~~~ -25288489 CURRENTGOAL IS [2] -~~~ -25292276 UP 2 -25292276 2 255 -~~~ -~~~ -25292299 outer reward -~~~ -25292300 2 131327 -~~~ -~~~ -25292481 DOWN 2 -25292481 0 131327 -~~~ -~~~ -25292508 0 131326 -~~~ -~~~ -25292510 0 131324 -~~~ -~~~ -25292511 0 131320 -~~~ -~~~ -25292513 0 131312 -~~~ -~~~ -25292515 0 131296 -~~~ -~~~ -25292517 0 131264 -~~~ -~~~ -25292519 0 131200 -~~~ -~~~ -25292521 0 131072 -~~~ -~~~ -25292522 0 131584 -25292523 homeCount = 31 -25292524 waitCount = 15 -25292525 ripCount = 13 -25292545 locktype1 = 1 -25292546 locktype2 = 1 -25292546 locktype3 = 2 -25292547 goalCount = 6 -25292547 goalTotal = 6 -25292548 otherCount = 21 -~~~ -25292548 2 131584 -25292749 2 512 -25292894 DOWN 2 -25292894 0 512 -25292922 2 512 -25293016 DOWN 2 -25293016 0 512 -25293052 2 512 -25293153 DOWN 2 -25293153 0 512 -25293173 2 512 -25294024 DOWN 2 -25294024 0 512 -25294050 2 512 -25299590 DOWN 2 -25299590 0 512 -25303635 UP 10 -25303636 waslock = 0 -25303635 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25303667 512 16777728 -~~~ -25303817 512 512 -25307585 DOWN 10 -25307585 0 512 -~~~ -~~~ -25307608 0 1536 -~~~ -~~~ -25307610 0 1024 -25307611 homeCount = 32 -25307611 waitCount = 15 -25307612 ripCount = 13 -25307613 locktype1 = 1 -25307613 locktype2 = 1 -25307614 locktype3 = 2 -25307614 goalCount = 6 -25307615 goalTotal = 6 -25307615 otherCount = 21 -~~~ -25309251 UP 11 -25309251 1024 1024 -25311815 DOWN 11 -25311815 0 1024 -25311837 UP 11 -25311837 1024 1024 -25313752 BEEP1 -25313752 BEEP2 -~~~ -~~~ -~~~ -25313771 1024 33555456 -~~~ -25313921 1024 1024 -25318968 DOWN 11 -25318968 0 1024 -~~~ -~~~ -25318989 0 0 -~~~ -~~~ -25318991 0 1 -~~~ -~~~ -25318993 0 3 -~~~ -~~~ -25318995 0 7 -~~~ -~~~ -25318997 0 15 -~~~ -~~~ -25318998 0 31 -~~~ -~~~ -25319000 0 63 -~~~ -~~~ -25319002 0 127 -~~~ -~~~ -25319004 0 255 -25319005 homeCount = 32 -25319005 waitCount = 15 -25319006 ripCount = 14 -25319007 locktype1 = 1 -25319007 locktype2 = 1 -25319028 locktype3 = 2 -25319028 goalCount = 6 -25319029 goalTotal = 6 -25319029 otherCount = 21 -~~~ -25319031 CURRENTGOAL IS [2] -~~~ -25319045 UP 11 -25319045 1024 255 -25319211 DOWN 11 -25319211 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25319245 homeCount = 32 -25319246 waitCount = 15 -25319246 ripCount = 14 -25319247 locktype1 = 1 -25319247 locktype2 = 1 -25319248 locktype3 = 2 -25319248 goalCount = 6 -25319249 goalTotal = 6 -25319249 otherCount = 21 -~~~ -25319251 CURRENTGOAL IS [2] -~~~ -25319272 UP 11 -25319272 1024 255 -25321213 DOWN 11 -25321213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25321245 homeCount = 32 -25321246 waitCount = 15 -25321246 ripCount = 14 -25321247 locktype1 = 1 -25321247 locktype2 = 1 -25321248 locktype3 = 2 -25321248 goalCount = 6 -25321249 goalTotal = 6 -25321249 otherCount = 21 -~~~ -25321250 CURRENTGOAL IS [2] -~~~ -25324835 UP 2 -25324835 2 255 -~~~ -~~~ -25324860 outer reward -~~~ -25324861 2 131327 -~~~ -~~~ -25325077 DOWN 2 -25325077 0 131327 -~~~ -~~~ -25325099 0 131326 -~~~ -~~~ -25325101 0 131324 -~~~ -~~~ -25325103 0 131320 -~~~ -~~~ -25325105 0 131312 -~~~ -~~~ -25325106 0 131296 -~~~ -~~~ -25325108 0 131264 -~~~ -~~~ -25325110 0 131200 -~~~ -~~~ -25325112 0 131072 -~~~ -~~~ -25325114 0 131584 -25325115 homeCount = 32 -25325115 waitCount = 15 -25325116 ripCount = 14 -25325136 locktype1 = 1 -25325137 locktype2 = 1 -25325137 locktype3 = 2 -25325138 goalCount = 7 -25325138 goalTotal = 7 -25325139 otherCount = 21 -~~~ -25325141 2 131584 -25325310 2 512 -25325492 DOWN 2 -25325492 0 512 -25325540 2 512 -25325616 DOWN 2 -25325616 0 512 -25325662 2 512 -25325755 DOWN 2 -25325754 0 512 -25325776 2 512 -25326611 DOWN 2 -25326611 0 512 -25326629 2 512 -25329406 DOWN 2 -25329406 0 512 -25329419 2 512 -25329757 DOWN 2 -25329757 0 512 -25329760 2 512 -25329762 DOWN 2 -25329762 0 512 -25329781 2 512 -25329935 DOWN 2 -25329935 0 512 -25329937 2 512 -25329945 DOWN 2 -25329945 0 512 -25329953 2 512 -25331774 DOWN 2 -25331774 0 512 -25331786 2 512 -25331865 DOWN 2 -25331865 0 512 -25335687 UP 10 -25335687 waslock = 0 -25335687 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25335716 512 16777728 -~~~ -25335866 512 512 -25339372 DOWN 10 -25339372 0 512 -~~~ -~~~ -25339390 0 1536 -~~~ -~~~ -25339392 0 1024 -25339393 homeCount = 33 -25339394 waitCount = 15 -25339394 ripCount = 14 -25339395 locktype1 = 1 -25339395 locktype2 = 1 -25339396 locktype3 = 2 -25339396 goalCount = 7 -25339397 goalTotal = 7 -25339397 otherCount = 21 -~~~ -25339425 UP 10 -25339425 waslock = 0 -25339425 512 1024 -25339438 DOWN 10 -25339438 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25339466 homeCount = 33 -25339466 waitCount = 15 -25339467 ripCount = 14 -25339467 locktype1 = 1 -25339468 locktype2 = 1 -25339468 locktype3 = 2 -25339469 goalCount = 7 -25339469 goalTotal = 7 -25339470 otherCount = 21 -~~~ -25341420 UP 11 -25341420 1024 1024 -25341496 DOWN 11 -25341496 0 1024 -25341560 UP 11 -25341560 1024 1024 -25343328 DOWN 11 -25343328 0 1024 -25343349 UP 11 -25343349 1024 1024 -25349420 BEEP1 -25349420 BEEP2 -~~~ -~~~ -~~~ -25349444 1024 33555456 -~~~ -25349594 1024 1024 -25355080 DOWN 11 -25355080 0 1024 -~~~ -~~~ -25355104 0 0 -~~~ -~~~ -25355105 0 1 -~~~ -~~~ -25355107 0 3 -~~~ -25355109 UP 11 -25355108 1024 3 -~~~ -~~~ -25355110 1024 7 -~~~ -~~~ -25355112 1024 15 -~~~ -~~~ -25355114 1024 31 -~~~ -25355115 1024 63 -~~~ -~~~ -25355116 1024 127 -~~~ -~~~ -25355118 1024 255 -25355119 homeCount = 33 -25355140 waitCount = 15 -25355141 ripCount = 15 -25355141 locktype1 = 1 -25355142 locktype2 = 1 -25355142 locktype3 = 2 -25355143 goalCount = 7 -25355143 goalTotal = 7 -25355144 otherCount = 21 -~~~ -25355145 CURRENTGOAL IS [2] -~~~ -25357469 DOWN 11 -25357469 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25357509 homeCount = 33 -25357510 waitCount = 15 -25357510 ripCount = 15 -25357511 locktype1 = 1 -25357511 locktype2 = 1 -25357512 locktype3 = 2 -25357512 goalCount = 7 -25357513 goalTotal = 7 -25357513 otherCount = 21 -~~~ -25357514 CURRENTGOAL IS [2] -~~~ -25361464 UP 2 -25361464 2 255 -~~~ -~~~ -25361487 outer reward -~~~ -25361487 2 131327 -~~~ -~~~ -25361745 DOWN 2 -25361745 0 131327 -~~~ -~~~ -25361763 0 131326 -~~~ -~~~ -25361765 0 131324 -~~~ -~~~ -25361766 0 131320 -~~~ -~~~ -25361768 0 131312 -~~~ -~~~ -25361770 0 131296 -~~~ -~~~ -25361772 0 131264 -~~~ -~~~ -25361774 0 131200 -~~~ -~~~ -25361776 0 131072 -~~~ -~~~ -25361778 0 131584 -25361779 homeCount = 33 -25361779 waitCount = 15 -25361780 ripCount = 15 -25361800 locktype1 = 1 -25361801 locktype2 = 1 -25361801 locktype3 = 2 -25361802 goalCount = 8 -25361802 goalTotal = 8 -25361803 otherCount = 21 -~~~ -25361803 2 131584 -25361937 2 512 -25362139 DOWN 2 -25362139 0 512 -25362176 2 512 -25362263 DOWN 2 -25362263 0 512 -25362291 2 512 -25362386 DOWN 2 -25362386 0 512 -25362422 2 512 -25362510 DOWN 2 -25362510 0 512 -25362553 2 512 -25362641 DOWN 2 -25362641 0 512 -25362682 2 512 -25362795 DOWN 2 -25362795 0 512 -25362813 2 512 -25362939 DOWN 2 -25362939 0 512 -25362959 2 512 -25363093 DOWN 2 -25363093 0 512 -25363099 2 512 -25363241 DOWN 2 -25363241 0 512 -25363246 2 512 -25363391 DOWN 2 -25363391 0 512 -25363399 2 512 -25366031 DOWN 2 -25366031 0 512 -25366037 2 512 -25366210 DOWN 2 -25366210 0 512 -25366218 2 512 -25368328 DOWN 2 -25368328 0 512 -25368391 2 512 -25368427 DOWN 2 -25368427 0 512 -25371877 UP 10 -25371877 waslock = 0 -25371877 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25371903 512 16777728 -~~~ -25372053 512 512 -25379887 DOWN 10 -25379887 0 512 -~~~ -~~~ -25379906 0 1536 -~~~ -~~~ -25379908 0 1024 -25379909 homeCount = 34 -25379909 waitCount = 15 -25379910 ripCount = 15 -25379910 locktype1 = 1 -25379911 locktype2 = 1 -25379911 locktype3 = 2 -25379912 goalCount = 8 -25379912 goalTotal = 8 -25379913 otherCount = 21 -~~~ -25379964 UP 10 -25379964 waslock = 0 -25379964 512 1024 -~~~ -25380013 DOWN 10 -25380013 0 1024 -~~~ -~~~ -~~~ -~~~ -25380044 homeCount = 34 -25380044 waitCount = 15 -25380045 ripCount = 15 -25380045 locktype1 = 1 -25380046 locktype2 = 1 -25380046 locktype3 = 2 -25380047 goalCount = 8 -25380047 goalTotal = 8 -25380048 otherCount = 21 -~~~ -25381643 UP 10 -25381644 waslock = 0 -25381643 512 1024 -25381658 DOWN 10 -25381658 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25381684 homeCount = 34 -25381685 waitCount = 15 -25381685 ripCount = 15 -25381686 locktype1 = 1 -25381686 locktype2 = 1 -25381687 locktype3 = 2 -25381687 goalCount = 8 -25381688 goalTotal = 8 -25381688 otherCount = 21 -~~~ -25383621 UP 11 -25383621 1024 1024 -25388121 BEEP1 -25388121 BEEP2 -~~~ -~~~ -~~~ -25388149 1024 33555456 -~~~ -25388299 1024 1024 -25394043 DOWN 11 -25394043 0 1024 -~~~ -~~~ -25394066 0 0 -~~~ -~~~ -25394068 0 1 -~~~ -~~~ -25394070 0 3 -~~~ -~~~ -25394072 0 7 -~~~ -~~~ -25394074 UP 11 -25394073 1024 15 -~~~ -~~~ -25394076 1024 31 -~~~ -~~~ -25394077 1024 63 -~~~ -~~~ -25394079 1024 127 -~~~ -~~~ -25394081 1024 255 -25394082 homeCount = 34 -25394082 waitCount = 15 -25394083 ripCount = 16 -25394104 locktype1 = 1 -25394104 locktype2 = 1 -25394105 locktype3 = 2 -25394105 goalCount = 8 -25394106 goalTotal = 8 -25394106 otherCount = 21 -~~~ -25394108 CURRENTGOAL IS [2] -~~~ -25394133 DOWN 11 -25394133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25394169 homeCount = 34 -25394170 waitCount = 15 -25394170 ripCount = 16 -25394171 locktype1 = 1 -25394171 locktype2 = 1 -25394172 locktype3 = 2 -25394172 goalCount = 8 -25394173 goalTotal = 8 -25394173 otherCount = 21 -~~~ -25394174 CURRENTGOAL IS [2] -~~~ -25394253 UP 11 -25394253 1024 255 -25394289 DOWN 11 -25394289 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25394325 homeCount = 34 -25394325 waitCount = 15 -25394326 ripCount = 16 -25394326 locktype1 = 1 -25394327 locktype2 = 1 -25394327 locktype3 = 2 -25394328 goalCount = 8 -25394328 goalTotal = 8 -25394329 otherCount = 21 -~~~ -25394330 CURRENTGOAL IS [2] -~~~ -25394940 UP 11 -25394940 1024 255 -25394971 DOWN 11 -25394971 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25395007 UP 11 -25395007 1024 255 -25395008 homeCount = 34 -25395009 waitCount = 15 -25395009 ripCount = 16 -25395010 locktype1 = 1 -25395010 locktype2 = 1 -25395011 locktype3 = 2 -25395011 goalCount = 8 -25395012 goalTotal = 8 -25395012 otherCount = 21 -~~~ -25395034 CURRENTGOAL IS [2] -~~~ -25398455 DOWN 11 -25398455 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25398496 homeCount = 34 -25398496 waitCount = 15 -25398497 ripCount = 16 -25398497 locktype1 = 1 -25398498 locktype2 = 1 -25398498 locktype3 = 2 -25398499 goalCount = 8 -25398499 goalTotal = 8 -25398500 otherCount = 21 -~~~ -25398501 CURRENTGOAL IS [2] -~~~ -25411077 UP 8 -25411077 128 255 -~~~ -~~~ -25411117 DOWN 8 -25411117 0 255 -~~~ -~~~ -25411143 0 254 -~~~ -~~~ -25411145 0 252 -~~~ -~~~ -25411147 0 248 -~~~ -~~~ -25411149 0 240 -~~~ -~~~ -25411151 0 224 -~~~ -~~~ -25411152 0 192 -~~~ -~~~ -25411154 0 128 -~~~ -~~~ -25411156 0 0 -~~~ -~~~ -25411158 0 512 -25411159 homeCount = 34 -25411160 waitCount = 15 -25411160 ripCount = 16 -25411161 locktype1 = 1 -25411161 locktype2 = 1 -25411182 locktype3 = 2 -25411182 goalCount = 8 -25411183 goalTotal = 8 -25411183 otherCount = 22 -~~~ -25411186 128 512 -25411487 DOWN 8 -25411487 0 512 -25415389 UP 10 -25415390 waslock = 0 -25415389 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25415415 512 16777728 -~~~ -25415564 DOWN 10 -25415564 0 16777728 -25415565 0 512 -~~~ -~~~ -25415591 0 1536 -~~~ -~~~ -25415593 0 1024 -25415594 homeCount = 35 -25415595 waitCount = 15 -25415595 ripCount = 16 -25415596 locktype1 = 1 -25415596 locktype2 = 1 -25415597 locktype3 = 2 -25415597 goalCount = 8 -25415598 goalTotal = 8 -25415598 otherCount = 22 -~~~ -25415732 UP 10 -25415732 waslock = 0 -25415732 512 1024 -~~~ -25421067 DOWN 10 -25421067 0 1024 -~~~ -~~~ -~~~ -~~~ -25421092 homeCount = 35 -25421093 waitCount = 15 -25421093 ripCount = 16 -25421094 locktype1 = 1 -25421094 locktype2 = 1 -25421095 locktype3 = 2 -25421095 goalCount = 8 -25421096 goalTotal = 8 -25421096 otherCount = 22 -~~~ -25421137 UP 10 -25421137 waslock = 0 -25421137 512 1024 -25421143 DOWN 10 -25421143 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25421169 homeCount = 35 -25421169 waitCount = 15 -25421170 ripCount = 16 -25421170 locktype1 = 1 -25421171 locktype2 = 1 -25421171 locktype3 = 2 -25421172 goalCount = 8 -25421172 goalTotal = 8 -25421173 otherCount = 22 -~~~ -25424199 UP 11 -25424199 1024 1024 -25431199 BEEP1 -25431199 BEEP2 -~~~ -~~~ -~~~ -25431220 1024 33555456 -~~~ -25431370 1024 1024 -25436615 DOWN 11 -25436615 0 1024 -~~~ -~~~ -25436639 0 0 -~~~ -~~~ -25436641 0 1 -~~~ -~~~ -25436643 0 3 -~~~ -~~~ -25436645 0 7 -~~~ -~~~ -25436646 0 15 -~~~ -25436648 UP 11 -25436648 1024 15 -~~~ -~~~ -25436650 1024 31 -~~~ -~~~ -25436651 1024 63 -~~~ -~~~ -25436653 1024 127 -~~~ -25436654 1024 255 -25436655 homeCount = 35 -25436656 waitCount = 15 -25436677 ripCount = 17 -25436677 locktype1 = 1 -25436678 locktype2 = 1 -25436678 locktype3 = 2 -25436679 goalCount = 8 -25436679 goalTotal = 8 -25436680 otherCount = 22 -~~~ -25436681 CURRENTGOAL IS [2] -~~~ -25436836 DOWN 11 -25436836 0 255 -25436857 UP 11 -25436857 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25436874 homeCount = 35 -25436875 waitCount = 15 -25436875 ripCount = 17 -25436876 locktype1 = 1 -25436876 locktype2 = 1 -25436877 locktype3 = 2 -25436877 goalCount = 8 -25436878 goalTotal = 8 -25436878 otherCount = 22 -~~~ -25436880 CURRENTGOAL IS [2] -~~~ -25436901 DOWN 11 -25436901 0 255 -25436910 UP 11 -25436910 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25436946 homeCount = 35 -25436947 waitCount = 15 -25436947 ripCount = 17 -25436948 locktype1 = 1 -25436948 locktype2 = 1 -25436949 locktype3 = 2 -25436949 goalCount = 8 -25436950 goalTotal = 8 -25436950 otherCount = 22 -~~~ -25436951 CURRENTGOAL IS [2] -~~~ -25438811 DOWN 11 -25438811 0 255 -25438829 UP 11 -25438829 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25438864 homeCount = 35 -25438864 waitCount = 15 -25438865 ripCount = 17 -25438866 locktype1 = 1 -25438866 locktype2 = 1 -25438867 locktype3 = 2 -25438867 goalCount = 8 -25438868 goalTotal = 8 -25438868 otherCount = 22 -~~~ -25438869 CURRENTGOAL IS [2] -~~~ -25438892 DOWN 11 -25438892 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25438927 homeCount = 35 -25438927 waitCount = 15 -25438928 ripCount = 17 -25438928 locktype1 = 1 -25438929 locktype2 = 1 -25438929 locktype3 = 2 -25438930 goalCount = 8 -25438930 goalTotal = 8 -25438931 otherCount = 22 -~~~ -25438932 CURRENTGOAL IS [2] -~~~ -25443046 UP 2 -25443046 2 255 -~~~ -~~~ -25443074 outer reward -~~~ -25443075 2 131327 -~~~ -~~~ -25443261 DOWN 2 -25443261 0 131327 -~~~ -~~~ -25443281 0 131326 -~~~ -~~~ -25443283 0 131324 -~~~ -~~~ -25443285 0 131320 -~~~ -~~~ -25443287 0 131312 -~~~ -~~~ -25443288 0 131296 -~~~ -~~~ -25443290 0 131264 -~~~ -~~~ -25443292 0 131200 -~~~ -~~~ -25443294 0 131072 -~~~ -~~~ -25443296 0 131584 -25443297 homeCount = 35 -25443297 waitCount = 15 -25443298 ripCount = 17 -25443319 locktype1 = 1 -25443319 locktype2 = 1 -25443320 locktype3 = 2 -25443320 goalCount = 9 -25443321 goalTotal = 9 -25443321 otherCount = 22 -~~~ -25443322 2 131584 -25443524 2 512 -25443802 DOWN 2 -25443802 0 512 -25443828 2 512 -25443922 DOWN 2 -25443922 0 512 -25443955 2 512 -25444050 DOWN 2 -25444050 0 512 -25444072 2 512 -25444174 DOWN 2 -25444174 0 512 -25444198 2 512 -25444307 DOWN 2 -25444307 0 512 -25444329 2 512 -25444444 DOWN 2 -25444444 0 512 -25444465 2 512 -25444596 DOWN 2 -25444596 0 512 -25444605 2 512 -25445036 DOWN 2 -25445036 0 512 -25445047 2 512 -25448195 DOWN 2 -25448195 0 512 -25448235 2 512 -25450273 DOWN 2 -25450273 0 512 -25450339 2 512 -25450371 DOWN 2 -25450371 0 512 -25454316 UP 10 -25454317 waslock = 0 -25454316 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25454349 512 16777728 -~~~ -25454499 512 512 -25457148 DOWN 10 -25457148 0 512 -~~~ -~~~ -25457174 0 2560 -~~~ -~~~ -25457176 0 2048 -25457177 homeCount = 36 -25457178 waitCount = 15 -25457178 ripCount = 17 -25457179 locktype1 = 1 -25457179 locktype2 = 1 -25457180 locktype3 = 2 -25457180 goalCount = 9 -25457181 goalTotal = 9 -25457181 otherCount = 22 -~~~ -25459795 UP 12 -25459795 2048 2048 -25463795 CLICK1 -25463795 CLICK2 -~~~ -~~~ -~~~ -25463815 2048 67110912 -~~~ -25463965 2048 2048 -25469814 DOWN 12 -25469814 0 2048 -~~~ -~~~ -25469833 0 0 -~~~ -~~~ -25469835 0 1 -~~~ -~~~ -25469837 0 3 -~~~ -~~~ -25469838 0 7 -~~~ -~~~ -25469840 0 15 -~~~ -~~~ -25469842 0 31 -~~~ -~~~ -25469844 0 63 -~~~ -~~~ -25469846 0 127 -~~~ -~~~ -25469848 0 255 -25469849 homeCount = 36 -25469849 waitCount = 16 -25469850 ripCount = 17 -25469850 locktype1 = 1 -25469851 locktype2 = 1 -25469872 locktype3 = 2 -25469872 goalCount = 9 -25469873 goalTotal = 9 -25469873 otherCount = 22 -~~~ -25469874 CURRENTGOAL IS [2] -~~~ -25469921 UP 12 -25469921 2048 255 -25469955 DOWN 12 -25469955 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25469988 homeCount = 36 -25469989 waitCount = 16 -25469990 ripCount = 17 -25469990 locktype1 = 1 -25469991 locktype2 = 1 -25469991 locktype3 = 2 -25469992 goalCount = 9 -25469992 goalTotal = 9 -25469993 otherCount = 22 -~~~ -25469994 CURRENTGOAL IS [2] -~~~ -25470055 UP 12 -25470055 2048 255 -25471638 DOWN 12 -25471638 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25471678 homeCount = 36 -25471679 waitCount = 16 -25471680 ripCount = 17 -25471680 locktype1 = 1 -25471681 locktype2 = 1 -25471681 locktype3 = 2 -25471682 goalCount = 9 -25471682 goalTotal = 9 -25471683 otherCount = 22 -~~~ -25471684 CURRENTGOAL IS [2] -~~~ -25474558 UP 2 -25474558 2 255 -~~~ -~~~ -25474587 outer reward -~~~ -25474588 2 131327 -~~~ -~~~ -25474593 outerreps = 7 -~~~ -~~~ -25474839 DOWN 2 -25474839 0 131327 -~~~ -~~~ -25474864 0 131326 -~~~ -~~~ -25474866 0 131324 -~~~ -~~~ -25474868 0 131320 -~~~ -~~~ -25474869 0 131312 -~~~ -~~~ -25474871 0 131296 -~~~ -~~~ -25474873 0 131264 -~~~ -~~~ -25474875 0 131200 -~~~ -~~~ -25474877 0 131072 -~~~ -~~~ -25474879 0 131584 -25474880 homeCount = 36 -25474880 waitCount = 16 -25474881 ripCount = 17 -25474901 locktype1 = 1 -25474902 locktype2 = 1 -25474902 locktype3 = 2 -25474903 goalCount = 0 -25474903 goalTotal = 10 -25474904 otherCount = 22 -~~~ -25474904 2 131584 -25475037 2 512 -25475141 DOWN 2 -25475141 0 512 -25475149 2 512 -25475254 DOWN 2 -25475254 0 512 -25475276 2 512 -25475378 DOWN 2 -25475378 0 512 -25475399 2 512 -25475501 DOWN 2 -25475501 0 512 -25475524 2 512 -25475623 DOWN 2 -25475623 0 512 -25475660 2 512 -25480617 DOWN 2 -25480617 0 512 -25480646 2 512 -25480707 DOWN 2 -25480707 0 512 -25484920 UP 10 -25484920 waslock = 0 -25484920 512 512 -~~~ -~~~ -~~~ -25484949 DOWN 10 -25484949 0 512 -~~~ -~~~ -25484951 0 16777728 -~~~ -~~~ -~~~ -25484971 0 16779776 -~~~ -~~~ -25484973 0 16779264 -25484974 homeCount = 37 -25484974 waitCount = 16 -25484975 ripCount = 17 -25484975 locktype1 = 1 -25484976 locktype2 = 1 -25484976 locktype3 = 2 -25484977 goalCount = 0 -25484977 goalTotal = 10 -25484978 otherCount = 22 -~~~ -25484999 UP 10 -25484999 waslock = 0 -25484999 512 16779264 -~~~ -25485101 DOWN 10 -25485101 0 16779264 -25485102 0 2048 -~~~ -~~~ -~~~ -25485124 UP 10 -25485125 waslock = 0 -25485124 512 2048 -~~~ -25485126 homeCount = 37 -25485127 waitCount = 16 -25485127 ripCount = 17 -25485128 locktype1 = 1 -25485128 locktype2 = 1 -25485129 locktype3 = 2 -25485129 goalCount = 0 -25485130 goalTotal = 10 -25485151 otherCount = 22 -~~~ -~~~ -25490231 DOWN 10 -25490231 0 2048 -~~~ -~~~ -~~~ -~~~ -25490257 homeCount = 37 -25490257 waitCount = 16 -25490258 ripCount = 17 -25490258 locktype1 = 1 -25490259 locktype2 = 1 -25490259 locktype3 = 2 -25490260 goalCount = 0 -25490260 goalTotal = 10 -25490261 otherCount = 22 -~~~ -25492166 UP 12 -25492166 2048 2048 -25496488 DOWN 12 -25496488 0 2048 -25496519 UP 12 -25496519 2048 2048 -25498167 CLICK1 -25498167 CLICK2 -~~~ -~~~ -~~~ -25498195 2048 67110912 -~~~ -25498345 2048 2048 -25504762 DOWN 12 -25504762 0 2048 -~~~ -~~~ -25504784 0 0 -~~~ -~~~ -25504786 0 1 -~~~ -~~~ -25504788 0 3 -~~~ -~~~ -25504790 0 7 -~~~ -~~~ -25504791 0 15 -~~~ -~~~ -25504793 0 31 -~~~ -~~~ -25504795 0 63 -~~~ -~~~ -25504797 0 127 -~~~ -~~~ -25504799 0 255 -25504800 homeCount = 37 -25504800 waitCount = 17 -25504801 ripCount = 17 -25504801 locktype1 = 1 -25504802 locktype2 = 1 -25504823 locktype3 = 2 -25504823 goalCount = 0 -25504824 goalTotal = 10 -25504824 otherCount = 22 -~~~ -25504825 CURRENTGOAL IS [3] -~~~ -25504829 UP 12 -25504829 2048 255 -25504904 DOWN 12 -25504904 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25504941 homeCount = 37 -25504941 waitCount = 17 -25504942 ripCount = 17 -25504942 locktype1 = 1 -25504943 locktype2 = 1 -25504943 locktype3 = 2 -25504944 goalCount = 0 -25504944 goalTotal = 10 -25504945 otherCount = 22 -~~~ -25504946 CURRENTGOAL IS [3] -~~~ -25504979 UP 12 -25504979 2048 255 -25505014 DOWN 12 -25505014 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25505051 homeCount = 37 -25505051 waitCount = 17 -25505052 ripCount = 17 -25505052 locktype1 = 1 -25505053 locktype2 = 1 -25505053 locktype3 = 2 -25505054 goalCount = 0 -25505054 goalTotal = 10 -25505055 otherCount = 22 -~~~ -25505056 CURRENTGOAL IS [3] -~~~ -25505126 UP 12 -25505126 2048 255 -25505144 DOWN 12 -25505144 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25505183 homeCount = 37 -25505184 waitCount = 17 -25505184 ripCount = 17 -25505185 locktype1 = 1 -25505186 locktype2 = 1 -25505186 locktype3 = 2 -25505187 goalCount = 0 -25505187 goalTotal = 10 -25505188 otherCount = 22 -~~~ -25505189 CURRENTGOAL IS [3] -~~~ -25505306 UP 12 -25505306 2048 255 -25506646 DOWN 12 -25506646 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25506682 homeCount = 37 -25506683 waitCount = 17 -25506683 ripCount = 17 -25506684 locktype1 = 1 -25506684 locktype2 = 1 -25506685 locktype3 = 2 -25506685 goalCount = 0 -25506686 goalTotal = 10 -25506686 otherCount = 22 -~~~ -25506687 CURRENTGOAL IS [3] -~~~ -25509308 UP 2 -25509308 2 255 -25509319 DOWN 2 -25509319 0 255 -~~~ -~~~ -~~~ -~~~ -25509347 0 254 -~~~ -~~~ -25509349 0 252 -~~~ -~~~ -25509351 0 248 -~~~ -~~~ -25509353 0 240 -~~~ -~~~ -25509354 0 224 -~~~ -~~~ -25509356 0 192 -~~~ -~~~ -25509358 0 128 -~~~ -~~~ -25509360 0 0 -~~~ -~~~ -25509362 0 512 -25509363 homeCount = 37 -25509363 waitCount = 17 -25509364 ripCount = 17 -25509364 locktype1 = 1 -25509386 locktype2 = 1 -25509386 locktype3 = 2 -25509387 goalCount = 0 -25509387 goalTotal = 10 -25509388 otherCount = 23 -~~~ -25509398 2 512 -25509552 DOWN 2 -25509552 0 512 -25509607 2 512 -25510174 DOWN 2 -25510174 0 512 -25513834 UP 10 -25513835 waslock = 0 -25513834 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25513865 512 16777728 -~~~ -25514015 512 512 -25517951 DOWN 10 -25517951 0 512 -~~~ -~~~ -25517967 0 1536 -~~~ -~~~ -25517969 0 1024 -25517970 homeCount = 38 -25517971 waitCount = 17 -25517971 ripCount = 17 -25517972 locktype1 = 1 -25517972 locktype2 = 1 -25517973 locktype3 = 2 -25517973 goalCount = 0 -25517974 goalTotal = 10 -25517974 otherCount = 23 -~~~ -25520064 UP 11 -25520064 1024 1024 -25521046 DOWN 11 -25521046 0 1024 -25521134 UP 11 -25521134 1024 1024 -25521986 DOWN 11 -25521986 0 1024 -25522013 UP 11 -25522013 1024 1024 -25527064 BEEP1 -25527064 BEEP2 -~~~ -~~~ -~~~ -25527092 1024 33555456 -~~~ -25527242 1024 1024 -25534001 DOWN 11 -25534001 0 1024 -~~~ -~~~ -25534020 0 0 -~~~ -~~~ -25534021 0 1 -~~~ -~~~ -25534023 0 3 -~~~ -~~~ -25534025 0 7 -~~~ -~~~ -25534027 0 15 -~~~ -~~~ -25534029 0 31 -~~~ -~~~ -25534030 0 63 -~~~ -~~~ -25534032 0 127 -~~~ -~~~ -25534034 0 255 -25534035 homeCount = 38 -25534036 waitCount = 17 -25534036 ripCount = 18 -25534037 locktype1 = 1 -25534037 locktype2 = 1 -25534058 locktype3 = 2 -25534059 goalCount = 0 -25534059 goalTotal = 10 -25534060 otherCount = 23 -~~~ -25534061 CURRENTGOAL IS [3] -~~~ -25536586 UP 6 -25536586 32 255 -~~~ -~~~ -25537282 DOWN 6 -25537282 0 255 -~~~ -~~~ -25537299 0 254 -~~~ -~~~ -25537301 0 252 -~~~ -~~~ -25537303 0 248 -~~~ -~~~ -25537305 0 240 -~~~ -~~~ -25537307 0 224 -~~~ -~~~ -25537308 0 192 -~~~ -~~~ -25537310 0 128 -~~~ -~~~ -25537312 0 0 -~~~ -~~~ -25537314 0 512 -25537315 homeCount = 38 -25537316 waitCount = 17 -25537316 ripCount = 18 -25537317 locktype1 = 1 -25537338 locktype2 = 1 -25537338 locktype3 = 2 -25537339 goalCount = 0 -25537339 goalTotal = 10 -25537340 otherCount = 24 -~~~ -25542032 UP 10 -25542033 waslock = 0 -25542032 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25542057 512 16777728 -~~~ -25542207 512 512 -25542256 DOWN 10 -25542256 0 512 -25542264 UP 10 -25542265 waslock = 0 -25542264 512 512 -~~~ -~~~ -25542284 512 1536 -~~~ -~~~ -25542286 512 1024 -25542287 homeCount = 39 -25542287 waitCount = 17 -25542288 ripCount = 18 -25542288 locktype1 = 1 -25542289 locktype2 = 1 -25542289 locktype3 = 2 -25542290 goalCount = 0 -25542290 goalTotal = 10 -25542291 otherCount = 24 -~~~ -~~~ -25545602 DOWN 10 -25545602 0 1024 -~~~ -~~~ -~~~ -~~~ -25545626 homeCount = 39 -25545626 waitCount = 17 -25545627 ripCount = 18 -25545627 locktype1 = 1 -25545628 locktype2 = 1 -25545628 locktype3 = 2 -25545629 goalCount = 0 -25545629 goalTotal = 10 -25545630 otherCount = 24 -~~~ -25545632 UP 10 -25545632 waslock = 0 -25545632 512 1024 -~~~ -25545696 DOWN 10 -25545696 0 1024 -~~~ -~~~ -~~~ -~~~ -25545720 homeCount = 39 -25545721 waitCount = 17 -25545721 ripCount = 18 -25545722 locktype1 = 1 -25545722 locktype2 = 1 -25545723 locktype3 = 2 -25545723 goalCount = 0 -25545724 goalTotal = 10 -25545724 otherCount = 24 -~~~ -25549079 UP 11 -25549079 1024 1024 -25549392 DOWN 11 -25549392 0 1024 -25549592 LOCKOUT 3 -~~~ -25549617 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -25549620 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25549678 UP 11 -25549678 1024 0 -25549870 DOWN 11 -25549870 0 0 -25557733 UP 1 -25557733 1 0 -25558031 DOWN 1 -25558031 0 0 -25560934 1 0 -25560938 DOWN 1 -25560938 0 0 -25569322 512 0 -25569441 0 0 -25571157 512 0 -25571190 0 0 -25574617 LOCKEND -~~~ -~~~ -~~~ -25574638 0 512 -25577445 UP 3 -25577445 4 512 -25577923 DOWN 3 -25577923 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25577963 homeCount = 39 -25577963 waitCount = 17 -25577964 ripCount = 18 -25577964 locktype1 = 1 -25577965 locktype2 = 1 -25577965 locktype3 = 3 -25577966 goalCount = 0 -25577966 goalTotal = 10 -25577967 otherCount = 24 -~~~ -25578067 4 512 -25578092 DOWN 3 -25578092 0 512 -25585413 UP 10 -25585413 waslock = 0 -25585413 512 512 -~~~ -~~~ -25585438 DOWN 10 -25585438 0 512 -~~~ -~~~ -~~~ -25585443 0 16777728 -~~~ -~~~ -~~~ -25585465 0 16778752 -~~~ -~~~ -25585467 0 16778240 -25585468 homeCount = 40 -25585468 waitCount = 17 -25585469 ripCount = 18 -25585469 locktype1 = 1 -25585470 locktype2 = 1 -25585470 locktype3 = 3 -25585471 goalCount = 0 -25585471 goalTotal = 10 -25585472 otherCount = 24 -~~~ -25585592 0 1024 -25585685 UP 10 -25585686 waslock = 0 -25585685 512 1024 -~~~ -25590182 DOWN 10 -25590182 0 1024 -~~~ -~~~ -~~~ -~~~ -25590209 homeCount = 40 -25590210 waitCount = 17 -25590210 ripCount = 18 -25590211 locktype1 = 1 -25590211 locktype2 = 1 -25590212 locktype3 = 3 -25590212 goalCount = 0 -25590213 goalTotal = 10 -25590213 otherCount = 24 -~~~ -25609245 UP 8 -25609245 128 1024 -25609250 DOWN 8 -25609250 0 1024 -~~~ -25609266 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -25609270 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25615729 128 0 -25617512 DOWN 8 -25617512 0 0 -25618844 128 0 -25619296 DOWN 8 -25619296 0 0 -25625955 512 0 -25626331 0 0 -25626436 512 0 -25626571 0 0 -25626586 512 0 -25626882 0 0 -25627022 512 0 -25627063 0 0 -25627287 512 0 -25627295 0 0 -25627379 512 0 -25627437 0 0 -25630940 512 0 -25631248 0 0 -25634266 LOCKEND -~~~ -~~~ -~~~ -25634286 0 512 -25659806 UP 10 -25659806 waslock = 0 -25659806 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25659833 512 16777728 -~~~ -25659979 DOWN 10 -25659979 0 16777728 -25659983 0 512 -~~~ -~~~ -25660007 0 2560 -~~~ -~~~ -25660009 0 2048 -25660010 homeCount = 41 -25660010 waitCount = 17 -25660011 ripCount = 18 -25660011 locktype1 = 1 -25660012 locktype2 = 2 -25660012 locktype3 = 3 -25660013 goalCount = 0 -25660013 goalTotal = 10 -25660014 otherCount = 24 -~~~ -25660095 UP 10 -25660096 waslock = 0 -25660095 512 2048 -~~~ -25660160 DOWN 10 -25660160 0 2048 -~~~ -~~~ -~~~ -~~~ -25660189 homeCount = 41 -25660190 waitCount = 17 -25660190 ripCount = 18 -25660191 locktype1 = 1 -25660191 locktype2 = 2 -25660192 locktype3 = 3 -25660192 goalCount = 0 -25660193 goalTotal = 10 -25660193 otherCount = 24 -~~~ -25660261 UP 10 -25660261 waslock = 0 -25660261 512 2048 -~~~ -25660934 DOWN 10 -25660934 0 2048 -25660947 UP 10 -25660947 waslock = 0 -25660947 512 2048 -~~~ -~~~ -~~~ -~~~ -25660969 homeCount = 41 -25660970 waitCount = 17 -25660970 ripCount = 18 -25660971 locktype1 = 1 -25660971 locktype2 = 2 -25660972 locktype3 = 3 -25660972 goalCount = 0 -25660973 goalTotal = 10 -25660973 otherCount = 24 -~~~ -~~~ -25666236 DOWN 10 -25666236 0 2048 -~~~ -~~~ -~~~ -~~~ -25666259 homeCount = 41 -25666259 waitCount = 17 -25666260 ripCount = 18 -25666260 locktype1 = 1 -25666261 locktype2 = 2 -25666261 locktype3 = 3 -25666262 goalCount = 0 -25666262 goalTotal = 10 -25666263 otherCount = 24 -~~~ -25666276 UP 10 -25666277 waslock = 0 -25666276 512 2048 -~~~ -25666339 DOWN 10 -25666339 0 2048 -~~~ -~~~ -~~~ -~~~ -25666369 homeCount = 41 -25666370 waitCount = 17 -25666370 ripCount = 18 -25666371 locktype1 = 1 -25666371 locktype2 = 2 -25666372 locktype3 = 3 -25666372 goalCount = 0 -25666373 goalTotal = 10 -25666373 otherCount = 24 -~~~ -25685376 UP 12 -25685376 2048 2048 -25686651 DOWN 12 -25686651 0 2048 -25686705 UP 12 -25686705 2048 2048 -25686732 DOWN 12 -25686732 0 2048 -25686786 UP 12 -25686786 2048 2048 -25688376 CLICK1 -25688376 CLICK2 -~~~ -~~~ -~~~ -25688399 2048 67110912 -~~~ -25688549 2048 2048 -25694671 DOWN 12 -25694671 0 2048 -~~~ -~~~ -25694697 0 0 -~~~ -~~~ -25694699 0 1 -~~~ -~~~ -25694701 0 3 -~~~ -~~~ -25694703 0 7 -~~~ -~~~ -25694705 0 15 -~~~ -~~~ -25694706 0 31 -~~~ -~~~ -25694708 0 63 -~~~ -~~~ -25694710 0 127 -~~~ -~~~ -25694712 0 255 -25694713 homeCount = 41 -25694713 waitCount = 18 -25694714 ripCount = 18 -25694714 locktype1 = 1 -25694715 locktype2 = 2 -25694736 locktype3 = 3 -25694736 goalCount = 0 -25694737 goalTotal = 10 -25694737 otherCount = 24 -~~~ -25694738 CURRENTGOAL IS [3] -~~~ -25698435 UP 2 -25698435 2 255 -~~~ -~~~ -25698854 DOWN 2 -25698854 0 255 -~~~ -~~~ -25698879 0 254 -~~~ -~~~ -25698881 0 252 -~~~ -~~~ -25698882 0 248 -~~~ -~~~ -25698884 0 240 -~~~ -~~~ -25698886 0 224 -~~~ -~~~ -25698888 0 192 -~~~ -~~~ -25698890 0 128 -~~~ -~~~ -25698891 0 0 -~~~ -~~~ -25698893 0 512 -25698894 homeCount = 41 -25698895 waitCount = 18 -25698895 ripCount = 18 -25698896 locktype1 = 1 -25698917 locktype2 = 2 -25698918 locktype3 = 3 -25698918 goalCount = 0 -25698919 goalTotal = 10 -25698919 otherCount = 25 -~~~ -25698948 2 512 -25699154 DOWN 2 -25699154 0 512 -25703394 UP 10 -25703394 waslock = 0 -25703394 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25703424 512 16777728 -~~~ -25703574 512 512 -25708617 DOWN 10 -25708617 0 512 -~~~ -~~~ -25708639 0 2560 -~~~ -~~~ -25708641 0 2048 -25708642 homeCount = 42 -25708642 waitCount = 18 -25708643 ripCount = 18 -25708643 locktype1 = 1 -25708644 locktype2 = 2 -25708644 locktype3 = 3 -25708645 goalCount = 0 -25708645 goalTotal = 10 -25708646 otherCount = 25 -~~~ -25708690 UP 10 -25708690 waslock = 0 -25708690 512 2048 -25708696 DOWN 10 -25708696 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -25708728 homeCount = 42 -25708728 waitCount = 18 -25708729 ripCount = 18 -25708729 locktype1 = 1 -25708730 locktype2 = 2 -25708730 locktype3 = 3 -25708731 goalCount = 0 -25708731 goalTotal = 10 -25708732 otherCount = 25 -~~~ -25711186 UP 12 -25711186 2048 2048 -25712394 DOWN 12 -25712394 0 2048 -25712398 UP 12 -25712398 2048 2048 -25713214 DOWN 12 -25713214 0 2048 -25713244 UP 12 -25713244 2048 2048 -25715186 CLICK1 -25715186 CLICK2 -~~~ -~~~ -~~~ -25715209 2048 67110912 -~~~ -25715359 2048 2048 -25721807 DOWN 12 -25721807 0 2048 -~~~ -~~~ -25721829 0 0 -~~~ -~~~ -25721830 0 1 -~~~ -~~~ -25721832 0 3 -~~~ -~~~ -25721834 0 7 -~~~ -~~~ -25721836 0 15 -~~~ -~~~ -25721838 0 31 -~~~ -~~~ -25721840 0 63 -~~~ -~~~ -25721841 0 127 -~~~ -~~~ -25721843 0 255 -25721844 homeCount = 42 -25721845 waitCount = 19 -25721845 ripCount = 18 -25721846 locktype1 = 1 -25721846 locktype2 = 2 -25721867 locktype3 = 3 -25721868 goalCount = 0 -25721868 goalTotal = 10 -25721869 otherCount = 25 -~~~ -25721870 CURRENTGOAL IS [3] -~~~ -25726763 UP 3 -25726762 4 255 -~~~ -~~~ -25726783 outer reward -~~~ -25726783 4 262399 -~~~ -~~~ -25727233 4 255 -25734068 DOWN 3 -25734068 0 255 -~~~ -~~~ -25734091 0 254 -~~~ -~~~ -25734093 0 252 -~~~ -~~~ -25734094 0 248 -~~~ -~~~ -25734096 0 240 -~~~ -~~~ -25734098 0 224 -~~~ -~~~ -25734100 0 192 -~~~ -~~~ -25734102 0 128 -~~~ -~~~ -25734104 0 0 -~~~ -~~~ -25734105 0 512 -25734106 homeCount = 42 -25734107 waitCount = 19 -25734107 ripCount = 18 -25734108 locktype1 = 1 -25734108 locktype2 = 2 -25734129 locktype3 = 3 -25734130 goalCount = 1 -25734130 goalTotal = 11 -25734131 otherCount = 25 -~~~ -25738531 UP 10 -25738531 waslock = 0 -25738531 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25738557 512 16777728 -~~~ -25738707 512 512 -25738767 DOWN 10 -25738767 0 512 -25738784 UP 10 -25738784 waslock = 0 -25738784 512 512 -~~~ -~~~ -25738803 512 1536 -~~~ -~~~ -25738805 512 1024 -25738806 homeCount = 43 -25738806 waitCount = 19 -25738807 ripCount = 18 -25738807 locktype1 = 1 -25738808 locktype2 = 2 -25738808 locktype3 = 3 -25738809 goalCount = 1 -25738809 goalTotal = 11 -25738810 otherCount = 25 -~~~ -~~~ -25742304 DOWN 10 -25742304 0 1024 -~~~ -~~~ -~~~ -~~~ -25742326 homeCount = 43 -25742327 waitCount = 19 -25742327 ripCount = 18 -25742328 locktype1 = 1 -25742328 locktype2 = 2 -25742329 locktype3 = 3 -25742329 goalCount = 1 -25742330 goalTotal = 11 -25742330 otherCount = 25 -~~~ -25744264 UP 11 -25744264 1024 1024 -25746728 DOWN 11 -25746728 0 1024 -25746745 UP 11 -25746745 1024 1024 -25748072 DOWN 11 -25748072 0 1024 -25748099 UP 11 -25748099 1024 1024 -25748764 BEEP1 -25748764 BEEP2 -~~~ -~~~ -~~~ -25748784 1024 33555456 -~~~ -25748934 1024 1024 -25755625 DOWN 11 -25755625 0 1024 -~~~ -~~~ -25755651 0 0 -~~~ -~~~ -25755653 0 1 -~~~ -25755654 UP 11 -25755654 1024 1 -~~~ -~~~ -25755656 1024 3 -~~~ -~~~ -25755657 1024 7 -~~~ -25755658 1024 15 -~~~ -~~~ -25755660 1024 31 -~~~ -~~~ -25755662 1024 63 -~~~ -~~~ -25755663 1024 127 -~~~ -~~~ -25755665 1024 255 -25755666 homeCount = 43 -25755688 waitCount = 19 -25755688 ripCount = 19 -25755689 locktype1 = 1 -25755689 locktype2 = 2 -25755690 locktype3 = 3 -25755690 goalCount = 1 -25755691 goalTotal = 11 -25755691 otherCount = 25 -~~~ -25755692 CURRENTGOAL IS [3] -~~~ -25755708 DOWN 11 -25755708 0 255 -25755722 UP 11 -25755722 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25755751 homeCount = 43 -25755751 waitCount = 19 -25755752 ripCount = 19 -25755753 locktype1 = 1 -25755753 locktype2 = 2 -25755754 locktype3 = 3 -25755754 goalCount = 1 -25755755 goalTotal = 11 -25755755 otherCount = 25 -~~~ -25755756 CURRENTGOAL IS [3] -~~~ -25758703 DOWN 11 -25758703 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25758737 homeCount = 43 -25758737 waitCount = 19 -25758738 ripCount = 19 -25758738 locktype1 = 1 -25758739 locktype2 = 2 -25758739 locktype3 = 3 -25758740 goalCount = 1 -25758740 goalTotal = 11 -25758741 otherCount = 25 -~~~ -25758742 CURRENTGOAL IS [3] -~~~ -25762427 UP 2 -25762427 2 255 -~~~ -~~~ -25763276 DOWN 2 -25763276 0 255 -~~~ -~~~ -25763302 0 254 -~~~ -~~~ -25763304 0 252 -~~~ -~~~ -25763306 0 248 -~~~ -~~~ -25763307 0 240 -~~~ -~~~ -25763309 0 224 -~~~ -~~~ -25763311 0 192 -~~~ -~~~ -25763313 0 128 -~~~ -~~~ -25763315 0 0 -~~~ -~~~ -25763317 0 512 -25763318 homeCount = 43 -25763318 waitCount = 19 -25763319 ripCount = 19 -25763319 locktype1 = 1 -25763320 locktype2 = 2 -25763341 locktype3 = 3 -25763341 goalCount = 1 -25763342 goalTotal = 11 -25763342 otherCount = 26 -~~~ -25763466 2 512 -25763664 DOWN 2 -25763664 0 512 -25768061 UP 10 -25768061 waslock = 0 -25768061 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25768092 512 16777728 -~~~ -25768220 DOWN 10 -25768220 0 16777728 -~~~ -25768242 0 512 -~~~ -25768243 0 1536 -~~~ -~~~ -25768244 0 1024 -25768245 homeCount = 44 -25768246 waitCount = 19 -25768246 ripCount = 19 -25768247 locktype1 = 1 -25768247 locktype2 = 2 -25768248 locktype3 = 3 -25768248 goalCount = 1 -25768249 goalTotal = 11 -25768270 otherCount = 26 -~~~ -25768271 UP 10 -25768271 waslock = 0 -25768271 512 1024 -~~~ -25771738 DOWN 10 -25771738 0 1024 -~~~ -~~~ -~~~ -~~~ -25771767 homeCount = 44 -25771768 waitCount = 19 -25771768 ripCount = 19 -25771769 locktype1 = 1 -25771769 locktype2 = 2 -25771770 locktype3 = 3 -25771770 goalCount = 1 -25771771 goalTotal = 11 -25771771 otherCount = 26 -~~~ -25773584 UP 11 -25773584 1024 1024 -25778369 DOWN 11 -25778369 0 1024 -25778378 UP 11 -25778378 1024 1024 -25781584 BEEP1 -25781584 BEEP2 -~~~ -~~~ -~~~ -25781606 1024 33555456 -~~~ -25781756 1024 1024 -25787347 DOWN 11 -25787347 0 1024 -~~~ -~~~ -25787363 0 0 -~~~ -~~~ -25787365 0 1 -~~~ -~~~ -25787367 0 3 -~~~ -~~~ -25787369 0 7 -~~~ -~~~ -25787370 0 15 -~~~ -~~~ -25787372 0 31 -~~~ -~~~ -25787374 0 63 -~~~ -~~~ -25787376 0 127 -~~~ -~~~ -25787378 0 255 -25787379 homeCount = 44 -25787379 waitCount = 19 -25787380 ripCount = 20 -25787380 locktype1 = 1 -25787381 locktype2 = 2 -25787402 locktype3 = 3 -25787402 goalCount = 1 -25787403 goalTotal = 11 -25787403 otherCount = 26 -~~~ -25787404 CURRENTGOAL IS [3] -~~~ -25790514 UP 6 -25790514 32 255 -~~~ -~~~ -25791449 DOWN 6 -25791449 0 255 -~~~ -~~~ -25791474 0 254 -~~~ -~~~ -25791476 0 252 -~~~ -~~~ -25791477 0 248 -~~~ -~~~ -25791479 0 240 -~~~ -~~~ -25791481 0 224 -~~~ -~~~ -25791483 0 192 -~~~ -~~~ -25791485 0 128 -~~~ -~~~ -25791486 0 0 -~~~ -~~~ -25791488 0 512 -25791489 homeCount = 44 -25791490 waitCount = 19 -25791490 ripCount = 20 -25791491 locktype1 = 1 -25791491 locktype2 = 2 -25791512 locktype3 = 3 -25791513 goalCount = 1 -25791513 goalTotal = 11 -25791514 otherCount = 27 -~~~ -25795603 UP 10 -25795603 waslock = 0 -25795603 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25795630 512 16777728 -~~~ -25795780 512 512 -25795823 DOWN 10 -25795823 0 512 -~~~ -~~~ -25795843 0 2560 -~~~ -~~~ -25795845 0 2048 -25795846 homeCount = 45 -25795846 waitCount = 19 -25795847 ripCount = 20 -25795847 locktype1 = 1 -25795848 locktype2 = 2 -25795848 locktype3 = 3 -25795849 goalCount = 1 -25795849 goalTotal = 11 -25795850 otherCount = 27 -~~~ -25796003 UP 10 -25796003 waslock = 0 -25796003 512 2048 -~~~ -25801292 DOWN 10 -25801292 0 2048 -~~~ -~~~ -~~~ -~~~ -25801318 homeCount = 45 -25801318 waitCount = 19 -25801319 ripCount = 20 -25801319 locktype1 = 1 -25801320 locktype2 = 2 -25801320 locktype3 = 3 -25801321 goalCount = 1 -25801321 goalTotal = 11 -25801322 otherCount = 27 -~~~ -25803540 UP 12 -25803540 2048 2048 -25805479 DOWN 12 -25805479 0 2048 -25805510 UP 12 -25805510 2048 2048 -25805675 DOWN 12 -25805675 0 2048 -25805730 UP 12 -25805730 2048 2048 -25806962 DOWN 12 -25806962 0 2048 -25806974 UP 12 -25806974 2048 2048 -25807043 DOWN 12 -25807043 0 2048 -25807214 UP 12 -25807214 2048 2048 -25807283 DOWN 12 -25807283 0 2048 -25807346 UP 12 -25807346 2048 2048 -25809540 CLICK1 -25809540 CLICK2 -~~~ -~~~ -~~~ -25809566 2048 67110912 -~~~ -25809716 2048 2048 -25815767 DOWN 12 -25815767 0 2048 -~~~ -~~~ -25815784 0 0 -~~~ -~~~ -25815786 0 1 -~~~ -~~~ -25815788 0 3 -~~~ -~~~ -25815789 0 7 -~~~ -25815791 UP 12 -25815791 2048 7 -~~~ -~~~ -25815793 2048 15 -~~~ -~~~ -25815794 2048 31 -~~~ -25815795 2048 63 -~~~ -~~~ -25815797 2048 127 -~~~ -~~~ -25815798 2048 255 -25815800 homeCount = 45 -25815821 waitCount = 20 -25815821 ripCount = 20 -25815822 locktype1 = 1 -25815822 locktype2 = 2 -25815823 locktype3 = 3 -25815823 goalCount = 1 -25815824 goalTotal = 11 -25815824 otherCount = 27 -~~~ -25815825 CURRENTGOAL IS [3] -~~~ -25815864 DOWN 12 -25815864 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25815903 homeCount = 45 -25815903 waitCount = 20 -25815904 ripCount = 20 -25815904 locktype1 = 1 -25815905 locktype2 = 2 -25815905 locktype3 = 3 -25815906 goalCount = 1 -25815906 goalTotal = 11 -25815907 otherCount = 27 -~~~ -25815908 CURRENTGOAL IS [3] -~~~ -25819190 UP 2 -25819190 2 255 -~~~ -~~~ -25820057 DOWN 2 -25820057 0 255 -~~~ -~~~ -25820079 0 254 -~~~ -~~~ -25820081 0 252 -~~~ -~~~ -25820083 0 248 -~~~ -~~~ -25820084 0 240 -~~~ -~~~ -25820086 0 224 -~~~ -~~~ -25820088 0 192 -~~~ -~~~ -25820090 0 128 -~~~ -~~~ -25820092 0 0 -~~~ -~~~ -25820094 0 512 -25820095 homeCount = 45 -25820095 waitCount = 20 -25820096 ripCount = 20 -25820096 locktype1 = 1 -25820097 locktype2 = 2 -25820118 locktype3 = 3 -25820118 goalCount = 1 -25820119 goalTotal = 11 -25820119 otherCount = 28 -~~~ -25820242 2 512 -25820365 DOWN 2 -25820365 0 512 -25823770 UP 10 -25823770 waslock = 0 -25823769 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25823798 512 16777728 -~~~ -25823948 512 512 -25823994 DOWN 10 -25823994 0 512 -~~~ -~~~ -25824011 0 2560 -~~~ -~~~ -25824013 0 2048 -25824014 homeCount = 46 -25824015 waitCount = 20 -25824015 ripCount = 20 -25824016 locktype1 = 1 -25824016 locktype2 = 2 -25824017 locktype3 = 3 -25824017 goalCount = 1 -25824018 goalTotal = 11 -25824018 otherCount = 28 -~~~ -25824040 UP 10 -25824040 waslock = 0 -25824040 512 2048 -~~~ -25829907 DOWN 10 -25829907 0 2048 -~~~ -~~~ -~~~ -~~~ -25829936 homeCount = 46 -25829936 waitCount = 20 -25829937 ripCount = 20 -25829937 locktype1 = 1 -25829938 locktype2 = 2 -25829938 locktype3 = 3 -25829939 goalCount = 1 -25829939 goalTotal = 11 -25829940 otherCount = 28 -~~~ -25831818 UP 12 -25831818 2048 2048 -25834819 CLICK1 -25834819 CLICK2 -~~~ -~~~ -~~~ -25834844 2048 67110912 -~~~ -25834994 2048 2048 -25840649 DOWN 12 -25840649 0 2048 -~~~ -~~~ -25840671 0 0 -~~~ -~~~ -25840673 0 1 -~~~ -~~~ -25840675 0 3 -~~~ -~~~ -25840677 0 7 -~~~ -~~~ -25840678 0 15 -~~~ -~~~ -25840680 0 31 -~~~ -~~~ -25840682 0 63 -~~~ -~~~ -25840684 0 127 -~~~ -~~~ -25840686 0 255 -25840687 homeCount = 46 -25840687 waitCount = 21 -25840688 ripCount = 20 -25840688 locktype1 = 1 -25840689 locktype2 = 2 -25840709 locktype3 = 3 -25840710 goalCount = 1 -25840710 goalTotal = 11 -25840711 otherCount = 28 -~~~ -25840712 CURRENTGOAL IS [3] -~~~ -25840713 UP 12 -25840712 2048 255 -25840753 DOWN 12 -25840753 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25840790 homeCount = 46 -25840791 waitCount = 21 -25840791 ripCount = 20 -25840792 locktype1 = 1 -25840792 locktype2 = 2 -25840793 locktype3 = 3 -25840793 goalCount = 1 -25840794 goalTotal = 11 -25840794 otherCount = 28 -~~~ -25840795 CURRENTGOAL IS [3] -~~~ -25846229 UP 3 -25846229 4 255 -~~~ -~~~ -25846247 outer reward -~~~ -25846248 4 262399 -~~~ -~~~ -25846289 DOWN 3 -25846289 0 262399 -25846303 4 262399 -~~~ -~~~ -25846306 4 262398 -~~~ -~~~ -25846308 4 262396 -~~~ -~~~ -25846310 4 262392 -~~~ -~~~ -25846311 4 262384 -~~~ -~~~ -25846313 4 262368 -~~~ -~~~ -25846315 4 262336 -~~~ -~~~ -25846317 4 262272 -~~~ -~~~ -25846319 4 262144 -~~~ -~~~ -25846321 4 262656 -25846322 homeCount = 46 -25846322 waitCount = 21 -25846323 ripCount = 20 -25846343 locktype1 = 1 -25846344 locktype2 = 2 -25846344 locktype3 = 3 -25846345 goalCount = 2 -25846345 goalTotal = 12 -25846346 otherCount = 28 -~~~ -25846482 DOWN 3 -25846482 0 262656 -25846517 4 262656 -25846697 4 512 -25846875 DOWN 3 -25846875 0 512 -25846903 4 512 -25846998 DOWN 3 -25846998 0 512 -25847030 4 512 -25847129 DOWN 3 -25847129 0 512 -25847156 4 512 -25847253 DOWN 3 -25847253 0 512 -25847287 4 512 -25847385 DOWN 3 -25847385 0 512 -25847417 4 512 -25847522 DOWN 3 -25847522 0 512 -25847548 4 512 -25847656 DOWN 3 -25847656 0 512 -25847682 4 512 -25847794 DOWN 3 -25847794 0 512 -25847816 4 512 -25847942 DOWN 3 -25847942 0 512 -25847958 4 512 -25848087 DOWN 3 -25848087 0 512 -25848099 4 512 -25853342 DOWN 3 -25853342 0 512 -25853409 4 512 -25853445 DOWN 3 -25853445 0 512 -25911695 UP 10 -25911695 waslock = 0 -25911695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25911722 512 16777728 -~~~ -25911797 DOWN 10 -25911797 0 16777728 -~~~ -~~~ -25911816 0 16779776 -~~~ -~~~ -25911818 0 16779264 -25911819 homeCount = 47 -25911820 waitCount = 21 -25911820 ripCount = 20 -25911821 locktype1 = 1 -25911821 locktype2 = 2 -25911822 locktype3 = 3 -25911822 goalCount = 2 -25911823 goalTotal = 12 -25911823 otherCount = 28 -~~~ -25911872 0 2048 -25911895 UP 10 -25911895 waslock = 0 -25911895 512 2048 -~~~ -25915776 DOWN 10 -25915776 0 2048 -~~~ -~~~ -~~~ -~~~ -25915802 homeCount = 47 -25915802 waitCount = 21 -25915803 ripCount = 20 -25915803 locktype1 = 1 -25915804 locktype2 = 2 -25915804 locktype3 = 3 -25915805 goalCount = 2 -25915805 goalTotal = 12 -25915806 otherCount = 28 -~~~ -25915830 UP 10 -25915830 waslock = 0 -25915830 512 2048 -25915843 DOWN 10 -25915843 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -25915863 homeCount = 47 -25915864 waitCount = 21 -25915864 ripCount = 20 -25915865 locktype1 = 1 -25915865 locktype2 = 2 -25915866 locktype3 = 3 -25915866 goalCount = 2 -25915867 goalTotal = 12 -25915867 otherCount = 28 -~~~ -25917690 UP 12 -25917690 2048 2048 -25918023 DOWN 12 -25918023 0 2048 -25918224 LOCKOUT 3 -~~~ -25918241 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25918247 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25929828 UP 3 -25929828 4 0 -25930022 DOWN 3 -25930022 0 0 -25930052 4 0 -25930295 DOWN 3 -25930295 0 0 -25930361 4 0 -25930673 DOWN 3 -25930673 0 0 -25930706 4 0 -25930744 DOWN 3 -25930744 0 0 -25942332 UP 5 -25942332 16 0 -25942648 DOWN 5 -25942648 0 0 -25942755 16 0 -25943167 DOWN 5 -25943166 0 0 -25943232 16 0 -25943241 LOCKEND -25943251 DOWN 5 -25943251 0 0 -~~~ -~~~ -~~~ -25943255 0 512 -26002769 UP 10 -26002770 waslock = 0 -26002769 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26002799 512 16777728 -~~~ -26002899 DOWN 10 -26002899 0 16777728 -26002914 UP 10 -26002914 waslock = 0 -26002914 512 16777728 -~~~ -~~~ -26002925 512 16778752 -~~~ -~~~ -26002927 512 16778240 -26002928 homeCount = 48 -26002928 waitCount = 21 -26002929 ripCount = 20 -26002929 locktype1 = 1 -26002930 locktype2 = 2 -26002930 locktype3 = 4 -26002931 goalCount = 2 -26002931 goalTotal = 12 -26002932 otherCount = 28 -~~~ -~~~ -26002954 512 1024 -26003187 DOWN 10 -26003187 0 1024 -~~~ -~~~ -~~~ -~~~ -26003216 homeCount = 48 -26003216 waitCount = 21 -26003217 ripCount = 20 -26003217 locktype1 = 1 -26003218 locktype2 = 2 -26003218 locktype3 = 4 -26003219 goalCount = 2 -26003219 goalTotal = 12 -26003220 otherCount = 28 -~~~ -26003230 UP 10 -26003230 waslock = 0 -26003230 512 1024 -~~~ -26003679 DOWN 10 -26003679 0 1024 -26003691 UP 10 -26003691 waslock = 0 -26003691 512 1024 -~~~ -~~~ -~~~ -~~~ -26003719 homeCount = 48 -26003719 waitCount = 21 -26003720 ripCount = 20 -26003721 locktype1 = 1 -26003721 locktype2 = 2 -26003722 locktype3 = 4 -26003722 goalCount = 2 -26003723 goalTotal = 12 -26003723 otherCount = 28 -~~~ -~~~ -26003834 DOWN 10 -26003834 0 1024 -26003848 UP 10 -26003848 waslock = 0 -26003848 512 1024 -~~~ -~~~ -~~~ -~~~ -26003862 homeCount = 48 -26003863 waitCount = 21 -26003863 ripCount = 20 -26003864 locktype1 = 1 -26003864 locktype2 = 2 -26003865 locktype3 = 4 -26003865 goalCount = 2 -26003866 goalTotal = 12 -26003866 otherCount = 28 -~~~ -~~~ -26003992 DOWN 10 -26003992 0 1024 -26004002 UP 10 -26004003 waslock = 0 -26004002 512 1024 -~~~ -~~~ -~~~ -~~~ -26004018 homeCount = 48 -26004018 waitCount = 21 -26004019 ripCount = 20 -26004020 locktype1 = 1 -26004020 locktype2 = 2 -26004021 locktype3 = 4 -26004021 goalCount = 2 -26004022 goalTotal = 12 -26004022 otherCount = 28 -~~~ -~~~ -26007545 DOWN 10 -26007545 0 1024 -26007568 UP 10 -26007568 waslock = 0 -26007568 512 1024 -~~~ -~~~ -~~~ -~~~ -26007576 homeCount = 48 -26007576 waitCount = 21 -26007577 ripCount = 20 -26007577 locktype1 = 1 -26007578 locktype2 = 2 -26007578 locktype3 = 4 -26007579 goalCount = 2 -26007579 goalTotal = 12 -26007580 otherCount = 28 -~~~ -~~~ -26007655 DOWN 10 -26007655 0 1024 -~~~ -~~~ -~~~ -~~~ -26007677 homeCount = 48 -26007677 waitCount = 21 -26007678 ripCount = 20 -26007679 locktype1 = 1 -26007679 locktype2 = 2 -26007680 locktype3 = 4 -26007680 goalCount = 2 -26007681 goalTotal = 12 -26007681 otherCount = 28 -~~~ -26043997 UP 10 -26043997 waslock = 0 -26043997 512 1024 -~~~ -26044753 DOWN 10 -26044753 0 1024 -~~~ -~~~ -~~~ -~~~ -26044775 homeCount = 48 -26044776 waitCount = 21 -26044776 ripCount = 20 -26044777 locktype1 = 1 -26044777 locktype2 = 2 -26044778 locktype3 = 4 -26044778 goalCount = 2 -26044779 goalTotal = 12 -26044779 otherCount = 28 -~~~ -26046836 UP 11 -26046836 1024 1024 -26047796 DOWN 11 -26047796 0 1024 -26047996 LOCKOUT 3 -~~~ -26048015 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26048019 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26048033 UP 11 -26048033 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -26048065 DOWN 11 -26048065 0 0 -26048110 UP 11 -26048110 1024 0 -26048521 DOWN 11 -26048521 0 0 -26048580 UP 11 -26048580 1024 0 -26050905 DOWN 11 -26050905 0 0 -26050915 UP 11 -26050915 1024 0 -26054064 DOWN 11 -26054064 0 0 -26054111 UP 11 -26054111 1024 0 -26055170 DOWN 11 -26055170 0 0 -26055174 UP 11 -26055174 1024 0 -26060757 DOWN 11 -26060757 0 0 -26065042 UP 8 -26065042 128 0 -26065099 DOWN 8 -26065099 0 0 -26065152 128 0 -26065553 DOWN 8 -26065553 0 0 -26073015 LOCKEND -~~~ -~~~ -~~~ -26073040 0 512 -26074095 UP 10 -26074095 waslock = 0 -26074095 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26074124 512 16777728 -~~~ -26074274 512 512 -26074286 DOWN 10 -26074286 0 512 -~~~ -~~~ -26074307 0 1536 -~~~ -~~~ -26074309 0 1024 -26074310 homeCount = 49 -26074311 waitCount = 21 -26074311 ripCount = 20 -26074312 locktype1 = 1 -26074312 locktype2 = 2 -26074313 locktype3 = 5 -26074313 goalCount = 2 -26074314 goalTotal = 12 -26074314 otherCount = 28 -~~~ -26074335 UP 10 -26074336 waslock = 0 -26074335 512 1024 -~~~ -26079241 DOWN 10 -26079241 0 1024 -26079255 UP 10 -26079255 waslock = 0 -26079255 512 1024 -~~~ -~~~ -~~~ -~~~ -26079262 homeCount = 49 -26079262 waitCount = 21 -26079263 ripCount = 20 -26079263 locktype1 = 1 -26079264 locktype2 = 2 -26079264 locktype3 = 5 -26079265 goalCount = 2 -26079265 goalTotal = 12 -26079266 otherCount = 28 -~~~ -~~~ -26079356 DOWN 10 -26079356 0 1024 -~~~ -~~~ -~~~ -~~~ -26079382 homeCount = 49 -26079382 waitCount = 21 -26079383 ripCount = 20 -26079383 locktype1 = 1 -26079384 locktype2 = 2 -26079384 locktype3 = 5 -26079385 goalCount = 2 -26079385 goalTotal = 12 -26079386 otherCount = 28 -~~~ -26079397 UP 10 -26079398 waslock = 0 -26079397 512 1024 -~~~ -26079458 DOWN 10 -26079458 0 1024 -~~~ -~~~ -~~~ -~~~ -26079482 homeCount = 49 -26079482 waitCount = 21 -26079483 ripCount = 20 -26079483 locktype1 = 1 -26079484 locktype2 = 2 -26079484 locktype3 = 5 -26079485 goalCount = 2 -26079485 goalTotal = 12 -26079486 otherCount = 28 -~~~ -26082385 UP 11 -26082384 1024 1024 -26086385 BEEP1 -26086385 BEEP2 -~~~ -~~~ -~~~ -26086410 1024 33555456 -~~~ -26086560 1024 1024 -26093563 DOWN 11 -26093563 0 1024 -~~~ -~~~ -26093584 0 0 -~~~ -~~~ -26093585 0 1 -~~~ -~~~ -26093587 0 3 -~~~ -~~~ -26093589 0 7 -~~~ -~~~ -26093591 0 15 -~~~ -~~~ -26093593 0 31 -~~~ -26093594 UP 11 -26093594 1024 31 -~~~ -~~~ -26093596 1024 63 -~~~ -~~~ -26093598 1024 127 -~~~ -26093599 1024 255 -26093600 homeCount = 49 -26093600 waitCount = 21 -26093622 ripCount = 21 -26093622 locktype1 = 1 -26093623 locktype2 = 2 -26093623 locktype3 = 5 -26093624 goalCount = 2 -26093624 goalTotal = 12 -26093625 otherCount = 28 -~~~ -26093626 CURRENTGOAL IS [3] -~~~ -26093680 DOWN 11 -26093680 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26093719 homeCount = 49 -26093720 waitCount = 21 -26093721 ripCount = 21 -26093721 locktype1 = 1 -26093722 locktype2 = 2 -26093722 locktype3 = 5 -26093723 goalCount = 2 -26093723 goalTotal = 12 -26093724 otherCount = 28 -~~~ -26093725 CURRENTGOAL IS [3] -~~~ -26093746 UP 11 -26093746 1024 255 -26093773 DOWN 11 -26093773 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26093808 homeCount = 49 -26093808 waitCount = 21 -26093809 ripCount = 21 -26093809 locktype1 = 1 -26093810 locktype2 = 2 -26093810 locktype3 = 5 -26093811 goalCount = 2 -26093811 goalTotal = 12 -26093812 otherCount = 28 -~~~ -26093813 CURRENTGOAL IS [3] -~~~ -26096717 UP 6 -26096717 32 255 -~~~ -~~~ -26097351 DOWN 6 -26097351 0 255 -~~~ -~~~ -26097373 0 254 -~~~ -~~~ -26097375 0 252 -~~~ -~~~ -26097377 0 248 -~~~ -~~~ -26097379 0 240 -~~~ -~~~ -26097380 0 224 -~~~ -~~~ -26097382 0 192 -~~~ -~~~ -26097384 0 128 -~~~ -~~~ -26097386 0 0 -~~~ -~~~ -26097388 0 512 -26097389 homeCount = 49 -26097389 waitCount = 21 -26097390 ripCount = 21 -26097390 locktype1 = 1 -26097391 locktype2 = 2 -26097412 locktype3 = 5 -26097412 goalCount = 2 -26097413 goalTotal = 12 -26097413 otherCount = 29 -~~~ -26104495 UP 10 -26104495 waslock = 0 -26104495 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26104524 512 16777728 -~~~ -26104673 512 512 -26104700 DOWN 10 -26104700 0 512 -~~~ -~~~ -26104727 0 2560 -~~~ -~~~ -26104729 0 2048 -26104730 homeCount = 50 -26104730 waitCount = 21 -26104731 ripCount = 21 -26104731 locktype1 = 1 -26104732 locktype2 = 2 -26104732 locktype3 = 5 -26104733 goalCount = 2 -26104733 goalTotal = 12 -26104734 otherCount = 29 -~~~ -26104857 UP 10 -26104858 waslock = 0 -26104857 512 2048 -~~~ -26109785 DOWN 10 -26109785 0 2048 -~~~ -~~~ -~~~ -~~~ -26109809 homeCount = 50 -26109809 waitCount = 21 -26109810 ripCount = 21 -26109810 locktype1 = 1 -26109811 locktype2 = 2 -26109811 locktype3 = 5 -26109812 goalCount = 2 -26109812 goalTotal = 12 -26109813 otherCount = 29 -~~~ -26109830 UP 10 -26109830 waslock = 0 -26109830 512 2048 -~~~ -26109886 DOWN 10 -26109886 0 2048 -~~~ -~~~ -~~~ -~~~ -26109910 homeCount = 50 -26109910 waitCount = 21 -26109911 ripCount = 21 -26109911 locktype1 = 1 -26109912 locktype2 = 2 -26109912 locktype3 = 5 -26109913 goalCount = 2 -26109913 goalTotal = 12 -26109914 otherCount = 29 -~~~ -26112362 UP 12 -26112362 2048 2048 -26113374 DOWN 12 -26113374 0 2048 -26113418 UP 12 -26113418 2048 2048 -26113943 DOWN 12 -26113943 0 2048 -26114024 UP 12 -26114024 2048 2048 -26115863 CLICK1 -26115863 CLICK2 -~~~ -~~~ -~~~ -26115889 2048 67110912 -~~~ -26116039 2048 2048 -26122109 DOWN 12 -26122109 0 2048 -~~~ -~~~ -26122129 0 0 -~~~ -~~~ -26122131 0 1 -~~~ -~~~ -26122132 0 3 -~~~ -~~~ -26122134 0 7 -~~~ -~~~ -26122136 0 15 -~~~ -~~~ -26122138 0 31 -~~~ -~~~ -26122140 0 63 -~~~ -~~~ -26122142 0 127 -~~~ -~~~ -26122143 0 255 -26122145 homeCount = 50 -26122145 waitCount = 22 -26122146 ripCount = 21 -26122146 locktype1 = 1 -26122147 locktype2 = 2 -26122167 locktype3 = 5 -26122168 goalCount = 2 -26122168 goalTotal = 12 -26122169 otherCount = 29 -~~~ -26122170 CURRENTGOAL IS [3] -~~~ -26126211 UP 3 -26126210 4 255 -26126231 DOWN 3 -26126231 0 255 -~~~ -~~~ -26126237 outer reward -~~~ -26126238 0 262399 -~~~ -~~~ -26126244 4 262399 -~~~ -~~~ -26126256 4 262398 -~~~ -~~~ -26126257 4 262396 -~~~ -~~~ -26126259 4 262392 -~~~ -~~~ -26126261 4 262384 -~~~ -~~~ -26126263 4 262368 -~~~ -~~~ -26126265 4 262336 -~~~ -~~~ -26126267 4 262272 -~~~ -~~~ -26126268 4 262144 -~~~ -~~~ -26126270 4 262656 -26126271 homeCount = 50 -26126272 waitCount = 22 -26126272 ripCount = 21 -26126293 locktype1 = 1 -26126294 locktype2 = 2 -26126294 locktype3 = 5 -26126295 goalCount = 3 -26126295 goalTotal = 13 -26126296 otherCount = 29 -~~~ -26126454 DOWN 3 -26126453 0 262656 -26126503 4 262656 -26126687 4 512 -26126888 DOWN 3 -26126888 0 512 -26126906 4 512 -26127010 DOWN 3 -26127010 0 512 -26127033 4 512 -26127136 DOWN 3 -26127136 0 512 -26127161 4 512 -26127269 DOWN 3 -26127269 0 512 -26127292 4 512 -26127399 DOWN 3 -26127399 0 512 -26127422 4 512 -26127527 DOWN 3 -26127527 0 512 -26127551 4 512 -26127663 DOWN 3 -26127662 0 512 -26127684 4 512 -26127810 DOWN 3 -26127810 0 512 -26127825 4 512 -26127960 DOWN 3 -26127960 0 512 -26127966 4 512 -26132825 DOWN 3 -26132825 0 512 -26132840 4 512 -26132983 DOWN 3 -26132983 0 512 -26132987 4 512 -26133827 DOWN 3 -26133827 0 512 -26133837 4 512 -26134015 DOWN 3 -26134015 0 512 -26134023 4 512 -26135949 DOWN 3 -26135949 0 512 -26140435 UP 10 -26140435 waslock = 0 -26140435 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26140463 512 16777728 -~~~ -26140613 512 512 -26140699 DOWN 10 -26140698 0 512 -~~~ -~~~ -26140719 0 1536 -~~~ -~~~ -26140720 0 1024 -26140722 homeCount = 51 -26140722 waitCount = 22 -26140723 ripCount = 21 -26140723 locktype1 = 1 -26140724 locktype2 = 2 -26140724 locktype3 = 5 -26140725 goalCount = 3 -26140725 goalTotal = 13 -26140726 otherCount = 29 -~~~ -26140747 UP 10 -26140747 waslock = 0 -26140747 512 1024 -~~~ -26144504 DOWN 10 -26144504 0 1024 -~~~ -~~~ -~~~ -~~~ -26144530 homeCount = 51 -26144531 waitCount = 22 -26144531 ripCount = 21 -26144532 locktype1 = 1 -26144532 locktype2 = 2 -26144533 locktype3 = 5 -26144533 goalCount = 3 -26144534 goalTotal = 13 -26144534 otherCount = 29 -~~~ -26144553 UP 10 -26144553 waslock = 0 -26144552 512 1024 -~~~ -26144607 DOWN 10 -26144607 0 1024 -~~~ -~~~ -~~~ -~~~ -26144630 homeCount = 51 -26144631 waitCount = 22 -26144631 ripCount = 21 -26144632 locktype1 = 1 -26144632 locktype2 = 2 -26144633 locktype3 = 5 -26144633 goalCount = 3 -26144634 goalTotal = 13 -26144634 otherCount = 29 -~~~ -26146769 UP 11 -26146769 1024 1024 -26151953 DOWN 11 -26151953 0 1024 -26151979 UP 11 -26151979 1024 1024 -26154269 BEEP1 -26154269 BEEP2 -~~~ -~~~ -~~~ -26154291 1024 33555456 -~~~ -26154441 1024 1024 -26160782 DOWN 11 -26160782 0 1024 -26160794 UP 11 -26160794 1024 1024 -~~~ -~~~ -26160806 1024 0 -~~~ -~~~ -26160808 1024 1 -~~~ -~~~ -26160810 1024 3 -~~~ -~~~ -26160812 1024 7 -~~~ -~~~ -26160814 1024 15 -~~~ -~~~ -26160815 1024 31 -~~~ -~~~ -26160817 1024 63 -~~~ -~~~ -26160819 1024 127 -~~~ -~~~ -26160821 1024 255 -26160822 homeCount = 51 -26160822 waitCount = 22 -26160823 ripCount = 22 -26160844 locktype1 = 1 -26160845 locktype2 = 2 -26160845 locktype3 = 5 -26160846 goalCount = 3 -26160846 goalTotal = 13 -26160847 otherCount = 29 -~~~ -26160848 CURRENTGOAL IS [3] -~~~ -26160904 DOWN 11 -26160904 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26160942 homeCount = 51 -26160943 waitCount = 22 -26160943 ripCount = 22 -26160944 locktype1 = 1 -26160945 locktype2 = 2 -26160945 locktype3 = 5 -26160946 goalCount = 3 -26160946 goalTotal = 13 -26160947 otherCount = 29 -~~~ -26160948 CURRENTGOAL IS [3] -~~~ -26160969 UP 11 -26160969 1024 255 -26160984 DOWN 11 -26160984 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26161023 homeCount = 51 -26161023 waitCount = 22 -26161024 ripCount = 22 -26161024 locktype1 = 1 -26161025 locktype2 = 2 -26161025 locktype3 = 5 -26161026 goalCount = 3 -26161026 goalTotal = 13 -26161027 otherCount = 29 -~~~ -26161028 CURRENTGOAL IS [3] -~~~ -26161049 UP 11 -26161049 1024 255 -26163216 DOWN 11 -26163216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26163255 homeCount = 51 -26163255 waitCount = 22 -26163256 ripCount = 22 -26163256 locktype1 = 1 -26163257 locktype2 = 2 -26163257 locktype3 = 5 -26163258 goalCount = 3 -26163258 goalTotal = 13 -26163259 otherCount = 29 -~~~ -26163260 CURRENTGOAL IS [3] -~~~ -26176641 UP 4 -26176641 8 255 -~~~ -~~~ -26177975 DOWN 4 -26177975 0 255 -~~~ -~~~ -26178001 0 254 -~~~ -~~~ -26178003 0 252 -~~~ -~~~ -26178005 0 248 -~~~ -~~~ -26178006 0 240 -~~~ -~~~ -26178008 0 224 -~~~ -~~~ -26178010 0 192 -~~~ -~~~ -26178012 0 128 -~~~ -~~~ -26178014 0 0 -~~~ -~~~ -26178016 0 512 -26178017 homeCount = 51 -26178017 waitCount = 22 -26178018 ripCount = 22 -26178018 locktype1 = 1 -26178019 locktype2 = 2 -26178040 locktype3 = 5 -26178040 goalCount = 3 -26178041 goalTotal = 13 -26178041 otherCount = 30 -~~~ -26183987 UP 10 -26183987 waslock = 0 -26183986 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26184016 512 16777728 -~~~ -26184166 512 512 -26184227 DOWN 10 -26184227 0 512 -~~~ -26184253 UP 10 -26184253 waslock = 0 -26184253 512 512 -~~~ -~~~ -~~~ -26184256 512 2048 -26184257 homeCount = 52 -26184257 waitCount = 22 -26184258 ripCount = 22 -26184258 locktype1 = 1 -26184259 locktype2 = 2 -26184259 locktype3 = 5 -26184260 goalCount = 3 -26184280 goalTotal = 13 -26184281 otherCount = 30 -~~~ -~~~ -26190484 DOWN 10 -26190484 0 2048 -26190501 UP 10 -26190501 waslock = 0 -26190501 512 2048 -~~~ -~~~ -~~~ -~~~ -26190525 homeCount = 52 -26190525 waitCount = 22 -26190526 ripCount = 22 -26190526 locktype1 = 1 -26190527 locktype2 = 2 -26190527 locktype3 = 5 -26190528 goalCount = 3 -26190528 goalTotal = 13 -26190529 otherCount = 30 -~~~ -~~~ -26190590 DOWN 10 -26190590 0 2048 -~~~ -~~~ -~~~ -~~~ -26190618 homeCount = 52 -26190619 waitCount = 22 -26190619 ripCount = 22 -26190620 locktype1 = 1 -26190620 locktype2 = 2 -26190621 locktype3 = 5 -26190621 goalCount = 3 -26190622 goalTotal = 13 -26190622 otherCount = 30 -~~~ -26192739 UP 12 -26192739 2048 2048 -26197344 DOWN 12 -26197344 0 2048 -26197364 UP 12 -26197364 2048 2048 -26200239 CLICK1 -26200239 CLICK2 -~~~ -~~~ -~~~ -26200261 2048 67110912 -~~~ -26200411 2048 2048 -26205923 DOWN 12 -26205923 0 2048 -~~~ -~~~ -26205949 0 0 -~~~ -~~~ -26205951 0 1 -~~~ -~~~ -26205953 0 3 -~~~ -~~~ -26205955 0 7 -~~~ -~~~ -26205957 0 15 -~~~ -~~~ -26205959 0 31 -~~~ -~~~ -26205960 0 63 -~~~ -~~~ -26205962 0 127 -~~~ -~~~ -26205964 0 255 -26205965 homeCount = 52 -26205966 waitCount = 23 -26205966 ripCount = 22 -26205967 locktype1 = 1 -26205967 locktype2 = 2 -26205988 locktype3 = 5 -26205989 goalCount = 3 -26205989 goalTotal = 13 -26205990 otherCount = 30 -~~~ -26205991 CURRENTGOAL IS [3] -~~~ -26205991 UP 12 -26205991 2048 255 -26206044 DOWN 12 -26206044 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26206086 homeCount = 52 -26206087 waitCount = 23 -26206088 ripCount = 22 -26206088 locktype1 = 1 -26206089 locktype2 = 2 -26206089 locktype3 = 5 -26206090 goalCount = 3 -26206090 goalTotal = 13 -26206091 otherCount = 30 -~~~ -26206092 CURRENTGOAL IS [3] -~~~ -26211547 UP 3 -26211547 4 255 -~~~ -~~~ -26211574 outer reward -~~~ -26211574 4 262399 -~~~ -~~~ -26211584 DOWN 3 -26211584 0 262399 -26211594 4 262399 -~~~ -~~~ -26211604 4 262398 -~~~ -~~~ -26211605 4 262396 -~~~ -~~~ -26211607 4 262392 -~~~ -~~~ -26211609 4 262384 -~~~ -~~~ -26211611 4 262368 -~~~ -~~~ -26211613 4 262336 -~~~ -~~~ -26211614 4 262272 -~~~ -~~~ -26211616 4 262144 -~~~ -~~~ -26211618 4 262656 -26211619 homeCount = 52 -26211620 waitCount = 23 -26211620 ripCount = 22 -26211641 locktype1 = 1 -26211641 locktype2 = 2 -26211642 locktype3 = 5 -26211642 goalCount = 4 -26211643 goalTotal = 14 -26211643 otherCount = 30 -~~~ -26211753 DOWN 3 -26211753 0 262656 -26211803 4 262656 -26212024 4 512 -26212186 DOWN 3 -26212186 0 512 -26212197 4 512 -26212288 DOWN 3 -26212288 0 512 -26212324 4 512 -26212415 DOWN 3 -26212415 0 512 -26212448 4 512 -26212545 DOWN 3 -26212545 0 512 -26212578 4 512 -26212679 DOWN 3 -26212679 0 512 -26212713 4 512 -26212817 DOWN 3 -26212817 0 512 -26212848 4 512 -26212954 DOWN 3 -26212954 0 512 -26212985 4 512 -26213104 DOWN 3 -26213103 0 512 -26213127 4 512 -26213255 DOWN 3 -26213255 0 512 -26213277 4 512 -26213411 DOWN 3 -26213411 0 512 -26213421 4 512 -26213565 DOWN 3 -26213565 0 512 -26213573 4 512 -26213710 DOWN 3 -26213710 0 512 -26213718 4 512 -26219060 DOWN 3 -26219060 0 512 -26219068 4 512 -26221652 DOWN 3 -26221652 0 512 -26229831 UP 10 -26229831 waslock = 0 -26229831 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26229859 512 16777728 -~~~ -26229926 DOWN 10 -26229926 0 16777728 -26229942 UP 10 -26229942 waslock = 0 -26229942 512 16777728 -~~~ -~~~ -26229952 512 16778752 -~~~ -~~~ -26229954 512 16778240 -26229955 homeCount = 53 -26229956 waitCount = 23 -26229957 ripCount = 22 -26229957 locktype1 = 1 -26229958 locktype2 = 2 -26229958 locktype3 = 5 -26229959 goalCount = 4 -26229959 goalTotal = 14 -26229960 otherCount = 30 -~~~ -~~~ -26230009 512 1024 -26230077 DOWN 10 -26230077 0 1024 -~~~ -~~~ -~~~ -~~~ -26230108 homeCount = 53 -26230109 waitCount = 23 -26230109 ripCount = 22 -26230110 locktype1 = 1 -26230110 locktype2 = 2 -26230111 locktype3 = 5 -26230111 goalCount = 4 -26230112 goalTotal = 14 -26230112 otherCount = 30 -~~~ -26230121 UP 10 -26230122 waslock = 0 -26230121 512 1024 -~~~ -26233087 DOWN 10 -26233087 0 1024 -~~~ -~~~ -~~~ -~~~ -26233108 homeCount = 53 -26233108 waitCount = 23 -26233109 ripCount = 22 -26233109 locktype1 = 1 -26233110 locktype2 = 2 -26233110 locktype3 = 5 -26233111 goalCount = 4 -26233111 goalTotal = 14 -26233112 otherCount = 30 -~~~ -26233148 UP 10 -26233148 waslock = 0 -26233148 512 1024 -26233177 DOWN 10 -26233177 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -26233199 homeCount = 53 -26233200 waitCount = 23 -26233200 ripCount = 22 -26233201 locktype1 = 1 -26233201 locktype2 = 2 -26233202 locktype3 = 5 -26233202 goalCount = 4 -26233203 goalTotal = 14 -26233203 otherCount = 30 -~~~ -26247738 UP 11 -26247738 1024 1024 -26248518 DOWN 11 -26248518 0 1024 -26248528 UP 11 -26248528 1024 1024 -26248828 DOWN 11 -26248828 0 1024 -26248837 UP 11 -26248837 1024 1024 -26255739 BEEP1 -26255739 BEEP2 -~~~ -~~~ -~~~ -26255767 1024 33555456 -~~~ -26255917 1024 1024 -26262091 DOWN 11 -26262091 0 1024 -~~~ -~~~ -26262114 0 0 -~~~ -~~~ -26262116 0 1 -~~~ -~~~ -26262118 0 3 -~~~ -~~~ -26262120 0 7 -~~~ -~~~ -26262122 0 15 -~~~ -~~~ -26262123 0 31 -~~~ -~~~ -26262125 0 63 -~~~ -~~~ -26262127 0 127 -~~~ -~~~ -26262129 0 255 -26262130 homeCount = 53 -26262130 waitCount = 23 -26262131 ripCount = 23 -26262131 locktype1 = 1 -26262132 locktype2 = 2 -26262153 locktype3 = 5 -26262153 goalCount = 4 -26262154 goalTotal = 14 -26262154 otherCount = 30 -~~~ -26262156 CURRENTGOAL IS [3] -~~~ -26266855 UP 2 -26266855 2 255 -~~~ -~~~ -26267703 DOWN 2 -26267703 0 255 -~~~ -~~~ -26267724 0 254 -~~~ -~~~ -26267726 0 252 -~~~ -~~~ -26267727 0 248 -~~~ -~~~ -26267729 0 240 -~~~ -~~~ -26267731 0 224 -~~~ -~~~ -26267733 0 192 -~~~ -~~~ -26267735 0 128 -~~~ -~~~ -26267737 0 0 -~~~ -~~~ -26267738 0 512 -26267739 homeCount = 53 -26267740 waitCount = 23 -26267740 ripCount = 23 -26267741 locktype1 = 1 -26267742 locktype2 = 2 -26267762 locktype3 = 5 -26267763 goalCount = 4 -26267763 goalTotal = 14 -26267764 otherCount = 31 -~~~ -26271543 UP 10 -26271543 waslock = 0 -26271543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26271574 512 16777728 -~~~ -26271724 512 512 -26271742 DOWN 10 -26271742 0 512 -~~~ -26271766 UP 10 -26271767 waslock = 0 -26271766 512 512 -~~~ -~~~ -~~~ -26271769 512 1024 -26271770 homeCount = 54 -26271770 waitCount = 23 -26271771 ripCount = 23 -26271771 locktype1 = 1 -26271772 locktype2 = 2 -26271772 locktype3 = 5 -26271773 goalCount = 4 -26271794 goalTotal = 14 -26271794 otherCount = 31 -~~~ -~~~ -26276322 DOWN 10 -26276322 0 1024 -~~~ -~~~ -~~~ -26276348 UP 10 -26276348 waslock = 0 -26276348 512 1024 -~~~ -26276350 homeCount = 54 -26276351 waitCount = 23 -26276351 ripCount = 23 -26276352 locktype1 = 1 -26276352 locktype2 = 2 -26276353 locktype3 = 5 -26276353 goalCount = 4 -26276354 goalTotal = 14 -26276354 otherCount = 31 -~~~ -~~~ -26276422 DOWN 10 -26276422 0 1024 -~~~ -~~~ -~~~ -~~~ -26276450 homeCount = 54 -26276451 waitCount = 23 -26276451 ripCount = 23 -26276452 locktype1 = 1 -26276452 locktype2 = 2 -26276453 locktype3 = 5 -26276453 goalCount = 4 -26276454 goalTotal = 14 -26276454 otherCount = 31 -~~~ -26278218 UP 11 -26278218 1024 1024 -26278776 DOWN 11 -26278776 0 1024 -26278976 LOCKOUT 3 -~~~ -26278999 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26279003 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26279119 UP 11 -26279119 1024 0 -26280486 DOWN 11 -26280486 0 0 -26280724 UP 11 -26280724 1024 0 -26281454 DOWN 11 -26281454 0 0 -26281479 UP 11 -26281479 1024 0 -26283087 DOWN 11 -26283087 0 0 -26287949 UP 7 -26287949 64 0 -26288421 DOWN 7 -26288421 0 0 -26288485 64 0 -26289335 DOWN 7 -26289335 0 0 -26299747 512 0 -26300083 0 0 -26303999 LOCKEND -~~~ -~~~ -~~~ -26304019 0 512 -26306470 UP 10 -26306471 waslock = 0 -26306470 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26306503 512 16777728 -~~~ -26306653 512 512 -26306805 DOWN 10 -26306805 0 512 -~~~ -~~~ -26306827 0 1536 -~~~ -~~~ -26306829 0 1024 -26306830 homeCount = 55 -26306831 waitCount = 23 -26306831 ripCount = 23 -26306832 locktype1 = 1 -26306832 locktype2 = 2 -26306833 locktype3 = 6 -26306833 goalCount = 4 -26306834 goalTotal = 14 -26306834 otherCount = 31 -~~~ -26307269 UP 10 -26307269 waslock = 0 -26307269 512 1024 -~~~ -26311394 DOWN 10 -26311394 0 1024 -~~~ -~~~ -~~~ -~~~ -26311414 homeCount = 55 -26311415 waitCount = 23 -26311415 ripCount = 23 -26311416 locktype1 = 1 -26311416 locktype2 = 2 -26311417 locktype3 = 6 -26311417 goalCount = 4 -26311418 goalTotal = 14 -26311418 otherCount = 31 -~~~ -26351737 UP 10 -26351737 waslock = 0 -26351737 512 1024 -26351742 DOWN 10 -26351742 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -26351768 homeCount = 55 -26351768 waitCount = 23 -26351769 ripCount = 23 -26351769 locktype1 = 1 -26351770 locktype2 = 2 -26351770 locktype3 = 6 -26351771 goalCount = 4 -26351771 goalTotal = 14 -26351772 otherCount = 31 -~~~ -26372865 UP 1 -26372865 1 1024 -~~~ -26372883 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26372886 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26375957 DOWN 1 -26375957 0 0 -26385649 512 0 -26385845 0 0 -26386178 512 0 -26386431 0 0 -26386459 512 0 -26386675 0 0 -26386743 512 0 -26386792 0 0 -26386863 512 0 -26386871 0 0 -26392652 UP 12 -26392652 2048 0 -26393059 DOWN 12 -26393059 0 0 -26397883 LOCKEND -~~~ -~~~ -~~~ -26397903 0 512 -26399587 UP 12 -26399587 2048 512 -26399913 DOWN 12 -26399913 0 512 -26400043 UP 12 -26400043 2048 512 -26400088 DOWN 12 -26400088 0 512 -26400350 UP 12 -26400350 2048 512 -26400466 DOWN 12 -26400466 0 512 -26400557 UP 12 -26400557 2048 512 -26401146 DOWN 12 -26401146 0 512 -26401657 UP 12 -26401657 2048 512 -26401745 DOWN 12 -26401745 0 512 -26401786 UP 12 -26401785 2048 512 -26402161 DOWN 12 -26402161 0 512 -26412119 UP 10 -26412120 waslock = 0 -26412119 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26412148 512 16777728 -~~~ -26412157 DOWN 10 -26412157 0 16777728 -~~~ -~~~ -26412181 0 16778752 -~~~ -~~~ -26412183 0 16778240 -26412184 homeCount = 56 -26412185 waitCount = 23 -26412185 ripCount = 23 -26412186 locktype1 = 1 -26412186 locktype2 = 3 -26412187 locktype3 = 6 -26412187 goalCount = 4 -26412188 goalTotal = 14 -26412188 otherCount = 31 -~~~ -26412209 UP 10 -26412209 waslock = 0 -26412209 512 16778240 -~~~ -26412298 512 1024 -26412306 DOWN 10 -26412306 0 1024 -~~~ -~~~ -~~~ -~~~ -26412325 homeCount = 56 -26412326 waitCount = 23 -26412326 ripCount = 23 -26412327 locktype1 = 1 -26412327 locktype2 = 3 -26412328 locktype3 = 6 -26412328 goalCount = 4 -26412329 goalTotal = 14 -26412329 otherCount = 31 -~~~ -26412346 UP 10 -26412346 waslock = 0 -26412346 512 1024 -~~~ -26412417 DOWN 10 -26412417 0 1024 -~~~ -~~~ -~~~ -~~~ -26412448 homeCount = 56 -26412448 waitCount = 23 -26412449 ripCount = 23 -26412449 locktype1 = 1 -26412450 locktype2 = 3 -26412450 locktype3 = 6 -26412451 goalCount = 4 -26412451 goalTotal = 14 -26412452 otherCount = 31 -~~~ -26412489 UP 10 -26412489 waslock = 0 -26412489 512 1024 -~~~ -26412539 DOWN 10 -26412539 0 1024 -~~~ -~~~ -~~~ -~~~ -26412565 homeCount = 56 -26412566 waitCount = 23 -26412566 ripCount = 23 -26412567 locktype1 = 1 -26412567 locktype2 = 3 -26412568 locktype3 = 6 -26412568 goalCount = 4 -26412569 goalTotal = 14 -26412569 otherCount = 31 -~~~ -26412617 UP 10 -26412618 waslock = 0 -26412617 512 1024 -~~~ -26418530 DOWN 10 -26418530 0 1024 -~~~ -~~~ -~~~ -~~~ -26418559 homeCount = 56 -26418559 waitCount = 23 -26418560 ripCount = 23 -26418560 locktype1 = 1 -26418561 locktype2 = 3 -26418561 locktype3 = 6 -26418562 goalCount = 4 -26418562 goalTotal = 14 -26418563 otherCount = 31 -~~~ -26430877 UP 2 -26430877 2 1024 -~~~ -26430896 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26430900 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26431379 DOWN 2 -26431379 0 0 -26445486 512 0 -26445500 0 0 -26446355 512 0 -26446424 0 0 -26446456 512 0 -26446528 0 0 -26451352 UP 1 -26451352 1 0 -26451385 DOWN 1 -26451385 0 0 -26451422 1 0 -26452043 DOWN 1 -26452043 0 0 -26452263 1 0 -26452275 DOWN 1 -26452275 0 0 -26455896 LOCKEND -~~~ -~~~ -~~~ -26455917 0 512 -26474835 UP 10 -26474835 waslock = 0 -26474835 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26474862 512 16777728 -~~~ -26474896 DOWN 10 -26474896 0 16777728 -~~~ -~~~ -26474916 0 16778752 -~~~ -~~~ -26474918 0 16778240 -26474919 homeCount = 57 -26474920 waitCount = 23 -26474920 ripCount = 23 -26474921 locktype1 = 1 -26474921 locktype2 = 4 -26474922 locktype3 = 6 -26474922 goalCount = 4 -26474923 goalTotal = 14 -26474923 otherCount = 31 -~~~ -26474944 UP 10 -26474944 waslock = 0 -26474944 512 16778240 -~~~ -26475012 512 1024 -26475064 DOWN 10 -26475064 0 1024 -~~~ -~~~ -~~~ -~~~ -26475094 homeCount = 57 -26475095 waitCount = 23 -26475095 ripCount = 23 -26475096 locktype1 = 1 -26475096 locktype2 = 4 -26475097 locktype3 = 6 -26475097 goalCount = 4 -26475098 goalTotal = 14 -26475098 otherCount = 31 -~~~ -26475180 UP 10 -26475180 waslock = 0 -26475180 512 1024 -~~~ -26475308 DOWN 10 -26475308 0 1024 -~~~ -~~~ -~~~ -~~~ -26475331 homeCount = 57 -26475331 waitCount = 23 -26475332 ripCount = 23 -26475332 locktype1 = 1 -26475333 locktype2 = 4 -26475333 locktype3 = 6 -26475334 goalCount = 4 -26475334 goalTotal = 14 -26475335 otherCount = 31 -~~~ -26475336 UP 10 -26475336 waslock = 0 -26475335 512 1024 -~~~ -26480573 DOWN 10 -26480573 0 1024 -~~~ -~~~ -~~~ -~~~ -26480600 homeCount = 57 -26480600 waitCount = 23 -26480601 ripCount = 23 -26480601 locktype1 = 1 -26480602 locktype2 = 4 -26480602 locktype3 = 6 -26480603 goalCount = 4 -26480603 goalTotal = 14 -26480604 otherCount = 31 -~~~ -26482063 UP 11 -26482063 1024 1024 -26482260 DOWN 11 -26482260 0 1024 -26482460 LOCKOUT 3 -~~~ -26482478 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26482482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26486116 UP 7 -26486116 64 0 -26486575 DOWN 7 -26486575 0 0 -26502358 512 0 -26502527 0 0 -26507478 LOCKEND -~~~ -~~~ -~~~ -26507497 0 512 -26610111 UP 10 -26610111 waslock = 0 -26610111 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26610142 512 16777728 -~~~ -26610292 512 512 -26610742 DOWN 10 -26610742 0 512 -~~~ -~~~ -26610767 0 1536 -~~~ -~~~ -26610769 0 1024 -26610770 homeCount = 58 -26610771 waitCount = 23 -26610771 ripCount = 23 -26610772 locktype1 = 1 -26610772 locktype2 = 4 -26610773 locktype3 = 7 -26610773 goalCount = 4 -26610774 goalTotal = 14 -26610774 otherCount = 31 -~~~ -26610795 UP 10 -26610796 waslock = 0 -26610795 512 1024 -~~~ -26611050 DOWN 10 -26611050 0 1024 -26611074 UP 10 -26611075 waslock = 0 -26611074 512 1024 -~~~ -~~~ -~~~ -~~~ -26611083 homeCount = 58 -26611083 waitCount = 23 -26611084 ripCount = 23 -26611084 locktype1 = 1 -26611085 locktype2 = 4 -26611085 locktype3 = 7 -26611086 goalCount = 4 -26611086 goalTotal = 14 -26611087 otherCount = 31 -~~~ -~~~ -26611219 DOWN 10 -26611219 0 1024 -~~~ -~~~ -~~~ -~~~ -26611240 homeCount = 58 -26611240 waitCount = 23 -26611241 ripCount = 23 -26611241 locktype1 = 1 -26611242 locktype2 = 4 -26611242 locktype3 = 7 -26611243 goalCount = 4 -26611243 goalTotal = 14 -26611244 otherCount = 31 -~~~ -26611244 UP 10 -26611245 waslock = 0 -26611244 512 1024 -~~~ -26611380 DOWN 10 -26611380 0 1024 -~~~ -26611412 UP 10 -26611412 waslock = 0 -26611412 512 1024 -~~~ -~~~ -~~~ -26611415 homeCount = 58 -26611416 waitCount = 23 -26611416 ripCount = 23 -26611417 locktype1 = 1 -26611417 locktype2 = 4 -26611418 locktype3 = 7 -26611418 goalCount = 4 -26611419 goalTotal = 14 -26611419 otherCount = 31 -~~~ -~~~ -26611544 DOWN 10 -26611544 0 1024 -26611573 UP 10 -26611573 waslock = 0 -26611573 512 1024 -~~~ -~~~ -~~~ -~~~ -26611579 homeCount = 58 -26611579 waitCount = 23 -26611580 ripCount = 23 -26611580 locktype1 = 1 -26611581 locktype2 = 4 -26611581 locktype3 = 7 -26611582 goalCount = 4 -26611582 goalTotal = 14 -26611583 otherCount = 31 -~~~ -~~~ -26611731 DOWN 10 -26611731 0 1024 -~~~ -~~~ -~~~ -~~~ -26611755 homeCount = 58 -26611756 waitCount = 23 -26611756 ripCount = 23 -26611757 locktype1 = 1 -26611757 locktype2 = 4 -26611758 locktype3 = 7 -26611758 goalCount = 4 -26611759 goalTotal = 14 -26611759 otherCount = 31 -~~~ -26611760 UP 10 -26611760 waslock = 0 -26611760 512 1024 -~~~ -26611907 DOWN 10 -26611907 0 1024 -~~~ -~~~ -~~~ -~~~ -26611935 homeCount = 58 -26611935 waitCount = 23 -26611936 ripCount = 23 -26611936 locktype1 = 1 -26611937 locktype2 = 4 -26611937 locktype3 = 7 -26611938 goalCount = 4 -26611938 goalTotal = 14 -26611939 otherCount = 31 -~~~ -26611943 UP 10 -26611943 waslock = 0 -26611943 512 1024 -~~~ -26612078 DOWN 10 -26612078 0 1024 -26612098 UP 10 -26612098 waslock = 0 -26612098 512 1024 -~~~ -~~~ -~~~ -~~~ -26612110 homeCount = 58 -26612111 waitCount = 23 -26612111 ripCount = 23 -26612112 locktype1 = 1 -26612112 locktype2 = 4 -26612113 locktype3 = 7 -26612113 goalCount = 4 -26612114 goalTotal = 14 -26612114 otherCount = 31 -~~~ -~~~ -26613140 DOWN 10 -26613140 0 1024 -26613146 UP 10 -26613146 waslock = 0 -26613146 512 1024 -~~~ -~~~ -~~~ -~~~ -26613168 homeCount = 58 -26613169 waitCount = 23 -26613169 ripCount = 23 -26613170 locktype1 = 1 -26613170 locktype2 = 4 -26613171 locktype3 = 7 -26613171 goalCount = 4 -26613172 goalTotal = 14 -26613172 otherCount = 31 -~~~ -~~~ -26613312 DOWN 10 -26613312 0 1024 -26613330 UP 10 -26613330 waslock = 0 -26613330 512 1024 -~~~ -~~~ -~~~ -~~~ -26613338 homeCount = 58 -26613339 waitCount = 23 -26613339 ripCount = 23 -26613340 locktype1 = 1 -26613340 locktype2 = 4 -26613341 locktype3 = 7 -26613341 goalCount = 4 -26613342 goalTotal = 14 -26613342 otherCount = 31 -~~~ -~~~ -26613483 DOWN 10 -26613483 0 1024 -~~~ -~~~ -~~~ -~~~ -26613506 homeCount = 58 -26613507 waitCount = 23 -26613508 ripCount = 23 -26613508 locktype1 = 1 -26613509 locktype2 = 4 -26613509 locktype3 = 7 -26613510 goalCount = 4 -26613510 goalTotal = 14 -26613511 otherCount = 31 -~~~ -26613513 UP 10 -26613514 waslock = 0 -26613513 512 1024 -~~~ -26614355 DOWN 10 -26614355 0 1024 -26614372 UP 10 -26614373 waslock = 0 -26614372 512 1024 -~~~ -~~~ -~~~ -~~~ -26614377 homeCount = 58 -26614378 waitCount = 23 -26614378 ripCount = 23 -26614379 locktype1 = 1 -26614379 locktype2 = 4 -26614380 locktype3 = 7 -26614380 goalCount = 4 -26614381 goalTotal = 14 -26614381 otherCount = 31 -~~~ -~~~ -26614729 DOWN 10 -26614729 0 1024 -26614735 UP 10 -26614735 waslock = 0 -26614735 512 1024 -~~~ -~~~ -~~~ -~~~ -26614757 homeCount = 58 -26614758 waitCount = 23 -26614758 ripCount = 23 -26614759 locktype1 = 1 -26614759 locktype2 = 4 -26614760 locktype3 = 7 -26614760 goalCount = 4 -26614761 goalTotal = 14 -26614761 otherCount = 31 -~~~ -~~~ -26614892 DOWN 10 -26614892 0 1024 -~~~ -26614914 UP 10 -26614914 waslock = 0 -26614914 512 1024 -~~~ -~~~ -~~~ -26614917 homeCount = 58 -26614918 waitCount = 23 -26614918 ripCount = 23 -26614919 locktype1 = 1 -26614919 locktype2 = 4 -26614920 locktype3 = 7 -26614920 goalCount = 4 -26614921 goalTotal = 14 -26614921 otherCount = 31 -~~~ -~~~ -26615008 DOWN 10 -26615008 0 1024 -~~~ -~~~ -~~~ -~~~ -26615036 homeCount = 58 -26615037 waitCount = 23 -26615038 ripCount = 23 -26615038 locktype1 = 1 -26615039 locktype2 = 4 -26615039 locktype3 = 7 -26615040 goalCount = 4 -26615040 goalTotal = 14 -26615041 otherCount = 31 -~~~ -26638056 UP 5 -26638056 16 1024 -~~~ -26638084 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26638088 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26638140 DOWN 5 -26638140 0 0 -26638216 16 0 -26638335 DOWN 5 -26638335 0 0 -26638492 16 0 -26638740 DOWN 5 -26638740 0 0 -26663084 LOCKEND -~~~ -~~~ -~~~ -26663104 0 512 -26828055 UP 10 -26828055 waslock = 0 -26828055 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26828081 512 16777728 -~~~ -26828231 512 512 -26828398 DOWN 10 -26828398 0 512 -~~~ -~~~ -26828424 0 1536 -~~~ -~~~ -26828426 0 1024 -26828427 homeCount = 59 -26828427 waitCount = 23 -26828428 ripCount = 23 -26828428 locktype1 = 1 -26828429 locktype2 = 5 -26828429 locktype3 = 7 -26828430 goalCount = 4 -26828430 goalTotal = 14 -26828431 otherCount = 31 -~~~ -26828487 UP 10 -26828488 waslock = 0 -26828487 512 1024 -~~~ -26828917 DOWN 10 -26828917 0 1024 -~~~ -~~~ -~~~ -26828938 UP 10 -26828938 waslock = 0 -26828938 512 1024 -~~~ -26828940 homeCount = 59 -26828940 waitCount = 23 -26828941 ripCount = 23 -26828941 locktype1 = 1 -26828942 locktype2 = 5 -26828942 locktype3 = 7 -26828943 goalCount = 4 -26828943 goalTotal = 14 -26828944 otherCount = 31 -~~~ -~~~ -26829068 DOWN 10 -26829068 0 1024 -26829088 UP 10 -26829088 waslock = 0 -26829088 512 1024 -~~~ -~~~ -~~~ -~~~ -26829100 homeCount = 59 -26829100 waitCount = 23 -26829101 ripCount = 23 -26829101 locktype1 = 1 -26829102 locktype2 = 5 -26829102 locktype3 = 7 -26829103 goalCount = 4 -26829103 goalTotal = 14 -26829104 otherCount = 31 -~~~ -~~~ -26829218 DOWN 10 -26829218 0 1024 -26829240 UP 10 -26829240 waslock = 0 -26829240 512 1024 -~~~ -~~~ -~~~ -~~~ -26829251 homeCount = 59 -26829252 waitCount = 23 -26829252 ripCount = 23 -26829253 locktype1 = 1 -26829253 locktype2 = 5 -26829254 locktype3 = 7 -26829254 goalCount = 4 -26829255 goalTotal = 14 -26829256 otherCount = 31 -~~~ -~~~ -26829378 DOWN 10 -26829378 0 1024 -26829396 UP 10 -26829397 waslock = 0 -26829396 512 1024 -~~~ -~~~ -~~~ -~~~ -26829421 homeCount = 59 -26829422 waitCount = 23 -26829422 ripCount = 23 -26829423 locktype1 = 1 -26829423 locktype2 = 5 -26829424 locktype3 = 7 -26829424 goalCount = 4 -26829425 goalTotal = 14 -26829425 otherCount = 31 -~~~ -~~~ -26829533 DOWN 10 -26829533 0 1024 -26829546 UP 10 -26829546 waslock = 0 -26829546 512 1024 -~~~ -~~~ -~~~ -~~~ -26829570 homeCount = 59 -26829571 waitCount = 23 -26829571 ripCount = 23 -26829572 locktype1 = 1 -26829572 locktype2 = 5 -26829573 locktype3 = 7 -26829573 goalCount = 4 -26829574 goalTotal = 14 -26829574 otherCount = 31 -~~~ -~~~ -26836773 DOWN 10 -26836773 0 1024 -~~~ -~~~ -~~~ -~~~ -26836797 homeCount = 59 -26836798 waitCount = 23 -26836798 ripCount = 23 -26836799 locktype1 = 1 -26836799 locktype2 = 5 -26836800 locktype3 = 7 -26836800 goalCount = 4 -26836801 goalTotal = 14 -26836801 otherCount = 31 -~~~ -26836807 UP 10 -26836807 waslock = 0 -26836807 512 1024 -~~~ -26836875 DOWN 10 -26836875 0 1024 -~~~ -~~~ -~~~ -~~~ -26836898 homeCount = 59 -26836899 waitCount = 23 -26836899 ripCount = 23 -26836900 locktype1 = 1 -26836900 locktype2 = 5 -26836901 locktype3 = 7 -26836901 goalCount = 4 -26836902 goalTotal = 14 -26836902 otherCount = 31 -~~~ -26840595 UP 11 -26840595 1024 1024 -26841373 DOWN 11 -26841373 0 1024 -26841547 UP 11 -26841547 1024 1024 -26842677 DOWN 11 -26842677 0 1024 -26842764 UP 11 -26842764 1024 1024 -26844956 DOWN 11 -26844956 0 1024 -26845156 LOCKOUT 3 -~~~ -26845172 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26845176 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26845183 UP 11 -26845183 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26845256 DOWN 11 -26845256 0 0 -26845365 UP 11 -26845365 1024 0 -26845641 DOWN 11 -26845641 0 0 -26846066 UP 11 -26846066 1024 0 -26846157 DOWN 11 -26846157 0 0 -26866622 UP 8 -26866622 128 0 -26866677 DOWN 8 -26866677 0 0 -26866696 128 0 -26867041 DOWN 8 -26867041 0 0 -26867078 128 0 -26867109 DOWN 8 -26867109 0 0 -26870172 LOCKEND -~~~ -~~~ -~~~ -26870193 0 512 -26877037 UP 10 -26877037 waslock = 0 -26877037 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26877067 512 16777728 -~~~ -26877073 DOWN 10 -26877073 0 16777728 -~~~ -~~~ -26877082 0 16778752 -~~~ -~~~ -26877084 0 16778240 -26877085 homeCount = 60 -26877085 waitCount = 23 -26877086 ripCount = 23 -26877086 locktype1 = 1 -26877087 locktype2 = 5 -26877087 locktype3 = 8 -26877088 goalCount = 4 -26877088 goalTotal = 14 -26877089 otherCount = 31 -~~~ -26877151 UP 10 -26877151 waslock = 0 -26877151 512 16778240 -~~~ -26877201 DOWN 10 -26877201 0 16778240 -26877217 0 1024 -~~~ -~~~ -~~~ -~~~ -26877224 homeCount = 60 -26877225 waitCount = 23 -26877225 ripCount = 23 -26877226 locktype1 = 1 -26877226 locktype2 = 5 -26877227 locktype3 = 8 -26877227 goalCount = 4 -26877228 goalTotal = 14 -26877228 otherCount = 31 -~~~ -26877534 UP 10 -26877535 waslock = 0 -26877534 512 1024 -~~~ -26877694 DOWN 10 -26877694 0 1024 -~~~ -~~~ -~~~ -26877715 UP 10 -26877715 waslock = 0 -26877715 512 1024 -~~~ -26877717 homeCount = 60 -26877718 waitCount = 23 -26877718 ripCount = 23 -26877719 locktype1 = 1 -26877719 locktype2 = 5 -26877720 locktype3 = 8 -26877720 goalCount = 4 -26877721 goalTotal = 14 -26877742 otherCount = 31 -~~~ -~~~ -26877844 DOWN 10 -26877844 0 1024 -~~~ -~~~ -~~~ -~~~ -26877866 homeCount = 60 -26877866 waitCount = 23 -26877867 ripCount = 23 -26877867 locktype1 = 1 -26877868 locktype2 = 5 -26877868 locktype3 = 8 -26877869 goalCount = 4 -26877869 goalTotal = 14 -26877870 otherCount = 31 -~~~ -26877872 UP 10 -26877873 waslock = 0 -26877872 512 1024 -~~~ -26877995 DOWN 10 -26877994 0 1024 -~~~ -~~~ -~~~ -~~~ -26878015 homeCount = 60 -26878016 waitCount = 23 -26878016 ripCount = 23 -26878017 locktype1 = 1 -26878017 locktype2 = 5 -26878018 locktype3 = 8 -26878018 goalCount = 4 -26878019 goalTotal = 14 -26878019 otherCount = 31 -~~~ -26878027 UP 10 -26878027 waslock = 0 -26878027 512 1024 -~~~ -26878159 DOWN 10 -26878159 0 1024 -26878173 UP 10 -26878174 waslock = 0 -26878173 512 1024 -~~~ -~~~ -~~~ -~~~ -26878196 homeCount = 60 -26878196 waitCount = 23 -26878197 ripCount = 23 -26878197 locktype1 = 1 -26878198 locktype2 = 5 -26878198 locktype3 = 8 -26878199 goalCount = 4 -26878199 goalTotal = 14 -26878200 otherCount = 31 -~~~ -~~~ -26878498 DOWN 10 -26878498 0 1024 -26878503 UP 10 -26878503 waslock = 0 -26878503 512 1024 -~~~ -~~~ -~~~ -~~~ -26878527 homeCount = 60 -26878528 waitCount = 23 -26878528 ripCount = 23 -26878529 locktype1 = 1 -26878529 locktype2 = 5 -26878530 locktype3 = 8 -26878530 goalCount = 4 -26878531 goalTotal = 14 -26878531 otherCount = 31 -~~~ -~~~ -26882217 DOWN 10 -26882217 0 1024 -26882229 UP 10 -26882229 waslock = 0 -26882229 512 1024 -~~~ -~~~ -~~~ -~~~ -26882244 homeCount = 60 -26882245 waitCount = 23 -26882245 ripCount = 23 -26882246 locktype1 = 1 -26882246 locktype2 = 5 -26882247 locktype3 = 8 -26882247 goalCount = 4 -26882248 goalTotal = 14 -26882248 otherCount = 31 -~~~ -~~~ -26882330 DOWN 10 -26882330 0 1024 -~~~ -~~~ -~~~ -~~~ -26882359 homeCount = 60 -26882360 waitCount = 23 -26882360 ripCount = 23 -26882361 locktype1 = 1 -26882361 locktype2 = 5 -26882362 locktype3 = 8 -26882362 goalCount = 4 -26882363 goalTotal = 14 -26882363 otherCount = 31 -~~~ -26882377 UP 10 -26882378 waslock = 0 -26882377 512 1024 -~~~ -26882442 DOWN 10 -26882442 0 1024 -~~~ -~~~ -~~~ -~~~ -26882465 homeCount = 60 -26882465 waitCount = 23 -26882466 ripCount = 23 -26882466 locktype1 = 1 -26882467 locktype2 = 5 -26882467 locktype3 = 8 -26882468 goalCount = 4 -26882468 goalTotal = 14 -26882469 otherCount = 31 -~~~ -26885557 UP 11 -26885557 1024 1024 -26886036 DOWN 11 -26886036 0 1024 -26886087 UP 11 -26886087 1024 1024 -26888031 DOWN 11 -26888031 0 1024 -26888091 UP 11 -26888091 1024 1024 -26889084 DOWN 11 -26889084 0 1024 -26889112 UP 11 -26889112 1024 1024 -26889129 DOWN 11 -26889129 0 1024 -26889167 UP 11 -26889167 1024 1024 -26892557 BEEP1 -26892557 BEEP2 -~~~ -~~~ -~~~ -26892586 1024 33555456 -~~~ -26892736 1024 1024 -26899793 DOWN 11 -26899793 0 1024 -~~~ -~~~ -26899812 0 0 -~~~ -~~~ -26899814 0 1 -~~~ -~~~ -26899816 0 3 -~~~ -~~~ -26899818 0 7 -~~~ -~~~ -26899820 0 15 -~~~ -~~~ -26899821 0 31 -~~~ -~~~ -26899823 0 63 -~~~ -~~~ -26899825 0 127 -~~~ -~~~ -26899827 0 255 -26899828 homeCount = 60 -26899828 waitCount = 23 -26899829 ripCount = 24 -26899830 locktype1 = 1 -26899830 locktype2 = 5 -26899851 locktype3 = 8 -26899852 goalCount = 4 -26899852 goalTotal = 14 -26899853 otherCount = 31 -~~~ -26899854 CURRENTGOAL IS [3] -~~~ -26899854 UP 11 -26899854 1024 255 -26899916 DOWN 11 -26899916 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26899951 homeCount = 60 -26899951 waitCount = 23 -26899952 ripCount = 24 -26899952 locktype1 = 1 -26899953 locktype2 = 5 -26899953 locktype3 = 8 -26899954 goalCount = 4 -26899954 goalTotal = 14 -26899955 otherCount = 31 -~~~ -26899956 CURRENTGOAL IS [3] -~~~ -26903241 UP 6 -26903241 32 255 -~~~ -~~~ -26903783 DOWN 6 -26903783 0 255 -~~~ -~~~ -26903805 0 254 -~~~ -~~~ -26903807 0 252 -~~~ -~~~ -26903809 0 248 -~~~ -~~~ -26903810 0 240 -~~~ -~~~ -26903812 0 224 -~~~ -~~~ -26903814 0 192 -~~~ -~~~ -26903816 0 128 -~~~ -~~~ -26903818 0 0 -~~~ -~~~ -26903820 0 512 -26903821 homeCount = 60 -26903821 waitCount = 23 -26903822 ripCount = 24 -26903822 locktype1 = 1 -26903823 locktype2 = 5 -26903844 locktype3 = 8 -26903844 goalCount = 4 -26903845 goalTotal = 14 -26903845 otherCount = 32 -~~~ -26911555 UP 10 -26911555 waslock = 0 -26911555 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26911582 512 16777728 -~~~ -26911731 512 512 -26912233 DOWN 10 -26912233 0 512 -~~~ -~~~ -26912255 0 2560 -~~~ -~~~ -26912257 0 2048 -26912258 homeCount = 61 -26912259 waitCount = 23 -26912259 ripCount = 24 -26912260 locktype1 = 1 -26912260 locktype2 = 5 -26912261 locktype3 = 8 -26912261 goalCount = 4 -26912262 goalTotal = 14 -26912262 otherCount = 32 -~~~ -26912287 UP 10 -26912287 waslock = 0 -26912287 512 2048 -~~~ -26920292 DOWN 10 -26920292 0 2048 -~~~ -~~~ -~~~ -~~~ -26920320 homeCount = 61 -26920320 waitCount = 23 -26920321 ripCount = 24 -26920321 locktype1 = 1 -26920322 locktype2 = 5 -26920322 locktype3 = 8 -26920323 goalCount = 4 -26920323 goalTotal = 14 -26920324 otherCount = 32 -~~~ -26920339 UP 10 -26920340 waslock = 0 -26920339 512 2048 -~~~ -26920386 DOWN 10 -26920386 0 2048 -~~~ -~~~ -~~~ -~~~ -26920410 homeCount = 61 -26920411 waitCount = 23 -26920411 ripCount = 24 -26920412 locktype1 = 1 -26920412 locktype2 = 5 -26920413 locktype3 = 8 -26920413 goalCount = 4 -26920414 goalTotal = 14 -26920414 otherCount = 32 -~~~ -26923784 UP 12 -26923784 2048 2048 -26925861 DOWN 12 -26925861 0 2048 -26925884 UP 12 -26925884 2048 2048 -26925973 DOWN 12 -26925973 0 2048 -26926052 UP 12 -26926052 2048 2048 -26926816 DOWN 12 -26926816 0 2048 -26926864 UP 12 -26926864 2048 2048 -26926874 DOWN 12 -26926874 0 2048 -26926909 UP 12 -26926909 2048 2048 -26926925 DOWN 12 -26926925 0 2048 -26926989 UP 12 -26926989 2048 2048 -26926999 DOWN 12 -26926999 0 2048 -26927041 UP 12 -26927041 2048 2048 -26927325 DOWN 12 -26927325 0 2048 -26927356 UP 12 -26927356 2048 2048 -26927785 CLICK1 -26927785 CLICK2 -~~~ -~~~ -~~~ -26927811 2048 67110912 -~~~ -26927961 2048 2048 -26928178 DOWN 12 -26928178 0 2048 -26928199 UP 12 -26928199 2048 2048 -~~~ -~~~ -26928218 2048 0 -~~~ -~~~ -26928220 2048 1 -~~~ -~~~ -26928222 2048 3 -~~~ -~~~ -26928224 2048 7 -~~~ -~~~ -26928226 2048 15 -~~~ -~~~ -26928227 2048 31 -~~~ -~~~ -26928229 2048 63 -~~~ -~~~ -26928231 2048 127 -~~~ -~~~ -26928233 2048 255 -26928234 homeCount = 61 -26928234 waitCount = 24 -26928235 ripCount = 24 -26928256 locktype1 = 1 -26928256 locktype2 = 5 -26928257 locktype3 = 8 -26928257 goalCount = 4 -26928258 goalTotal = 14 -26928258 otherCount = 32 -~~~ -26928259 CURRENTGOAL IS [3] -~~~ -26933900 DOWN 12 -26933900 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26933935 homeCount = 61 -26933936 waitCount = 24 -26933937 ripCount = 24 -26933937 locktype1 = 1 -26933938 locktype2 = 5 -26933938 locktype3 = 8 -26933939 goalCount = 4 -26933939 goalTotal = 14 -26933940 otherCount = 32 -~~~ -26933941 CURRENTGOAL IS [3] -~~~ -26933962 UP 12 -26933962 2048 255 -26933994 DOWN 12 -26933994 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26934035 homeCount = 61 -26934036 waitCount = 24 -26934036 ripCount = 24 -26934037 locktype1 = 1 -26934037 locktype2 = 5 -26934038 locktype3 = 8 -26934038 goalCount = 4 -26934039 goalTotal = 14 -26934039 otherCount = 32 -~~~ -26934040 CURRENTGOAL IS [3] -~~~ -26937185 UP 3 -26937185 4 255 -~~~ -~~~ -26937210 outer reward -~~~ -26937210 4 262399 -~~~ -~~~ -26937426 DOWN 3 -26937426 0 262399 -~~~ -~~~ -26937450 0 262398 -~~~ -~~~ -26937452 0 262396 -~~~ -~~~ -26937453 0 262392 -~~~ -~~~ -26937455 0 262384 -~~~ -~~~ -26937457 0 262368 -~~~ -~~~ -26937459 0 262336 -~~~ -~~~ -26937461 0 262272 -~~~ -~~~ -26937463 0 262144 -~~~ -~~~ -26937464 0 262656 -26937465 homeCount = 61 -26937466 waitCount = 24 -26937466 ripCount = 24 -26937487 locktype1 = 1 -26937488 locktype2 = 5 -26937488 locktype3 = 8 -26937489 goalCount = 5 -26937489 goalTotal = 15 -26937490 otherCount = 32 -~~~ -26937490 4 262656 -26937660 4 512 -26937920 DOWN 3 -26937920 0 512 -26937928 4 512 -26938037 DOWN 3 -26938037 0 512 -26938051 4 512 -26938169 DOWN 3 -26938169 0 512 -26938180 4 512 -26938303 DOWN 3 -26938303 0 512 -26938316 4 512 -26938445 DOWN 3 -26938445 0 512 -26938449 4 512 -26947063 DOWN 3 -26947063 0 512 -26947088 4 512 -26947159 DOWN 3 -26947159 0 512 -26953706 UP 10 -26953707 waslock = 0 -26953706 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26953737 512 16777728 -~~~ -26953887 512 512 -26957615 DOWN 10 -26957615 0 512 -~~~ -~~~ -26957638 0 2560 -~~~ -~~~ -26957640 0 2048 -26957641 homeCount = 62 -26957641 waitCount = 24 -26957642 ripCount = 24 -26957642 locktype1 = 1 -26957643 locktype2 = 5 -26957643 locktype3 = 8 -26957644 goalCount = 5 -26957644 goalTotal = 15 -26957645 otherCount = 32 -~~~ -26957681 UP 10 -26957681 waslock = 0 -26957681 512 2048 -26957700 DOWN 10 -26957700 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -26957724 homeCount = 62 -26957724 waitCount = 24 -26957725 ripCount = 24 -26957725 locktype1 = 1 -26957726 locktype2 = 5 -26957726 locktype3 = 8 -26957727 goalCount = 5 -26957727 goalTotal = 15 -26957728 otherCount = 32 -~~~ -26962052 UP 12 -26962052 2048 2048 -26964338 DOWN 12 -26964338 0 2048 -26964404 UP 12 -26964404 2048 2048 -26964424 DOWN 12 -26964424 0 2048 -26964540 UP 12 -26964540 2048 2048 -26965052 CLICK1 -26965052 CLICK2 -~~~ -~~~ -~~~ -26965081 2048 67110912 -~~~ -26965231 2048 2048 -26973280 DOWN 12 -26973280 0 2048 -~~~ -~~~ -26973298 0 0 -~~~ -~~~ -26973300 0 1 -~~~ -~~~ -26973302 0 3 -~~~ -~~~ -26973303 0 7 -~~~ -~~~ -26973305 0 15 -~~~ -~~~ -26973307 0 31 -~~~ -~~~ -26973309 0 63 -~~~ -~~~ -26973311 0 127 -~~~ -~~~ -26973312 0 255 -26973314 homeCount = 62 -26973314 waitCount = 25 -26973315 ripCount = 24 -26973315 locktype1 = 1 -26973316 locktype2 = 5 -26973337 locktype3 = 8 -26973337 goalCount = 5 -26973338 goalTotal = 15 -26973338 otherCount = 32 -~~~ -26973339 CURRENTGOAL IS [3] -~~~ -26977815 UP 3 -26977815 4 255 -~~~ -~~~ -26977840 DOWN 3 -26977840 0 255 -26977841 outer reward -~~~ -~~~ -26977843 0 262399 -~~~ -~~~ -~~~ -26977869 0 262398 -~~~ -~~~ -26977871 0 262396 -~~~ -~~~ -26977873 0 262392 -~~~ -~~~ -26977875 0 262384 -~~~ -~~~ -26977876 0 262368 -~~~ -~~~ -26977878 0 262336 -~~~ -~~~ -26977880 0 262272 -~~~ -~~~ -26977882 0 262144 -~~~ -~~~ -26977884 0 262656 -26977885 homeCount = 62 -26977885 waitCount = 25 -26977886 ripCount = 24 -26977907 locktype1 = 1 -26977907 locktype2 = 5 -26977908 locktype3 = 8 -26977908 goalCount = 6 -26977909 goalTotal = 16 -26977909 otherCount = 32 -~~~ -26977915 4 262656 -26978097 DOWN 3 -26978097 0 262656 -26978154 4 262656 -26978291 4 512 -26978403 DOWN 3 -26978403 0 512 -26978408 4 512 -26978514 DOWN 3 -26978514 0 512 -26978539 4 512 -26978642 DOWN 3 -26978642 0 512 -26978666 4 512 -26978769 DOWN 3 -26978769 0 512 -26978798 4 512 -26978909 DOWN 3 -26978909 0 512 -26978930 4 512 -26979051 DOWN 3 -26979051 0 512 -26979070 4 512 -26979189 DOWN 3 -26979189 0 512 -26979206 4 512 -26979331 DOWN 3 -26979331 0 512 -26979347 4 512 -26979473 DOWN 3 -26979473 0 512 -26979486 4 512 -26986107 DOWN 3 -26986107 0 512 -26986116 4 512 -26986209 DOWN 3 -26986209 0 512 -26996165 UP 10 -26996165 waslock = 0 -26996165 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26996194 512 16777728 -~~~ -26996209 DOWN 10 -26996209 0 16777728 -~~~ -~~~ -26996229 0 16778752 -~~~ -~~~ -26996231 0 16778240 -26996232 homeCount = 63 -26996233 waitCount = 25 -26996233 ripCount = 24 -26996234 locktype1 = 1 -26996234 locktype2 = 5 -26996235 locktype3 = 8 -26996235 goalCount = 6 -26996236 goalTotal = 16 -26996236 otherCount = 32 -~~~ -26996334 UP 10 -26996335 waslock = 0 -26996334 512 16778240 -26996344 512 1024 -~~~ -26999145 DOWN 10 -26999145 0 1024 -~~~ -~~~ -~~~ -~~~ -26999172 homeCount = 63 -26999173 waitCount = 25 -26999173 ripCount = 24 -26999174 locktype1 = 1 -26999174 locktype2 = 5 -26999175 locktype3 = 8 -26999175 goalCount = 6 -26999176 goalTotal = 16 -26999176 otherCount = 32 -~~~ -26999205 UP 10 -26999205 waslock = 0 -26999205 512 1024 -~~~ -26999233 DOWN 10 -26999233 0 1024 -~~~ -~~~ -~~~ -~~~ -26999253 homeCount = 63 -26999254 waitCount = 25 -26999255 ripCount = 24 -26999255 locktype1 = 1 -26999256 locktype2 = 5 -26999256 locktype3 = 8 -26999257 goalCount = 6 -26999257 goalTotal = 16 -26999258 otherCount = 32 -~~~ -27001162 UP 11 -27001162 1024 1024 -27001306 DOWN 11 -27001306 0 1024 -27001401 UP 11 -27001401 1024 1024 -27003166 DOWN 11 -27003166 0 1024 -27003171 UP 11 -27003171 1024 1024 -27004049 DOWN 11 -27004049 0 1024 -27004086 UP 11 -27004086 1024 1024 -27007946 DOWN 11 -27007946 0 1024 -27008003 UP 11 -27008003 1024 1024 -27008162 BEEP1 -27008162 BEEP2 -~~~ -~~~ -~~~ -27008181 1024 33555456 -~~~ -27008331 1024 1024 -27014589 DOWN 11 -27014589 0 1024 -27014597 UP 11 -27014597 1024 1024 -~~~ -~~~ -27014609 1024 0 -~~~ -~~~ -27014611 1024 1 -~~~ -~~~ -27014613 1024 3 -~~~ -~~~ -27014615 1024 7 -~~~ -~~~ -27014617 1024 15 -~~~ -~~~ -27014618 1024 31 -~~~ -~~~ -27014620 1024 63 -~~~ -~~~ -27014622 1024 127 -~~~ -~~~ -27014624 1024 255 -27014625 homeCount = 63 -27014625 waitCount = 25 -27014626 ripCount = 25 -27014626 locktype1 = 1 -27014648 locktype2 = 5 -27014648 locktype3 = 8 -27014649 goalCount = 6 -27014649 goalTotal = 16 -27014650 otherCount = 32 -~~~ -27014651 CURRENTGOAL IS [3] -~~~ -27014657 DOWN 11 -27014657 0 255 -27014686 UP 11 -27014686 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27014706 homeCount = 63 -27014707 waitCount = 25 -27014707 ripCount = 25 -27014708 locktype1 = 1 -27014708 locktype2 = 5 -27014709 locktype3 = 8 -27014709 goalCount = 6 -27014710 goalTotal = 16 -27014710 otherCount = 32 -~~~ -27014712 CURRENTGOAL IS [3] -~~~ -27017012 DOWN 11 -27017012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27017052 homeCount = 63 -27017052 waitCount = 25 -27017053 ripCount = 25 -27017053 locktype1 = 1 -27017054 locktype2 = 5 -27017054 locktype3 = 8 -27017055 goalCount = 6 -27017055 goalTotal = 16 -27017056 otherCount = 32 -~~~ -27017057 CURRENTGOAL IS [3] -~~~ -27021381 UP 3 -27021381 4 255 -~~~ -27021406 DOWN 3 -27021406 0 255 -~~~ -27021408 outer reward -~~~ -27021408 0 262399 -~~~ -~~~ -~~~ -~~~ -27021428 0 262398 -~~~ -~~~ -27021429 0 262396 -~~~ -~~~ -27021431 0 262392 -~~~ -~~~ -27021433 0 262384 -~~~ -~~~ -27021435 0 262368 -~~~ -~~~ -27021437 0 262336 -~~~ -~~~ -27021439 0 262272 -~~~ -~~~ -27021440 0 262144 -~~~ -~~~ -27021442 0 262656 -27021443 homeCount = 63 -27021444 waitCount = 25 -27021444 ripCount = 25 -27021465 locktype1 = 1 -27021466 locktype2 = 5 -27021466 locktype3 = 8 -27021467 goalCount = 7 -27021467 goalTotal = 17 -27021468 otherCount = 32 -~~~ -27021468 4 262656 -27021652 DOWN 3 -27021652 0 262656 -27021699 4 262656 -27021858 4 512 -27021932 DOWN 3 -27021932 0 512 -27021941 4 512 -27022042 DOWN 3 -27022042 0 512 -27022076 4 512 -27022167 DOWN 3 -27022167 0 512 -27022203 4 512 -27022292 DOWN 3 -27022292 0 512 -27022330 4 512 -27022423 DOWN 3 -27022423 0 512 -27022459 4 512 -27022563 DOWN 3 -27022563 0 512 -27022595 4 512 -27022716 DOWN 3 -27022716 0 512 -27022736 4 512 -27022857 DOWN 3 -27022857 0 512 -27022878 4 512 -27023007 DOWN 3 -27023007 0 512 -27023021 4 512 -27023155 DOWN 3 -27023155 0 512 -27023169 4 512 -27023313 DOWN 3 -27023313 0 512 -27023320 4 512 -27023931 DOWN 3 -27023931 0 512 -27023939 4 512 -27030753 DOWN 3 -27030753 0 512 -27036671 UP 10 -27036671 waslock = 0 -27036671 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27036703 512 16777728 -~~~ -27036738 DOWN 10 -27036738 0 16777728 -~~~ -~~~ -27036757 0 16778752 -~~~ -~~~ -27036759 0 16778240 -27036760 homeCount = 64 -27036761 waitCount = 25 -27036761 ripCount = 25 -27036762 locktype1 = 1 -27036762 locktype2 = 5 -27036763 locktype3 = 8 -27036763 goalCount = 7 -27036764 goalTotal = 17 -27036764 otherCount = 32 -~~~ -27036785 UP 10 -27036786 waslock = 0 -27036785 512 16778240 -~~~ -27036853 512 1024 -27036868 DOWN 10 -27036868 0 1024 -~~~ -~~~ -~~~ -~~~ -27036891 homeCount = 64 -27036892 waitCount = 25 -27036892 ripCount = 25 -27036893 locktype1 = 1 -27036893 locktype2 = 5 -27036894 locktype3 = 8 -27036894 goalCount = 7 -27036895 goalTotal = 17 -27036895 otherCount = 32 -~~~ -27036905 UP 10 -27036905 waslock = 0 -27036905 512 1024 -~~~ -27041635 DOWN 10 -27041635 0 1024 -~~~ -~~~ -~~~ -~~~ -27041661 homeCount = 64 -27041661 waitCount = 25 -27041662 ripCount = 25 -27041662 locktype1 = 1 -27041663 locktype2 = 5 -27041663 locktype3 = 8 -27041664 goalCount = 7 -27041664 goalTotal = 17 -27041665 otherCount = 32 -~~~ -27043061 UP 11 -27043061 1024 1024 -27046061 BEEP1 -27046061 BEEP2 -~~~ -~~~ -~~~ -27046079 1024 33555456 -~~~ -27046120 DOWN 11 -27046120 0 33555456 -27046136 UP 11 -27046136 1024 33555456 -27046229 1024 1024 -~~~ -~~~ -27046756 1024 0 -~~~ -~~~ -27046758 1024 1 -~~~ -~~~ -27046760 1024 3 -~~~ -~~~ -27046762 1024 7 -~~~ -~~~ -27046764 1024 15 -~~~ -~~~ -27046765 1024 31 -~~~ -~~~ -27046767 1024 63 -~~~ -~~~ -27046769 1024 127 -~~~ -~~~ -27046771 1024 255 -27046772 homeCount = 64 -27046773 waitCount = 25 -27046773 ripCount = 26 -27046774 locktype1 = 1 -27046795 locktype2 = 5 -27046795 locktype3 = 8 -27046796 goalCount = 7 -27046796 goalTotal = 17 -27046797 otherCount = 32 -~~~ -27046798 CURRENTGOAL IS [3] -~~~ -27053631 DOWN 11 -27053631 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27053669 UP 11 -27053669 1024 255 -~~~ -~~~ -~~~ -~~~ -27053674 homeCount = 64 -27053674 waitCount = 25 -27053675 ripCount = 26 -27053675 locktype1 = 1 -27053676 locktype2 = 5 -27053676 locktype3 = 8 -27053677 goalCount = 7 -27053677 goalTotal = 17 -27053678 otherCount = 32 -~~~ -27053679 CURRENTGOAL IS [3] -~~~ -27053700 DOWN 11 -27053700 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27053736 homeCount = 64 -27053736 waitCount = 25 -27053737 ripCount = 26 -27053737 locktype1 = 1 -27053738 locktype2 = 5 -27053739 locktype3 = 8 -27053739 goalCount = 7 -27053740 goalTotal = 17 -27053740 otherCount = 32 -~~~ -27053741 CURRENTGOAL IS [3] -~~~ -27053762 UP 11 -27053762 1024 255 -27056774 DOWN 11 -27056774 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27056816 homeCount = 64 -27056816 waitCount = 25 -27056817 ripCount = 26 -27056817 locktype1 = 1 -27056818 locktype2 = 5 -27056818 locktype3 = 8 -27056819 goalCount = 7 -27056819 goalTotal = 17 -27056820 otherCount = 32 -~~~ -27056821 CURRENTGOAL IS [3] -~~~ -27062933 UP 3 -27062933 4 255 -~~~ -~~~ -27062952 outer reward -~~~ -27062952 4 262399 -~~~ -~~~ -27063104 DOWN 3 -27063104 0 262399 -~~~ -~~~ -27063129 0 262398 -~~~ -~~~ -27063131 0 262396 -~~~ -~~~ -27063133 0 262392 -~~~ -~~~ -27063134 0 262384 -~~~ -~~~ -27063136 0 262368 -~~~ -~~~ -27063138 0 262336 -~~~ -~~~ -27063140 0 262272 -~~~ -~~~ -27063142 0 262144 -~~~ -~~~ -27063144 0 262656 -27063145 homeCount = 64 -27063145 waitCount = 25 -27063146 ripCount = 26 -27063167 locktype1 = 1 -27063167 locktype2 = 5 -27063168 locktype3 = 8 -27063168 goalCount = 8 -27063169 goalTotal = 18 -27063169 otherCount = 32 -~~~ -27063170 4 262656 -27063263 DOWN 3 -27063263 0 262656 -27063290 4 262656 -27063402 4 512 -27063542 DOWN 3 -27063542 0 512 -27063554 4 512 -27063660 DOWN 3 -27063660 0 512 -27063683 4 512 -27063784 DOWN 3 -27063784 0 512 -27063813 4 512 -27063917 DOWN 3 -27063917 0 512 -27063947 4 512 -27064050 DOWN 3 -27064050 0 512 -27064081 4 512 -27064190 DOWN 3 -27064190 0 512 -27064217 4 512 -27064327 DOWN 3 -27064327 0 512 -27064350 4 512 -27064474 DOWN 3 -27064474 0 512 -27064492 4 512 -27064630 DOWN 3 -27064630 0 512 -27064639 4 512 -27064937 DOWN 3 -27064937 0 512 -27064946 4 512 -27071303 DOWN 3 -27071303 0 512 -27071339 4 512 -27071394 DOWN 3 -27071394 0 512 -27082226 UP 10 -27082226 waslock = 0 -27082226 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27082258 512 16777728 -~~~ -27082277 DOWN 10 -27082277 0 16777728 -~~~ -~~~ -27082306 0 16779776 -~~~ -~~~ -27082308 0 16779264 -27082309 homeCount = 65 -27082310 waitCount = 25 -27082310 ripCount = 26 -27082311 locktype1 = 1 -27082311 locktype2 = 5 -27082312 locktype3 = 8 -27082312 goalCount = 8 -27082313 goalTotal = 18 -27082313 otherCount = 32 -~~~ -27082334 UP 10 -27082335 waslock = 0 -27082334 512 16779264 -~~~ -27082408 512 2048 -27082466 DOWN 10 -27082466 0 2048 -~~~ -~~~ -~~~ -~~~ -27082492 homeCount = 65 -27082493 waitCount = 25 -27082493 ripCount = 26 -27082494 locktype1 = 1 -27082494 locktype2 = 5 -27082495 locktype3 = 8 -27082495 goalCount = 8 -27082496 goalTotal = 18 -27082496 otherCount = 32 -~~~ -27082497 UP 10 -27082497 waslock = 0 -27082497 512 2048 -~~~ -27087311 DOWN 10 -27087311 0 2048 -~~~ -~~~ -~~~ -~~~ -27087333 homeCount = 65 -27087334 waitCount = 25 -27087334 ripCount = 26 -27087335 locktype1 = 1 -27087335 locktype2 = 5 -27087336 locktype3 = 8 -27087336 goalCount = 8 -27087337 goalTotal = 18 -27087337 otherCount = 32 -~~~ -27089424 UP 12 -27089424 2048 2048 -27090682 DOWN 12 -27090682 0 2048 -27090773 UP 12 -27090773 2048 2048 -27091335 DOWN 12 -27091335 0 2048 -27091389 UP 12 -27091389 2048 2048 -27091472 DOWN 12 -27091472 0 2048 -27091539 UP 12 -27091539 2048 2048 -27094269 DOWN 12 -27094268 0 2048 -27094323 UP 12 -27094323 2048 2048 -27094359 DOWN 12 -27094359 0 2048 -27094535 UP 12 -27094535 2048 2048 -27097424 CLICK1 -27097424 CLICK2 -~~~ -~~~ -~~~ -27097442 2048 67110912 -~~~ -27097592 2048 2048 -27103685 DOWN 12 -27103685 0 2048 -~~~ -~~~ -27103710 0 0 -~~~ -~~~ -27103712 0 1 -~~~ -~~~ -27103714 0 3 -~~~ -~~~ -27103715 0 7 -~~~ -~~~ -27103717 0 15 -~~~ -~~~ -27103719 0 31 -~~~ -~~~ -27103721 0 63 -~~~ -~~~ -27103723 0 127 -~~~ -~~~ -27103725 0 255 -27103726 homeCount = 65 -27103726 waitCount = 26 -27103727 ripCount = 26 -27103727 locktype1 = 1 -27103728 locktype2 = 5 -27103749 locktype3 = 8 -27103749 goalCount = 8 -27103750 goalTotal = 18 -27103750 otherCount = 32 -~~~ -27103751 CURRENTGOAL IS [3] -~~~ -27103752 UP 12 -27103752 2048 255 -27103785 DOWN 12 -27103785 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27103821 homeCount = 65 -27103822 waitCount = 26 -27103822 ripCount = 26 -27103823 locktype1 = 1 -27103824 locktype2 = 5 -27103824 locktype3 = 8 -27103825 goalCount = 8 -27103825 goalTotal = 18 -27103826 otherCount = 32 -~~~ -27103827 CURRENTGOAL IS [3] -~~~ -27108255 UP 2 -27108255 2 255 -27108270 DOWN 2 -27108270 0 255 -~~~ -~~~ -~~~ -~~~ -27108294 0 254 -~~~ -~~~ -27108296 0 252 -~~~ -~~~ -27108298 0 248 -~~~ -~~~ -27108300 0 240 -~~~ -~~~ -27108302 0 224 -~~~ -~~~ -27108303 0 192 -~~~ -~~~ -27108305 0 128 -~~~ -~~~ -27108307 0 0 -~~~ -~~~ -27108309 0 512 -27108310 homeCount = 65 -27108310 waitCount = 26 -27108311 ripCount = 26 -27108311 locktype1 = 1 -27108332 locktype2 = 5 -27108333 locktype3 = 8 -27108333 goalCount = 8 -27108334 goalTotal = 18 -27108334 otherCount = 33 -~~~ -27108335 2 512 -27109045 DOWN 2 -27109045 0 512 -27109118 2 512 -27109129 DOWN 2 -27109129 0 512 -27114052 UP 10 -27114052 waslock = 0 -27114052 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27114082 512 16777728 -~~~ -27114122 DOWN 10 -27114122 0 16777728 -~~~ -~~~ -27114145 0 16779776 -~~~ -~~~ -27114147 0 16779264 -27114148 homeCount = 66 -27114149 waitCount = 26 -27114149 ripCount = 26 -27114150 locktype1 = 1 -27114150 locktype2 = 5 -27114152 locktype3 = 8 -27114152 goalCount = 8 -27114152 goalTotal = 18 -27114152 otherCount = 33 -~~~ -27114173 UP 10 -27114173 waslock = 0 -27114173 512 16779264 -~~~ -27114232 512 2048 -27114292 DOWN 10 -27114292 0 2048 -~~~ -~~~ -27114320 UP 10 -27114320 waslock = 0 -27114320 512 2048 -~~~ -~~~ -27114323 homeCount = 66 -27114323 waitCount = 26 -27114324 ripCount = 26 -27114324 locktype1 = 1 -27114325 locktype2 = 5 -27114325 locktype3 = 8 -27114326 goalCount = 8 -27114326 goalTotal = 18 -27114347 otherCount = 33 -~~~ -~~~ -27117113 DOWN 10 -27117113 0 2048 -~~~ -~~~ -~~~ -~~~ -27117139 homeCount = 66 -27117140 waitCount = 26 -27117140 ripCount = 26 -27117141 locktype1 = 1 -27117141 locktype2 = 5 -27117142 locktype3 = 8 -27117142 goalCount = 8 -27117143 goalTotal = 18 -27117143 otherCount = 33 -~~~ -27117158 UP 10 -27117159 waslock = 0 -27117158 512 2048 -~~~ -27117200 DOWN 10 -27117200 0 2048 -~~~ -~~~ -~~~ -~~~ -27117221 homeCount = 66 -27117222 waitCount = 26 -27117222 ripCount = 26 -27117223 locktype1 = 1 -27117223 locktype2 = 5 -27117224 locktype3 = 8 -27117224 goalCount = 8 -27117225 goalTotal = 18 -27117225 otherCount = 33 -~~~ -27119113 UP 12 -27119113 2048 2048 -27121174 DOWN 12 -27121174 0 2048 -27121261 UP 12 -27121261 2048 2048 -27121838 DOWN 12 -27121838 0 2048 -27121887 UP 12 -27121887 2048 2048 -27121905 DOWN 12 -27121905 0 2048 -27121986 UP 12 -27121986 2048 2048 -27122114 CLICK1 -27122114 CLICK2 -~~~ -~~~ -~~~ -27122139 2048 67110912 -~~~ -27122289 2048 2048 -27127218 DOWN 12 -27127218 0 2048 -~~~ -~~~ -27127238 0 0 -~~~ -~~~ -27127239 0 1 -~~~ -~~~ -27127241 0 3 -~~~ -~~~ -27127243 0 7 -~~~ -~~~ -27127245 0 15 -~~~ -~~~ -27127247 0 31 -~~~ -~~~ -27127248 0 63 -~~~ -~~~ -27127250 0 127 -~~~ -~~~ -27127252 0 255 -27127253 homeCount = 66 -27127254 waitCount = 27 -27127254 ripCount = 26 -27127255 locktype1 = 1 -27127255 locktype2 = 5 -27127276 locktype3 = 8 -27127277 goalCount = 8 -27127277 goalTotal = 18 -27127278 otherCount = 33 -~~~ -27127279 CURRENTGOAL IS [3] -~~~ -27130040 UP 3 -27130040 4 255 -~~~ -~~~ -27130059 outer reward -~~~ -27130059 4 262399 -~~~ -~~~ -27130264 DOWN 3 -27130264 0 262399 -~~~ -~~~ -27130288 0 262398 -~~~ -~~~ -27130289 0 262396 -~~~ -~~~ -27130291 0 262392 -~~~ -~~~ -27130293 0 262384 -~~~ -~~~ -27130295 0 262368 -~~~ -~~~ -27130297 0 262336 -~~~ -~~~ -27130299 0 262272 -~~~ -~~~ -27130300 0 262144 -~~~ -~~~ -27130302 0 262656 -27130303 homeCount = 66 -27130304 waitCount = 27 -27130304 ripCount = 26 -27130325 locktype1 = 1 -27130325 locktype2 = 5 -27130326 locktype3 = 8 -27130326 goalCount = 9 -27130327 goalTotal = 19 -27130327 otherCount = 33 -~~~ -27130328 4 262656 -27130509 4 512 -27130691 DOWN 3 -27130691 0 512 -27130708 4 512 -27130810 DOWN 3 -27130810 0 512 -27130833 4 512 -27130933 DOWN 3 -27130933 0 512 -27130961 4 512 -27131066 DOWN 3 -27131066 0 512 -27131090 4 512 -27131199 DOWN 3 -27131199 0 512 -27131228 4 512 -27131361 DOWN 3 -27131361 0 512 -27131369 4 512 -27131503 DOWN 3 -27131503 0 512 -27131514 4 512 -27131656 DOWN 3 -27131656 0 512 -27131664 4 512 -27137144 DOWN 3 -27137144 0 512 -27137148 4 512 -27137802 DOWN 3 -27137802 0 512 -27137820 4 512 -27137905 DOWN 3 -27137905 0 512 -27144403 UP 10 -27144403 waslock = 0 -27144403 512 512 -27144418 DOWN 10 -27144418 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27144434 0 16777728 -~~~ -~~~ -~~~ -27144437 0 16779776 -~~~ -~~~ -27144439 0 16779264 -27144440 homeCount = 67 -27144441 waitCount = 27 -27144441 ripCount = 26 -27144442 locktype1 = 1 -27144442 locktype2 = 5 -27144443 locktype3 = 8 -27144443 goalCount = 9 -27144444 goalTotal = 19 -27144465 otherCount = 33 -~~~ -27144570 UP 10 -27144570 waslock = 0 -27144569 512 16779264 -27144584 512 2048 -~~~ -27147490 DOWN 10 -27147489 0 2048 -~~~ -~~~ -~~~ -~~~ -27147518 homeCount = 67 -27147519 waitCount = 27 -27147519 ripCount = 26 -27147520 locktype1 = 1 -27147520 locktype2 = 5 -27147521 locktype3 = 8 -27147521 goalCount = 9 -27147522 goalTotal = 19 -27147522 otherCount = 33 -~~~ -27149811 UP 12 -27149811 2048 2048 -27150616 DOWN 12 -27150616 0 2048 -27150637 UP 12 -27150637 2048 2048 -27150660 DOWN 12 -27150660 0 2048 -27150819 UP 12 -27150819 2048 2048 -27153312 CLICK1 -27153312 CLICK2 -~~~ -~~~ -~~~ -27153335 2048 67110912 -~~~ -27153484 2048 2048 -27157877 DOWN 12 -27157877 0 2048 -~~~ -~~~ -27157896 0 0 -~~~ -~~~ -27157897 0 1 -~~~ -~~~ -27157899 0 3 -~~~ -~~~ -27157901 0 7 -~~~ -~~~ -27157903 0 15 -~~~ -~~~ -27157905 0 31 -~~~ -~~~ -27157906 0 63 -~~~ -~~~ -27157908 0 127 -~~~ -~~~ -27157910 0 255 -27157911 homeCount = 67 -27157912 waitCount = 28 -27157912 ripCount = 26 -27157913 locktype1 = 1 -27157913 locktype2 = 5 -27157934 locktype3 = 8 -27157935 goalCount = 9 -27157935 goalTotal = 19 -27157936 otherCount = 33 -~~~ -27157937 CURRENTGOAL IS [3] -~~~ -27157937 UP 12 -27157937 2048 255 -27157959 DOWN 12 -27157959 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27157999 homeCount = 67 -27157999 waitCount = 28 -27158000 ripCount = 26 -27158000 locktype1 = 1 -27158001 locktype2 = 5 -27158001 locktype3 = 8 -27158002 goalCount = 9 -27158002 goalTotal = 19 -27158003 otherCount = 33 -~~~ -27158004 CURRENTGOAL IS [3] -~~~ -27158025 UP 12 -27158025 2048 255 -27158102 DOWN 12 -27158102 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158130 UP 12 -27158130 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158138 DOWN 12 -27158138 0 255 -~~~ -~~~ -~~~ -27158142 homeCount = 67 -27158142 waitCount = 28 -27158143 ripCount = 26 -27158143 locktype1 = 1 -27158144 locktype2 = 5 -27158145 locktype3 = 8 -27158145 goalCount = 9 -27158146 goalTotal = 19 -27158146 otherCount = 33 -~~~ -27158147 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158175 homeCount = 67 -27158176 waitCount = 28 -27158176 ripCount = 26 -27158177 locktype1 = 1 -27158177 locktype2 = 5 -27158178 locktype3 = 8 -27158199 goalCount = 9 -27158199 goalTotal = 19 -27158200 otherCount = 33 -~~~ -27158201 CURRENTGOAL IS [3] -~~~ -27158201 UP 12 -27158201 2048 255 -27158224 DOWN 12 -27158223 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158250 homeCount = 67 -27158251 waitCount = 28 -27158251 ripCount = 26 -27158252 locktype1 = 1 -27158252 locktype2 = 5 -27158253 locktype3 = 8 -27158253 goalCount = 9 -27158254 goalTotal = 19 -27158254 otherCount = 33 -~~~ -27158255 CURRENTGOAL IS [3] -~~~ -27158327 UP 12 -27158327 2048 255 -27158356 DOWN 12 -27158356 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158391 homeCount = 67 -27158392 waitCount = 28 -27158392 ripCount = 26 -27158393 locktype1 = 1 -27158393 locktype2 = 5 -27158394 locktype3 = 8 -27158394 goalCount = 9 -27158395 goalTotal = 19 -27158395 otherCount = 33 -~~~ -27158396 CURRENTGOAL IS [3] -~~~ -27158417 UP 12 -27158417 2048 255 -27158500 DOWN 12 -27158500 0 255 -27158522 UP 12 -27158522 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158542 homeCount = 67 -27158543 waitCount = 28 -27158543 ripCount = 26 -27158544 locktype1 = 1 -27158544 locktype2 = 5 -27158545 locktype3 = 8 -27158545 goalCount = 9 -27158546 goalTotal = 19 -27158546 otherCount = 33 -~~~ -27158548 CURRENTGOAL IS [3] -~~~ -27160569 DOWN 12 -27160569 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27160604 homeCount = 67 -27160605 waitCount = 28 -27160606 ripCount = 26 -27160606 locktype1 = 1 -27160607 locktype2 = 5 -27160607 locktype3 = 8 -27160608 goalCount = 9 -27160608 goalTotal = 19 -27160609 otherCount = 33 -~~~ -27160610 CURRENTGOAL IS [3] -~~~ -27160631 UP 12 -27160631 2048 255 -27160668 DOWN 12 -27160668 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27160706 homeCount = 67 -27160707 waitCount = 28 -27160707 ripCount = 26 -27160708 locktype1 = 1 -27160708 locktype2 = 5 -27160709 locktype3 = 8 -27160709 goalCount = 9 -27160710 goalTotal = 19 -27160710 otherCount = 33 -~~~ -27160711 CURRENTGOAL IS [3] -~~~ -27163334 UP 3 -27163334 4 255 -27163351 DOWN 3 -27163351 0 255 -~~~ -~~~ -27163374 outer reward -~~~ -27163375 0 262399 -~~~ -~~~ -27163379 outerreps = 8 -~~~ -~~~ -~~~ -~~~ -27163382 0 262398 -~~~ -~~~ -27163384 0 262396 -~~~ -~~~ -27163386 0 262392 -~~~ -~~~ -27163388 0 262384 -~~~ -~~~ -27163389 0 262368 -~~~ -~~~ -27163391 0 262336 -~~~ -~~~ -27163393 0 262272 -~~~ -~~~ -27163395 0 262144 -~~~ -~~~ -27163397 0 262656 -27163398 homeCount = 67 -27163398 waitCount = 28 -27163420 ripCount = 26 -27163420 locktype1 = 1 -27163421 locktype2 = 5 -27163421 locktype3 = 8 -27163422 goalCount = 0 -27163422 goalTotal = 20 -27163423 otherCount = 33 -~~~ -27163423 4 262656 -27163560 DOWN 3 -27163560 0 262656 -27163618 4 262656 -27163824 4 512 -27163981 DOWN 3 -27163981 0 512 -27164002 4 512 -27164107 DOWN 3 -27164107 0 512 -27164122 4 512 -27164237 DOWN 3 -27164237 0 512 -27164261 4 512 -27164373 DOWN 3 -27164373 0 512 -27164398 4 512 -27164523 DOWN 3 -27164523 0 512 -27164537 4 512 -27164678 DOWN 3 -27164677 0 512 -27164687 4 512 -27164824 DOWN 3 -27164824 0 512 -27164832 4 512 -27164973 DOWN 3 -27164973 0 512 -27164981 4 512 -27165435 DOWN 3 -27165435 0 512 -27165447 4 512 -27168176 DOWN 3 -27168176 0 512 -27168182 4 512 -27168186 DOWN 3 -27168186 0 512 -27168193 4 512 -27171704 DOWN 3 -27171704 0 512 -27171738 4 512 -27171814 DOWN 3 -27171814 0 512 -27176949 UP 10 -27176949 waslock = 0 -27176949 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27176979 512 16777728 -~~~ -27177102 DOWN 10 -27177102 0 16777728 -~~~ -~~~ -27177125 0 16778752 -~~~ -~~~ -27177127 0 16778240 -27177128 homeCount = 68 -27177129 waitCount = 28 -27177129 ripCount = 26 -27177130 locktype1 = 1 -27177130 locktype2 = 5 -27177131 locktype3 = 8 -27177131 goalCount = 0 -27177132 goalTotal = 20 -27177132 otherCount = 33 -~~~ -27177153 UP 10 -27177153 waslock = 0 -27177153 512 16778240 -27177155 512 1024 -~~~ -27183894 DOWN 10 -27183894 0 1024 -~~~ -~~~ -~~~ -~~~ -27183916 homeCount = 68 -27183917 waitCount = 28 -27183917 ripCount = 26 -27183918 locktype1 = 1 -27183918 locktype2 = 5 -27183919 locktype3 = 8 -27183919 goalCount = 0 -27183920 goalTotal = 20 -27183920 otherCount = 33 -~~~ -27186228 UP 11 -27186228 1024 1024 -27187560 DOWN 11 -27187560 0 1024 -27187573 UP 11 -27187573 1024 1024 -27187589 DOWN 11 -27187589 0 1024 -27187640 UP 11 -27187640 1024 1024 -27192229 BEEP1 -27192229 BEEP2 -~~~ -~~~ -~~~ -27192256 1024 33555456 -~~~ -27192406 1024 1024 -27198684 DOWN 11 -27198684 0 1024 -~~~ -~~~ -27198705 0 0 -~~~ -~~~ -27198707 0 1 -~~~ -~~~ -27198709 0 3 -~~~ -~~~ -27198711 0 7 -~~~ -~~~ -27198712 0 15 -~~~ -~~~ -27198714 0 31 -~~~ -~~~ -27198716 0 63 -~~~ -~~~ -27198718 0 127 -~~~ -~~~ -27198720 0 255 -27198721 homeCount = 68 -27198721 waitCount = 28 -27198722 ripCount = 27 -27198722 locktype1 = 1 -27198723 locktype2 = 5 -27198744 locktype3 = 8 -27198744 goalCount = 0 -27198745 goalTotal = 20 -27198745 otherCount = 33 -~~~ -27198746 CURRENTGOAL IS [1] -~~~ -27198766 UP 11 -27198766 1024 255 -27200991 DOWN 11 -27200991 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27201031 homeCount = 68 -27201031 waitCount = 28 -27201032 ripCount = 27 -27201032 locktype1 = 1 -27201033 locktype2 = 5 -27201033 locktype3 = 8 -27201034 goalCount = 0 -27201034 goalTotal = 20 -27201035 otherCount = 33 -~~~ -27201036 CURRENTGOAL IS [1] -~~~ -27201067 UP 11 -27201067 1024 255 -27201082 DOWN 11 -27201082 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27201121 homeCount = 68 -27201122 waitCount = 28 -27201122 ripCount = 27 -27201123 locktype1 = 1 -27201123 locktype2 = 5 -27201124 locktype3 = 8 -27201124 goalCount = 0 -27201125 goalTotal = 20 -27201125 otherCount = 33 -~~~ -27201127 CURRENTGOAL IS [1] -~~~ -27206452 UP 2 -27206452 2 255 -27206462 DOWN 2 -27206462 0 255 -~~~ -~~~ -~~~ -~~~ -27206480 0 254 -~~~ -~~~ -27206482 0 252 -~~~ -~~~ -27206484 0 248 -~~~ -~~~ -27206486 0 240 -~~~ -~~~ -27206487 0 224 -~~~ -~~~ -27206489 0 192 -~~~ -~~~ -27206491 0 128 -~~~ -~~~ -27206493 0 0 -~~~ -~~~ -27206495 0 512 -27206496 homeCount = 68 -27206496 waitCount = 28 -27206497 ripCount = 27 -27206497 locktype1 = 1 -27206519 locktype2 = 5 -27206519 locktype3 = 8 -27206520 goalCount = 0 -27206520 goalTotal = 20 -27206521 otherCount = 34 -~~~ -27206534 2 512 -27207052 DOWN 2 -27207052 0 512 -27212399 UP 10 -27212399 waslock = 0 -27212399 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27212427 512 16777728 -~~~ -27212435 DOWN 10 -27212435 0 16777728 -~~~ -~~~ -27212452 0 16778752 -~~~ -27212453 UP 10 -27212453 waslock = 0 -27212453 512 16778752 -~~~ -27212455 homeCount = 69 -27212456 waitCount = 28 -27212456 ripCount = 27 -27212457 locktype1 = 1 -27212457 locktype2 = 5 -27212458 locktype3 = 8 -27212458 goalCount = 0 -27212479 goalTotal = 20 -27212480 otherCount = 34 -~~~ -27212480 512 16778240 -~~~ -27212557 DOWN 10 -27212557 0 16778240 -27212577 0 1024 -27212591 UP 10 -27212591 waslock = 0 -27212591 512 1024 -~~~ -~~~ -~~~ -~~~ -27212598 homeCount = 69 -27212598 waitCount = 28 -27212599 ripCount = 27 -27212599 locktype1 = 1 -27212600 locktype2 = 5 -27212600 locktype3 = 8 -27212601 goalCount = 0 -27212601 goalTotal = 20 -27212602 otherCount = 34 -~~~ -~~~ -27216740 DOWN 10 -27216740 0 1024 -~~~ -~~~ -~~~ -~~~ -27216765 homeCount = 69 -27216765 waitCount = 28 -27216766 ripCount = 27 -27216766 locktype1 = 1 -27216767 locktype2 = 5 -27216767 locktype3 = 8 -27216768 goalCount = 0 -27216768 goalTotal = 20 -27216769 otherCount = 34 -~~~ -27221107 UP 11 -27221107 1024 1024 -27230108 BEEP1 -27230108 BEEP2 -~~~ -~~~ -~~~ -27230134 1024 33555456 -~~~ -27230284 1024 1024 -27237176 DOWN 11 -27237176 0 1024 -~~~ -~~~ -27237202 0 0 -~~~ -~~~ -27237203 0 1 -~~~ -~~~ -27237205 0 3 -~~~ -~~~ -27237207 0 7 -~~~ -~~~ -27237209 0 15 -~~~ -~~~ -27237211 0 31 -~~~ -~~~ -27237213 0 63 -~~~ -~~~ -27237214 0 127 -~~~ -~~~ -27237216 0 255 -27237217 homeCount = 69 -27237218 waitCount = 28 -27237218 ripCount = 28 -27237219 locktype1 = 1 -27237219 locktype2 = 5 -27237240 locktype3 = 8 -27237241 goalCount = 0 -27237241 goalTotal = 20 -27237242 otherCount = 34 -~~~ -27237243 CURRENTGOAL IS [1] -~~~ -27237243 UP 11 -27237243 1024 255 -27237293 DOWN 11 -27237293 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27237330 homeCount = 69 -27237330 waitCount = 28 -27237331 ripCount = 28 -27237331 locktype1 = 1 -27237332 locktype2 = 5 -27237332 locktype3 = 8 -27237333 goalCount = 0 -27237333 goalTotal = 20 -27237334 otherCount = 34 -~~~ -27237335 CURRENTGOAL IS [1] -~~~ -27244806 UP 3 -27244806 4 255 -27244824 DOWN 3 -27244824 0 255 -~~~ -~~~ -~~~ -~~~ -27244845 0 254 -~~~ -~~~ -27244846 0 252 -~~~ -~~~ -27244848 0 248 -~~~ -~~~ -27244850 0 240 -~~~ -~~~ -27244852 0 224 -~~~ -~~~ -27244854 0 192 -~~~ -~~~ -27244856 0 128 -~~~ -~~~ -27244857 0 0 -~~~ -~~~ -27244859 0 512 -27244860 homeCount = 69 -27244861 waitCount = 28 -27244861 ripCount = 28 -27244862 locktype1 = 1 -27244883 locktype2 = 5 -27244884 locktype3 = 8 -27244884 goalCount = 0 -27244885 goalTotal = 20 -27244885 otherCount = 35 -~~~ -27244896 4 512 -27245112 DOWN 3 -27245112 0 512 -27245162 4 512 -27245949 DOWN 3 -27245949 0 512 -27246153 4 512 -27247409 DOWN 3 -27247409 0 512 -27252323 UP 10 -27252323 waslock = 0 -27252323 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27252354 512 16777728 -~~~ -27252487 DOWN 10 -27252487 0 16777728 -27252504 0 512 -~~~ -~~~ -27252509 0 2560 -~~~ -~~~ -27252511 0 2048 -27252512 homeCount = 70 -27252513 waitCount = 28 -27252513 ripCount = 28 -27252514 locktype1 = 1 -27252514 locktype2 = 5 -27252515 locktype3 = 8 -27252515 goalCount = 0 -27252516 goalTotal = 20 -27252516 otherCount = 35 -~~~ -27252537 UP 10 -27252538 waslock = 0 -27252537 512 2048 -~~~ -27257198 DOWN 10 -27257198 0 2048 -~~~ -~~~ -~~~ -~~~ -27257221 homeCount = 70 -27257221 waitCount = 28 -27257222 ripCount = 28 -27257222 locktype1 = 1 -27257223 locktype2 = 5 -27257223 locktype3 = 8 -27257224 goalCount = 0 -27257224 goalTotal = 20 -27257225 otherCount = 35 -~~~ -27257233 UP 10 -27257233 waslock = 0 -27257233 512 2048 -~~~ -27257298 DOWN 10 -27257298 0 2048 -~~~ -~~~ -~~~ -~~~ -27257321 homeCount = 70 -27257322 waitCount = 28 -27257322 ripCount = 28 -27257323 locktype1 = 1 -27257323 locktype2 = 5 -27257324 locktype3 = 8 -27257324 goalCount = 0 -27257325 goalTotal = 20 -27257325 otherCount = 35 -~~~ -27259477 UP 12 -27259477 2048 2048 -27262833 DOWN 12 -27262833 0 2048 -27262866 UP 12 -27262866 2048 2048 -27262907 DOWN 12 -27262907 0 2048 -27262994 UP 12 -27262994 2048 2048 -27263034 DOWN 12 -27263034 0 2048 -27263046 UP 12 -27263046 2048 2048 -27267477 CLICK1 -27267477 CLICK2 -~~~ -~~~ -~~~ -27267503 2048 67110912 -~~~ -27267653 2048 2048 -27274654 DOWN 12 -27274654 0 2048 -~~~ -~~~ -27274672 0 0 -~~~ -~~~ -27274674 0 1 -~~~ -~~~ -27274676 0 3 -~~~ -~~~ -27274677 0 7 -~~~ -~~~ -27274679 0 15 -~~~ -~~~ -27274681 0 31 -~~~ -~~~ -27274683 0 63 -~~~ -~~~ -27274685 0 127 -~~~ -~~~ -27274686 0 255 -27274687 homeCount = 70 -27274688 waitCount = 29 -27274689 ripCount = 28 -27274689 locktype1 = 1 -27274690 locktype2 = 5 -27274710 locktype3 = 8 -27274711 goalCount = 0 -27274711 goalTotal = 20 -27274712 otherCount = 35 -~~~ -27274713 CURRENTGOAL IS [1] -~~~ -27278587 UP 3 -27278587 4 255 -~~~ -~~~ -27278893 DOWN 3 -27278893 0 255 -~~~ -~~~ -27278912 0 254 -~~~ -~~~ -27278914 0 252 -~~~ -~~~ -27278916 0 248 -~~~ -~~~ -27278917 0 240 -~~~ -~~~ -27278919 0 224 -~~~ -~~~ -27278921 0 192 -~~~ -~~~ -27278923 0 128 -~~~ -~~~ -27278925 0 0 -~~~ -~~~ -27278927 0 512 -27278928 homeCount = 70 -27278928 waitCount = 29 -27278929 ripCount = 28 -27278929 locktype1 = 1 -27278930 locktype2 = 5 -27278951 locktype3 = 8 -27278951 goalCount = 0 -27278952 goalTotal = 20 -27278952 otherCount = 36 -~~~ -27278953 4 512 -27279428 DOWN 3 -27279428 0 512 -27279473 4 512 -27279495 DOWN 3 -27279495 0 512 -27283748 UP 10 -27283748 waslock = 0 -27283748 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27283772 512 16777728 -~~~ -27283922 512 512 -27288098 DOWN 10 -27288098 0 512 -~~~ -~~~ -27288117 0 1536 -~~~ -~~~ -27288119 0 1024 -27288120 homeCount = 71 -27288120 waitCount = 29 -27288121 ripCount = 28 -27288121 locktype1 = 1 -27288122 locktype2 = 5 -27288122 locktype3 = 8 -27288123 goalCount = 0 -27288123 goalTotal = 20 -27288124 otherCount = 36 -~~~ -27288158 UP 10 -27288158 waslock = 0 -27288158 512 1024 -~~~ -27288186 DOWN 10 -27288186 0 1024 -~~~ -~~~ -~~~ -~~~ -27288215 homeCount = 71 -27288215 waitCount = 29 -27288216 ripCount = 28 -27288216 locktype1 = 1 -27288217 locktype2 = 5 -27288217 locktype3 = 8 -27288218 goalCount = 0 -27288218 goalTotal = 20 -27288219 otherCount = 36 -~~~ -27303216 UP 4 -27303216 8 1024 -~~~ -27303239 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -27303243 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27304347 DOWN 4 -27304347 0 0 -27321209 512 0 -27321279 0 0 -27328239 LOCKEND -~~~ -~~~ -~~~ -27328258 0 512 -27338600 UP 5 -27338600 16 512 -27338629 DOWN 5 -27338629 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27338662 homeCount = 71 -27338663 waitCount = 29 -27338663 ripCount = 28 -27338664 locktype1 = 1 -27338664 locktype2 = 6 -27338665 locktype3 = 8 -27338665 goalCount = 0 -27338666 goalTotal = 20 -27338666 otherCount = 36 -~~~ -27338727 16 512 -27338920 DOWN 5 -27338920 0 512 -27339036 16 512 -27339061 DOWN 5 -27339061 0 512 -27339130 16 512 -27339491 DOWN 5 -27339491 0 512 -27349519 UP 10 -27349520 waslock = 0 -27349519 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27349543 512 16777728 -~~~ -27349693 512 512 -27349747 DOWN 10 -27349747 0 512 -~~~ -~~~ -27349772 0 2560 -~~~ -~~~ -27349774 0 2048 -27349775 homeCount = 72 -27349776 waitCount = 29 -27349776 ripCount = 28 -27349777 locktype1 = 1 -27349777 locktype2 = 6 -27349778 locktype3 = 8 -27349778 goalCount = 0 -27349779 goalTotal = 20 -27349779 otherCount = 36 -~~~ -27349887 UP 10 -27349888 waslock = 0 -27349887 512 2048 -~~~ -27355800 DOWN 10 -27355800 0 2048 -~~~ -~~~ -~~~ -~~~ -27355821 homeCount = 72 -27355821 waitCount = 29 -27355822 ripCount = 28 -27355822 locktype1 = 1 -27355823 locktype2 = 6 -27355823 locktype3 = 8 -27355824 goalCount = 0 -27355824 goalTotal = 20 -27355825 otherCount = 36 -~~~ -27355830 UP 10 -27355831 waslock = 0 -27355830 512 2048 -~~~ -27355896 DOWN 10 -27355896 0 2048 -~~~ -~~~ -~~~ -~~~ -27355921 homeCount = 72 -27355921 waitCount = 29 -27355922 ripCount = 28 -27355922 locktype1 = 1 -27355923 locktype2 = 6 -27355923 locktype3 = 8 -27355924 goalCount = 0 -27355924 goalTotal = 20 -27355925 otherCount = 36 -~~~ -27359955 UP 12 -27359955 2048 2048 -27361229 DOWN 12 -27361229 0 2048 -27361429 LOCKOUT 3 -~~~ -27361449 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27361455 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27361545 UP 12 -27361545 2048 0 -27363005 DOWN 12 -27363005 0 0 -27363061 UP 12 -27363061 2048 0 -27363086 DOWN 12 -27363086 0 0 -27363176 UP 12 -27363176 2048 0 -27363450 DOWN 12 -27363450 0 0 -27363499 UP 12 -27363498 2048 0 -27363784 DOWN 12 -27363784 0 0 -27363793 UP 12 -27363792 2048 0 -27367425 DOWN 12 -27367425 0 0 -27367513 UP 12 -27367513 2048 0 -27367580 DOWN 12 -27367580 0 0 -27367680 UP 12 -27367680 2048 0 -27373426 DOWN 12 -27373426 0 0 -27373444 UP 12 -27373444 2048 0 -27373471 DOWN 12 -27373471 0 0 -27373514 UP 12 -27373514 2048 0 -27373617 DOWN 12 -27373617 0 0 -27373720 UP 12 -27373720 2048 0 -27375640 DOWN 12 -27375640 0 0 -27386449 LOCKEND -~~~ -~~~ -~~~ -27386471 0 512 -27392770 UP 10 -27392770 waslock = 0 -27392770 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27392793 512 16777728 -~~~ -27392943 512 512 -27392954 DOWN 10 -27392954 0 512 -~~~ -~~~ -27392972 0 1536 -~~~ -~~~ -27392974 0 1024 -27392975 homeCount = 73 -27392976 waitCount = 29 -27392976 ripCount = 28 -27392977 locktype1 = 1 -27392977 locktype2 = 6 -27392978 locktype3 = 9 -27392978 goalCount = 0 -27392979 goalTotal = 20 -27392979 otherCount = 36 -~~~ -27393151 UP 10 -27393152 waslock = 0 -27393151 512 1024 -~~~ -27393293 DOWN 10 -27393293 0 1024 -~~~ -~~~ -27393320 UP 10 -27393320 waslock = 0 -27393320 512 1024 -~~~ -~~~ -27393323 homeCount = 73 -27393323 waitCount = 29 -27393324 ripCount = 28 -27393324 locktype1 = 1 -27393325 locktype2 = 6 -27393325 locktype3 = 9 -27393326 goalCount = 0 -27393326 goalTotal = 20 -27393347 otherCount = 36 -~~~ -~~~ -27393593 DOWN 10 -27393593 0 1024 -27393607 UP 10 -27393607 waslock = 0 -27393607 512 1024 -~~~ -~~~ -~~~ -~~~ -27393623 homeCount = 73 -27393623 waitCount = 29 -27393624 ripCount = 28 -27393624 locktype1 = 1 -27393625 locktype2 = 6 -27393625 locktype3 = 9 -27393626 goalCount = 0 -27393626 goalTotal = 20 -27393627 otherCount = 36 -~~~ -~~~ -27393753 DOWN 10 -27393753 0 1024 -27393770 UP 10 -27393770 waslock = 0 -27393770 512 1024 -~~~ -~~~ -~~~ -~~~ -27393782 homeCount = 73 -27393782 waitCount = 29 -27393783 ripCount = 28 -27393783 locktype1 = 1 -27393784 locktype2 = 6 -27393784 locktype3 = 9 -27393785 goalCount = 0 -27393785 goalTotal = 20 -27393786 otherCount = 36 -~~~ -~~~ -27393918 DOWN 10 -27393918 0 1024 -~~~ -~~~ -~~~ -27393940 UP 10 -27393940 waslock = 0 -27393940 512 1024 -~~~ -27393942 homeCount = 73 -27393942 waitCount = 29 -27393943 ripCount = 28 -27393943 locktype1 = 1 -27393944 locktype2 = 6 -27393944 locktype3 = 9 -27393945 goalCount = 0 -27393945 goalTotal = 20 -27393946 otherCount = 36 -~~~ -~~~ -27397740 DOWN 10 -27397740 0 1024 -~~~ -~~~ -~~~ -~~~ -27397761 homeCount = 73 -27397761 waitCount = 29 -27397762 ripCount = 28 -27397762 locktype1 = 1 -27397763 locktype2 = 6 -27397763 locktype3 = 9 -27397764 goalCount = 0 -27397764 goalTotal = 20 -27397765 otherCount = 36 -~~~ -27397767 UP 10 -27397767 waslock = 0 -27397767 512 1024 -~~~ -27397836 DOWN 10 -27397836 0 1024 -~~~ -~~~ -~~~ -~~~ -27397863 homeCount = 73 -27397863 waitCount = 29 -27397864 ripCount = 28 -27397865 locktype1 = 1 -27397865 locktype2 = 6 -27397866 locktype3 = 9 -27397866 goalCount = 0 -27397867 goalTotal = 20 -27397867 otherCount = 36 -~~~ -27401205 UP 11 -27401205 1024 1024 -27405837 DOWN 11 -27405837 0 1024 -27405869 UP 11 -27405869 1024 1024 -27405991 DOWN 11 -27405991 0 1024 -27406002 UP 11 -27406002 1024 1024 -27408205 BEEP1 -27408205 BEEP2 -~~~ -~~~ -~~~ -27408231 1024 33555456 -~~~ -27408381 1024 1024 -27415414 DOWN 11 -27415414 0 1024 -27415427 UP 11 -27415427 1024 1024 -27415439 DOWN 11 -27415439 0 1024 -~~~ -~~~ -27415441 0 0 -~~~ -~~~ -27415442 0 1 -~~~ -~~~ -27415444 0 3 -~~~ -~~~ -27415446 0 7 -~~~ -~~~ -27415447 0 15 -~~~ -~~~ -27415449 0 31 -~~~ -~~~ -27415451 0 63 -~~~ -~~~ -27415453 0 127 -~~~ -~~~ -27415455 0 255 -27415456 homeCount = 73 -27415456 waitCount = 29 -27415457 ripCount = 29 -27415478 locktype1 = 1 -27415478 locktype2 = 6 -27415479 locktype3 = 9 -27415479 goalCount = 0 -27415480 goalTotal = 20 -27415480 otherCount = 36 -~~~ -27415481 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27415509 homeCount = 73 -27415509 waitCount = 29 -27415510 ripCount = 29 -27415510 locktype1 = 1 -27415511 locktype2 = 6 -27415511 locktype3 = 9 -27415512 goalCount = 0 -27415512 goalTotal = 20 -27415513 otherCount = 36 -~~~ -27415534 CURRENTGOAL IS [1] -~~~ -27415535 UP 11 -27415535 1024 255 -27417762 DOWN 11 -27417762 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27417797 homeCount = 73 -27417798 waitCount = 29 -27417798 ripCount = 29 -27417799 locktype1 = 1 -27417799 locktype2 = 6 -27417800 locktype3 = 9 -27417800 goalCount = 0 -27417801 goalTotal = 20 -27417801 otherCount = 36 -~~~ -27417802 CURRENTGOAL IS [1] -~~~ -27420577 UP 6 -27420577 32 255 -~~~ -~~~ -27421351 DOWN 6 -27421351 0 255 -~~~ -~~~ -27421370 0 254 -~~~ -~~~ -27421372 0 252 -~~~ -~~~ -27421374 0 248 -~~~ -~~~ -27421376 0 240 -~~~ -~~~ -27421377 0 224 -~~~ -~~~ -27421379 0 192 -~~~ -~~~ -27421381 0 128 -~~~ -~~~ -27421383 0 0 -~~~ -~~~ -27421385 0 512 -27421386 homeCount = 73 -27421386 waitCount = 29 -27421387 ripCount = 29 -27421387 locktype1 = 1 -27421388 locktype2 = 6 -27421409 locktype3 = 9 -27421409 goalCount = 0 -27421410 goalTotal = 20 -27421410 otherCount = 37 -~~~ -27426117 UP 10 -27426118 waslock = 0 -27426117 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27426143 512 16777728 -~~~ -27426293 512 512 -27426356 DOWN 10 -27426355 0 512 -~~~ -~~~ -27426378 0 2560 -~~~ -~~~ -27426380 0 2048 -27426381 homeCount = 74 -27426381 waitCount = 29 -27426382 ripCount = 29 -27426382 locktype1 = 1 -27426383 locktype2 = 6 -27426383 locktype3 = 9 -27426384 goalCount = 0 -27426384 goalTotal = 20 -27426385 otherCount = 37 -~~~ -27426406 UP 10 -27426406 waslock = 0 -27426406 512 2048 -~~~ -27431666 DOWN 10 -27431666 0 2048 -~~~ -~~~ -~~~ -~~~ -27431691 homeCount = 74 -27431691 waitCount = 29 -27431692 ripCount = 29 -27431692 locktype1 = 1 -27431693 locktype2 = 6 -27431693 locktype3 = 9 -27431694 goalCount = 0 -27431694 goalTotal = 20 -27431695 otherCount = 37 -~~~ -27431705 UP 10 -27431705 waslock = 0 -27431704 512 2048 -~~~ -27431767 DOWN 10 -27431767 0 2048 -~~~ -~~~ -~~~ -~~~ -27431791 homeCount = 74 -27431792 waitCount = 29 -27431792 ripCount = 29 -27431793 locktype1 = 1 -27431793 locktype2 = 6 -27431794 locktype3 = 9 -27431794 goalCount = 0 -27431795 goalTotal = 20 -27431795 otherCount = 37 -~~~ -27434661 UP 12 -27434661 2048 2048 -27435489 DOWN 12 -27435489 0 2048 -27435670 UP 12 -27435670 2048 2048 -27437661 CLICK1 -27437661 CLICK2 -~~~ -~~~ -~~~ -27437680 2048 67110912 -~~~ -27437830 2048 2048 -27446647 DOWN 12 -27446647 0 2048 -~~~ -~~~ -27446668 0 0 -~~~ -~~~ -27446670 0 1 -~~~ -~~~ -27446672 0 3 -~~~ -~~~ -27446673 0 7 -~~~ -~~~ -27446675 0 15 -~~~ -~~~ -27446677 0 31 -~~~ -~~~ -27446679 0 63 -~~~ -~~~ -27446681 0 127 -~~~ -~~~ -27446683 0 255 -27446684 homeCount = 74 -27446684 waitCount = 30 -27446685 ripCount = 29 -27446685 locktype1 = 1 -27446686 locktype2 = 6 -27446706 locktype3 = 9 -27446707 goalCount = 0 -27446707 goalTotal = 20 -27446708 otherCount = 37 -~~~ -27446709 CURRENTGOAL IS [1] -~~~ -27449877 UP 3 -27449877 4 255 -~~~ -~~~ -27450268 DOWN 3 -27450268 0 255 -~~~ -~~~ -27450290 0 254 -~~~ -~~~ -27450292 0 252 -~~~ -~~~ -27450294 0 248 -~~~ -~~~ -27450296 0 240 -~~~ -~~~ -27450298 0 224 -~~~ -~~~ -27450299 0 192 -~~~ -~~~ -27450301 0 128 -~~~ -~~~ -27450303 0 0 -~~~ -~~~ -27450305 0 512 -27450306 homeCount = 74 -27450306 waitCount = 30 -27450307 ripCount = 29 -27450307 locktype1 = 1 -27450329 locktype2 = 6 -27450329 locktype3 = 9 -27450330 goalCount = 0 -27450330 goalTotal = 20 -27450331 otherCount = 38 -~~~ -27454527 UP 10 -27454527 waslock = 0 -27454527 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27454559 512 16777728 -~~~ -27454581 DOWN 10 -27454581 0 16777728 -~~~ -~~~ -27454604 0 16779776 -~~~ -~~~ -27454606 0 16779264 -27454607 homeCount = 75 -27454607 waitCount = 30 -27454608 ripCount = 29 -27454608 locktype1 = 1 -27454609 locktype2 = 6 -27454609 locktype3 = 9 -27454610 goalCount = 0 -27454610 goalTotal = 20 -27454611 otherCount = 38 -~~~ -27454632 UP 10 -27454633 waslock = 0 -27454632 512 16779264 -~~~ -27454709 512 2048 -27454756 DOWN 10 -27454756 0 2048 -~~~ -~~~ -~~~ -~~~ -27454777 homeCount = 75 -27454777 waitCount = 30 -27454778 ripCount = 29 -27454778 locktype1 = 1 -27454779 locktype2 = 6 -27454779 locktype3 = 9 -27454780 goalCount = 0 -27454780 goalTotal = 20 -27454781 otherCount = 38 -~~~ -27454826 UP 10 -27454826 waslock = 0 -27454826 512 2048 -~~~ -27458766 DOWN 10 -27458766 0 2048 -~~~ -~~~ -~~~ -~~~ -27458789 homeCount = 75 -27458789 waitCount = 30 -27458790 ripCount = 29 -27458790 locktype1 = 1 -27458791 locktype2 = 6 -27458791 locktype3 = 9 -27458792 goalCount = 0 -27458792 goalTotal = 20 -27458793 otherCount = 38 -~~~ -27460839 UP 12 -27460839 2048 2048 -27460866 DOWN 12 -27460866 0 2048 -27460888 UP 12 -27460888 2048 2048 -27465667 DOWN 12 -27465667 0 2048 -27465757 UP 12 -27465757 2048 2048 -27468839 CLICK1 -27468839 CLICK2 -~~~ -~~~ -~~~ -27468867 2048 67110912 -~~~ -27469017 2048 2048 -27475004 DOWN 12 -27475004 0 2048 -~~~ -~~~ -27475026 0 0 -~~~ -~~~ -27475027 0 1 -~~~ -~~~ -27475029 0 3 -~~~ -~~~ -27475031 0 7 -~~~ -~~~ -27475033 0 15 -~~~ -~~~ -27475035 0 31 -~~~ -~~~ -27475037 0 63 -~~~ -~~~ -27475038 0 127 -~~~ -~~~ -27475040 0 255 -27475041 homeCount = 75 -27475042 waitCount = 31 -27475042 ripCount = 29 -27475043 locktype1 = 1 -27475043 locktype2 = 6 -27475064 locktype3 = 9 -27475065 goalCount = 0 -27475065 goalTotal = 20 -27475066 otherCount = 38 -~~~ -27475067 CURRENTGOAL IS [1] -~~~ -27475072 UP 12 -27475072 2048 255 -27475103 DOWN 12 -27475103 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27475142 homeCount = 75 -27475143 waitCount = 31 -27475143 ripCount = 29 -27475144 locktype1 = 1 -27475144 locktype2 = 6 -27475145 locktype3 = 9 -27475145 goalCount = 0 -27475146 goalTotal = 20 -27475147 otherCount = 38 -~~~ -27475148 CURRENTGOAL IS [1] -~~~ -27482092 UP 2 -27482092 2 255 -~~~ -~~~ -27482690 DOWN 2 -27482690 0 255 -~~~ -~~~ -27482709 0 254 -~~~ -~~~ -27482711 0 252 -~~~ -~~~ -27482712 0 248 -~~~ -~~~ -27482714 0 240 -~~~ -~~~ -27482716 0 224 -~~~ -~~~ -27482718 0 192 -~~~ -~~~ -27482720 0 128 -~~~ -~~~ -27482722 0 0 -~~~ -~~~ -27482723 0 512 -27482724 homeCount = 75 -27482725 waitCount = 31 -27482725 ripCount = 29 -27482726 locktype1 = 1 -27482747 locktype2 = 6 -27482748 locktype3 = 9 -27482748 goalCount = 0 -27482749 goalTotal = 20 -27482749 otherCount = 39 -~~~ -27487605 UP 10 -27487606 waslock = 0 -27487605 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27487635 512 16777728 -~~~ -27487754 DOWN 10 -27487754 0 16777728 -~~~ -~~~ -27487779 0 16778752 -~~~ -~~~ -27487781 0 16778240 -27487782 homeCount = 76 -27487782 waitCount = 31 -27487783 ripCount = 29 -27487783 locktype1 = 1 -27487784 locktype2 = 6 -27487784 locktype3 = 9 -27487785 goalCount = 0 -27487785 goalTotal = 20 -27487786 otherCount = 39 -~~~ -27487807 0 1024 -27487838 UP 10 -27487838 waslock = 0 -27487838 512 1024 -~~~ -27487993 DOWN 10 -27487993 0 1024 -27488009 UP 10 -27488009 waslock = 0 -27488009 512 1024 -~~~ -~~~ -~~~ -~~~ -27488022 homeCount = 76 -27488022 waitCount = 31 -27488023 ripCount = 29 -27488023 locktype1 = 1 -27488024 locktype2 = 6 -27488024 locktype3 = 9 -27488025 goalCount = 0 -27488025 goalTotal = 20 -27488026 otherCount = 39 -~~~ -~~~ -27492613 DOWN 10 -27492613 0 1024 -~~~ -~~~ -~~~ -~~~ -27492643 homeCount = 76 -27492644 waitCount = 31 -27492644 ripCount = 29 -27492645 locktype1 = 1 -27492645 locktype2 = 6 -27492646 locktype3 = 9 -27492646 goalCount = 0 -27492647 goalTotal = 20 -27492647 otherCount = 39 -~~~ -27492656 UP 10 -27492656 waslock = 0 -27492656 512 1024 -~~~ -27492718 DOWN 10 -27492718 0 1024 -~~~ -~~~ -~~~ -~~~ -27492751 homeCount = 76 -27492752 waitCount = 31 -27492752 ripCount = 29 -27492753 locktype1 = 1 -27492753 locktype2 = 6 -27492754 locktype3 = 9 -27492754 goalCount = 0 -27492755 goalTotal = 20 -27492755 otherCount = 39 -~~~ -27495022 UP 11 -27495022 1024 1024 -27497784 DOWN 11 -27497784 0 1024 -27497812 UP 11 -27497812 1024 1024 -27498522 BEEP1 -27498522 BEEP2 -~~~ -~~~ -~~~ -27498543 1024 33555456 -~~~ -27498693 1024 1024 -27505621 DOWN 11 -27505621 0 1024 -~~~ -~~~ -27505642 0 0 -~~~ -~~~ -27505644 0 1 -~~~ -~~~ -27505646 0 3 -~~~ -~~~ -27505647 0 7 -~~~ -~~~ -27505649 0 15 -~~~ -~~~ -27505651 0 31 -~~~ -~~~ -27505653 0 63 -~~~ -~~~ -27505655 0 127 -~~~ -~~~ -27505657 0 255 -27505658 homeCount = 76 -27505658 waitCount = 31 -27505659 ripCount = 30 -27505659 locktype1 = 1 -27505660 locktype2 = 6 -27505681 locktype3 = 9 -27505681 goalCount = 0 -27505682 goalTotal = 20 -27505682 otherCount = 39 -~~~ -27505683 CURRENTGOAL IS [1] -~~~ -27509309 UP 7 -27509309 64 255 -27509329 DOWN 7 -27509329 0 255 -~~~ -~~~ -~~~ -~~~ -27509353 0 254 -~~~ -~~~ -27509355 0 252 -~~~ -~~~ -27509356 0 248 -~~~ -~~~ -27509358 0 240 -~~~ -~~~ -27509360 0 224 -~~~ -~~~ -27509362 0 192 -~~~ -~~~ -27509364 0 128 -~~~ -~~~ -27509366 0 0 -~~~ -~~~ -27509367 0 512 -27509368 homeCount = 76 -27509369 waitCount = 31 -27509369 ripCount = 30 -27509370 locktype1 = 1 -27509370 locktype2 = 6 -27509391 locktype3 = 9 -27509392 goalCount = 0 -27509392 goalTotal = 20 -27509393 otherCount = 40 -~~~ -27509408 64 512 -27510460 DOWN 7 -27510460 0 512 -27515208 UP 10 -27515208 waslock = 0 -27515208 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27515238 512 16777728 -~~~ -27515387 512 512 -27515447 DOWN 10 -27515447 0 512 -~~~ -~~~ -27515474 0 1536 -~~~ -~~~ -27515476 0 1024 -27515477 homeCount = 77 -27515477 waitCount = 31 -27515478 ripCount = 30 -27515478 locktype1 = 1 -27515479 locktype2 = 6 -27515479 locktype3 = 9 -27515480 goalCount = 0 -27515480 goalTotal = 20 -27515481 otherCount = 40 -~~~ -27515502 UP 10 -27515502 waslock = 0 -27515502 512 1024 -~~~ -27519901 DOWN 10 -27519901 0 1024 -27519912 UP 10 -27519912 waslock = 0 -27519912 512 1024 -~~~ -~~~ -~~~ -~~~ -27519937 homeCount = 77 -27519937 waitCount = 31 -27519938 ripCount = 30 -27519938 locktype1 = 1 -27519939 locktype2 = 6 -27519939 locktype3 = 9 -27519940 goalCount = 0 -27519940 goalTotal = 20 -27519941 otherCount = 40 -~~~ -~~~ -27520005 DOWN 10 -27520005 0 1024 -~~~ -~~~ -~~~ -~~~ -27520037 homeCount = 77 -27520037 waitCount = 31 -27520038 ripCount = 30 -27520038 locktype1 = 1 -27520039 locktype2 = 6 -27520039 locktype3 = 9 -27520040 goalCount = 0 -27520040 goalTotal = 20 -27520041 otherCount = 40 -~~~ -27522612 UP 11 -27522612 1024 1024 -27526612 BEEP1 -27526612 BEEP2 -~~~ -~~~ -~~~ -27526634 1024 33555456 -~~~ -27526784 1024 1024 -27534399 DOWN 11 -27534399 0 1024 -~~~ -~~~ -27534424 0 0 -~~~ -~~~ -27534425 0 1 -~~~ -~~~ -27534427 0 3 -~~~ -~~~ -27534429 0 7 -~~~ -~~~ -27534431 0 15 -~~~ -~~~ -27534433 0 31 -~~~ -~~~ -27534435 0 63 -~~~ -~~~ -27534436 0 127 -~~~ -~~~ -27534438 0 255 -27534439 homeCount = 77 -27534440 waitCount = 31 -27534440 ripCount = 31 -27534441 locktype1 = 1 -27534441 locktype2 = 6 -27534462 locktype3 = 9 -27534463 goalCount = 0 -27534463 goalTotal = 20 -27534464 otherCount = 40 -~~~ -27534465 CURRENTGOAL IS [1] -~~~ -27539259 UP 5 -27539259 16 255 -~~~ -~~~ -27539345 DOWN 5 -27539345 0 255 -~~~ -~~~ -27539365 0 254 -~~~ -~~~ -27539366 0 252 -~~~ -~~~ -27539368 0 248 -~~~ -~~~ -27539370 0 240 -~~~ -~~~ -27539372 0 224 -~~~ -~~~ -27539374 0 192 -~~~ -~~~ -27539375 0 128 -~~~ -~~~ -27539377 0 0 -~~~ -~~~ -27539379 0 512 -27539380 homeCount = 77 -27539381 waitCount = 31 -27539381 ripCount = 31 -27539382 locktype1 = 1 -27539382 locktype2 = 6 -27539403 locktype3 = 9 -27539404 goalCount = 0 -27539404 goalTotal = 20 -27539405 otherCount = 41 -~~~ -27539853 16 512 -27540465 DOWN 5 -27540465 0 512 -27540535 16 512 -27540559 DOWN 5 -27540559 0 512 -27545443 UP 10 -27545443 waslock = 0 -27545442 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27545472 512 16777728 -~~~ -27545622 512 512 -27545710 DOWN 10 -27545710 0 512 -~~~ -~~~ -27545737 0 1536 -~~~ -~~~ -27545739 0 1024 -27545740 homeCount = 78 -27545741 waitCount = 31 -27545741 ripCount = 31 -27545742 locktype1 = 1 -27545742 locktype2 = 6 -27545743 locktype3 = 9 -27545743 goalCount = 0 -27545744 goalTotal = 20 -27545744 otherCount = 41 -~~~ -27545765 UP 10 -27545766 waslock = 0 -27545765 512 1024 -~~~ -27552068 DOWN 10 -27552068 0 1024 -~~~ -~~~ -~~~ -~~~ -27552094 homeCount = 78 -27552095 waitCount = 31 -27552095 ripCount = 31 -27552096 locktype1 = 1 -27552096 locktype2 = 6 -27552097 locktype3 = 9 -27552097 goalCount = 0 -27552098 goalTotal = 20 -27552098 otherCount = 41 -~~~ -27552127 UP 10 -27552127 waslock = 0 -27552127 512 1024 -~~~ -27552162 DOWN 10 -27552162 0 1024 -~~~ -~~~ -~~~ -~~~ -27552191 homeCount = 78 -27552191 waitCount = 31 -27552192 ripCount = 31 -27552192 locktype1 = 1 -27552193 locktype2 = 6 -27552193 locktype3 = 9 -27552194 goalCount = 0 -27552194 goalTotal = 20 -27552195 otherCount = 41 -~~~ -27555522 UP 11 -27555522 1024 1024 -27555840 DOWN 11 -27555840 0 1024 -27555878 UP 11 -27555878 1024 1024 -27555985 DOWN 11 -27555985 0 1024 -27556185 LOCKOUT 3 -~~~ -27556203 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -27556206 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27561528 UP 11 -27561528 1024 0 -27561696 DOWN 11 -27561696 0 0 -27569980 UP 1 -27569980 1 0 -27570625 DOWN 1 -27570625 0 0 -27570643 1 0 -27570978 DOWN 1 -27570978 0 0 -27579623 512 0 -27579824 0 0 -27581203 LOCKEND -~~~ -~~~ -~~~ -27581224 0 512 -27582044 UP 10 -27582044 waslock = 0 -27582044 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27582081 512 16777728 -~~~ -27582231 512 512 -27582274 DOWN 10 -27582274 0 512 -~~~ -~~~ -27582292 0 2560 -~~~ -~~~ -27582294 0 2048 -27582295 homeCount = 79 -27582295 waitCount = 31 -27582296 ripCount = 31 -27582296 locktype1 = 1 -27582297 locktype2 = 6 -27582297 locktype3 = 10 -27582298 goalCount = 0 -27582298 goalTotal = 20 -27582299 otherCount = 41 -~~~ -27582320 UP 10 -27582321 waslock = 0 -27582320 512 2048 -~~~ -27582472 DOWN 10 -27582472 0 2048 -~~~ -~~~ -~~~ -~~~ -27582495 homeCount = 79 -27582495 waitCount = 31 -27582496 ripCount = 31 -27582496 locktype1 = 1 -27582497 locktype2 = 6 -27582497 locktype3 = 10 -27582498 goalCount = 0 -27582498 goalTotal = 20 -27582499 otherCount = 41 -~~~ -27582502 UP 10 -27582503 waslock = 0 -27582502 512 2048 -~~~ -27587012 DOWN 10 -27587012 0 2048 -27587023 UP 10 -27587024 waslock = 0 -27587023 512 2048 -~~~ -~~~ -~~~ -~~~ -27587035 homeCount = 79 -27587035 waitCount = 31 -27587036 ripCount = 31 -27587036 locktype1 = 1 -27587037 locktype2 = 6 -27587037 locktype3 = 10 -27587038 goalCount = 0 -27587038 goalTotal = 20 -27587039 otherCount = 41 -~~~ -~~~ -27587107 DOWN 10 -27587107 0 2048 -~~~ -~~~ -~~~ -~~~ -27587134 homeCount = 79 -27587135 waitCount = 31 -27587135 ripCount = 31 -27587136 locktype1 = 1 -27587136 locktype2 = 6 -27587137 locktype3 = 10 -27587137 goalCount = 0 -27587138 goalTotal = 20 -27587139 otherCount = 41 -~~~ -27589509 UP 12 -27589509 2048 2048 -27591426 DOWN 12 -27591426 0 2048 -27591493 UP 12 -27591493 2048 2048 -27595563 DOWN 12 -27595563 0 2048 -27595758 UP 12 -27595758 2048 2048 -27597010 CLICK1 -27597010 CLICK2 -~~~ -~~~ -~~~ -27597035 2048 67110912 -~~~ -27597185 2048 2048 -27603647 DOWN 12 -27603647 0 2048 -~~~ -~~~ -27603673 0 0 -~~~ -~~~ -27603675 0 1 -~~~ -~~~ -27603677 0 3 -~~~ -~~~ -27603679 0 7 -~~~ -~~~ -27603680 0 15 -~~~ -~~~ -27603682 0 31 -~~~ -~~~ -27603684 0 63 -~~~ -~~~ -27603686 0 127 -~~~ -~~~ -27603688 0 255 -27603689 homeCount = 79 -27603689 waitCount = 32 -27603690 ripCount = 31 -27603690 locktype1 = 1 -27603691 locktype2 = 6 -27603712 locktype3 = 10 -27603712 goalCount = 0 -27603713 goalTotal = 20 -27603713 otherCount = 41 -~~~ -27603715 CURRENTGOAL IS [1] -~~~ -27607433 UP 4 -27607433 8 255 -~~~ -~~~ -27608146 DOWN 4 -27608146 0 255 -~~~ -~~~ -27608171 0 254 -~~~ -~~~ -27608173 0 252 -~~~ -~~~ -27608174 0 248 -~~~ -~~~ -27608176 0 240 -~~~ -~~~ -27608178 0 224 -~~~ -~~~ -27608180 0 192 -~~~ -~~~ -27608182 0 128 -~~~ -~~~ -27608184 0 0 -~~~ -~~~ -27608186 0 512 -27608186 homeCount = 79 -27608187 waitCount = 32 -27608188 ripCount = 31 -27608188 locktype1 = 1 -27608209 locktype2 = 6 -27608210 locktype3 = 10 -27608210 goalCount = 0 -27608211 goalTotal = 20 -27608211 otherCount = 42 -~~~ -27613875 UP 10 -27613875 waslock = 0 -27613875 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27613908 512 16777728 -~~~ -27613925 DOWN 10 -27613925 0 16777728 -~~~ -~~~ -27613944 0 16779776 -~~~ -~~~ -27613946 0 16779264 -27613947 homeCount = 80 -27613948 waitCount = 32 -27613948 ripCount = 31 -27613949 locktype1 = 1 -27613949 locktype2 = 6 -27613950 locktype3 = 10 -27613950 goalCount = 0 -27613951 goalTotal = 20 -27613951 otherCount = 42 -~~~ -27613972 UP 10 -27613973 waslock = 0 -27613972 512 16779264 -~~~ -27614058 512 2048 -27614058 DOWN 10 -27614058 0 2048 -~~~ -~~~ -~~~ -~~~ -27614087 homeCount = 80 -27614087 waitCount = 32 -27614088 ripCount = 31 -27614088 locktype1 = 1 -27614089 locktype2 = 6 -27614089 locktype3 = 10 -27614090 goalCount = 0 -27614090 goalTotal = 20 -27614091 otherCount = 42 -~~~ -27614158 UP 10 -27614158 waslock = 0 -27614158 512 2048 -~~~ -27620143 DOWN 10 -27620143 0 2048 -~~~ -~~~ -~~~ -~~~ -27620166 homeCount = 80 -27620166 waitCount = 32 -27620167 ripCount = 31 -27620167 locktype1 = 1 -27620168 locktype2 = 6 -27620168 locktype3 = 10 -27620169 goalCount = 0 -27620169 goalTotal = 20 -27620170 otherCount = 42 -~~~ -27623236 UP 12 -27623236 2048 2048 -27625528 DOWN 12 -27625527 0 2048 -27625543 UP 12 -27625543 2048 2048 -27625606 DOWN 12 -27625606 0 2048 -27625661 UP 12 -27625661 2048 2048 -27626237 CLICK1 -27626237 CLICK2 -~~~ -~~~ -~~~ -27626266 2048 67110912 -~~~ -27626416 2048 2048 -27631910 DOWN 12 -27631910 0 2048 -~~~ -27631934 UP 12 -27631934 2048 2048 -~~~ -~~~ -27631936 2048 0 -~~~ -~~~ -27631937 2048 1 -~~~ -27631938 2048 3 -~~~ -~~~ -27631940 2048 7 -~~~ -~~~ -27631942 2048 15 -~~~ -~~~ -27631943 2048 31 -~~~ -~~~ -27631945 2048 63 -~~~ -~~~ -27631947 2048 127 -~~~ -~~~ -27631949 2048 255 -27631950 homeCount = 80 -27631971 waitCount = 33 -27631971 ripCount = 31 -27631972 locktype1 = 1 -27631972 locktype2 = 6 -27631973 locktype3 = 10 -27631973 goalCount = 0 -27631974 goalTotal = 20 -27631974 otherCount = 42 -~~~ -27631975 CURRENTGOAL IS [1] -~~~ -27632012 DOWN 12 -27632012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27632045 homeCount = 80 -27632045 waitCount = 33 -27632046 ripCount = 31 -27632047 locktype1 = 1 -27632047 locktype2 = 6 -27632048 locktype3 = 10 -27632048 goalCount = 0 -27632049 goalTotal = 20 -27632049 otherCount = 42 -~~~ -27632050 CURRENTGOAL IS [1] -~~~ -27632101 UP 12 -27632101 2048 255 -27632109 DOWN 12 -27632109 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27632148 homeCount = 80 -27632149 waitCount = 33 -27632150 ripCount = 31 -27632150 locktype1 = 1 -27632151 locktype2 = 6 -27632151 locktype3 = 10 -27632152 goalCount = 0 -27632152 goalTotal = 20 -27632153 otherCount = 42 -~~~ -27632154 CURRENTGOAL IS [1] -~~~ -27635610 UP 3 -27635610 4 255 -~~~ -~~~ -27636256 DOWN 3 -27636256 0 255 -~~~ -~~~ -27636278 0 254 -~~~ -~~~ -27636280 0 252 -~~~ -~~~ -27636282 0 248 -~~~ -~~~ -27636284 0 240 -~~~ -~~~ -27636286 0 224 -~~~ -~~~ -27636287 0 192 -~~~ -~~~ -27636289 0 128 -~~~ -~~~ -27636291 0 0 -~~~ -~~~ -27636293 0 512 -27636294 homeCount = 80 -27636294 waitCount = 33 -27636295 ripCount = 31 -27636295 locktype1 = 1 -27636317 locktype2 = 6 -27636317 locktype3 = 10 -27636318 goalCount = 0 -27636318 goalTotal = 20 -27636319 otherCount = 43 -~~~ -27639801 UP 10 -27639801 waslock = 0 -27639801 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27639826 512 16777728 -~~~ -27639833 DOWN 10 -27639833 0 16777728 -~~~ -~~~ -27639856 0 16779776 -~~~ -~~~ -27639858 0 16779264 -27639859 homeCount = 81 -27639860 waitCount = 33 -27639860 ripCount = 31 -27639861 locktype1 = 1 -27639861 locktype2 = 6 -27639862 locktype3 = 10 -27639862 goalCount = 0 -27639863 goalTotal = 20 -27639863 otherCount = 43 -~~~ -27639884 UP 10 -27639884 waslock = 0 -27639884 512 16779264 -~~~ -27639976 512 2048 -27640009 DOWN 10 -27640009 0 2048 -27640033 UP 10 -27640033 waslock = 0 -27640033 512 2048 -~~~ -~~~ -~~~ -~~~ -27640042 homeCount = 81 -27640042 waitCount = 33 -27640043 ripCount = 31 -27640043 locktype1 = 1 -27640044 locktype2 = 6 -27640044 locktype3 = 10 -27640045 goalCount = 0 -27640045 goalTotal = 20 -27640046 otherCount = 43 -~~~ -~~~ -27644807 DOWN 10 -27644807 0 2048 -~~~ -~~~ -~~~ -~~~ -27644834 homeCount = 81 -27644834 waitCount = 33 -27644835 ripCount = 31 -27644835 locktype1 = 1 -27644836 locktype2 = 6 -27644836 locktype3 = 10 -27644837 goalCount = 0 -27644837 goalTotal = 20 -27644838 otherCount = 43 -~~~ -27646984 UP 12 -27646984 2048 2048 -27651484 CLICK1 -27651484 CLICK2 -~~~ -~~~ -~~~ -27651502 2048 67110912 -~~~ -27651652 2048 2048 -27656240 DOWN 12 -27656240 0 2048 -27656249 UP 12 -27656249 2048 2048 -~~~ -~~~ -27656262 2048 0 -~~~ -~~~ -27656264 2048 1 -~~~ -~~~ -27656266 2048 3 -~~~ -~~~ -27656268 2048 7 -~~~ -~~~ -27656270 2048 15 -~~~ -~~~ -27656271 2048 31 -~~~ -~~~ -27656273 2048 63 -~~~ -~~~ -27656275 2048 127 -~~~ -~~~ -27656277 2048 255 -27656278 homeCount = 81 -27656278 waitCount = 34 -27656279 ripCount = 31 -27656280 locktype1 = 1 -27656301 locktype2 = 6 -27656301 locktype3 = 10 -27656302 goalCount = 0 -27656302 goalTotal = 20 -27656303 otherCount = 43 -~~~ -27656304 CURRENTGOAL IS [1] -~~~ -27656327 DOWN 12 -27656327 0 255 -27656335 UP 12 -27656335 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656365 DOWN 12 -27656365 0 255 -~~~ -~~~ -~~~ -27656369 homeCount = 81 -27656369 waitCount = 34 -27656370 ripCount = 31 -27656371 locktype1 = 1 -27656371 locktype2 = 6 -27656372 locktype3 = 10 -27656372 goalCount = 0 -27656373 goalTotal = 20 -27656373 otherCount = 43 -~~~ -27656374 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656412 homeCount = 81 -27656413 waitCount = 34 -27656413 ripCount = 31 -27656414 locktype1 = 1 -27656414 locktype2 = 6 -27656415 locktype3 = 10 -27656415 goalCount = 0 -27656416 goalTotal = 20 -27656416 otherCount = 43 -~~~ -27656417 CURRENTGOAL IS [1] -~~~ -27656456 UP 12 -27656456 2048 255 -27656502 DOWN 12 -27656502 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656539 homeCount = 81 -27656540 waitCount = 34 -27656540 ripCount = 31 -27656541 locktype1 = 1 -27656541 locktype2 = 6 -27656542 locktype3 = 10 -27656542 goalCount = 0 -27656543 goalTotal = 20 -27656543 otherCount = 43 -~~~ -27656544 CURRENTGOAL IS [1] -~~~ -27656604 UP 12 -27656604 2048 255 -27656632 DOWN 12 -27656632 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656669 homeCount = 81 -27656670 waitCount = 34 -27656670 ripCount = 31 -27656671 locktype1 = 1 -27656671 locktype2 = 6 -27656672 locktype3 = 10 -27656672 goalCount = 0 -27656673 goalTotal = 20 -27656673 otherCount = 43 -~~~ -27656674 CURRENTGOAL IS [1] -~~~ -27656745 UP 12 -27656745 2048 255 -27656777 DOWN 12 -27656776 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656824 homeCount = 81 -27656825 waitCount = 34 -27656825 ripCount = 31 -27656826 locktype1 = 1 -27656826 locktype2 = 6 -27656827 locktype3 = 10 -27656827 goalCount = 0 -27656828 goalTotal = 20 -27656828 otherCount = 43 -~~~ -27656829 CURRENTGOAL IS [1] -~~~ -27656904 UP 12 -27656904 2048 255 -27656933 DOWN 12 -27656933 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656975 homeCount = 81 -27656975 waitCount = 34 -27656976 ripCount = 31 -27656976 locktype1 = 1 -27656977 locktype2 = 6 -27656977 locktype3 = 10 -27656978 goalCount = 0 -27656978 goalTotal = 20 -27656979 otherCount = 43 -~~~ -27656980 CURRENTGOAL IS [1] -~~~ -27657042 UP 12 -27657042 2048 255 -27657070 DOWN 12 -27657070 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657106 homeCount = 81 -27657106 waitCount = 34 -27657107 ripCount = 31 -27657107 locktype1 = 1 -27657108 locktype2 = 6 -27657108 locktype3 = 10 -27657109 goalCount = 0 -27657109 goalTotal = 20 -27657110 otherCount = 43 -~~~ -27657111 CURRENTGOAL IS [1] -~~~ -27657177 UP 12 -27657177 2048 255 -27657218 DOWN 12 -27657217 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657256 homeCount = 81 -27657256 waitCount = 34 -27657257 ripCount = 31 -27657257 locktype1 = 1 -27657258 locktype2 = 6 -27657258 locktype3 = 10 -27657259 goalCount = 0 -27657259 goalTotal = 20 -27657260 otherCount = 43 -~~~ -27657261 CURRENTGOAL IS [1] -~~~ -27657282 UP 12 -27657282 2048 255 -27657301 DOWN 12 -27657301 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657335 homeCount = 81 -27657335 waitCount = 34 -27657336 ripCount = 31 -27657337 locktype1 = 1 -27657337 locktype2 = 6 -27657338 locktype3 = 10 -27657338 goalCount = 0 -27657339 goalTotal = 20 -27657339 otherCount = 43 -~~~ -27657340 CURRENTGOAL IS [1] -~~~ -27657361 UP 12 -27657361 2048 255 -27657380 DOWN 12 -27657380 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657415 homeCount = 81 -27657415 waitCount = 34 -27657416 ripCount = 31 -27657416 locktype1 = 1 -27657417 locktype2 = 6 -27657417 locktype3 = 10 -27657418 goalCount = 0 -27657418 goalTotal = 20 -27657419 otherCount = 43 -~~~ -27657420 CURRENTGOAL IS [1] -~~~ -27657492 UP 12 -27657492 2048 255 -27657528 DOWN 12 -27657528 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657567 homeCount = 81 -27657568 waitCount = 34 -27657568 ripCount = 31 -27657569 locktype1 = 1 -27657569 locktype2 = 6 -27657570 locktype3 = 10 -27657570 goalCount = 0 -27657571 goalTotal = 20 -27657571 otherCount = 43 -~~~ -27657572 CURRENTGOAL IS [1] -~~~ -27657594 UP 12 -27657593 2048 255 -27659986 DOWN 12 -27659986 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27660019 homeCount = 81 -27660019 waitCount = 34 -27660020 ripCount = 31 -27660020 locktype1 = 1 -27660021 locktype2 = 6 -27660021 locktype3 = 10 -27660022 goalCount = 0 -27660022 goalTotal = 20 -27660023 otherCount = 43 -~~~ -27660024 CURRENTGOAL IS [1] -~~~ -27660045 UP 12 -27660045 2048 255 -27660067 DOWN 12 -27660067 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27660108 homeCount = 81 -27660108 waitCount = 34 -27660109 ripCount = 31 -27660109 locktype1 = 1 -27660110 locktype2 = 6 -27660110 locktype3 = 10 -27660111 goalCount = 0 -27660111 goalTotal = 20 -27660112 otherCount = 43 -~~~ -27660113 CURRENTGOAL IS [1] -~~~ -27663773 UP 1 -27663773 1 255 -~~~ -~~~ -27663794 outer reward -~~~ -27663794 1 65791 -~~~ -~~~ -27664244 1 255 -27674160 DOWN 1 -27674160 0 255 -~~~ -~~~ -27674180 0 254 -~~~ -~~~ -27674182 0 252 -~~~ -~~~ -27674184 0 248 -~~~ -~~~ -27674186 0 240 -~~~ -~~~ -27674188 0 224 -~~~ -~~~ -27674189 0 192 -~~~ -~~~ -27674191 0 128 -~~~ -~~~ -27674193 0 0 -~~~ -~~~ -27674195 0 512 -27674196 homeCount = 81 -27674196 waitCount = 34 -27674197 ripCount = 31 -27674197 locktype1 = 1 -27674198 locktype2 = 6 -27674219 locktype3 = 10 -27674220 goalCount = 1 -27674220 goalTotal = 21 -27674221 otherCount = 43 -~~~ -27674221 1 512 -27674272 DOWN 1 -27674272 0 512 -27678680 UP 10 -27678680 waslock = 0 -27678679 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27678707 512 16777728 -~~~ -27678857 512 512 -27682040 DOWN 10 -27682040 0 512 -~~~ -~~~ -27682061 0 1536 -~~~ -~~~ -27682062 0 1024 -27682063 homeCount = 82 -27682064 waitCount = 34 -27682065 ripCount = 31 -27682065 locktype1 = 1 -27682066 locktype2 = 6 -27682066 locktype3 = 10 -27682067 goalCount = 1 -27682067 goalTotal = 21 -27682068 otherCount = 43 -~~~ -27682089 UP 10 -27682089 waslock = 0 -27682089 512 1024 -~~~ -27682132 DOWN 10 -27682132 0 1024 -~~~ -~~~ -~~~ -~~~ -27682163 homeCount = 82 -27682164 waitCount = 34 -27682164 ripCount = 31 -27682165 locktype1 = 1 -27682165 locktype2 = 6 -27682166 locktype3 = 10 -27682166 goalCount = 1 -27682167 goalTotal = 21 -27682167 otherCount = 43 -~~~ -27684669 UP 11 -27684669 1024 1024 -27684805 DOWN 11 -27684805 0 1024 -27684823 UP 11 -27684823 1024 1024 -27692669 BEEP1 -27692669 BEEP2 -~~~ -~~~ -~~~ -27692694 1024 33555456 -~~~ -27692843 1024 1024 -27699461 DOWN 11 -27699461 0 1024 -~~~ -~~~ -27699484 0 0 -~~~ -~~~ -27699486 0 1 -~~~ -~~~ -27699488 0 3 -~~~ -~~~ -27699489 0 7 -~~~ -~~~ -27699491 0 15 -~~~ -~~~ -27699493 0 31 -~~~ -~~~ -27699495 0 63 -~~~ -~~~ -27699497 0 127 -~~~ -~~~ -27699498 0 255 -27699499 homeCount = 82 -27699500 waitCount = 34 -27699501 ripCount = 32 -27699501 locktype1 = 1 -27699502 locktype2 = 6 -27699523 locktype3 = 10 -27699523 goalCount = 1 -27699524 goalTotal = 21 -27699524 otherCount = 43 -~~~ -27699525 CURRENTGOAL IS [1] -~~~ -27699526 UP 11 -27699526 1024 255 -27699618 DOWN 11 -27699618 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27699659 homeCount = 82 -27699659 waitCount = 34 -27699660 ripCount = 32 -27699660 locktype1 = 1 -27699661 locktype2 = 6 -27699661 locktype3 = 10 -27699662 goalCount = 1 -27699662 goalTotal = 21 -27699663 otherCount = 43 -~~~ -27699664 CURRENTGOAL IS [1] -~~~ -27699703 UP 11 -27699703 1024 255 -27701657 DOWN 11 -27701657 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27701692 homeCount = 82 -27701692 waitCount = 34 -27701693 ripCount = 32 -27701693 locktype1 = 1 -27701694 locktype2 = 6 -27701694 locktype3 = 10 -27701695 goalCount = 1 -27701695 goalTotal = 21 -27701696 otherCount = 43 -~~~ -27701697 CURRENTGOAL IS [1] -~~~ -27704975 UP 7 -27704975 64 255 -~~~ -~~~ -27705020 DOWN 7 -27705020 0 255 -~~~ -~~~ -27705045 0 254 -~~~ -~~~ -27705047 0 252 -~~~ -~~~ -27705049 0 248 -~~~ -~~~ -27705051 0 240 -~~~ -~~~ -27705053 0 224 -~~~ -~~~ -27705054 0 192 -~~~ -~~~ -27705056 0 128 -~~~ -~~~ -27705058 0 0 -~~~ -~~~ -27705060 0 512 -27705061 homeCount = 82 -27705062 waitCount = 34 -27705062 ripCount = 32 -27705063 locktype1 = 1 -27705063 locktype2 = 6 -27705084 locktype3 = 10 -27705084 goalCount = 1 -27705085 goalTotal = 21 -27705085 otherCount = 44 -~~~ -27705086 64 512 -27705608 DOWN 7 -27705608 0 512 -27709885 UP 10 -27709885 waslock = 0 -27709884 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27709910 512 16777728 -~~~ -27710060 512 512 -27710125 DOWN 10 -27710125 0 512 -27710138 UP 10 -27710139 waslock = 0 -27710138 512 512 -~~~ -~~~ -27710156 512 1536 -~~~ -~~~ -27710158 512 1024 -27710159 homeCount = 83 -27710160 waitCount = 34 -27710160 ripCount = 32 -27710161 locktype1 = 1 -27710161 locktype2 = 6 -27710162 locktype3 = 10 -27710162 goalCount = 1 -27710163 goalTotal = 21 -27710163 otherCount = 44 -~~~ -~~~ -27715361 DOWN 10 -27715361 0 1024 -~~~ -~~~ -~~~ -~~~ -27715381 homeCount = 83 -27715382 waitCount = 34 -27715382 ripCount = 32 -27715383 locktype1 = 1 -27715383 locktype2 = 6 -27715384 locktype3 = 10 -27715384 goalCount = 1 -27715385 goalTotal = 21 -27715385 otherCount = 44 -~~~ -27715396 UP 10 -27715396 waslock = 0 -27715396 512 1024 -~~~ -27715460 DOWN 10 -27715460 0 1024 -~~~ -~~~ -~~~ -~~~ -27715482 homeCount = 83 -27715483 waitCount = 34 -27715483 ripCount = 32 -27715484 locktype1 = 1 -27715484 locktype2 = 6 -27715485 locktype3 = 10 -27715485 goalCount = 1 -27715486 goalTotal = 21 -27715486 otherCount = 44 -~~~ -27718462 UP 11 -27718462 1024 1024 -27725622 DOWN 11 -27725622 0 1024 -27725640 UP 11 -27725639 1024 1024 -27725962 BEEP1 -27725962 BEEP2 -~~~ -~~~ -~~~ -27725991 1024 33555456 -~~~ -27726141 1024 1024 -27732734 DOWN 11 -27732734 0 1024 -~~~ -~~~ -27732758 0 0 -~~~ -~~~ -27732760 0 1 -~~~ -~~~ -27732761 0 3 -~~~ -~~~ -27732763 0 7 -~~~ -~~~ -27732765 0 15 -~~~ -~~~ -27732767 0 31 -~~~ -~~~ -27732769 0 63 -~~~ -~~~ -27732771 0 127 -~~~ -~~~ -27732772 0 255 -27732773 homeCount = 83 -27732774 waitCount = 34 -27732774 ripCount = 33 -27732775 locktype1 = 1 -27732775 locktype2 = 6 -27732796 locktype3 = 10 -27732797 goalCount = 1 -27732797 goalTotal = 21 -27732798 otherCount = 44 -~~~ -27732799 CURRENTGOAL IS [1] -~~~ -27732799 UP 11 -27732799 1024 255 -27732846 DOWN 11 -27732846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27732883 homeCount = 83 -27732883 waitCount = 34 -27732884 ripCount = 33 -27732884 locktype1 = 1 -27732885 locktype2 = 6 -27732885 locktype3 = 10 -27732886 goalCount = 1 -27732886 goalTotal = 21 -27732887 otherCount = 44 -~~~ -27732888 CURRENTGOAL IS [1] -~~~ -27732921 UP 11 -27732921 1024 255 -27732964 DOWN 11 -27732964 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27733006 homeCount = 83 -27733006 waitCount = 34 -27733007 ripCount = 33 -27733007 locktype1 = 1 -27733008 locktype2 = 6 -27733008 locktype3 = 10 -27733009 goalCount = 1 -27733009 goalTotal = 21 -27733010 otherCount = 44 -~~~ -27733011 CURRENTGOAL IS [1] -~~~ -27740748 UP 1 -27740748 1 255 -~~~ -~~~ -27740772 outer reward -~~~ -27740772 1 65791 -~~~ -~~~ -27741222 1 255 -27751154 DOWN 1 -27751154 0 255 -~~~ -~~~ -27751180 0 254 -~~~ -~~~ -27751182 0 252 -~~~ -~~~ -27751184 0 248 -~~~ -~~~ -27751186 0 240 -~~~ -~~~ -27751188 0 224 -~~~ -~~~ -27751189 0 192 -~~~ -~~~ -27751191 0 128 -~~~ -~~~ -27751193 0 0 -~~~ -~~~ -27751195 0 512 -27751196 homeCount = 83 -27751196 waitCount = 34 -27751197 ripCount = 33 -27751197 locktype1 = 1 -27751219 locktype2 = 6 -27751219 locktype3 = 10 -27751220 goalCount = 2 -27751220 goalTotal = 22 -27751221 otherCount = 44 -~~~ -27755454 UP 10 -27755454 waslock = 0 -27755454 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27755488 512 16777728 -~~~ -27755637 512 512 -27760423 DOWN 10 -27760423 0 512 -~~~ -~~~ -27760440 0 2560 -~~~ -~~~ -27760442 0 2048 -27760443 homeCount = 84 -27760444 waitCount = 34 -27760444 ripCount = 33 -27760445 locktype1 = 1 -27760445 locktype2 = 6 -27760446 locktype3 = 10 -27760446 goalCount = 2 -27760447 goalTotal = 22 -27760447 otherCount = 44 -~~~ -27760475 UP 10 -27760475 waslock = 0 -27760475 512 2048 -~~~ -27760523 DOWN 10 -27760523 0 2048 -~~~ -~~~ -~~~ -~~~ -27760554 homeCount = 84 -27760555 waitCount = 34 -27760555 ripCount = 33 -27760556 locktype1 = 1 -27760556 locktype2 = 6 -27760557 locktype3 = 10 -27760557 goalCount = 2 -27760558 goalTotal = 22 -27760559 otherCount = 44 -~~~ -27765567 UP 12 -27765567 2048 2048 -27768756 DOWN 12 -27768756 0 2048 -27768842 UP 12 -27768842 2048 2048 -27768908 DOWN 12 -27768908 0 2048 -27769091 UP 12 -27769091 2048 2048 -27769107 DOWN 12 -27769107 0 2048 -27769128 UP 12 -27769128 2048 2048 -27771567 CLICK1 -27771567 CLICK2 -~~~ -~~~ -~~~ -27771592 2048 67110912 -~~~ -27771742 2048 2048 -27776734 DOWN 12 -27776734 0 2048 -~~~ -~~~ -27776751 0 0 -~~~ -~~~ -27776753 0 1 -~~~ -~~~ -27776754 0 3 -~~~ -~~~ -27776756 0 7 -~~~ -~~~ -27776758 0 15 -~~~ -~~~ -27776760 0 31 -~~~ -~~~ -27776762 0 63 -~~~ -~~~ -27776764 0 127 -~~~ -~~~ -27776765 UP 12 -27776765 2048 255 -27776767 homeCount = 84 -27776767 waitCount = 35 -27776768 ripCount = 33 -27776768 locktype1 = 1 -27776789 locktype2 = 6 -27776790 locktype3 = 10 -27776790 goalCount = 2 -27776791 goalTotal = 22 -27776791 otherCount = 44 -~~~ -27776792 CURRENTGOAL IS [1] -~~~ -27776832 DOWN 12 -27776832 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27776867 homeCount = 84 -27776868 waitCount = 35 -27776869 ripCount = 33 -27776869 locktype1 = 1 -27776870 locktype2 = 6 -27776870 locktype3 = 10 -27776871 goalCount = 2 -27776871 goalTotal = 22 -27776872 otherCount = 44 -~~~ -27776873 CURRENTGOAL IS [1] -~~~ -27789324 UP 1 -27789324 1 255 -~~~ -~~~ -27789343 outer reward -~~~ -27789344 1 65791 -~~~ -~~~ -27789793 1 255 -27798609 DOWN 1 -27798609 0 255 -~~~ -~~~ -27798631 0 254 -~~~ -~~~ -27798633 0 252 -~~~ -~~~ -27798635 0 248 -~~~ -~~~ -27798637 0 240 -~~~ -~~~ -27798638 0 224 -~~~ -~~~ -27798640 0 192 -~~~ -~~~ -27798642 0 128 -~~~ -~~~ -27798644 0 0 -~~~ -~~~ -27798646 0 512 -27798647 homeCount = 84 -27798647 waitCount = 35 -27798648 ripCount = 33 -27798648 locktype1 = 1 -27798649 locktype2 = 6 -27798670 locktype3 = 10 -27798670 goalCount = 3 -27798671 goalTotal = 23 -27798671 otherCount = 44 -~~~ -27805587 UP 10 -27805587 waslock = 0 -27805587 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27805621 512 16777728 -~~~ -27805771 512 512 -27805806 DOWN 10 -27805806 0 512 -~~~ -27805822 UP 10 -27805822 waslock = 0 -27805822 512 512 -~~~ -~~~ -~~~ -27805825 512 2048 -27805826 homeCount = 85 -27805826 waitCount = 35 -27805827 ripCount = 33 -27805827 locktype1 = 1 -27805828 locktype2 = 6 -27805828 locktype3 = 10 -27805829 goalCount = 3 -27805849 goalTotal = 23 -27805850 otherCount = 44 -~~~ -~~~ -27811079 DOWN 10 -27811078 0 2048 -~~~ -~~~ -~~~ -~~~ -27811106 homeCount = 85 -27811107 waitCount = 35 -27811107 ripCount = 33 -27811108 locktype1 = 1 -27811108 locktype2 = 6 -27811109 locktype3 = 10 -27811109 goalCount = 3 -27811110 goalTotal = 23 -27811110 otherCount = 44 -~~~ -27811131 UP 10 -27811132 waslock = 0 -27811131 512 2048 -~~~ -27811175 DOWN 10 -27811175 0 2048 -~~~ -~~~ -~~~ -~~~ -27811202 homeCount = 85 -27811202 waitCount = 35 -27811203 ripCount = 33 -27811203 locktype1 = 1 -27811204 locktype2 = 6 -27811204 locktype3 = 10 -27811205 goalCount = 3 -27811205 goalTotal = 23 -27811206 otherCount = 44 -~~~ -27813456 UP 12 -27813456 2048 2048 -27815579 DOWN 12 -27815579 0 2048 -27815618 UP 12 -27815618 2048 2048 -27818639 DOWN 12 -27818639 0 2048 -27818723 UP 12 -27818723 2048 2048 -27821456 CLICK1 -27821456 CLICK2 -~~~ -~~~ -~~~ -27821480 2048 67110912 -~~~ -27821630 2048 2048 -27830770 DOWN 12 -27830770 0 2048 -~~~ -~~~ -27830788 0 0 -~~~ -~~~ -27830790 0 1 -~~~ -~~~ -27830792 0 3 -~~~ -~~~ -27830794 0 7 -~~~ -~~~ -27830796 0 15 -~~~ -~~~ -27830797 0 31 -~~~ -~~~ -27830799 0 63 -~~~ -~~~ -27830801 0 127 -~~~ -~~~ -27830803 0 255 -27830804 homeCount = 85 -27830805 waitCount = 36 -27830805 ripCount = 33 -27830806 locktype1 = 1 -27830806 locktype2 = 6 -27830827 locktype3 = 10 -27830828 goalCount = 3 -27830828 goalTotal = 23 -27830829 otherCount = 44 -~~~ -27830830 CURRENTGOAL IS [1] -~~~ -27836086 UP 1 -27836086 1 255 -~~~ -~~~ -27836109 outer reward -~~~ -27836110 1 65791 -~~~ -~~~ -27836346 DOWN 1 -27836346 0 65791 -~~~ -~~~ -27836368 0 65790 -~~~ -~~~ -27836369 0 65788 -~~~ -~~~ -27836371 0 65784 -~~~ -~~~ -27836373 0 65776 -~~~ -~~~ -27836375 0 65760 -~~~ -27836376 1 65760 -~~~ -~~~ -27836378 1 65728 -~~~ -27836379 1 65664 -~~~ -~~~ -27836381 1 65536 -~~~ -~~~ -27836382 1 66048 -27836383 homeCount = 85 -27836384 waitCount = 36 -27836405 ripCount = 33 -27836405 locktype1 = 1 -27836406 locktype2 = 6 -27836406 locktype3 = 10 -27836407 goalCount = 4 -27836407 goalTotal = 24 -27836408 otherCount = 44 -~~~ -27836559 1 512 -27845893 DOWN 1 -27845893 0 512 -27845965 1 512 -27846024 DOWN 1 -27846024 0 512 -27846085 1 512 -27846137 DOWN 1 -27846137 0 512 -27850834 UP 10 -27850834 waslock = 0 -27850834 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27850864 512 16777728 -~~~ -27851011 DOWN 10 -27851010 0 16777728 -27851014 0 512 -~~~ -~~~ -27851029 0 1536 -~~~ -~~~ -27851031 0 1024 -27851032 homeCount = 86 -27851033 waitCount = 36 -27851033 ripCount = 33 -27851034 locktype1 = 1 -27851034 locktype2 = 6 -27851035 locktype3 = 10 -27851035 goalCount = 4 -27851036 goalTotal = 24 -27851036 otherCount = 44 -~~~ -27851057 UP 10 -27851058 waslock = 0 -27851057 512 1024 -~~~ -27853817 DOWN 10 -27853817 0 1024 -~~~ -~~~ -~~~ -~~~ -27853841 homeCount = 86 -27853841 waitCount = 36 -27853842 ripCount = 33 -27853842 locktype1 = 1 -27853843 locktype2 = 6 -27853843 locktype3 = 10 -27853844 goalCount = 4 -27853844 goalTotal = 24 -27853845 otherCount = 44 -~~~ -27856740 UP 11 -27856740 1024 1024 -27860921 DOWN 11 -27860921 0 1024 -27860925 UP 11 -27860925 1024 1024 -27864241 BEEP1 -27864241 BEEP2 -~~~ -~~~ -~~~ -27864260 1024 33555456 -~~~ -27864410 1024 1024 -27870387 DOWN 11 -27870387 0 1024 -27870394 UP 11 -27870394 1024 1024 -~~~ -~~~ -27870408 1024 0 -~~~ -~~~ -27870410 1024 1 -~~~ -~~~ -27870412 1024 3 -~~~ -~~~ -27870413 1024 7 -~~~ -~~~ -27870415 1024 15 -~~~ -~~~ -27870417 1024 31 -~~~ -~~~ -27870419 1024 63 -~~~ -~~~ -27870421 1024 127 -~~~ -~~~ -27870423 1024 255 -27870424 homeCount = 86 -27870424 waitCount = 36 -27870425 ripCount = 34 -27870425 locktype1 = 1 -27870446 locktype2 = 6 -27870447 locktype3 = 10 -27870447 goalCount = 4 -27870448 goalTotal = 24 -27870448 otherCount = 44 -~~~ -27870450 CURRENTGOAL IS [1] -~~~ -27872522 DOWN 11 -27872522 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872551 UP 11 -27872551 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872557 homeCount = 86 -27872557 waitCount = 36 -27872558 ripCount = 34 -27872559 locktype1 = 1 -27872559 locktype2 = 6 -27872560 locktype3 = 10 -27872560 goalCount = 4 -27872561 goalTotal = 24 -27872561 otherCount = 44 -~~~ -27872562 CURRENTGOAL IS [1] -~~~ -27872619 DOWN 11 -27872619 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872660 homeCount = 86 -27872661 waitCount = 36 -27872661 ripCount = 34 -27872662 locktype1 = 1 -27872662 locktype2 = 6 -27872663 locktype3 = 10 -27872663 goalCount = 4 -27872664 goalTotal = 24 -27872664 otherCount = 44 -~~~ -27872666 CURRENTGOAL IS [1] -~~~ -27877231 UP 1 -27877231 1 255 -~~~ -~~~ -27877255 outer reward -~~~ -27877255 1 65791 -~~~ -~~~ -27877705 1 255 -27886848 DOWN 1 -27886848 0 255 -~~~ -~~~ -27886873 0 254 -~~~ -~~~ -27886875 0 252 -~~~ -~~~ -27886877 0 248 -~~~ -~~~ -27886879 0 240 -~~~ -~~~ -27886880 0 224 -~~~ -~~~ -27886882 0 192 -~~~ -~~~ -27886884 0 128 -~~~ -~~~ -27886886 0 0 -~~~ -~~~ -27886888 0 512 -27886889 homeCount = 86 -27886889 waitCount = 36 -27886890 ripCount = 34 -27886890 locktype1 = 1 -27886911 locktype2 = 6 -27886912 locktype3 = 10 -27886912 goalCount = 5 -27886913 goalTotal = 25 -27886913 otherCount = 44 -~~~ -27886914 1 512 -27888622 DOWN 1 -27888622 0 512 -27888710 1 512 -27888740 DOWN 1 -27888740 0 512 -27893642 UP 10 -27893642 waslock = 0 -27893642 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27893669 512 16777728 -~~~ -27893815 DOWN 10 -27893815 0 16777728 -27893819 0 512 -~~~ -~~~ -27893834 0 1536 -~~~ -~~~ -27893836 0 1024 -27893837 homeCount = 87 -27893837 waitCount = 36 -27893838 ripCount = 34 -27893838 locktype1 = 1 -27893839 locktype2 = 6 -27893839 locktype3 = 10 -27893840 goalCount = 5 -27893840 goalTotal = 25 -27893841 otherCount = 44 -~~~ -27893862 UP 10 -27893862 waslock = 0 -27893862 512 1024 -~~~ -27899216 DOWN 10 -27899216 0 1024 -~~~ -~~~ -~~~ -~~~ -27899236 homeCount = 87 -27899237 waitCount = 36 -27899238 ripCount = 34 -27899238 locktype1 = 1 -27899239 locktype2 = 6 -27899239 locktype3 = 10 -27899240 goalCount = 5 -27899240 goalTotal = 25 -27899241 otherCount = 44 -~~~ -27899293 UP 10 -27899294 waslock = 0 -27899293 512 1024 -~~~ -27899323 DOWN 10 -27899323 0 1024 -~~~ -~~~ -~~~ -~~~ -27899339 homeCount = 87 -27899340 waitCount = 36 -27899340 ripCount = 34 -27899341 locktype1 = 1 -27899341 locktype2 = 6 -27899342 locktype3 = 10 -27899342 goalCount = 5 -27899343 goalTotal = 25 -27899343 otherCount = 44 -~~~ -27902072 UP 11 -27902072 1024 1024 -27905909 DOWN 11 -27905909 0 1024 -27905926 UP 11 -27905926 1024 1024 -27911073 BEEP1 -27911073 BEEP2 -~~~ -~~~ -~~~ -27911096 1024 33555456 -~~~ -27911190 DOWN 11 -27911190 0 33555456 -27911215 UP 11 -27911215 1024 33555456 -27911245 1024 1024 -~~~ -~~~ -27911764 1024 0 -~~~ -~~~ -27911766 1024 1 -~~~ -~~~ -27911768 1024 3 -~~~ -~~~ -27911770 1024 7 -~~~ -~~~ -27911771 1024 15 -~~~ -~~~ -27911773 1024 31 -~~~ -~~~ -27911775 1024 63 -~~~ -~~~ -27911777 1024 127 -~~~ -~~~ -27911779 1024 255 -27911780 homeCount = 87 -27911780 waitCount = 36 -27911781 ripCount = 35 -27911781 locktype1 = 1 -27911803 locktype2 = 6 -27911803 locktype3 = 10 -27911804 goalCount = 5 -27911804 goalTotal = 25 -27911805 otherCount = 44 -~~~ -27911806 CURRENTGOAL IS [1] -~~~ -27918132 DOWN 11 -27918132 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27918170 homeCount = 87 -27918171 waitCount = 36 -27918171 ripCount = 35 -27918172 locktype1 = 1 -27918172 locktype2 = 6 -27918173 locktype3 = 10 -27918173 goalCount = 5 -27918174 goalTotal = 25 -27918174 otherCount = 44 -~~~ -27918175 CURRENTGOAL IS [1] -~~~ -27918197 UP 11 -27918197 1024 255 -27920410 DOWN 11 -27920410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27920453 homeCount = 87 -27920453 waitCount = 36 -27920454 ripCount = 35 -27920454 locktype1 = 1 -27920455 locktype2 = 6 -27920455 locktype3 = 10 -27920456 goalCount = 5 -27920456 goalTotal = 25 -27920457 otherCount = 44 -~~~ -27920458 CURRENTGOAL IS [1] -~~~ -27920480 UP 11 -27920479 1024 255 -27920515 DOWN 11 -27920515 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27920551 homeCount = 87 -27920552 waitCount = 36 -27920552 ripCount = 35 -27920553 locktype1 = 1 -27920553 locktype2 = 6 -27920554 locktype3 = 10 -27920554 goalCount = 5 -27920555 goalTotal = 25 -27920555 otherCount = 44 -~~~ -27920556 CURRENTGOAL IS [1] -~~~ -27925246 UP 1 -27925246 1 255 -~~~ -~~~ -27925268 outer reward -~~~ -27925268 1 65791 -~~~ -~~~ -27925717 1 255 -27936444 DOWN 1 -27936444 0 255 -~~~ -~~~ -27936465 0 254 -~~~ -~~~ -27936467 0 252 -~~~ -~~~ -27936469 0 248 -~~~ -~~~ -27936471 0 240 -~~~ -~~~ -27936472 0 224 -~~~ -~~~ -27936474 0 192 -~~~ -~~~ -27936476 0 128 -~~~ -~~~ -27936478 0 0 -~~~ -~~~ -27936480 0 512 -27936481 homeCount = 87 -27936481 waitCount = 36 -27936482 ripCount = 35 -27936482 locktype1 = 1 -27936503 locktype2 = 6 -27936504 locktype3 = 10 -27936504 goalCount = 6 -27936505 goalTotal = 26 -27936505 otherCount = 44 -~~~ -27936515 1 512 -27936544 DOWN 1 -27936544 0 512 -27942299 UP 10 -27942299 waslock = 0 -27942299 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27942333 512 16777728 -~~~ -27942483 512 512 -27942510 DOWN 10 -27942510 0 512 -~~~ -~~~ -27942536 0 1536 -~~~ -~~~ -27942538 0 1024 -27942539 homeCount = 88 -27942540 waitCount = 36 -27942540 ripCount = 35 -27942541 locktype1 = 1 -27942541 locktype2 = 6 -27942542 locktype3 = 10 -27942542 goalCount = 6 -27942543 goalTotal = 26 -27942543 otherCount = 44 -~~~ -27942565 UP 10 -27942565 waslock = 0 -27942565 512 1024 -~~~ -27945190 DOWN 10 -27945190 0 1024 -~~~ -~~~ -~~~ -~~~ -27945220 homeCount = 88 -27945221 waitCount = 36 -27945221 ripCount = 35 -27945222 locktype1 = 1 -27945222 locktype2 = 6 -27945223 locktype3 = 10 -27945223 goalCount = 6 -27945224 goalTotal = 26 -27945224 otherCount = 44 -~~~ -27945226 UP 10 -27945226 waslock = 0 -27945226 512 1024 -~~~ -27945285 DOWN 10 -27945285 0 1024 -~~~ -~~~ -~~~ -~~~ -27945311 homeCount = 88 -27945311 waitCount = 36 -27945312 ripCount = 35 -27945312 locktype1 = 1 -27945313 locktype2 = 6 -27945313 locktype3 = 10 -27945314 goalCount = 6 -27945314 goalTotal = 26 -27945315 otherCount = 44 -~~~ -27947700 UP 11 -27947700 1024 1024 -27951200 BEEP1 -27951200 BEEP2 -~~~ -~~~ -~~~ -27951222 1024 33555456 -~~~ -27951371 1024 1024 -27957662 DOWN 11 -27957662 0 1024 -27957672 UP 11 -27957672 1024 1024 -~~~ -~~~ -27957680 1024 0 -~~~ -~~~ -27957681 1024 1 -~~~ -~~~ -27957683 1024 3 -~~~ -~~~ -27957685 1024 7 -~~~ -~~~ -27957687 1024 15 -~~~ -~~~ -27957689 1024 31 -~~~ -~~~ -27957691 1024 63 -~~~ -~~~ -27957692 1024 127 -~~~ -~~~ -27957694 1024 255 -27957695 homeCount = 88 -27957696 waitCount = 36 -27957696 ripCount = 36 -27957718 locktype1 = 1 -27957718 locktype2 = 6 -27957719 locktype3 = 10 -27957719 goalCount = 6 -27957720 goalTotal = 26 -27957720 otherCount = 44 -~~~ -27957721 CURRENTGOAL IS [1] -~~~ -27957739 DOWN 11 -27957739 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27957767 UP 11 -27957767 1024 255 -~~~ -27957769 homeCount = 88 -27957769 waitCount = 36 -27957770 ripCount = 36 -27957770 locktype1 = 1 -27957771 locktype2 = 6 -27957771 locktype3 = 10 -27957772 goalCount = 6 -27957772 goalTotal = 26 -27957773 otherCount = 44 -~~~ -27957795 CURRENTGOAL IS [1] -~~~ -27959629 DOWN 11 -27959629 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27959667 homeCount = 88 -27959667 waitCount = 36 -27959668 ripCount = 36 -27959669 locktype1 = 1 -27959669 locktype2 = 6 -27959670 locktype3 = 10 -27959670 goalCount = 6 -27959671 goalTotal = 26 -27959671 otherCount = 44 -~~~ -27959672 CURRENTGOAL IS [1] -~~~ -27963580 UP 1 -27963580 1 255 -~~~ -~~~ -27963607 outer reward -~~~ -27963607 1 65791 -~~~ -~~~ -27964057 1 255 -27975016 DOWN 1 -27975016 0 255 -~~~ -~~~ -27975037 0 254 -~~~ -~~~ -27975039 0 252 -~~~ -~~~ -27975041 0 248 -~~~ -~~~ -27975043 0 240 -~~~ -~~~ -27975045 0 224 -~~~ -~~~ -27975046 0 192 -~~~ -~~~ -27975048 0 128 -~~~ -~~~ -27975050 0 0 -~~~ -~~~ -27975052 0 512 -27975053 homeCount = 88 -27975053 waitCount = 36 -27975054 ripCount = 36 -27975054 locktype1 = 1 -27975055 locktype2 = 6 -27975076 locktype3 = 10 -27975076 goalCount = 7 -27975077 goalTotal = 27 -27975077 otherCount = 44 -~~~ -27975084 1 512 -27975144 DOWN 1 -27975144 0 512 -27980896 UP 10 -27980896 waslock = 0 -27980896 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27980921 512 16777728 -~~~ -27980997 DOWN 10 -27980997 0 16777728 -~~~ -~~~ -27981015 0 16778752 -~~~ -~~~ -27981017 0 16778240 -27981018 homeCount = 89 -27981018 waitCount = 36 -27981019 ripCount = 36 -27981019 locktype1 = 1 -27981020 locktype2 = 6 -27981020 locktype3 = 10 -27981021 goalCount = 7 -27981021 goalTotal = 27 -27981022 otherCount = 44 -~~~ -27981043 UP 10 -27981043 waslock = 0 -27981043 512 16778240 -~~~ -27981071 512 1024 -27987553 DOWN 10 -27987553 0 1024 -~~~ -~~~ -~~~ -~~~ -27987580 homeCount = 89 -27987580 waitCount = 36 -27987581 ripCount = 36 -27987581 locktype1 = 1 -27987582 locktype2 = 6 -27987582 locktype3 = 10 -27987583 goalCount = 7 -27987583 goalTotal = 27 -27987584 otherCount = 44 -~~~ -27989439 UP 11 -27989439 1024 1024 -27992292 DOWN 11 -27992292 0 1024 -27992302 UP 11 -27992302 1024 1024 -27997439 BEEP1 -27997439 BEEP2 -~~~ -~~~ -~~~ -27997459 1024 33555456 -~~~ -27997609 1024 1024 -28004157 DOWN 11 -28004157 0 1024 -~~~ -~~~ -28004178 0 0 -~~~ -~~~ -28004180 0 1 -~~~ -~~~ -28004182 0 3 -~~~ -~~~ -28004184 0 7 -~~~ -~~~ -28004185 0 15 -~~~ -~~~ -28004187 0 31 -~~~ -~~~ -28004189 0 63 -~~~ -~~~ -28004191 0 127 -~~~ -~~~ -28004193 0 255 -28004194 homeCount = 89 -28004194 waitCount = 36 -28004195 ripCount = 37 -28004195 locktype1 = 1 -28004196 locktype2 = 6 -28004217 locktype3 = 10 -28004218 goalCount = 7 -28004218 goalTotal = 27 -28004219 otherCount = 44 -~~~ -28004220 CURRENTGOAL IS [1] -~~~ -28008115 UP 1 -28008115 1 255 -~~~ -~~~ -28008134 outer reward -~~~ -28008134 1 65791 -~~~ -~~~ -28008353 DOWN 1 -28008353 0 65791 -28008370 1 65791 -~~~ -~~~ -28008372 1 65790 -~~~ -~~~ -28008374 1 65788 -~~~ -~~~ -28008376 1 65784 -~~~ -~~~ -28008378 1 65776 -~~~ -~~~ -28008380 1 65760 -~~~ -~~~ -28008382 1 65728 -~~~ -~~~ -28008383 1 65664 -~~~ -~~~ -28008385 1 65536 -~~~ -~~~ -28008387 1 66048 -28008388 homeCount = 89 -28008389 waitCount = 36 -28008389 ripCount = 37 -28008410 locktype1 = 1 -28008410 locktype2 = 6 -28008411 locktype3 = 10 -28008411 goalCount = 8 -28008412 goalTotal = 28 -28008412 otherCount = 44 -~~~ -28008584 1 512 -28018306 DOWN 1 -28018306 0 512 -28018329 1 512 -28018420 DOWN 1 -28018420 0 512 -28018472 1 512 -28019511 DOWN 1 -28019511 0 512 -28019538 1 512 -28019606 DOWN 1 -28019606 0 512 -28026274 UP 10 -28026274 waslock = 0 -28026274 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28026301 512 16777728 -~~~ -28026429 DOWN 10 -28026429 0 16777728 -28026451 0 512 -~~~ -~~~ -28026456 0 1536 -~~~ -~~~ -28026457 0 1024 -28026458 homeCount = 90 -28026459 waitCount = 36 -28026460 ripCount = 37 -28026460 locktype1 = 1 -28026461 locktype2 = 6 -28026461 locktype3 = 10 -28026462 goalCount = 8 -28026462 goalTotal = 28 -28026463 otherCount = 44 -~~~ -28026642 UP 10 -28026643 waslock = 0 -28026642 512 1024 -~~~ -28026762 DOWN 10 -28026762 0 1024 -28026776 UP 10 -28026777 waslock = 0 -28026776 512 1024 -~~~ -~~~ -~~~ -~~~ -28026799 homeCount = 90 -28026799 waitCount = 36 -28026800 ripCount = 37 -28026800 locktype1 = 1 -28026801 locktype2 = 6 -28026801 locktype3 = 10 -28026802 goalCount = 8 -28026802 goalTotal = 28 -28026803 otherCount = 44 -~~~ -~~~ -28031965 DOWN 10 -28031965 0 1024 -~~~ -~~~ -~~~ -~~~ -28031988 homeCount = 90 -28031988 waitCount = 36 -28031989 ripCount = 37 -28031989 locktype1 = 1 -28031990 locktype2 = 6 -28031990 locktype3 = 10 -28031991 goalCount = 8 -28031991 goalTotal = 28 -28031992 otherCount = 44 -~~~ -28033822 UP 11 -28033822 1024 1024 -28036822 BEEP1 -28036822 BEEP2 -~~~ -~~~ -~~~ -28036845 1024 33555456 -~~~ -28036995 1024 1024 -28042883 DOWN 11 -28042883 0 1024 -~~~ -~~~ -28042903 0 0 -~~~ -~~~ -28042905 0 1 -~~~ -28042907 UP 11 -28042907 1024 1 -~~~ -~~~ -28042909 1024 3 -~~~ -~~~ -28042910 1024 7 -~~~ -~~~ -28042912 1024 15 -~~~ -28042913 1024 31 -~~~ -~~~ -28042914 1024 63 -~~~ -~~~ -28042916 1024 127 -~~~ -~~~ -28042918 1024 255 -28042919 homeCount = 90 -28042940 waitCount = 36 -28042941 ripCount = 38 -28042941 locktype1 = 1 -28042942 locktype2 = 6 -28042942 locktype3 = 10 -28042943 goalCount = 8 -28042943 goalTotal = 28 -28042944 otherCount = 44 -~~~ -28042945 CURRENTGOAL IS [1] -~~~ -28046203 DOWN 11 -28046203 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28046238 homeCount = 90 -28046239 waitCount = 36 -28046239 ripCount = 38 -28046240 locktype1 = 1 -28046240 locktype2 = 6 -28046241 locktype3 = 10 -28046241 goalCount = 8 -28046242 goalTotal = 28 -28046242 otherCount = 44 -~~~ -28046243 CURRENTGOAL IS [1] -~~~ -28050087 UP 1 -28050087 1 255 -~~~ -~~~ -28050115 outer reward -~~~ -28050116 1 65791 -~~~ -~~~ -28050301 DOWN 1 -28050301 0 65791 -~~~ -~~~ -28050323 0 65790 -~~~ -~~~ -28050325 0 65788 -~~~ -~~~ -28050326 0 65784 -~~~ -~~~ -28050328 0 65776 -~~~ -~~~ -28050330 0 65760 -~~~ -~~~ -28050332 0 65728 -~~~ -~~~ -28050334 0 65664 -~~~ -28050335 1 65664 -~~~ -~~~ -28050337 1 65536 -~~~ -28050338 1 66048 -28050339 homeCount = 90 -28050340 waitCount = 36 -28050361 ripCount = 38 -28050361 locktype1 = 1 -28050362 locktype2 = 6 -28050362 locktype3 = 10 -28050363 goalCount = 9 -28050363 goalTotal = 29 -28050364 otherCount = 44 -~~~ -28050565 1 512 -28059860 DOWN 1 -28059860 0 512 -28064424 UP 10 -28064425 waslock = 0 -28064424 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28064452 512 16777728 -~~~ -28064602 512 512 -28068806 DOWN 10 -28068806 0 512 -~~~ -~~~ -28068826 0 2560 -~~~ -~~~ -28068828 0 2048 -28068829 homeCount = 91 -28068829 waitCount = 36 -28068830 ripCount = 38 -28068830 locktype1 = 1 -28068831 locktype2 = 6 -28068831 locktype3 = 10 -28068832 goalCount = 9 -28068832 goalTotal = 29 -28068833 otherCount = 44 -~~~ -28068854 UP 10 -28068854 waslock = 0 -28068853 512 2048 -28068875 DOWN 10 -28068875 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28068899 homeCount = 91 -28068899 waitCount = 36 -28068900 ripCount = 38 -28068900 locktype1 = 1 -28068901 locktype2 = 6 -28068901 locktype3 = 10 -28068902 goalCount = 9 -28068902 goalTotal = 29 -28068903 otherCount = 44 -~~~ -28071033 UP 12 -28071033 2048 2048 -28071048 DOWN 12 -28071048 0 2048 -28071231 UP 12 -28071231 2048 2048 -28071271 DOWN 12 -28071271 0 2048 -28071314 UP 12 -28071314 2048 2048 -28074234 DOWN 12 -28074234 0 2048 -28074316 UP 12 -28074316 2048 2048 -28078155 DOWN 12 -28078155 0 2048 -28078237 UP 12 -28078237 2048 2048 -28079033 CLICK1 -28079033 CLICK2 -~~~ -~~~ -~~~ -28079058 2048 67110912 -~~~ -28079208 2048 2048 -28086231 DOWN 12 -28086231 0 2048 -~~~ -~~~ -28086256 0 0 -~~~ -~~~ -28086258 0 1 -~~~ -28086259 UP 12 -28086259 2048 1 -~~~ -~~~ -28086261 2048 3 -~~~ -~~~ -28086262 2048 7 -~~~ -28086263 2048 15 -~~~ -~~~ -28086265 2048 31 -~~~ -~~~ -28086267 2048 63 -~~~ -~~~ -28086268 2048 127 -~~~ -~~~ -28086270 2048 255 -28086271 homeCount = 91 -28086292 waitCount = 37 -28086293 ripCount = 38 -28086293 locktype1 = 1 -28086294 locktype2 = 6 -28086294 locktype3 = 10 -28086295 goalCount = 9 -28086295 goalTotal = 29 -28086296 otherCount = 44 -~~~ -28086297 CURRENTGOAL IS [1] -~~~ -28086333 DOWN 12 -28086333 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28086372 homeCount = 91 -28086372 waitCount = 37 -28086373 ripCount = 38 -28086374 locktype1 = 1 -28086374 locktype2 = 6 -28086375 locktype3 = 10 -28086375 goalCount = 9 -28086376 goalTotal = 29 -28086376 otherCount = 44 -~~~ -28086377 CURRENTGOAL IS [1] -~~~ -28089464 UP 1 -28089464 1 255 -~~~ -~~~ -28089492 outer reward -~~~ -28089492 1 65791 -~~~ -~~~ -28089497 outerreps = 4 -~~~ -~~~ -28089754 DOWN 1 -28089754 0 65791 -~~~ -~~~ -28089778 0 65790 -~~~ -~~~ -28089780 0 65788 -~~~ -~~~ -28089782 0 65784 -~~~ -~~~ -28089784 0 65776 -~~~ -28089785 1 65776 -~~~ -~~~ -28089787 1 65760 -~~~ -28089788 1 65728 -~~~ -~~~ -28089789 1 65664 -~~~ -~~~ -28089791 1 65536 -~~~ -~~~ -28089793 1 66048 -28089794 homeCount = 91 -28089794 waitCount = 37 -28089815 ripCount = 38 -28089815 locktype1 = 1 -28089816 locktype2 = 6 -28089816 locktype3 = 10 -28089817 goalCount = 0 -28089817 goalTotal = 30 -28089818 otherCount = 44 -~~~ -28089942 1 512 -28099533 DOWN 1 -28099533 0 512 -28099580 1 512 -28099664 DOWN 1 -28099664 0 512 -28103844 UP 10 -28103844 waslock = 0 -28103844 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28103875 512 16777728 -~~~ -28104025 512 512 -28104040 DOWN 10 -28104040 0 512 -28104053 UP 10 -28104053 waslock = 0 -28104053 512 512 -~~~ -~~~ -28104060 512 1536 -~~~ -~~~ -28104062 512 1024 -28104063 homeCount = 92 -28104063 waitCount = 37 -28104064 ripCount = 38 -28104064 locktype1 = 1 -28104065 locktype2 = 6 -28104065 locktype3 = 10 -28104066 goalCount = 0 -28104066 goalTotal = 30 -28104067 otherCount = 44 -~~~ -~~~ -28104223 DOWN 10 -28104223 0 1024 -28104230 UP 10 -28104231 waslock = 0 -28104230 512 1024 -~~~ -~~~ -~~~ -~~~ -28104246 homeCount = 92 -28104246 waitCount = 37 -28104247 ripCount = 38 -28104247 locktype1 = 1 -28104248 locktype2 = 6 -28104249 locktype3 = 10 -28104249 goalCount = 0 -28104250 goalTotal = 30 -28104250 otherCount = 44 -~~~ -~~~ -28107687 DOWN 10 -28107687 0 1024 -~~~ -~~~ -~~~ -~~~ -28107717 homeCount = 92 -28107718 waitCount = 37 -28107718 ripCount = 38 -28107719 locktype1 = 1 -28107719 locktype2 = 6 -28107720 locktype3 = 10 -28107720 goalCount = 0 -28107721 goalTotal = 30 -28107721 otherCount = 44 -~~~ -28107757 UP 10 -28107757 waslock = 0 -28107757 512 1024 -28107772 DOWN 10 -28107772 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28107791 homeCount = 92 -28107792 waitCount = 37 -28107793 ripCount = 38 -28107793 locktype1 = 1 -28107794 locktype2 = 6 -28107794 locktype3 = 10 -28107795 goalCount = 0 -28107795 goalTotal = 30 -28107796 otherCount = 44 -~~~ -28110492 UP 11 -28110492 1024 1024 -28113993 BEEP1 -28113993 BEEP2 -~~~ -~~~ -~~~ -28114015 1024 33555456 -~~~ -28114165 1024 1024 -28114440 DOWN 11 -28114440 0 1024 -28114465 UP 11 -28114465 1024 1024 -~~~ -~~~ -28114682 1024 0 -~~~ -~~~ -28114684 1024 1 -~~~ -~~~ -28114686 1024 3 -~~~ -~~~ -28114688 1024 7 -~~~ -~~~ -28114689 1024 15 -~~~ -~~~ -28114691 1024 31 -~~~ -~~~ -28114693 1024 63 -~~~ -~~~ -28114695 1024 127 -~~~ -~~~ -28114697 1024 255 -28114698 homeCount = 92 -28114698 waitCount = 37 -28114699 ripCount = 39 -28114720 locktype1 = 1 -28114721 locktype2 = 6 -28114721 locktype3 = 10 -28114722 goalCount = 0 -28114722 goalTotal = 30 -28114723 otherCount = 44 -~~~ -28114724 CURRENTGOAL IS [7] -~~~ -28123147 DOWN 11 -28123147 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28123189 homeCount = 92 -28123189 waitCount = 37 -28123190 ripCount = 39 -28123191 locktype1 = 1 -28123191 locktype2 = 6 -28123192 locktype3 = 10 -28123192 goalCount = 0 -28123193 goalTotal = 30 -28123193 otherCount = 44 -~~~ -28123194 CURRENTGOAL IS [7] -~~~ -28123265 UP 11 -28123265 1024 255 -28123279 DOWN 11 -28123279 0 255 -28123296 UP 11 -28123296 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28123312 homeCount = 92 -28123313 waitCount = 37 -28123313 ripCount = 39 -28123314 locktype1 = 1 -28123315 locktype2 = 6 -28123315 locktype3 = 10 -28123316 goalCount = 0 -28123316 goalTotal = 30 -28123317 otherCount = 44 -~~~ -28123318 CURRENTGOAL IS [7] -~~~ -28125461 DOWN 11 -28125461 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28125501 homeCount = 92 -28125502 waitCount = 37 -28125502 ripCount = 39 -28125503 locktype1 = 1 -28125503 locktype2 = 6 -28125504 locktype3 = 10 -28125504 goalCount = 0 -28125505 goalTotal = 30 -28125505 otherCount = 44 -~~~ -28125506 CURRENTGOAL IS [7] -~~~ -28129280 UP 1 -28129280 1 255 -~~~ -~~~ -28129542 DOWN 1 -28129542 0 255 -~~~ -~~~ -28129565 0 254 -~~~ -~~~ -28129567 0 252 -~~~ -28129569 1 252 -~~~ -~~~ -28129570 1 248 -~~~ -28129571 1 240 -~~~ -~~~ -28129573 1 224 -~~~ -~~~ -28129575 1 192 -~~~ -~~~ -28129576 1 128 -~~~ -~~~ -28129578 1 0 -~~~ -~~~ -28129580 1 512 -28129581 homeCount = 92 -28129582 waitCount = 37 -28129582 ripCount = 39 -28129603 locktype1 = 1 -28129604 locktype2 = 6 -28129604 locktype3 = 10 -28129605 goalCount = 0 -28129605 goalTotal = 30 -28129606 otherCount = 45 -~~~ -28132434 DOWN 1 -28132434 0 512 -28135996 UP 10 -28135996 waslock = 0 -28135996 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28136023 512 16777728 -~~~ -28136173 512 512 -28136193 DOWN 10 -28136193 0 512 -~~~ -~~~ -28136216 0 1536 -~~~ -~~~ -28136218 0 1024 -28136219 homeCount = 93 -28136220 waitCount = 37 -28136220 ripCount = 39 -28136221 locktype1 = 1 -28136221 locktype2 = 6 -28136222 locktype3 = 10 -28136222 goalCount = 0 -28136223 goalTotal = 30 -28136223 otherCount = 45 -~~~ -28136245 UP 10 -28136245 waslock = 0 -28136245 512 1024 -~~~ -28138668 DOWN 10 -28138668 0 1024 -~~~ -~~~ -~~~ -~~~ -28138688 homeCount = 93 -28138688 waitCount = 37 -28138689 ripCount = 39 -28138689 locktype1 = 1 -28138690 locktype2 = 6 -28138690 locktype3 = 10 -28138691 goalCount = 0 -28138691 goalTotal = 30 -28138692 otherCount = 45 -~~~ -28138714 UP 10 -28138714 waslock = 0 -28138714 512 1024 -~~~ -28138749 DOWN 10 -28138748 0 1024 -~~~ -~~~ -~~~ -~~~ -28138770 homeCount = 93 -28138770 waitCount = 37 -28138771 ripCount = 39 -28138771 locktype1 = 1 -28138772 locktype2 = 6 -28138772 locktype3 = 10 -28138773 goalCount = 0 -28138773 goalTotal = 30 -28138774 otherCount = 45 -~~~ -28140396 UP 11 -28140396 1024 1024 -28143396 BEEP1 -28143396 BEEP2 -~~~ -~~~ -~~~ -28143421 1024 33555456 -~~~ -28143571 1024 1024 -28150234 DOWN 11 -28150234 0 1024 -~~~ -~~~ -28150260 0 0 -~~~ -~~~ -28150262 0 1 -~~~ -~~~ -28150264 0 3 -~~~ -~~~ -28150265 0 7 -~~~ -~~~ -28150267 0 15 -~~~ -~~~ -28150269 0 31 -~~~ -~~~ -28150271 0 63 -~~~ -~~~ -28150273 0 127 -~~~ -~~~ -28150275 0 255 -28150276 homeCount = 93 -28150276 waitCount = 37 -28150277 ripCount = 40 -28150277 locktype1 = 1 -28150278 locktype2 = 6 -28150299 locktype3 = 10 -28150299 goalCount = 0 -28150300 goalTotal = 30 -28150300 otherCount = 45 -~~~ -28150301 CURRENTGOAL IS [7] -~~~ -28150330 UP 11 -28150330 1024 255 -28150374 DOWN 11 -28150374 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28150408 homeCount = 93 -28150409 waitCount = 37 -28150410 ripCount = 40 -28150410 locktype1 = 1 -28150411 locktype2 = 6 -28150411 locktype3 = 10 -28150412 goalCount = 0 -28150412 goalTotal = 30 -28150413 otherCount = 45 -~~~ -28150414 CURRENTGOAL IS [7] -~~~ -28150482 UP 11 -28150482 1024 255 -28150504 DOWN 11 -28150504 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28150538 homeCount = 93 -28150539 waitCount = 37 -28150539 ripCount = 40 -28150540 locktype1 = 1 -28150541 locktype2 = 6 -28150541 locktype3 = 10 -28150542 goalCount = 0 -28150542 goalTotal = 30 -28150543 otherCount = 45 -~~~ -28150544 CURRENTGOAL IS [7] -~~~ -28150614 UP 11 -28150614 1024 255 -28152416 DOWN 11 -28152416 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28152462 homeCount = 93 -28152462 waitCount = 37 -28152463 ripCount = 40 -28152463 locktype1 = 1 -28152464 locktype2 = 6 -28152464 locktype3 = 10 -28152465 goalCount = 0 -28152465 goalTotal = 30 -28152466 otherCount = 45 -~~~ -28152467 CURRENTGOAL IS [7] -~~~ -28155346 UP 7 -28155346 64 255 -~~~ -~~~ -28155366 outer reward -~~~ -28155367 64 4194559 -~~~ -~~~ -28155389 DOWN 7 -28155389 0 4194559 -~~~ -~~~ -28155414 0 4194558 -~~~ -~~~ -28155416 0 4194556 -~~~ -~~~ -28155417 0 4194552 -~~~ -~~~ -28155419 0 4194544 -~~~ -~~~ -28155421 0 4194528 -~~~ -~~~ -28155423 0 4194496 -~~~ -~~~ -28155425 0 4194432 -~~~ -~~~ -28155426 0 4194304 -~~~ -~~~ -28155428 0 4194816 -28155429 homeCount = 93 -28155430 waitCount = 37 -28155430 ripCount = 40 -28155451 locktype1 = 1 -28155452 locktype2 = 6 -28155452 locktype3 = 10 -28155453 goalCount = 1 -28155453 goalTotal = 31 -28155454 otherCount = 45 -~~~ -28155455 64 4194816 -28155816 64 512 -28162953 DOWN 7 -28162953 0 512 -28162983 64 512 -28163080 DOWN 7 -28163080 0 512 -28163122 64 512 -28163206 DOWN 7 -28163206 0 512 -28163287 64 512 -28163352 DOWN 7 -28163352 0 512 -28171612 UP 10 -28171613 waslock = 0 -28171612 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28171642 512 16777728 -~~~ -28171792 512 512 -28171878 DOWN 10 -28171878 0 512 -~~~ -~~~ -28171904 0 2560 -~~~ -~~~ -28171906 0 2048 -28171907 homeCount = 94 -28171908 waitCount = 37 -28171908 ripCount = 40 -28171909 locktype1 = 1 -28171909 locktype2 = 6 -28171910 locktype3 = 10 -28171910 goalCount = 1 -28171911 goalTotal = 31 -28171911 otherCount = 45 -~~~ -28173078 UP 10 -28173078 waslock = 0 -28173078 512 2048 -~~~ -28177126 DOWN 10 -28177126 0 2048 -~~~ -~~~ -~~~ -~~~ -28177147 homeCount = 94 -28177147 waitCount = 37 -28177148 ripCount = 40 -28177148 locktype1 = 1 -28177149 locktype2 = 6 -28177149 locktype3 = 10 -28177150 goalCount = 1 -28177150 goalTotal = 31 -28177151 otherCount = 45 -~~~ -28177189 UP 10 -28177189 waslock = 0 -28177189 512 2048 -~~~ -28177225 DOWN 10 -28177225 0 2048 -~~~ -~~~ -~~~ -~~~ -28177251 homeCount = 94 -28177252 waitCount = 37 -28177252 ripCount = 40 -28177253 locktype1 = 1 -28177253 locktype2 = 6 -28177254 locktype3 = 10 -28177254 goalCount = 1 -28177255 goalTotal = 31 -28177255 otherCount = 45 -~~~ -28179849 UP 12 -28179849 2048 2048 -28182849 CLICK1 -28182849 CLICK2 -~~~ -~~~ -~~~ -28182876 2048 67110912 -~~~ -28183026 2048 2048 -28183159 DOWN 12 -28183159 0 2048 -~~~ -~~~ -28183186 0 0 -~~~ -~~~ -28183188 0 1 -~~~ -~~~ -28183190 0 3 -~~~ -~~~ -28183192 0 7 -~~~ -~~~ -28183194 0 15 -~~~ -~~~ -28183195 0 31 -~~~ -~~~ -28183197 0 63 -~~~ -~~~ -28183199 0 127 -~~~ -~~~ -28183201 0 255 -28183202 homeCount = 94 -28183202 waitCount = 38 -28183203 ripCount = 40 -28183204 locktype1 = 1 -28183204 locktype2 = 6 -28183225 locktype3 = 10 -28183225 goalCount = 1 -28183226 goalTotal = 31 -28183226 otherCount = 45 -~~~ -28183228 CURRENTGOAL IS [7] -~~~ -28183266 UP 12 -28183266 2048 255 -28183306 DOWN 12 -28183306 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28183343 UP 12 -28183343 2048 255 -~~~ -28183344 homeCount = 94 -28183345 waitCount = 38 -28183345 ripCount = 40 -28183346 locktype1 = 1 -28183346 locktype2 = 6 -28183347 locktype3 = 10 -28183347 goalCount = 1 -28183348 goalTotal = 31 -28183349 otherCount = 45 -~~~ -28183370 CURRENTGOAL IS [7] -~~~ -28190586 DOWN 12 -28190586 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28190625 homeCount = 94 -28190626 waitCount = 38 -28190626 ripCount = 40 -28190627 locktype1 = 1 -28190627 locktype2 = 6 -28190628 locktype3 = 10 -28190628 goalCount = 1 -28190629 goalTotal = 31 -28190629 otherCount = 45 -~~~ -28190630 CURRENTGOAL IS [7] -~~~ -28196854 UP 8 -28196854 128 255 -~~~ -~~~ -28197377 DOWN 8 -28197377 0 255 -~~~ -~~~ -28197398 0 254 -~~~ -~~~ -28197400 0 252 -~~~ -~~~ -28197402 0 248 -~~~ -~~~ -28197404 0 240 -~~~ -~~~ -28197405 0 224 -~~~ -~~~ -28197407 0 192 -~~~ -~~~ -28197409 0 128 -~~~ -~~~ -28197411 0 0 -~~~ -~~~ -28197413 0 512 -28197414 homeCount = 94 -28197414 waitCount = 38 -28197415 ripCount = 40 -28197415 locktype1 = 1 -28197416 locktype2 = 6 -28197437 locktype3 = 10 -28197437 goalCount = 1 -28197438 goalTotal = 31 -28197438 otherCount = 46 -~~~ -28197589 128 512 -28197873 DOWN 8 -28197873 0 512 -28201996 UP 10 -28201996 waslock = 0 -28201996 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28202028 512 16777728 -~~~ -28202178 512 512 -28202268 DOWN 10 -28202268 0 512 -~~~ -~~~ -28202293 0 2560 -~~~ -~~~ -28202295 0 2048 -28202296 homeCount = 95 -28202297 waitCount = 38 -28202297 ripCount = 40 -28202298 locktype1 = 1 -28202298 locktype2 = 6 -28202299 locktype3 = 10 -28202299 goalCount = 1 -28202300 goalTotal = 31 -28202300 otherCount = 46 -~~~ -28202321 UP 10 -28202321 waslock = 0 -28202321 512 2048 -~~~ -28208913 DOWN 10 -28208913 0 2048 -~~~ -~~~ -~~~ -~~~ -28208936 homeCount = 95 -28208936 waitCount = 38 -28208937 ripCount = 40 -28208937 locktype1 = 1 -28208938 locktype2 = 6 -28208938 locktype3 = 10 -28208939 goalCount = 1 -28208939 goalTotal = 31 -28208940 otherCount = 46 -~~~ -28208955 UP 10 -28208955 waslock = 0 -28208955 512 2048 -~~~ -28209014 DOWN 10 -28209014 0 2048 -~~~ -~~~ -~~~ -~~~ -28209035 homeCount = 95 -28209036 waitCount = 38 -28209036 ripCount = 40 -28209037 locktype1 = 1 -28209037 locktype2 = 6 -28209038 locktype3 = 10 -28209038 goalCount = 1 -28209039 goalTotal = 31 -28209039 otherCount = 46 -~~~ -28210982 UP 12 -28210982 2048 2048 -28215482 CLICK1 -28215482 CLICK2 -~~~ -~~~ -~~~ -28215506 2048 67110912 -~~~ -28215656 2048 2048 -28223085 DOWN 12 -28223084 0 2048 -~~~ -~~~ -28223104 0 0 -~~~ -~~~ -28223106 0 1 -~~~ -~~~ -28223108 0 3 -~~~ -~~~ -28223110 0 7 -~~~ -~~~ -28223111 0 15 -~~~ -~~~ -28223113 0 31 -~~~ -~~~ -28223115 0 63 -~~~ -~~~ -28223117 0 127 -~~~ -~~~ -28223119 0 255 -28223120 homeCount = 95 -28223120 waitCount = 39 -28223121 ripCount = 40 -28223121 locktype1 = 1 -28223122 locktype2 = 6 -28223142 locktype3 = 10 -28223143 goalCount = 1 -28223143 goalTotal = 31 -28223144 otherCount = 46 -~~~ -28223145 CURRENTGOAL IS [7] -~~~ -28223146 UP 12 -28223146 2048 255 -28223185 DOWN 12 -28223185 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28223222 homeCount = 95 -28223222 waitCount = 39 -28223223 ripCount = 40 -28223223 locktype1 = 1 -28223224 locktype2 = 6 -28223224 locktype3 = 10 -28223225 goalCount = 1 -28223225 goalTotal = 31 -28223226 otherCount = 46 -~~~ -28223227 CURRENTGOAL IS [7] -~~~ -28233647 UP 7 -28233647 64 255 -~~~ -~~~ -28233670 outer reward -~~~ -28233670 64 4194559 -~~~ -~~~ -28233821 DOWN 7 -28233821 0 4194559 -~~~ -~~~ -28233837 0 4194558 -~~~ -~~~ -28233839 0 4194556 -~~~ -~~~ -28233841 0 4194552 -~~~ -~~~ -28233843 0 4194544 -~~~ -~~~ -28233845 0 4194528 -~~~ -~~~ -28233847 0 4194496 -~~~ -~~~ -28233848 0 4194432 -~~~ -~~~ -28233850 0 4194304 -~~~ -~~~ -28233852 0 4194816 -28233853 homeCount = 95 -28233854 waitCount = 39 -28233854 ripCount = 40 -28233875 locktype1 = 1 -28233876 locktype2 = 6 -28233876 locktype3 = 10 -28233877 goalCount = 2 -28233877 goalTotal = 32 -28233878 otherCount = 46 -~~~ -28233878 64 4194816 -28234120 64 512 -28243031 DOWN 7 -28243031 0 512 -28243057 64 512 -28243146 DOWN 7 -28243146 0 512 -28248129 UP 10 -28248129 waslock = 0 -28248129 512 512 -~~~ -~~~ -~~~ -~~~ -28248154 DOWN 10 -28248154 0 512 -~~~ -28248156 0 16777728 -~~~ -~~~ -~~~ -28248171 0 16779776 -~~~ -~~~ -28248172 0 16779264 -28248173 homeCount = 96 -28248174 waitCount = 39 -28248174 ripCount = 40 -28248175 locktype1 = 1 -28248175 locktype2 = 6 -28248176 locktype3 = 10 -28248176 goalCount = 2 -28248177 goalTotal = 32 -28248178 otherCount = 46 -~~~ -28248236 UP 10 -28248236 waslock = 0 -28248236 512 16779264 -~~~ -28248306 512 2048 -28248640 DOWN 10 -28248640 0 2048 -28248654 UP 10 -28248654 waslock = 0 -28248654 512 2048 -~~~ -~~~ -~~~ -~~~ -28248674 homeCount = 96 -28248675 waitCount = 39 -28248675 ripCount = 40 -28248676 locktype1 = 1 -28248676 locktype2 = 6 -28248677 locktype3 = 10 -28248677 goalCount = 2 -28248678 goalTotal = 32 -28248678 otherCount = 46 -~~~ -~~~ -28252124 DOWN 10 -28252124 0 2048 -28252140 UP 10 -28252141 waslock = 0 -28252140 512 2048 -~~~ -~~~ -~~~ -~~~ -28252165 homeCount = 96 -28252166 waitCount = 39 -28252166 ripCount = 40 -28252167 locktype1 = 1 -28252167 locktype2 = 6 -28252168 locktype3 = 10 -28252168 goalCount = 2 -28252169 goalTotal = 32 -28252169 otherCount = 46 -~~~ -~~~ -28252230 DOWN 10 -28252230 0 2048 -~~~ -~~~ -~~~ -~~~ -28252253 homeCount = 96 -28252254 waitCount = 39 -28252254 ripCount = 40 -28252255 locktype1 = 1 -28252255 locktype2 = 6 -28252256 locktype3 = 10 -28252256 goalCount = 2 -28252257 goalTotal = 32 -28252257 otherCount = 46 -~~~ -28252286 UP 10 -28252286 waslock = 0 -28252286 512 2048 -~~~ -28252324 DOWN 10 -28252324 0 2048 -~~~ -~~~ -~~~ -~~~ -28252352 homeCount = 96 -28252352 waitCount = 39 -28252353 ripCount = 40 -28252353 locktype1 = 1 -28252354 locktype2 = 6 -28252354 locktype3 = 10 -28252355 goalCount = 2 -28252355 goalTotal = 32 -28252356 otherCount = 46 -~~~ -28254088 UP 12 -28254088 2048 2048 -28259672 DOWN 12 -28259672 0 2048 -28259689 UP 12 -28259689 2048 2048 -28259725 DOWN 12 -28259725 0 2048 -28259759 UP 12 -28259759 2048 2048 -28259931 DOWN 12 -28259930 0 2048 -28259941 UP 12 -28259941 2048 2048 -28260607 DOWN 12 -28260607 0 2048 -28260622 UP 12 -28260621 2048 2048 -28263088 CLICK1 -28263088 CLICK2 -~~~ -~~~ -~~~ -28263111 2048 67110912 -~~~ -28263261 2048 2048 -28269902 DOWN 12 -28269902 0 2048 -28269928 UP 12 -28269928 2048 2048 -~~~ -~~~ -28269931 2048 0 -~~~ -~~~ -28269932 2048 1 -~~~ -~~~ -28269934 2048 3 -~~~ -~~~ -28269936 2048 7 -~~~ -~~~ -28269938 2048 15 -~~~ -~~~ -28269940 2048 31 -~~~ -~~~ -28269942 2048 63 -~~~ -~~~ -28269943 2048 127 -~~~ -~~~ -28269945 2048 255 -28269946 homeCount = 96 -28269947 waitCount = 40 -28269968 ripCount = 40 -28269969 locktype1 = 1 -28269969 locktype2 = 6 -28269970 locktype3 = 10 -28269970 goalCount = 2 -28269971 goalTotal = 32 -28269971 otherCount = 46 -~~~ -28269972 CURRENTGOAL IS [7] -~~~ -28269986 DOWN 12 -28269986 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28270027 homeCount = 96 -28270027 waitCount = 40 -28270028 ripCount = 40 -28270028 locktype1 = 1 -28270029 locktype2 = 6 -28270029 locktype3 = 10 -28270030 goalCount = 2 -28270030 goalTotal = 32 -28270031 otherCount = 46 -~~~ -28270032 CURRENTGOAL IS [7] -~~~ -28276085 UP 7 -28276085 64 255 -~~~ -~~~ -28276113 outer reward -~~~ -28276113 64 4194559 -~~~ -~~~ -28276119 DOWN 7 -28276118 0 4194559 -~~~ -~~~ -28276132 0 4194558 -~~~ -~~~ -28276133 0 4194556 -~~~ -~~~ -28276135 0 4194552 -~~~ -~~~ -28276137 0 4194544 -~~~ -~~~ -28276139 0 4194528 -~~~ -~~~ -28276141 0 4194496 -~~~ -~~~ -28276142 0 4194432 -~~~ -~~~ -28276144 0 4194304 -~~~ -~~~ -28276146 0 4194816 -28276147 homeCount = 96 -28276148 waitCount = 40 -28276148 ripCount = 40 -28276169 locktype1 = 1 -28276170 locktype2 = 6 -28276170 locktype3 = 10 -28276171 goalCount = 3 -28276171 goalTotal = 33 -28276172 otherCount = 46 -~~~ -28276172 64 4194816 -28276185 DOWN 7 -28276185 0 4194816 -28276189 64 4194816 -28276301 DOWN 7 -28276301 0 4194816 -28276362 64 4194816 -28276473 DOWN 7 -28276473 0 4194816 -28276504 64 4194816 -28276563 64 512 -28276768 DOWN 7 -28276768 0 512 -28276782 64 512 -28277032 DOWN 7 -28277032 0 512 -28277039 64 512 -28285770 DOWN 7 -28285770 0 512 -28290802 UP 10 -28290802 waslock = 0 -28290802 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28290828 512 16777728 -~~~ -28290978 512 512 -28291074 DOWN 10 -28291074 0 512 -~~~ -~~~ -28291097 0 2560 -~~~ -~~~ -28291099 0 2048 -28291100 homeCount = 97 -28291101 waitCount = 40 -28291101 ripCount = 40 -28291102 locktype1 = 1 -28291102 locktype2 = 6 -28291103 locktype3 = 10 -28291103 goalCount = 3 -28291104 goalTotal = 33 -28291104 otherCount = 46 -~~~ -28291157 UP 10 -28291157 waslock = 0 -28291157 512 2048 -~~~ -28298203 DOWN 10 -28298203 0 2048 -~~~ -~~~ -28298222 UP 10 -28298222 waslock = 0 -28298222 512 2048 -~~~ -~~~ -28298224 homeCount = 97 -28298225 waitCount = 40 -28298225 ripCount = 40 -28298226 locktype1 = 1 -28298226 locktype2 = 6 -28298227 locktype3 = 10 -28298227 goalCount = 3 -28298228 goalTotal = 33 -28298249 otherCount = 46 -~~~ -~~~ -28298313 DOWN 10 -28298313 0 2048 -~~~ -~~~ -~~~ -~~~ -28298336 homeCount = 97 -28298336 waitCount = 40 -28298337 ripCount = 40 -28298337 locktype1 = 1 -28298338 locktype2 = 6 -28298338 locktype3 = 10 -28298339 goalCount = 3 -28298339 goalTotal = 33 -28298340 otherCount = 46 -~~~ -28298386 UP 10 -28298386 waslock = 0 -28298386 512 2048 -28298408 DOWN 10 -28298408 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28298435 homeCount = 97 -28298436 waitCount = 40 -28298436 ripCount = 40 -28298437 locktype1 = 1 -28298437 locktype2 = 6 -28298438 locktype3 = 10 -28298438 goalCount = 3 -28298439 goalTotal = 33 -28298439 otherCount = 46 -~~~ -28300760 UP 12 -28300760 2048 2048 -28302267 DOWN 12 -28302267 0 2048 -28302282 UP 12 -28302282 2048 2048 -28303163 DOWN 12 -28303163 0 2048 -28303230 UP 12 -28303230 2048 2048 -28303340 DOWN 12 -28303340 0 2048 -28303346 UP 12 -28303346 2048 2048 -28303760 CLICK1 -28303760 CLICK2 -~~~ -~~~ -~~~ -28303783 2048 67110912 -~~~ -28303933 2048 2048 -28304129 DOWN 12 -28304129 0 2048 -28304147 UP 12 -28304147 2048 2048 -~~~ -~~~ -28304150 2048 0 -~~~ -~~~ -28304152 2048 1 -~~~ -~~~ -28304154 2048 3 -~~~ -~~~ -28304156 2048 7 -~~~ -~~~ -28304158 2048 15 -~~~ -~~~ -28304159 2048 31 -~~~ -~~~ -28304161 2048 63 -~~~ -~~~ -28304163 2048 127 -~~~ -~~~ -28304165 2048 255 -28304166 homeCount = 97 -28304167 waitCount = 41 -28304167 ripCount = 40 -28304188 locktype1 = 1 -28304188 locktype2 = 6 -28304189 locktype3 = 10 -28304189 goalCount = 3 -28304190 goalTotal = 33 -28304190 otherCount = 46 -~~~ -28304192 CURRENTGOAL IS [7] -~~~ -28311063 DOWN 12 -28311063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28311100 homeCount = 97 -28311101 waitCount = 41 -28311102 ripCount = 40 -28311102 locktype1 = 1 -28311103 locktype2 = 6 -28311103 locktype3 = 10 -28311104 goalCount = 3 -28311104 goalTotal = 33 -28311105 otherCount = 46 -~~~ -28311106 CURRENTGOAL IS [7] -~~~ -28311127 UP 12 -28311127 2048 255 -28311173 DOWN 12 -28311173 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28311212 homeCount = 97 -28311213 waitCount = 41 -28311213 ripCount = 40 -28311214 locktype1 = 1 -28311214 locktype2 = 6 -28311215 locktype3 = 10 -28311215 goalCount = 3 -28311216 goalTotal = 33 -28311216 otherCount = 46 -~~~ -28311217 CURRENTGOAL IS [7] -~~~ -28311282 UP 12 -28311282 2048 255 -28313151 DOWN 12 -28313151 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28313192 homeCount = 97 -28313193 waitCount = 41 -28313193 ripCount = 40 -28313194 locktype1 = 1 -28313194 locktype2 = 6 -28313195 locktype3 = 10 -28313195 goalCount = 3 -28313196 goalTotal = 33 -28313196 otherCount = 46 -~~~ -28313197 CURRENTGOAL IS [7] -~~~ -28318089 UP 7 -28318089 64 255 -~~~ -~~~ -28318108 outer reward -~~~ -28318108 64 4194559 -~~~ -~~~ -28318332 DOWN 7 -28318332 0 4194559 -~~~ -~~~ -28318355 0 4194558 -~~~ -~~~ -28318357 0 4194556 -~~~ -~~~ -28318359 0 4194552 -~~~ -~~~ -28318361 0 4194544 -~~~ -~~~ -28318362 0 4194528 -~~~ -~~~ -28318364 0 4194496 -~~~ -~~~ -28318366 0 4194432 -~~~ -~~~ -28318368 0 4194304 -~~~ -~~~ -28318370 0 4194816 -28318371 homeCount = 97 -28318371 waitCount = 41 -28318372 ripCount = 40 -28318393 locktype1 = 1 -28318393 locktype2 = 6 -28318394 locktype3 = 10 -28318394 goalCount = 4 -28318395 goalTotal = 34 -28318395 otherCount = 46 -~~~ -28318396 64 4194816 -28318558 64 512 -28318784 DOWN 7 -28318784 0 512 -28318799 64 512 -28326513 DOWN 7 -28326513 0 512 -28326537 64 512 -28326605 DOWN 7 -28326605 0 512 -28331412 UP 10 -28331413 waslock = 0 -28331412 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28331443 512 16777728 -~~~ -28331593 512 512 -28331648 DOWN 10 -28331648 0 512 -~~~ -~~~ -28331669 0 2560 -~~~ -~~~ -28331671 0 2048 -28331672 homeCount = 98 -28331672 waitCount = 41 -28331673 ripCount = 40 -28331673 locktype1 = 1 -28331674 locktype2 = 6 -28331674 locktype3 = 10 -28331675 goalCount = 4 -28331675 goalTotal = 34 -28331676 otherCount = 46 -~~~ -28331697 UP 10 -28331697 waslock = 0 -28331697 512 2048 -~~~ -28334733 DOWN 10 -28334733 0 2048 -~~~ -~~~ -~~~ -~~~ -28334758 homeCount = 98 -28334759 waitCount = 41 -28334759 ripCount = 40 -28334760 locktype1 = 1 -28334760 locktype2 = 6 -28334761 locktype3 = 10 -28334761 goalCount = 4 -28334762 goalTotal = 34 -28334762 otherCount = 46 -~~~ -28334797 UP 10 -28334797 waslock = 0 -28334797 512 2048 -~~~ -28334845 DOWN 10 -28334845 0 2048 -~~~ -~~~ -~~~ -~~~ -28334877 homeCount = 98 -28334877 waitCount = 41 -28334878 ripCount = 40 -28334878 locktype1 = 1 -28334879 locktype2 = 6 -28334879 locktype3 = 10 -28334880 goalCount = 4 -28334880 goalTotal = 34 -28334881 otherCount = 46 -~~~ -28336994 UP 12 -28336994 2048 2048 -28339137 DOWN 12 -28339137 0 2048 -28339153 UP 12 -28339152 2048 2048 -28339517 DOWN 12 -28339517 0 2048 -28339545 UP 12 -28339545 2048 2048 -28340452 DOWN 12 -28340452 0 2048 -28340540 UP 12 -28340540 2048 2048 -28340551 DOWN 12 -28340551 0 2048 -28340555 UP 12 -28340555 2048 2048 -28340569 DOWN 12 -28340569 0 2048 -28340589 UP 12 -28340589 2048 2048 -28340861 DOWN 12 -28340861 0 2048 -28340868 UP 12 -28340868 2048 2048 -28342994 CLICK1 -28342994 CLICK2 -~~~ -~~~ -~~~ -28343019 2048 67110912 -~~~ -28343169 2048 2048 -28347975 DOWN 12 -28347975 0 2048 -28347979 UP 12 -28347979 2048 2048 -~~~ -~~~ -28348001 2048 0 -~~~ -~~~ -28348003 2048 1 -~~~ -~~~ -28348004 2048 3 -~~~ -~~~ -28348006 2048 7 -~~~ -~~~ -28348008 2048 15 -~~~ -~~~ -28348010 2048 31 -~~~ -~~~ -28348012 2048 63 -~~~ -~~~ -28348014 DOWN 12 -28348013 0 127 -~~~ -~~~ -28348015 0 255 -28348016 homeCount = 98 -28348017 waitCount = 42 -28348018 ripCount = 40 -28348039 locktype1 = 1 -28348039 locktype2 = 6 -28348040 locktype3 = 10 -28348040 goalCount = 4 -28348041 goalTotal = 34 -28348041 otherCount = 46 -~~~ -28348042 CURRENTGOAL IS [7] -~~~ -28348046 UP 12 -28348046 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28348075 homeCount = 98 -28348075 waitCount = 42 -28348076 ripCount = 40 -28348076 locktype1 = 1 -28348077 locktype2 = 6 -28348077 locktype3 = 10 -28348078 goalCount = 4 -28348078 goalTotal = 34 -28348079 otherCount = 46 -~~~ -28348080 CURRENTGOAL IS [7] -~~~ -28348143 DOWN 12 -28348143 0 255 -28348159 UP 12 -28348159 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28348186 homeCount = 98 -28348186 waitCount = 42 -28348187 ripCount = 40 -28348187 locktype1 = 1 -28348188 locktype2 = 6 -28348188 locktype3 = 10 -28348189 goalCount = 4 -28348189 goalTotal = 34 -28348190 otherCount = 46 -~~~ -28348191 CURRENTGOAL IS [7] -~~~ -28350762 DOWN 12 -28350762 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28350795 homeCount = 98 -28350796 waitCount = 42 -28350796 ripCount = 40 -28350797 locktype1 = 1 -28350797 locktype2 = 6 -28350798 locktype3 = 10 -28350798 goalCount = 4 -28350799 goalTotal = 34 -28350799 otherCount = 46 -~~~ -28350800 CURRENTGOAL IS [7] -~~~ -28354630 UP 7 -28354630 64 255 -~~~ -~~~ -28354651 outer reward -~~~ -28354651 64 4194559 -~~~ -~~~ -28354678 DOWN 7 -28354678 0 4194559 -~~~ -~~~ -28354698 0 4194558 -~~~ -~~~ -28354700 0 4194556 -~~~ -~~~ -28354702 0 4194552 -~~~ -~~~ -28354704 0 4194544 -~~~ -~~~ -28354706 0 4194528 -~~~ -28354707 64 4194528 -~~~ -~~~ -28354709 64 4194496 -~~~ -~~~ -28354710 64 4194432 -~~~ -28354711 64 4194304 -~~~ -~~~ -28354713 64 4194816 -28354714 homeCount = 98 -28354735 waitCount = 42 -28354736 ripCount = 40 -28354736 locktype1 = 1 -28354737 locktype2 = 6 -28354737 locktype3 = 10 -28354738 goalCount = 5 -28354738 goalTotal = 35 -28354739 otherCount = 46 -~~~ -28354868 DOWN 7 -28354868 0 4194816 -28354919 64 4194816 -28355101 64 512 -28363140 DOWN 7 -28363140 0 512 -28363188 64 512 -28363237 DOWN 7 -28363237 0 512 -28367403 UP 10 -28367403 waslock = 0 -28367403 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28367436 512 16777728 -~~~ -28367557 DOWN 10 -28367557 0 16777728 -~~~ -~~~ -28367580 0 16778752 -~~~ -~~~ -28367581 0 16778240 -28367583 homeCount = 99 -28367583 waitCount = 42 -28367584 ripCount = 40 -28367584 locktype1 = 1 -28367585 locktype2 = 6 -28367585 locktype3 = 10 -28367586 goalCount = 5 -28367586 goalTotal = 35 -28367587 otherCount = 46 -~~~ -28367608 UP 10 -28367608 waslock = 0 -28367608 512 16778240 -28367609 512 1024 -~~~ -28367951 DOWN 10 -28367951 0 1024 -~~~ -~~~ -~~~ -~~~ -28367974 homeCount = 99 -28367975 waitCount = 42 -28367975 ripCount = 40 -28367976 locktype1 = 1 -28367976 locktype2 = 6 -28367977 locktype3 = 10 -28367977 goalCount = 5 -28367978 goalTotal = 35 -28367978 otherCount = 46 -~~~ -28368002 UP 10 -28368003 waslock = 0 -28368002 512 1024 -~~~ -28371913 DOWN 10 -28371913 0 1024 -~~~ -~~~ -~~~ -~~~ -28371933 homeCount = 99 -28371934 waitCount = 42 -28371934 ripCount = 40 -28371935 locktype1 = 1 -28371935 locktype2 = 6 -28371936 locktype3 = 10 -28371936 goalCount = 5 -28371937 goalTotal = 35 -28371937 otherCount = 46 -~~~ -28371983 UP 10 -28371983 waslock = 0 -28371983 512 1024 -~~~ -28372017 DOWN 10 -28372017 0 1024 -~~~ -~~~ -~~~ -~~~ -28372043 homeCount = 99 -28372044 waitCount = 42 -28372044 ripCount = 40 -28372045 locktype1 = 1 -28372045 locktype2 = 6 -28372046 locktype3 = 10 -28372046 goalCount = 5 -28372047 goalTotal = 35 -28372047 otherCount = 46 -~~~ -28374860 UP 11 -28374860 1024 1024 -28375214 DOWN 11 -28375214 0 1024 -28375405 UP 11 -28375405 1024 1024 -28375439 DOWN 11 -28375439 0 1024 -28375489 UP 11 -28375489 1024 1024 -28377737 DOWN 11 -28377737 0 1024 -28377747 UP 11 -28377746 1024 1024 -28378861 BEEP1 -28378861 BEEP2 -~~~ -~~~ -~~~ -28378886 1024 33555456 -~~~ -28379036 1024 1024 -28385014 DOWN 11 -28385013 0 1024 -28385028 UP 11 -28385028 1024 1024 -~~~ -~~~ -28385030 1024 0 -~~~ -~~~ -28385032 1024 1 -~~~ -~~~ -28385034 1024 3 -~~~ -~~~ -28385035 1024 7 -~~~ -~~~ -28385037 1024 15 -~~~ -~~~ -28385039 1024 31 -~~~ -~~~ -28385041 1024 63 -~~~ -~~~ -28385043 1024 127 -~~~ -~~~ -28385045 1024 255 -28385046 homeCount = 99 -28385046 waitCount = 42 -28385067 ripCount = 41 -28385067 locktype1 = 1 -28385068 locktype2 = 6 -28385068 locktype3 = 10 -28385069 goalCount = 5 -28385069 goalTotal = 35 -28385070 otherCount = 46 -~~~ -28385071 CURRENTGOAL IS [7] -~~~ -28388281 DOWN 11 -28388281 0 255 -28388298 UP 11 -28388298 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28388317 homeCount = 99 -28388317 waitCount = 42 -28388318 ripCount = 41 -28388318 locktype1 = 1 -28388319 locktype2 = 6 -28388319 locktype3 = 10 -28388320 goalCount = 5 -28388320 goalTotal = 35 -28388321 otherCount = 46 -~~~ -28388322 CURRENTGOAL IS [7] -~~~ -28388394 DOWN 11 -28388394 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28388438 homeCount = 99 -28388438 waitCount = 42 -28388439 ripCount = 41 -28388439 locktype1 = 1 -28388440 locktype2 = 6 -28388440 locktype3 = 10 -28388441 goalCount = 5 -28388441 goalTotal = 35 -28388442 otherCount = 46 -~~~ -28388443 CURRENTGOAL IS [7] -~~~ -28391127 UP 7 -28391127 64 255 -~~~ -28391152 DOWN 7 -28391152 0 255 -~~~ -28391154 outer reward -~~~ -28391154 0 4194559 -~~~ -~~~ -~~~ -~~~ -28391173 0 4194558 -~~~ -28391175 64 4194558 -~~~ -~~~ -28391176 64 4194556 -~~~ -~~~ -28391178 64 4194552 -~~~ -28391179 64 4194544 -~~~ -~~~ -28391181 64 4194528 -~~~ -~~~ -28391182 64 4194496 -~~~ -~~~ -28391184 64 4194432 -~~~ -~~~ -28391186 64 4194304 -~~~ -~~~ -28391188 64 4194816 -28391210 homeCount = 99 -28391210 waitCount = 42 -28391211 ripCount = 41 -28391211 locktype1 = 1 -28391212 locktype2 = 6 -28391212 locktype3 = 10 -28391213 goalCount = 6 -28391213 goalTotal = 36 -28391214 otherCount = 46 -~~~ -28391352 DOWN 7 -28391352 0 4194816 -28391410 64 4194816 -28391604 64 512 -28401070 DOWN 7 -28401070 0 512 -28405631 UP 10 -28405631 waslock = 0 -28405631 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28405662 512 16777728 -~~~ -28405812 512 512 -28405858 DOWN 10 -28405858 0 512 -28405879 UP 10 -28405880 waslock = 0 -28405879 512 512 -~~~ -~~~ -28405884 512 1536 -~~~ -~~~ -28405886 512 1024 -28405887 homeCount = 100 -28405887 waitCount = 42 -28405888 ripCount = 41 -28405888 locktype1 = 1 -28405889 locktype2 = 6 -28405889 locktype3 = 10 -28405890 goalCount = 6 -28405890 goalTotal = 36 -28405891 otherCount = 46 -~~~ -~~~ -28411150 DOWN 10 -28411150 0 1024 -~~~ -~~~ -~~~ -~~~ -28411176 homeCount = 100 -28411177 waitCount = 42 -28411177 ripCount = 41 -28411178 locktype1 = 1 -28411178 locktype2 = 6 -28411179 locktype3 = 10 -28411179 goalCount = 6 -28411180 goalTotal = 36 -28411180 otherCount = 46 -~~~ -28411204 UP 10 -28411205 waslock = 0 -28411204 512 1024 -~~~ -28411240 DOWN 10 -28411240 0 1024 -~~~ -~~~ -~~~ -~~~ -28411267 homeCount = 100 -28411268 waitCount = 42 -28411268 ripCount = 41 -28411269 locktype1 = 1 -28411269 locktype2 = 6 -28411270 locktype3 = 10 -28411270 goalCount = 6 -28411271 goalTotal = 36 -28411271 otherCount = 46 -~~~ -28413812 UP 11 -28413812 1024 1024 -28415393 DOWN 11 -28415393 0 1024 -28415594 LOCKOUT 3 -~~~ -28415615 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -28415619 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28416951 UP 11 -28416951 1024 0 -28434365 DOWN 11 -28434365 0 0 -28440615 LOCKEND -~~~ -~~~ -~~~ -28440635 0 512 -28442032 UP 7 -28442032 64 512 -28442581 DOWN 7 -28442581 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28442619 homeCount = 100 -28442620 waitCount = 42 -28442620 ripCount = 41 -28442621 locktype1 = 1 -28442621 locktype2 = 6 -28442622 locktype3 = 11 -28442622 goalCount = 6 -28442623 goalTotal = 36 -28442623 otherCount = 46 -~~~ -28447649 UP 10 -28447649 waslock = 0 -28447649 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28447681 512 16777728 -~~~ -28447831 512 512 -28451216 DOWN 10 -28451216 0 512 -~~~ -~~~ -28451236 0 2560 -~~~ -~~~ -28451238 0 2048 -28451239 homeCount = 101 -28451239 waitCount = 42 -28451240 ripCount = 41 -28451240 locktype1 = 1 -28451241 locktype2 = 6 -28451241 locktype3 = 11 -28451242 goalCount = 6 -28451242 goalTotal = 36 -28451243 otherCount = 46 -~~~ -28451279 UP 10 -28451279 waslock = 0 -28451279 512 2048 -~~~ -28451321 DOWN 10 -28451321 0 2048 -~~~ -~~~ -~~~ -~~~ -28451352 homeCount = 101 -28451352 waitCount = 42 -28451353 ripCount = 41 -28451353 locktype1 = 1 -28451354 locktype2 = 6 -28451354 locktype3 = 11 -28451355 goalCount = 6 -28451355 goalTotal = 36 -28451356 otherCount = 46 -~~~ -28454622 UP 12 -28454622 2048 2048 -28455640 DOWN 12 -28455640 0 2048 -28455828 UP 12 -28455828 2048 2048 -28457622 CLICK1 -28457622 CLICK2 -~~~ -~~~ -~~~ -28457646 2048 67110912 -~~~ -28457700 DOWN 12 -28457700 0 67110912 -28457745 UP 12 -28457745 2048 67110912 -28457796 2048 2048 -~~~ -~~~ -28457831 2048 0 -~~~ -~~~ -28457833 2048 1 -~~~ -~~~ -28457835 2048 3 -~~~ -~~~ -28457837 2048 7 -~~~ -~~~ -28457839 2048 15 -~~~ -~~~ -28457841 2048 31 -~~~ -~~~ -28457842 2048 63 -~~~ -~~~ -28457844 2048 127 -~~~ -~~~ -28457846 2048 255 -28457847 homeCount = 101 -28457848 waitCount = 43 -28457848 ripCount = 41 -28457869 locktype1 = 1 -28457869 locktype2 = 6 -28457870 locktype3 = 11 -28457870 goalCount = 6 -28457871 goalTotal = 36 -28457871 otherCount = 46 -~~~ -28457872 CURRENTGOAL IS [7] -~~~ -28457923 DOWN 12 -28457923 0 255 -28457931 UP 12 -28457931 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28457961 homeCount = 101 -28457962 waitCount = 43 -28457962 ripCount = 41 -28457963 locktype1 = 1 -28457963 locktype2 = 6 -28457964 locktype3 = 11 -28457964 goalCount = 6 -28457965 goalTotal = 36 -28457965 otherCount = 46 -~~~ -28457966 CURRENTGOAL IS [7] -~~~ -28458047 DOWN 12 -28458046 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28458081 homeCount = 101 -28458081 waitCount = 43 -28458082 ripCount = 41 -28458082 locktype1 = 1 -28458083 locktype2 = 6 -28458083 locktype3 = 11 -28458084 goalCount = 6 -28458084 goalTotal = 36 -28458085 otherCount = 46 -~~~ -28458086 CURRENTGOAL IS [7] -~~~ -28458107 UP 12 -28458107 2048 255 -28458209 DOWN 12 -28458209 0 255 -28458222 UP 12 -28458222 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28458251 homeCount = 101 -28458252 waitCount = 43 -28458252 ripCount = 41 -28458253 locktype1 = 1 -28458253 locktype2 = 6 -28458254 locktype3 = 11 -28458254 goalCount = 6 -28458255 goalTotal = 36 -28458255 otherCount = 46 -~~~ -28458257 CURRENTGOAL IS [7] -~~~ -28464145 DOWN 12 -28464145 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464183 homeCount = 101 -28464183 waitCount = 43 -28464184 ripCount = 41 -28464184 locktype1 = 1 -28464185 locktype2 = 6 -28464185 locktype3 = 11 -28464186 goalCount = 6 -28464186 goalTotal = 36 -28464187 otherCount = 46 -~~~ -28464188 CURRENTGOAL IS [7] -~~~ -28464211 UP 12 -28464211 2048 255 -28464279 DOWN 12 -28464279 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464314 homeCount = 101 -28464314 waitCount = 43 -28464315 ripCount = 41 -28464315 locktype1 = 1 -28464316 locktype2 = 6 -28464316 locktype3 = 11 -28464317 goalCount = 6 -28464317 goalTotal = 36 -28464318 otherCount = 46 -~~~ -28464319 CURRENTGOAL IS [7] -~~~ -28464343 UP 12 -28464343 2048 255 -28464552 DOWN 12 -28464552 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464592 homeCount = 101 -28464593 waitCount = 43 -28464594 ripCount = 41 -28464594 locktype1 = 1 -28464595 locktype2 = 6 -28464595 locktype3 = 11 -28464596 goalCount = 6 -28464596 goalTotal = 36 -28464597 otherCount = 46 -~~~ -28464598 CURRENTGOAL IS [7] -~~~ -28464678 UP 12 -28464678 2048 255 -28464954 DOWN 12 -28464954 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464994 homeCount = 101 -28464994 waitCount = 43 -28464995 ripCount = 41 -28464995 locktype1 = 1 -28464996 locktype2 = 6 -28464997 locktype3 = 11 -28464997 goalCount = 6 -28464998 goalTotal = 36 -28464998 otherCount = 46 -~~~ -28464999 CURRENTGOAL IS [7] -~~~ -28465040 UP 12 -28465040 2048 255 -28466476 DOWN 12 -28466476 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28466513 homeCount = 101 -28466514 waitCount = 43 -28466514 ripCount = 41 -28466515 locktype1 = 1 -28466515 locktype2 = 6 -28466516 locktype3 = 11 -28466516 goalCount = 6 -28466517 goalTotal = 36 -28466517 otherCount = 46 -~~~ -28466518 CURRENTGOAL IS [7] -~~~ -28466540 UP 12 -28466540 2048 255 -28466558 DOWN 12 -28466558 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28466594 homeCount = 101 -28466594 waitCount = 43 -28466595 ripCount = 41 -28466596 locktype1 = 1 -28466596 locktype2 = 6 -28466597 locktype3 = 11 -28466597 goalCount = 6 -28466598 goalTotal = 36 -28466598 otherCount = 46 -~~~ -28466599 CURRENTGOAL IS [7] -~~~ -28473374 UP 3 -28473374 4 255 -~~~ -~~~ -28474863 DOWN 3 -28474863 0 255 -~~~ -~~~ -28474888 0 254 -~~~ -~~~ -28474890 0 252 -~~~ -~~~ -28474892 0 248 -~~~ -~~~ -28474894 0 240 -~~~ -~~~ -28474896 0 224 -~~~ -~~~ -28474897 0 192 -~~~ -~~~ -28474899 0 128 -~~~ -~~~ -28474901 0 0 -~~~ -~~~ -28474903 0 512 -28474904 homeCount = 101 -28474904 waitCount = 43 -28474905 ripCount = 41 -28474905 locktype1 = 1 -28474906 locktype2 = 6 -28474927 locktype3 = 11 -28474928 goalCount = 6 -28474928 goalTotal = 36 -28474929 otherCount = 47 -~~~ -28474947 4 512 -28474978 DOWN 3 -28474978 0 512 -28479683 UP 10 -28479683 waslock = 0 -28479683 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28479707 512 16777728 -~~~ -28479857 512 512 -28479857 DOWN 10 -28479857 0 512 -~~~ -~~~ -28479883 0 2560 -~~~ -~~~ -28479885 0 2048 -28479886 homeCount = 102 -28479886 waitCount = 43 -28479887 ripCount = 41 -28479887 locktype1 = 1 -28479888 locktype2 = 6 -28479888 locktype3 = 11 -28479889 goalCount = 6 -28479889 goalTotal = 36 -28479890 otherCount = 47 -~~~ -28479911 UP 10 -28479911 waslock = 0 -28479911 512 2048 -~~~ -28485096 DOWN 10 -28485096 0 2048 -~~~ -~~~ -~~~ -~~~ -28485121 UP 10 -28485121 waslock = 0 -28485121 512 2048 -28485123 homeCount = 102 -28485123 waitCount = 43 -28485124 ripCount = 41 -28485124 locktype1 = 1 -28485125 locktype2 = 6 -28485125 locktype3 = 11 -28485126 goalCount = 6 -28485126 goalTotal = 36 -28485127 otherCount = 47 -~~~ -~~~ -28485197 DOWN 10 -28485197 0 2048 -~~~ -~~~ -~~~ -~~~ -28485222 homeCount = 102 -28485222 waitCount = 43 -28485223 ripCount = 41 -28485223 locktype1 = 1 -28485224 locktype2 = 6 -28485224 locktype3 = 11 -28485225 goalCount = 6 -28485225 goalTotal = 36 -28485226 otherCount = 47 -~~~ -28487348 UP 12 -28487348 2048 2048 -28489141 DOWN 12 -28489141 0 2048 -28489173 UP 12 -28489173 2048 2048 -28489765 DOWN 12 -28489765 0 2048 -28489810 UP 12 -28489810 2048 2048 -28490348 CLICK1 -28490348 CLICK2 -~~~ -~~~ -~~~ -28490373 2048 67110912 -~~~ -28490523 2048 2048 -28490662 DOWN 12 -28490662 0 2048 -28490664 UP 12 -28490664 2048 2048 -~~~ -~~~ -28490680 2048 0 -~~~ -~~~ -28490682 2048 1 -~~~ -~~~ -28490684 2048 3 -~~~ -~~~ -28490686 2048 7 -~~~ -~~~ -28490688 2048 15 -~~~ -~~~ -28490689 2048 31 -~~~ -~~~ -28490691 2048 63 -~~~ -~~~ -28490693 2048 127 -~~~ -~~~ -28490695 2048 255 -28490696 homeCount = 102 -28490696 waitCount = 44 -28490697 ripCount = 41 -28490718 locktype1 = 1 -28490719 locktype2 = 6 -28490719 locktype3 = 11 -28490720 goalCount = 6 -28490720 goalTotal = 36 -28490721 otherCount = 47 -~~~ -28490722 CURRENTGOAL IS [7] -~~~ -28490802 DOWN 12 -28490802 0 255 -28490812 UP 12 -28490812 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28490850 homeCount = 102 -28490850 waitCount = 44 -28490851 ripCount = 41 -28490851 locktype1 = 1 -28490852 locktype2 = 6 -28490853 locktype3 = 11 -28490853 goalCount = 6 -28490854 goalTotal = 36 -28490854 otherCount = 47 -~~~ -28490855 CURRENTGOAL IS [7] -~~~ -28499180 DOWN 12 -28499180 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28499217 homeCount = 102 -28499218 waitCount = 44 -28499218 ripCount = 41 -28499219 locktype1 = 1 -28499220 locktype2 = 6 -28499220 locktype3 = 11 -28499221 goalCount = 6 -28499221 goalTotal = 36 -28499222 otherCount = 47 -~~~ -28499223 CURRENTGOAL IS [7] -~~~ -28502930 UP 4 -28502930 8 255 -~~~ -~~~ -28504240 DOWN 4 -28504240 0 255 -~~~ -~~~ -28504264 0 254 -~~~ -~~~ -28504266 0 252 -~~~ -~~~ -28504268 0 248 -~~~ -~~~ -28504269 0 240 -~~~ -~~~ -28504271 0 224 -~~~ -~~~ -28504273 0 192 -~~~ -~~~ -28504275 0 128 -~~~ -~~~ -28504277 0 0 -~~~ -~~~ -28504279 0 512 -28504280 homeCount = 102 -28504280 waitCount = 44 -28504281 ripCount = 41 -28504281 locktype1 = 1 -28504282 locktype2 = 6 -28504303 locktype3 = 11 -28504303 goalCount = 6 -28504304 goalTotal = 36 -28504304 otherCount = 48 -~~~ -28510764 UP 10 -28510764 waslock = 0 -28510764 512 512 -~~~ -~~~ -28510787 DOWN 10 -28510786 0 512 -~~~ -~~~ -~~~ -28510790 0 16777728 -~~~ -28510807 UP 10 -28510807 waslock = 0 -28510807 512 16777728 -~~~ -~~~ -~~~ -28510810 512 16778752 -~~~ -28510811 512 16778240 -28510812 homeCount = 103 -28510812 waitCount = 44 -28510813 ripCount = 41 -28510813 locktype1 = 1 -28510814 locktype2 = 6 -28510814 locktype3 = 11 -28510836 goalCount = 6 -28510836 goalTotal = 36 -28510837 otherCount = 48 -~~~ -~~~ -28510940 512 1024 -28511036 DOWN 10 -28511036 0 1024 -~~~ -~~~ -~~~ -~~~ -28511057 homeCount = 103 -28511058 waitCount = 44 -28511058 ripCount = 41 -28511059 locktype1 = 1 -28511059 locktype2 = 6 -28511060 locktype3 = 11 -28511060 goalCount = 6 -28511061 goalTotal = 36 -28511061 otherCount = 48 -~~~ -28511079 UP 10 -28511079 waslock = 0 -28511079 512 1024 -~~~ -28516182 DOWN 10 -28516182 0 1024 -~~~ -~~~ -~~~ -~~~ -28516207 homeCount = 103 -28516207 waitCount = 44 -28516208 ripCount = 41 -28516208 locktype1 = 1 -28516209 locktype2 = 6 -28516209 locktype3 = 11 -28516210 goalCount = 6 -28516210 goalTotal = 36 -28516211 otherCount = 48 -~~~ -28516242 UP 10 -28516242 waslock = 0 -28516242 512 1024 -28516260 DOWN 10 -28516260 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28516286 homeCount = 103 -28516287 waitCount = 44 -28516287 ripCount = 41 -28516288 locktype1 = 1 -28516288 locktype2 = 6 -28516289 locktype3 = 11 -28516289 goalCount = 6 -28516290 goalTotal = 36 -28516290 otherCount = 48 -~~~ -28518090 UP 11 -28518090 1024 1024 -28522590 BEEP1 -28522590 BEEP2 -~~~ -~~~ -~~~ -28522616 1024 33555456 -~~~ -28522635 DOWN 11 -28522635 0 33555456 -28522652 UP 11 -28522652 1024 33555456 -28522766 1024 1024 -28522899 DOWN 11 -28522899 0 1024 -28522967 UP 11 -28522967 1024 1024 -28523180 DOWN 11 -28523180 0 1024 -28523192 UP 11 -28523192 1024 1024 -~~~ -~~~ -28523290 1024 0 -~~~ -~~~ -28523292 1024 1 -~~~ -~~~ -28523293 1024 3 -~~~ -~~~ -28523295 1024 7 -~~~ -~~~ -28523297 1024 15 -~~~ -~~~ -28523299 1024 31 -~~~ -~~~ -28523301 1024 63 -~~~ -~~~ -28523302 1024 127 -~~~ -~~~ -28523304 1024 255 -28523305 homeCount = 103 -28523306 waitCount = 44 -28523306 ripCount = 42 -28523327 locktype1 = 1 -28523328 locktype2 = 6 -28523329 locktype3 = 11 -28523329 goalCount = 6 -28523330 goalTotal = 36 -28523330 otherCount = 48 -~~~ -28523331 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28523359 homeCount = 103 -28523360 waitCount = 44 -28523360 ripCount = 42 -28523361 locktype1 = 1 -28523361 locktype2 = 6 -28523362 locktype3 = 11 -28523362 goalCount = 6 -28523363 goalTotal = 36 -28523363 otherCount = 48 -~~~ -28523385 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28523392 homeCount = 103 -28523392 waitCount = 44 -28523393 ripCount = 42 -28523393 locktype1 = 1 -28523394 locktype2 = 6 -28523394 locktype3 = 11 -28523415 goalCount = 6 -28523416 goalTotal = 36 -28523416 otherCount = 48 -~~~ -28523417 CURRENTGOAL IS [7] -~~~ -28529119 DOWN 11 -28529119 0 255 -~~~ -~~~ -28529139 UP 11 -28529139 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529154 homeCount = 103 -28529155 waitCount = 44 -28529155 ripCount = 42 -28529156 locktype1 = 1 -28529157 locktype2 = 6 -28529157 locktype3 = 11 -28529158 goalCount = 6 -28529158 goalTotal = 36 -28529159 otherCount = 48 -~~~ -28529160 CURRENTGOAL IS [7] -~~~ -28529243 DOWN 11 -28529243 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529278 UP 11 -28529278 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529285 homeCount = 103 -28529286 waitCount = 44 -28529286 ripCount = 42 -28529287 locktype1 = 1 -28529287 locktype2 = 6 -28529288 locktype3 = 11 -28529288 goalCount = 6 -28529289 goalTotal = 36 -28529289 otherCount = 48 -~~~ -28529291 CURRENTGOAL IS [7] -~~~ -28529377 DOWN 11 -28529377 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529405 UP 11 -28529405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529413 homeCount = 103 -28529413 waitCount = 44 -28529414 ripCount = 42 -28529415 locktype1 = 1 -28529415 locktype2 = 6 -28529416 locktype3 = 11 -28529416 goalCount = 6 -28529417 goalTotal = 36 -28529417 otherCount = 48 -~~~ -28529418 CURRENTGOAL IS [7] -~~~ -28531283 DOWN 11 -28531283 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28531322 homeCount = 103 -28531323 waitCount = 44 -28531323 ripCount = 42 -28531324 locktype1 = 1 -28531324 locktype2 = 6 -28531325 locktype3 = 11 -28531325 goalCount = 6 -28531326 goalTotal = 36 -28531326 otherCount = 48 -~~~ -28531327 CURRENTGOAL IS [7] -~~~ -28535334 UP 7 -28535334 64 255 -~~~ -~~~ -28535359 outer reward -~~~ -28535359 64 4194559 -~~~ -~~~ -28535740 DOWN 7 -28535740 0 4194559 -~~~ -~~~ -28535756 0 4194558 -~~~ -~~~ -28535758 0 4194556 -~~~ -~~~ -28535760 0 4194552 -~~~ -~~~ -28535762 0 4194544 -~~~ -~~~ -28535764 0 4194528 -~~~ -~~~ -28535765 0 4194496 -~~~ -~~~ -28535767 0 4194432 -~~~ -~~~ -28535769 0 4194304 -~~~ -28535770 64 4194304 -~~~ -28535772 64 4194816 -28535773 homeCount = 103 -28535793 waitCount = 44 -28535794 ripCount = 42 -28535794 locktype1 = 1 -28535795 locktype2 = 6 -28535795 locktype3 = 11 -28535796 goalCount = 7 -28535796 goalTotal = 37 -28535797 otherCount = 48 -~~~ -28535809 64 512 -28543837 DOWN 7 -28543837 0 512 -28548438 UP 10 -28548438 waslock = 0 -28548438 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28548463 512 16777728 -~~~ -28548613 512 512 -28548656 DOWN 10 -28548656 0 512 -28548677 UP 10 -28548678 waslock = 0 -28548677 512 512 -~~~ -~~~ -~~~ -28548680 512 1536 -~~~ -28548682 homeCount = 104 -28548682 waitCount = 44 -28548683 ripCount = 42 -28548683 locktype1 = 1 -28548684 locktype2 = 6 -28548684 locktype3 = 11 -28548685 goalCount = 7 -28548705 goalTotal = 37 -28548706 otherCount = 48 -~~~ -~~~ -28548707 512 1024 -28553037 DOWN 10 -28553037 0 1024 -~~~ -~~~ -~~~ -~~~ -28553060 homeCount = 104 -28553061 waitCount = 44 -28553061 ripCount = 42 -28553062 locktype1 = 1 -28553063 locktype2 = 6 -28553063 locktype3 = 11 -28553064 goalCount = 7 -28553064 goalTotal = 37 -28553065 otherCount = 48 -~~~ -28555797 UP 11 -28555797 1024 1024 -28558797 BEEP1 -28558797 BEEP2 -~~~ -~~~ -~~~ -28558819 1024 33555456 -~~~ -28558969 1024 1024 -28566484 DOWN 11 -28566484 0 1024 -28566489 UP 11 -28566489 1024 1024 -~~~ -~~~ -28566507 1024 0 -~~~ -~~~ -28566509 1024 1 -~~~ -~~~ -28566511 1024 3 -~~~ -~~~ -28566513 1024 7 -~~~ -~~~ -28566515 1024 15 -~~~ -~~~ -28566516 1024 31 -~~~ -~~~ -28566518 1024 63 -~~~ -~~~ -28566520 1024 127 -~~~ -~~~ -28566522 1024 255 -28566523 homeCount = 104 -28566524 waitCount = 44 -28566524 ripCount = 43 -28566525 locktype1 = 1 -28566546 locktype2 = 6 -28566546 locktype3 = 11 -28566547 goalCount = 7 -28566547 goalTotal = 37 -28566548 otherCount = 48 -~~~ -28566549 CURRENTGOAL IS [7] -~~~ -28568685 DOWN 11 -28568685 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28568725 homeCount = 104 -28568726 waitCount = 44 -28568726 ripCount = 43 -28568727 locktype1 = 1 -28568728 locktype2 = 6 -28568728 locktype3 = 11 -28568729 goalCount = 7 -28568729 goalTotal = 37 -28568730 otherCount = 48 -~~~ -28568731 CURRENTGOAL IS [7] -~~~ -28571533 UP 7 -28571533 64 255 -28571553 DOWN 7 -28571553 0 255 -~~~ -~~~ -28571574 outer reward -~~~ -28571574 0 4194559 -~~~ -~~~ -~~~ -~~~ -28571578 0 4194558 -~~~ -~~~ -28571580 0 4194556 -~~~ -~~~ -28571582 0 4194552 -~~~ -~~~ -28571584 0 4194544 -~~~ -~~~ -28571585 0 4194528 -~~~ -~~~ -28571587 0 4194496 -~~~ -~~~ -28571589 0 4194432 -~~~ -~~~ -28571591 0 4194304 -~~~ -~~~ -28571593 0 4194816 -28571594 homeCount = 104 -28571615 waitCount = 44 -28571615 ripCount = 43 -28571616 locktype1 = 1 -28571616 locktype2 = 6 -28571617 locktype3 = 11 -28571617 goalCount = 8 -28571618 goalTotal = 38 -28571618 otherCount = 48 -~~~ -28571624 64 4194816 -28571719 DOWN 7 -28571719 0 4194816 -28571813 64 4194816 -28572024 64 512 -28581184 DOWN 7 -28581184 0 512 -28585695 UP 10 -28585696 waslock = 0 -28585695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28585719 512 16777728 -~~~ -28585869 512 512 -28585923 DOWN 10 -28585923 0 512 -~~~ -~~~ -28585947 0 2560 -~~~ -~~~ -28585948 0 2048 -28585949 homeCount = 105 -28585950 waitCount = 44 -28585950 ripCount = 43 -28585951 locktype1 = 1 -28585951 locktype2 = 6 -28585952 locktype3 = 11 -28585952 goalCount = 8 -28585953 goalTotal = 38 -28585954 otherCount = 48 -~~~ -28585975 UP 10 -28585975 waslock = 0 -28585975 512 2048 -~~~ -28589699 DOWN 10 -28589699 0 2048 -~~~ -~~~ -~~~ -~~~ -28589726 homeCount = 105 -28589726 waitCount = 44 -28589727 ripCount = 43 -28589727 locktype1 = 1 -28589728 locktype2 = 6 -28589728 locktype3 = 11 -28589729 goalCount = 8 -28589729 goalTotal = 38 -28589730 otherCount = 48 -~~~ -28589736 UP 10 -28589737 waslock = 0 -28589736 512 2048 -~~~ -28589793 DOWN 10 -28589793 0 2048 -~~~ -~~~ -~~~ -~~~ -28589817 homeCount = 105 -28589818 waitCount = 44 -28589818 ripCount = 43 -28589819 locktype1 = 1 -28589819 locktype2 = 6 -28589820 locktype3 = 11 -28589820 goalCount = 8 -28589821 goalTotal = 38 -28589821 otherCount = 48 -~~~ -28591883 UP 12 -28591883 2048 2048 -28594999 DOWN 12 -28594999 0 2048 -28595008 UP 12 -28595008 2048 2048 -28596384 CLICK1 -28596384 CLICK2 -~~~ -~~~ -~~~ -28596405 2048 67110912 -~~~ -28596555 2048 2048 -28602879 DOWN 12 -28602879 0 2048 -~~~ -~~~ -28602904 0 0 -~~~ -~~~ -28602906 0 1 -~~~ -~~~ -28602908 0 3 -~~~ -~~~ -28602910 0 7 -~~~ -~~~ -28602912 0 15 -~~~ -~~~ -28602913 0 31 -~~~ -~~~ -28602915 0 63 -~~~ -~~~ -28602917 0 127 -~~~ -~~~ -28602919 0 255 -28602920 homeCount = 105 -28602920 waitCount = 45 -28602921 ripCount = 43 -28602921 locktype1 = 1 -28602922 locktype2 = 6 -28602943 locktype3 = 11 -28602944 goalCount = 8 -28602944 goalTotal = 38 -28602945 otherCount = 48 -~~~ -28602946 CURRENTGOAL IS [7] -~~~ -28602948 UP 12 -28602948 2048 255 -28602980 DOWN 12 -28602980 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603008 UP 12 -28603008 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603014 homeCount = 105 -28603015 waitCount = 45 -28603015 ripCount = 43 -28603016 locktype1 = 1 -28603016 locktype2 = 6 -28603017 locktype3 = 11 -28603017 goalCount = 8 -28603018 goalTotal = 38 -28603018 otherCount = 48 -~~~ -28603020 CURRENTGOAL IS [7] -~~~ -28603548 DOWN 12 -28603548 0 255 -28603564 UP 12 -28603564 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603599 homeCount = 105 -28603599 waitCount = 45 -28603600 ripCount = 43 -28603601 locktype1 = 1 -28603601 locktype2 = 6 -28603602 locktype3 = 11 -28603602 goalCount = 8 -28603603 goalTotal = 38 -28603603 otherCount = 48 -~~~ -28603604 CURRENTGOAL IS [7] -~~~ -28605256 DOWN 12 -28605256 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28605289 homeCount = 105 -28605290 waitCount = 45 -28605290 ripCount = 43 -28605291 locktype1 = 1 -28605291 locktype2 = 6 -28605292 locktype3 = 11 -28605292 goalCount = 8 -28605293 goalTotal = 38 -28605293 otherCount = 48 -~~~ -28605295 CURRENTGOAL IS [7] -~~~ -28605316 UP 12 -28605316 2048 255 -28605340 DOWN 12 -28605340 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28605382 homeCount = 105 -28605382 waitCount = 45 -28605383 ripCount = 43 -28605383 locktype1 = 1 -28605384 locktype2 = 6 -28605384 locktype3 = 11 -28605385 goalCount = 8 -28605385 goalTotal = 38 -28605386 otherCount = 48 -~~~ -28605387 CURRENTGOAL IS [7] -~~~ -28610041 UP 7 -28610041 64 255 -~~~ -~~~ -28610066 outer reward -~~~ -28610066 64 4194559 -~~~ -~~~ -28610080 DOWN 7 -28610080 0 4194559 -~~~ -~~~ -28610104 0 4194558 -~~~ -~~~ -28610106 0 4194556 -~~~ -~~~ -28610108 0 4194552 -~~~ -~~~ -28610110 0 4194544 -~~~ -~~~ -28610112 0 4194528 -~~~ -~~~ -28610113 0 4194496 -~~~ -~~~ -28610115 0 4194432 -~~~ -~~~ -28610117 0 4194304 -~~~ -~~~ -28610119 0 4194816 -28610120 homeCount = 105 -28610120 waitCount = 45 -28610121 ripCount = 43 -28610142 locktype1 = 1 -28610143 locktype2 = 6 -28610143 locktype3 = 11 -28610144 goalCount = 9 -28610144 goalTotal = 39 -28610145 otherCount = 48 -~~~ -28610145 64 4194816 -28610263 DOWN 7 -28610263 0 4194816 -28610325 64 4194816 -28610516 64 512 -28610711 DOWN 7 -28610711 0 512 -28610728 64 512 -28618901 DOWN 7 -28618901 0 512 -28624410 UP 10 -28624410 waslock = 0 -28624410 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28624433 512 16777728 -~~~ -28624583 512 512 -28629207 DOWN 10 -28629207 0 512 -~~~ -~~~ -28629227 0 1536 -~~~ -~~~ -28629229 0 1024 -28629230 homeCount = 106 -28629230 waitCount = 45 -28629231 ripCount = 43 -28629231 locktype1 = 1 -28629232 locktype2 = 6 -28629232 locktype3 = 11 -28629233 goalCount = 9 -28629233 goalTotal = 39 -28629234 otherCount = 48 -~~~ -28629267 UP 10 -28629268 waslock = 0 -28629267 512 1024 -28629281 DOWN 10 -28629281 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28629317 homeCount = 106 -28629318 waitCount = 45 -28629318 ripCount = 43 -28629319 locktype1 = 1 -28629319 locktype2 = 6 -28629320 locktype3 = 11 -28629320 goalCount = 9 -28629321 goalTotal = 39 -28629321 otherCount = 48 -~~~ -28631683 UP 11 -28631683 1024 1024 -28635339 DOWN 11 -28635339 0 1024 -28635349 UP 11 -28635349 1024 1024 -28635683 BEEP1 -28635683 BEEP2 -~~~ -~~~ -~~~ -28635709 1024 33555456 -~~~ -28635859 1024 1024 -28642049 DOWN 11 -28642048 0 1024 -~~~ -~~~ -28642066 0 0 -~~~ -28642067 UP 11 -28642067 1024 0 -~~~ -~~~ -28642069 1024 1 -~~~ -~~~ -28642071 1024 3 -~~~ -~~~ -28642072 1024 7 -~~~ -28642073 1024 15 -~~~ -~~~ -28642075 1024 31 -~~~ -~~~ -28642076 1024 63 -~~~ -~~~ -28642078 1024 127 -~~~ -~~~ -28642080 1024 255 -28642081 homeCount = 106 -28642102 waitCount = 45 -28642102 ripCount = 44 -28642103 locktype1 = 1 -28642103 locktype2 = 6 -28642104 locktype3 = 11 -28642104 goalCount = 9 -28642105 goalTotal = 39 -28642105 otherCount = 48 -~~~ -28642107 CURRENTGOAL IS [7] -~~~ -28642132 DOWN 11 -28642132 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642162 homeCount = 106 -28642162 waitCount = 45 -28642163 ripCount = 44 -28642163 locktype1 = 1 -28642164 locktype2 = 6 -28642164 locktype3 = 11 -28642165 goalCount = 9 -28642165 goalTotal = 39 -28642166 otherCount = 48 -~~~ -28642167 CURRENTGOAL IS [7] -~~~ -28642188 UP 11 -28642188 1024 255 -28642197 DOWN 11 -28642197 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642220 UP 11 -28642220 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642227 homeCount = 106 -28642228 waitCount = 45 -28642228 ripCount = 44 -28642229 locktype1 = 1 -28642229 locktype2 = 6 -28642230 locktype3 = 11 -28642230 goalCount = 9 -28642231 goalTotal = 39 -28642231 otherCount = 48 -~~~ -28642232 CURRENTGOAL IS [7] -~~~ -28642272 DOWN 11 -28642272 0 255 -28642296 UP 11 -28642296 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642313 homeCount = 106 -28642314 waitCount = 45 -28642314 ripCount = 44 -28642315 locktype1 = 1 -28642315 locktype2 = 6 -28642316 locktype3 = 11 -28642316 goalCount = 9 -28642317 goalTotal = 39 -28642317 otherCount = 48 -~~~ -28642318 CURRENTGOAL IS [7] -~~~ -28643982 DOWN 11 -28643982 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28644022 homeCount = 106 -28644022 waitCount = 45 -28644023 ripCount = 44 -28644023 locktype1 = 1 -28644024 locktype2 = 6 -28644024 locktype3 = 11 -28644025 goalCount = 9 -28644025 goalTotal = 39 -28644026 otherCount = 48 -~~~ -28644027 CURRENTGOAL IS [7] -~~~ -28644048 UP 11 -28644048 1024 255 -28644071 DOWN 11 -28644071 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28644112 homeCount = 106 -28644113 waitCount = 45 -28644113 ripCount = 44 -28644114 locktype1 = 1 -28644114 locktype2 = 6 -28644115 locktype3 = 11 -28644115 goalCount = 9 -28644116 goalTotal = 39 -28644116 otherCount = 48 -~~~ -28644118 CURRENTGOAL IS [7] -~~~ -28646624 UP 7 -28646624 64 255 -~~~ -~~~ -28646652 outer reward -~~~ -28646652 64 4194559 -~~~ -~~~ -28646657 outerreps = 6 -~~~ -~~~ -28646820 DOWN 7 -28646820 0 4194559 -~~~ -~~~ -28646837 0 4194558 -~~~ -~~~ -28646838 0 4194556 -~~~ -~~~ -28646840 0 4194552 -~~~ -~~~ -28646842 0 4194544 -~~~ -~~~ -28646844 0 4194528 -~~~ -~~~ -28646846 0 4194496 -~~~ -~~~ -28646848 0 4194432 -~~~ -~~~ -28646849 0 4194304 -~~~ -~~~ -28646851 0 4194816 -28646852 homeCount = 106 -28646853 waitCount = 45 -28646874 ripCount = 44 -28646875 locktype1 = 1 -28646875 locktype2 = 6 -28646876 locktype3 = 11 -28646876 goalCount = 0 -28646877 goalTotal = 40 -28646877 otherCount = 48 -~~~ -28646881 64 4194816 -28647102 64 512 -28654098 DOWN 7 -28654098 0 512 -28654128 64 512 -28655573 DOWN 7 -28655573 0 512 -28659979 UP 10 -28659979 waslock = 0 -28659979 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28660003 512 16777728 -~~~ -28660153 512 512 -28660172 DOWN 10 -28660172 0 512 -~~~ -~~~ -28660192 0 2560 -~~~ -~~~ -28660194 0 2048 -28660195 homeCount = 107 -28660196 waitCount = 45 -28660196 ripCount = 44 -28660197 locktype1 = 1 -28660197 locktype2 = 6 -28660198 locktype3 = 11 -28660198 goalCount = 0 -28660199 goalTotal = 40 -28660199 otherCount = 48 -~~~ -28660221 UP 10 -28660221 waslock = 0 -28660221 512 2048 -~~~ -28664181 DOWN 10 -28664181 0 2048 -~~~ -~~~ -~~~ -~~~ -28664200 homeCount = 107 -28664201 waitCount = 45 -28664201 ripCount = 44 -28664202 locktype1 = 1 -28664202 locktype2 = 6 -28664203 locktype3 = 11 -28664203 goalCount = 0 -28664204 goalTotal = 40 -28664204 otherCount = 48 -~~~ -28664242 UP 10 -28664242 waslock = 0 -28664242 512 2048 -~~~ -28664282 DOWN 10 -28664282 0 2048 -~~~ -~~~ -~~~ -~~~ -28664301 homeCount = 107 -28664301 waitCount = 45 -28664302 ripCount = 44 -28664302 locktype1 = 1 -28664303 locktype2 = 6 -28664303 locktype3 = 11 -28664304 goalCount = 0 -28664304 goalTotal = 40 -28664305 otherCount = 48 -~~~ -28666679 UP 12 -28666679 2048 2048 -28669418 DOWN 12 -28669418 0 2048 -28669421 UP 12 -28669421 2048 2048 -28670180 CLICK1 -28670180 CLICK2 -~~~ -~~~ -~~~ -28670200 2048 67110912 -~~~ -28670350 2048 2048 -28675738 DOWN 12 -28675738 0 2048 -28675753 UP 12 -28675753 2048 2048 -~~~ -~~~ -28675758 2048 0 -~~~ -~~~ -28675760 2048 1 -~~~ -~~~ -28675761 2048 3 -~~~ -~~~ -28675763 2048 7 -~~~ -~~~ -28675765 2048 15 -~~~ -~~~ -28675767 2048 31 -~~~ -~~~ -28675769 2048 63 -~~~ -~~~ -28675771 2048 127 -~~~ -~~~ -28675772 2048 255 -28675773 homeCount = 107 -28675774 waitCount = 46 -28675775 ripCount = 44 -28675796 locktype1 = 1 -28675796 locktype2 = 6 -28675797 locktype3 = 11 -28675797 goalCount = 0 -28675798 goalTotal = 40 -28675798 otherCount = 48 -~~~ -28675799 CURRENTGOAL IS [8] -~~~ -28675955 DOWN 12 -28675955 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28675995 homeCount = 107 -28675996 waitCount = 46 -28675996 ripCount = 44 -28675997 locktype1 = 1 -28675997 locktype2 = 6 -28675998 locktype3 = 11 -28675998 goalCount = 0 -28675999 goalTotal = 40 -28675999 otherCount = 48 -~~~ -28676000 CURRENTGOAL IS [8] -~~~ -28676059 UP 12 -28676058 2048 255 -28676099 DOWN 12 -28676099 0 255 -28676107 UP 12 -28676107 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676134 homeCount = 107 -28676135 waitCount = 46 -28676135 ripCount = 44 -28676136 locktype1 = 1 -28676136 locktype2 = 6 -28676137 locktype3 = 11 -28676137 goalCount = 0 -28676138 goalTotal = 40 -28676138 otherCount = 48 -~~~ -28676139 CURRENTGOAL IS [8] -~~~ -28676193 DOWN 12 -28676193 0 255 -~~~ -~~~ -~~~ -28676221 UP 12 -28676221 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676236 homeCount = 107 -28676236 waitCount = 46 -28676237 ripCount = 44 -28676238 locktype1 = 1 -28676238 locktype2 = 6 -28676239 locktype3 = 11 -28676239 goalCount = 0 -28676240 goalTotal = 40 -28676240 otherCount = 48 -~~~ -28676241 CURRENTGOAL IS [8] -~~~ -28676262 DOWN 12 -28676262 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676294 homeCount = 107 -28676294 waitCount = 46 -28676295 ripCount = 44 -28676296 locktype1 = 1 -28676296 locktype2 = 6 -28676297 locktype3 = 11 -28676297 goalCount = 0 -28676298 goalTotal = 40 -28676298 otherCount = 48 -~~~ -28676299 CURRENTGOAL IS [8] -~~~ -28676341 UP 12 -28676341 2048 255 -28676567 DOWN 12 -28676567 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676604 homeCount = 107 -28676605 waitCount = 46 -28676606 ripCount = 44 -28676606 locktype1 = 1 -28676607 locktype2 = 6 -28676607 locktype3 = 11 -28676608 goalCount = 0 -28676608 goalTotal = 40 -28676609 otherCount = 48 -~~~ -28676610 CURRENTGOAL IS [8] -~~~ -28676631 UP 12 -28676631 2048 255 -28676674 DOWN 12 -28676674 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676715 homeCount = 107 -28676716 waitCount = 46 -28676717 ripCount = 44 -28676717 locktype1 = 1 -28676718 locktype2 = 6 -28676718 locktype3 = 11 -28676719 goalCount = 0 -28676719 goalTotal = 40 -28676720 otherCount = 48 -~~~ -28676721 CURRENTGOAL IS [8] -~~~ -28676794 UP 12 -28676794 2048 255 -28676813 DOWN 12 -28676813 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676847 homeCount = 107 -28676848 waitCount = 46 -28676848 ripCount = 44 -28676849 locktype1 = 1 -28676849 locktype2 = 6 -28676850 locktype3 = 11 -28676850 goalCount = 0 -28676851 goalTotal = 40 -28676851 otherCount = 48 -~~~ -28676853 CURRENTGOAL IS [8] -~~~ -28681987 UP 7 -28681987 64 255 -~~~ -~~~ -28682178 DOWN 7 -28682178 0 255 -~~~ -~~~ -28682199 0 254 -~~~ -~~~ -28682201 0 252 -~~~ -~~~ -28682203 0 248 -~~~ -~~~ -28682205 0 240 -~~~ -~~~ -28682206 0 224 -~~~ -~~~ -28682208 0 192 -~~~ -~~~ -28682210 0 128 -~~~ -~~~ -28682212 0 0 -~~~ -~~~ -28682214 0 512 -28682215 homeCount = 107 -28682215 waitCount = 46 -28682216 ripCount = 44 -28682216 locktype1 = 1 -28682237 locktype2 = 6 -28682237 locktype3 = 11 -28682238 goalCount = 0 -28682238 goalTotal = 40 -28682239 otherCount = 49 -~~~ -28682242 64 512 -28682805 DOWN 7 -28682805 0 512 -28687242 UP 10 -28687242 waslock = 0 -28687242 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28687267 512 16777728 -~~~ -28687417 512 512 -28692614 DOWN 10 -28692614 0 512 -~~~ -~~~ -28692630 0 1536 -~~~ -~~~ -28692632 0 1024 -28692633 homeCount = 108 -28692633 waitCount = 46 -28692634 ripCount = 44 -28692634 locktype1 = 1 -28692635 locktype2 = 6 -28692635 locktype3 = 11 -28692636 goalCount = 0 -28692636 goalTotal = 40 -28692637 otherCount = 49 -~~~ -28722460 UP 5 -28722460 16 1024 -~~~ -28722481 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -28722485 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28722793 DOWN 5 -28722793 0 0 -28722950 16 0 -28723527 DOWN 5 -28723527 0 0 -28723945 16 0 -28723961 DOWN 5 -28723961 0 0 -28731390 512 0 -28731607 0 0 -28734719 512 0 -28740000 0 0 -28740067 512 0 -28740107 0 0 -28747481 LOCKEND -~~~ -~~~ -~~~ -28747502 0 512 -28779978 UP 10 -28779978 waslock = 0 -28779978 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28780008 512 16777728 -~~~ -28780038 DOWN 10 -28780038 0 16777728 -~~~ -~~~ -28780067 0 16779776 -~~~ -~~~ -28780069 0 16779264 -28780070 homeCount = 109 -28780070 waitCount = 46 -28780071 ripCount = 44 -28780071 locktype1 = 1 -28780072 locktype2 = 7 -28780072 locktype3 = 11 -28780073 goalCount = 0 -28780073 goalTotal = 40 -28780074 otherCount = 49 -~~~ -28780103 UP 10 -28780103 waslock = 0 -28780103 512 16779264 -28780132 DOWN 10 -28780132 0 16779264 -~~~ -~~~ -~~~ -~~~ -~~~ -28780155 homeCount = 109 -28780155 waitCount = 46 -28780156 ripCount = 44 -28780156 locktype1 = 1 -28780157 locktype2 = 7 -28780157 locktype3 = 11 -28780158 goalCount = 0 -28780158 goalTotal = 40 -28780159 otherCount = 49 -~~~ -28780159 0 2048 -28780313 UP 10 -28780314 waslock = 0 -28780313 512 2048 -~~~ -28780367 DOWN 10 -28780367 0 2048 -~~~ -~~~ -~~~ -~~~ -28780397 homeCount = 109 -28780397 waitCount = 46 -28780398 ripCount = 44 -28780398 locktype1 = 1 -28780399 locktype2 = 7 -28780399 locktype3 = 11 -28780400 goalCount = 0 -28780400 goalTotal = 40 -28780401 otherCount = 49 -~~~ -28780413 UP 10 -28780414 waslock = 0 -28780413 512 2048 -~~~ -28780850 DOWN 10 -28780850 0 2048 -~~~ -~~~ -~~~ -~~~ -28780875 homeCount = 109 -28780875 waitCount = 46 -28780876 ripCount = 44 -28780877 locktype1 = 1 -28780877 locktype2 = 7 -28780878 locktype3 = 11 -28780878 goalCount = 0 -28780879 goalTotal = 40 -28780879 otherCount = 49 -~~~ -28780890 UP 10 -28780890 waslock = 0 -28780890 512 2048 -28780908 DOWN 10 -28780908 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28780933 homeCount = 109 -28780933 waitCount = 46 -28780934 ripCount = 44 -28780934 locktype1 = 1 -28780935 locktype2 = 7 -28780935 locktype3 = 11 -28780936 goalCount = 0 -28780936 goalTotal = 40 -28780937 otherCount = 49 -~~~ -28781017 UP 10 -28781017 waslock = 0 -28781017 512 2048 -28781032 DOWN 10 -28781032 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28781058 homeCount = 109 -28781058 waitCount = 46 -28781059 ripCount = 44 -28781059 locktype1 = 1 -28781060 locktype2 = 7 -28781060 locktype3 = 11 -28781061 goalCount = 0 -28781061 goalTotal = 40 -28781062 otherCount = 49 -~~~ -28781144 UP 10 -28781144 waslock = 0 -28781144 512 2048 -28781154 DOWN 10 -28781154 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28781175 homeCount = 109 -28781176 waitCount = 46 -28781176 ripCount = 44 -28781177 locktype1 = 1 -28781177 locktype2 = 7 -28781178 locktype3 = 11 -28781178 goalCount = 0 -28781179 goalTotal = 40 -28781179 otherCount = 49 -~~~ -28781262 UP 10 -28781263 waslock = 0 -28781262 512 2048 -~~~ -28783973 DOWN 10 -28783973 0 2048 -~~~ -~~~ -~~~ -~~~ -28783999 homeCount = 109 -28783999 waitCount = 46 -28784000 ripCount = 44 -28784000 locktype1 = 1 -28784001 locktype2 = 7 -28784001 locktype3 = 11 -28784002 goalCount = 0 -28784002 goalTotal = 40 -28784003 otherCount = 49 -~~~ -28784018 UP 10 -28784019 waslock = 0 -28784018 512 2048 -~~~ -28784075 DOWN 10 -28784075 0 2048 -~~~ -~~~ -~~~ -~~~ -28784099 homeCount = 109 -28784099 waitCount = 46 -28784100 ripCount = 44 -28784100 locktype1 = 1 -28784101 locktype2 = 7 -28784101 locktype3 = 11 -28784102 goalCount = 0 -28784103 goalTotal = 40 -28784103 otherCount = 49 -~~~ -28797858 UP 1 -28797858 1 2048 -28797882 DOWN 1 -28797882 0 2048 -~~~ -28797884 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28797889 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28797959 1 0 -28798533 DOWN 1 -28798533 0 0 -28805298 512 0 -28805377 0 0 -28805484 512 0 -28805569 0 0 -28812038 512 0 -28812315 0 0 -28812347 512 0 -28812391 0 0 -28812415 512 0 -28812432 0 0 -28822884 LOCKEND -~~~ -~~~ -~~~ -28822907 0 512 -28824977 UP 10 -28824977 waslock = 0 -28824977 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28825010 512 16777728 -~~~ -28825030 DOWN 10 -28825030 0 16777728 -~~~ -~~~ -28825053 0 16778752 -~~~ -~~~ -28825055 0 16778240 -28825056 homeCount = 110 -28825057 waitCount = 46 -28825057 ripCount = 44 -28825058 locktype1 = 1 -28825058 locktype2 = 8 -28825059 locktype3 = 11 -28825059 goalCount = 0 -28825060 goalTotal = 40 -28825060 otherCount = 49 -~~~ -28825081 UP 10 -28825082 waslock = 0 -28825081 512 16778240 -~~~ -28825160 512 1024 -28829576 DOWN 10 -28829576 0 1024 -~~~ -~~~ -~~~ -~~~ -28829597 homeCount = 110 -28829597 waitCount = 46 -28829598 ripCount = 44 -28829599 locktype1 = 1 -28829599 locktype2 = 8 -28829600 locktype3 = 11 -28829600 goalCount = 0 -28829601 goalTotal = 40 -28829601 otherCount = 49 -~~~ -28829635 UP 10 -28829635 waslock = 0 -28829635 512 1024 -~~~ -28829692 DOWN 10 -28829692 0 1024 -~~~ -~~~ -~~~ -~~~ -28829717 homeCount = 110 -28829717 waitCount = 46 -28829718 ripCount = 44 -28829718 locktype1 = 1 -28829719 locktype2 = 8 -28829719 locktype3 = 11 -28829720 goalCount = 0 -28829720 goalTotal = 40 -28829721 otherCount = 49 -~~~ -28829775 UP 10 -28829775 waslock = 0 -28829775 512 1024 -~~~ -28829802 DOWN 10 -28829802 0 1024 -~~~ -~~~ -~~~ -~~~ -28829831 homeCount = 110 -28829832 waitCount = 46 -28829832 ripCount = 44 -28829833 locktype1 = 1 -28829833 locktype2 = 8 -28829834 locktype3 = 11 -28829834 goalCount = 0 -28829835 goalTotal = 40 -28829835 otherCount = 49 -~~~ -28832575 UP 11 -28832575 1024 1024 -28836075 BEEP1 -28836075 BEEP2 -~~~ -~~~ -~~~ -28836096 1024 33555456 -~~~ -28836246 1024 1024 -28842504 DOWN 11 -28842504 0 1024 -~~~ -28842524 UP 11 -28842524 1024 1024 -~~~ -~~~ -28842526 1024 0 -~~~ -~~~ -28842527 1024 1 -~~~ -28842529 1024 3 -~~~ -~~~ -28842530 1024 7 -~~~ -~~~ -28842532 1024 15 -~~~ -~~~ -28842534 1024 31 -~~~ -~~~ -28842536 1024 63 -~~~ -~~~ -28842537 1024 127 -~~~ -~~~ -28842539 1024 255 -28842540 homeCount = 110 -28842561 waitCount = 46 -28842562 ripCount = 45 -28842562 locktype1 = 1 -28842563 locktype2 = 8 -28842563 locktype3 = 11 -28842564 goalCount = 0 -28842564 goalTotal = 40 -28842565 otherCount = 49 -~~~ -28842566 CURRENTGOAL IS [8] -~~~ -28842627 DOWN 11 -28842627 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28842665 homeCount = 110 -28842666 waitCount = 46 -28842666 ripCount = 45 -28842667 locktype1 = 1 -28842667 locktype2 = 8 -28842668 locktype3 = 11 -28842668 goalCount = 0 -28842669 goalTotal = 40 -28842669 otherCount = 49 -~~~ -28842670 CURRENTGOAL IS [8] -~~~ -28842708 UP 11 -28842708 1024 255 -28842766 DOWN 11 -28842766 0 255 -28842777 UP 11 -28842777 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28842817 homeCount = 110 -28842818 waitCount = 46 -28842819 ripCount = 45 -28842819 locktype1 = 1 -28842820 locktype2 = 8 -28842820 locktype3 = 11 -28842821 goalCount = 0 -28842821 goalTotal = 40 -28842822 otherCount = 49 -~~~ -28842823 CURRENTGOAL IS [8] -~~~ -28844915 DOWN 11 -28844915 0 255 -28844936 UP 11 -28844936 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28844956 homeCount = 110 -28844956 waitCount = 46 -28844957 ripCount = 45 -28844957 locktype1 = 1 -28844958 locktype2 = 8 -28844958 locktype3 = 11 -28844959 goalCount = 0 -28844959 goalTotal = 40 -28844960 otherCount = 49 -~~~ -28844961 CURRENTGOAL IS [8] -~~~ -28845000 DOWN 11 -28845000 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28845037 homeCount = 110 -28845037 waitCount = 46 -28845038 ripCount = 45 -28845038 locktype1 = 1 -28845039 locktype2 = 8 -28845039 locktype3 = 11 -28845040 goalCount = 0 -28845040 goalTotal = 40 -28845041 otherCount = 49 -~~~ -28845042 CURRENTGOAL IS [8] -~~~ -28848013 UP 6 -28848013 32 255 -~~~ -~~~ -28848533 DOWN 6 -28848533 0 255 -~~~ -~~~ -28848550 0 254 -~~~ -~~~ -28848552 0 252 -~~~ -~~~ -28848554 0 248 -~~~ -~~~ -28848556 0 240 -~~~ -~~~ -28848558 0 224 -~~~ -~~~ -28848560 0 192 -~~~ -~~~ -28848561 0 128 -~~~ -~~~ -28848563 0 0 -~~~ -~~~ -28848565 0 512 -28848566 homeCount = 110 -28848567 waitCount = 46 -28848567 ripCount = 45 -28848568 locktype1 = 1 -28848589 locktype2 = 8 -28848589 locktype3 = 11 -28848590 goalCount = 0 -28848590 goalTotal = 40 -28848591 otherCount = 50 -~~~ -28853286 UP 10 -28853286 waslock = 0 -28853285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28853310 512 16777728 -~~~ -28853460 512 512 -28853551 DOWN 10 -28853551 0 512 -~~~ -~~~ -28853578 0 2560 -~~~ -~~~ -28853580 0 2048 -28853581 homeCount = 111 -28853582 waitCount = 46 -28853582 ripCount = 45 -28853583 locktype1 = 1 -28853583 locktype2 = 8 -28853584 locktype3 = 11 -28853584 goalCount = 0 -28853585 goalTotal = 40 -28853585 otherCount = 50 -~~~ -28853607 UP 10 -28853607 waslock = 0 -28853607 512 2048 -~~~ -28858404 DOWN 10 -28858404 0 2048 -~~~ -~~~ -~~~ -~~~ -28858432 homeCount = 111 -28858433 waitCount = 46 -28858433 ripCount = 45 -28858434 locktype1 = 1 -28858434 locktype2 = 8 -28858435 locktype3 = 11 -28858435 goalCount = 0 -28858436 goalTotal = 40 -28858436 otherCount = 50 -~~~ -28860886 UP 12 -28860886 2048 2048 -28863790 DOWN 12 -28863790 0 2048 -28863828 UP 12 -28863828 2048 2048 -28863856 DOWN 12 -28863856 0 2048 -28863886 CLICK1 -28863886 CLICK2 -~~~ -~~~ -~~~ -28863919 0 67110912 -~~~ -28863922 UP 12 -28863922 2048 67110912 -28864069 2048 2048 -28864196 DOWN 12 -28864196 0 2048 -~~~ -~~~ -28864220 0 0 -~~~ -~~~ -28864222 0 1 -~~~ -~~~ -28864224 0 3 -~~~ -~~~ -28864226 0 7 -~~~ -~~~ -28864228 0 15 -~~~ -~~~ -28864229 0 31 -~~~ -~~~ -28864231 0 63 -~~~ -~~~ -28864233 0 127 -~~~ -~~~ -28864235 0 255 -28864236 homeCount = 111 -28864236 waitCount = 47 -28864237 ripCount = 45 -28864238 locktype1 = 1 -28864238 locktype2 = 8 -28864259 locktype3 = 11 -28864260 goalCount = 0 -28864260 goalTotal = 40 -28864261 otherCount = 50 -~~~ -28864262 CURRENTGOAL IS [8] -~~~ -28864299 UP 12 -28864299 2048 255 -28870550 DOWN 12 -28870550 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28870587 homeCount = 111 -28870587 waitCount = 47 -28870588 ripCount = 45 -28870588 locktype1 = 1 -28870589 locktype2 = 8 -28870589 locktype3 = 11 -28870590 goalCount = 0 -28870590 goalTotal = 40 -28870591 otherCount = 50 -~~~ -28870592 CURRENTGOAL IS [8] -~~~ -28870613 UP 12 -28870613 2048 255 -28870653 DOWN 12 -28870653 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28870688 homeCount = 111 -28870689 waitCount = 47 -28870689 ripCount = 45 -28870690 locktype1 = 1 -28870690 locktype2 = 8 -28870691 locktype3 = 11 -28870692 goalCount = 0 -28870692 goalTotal = 40 -28870693 otherCount = 50 -~~~ -28870694 CURRENTGOAL IS [8] -~~~ -28874529 UP 4 -28874529 8 255 -~~~ -~~~ -28875631 DOWN 4 -28875631 0 255 -~~~ -~~~ -28875652 0 254 -~~~ -~~~ -28875654 0 252 -~~~ -~~~ -28875655 0 248 -~~~ -~~~ -28875657 0 240 -~~~ -~~~ -28875659 0 224 -~~~ -~~~ -28875661 0 192 -~~~ -~~~ -28875663 0 128 -~~~ -~~~ -28875664 0 0 -~~~ -~~~ -28875666 0 512 -28875667 homeCount = 111 -28875668 waitCount = 47 -28875668 ripCount = 45 -28875669 locktype1 = 1 -28875690 locktype2 = 8 -28875691 locktype3 = 11 -28875691 goalCount = 0 -28875692 goalTotal = 40 -28875692 otherCount = 51 -~~~ -28883393 UP 10 -28883394 waslock = 0 -28883393 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28883422 512 16777728 -~~~ -28883439 DOWN 10 -28883439 0 16777728 -~~~ -~~~ -28883466 0 16779776 -~~~ -~~~ -28883468 0 16779264 -28883469 homeCount = 112 -28883470 waitCount = 47 -28883470 ripCount = 45 -28883471 locktype1 = 1 -28883471 locktype2 = 8 -28883472 locktype3 = 11 -28883472 goalCount = 0 -28883473 goalTotal = 40 -28883473 otherCount = 51 -~~~ -28883509 UP 10 -28883509 waslock = 0 -28883509 512 16779264 -~~~ -28883572 512 2048 -28883585 DOWN 10 -28883585 0 2048 -~~~ -~~~ -~~~ -~~~ -28883605 homeCount = 112 -28883605 waitCount = 47 -28883606 ripCount = 45 -28883606 locktype1 = 1 -28883607 locktype2 = 8 -28883607 locktype3 = 11 -28883608 goalCount = 0 -28883608 goalTotal = 40 -28883609 otherCount = 51 -~~~ -28883764 UP 10 -28883764 waslock = 0 -28883764 512 2048 -~~~ -28888011 DOWN 10 -28888011 0 2048 -~~~ -~~~ -~~~ -~~~ -28888031 homeCount = 112 -28888032 waitCount = 47 -28888032 ripCount = 45 -28888033 locktype1 = 1 -28888033 locktype2 = 8 -28888034 locktype3 = 11 -28888034 goalCount = 0 -28888035 goalTotal = 40 -28888035 otherCount = 51 -~~~ -28888049 UP 10 -28888050 waslock = 0 -28888049 512 2048 -~~~ -28888103 DOWN 10 -28888103 0 2048 -~~~ -~~~ -~~~ -~~~ -28888134 homeCount = 112 -28888134 waitCount = 47 -28888135 ripCount = 45 -28888135 locktype1 = 1 -28888136 locktype2 = 8 -28888136 locktype3 = 11 -28888137 goalCount = 0 -28888137 goalTotal = 40 -28888138 otherCount = 51 -~~~ -28890034 UP 12 -28890034 2048 2048 -28893690 DOWN 12 -28893690 0 2048 -28893790 UP 12 -28893790 2048 2048 -28893861 DOWN 12 -28893861 0 2048 -28893878 UP 12 -28893878 2048 2048 -28893921 DOWN 12 -28893921 0 2048 -28893942 UP 12 -28893942 2048 2048 -28893949 DOWN 12 -28893949 0 2048 -28893954 UP 12 -28893954 2048 2048 -28893964 DOWN 12 -28893964 0 2048 -28893989 UP 12 -28893989 2048 2048 -28898611 DOWN 12 -28898611 0 2048 -28898680 UP 12 -28898680 2048 2048 -28899034 CLICK1 -28899034 CLICK2 -~~~ -~~~ -~~~ -28899062 2048 67110912 -~~~ -28899212 2048 2048 -28908224 DOWN 12 -28908224 0 2048 -~~~ -~~~ -28908245 0 0 -~~~ -~~~ -28908247 0 1 -~~~ -~~~ -28908249 0 3 -~~~ -~~~ -28908251 0 7 -~~~ -~~~ -28908253 0 15 -~~~ -~~~ -28908255 0 31 -~~~ -~~~ -28908256 0 63 -~~~ -~~~ -28908258 0 127 -~~~ -~~~ -28908260 0 255 -28908261 homeCount = 112 -28908262 waitCount = 48 -28908262 ripCount = 45 -28908263 locktype1 = 1 -28908263 locktype2 = 8 -28908284 locktype3 = 11 -28908285 goalCount = 0 -28908285 goalTotal = 40 -28908286 otherCount = 51 -~~~ -28908287 CURRENTGOAL IS [8] -~~~ -28908287 UP 12 -28908287 2048 255 -28908312 DOWN 12 -28908312 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28908355 homeCount = 112 -28908356 waitCount = 48 -28908356 ripCount = 45 -28908357 locktype1 = 1 -28908357 locktype2 = 8 -28908358 locktype3 = 11 -28908358 goalCount = 0 -28908359 goalTotal = 40 -28908359 otherCount = 51 -~~~ -28908361 CURRENTGOAL IS [8] -~~~ -28912740 UP 1 -28912740 1 255 -~~~ -~~~ -28913834 DOWN 1 -28913834 0 255 -~~~ -~~~ -28913860 0 254 -~~~ -~~~ -28913862 0 252 -~~~ -~~~ -28913864 0 248 -~~~ -~~~ -28913866 0 240 -~~~ -~~~ -28913867 0 224 -~~~ -~~~ -28913869 0 192 -~~~ -~~~ -28913871 0 128 -~~~ -~~~ -28913873 0 0 -~~~ -~~~ -28913875 0 512 -28913876 homeCount = 112 -28913876 waitCount = 48 -28913877 ripCount = 45 -28913877 locktype1 = 1 -28913878 locktype2 = 8 -28913899 locktype3 = 11 -28913899 goalCount = 0 -28913900 goalTotal = 40 -28913900 otherCount = 52 -~~~ -28917360 UP 10 -28917360 waslock = 0 -28917360 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28917386 512 16777728 -~~~ -28917536 512 512 -28923452 DOWN 10 -28923452 0 512 -28923462 UP 10 -28923462 waslock = 0 -28923462 512 512 -~~~ -~~~ -28923482 512 2560 -~~~ -~~~ -28923484 512 2048 -28923485 homeCount = 113 -28923486 waitCount = 48 -28923486 ripCount = 45 -28923487 locktype1 = 1 -28923487 locktype2 = 8 -28923488 locktype3 = 11 -28923488 goalCount = 0 -28923489 goalTotal = 40 -28923489 otherCount = 52 -~~~ -~~~ -28923558 DOWN 10 -28923558 0 2048 -~~~ -~~~ -~~~ -~~~ -28923583 homeCount = 113 -28923584 waitCount = 48 -28923584 ripCount = 45 -28923585 locktype1 = 1 -28923585 locktype2 = 8 -28923586 locktype3 = 11 -28923586 goalCount = 0 -28923587 goalTotal = 40 -28923587 otherCount = 52 -~~~ -28923618 UP 10 -28923619 waslock = 0 -28923618 512 2048 -~~~ -28923656 DOWN 10 -28923656 0 2048 -~~~ -~~~ -~~~ -~~~ -28923679 homeCount = 113 -28923680 waitCount = 48 -28923680 ripCount = 45 -28923681 locktype1 = 1 -28923681 locktype2 = 8 -28923682 locktype3 = 11 -28923682 goalCount = 0 -28923683 goalTotal = 40 -28923683 otherCount = 52 -~~~ -28925345 UP 12 -28925345 2048 2048 -28926820 DOWN 12 -28926820 0 2048 -28926832 UP 12 -28926832 2048 2048 -28927113 DOWN 12 -28927113 0 2048 -28927174 UP 12 -28927174 2048 2048 -28928345 CLICK1 -28928345 CLICK2 -~~~ -~~~ -~~~ -28928364 2048 67110912 -~~~ -28928481 DOWN 12 -28928481 0 67110912 -28928514 0 2048 -28928534 UP 12 -28928534 2048 2048 -28928545 DOWN 12 -28928545 0 2048 -~~~ -~~~ -28928551 0 0 -~~~ -~~~ -28928553 0 1 -~~~ -~~~ -28928555 0 3 -~~~ -~~~ -28928557 0 7 -~~~ -~~~ -28928558 0 15 -~~~ -~~~ -28928560 0 31 -~~~ -~~~ -28928562 0 63 -~~~ -~~~ -28928564 0 127 -~~~ -~~~ -28928566 0 255 -28928567 homeCount = 113 -28928567 waitCount = 49 -28928568 ripCount = 45 -28928568 locktype1 = 1 -28928569 locktype2 = 8 -28928590 locktype3 = 11 -28928590 goalCount = 0 -28928591 goalTotal = 40 -28928592 otherCount = 52 -~~~ -28928593 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28928600 homeCount = 113 -28928621 waitCount = 49 -28928621 ripCount = 45 -28928622 locktype1 = 1 -28928622 locktype2 = 8 -28928623 locktype3 = 11 -28928623 goalCount = 0 -28928624 goalTotal = 40 -28928624 otherCount = 52 -~~~ -28928625 CURRENTGOAL IS [8] -~~~ -28928626 UP 12 -28928626 2048 255 -28934970 DOWN 12 -28934970 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28935004 homeCount = 113 -28935004 waitCount = 49 -28935005 ripCount = 45 -28935006 locktype1 = 1 -28935006 locktype2 = 8 -28935007 locktype3 = 11 -28935007 goalCount = 0 -28935008 goalTotal = 40 -28935008 otherCount = 52 -~~~ -28935009 CURRENTGOAL IS [8] -~~~ -28935030 UP 12 -28935030 2048 255 -28935063 DOWN 12 -28935063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28935104 homeCount = 113 -28935104 waitCount = 49 -28935105 ripCount = 45 -28935105 locktype1 = 1 -28935106 locktype2 = 8 -28935107 locktype3 = 11 -28935107 goalCount = 0 -28935108 goalTotal = 40 -28935108 otherCount = 52 -~~~ -28935109 CURRENTGOAL IS [8] -~~~ -28939803 UP 4 -28939803 8 255 -~~~ -~~~ -28940719 DOWN 4 -28940719 0 255 -~~~ -~~~ -28940736 0 254 -~~~ -~~~ -28940738 0 252 -~~~ -~~~ -28940740 0 248 -~~~ -~~~ -28940741 0 240 -~~~ -~~~ -28940743 0 224 -~~~ -~~~ -28940745 0 192 -~~~ -~~~ -28940747 0 128 -~~~ -~~~ -28940749 0 0 -~~~ -~~~ -28940751 0 512 -28940752 homeCount = 113 -28940752 waitCount = 49 -28940753 ripCount = 45 -28940753 locktype1 = 1 -28940774 locktype2 = 8 -28940775 locktype3 = 11 -28940775 goalCount = 0 -28940776 goalTotal = 40 -28940776 otherCount = 53 -~~~ -28940844 8 512 -28941165 DOWN 4 -28941165 0 512 -28944970 UP 10 -28944970 waslock = 0 -28944970 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28944999 512 16777728 -~~~ -28945149 512 512 -28945191 DOWN 10 -28945191 0 512 -~~~ -~~~ -28945214 0 1536 -~~~ -~~~ -28945216 0 1024 -28945217 homeCount = 114 -28945217 waitCount = 49 -28945218 ripCount = 45 -28945218 locktype1 = 1 -28945219 locktype2 = 8 -28945219 locktype3 = 11 -28945220 goalCount = 0 -28945220 goalTotal = 40 -28945221 otherCount = 53 -~~~ -28945242 UP 10 -28945242 waslock = 0 -28945242 512 1024 -~~~ -28952252 DOWN 10 -28952252 0 1024 -~~~ -~~~ -~~~ -~~~ -28952276 homeCount = 114 -28952276 waitCount = 49 -28952277 ripCount = 45 -28952277 locktype1 = 1 -28952278 locktype2 = 8 -28952278 locktype3 = 11 -28952279 goalCount = 0 -28952279 goalTotal = 40 -28952280 otherCount = 53 -~~~ -28954847 UP 11 -28954847 1024 1024 -28958772 DOWN 11 -28958772 0 1024 -28958793 UP 11 -28958793 1024 1024 -28958938 DOWN 11 -28958938 0 1024 -28958951 UP 11 -28958951 1024 1024 -28962347 BEEP1 -28962347 BEEP2 -~~~ -~~~ -~~~ -28962376 1024 33555456 -~~~ -28962526 1024 1024 -28969334 DOWN 11 -28969334 0 1024 -~~~ -~~~ -28969353 0 0 -~~~ -~~~ -28969355 0 1 -~~~ -~~~ -28969357 0 3 -~~~ -~~~ -28969359 0 7 -~~~ -~~~ -28969361 0 15 -~~~ -~~~ -28969363 0 31 -~~~ -~~~ -28969364 0 63 -~~~ -~~~ -28969366 0 127 -~~~ -~~~ -28969368 0 255 -28969369 homeCount = 114 -28969370 waitCount = 49 -28969370 ripCount = 46 -28969371 locktype1 = 1 -28969371 locktype2 = 8 -28969392 locktype3 = 11 -28969393 goalCount = 0 -28969393 goalTotal = 40 -28969394 otherCount = 53 -~~~ -28969395 CURRENTGOAL IS [8] -~~~ -28969395 UP 11 -28969395 1024 255 -28969432 DOWN 11 -28969432 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28969472 homeCount = 114 -28969472 waitCount = 49 -28969473 ripCount = 46 -28969473 locktype1 = 1 -28969474 locktype2 = 8 -28969474 locktype3 = 11 -28969475 goalCount = 0 -28969475 goalTotal = 40 -28969476 otherCount = 53 -~~~ -28969477 CURRENTGOAL IS [8] -~~~ -28972662 UP 7 -28972662 64 255 -~~~ -~~~ -28973269 DOWN 7 -28973269 0 255 -~~~ -~~~ -28973295 0 254 -~~~ -~~~ -28973297 0 252 -~~~ -~~~ -28973299 0 248 -~~~ -~~~ -28973301 0 240 -~~~ -~~~ -28973303 0 224 -~~~ -~~~ -28973305 0 192 -~~~ -~~~ -28973306 0 128 -~~~ -~~~ -28973308 0 0 -~~~ -~~~ -28973310 0 512 -28973311 homeCount = 114 -28973312 waitCount = 49 -28973312 ripCount = 46 -28973313 locktype1 = 1 -28973313 locktype2 = 8 -28973334 locktype3 = 11 -28973335 goalCount = 0 -28973335 goalTotal = 40 -28973336 otherCount = 54 -~~~ -28977764 UP 10 -28977764 waslock = 0 -28977764 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28977794 512 16777728 -~~~ -28977944 512 512 -28978037 DOWN 10 -28978037 0 512 -~~~ -~~~ -28978059 0 2560 -~~~ -~~~ -28978060 0 2048 -28978061 homeCount = 115 -28978062 waitCount = 49 -28978063 ripCount = 46 -28978063 locktype1 = 1 -28978064 locktype2 = 8 -28978064 locktype3 = 11 -28978065 goalCount = 0 -28978065 goalTotal = 40 -28978066 otherCount = 54 -~~~ -28978087 UP 10 -28978087 waslock = 0 -28978087 512 2048 -~~~ -28978234 DOWN 10 -28978234 0 2048 -28978250 UP 10 -28978250 waslock = 0 -28978250 512 2048 -~~~ -~~~ -~~~ -~~~ -28978273 homeCount = 115 -28978273 waitCount = 49 -28978274 ripCount = 46 -28978275 locktype1 = 1 -28978275 locktype2 = 8 -28978276 locktype3 = 11 -28978276 goalCount = 0 -28978277 goalTotal = 40 -28978277 otherCount = 54 -~~~ -~~~ -28978477 DOWN 10 -28978477 0 2048 -~~~ -~~~ -~~~ -~~~ -28978501 homeCount = 115 -28978501 waitCount = 49 -28978502 ripCount = 46 -28978502 locktype1 = 1 -28978503 locktype2 = 8 -28978503 locktype3 = 11 -28978504 goalCount = 0 -28978504 goalTotal = 40 -28978505 otherCount = 54 -~~~ -28978551 UP 10 -28978551 waslock = 0 -28978551 512 2048 -28978570 DOWN 10 -28978570 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28978599 homeCount = 115 -28978600 waitCount = 49 -28978600 ripCount = 46 -28978601 locktype1 = 1 -28978601 locktype2 = 8 -28978602 locktype3 = 11 -28978602 goalCount = 0 -28978603 goalTotal = 40 -28978603 otherCount = 54 -~~~ -28978681 UP 10 -28978681 waslock = 0 -28978681 512 2048 -~~~ -28985257 DOWN 10 -28985257 0 2048 -~~~ -~~~ -~~~ -~~~ -28985282 homeCount = 115 -28985282 waitCount = 49 -28985283 ripCount = 46 -28985283 locktype1 = 1 -28985284 locktype2 = 8 -28985284 locktype3 = 11 -28985285 goalCount = 0 -28985286 goalTotal = 40 -28985286 otherCount = 54 -~~~ -28995900 UP 12 -28995900 2048 2048 -28997144 DOWN 12 -28997144 0 2048 -28997344 LOCKOUT 3 -28997347 UP 12 -28997347 2048 2048 -~~~ -28997369 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28997375 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28997612 DOWN 12 -28997612 0 0 -28997634 UP 12 -28997634 2048 0 -29001991 DOWN 12 -29001991 0 0 -29002007 UP 12 -29002007 2048 0 -29002019 DOWN 12 -29002018 0 0 -29002056 UP 12 -29002056 2048 0 -29002152 DOWN 12 -29002152 0 0 -29002178 UP 12 -29002178 2048 0 -29002188 DOWN 12 -29002188 0 0 -29002210 UP 12 -29002210 2048 0 -29007757 DOWN 12 -29007757 0 0 -29007782 UP 12 -29007782 2048 0 -29007799 DOWN 12 -29007799 0 0 -29007825 UP 12 -29007825 2048 0 -29009658 DOWN 12 -29009658 0 0 -29009698 UP 12 -29009698 2048 0 -29009727 DOWN 12 -29009727 0 0 -29009797 UP 12 -29009797 2048 0 -29009830 DOWN 12 -29009830 0 0 -29011177 UP 12 -29011177 2048 0 -29011199 DOWN 12 -29011199 0 0 -29011358 UP 12 -29011358 2048 0 -29012274 DOWN 12 -29012274 0 0 -29022369 LOCKEND -~~~ -~~~ -~~~ -29022391 0 512 -29026767 UP 10 -29026767 waslock = 0 -29026767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29026795 512 16777728 -~~~ -29026842 DOWN 10 -29026842 0 16777728 -~~~ -~~~ -29026871 0 16779776 -~~~ -~~~ -29026873 0 16779264 -29026874 homeCount = 116 -29026874 waitCount = 49 -29026875 ripCount = 46 -29026875 locktype1 = 1 -29026876 locktype2 = 8 -29026876 locktype3 = 12 -29026877 goalCount = 0 -29026877 goalTotal = 40 -29026878 otherCount = 54 -~~~ -29026908 UP 10 -29026908 waslock = 0 -29026908 512 16779264 -~~~ -29026944 512 2048 -29026962 DOWN 10 -29026962 0 2048 -~~~ -~~~ -~~~ -~~~ -29026992 homeCount = 116 -29026992 waitCount = 49 -29026993 ripCount = 46 -29026994 locktype1 = 1 -29026994 locktype2 = 8 -29026995 locktype3 = 12 -29026995 goalCount = 0 -29026996 goalTotal = 40 -29026996 otherCount = 54 -~~~ -29026998 UP 10 -29026998 waslock = 0 -29026998 512 2048 -29027028 DOWN 10 -29027028 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29027062 homeCount = 116 -29027062 waitCount = 49 -29027063 ripCount = 46 -29027063 locktype1 = 1 -29027064 locktype2 = 8 -29027064 locktype3 = 12 -29027065 goalCount = 0 -29027065 goalTotal = 40 -29027066 otherCount = 54 -~~~ -29027296 UP 10 -29027296 waslock = 0 -29027296 512 2048 -~~~ -29027830 DOWN 10 -29027830 0 2048 -~~~ -~~~ -~~~ -~~~ -29027855 homeCount = 116 -29027856 waitCount = 49 -29027857 ripCount = 46 -29027857 locktype1 = 1 -29027858 locktype2 = 8 -29027858 locktype3 = 12 -29027859 goalCount = 0 -29027859 goalTotal = 40 -29027860 otherCount = 54 -~~~ -29027895 UP 10 -29027895 waslock = 0 -29027895 512 2048 -~~~ -29027938 DOWN 10 -29027938 0 2048 -~~~ -~~~ -~~~ -~~~ -29027966 homeCount = 116 -29027966 waitCount = 49 -29027967 ripCount = 46 -29027967 locktype1 = 1 -29027968 locktype2 = 8 -29027968 locktype3 = 12 -29027969 goalCount = 0 -29027969 goalTotal = 40 -29027970 otherCount = 54 -~~~ -29028014 UP 10 -29028015 waslock = 0 -29028014 512 2048 -~~~ -29029618 DOWN 10 -29029618 0 2048 -~~~ -~~~ -~~~ -29029641 UP 10 -29029641 waslock = 0 -29029640 512 2048 -~~~ -29029643 homeCount = 116 -29029643 waitCount = 49 -29029644 ripCount = 46 -29029644 locktype1 = 1 -29029645 locktype2 = 8 -29029645 locktype3 = 12 -29029646 goalCount = 0 -29029646 goalTotal = 40 -29029667 otherCount = 54 -~~~ -29029668 DOWN 10 -29029668 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29029695 homeCount = 116 -29029696 waitCount = 49 -29029697 ripCount = 46 -29029697 locktype1 = 1 -29029698 locktype2 = 8 -29029698 locktype3 = 12 -29029699 goalCount = 0 -29029699 goalTotal = 40 -29029700 otherCount = 54 -~~~ -29030443 UP 10 -29030443 waslock = 0 -29030443 512 2048 -~~~ -29033311 DOWN 10 -29033311 0 2048 -~~~ -~~~ -~~~ -~~~ -29033333 homeCount = 116 -29033333 waitCount = 49 -29033334 ripCount = 46 -29033334 locktype1 = 1 -29033335 locktype2 = 8 -29033335 locktype3 = 12 -29033336 goalCount = 0 -29033336 goalTotal = 40 -29033337 otherCount = 54 -~~~ -29035977 UP 12 -29035977 2048 2048 -29037448 DOWN 12 -29037448 0 2048 -29037516 UP 12 -29037516 2048 2048 -29038598 DOWN 12 -29038598 0 2048 -29038676 UP 12 -29038676 2048 2048 -29038784 DOWN 12 -29038784 0 2048 -29038806 UP 12 -29038806 2048 2048 -29040477 CLICK1 -29040477 CLICK2 -~~~ -~~~ -~~~ -29040503 2048 67110912 -~~~ -29040653 2048 2048 -29046553 DOWN 12 -29046553 0 2048 -~~~ -~~~ -29046571 0 0 -~~~ -~~~ -29046573 0 1 -~~~ -~~~ -29046575 0 3 -~~~ -~~~ -29046577 0 7 -~~~ -29046578 UP 12 -29046578 2048 7 -~~~ -~~~ -29046580 2048 15 -~~~ -~~~ -29046581 2048 31 -~~~ -~~~ -29046583 2048 63 -~~~ -29046584 2048 127 -~~~ -~~~ -29046586 2048 255 -29046587 homeCount = 116 -29046608 waitCount = 50 -29046608 ripCount = 46 -29046609 locktype1 = 1 -29046609 locktype2 = 8 -29046610 locktype3 = 12 -29046610 goalCount = 0 -29046611 goalTotal = 40 -29046611 otherCount = 54 -~~~ -29046612 CURRENTGOAL IS [8] -~~~ -29046660 DOWN 12 -29046660 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29046699 homeCount = 116 -29046699 waitCount = 50 -29046700 ripCount = 46 -29046700 locktype1 = 1 -29046701 locktype2 = 8 -29046701 locktype3 = 12 -29046702 goalCount = 0 -29046702 goalTotal = 40 -29046703 otherCount = 54 -~~~ -29046704 CURRENTGOAL IS [8] -~~~ -29046725 UP 12 -29046725 2048 255 -29046750 DOWN 12 -29046750 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29046789 homeCount = 116 -29046790 waitCount = 50 -29046790 ripCount = 46 -29046791 locktype1 = 1 -29046792 locktype2 = 8 -29046792 locktype3 = 12 -29046793 goalCount = 0 -29046793 goalTotal = 40 -29046794 otherCount = 54 -~~~ -29046795 CURRENTGOAL IS [8] -~~~ -29046840 UP 12 -29046840 2048 255 -29047066 DOWN 12 -29047066 0 255 -29047070 UP 12 -29047070 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29047101 homeCount = 116 -29047102 waitCount = 50 -29047102 ripCount = 46 -29047103 locktype1 = 1 -29047103 locktype2 = 8 -29047104 locktype3 = 12 -29047104 goalCount = 0 -29047105 goalTotal = 40 -29047105 otherCount = 54 -~~~ -29047106 CURRENTGOAL IS [8] -~~~ -29048094 DOWN 12 -29048094 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29048130 homeCount = 116 -29048131 waitCount = 50 -29048131 ripCount = 46 -29048132 locktype1 = 1 -29048132 locktype2 = 8 -29048133 locktype3 = 12 -29048133 goalCount = 0 -29048134 goalTotal = 40 -29048134 otherCount = 54 -~~~ -29048135 CURRENTGOAL IS [8] -~~~ -29056595 UP 6 -29056595 32 255 -~~~ -~~~ -29057269 DOWN 6 -29057269 0 255 -~~~ -~~~ -29057285 0 254 -~~~ -~~~ -29057287 0 252 -~~~ -~~~ -29057289 0 248 -~~~ -~~~ -29057291 0 240 -~~~ -~~~ -29057292 0 224 -~~~ -~~~ -29057294 0 192 -~~~ -~~~ -29057296 0 128 -~~~ -29057297 32 128 -~~~ -~~~ -29057299 32 0 -~~~ -29057300 32 512 -29057301 homeCount = 116 -29057302 waitCount = 50 -29057302 ripCount = 46 -29057323 locktype1 = 1 -29057324 locktype2 = 8 -29057324 locktype3 = 12 -29057325 goalCount = 0 -29057325 goalTotal = 40 -29057326 otherCount = 55 -~~~ -29057340 DOWN 6 -29057340 0 512 -29061896 UP 10 -29061896 waslock = 0 -29061896 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29061923 512 16777728 -~~~ -29062073 512 512 -29062111 DOWN 10 -29062111 0 512 -~~~ -~~~ -29062139 0 1536 -~~~ -~~~ -29062141 0 1024 -29062142 homeCount = 117 -29062142 waitCount = 50 -29062143 ripCount = 46 -29062143 locktype1 = 1 -29062144 locktype2 = 8 -29062144 locktype3 = 12 -29062145 goalCount = 0 -29062145 goalTotal = 40 -29062146 otherCount = 55 -~~~ -29062222 UP 10 -29062222 waslock = 0 -29062222 512 1024 -~~~ -29066190 DOWN 10 -29066190 0 1024 -~~~ -~~~ -~~~ -~~~ -29066222 homeCount = 117 -29066223 waitCount = 50 -29066223 ripCount = 46 -29066224 locktype1 = 1 -29066224 locktype2 = 8 -29066225 locktype3 = 12 -29066225 goalCount = 0 -29066226 goalTotal = 40 -29066226 otherCount = 55 -~~~ -29068842 UP 11 -29068841 1024 1024 -29077842 BEEP1 -29077842 BEEP2 -~~~ -~~~ -~~~ -29077868 1024 33555456 -~~~ -29078018 1024 1024 -29086532 DOWN 11 -29086532 0 1024 -~~~ -~~~ -29086560 0 0 -~~~ -~~~ -29086561 0 1 -~~~ -~~~ -29086563 0 3 -~~~ -~~~ -29086565 0 7 -~~~ -~~~ -29086567 0 15 -~~~ -~~~ -29086569 0 31 -~~~ -~~~ -29086571 0 63 -~~~ -~~~ -29086572 0 127 -~~~ -~~~ -29086574 0 255 -29086575 homeCount = 117 -29086576 waitCount = 50 -29086576 ripCount = 47 -29086577 locktype1 = 1 -29086577 locktype2 = 8 -29086598 locktype3 = 12 -29086599 goalCount = 0 -29086599 goalTotal = 40 -29086600 otherCount = 55 -~~~ -29086601 CURRENTGOAL IS [8] -~~~ -29086601 UP 11 -29086601 1024 255 -29086651 DOWN 11 -29086651 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29086685 homeCount = 117 -29086685 waitCount = 50 -29086686 ripCount = 47 -29086686 locktype1 = 1 -29086687 locktype2 = 8 -29086687 locktype3 = 12 -29086688 goalCount = 0 -29086688 goalTotal = 40 -29086689 otherCount = 55 -~~~ -29086690 CURRENTGOAL IS [8] -~~~ -29093885 UP 3 -29093885 4 255 -~~~ -~~~ -29094389 DOWN 3 -29094389 0 255 -~~~ -~~~ -29094407 0 254 -~~~ -~~~ -29094409 0 252 -~~~ -~~~ -29094411 0 248 -~~~ -~~~ -29094413 0 240 -~~~ -~~~ -29094414 0 224 -~~~ -~~~ -29094416 0 192 -~~~ -~~~ -29094418 0 128 -~~~ -~~~ -29094420 0 0 -~~~ -~~~ -29094422 0 512 -29094423 homeCount = 117 -29094423 waitCount = 50 -29094424 ripCount = 47 -29094424 locktype1 = 1 -29094445 locktype2 = 8 -29094445 locktype3 = 12 -29094446 goalCount = 0 -29094446 goalTotal = 40 -29094447 otherCount = 56 -~~~ -29094505 4 512 -29094791 DOWN 3 -29094791 0 512 -29098404 UP 10 -29098405 waslock = 0 -29098404 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29098437 512 16777728 -~~~ -29098451 DOWN 10 -29098451 0 16777728 -~~~ -~~~ -29098472 0 16778752 -~~~ -~~~ -29098474 0 16778240 -29098475 homeCount = 118 -29098476 waitCount = 50 -29098476 ripCount = 47 -29098477 locktype1 = 1 -29098477 locktype2 = 8 -29098478 locktype3 = 12 -29098478 goalCount = 0 -29098479 goalTotal = 40 -29098479 otherCount = 56 -~~~ -29098509 UP 10 -29098510 waslock = 0 -29098509 512 16778240 -~~~ -29098587 512 1024 -29098590 DOWN 10 -29098590 0 1024 -~~~ -~~~ -~~~ -~~~ -29098618 homeCount = 118 -29098618 waitCount = 50 -29098619 ripCount = 47 -29098619 locktype1 = 1 -29098620 locktype2 = 8 -29098620 locktype3 = 12 -29098621 goalCount = 0 -29098621 goalTotal = 40 -29098622 otherCount = 56 -~~~ -29098713 UP 10 -29098713 waslock = 0 -29098713 512 1024 -~~~ -29101907 DOWN 10 -29101907 0 1024 -~~~ -~~~ -~~~ -~~~ -29101936 homeCount = 118 -29101937 waitCount = 50 -29101937 ripCount = 47 -29101938 locktype1 = 1 -29101938 locktype2 = 8 -29101939 locktype3 = 12 -29101939 goalCount = 0 -29101940 goalTotal = 40 -29101940 otherCount = 56 -~~~ -29101953 UP 10 -29101953 waslock = 0 -29101953 512 1024 -~~~ -29101998 DOWN 10 -29101998 0 1024 -~~~ -~~~ -~~~ -~~~ -29102018 homeCount = 118 -29102018 waitCount = 50 -29102019 ripCount = 47 -29102019 locktype1 = 1 -29102020 locktype2 = 8 -29102020 locktype3 = 12 -29102021 goalCount = 0 -29102021 goalTotal = 40 -29102022 otherCount = 56 -~~~ -29103694 UP 11 -29103694 1024 1024 -29112694 BEEP1 -29112694 BEEP2 -~~~ -~~~ -~~~ -29112721 1024 33555456 -~~~ -29112871 1024 1024 -29119544 DOWN 11 -29119544 0 1024 -~~~ -~~~ -29119570 0 0 -~~~ -~~~ -29119572 0 1 -~~~ -~~~ -29119574 0 3 -~~~ -~~~ -29119575 0 7 -~~~ -~~~ -29119577 0 15 -~~~ -~~~ -29119579 0 31 -~~~ -~~~ -29119581 0 63 -~~~ -~~~ -29119583 0 127 -~~~ -~~~ -29119585 0 255 -29119586 homeCount = 118 -29119586 waitCount = 50 -29119587 ripCount = 48 -29119587 locktype1 = 1 -29119588 locktype2 = 8 -29119609 locktype3 = 12 -29119609 goalCount = 0 -29119610 goalTotal = 40 -29119610 otherCount = 56 -~~~ -29119611 CURRENTGOAL IS [8] -~~~ -29119612 UP 11 -29119612 1024 255 -29119616 DOWN 11 -29119616 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29119668 homeCount = 118 -29119669 waitCount = 50 -29119669 ripCount = 48 -29119670 locktype1 = 1 -29119670 locktype2 = 8 -29119671 locktype3 = 12 -29119671 goalCount = 0 -29119672 goalTotal = 40 -29119672 otherCount = 56 -~~~ -29119673 CURRENTGOAL IS [8] -~~~ -29122599 UP 8 -29122599 128 255 -~~~ -~~~ -29122624 outer reward -~~~ -29122624 128 8388863 -~~~ -~~~ -29123074 128 255 -29130013 DOWN 8 -29130013 0 255 -~~~ -~~~ -29130032 0 254 -~~~ -~~~ -29130034 0 252 -~~~ -~~~ -29130036 0 248 -~~~ -~~~ -29130037 0 240 -~~~ -~~~ -29130039 0 224 -~~~ -~~~ -29130041 0 192 -~~~ -~~~ -29130043 0 128 -~~~ -~~~ -29130045 0 0 -~~~ -~~~ -29130047 0 512 -29130048 homeCount = 118 -29130048 waitCount = 50 -29130049 ripCount = 48 -29130049 locktype1 = 1 -29130050 locktype2 = 8 -29130071 locktype3 = 12 -29130071 goalCount = 1 -29130072 goalTotal = 41 -29130072 otherCount = 56 -~~~ -29130073 128 512 -29130117 DOWN 8 -29130117 0 512 -29135768 UP 10 -29135768 waslock = 0 -29135767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29135792 512 16777728 -~~~ -29135942 512 512 -29136087 DOWN 10 -29136087 0 512 -~~~ -~~~ -29136106 0 2560 -~~~ -~~~ -29136108 0 2048 -29136109 homeCount = 119 -29136109 waitCount = 50 -29136110 ripCount = 48 -29136110 locktype1 = 1 -29136111 locktype2 = 8 -29136111 locktype3 = 12 -29136112 goalCount = 1 -29136112 goalTotal = 41 -29136113 otherCount = 56 -~~~ -29136174 UP 10 -29136174 waslock = 0 -29136174 512 2048 -~~~ -29140118 DOWN 10 -29140118 0 2048 -~~~ -~~~ -~~~ -~~~ -29140138 homeCount = 119 -29140138 waitCount = 50 -29140139 ripCount = 48 -29140139 locktype1 = 1 -29140140 locktype2 = 8 -29140140 locktype3 = 12 -29140141 goalCount = 1 -29140141 goalTotal = 41 -29140142 otherCount = 56 -~~~ -29140155 UP 10 -29140156 waslock = 0 -29140155 512 2048 -~~~ -29140225 DOWN 10 -29140225 0 2048 -~~~ -~~~ -~~~ -~~~ -29140256 homeCount = 119 -29140257 waitCount = 50 -29140257 ripCount = 48 -29140258 locktype1 = 1 -29140258 locktype2 = 8 -29140259 locktype3 = 12 -29140259 goalCount = 1 -29140260 goalTotal = 41 -29140260 otherCount = 56 -~~~ -29140302 UP 10 -29140302 waslock = 0 -29140302 512 2048 -29140330 DOWN 10 -29140330 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29140355 homeCount = 119 -29140356 waitCount = 50 -29140356 ripCount = 48 -29140357 locktype1 = 1 -29140357 locktype2 = 8 -29140358 locktype3 = 12 -29140358 goalCount = 1 -29140359 goalTotal = 41 -29140359 otherCount = 56 -~~~ -29142523 UP 12 -29142523 2048 2048 -29145524 CLICK1 -29145524 CLICK2 -~~~ -~~~ -~~~ -29145549 2048 67110912 -~~~ -29145699 2048 2048 -29145721 DOWN 12 -29145721 0 2048 -29145728 UP 12 -29145728 2048 2048 -~~~ -~~~ -29145738 2048 0 -~~~ -~~~ -29145740 2048 1 -~~~ -~~~ -29145742 2048 3 -~~~ -~~~ -29145743 2048 7 -~~~ -~~~ -29145745 2048 15 -~~~ -~~~ -29145747 2048 31 -~~~ -~~~ -29145749 2048 63 -~~~ -~~~ -29145751 2048 127 -~~~ -~~~ -29145753 2048 255 -29145754 homeCount = 119 -29145754 waitCount = 51 -29145755 ripCount = 48 -29145775 locktype1 = 1 -29145776 locktype2 = 8 -29145776 locktype3 = 12 -29145777 goalCount = 1 -29145777 goalTotal = 41 -29145778 otherCount = 56 -~~~ -29145779 CURRENTGOAL IS [8] -~~~ -29145803 DOWN 12 -29145803 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29145844 homeCount = 119 -29145845 waitCount = 51 -29145846 ripCount = 48 -29145846 locktype1 = 1 -29145847 locktype2 = 8 -29145847 locktype3 = 12 -29145848 goalCount = 1 -29145848 goalTotal = 41 -29145849 otherCount = 56 -~~~ -29145850 CURRENTGOAL IS [8] -~~~ -29145897 UP 12 -29145897 2048 255 -29151732 DOWN 12 -29151732 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29151764 homeCount = 119 -29151765 waitCount = 51 -29151765 ripCount = 48 -29151766 locktype1 = 1 -29151766 locktype2 = 8 -29151767 locktype3 = 12 -29151767 goalCount = 1 -29151768 goalTotal = 41 -29151768 otherCount = 56 -~~~ -29151769 CURRENTGOAL IS [8] -~~~ -29151798 UP 12 -29151798 2048 255 -29151813 DOWN 12 -29151813 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29151848 homeCount = 119 -29151849 waitCount = 51 -29151849 ripCount = 48 -29151850 locktype1 = 1 -29151850 locktype2 = 8 -29151851 locktype3 = 12 -29151851 goalCount = 1 -29151852 goalTotal = 41 -29151852 otherCount = 56 -~~~ -29151854 CURRENTGOAL IS [8] -~~~ -29157194 UP 1 -29157194 1 255 -~~~ -~~~ -29157720 DOWN 1 -29157720 0 255 -~~~ -~~~ -29157744 0 254 -~~~ -~~~ -29157745 0 252 -~~~ -~~~ -29157747 0 248 -~~~ -~~~ -29157749 0 240 -~~~ -~~~ -29157751 0 224 -~~~ -~~~ -29157753 0 192 -~~~ -~~~ -29157755 0 128 -~~~ -~~~ -29157756 0 0 -~~~ -~~~ -29157758 0 512 -29157759 homeCount = 119 -29157760 waitCount = 51 -29157760 ripCount = 48 -29157761 locktype1 = 1 -29157781 locktype2 = 8 -29157782 locktype3 = 12 -29157782 goalCount = 1 -29157783 goalTotal = 41 -29157784 otherCount = 57 -~~~ -29161043 UP 10 -29161044 waslock = 0 -29161043 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29161070 512 16777728 -~~~ -29161220 512 512 -29167184 DOWN 10 -29167184 0 512 -~~~ -~~~ -29167204 0 2560 -~~~ -~~~ -29167206 0 2048 -29167207 homeCount = 120 -29167208 waitCount = 51 -29167208 ripCount = 48 -29167209 locktype1 = 1 -29167209 locktype2 = 8 -29167210 locktype3 = 12 -29167210 goalCount = 1 -29167211 goalTotal = 41 -29167211 otherCount = 57 -~~~ -29167233 UP 10 -29167233 waslock = 0 -29167233 512 2048 -~~~ -29167284 DOWN 10 -29167283 0 2048 -~~~ -~~~ -~~~ -~~~ -29167308 homeCount = 120 -29167309 waitCount = 51 -29167309 ripCount = 48 -29167310 locktype1 = 1 -29167310 locktype2 = 8 -29167311 locktype3 = 12 -29167311 goalCount = 1 -29167312 goalTotal = 41 -29167312 otherCount = 57 -~~~ -29169240 UP 12 -29169240 2048 2048 -29173241 CLICK1 -29173241 CLICK2 -~~~ -~~~ -~~~ -29173267 2048 67110912 -~~~ -29173417 2048 2048 -29180620 DOWN 12 -29180620 0 2048 -~~~ -~~~ -29180645 0 0 -~~~ -~~~ -29180647 0 1 -~~~ -~~~ -29180649 0 3 -~~~ -~~~ -29180650 0 7 -~~~ -~~~ -29180652 0 15 -~~~ -~~~ -29180654 0 31 -~~~ -~~~ -29180656 0 63 -~~~ -~~~ -29180658 0 127 -~~~ -~~~ -29180660 0 255 -29180661 homeCount = 120 -29180661 waitCount = 52 -29180662 ripCount = 48 -29180662 locktype1 = 1 -29180663 locktype2 = 8 -29180684 locktype3 = 12 -29180684 goalCount = 1 -29180685 goalTotal = 41 -29180685 otherCount = 57 -~~~ -29180686 CURRENTGOAL IS [8] -~~~ -29180699 UP 12 -29180699 2048 255 -29180715 DOWN 12 -29180715 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29180750 homeCount = 120 -29180750 waitCount = 52 -29180751 ripCount = 48 -29180751 locktype1 = 1 -29180752 locktype2 = 8 -29180752 locktype3 = 12 -29180753 goalCount = 1 -29180753 goalTotal = 41 -29180754 otherCount = 57 -~~~ -29180755 CURRENTGOAL IS [8] -~~~ -29185318 UP 1 -29185318 1 255 -~~~ -~~~ -29185916 DOWN 1 -29185916 0 255 -~~~ -~~~ -29185935 0 254 -~~~ -~~~ -29185937 0 252 -~~~ -~~~ -29185939 0 248 -~~~ -~~~ -29185941 0 240 -~~~ -~~~ -29185943 0 224 -~~~ -~~~ -29185944 0 192 -~~~ -~~~ -29185946 0 128 -~~~ -~~~ -29185948 0 0 -~~~ -~~~ -29185950 0 512 -29185951 homeCount = 120 -29185952 waitCount = 52 -29185952 ripCount = 48 -29185953 locktype1 = 1 -29185953 locktype2 = 8 -29185974 locktype3 = 12 -29185975 goalCount = 1 -29185975 goalTotal = 41 -29185976 otherCount = 58 -~~~ -29186163 1 512 -29186492 DOWN 1 -29186492 0 512 -29186605 1 512 -29187016 DOWN 1 -29187016 0 512 -29187039 1 512 -29187068 DOWN 1 -29187068 0 512 -29191463 UP 10 -29191463 waslock = 0 -29191463 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29191495 512 16777728 -~~~ -29191624 DOWN 10 -29191624 0 16777728 -29191645 0 512 -~~~ -~~~ -29191649 0 1536 -~~~ -~~~ -29191651 0 1024 -29191652 homeCount = 121 -29191652 waitCount = 52 -29191653 ripCount = 48 -29191653 locktype1 = 1 -29191654 locktype2 = 8 -29191654 locktype3 = 12 -29191655 goalCount = 1 -29191655 goalTotal = 41 -29191656 otherCount = 58 -~~~ -29191677 UP 10 -29191677 waslock = 0 -29191677 512 1024 -~~~ -29191706 DOWN 10 -29191706 0 1024 -~~~ -~~~ -~~~ -~~~ -29191722 homeCount = 121 -29191722 waitCount = 52 -29191723 ripCount = 48 -29191723 locktype1 = 1 -29191724 locktype2 = 8 -29191724 locktype3 = 12 -29191725 goalCount = 1 -29191725 goalTotal = 41 -29191726 otherCount = 58 -~~~ -29192235 UP 10 -29192235 waslock = 0 -29192235 512 1024 -~~~ -29198177 DOWN 10 -29198177 0 1024 -~~~ -~~~ -~~~ -~~~ -29198200 homeCount = 121 -29198201 waitCount = 52 -29198201 ripCount = 48 -29198202 locktype1 = 1 -29198202 locktype2 = 8 -29198203 locktype3 = 12 -29198203 goalCount = 1 -29198204 goalTotal = 41 -29198204 otherCount = 58 -~~~ -29198220 UP 10 -29198221 waslock = 0 -29198220 512 1024 -29198243 DOWN 10 -29198243 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -29198272 homeCount = 121 -29198272 waitCount = 52 -29198273 ripCount = 48 -29198273 locktype1 = 1 -29198274 locktype2 = 8 -29198274 locktype3 = 12 -29198275 goalCount = 1 -29198275 goalTotal = 41 -29198276 otherCount = 58 -~~~ -29199804 UP 11 -29199804 1024 1024 -29203422 DOWN 11 -29203422 0 1024 -29203433 UP 11 -29203433 1024 1024 -29203804 BEEP1 -29203804 BEEP2 -~~~ -~~~ -~~~ -29203828 1024 33555456 -~~~ -29203978 1024 1024 -29204975 DOWN 11 -29204975 0 1024 -~~~ -~~~ -29205002 0 0 -~~~ -~~~ -29205003 0 1 -~~~ -~~~ -29205005 0 3 -~~~ -~~~ -29205007 0 7 -~~~ -~~~ -29205009 0 15 -~~~ -~~~ -29205011 0 31 -~~~ -~~~ -29205012 0 63 -~~~ -~~~ -29205014 0 127 -~~~ -29205016 UP 11 -29205016 1024 127 -~~~ -29205017 homeCount = 121 -29205018 waitCount = 52 -29205018 ripCount = 49 -29205019 locktype1 = 1 -29205040 locktype2 = 8 -29205041 locktype3 = 12 -29205041 goalCount = 1 -29205042 goalTotal = 41 -29205042 otherCount = 58 -~~~ -29205043 CURRENTGOAL IS [8] -~~~ -29205044 1024 255 -29205098 DOWN 11 -29205098 0 255 -29205104 UP 11 -29205104 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205137 homeCount = 121 -29205138 waitCount = 52 -29205138 ripCount = 49 -29205139 locktype1 = 1 -29205139 locktype2 = 8 -29205140 locktype3 = 12 -29205141 goalCount = 1 -29205141 goalTotal = 41 -29205142 otherCount = 58 -~~~ -29205143 CURRENTGOAL IS [8] -~~~ -29205893 DOWN 11 -29205893 0 255 -29205909 UP 11 -29205909 1024 255 -~~~ -~~~ -~~~ -~~~ -29205929 DOWN 11 -29205929 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205942 homeCount = 121 -29205943 waitCount = 52 -29205943 ripCount = 49 -29205944 locktype1 = 1 -29205944 locktype2 = 8 -29205945 locktype3 = 12 -29205945 goalCount = 1 -29205946 goalTotal = 41 -29205946 otherCount = 58 -~~~ -29205948 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205975 homeCount = 121 -29205976 waitCount = 52 -29205976 ripCount = 49 -29205977 locktype1 = 1 -29205977 locktype2 = 8 -29205978 locktype3 = 12 -29205978 goalCount = 1 -29206000 goalTotal = 41 -29206000 otherCount = 58 -~~~ -29206001 CURRENTGOAL IS [8] -~~~ -29206071 UP 11 -29206071 1024 255 -29206350 DOWN 11 -29206350 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29206391 homeCount = 121 -29206392 waitCount = 52 -29206392 ripCount = 49 -29206393 locktype1 = 1 -29206393 locktype2 = 8 -29206394 locktype3 = 12 -29206395 goalCount = 1 -29206395 goalTotal = 41 -29206396 otherCount = 58 -~~~ -29206397 CURRENTGOAL IS [8] -~~~ -29207308 UP 11 -29207308 1024 255 -29207410 DOWN 11 -29207410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29207449 UP 11 -29207449 1024 255 -~~~ -~~~ -~~~ -~~~ -29207454 homeCount = 121 -29207454 waitCount = 52 -29207455 ripCount = 49 -29207455 locktype1 = 1 -29207456 locktype2 = 8 -29207456 locktype3 = 12 -29207457 goalCount = 1 -29207457 goalTotal = 41 -29207458 otherCount = 58 -~~~ -29207459 CURRENTGOAL IS [8] -~~~ -29208017 DOWN 11 -29208017 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208055 homeCount = 121 -29208055 waitCount = 52 -29208056 ripCount = 49 -29208056 locktype1 = 1 -29208057 locktype2 = 8 -29208057 locktype3 = 12 -29208058 goalCount = 1 -29208058 goalTotal = 41 -29208059 otherCount = 58 -~~~ -29208060 CURRENTGOAL IS [8] -~~~ -29208103 UP 11 -29208103 1024 255 -29208328 DOWN 11 -29208328 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208368 homeCount = 121 -29208368 waitCount = 52 -29208369 ripCount = 49 -29208369 locktype1 = 1 -29208370 locktype2 = 8 -29208370 locktype3 = 12 -29208371 goalCount = 1 -29208371 goalTotal = 41 -29208372 otherCount = 58 -~~~ -29208373 CURRENTGOAL IS [8] -~~~ -29208456 UP 11 -29208456 1024 255 -29208683 DOWN 11 -29208683 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208712 UP 11 -29208712 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -29208717 homeCount = 121 -29208718 waitCount = 52 -29208718 ripCount = 49 -29208719 locktype1 = 1 -29208719 locktype2 = 8 -29208720 locktype3 = 12 -29208720 goalCount = 1 -29208721 goalTotal = 41 -29208721 otherCount = 58 -~~~ -29208722 CURRENTGOAL IS [8] -~~~ -29214121 DOWN 11 -29214121 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214151 UP 11 -29214151 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214158 homeCount = 121 -29214158 waitCount = 52 -29214159 ripCount = 49 -29214159 locktype1 = 1 -29214160 locktype2 = 8 -29214160 locktype3 = 12 -29214161 goalCount = 1 -29214162 goalTotal = 41 -29214162 otherCount = 58 -~~~ -29214163 CURRENTGOAL IS [8] -~~~ -29214210 DOWN 11 -29214210 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214248 homeCount = 121 -29214248 waitCount = 52 -29214249 ripCount = 49 -29214249 locktype1 = 1 -29214250 locktype2 = 8 -29214250 locktype3 = 12 -29214251 goalCount = 1 -29214251 goalTotal = 41 -29214252 otherCount = 58 -~~~ -29214253 CURRENTGOAL IS [8] -~~~ -29218329 UP 7 -29218329 64 255 -~~~ -~~~ -29218784 DOWN 7 -29218784 0 255 -~~~ -~~~ -29218803 0 254 -~~~ -~~~ -29218805 0 252 -~~~ -~~~ -29218807 0 248 -~~~ -~~~ -29218809 0 240 -~~~ -~~~ -29218811 0 224 -~~~ -29218812 64 224 -~~~ -~~~ -29218814 64 192 -~~~ -29218815 64 128 -~~~ -~~~ -29218816 64 0 -~~~ -~~~ -29218818 64 512 -29218819 homeCount = 121 -29218819 waitCount = 52 -29218841 ripCount = 49 -29218841 locktype1 = 1 -29218842 locktype2 = 8 -29218842 locktype3 = 12 -29218843 goalCount = 1 -29218843 goalTotal = 41 -29218844 otherCount = 59 -~~~ -29219408 DOWN 7 -29219408 0 512 -29224639 UP 10 -29224640 waslock = 0 -29224639 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29224670 512 16777728 -~~~ -29224820 512 512 -29224880 DOWN 10 -29224880 0 512 -~~~ -~~~ -29224910 0 2560 -~~~ -~~~ -29224912 0 2048 -29224913 homeCount = 122 -29224913 waitCount = 52 -29224914 ripCount = 49 -29224914 locktype1 = 1 -29224915 locktype2 = 8 -29224915 locktype3 = 12 -29224916 goalCount = 1 -29224916 goalTotal = 41 -29224917 otherCount = 59 -~~~ -29224952 UP 10 -29224952 waslock = 0 -29224952 512 2048 -~~~ -29229705 DOWN 10 -29229705 0 2048 -~~~ -~~~ -~~~ -~~~ -29229726 homeCount = 122 -29229727 waitCount = 52 -29229727 ripCount = 49 -29229728 locktype1 = 1 -29229728 locktype2 = 8 -29229729 locktype3 = 12 -29229729 goalCount = 1 -29229730 goalTotal = 41 -29229730 otherCount = 59 -~~~ -29229738 UP 10 -29229738 waslock = 0 -29229738 512 2048 -~~~ -29229795 DOWN 10 -29229795 0 2048 -~~~ -~~~ -~~~ -~~~ -29229818 homeCount = 122 -29229818 waitCount = 52 -29229819 ripCount = 49 -29229819 locktype1 = 1 -29229820 locktype2 = 8 -29229820 locktype3 = 12 -29229821 goalCount = 1 -29229821 goalTotal = 41 -29229822 otherCount = 59 -~~~ -29232290 UP 12 -29232290 2048 2048 -29232929 DOWN 12 -29232929 0 2048 -29233130 LOCKOUT 3 -~~~ -29233156 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29233162 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29233439 UP 12 -29233439 2048 0 -29233601 DOWN 12 -29233601 0 0 -29233714 UP 12 -29233714 2048 0 -29233929 DOWN 12 -29233929 0 0 -29244665 UP 4 -29244665 8 0 -29244691 DOWN 4 -29244691 0 0 -29244744 8 0 -29245299 DOWN 4 -29245299 0 0 -29245374 8 0 -29245764 DOWN 4 -29245764 0 0 -29256362 512 0 -29256669 0 0 -29256725 512 0 -29257036 0 0 -29257137 512 0 -29257143 0 0 -29258156 LOCKEND -~~~ -~~~ -~~~ -29258176 0 512 -29259266 UP 10 -29259266 waslock = 0 -29259266 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29259291 512 16777728 -~~~ -29259347 DOWN 10 -29259347 0 16777728 -~~~ -~~~ -29259364 0 16778752 -~~~ -~~~ -29259366 0 16778240 -29259367 homeCount = 123 -29259368 waitCount = 52 -29259368 ripCount = 49 -29259369 locktype1 = 1 -29259369 locktype2 = 8 -29259370 locktype3 = 13 -29259370 goalCount = 1 -29259371 goalTotal = 41 -29259371 otherCount = 59 -~~~ -29259392 UP 10 -29259393 waslock = 0 -29259392 512 16778240 -~~~ -29259441 512 1024 -29264964 DOWN 10 -29264964 0 1024 -~~~ -~~~ -~~~ -~~~ -29264987 homeCount = 123 -29264988 waitCount = 52 -29264988 ripCount = 49 -29264989 locktype1 = 1 -29264989 locktype2 = 8 -29264990 locktype3 = 13 -29264990 goalCount = 1 -29264991 goalTotal = 41 -29264991 otherCount = 59 -~~~ -29266921 UP 11 -29266920 1024 1024 -29270765 DOWN 11 -29270765 0 1024 -29270788 UP 11 -29270788 1024 1024 -29275741 DOWN 11 -29275741 0 1024 -29275751 UP 11 -29275750 1024 1024 -29275921 BEEP1 -29275921 BEEP2 -~~~ -~~~ -~~~ -29275948 1024 33555456 -~~~ -29276098 1024 1024 -29284636 DOWN 11 -29284635 0 1024 -~~~ -~~~ -29284655 0 0 -~~~ -~~~ -29284657 0 1 -~~~ -~~~ -29284659 0 3 -~~~ -~~~ -29284661 0 7 -~~~ -~~~ -29284662 0 15 -~~~ -~~~ -29284664 0 31 -~~~ -~~~ -29284666 0 63 -~~~ -~~~ -29284668 0 127 -~~~ -~~~ -29284670 0 255 -29284671 homeCount = 123 -29284671 waitCount = 52 -29284672 ripCount = 50 -29284672 locktype1 = 1 -29284673 locktype2 = 8 -29284694 locktype3 = 13 -29284694 goalCount = 1 -29284695 goalTotal = 41 -29284695 otherCount = 59 -~~~ -29284696 CURRENTGOAL IS [8] -~~~ -29284697 UP 11 -29284697 1024 255 -29284755 DOWN 11 -29284755 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29284796 homeCount = 123 -29284796 waitCount = 52 -29284797 ripCount = 50 -29284797 locktype1 = 1 -29284798 locktype2 = 8 -29284799 locktype3 = 13 -29284799 goalCount = 1 -29284800 goalTotal = 41 -29284800 otherCount = 59 -~~~ -29284801 CURRENTGOAL IS [8] -~~~ -29288212 UP 8 -29288212 128 255 -~~~ -~~~ -29288231 outer reward -~~~ -29288232 128 8388863 -~~~ -~~~ -29288549 DOWN 8 -29288549 0 8388863 -~~~ -~~~ -29288570 0 8388862 -~~~ -~~~ -29288571 0 8388860 -~~~ -~~~ -29288573 0 8388856 -~~~ -29288575 128 8388856 -~~~ -~~~ -29288576 128 8388848 -~~~ -~~~ -29288578 128 8388832 -~~~ -29288579 128 8388800 -~~~ -~~~ -29288581 128 8388736 -~~~ -~~~ -29288582 128 8388608 -~~~ -~~~ -29288584 128 8389120 -29288606 homeCount = 123 -29288607 waitCount = 52 -29288607 ripCount = 50 -29288608 locktype1 = 1 -29288608 locktype2 = 8 -29288609 locktype3 = 13 -29288609 goalCount = 2 -29288610 goalTotal = 42 -29288610 otherCount = 59 -~~~ -29288681 128 512 -29288820 DOWN 8 -29288820 0 512 -29288834 128 512 -29288934 DOWN 8 -29288934 0 512 -29288960 128 512 -29289062 DOWN 8 -29289062 0 512 -29289076 128 512 -29289179 DOWN 8 -29289179 0 512 -29289202 128 512 -29289305 DOWN 8 -29289305 0 512 -29289323 128 512 -29289431 DOWN 8 -29289431 0 512 -29289453 128 512 -29289581 DOWN 8 -29289581 0 512 -29289598 128 512 -29289717 DOWN 8 -29289717 0 512 -29289724 128 512 -29295838 DOWN 8 -29295838 0 512 -29300855 UP 10 -29300856 waslock = 0 -29300855 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29300888 512 16777728 -~~~ -29301038 512 512 -29301135 DOWN 10 -29301135 0 512 -~~~ -~~~ -29301161 0 1536 -~~~ -~~~ -29301163 0 1024 -29301164 homeCount = 124 -29301164 waitCount = 52 -29301165 ripCount = 50 -29301165 locktype1 = 1 -29301166 locktype2 = 8 -29301166 locktype3 = 13 -29301167 goalCount = 2 -29301167 goalTotal = 42 -29301168 otherCount = 59 -~~~ -29301247 UP 10 -29301247 waslock = 0 -29301247 512 1024 -~~~ -29308901 DOWN 10 -29308901 0 1024 -29308911 UP 10 -29308911 waslock = 0 -29308911 512 1024 -~~~ -~~~ -~~~ -~~~ -29308934 homeCount = 124 -29308935 waitCount = 52 -29308936 ripCount = 50 -29308936 locktype1 = 1 -29308937 locktype2 = 8 -29308937 locktype3 = 13 -29308938 goalCount = 2 -29308938 goalTotal = 42 -29308939 otherCount = 59 -~~~ -~~~ -29308997 DOWN 10 -29308997 0 1024 -~~~ -~~~ -~~~ -~~~ -29309025 homeCount = 124 -29309026 waitCount = 52 -29309026 ripCount = 50 -29309027 locktype1 = 1 -29309027 locktype2 = 8 -29309028 locktype3 = 13 -29309028 goalCount = 2 -29309029 goalTotal = 42 -29309029 otherCount = 59 -~~~ -29311128 UP 11 -29311128 1024 1024 -29314264 DOWN 11 -29314264 0 1024 -29314275 UP 11 -29314275 1024 1024 -29318628 BEEP1 -29318628 BEEP2 -~~~ -~~~ -~~~ -29318653 1024 33555456 -~~~ -29318803 1024 1024 -29327074 DOWN 11 -29327074 0 1024 -~~~ -~~~ -29327093 0 0 -~~~ -~~~ -29327095 0 1 -~~~ -~~~ -29327096 0 3 -~~~ -~~~ -29327098 0 7 -~~~ -~~~ -29327100 0 15 -~~~ -~~~ -29327102 0 31 -~~~ -~~~ -29327104 0 63 -~~~ -~~~ -29327105 0 127 -~~~ -~~~ -29327107 0 255 -29327108 homeCount = 124 -29327109 waitCount = 52 -29327109 ripCount = 51 -29327110 locktype1 = 1 -29327110 locktype2 = 8 -29327131 locktype3 = 13 -29327132 goalCount = 2 -29327132 goalTotal = 42 -29327133 otherCount = 59 -~~~ -29327134 CURRENTGOAL IS [8] -~~~ -29327143 UP 11 -29327143 1024 255 -29327191 DOWN 11 -29327191 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29327227 homeCount = 124 -29327228 waitCount = 52 -29327228 ripCount = 51 -29327229 locktype1 = 1 -29327229 locktype2 = 8 -29327230 locktype3 = 13 -29327230 goalCount = 2 -29327231 goalTotal = 42 -29327231 otherCount = 59 -~~~ -29327233 CURRENTGOAL IS [8] -~~~ -29331590 UP 8 -29331590 128 255 -~~~ -~~~ -29331613 outer reward -~~~ -29331614 128 8388863 -~~~ -~~~ -29331812 DOWN 8 -29331812 0 8388863 -~~~ -~~~ -29331833 0 8388862 -~~~ -~~~ -29331835 0 8388860 -~~~ -~~~ -29331837 0 8388856 -~~~ -~~~ -29331838 0 8388848 -~~~ -~~~ -29331840 0 8388832 -~~~ -~~~ -29331842 0 8388800 -~~~ -~~~ -29331844 0 8388736 -~~~ -~~~ -29331846 0 8388608 -~~~ -~~~ -29331848 0 8389120 -29331849 homeCount = 124 -29331849 waitCount = 52 -29331850 ripCount = 51 -29331871 locktype1 = 1 -29331871 locktype2 = 8 -29331872 locktype3 = 13 -29331872 goalCount = 3 -29331873 goalTotal = 43 -29331873 otherCount = 59 -~~~ -29331874 128 8389120 -29332063 128 512 -29332236 DOWN 8 -29332236 0 512 -29332246 128 512 -29332338 DOWN 8 -29332338 0 512 -29332375 128 512 -29332458 DOWN 8 -29332458 0 512 -29332486 128 512 -29332583 DOWN 8 -29332583 0 512 -29332608 128 512 -29332710 DOWN 8 -29332710 0 512 -29332732 128 512 -29332982 DOWN 8 -29332982 0 512 -29332985 128 512 -29333239 DOWN 8 -29333239 0 512 -29333247 128 512 -29338471 DOWN 8 -29338471 0 512 -29344506 UP 10 -29344507 waslock = 0 -29344506 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29344530 512 16777728 -~~~ -29344680 512 512 -29349720 DOWN 10 -29349720 0 512 -~~~ -~~~ -29349745 0 2560 -~~~ -~~~ -29349746 0 2048 -29349747 homeCount = 125 -29349748 waitCount = 52 -29349749 ripCount = 51 -29349749 locktype1 = 1 -29349750 locktype2 = 8 -29349750 locktype3 = 13 -29349751 goalCount = 3 -29349751 goalTotal = 43 -29349752 otherCount = 59 -~~~ -29349773 UP 10 -29349773 waslock = 0 -29349773 512 2048 -~~~ -29349825 DOWN 10 -29349825 0 2048 -~~~ -~~~ -~~~ -~~~ -29349849 homeCount = 125 -29349849 waitCount = 52 -29349850 ripCount = 51 -29349850 locktype1 = 1 -29349851 locktype2 = 8 -29349851 locktype3 = 13 -29349852 goalCount = 3 -29349852 goalTotal = 43 -29349853 otherCount = 59 -~~~ -29352255 UP 12 -29352255 2048 2048 -29352543 DOWN 12 -29352543 0 2048 -29352728 UP 12 -29352728 2048 2048 -29355255 CLICK1 -29355255 CLICK2 -~~~ -~~~ -~~~ -29355278 2048 67110912 -~~~ -29355428 2048 2048 -29362752 DOWN 12 -29362752 0 2048 -~~~ -~~~ -29362776 0 0 -~~~ -~~~ -29362778 0 1 -~~~ -~~~ -29362780 0 3 -~~~ -~~~ -29362782 0 7 -~~~ -~~~ -29362783 0 15 -~~~ -~~~ -29362785 0 31 -~~~ -~~~ -29362787 0 63 -~~~ -~~~ -29362789 0 127 -~~~ -29362790 UP 12 -29362790 2048 127 -~~~ -29362792 homeCount = 125 -29362792 waitCount = 53 -29362793 ripCount = 51 -29362793 locktype1 = 1 -29362815 locktype2 = 8 -29362815 locktype3 = 13 -29362816 goalCount = 3 -29362816 goalTotal = 43 -29362817 otherCount = 59 -~~~ -29362818 CURRENTGOAL IS [8] -~~~ -29362818 2048 255 -29362852 DOWN 12 -29362852 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29362893 homeCount = 125 -29362894 waitCount = 53 -29362894 ripCount = 51 -29362895 locktype1 = 1 -29362895 locktype2 = 8 -29362896 locktype3 = 13 -29362896 goalCount = 3 -29362897 goalTotal = 43 -29362897 otherCount = 59 -~~~ -29362898 CURRENTGOAL IS [8] -~~~ -29367715 UP 8 -29367715 128 255 -~~~ -~~~ -29367735 outer reward -~~~ -29367735 128 8388863 -~~~ -~~~ -29367928 DOWN 8 -29367928 0 8388863 -~~~ -~~~ -29367952 0 8388862 -~~~ -~~~ -29367953 0 8388860 -~~~ -~~~ -29367955 0 8388856 -~~~ -~~~ -29367957 0 8388848 -~~~ -~~~ -29367959 0 8388832 -~~~ -~~~ -29367961 0 8388800 -~~~ -~~~ -29367962 0 8388736 -~~~ -~~~ -29367964 0 8388608 -~~~ -~~~ -29367966 0 8389120 -29367967 homeCount = 125 -29367968 waitCount = 53 -29367968 ripCount = 51 -29367989 locktype1 = 1 -29367990 locktype2 = 8 -29367990 locktype3 = 13 -29367991 goalCount = 4 -29367991 goalTotal = 44 -29367992 otherCount = 59 -~~~ -29367998 128 8389120 -29368185 128 512 -29368242 DOWN 8 -29368242 0 512 -29368254 128 512 -29368363 DOWN 8 -29368363 0 512 -29368371 128 512 -29368479 DOWN 8 -29368479 0 512 -29368499 128 512 -29368596 DOWN 8 -29368596 0 512 -29368622 128 512 -29368726 DOWN 8 -29368726 0 512 -29368746 128 512 -29368850 DOWN 8 -29368850 0 512 -29368886 128 512 -29368991 DOWN 8 -29368991 0 512 -29369005 128 512 -29374850 DOWN 8 -29374850 0 512 -29374897 128 512 -29374950 DOWN 8 -29374950 0 512 -29379956 UP 10 -29379957 waslock = 0 -29379956 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29379988 512 16777728 -~~~ -29380138 512 512 -29383458 DOWN 10 -29383458 0 512 -~~~ -~~~ -29383482 0 1536 -~~~ -~~~ -29383484 0 1024 -29383485 homeCount = 126 -29383485 waitCount = 53 -29383486 ripCount = 51 -29383486 locktype1 = 1 -29383487 locktype2 = 8 -29383487 locktype3 = 13 -29383488 goalCount = 4 -29383488 goalTotal = 44 -29383489 otherCount = 59 -~~~ -29383510 UP 10 -29383510 waslock = 0 -29383510 512 1024 -~~~ -29383556 DOWN 10 -29383556 0 1024 -~~~ -~~~ -~~~ -~~~ -29383589 homeCount = 126 -29383590 waitCount = 53 -29383590 ripCount = 51 -29383591 locktype1 = 1 -29383591 locktype2 = 8 -29383592 locktype3 = 13 -29383592 goalCount = 4 -29383593 goalTotal = 44 -29383593 otherCount = 59 -~~~ -29385874 UP 11 -29385873 1024 1024 -29389139 DOWN 11 -29389138 0 1024 -29389207 UP 11 -29389207 1024 1024 -29390700 DOWN 11 -29390700 0 1024 -29390716 UP 11 -29390716 1024 1024 -29390735 DOWN 11 -29390735 0 1024 -29390772 UP 11 -29390772 1024 1024 -29393374 BEEP1 -29393374 BEEP2 -~~~ -~~~ -~~~ -29393395 1024 33555456 -~~~ -29393545 1024 1024 -29398229 DOWN 11 -29398229 0 1024 -29398250 UP 11 -29398250 1024 1024 -~~~ -~~~ -~~~ -29398252 1024 0 -~~~ -29398253 1024 1 -~~~ -~~~ -29398255 1024 3 -~~~ -~~~ -29398256 1024 7 -~~~ -~~~ -29398258 1024 15 -~~~ -~~~ -29398260 1024 31 -~~~ -~~~ -29398262 1024 63 -~~~ -~~~ -29398264 1024 127 -~~~ -~~~ -29398266 1024 255 -29398267 homeCount = 126 -29398288 waitCount = 53 -29398288 ripCount = 52 -29398289 locktype1 = 1 -29398289 locktype2 = 8 -29398290 locktype3 = 13 -29398290 goalCount = 4 -29398291 goalTotal = 44 -29398291 otherCount = 59 -~~~ -29398292 CURRENTGOAL IS [8] -~~~ -29401721 DOWN 11 -29401721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29401758 homeCount = 126 -29401758 waitCount = 53 -29401759 ripCount = 52 -29401760 locktype1 = 1 -29401760 locktype2 = 8 -29401761 locktype3 = 13 -29401761 goalCount = 4 -29401762 goalTotal = 44 -29401762 otherCount = 59 -~~~ -29401763 CURRENTGOAL IS [8] -~~~ -29401784 UP 11 -29401784 1024 255 -29401846 DOWN 11 -29401846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29401878 homeCount = 126 -29401878 waitCount = 53 -29401879 ripCount = 52 -29401879 locktype1 = 1 -29401880 locktype2 = 8 -29401880 locktype3 = 13 -29401881 goalCount = 4 -29401881 goalTotal = 44 -29401882 otherCount = 59 -~~~ -29401883 CURRENTGOAL IS [8] -~~~ -29406312 UP 8 -29406312 128 255 -~~~ -~~~ -29406334 outer reward -~~~ -29406335 128 8388863 -~~~ -~~~ -29406562 DOWN 8 -29406562 0 8388863 -~~~ -~~~ -29406584 0 8388862 -~~~ -~~~ -29406586 0 8388860 -~~~ -~~~ -29406588 0 8388856 -~~~ -~~~ -29406590 0 8388848 -~~~ -~~~ -29406591 0 8388832 -~~~ -~~~ -29406593 0 8388800 -~~~ -~~~ -29406595 0 8388736 -~~~ -~~~ -29406597 0 8388608 -~~~ -~~~ -29406599 0 8389120 -29406600 homeCount = 126 -29406600 waitCount = 53 -29406601 ripCount = 52 -29406622 locktype1 = 1 -29406623 locktype2 = 8 -29406623 locktype3 = 13 -29406624 goalCount = 5 -29406624 goalTotal = 45 -29406625 otherCount = 59 -~~~ -29406625 128 8389120 -29406784 128 512 -29406967 DOWN 8 -29406967 0 512 -29406996 128 512 -29407085 DOWN 8 -29407085 0 512 -29407104 128 512 -29407202 DOWN 8 -29407202 0 512 -29407224 128 512 -29407338 DOWN 8 -29407338 0 512 -29407357 128 512 -29413909 DOWN 8 -29413909 0 512 -29413959 128 512 -29414006 DOWN 8 -29414006 0 512 -29418802 UP 10 -29418803 waslock = 0 -29418802 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29418830 512 16777728 -~~~ -29418980 512 512 -29419012 DOWN 10 -29419012 0 512 -~~~ -~~~ -29419037 0 2560 -~~~ -~~~ -29419039 0 2048 -29419040 homeCount = 127 -29419040 waitCount = 53 -29419041 ripCount = 52 -29419041 locktype1 = 1 -29419042 locktype2 = 8 -29419042 locktype3 = 13 -29419043 goalCount = 5 -29419043 goalTotal = 45 -29419044 otherCount = 59 -~~~ -29419074 UP 10 -29419075 waslock = 0 -29419074 512 2048 -~~~ -29424344 DOWN 10 -29424344 0 2048 -~~~ -~~~ -~~~ -~~~ -29424367 homeCount = 127 -29424367 waitCount = 53 -29424368 ripCount = 52 -29424368 locktype1 = 1 -29424369 locktype2 = 8 -29424369 locktype3 = 13 -29424370 goalCount = 5 -29424370 goalTotal = 45 -29424371 otherCount = 59 -~~~ -29424380 UP 10 -29424381 waslock = 0 -29424380 512 2048 -~~~ -29424422 DOWN 10 -29424422 0 2048 -~~~ -~~~ -~~~ -~~~ -29424446 homeCount = 127 -29424446 waitCount = 53 -29424447 ripCount = 52 -29424447 locktype1 = 1 -29424448 locktype2 = 8 -29424448 locktype3 = 13 -29424449 goalCount = 5 -29424449 goalTotal = 45 -29424450 otherCount = 59 -~~~ -29430294 UP 10 -29430294 waslock = 0 -29430294 512 2048 -~~~ -29430680 DOWN 10 -29430680 0 2048 -~~~ -~~~ -~~~ -~~~ -29430708 homeCount = 127 -29430708 waitCount = 53 -29430709 ripCount = 52 -29430710 locktype1 = 1 -29430710 locktype2 = 8 -29430711 locktype3 = 13 -29430711 goalCount = 5 -29430712 goalTotal = 45 -29430712 otherCount = 59 -~~~ -29435478 UP 12 -29435478 2048 2048 -29435569 DOWN 12 -29435569 0 2048 -29435769 LOCKOUT 3 -~~~ -29435786 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29435792 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29447190 UP 7 -29447190 64 0 -29447579 DOWN 7 -29447579 0 0 - - description: Statescript log r3 - task_epochs: 6, -] -2021-05-24 14:15:31,419 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-24 14:15:35,404 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-05-24 14:15:35,412 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-05-24 14:15:35,413 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-05-24 14:15:35,414 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-05-24 14:15:35,415 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-05-24 14:15:35,416 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-05-24 14:15:35,416 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-05-24 14:15:35,417 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-05-24 14:15:35,418 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-05-24 14:15:35,419 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-05-24 14:15:35,419 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-05-24 14:15:35,420 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-05-24 14:15:35,422 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-05-24 14:15:35,422 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-05-24 14:15:35,422 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-05-24 14:15:35,424 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-05-24 14:15:35,424 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-05-24 14:15:35,424 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-05-24 14:15:35,426 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-05-24 14:15:35,427 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_01_s1.1. -2021-05-24 14:15:35,429 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_02_r1.1. -2021-05-24 14:15:35,434 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-05-24 14:15:35,435 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-05-24 14:15:35,449 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-05-24 14:15:35,452 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-05-24 14:15:35,459 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-05-24 14:15:35,525 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-05-24 19:07:47,696 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = despereaux -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-05-24 19:07:48,174 rec_to_binaries.core: INFO Extracting analog data... -2021-05-24 19:07:48,176 rec_to_binaries.core: INFO Extracting DIO... -2021-05-24 19:07:48,176 rec_to_binaries.core: INFO Extracting mda... -2021-05-24 19:07:48,177 rec_to_binaries.core: INFO Extracting time... -2021-05-24 19:16:37,585 rec_to_binaries.core: INFO Making position directory... -2021-05-24 19:16:40,833 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-24 19:16:40,834 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 -2021-05-24 19:16:40,835 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-24 19:16:40,835 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = despereaux -date = 20191125 -nwb_metadata = Experiment Info: -Experimenter: Anna Gillespie -Description: Sungod control -Session Id: 4 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/loren/despereaux20191125.nwb - -2021-05-24 19:16:41,498 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! - , [] -2021-05-24 19:16:53,823 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-24 19:16:53,846 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-24 19:16:53,847 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-24 19:16:53,847 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-24 19:16:53,848 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-24 19:16:53,848 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-24 19:16:53,848 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-24 19:16:53,849 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-24 19:16:53,849 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-24 19:16:53,849 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-24 19:16:53,850 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-24 19:16:53,850 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-24 19:16:53,850 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-24 19:16:53,851 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-24 19:16:53,851 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-24 19:16:53,851 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-24 19:16:53,856 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-24 19:16:53,857 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-24 19:16:53,860 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [Statescript1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140114078580048 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -2608699 UP 10 -2608699 waslock = 0 -2608699 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2608722 512 16777728 -~~~ -2608872 512 512 -2608885 DOWN 10 -2608885 0 512 -~~~ -~~~ -2608901 0 1536 -~~~ -~~~ -2608903 0 1024 -2608904 homeCount = 1 -2608904 waitCount = 0 -2608905 ripCount = 0 -2608905 locktype1 = 0 -2608906 locktype2 = 0 -2608906 locktype3 = 0 -2608907 goalCount = 0 -2608907 goalTotal = 0 -2608908 otherCount = 0 -~~~ -2609055 UP 10 -2609055 waslock = 0 -2609054 512 1024 -2609074 DOWN 10 -2609074 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -2609109 homeCount = 1 -2609109 waitCount = 0 -2609109 ripCount = 0 -2609110 locktype1 = 0 -2609110 locktype2 = 0 -2609111 locktype3 = 0 -2609111 goalCount = 0 -2609112 goalTotal = 0 -2609112 otherCount = 0 -~~~ -2609182 UP 10 -2609182 waslock = 0 -2609182 512 1024 -~~~ -2609223 DOWN 10 -2609223 0 1024 -~~~ -~~~ -~~~ -~~~ -2609256 homeCount = 1 -2609257 waitCount = 0 -2609257 ripCount = 0 -2609258 locktype1 = 0 -2609258 locktype2 = 0 -2609259 locktype3 = 0 -2609259 goalCount = 0 -2609260 goalTotal = 0 -2609260 otherCount = 0 -~~~ -2609311 UP 10 -2609311 waslock = 0 -2609311 512 1024 -~~~ -2609574 DOWN 10 -2609574 0 1024 -~~~ -~~~ -~~~ -2609597 UP 10 -2609597 waslock = 0 -2609597 512 1024 -~~~ -2609599 homeCount = 1 -2609600 waitCount = 0 -2609600 ripCount = 0 -2609601 locktype1 = 0 -2609601 locktype2 = 0 -2609602 locktype3 = 0 -2609602 goalCount = 0 -2609602 goalTotal = 0 -2609603 otherCount = 0 -~~~ -~~~ -2609728 DOWN 10 -2609728 0 1024 -~~~ -~~~ -~~~ -~~~ -2609754 homeCount = 1 -2609754 waitCount = 0 -2609755 ripCount = 0 -2609755 locktype1 = 0 -2609756 locktype2 = 0 -2609756 locktype3 = 0 -2609757 goalCount = 0 -2609757 goalTotal = 0 -2609758 otherCount = 0 -~~~ -2609758 UP 10 -2609759 waslock = 0 -2609758 512 1024 -~~~ -2609870 DOWN 10 -2609870 0 1024 -~~~ -~~~ -~~~ -~~~ -2609895 homeCount = 1 -2609896 waitCount = 0 -2609896 ripCount = 0 -2609897 locktype1 = 0 -2609897 locktype2 = 0 -2609898 locktype3 = 0 -2609898 goalCount = 0 -2609898 goalTotal = 0 -2609899 otherCount = 0 -~~~ -2609909 UP 10 -2609910 waslock = 0 -2609909 512 1024 -~~~ -2610022 DOWN 10 -2610022 0 1024 -~~~ -~~~ -~~~ -~~~ -2610045 homeCount = 1 -2610045 waitCount = 0 -2610046 ripCount = 0 -2610046 locktype1 = 0 -2610047 locktype2 = 0 -2610047 locktype3 = 0 -2610048 goalCount = 0 -2610048 goalTotal = 0 -2610049 otherCount = 0 -~~~ -2610059 UP 10 -2610059 waslock = 0 -2610059 512 1024 -~~~ -2610177 DOWN 10 -2610177 0 1024 -~~~ -~~~ -~~~ -~~~ -2610204 homeCount = 1 -2610205 waitCount = 0 -2610205 ripCount = 0 -2610206 locktype1 = 0 -2610206 locktype2 = 0 -2610206 locktype3 = 0 -2610207 goalCount = 0 -2610207 goalTotal = 0 -2610208 otherCount = 0 -~~~ -2610208 UP 10 -2610209 waslock = 0 -2610208 512 1024 -~~~ -2610339 DOWN 10 -2610338 0 1024 -~~~ -~~~ -~~~ -2610363 UP 10 -2610363 waslock = 0 -2610363 512 1024 -~~~ -2610365 homeCount = 1 -2610365 waitCount = 0 -2610366 ripCount = 0 -2610366 locktype1 = 0 -2610367 locktype2 = 0 -2610367 locktype3 = 0 -2610367 goalCount = 0 -2610368 goalTotal = 0 -2610368 otherCount = 0 -~~~ -~~~ -2610495 DOWN 10 -2610495 0 1024 -~~~ -~~~ -~~~ -~~~ -2610515 homeCount = 1 -2610515 waitCount = 0 -2610516 ripCount = 0 -2610516 locktype1 = 0 -2610516 locktype2 = 0 -2610517 locktype3 = 0 -2610517 goalCount = 0 -2610518 goalTotal = 0 -2610518 otherCount = 0 -~~~ -2610526 UP 10 -2610526 waslock = 0 -2610526 512 1024 -~~~ -2610666 DOWN 10 -2610666 0 1024 -2610679 UP 10 -2610680 waslock = 0 -2610679 512 1024 -~~~ -~~~ -~~~ -~~~ -2610696 homeCount = 1 -2610697 waitCount = 0 -2610697 ripCount = 0 -2610698 locktype1 = 0 -2610698 locktype2 = 0 -2610699 locktype3 = 0 -2610699 goalCount = 0 -2610700 goalTotal = 0 -2610700 otherCount = 0 -~~~ -~~~ -2611006 DOWN 10 -2611006 0 1024 -2611013 UP 10 -2611013 waslock = 0 -2611013 512 1024 -~~~ -~~~ -~~~ -~~~ -2611036 homeCount = 1 -2611036 waitCount = 0 -2611037 ripCount = 0 -2611037 locktype1 = 0 -2611038 locktype2 = 0 -2611038 locktype3 = 0 -2611038 goalCount = 0 -2611039 goalTotal = 0 -2611039 otherCount = 0 -~~~ -~~~ -2611156 DOWN 10 -2611156 0 1024 -2611188 UP 10 -2611189 waslock = 0 -2611188 512 1024 -~~~ -~~~ -~~~ -~~~ -2611194 homeCount = 1 -2611195 waitCount = 0 -2611195 ripCount = 0 -2611196 locktype1 = 0 -2611196 locktype2 = 0 -2611196 locktype3 = 0 -2611197 goalCount = 0 -2611197 goalTotal = 0 -2611198 otherCount = 0 -~~~ -~~~ -2611313 DOWN 10 -2611313 0 1024 -~~~ -~~~ -~~~ -~~~ -2611336 homeCount = 1 -2611337 waitCount = 0 -2611337 ripCount = 0 -2611338 locktype1 = 0 -2611338 locktype2 = 0 -2611339 locktype3 = 0 -2611339 goalCount = 0 -2611340 goalTotal = 0 -2611340 otherCount = 0 -~~~ -2611352 UP 10 -2611353 waslock = 0 -2611352 512 1024 -~~~ -2611481 DOWN 10 -2611481 0 1024 -~~~ -~~~ -~~~ -~~~ -2611505 homeCount = 1 -2611506 waitCount = 0 -2611506 ripCount = 0 -2611507 locktype1 = 0 -2611507 locktype2 = 0 -2611508 locktype3 = 0 -2611508 goalCount = 0 -2611508 goalTotal = 0 -2611509 otherCount = 0 -~~~ -2611524 UP 10 -2611524 waslock = 0 -2611524 512 1024 -~~~ -2611655 DOWN 10 -2611655 0 1024 -~~~ -~~~ -~~~ -~~~ -2611675 homeCount = 1 -2611676 waitCount = 0 -2611676 ripCount = 0 -2611677 locktype1 = 0 -2611677 locktype2 = 0 -2611678 locktype3 = 0 -2611678 goalCount = 0 -2611679 goalTotal = 0 -2611679 otherCount = 0 -~~~ -2611701 UP 10 -2611702 waslock = 0 -2611701 512 1024 -~~~ -2611829 DOWN 10 -2611829 0 1024 -~~~ -~~~ -~~~ -~~~ -2611855 homeCount = 1 -2611855 waitCount = 0 -2611856 ripCount = 0 -2611856 locktype1 = 0 -2611857 locktype2 = 0 -2611857 locktype3 = 0 -2611858 goalCount = 0 -2611858 goalTotal = 0 -2611859 otherCount = 0 -~~~ -2611865 UP 10 -2611865 waslock = 0 -2611865 512 1024 -~~~ -2612015 DOWN 10 -2612015 0 1024 -~~~ -~~~ -~~~ -2612033 UP 10 -2612034 waslock = 0 -2612033 512 1024 -~~~ -2612035 homeCount = 1 -2612036 waitCount = 0 -2612036 ripCount = 0 -2612037 locktype1 = 0 -2612037 locktype2 = 0 -2612038 locktype3 = 0 -2612038 goalCount = 0 -2612039 goalTotal = 0 -2612039 otherCount = 0 -~~~ -~~~ -2612181 DOWN 10 -2612180 0 1024 -~~~ -~~~ -~~~ -~~~ -2612207 homeCount = 1 -2612208 waitCount = 0 -2612208 ripCount = 0 -2612209 locktype1 = 0 -2612209 locktype2 = 0 -2612210 locktype3 = 0 -2612210 goalCount = 0 -2612211 goalTotal = 0 -2612211 otherCount = 0 -~~~ -2612229 UP 10 -2612229 waslock = 0 -2612229 512 1024 -~~~ -2612356 DOWN 10 -2612356 0 1024 -~~~ -~~~ -~~~ -~~~ -2612387 homeCount = 1 -2612387 waitCount = 0 -2612388 ripCount = 0 -2612388 locktype1 = 0 -2612389 locktype2 = 0 -2612389 locktype3 = 0 -2612390 goalCount = 0 -2612390 goalTotal = 0 -2612391 otherCount = 0 -~~~ -2612407 UP 10 -2612407 waslock = 0 -2612406 512 1024 -~~~ -2614983 DOWN 10 -2614983 0 1024 -~~~ -~~~ -~~~ -~~~ -2615004 homeCount = 1 -2615005 waitCount = 0 -2615005 ripCount = 0 -2615006 locktype1 = 0 -2615006 locktype2 = 0 -2615007 locktype3 = 0 -2615007 goalCount = 0 -2615008 goalTotal = 0 -2615008 otherCount = 0 -~~~ -2617153 UP 12 -2617154 LOCKOUT 1 -2617153 2048 1024 -~~~ -2617175 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -2617178 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2617366 DOWN 12 -2617366 0 0 -2617491 UP 12 -2617491 2048 0 -2617895 DOWN 12 -2617895 0 0 -2617923 UP 12 -2617923 2048 0 -2618053 DOWN 12 -2618053 0 0 -2618075 UP 12 -2618075 2048 0 -2619271 DOWN 12 -2619271 0 0 -2619295 UP 12 -2619295 2048 0 -2619584 DOWN 12 -2619584 0 0 -2619593 UP 12 -2619593 2048 0 -2621137 DOWN 12 -2621137 0 0 -2622946 UP 11 -2622946 1024 0 -2623563 DOWN 11 -2623563 0 0 -2623582 UP 11 -2623582 1024 0 -2623717 DOWN 11 -2623717 0 0 -2623731 UP 11 -2623731 1024 0 -2623879 DOWN 11 -2623879 0 0 -2623904 UP 11 -2623903 1024 0 -2624051 DOWN 11 -2624051 0 0 -2624056 UP 11 -2624056 1024 0 -2626713 DOWN 11 -2626713 0 0 -2626722 UP 11 -2626722 1024 0 -2627171 DOWN 11 -2627171 0 0 -2631902 UP 7 -2631902 64 0 -2632210 DOWN 7 -2632210 0 0 -2632230 64 0 -2634192 DOWN 7 -2634192 0 0 -2634209 64 0 -2635732 DOWN 7 -2635732 0 0 -2642069 512 0 -2642175 LOCKEND -~~~ -~~~ -~~~ -2642201 512 512 -2642433 DOWN 10 -2642433 0 512 -2642526 UP 10 -2642526 waslock = 0 -2642526 512 512 -2642544 DOWN 10 -2642544 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2642558 0 16777728 -~~~ -~~~ -~~~ -2642570 0 16778752 -~~~ -~~~ -2642571 0 16778240 -2642572 homeCount = 2 -2642573 waitCount = 0 -2642573 ripCount = 0 -2642574 locktype1 = 1 -2642574 locktype2 = 0 -2642575 locktype3 = 0 -2642575 goalCount = 0 -2642576 goalTotal = 0 -2642576 otherCount = 0 -~~~ -2642628 UP 10 -2642629 waslock = 0 -2642628 512 16778240 -~~~ -2642704 DOWN 10 -2642704 0 16778240 -2642706 UP 10 -2642707 waslock = 0 -2642706 512 16778240 -2642708 512 1024 -2642713 DOWN 10 -2642713 0 1024 -2642720 UP 10 -2642720 waslock = 0 -2642720 512 1024 -~~~ -~~~ -~~~ -~~~ -2642742 homeCount = 2 -2642742 waitCount = 0 -2642743 ripCount = 0 -2642743 locktype1 = 1 -2642744 locktype2 = 0 -2642744 locktype3 = 0 -2642745 goalCount = 0 -2642745 goalTotal = 0 -2642746 otherCount = 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2642748 homeCount = 2 -2642770 waitCount = 0 -2642770 ripCount = 0 -2642771 locktype1 = 1 -2642771 locktype2 = 0 -2642772 locktype3 = 0 -2642772 goalCount = 0 -2642772 goalTotal = 0 -2642773 otherCount = 0 -~~~ -~~~ -2643241 DOWN 10 -2643241 0 1024 -2643258 UP 10 -2643258 waslock = 0 -2643258 512 1024 -~~~ -~~~ -~~~ -~~~ -2643268 homeCount = 2 -2643268 waitCount = 0 -2643269 ripCount = 0 -2643269 locktype1 = 1 -2643269 locktype2 = 0 -2643270 locktype3 = 0 -2643270 goalCount = 0 -2643271 goalTotal = 0 -2643271 otherCount = 0 -~~~ -~~~ -2643397 DOWN 10 -2643397 0 1024 -~~~ -~~~ -~~~ -~~~ -2643424 homeCount = 2 -2643424 waitCount = 0 -2643425 ripCount = 0 -2643425 locktype1 = 1 -2643426 locktype2 = 0 -2643426 locktype3 = 0 -2643427 goalCount = 0 -2643427 goalTotal = 0 -2643427 otherCount = 0 -~~~ -2643429 UP 10 -2643429 waslock = 0 -2643429 512 1024 -~~~ -2646784 DOWN 10 -2646784 0 1024 -~~~ -~~~ -~~~ -~~~ -2646812 homeCount = 2 -2646812 waitCount = 0 -2646813 ripCount = 0 -2646813 locktype1 = 1 -2646813 locktype2 = 0 -2646814 locktype3 = 0 -2646814 goalCount = 0 -2646815 goalTotal = 0 -2646815 otherCount = 0 -~~~ -2654547 UP 2 -2654547 2 1024 -~~~ -2654570 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -2654574 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2654848 DOWN 2 -2654848 0 0 -2654865 2 0 -2655008 DOWN 2 -2655008 0 0 -2655030 2 0 -2657028 DOWN 2 -2657028 0 0 -2661794 512 0 -2661810 0 0 -2661854 512 0 -2662303 0 0 -2662318 512 0 -2662471 0 0 -2662483 512 0 -2662646 0 0 -2662676 512 0 -2662753 0 0 -2662824 512 0 -2663410 0 0 -2667214 UP 8 -2667214 128 0 -2667509 DOWN 8 -2667509 0 0 -2667541 128 0 -2667910 DOWN 8 -2667910 0 0 -2667936 128 0 -2668075 DOWN 8 -2668075 0 0 -2668097 128 0 -2668243 DOWN 8 -2668243 0 0 -2668267 128 0 -2668421 DOWN 8 -2668421 0 0 -2668438 128 0 -2668589 DOWN 8 -2668589 0 0 -2668622 128 0 -2668952 DOWN 8 -2668952 0 0 -2668978 128 0 -2669136 DOWN 8 -2669136 0 0 -2669147 128 0 -2670697 DOWN 8 -2670697 0 0 -2670704 128 0 -2670876 DOWN 8 -2670876 0 0 -2670890 128 0 -2673117 DOWN 8 -2673117 0 0 -2673168 128 0 -2673243 DOWN 8 -2673243 0 0 -2673296 128 0 -2673609 DOWN 8 -2673609 0 0 -2673620 128 0 -2674173 DOWN 8 -2674173 0 0 -2674176 128 0 -2674222 DOWN 8 -2674222 0 0 -2674261 128 0 -2674378 DOWN 8 -2674378 0 0 -2674393 128 0 -2674564 DOWN 8 -2674564 0 0 -2674583 128 0 -2674681 DOWN 8 -2674681 0 0 -2679570 LOCKEND -~~~ -~~~ -~~~ -2679589 0 512 -2680342 UP 10 -2680343 waslock = 0 -2680342 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2680378 512 16777728 -~~~ -2680411 DOWN 10 -2680411 0 16777728 -~~~ -~~~ -2680438 0 16779776 -~~~ -~~~ -2680440 0 16779264 -2680441 homeCount = 3 -2680442 waitCount = 0 -2680442 ripCount = 0 -2680443 locktype1 = 1 -2680443 locktype2 = 1 -2680443 locktype3 = 0 -2680444 goalCount = 0 -2680444 goalTotal = 0 -2680445 otherCount = 0 -~~~ -2680525 UP 10 -2680525 waslock = 0 -2680525 512 16779264 -2680528 512 2048 -~~~ -2680573 DOWN 10 -2680573 0 2048 -~~~ -~~~ -~~~ -~~~ -2680601 homeCount = 3 -2680601 waitCount = 0 -2680602 ripCount = 0 -2680602 locktype1 = 1 -2680603 locktype2 = 1 -2680603 locktype3 = 0 -2680604 goalCount = 0 -2680604 goalTotal = 0 -2680605 otherCount = 0 -~~~ -2680677 UP 10 -2680678 waslock = 0 -2680677 512 2048 -~~~ -2681296 DOWN 10 -2681296 0 2048 -~~~ -~~~ -2681318 UP 10 -2681318 waslock = 0 -2681318 512 2048 -~~~ -~~~ -2681321 homeCount = 3 -2681321 waitCount = 0 -2681322 ripCount = 0 -2681322 locktype1 = 1 -2681323 locktype2 = 1 -2681323 locktype3 = 0 -2681324 goalCount = 0 -2681324 goalTotal = 0 -2681325 otherCount = 0 -~~~ -~~~ -2682967 DOWN 10 -2682967 0 2048 -2682978 UP 10 -2682978 waslock = 0 -2682978 512 2048 -~~~ -~~~ -~~~ -~~~ -2683005 homeCount = 3 -2683005 waitCount = 0 -2683006 ripCount = 0 -2683006 locktype1 = 1 -2683007 locktype2 = 1 -2683007 locktype3 = 0 -2683008 goalCount = 0 -2683008 goalTotal = 0 -2683009 otherCount = 0 -~~~ -~~~ -2684230 DOWN 10 -2684230 0 2048 -~~~ -~~~ -~~~ -~~~ -2684252 homeCount = 3 -2684253 waitCount = 0 -2684253 ripCount = 0 -2684254 locktype1 = 1 -2684254 locktype2 = 1 -2684255 locktype3 = 0 -2684255 goalCount = 0 -2684256 goalTotal = 0 -2684256 otherCount = 0 -~~~ -2684266 UP 10 -2684266 waslock = 0 -2684266 512 2048 -~~~ -2684599 DOWN 10 -2684599 0 2048 -~~~ -~~~ -2684620 UP 10 -2684620 waslock = 0 -2684620 512 2048 -~~~ -~~~ -2684623 homeCount = 3 -2684623 waitCount = 0 -2684624 ripCount = 0 -2684624 locktype1 = 1 -2684624 locktype2 = 1 -2684625 locktype3 = 0 -2684625 goalCount = 0 -2684626 goalTotal = 0 -2684626 otherCount = 0 -~~~ -~~~ -2684738 DOWN 10 -2684738 0 2048 -~~~ -~~~ -~~~ -~~~ -2684765 homeCount = 3 -2684765 waitCount = 0 -2684766 ripCount = 0 -2684766 locktype1 = 1 -2684767 locktype2 = 1 -2684767 locktype3 = 0 -2684768 goalCount = 0 -2684768 goalTotal = 0 -2684769 otherCount = 0 -~~~ -2685961 UP 12 -2685961 2048 2048 -2686484 DOWN 12 -2686484 0 2048 -2686519 UP 12 -2686519 2048 2048 -2686961 CLICK1 -2686961 CLICK2 -2686961 DOWN 12 -2686961 0 2048 -~~~ -~~~ -~~~ -2686981 0 67110912 -~~~ -2687006 UP 12 -2687006 2048 67110912 -2687131 2048 2048 -~~~ -~~~ -2687156 2048 0 -~~~ -~~~ -2687157 2048 1 -~~~ -~~~ -2687159 2048 3 -~~~ -~~~ -2687161 2048 7 -~~~ -~~~ -2687163 2048 15 -~~~ -~~~ -2687165 2048 31 -~~~ -~~~ -2687166 2048 63 -~~~ -~~~ -2687168 2048 127 -~~~ -~~~ -2687170 2048 255 -2687171 homeCount = 3 -2687172 waitCount = 1 -2687172 ripCount = 0 -2687173 locktype1 = 1 -2687194 locktype2 = 1 -2687194 locktype3 = 0 -2687195 goalCount = 0 -2687195 goalTotal = 0 -2687196 otherCount = 0 -~~~ -2687197 CURRENTGOAL IS [5] -~~~ -2691575 DOWN 12 -2691575 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2691618 homeCount = 3 -2691619 waitCount = 1 -2691619 ripCount = 0 -2691620 locktype1 = 1 -2691620 locktype2 = 1 -2691621 locktype3 = 0 -2691621 goalCount = 0 -2691621 goalTotal = 0 -2691622 otherCount = 0 -~~~ -2691623 CURRENTGOAL IS [5] -~~~ -2694045 UP 4 -2694045 8 255 -~~~ -~~~ -2694307 DOWN 4 -2694307 0 255 -~~~ -~~~ -2694333 0 254 -~~~ -~~~ -2694335 0 252 -~~~ -~~~ -2694337 0 248 -~~~ -~~~ -2694339 0 240 -~~~ -2694340 8 240 -~~~ -~~~ -2694342 8 224 -~~~ -~~~ -2694344 8 192 -~~~ -2694345 8 128 -~~~ -~~~ -2694346 8 0 -~~~ -~~~ -2694348 8 512 -2694349 homeCount = 3 -2694349 waitCount = 1 -2694350 ripCount = 0 -2694371 locktype1 = 1 -2694371 locktype2 = 1 -2694372 locktype3 = 0 -2694372 goalCount = 0 -2694373 goalTotal = 0 -2694373 otherCount = 1 -~~~ -2697167 DOWN 4 -2697167 0 512 -2700619 UP 10 -2700620 waslock = 0 -2700619 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2700643 512 16777728 -~~~ -2700677 DOWN 10 -2700677 0 16777728 -~~~ -~~~ -2700697 0 16778752 -~~~ -~~~ -2700699 0 16778240 -2700700 homeCount = 4 -2700700 waitCount = 1 -2700701 ripCount = 0 -2700701 locktype1 = 1 -2700702 locktype2 = 1 -2700702 locktype3 = 0 -2700703 goalCount = 0 -2700703 goalTotal = 0 -2700703 otherCount = 1 -~~~ -2700725 UP 10 -2700725 waslock = 0 -2700725 512 16778240 -~~~ -2700793 512 1024 -2700811 DOWN 10 -2700811 0 1024 -~~~ -~~~ -~~~ -~~~ -2700832 homeCount = 4 -2700832 waitCount = 1 -2700833 ripCount = 0 -2700833 locktype1 = 1 -2700834 locktype2 = 1 -2700834 locktype3 = 0 -2700835 goalCount = 0 -2700835 goalTotal = 0 -2700836 otherCount = 1 -~~~ -2700921 UP 10 -2700921 waslock = 0 -2700921 512 1024 -~~~ -2703713 DOWN 10 -2703713 0 1024 -2703727 UP 10 -2703728 waslock = 0 -2703727 512 1024 -~~~ -~~~ -~~~ -~~~ -2703741 homeCount = 4 -2703742 waitCount = 1 -2703742 ripCount = 0 -2703743 locktype1 = 1 -2703743 locktype2 = 1 -2703744 locktype3 = 0 -2703744 goalCount = 0 -2703745 goalTotal = 0 -2703745 otherCount = 1 -~~~ -~~~ -2703764 DOWN 10 -2703764 0 1024 -~~~ -~~~ -~~~ -~~~ -2703786 homeCount = 4 -2703786 waitCount = 1 -2703787 ripCount = 0 -2703787 locktype1 = 1 -2703788 locktype2 = 1 -2703788 locktype3 = 0 -2703789 goalCount = 0 -2703789 goalTotal = 0 -2703790 otherCount = 1 -~~~ -2704753 UP 11 -2704753 1024 1024 -2705597 DOWN 11 -2705597 0 1024 -2705617 UP 11 -2705617 1024 1024 -2705678 DOWN 11 -2705678 0 1024 -2705744 UP 11 -2705744 1024 1024 -2705753 BEEP1 -2705753 BEEP2 -~~~ -~~~ -~~~ -2705772 1024 33555456 -~~~ -2705922 1024 1024 -2709117 DOWN 11 -2709117 0 1024 -~~~ -~~~ -2709138 0 0 -~~~ -~~~ -2709140 0 1 -~~~ -~~~ -2709142 0 3 -~~~ -~~~ -2709144 0 7 -~~~ -~~~ -2709146 0 15 -~~~ -~~~ -2709147 0 31 -~~~ -~~~ -2709149 0 63 -~~~ -~~~ -2709151 0 127 -~~~ -~~~ -2709153 0 255 -2709154 homeCount = 4 -2709154 waitCount = 1 -2709155 ripCount = 1 -2709155 locktype1 = 1 -2709156 locktype2 = 1 -2709156 locktype3 = 0 -2709178 goalCount = 0 -2709178 goalTotal = 0 -2709178 otherCount = 1 -~~~ -2709180 CURRENTGOAL IS [5] -~~~ -2709182 UP 11 -2709182 1024 255 -2709619 DOWN 11 -2709619 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2709655 homeCount = 4 -2709655 waitCount = 1 -2709656 ripCount = 1 -2709656 locktype1 = 1 -2709657 locktype2 = 1 -2709657 locktype3 = 0 -2709658 goalCount = 0 -2709658 goalTotal = 0 -2709659 otherCount = 1 -~~~ -2709660 CURRENTGOAL IS [5] -~~~ -2711925 UP 7 -2711925 64 255 -~~~ -~~~ -2714140 DOWN 7 -2714140 0 255 -~~~ -~~~ -2714164 0 254 -~~~ -~~~ -2714166 0 252 -~~~ -~~~ -2714168 0 248 -~~~ -~~~ -2714170 0 240 -~~~ -~~~ -2714171 0 224 -~~~ -~~~ -2714173 0 192 -~~~ -~~~ -2714175 0 128 -~~~ -~~~ -2714177 0 0 -~~~ -~~~ -2714179 0 512 -2714180 homeCount = 4 -2714180 waitCount = 1 -2714181 ripCount = 1 -2714181 locktype1 = 1 -2714182 locktype2 = 1 -2714203 locktype3 = 0 -2714203 goalCount = 0 -2714204 goalTotal = 0 -2714204 otherCount = 2 -~~~ -2714205 64 512 -2714226 DOWN 7 -2714226 0 512 -2717944 UP 10 -2717945 waslock = 0 -2717944 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2717977 512 16777728 -~~~ -2718127 512 512 -2718153 DOWN 10 -2718153 0 512 -~~~ -~~~ -2718172 0 2560 -~~~ -~~~ -2718174 0 2048 -2718175 homeCount = 5 -2718176 waitCount = 1 -2718176 ripCount = 1 -2718177 locktype1 = 1 -2718177 locktype2 = 1 -2718178 locktype3 = 0 -2718178 goalCount = 0 -2718179 goalTotal = 0 -2718179 otherCount = 2 -~~~ -2718313 UP 10 -2718314 waslock = 0 -2718313 512 2048 -~~~ -2721159 DOWN 10 -2721158 0 2048 -2721177 UP 10 -2721177 waslock = 0 -2721177 512 2048 -~~~ -~~~ -~~~ -~~~ -2721185 homeCount = 5 -2721186 waitCount = 1 -2721186 ripCount = 1 -2721187 locktype1 = 1 -2721187 locktype2 = 1 -2721188 locktype3 = 0 -2721188 goalCount = 0 -2721189 goalTotal = 0 -2721189 otherCount = 2 -~~~ -~~~ -2721253 DOWN 10 -2721253 0 2048 -~~~ -~~~ -~~~ -~~~ -2721276 homeCount = 5 -2721276 waitCount = 1 -2721277 ripCount = 1 -2721277 locktype1 = 1 -2721278 locktype2 = 1 -2721278 locktype3 = 0 -2721279 goalCount = 0 -2721279 goalTotal = 0 -2721280 otherCount = 2 -~~~ -2722359 UP 12 -2722359 2048 2048 -2722798 DOWN 12 -2722798 0 2048 -2722838 UP 12 -2722838 2048 2048 -2723142 DOWN 12 -2723142 0 2048 -2723159 UP 12 -2723159 2048 2048 -2723223 DOWN 12 -2723223 0 2048 -2723288 UP 12 -2723288 2048 2048 -2723859 CLICK1 -2723859 CLICK2 -~~~ -~~~ -~~~ -2723886 2048 67110912 -~~~ -2724036 2048 2048 -2727818 DOWN 12 -2727818 0 2048 -~~~ -~~~ -2727844 0 0 -~~~ -~~~ -2727846 0 1 -~~~ -~~~ -2727847 0 3 -~~~ -~~~ -2727849 0 7 -~~~ -~~~ -2727851 0 15 -~~~ -~~~ -2727853 0 31 -~~~ -~~~ -2727855 0 63 -~~~ -~~~ -2727856 0 127 -~~~ -~~~ -2727858 0 255 -2727859 homeCount = 5 -2727860 waitCount = 2 -2727860 ripCount = 1 -2727861 locktype1 = 1 -2727861 locktype2 = 1 -2727862 locktype3 = 0 -2727883 goalCount = 0 -2727883 goalTotal = 0 -2727884 otherCount = 2 -~~~ -2727885 CURRENTGOAL IS [5] -~~~ -2732529 UP 1 -2732529 1 255 -~~~ -~~~ -2732809 DOWN 1 -2732809 0 255 -2732825 1 255 -~~~ -~~~ -2732828 1 254 -~~~ -~~~ -2732830 1 252 -~~~ -~~~ -2732832 1 248 -~~~ -~~~ -2732833 1 240 -~~~ -~~~ -2732835 1 224 -~~~ -~~~ -2732837 1 192 -~~~ -~~~ -2732839 1 128 -~~~ -~~~ -2732841 1 0 -~~~ -~~~ -2732843 1 512 -2732843 homeCount = 5 -2732844 waitCount = 2 -2732844 ripCount = 1 -2732845 locktype1 = 1 -2732845 locktype2 = 1 -2732866 locktype3 = 0 -2732867 goalCount = 0 -2732867 goalTotal = 0 -2732867 otherCount = 3 -~~~ -2734994 DOWN 1 -2734994 0 512 -2735003 1 512 -2735908 DOWN 1 -2735908 0 512 -2735920 1 512 -2736101 DOWN 1 -2736101 0 512 -2736111 1 512 -2737189 DOWN 1 -2737189 0 512 -2737197 1 512 -2737380 DOWN 1 -2737380 0 512 -2737397 1 512 -2737567 DOWN 1 -2737567 0 512 -2737579 1 512 -2737737 DOWN 1 -2737737 0 512 -2737755 1 512 -2737928 DOWN 1 -2737928 0 512 -2737943 1 512 -2738611 DOWN 1 -2738611 0 512 -2738651 1 512 -2738688 DOWN 1 -2738688 0 512 -2738818 1 512 -2738845 DOWN 1 -2738845 0 512 -2743363 UP 10 -2743363 waslock = 0 -2743363 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2743394 512 16777728 -~~~ -2743521 DOWN 10 -2743520 0 16777728 -2743544 0 512 -~~~ -~~~ -2743560 0 2560 -~~~ -~~~ -2743562 0 2048 -2743563 homeCount = 6 -2743564 waitCount = 2 -2743564 ripCount = 1 -2743565 locktype1 = 1 -2743565 locktype2 = 1 -2743566 locktype3 = 0 -2743566 goalCount = 0 -2743567 goalTotal = 0 -2743567 otherCount = 3 -~~~ -2743579 UP 10 -2743579 waslock = 0 -2743579 512 2048 -~~~ -2748231 DOWN 10 -2748231 0 2048 -~~~ -~~~ -~~~ -~~~ -2748261 homeCount = 6 -2748261 waitCount = 2 -2748262 ripCount = 1 -2748262 locktype1 = 1 -2748263 locktype2 = 1 -2748263 locktype3 = 0 -2748263 goalCount = 0 -2748264 goalTotal = 0 -2748264 otherCount = 3 -~~~ -2748272 UP 10 -2748273 waslock = 0 -2748272 512 2048 -~~~ -2748303 DOWN 10 -2748303 0 2048 -~~~ -~~~ -~~~ -~~~ -2748321 homeCount = 6 -2748322 waitCount = 2 -2748322 ripCount = 1 -2748323 locktype1 = 1 -2748323 locktype2 = 1 -2748324 locktype3 = 0 -2748324 goalCount = 0 -2748325 goalTotal = 0 -2748325 otherCount = 3 -~~~ -2749680 UP 12 -2749680 2048 2048 -2751680 CLICK1 -2751680 CLICK2 -~~~ -~~~ -~~~ -2751702 2048 67110912 -~~~ -2751852 2048 2048 -2755155 DOWN 12 -2755155 0 2048 -~~~ -~~~ -2755179 0 0 -~~~ -2755181 UP 12 -2755181 2048 0 -~~~ -~~~ -2755182 2048 1 -~~~ -~~~ -2755184 2048 3 -~~~ -2755185 2048 7 -~~~ -~~~ -2755187 2048 15 -~~~ -~~~ -2755188 2048 31 -~~~ -~~~ -2755190 2048 63 -~~~ -~~~ -2755192 2048 127 -~~~ -~~~ -2755194 2048 255 -2755195 homeCount = 6 -2755216 waitCount = 3 -2755217 ripCount = 1 -2755217 locktype1 = 1 -2755218 locktype2 = 1 -2755218 locktype3 = 0 -2755218 goalCount = 0 -2755219 goalTotal = 0 -2755219 otherCount = 3 -~~~ -2755220 CURRENTGOAL IS [5] -~~~ -2755257 DOWN 12 -2755257 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2755297 homeCount = 6 -2755297 waitCount = 3 -2755298 ripCount = 1 -2755298 locktype1 = 1 -2755299 locktype2 = 1 -2755299 locktype3 = 0 -2755300 goalCount = 0 -2755300 goalTotal = 0 -2755301 otherCount = 3 -~~~ -2755302 CURRENTGOAL IS [5] -~~~ -2758389 UP 6 -2758389 32 255 -~~~ -~~~ -2762845 DOWN 6 -2762845 0 255 -~~~ -~~~ -2762870 0 254 -~~~ -~~~ -2762872 0 252 -~~~ -~~~ -2762873 0 248 -~~~ -~~~ -2762875 0 240 -~~~ -~~~ -2762877 0 224 -~~~ -~~~ -2762879 0 192 -~~~ -~~~ -2762881 0 128 -~~~ -~~~ -2762882 0 0 -~~~ -~~~ -2762884 0 512 -2762885 homeCount = 6 -2762886 waitCount = 3 -2762886 ripCount = 1 -2762887 locktype1 = 1 -2762887 locktype2 = 1 -2762908 locktype3 = 0 -2762909 goalCount = 0 -2762909 goalTotal = 0 -2762910 otherCount = 4 -~~~ -2766008 UP 10 -2766008 waslock = 0 -2766008 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2766038 512 16777728 -~~~ -2766188 512 512 -2766218 DOWN 10 -2766217 0 512 -~~~ -~~~ -2766243 0 1536 -~~~ -~~~ -2766245 0 1024 -2766246 homeCount = 7 -2766246 waitCount = 3 -2766247 ripCount = 1 -2766247 locktype1 = 1 -2766248 locktype2 = 1 -2766248 locktype3 = 0 -2766249 goalCount = 0 -2766249 goalTotal = 0 -2766250 otherCount = 4 -~~~ -2766305 UP 10 -2766305 waslock = 0 -2766305 512 1024 -~~~ -2770192 DOWN 10 -2770192 0 1024 -~~~ -~~~ -~~~ -~~~ -2770215 homeCount = 7 -2770215 waitCount = 3 -2770216 ripCount = 1 -2770216 locktype1 = 1 -2770217 locktype2 = 1 -2770217 locktype3 = 0 -2770218 goalCount = 0 -2770218 goalTotal = 0 -2770219 otherCount = 4 -~~~ -2771671 UP 11 -2771671 1024 1024 -2771682 DOWN 11 -2771682 0 1024 -2771731 UP 11 -2771731 1024 1024 -2773171 BEEP1 -2773171 BEEP2 -~~~ -~~~ -~~~ -2773194 1024 33555456 -~~~ -2773198 DOWN 11 -2773198 0 33555456 -2773250 UP 11 -2773250 1024 33555456 -2773344 1024 1024 -~~~ -~~~ -2773852 1024 0 -~~~ -~~~ -2773854 1024 1 -~~~ -~~~ -2773856 1024 3 -~~~ -~~~ -2773858 1024 7 -~~~ -~~~ -2773860 1024 15 -~~~ -~~~ -2773861 1024 31 -~~~ -~~~ -2773863 1024 63 -~~~ -~~~ -2773865 1024 127 -~~~ -~~~ -2773867 1024 255 -2773868 homeCount = 7 -2773868 waitCount = 3 -2773869 ripCount = 2 -2773869 locktype1 = 1 -2773890 locktype2 = 1 -2773891 locktype3 = 0 -2773891 goalCount = 0 -2773892 goalTotal = 0 -2773892 otherCount = 4 -~~~ -2773893 CURRENTGOAL IS [5] -~~~ -2778754 DOWN 11 -2778754 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2778788 homeCount = 7 -2778789 waitCount = 3 -2778789 ripCount = 2 -2778790 locktype1 = 1 -2778790 locktype2 = 1 -2778790 locktype3 = 0 -2778791 goalCount = 0 -2778791 goalTotal = 0 -2778792 otherCount = 4 -~~~ -2778793 CURRENTGOAL IS [5] -~~~ -2782128 UP 6 -2782128 32 255 -~~~ -~~~ -2783049 DOWN 6 -2783049 0 255 -~~~ -~~~ -2783075 0 254 -~~~ -~~~ -2783077 0 252 -~~~ -~~~ -2783078 0 248 -~~~ -~~~ -2783080 0 240 -~~~ -~~~ -2783082 0 224 -~~~ -~~~ -2783084 0 192 -~~~ -~~~ -2783086 0 128 -~~~ -~~~ -2783088 0 0 -~~~ -~~~ -2783090 0 512 -2783090 homeCount = 7 -2783091 waitCount = 3 -2783091 ripCount = 2 -2783092 locktype1 = 1 -2783092 locktype2 = 1 -2783114 locktype3 = 0 -2783114 goalCount = 0 -2783114 goalTotal = 0 -2783115 otherCount = 5 -~~~ -2786457 UP 10 -2786457 waslock = 0 -2786457 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2786485 512 16777728 -~~~ -2786635 512 512 -2786717 DOWN 10 -2786716 0 512 -~~~ -~~~ -2786737 0 2560 -~~~ -~~~ -2786739 0 2048 -2786740 homeCount = 8 -2786740 waitCount = 3 -2786741 ripCount = 2 -2786741 locktype1 = 1 -2786742 locktype2 = 1 -2786742 locktype3 = 0 -2786742 goalCount = 0 -2786743 goalTotal = 0 -2786743 otherCount = 5 -~~~ -2786787 UP 10 -2786787 waslock = 0 -2786787 512 2048 -~~~ -2790582 DOWN 10 -2790582 0 2048 -~~~ -~~~ -~~~ -~~~ -2790611 UP 10 -2790611 waslock = 0 -2790610 512 2048 -2790612 homeCount = 8 -2790613 waitCount = 3 -2790613 ripCount = 2 -2790614 locktype1 = 1 -2790614 locktype2 = 1 -2790615 locktype3 = 0 -2790615 goalCount = 0 -2790616 goalTotal = 0 -2790616 otherCount = 5 -~~~ -~~~ -2790655 DOWN 10 -2790655 0 2048 -~~~ -~~~ -~~~ -~~~ -2790682 homeCount = 8 -2790682 waitCount = 3 -2790683 ripCount = 2 -2790683 locktype1 = 1 -2790684 locktype2 = 1 -2790684 locktype3 = 0 -2790685 goalCount = 0 -2790685 goalTotal = 0 -2790686 otherCount = 5 -~~~ -2791798 UP 12 -2791798 2048 2048 -2792281 DOWN 12 -2792281 0 2048 -2792337 UP 12 -2792337 2048 2048 -2792758 DOWN 12 -2792758 0 2048 -2792844 UP 12 -2792844 2048 2048 -2795298 CLICK1 -2795298 CLICK2 -~~~ -~~~ -~~~ -2795318 2048 67110912 -~~~ -2795468 2048 2048 -2799664 DOWN 12 -2799664 0 2048 -~~~ -~~~ -2799687 0 0 -~~~ -~~~ -2799689 0 1 -~~~ -~~~ -2799690 0 3 -~~~ -~~~ -2799692 0 7 -~~~ -~~~ -2799694 0 15 -~~~ -~~~ -2799696 0 31 -~~~ -~~~ -2799698 0 63 -~~~ -~~~ -2799700 0 127 -~~~ -~~~ -2799701 0 255 -2799702 homeCount = 8 -2799703 waitCount = 4 -2799703 ripCount = 2 -2799704 locktype1 = 1 -2799704 locktype2 = 1 -2799705 locktype3 = 0 -2799726 goalCount = 0 -2799727 goalTotal = 0 -2799727 otherCount = 5 -~~~ -2799728 CURRENTGOAL IS [5] -~~~ -2802199 UP 4 -2802199 8 255 -~~~ -~~~ -2802576 DOWN 4 -2802576 0 255 -2802593 8 255 -~~~ -~~~ -2802609 8 254 -~~~ -~~~ -2802611 8 252 -~~~ -~~~ -2802613 8 248 -~~~ -~~~ -2802615 8 240 -~~~ -~~~ -2802616 8 224 -~~~ -~~~ -2802618 8 192 -~~~ -~~~ -2802620 8 128 -~~~ -~~~ -2802622 8 0 -~~~ -~~~ -2802624 8 512 -2802625 homeCount = 8 -2802625 waitCount = 4 -2802626 ripCount = 2 -2802626 locktype1 = 1 -2802627 locktype2 = 1 -2802648 locktype3 = 0 -2802648 goalCount = 0 -2802649 goalTotal = 0 -2802649 otherCount = 6 -~~~ -2803199 DOWN 4 -2803199 0 512 -2806645 UP 10 -2806645 waslock = 0 -2806645 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2806667 512 16777728 -~~~ -2806808 DOWN 10 -2806808 0 16777728 -2806817 0 512 -~~~ -~~~ -2806832 0 2560 -~~~ -~~~ -2806834 0 2048 -2806835 homeCount = 9 -2806836 waitCount = 4 -2806836 ripCount = 2 -2806837 locktype1 = 1 -2806837 locktype2 = 1 -2806838 locktype3 = 0 -2806838 goalCount = 0 -2806838 goalTotal = 0 -2806839 otherCount = 6 -~~~ -2806843 UP 10 -2806843 waslock = 0 -2806843 512 2048 -~~~ -2807597 DOWN 10 -2807597 0 2048 -~~~ -~~~ -~~~ -~~~ -2807626 homeCount = 9 -2807626 waitCount = 4 -2807627 ripCount = 2 -2807627 locktype1 = 1 -2807628 locktype2 = 1 -2807628 locktype3 = 0 -2807629 goalCount = 0 -2807629 goalTotal = 0 -2807630 otherCount = 6 -~~~ -2810696 UP 11 -2810696 LOCKOUT 1 -2810696 1024 2048 -~~~ -2810723 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2810729 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2810753 DOWN 11 -2810753 0 0 -2810768 UP 11 -2810768 1024 0 -2811250 DOWN 11 -2811250 0 0 -2811286 UP 11 -2811286 1024 0 -2811744 DOWN 11 -2811744 0 0 -2811766 UP 11 -2811766 1024 0 -2811807 DOWN 11 -2811807 0 0 -2811850 UP 11 -2811850 1024 0 -2812828 DOWN 11 -2812828 0 0 -2812876 UP 11 -2812876 1024 0 -2813995 DOWN 11 -2813995 0 0 -2814049 UP 11 -2814049 1024 0 -2815505 DOWN 11 -2815505 0 0 -2819543 UP 8 -2819543 128 0 -2819585 DOWN 8 -2819585 0 0 -2819606 128 0 -2819875 DOWN 8 -2819875 0 0 -2819901 128 0 -2819941 DOWN 8 -2819941 0 0 -2824340 512 0 -2824731 0 0 -2824770 512 0 -2827498 0 0 -2827513 512 0 -2827572 0 0 -2835723 LOCKEND -~~~ -~~~ -~~~ -2835743 0 512 -2837111 UP 3 -2837111 4 512 -2837391 DOWN 3 -2837391 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2837428 homeCount = 9 -2837428 waitCount = 4 -2837429 ripCount = 2 -2837429 locktype1 = 2 -2837430 locktype2 = 1 -2837430 locktype3 = 0 -2837431 goalCount = 0 -2837431 goalTotal = 0 -2837432 otherCount = 6 -~~~ -2837436 4 512 -2837822 DOWN 3 -2837822 0 512 -2837860 4 512 -2838167 DOWN 3 -2838167 0 512 -2838177 4 512 -2838316 DOWN 3 -2838316 0 512 -2838347 4 512 -2839028 DOWN 3 -2839028 0 512 -2839041 4 512 -2839199 DOWN 3 -2839199 0 512 -2839209 4 512 -2841094 DOWN 3 -2841094 0 512 -2841119 4 512 -2841151 DOWN 3 -2841151 0 512 -2845140 UP 10 -2845140 waslock = 0 -2845140 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2845169 512 16777728 -~~~ -2845199 DOWN 10 -2845199 0 16777728 -~~~ -~~~ -2845224 0 16778752 -~~~ -~~~ -2845226 0 16778240 -2845227 homeCount = 10 -2845227 waitCount = 4 -2845228 ripCount = 2 -2845228 locktype1 = 2 -2845229 locktype2 = 1 -2845229 locktype3 = 0 -2845230 goalCount = 0 -2845230 goalTotal = 0 -2845231 otherCount = 6 -~~~ -2845259 UP 10 -2845259 waslock = 0 -2845259 512 16778240 -~~~ -2845319 512 1024 -2845324 DOWN 10 -2845324 0 1024 -~~~ -~~~ -~~~ -~~~ -2845350 homeCount = 10 -2845350 waitCount = 4 -2845351 ripCount = 2 -2845351 locktype1 = 2 -2845352 locktype2 = 1 -2845352 locktype3 = 0 -2845353 goalCount = 0 -2845353 goalTotal = 0 -2845354 otherCount = 6 -~~~ -2845370 UP 10 -2845370 waslock = 0 -2845370 512 1024 -~~~ -2846016 DOWN 10 -2846016 0 1024 -~~~ -~~~ -~~~ -~~~ -2846039 homeCount = 10 -2846039 waitCount = 4 -2846040 ripCount = 2 -2846040 locktype1 = 2 -2846041 locktype2 = 1 -2846041 locktype3 = 0 -2846041 goalCount = 0 -2846042 goalTotal = 0 -2846042 otherCount = 6 -~~~ -2846045 UP 10 -2846045 waslock = 0 -2846045 512 1024 -~~~ -2846440 DOWN 10 -2846440 0 1024 -~~~ -~~~ -~~~ -~~~ -2846469 homeCount = 10 -2846470 waitCount = 4 -2846470 ripCount = 2 -2846471 locktype1 = 2 -2846471 locktype2 = 1 -2846472 locktype3 = 0 -2846472 goalCount = 0 -2846473 goalTotal = 0 -2846473 otherCount = 6 -~~~ -2846499 UP 10 -2846499 waslock = 0 -2846498 512 1024 -~~~ -2846565 DOWN 10 -2846565 0 1024 -~~~ -~~~ -~~~ -~~~ -2846591 homeCount = 10 -2846592 waitCount = 4 -2846592 ripCount = 2 -2846593 locktype1 = 2 -2846593 locktype2 = 1 -2846594 locktype3 = 0 -2846594 goalCount = 0 -2846595 goalTotal = 0 -2846595 otherCount = 6 -~~~ -2847849 UP 11 -2847849 1024 1024 -2849371 DOWN 11 -2849371 0 1024 -2849409 UP 11 -2849409 1024 1024 -2849850 BEEP1 -2849850 BEEP2 -~~~ -~~~ -~~~ -2849879 1024 33555456 -~~~ -2850029 1024 1024 -2855199 DOWN 11 -2855199 0 1024 -~~~ -~~~ -2855227 0 0 -~~~ -~~~ -2855228 0 1 -~~~ -~~~ -2855230 0 3 -~~~ -~~~ -2855232 0 7 -~~~ -~~~ -2855234 0 15 -~~~ -~~~ -2855236 0 31 -~~~ -~~~ -2855237 0 63 -~~~ -~~~ -2855239 0 127 -~~~ -~~~ -2855241 0 255 -2855242 homeCount = 10 -2855243 waitCount = 4 -2855243 ripCount = 3 -2855244 locktype1 = 2 -2855244 locktype2 = 1 -2855245 locktype3 = 0 -2855266 goalCount = 0 -2855266 goalTotal = 0 -2855267 otherCount = 6 -~~~ -2855268 CURRENTGOAL IS [5] -~~~ -2857717 UP 7 -2857717 64 255 -~~~ -~~~ -2858426 DOWN 7 -2858426 0 255 -~~~ -~~~ -2858445 0 254 -~~~ -~~~ -2858447 0 252 -~~~ -~~~ -2858449 0 248 -~~~ -~~~ -2858451 0 240 -~~~ -~~~ -2858453 0 224 -~~~ -~~~ -2858455 0 192 -~~~ -~~~ -2858456 0 128 -~~~ -~~~ -2858458 0 0 -~~~ -~~~ -2858460 0 512 -2858461 homeCount = 10 -2858462 waitCount = 4 -2858462 ripCount = 3 -2858463 locktype1 = 2 -2858463 locktype2 = 1 -2858484 locktype3 = 0 -2858485 goalCount = 0 -2858485 goalTotal = 0 -2858486 otherCount = 7 -~~~ -2858682 64 512 -2859243 DOWN 7 -2859243 0 512 -2859279 64 512 -2859326 DOWN 7 -2859326 0 512 -2862459 UP 10 -2862459 waslock = 0 -2862459 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2862493 512 16777728 -~~~ -2862499 DOWN 10 -2862499 0 16777728 -~~~ -~~~ -2862523 0 16778752 -~~~ -~~~ -2862525 0 16778240 -2862526 homeCount = 11 -2862527 waitCount = 4 -2862527 ripCount = 3 -2862528 locktype1 = 2 -2862528 locktype2 = 1 -2862528 locktype3 = 0 -2862529 goalCount = 0 -2862529 goalTotal = 0 -2862530 otherCount = 7 -~~~ -2862551 UP 10 -2862551 waslock = 0 -2862551 512 16778240 -~~~ -2862643 512 1024 -2862760 DOWN 10 -2862760 0 1024 -~~~ -~~~ -~~~ -~~~ -2862797 homeCount = 11 -2862798 waitCount = 4 -2862798 ripCount = 3 -2862799 locktype1 = 2 -2862799 locktype2 = 1 -2862799 locktype3 = 0 -2862800 goalCount = 0 -2862800 goalTotal = 0 -2862801 otherCount = 7 -~~~ -2862809 UP 10 -2862809 waslock = 0 -2862809 512 1024 -~~~ -2868573 DOWN 10 -2868573 0 1024 -~~~ -~~~ -~~~ -~~~ -2868601 homeCount = 11 -2868602 waitCount = 4 -2868602 ripCount = 3 -2868603 locktype1 = 2 -2868603 locktype2 = 1 -2868604 locktype3 = 0 -2868604 goalCount = 0 -2868605 goalTotal = 0 -2868605 otherCount = 7 -~~~ -2870096 UP 11 -2870096 1024 1024 -2870130 DOWN 11 -2870130 0 1024 -2870158 UP 11 -2870158 1024 1024 -2870493 DOWN 11 -2870493 0 1024 -2870497 UP 11 -2870497 1024 1024 -2871248 DOWN 11 -2871248 0 1024 -2871278 UP 11 -2871278 1024 1024 -2871621 DOWN 11 -2871621 0 1024 -2871738 UP 11 -2871738 1024 1024 -2874346 BEEP1 -2874346 BEEP2 -~~~ -~~~ -~~~ -2874367 1024 33555456 -~~~ -2874517 1024 1024 -2880959 DOWN 11 -2880959 0 1024 -~~~ -~~~ -2880977 0 0 -~~~ -~~~ -2880978 0 1 -~~~ -~~~ -2880980 0 3 -~~~ -~~~ -2880982 0 7 -~~~ -~~~ -2880984 0 15 -~~~ -~~~ -2880986 0 31 -~~~ -~~~ -2880988 0 63 -~~~ -~~~ -2880989 0 127 -~~~ -~~~ -2880991 0 255 -2880992 homeCount = 11 -2880993 waitCount = 4 -2880993 ripCount = 4 -2880994 locktype1 = 2 -2880994 locktype2 = 1 -2880995 locktype3 = 0 -2881016 goalCount = 0 -2881016 goalTotal = 0 -2881017 otherCount = 7 -~~~ -2881018 CURRENTGOAL IS [5] -~~~ -2881018 UP 11 -2881018 1024 255 -2881052 DOWN 11 -2881052 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2881094 homeCount = 11 -2881095 waitCount = 4 -2881095 ripCount = 4 -2881096 locktype1 = 2 -2881096 locktype2 = 1 -2881097 locktype3 = 0 -2881097 goalCount = 0 -2881098 goalTotal = 0 -2881098 otherCount = 7 -~~~ -2881099 CURRENTGOAL IS [5] -~~~ -2883804 UP 5 -2883804 16 255 -~~~ -~~~ -2883831 outer reward -~~~ -2883831 16 1048831 -~~~ -~~~ -2884000 DOWN 5 -2884000 0 1048831 -~~~ -~~~ -2884018 0 1048830 -~~~ -~~~ -2884020 0 1048828 -~~~ -~~~ -2884022 0 1048824 -~~~ -~~~ -2884024 0 1048816 -~~~ -~~~ -2884026 0 1048800 -~~~ -~~~ -2884027 0 1048768 -~~~ -~~~ -2884029 0 1048704 -~~~ -~~~ -2884031 0 1048576 -~~~ -~~~ -2884033 0 1049088 -2884034 homeCount = 11 -2884034 waitCount = 4 -2884035 ripCount = 4 -2884056 locktype1 = 2 -2884056 locktype2 = 1 -2884057 locktype3 = 0 -2884057 goalCount = 1 -2884058 goalTotal = 1 -2884058 otherCount = 7 -~~~ -2884085 16 1049088 -2884281 16 512 -2884488 DOWN 5 -2884488 0 512 -2884507 16 512 -2884624 DOWN 5 -2884624 0 512 -2884646 16 512 -2884762 DOWN 5 -2884762 0 512 -2884788 16 512 -2884901 DOWN 5 -2884901 0 512 -2884928 16 512 -2885047 DOWN 5 -2885047 0 512 -2885071 16 512 -2885212 DOWN 5 -2885212 0 512 -2885215 16 512 -2885512 DOWN 5 -2885512 0 512 -2885526 16 512 -2893817 DOWN 5 -2893817 0 512 -2893879 16 512 -2893901 DOWN 5 -2893901 0 512 -2900132 UP 10 -2900132 waslock = 0 -2900132 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2900165 512 16777728 -~~~ -2900270 DOWN 10 -2900270 0 16777728 -~~~ -~~~ -2900289 0 16779776 -~~~ -~~~ -2900291 0 16779264 -2900292 homeCount = 12 -2900292 waitCount = 4 -2900293 ripCount = 4 -2900293 locktype1 = 2 -2900294 locktype2 = 1 -2900294 locktype3 = 0 -2900295 goalCount = 1 -2900295 goalTotal = 1 -2900296 otherCount = 7 -~~~ -2900317 0 2048 -2900502 UP 10 -2900503 waslock = 0 -2900502 512 2048 -~~~ -2904478 DOWN 10 -2904478 0 2048 -~~~ -~~~ -~~~ -~~~ -2904501 homeCount = 12 -2904501 waitCount = 4 -2904502 ripCount = 4 -2904502 locktype1 = 2 -2904503 locktype2 = 1 -2904503 locktype3 = 0 -2904504 goalCount = 1 -2904504 goalTotal = 1 -2904505 otherCount = 7 -~~~ -2906493 UP 12 -2906493 2048 2048 -2907045 DOWN 12 -2907045 0 2048 -2907073 UP 12 -2907073 2048 2048 -2907265 DOWN 12 -2907265 0 2048 -2907322 UP 12 -2907322 2048 2048 -2908818 DOWN 12 -2908818 0 2048 -2908848 UP 12 -2908848 2048 2048 -2908879 DOWN 12 -2908879 0 2048 -2908896 UP 12 -2908896 2048 2048 -2908993 CLICK1 -2908993 CLICK2 -~~~ -~~~ -~~~ -2909022 2048 67110912 -~~~ -2909172 2048 2048 -2917583 DOWN 12 -2917583 0 2048 -~~~ -~~~ -2917608 0 0 -~~~ -~~~ -2917610 0 1 -~~~ -~~~ -2917612 0 3 -~~~ -~~~ -2917614 0 7 -~~~ -~~~ -2917616 0 15 -~~~ -~~~ -2917618 0 31 -~~~ -~~~ -2917619 0 63 -~~~ -~~~ -2917621 0 127 -~~~ -~~~ -2917623 0 255 -2917624 homeCount = 12 -2917624 waitCount = 5 -2917625 ripCount = 4 -2917625 locktype1 = 2 -2917626 locktype2 = 1 -2917626 locktype3 = 0 -2917647 goalCount = 1 -2917648 goalTotal = 1 -2917648 otherCount = 7 -~~~ -2917649 CURRENTGOAL IS [5] -~~~ -2926969 UP 10 -2926969 waslock = 0 -2926969 512 255 -~~~ -2926992 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2926999 512 254 -~~~ -~~~ -2927001 512 252 -~~~ -~~~ -2927003 512 248 -~~~ -~~~ -2927005 512 240 -~~~ -~~~ -2927006 512 224 -~~~ -~~~ -2927008 512 192 -~~~ -~~~ -2927010 512 128 -~~~ -~~~ -2927012 512 0 -~~~ -~~~ -~~~ -2927150 0 0 -2927358 512 0 -2927666 0 0 -2929005 UP 11 -2929005 1024 0 -2930091 DOWN 11 -2930091 0 0 -2930141 UP 11 -2930141 1024 0 -2930869 DOWN 11 -2930869 0 0 -2930890 UP 11 -2930890 1024 0 -2930901 DOWN 11 -2930901 0 0 -2930965 UP 11 -2930965 1024 0 -2932611 DOWN 11 -2932611 0 0 -2932703 UP 11 -2932703 1024 0 -2932933 DOWN 11 -2932933 0 0 -2937462 512 0 -2938258 0 0 -2938311 512 0 -2938361 0 0 -2938456 512 0 -2938511 0 0 -2938584 512 0 -2938784 0 0 -2950209 512 0 -2950384 0 0 -2951992 LOCKEND -~~~ -~~~ -~~~ -2952011 0 512 -2955226 UP 10 -2955226 waslock = 0 -2955226 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2955256 512 16777728 -~~~ -2955406 512 512 -2955469 DOWN 10 -2955469 0 512 -~~~ -~~~ -2955491 0 1536 -~~~ -~~~ -2955492 0 1024 -2955493 homeCount = 13 -2955494 waitCount = 5 -2955494 ripCount = 4 -2955495 locktype1 = 2 -2955495 locktype2 = 2 -2955496 locktype3 = 0 -2955496 goalCount = 1 -2955497 goalTotal = 1 -2955497 otherCount = 7 -~~~ -2955567 UP 10 -2955567 waslock = 0 -2955567 512 1024 -~~~ -2959020 DOWN 10 -2959020 0 1024 -2959034 UP 10 -2959035 waslock = 0 -2959034 512 1024 -~~~ -~~~ -~~~ -~~~ -2959056 homeCount = 13 -2959056 waitCount = 5 -2959057 ripCount = 4 -2959057 locktype1 = 2 -2959057 locktype2 = 2 -2959058 locktype3 = 0 -2959058 goalCount = 1 -2959059 goalTotal = 1 -2959059 otherCount = 7 -~~~ -~~~ -2959132 DOWN 10 -2959132 0 1024 -~~~ -~~~ -~~~ -~~~ -2959154 homeCount = 13 -2959154 waitCount = 5 -2959155 ripCount = 4 -2959155 locktype1 = 2 -2959156 locktype2 = 2 -2959156 locktype3 = 0 -2959157 goalCount = 1 -2959157 goalTotal = 1 -2959158 otherCount = 7 -~~~ -2960777 UP 11 -2960777 1024 1024 -2962087 DOWN 11 -2962087 0 1024 -2962136 UP 11 -2962136 1024 1024 -2964777 BEEP1 -2964777 BEEP2 -~~~ -~~~ -~~~ -2964802 1024 33555456 -~~~ -2964952 1024 1024 -2971806 DOWN 11 -2971806 0 1024 -~~~ -~~~ -2971831 0 0 -~~~ -~~~ -2971833 0 1 -~~~ -~~~ -2971835 0 3 -~~~ -~~~ -2971837 0 7 -~~~ -~~~ -2971838 0 15 -~~~ -~~~ -2971840 0 31 -~~~ -~~~ -2971842 0 63 -~~~ -~~~ -2971844 0 127 -~~~ -~~~ -2971846 0 255 -2971847 homeCount = 13 -2971847 waitCount = 5 -2971848 ripCount = 5 -2971848 locktype1 = 2 -2971849 locktype2 = 2 -2971870 locktype3 = 0 -2971870 goalCount = 1 -2971871 goalTotal = 1 -2971871 otherCount = 7 -~~~ -2971872 CURRENTGOAL IS [5] -~~~ -2971877 UP 11 -2971877 1024 255 -2971903 DOWN 11 -2971903 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2971937 homeCount = 13 -2971938 waitCount = 5 -2971938 ripCount = 5 -2971939 locktype1 = 2 -2971939 locktype2 = 2 -2971940 locktype3 = 0 -2971940 goalCount = 1 -2971940 goalTotal = 1 -2971941 otherCount = 7 -~~~ -2971942 CURRENTGOAL IS [5] -~~~ -2976396 UP 5 -2976396 16 255 -~~~ -~~~ -2976414 outer reward -~~~ -2976414 16 1048831 -~~~ -~~~ -2976423 DOWN 5 -2976423 0 1048831 -~~~ -~~~ -2976442 0 1048830 -~~~ -~~~ -2976444 0 1048828 -~~~ -~~~ -2976446 0 1048824 -~~~ -~~~ -2976448 0 1048816 -~~~ -~~~ -2976450 0 1048800 -~~~ -~~~ -2976451 0 1048768 -~~~ -~~~ -2976453 0 1048704 -~~~ -~~~ -2976455 0 1048576 -~~~ -~~~ -2976457 0 1049088 -2976458 homeCount = 13 -2976459 waitCount = 5 -2976459 ripCount = 5 -2976480 locktype1 = 2 -2976481 locktype2 = 2 -2976481 locktype3 = 0 -2976482 goalCount = 2 -2976482 goalTotal = 2 -2976483 otherCount = 7 -~~~ -2976745 16 1049088 -2976864 16 512 -2977119 DOWN 5 -2977119 0 512 -2977139 16 512 -2977247 DOWN 5 -2977247 0 512 -2977273 16 512 -2977378 DOWN 5 -2977378 0 512 -2977408 16 512 -2977520 DOWN 5 -2977520 0 512 -2977546 16 512 -2977661 DOWN 5 -2977661 0 512 -2977678 16 512 -2977805 DOWN 5 -2977805 0 512 -2977822 16 512 -2977954 DOWN 5 -2977954 0 512 -2977960 16 512 -2978103 DOWN 5 -2978103 0 512 -2978108 16 512 -2984704 DOWN 5 -2984704 0 512 -2984779 16 512 -2984829 DOWN 5 -2984829 0 512 -2988561 UP 10 -2988561 waslock = 0 -2988561 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2988589 512 16777728 -~~~ -2988710 DOWN 10 -2988710 0 16777728 -~~~ -~~~ -2988736 0 16779776 -~~~ -~~~ -2988737 0 16779264 -2988738 homeCount = 14 -2988739 waitCount = 5 -2988739 ripCount = 5 -2988740 locktype1 = 2 -2988740 locktype2 = 2 -2988741 locktype3 = 0 -2988741 goalCount = 2 -2988742 goalTotal = 2 -2988742 otherCount = 7 -~~~ -2988763 0 2048 -2988869 UP 10 -2988869 waslock = 0 -2988869 512 2048 -~~~ -2992466 DOWN 10 -2992466 0 2048 -~~~ -~~~ -~~~ -~~~ -2992487 homeCount = 14 -2992487 waitCount = 5 -2992488 ripCount = 5 -2992488 locktype1 = 2 -2992489 locktype2 = 2 -2992489 locktype3 = 0 -2992490 goalCount = 2 -2992490 goalTotal = 2 -2992491 otherCount = 7 -~~~ -2994131 UP 12 -2994131 2048 2048 -2994583 DOWN 12 -2994583 0 2048 -2994618 UP 12 -2994618 2048 2048 -2997762 DOWN 12 -2997762 0 2048 -2997801 UP 12 -2997801 2048 2048 -2998062 DOWN 12 -2998062 0 2048 -2998088 UP 12 -2998088 2048 2048 -2998631 CLICK1 -2998631 CLICK2 -~~~ -~~~ -~~~ -2998655 2048 67110912 -~~~ -2998805 2048 2048 -3004157 DOWN 12 -3004156 0 2048 -~~~ -~~~ -3004183 0 0 -~~~ -~~~ -3004185 0 1 -~~~ -~~~ -3004187 0 3 -~~~ -~~~ -3004188 0 7 -~~~ -~~~ -3004190 0 15 -~~~ -~~~ -3004192 0 31 -~~~ -~~~ -3004194 0 63 -~~~ -~~~ -3004196 0 127 -~~~ -~~~ -3004197 0 255 -3004198 homeCount = 14 -3004199 waitCount = 6 -3004199 ripCount = 5 -3004200 locktype1 = 2 -3004200 locktype2 = 2 -3004201 locktype3 = 0 -3004222 goalCount = 2 -3004222 goalTotal = 2 -3004223 otherCount = 7 -~~~ -3004224 CURRENTGOAL IS [5] -~~~ -3008015 UP 4 -3008015 8 255 -~~~ -~~~ -3008683 DOWN 4 -3008683 0 255 -~~~ -~~~ -3008705 0 254 -~~~ -~~~ -3008706 0 252 -~~~ -~~~ -3008708 0 248 -~~~ -~~~ -3008710 0 240 -~~~ -~~~ -3008712 0 224 -~~~ -~~~ -3008714 0 192 -~~~ -~~~ -3008716 0 128 -~~~ -~~~ -3008717 0 0 -~~~ -~~~ -3008719 0 512 -3008720 homeCount = 14 -3008721 waitCount = 6 -3008721 ripCount = 5 -3008722 locktype1 = 2 -3008722 locktype2 = 2 -3008743 locktype3 = 0 -3008743 goalCount = 2 -3008744 goalTotal = 2 -3008744 otherCount = 8 -~~~ -3008745 8 512 -3008988 DOWN 4 -3008988 0 512 -3012101 UP 10 -3012101 waslock = 0 -3012101 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3012131 512 16777728 -~~~ -3012281 512 512 -3012321 DOWN 10 -3012321 0 512 -3012338 UP 10 -3012338 waslock = 0 -3012338 512 512 -~~~ -~~~ -3012356 512 1536 -~~~ -~~~ -3012358 512 1024 -3012359 homeCount = 15 -3012359 waitCount = 6 -3012360 ripCount = 5 -3012360 locktype1 = 2 -3012361 locktype2 = 2 -3012361 locktype3 = 0 -3012362 goalCount = 2 -3012362 goalTotal = 2 -3012363 otherCount = 8 -~~~ -~~~ -3016884 DOWN 10 -3016884 0 1024 -~~~ -~~~ -~~~ -~~~ -3016910 homeCount = 15 -3016910 waitCount = 6 -3016911 ripCount = 5 -3016911 locktype1 = 2 -3016912 locktype2 = 2 -3016912 locktype3 = 0 -3016913 goalCount = 2 -3016913 goalTotal = 2 -3016913 otherCount = 8 -~~~ -3016929 UP 10 -3016930 waslock = 0 -3016929 512 1024 -~~~ -3016971 DOWN 10 -3016971 0 1024 -~~~ -~~~ -~~~ -~~~ -3017003 homeCount = 15 -3017004 waitCount = 6 -3017004 ripCount = 5 -3017005 locktype1 = 2 -3017005 locktype2 = 2 -3017006 locktype3 = 0 -3017006 goalCount = 2 -3017007 goalTotal = 2 -3017007 otherCount = 8 -~~~ -3018772 UP 11 -3018772 1024 1024 -3022772 BEEP1 -3022772 BEEP2 -~~~ -~~~ -~~~ -3022798 1024 33555456 -~~~ -3022948 1024 1024 -3026798 DOWN 11 -3026798 0 1024 -3026812 UP 11 -3026812 1024 1024 -~~~ -~~~ -3026816 1024 0 -~~~ -~~~ -3026818 1024 1 -~~~ -~~~ -3026820 1024 3 -~~~ -~~~ -3026822 1024 7 -~~~ -~~~ -3026824 1024 15 -~~~ -~~~ -3026826 1024 31 -~~~ -~~~ -3026827 1024 63 -~~~ -~~~ -3026829 1024 127 -~~~ -~~~ -3026831 1024 255 -3026832 homeCount = 15 -3026833 waitCount = 6 -3026833 ripCount = 6 -3026834 locktype1 = 2 -3026855 locktype2 = 2 -3026855 locktype3 = 0 -3026856 goalCount = 2 -3026856 goalTotal = 2 -3026857 otherCount = 8 -~~~ -3026858 CURRENTGOAL IS [5] -~~~ -3029131 DOWN 11 -3029131 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3029172 homeCount = 15 -3029172 waitCount = 6 -3029173 ripCount = 6 -3029173 locktype1 = 2 -3029174 locktype2 = 2 -3029174 locktype3 = 0 -3029175 goalCount = 2 -3029175 goalTotal = 2 -3029176 otherCount = 8 -~~~ -3029177 CURRENTGOAL IS [5] -~~~ -3029180 UP 11 -3029180 1024 255 -3029224 DOWN 11 -3029224 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3029261 homeCount = 15 -3029262 waitCount = 6 -3029262 ripCount = 6 -3029263 locktype1 = 2 -3029263 locktype2 = 2 -3029264 locktype3 = 0 -3029264 goalCount = 2 -3029265 goalTotal = 2 -3029265 otherCount = 8 -~~~ -3029266 CURRENTGOAL IS [5] -~~~ -3033041 UP 5 -3033041 16 255 -~~~ -~~~ -3033069 outer reward -~~~ -3033069 16 1048831 -~~~ -~~~ -3033156 DOWN 5 -3033156 0 1048831 -~~~ -~~~ -3033176 0 1048830 -~~~ -~~~ -3033178 0 1048828 -~~~ -~~~ -3033180 0 1048824 -~~~ -~~~ -3033182 0 1048816 -~~~ -~~~ -3033183 0 1048800 -~~~ -~~~ -3033185 0 1048768 -~~~ -~~~ -3033187 0 1048704 -~~~ -~~~ -3033189 0 1048576 -~~~ -~~~ -3033191 0 1049088 -3033192 homeCount = 15 -3033192 waitCount = 6 -3033193 ripCount = 6 -3033214 locktype1 = 2 -3033214 locktype2 = 2 -3033215 locktype3 = 0 -3033215 goalCount = 3 -3033215 goalTotal = 3 -3033216 otherCount = 8 -~~~ -3033216 16 1049088 -3033519 16 512 -3033749 DOWN 5 -3033749 0 512 -3033766 16 512 -3033865 DOWN 5 -3033865 0 512 -3033899 16 512 -3033999 DOWN 5 -3033999 0 512 -3034031 16 512 -3034141 DOWN 5 -3034141 0 512 -3034169 16 512 -3034280 DOWN 5 -3034280 0 512 -3034309 16 512 -3034429 DOWN 5 -3034429 0 512 -3034450 16 512 -3034576 DOWN 5 -3034576 0 512 -3034597 16 512 -3035054 DOWN 5 -3035054 0 512 -3035067 16 512 -3042062 DOWN 5 -3042062 0 512 -3042075 16 512 -3042174 DOWN 5 -3042174 0 512 -3045701 UP 10 -3045701 waslock = 0 -3045701 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3045733 512 16777728 -~~~ -3045883 512 512 -3045949 DOWN 10 -3045949 0 512 -3045963 UP 10 -3045963 waslock = 0 -3045963 512 512 -~~~ -~~~ -3045967 512 2560 -~~~ -~~~ -3045969 512 2048 -3045970 homeCount = 16 -3045970 waitCount = 6 -3045971 ripCount = 6 -3045971 locktype1 = 2 -3045972 locktype2 = 2 -3045972 locktype3 = 0 -3045973 goalCount = 3 -3045973 goalTotal = 3 -3045973 otherCount = 8 -~~~ -~~~ -3051491 DOWN 10 -3051491 0 2048 -~~~ -~~~ -~~~ -~~~ -3051519 homeCount = 16 -3051520 waitCount = 6 -3051520 ripCount = 6 -3051521 locktype1 = 2 -3051521 locktype2 = 2 -3051522 locktype3 = 0 -3051522 goalCount = 3 -3051523 goalTotal = 3 -3051523 otherCount = 8 -~~~ -3053813 UP 12 -3053813 2048 2048 -3054243 DOWN 12 -3054243 0 2048 -3054339 UP 12 -3054339 2048 2048 -3054607 DOWN 12 -3054607 0 2048 -3054671 UP 12 -3054671 2048 2048 -3056813 CLICK1 -3056813 CLICK2 -~~~ -~~~ -~~~ -3056838 2048 67110912 -~~~ -3056987 2048 2048 -3061603 DOWN 12 -3061603 0 2048 -~~~ -~~~ -3061626 0 0 -~~~ -~~~ -3061627 0 1 -~~~ -~~~ -3061629 0 3 -~~~ -~~~ -3061631 0 7 -~~~ -~~~ -3061633 0 15 -~~~ -~~~ -3061635 0 31 -~~~ -~~~ -3061636 0 63 -~~~ -~~~ -3061638 0 127 -~~~ -~~~ -3061640 0 255 -3061641 homeCount = 16 -3061642 waitCount = 7 -3061642 ripCount = 6 -3061643 locktype1 = 2 -3061643 locktype2 = 2 -3061664 locktype3 = 0 -3061665 goalCount = 3 -3061665 goalTotal = 3 -3061666 otherCount = 8 -~~~ -3061667 CURRENTGOAL IS [5] -~~~ -3065106 UP 5 -3065106 16 255 -~~~ -~~~ -3065129 outer reward -~~~ -3065130 16 1048831 -~~~ -~~~ -3065146 DOWN 5 -3065146 0 1048831 -~~~ -~~~ -3065166 0 1048830 -~~~ -~~~ -3065168 0 1048828 -~~~ -~~~ -3065170 0 1048824 -~~~ -~~~ -3065171 0 1048816 -~~~ -~~~ -3065173 0 1048800 -~~~ -~~~ -3065175 0 1048768 -~~~ -~~~ -3065177 0 1048704 -~~~ -~~~ -3065179 0 1048576 -~~~ -~~~ -3065181 0 1049088 -3065182 homeCount = 16 -3065182 waitCount = 7 -3065183 ripCount = 6 -3065204 locktype1 = 2 -3065204 locktype2 = 2 -3065205 locktype3 = 0 -3065205 goalCount = 4 -3065206 goalTotal = 4 -3065206 otherCount = 8 -~~~ -3065207 16 1049088 -3065270 DOWN 5 -3065270 0 1049088 -3065325 16 1049088 -3065579 16 512 -3065887 DOWN 5 -3065887 0 512 -3065911 16 512 -3066021 DOWN 5 -3066021 0 512 -3066053 16 512 -3066168 DOWN 5 -3066168 0 512 -3066196 16 512 -3066317 DOWN 5 -3066317 0 512 -3066340 16 512 -3074351 DOWN 5 -3074351 0 512 -3074360 16 512 -3075013 DOWN 5 -3075013 0 512 -3075057 16 512 -3076432 DOWN 5 -3076432 0 512 -3080377 UP 10 -3080378 waslock = 0 -3080377 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3080403 512 16777728 -~~~ -3080553 512 512 -3080585 DOWN 10 -3080585 0 512 -~~~ -~~~ -3080606 0 2560 -~~~ -~~~ -3080608 0 2048 -3080609 homeCount = 17 -3080610 waitCount = 7 -3080610 ripCount = 6 -3080611 locktype1 = 2 -3080611 locktype2 = 2 -3080612 locktype3 = 0 -3080612 goalCount = 4 -3080613 goalTotal = 4 -3080613 otherCount = 8 -~~~ -3080614 UP 10 -3080635 waslock = 0 -3080614 512 2048 -~~~ -3084727 DOWN 10 -3084727 0 2048 -~~~ -~~~ -~~~ -3084747 UP 10 -3084747 waslock = 0 -3084747 512 2048 -~~~ -3084749 homeCount = 17 -3084750 waitCount = 7 -3084750 ripCount = 6 -3084751 locktype1 = 2 -3084751 locktype2 = 2 -3084751 locktype3 = 0 -3084752 goalCount = 4 -3084752 goalTotal = 4 -3084753 otherCount = 8 -~~~ -~~~ -3084815 DOWN 10 -3084815 0 2048 -~~~ -~~~ -~~~ -~~~ -3084840 homeCount = 17 -3084840 waitCount = 7 -3084841 ripCount = 6 -3084841 locktype1 = 2 -3084842 locktype2 = 2 -3084842 locktype3 = 0 -3084843 goalCount = 4 -3084843 goalTotal = 4 -3084844 otherCount = 8 -~~~ -3086263 UP 12 -3086263 2048 2048 -3086712 DOWN 12 -3086712 0 2048 -3086759 UP 12 -3086759 2048 2048 -3088514 CLICK1 -3088514 CLICK2 -~~~ -~~~ -~~~ -3088539 2048 67110912 -~~~ -3088689 2048 2048 -3093822 DOWN 12 -3093822 0 2048 -~~~ -~~~ -3093848 0 0 -~~~ -~~~ -3093849 0 1 -~~~ -~~~ -3093851 0 3 -~~~ -~~~ -3093853 0 7 -~~~ -~~~ -3093855 0 15 -~~~ -~~~ -3093857 0 31 -~~~ -~~~ -3093858 0 63 -~~~ -~~~ -3093860 0 127 -~~~ -~~~ -3093862 0 255 -3093863 homeCount = 17 -3093864 waitCount = 8 -3093864 ripCount = 6 -3093865 locktype1 = 2 -3093865 locktype2 = 2 -3093866 locktype3 = 0 -3093887 goalCount = 4 -3093887 goalTotal = 4 -3093888 otherCount = 8 -~~~ -3093889 CURRENTGOAL IS [5] -~~~ -3093890 UP 12 -3093890 2048 255 -3096724 DOWN 12 -3096724 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3096762 homeCount = 17 -3096762 waitCount = 8 -3096763 ripCount = 6 -3096763 locktype1 = 2 -3096764 locktype2 = 2 -3096764 locktype3 = 0 -3096765 goalCount = 4 -3096765 goalTotal = 4 -3096766 otherCount = 8 -~~~ -3096767 CURRENTGOAL IS [5] -~~~ -3096796 UP 12 -3096796 2048 255 -3096833 DOWN 12 -3096833 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3096874 homeCount = 17 -3096874 waitCount = 8 -3096875 ripCount = 6 -3096875 locktype1 = 2 -3096876 locktype2 = 2 -3096876 locktype3 = 0 -3096877 goalCount = 4 -3096877 goalTotal = 4 -3096877 otherCount = 8 -~~~ -3096879 CURRENTGOAL IS [5] -~~~ -3100868 UP 5 -3100868 16 255 -~~~ -~~~ -3100887 outer reward -~~~ -3100888 16 1048831 -~~~ -~~~ -3100913 DOWN 5 -3100913 0 1048831 -~~~ -~~~ -3100937 0 1048830 -~~~ -~~~ -3100939 0 1048828 -~~~ -~~~ -3100941 0 1048824 -~~~ -~~~ -3100942 0 1048816 -~~~ -~~~ -3100944 0 1048800 -~~~ -~~~ -3100946 0 1048768 -~~~ -~~~ -3100948 0 1048704 -~~~ -3100949 16 1048704 -~~~ -~~~ -3100951 16 1048576 -~~~ -3100952 16 1049088 -3100953 homeCount = 17 -3100953 waitCount = 8 -3100974 ripCount = 6 -3100975 locktype1 = 2 -3100975 locktype2 = 2 -3100976 locktype3 = 0 -3100976 goalCount = 5 -3100977 goalTotal = 5 -3100977 otherCount = 8 -~~~ -3101030 DOWN 5 -3101030 0 1049088 -3101085 16 1049088 -3101337 16 512 -3101521 DOWN 5 -3101521 0 512 -3101537 16 512 -3101644 DOWN 5 -3101644 0 512 -3101675 16 512 -3101791 DOWN 5 -3101791 0 512 -3101820 16 512 -3101934 DOWN 5 -3101934 0 512 -3101961 16 512 -3110337 DOWN 5 -3110337 0 512 -3110357 16 512 -3110459 DOWN 5 -3110459 0 512 -3110518 16 512 -3110553 DOWN 5 -3110553 0 512 -3115418 UP 10 -3115418 waslock = 0 -3115418 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3115442 512 16777728 -~~~ -3115592 512 512 -3115661 DOWN 10 -3115661 0 512 -~~~ -~~~ -3115693 0 2560 -~~~ -~~~ -3115694 0 2048 -3115695 homeCount = 18 -3115696 waitCount = 8 -3115696 ripCount = 6 -3115697 locktype1 = 2 -3115697 locktype2 = 2 -3115698 locktype3 = 0 -3115698 goalCount = 5 -3115699 goalTotal = 5 -3115699 otherCount = 8 -~~~ -3115746 UP 10 -3115746 waslock = 0 -3115746 512 2048 -~~~ -3119352 DOWN 10 -3119352 0 2048 -~~~ -~~~ -~~~ -~~~ -3119379 homeCount = 18 -3119379 waitCount = 8 -3119380 ripCount = 6 -3119380 locktype1 = 2 -3119381 locktype2 = 2 -3119381 locktype3 = 0 -3119382 goalCount = 5 -3119382 goalTotal = 5 -3119383 otherCount = 8 -~~~ -3120777 UP 12 -3120777 2048 2048 -3123277 CLICK1 -3123277 CLICK2 -~~~ -~~~ -~~~ -3123299 2048 67110912 -~~~ -3123449 2048 2048 -3130663 DOWN 12 -3130663 0 2048 -~~~ -~~~ -3130687 0 0 -~~~ -~~~ -3130689 0 1 -~~~ -~~~ -3130691 0 3 -~~~ -~~~ -3130693 0 7 -~~~ -~~~ -3130695 0 15 -~~~ -~~~ -3130696 0 31 -~~~ -~~~ -3130698 0 63 -~~~ -~~~ -3130700 0 127 -~~~ -~~~ -3130702 0 255 -3130703 homeCount = 18 -3130703 waitCount = 9 -3130704 ripCount = 6 -3130704 locktype1 = 2 -3130705 locktype2 = 2 -3130705 locktype3 = 0 -3130726 goalCount = 5 -3130726 goalTotal = 5 -3130727 otherCount = 8 -~~~ -3130728 CURRENTGOAL IS [5] -~~~ -3130749 UP 12 -3130749 2048 255 -3130773 DOWN 12 -3130773 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3130808 homeCount = 18 -3130809 waitCount = 9 -3130809 ripCount = 6 -3130810 locktype1 = 2 -3130810 locktype2 = 2 -3130811 locktype3 = 0 -3130811 goalCount = 5 -3130812 goalTotal = 5 -3130812 otherCount = 8 -~~~ -3130813 CURRENTGOAL IS [5] -~~~ -3130908 UP 12 -3130908 2048 255 -3131207 DOWN 12 -3131207 0 255 -3131223 UP 12 -3131223 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131244 homeCount = 18 -3131244 waitCount = 9 -3131245 ripCount = 6 -3131245 locktype1 = 2 -3131246 locktype2 = 2 -3131246 locktype3 = 0 -3131247 goalCount = 5 -3131247 goalTotal = 5 -3131248 otherCount = 8 -~~~ -3131249 CURRENTGOAL IS [5] -~~~ -3131887 DOWN 12 -3131887 0 255 -3131901 UP 12 -3131901 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131929 DOWN 12 -3131929 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131935 homeCount = 18 -3131936 waitCount = 9 -3131936 ripCount = 6 -3131937 locktype1 = 2 -3131937 locktype2 = 2 -3131938 locktype3 = 0 -3131938 goalCount = 5 -3131939 goalTotal = 5 -3131939 otherCount = 8 -~~~ -3131940 CURRENTGOAL IS [5] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131976 homeCount = 18 -3131977 waitCount = 9 -3131977 ripCount = 6 -3131978 locktype1 = 2 -3131978 locktype2 = 2 -3131978 locktype3 = 0 -3131979 goalCount = 5 -3131979 goalTotal = 5 -3131980 otherCount = 8 -~~~ -3131981 CURRENTGOAL IS [5] -~~~ -3135451 UP 5 -3135451 16 255 -~~~ -~~~ -3135472 outer reward -~~~ -3135472 16 1048831 -~~~ -~~~ -3135498 DOWN 5 -3135498 0 1048831 -~~~ -~~~ -3135518 0 1048830 -~~~ -~~~ -3135520 0 1048828 -~~~ -~~~ -3135521 0 1048824 -~~~ -~~~ -3135523 0 1048816 -~~~ -~~~ -3135525 0 1048800 -~~~ -~~~ -3135527 0 1048768 -~~~ -~~~ -3135529 0 1048704 -~~~ -~~~ -3135531 0 1048576 -~~~ -~~~ -3135533 0 1049088 -3135534 homeCount = 18 -3135534 waitCount = 9 -3135534 ripCount = 6 -3135555 locktype1 = 2 -3135556 locktype2 = 2 -3135556 locktype3 = 0 -3135557 goalCount = 6 -3135557 goalTotal = 6 -3135558 otherCount = 8 -~~~ -3135701 16 1049088 -3135922 16 512 -3136141 DOWN 5 -3136141 0 512 -3136162 16 512 -3136267 DOWN 5 -3136267 0 512 -3136300 16 512 -3136417 DOWN 5 -3136417 0 512 -3136440 16 512 -3136571 DOWN 5 -3136571 0 512 -3136593 16 512 -3136726 DOWN 5 -3136726 0 512 -3136735 16 512 -3144812 DOWN 5 -3144812 0 512 -3144860 16 512 -3144921 DOWN 5 -3144921 0 512 -3149602 UP 10 -3149602 waslock = 0 -3149602 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3149626 512 16777728 -~~~ -3149776 512 512 -3149906 DOWN 10 -3149906 0 512 -~~~ -~~~ -3149930 0 2560 -~~~ -~~~ -3149931 0 2048 -3149932 homeCount = 19 -3149933 waitCount = 9 -3149933 ripCount = 6 -3149934 locktype1 = 2 -3149934 locktype2 = 2 -3149935 locktype3 = 0 -3149935 goalCount = 6 -3149936 goalTotal = 6 -3149936 otherCount = 8 -~~~ -3149950 UP 10 -3149950 waslock = 0 -3149950 512 2048 -~~~ -3154133 DOWN 10 -3154133 0 2048 -~~~ -~~~ -~~~ -~~~ -3154161 homeCount = 19 -3154161 waitCount = 9 -3154162 ripCount = 6 -3154162 locktype1 = 2 -3154163 locktype2 = 2 -3154163 locktype3 = 0 -3154164 goalCount = 6 -3154164 goalTotal = 6 -3154165 otherCount = 8 -~~~ -3155594 UP 12 -3155594 2048 2048 -3158393 DOWN 12 -3158393 0 2048 -3158406 UP 12 -3158406 2048 2048 -3158844 CLICK1 -3158844 CLICK2 -~~~ -~~~ -~~~ -3158876 2048 67110912 -~~~ -3159026 2048 2048 -3163507 DOWN 12 -3163507 0 2048 -~~~ -~~~ -3163529 0 0 -~~~ -~~~ -3163531 0 1 -~~~ -~~~ -3163533 0 3 -~~~ -~~~ -3163535 0 7 -~~~ -~~~ -3163536 0 15 -~~~ -~~~ -3163538 0 31 -~~~ -~~~ -3163540 0 63 -~~~ -~~~ -3163542 0 127 -~~~ -~~~ -3163544 0 255 -3163545 homeCount = 19 -3163545 waitCount = 10 -3163546 ripCount = 6 -3163546 locktype1 = 2 -3163547 locktype2 = 2 -3163568 locktype3 = 0 -3163568 goalCount = 6 -3163569 goalTotal = 6 -3163569 otherCount = 8 -~~~ -3163570 CURRENTGOAL IS [5] -~~~ -3163578 UP 12 -3163578 2048 255 -3163598 DOWN 12 -3163598 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3163638 homeCount = 19 -3163638 waitCount = 10 -3163639 ripCount = 6 -3163639 locktype1 = 2 -3163640 locktype2 = 2 -3163640 locktype3 = 0 -3163641 goalCount = 6 -3163641 goalTotal = 6 -3163642 otherCount = 8 -~~~ -3163643 CURRENTGOAL IS [5] -~~~ -3166713 UP 5 -3166713 16 255 -~~~ -~~~ -3166733 outer reward -~~~ -3166734 16 1048831 -~~~ -~~~ -3166852 DOWN 5 -3166852 0 1048831 -~~~ -~~~ -3166871 0 1048830 -~~~ -~~~ -3166872 0 1048828 -~~~ -~~~ -3166874 0 1048824 -~~~ -~~~ -3166876 0 1048816 -~~~ -~~~ -3166878 0 1048800 -~~~ -~~~ -3166880 0 1048768 -~~~ -~~~ -3166881 0 1048704 -~~~ -~~~ -3166883 0 1048576 -~~~ -~~~ -3166885 0 1049088 -3166886 homeCount = 19 -3166887 waitCount = 10 -3166887 ripCount = 6 -3166908 locktype1 = 2 -3166909 locktype2 = 2 -3166909 locktype3 = 0 -3166910 goalCount = 7 -3166910 goalTotal = 7 -3166911 otherCount = 8 -~~~ -3166920 16 1049088 -3167183 16 512 -3167467 DOWN 5 -3167467 0 512 -3167492 16 512 -3167596 DOWN 5 -3167596 0 512 -3167627 16 512 -3167749 DOWN 5 -3167749 0 512 -3167769 16 512 -3167902 DOWN 5 -3167902 0 512 -3167918 16 512 -3168063 DOWN 5 -3168063 0 512 -3168067 16 512 -3168216 DOWN 5 -3168216 0 512 -3168221 16 512 -3173245 DOWN 5 -3173245 0 512 -3173274 16 512 -3173358 DOWN 5 -3173358 0 512 -3173398 16 512 -3173533 DOWN 5 -3173533 0 512 -3173545 16 512 -3174748 DOWN 5 -3174748 0 512 -3178391 UP 10 -3178391 waslock = 0 -3178391 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3178419 512 16777728 -~~~ -3178513 DOWN 10 -3178513 0 16777728 -~~~ -~~~ -3178533 0 16779776 -~~~ -~~~ -3178535 0 16779264 -3178536 homeCount = 20 -3178536 waitCount = 10 -3178537 ripCount = 6 -3178537 locktype1 = 2 -3178538 locktype2 = 2 -3178538 locktype3 = 0 -3178539 goalCount = 7 -3178539 goalTotal = 7 -3178540 otherCount = 8 -~~~ -3178565 UP 10 -3178565 waslock = 0 -3178565 512 16779264 -3178569 512 2048 -~~~ -3181110 DOWN 10 -3181110 0 2048 -~~~ -~~~ -~~~ -~~~ -3181136 homeCount = 20 -3181137 waitCount = 10 -3181137 ripCount = 6 -3181138 locktype1 = 2 -3181138 locktype2 = 2 -3181138 locktype3 = 0 -3181139 goalCount = 7 -3181139 goalTotal = 7 -3181140 otherCount = 8 -~~~ -3181148 UP 10 -3181148 waslock = 0 -3181148 512 2048 -~~~ -3182879 DOWN 10 -3182879 0 2048 -~~~ -~~~ -~~~ -~~~ -3182909 homeCount = 20 -3182909 waitCount = 10 -3182910 ripCount = 6 -3182910 locktype1 = 2 -3182911 locktype2 = 2 -3182911 locktype3 = 0 -3182912 goalCount = 7 -3182912 goalTotal = 7 -3182912 otherCount = 8 -~~~ -3184248 UP 12 -3184248 2048 2048 -3184441 DOWN 12 -3184441 0 2048 -3184642 LOCKOUT 3 -~~~ -3184664 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3184670 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3184821 UP 12 -3184821 2048 0 -3186676 DOWN 12 -3186676 0 0 -3186687 UP 12 -3186687 2048 0 -3186880 DOWN 12 -3186880 0 0 -3186888 UP 12 -3186888 2048 0 -3192209 DOWN 12 -3192209 0 0 -3203995 512 0 -3204208 0 0 -3204247 512 0 -3204551 0 0 -3209664 LOCKEND -~~~ -~~~ -~~~ -3209684 0 512 -3211290 UP 10 -3211291 waslock = 0 -3211290 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3211319 512 16777728 -~~~ -3211469 512 512 -3211753 DOWN 10 -3211753 0 512 -~~~ -~~~ -3211773 0 2560 -~~~ -~~~ -3211775 0 2048 -3211776 homeCount = 21 -3211776 waitCount = 10 -3211777 ripCount = 6 -3211777 locktype1 = 2 -3211778 locktype2 = 2 -3211778 locktype3 = 1 -3211779 goalCount = 7 -3211779 goalTotal = 7 -3211780 otherCount = 8 -~~~ -3212060 UP 10 -3212061 waslock = 0 -3212060 512 2048 -~~~ -3212477 DOWN 10 -3212477 0 2048 -3212487 UP 10 -3212488 waslock = 0 -3212487 512 2048 -~~~ -~~~ -~~~ -~~~ -3212507 homeCount = 21 -3212508 waitCount = 10 -3212508 ripCount = 6 -3212509 locktype1 = 2 -3212509 locktype2 = 2 -3212510 locktype3 = 1 -3212510 goalCount = 7 -3212511 goalTotal = 7 -3212511 otherCount = 8 -~~~ -~~~ -3215388 DOWN 10 -3215388 0 2048 -3215405 UP 10 -3215405 waslock = 0 -3215405 512 2048 -~~~ -~~~ -~~~ -~~~ -3215428 homeCount = 21 -3215428 waitCount = 10 -3215429 ripCount = 6 -3215429 locktype1 = 2 -3215430 locktype2 = 2 -3215430 locktype3 = 1 -3215431 goalCount = 7 -3215431 goalTotal = 7 -3215432 otherCount = 8 -~~~ -~~~ -3215479 DOWN 10 -3215479 0 2048 -~~~ -~~~ -~~~ -~~~ -3215506 homeCount = 21 -3215506 waitCount = 10 -3215507 ripCount = 6 -3215507 locktype1 = 2 -3215508 locktype2 = 2 -3215508 locktype3 = 1 -3215508 goalCount = 7 -3215509 goalTotal = 7 -3215509 otherCount = 8 -~~~ -3216863 UP 12 -3216863 2048 2048 -3218565 DOWN 12 -3218565 0 2048 -3218574 UP 12 -3218574 2048 2048 -3220863 CLICK1 -3220863 CLICK2 -~~~ -~~~ -~~~ -3220884 2048 67110912 -~~~ -3221034 2048 2048 -3226345 DOWN 12 -3226345 0 2048 -~~~ -~~~ -3226363 0 0 -~~~ -~~~ -3226365 0 1 -~~~ -~~~ -3226367 0 3 -~~~ -~~~ -3226368 0 7 -~~~ -~~~ -3226370 0 15 -~~~ -~~~ -3226372 0 31 -~~~ -~~~ -3226374 0 63 -~~~ -~~~ -3226376 0 127 -~~~ -~~~ -3226377 0 255 -3226378 homeCount = 21 -3226379 waitCount = 11 -3226379 ripCount = 6 -3226380 locktype1 = 2 -3226380 locktype2 = 2 -3226402 locktype3 = 1 -3226402 goalCount = 7 -3226403 goalTotal = 7 -3226403 otherCount = 8 -~~~ -3226404 CURRENTGOAL IS [5] -~~~ -3226405 UP 12 -3226405 2048 255 -3226446 DOWN 12 -3226446 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3226478 homeCount = 21 -3226479 waitCount = 11 -3226479 ripCount = 6 -3226480 locktype1 = 2 -3226480 locktype2 = 2 -3226481 locktype3 = 1 -3226481 goalCount = 7 -3226482 goalTotal = 7 -3226482 otherCount = 8 -~~~ -3226483 CURRENTGOAL IS [5] -~~~ -3229553 UP 5 -3229553 16 255 -~~~ -~~~ -3229574 outer reward -~~~ -3229575 16 1048831 -~~~ -~~~ -3229607 DOWN 5 -3229607 0 1048831 -~~~ -~~~ -3229632 0 1048830 -~~~ -~~~ -3229634 0 1048828 -~~~ -~~~ -3229636 0 1048824 -~~~ -~~~ -3229638 0 1048816 -~~~ -~~~ -3229640 0 1048800 -~~~ -~~~ -3229642 0 1048768 -~~~ -~~~ -3229643 0 1048704 -~~~ -~~~ -3229645 0 1048576 -~~~ -~~~ -3229647 16 1049088 -3229648 homeCount = 21 -3229649 waitCount = 11 -3229649 ripCount = 6 -3229670 locktype1 = 2 -3229671 locktype2 = 2 -3229671 locktype3 = 1 -3229672 goalCount = 8 -3229672 goalTotal = 8 -3229673 otherCount = 8 -~~~ -3229707 DOWN 5 -3229707 0 1049088 -3229782 16 1049088 -3230024 16 512 -3230230 DOWN 5 -3230230 0 512 -3230247 16 512 -3230349 DOWN 5 -3230349 0 512 -3230385 16 512 -3230485 DOWN 5 -3230485 0 512 -3230525 16 512 -3230632 DOWN 5 -3230632 0 512 -3230658 16 512 -3231216 DOWN 5 -3231216 0 512 -3231224 16 512 -3238685 DOWN 5 -3238685 0 512 -3242068 UP 10 -3242068 waslock = 0 -3242068 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3242100 512 16777728 -~~~ -3242250 512 512 -3242279 DOWN 10 -3242279 0 512 -3242291 UP 10 -3242291 waslock = 0 -3242291 512 512 -~~~ -~~~ -3242317 512 1536 -~~~ -~~~ -3242319 512 1024 -3242320 homeCount = 22 -3242321 waitCount = 11 -3242321 ripCount = 6 -3242322 locktype1 = 2 -3242322 locktype2 = 2 -3242322 locktype3 = 1 -3242323 goalCount = 8 -3242323 goalTotal = 8 -3242324 otherCount = 8 -~~~ -~~~ -3245953 DOWN 10 -3245953 0 1024 -~~~ -~~~ -~~~ -~~~ -3245977 homeCount = 22 -3245977 waitCount = 11 -3245978 ripCount = 6 -3245978 locktype1 = 2 -3245979 locktype2 = 2 -3245979 locktype3 = 1 -3245980 goalCount = 8 -3245980 goalTotal = 8 -3245981 otherCount = 8 -~~~ -3248007 UP 11 -3248006 1024 1024 -3248996 DOWN 11 -3248996 0 1024 -3249014 UP 11 -3249014 1024 1024 -3249041 DOWN 11 -3249041 0 1024 -3249053 UP 11 -3249053 1024 1024 -3249157 DOWN 11 -3249157 0 1024 -3249226 UP 11 -3249226 1024 1024 -3250007 BEEP1 -3250007 BEEP2 -~~~ -~~~ -~~~ -3250027 1024 33555456 -~~~ -3250177 1024 1024 -3254636 DOWN 11 -3254636 0 1024 -~~~ -~~~ -3254664 0 0 -~~~ -~~~ -3254666 0 1 -~~~ -~~~ -3254668 0 3 -~~~ -~~~ -3254669 0 7 -~~~ -~~~ -3254671 0 15 -~~~ -~~~ -3254673 0 31 -~~~ -~~~ -3254675 0 63 -~~~ -~~~ -3254677 0 127 -~~~ -~~~ -3254679 0 255 -3254680 homeCount = 22 -3254680 waitCount = 11 -3254681 ripCount = 7 -3254681 locktype1 = 2 -3254682 locktype2 = 2 -3254703 locktype3 = 1 -3254703 goalCount = 8 -3254704 goalTotal = 8 -3254704 otherCount = 8 -~~~ -3254705 CURRENTGOAL IS [5] -~~~ -3254706 UP 11 -3254706 1024 255 -3254903 DOWN 11 -3254903 0 255 -3254916 UP 11 -3254916 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3254954 homeCount = 22 -3254955 waitCount = 11 -3254955 ripCount = 7 -3254956 locktype1 = 2 -3254956 locktype2 = 2 -3254957 locktype3 = 1 -3254957 goalCount = 8 -3254957 goalTotal = 8 -3254958 otherCount = 8 -~~~ -3254959 CURRENTGOAL IS [5] -~~~ -3256704 DOWN 11 -3256704 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3256740 homeCount = 22 -3256741 waitCount = 11 -3256741 ripCount = 7 -3256742 locktype1 = 2 -3256742 locktype2 = 2 -3256743 locktype3 = 1 -3256743 goalCount = 8 -3256744 goalTotal = 8 -3256744 otherCount = 8 -~~~ -3256745 CURRENTGOAL IS [5] -~~~ -3256756 UP 11 -3256756 1024 255 -3256791 DOWN 11 -3256791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3256831 homeCount = 22 -3256832 waitCount = 11 -3256832 ripCount = 7 -3256833 locktype1 = 2 -3256833 locktype2 = 2 -3256834 locktype3 = 1 -3256834 goalCount = 8 -3256835 goalTotal = 8 -3256835 otherCount = 8 -~~~ -3256836 CURRENTGOAL IS [5] -~~~ -3256857 UP 11 -3256857 1024 255 -3259186 DOWN 11 -3259186 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3259222 homeCount = 22 -3259222 waitCount = 11 -3259223 ripCount = 7 -3259223 locktype1 = 2 -3259224 locktype2 = 2 -3259224 locktype3 = 1 -3259225 goalCount = 8 -3259225 goalTotal = 8 -3259226 otherCount = 8 -~~~ -3259227 CURRENTGOAL IS [5] -~~~ -3262562 UP 5 -3262562 16 255 -~~~ -~~~ -3262589 outer reward -~~~ -3262589 16 1048831 -~~~ -~~~ -3262710 DOWN 5 -3262710 0 1048831 -~~~ -~~~ -3262726 0 1048830 -~~~ -~~~ -3262728 0 1048828 -~~~ -~~~ -3262730 0 1048824 -~~~ -~~~ -3262732 0 1048816 -~~~ -~~~ -3262733 0 1048800 -~~~ -~~~ -3262735 0 1048768 -~~~ -~~~ -3262737 0 1048704 -~~~ -~~~ -3262739 0 1048576 -~~~ -~~~ -3262741 0 1049088 -3262742 homeCount = 22 -3262742 waitCount = 11 -3262743 ripCount = 7 -3262764 locktype1 = 2 -3262764 locktype2 = 2 -3262764 locktype3 = 1 -3262765 goalCount = 9 -3262765 goalTotal = 9 -3262766 otherCount = 8 -~~~ -3262801 16 1049088 -3263039 16 512 -3263359 DOWN 5 -3263359 0 512 -3263383 16 512 -3263493 DOWN 5 -3263493 0 512 -3263518 16 512 -3264398 DOWN 5 -3264398 0 512 -3264406 16 512 -3270249 DOWN 5 -3270249 0 512 -3270308 16 512 -3270360 DOWN 5 -3270360 0 512 -3273977 UP 10 -3273977 waslock = 0 -3273977 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3274003 512 16777728 -~~~ -3274153 512 512 -3274201 DOWN 10 -3274201 0 512 -~~~ -~~~ -3274227 0 2560 -~~~ -~~~ -3274229 0 2048 -3274230 homeCount = 23 -3274230 waitCount = 11 -3274231 ripCount = 7 -3274231 locktype1 = 2 -3274232 locktype2 = 2 -3274232 locktype3 = 1 -3274233 goalCount = 9 -3274233 goalTotal = 9 -3274234 otherCount = 8 -~~~ -3274240 UP 10 -3274240 waslock = 0 -3274240 512 2048 -~~~ -3278548 DOWN 10 -3278548 0 2048 -~~~ -~~~ -~~~ -~~~ -3278571 homeCount = 23 -3278571 waitCount = 11 -3278572 ripCount = 7 -3278572 locktype1 = 2 -3278572 locktype2 = 2 -3278573 locktype3 = 1 -3278573 goalCount = 9 -3278574 goalTotal = 9 -3278574 otherCount = 8 -~~~ -3280094 UP 12 -3280093 2048 2048 -3283094 CLICK1 -3283094 CLICK2 -~~~ -~~~ -~~~ -3283119 2048 67110912 -~~~ -3283269 2048 2048 -3287508 DOWN 12 -3287508 0 2048 -~~~ -~~~ -3287532 0 0 -~~~ -~~~ -3287534 0 1 -~~~ -~~~ -3287536 0 3 -~~~ -~~~ -3287538 0 7 -~~~ -~~~ -3287539 0 15 -~~~ -~~~ -3287541 0 31 -~~~ -~~~ -3287543 0 63 -~~~ -~~~ -3287545 0 127 -~~~ -~~~ -3287547 0 255 -3287548 homeCount = 23 -3287548 waitCount = 12 -3287549 ripCount = 7 -3287549 locktype1 = 2 -3287550 locktype2 = 2 -3287550 locktype3 = 1 -3287571 goalCount = 9 -3287572 goalTotal = 9 -3287572 otherCount = 8 -~~~ -3287573 CURRENTGOAL IS [5] -~~~ -3287592 UP 12 -3287592 2048 255 -3289873 DOWN 12 -3289873 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3289914 homeCount = 23 -3289914 waitCount = 12 -3289915 ripCount = 7 -3289915 locktype1 = 2 -3289916 locktype2 = 2 -3289916 locktype3 = 1 -3289917 goalCount = 9 -3289917 goalTotal = 9 -3289918 otherCount = 8 -~~~ -3289919 CURRENTGOAL IS [5] -~~~ -3289919 UP 12 -3289919 2048 255 -3289957 DOWN 12 -3289957 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3289993 homeCount = 23 -3289994 waitCount = 12 -3289994 ripCount = 7 -3289995 locktype1 = 2 -3289995 locktype2 = 2 -3289996 locktype3 = 1 -3289996 goalCount = 9 -3289997 goalTotal = 9 -3289997 otherCount = 8 -~~~ -3289998 CURRENTGOAL IS [5] -~~~ -3293507 UP 5 -3293507 16 255 -~~~ -~~~ -3293531 outer reward -~~~ -3293531 16 1048831 -~~~ -~~~ -3293536 outerreps = 12 -~~~ -~~~ -3293615 DOWN 5 -3293615 0 1048831 -~~~ -~~~ -3293637 0 1048830 -~~~ -~~~ -3293639 0 1048828 -~~~ -~~~ -3293641 0 1048824 -~~~ -~~~ -3293643 0 1048816 -~~~ -~~~ -3293645 0 1048800 -~~~ -~~~ -3293647 0 1048768 -~~~ -~~~ -3293648 0 1048704 -~~~ -~~~ -3293650 0 1048576 -~~~ -~~~ -3293652 0 1049088 -3293653 homeCount = 23 -3293654 waitCount = 12 -3293654 ripCount = 7 -3293675 locktype1 = 2 -3293675 locktype2 = 2 -3293676 locktype3 = 1 -3293676 goalCount = 0 -3293677 goalTotal = 10 -3293677 otherCount = 8 -~~~ -3293737 16 1049088 -3293981 16 512 -3294292 DOWN 5 -3294292 0 512 -3294316 16 512 -3294427 DOWN 5 -3294427 0 512 -3294455 16 512 -3294576 DOWN 5 -3294576 0 512 -3294585 16 512 -3300882 DOWN 5 -3300882 0 512 -3300930 16 512 -3300943 DOWN 5 -3300943 0 512 -3304714 UP 10 -3304714 waslock = 0 -3304714 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3304747 512 16777728 -~~~ -3304897 512 512 -3304898 DOWN 10 -3304898 0 512 -3304908 UP 10 -3304908 waslock = 0 -3304908 512 512 -~~~ -~~~ -3304923 512 1536 -~~~ -~~~ -3304925 512 1024 -3304926 homeCount = 24 -3304927 waitCount = 12 -3304927 ripCount = 7 -3304928 locktype1 = 2 -3304928 locktype2 = 2 -3304928 locktype3 = 1 -3304929 goalCount = 0 -3304929 goalTotal = 10 -3304930 otherCount = 8 -~~~ -~~~ -3308761 DOWN 10 -3308761 0 1024 -~~~ -~~~ -~~~ -~~~ -3308787 homeCount = 24 -3308788 waitCount = 12 -3308788 ripCount = 7 -3308789 locktype1 = 2 -3308789 locktype2 = 2 -3308790 locktype3 = 1 -3308790 goalCount = 0 -3308791 goalTotal = 10 -3308791 otherCount = 8 -~~~ -3308798 UP 10 -3308798 waslock = 0 -3308798 512 1024 -~~~ -3308860 DOWN 10 -3308860 0 1024 -~~~ -~~~ -~~~ -~~~ -3308885 homeCount = 24 -3308886 waitCount = 12 -3308886 ripCount = 7 -3308887 locktype1 = 2 -3308887 locktype2 = 2 -3308888 locktype3 = 1 -3308888 goalCount = 0 -3308889 goalTotal = 10 -3308889 otherCount = 8 -~~~ -3311076 UP 11 -3311076 1024 1024 -3313181 DOWN 11 -3313181 0 1024 -3313192 UP 11 -3313192 1024 1024 -3314077 BEEP1 -3314077 BEEP2 -~~~ -~~~ -~~~ -3314104 1024 33555456 -~~~ -3314254 1024 1024 -3318081 DOWN 11 -3318081 0 1024 -~~~ -3318103 UP 11 -3318103 1024 1024 -~~~ -~~~ -3318105 1024 0 -~~~ -~~~ -3318106 1024 1 -~~~ -3318107 1024 3 -~~~ -~~~ -3318109 1024 7 -~~~ -~~~ -3318111 1024 15 -~~~ -~~~ -3318113 1024 31 -~~~ -~~~ -3318114 1024 63 -~~~ -~~~ -3318116 1024 127 -~~~ -~~~ -3318118 1024 255 -3318119 homeCount = 24 -3318140 waitCount = 12 -3318141 ripCount = 8 -3318141 locktype1 = 2 -3318142 locktype2 = 2 -3318142 locktype3 = 1 -3318142 goalCount = 0 -3318143 goalTotal = 10 -3318143 otherCount = 8 -~~~ -3318144 CURRENTGOAL IS [4] -~~~ -3318210 DOWN 11 -3318210 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3318243 homeCount = 24 -3318243 waitCount = 12 -3318244 ripCount = 8 -3318244 locktype1 = 2 -3318245 locktype2 = 2 -3318245 locktype3 = 1 -3318246 goalCount = 0 -3318246 goalTotal = 10 -3318247 otherCount = 8 -~~~ -3318248 CURRENTGOAL IS [4] -~~~ -3318282 UP 11 -3318282 1024 255 -3320896 DOWN 11 -3320896 0 255 -3320908 UP 11 -3320907 1024 255 -3320920 DOWN 11 -3320920 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3320943 homeCount = 24 -3320944 waitCount = 12 -3320944 ripCount = 8 -3320945 locktype1 = 2 -3320945 locktype2 = 2 -3320946 locktype3 = 1 -3320946 goalCount = 0 -3320947 goalTotal = 10 -3320947 otherCount = 8 -~~~ -3320948 CURRENTGOAL IS [4] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3320976 homeCount = 24 -3320976 waitCount = 12 -3320977 ripCount = 8 -3320977 locktype1 = 2 -3320978 locktype2 = 2 -3320978 locktype3 = 1 -3320979 goalCount = 0 -3320979 goalTotal = 10 -3321000 otherCount = 8 -~~~ -3321001 CURRENTGOAL IS [4] -~~~ -3321002 UP 11 -3321002 1024 255 -3323162 DOWN 11 -3323162 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3323198 homeCount = 24 -3323198 waitCount = 12 -3323199 ripCount = 8 -3323199 locktype1 = 2 -3323200 locktype2 = 2 -3323200 locktype3 = 1 -3323201 goalCount = 0 -3323201 goalTotal = 10 -3323202 otherCount = 8 -~~~ -3323203 CURRENTGOAL IS [4] -~~~ -3326113 UP 5 -3326113 16 255 -~~~ -~~~ -3326327 DOWN 5 -3326327 0 255 -~~~ -~~~ -3326352 0 254 -~~~ -~~~ -3326354 0 252 -~~~ -~~~ -3326356 0 248 -~~~ -~~~ -3326358 0 240 -~~~ -~~~ -3326360 0 224 -~~~ -~~~ -3326361 0 192 -~~~ -~~~ -3326363 0 128 -~~~ -~~~ -3326365 0 0 -~~~ -~~~ -3326367 0 512 -3326368 homeCount = 24 -3326368 waitCount = 12 -3326369 ripCount = 8 -3326369 locktype1 = 2 -3326370 locktype2 = 2 -3326391 locktype3 = 1 -3326392 goalCount = 0 -3326392 goalTotal = 10 -3326392 otherCount = 9 -~~~ -3326393 16 512 -3327275 DOWN 5 -3327275 0 512 -3331483 UP 10 -3331483 waslock = 0 -3331483 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3331515 512 16777728 -~~~ -3331628 DOWN 10 -3331628 0 16777728 -~~~ -~~~ -3331648 0 16779776 -~~~ -~~~ -3331650 0 16779264 -3331651 homeCount = 25 -3331652 waitCount = 12 -3331652 ripCount = 8 -3331653 locktype1 = 2 -3331653 locktype2 = 2 -3331654 locktype3 = 1 -3331654 goalCount = 0 -3331655 goalTotal = 10 -3331655 otherCount = 9 -~~~ -3331676 0 2048 -3331678 UP 10 -3331678 waslock = 0 -3331678 512 2048 -~~~ -3335072 DOWN 10 -3335072 0 2048 -~~~ -~~~ -~~~ -~~~ -3335101 homeCount = 25 -3335102 waitCount = 12 -3335102 ripCount = 8 -3335103 locktype1 = 2 -3335103 locktype2 = 2 -3335104 locktype3 = 1 -3335104 goalCount = 0 -3335105 goalTotal = 10 -3335105 otherCount = 9 -~~~ -3335111 UP 10 -3335111 waslock = 0 -3335111 512 2048 -~~~ -3335173 DOWN 10 -3335173 0 2048 -~~~ -~~~ -~~~ -~~~ -3335201 homeCount = 25 -3335201 waitCount = 12 -3335202 ripCount = 8 -3335202 locktype1 = 2 -3335202 locktype2 = 2 -3335203 locktype3 = 1 -3335203 goalCount = 0 -3335204 goalTotal = 10 -3335204 otherCount = 9 -~~~ -3337393 UP 12 -3337393 2048 2048 -3338245 DOWN 12 -3338245 0 2048 -3338263 UP 12 -3338263 2048 2048 -3338315 DOWN 12 -3338315 0 2048 -3338351 UP 12 -3338351 2048 2048 -3341498 DOWN 12 -3341498 0 2048 -3341509 UP 12 -3341509 2048 2048 -3343393 CLICK1 -3343393 CLICK2 -~~~ -~~~ -~~~ -3343422 2048 67110912 -~~~ -3343572 2048 2048 -3347572 DOWN 12 -3347572 0 2048 -~~~ -~~~ -3347598 0 0 -~~~ -~~~ -3347599 0 1 -~~~ -~~~ -3347601 0 3 -~~~ -~~~ -3347603 0 7 -~~~ -~~~ -3347605 0 15 -~~~ -~~~ -3347607 0 31 -~~~ -~~~ -3347608 0 63 -~~~ -~~~ -3347610 0 127 -~~~ -~~~ -3347612 0 255 -3347613 homeCount = 25 -3347614 waitCount = 13 -3347614 ripCount = 8 -3347615 locktype1 = 2 -3347615 locktype2 = 2 -3347616 locktype3 = 1 -3347636 goalCount = 0 -3347637 goalTotal = 10 -3347637 otherCount = 9 -~~~ -3347638 CURRENTGOAL IS [4] -~~~ -3353871 UP 1 -3353871 1 255 -~~~ -~~~ -3355979 DOWN 1 -3355979 0 255 -~~~ -~~~ -3355998 0 254 -~~~ -~~~ -3355999 0 252 -~~~ -~~~ -3356001 0 248 -~~~ -~~~ -3356003 0 240 -~~~ -~~~ -3356005 0 224 -~~~ -~~~ -3356007 0 192 -~~~ -~~~ -3356008 0 128 -~~~ -~~~ -3356010 0 0 -~~~ -~~~ -3356012 0 512 -3356013 homeCount = 25 -3356014 waitCount = 13 -3356014 ripCount = 8 -3356015 locktype1 = 2 -3356015 locktype2 = 2 -3356036 locktype3 = 1 -3356037 goalCount = 0 -3356037 goalTotal = 10 -3356038 otherCount = 10 -~~~ -3356051 1 512 -3356113 DOWN 1 -3356113 0 512 -3364545 UP 10 -3364546 waslock = 0 -3364545 512 512 -3364564 DOWN 10 -3364564 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3364574 0 16777728 -~~~ -3364586 UP 10 -3364587 waslock = 0 -3364586 512 16777728 -~~~ -~~~ -3364589 512 16779776 -~~~ -~~~ -3364591 512 16779264 -3364592 homeCount = 26 -3364592 waitCount = 13 -3364593 ripCount = 8 -3364593 locktype1 = 2 -3364594 locktype2 = 2 -3364594 locktype3 = 1 -3364595 goalCount = 0 -3364616 goalTotal = 10 -3364616 otherCount = 10 -~~~ -~~~ -3364724 512 2048 -3364785 DOWN 10 -3364785 0 2048 -~~~ -~~~ -~~~ -~~~ -3364814 homeCount = 26 -3364815 waitCount = 13 -3364815 ripCount = 8 -3364816 locktype1 = 2 -3364816 locktype2 = 2 -3364817 locktype3 = 1 -3364817 goalCount = 0 -3364818 goalTotal = 10 -3364818 otherCount = 10 -~~~ -3364820 UP 10 -3364821 waslock = 0 -3364820 512 2048 -~~~ -3369000 DOWN 10 -3369000 0 2048 -~~~ -~~~ -~~~ -~~~ -3369021 homeCount = 26 -3369021 waitCount = 13 -3369022 ripCount = 8 -3369022 locktype1 = 2 -3369023 locktype2 = 2 -3369023 locktype3 = 1 -3369024 goalCount = 0 -3369024 goalTotal = 10 -3369025 otherCount = 10 -~~~ -3371473 UP 12 -3371473 2048 2048 -3371491 DOWN 12 -3371491 0 2048 -3371539 UP 12 -3371539 2048 2048 -3372597 DOWN 12 -3372597 0 2048 -3372605 UP 12 -3372605 2048 2048 -3372635 DOWN 12 -3372635 0 2048 -3372713 UP 12 -3372713 2048 2048 -3374473 CLICK1 -3374473 CLICK2 -~~~ -~~~ -~~~ -3374502 2048 67110912 -~~~ -3374652 2048 2048 -3379419 DOWN 12 -3379419 0 2048 -~~~ -~~~ -3379439 0 0 -~~~ -~~~ -3379441 0 1 -~~~ -3379442 UP 12 -3379442 2048 1 -~~~ -~~~ -3379444 2048 3 -~~~ -~~~ -3379446 2048 7 -~~~ -3379447 2048 15 -~~~ -~~~ -3379448 2048 31 -~~~ -~~~ -3379450 2048 63 -~~~ -~~~ -3379452 2048 127 -~~~ -~~~ -3379454 2048 255 -3379455 homeCount = 26 -3379455 waitCount = 14 -3379476 ripCount = 8 -3379477 locktype1 = 2 -3379477 locktype2 = 2 -3379478 locktype3 = 1 -3379478 goalCount = 0 -3379479 goalTotal = 10 -3379479 otherCount = 10 -~~~ -3379480 CURRENTGOAL IS [4] -~~~ -3379501 DOWN 12 -3379501 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3379536 homeCount = 26 -3379537 waitCount = 14 -3379537 ripCount = 8 -3379538 locktype1 = 2 -3379538 locktype2 = 2 -3379539 locktype3 = 1 -3379539 goalCount = 0 -3379540 goalTotal = 10 -3379540 otherCount = 10 -~~~ -3379541 CURRENTGOAL IS [4] -~~~ -3382877 UP 5 -3382877 16 255 -~~~ -~~~ -3383277 DOWN 5 -3383277 0 255 -~~~ -~~~ -3383303 0 254 -~~~ -~~~ -3383305 0 252 -~~~ -~~~ -3383307 0 248 -~~~ -~~~ -3383309 0 240 -~~~ -~~~ -3383311 0 224 -~~~ -~~~ -3383312 0 192 -~~~ -~~~ -3383314 0 128 -~~~ -~~~ -3383316 0 0 -~~~ -~~~ -3383318 0 512 -3383319 homeCount = 26 -3383319 waitCount = 14 -3383320 ripCount = 8 -3383320 locktype1 = 2 -3383321 locktype2 = 2 -3383342 locktype3 = 1 -3383342 goalCount = 0 -3383343 goalTotal = 10 -3383343 otherCount = 11 -~~~ -3383433 16 512 -3383515 DOWN 5 -3383515 0 512 -3386814 UP 10 -3386815 waslock = 0 -3386814 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3386842 512 16777728 -~~~ -3386992 512 512 -3387046 DOWN 10 -3387046 0 512 -~~~ -~~~ -3387067 0 1536 -~~~ -~~~ -3387069 0 1024 -3387070 homeCount = 27 -3387070 waitCount = 14 -3387071 ripCount = 8 -3387071 locktype1 = 2 -3387072 locktype2 = 2 -3387072 locktype3 = 1 -3387073 goalCount = 0 -3387073 goalTotal = 10 -3387074 otherCount = 11 -~~~ -3387074 UP 10 -3387095 waslock = 0 -3387074 512 1024 -~~~ -3390332 DOWN 10 -3390332 0 1024 -~~~ -~~~ -~~~ -~~~ -3390354 homeCount = 27 -3390354 waitCount = 14 -3390355 ripCount = 8 -3390355 locktype1 = 2 -3390356 locktype2 = 2 -3390356 locktype3 = 1 -3390357 goalCount = 0 -3390357 goalTotal = 10 -3390358 otherCount = 11 -~~~ -3390364 UP 10 -3390364 waslock = 0 -3390363 512 1024 -~~~ -3390422 DOWN 10 -3390422 0 1024 -~~~ -~~~ -~~~ -~~~ -3390446 homeCount = 27 -3390446 waitCount = 14 -3390447 ripCount = 8 -3390447 locktype1 = 2 -3390448 locktype2 = 2 -3390448 locktype3 = 1 -3390449 goalCount = 0 -3390449 goalTotal = 10 -3390450 otherCount = 11 -~~~ -3392373 UP 11 -3392373 1024 1024 -3394624 BEEP1 -3394624 BEEP2 -~~~ -~~~ -~~~ -3394644 1024 33555456 -~~~ -3394794 1024 1024 -3402282 DOWN 11 -3402282 0 1024 -~~~ -~~~ -3402303 0 0 -~~~ -~~~ -3402305 0 1 -~~~ -~~~ -3402307 0 3 -~~~ -~~~ -3402308 0 7 -~~~ -~~~ -3402310 0 15 -~~~ -~~~ -3402312 0 31 -~~~ -~~~ -3402314 0 63 -~~~ -~~~ -3402316 0 127 -~~~ -~~~ -3402317 0 255 -3402318 homeCount = 27 -3402319 waitCount = 14 -3402319 ripCount = 9 -3402320 locktype1 = 2 -3402320 locktype2 = 2 -3402321 locktype3 = 1 -3402342 goalCount = 0 -3402342 goalTotal = 10 -3402343 otherCount = 11 -~~~ -3402344 CURRENTGOAL IS [4] -~~~ -3405003 UP 8 -3405003 128 255 -~~~ -~~~ -3405483 DOWN 8 -3405483 0 255 -3405500 128 255 -~~~ -~~~ -3405509 128 254 -~~~ -~~~ -3405511 128 252 -~~~ -~~~ -3405513 128 248 -~~~ -~~~ -3405515 128 240 -~~~ -~~~ -3405517 128 224 -~~~ -~~~ -3405518 128 192 -~~~ -~~~ -3405520 128 128 -~~~ -~~~ -3405522 128 0 -~~~ -~~~ -3405524 128 512 -3405525 homeCount = 27 -3405526 waitCount = 14 -3405526 ripCount = 9 -3405526 locktype1 = 2 -3405547 locktype2 = 2 -3405548 locktype3 = 1 -3405548 goalCount = 0 -3405549 goalTotal = 10 -3405549 otherCount = 12 -~~~ -3405550 DOWN 8 -3405550 0 512 -3405554 128 512 -3405618 DOWN 8 -3405618 0 512 -3405768 128 512 -3406173 DOWN 8 -3406173 0 512 -3406190 128 512 -3406488 DOWN 8 -3406488 0 512 -3412401 UP 10 -3412402 waslock = 0 -3412401 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3412426 512 16777728 -~~~ -3412576 512 512 -3417283 DOWN 10 -3417283 0 512 -~~~ -~~~ -3417301 0 1536 -~~~ -~~~ -3417303 0 1024 -3417304 homeCount = 28 -3417305 waitCount = 14 -3417305 ripCount = 9 -3417306 locktype1 = 2 -3417306 locktype2 = 2 -3417306 locktype3 = 1 -3417307 goalCount = 0 -3417307 goalTotal = 10 -3417308 otherCount = 12 -~~~ -3417314 UP 10 -3417314 waslock = 0 -3417314 512 1024 -~~~ -3417369 DOWN 10 -3417369 0 1024 -~~~ -~~~ -~~~ -~~~ -3417395 homeCount = 28 -3417395 waitCount = 14 -3417396 ripCount = 9 -3417396 locktype1 = 2 -3417397 locktype2 = 2 -3417397 locktype3 = 1 -3417398 goalCount = 0 -3417398 goalTotal = 10 -3417398 otherCount = 12 -~~~ -3418917 UP 11 -3418917 1024 1024 -3421167 BEEP1 -3421167 BEEP2 -~~~ -~~~ -~~~ -3421193 1024 33555456 -~~~ -3421343 1024 1024 -3426415 DOWN 11 -3426415 0 1024 -~~~ -~~~ -3426441 0 0 -~~~ -3426442 UP 11 -3426442 1024 0 -~~~ -~~~ -3426444 1024 1 -~~~ -~~~ -3426446 1024 3 -~~~ -3426447 1024 7 -~~~ -~~~ -3426448 1024 15 -~~~ -~~~ -3426450 1024 31 -~~~ -~~~ -3426452 1024 63 -~~~ -~~~ -3426453 1024 127 -~~~ -~~~ -3426455 1024 255 -3426456 homeCount = 28 -3426478 waitCount = 14 -3426478 ripCount = 10 -3426478 locktype1 = 2 -3426479 locktype2 = 2 -3426479 locktype3 = 1 -3426480 goalCount = 0 -3426480 goalTotal = 10 -3426481 otherCount = 12 -~~~ -3426482 CURRENTGOAL IS [4] -~~~ -3426484 DOWN 11 -3426484 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3426535 UP 11 -3426535 1024 255 -~~~ -~~~ -~~~ -~~~ -3426539 homeCount = 28 -3426540 waitCount = 14 -3426540 ripCount = 10 -3426541 locktype1 = 2 -3426541 locktype2 = 2 -3426542 locktype3 = 1 -3426542 goalCount = 0 -3426543 goalTotal = 10 -3426543 otherCount = 12 -~~~ -3426544 CURRENTGOAL IS [4] -~~~ -3428785 DOWN 11 -3428785 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3428822 homeCount = 28 -3428823 waitCount = 14 -3428823 ripCount = 10 -3428824 locktype1 = 2 -3428824 locktype2 = 2 -3428825 locktype3 = 1 -3428825 goalCount = 0 -3428826 goalTotal = 10 -3428826 otherCount = 12 -~~~ -3428827 CURRENTGOAL IS [4] -~~~ -3431457 UP 6 -3431457 32 255 -~~~ -~~~ -3433724 DOWN 6 -3433724 0 255 -~~~ -~~~ -3433746 0 254 -~~~ -~~~ -3433747 0 252 -~~~ -~~~ -3433749 0 248 -~~~ -~~~ -3433751 0 240 -~~~ -~~~ -3433753 0 224 -~~~ -~~~ -3433755 0 192 -~~~ -~~~ -3433757 0 128 -~~~ -~~~ -3433758 0 0 -~~~ -~~~ -3433760 0 512 -3433761 homeCount = 28 -3433762 waitCount = 14 -3433762 ripCount = 10 -3433763 locktype1 = 2 -3433763 locktype2 = 2 -3433784 locktype3 = 1 -3433785 goalCount = 0 -3433785 goalTotal = 10 -3433786 otherCount = 13 -~~~ -3433786 32 512 -3433787 DOWN 6 -3433787 0 512 -3437391 UP 10 -3437392 waslock = 0 -3437391 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3437423 512 16777728 -~~~ -3437573 512 512 -3439941 DOWN 10 -3439941 0 512 -~~~ -~~~ -3439966 0 1536 -~~~ -~~~ -3439968 0 1024 -3439969 homeCount = 29 -3439969 waitCount = 14 -3439970 ripCount = 10 -3439970 locktype1 = 2 -3439971 locktype2 = 2 -3439971 locktype3 = 1 -3439971 goalCount = 0 -3439972 goalTotal = 10 -3439972 otherCount = 13 -~~~ -3440045 UP 10 -3440045 waslock = 0 -3440045 512 1024 -~~~ -3443900 DOWN 10 -3443900 0 1024 -~~~ -~~~ -~~~ -~~~ -3443928 homeCount = 29 -3443929 waitCount = 14 -3443929 ripCount = 10 -3443930 locktype1 = 2 -3443930 locktype2 = 2 -3443931 locktype3 = 1 -3443931 goalCount = 0 -3443932 goalTotal = 10 -3443932 otherCount = 13 -~~~ -3443937 UP 10 -3443938 waslock = 0 -3443937 512 1024 -~~~ -3444010 DOWN 10 -3444010 0 1024 -~~~ -~~~ -~~~ -~~~ -3444047 homeCount = 29 -3444048 waitCount = 14 -3444048 ripCount = 10 -3444049 locktype1 = 2 -3444049 locktype2 = 2 -3444050 locktype3 = 1 -3444050 goalCount = 0 -3444051 goalTotal = 10 -3444051 otherCount = 13 -~~~ -3447480 UP 11 -3447480 1024 1024 -3449428 DOWN 11 -3449428 0 1024 -3449534 UP 11 -3449534 1024 1024 -3450480 BEEP1 -3450480 BEEP2 -~~~ -~~~ -~~~ -3450499 1024 33555456 -~~~ -3450520 DOWN 11 -3450520 0 33555456 -3450539 UP 11 -3450539 1024 33555456 -3450649 1024 1024 -3450808 DOWN 11 -3450808 0 1024 -3450838 UP 11 -3450838 1024 1024 -~~~ -~~~ -3451150 1024 0 -~~~ -~~~ -3451152 1024 1 -~~~ -~~~ -3451154 1024 3 -~~~ -~~~ -3451156 1024 7 -~~~ -~~~ -3451158 1024 15 -~~~ -~~~ -3451160 1024 31 -~~~ -~~~ -3451161 1024 63 -~~~ -~~~ -3451163 1024 127 -~~~ -~~~ -3451165 1024 255 -3451166 homeCount = 29 -3451167 waitCount = 14 -3451167 ripCount = 11 -3451168 locktype1 = 2 -3451188 locktype2 = 2 -3451189 locktype3 = 1 -3451189 goalCount = 0 -3451190 goalTotal = 10 -3451190 otherCount = 13 -~~~ -3451191 CURRENTGOAL IS [4] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3451219 homeCount = 29 -3451219 waitCount = 14 -3451220 ripCount = 11 -3451220 locktype1 = 2 -3451221 locktype2 = 2 -3451221 locktype3 = 1 -3451222 goalCount = 0 -3451222 goalTotal = 10 -3451223 otherCount = 13 -~~~ -3451224 CURRENTGOAL IS [4] -~~~ -3455069 DOWN 11 -3455069 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3455110 homeCount = 29 -3455111 waitCount = 14 -3455111 ripCount = 11 -3455112 locktype1 = 2 -3455112 locktype2 = 2 -3455113 locktype3 = 1 -3455113 goalCount = 0 -3455113 goalTotal = 10 -3455114 otherCount = 13 -~~~ -3455115 CURRENTGOAL IS [4] -~~~ -3455116 UP 11 -3455115 1024 255 -3455168 DOWN 11 -3455168 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3455204 homeCount = 29 -3455205 waitCount = 14 -3455205 ripCount = 11 -3455206 locktype1 = 2 -3455206 locktype2 = 2 -3455207 locktype3 = 1 -3455207 goalCount = 0 -3455208 goalTotal = 10 -3455208 otherCount = 13 -~~~ -3455209 CURRENTGOAL IS [4] -~~~ -3467183 UP 5 -3467183 16 255 -~~~ -~~~ -3467241 DOWN 5 -3467241 0 255 -3467259 16 255 -~~~ -~~~ -3467270 16 254 -~~~ -~~~ -3467271 16 252 -~~~ -~~~ -3467273 16 248 -~~~ -~~~ -3467275 16 240 -~~~ -~~~ -3467277 16 224 -~~~ -~~~ -3467279 16 192 -~~~ -~~~ -3467281 16 128 -~~~ -~~~ -3467282 16 0 -~~~ -~~~ -3467284 16 512 -3467285 homeCount = 29 -3467286 waitCount = 14 -3467286 ripCount = 11 -3467287 locktype1 = 2 -3467308 locktype2 = 2 -3467308 locktype3 = 1 -3467309 goalCount = 0 -3467309 goalTotal = 10 -3467310 otherCount = 14 -~~~ -3467494 DOWN 5 -3467494 0 512 -3470785 UP 10 -3470785 waslock = 0 -3470785 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3470815 512 16777728 -~~~ -3470959 DOWN 10 -3470959 0 16777728 -3470965 0 512 -3470971 UP 10 -3470971 waslock = 0 -3470971 512 512 -~~~ -~~~ -3470990 512 1536 -~~~ -~~~ -3470992 512 1024 -3470993 homeCount = 30 -3470994 waitCount = 14 -3470994 ripCount = 11 -3470995 locktype1 = 2 -3470995 locktype2 = 2 -3470996 locktype3 = 1 -3470996 goalCount = 0 -3470997 goalTotal = 10 -3470997 otherCount = 14 -~~~ -~~~ -3471019 DOWN 10 -3471019 0 1024 -~~~ -~~~ -~~~ -~~~ -3471035 homeCount = 30 -3471036 waitCount = 14 -3471036 ripCount = 11 -3471037 locktype1 = 2 -3471037 locktype2 = 2 -3471038 locktype3 = 1 -3471038 goalCount = 0 -3471039 goalTotal = 10 -3471039 otherCount = 14 -~~~ -3471096 UP 10 -3471097 waslock = 0 -3471096 512 1024 -~~~ -3474249 DOWN 10 -3474249 0 1024 -~~~ -~~~ -~~~ -~~~ -3474271 homeCount = 30 -3474271 waitCount = 14 -3474272 ripCount = 11 -3474272 locktype1 = 2 -3474273 locktype2 = 2 -3474273 locktype3 = 1 -3474274 goalCount = 0 -3474274 goalTotal = 10 -3474275 otherCount = 14 -~~~ -3474308 UP 10 -3474308 waslock = 0 -3474307 512 1024 -3474331 DOWN 10 -3474331 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -3474354 homeCount = 30 -3474354 waitCount = 14 -3474355 ripCount = 11 -3474355 locktype1 = 2 -3474356 locktype2 = 2 -3474356 locktype3 = 1 -3474356 goalCount = 0 -3474357 goalTotal = 10 -3474357 otherCount = 14 -~~~ -3476396 UP 11 -3476396 1024 1024 -3476414 DOWN 11 -3476414 0 1024 -3476440 UP 11 -3476440 1024 1024 -3477699 DOWN 11 -3477699 0 1024 -3477756 UP 11 -3477756 1024 1024 -3482397 BEEP1 -3482397 BEEP2 -~~~ -~~~ -~~~ -3482421 1024 33555456 -~~~ -3482571 1024 1024 -3487234 DOWN 11 -3487234 0 1024 -~~~ -~~~ -3487260 0 0 -~~~ -~~~ -3487261 0 1 -~~~ -~~~ -3487263 0 3 -~~~ -~~~ -3487265 0 7 -~~~ -~~~ -3487267 0 15 -~~~ -~~~ -3487269 0 31 -~~~ -~~~ -3487271 0 63 -~~~ -~~~ -3487272 0 127 -~~~ -~~~ -3487274 0 255 -3487275 homeCount = 30 -3487276 waitCount = 14 -3487276 ripCount = 12 -3487277 locktype1 = 2 -3487277 locktype2 = 2 -3487278 locktype3 = 1 -3487299 goalCount = 0 -3487299 goalTotal = 10 -3487299 otherCount = 14 -~~~ -3487301 CURRENTGOAL IS [4] -~~~ -3492075 UP 3 -3492075 4 255 -~~~ -~~~ -3493640 DOWN 3 -3493640 0 255 -~~~ -~~~ -3493660 0 254 -~~~ -~~~ -3493662 0 252 -~~~ -~~~ -3493664 0 248 -~~~ -~~~ -3493666 0 240 -~~~ -~~~ -3493668 0 224 -~~~ -~~~ -3493669 0 192 -~~~ -~~~ -3493671 0 128 -~~~ -~~~ -3493673 0 0 -~~~ -~~~ -3493675 0 512 -3493676 homeCount = 30 -3493676 waitCount = 14 -3493677 ripCount = 12 -3493677 locktype1 = 2 -3493678 locktype2 = 2 -3493699 locktype3 = 1 -3493699 goalCount = 0 -3493700 goalTotal = 10 -3493700 otherCount = 15 -~~~ -3496771 UP 10 -3496771 waslock = 0 -3496771 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3496799 512 16777728 -~~~ -3496949 512 512 -3496960 DOWN 10 -3496959 0 512 -~~~ -~~~ -3496976 0 2560 -~~~ -~~~ -3496978 0 2048 -3496979 homeCount = 31 -3496980 waitCount = 14 -3496980 ripCount = 12 -3496981 locktype1 = 2 -3496981 locktype2 = 2 -3496982 locktype3 = 1 -3496982 goalCount = 0 -3496983 goalTotal = 10 -3496983 otherCount = 15 -~~~ -3496994 UP 10 -3496994 waslock = 0 -3496994 512 2048 -~~~ -3500863 DOWN 10 -3500863 0 2048 -~~~ -~~~ -~~~ -~~~ -3500884 homeCount = 31 -3500884 waitCount = 14 -3500885 ripCount = 12 -3500885 locktype1 = 2 -3500886 locktype2 = 2 -3500886 locktype3 = 1 -3500887 goalCount = 0 -3500887 goalTotal = 10 -3500888 otherCount = 15 -~~~ -3502510 UP 12 -3502510 2048 2048 -3503845 DOWN 12 -3503845 0 2048 -3503872 UP 12 -3503872 2048 2048 -3508139 DOWN 12 -3508139 0 2048 -3508145 UP 12 -3508145 2048 2048 -3508156 DOWN 12 -3508156 0 2048 -3508173 UP 12 -3508173 2048 2048 -3508510 CLICK1 -3508510 CLICK2 -~~~ -~~~ -~~~ -3508533 2048 67110912 -~~~ -3508683 2048 2048 -3515792 DOWN 12 -3515792 0 2048 -~~~ -~~~ -3515814 0 0 -~~~ -~~~ -3515816 0 1 -~~~ -~~~ -3515818 0 3 -~~~ -~~~ -3515820 0 7 -~~~ -~~~ -3515821 0 15 -~~~ -~~~ -3515823 0 31 -~~~ -~~~ -3515825 0 63 -~~~ -~~~ -3515827 0 127 -~~~ -~~~ -3515829 0 255 -3515830 homeCount = 31 -3515830 waitCount = 15 -3515831 ripCount = 12 -3515831 locktype1 = 2 -3515832 locktype2 = 2 -3515853 locktype3 = 1 -3515853 goalCount = 0 -3515854 goalTotal = 10 -3515854 otherCount = 15 -~~~ -3515855 CURRENTGOAL IS [4] -~~~ -3521707 UP 8 -3521707 128 255 -~~~ -~~~ -3522495 DOWN 8 -3522494 0 255 -~~~ -~~~ -3522516 0 254 -~~~ -~~~ -3522517 0 252 -~~~ -~~~ -3522519 0 248 -~~~ -~~~ -3522521 0 240 -~~~ -~~~ -3522523 0 224 -~~~ -~~~ -3522525 0 192 -~~~ -~~~ -3522526 0 128 -~~~ -~~~ -3522528 0 0 -~~~ -~~~ -3522530 0 512 -3522531 homeCount = 31 -3522532 waitCount = 15 -3522532 ripCount = 12 -3522533 locktype1 = 2 -3522533 locktype2 = 2 -3522554 locktype3 = 1 -3522554 goalCount = 0 -3522555 goalTotal = 10 -3522555 otherCount = 16 -~~~ -3528013 UP 10 -3528013 waslock = 0 -3528013 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3528040 512 16777728 -~~~ -3528190 512 512 -3532039 DOWN 10 -3532039 0 512 -3532051 UP 10 -3532051 waslock = 0 -3532051 512 512 -~~~ -~~~ -3532064 512 2560 -~~~ -~~~ -3532066 512 2048 -3532067 homeCount = 32 -3532068 waitCount = 15 -3532068 ripCount = 12 -3532069 locktype1 = 2 -3532069 locktype2 = 2 -3532070 locktype3 = 1 -3532070 goalCount = 0 -3532071 goalTotal = 10 -3532071 otherCount = 16 -~~~ -~~~ -3532129 DOWN 10 -3532129 0 2048 -~~~ -~~~ -~~~ -~~~ -3532159 homeCount = 32 -3532159 waitCount = 15 -3532160 ripCount = 12 -3532160 locktype1 = 2 -3532161 locktype2 = 2 -3532161 locktype3 = 1 -3532162 goalCount = 0 -3532162 goalTotal = 10 -3532163 otherCount = 16 -~~~ -3533716 UP 12 -3533716 2048 2048 -3535140 DOWN 12 -3535140 0 2048 -3535175 UP 12 -3535175 2048 2048 -3535301 DOWN 12 -3535301 0 2048 -3535317 UP 12 -3535317 2048 2048 -3540716 CLICK1 -3540716 CLICK2 -~~~ -~~~ -~~~ -3540738 2048 67110912 -~~~ -3540888 2048 2048 -3547369 DOWN 12 -3547369 0 2048 -~~~ -~~~ -3547388 0 0 -~~~ -~~~ -3547390 0 1 -~~~ -~~~ -3547391 0 3 -~~~ -~~~ -3547393 0 7 -~~~ -~~~ -3547395 0 15 -~~~ -~~~ -3547397 0 31 -~~~ -~~~ -3547399 0 63 -~~~ -~~~ -3547401 0 127 -~~~ -~~~ -3547402 0 255 -3547403 homeCount = 32 -3547404 waitCount = 16 -3547404 ripCount = 12 -3547405 locktype1 = 2 -3547405 locktype2 = 2 -3547427 locktype3 = 1 -3547427 goalCount = 0 -3547428 goalTotal = 10 -3547428 otherCount = 16 -~~~ -3547429 CURRENTGOAL IS [4] -~~~ -3561111 UP 10 -3561112 waslock = 0 -3561111 512 255 -~~~ -3561132 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3561140 512 254 -~~~ -~~~ -3561142 512 252 -~~~ -~~~ -3561143 512 248 -~~~ -~~~ -3561145 512 240 -~~~ -~~~ -3561147 512 224 -~~~ -~~~ -3561149 512 192 -~~~ -~~~ -3561151 512 128 -~~~ -~~~ -3561152 512 0 -~~~ -~~~ -~~~ -3561157 0 0 -3561238 512 0 -3562992 0 0 -3564933 UP 11 -3564933 1024 0 -3565541 DOWN 11 -3565541 0 0 -3565809 UP 11 -3565809 1024 0 -3566154 DOWN 11 -3566154 0 0 -3576441 512 0 -3576538 0 0 -3582894 512 0 -3583443 0 0 -3583733 512 0 -3584225 0 0 -3584278 512 0 -3584343 0 0 -3584390 512 0 -3585280 0 0 -3585494 512 0 -3585871 0 0 -3586132 LOCKEND -~~~ -~~~ -~~~ -3586153 0 512 -3586897 UP 10 -3586897 waslock = 0 -3586897 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3586928 512 16777728 -~~~ -3587078 512 512 -3590979 DOWN 10 -3590979 0 512 -3590998 UP 10 -3590999 waslock = 0 -3590998 512 512 -~~~ -~~~ -3591002 512 1536 -~~~ -~~~ -3591004 512 1024 -3591005 homeCount = 33 -3591005 waitCount = 16 -3591006 ripCount = 12 -3591006 locktype1 = 2 -3591007 locktype2 = 3 -3591007 locktype3 = 1 -3591008 goalCount = 0 -3591008 goalTotal = 10 -3591009 otherCount = 16 -~~~ -~~~ -3591090 DOWN 10 -3591090 0 1024 -~~~ -~~~ -~~~ -~~~ -3591121 homeCount = 33 -3591121 waitCount = 16 -3591122 ripCount = 12 -3591122 locktype1 = 2 -3591123 locktype2 = 3 -3591123 locktype3 = 1 -3591124 goalCount = 0 -3591124 goalTotal = 10 -3591125 otherCount = 16 -~~~ -3591146 UP 10 -3591147 waslock = 0 -3591146 512 1024 -~~~ -3591191 DOWN 10 -3591191 0 1024 -~~~ -~~~ -~~~ -~~~ -3591219 homeCount = 33 -3591219 waitCount = 16 -3591220 ripCount = 12 -3591220 locktype1 = 2 -3591221 locktype2 = 3 -3591221 locktype3 = 1 -3591222 goalCount = 0 -3591222 goalTotal = 10 -3591223 otherCount = 16 -~~~ -3593272 UP 11 -3593272 1024 1024 -3593859 DOWN 11 -3593859 0 1024 -3593918 UP 11 -3593918 1024 1024 -3593945 DOWN 11 -3593945 0 1024 -3593960 UP 11 -3593960 1024 1024 -3594765 DOWN 11 -3594765 0 1024 -3594779 UP 11 -3594779 1024 1024 -3598015 DOWN 11 -3598015 0 1024 -3598034 UP 11 -3598034 1024 1024 -3600272 BEEP1 -3600272 BEEP2 -~~~ -~~~ -~~~ -3600296 1024 33555456 -~~~ -3600445 1024 1024 -3604781 DOWN 11 -3604781 0 1024 -3604791 UP 11 -3604791 1024 1024 -~~~ -~~~ -3604804 1024 0 -~~~ -~~~ -3604806 1024 1 -~~~ -~~~ -3604808 1024 3 -~~~ -~~~ -3604809 1024 7 -~~~ -~~~ -3604811 1024 15 -~~~ -~~~ -3604813 1024 31 -~~~ -~~~ -3604815 1024 63 -~~~ -~~~ -3604817 1024 127 -~~~ -~~~ -3604818 1024 255 -3604819 homeCount = 33 -3604820 waitCount = 16 -3604821 ripCount = 13 -3604821 locktype1 = 2 -3604842 locktype2 = 3 -3604843 locktype3 = 1 -3604843 goalCount = 0 -3604844 goalTotal = 10 -3604844 otherCount = 16 -~~~ -3604845 CURRENTGOAL IS [4] -~~~ -3604903 DOWN 11 -3604903 0 255 -3604925 UP 11 -3604925 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3604942 homeCount = 33 -3604943 waitCount = 16 -3604943 ripCount = 13 -3604944 locktype1 = 2 -3604944 locktype2 = 3 -3604945 locktype3 = 1 -3604945 goalCount = 0 -3604946 goalTotal = 10 -3604946 otherCount = 16 -~~~ -3604947 CURRENTGOAL IS [4] -~~~ -3605028 DOWN 11 -3605028 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3605064 homeCount = 33 -3605064 waitCount = 16 -3605065 ripCount = 13 -3605065 locktype1 = 2 -3605066 locktype2 = 3 -3605066 locktype3 = 1 -3605067 goalCount = 0 -3605067 goalTotal = 10 -3605068 otherCount = 16 -~~~ -3605069 CURRENTGOAL IS [4] -~~~ -3605092 UP 11 -3605092 1024 255 -3608325 DOWN 11 -3608325 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3608364 homeCount = 33 -3608364 waitCount = 16 -3608365 ripCount = 13 -3608365 locktype1 = 2 -3608366 locktype2 = 3 -3608366 locktype3 = 1 -3608367 goalCount = 0 -3608367 goalTotal = 10 -3608368 otherCount = 16 -~~~ -3608369 CURRENTGOAL IS [4] -~~~ -3608378 UP 11 -3608378 1024 255 -3608425 DOWN 11 -3608425 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3608464 homeCount = 33 -3608465 waitCount = 16 -3608465 ripCount = 13 -3608466 locktype1 = 2 -3608466 locktype2 = 3 -3608467 locktype3 = 1 -3608467 goalCount = 0 -3608467 goalTotal = 10 -3608468 otherCount = 16 -~~~ -3608469 CURRENTGOAL IS [4] -~~~ -3616545 UP 10 -3616545 waslock = 0 -3616545 512 255 -~~~ -3616569 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3616577 512 254 -~~~ -~~~ -3616579 512 252 -~~~ -~~~ -3616581 512 248 -~~~ -~~~ -3616582 512 240 -~~~ -~~~ -3616584 512 224 -~~~ -~~~ -3616586 512 192 -~~~ -~~~ -3616588 512 128 -~~~ -~~~ -3616590 512 0 -~~~ -~~~ -~~~ -3617133 0 0 -3617163 512 0 -3617761 0 0 -3617783 512 0 -3617868 0 0 -3618349 512 0 -3618488 0 0 -3620077 512 0 -3620300 0 0 -3623436 UP 12 -3623436 2048 0 -3623470 DOWN 12 -3623470 0 0 -3626087 512 0 -3626274 0 0 -3628560 UP 11 -3628560 1024 0 -3629234 DOWN 11 -3629234 0 0 -3640902 512 0 -3641510 0 0 -3641538 512 0 -3641569 LOCKEND -~~~ -~~~ -~~~ -3641592 512 512 -3641834 DOWN 10 -3641834 0 512 -3642205 UP 10 -3642205 waslock = 0 -3642205 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3642238 512 16777728 -~~~ -3642263 DOWN 10 -3642263 0 16777728 -~~~ -~~~ -3642281 0 16779776 -~~~ -~~~ -3642283 0 16779264 -3642284 homeCount = 34 -3642284 waitCount = 16 -3642285 ripCount = 13 -3642285 locktype1 = 2 -3642286 locktype2 = 4 -3642286 locktype3 = 1 -3642287 goalCount = 0 -3642287 goalTotal = 10 -3642288 otherCount = 16 -~~~ -3642363 UP 10 -3642363 waslock = 0 -3642363 512 16779264 -~~~ -3642386 DOWN 10 -3642386 0 16779264 -3642388 0 2048 -~~~ -~~~ -~~~ -~~~ -3642414 homeCount = 34 -3642415 waitCount = 16 -3642415 ripCount = 13 -3642416 locktype1 = 2 -3642416 locktype2 = 4 -3642416 locktype3 = 1 -3642417 goalCount = 0 -3642417 goalTotal = 10 -3642418 otherCount = 16 -~~~ -3642507 UP 10 -3642507 waslock = 0 -3642506 512 2048 -~~~ -3648667 DOWN 10 -3648667 0 2048 -3648678 UP 10 -3648678 waslock = 0 -3648678 512 2048 -~~~ -~~~ -~~~ -~~~ -3648694 homeCount = 34 -3648695 waitCount = 16 -3648695 ripCount = 13 -3648696 locktype1 = 2 -3648696 locktype2 = 4 -3648697 locktype3 = 1 -3648697 goalCount = 0 -3648698 goalTotal = 10 -3648698 otherCount = 16 -~~~ -~~~ -3648761 DOWN 10 -3648761 0 2048 -~~~ -~~~ -~~~ -~~~ -3648785 homeCount = 34 -3648786 waitCount = 16 -3648786 ripCount = 13 -3648787 locktype1 = 2 -3648787 locktype2 = 4 -3648788 locktype3 = 1 -3648788 goalCount = 0 -3648789 goalTotal = 10 -3648789 otherCount = 16 -~~~ -3648842 UP 10 -3648842 waslock = 0 -3648842 512 2048 -3648864 DOWN 10 -3648864 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3648895 homeCount = 34 -3648895 waitCount = 16 -3648895 ripCount = 13 -3648896 locktype1 = 2 -3648896 locktype2 = 4 -3648897 locktype3 = 1 -3648897 goalCount = 0 -3648898 goalTotal = 10 -3648898 otherCount = 16 -~~~ -3652123 UP 12 -3652123 2048 2048 -3652932 DOWN 12 -3652932 0 2048 -3652964 UP 12 -3652964 2048 2048 -3653181 DOWN 12 -3653181 0 2048 -3653233 UP 12 -3653233 2048 2048 -3654201 DOWN 12 -3654201 0 2048 -3654214 UP 12 -3654214 2048 2048 -3654302 DOWN 12 -3654302 0 2048 -3654322 UP 12 -3654322 2048 2048 -3656123 CLICK1 -3656123 CLICK2 -~~~ -~~~ -~~~ -3656142 2048 67110912 -~~~ -3656292 2048 2048 -3663270 DOWN 12 -3663270 0 2048 -~~~ -~~~ -3663292 0 0 -~~~ -~~~ -3663294 0 1 -~~~ -~~~ -3663295 0 3 -~~~ -~~~ -3663297 0 7 -~~~ -~~~ -3663299 0 15 -~~~ -~~~ -3663301 0 31 -~~~ -~~~ -3663303 0 63 -~~~ -~~~ -3663305 0 127 -~~~ -~~~ -3663306 0 255 -3663307 homeCount = 34 -3663308 waitCount = 17 -3663308 ripCount = 13 -3663309 locktype1 = 2 -3663309 locktype2 = 4 -3663310 locktype3 = 1 -3663331 goalCount = 0 -3663331 goalTotal = 10 -3663332 otherCount = 16 -~~~ -3663333 CURRENTGOAL IS [4] -~~~ -3663342 UP 12 -3663342 2048 255 -3663376 DOWN 12 -3663376 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3663417 homeCount = 34 -3663418 waitCount = 17 -3663418 ripCount = 13 -3663419 locktype1 = 2 -3663419 locktype2 = 4 -3663420 locktype3 = 1 -3663420 goalCount = 0 -3663421 goalTotal = 10 -3663421 otherCount = 16 -~~~ -3663422 CURRENTGOAL IS [4] -~~~ -3667780 UP 8 -3667780 128 255 -~~~ -~~~ -3669059 DOWN 8 -3669059 0 255 -~~~ -~~~ -3669082 0 254 -~~~ -~~~ -3669083 0 252 -~~~ -~~~ -3669085 0 248 -~~~ -~~~ -3669087 0 240 -~~~ -~~~ -3669089 0 224 -~~~ -~~~ -3669091 0 192 -~~~ -~~~ -3669092 0 128 -~~~ -~~~ -3669094 0 0 -~~~ -~~~ -3669096 0 512 -3669097 homeCount = 34 -3669098 waitCount = 17 -3669098 ripCount = 13 -3669099 locktype1 = 2 -3669099 locktype2 = 4 -3669120 locktype3 = 1 -3669120 goalCount = 0 -3669121 goalTotal = 10 -3669121 otherCount = 17 -~~~ -3669122 128 512 -3669779 DOWN 8 -3669778 0 512 -3673367 UP 10 -3673368 waslock = 0 -3673367 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3673398 512 16777728 -~~~ -3673548 512 512 -3674004 DOWN 10 -3674004 0 512 -~~~ -~~~ -3674022 0 2560 -~~~ -~~~ -3674024 0 2048 -3674025 homeCount = 35 -3674026 waitCount = 17 -3674026 ripCount = 13 -3674027 locktype1 = 2 -3674027 locktype2 = 4 -3674028 locktype3 = 1 -3674028 goalCount = 0 -3674029 goalTotal = 10 -3674029 otherCount = 17 -~~~ -3674070 UP 10 -3674071 waslock = 0 -3674070 512 2048 -~~~ -3674098 DOWN 10 -3674098 0 2048 -~~~ -~~~ -~~~ -~~~ -3674117 homeCount = 35 -3674117 waitCount = 17 -3674118 ripCount = 13 -3674118 locktype1 = 2 -3674119 locktype2 = 4 -3674119 locktype3 = 1 -3674120 goalCount = 0 -3674120 goalTotal = 10 -3674121 otherCount = 17 -~~~ -3674174 UP 10 -3674174 waslock = 0 -3674174 512 2048 -~~~ -3674249 DOWN 10 -3674249 0 2048 -~~~ -~~~ -~~~ -~~~ -3674275 homeCount = 35 -3674276 waitCount = 17 -3674276 ripCount = 13 -3674277 locktype1 = 2 -3674277 locktype2 = 4 -3674277 locktype3 = 1 -3674278 goalCount = 0 -3674278 goalTotal = 10 -3674279 otherCount = 17 -~~~ -3674293 UP 10 -3674293 waslock = 0 -3674293 512 2048 -~~~ -3677709 DOWN 10 -3677709 0 2048 -~~~ -~~~ -~~~ -~~~ -3677735 homeCount = 35 -3677736 waitCount = 17 -3677736 ripCount = 13 -3677737 locktype1 = 2 -3677737 locktype2 = 4 -3677738 locktype3 = 1 -3677738 goalCount = 0 -3677738 goalTotal = 10 -3677739 otherCount = 17 -~~~ -3677740 UP 10 -3677740 waslock = 0 -3677740 512 2048 -~~~ -3677816 DOWN 10 -3677816 0 2048 -~~~ -~~~ -~~~ -~~~ -3677847 homeCount = 35 -3677847 waitCount = 17 -3677848 ripCount = 13 -3677848 locktype1 = 2 -3677849 locktype2 = 4 -3677849 locktype3 = 1 -3677850 goalCount = 0 -3677850 goalTotal = 10 -3677851 otherCount = 17 -~~~ -3679816 UP 12 -3679816 2048 2048 -3681588 DOWN 12 -3681588 0 2048 -3681597 UP 12 -3681597 2048 2048 -3684430 DOWN 12 -3684430 0 2048 -3684485 UP 12 -3684485 2048 2048 -3684747 DOWN 12 -3684747 0 2048 -3684948 LOCKOUT 3 -~~~ -3684973 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3684978 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3685030 UP 12 -3685030 2048 0 -3685082 DOWN 12 -3685082 0 0 -3685355 UP 12 -3685355 2048 0 -3692687 DOWN 12 -3692687 0 0 -3692745 UP 12 -3692745 2048 0 -3692881 DOWN 12 -3692881 0 0 -3692939 UP 12 -3692939 2048 0 -3694152 DOWN 12 -3694152 0 0 -3699170 UP 4 -3699170 8 0 -3699650 DOWN 4 -3699650 0 0 -3699701 8 0 -3700017 DOWN 4 -3700017 0 0 -3706263 512 0 -3706530 0 0 -3706569 512 0 -3707502 0 0 -3709664 512 0 -3709973 LOCKEND -~~~ -~~~ -~~~ -3709995 512 512 -3710150 DOWN 10 -3710150 0 512 -3710528 UP 10 -3710528 waslock = 0 -3710528 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3710560 512 16777728 -~~~ -3710592 DOWN 10 -3710592 0 16777728 -~~~ -~~~ -3710613 0 16778752 -~~~ -~~~ -3710615 0 16778240 -3710616 homeCount = 36 -3710616 waitCount = 17 -3710617 ripCount = 13 -3710617 locktype1 = 2 -3710618 locktype2 = 4 -3710618 locktype3 = 2 -3710618 goalCount = 0 -3710619 goalTotal = 10 -3710619 otherCount = 17 -~~~ -3710647 UP 10 -3710647 waslock = 0 -3710647 512 16778240 -~~~ -3710710 512 1024 -3710725 DOWN 10 -3710725 0 1024 -~~~ -~~~ -~~~ -~~~ -3710752 homeCount = 36 -3710752 waitCount = 17 -3710753 ripCount = 13 -3710753 locktype1 = 2 -3710754 locktype2 = 4 -3710754 locktype3 = 2 -3710755 goalCount = 0 -3710755 goalTotal = 10 -3710756 otherCount = 17 -~~~ -3710813 UP 10 -3710813 waslock = 0 -3710813 512 1024 -~~~ -3716169 DOWN 10 -3716169 0 1024 -~~~ -3716193 UP 10 -3716194 waslock = 0 -3716193 512 1024 -~~~ -~~~ -~~~ -3716197 homeCount = 36 -3716197 waitCount = 17 -3716198 ripCount = 13 -3716198 locktype1 = 2 -3716199 locktype2 = 4 -3716199 locktype3 = 2 -3716200 goalCount = 0 -3716200 goalTotal = 10 -3716201 otherCount = 17 -~~~ -~~~ -3716276 DOWN 10 -3716276 0 1024 -~~~ -~~~ -~~~ -~~~ -3716297 homeCount = 36 -3716297 waitCount = 17 -3716298 ripCount = 13 -3716298 locktype1 = 2 -3716299 locktype2 = 4 -3716299 locktype3 = 2 -3716300 goalCount = 0 -3716300 goalTotal = 10 -3716301 otherCount = 17 -~~~ -3717906 UP 11 -3717906 1024 1024 -3723028 DOWN 11 -3723028 0 1024 -3723040 UP 11 -3723040 1024 1024 -3724906 BEEP1 -3724906 BEEP2 -~~~ -~~~ -~~~ -3724926 1024 33555456 -~~~ -3725076 1024 1024 -3731454 DOWN 11 -3731454 0 1024 -~~~ -3731474 UP 11 -3731474 1024 1024 -~~~ -~~~ -3731475 1024 0 -~~~ -3731477 1024 1 -~~~ -~~~ -3731478 1024 3 -~~~ -~~~ -3731480 1024 7 -~~~ -~~~ -3731482 1024 15 -~~~ -~~~ -3731483 1024 31 -~~~ -~~~ -3731485 1024 63 -~~~ -~~~ -3731487 1024 127 -~~~ -~~~ -3731489 1024 255 -3731490 homeCount = 36 -3731490 waitCount = 17 -3731511 ripCount = 14 -3731512 locktype1 = 2 -3731512 locktype2 = 4 -3731513 locktype3 = 2 -3731513 goalCount = 0 -3731514 goalTotal = 10 -3731514 otherCount = 17 -~~~ -3731515 CURRENTGOAL IS [4] -~~~ -3731564 DOWN 11 -3731564 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3731600 homeCount = 36 -3731600 waitCount = 17 -3731601 ripCount = 14 -3731601 locktype1 = 2 -3731602 locktype2 = 4 -3731602 locktype3 = 2 -3731603 goalCount = 0 -3731603 goalTotal = 10 -3731604 otherCount = 17 -~~~ -3731605 CURRENTGOAL IS [4] -~~~ -3731649 UP 11 -3731648 1024 255 -3731667 DOWN 11 -3731667 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3731701 homeCount = 36 -3731702 waitCount = 17 -3731702 ripCount = 14 -3731703 locktype1 = 2 -3731703 locktype2 = 4 -3731704 locktype3 = 2 -3731704 goalCount = 0 -3731705 goalTotal = 10 -3731705 otherCount = 17 -~~~ -3731706 CURRENTGOAL IS [4] -~~~ -3745775 UP 10 -3745776 waslock = 0 -3745775 512 255 -~~~ -3745796 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3745804 512 254 -~~~ -~~~ -3745805 512 252 -~~~ -~~~ -3745807 512 248 -~~~ -~~~ -3745809 512 240 -~~~ -~~~ -3745811 512 224 -~~~ -~~~ -3745813 512 192 -~~~ -~~~ -3745815 512 128 -~~~ -~~~ -3745816 512 0 -~~~ -~~~ -~~~ -3745982 0 0 -3749232 512 0 -3749422 0 0 -3749467 512 0 -3749501 0 0 -3749833 512 0 -3750026 0 0 -3750243 512 0 -3750549 0 0 -3752435 512 0 -3753237 0 0 -3753302 512 0 -3753343 0 0 -3759767 512 0 -3760055 0 0 -3760344 512 0 -3760578 0 0 -3768463 512 0 -3768985 0 0 -3769220 512 0 -3769969 0 0 -3770796 LOCKEND -~~~ -~~~ -~~~ -3770817 0 512 -3771670 UP 10 -3771670 waslock = 0 -3771670 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3771703 512 16777728 -~~~ -3771725 DOWN 10 -3771725 0 16777728 -~~~ -~~~ -3771749 0 16779776 -~~~ -~~~ -3771751 0 16779264 -3771752 homeCount = 37 -3771753 waitCount = 17 -3771753 ripCount = 14 -3771754 locktype1 = 2 -3771754 locktype2 = 5 -3771755 locktype3 = 2 -3771755 goalCount = 0 -3771756 goalTotal = 10 -3771756 otherCount = 17 -~~~ -3771805 UP 10 -3771805 waslock = 0 -3771805 512 16779264 -~~~ -3771853 512 2048 -3776248 DOWN 10 -3776248 0 2048 -3776261 UP 10 -3776261 waslock = 0 -3776261 512 2048 -~~~ -~~~ -~~~ -~~~ -3776269 homeCount = 37 -3776269 waitCount = 17 -3776270 ripCount = 14 -3776270 locktype1 = 2 -3776271 locktype2 = 5 -3776271 locktype3 = 2 -3776272 goalCount = 0 -3776272 goalTotal = 10 -3776272 otherCount = 17 -~~~ -~~~ -3777488 DOWN 10 -3777488 0 2048 -~~~ -~~~ -~~~ -~~~ -3777511 homeCount = 37 -3777511 waitCount = 17 -3777512 ripCount = 14 -3777512 locktype1 = 2 -3777513 locktype2 = 5 -3777513 locktype3 = 2 -3777514 goalCount = 0 -3777514 goalTotal = 10 -3777515 otherCount = 17 -~~~ -3778917 UP 12 -3778916 2048 2048 -3780637 DOWN 12 -3780637 0 2048 -3780645 UP 12 -3780645 2048 2048 -3781520 DOWN 12 -3781520 0 2048 -3781545 UP 12 -3781544 2048 2048 -3781571 DOWN 12 -3781571 0 2048 -3781623 UP 12 -3781623 2048 2048 -3781643 DOWN 12 -3781643 0 2048 -3781678 UP 12 -3781678 2048 2048 -3784417 CLICK1 -3784417 CLICK2 -~~~ -~~~ -~~~ -3784438 2048 67110912 -~~~ -3784588 2048 2048 -3789657 DOWN 12 -3789657 0 2048 -~~~ -~~~ -3789677 0 0 -~~~ -~~~ -3789678 0 1 -~~~ -~~~ -3789680 0 3 -~~~ -~~~ -3789682 0 7 -~~~ -~~~ -3789684 0 15 -~~~ -~~~ -3789686 0 31 -~~~ -~~~ -3789688 0 63 -~~~ -~~~ -3789689 0 127 -~~~ -~~~ -3789691 0 255 -3789692 homeCount = 37 -3789693 waitCount = 18 -3789693 ripCount = 14 -3789694 locktype1 = 2 -3789694 locktype2 = 5 -3789715 locktype3 = 2 -3789716 goalCount = 0 -3789716 goalTotal = 10 -3789717 otherCount = 17 -~~~ -3789718 CURRENTGOAL IS [4] -~~~ -3789718 UP 12 -3789718 2048 255 -3789772 DOWN 12 -3789772 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3789807 homeCount = 37 -3789808 waitCount = 18 -3789808 ripCount = 14 -3789809 locktype1 = 2 -3789809 locktype2 = 5 -3789810 locktype3 = 2 -3789810 goalCount = 0 -3789811 goalTotal = 10 -3789811 otherCount = 17 -~~~ -3789812 CURRENTGOAL IS [4] -~~~ -3794235 UP 5 -3794235 16 255 -~~~ -~~~ -3795367 DOWN 5 -3795367 0 255 -~~~ -~~~ -3795392 0 254 -~~~ -~~~ -3795394 0 252 -~~~ -~~~ -3795396 0 248 -~~~ -~~~ -3795398 0 240 -~~~ -~~~ -3795399 0 224 -~~~ -~~~ -3795401 0 192 -~~~ -~~~ -3795403 0 128 -~~~ -~~~ -3795405 0 0 -~~~ -~~~ -3795407 0 512 -3795408 homeCount = 37 -3795408 waitCount = 18 -3795409 ripCount = 14 -3795409 locktype1 = 2 -3795410 locktype2 = 5 -3795431 locktype3 = 2 -3795431 goalCount = 0 -3795432 goalTotal = 10 -3795432 otherCount = 18 -~~~ -3795433 16 512 -3795632 DOWN 5 -3795632 0 512 -3795657 16 512 -3795681 DOWN 5 -3795681 0 512 -3799735 UP 10 -3799735 waslock = 0 -3799735 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3799766 512 16777728 -~~~ -3799916 512 512 -3800136 DOWN 10 -3800136 0 512 -~~~ -~~~ -3800161 0 2560 -~~~ -~~~ -3800163 0 2048 -3800164 homeCount = 38 -3800165 waitCount = 18 -3800165 ripCount = 14 -3800166 locktype1 = 2 -3800166 locktype2 = 5 -3800167 locktype3 = 2 -3800167 goalCount = 0 -3800168 goalTotal = 10 -3800168 otherCount = 18 -~~~ -3800211 UP 10 -3800211 waslock = 0 -3800211 512 2048 -3800219 DOWN 10 -3800219 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3800237 homeCount = 38 -3800238 waitCount = 18 -3800238 ripCount = 14 -3800239 locktype1 = 2 -3800239 locktype2 = 5 -3800239 locktype3 = 2 -3800240 goalCount = 0 -3800240 goalTotal = 10 -3800241 otherCount = 18 -~~~ -3800339 UP 10 -3800340 waslock = 0 -3800339 512 2048 -~~~ -3800385 DOWN 10 -3800385 0 2048 -3800396 UP 10 -3800396 waslock = 0 -3800396 512 2048 -~~~ -~~~ -~~~ -~~~ -3800409 homeCount = 38 -3800410 waitCount = 18 -3800410 ripCount = 14 -3800411 locktype1 = 2 -3800411 locktype2 = 5 -3800412 locktype3 = 2 -3800412 goalCount = 0 -3800413 goalTotal = 10 -3800413 otherCount = 18 -~~~ -3800414 DOWN 10 -3800414 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3800451 homeCount = 38 -3800452 waitCount = 18 -3800452 ripCount = 14 -3800453 locktype1 = 2 -3800453 locktype2 = 5 -3800453 locktype3 = 2 -3800454 goalCount = 0 -3800454 goalTotal = 10 -3800455 otherCount = 18 -~~~ -3800468 UP 10 -3800468 waslock = 0 -3800467 512 2048 -~~~ -3803996 DOWN 10 -3803996 0 2048 -~~~ -~~~ -~~~ -~~~ -3804015 homeCount = 38 -3804016 waitCount = 18 -3804016 ripCount = 14 -3804017 locktype1 = 2 -3804017 locktype2 = 5 -3804018 locktype3 = 2 -3804018 goalCount = 0 -3804019 goalTotal = 10 -3804019 otherCount = 18 -~~~ -3804022 UP 10 -3804022 waslock = 0 -3804022 512 2048 -~~~ -3804098 DOWN 10 -3804098 0 2048 -~~~ -~~~ -~~~ -~~~ -3804127 homeCount = 38 -3804128 waitCount = 18 -3804128 ripCount = 14 -3804129 locktype1 = 2 -3804129 locktype2 = 5 -3804129 locktype3 = 2 -3804130 goalCount = 0 -3804130 goalTotal = 10 -3804131 otherCount = 18 -~~~ -3805817 UP 12 -3805817 2048 2048 -3807265 DOWN 12 -3807265 0 2048 -3807349 UP 12 -3807349 2048 2048 -3807359 DOWN 12 -3807359 0 2048 -3807468 UP 12 -3807468 2048 2048 -3807502 DOWN 12 -3807502 0 2048 -3807537 UP 12 -3807537 2048 2048 -3811317 CLICK1 -3811317 CLICK2 -~~~ -~~~ -~~~ -3811334 2048 67110912 -~~~ -3811484 2048 2048 -3817632 DOWN 12 -3817632 0 2048 -~~~ -~~~ -3817654 0 0 -~~~ -~~~ -3817656 0 1 -~~~ -~~~ -3817658 0 3 -~~~ -~~~ -3817660 0 7 -~~~ -~~~ -3817662 0 15 -~~~ -~~~ -3817664 0 31 -~~~ -~~~ -3817665 0 63 -~~~ -~~~ -3817667 0 127 -~~~ -~~~ -3817669 0 255 -3817670 homeCount = 38 -3817671 waitCount = 19 -3817671 ripCount = 14 -3817672 locktype1 = 2 -3817672 locktype2 = 5 -3817673 locktype3 = 2 -3817694 goalCount = 0 -3817694 goalTotal = 10 -3817695 otherCount = 18 -~~~ -3817696 CURRENTGOAL IS [4] -~~~ -3817696 UP 12 -3817696 2048 255 -3817723 DOWN 12 -3817723 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3817760 homeCount = 38 -3817760 waitCount = 19 -3817761 ripCount = 14 -3817761 locktype1 = 2 -3817762 locktype2 = 5 -3817762 locktype3 = 2 -3817763 goalCount = 0 -3817763 goalTotal = 10 -3817764 otherCount = 18 -~~~ -3817765 CURRENTGOAL IS [4] -~~~ -3821477 UP 1 -3821477 1 255 -~~~ -~~~ -3822494 DOWN 1 -3822494 0 255 -~~~ -~~~ -3822514 0 254 -~~~ -~~~ -3822516 0 252 -~~~ -~~~ -3822517 0 248 -~~~ -~~~ -3822519 0 240 -~~~ -~~~ -3822521 0 224 -~~~ -~~~ -3822523 0 192 -~~~ -~~~ -3822525 0 128 -~~~ -~~~ -3822526 0 0 -~~~ -~~~ -3822528 0 512 -3822529 homeCount = 38 -3822530 waitCount = 19 -3822530 ripCount = 14 -3822531 locktype1 = 2 -3822531 locktype2 = 5 -3822552 locktype3 = 2 -3822553 goalCount = 0 -3822553 goalTotal = 10 -3822554 otherCount = 19 -~~~ -3826161 UP 10 -3826161 waslock = 0 -3826161 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3826190 512 16777728 -~~~ -3826340 512 512 -3826395 DOWN 10 -3826395 0 512 -3826408 UP 10 -3826408 waslock = 0 -3826408 512 512 -~~~ -~~~ -3826416 512 1536 -~~~ -~~~ -3826418 512 1024 -3826419 homeCount = 39 -3826420 waitCount = 19 -3826420 ripCount = 14 -3826420 locktype1 = 2 -3826421 locktype2 = 5 -3826421 locktype3 = 2 -3826422 goalCount = 0 -3826422 goalTotal = 10 -3826423 otherCount = 19 -~~~ -~~~ -3829789 DOWN 10 -3829789 0 1024 -~~~ -~~~ -~~~ -~~~ -3829819 homeCount = 39 -3829820 waitCount = 19 -3829820 ripCount = 14 -3829821 locktype1 = 2 -3829821 locktype2 = 5 -3829822 locktype3 = 2 -3829822 goalCount = 0 -3829823 goalTotal = 10 -3829823 otherCount = 19 -~~~ -3829857 UP 10 -3829857 waslock = 0 -3829857 512 1024 -~~~ -3829908 DOWN 10 -3829908 0 1024 -~~~ -~~~ -~~~ -~~~ -3829939 homeCount = 39 -3829939 waitCount = 19 -3829940 ripCount = 14 -3829940 locktype1 = 2 -3829941 locktype2 = 5 -3829941 locktype3 = 2 -3829942 goalCount = 0 -3829942 goalTotal = 10 -3829943 otherCount = 19 -~~~ -3831810 UP 11 -3831810 1024 1024 -3834588 DOWN 11 -3834588 0 1024 -3834611 UP 11 -3834611 1024 1024 -3834810 BEEP1 -3834810 BEEP2 -~~~ -~~~ -~~~ -3834838 1024 33555456 -~~~ -3834988 1024 1024 -3843339 DOWN 11 -3843339 0 1024 -~~~ -~~~ -3843368 0 0 -~~~ -~~~ -3843370 0 1 -~~~ -~~~ -3843372 0 3 -~~~ -~~~ -3843373 0 7 -~~~ -~~~ -3843375 0 15 -~~~ -~~~ -3843377 0 31 -~~~ -~~~ -3843379 0 63 -~~~ -~~~ -3843381 0 127 -~~~ -~~~ -3843382 0 255 -3843383 homeCount = 39 -3843384 waitCount = 19 -3843384 ripCount = 15 -3843385 locktype1 = 2 -3843385 locktype2 = 5 -3843407 locktype3 = 2 -3843407 goalCount = 0 -3843408 goalTotal = 10 -3843408 otherCount = 19 -~~~ -3843409 CURRENTGOAL IS [4] -~~~ -3850007 UP 6 -3850007 32 255 -~~~ -~~~ -3850438 DOWN 6 -3850438 0 255 -~~~ -~~~ -3850460 0 254 -~~~ -~~~ -3850461 0 252 -~~~ -~~~ -3850463 0 248 -~~~ -~~~ -3850465 0 240 -~~~ -~~~ -3850467 0 224 -~~~ -~~~ -3850469 0 192 -~~~ -~~~ -3850471 0 128 -~~~ -~~~ -3850472 0 0 -~~~ -~~~ -3850474 0 512 -3850475 homeCount = 39 -3850476 waitCount = 19 -3850476 ripCount = 15 -3850477 locktype1 = 2 -3850477 locktype2 = 5 -3850498 locktype3 = 2 -3850499 goalCount = 0 -3850499 goalTotal = 10 -3850500 otherCount = 20 -~~~ -3854285 UP 10 -3854285 waslock = 0 -3854285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3854318 512 16777728 -~~~ -3854327 DOWN 10 -3854327 0 16777728 -~~~ -~~~ -3854355 0 16778752 -~~~ -~~~ -3854357 0 16778240 -3854358 homeCount = 40 -3854359 waitCount = 19 -3854359 ripCount = 15 -3854359 locktype1 = 2 -3854360 locktype2 = 5 -3854360 locktype3 = 2 -3854361 goalCount = 0 -3854361 goalTotal = 10 -3854362 otherCount = 20 -~~~ -3854428 UP 10 -3854428 waslock = 0 -3854428 512 16778240 -~~~ -3854468 512 1024 -3854575 DOWN 10 -3854575 0 1024 -3854594 UP 10 -3854594 waslock = 0 -3854594 512 1024 -~~~ -~~~ -~~~ -~~~ -3854615 homeCount = 40 -3854616 waitCount = 19 -3854616 ripCount = 15 -3854617 locktype1 = 2 -3854617 locktype2 = 5 -3854617 locktype3 = 2 -3854618 goalCount = 0 -3854618 goalTotal = 10 -3854619 otherCount = 20 -~~~ -~~~ -3858624 DOWN 10 -3858624 0 1024 -3858631 UP 10 -3858632 waslock = 0 -3858631 512 1024 -~~~ -~~~ -~~~ -~~~ -3858656 homeCount = 40 -3858657 waitCount = 19 -3858657 ripCount = 15 -3858658 locktype1 = 2 -3858658 locktype2 = 5 -3858659 locktype3 = 2 -3858659 goalCount = 0 -3858660 goalTotal = 10 -3858660 otherCount = 20 -~~~ -~~~ -3858741 DOWN 10 -3858741 0 1024 -~~~ -~~~ -~~~ -~~~ -3858764 homeCount = 40 -3858764 waitCount = 19 -3858765 ripCount = 15 -3858765 locktype1 = 2 -3858765 locktype2 = 5 -3858766 locktype3 = 2 -3858766 goalCount = 0 -3858767 goalTotal = 10 -3858767 otherCount = 20 -~~~ -3858768 UP 10 -3858768 waslock = 0 -3858768 512 1024 -~~~ -3858851 DOWN 10 -3858851 0 1024 -~~~ -~~~ -~~~ -~~~ -3858874 homeCount = 40 -3858874 waitCount = 19 -3858875 ripCount = 15 -3858875 locktype1 = 2 -3858876 locktype2 = 5 -3858876 locktype3 = 2 -3858877 goalCount = 0 -3858877 goalTotal = 10 -3858878 otherCount = 20 -~~~ -3861332 UP 11 -3861332 1024 1024 -3864187 DOWN 11 -3864187 0 1024 -3864226 UP 11 -3864226 1024 1024 -3864504 DOWN 11 -3864504 0 1024 -3864515 UP 11 -3864515 1024 1024 -3869332 BEEP1 -3869332 BEEP2 -~~~ -~~~ -~~~ -3869353 1024 33555456 -~~~ -3869503 1024 1024 -3877388 DOWN 11 -3877388 0 1024 -~~~ -~~~ -3877411 0 0 -~~~ -~~~ -3877413 0 1 -~~~ -~~~ -3877415 0 3 -~~~ -~~~ -3877416 0 7 -~~~ -~~~ -3877418 0 15 -~~~ -~~~ -3877420 0 31 -~~~ -~~~ -3877422 0 63 -~~~ -~~~ -3877424 0 127 -~~~ -~~~ -3877425 0 255 -3877426 homeCount = 40 -3877427 waitCount = 19 -3877427 ripCount = 16 -3877428 locktype1 = 2 -3877428 locktype2 = 5 -3877429 locktype3 = 2 -3877450 goalCount = 0 -3877450 goalTotal = 10 -3877451 otherCount = 20 -~~~ -3877452 CURRENTGOAL IS [4] -~~~ -3877452 UP 11 -3877452 1024 255 -3877495 DOWN 11 -3877495 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3877536 homeCount = 40 -3877537 waitCount = 19 -3877537 ripCount = 16 -3877538 locktype1 = 2 -3877538 locktype2 = 5 -3877539 locktype3 = 2 -3877539 goalCount = 0 -3877540 goalTotal = 10 -3877540 otherCount = 20 -~~~ -3877541 CURRENTGOAL IS [4] -~~~ -3888649 UP 10 -3888649 waslock = 0 -3888649 512 255 -~~~ -3888671 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3888679 512 254 -~~~ -~~~ -3888681 512 252 -~~~ -~~~ -3888683 512 248 -~~~ -~~~ -3888684 512 240 -~~~ -~~~ -3888686 512 224 -~~~ -~~~ -3888688 512 192 -~~~ -~~~ -3888690 512 128 -~~~ -~~~ -3888692 512 0 -~~~ -~~~ -~~~ -3888764 0 0 -3888945 512 0 -3889129 0 0 -3892595 UP 11 -3892595 1024 0 -3892720 DOWN 11 -3892720 0 0 -3896362 512 0 -3896505 0 0 -3896586 512 0 -3896737 0 0 -3896765 512 0 -3897158 0 0 -3897194 512 0 -3897289 0 0 -3897321 512 0 -3897709 0 0 -3899622 512 0 -3900148 0 0 -3906959 512 0 -3908083 0 0 -3908132 512 0 -3908168 0 0 -3913671 LOCKEND -~~~ -~~~ -~~~ -3913693 0 512 -3919562 UP 10 -3919562 waslock = 0 -3919562 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3919587 512 16777728 -~~~ -3919709 DOWN 10 -3919709 0 16777728 -3919737 0 512 -~~~ -~~~ -3919739 0 1536 -~~~ -~~~ -3919740 0 1024 -3919741 homeCount = 41 -3919742 waitCount = 19 -3919742 ripCount = 16 -3919743 locktype1 = 2 -3919743 locktype2 = 6 -3919744 locktype3 = 2 -3919744 goalCount = 0 -3919745 goalTotal = 10 -3919745 otherCount = 20 -~~~ -3919773 UP 10 -3919773 waslock = 0 -3919773 512 1024 -3919795 DOWN 10 -3919795 0 1024 -~~~ -3919811 UP 10 -3919811 waslock = 0 -3919811 512 1024 -~~~ -~~~ -~~~ -~~~ -3919830 homeCount = 41 -3919830 waitCount = 19 -3919831 ripCount = 16 -3919831 locktype1 = 2 -3919832 locktype2 = 6 -3919832 locktype3 = 2 -3919833 goalCount = 0 -3919833 goalTotal = 10 -3919834 otherCount = 20 -~~~ -~~~ -3924979 DOWN 10 -3924979 0 1024 -~~~ -~~~ -~~~ -~~~ -3925005 homeCount = 41 -3925006 waitCount = 19 -3925006 ripCount = 16 -3925007 locktype1 = 2 -3925007 locktype2 = 6 -3925008 locktype3 = 2 -3925008 goalCount = 0 -3925008 goalTotal = 10 -3925009 otherCount = 20 -~~~ -3926610 UP 11 -3926610 1024 1024 -3926694 DOWN 11 -3926694 0 1024 -3926742 UP 11 -3926742 1024 1024 -3930573 DOWN 11 -3930573 0 1024 -3930600 UP 11 -3930600 1024 1024 -3930610 BEEP1 -3930610 BEEP2 -~~~ -~~~ -~~~ -3930628 1024 33555456 -~~~ -3930778 1024 1024 -3937964 DOWN 11 -3937964 0 1024 -3937975 UP 11 -3937975 1024 1024 -~~~ -~~~ -3937994 1024 0 -~~~ -~~~ -3937996 1024 1 -~~~ -~~~ -3937997 1024 3 -~~~ -~~~ -3937999 1024 7 -~~~ -~~~ -3938001 1024 15 -~~~ -~~~ -3938003 1024 31 -~~~ -~~~ -3938005 1024 63 -~~~ -~~~ -3938006 1024 127 -~~~ -~~~ -3938008 1024 255 -3938009 homeCount = 41 -3938010 waitCount = 19 -3938010 ripCount = 17 -3938011 locktype1 = 2 -3938031 locktype2 = 6 -3938032 locktype3 = 2 -3938032 goalCount = 0 -3938033 goalTotal = 10 -3938033 otherCount = 20 -~~~ -3938034 CURRENTGOAL IS [4] -~~~ -3938094 DOWN 11 -3938094 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3938130 homeCount = 41 -3938131 waitCount = 19 -3938131 ripCount = 17 -3938132 locktype1 = 2 -3938132 locktype2 = 6 -3938133 locktype3 = 2 -3938133 goalCount = 0 -3938134 goalTotal = 10 -3938134 otherCount = 20 -~~~ -3938135 CURRENTGOAL IS [4] -~~~ -3944182 UP 7 -3944182 64 255 -~~~ -~~~ -3945239 DOWN 7 -3945239 0 255 -~~~ -~~~ -3945265 0 254 -~~~ -~~~ -3945267 0 252 -~~~ -~~~ -3945269 0 248 -~~~ -~~~ -3945271 0 240 -~~~ -~~~ -3945272 0 224 -~~~ -~~~ -3945274 0 192 -~~~ -~~~ -3945276 0 128 -~~~ -~~~ -3945278 0 0 -~~~ -~~~ -3945280 0 512 -3945281 homeCount = 41 -3945281 waitCount = 19 -3945282 ripCount = 17 -3945282 locktype1 = 2 -3945283 locktype2 = 6 -3945304 locktype3 = 2 -3945304 goalCount = 0 -3945305 goalTotal = 10 -3945305 otherCount = 21 -~~~ -3945639 64 512 -3945686 DOWN 7 -3945686 0 512 -3950837 UP 10 -3950838 waslock = 0 -3950837 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3950872 512 16777728 -~~~ -3951022 512 512 -3955553 DOWN 10 -3955553 0 512 -~~~ -~~~ -3955574 0 2560 -~~~ -~~~ -3955576 0 2048 -3955577 homeCount = 42 -3955578 waitCount = 19 -3955578 ripCount = 17 -3955579 locktype1 = 2 -3955579 locktype2 = 6 -3955580 locktype3 = 2 -3955580 goalCount = 0 -3955581 goalTotal = 10 -3955581 otherCount = 21 -~~~ -3955584 UP 10 -3955584 waslock = 0 -3955584 512 2048 -~~~ -3955653 DOWN 10 -3955653 0 2048 -~~~ -~~~ -~~~ -~~~ -3955679 homeCount = 42 -3955679 waitCount = 19 -3955680 ripCount = 17 -3955680 locktype1 = 2 -3955681 locktype2 = 6 -3955681 locktype3 = 2 -3955682 goalCount = 0 -3955682 goalTotal = 10 -3955683 otherCount = 21 -~~~ -3957642 UP 12 -3957642 2048 2048 -3960221 DOWN 12 -3960221 0 2048 -3960243 UP 12 -3960243 2048 2048 -3960399 DOWN 12 -3960399 0 2048 -3960427 UP 12 -3960427 2048 2048 -3960642 CLICK1 -3960642 CLICK2 -~~~ -~~~ -~~~ -3960669 2048 67110912 -~~~ -3960819 2048 2048 -3965466 DOWN 12 -3965465 0 2048 -~~~ -~~~ -3965487 0 0 -~~~ -~~~ -3965489 0 1 -~~~ -~~~ -3965491 0 3 -~~~ -~~~ -3965492 0 7 -~~~ -~~~ -3965494 0 15 -~~~ -~~~ -3965496 0 31 -~~~ -~~~ -3965498 0 63 -~~~ -~~~ -3965500 0 127 -~~~ -~~~ -3965502 0 255 -3965503 homeCount = 42 -3965503 waitCount = 20 -3965504 ripCount = 17 -3965504 locktype1 = 2 -3965505 locktype2 = 6 -3965505 locktype3 = 2 -3965526 goalCount = 0 -3965526 goalTotal = 10 -3965527 otherCount = 21 -~~~ -3965528 CURRENTGOAL IS [4] -~~~ -3965532 UP 12 -3965532 2048 255 -3965567 DOWN 12 -3965567 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3965604 homeCount = 42 -3965604 waitCount = 20 -3965605 ripCount = 17 -3965605 locktype1 = 2 -3965606 locktype2 = 6 -3965606 locktype3 = 2 -3965607 goalCount = 0 -3965607 goalTotal = 10 -3965608 otherCount = 21 -~~~ -3965609 CURRENTGOAL IS [4] -~~~ -3978210 UP 1 -3978210 1 255 -~~~ -~~~ -3979269 DOWN 1 -3979269 0 255 -~~~ -~~~ -3979288 0 254 -~~~ -~~~ -3979290 0 252 -~~~ -~~~ -3979292 0 248 -~~~ -~~~ -3979294 0 240 -~~~ -~~~ -3979295 0 224 -~~~ -~~~ -3979297 0 192 -~~~ -~~~ -3979299 0 128 -~~~ -~~~ -3979301 0 0 -~~~ -~~~ -3979303 0 512 -3979304 homeCount = 42 -3979304 waitCount = 20 -3979305 ripCount = 17 -3979305 locktype1 = 2 -3979306 locktype2 = 6 -3979326 locktype3 = 2 -3979327 goalCount = 0 -3979327 goalTotal = 10 -3979328 otherCount = 22 -~~~ -3982606 UP 10 -3982607 waslock = 0 -3982606 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3982633 512 16777728 -~~~ -3982783 512 512 -3982795 DOWN 10 -3982795 0 512 -~~~ -~~~ -3982807 0 1536 -~~~ -~~~ -3982809 0 1024 -3982810 homeCount = 43 -3982811 waitCount = 20 -3982811 ripCount = 17 -3982812 locktype1 = 2 -3982812 locktype2 = 6 -3982813 locktype3 = 2 -3982813 goalCount = 0 -3982814 goalTotal = 10 -3982814 otherCount = 22 -~~~ -3982834 UP 10 -3982834 waslock = 0 -3982834 512 1024 -~~~ -3987599 DOWN 10 -3987599 0 1024 -3987616 UP 10 -3987617 waslock = 0 -3987616 512 1024 -~~~ -~~~ -~~~ -~~~ -3987621 homeCount = 43 -3987622 waitCount = 20 -3987622 ripCount = 17 -3987623 locktype1 = 2 -3987623 locktype2 = 6 -3987624 locktype3 = 2 -3987624 goalCount = 0 -3987625 goalTotal = 10 -3987625 otherCount = 22 -~~~ -~~~ -3987720 DOWN 10 -3987720 0 1024 -~~~ -~~~ -~~~ -~~~ -3987742 homeCount = 43 -3987742 waitCount = 20 -3987743 ripCount = 17 -3987743 locktype1 = 2 -3987744 locktype2 = 6 -3987744 locktype3 = 2 -3987745 goalCount = 0 -3987745 goalTotal = 10 -3987746 otherCount = 22 -~~~ -3987749 UP 10 -3987749 waslock = 0 -3987749 512 1024 -~~~ -3987825 DOWN 10 -3987825 0 1024 -~~~ -~~~ -~~~ -~~~ -3987859 homeCount = 43 -3987860 waitCount = 20 -3987860 ripCount = 17 -3987861 locktype1 = 2 -3987861 locktype2 = 6 -3987862 locktype3 = 2 -3987862 goalCount = 0 -3987862 goalTotal = 10 -3987863 otherCount = 22 -~~~ -3989547 UP 11 -3989547 1024 1024 -3995048 BEEP1 -3995048 BEEP2 -~~~ -~~~ -~~~ -3995074 1024 33555456 -~~~ -3995224 1024 1024 -4000147 DOWN 11 -4000147 0 1024 -~~~ -~~~ -4000174 0 0 -~~~ -~~~ -4000176 UP 11 -4000176 1024 1 -~~~ -~~~ -4000178 1024 3 -~~~ -~~~ -4000180 1024 7 -~~~ -~~~ -4000181 1024 15 -~~~ -~~~ -4000183 1024 31 -~~~ -~~~ -4000185 1024 63 -~~~ -~~~ -4000187 1024 127 -~~~ -~~~ -4000189 1024 255 -4000190 homeCount = 43 -4000190 waitCount = 20 -4000191 ripCount = 18 -4000212 locktype1 = 2 -4000212 locktype2 = 6 -4000213 locktype3 = 2 -4000213 goalCount = 0 -4000214 goalTotal = 10 -4000214 otherCount = 22 -~~~ -4000215 CURRENTGOAL IS [4] -~~~ -4002715 DOWN 11 -4002715 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4002752 homeCount = 43 -4002752 waitCount = 20 -4002753 ripCount = 18 -4002753 locktype1 = 2 -4002754 locktype2 = 6 -4002754 locktype3 = 2 -4002755 goalCount = 0 -4002755 goalTotal = 10 -4002756 otherCount = 22 -~~~ -4002757 CURRENTGOAL IS [4] -~~~ -4002789 UP 11 -4002789 1024 255 -4002814 DOWN 11 -4002814 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4002852 homeCount = 43 -4002853 waitCount = 20 -4002853 ripCount = 18 -4002854 locktype1 = 2 -4002854 locktype2 = 6 -4002855 locktype3 = 2 -4002855 goalCount = 0 -4002855 goalTotal = 10 -4002856 otherCount = 22 -~~~ -4002857 CURRENTGOAL IS [4] -~~~ -4017754 UP 4 -4017754 8 255 -~~~ -~~~ -4017778 outer reward -~~~ -4017778 8 524543 -~~~ -~~~ -4018228 8 255 -4026115 DOWN 4 -4026115 0 255 -4026124 8 255 -~~~ -~~~ -4026135 8 254 -~~~ -~~~ -4026137 8 252 -~~~ -~~~ -4026139 8 248 -~~~ -~~~ -4026141 8 240 -~~~ -~~~ -4026143 8 224 -~~~ -~~~ -4026145 8 192 -~~~ -~~~ -4026146 8 128 -~~~ -~~~ -4026148 8 0 -~~~ -~~~ -4026150 8 512 -4026151 homeCount = 43 -4026152 waitCount = 20 -4026152 ripCount = 18 -4026153 locktype1 = 2 -4026153 locktype2 = 6 -4026174 locktype3 = 2 -4026175 goalCount = 1 -4026175 goalTotal = 11 -4026176 otherCount = 22 -~~~ -4026210 DOWN 4 -4026210 0 512 -4031912 UP 10 -4031913 waslock = 0 -4031912 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4031942 512 16777728 -~~~ -4032092 512 512 -4034692 DOWN 10 -4034692 0 512 -4034708 UP 10 -4034708 waslock = 0 -4034708 512 512 -~~~ -~~~ -4034727 512 1536 -~~~ -~~~ -4034729 512 1024 -4034730 homeCount = 44 -4034730 waitCount = 20 -4034731 ripCount = 18 -4034731 locktype1 = 2 -4034732 locktype2 = 6 -4034732 locktype3 = 2 -4034733 goalCount = 1 -4034733 goalTotal = 11 -4034734 otherCount = 22 -~~~ -~~~ -4034802 DOWN 10 -4034802 0 1024 -~~~ -~~~ -~~~ -~~~ -4034829 homeCount = 44 -4034829 waitCount = 20 -4034830 ripCount = 18 -4034830 locktype1 = 2 -4034831 locktype2 = 6 -4034831 locktype3 = 2 -4034832 goalCount = 1 -4034832 goalTotal = 11 -4034833 otherCount = 22 -~~~ -4034845 UP 10 -4034845 waslock = 0 -4034845 512 1024 -~~~ -4034916 DOWN 10 -4034916 0 1024 -~~~ -~~~ -~~~ -~~~ -4034938 homeCount = 44 -4034939 waitCount = 20 -4034939 ripCount = 18 -4034940 locktype1 = 2 -4034940 locktype2 = 6 -4034941 locktype3 = 2 -4034941 goalCount = 1 -4034942 goalTotal = 11 -4034942 otherCount = 22 -~~~ -4034974 UP 10 -4034974 waslock = 0 -4034974 512 1024 -~~~ -4036788 DOWN 10 -4036788 0 1024 -4036798 UP 10 -4036798 waslock = 0 -4036798 512 1024 -~~~ -~~~ -~~~ -~~~ -4036820 homeCount = 44 -4036821 waitCount = 20 -4036821 ripCount = 18 -4036822 locktype1 = 2 -4036822 locktype2 = 6 -4036823 locktype3 = 2 -4036823 goalCount = 1 -4036824 goalTotal = 11 -4036824 otherCount = 22 -~~~ -~~~ -4036891 DOWN 10 -4036891 0 1024 -~~~ -~~~ -~~~ -~~~ -4036918 homeCount = 44 -4036919 waitCount = 20 -4036919 ripCount = 18 -4036920 locktype1 = 2 -4036920 locktype2 = 6 -4036921 locktype3 = 2 -4036921 goalCount = 1 -4036922 goalTotal = 11 -4036922 otherCount = 22 -~~~ -4039257 UP 11 -4039257 1024 1024 -4040494 DOWN 11 -4040494 0 1024 -4040534 UP 11 -4040534 1024 1024 -4041183 DOWN 11 -4041183 0 1024 -4041188 UP 11 -4041188 1024 1024 -4046257 BEEP1 -4046257 BEEP2 -~~~ -~~~ -~~~ -4046278 1024 33555456 -~~~ -4046428 1024 1024 -4052299 DOWN 11 -4052299 0 1024 -~~~ -~~~ -4052326 0 0 -~~~ -~~~ -4052328 0 1 -~~~ -~~~ -4052330 0 3 -~~~ -~~~ -4052331 0 7 -~~~ -~~~ -4052333 0 15 -~~~ -~~~ -4052335 0 31 -~~~ -~~~ -4052337 0 63 -~~~ -~~~ -4052339 0 127 -~~~ -~~~ -4052340 0 255 -4052341 homeCount = 44 -4052342 waitCount = 20 -4052342 ripCount = 19 -4052343 locktype1 = 2 -4052343 locktype2 = 6 -4052344 locktype3 = 2 -4052365 goalCount = 1 -4052365 goalTotal = 11 -4052366 otherCount = 22 -~~~ -4052367 CURRENTGOAL IS [4] -~~~ -4052367 UP 11 -4052367 1024 255 -4052392 DOWN 11 -4052392 0 255 -4052405 UP 11 -4052405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4052432 homeCount = 44 -4052432 waitCount = 20 -4052433 ripCount = 19 -4052433 locktype1 = 2 -4052434 locktype2 = 6 -4052434 locktype3 = 2 -4052435 goalCount = 1 -4052435 goalTotal = 11 -4052436 otherCount = 22 -~~~ -4052437 CURRENTGOAL IS [4] -~~~ -4055242 DOWN 11 -4055242 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4055281 homeCount = 44 -4055281 waitCount = 20 -4055282 ripCount = 19 -4055282 locktype1 = 2 -4055283 locktype2 = 6 -4055283 locktype3 = 2 -4055284 goalCount = 1 -4055284 goalTotal = 11 -4055285 otherCount = 22 -~~~ -4055286 CURRENTGOAL IS [4] -~~~ -4059122 UP 8 -4059122 128 255 -~~~ -~~~ -4059571 DOWN 8 -4059571 0 255 -~~~ -~~~ -4059595 0 254 -~~~ -~~~ -4059597 0 252 -~~~ -~~~ -4059599 0 248 -~~~ -~~~ -4059601 0 240 -~~~ -~~~ -4059603 0 224 -~~~ -~~~ -4059604 0 192 -~~~ -~~~ -4059606 0 128 -~~~ -~~~ -4059608 0 0 -~~~ -~~~ -4059610 0 512 -4059611 homeCount = 44 -4059611 waitCount = 20 -4059612 ripCount = 19 -4059612 locktype1 = 2 -4059613 locktype2 = 6 -4059634 locktype3 = 2 -4059635 goalCount = 1 -4059635 goalTotal = 11 -4059635 otherCount = 23 -~~~ -4059721 128 512 -4059773 DOWN 8 -4059773 0 512 -4067416 UP 10 -4067416 waslock = 0 -4067416 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4067444 512 16777728 -~~~ -4067594 512 512 -4068209 DOWN 10 -4068209 0 512 -4068223 UP 10 -4068223 waslock = 0 -4068223 512 512 -~~~ -~~~ -4068228 512 1536 -~~~ -~~~ -4068230 512 1024 -4068231 homeCount = 45 -4068231 waitCount = 20 -4068232 ripCount = 19 -4068232 locktype1 = 2 -4068233 locktype2 = 6 -4068233 locktype3 = 2 -4068234 goalCount = 1 -4068234 goalTotal = 11 -4068235 otherCount = 23 -~~~ -~~~ -4068337 DOWN 10 -4068337 0 1024 -~~~ -~~~ -~~~ -~~~ -4068363 homeCount = 45 -4068363 waitCount = 20 -4068364 ripCount = 19 -4068364 locktype1 = 2 -4068365 locktype2 = 6 -4068365 locktype3 = 2 -4068366 goalCount = 1 -4068366 goalTotal = 11 -4068367 otherCount = 23 -~~~ -4068380 UP 10 -4068380 waslock = 0 -4068380 512 1024 -~~~ -4068460 DOWN 10 -4068460 0 1024 -~~~ -~~~ -~~~ -~~~ -4068482 homeCount = 45 -4068482 waitCount = 20 -4068483 ripCount = 19 -4068483 locktype1 = 2 -4068484 locktype2 = 6 -4068484 locktype3 = 2 -4068485 goalCount = 1 -4068485 goalTotal = 11 -4068486 otherCount = 23 -~~~ -4068495 UP 10 -4068496 waslock = 0 -4068495 512 1024 -~~~ -4072504 DOWN 10 -4072504 0 1024 -~~~ -~~~ -~~~ -~~~ -4072531 homeCount = 45 -4072531 waitCount = 20 -4072532 ripCount = 19 -4072532 locktype1 = 2 -4072533 locktype2 = 6 -4072533 locktype3 = 2 -4072534 goalCount = 1 -4072534 goalTotal = 11 -4072535 otherCount = 23 -~~~ -4072546 UP 10 -4072546 waslock = 0 -4072546 512 1024 -~~~ -4072605 DOWN 10 -4072605 0 1024 -~~~ -~~~ -~~~ -~~~ -4072634 homeCount = 45 -4072635 waitCount = 20 -4072635 ripCount = 19 -4072636 locktype1 = 2 -4072636 locktype2 = 6 -4072637 locktype3 = 2 -4072637 goalCount = 1 -4072638 goalTotal = 11 -4072638 otherCount = 23 -~~~ -4074839 UP 11 -4074839 1024 1024 -4077839 BEEP1 -4077839 BEEP2 -~~~ -~~~ -~~~ -4077859 1024 33555456 -~~~ -4078009 1024 1024 -4083791 DOWN 11 -4083791 0 1024 -~~~ -~~~ -4083818 0 0 -~~~ -~~~ -4083820 0 1 -~~~ -~~~ -4083822 0 3 -~~~ -~~~ -4083823 0 7 -~~~ -~~~ -4083825 0 15 -~~~ -4083827 UP 11 -4083826 1024 15 -~~~ -~~~ -4083828 1024 31 -~~~ -~~~ -4083830 1024 63 -~~~ -4083831 1024 127 -~~~ -~~~ -4083833 1024 255 -4083834 homeCount = 45 -4083834 waitCount = 20 -4083855 ripCount = 20 -4083855 locktype1 = 2 -4083856 locktype2 = 6 -4083856 locktype3 = 2 -4083857 goalCount = 1 -4083857 goalTotal = 11 -4083858 otherCount = 23 -~~~ -4083859 CURRENTGOAL IS [4] -~~~ -4083859 DOWN 11 -4083859 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4083907 homeCount = 45 -4083908 waitCount = 20 -4083909 ripCount = 20 -4083909 locktype1 = 2 -4083910 locktype2 = 6 -4083910 locktype3 = 2 -4083911 goalCount = 1 -4083911 goalTotal = 11 -4083911 otherCount = 23 -~~~ -4083913 CURRENTGOAL IS [4] -~~~ -4083913 UP 11 -4083913 1024 255 -4086791 DOWN 11 -4086791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4086829 homeCount = 45 -4086829 waitCount = 20 -4086830 ripCount = 20 -4086830 locktype1 = 2 -4086831 locktype2 = 6 -4086831 locktype3 = 2 -4086832 goalCount = 1 -4086832 goalTotal = 11 -4086833 otherCount = 23 -~~~ -4086834 CURRENTGOAL IS [4] -~~~ -4087998 UP 11 -4087998 1024 255 -4088002 DOWN 11 -4088002 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4088043 homeCount = 45 -4088043 waitCount = 20 -4088044 ripCount = 20 -4088044 locktype1 = 2 -4088045 locktype2 = 6 -4088045 locktype3 = 2 -4088046 goalCount = 1 -4088046 goalTotal = 11 -4088047 otherCount = 23 -~~~ -4088048 CURRENTGOAL IS [4] -~~~ -4090950 UP 5 -4090950 16 255 -~~~ -~~~ -4091298 DOWN 5 -4091297 0 255 -~~~ -~~~ -4091323 0 254 -~~~ -~~~ -4091325 0 252 -~~~ -~~~ -4091327 0 248 -~~~ -~~~ -4091329 0 240 -~~~ -~~~ -4091330 0 224 -~~~ -~~~ -4091332 0 192 -~~~ -~~~ -4091334 0 128 -~~~ -~~~ -4091336 0 0 -~~~ -~~~ -4091338 0 512 -4091339 homeCount = 45 -4091339 waitCount = 20 -4091340 ripCount = 20 -4091340 locktype1 = 2 -4091341 locktype2 = 6 -4091362 locktype3 = 2 -4091362 goalCount = 1 -4091363 goalTotal = 11 -4091363 otherCount = 24 -~~~ -4091364 16 512 -4091503 DOWN 5 -4091503 0 512 -4095890 UP 10 -4095891 waslock = 0 -4095890 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4095915 512 16777728 -~~~ -4096065 512 512 -4096110 DOWN 10 -4096110 0 512 -~~~ -~~~ -4096133 0 2560 -~~~ -~~~ -4096135 0 2048 -4096136 homeCount = 46 -4096137 waitCount = 20 -4096137 ripCount = 20 -4096138 locktype1 = 2 -4096138 locktype2 = 6 -4096139 locktype3 = 2 -4096139 goalCount = 1 -4096140 goalTotal = 11 -4096140 otherCount = 24 -~~~ -4096211 UP 10 -4096211 waslock = 0 -4096211 512 2048 -~~~ -4100984 DOWN 10 -4100984 0 2048 -~~~ -~~~ -~~~ -~~~ -4101012 homeCount = 46 -4101012 waitCount = 20 -4101013 ripCount = 20 -4101013 locktype1 = 2 -4101014 locktype2 = 6 -4101014 locktype3 = 2 -4101015 goalCount = 1 -4101015 goalTotal = 11 -4101016 otherCount = 24 -~~~ -4102585 UP 12 -4102585 2048 2048 -4104563 DOWN 12 -4104563 0 2048 -4104602 UP 12 -4104602 2048 2048 -4106085 CLICK1 -4106085 CLICK2 -~~~ -~~~ -~~~ -4106111 2048 67110912 -~~~ -4106261 2048 2048 -4113653 DOWN 12 -4113653 0 2048 -~~~ -~~~ -4113670 0 0 -~~~ -~~~ -4113672 0 1 -~~~ -~~~ -4113674 0 3 -~~~ -~~~ -4113675 0 7 -~~~ -~~~ -4113677 0 15 -~~~ -~~~ -4113679 0 31 -~~~ -~~~ -4113681 0 63 -~~~ -~~~ -4113683 0 127 -~~~ -~~~ -4113685 0 255 -4113686 homeCount = 46 -4113686 waitCount = 21 -4113687 ripCount = 20 -4113687 locktype1 = 2 -4113688 locktype2 = 6 -4113709 locktype3 = 2 -4113709 goalCount = 1 -4113710 goalTotal = 11 -4113710 otherCount = 24 -~~~ -4113711 CURRENTGOAL IS [4] -~~~ -4113721 UP 12 -4113721 2048 255 -4113777 DOWN 12 -4113777 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4113818 homeCount = 46 -4113819 waitCount = 21 -4113819 ripCount = 20 -4113820 locktype1 = 2 -4113820 locktype2 = 6 -4113821 locktype3 = 2 -4113821 goalCount = 1 -4113822 goalTotal = 11 -4113822 otherCount = 24 -~~~ -4113823 CURRENTGOAL IS [4] -~~~ -4114284 UP 12 -4114284 2048 255 -4114665 DOWN 12 -4114665 0 255 -4114670 UP 12 -4114670 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4114698 homeCount = 46 -4114699 waitCount = 21 -4114699 ripCount = 20 -4114700 locktype1 = 2 -4114700 locktype2 = 6 -4114701 locktype3 = 2 -4114701 goalCount = 1 -4114702 goalTotal = 11 -4114702 otherCount = 24 -~~~ -4114703 CURRENTGOAL IS [4] -~~~ -4114704 DOWN 12 -4114704 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4114761 homeCount = 46 -4114761 waitCount = 21 -4114762 ripCount = 20 -4114763 locktype1 = 2 -4114763 locktype2 = 6 -4114763 locktype3 = 2 -4114764 goalCount = 1 -4114764 goalTotal = 11 -4114765 otherCount = 24 -~~~ -4114766 CURRENTGOAL IS [4] -~~~ -4114819 UP 12 -4114819 2048 255 -4114989 DOWN 12 -4114989 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4115028 homeCount = 46 -4115028 waitCount = 21 -4115029 ripCount = 20 -4115030 locktype1 = 2 -4115030 locktype2 = 6 -4115030 locktype3 = 2 -4115031 goalCount = 1 -4115031 goalTotal = 11 -4115032 otherCount = 24 -~~~ -4115033 CURRENTGOAL IS [4] -~~~ -4115131 UP 12 -4115131 2048 255 -4115180 DOWN 12 -4115180 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4115219 homeCount = 46 -4115220 waitCount = 21 -4115220 ripCount = 20 -4115221 locktype1 = 2 -4115221 locktype2 = 6 -4115222 locktype3 = 2 -4115222 goalCount = 1 -4115223 goalTotal = 11 -4115223 otherCount = 24 -~~~ -4115224 CURRENTGOAL IS [4] -~~~ -4122428 UP 4 -4122428 8 255 -~~~ -~~~ -4122455 outer reward -~~~ -4122456 8 524543 -~~~ -~~~ -4122729 DOWN 4 -4122729 0 524543 -~~~ -~~~ -4122753 0 524542 -~~~ -~~~ -4122755 0 524540 -~~~ -~~~ -4122757 0 524536 -~~~ -~~~ -4122759 0 524528 -~~~ -~~~ -4122761 0 524512 -~~~ -~~~ -4122762 0 524480 -~~~ -~~~ -4122764 0 524416 -~~~ -~~~ -4122766 0 524288 -~~~ -4122767 8 524288 -~~~ -4122769 8 524800 -4122770 homeCount = 46 -4122770 waitCount = 21 -4122791 ripCount = 20 -4122792 locktype1 = 2 -4122792 locktype2 = 6 -4122793 locktype3 = 2 -4122793 goalCount = 2 -4122794 goalTotal = 12 -4122794 otherCount = 24 -~~~ -4122905 8 512 -4123027 DOWN 4 -4123027 0 512 -4123052 8 512 -4123136 DOWN 4 -4123136 0 512 -4123166 8 512 -4123268 DOWN 4 -4123268 0 512 -4123295 8 512 -4123386 DOWN 4 -4123386 0 512 -4123423 8 512 -4123521 DOWN 4 -4123521 0 512 -4123554 8 512 -4123652 DOWN 4 -4123652 0 512 -4123684 8 512 -4123785 DOWN 4 -4123785 0 512 -4123811 8 512 -4123915 DOWN 4 -4123915 0 512 -4123946 8 512 -4124055 DOWN 4 -4124055 0 512 -4124079 8 512 -4124194 DOWN 4 -4124194 0 512 -4124218 8 512 -4124337 DOWN 4 -4124337 0 512 -4124358 8 512 -4124486 DOWN 4 -4124486 0 512 -4124501 8 512 -4124634 DOWN 4 -4124634 0 512 -4124650 8 512 -4124790 DOWN 4 -4124790 0 512 -4124797 8 512 -4125100 DOWN 4 -4125100 0 512 -4125109 8 512 -4128672 DOWN 4 -4128672 0 512 -4128679 8 512 -4128805 DOWN 4 -4128805 0 512 -4128828 8 512 -4130462 DOWN 4 -4130462 0 512 -4134961 UP 10 -4134961 waslock = 0 -4134961 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4134991 512 16777728 -~~~ -4135000 DOWN 10 -4135000 0 16777728 -~~~ -~~~ -4135021 0 16778752 -~~~ -~~~ -4135023 0 16778240 -4135024 homeCount = 47 -4135025 waitCount = 21 -4135025 ripCount = 20 -4135026 locktype1 = 2 -4135026 locktype2 = 6 -4135027 locktype3 = 2 -4135027 goalCount = 2 -4135028 goalTotal = 12 -4135028 otherCount = 24 -~~~ -4135049 UP 10 -4135050 waslock = 0 -4135049 512 16778240 -~~~ -4135141 512 1024 -4135184 DOWN 10 -4135184 0 1024 -~~~ -~~~ -~~~ -~~~ -4135208 homeCount = 47 -4135209 waitCount = 21 -4135209 ripCount = 20 -4135210 locktype1 = 2 -4135210 locktype2 = 6 -4135211 locktype3 = 2 -4135211 goalCount = 2 -4135212 goalTotal = 12 -4135212 otherCount = 24 -~~~ -4135243 UP 10 -4135243 waslock = 0 -4135243 512 1024 -~~~ -4139256 DOWN 10 -4139256 0 1024 -~~~ -~~~ -~~~ -~~~ -4139281 homeCount = 47 -4139281 waitCount = 21 -4139282 ripCount = 20 -4139282 locktype1 = 2 -4139283 locktype2 = 6 -4139283 locktype3 = 2 -4139284 goalCount = 2 -4139284 goalTotal = 12 -4139285 otherCount = 24 -~~~ -4141258 UP 11 -4141258 1024 1024 -4143110 DOWN 11 -4143110 0 1024 -4143119 UP 11 -4143119 1024 1024 -4143125 DOWN 11 -4143125 0 1024 -4143142 UP 11 -4143142 1024 1024 -4143768 DOWN 11 -4143768 0 1024 -4143852 UP 11 -4143852 1024 1024 -4144258 BEEP1 -4144258 BEEP2 -~~~ -~~~ -~~~ -4144279 1024 33555456 -~~~ -4144429 1024 1024 -4148801 DOWN 11 -4148801 0 1024 -4148814 UP 11 -4148814 1024 1024 -~~~ -~~~ -4148830 1024 0 -~~~ -~~~ -4148831 1024 1 -~~~ -~~~ -4148833 1024 3 -~~~ -~~~ -4148835 1024 7 -~~~ -~~~ -4148837 1024 15 -~~~ -~~~ -4148839 1024 31 -~~~ -~~~ -4148841 1024 63 -~~~ -~~~ -4148842 1024 127 -~~~ -~~~ -4148844 1024 255 -4148845 homeCount = 47 -4148846 waitCount = 21 -4148846 ripCount = 21 -4148847 locktype1 = 2 -4148868 locktype2 = 6 -4148868 locktype3 = 2 -4148869 goalCount = 2 -4148869 goalTotal = 12 -4148870 otherCount = 24 -~~~ -4148871 CURRENTGOAL IS [4] -~~~ -4150765 DOWN 11 -4150765 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4150803 homeCount = 47 -4150804 waitCount = 21 -4150805 ripCount = 21 -4150805 locktype1 = 2 -4150806 locktype2 = 6 -4150806 locktype3 = 2 -4150806 goalCount = 2 -4150807 goalTotal = 12 -4150807 otherCount = 24 -~~~ -4150808 CURRENTGOAL IS [4] -~~~ -4150827 UP 11 -4150827 1024 255 -4150902 DOWN 11 -4150902 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4150944 homeCount = 47 -4150944 waitCount = 21 -4150945 ripCount = 21 -4150945 locktype1 = 2 -4150946 locktype2 = 6 -4150946 locktype3 = 2 -4150947 goalCount = 2 -4150947 goalTotal = 12 -4150948 otherCount = 24 -~~~ -4150949 CURRENTGOAL IS [4] -~~~ -4154099 UP 4 -4154099 8 255 -~~~ -~~~ -4154121 outer reward -~~~ -4154121 8 524543 -~~~ -~~~ -4154381 DOWN 4 -4154381 0 524543 -~~~ -~~~ -4154408 0 524542 -~~~ -4154409 8 524542 -~~~ -~~~ -4154411 8 524540 -~~~ -4154412 8 524536 -~~~ -~~~ -4154414 8 524528 -~~~ -~~~ -4154415 8 524512 -~~~ -~~~ -4154417 8 524480 -~~~ -~~~ -4154419 8 524416 -~~~ -~~~ -4154421 8 524288 -~~~ -~~~ -4154423 8 524800 -4154424 homeCount = 47 -4154424 waitCount = 21 -4154445 ripCount = 21 -4154446 locktype1 = 2 -4154446 locktype2 = 6 -4154447 locktype3 = 2 -4154447 goalCount = 3 -4154448 goalTotal = 13 -4154448 otherCount = 24 -~~~ -4154571 8 512 -4154798 DOWN 4 -4154798 0 512 -4154825 8 512 -4154922 DOWN 4 -4154922 0 512 -4154958 8 512 -4155053 DOWN 4 -4155053 0 512 -4155087 8 512 -4155192 DOWN 4 -4155192 0 512 -4155219 8 512 -4155325 DOWN 4 -4155325 0 512 -4155360 8 512 -4155624 DOWN 4 -4155624 0 512 -4155633 8 512 -4156054 DOWN 4 -4156054 0 512 -4156064 8 512 -4162502 DOWN 4 -4162502 0 512 -4162532 8 512 -4162633 DOWN 4 -4162633 0 512 -4162670 8 512 -4162773 DOWN 4 -4162773 0 512 -4167844 UP 10 -4167845 waslock = 0 -4167844 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4167875 512 16777728 -~~~ -4168025 512 512 -4170914 DOWN 10 -4170914 0 512 -~~~ -~~~ -4170942 0 2560 -~~~ -~~~ -4170944 0 2048 -4170945 homeCount = 48 -4170945 waitCount = 21 -4170946 ripCount = 21 -4170946 locktype1 = 2 -4170946 locktype2 = 6 -4170947 locktype3 = 2 -4170947 goalCount = 3 -4170948 goalTotal = 13 -4170948 otherCount = 24 -~~~ -4170949 UP 10 -4170970 waslock = 0 -4170949 512 2048 -~~~ -4171034 DOWN 10 -4171034 0 2048 -~~~ -~~~ -~~~ -~~~ -4171061 homeCount = 48 -4171062 waitCount = 21 -4171062 ripCount = 21 -4171063 locktype1 = 2 -4171063 locktype2 = 6 -4171064 locktype3 = 2 -4171064 goalCount = 3 -4171065 goalTotal = 13 -4171065 otherCount = 24 -~~~ -4171069 UP 10 -4171071 waslock = 0 -4171069 512 2048 -~~~ -4173229 DOWN 10 -4173229 0 2048 -~~~ -~~~ -~~~ -~~~ -4173254 homeCount = 48 -4173254 waitCount = 21 -4173255 ripCount = 21 -4173255 locktype1 = 2 -4173256 locktype2 = 6 -4173256 locktype3 = 2 -4173257 goalCount = 3 -4173257 goalTotal = 13 -4173258 otherCount = 24 -~~~ -4174888 UP 12 -4174888 2048 2048 -4177658 DOWN 12 -4177658 0 2048 -4177681 UP 12 -4177681 2048 2048 -4177889 CLICK1 -4177889 CLICK2 -~~~ -~~~ -~~~ -4177910 2048 67110912 -~~~ -4178060 2048 2048 -4183984 DOWN 12 -4183984 0 2048 -4184003 UP 12 -4184003 2048 2048 -~~~ -~~~ -4184010 2048 0 -~~~ -~~~ -4184012 2048 1 -~~~ -~~~ -4184014 2048 3 -~~~ -~~~ -4184016 2048 7 -~~~ -~~~ -4184018 2048 15 -~~~ -~~~ -4184019 2048 31 -~~~ -~~~ -4184021 2048 63 -~~~ -~~~ -4184023 2048 127 -~~~ -~~~ -4184025 2048 255 -4184026 homeCount = 48 -4184026 waitCount = 22 -4184027 ripCount = 21 -4184027 locktype1 = 2 -4184048 locktype2 = 6 -4184049 locktype3 = 2 -4184049 goalCount = 3 -4184050 goalTotal = 13 -4184050 otherCount = 24 -~~~ -4184051 CURRENTGOAL IS [4] -~~~ -4184071 DOWN 12 -4184071 0 255 -~~~ -~~~ -~~~ -~~~ -4184086 UP 12 -4184086 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184100 homeCount = 48 -4184100 waitCount = 22 -4184101 ripCount = 21 -4184101 locktype1 = 2 -4184102 locktype2 = 6 -4184102 locktype3 = 2 -4184103 goalCount = 3 -4184103 goalTotal = 13 -4184104 otherCount = 24 -~~~ -4184105 CURRENTGOAL IS [4] -~~~ -4184107 DOWN 12 -4184107 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184155 homeCount = 48 -4184155 waitCount = 22 -4184156 ripCount = 21 -4184156 locktype1 = 2 -4184157 locktype2 = 6 -4184157 locktype3 = 2 -4184158 goalCount = 3 -4184158 goalTotal = 13 -4184159 otherCount = 24 -~~~ -4184160 CURRENTGOAL IS [4] -~~~ -4184181 UP 12 -4184181 2048 255 -4184186 DOWN 12 -4184186 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184206 UP 12 -4184206 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184212 homeCount = 48 -4184213 waitCount = 22 -4184213 ripCount = 21 -4184214 locktype1 = 2 -4184214 locktype2 = 6 -4184215 locktype3 = 2 -4184215 goalCount = 3 -4184216 goalTotal = 13 -4184216 otherCount = 24 -~~~ -4184217 CURRENTGOAL IS [4] -~~~ -4184649 DOWN 12 -4184649 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184690 homeCount = 48 -4184691 waitCount = 22 -4184691 ripCount = 21 -4184692 locktype1 = 2 -4184692 locktype2 = 6 -4184693 locktype3 = 2 -4184693 goalCount = 3 -4184694 goalTotal = 13 -4184694 otherCount = 24 -~~~ -4184695 CURRENTGOAL IS [4] -~~~ -4184704 UP 12 -4184704 2048 255 -4185594 DOWN 12 -4185594 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4185628 homeCount = 48 -4185629 waitCount = 22 -4185629 ripCount = 21 -4185630 locktype1 = 2 -4185630 locktype2 = 6 -4185631 locktype3 = 2 -4185631 goalCount = 3 -4185632 goalTotal = 13 -4185632 otherCount = 24 -~~~ -4185633 CURRENTGOAL IS [4] -~~~ -4185641 UP 12 -4185641 2048 255 -4185708 DOWN 12 -4185707 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4185750 homeCount = 48 -4185750 waitCount = 22 -4185751 ripCount = 21 -4185751 locktype1 = 2 -4185752 locktype2 = 6 -4185752 locktype3 = 2 -4185752 goalCount = 3 -4185753 goalTotal = 13 -4185753 otherCount = 24 -~~~ -4185755 CURRENTGOAL IS [4] -~~~ -4189317 UP 4 -4189317 8 255 -~~~ -~~~ -4189337 outer reward -~~~ -4189337 8 524543 -~~~ -~~~ -4189569 DOWN 4 -4189569 0 524543 -~~~ -~~~ -4189593 0 524542 -~~~ -~~~ -4189595 0 524540 -~~~ -~~~ -4189597 0 524536 -~~~ -~~~ -4189599 0 524528 -~~~ -~~~ -4189601 0 524512 -~~~ -~~~ -4189603 0 524480 -~~~ -~~~ -4189604 0 524416 -~~~ -~~~ -4189606 0 524288 -~~~ -~~~ -4189608 0 524800 -4189609 homeCount = 48 -4189610 waitCount = 22 -4189610 ripCount = 21 -4189611 locktype1 = 2 -4189631 locktype2 = 6 -4189632 locktype3 = 2 -4189632 goalCount = 4 -4189633 goalTotal = 14 -4189633 otherCount = 24 -~~~ -4189634 8 524800 -4189787 8 512 -4190012 DOWN 4 -4190012 0 512 -4190037 8 512 -4190135 DOWN 4 -4190135 0 512 -4190166 8 512 -4190263 DOWN 4 -4190263 0 512 -4190291 8 512 -4190397 DOWN 4 -4190397 0 512 -4190428 8 512 -4190540 DOWN 4 -4190540 0 512 -4190564 8 512 -4190690 DOWN 4 -4190690 0 512 -4190706 8 512 -4190823 DOWN 4 -4190823 0 512 -4190850 8 512 -4190967 DOWN 4 -4190967 0 512 -4190989 8 512 -4191427 DOWN 4 -4191427 0 512 -4191434 8 512 -4196787 DOWN 4 -4196787 0 512 -4196850 8 512 -4196885 DOWN 4 -4196885 0 512 -4201709 UP 10 -4201709 waslock = 0 -4201709 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4201743 512 16777728 -~~~ -4201893 512 512 -4205616 DOWN 10 -4205616 0 512 -~~~ -~~~ -4205637 0 2560 -~~~ -~~~ -4205639 0 2048 -4205640 homeCount = 49 -4205640 waitCount = 22 -4205641 ripCount = 21 -4205641 locktype1 = 2 -4205642 locktype2 = 6 -4205642 locktype3 = 2 -4205643 goalCount = 4 -4205643 goalTotal = 14 -4205644 otherCount = 24 -~~~ -4207370 UP 12 -4207370 2048 2048 -4210795 DOWN 12 -4210795 0 2048 -4210828 UP 12 -4210828 2048 2048 -4213370 CLICK1 -4213370 CLICK2 -~~~ -~~~ -~~~ -4213398 2048 67110912 -~~~ -4213548 2048 2048 -4218738 DOWN 12 -4218738 0 2048 -4218747 UP 12 -4218747 2048 2048 -~~~ -~~~ -4218767 2048 0 -~~~ -~~~ -4218768 2048 1 -~~~ -~~~ -4218770 2048 3 -~~~ -~~~ -4218772 2048 7 -~~~ -~~~ -4218774 2048 15 -~~~ -~~~ -4218776 2048 31 -~~~ -~~~ -4218777 2048 63 -~~~ -~~~ -4218779 2048 127 -~~~ -~~~ -4218781 2048 255 -4218782 homeCount = 49 -4218783 waitCount = 23 -4218783 ripCount = 21 -4218784 locktype1 = 2 -4218805 locktype2 = 6 -4218805 locktype3 = 2 -4218805 goalCount = 4 -4218806 goalTotal = 14 -4218806 otherCount = 24 -~~~ -4218807 CURRENTGOAL IS [4] -~~~ -4218872 DOWN 12 -4218872 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4218914 homeCount = 49 -4218915 waitCount = 23 -4218915 ripCount = 21 -4218916 locktype1 = 2 -4218916 locktype2 = 6 -4218917 locktype3 = 2 -4218917 goalCount = 4 -4218918 goalTotal = 14 -4218918 otherCount = 24 -~~~ -4218919 CURRENTGOAL IS [4] -~~~ -4218920 UP 12 -4218920 2048 255 -4221459 DOWN 12 -4221459 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4221495 homeCount = 49 -4221495 waitCount = 23 -4221496 ripCount = 21 -4221496 locktype1 = 2 -4221497 locktype2 = 6 -4221497 locktype3 = 2 -4221498 goalCount = 4 -4221498 goalTotal = 14 -4221498 otherCount = 24 -~~~ -4221500 CURRENTGOAL IS [4] -~~~ -4224609 UP 4 -4224609 8 255 -~~~ -~~~ -4224631 outer reward -~~~ -4224631 8 524543 -~~~ -~~~ -4224876 DOWN 4 -4224876 0 524543 -~~~ -~~~ -4224899 0 524542 -~~~ -~~~ -4224900 0 524540 -~~~ -~~~ -4224902 0 524536 -~~~ -~~~ -4224904 0 524528 -~~~ -~~~ -4224906 0 524512 -~~~ -~~~ -4224908 0 524480 -~~~ -~~~ -4224909 0 524416 -~~~ -~~~ -4224911 0 524288 -~~~ -~~~ -4224913 0 524800 -4224914 homeCount = 49 -4224915 waitCount = 23 -4224915 ripCount = 21 -4224916 locktype1 = 2 -4224936 locktype2 = 6 -4224937 locktype3 = 2 -4224937 goalCount = 5 -4224938 goalTotal = 15 -4224938 otherCount = 24 -~~~ -4224939 8 524800 -4225081 8 512 -4225313 DOWN 4 -4225313 0 512 -4225326 8 512 -4225439 DOWN 4 -4225439 0 512 -4225457 8 512 -4225572 DOWN 4 -4225572 0 512 -4225586 8 512 -4225707 DOWN 4 -4225707 0 512 -4225724 8 512 -4225835 DOWN 4 -4225835 0 512 -4225858 8 512 -4225971 DOWN 4 -4225971 0 512 -4225988 8 512 -4226102 DOWN 4 -4226102 0 512 -4226123 8 512 -4226240 DOWN 4 -4226240 0 512 -4226257 8 512 -4226379 DOWN 4 -4226379 0 512 -4226390 8 512 -4226527 DOWN 4 -4226527 0 512 -4226533 8 512 -4231515 DOWN 4 -4231515 0 512 -4231529 8 512 -4233369 DOWN 4 -4233369 0 512 -4237735 UP 10 -4237735 waslock = 0 -4237735 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4237765 512 16777728 -~~~ -4237915 512 512 -4241880 DOWN 10 -4241880 0 512 -~~~ -~~~ -4241900 0 1536 -~~~ -~~~ -4241902 0 1024 -4241903 homeCount = 50 -4241903 waitCount = 23 -4241904 ripCount = 21 -4241904 locktype1 = 2 -4241905 locktype2 = 6 -4241905 locktype3 = 2 -4241905 goalCount = 5 -4241906 goalTotal = 15 -4241906 otherCount = 24 -~~~ -4243762 UP 11 -4243762 1024 1024 -4243837 DOWN 11 -4243837 0 1024 -4243952 UP 11 -4243952 1024 1024 -4250763 BEEP1 -4250763 BEEP2 -~~~ -~~~ -~~~ -4250781 1024 33555456 -~~~ -4250931 1024 1024 -4256515 DOWN 11 -4256515 0 1024 -~~~ -~~~ -4256539 0 0 -~~~ -~~~ -4256541 0 1 -~~~ -~~~ -4256543 0 3 -~~~ -~~~ -4256545 0 7 -~~~ -~~~ -4256546 0 15 -~~~ -~~~ -4256548 0 31 -~~~ -~~~ -4256550 0 63 -~~~ -~~~ -4256552 0 127 -~~~ -~~~ -4256554 0 255 -4256555 homeCount = 50 -4256555 waitCount = 23 -4256556 ripCount = 22 -4256556 locktype1 = 2 -4256557 locktype2 = 6 -4256557 locktype3 = 2 -4256578 goalCount = 5 -4256579 goalTotal = 15 -4256579 otherCount = 24 -~~~ -4256580 CURRENTGOAL IS [4] -~~~ -4256581 UP 11 -4256581 1024 255 -4259496 DOWN 11 -4259496 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4259538 homeCount = 50 -4259538 waitCount = 23 -4259539 ripCount = 22 -4259539 locktype1 = 2 -4259540 locktype2 = 6 -4259540 locktype3 = 2 -4259541 goalCount = 5 -4259541 goalTotal = 15 -4259542 otherCount = 24 -~~~ -4259543 CURRENTGOAL IS [4] -~~~ -4265652 UP 4 -4265652 8 255 -~~~ -~~~ -4265674 outer reward -~~~ -4265674 8 524543 -~~~ -~~~ -4265917 DOWN 4 -4265917 0 524543 -~~~ -~~~ -4265942 0 524542 -~~~ -~~~ -4265944 0 524540 -~~~ -~~~ -4265945 0 524536 -~~~ -~~~ -4265947 0 524528 -~~~ -~~~ -4265949 0 524512 -~~~ -~~~ -4265951 0 524480 -~~~ -~~~ -4265953 0 524416 -~~~ -~~~ -4265955 0 524288 -~~~ -~~~ -4265956 0 524800 -4265957 homeCount = 50 -4265958 waitCount = 23 -4265958 ripCount = 22 -4265959 locktype1 = 2 -4265980 locktype2 = 6 -4265980 locktype3 = 2 -4265981 goalCount = 6 -4265981 goalTotal = 16 -4265982 otherCount = 24 -~~~ -4265982 8 524800 -4266107 DOWN 4 -4266107 0 524800 -4266124 0 512 -4266129 8 512 -4266357 DOWN 4 -4266357 0 512 -4266378 8 512 -4266481 DOWN 4 -4266481 0 512 -4266507 8 512 -4266607 DOWN 4 -4266607 0 512 -4266639 8 512 -4266745 DOWN 4 -4266745 0 512 -4266764 8 512 -4266865 DOWN 4 -4266865 0 512 -4266891 8 512 -4266997 DOWN 4 -4266997 0 512 -4267021 8 512 -4267136 DOWN 4 -4267136 0 512 -4267154 8 512 -4274215 DOWN 4 -4274215 0 512 -4280342 UP 10 -4280343 waslock = 0 -4280342 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4280370 512 16777728 -~~~ -4280520 512 512 -4280525 DOWN 10 -4280525 0 512 -4280544 UP 10 -4280544 waslock = 0 -4280544 512 512 -~~~ -~~~ -4280547 512 1536 -~~~ -~~~ -4280549 512 1024 -4280550 homeCount = 51 -4280551 waitCount = 23 -4280551 ripCount = 22 -4280552 locktype1 = 2 -4280552 locktype2 = 6 -4280553 locktype3 = 2 -4280553 goalCount = 6 -4280554 goalTotal = 16 -4280554 otherCount = 24 -~~~ -~~~ -4284174 DOWN 10 -4284174 0 1024 -~~~ -~~~ -~~~ -~~~ -4284198 homeCount = 51 -4284199 waitCount = 23 -4284199 ripCount = 22 -4284200 locktype1 = 2 -4284200 locktype2 = 6 -4284201 locktype3 = 2 -4284201 goalCount = 6 -4284202 goalTotal = 16 -4284202 otherCount = 24 -~~~ -4285958 UP 11 -4285958 1024 1024 -4289670 DOWN 11 -4289669 0 1024 -4289688 UP 11 -4289688 1024 1024 -4290459 BEEP1 -4290459 BEEP2 -~~~ -~~~ -~~~ -4290489 1024 33555456 -~~~ -4290638 1024 1024 -4295683 DOWN 11 -4295683 0 1024 -4295693 UP 11 -4295693 1024 1024 -~~~ -~~~ -4295706 1024 0 -~~~ -~~~ -4295708 1024 1 -~~~ -~~~ -4295710 1024 3 -~~~ -~~~ -4295712 1024 7 -~~~ -~~~ -4295713 1024 15 -~~~ -~~~ -4295715 1024 31 -~~~ -~~~ -4295717 1024 63 -~~~ -~~~ -4295719 1024 127 -~~~ -~~~ -4295721 1024 255 -4295722 homeCount = 51 -4295722 waitCount = 23 -4295723 ripCount = 23 -4295723 locktype1 = 2 -4295744 locktype2 = 6 -4295745 locktype3 = 2 -4295745 goalCount = 6 -4295745 goalTotal = 16 -4295746 otherCount = 24 -~~~ -4295747 CURRENTGOAL IS [4] -~~~ -4295766 DOWN 11 -4295766 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4295801 UP 11 -4295801 1024 255 -4295803 homeCount = 51 -4295803 waitCount = 23 -4295804 ripCount = 23 -4295804 locktype1 = 2 -4295805 locktype2 = 6 -4295805 locktype3 = 2 -4295805 goalCount = 6 -4295806 goalTotal = 16 -4295806 otherCount = 24 -~~~ -4295808 CURRENTGOAL IS [4] -~~~ -4298136 DOWN 11 -4298136 0 255 -4298151 UP 11 -4298150 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298186 homeCount = 51 -4298186 waitCount = 23 -4298187 ripCount = 23 -4298187 locktype1 = 2 -4298188 locktype2 = 6 -4298188 locktype3 = 2 -4298189 goalCount = 6 -4298189 goalTotal = 16 -4298189 otherCount = 24 -~~~ -4298191 CURRENTGOAL IS [4] -~~~ -4298236 DOWN 11 -4298236 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298273 homeCount = 51 -4298274 waitCount = 23 -4298274 ripCount = 23 -4298275 locktype1 = 2 -4298275 locktype2 = 6 -4298276 locktype3 = 2 -4298276 goalCount = 6 -4298277 goalTotal = 16 -4298277 otherCount = 24 -~~~ -4298278 CURRENTGOAL IS [4] -~~~ -4298331 UP 11 -4298331 1024 255 -4298354 DOWN 11 -4298354 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298397 homeCount = 51 -4298397 waitCount = 23 -4298398 ripCount = 23 -4298399 locktype1 = 2 -4298399 locktype2 = 6 -4298399 locktype3 = 2 -4298400 goalCount = 6 -4298400 goalTotal = 16 -4298401 otherCount = 24 -~~~ -4298402 CURRENTGOAL IS [4] -~~~ -4302468 UP 4 -4302468 8 255 -~~~ -~~~ -4302491 outer reward -~~~ -4302492 8 524543 -~~~ -~~~ -4302679 DOWN 4 -4302679 0 524543 -~~~ -~~~ -4302699 0 524542 -~~~ -~~~ -4302701 0 524540 -~~~ -~~~ -4302703 0 524536 -~~~ -~~~ -4302704 0 524528 -~~~ -~~~ -4302706 0 524512 -~~~ -~~~ -4302708 0 524480 -~~~ -~~~ -4302710 0 524416 -~~~ -~~~ -4302712 0 524288 -~~~ -~~~ -4302714 0 524800 -4302715 homeCount = 51 -4302715 waitCount = 23 -4302716 ripCount = 23 -4302716 locktype1 = 2 -4302737 locktype2 = 6 -4302737 locktype3 = 2 -4302738 goalCount = 7 -4302738 goalTotal = 17 -4302739 otherCount = 24 -~~~ -4302739 8 524800 -4302941 8 512 -4303248 DOWN 4 -4303248 0 512 -4303265 8 512 -4303374 DOWN 4 -4303374 0 512 -4303389 8 512 -4303497 DOWN 4 -4303497 0 512 -4303521 8 512 -4303616 DOWN 4 -4303616 0 512 -4303650 8 512 -4303768 DOWN 4 -4303768 0 512 -4303779 8 512 -4304355 DOWN 4 -4304355 0 512 -4304361 8 512 -4309831 DOWN 4 -4309831 0 512 -4314365 UP 10 -4314365 waslock = 0 -4314365 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4314398 512 16777728 -~~~ -4314518 DOWN 10 -4314518 0 16777728 -~~~ -~~~ -4314541 0 16778752 -~~~ -~~~ -4314543 0 16778240 -4314544 homeCount = 52 -4314544 waitCount = 23 -4314545 ripCount = 23 -4314545 locktype1 = 2 -4314546 locktype2 = 6 -4314546 locktype3 = 2 -4314547 goalCount = 7 -4314547 goalTotal = 17 -4314548 otherCount = 24 -~~~ -4314569 UP 10 -4314569 waslock = 0 -4314569 512 16778240 -4314571 512 1024 -~~~ -4320357 DOWN 10 -4320357 0 1024 -~~~ -~~~ -~~~ -~~~ -4320385 homeCount = 52 -4320385 waitCount = 23 -4320386 ripCount = 23 -4320386 locktype1 = 2 -4320387 locktype2 = 6 -4320387 locktype3 = 2 -4320388 goalCount = 7 -4320388 goalTotal = 17 -4320389 otherCount = 24 -~~~ -4322525 UP 11 -4322525 1024 1024 -4324497 DOWN 11 -4324497 0 1024 -4324536 UP 11 -4324536 1024 1024 -4326525 BEEP1 -4326525 BEEP2 -~~~ -~~~ -~~~ -4326554 1024 33555456 -~~~ -4326703 1024 1024 -4332297 DOWN 11 -4332297 0 1024 -~~~ -~~~ -4332321 0 0 -~~~ -~~~ -4332323 0 1 -~~~ -~~~ -4332325 0 3 -~~~ -~~~ -4332327 0 7 -~~~ -~~~ -4332329 0 15 -~~~ -~~~ -4332331 0 31 -~~~ -~~~ -4332332 0 63 -~~~ -~~~ -4332334 0 127 -~~~ -~~~ -4332336 0 255 -4332337 homeCount = 52 -4332338 waitCount = 23 -4332338 ripCount = 24 -4332339 locktype1 = 2 -4332339 locktype2 = 6 -4332360 locktype3 = 2 -4332361 goalCount = 7 -4332361 goalTotal = 17 -4332362 otherCount = 24 -~~~ -4332363 CURRENTGOAL IS [4] -~~~ -4332363 UP 11 -4332363 1024 255 -4336000 DOWN 11 -4336000 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4336037 homeCount = 52 -4336038 waitCount = 23 -4336038 ripCount = 24 -4336039 locktype1 = 2 -4336039 locktype2 = 6 -4336040 locktype3 = 2 -4336040 goalCount = 7 -4336041 goalTotal = 17 -4336041 otherCount = 24 -~~~ -4336042 CURRENTGOAL IS [4] -~~~ -4336052 UP 11 -4336052 1024 255 -4336156 DOWN 11 -4336156 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4336197 homeCount = 52 -4336198 waitCount = 23 -4336198 ripCount = 24 -4336199 locktype1 = 2 -4336199 locktype2 = 6 -4336200 locktype3 = 2 -4336200 goalCount = 7 -4336201 goalTotal = 17 -4336201 otherCount = 24 -~~~ -4336202 CURRENTGOAL IS [4] -~~~ -4340725 UP 4 -4340725 8 255 -~~~ -~~~ -4340744 outer reward -~~~ -4340745 8 524543 -~~~ -~~~ -4340992 DOWN 4 -4340992 0 524543 -~~~ -~~~ -4341014 0 524542 -~~~ -~~~ -4341016 0 524540 -~~~ -~~~ -4341018 0 524536 -~~~ -~~~ -4341020 0 524528 -~~~ -~~~ -4341022 0 524512 -~~~ -~~~ -4341023 0 524480 -~~~ -~~~ -4341025 0 524416 -~~~ -~~~ -4341027 0 524288 -~~~ -~~~ -4341029 0 524800 -4341030 homeCount = 52 -4341030 waitCount = 23 -4341031 ripCount = 24 -4341031 locktype1 = 2 -4341052 locktype2 = 6 -4341053 locktype3 = 2 -4341053 goalCount = 8 -4341054 goalTotal = 18 -4341054 otherCount = 24 -~~~ -4341055 8 524800 -4341194 8 512 -4341417 DOWN 4 -4341417 0 512 -4341435 8 512 -4341664 DOWN 4 -4341664 0 512 -4341693 8 512 -4341796 DOWN 4 -4341796 0 512 -4341811 8 512 -4341917 DOWN 4 -4341917 0 512 -4341945 8 512 -4342051 DOWN 4 -4342051 0 512 -4342074 8 512 -4342192 DOWN 4 -4342192 0 512 -4342207 8 512 -4342332 DOWN 4 -4342332 0 512 -4342351 8 512 -4342475 DOWN 4 -4342475 0 512 -4342489 8 512 -4342627 DOWN 4 -4342627 0 512 -4342636 8 512 -4342773 DOWN 4 -4342773 0 512 -4342786 8 512 -4342928 DOWN 4 -4342928 0 512 -4342942 8 512 -4343079 DOWN 4 -4343079 0 512 -4343090 8 512 -4345668 DOWN 4 -4345668 0 512 -4345673 8 512 -4347893 DOWN 4 -4347893 0 512 -4347977 8 512 -4347999 DOWN 4 -4347999 0 512 -4352959 UP 10 -4352959 waslock = 0 -4352959 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4352990 512 16777728 -~~~ -4353126 DOWN 10 -4353126 0 16777728 -4353139 0 512 -~~~ -~~~ -4353148 0 1536 -~~~ -~~~ -4353150 0 1024 -4353150 homeCount = 53 -4353151 waitCount = 23 -4353151 ripCount = 24 -4353152 locktype1 = 2 -4353152 locktype2 = 6 -4353153 locktype3 = 2 -4353153 goalCount = 8 -4353154 goalTotal = 18 -4353154 otherCount = 24 -~~~ -4353161 UP 10 -4353161 waslock = 0 -4353161 512 1024 -~~~ -4356494 DOWN 10 -4356494 0 1024 -~~~ -~~~ -~~~ -~~~ -4356516 homeCount = 53 -4356517 waitCount = 23 -4356517 ripCount = 24 -4356518 locktype1 = 2 -4356518 locktype2 = 6 -4356519 locktype3 = 2 -4356519 goalCount = 8 -4356520 goalTotal = 18 -4356520 otherCount = 24 -~~~ -4356538 UP 10 -4356539 waslock = 0 -4356538 512 1024 -~~~ -4356593 DOWN 10 -4356593 0 1024 -~~~ -~~~ -~~~ -~~~ -4356618 homeCount = 53 -4356619 waitCount = 23 -4356619 ripCount = 24 -4356620 locktype1 = 2 -4356620 locktype2 = 6 -4356621 locktype3 = 2 -4356621 goalCount = 8 -4356622 goalTotal = 18 -4356622 otherCount = 24 -~~~ -4358394 UP 11 -4358394 1024 1024 -4361395 BEEP1 -4361395 BEEP2 -~~~ -~~~ -~~~ -4361417 1024 33555456 -~~~ -4361567 1024 1024 -4368629 DOWN 11 -4368629 0 1024 -~~~ -~~~ -4368655 0 0 -~~~ -~~~ -4368657 0 1 -~~~ -~~~ -4368659 0 3 -~~~ -~~~ -4368660 0 7 -~~~ -~~~ -4368662 0 15 -~~~ -~~~ -4368664 0 31 -~~~ -~~~ -4368666 0 63 -~~~ -~~~ -4368668 0 127 -~~~ -~~~ -4368669 0 255 -4368670 homeCount = 53 -4368671 waitCount = 23 -4368672 ripCount = 25 -4368672 locktype1 = 2 -4368673 locktype2 = 6 -4368673 locktype3 = 2 -4368694 goalCount = 8 -4368694 goalTotal = 18 -4368695 otherCount = 24 -~~~ -4368696 CURRENTGOAL IS [4] -~~~ -4368696 UP 11 -4368696 1024 255 -4370757 DOWN 11 -4370757 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4370794 homeCount = 53 -4370794 waitCount = 23 -4370795 ripCount = 25 -4370795 locktype1 = 2 -4370796 locktype2 = 6 -4370796 locktype3 = 2 -4370797 goalCount = 8 -4370797 goalTotal = 18 -4370798 otherCount = 24 -~~~ -4370799 CURRENTGOAL IS [4] -~~~ -4370799 UP 11 -4370799 1024 255 -4370853 DOWN 11 -4370853 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4370893 homeCount = 53 -4370893 waitCount = 23 -4370894 ripCount = 25 -4370894 locktype1 = 2 -4370895 locktype2 = 6 -4370895 locktype3 = 2 -4370896 goalCount = 8 -4370896 goalTotal = 18 -4370897 otherCount = 24 -~~~ -4370898 CURRENTGOAL IS [4] -~~~ -4374044 UP 4 -4374044 8 255 -~~~ -~~~ -4374070 outer reward -~~~ -4374070 8 524543 -~~~ -~~~ -4374256 DOWN 4 -4374256 0 524543 -~~~ -~~~ -4374277 0 524542 -~~~ -~~~ -4374279 0 524540 -~~~ -~~~ -4374281 0 524536 -~~~ -~~~ -4374283 0 524528 -~~~ -~~~ -4374284 0 524512 -~~~ -~~~ -4374286 0 524480 -~~~ -~~~ -4374288 0 524416 -~~~ -~~~ -4374290 0 524288 -~~~ -~~~ -4374292 0 524800 -4374293 homeCount = 53 -4374293 waitCount = 23 -4374294 ripCount = 25 -4374315 locktype1 = 2 -4374315 locktype2 = 6 -4374316 locktype3 = 2 -4374316 goalCount = 9 -4374317 goalTotal = 19 -4374317 otherCount = 24 -~~~ -4374318 8 524800 -4374520 8 512 -4374698 DOWN 4 -4374698 0 512 -4374706 8 512 -4374816 DOWN 4 -4374815 0 512 -4374836 8 512 -4374934 DOWN 4 -4374934 0 512 -4374972 8 512 -4375072 DOWN 4 -4375071 0 512 -4375096 8 512 -4375198 DOWN 4 -4375198 0 512 -4375232 8 512 -4375338 DOWN 4 -4375338 0 512 -4375353 8 512 -4375631 DOWN 4 -4375631 0 512 -4375642 8 512 -4379874 DOWN 4 -4379874 0 512 -4379885 8 512 -4380055 DOWN 4 -4380055 0 512 -4380062 8 512 -4381987 DOWN 4 -4381987 0 512 -4382016 8 512 -4382061 DOWN 4 -4382061 0 512 -4385877 UP 10 -4385878 waslock = 0 -4385877 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4385906 512 16777728 -~~~ -4385914 DOWN 10 -4385913 0 16777728 -~~~ -~~~ -4385944 0 16778752 -~~~ -4385945 UP 10 -4385945 waslock = 0 -4385945 512 16778752 -~~~ -4385947 homeCount = 54 -4385948 waitCount = 23 -4385948 ripCount = 25 -4385949 locktype1 = 2 -4385949 locktype2 = 6 -4385950 locktype3 = 2 -4385950 goalCount = 9 -4385951 goalTotal = 19 -4385972 otherCount = 24 -~~~ -4385972 512 16778240 -~~~ -4386055 512 1024 -4390253 DOWN 10 -4390253 0 1024 -~~~ -~~~ -~~~ -~~~ -4390279 homeCount = 54 -4390280 waitCount = 23 -4390280 ripCount = 25 -4390281 locktype1 = 2 -4390281 locktype2 = 6 -4390282 locktype3 = 2 -4390282 goalCount = 9 -4390283 goalTotal = 19 -4390283 otherCount = 24 -~~~ -4390329 UP 10 -4390330 waslock = 0 -4390329 512 1024 -~~~ -4390375 DOWN 10 -4390375 0 1024 -~~~ -~~~ -~~~ -~~~ -4390398 homeCount = 54 -4390399 waitCount = 23 -4390399 ripCount = 25 -4390400 locktype1 = 2 -4390400 locktype2 = 6 -4390401 locktype3 = 2 -4390401 goalCount = 9 -4390402 goalTotal = 19 -4390402 otherCount = 24 -~~~ -4391799 UP 11 -4391799 1024 1024 -4395467 DOWN 11 -4395467 0 1024 -4395532 UP 11 -4395532 1024 1024 -4398800 BEEP1 -4398800 BEEP2 -~~~ -~~~ -~~~ -4398827 1024 33555456 -~~~ -4398977 1024 1024 -4404797 DOWN 11 -4404797 0 1024 -~~~ -~~~ -4404815 0 0 -~~~ -~~~ -4404817 0 1 -~~~ -~~~ -4404819 0 3 -~~~ -~~~ -4404821 0 7 -~~~ -~~~ -4404823 0 15 -~~~ -4404824 UP 11 -4404824 1024 15 -~~~ -~~~ -~~~ -4404826 1024 63 -~~~ -~~~ -4404828 1024 127 -~~~ -~~~ -4404830 1024 255 -4404831 homeCount = 54 -4404831 waitCount = 23 -4404832 ripCount = 26 -4404853 locktype1 = 2 -4404854 locktype2 = 6 -4404854 locktype3 = 2 -4404855 goalCount = 9 -4404855 goalTotal = 19 -4404856 otherCount = 24 -~~~ -4404857 CURRENTGOAL IS [4] -~~~ -4404857 DOWN 11 -4404857 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -4404890 UP 11 -4404890 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4404902 homeCount = 54 -4404903 waitCount = 23 -4404903 ripCount = 26 -4404904 locktype1 = 2 -4404904 locktype2 = 6 -4404905 locktype3 = 2 -4404905 goalCount = 9 -4404906 goalTotal = 19 -4404906 otherCount = 24 -~~~ -4404907 CURRENTGOAL IS [4] -~~~ -4408442 DOWN 11 -4408442 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4408483 homeCount = 54 -4408483 waitCount = 23 -4408484 ripCount = 26 -4408484 locktype1 = 2 -4408485 locktype2 = 6 -4408485 locktype3 = 2 -4408486 goalCount = 9 -4408486 goalTotal = 19 -4408486 otherCount = 24 -~~~ -4408488 CURRENTGOAL IS [4] -~~~ -4411793 UP 4 -4411793 8 255 -~~~ -~~~ -4411820 outer reward -~~~ -4411820 8 524543 -~~~ -~~~ -4411825 outerreps = 12 -~~~ -~~~ -4412010 DOWN 4 -4412010 0 524543 -~~~ -~~~ -4412036 0 524542 -~~~ -~~~ -4412037 0 524540 -~~~ -~~~ -4412039 0 524536 -~~~ -~~~ -4412041 0 524528 -~~~ -~~~ -4412043 0 524512 -~~~ -~~~ -4412045 0 524480 -~~~ -~~~ -4412047 0 524416 -~~~ -~~~ -4412048 0 524288 -~~~ -~~~ -4412050 0 524800 -4412051 homeCount = 54 -4412052 waitCount = 23 -4412052 ripCount = 26 -4412073 locktype1 = 2 -4412074 locktype2 = 6 -4412074 locktype3 = 2 -4412075 goalCount = 0 -4412075 goalTotal = 20 -4412076 otherCount = 24 -~~~ -4412076 8 524800 -4412270 8 512 -4412461 DOWN 4 -4412461 0 512 -4412488 8 512 -4412620 DOWN 4 -4412620 0 512 -4412641 8 512 -4412756 DOWN 4 -4412756 0 512 -4412785 8 512 -4412892 DOWN 4 -4412892 0 512 -4412925 8 512 -4413034 DOWN 4 -4413034 0 512 -4413058 8 512 -4413170 DOWN 4 -4413170 0 512 -4413199 8 512 -4413313 DOWN 4 -4413313 0 512 -4413341 8 512 -4413460 DOWN 4 -4413460 0 512 -4413480 8 512 -4413605 DOWN 4 -4413605 0 512 -4413626 8 512 -4413754 DOWN 4 -4413754 0 512 -4413772 8 512 -4413907 DOWN 4 -4413907 0 512 -4413921 8 512 -4420599 DOWN 4 -4420599 0 512 -4420642 8 512 -4420716 DOWN 4 -4420716 0 512 -4425492 UP 10 -4425492 waslock = 0 -4425492 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4425523 512 16777728 -~~~ -4425673 512 512 -4428204 DOWN 10 -4428204 0 512 -~~~ -~~~ -4428226 0 2560 -~~~ -~~~ -4428228 0 2048 -4428229 homeCount = 55 -4428229 waitCount = 23 -4428230 ripCount = 26 -4428230 locktype1 = 2 -4428231 locktype2 = 6 -4428231 locktype3 = 2 -4428232 goalCount = 0 -4428232 goalTotal = 20 -4428233 otherCount = 24 -~~~ -4430289 UP 12 -4430289 2048 2048 -4435709 DOWN 12 -4435709 0 2048 -4435765 UP 12 -4435765 2048 2048 -4435789 CLICK1 -4435789 CLICK2 -~~~ -~~~ -~~~ -4435811 2048 67110912 -~~~ -4435961 2048 2048 -4442288 DOWN 12 -4442288 0 2048 -~~~ -~~~ -4442307 0 0 -~~~ -~~~ -4442309 0 1 -~~~ -~~~ -4442310 0 3 -~~~ -~~~ -4442312 0 7 -~~~ -~~~ -4442314 0 15 -~~~ -~~~ -4442316 0 31 -~~~ -~~~ -4442318 0 63 -~~~ -~~~ -4442319 0 127 -~~~ -~~~ -4442321 0 255 -4442322 homeCount = 55 -4442323 waitCount = 24 -4442323 ripCount = 26 -4442324 locktype1 = 2 -4442324 locktype2 = 6 -4442325 locktype3 = 2 -4442346 goalCount = 0 -4442346 goalTotal = 20 -4442347 otherCount = 24 -~~~ -4442348 CURRENTGOAL IS [6] -~~~ -4442348 UP 12 -4442348 2048 255 -4442406 DOWN 12 -4442406 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4442443 homeCount = 55 -4442443 waitCount = 24 -4442444 ripCount = 26 -4442444 locktype1 = 2 -4442445 locktype2 = 6 -4442445 locktype3 = 2 -4442446 goalCount = 0 -4442446 goalTotal = 20 -4442447 otherCount = 24 -~~~ -4442448 CURRENTGOAL IS [6] -~~~ -4442871 UP 12 -4442871 2048 255 -4444133 DOWN 12 -4444133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4444173 homeCount = 55 -4444173 waitCount = 24 -4444174 ripCount = 26 -4444174 locktype1 = 2 -4444175 locktype2 = 6 -4444175 locktype3 = 2 -4444176 goalCount = 0 -4444176 goalTotal = 20 -4444177 otherCount = 24 -~~~ -4444178 CURRENTGOAL IS [6] -~~~ -4446862 UP 4 -4446862 8 255 -~~~ -~~~ -4447080 DOWN 4 -4447080 0 255 -~~~ -~~~ -4447099 0 254 -~~~ -~~~ -4447101 0 252 -~~~ -~~~ -4447102 0 248 -~~~ -~~~ -4447104 0 240 -~~~ -~~~ -4447106 0 224 -~~~ -~~~ -4447108 0 192 -~~~ -~~~ -4447110 0 128 -~~~ -~~~ -4447112 0 0 -~~~ -~~~ -4447113 0 512 -4447114 homeCount = 55 -4447115 waitCount = 24 -4447115 ripCount = 26 -4447116 locktype1 = 2 -4447116 locktype2 = 6 -4447137 locktype3 = 2 -4447138 goalCount = 0 -4447138 goalTotal = 20 -4447139 otherCount = 25 -~~~ -4447139 8 512 -4447799 DOWN 4 -4447799 0 512 -4452075 UP 10 -4452076 waslock = 0 -4452075 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4452106 512 16777728 -~~~ -4452117 DOWN 10 -4452117 0 16777728 -4452125 UP 10 -4452125 waslock = 0 -4452125 512 16777728 -~~~ -~~~ -4452143 512 16779776 -~~~ -~~~ -4452145 512 16779264 -4452146 homeCount = 56 -4452147 waitCount = 24 -4452147 ripCount = 26 -4452148 locktype1 = 2 -4452148 locktype2 = 6 -4452149 locktype3 = 2 -4452149 goalCount = 0 -4452150 goalTotal = 20 -4452150 otherCount = 25 -~~~ -~~~ -4452256 512 2048 -4452265 DOWN 10 -4452265 0 2048 -4452277 UP 10 -4452277 waslock = 0 -4452277 512 2048 -~~~ -~~~ -~~~ -~~~ -4452287 homeCount = 56 -4452287 waitCount = 24 -4452288 ripCount = 26 -4452288 locktype1 = 2 -4452289 locktype2 = 6 -4452289 locktype3 = 2 -4452290 goalCount = 0 -4452290 goalTotal = 20 -4452291 otherCount = 25 -~~~ -~~~ -4456357 DOWN 10 -4456357 0 2048 -~~~ -~~~ -~~~ -~~~ -4456382 homeCount = 56 -4456382 waitCount = 24 -4456383 ripCount = 26 -4456383 locktype1 = 2 -4456384 locktype2 = 6 -4456384 locktype3 = 2 -4456385 goalCount = 0 -4456385 goalTotal = 20 -4456386 otherCount = 25 -~~~ -4458260 UP 12 -4458260 2048 2048 -4461699 DOWN 12 -4461699 0 2048 -4461721 UP 12 -4461721 2048 2048 -4461856 DOWN 12 -4461856 0 2048 -4461869 UP 12 -4461869 2048 2048 -4461961 DOWN 12 -4461961 0 2048 -4461992 UP 12 -4461992 2048 2048 -4462760 CLICK1 -4462760 CLICK2 -~~~ -~~~ -~~~ -4462782 2048 67110912 -~~~ -4462932 2048 2048 -4469122 DOWN 12 -4469122 0 2048 -4469136 UP 12 -4469136 2048 2048 -~~~ -~~~ -4469143 2048 0 -~~~ -~~~ -4469145 2048 1 -~~~ -~~~ -4469146 2048 3 -~~~ -~~~ -4469148 2048 7 -~~~ -~~~ -4469150 2048 15 -~~~ -~~~ -4469152 2048 31 -~~~ -~~~ -4469154 2048 63 -~~~ -~~~ -4469155 2048 127 -~~~ -~~~ -4469157 2048 255 -4469158 homeCount = 56 -4469159 waitCount = 25 -4469159 ripCount = 26 -4469160 locktype1 = 2 -4469181 locktype2 = 6 -4469181 locktype3 = 2 -4469181 goalCount = 0 -4469182 goalTotal = 20 -4469182 otherCount = 25 -~~~ -4469183 CURRENTGOAL IS [6] -~~~ -4469216 DOWN 12 -4469216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4469257 homeCount = 56 -4469258 waitCount = 25 -4469258 ripCount = 26 -4469259 locktype1 = 2 -4469259 locktype2 = 6 -4469260 locktype3 = 2 -4469260 goalCount = 0 -4469261 goalTotal = 20 -4469261 otherCount = 25 -~~~ -4469262 CURRENTGOAL IS [6] -~~~ -4478752 UP 4 -4478752 8 255 -~~~ -~~~ -4479850 DOWN 4 -4479850 0 255 -4479863 8 255 -~~~ -~~~ -4479870 8 254 -~~~ -~~~ -4479872 8 252 -~~~ -~~~ -4479874 8 248 -~~~ -~~~ -4479876 8 240 -~~~ -~~~ -4479877 8 224 -~~~ -~~~ -4479879 8 192 -~~~ -~~~ -4479881 8 128 -~~~ -~~~ -4479883 8 0 -~~~ -~~~ -4479885 8 512 -4479886 homeCount = 56 -4479886 waitCount = 25 -4479887 ripCount = 26 -4479887 locktype1 = 2 -4479888 locktype2 = 6 -4479909 locktype3 = 2 -4479909 goalCount = 0 -4479910 goalTotal = 20 -4479910 otherCount = 26 -~~~ -4480518 DOWN 4 -4480518 0 512 -4480662 8 512 -4480695 DOWN 4 -4480695 0 512 -4488328 UP 10 -4488329 waslock = 0 -4488328 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4488357 512 16777728 -~~~ -4488507 512 512 -4491647 DOWN 10 -4491647 0 512 -~~~ -~~~ -4491671 0 1536 -~~~ -~~~ -4491673 0 1024 -4491674 homeCount = 57 -4491675 waitCount = 25 -4491675 ripCount = 26 -4491676 locktype1 = 2 -4491676 locktype2 = 6 -4491677 locktype3 = 2 -4491677 goalCount = 0 -4491678 goalTotal = 20 -4491678 otherCount = 26 -~~~ -4491681 UP 10 -4491681 waslock = 0 -4491681 512 1024 -~~~ -4491732 DOWN 10 -4491732 0 1024 -~~~ -~~~ -~~~ -~~~ -4491759 homeCount = 57 -4491760 waitCount = 25 -4491760 ripCount = 26 -4491761 locktype1 = 2 -4491761 locktype2 = 6 -4491762 locktype3 = 2 -4491762 goalCount = 0 -4491763 goalTotal = 20 -4491763 otherCount = 26 -~~~ -4493146 UP 11 -4493146 1024 1024 -4496146 BEEP1 -4496146 BEEP2 -~~~ -~~~ -~~~ -4496174 1024 33555456 -~~~ -4496324 1024 1024 -4502061 DOWN 11 -4502061 0 1024 -4502078 UP 11 -4502078 1024 1024 -~~~ -~~~ -4502085 1024 0 -~~~ -~~~ -4502087 1024 1 -~~~ -~~~ -4502089 1024 3 -~~~ -~~~ -4502091 1024 7 -~~~ -~~~ -4502093 1024 15 -~~~ -~~~ -4502094 1024 31 -~~~ -~~~ -4502096 1024 63 -~~~ -~~~ -4502098 1024 127 -~~~ -~~~ -4502100 1024 255 -4502101 homeCount = 57 -4502101 waitCount = 25 -4502102 ripCount = 27 -4502102 locktype1 = 2 -4502123 locktype2 = 6 -4502124 locktype3 = 2 -4502124 goalCount = 0 -4502124 goalTotal = 20 -4502125 otherCount = 26 -~~~ -4502126 CURRENTGOAL IS [6] -~~~ -4502199 DOWN 11 -4502199 0 255 -4502220 UP 11 -4502220 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4502253 homeCount = 57 -4502254 waitCount = 25 -4502254 ripCount = 27 -4502255 locktype1 = 2 -4502255 locktype2 = 6 -4502256 locktype3 = 2 -4502256 goalCount = 0 -4502256 goalTotal = 20 -4502257 otherCount = 26 -~~~ -4502258 CURRENTGOAL IS [6] -~~~ -4503858 DOWN 11 -4503858 0 255 -4503869 UP 11 -4503869 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4503906 homeCount = 57 -4503907 waitCount = 25 -4503907 ripCount = 27 -4503908 locktype1 = 2 -4503908 locktype2 = 6 -4503909 locktype3 = 2 -4503909 goalCount = 0 -4503910 goalTotal = 20 -4503910 otherCount = 26 -~~~ -4503911 CURRENTGOAL IS [6] -~~~ -4503932 DOWN 11 -4503932 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4503967 homeCount = 57 -4503967 waitCount = 25 -4503968 ripCount = 27 -4503968 locktype1 = 2 -4503969 locktype2 = 6 -4503969 locktype3 = 2 -4503970 goalCount = 0 -4503970 goalTotal = 20 -4503971 otherCount = 26 -~~~ -4503972 CURRENTGOAL IS [6] -~~~ -4508236 UP 7 -4508236 64 255 -~~~ -~~~ -4509602 DOWN 7 -4509602 0 255 -~~~ -~~~ -4509629 0 254 -~~~ -~~~ -4509631 0 252 -~~~ -~~~ -4509632 0 248 -~~~ -~~~ -4509634 0 240 -~~~ -~~~ -4509636 0 224 -~~~ -~~~ -4509638 0 192 -~~~ -~~~ -4509640 0 128 -~~~ -~~~ -4509642 0 0 -~~~ -~~~ -4509643 0 512 -4509644 homeCount = 57 -4509645 waitCount = 25 -4509645 ripCount = 27 -4509646 locktype1 = 2 -4509646 locktype2 = 6 -4509667 locktype3 = 2 -4509668 goalCount = 0 -4509668 goalTotal = 20 -4509669 otherCount = 27 -~~~ -4513958 UP 10 -4513958 waslock = 0 -4513958 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4513985 512 16777728 -~~~ -4514134 512 512 -4518768 DOWN 10 -4518768 0 512 -4518781 UP 10 -4518781 waslock = 0 -4518781 512 512 -~~~ -~~~ -4518788 512 2560 -~~~ -~~~ -4518790 512 2048 -4518791 homeCount = 58 -4518792 waitCount = 25 -4518792 ripCount = 27 -4518793 locktype1 = 2 -4518793 locktype2 = 6 -4518794 locktype3 = 2 -4518794 goalCount = 0 -4518795 goalTotal = 20 -4518795 otherCount = 27 -~~~ -~~~ -4518875 DOWN 10 -4518875 0 2048 -~~~ -~~~ -~~~ -~~~ -4518904 homeCount = 58 -4518905 waitCount = 25 -4518905 ripCount = 27 -4518906 locktype1 = 2 -4518906 locktype2 = 6 -4518907 locktype3 = 2 -4518907 goalCount = 0 -4518908 goalTotal = 20 -4518908 otherCount = 27 -~~~ -4518933 UP 10 -4518934 waslock = 0 -4518933 512 2048 -~~~ -4518972 DOWN 10 -4518972 0 2048 -~~~ -~~~ -~~~ -~~~ -4518998 homeCount = 58 -4518998 waitCount = 25 -4518999 ripCount = 27 -4518999 locktype1 = 2 -4519000 locktype2 = 6 -4519000 locktype3 = 2 -4519001 goalCount = 0 -4519001 goalTotal = 20 -4519002 otherCount = 27 -~~~ -4522457 UP 12 -4522457 2048 2048 -4523944 DOWN 12 -4523944 0 2048 -4523959 UP 12 -4523959 2048 2048 -4525297 DOWN 12 -4525297 0 2048 -4525313 UP 12 -4525313 2048 2048 -4525457 CLICK1 -4525457 CLICK2 -~~~ -~~~ -~~~ -4525481 2048 67110912 -~~~ -4525631 2048 2048 -4533270 DOWN 12 -4533270 0 2048 -~~~ -~~~ -4533292 0 0 -~~~ -~~~ -4533294 0 1 -~~~ -~~~ -4533295 0 3 -~~~ -~~~ -4533297 0 7 -~~~ -~~~ -4533299 0 15 -~~~ -~~~ -4533301 0 31 -~~~ -~~~ -4533303 0 63 -~~~ -~~~ -4533304 0 127 -~~~ -~~~ -4533306 0 255 -4533307 homeCount = 58 -4533308 waitCount = 26 -4533308 ripCount = 27 -4533309 locktype1 = 2 -4533309 locktype2 = 6 -4533310 locktype3 = 2 -4533331 goalCount = 0 -4533331 goalTotal = 20 -4533332 otherCount = 27 -~~~ -4533333 CURRENTGOAL IS [6] -~~~ -4536223 UP 1 -4536223 1 255 -~~~ -~~~ -4537485 DOWN 1 -4537485 0 255 -~~~ -~~~ -4537514 0 254 -~~~ -~~~ -4537516 0 252 -~~~ -~~~ -4537518 0 248 -~~~ -~~~ -4537519 0 240 -~~~ -~~~ -4537521 0 224 -~~~ -~~~ -4537523 0 192 -~~~ -~~~ -4537525 0 128 -~~~ -~~~ -4537527 0 0 -~~~ -~~~ -4537529 0 512 -4537530 homeCount = 58 -4537530 waitCount = 26 -4537531 ripCount = 27 -4537531 locktype1 = 2 -4537532 locktype2 = 6 -4537553 locktype3 = 2 -4537553 goalCount = 0 -4537554 goalTotal = 20 -4537554 otherCount = 28 -~~~ -4541072 UP 10 -4541073 waslock = 0 -4541072 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4541100 512 16777728 -~~~ -4541113 DOWN 10 -4541113 0 16777728 -4541130 UP 10 -4541130 waslock = 0 -4541130 512 16777728 -~~~ -~~~ -4541134 512 16779776 -~~~ -~~~ -4541136 512 16779264 -4541137 homeCount = 59 -4541138 waitCount = 26 -4541138 ripCount = 27 -4541139 locktype1 = 2 -4541139 locktype2 = 6 -4541139 locktype3 = 2 -4541140 goalCount = 0 -4541140 goalTotal = 20 -4541162 otherCount = 28 -~~~ -~~~ -4541250 512 2048 -4544625 DOWN 10 -4544625 0 2048 -4544638 UP 10 -4544638 waslock = 0 -4544638 512 2048 -~~~ -~~~ -~~~ -~~~ -4544662 homeCount = 59 -4544663 waitCount = 26 -4544663 ripCount = 27 -4544664 locktype1 = 2 -4544664 locktype2 = 6 -4544665 locktype3 = 2 -4544665 goalCount = 0 -4544666 goalTotal = 20 -4544666 otherCount = 28 -~~~ -~~~ -4544737 DOWN 10 -4544737 0 2048 -~~~ -~~~ -~~~ -~~~ -4544772 homeCount = 59 -4544773 waitCount = 26 -4544773 ripCount = 27 -4544774 locktype1 = 2 -4544774 locktype2 = 6 -4544775 locktype3 = 2 -4544775 goalCount = 0 -4544776 goalTotal = 20 -4544776 otherCount = 28 -~~~ -4544787 UP 10 -4544787 waslock = 0 -4544787 512 2048 -~~~ -4544820 DOWN 10 -4544820 0 2048 -~~~ -~~~ -~~~ -~~~ -4544842 homeCount = 59 -4544842 waitCount = 26 -4544843 ripCount = 27 -4544843 locktype1 = 2 -4544844 locktype2 = 6 -4544844 locktype3 = 2 -4544845 goalCount = 0 -4544845 goalTotal = 20 -4544846 otherCount = 28 -~~~ -4546342 UP 12 -4546342 2048 2048 -4548004 DOWN 12 -4548004 0 2048 -4548042 UP 12 -4548042 2048 2048 -4549331 DOWN 12 -4549331 0 2048 -4549341 UP 12 -4549341 2048 2048 -4549342 CLICK1 -4549343 CLICK2 -~~~ -~~~ -~~~ -4549361 2048 67110912 -~~~ -4549511 2048 2048 -4555132 DOWN 12 -4555132 0 2048 -~~~ -~~~ -4555156 0 0 -~~~ -~~~ -4555158 0 1 -~~~ -~~~ -4555159 0 3 -~~~ -~~~ -4555161 0 7 -~~~ -~~~ -4555163 0 15 -~~~ -~~~ -4555165 0 31 -~~~ -~~~ -4555167 0 63 -~~~ -4555168 UP 12 -4555168 2048 63 -~~~ -~~~ -4555170 2048 127 -~~~ -4555171 homeCount = 59 -4555172 waitCount = 27 -4555172 ripCount = 27 -4555173 locktype1 = 2 -4555194 locktype2 = 6 -4555194 locktype3 = 2 -4555194 goalCount = 0 -4555195 goalTotal = 20 -4555195 otherCount = 28 -~~~ -4555197 CURRENTGOAL IS [6] -~~~ -4555197 2048 255 -4555226 DOWN 12 -4555226 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4555259 homeCount = 59 -4555259 waitCount = 27 -4555260 ripCount = 27 -4555260 locktype1 = 2 -4555261 locktype2 = 6 -4555261 locktype3 = 2 -4555262 goalCount = 0 -4555262 goalTotal = 20 -4555263 otherCount = 28 -~~~ -4555264 CURRENTGOAL IS [6] -~~~ -4578122 UP 1 -4578122 1 255 -~~~ -~~~ -4578407 DOWN 1 -4578407 0 255 -~~~ -~~~ -4578425 0 254 -~~~ -~~~ -4578427 0 252 -~~~ -~~~ -4578428 0 248 -~~~ -~~~ -4578430 0 240 -~~~ -~~~ -4578432 0 224 -~~~ -~~~ -4578434 0 192 -~~~ -~~~ -4578436 0 128 -~~~ -~~~ -4578438 0 0 -~~~ -~~~ -4578439 0 512 -4578440 homeCount = 59 -4578441 waitCount = 27 -4578441 ripCount = 27 -4578442 locktype1 = 2 -4578442 locktype2 = 6 -4578463 locktype3 = 2 -4578464 goalCount = 0 -4578464 goalTotal = 20 -4578465 otherCount = 29 -~~~ -4578465 1 512 -4578663 DOWN 1 -4578663 0 512 -4582924 1 512 -4582970 DOWN 1 -4582970 0 512 -4591382 UP 10 -4591383 waslock = 0 -4591382 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4591413 512 16777728 -~~~ -4591509 DOWN 10 -4591509 0 16777728 -4591521 UP 10 -4591521 waslock = 0 -4591521 512 16777728 -~~~ -~~~ -4591537 512 16779776 -~~~ -~~~ -4591539 512 16779264 -4591540 homeCount = 60 -4591541 waitCount = 27 -4591541 ripCount = 27 -4591542 locktype1 = 2 -4591542 locktype2 = 6 -4591543 locktype3 = 2 -4591543 goalCount = 0 -4591544 goalTotal = 20 -4591544 otherCount = 29 -~~~ -~~~ -4591566 512 2048 -4591576 DOWN 10 -4591576 0 2048 -~~~ -~~~ -~~~ -~~~ -4591602 homeCount = 60 -4591603 waitCount = 27 -4591603 ripCount = 27 -4591604 locktype1 = 2 -4591604 locktype2 = 6 -4591605 locktype3 = 2 -4591605 goalCount = 0 -4591606 goalTotal = 20 -4591606 otherCount = 29 -~~~ -4591669 UP 10 -4591669 waslock = 0 -4591669 512 2048 -~~~ -4591896 DOWN 10 -4591896 0 2048 -4591916 UP 10 -4591917 waslock = 0 -4591916 512 2048 -~~~ -~~~ -~~~ -~~~ -4591922 homeCount = 60 -4591922 waitCount = 27 -4591923 ripCount = 27 -4591923 locktype1 = 2 -4591924 locktype2 = 6 -4591924 locktype3 = 2 -4591925 goalCount = 0 -4591925 goalTotal = 20 -4591926 otherCount = 29 -~~~ -~~~ -4592040 DOWN 10 -4592040 0 2048 -~~~ -~~~ -~~~ -~~~ -4592063 homeCount = 60 -4592064 waitCount = 27 -4592064 ripCount = 27 -4592065 locktype1 = 2 -4592065 locktype2 = 6 -4592066 locktype3 = 2 -4592066 goalCount = 0 -4592067 goalTotal = 20 -4592067 otherCount = 29 -~~~ -4592076 UP 10 -4592076 waslock = 0 -4592076 512 2048 -~~~ -4592555 DOWN 10 -4592555 0 2048 -4592571 UP 10 -4592571 waslock = 0 -4592571 512 2048 -~~~ -~~~ -~~~ -~~~ -4592596 homeCount = 60 -4592597 waitCount = 27 -4592597 ripCount = 27 -4592598 locktype1 = 2 -4592598 locktype2 = 6 -4592599 locktype3 = 2 -4592599 goalCount = 0 -4592600 goalTotal = 20 -4592600 otherCount = 29 -~~~ -~~~ -4596305 DOWN 10 -4596305 0 2048 -4596315 UP 10 -4596315 waslock = 0 -4596315 512 2048 -~~~ -~~~ -~~~ -~~~ -4596335 homeCount = 60 -4596335 waitCount = 27 -4596336 ripCount = 27 -4596336 locktype1 = 2 -4596337 locktype2 = 6 -4596337 locktype3 = 2 -4596338 goalCount = 0 -4596338 goalTotal = 20 -4596338 otherCount = 29 -~~~ -~~~ -4596388 DOWN 10 -4596388 0 2048 -~~~ -~~~ -~~~ -~~~ -4596418 homeCount = 60 -4596418 waitCount = 27 -4596419 ripCount = 27 -4596419 locktype1 = 2 -4596420 locktype2 = 6 -4596420 locktype3 = 2 -4596421 goalCount = 0 -4596421 goalTotal = 20 -4596422 otherCount = 29 -~~~ -4598400 UP 12 -4598400 2048 2048 -4599231 DOWN 12 -4599231 0 2048 -4599308 UP 12 -4599308 2048 2048 -4599343 DOWN 12 -4599343 0 2048 -4599349 UP 12 -4599349 2048 2048 -4599898 DOWN 12 -4599898 0 2048 -4599929 UP 12 -4599929 2048 2048 -4599943 DOWN 12 -4599943 0 2048 -4599987 UP 12 -4599987 2048 2048 -4601873 DOWN 12 -4601873 0 2048 -4601883 UP 12 -4601883 2048 2048 -4601892 DOWN 12 -4601892 0 2048 -4601911 UP 12 -4601911 2048 2048 -4602165 DOWN 12 -4602165 0 2048 -4602189 UP 12 -4602189 2048 2048 -4602226 DOWN 12 -4602226 0 2048 -4602261 UP 12 -4602261 2048 2048 -4602431 DOWN 12 -4602431 0 2048 -4602447 UP 12 -4602447 2048 2048 -4604401 CLICK1 -4604401 CLICK2 -~~~ -~~~ -~~~ -4604423 2048 67110912 -~~~ -4604573 2048 2048 -4611485 DOWN 12 -4611485 0 2048 -~~~ -~~~ -4611512 0 0 -~~~ -~~~ -4611513 0 1 -~~~ -~~~ -4611515 0 3 -~~~ -~~~ -4611517 0 7 -~~~ -~~~ -4611519 0 15 -~~~ -~~~ -4611521 0 31 -~~~ -4611522 UP 12 -4611522 2048 31 -~~~ -~~~ -4611524 2048 63 -~~~ -~~~ -4611526 2048 127 -~~~ -4611527 2048 255 -4611528 homeCount = 60 -4611528 waitCount = 28 -4611529 ripCount = 27 -4611550 locktype1 = 2 -4611550 locktype2 = 6 -4611551 locktype3 = 2 -4611551 goalCount = 0 -4611552 goalTotal = 20 -4611552 otherCount = 29 -~~~ -4611553 CURRENTGOAL IS [6] -~~~ -4611569 DOWN 12 -4611569 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4611608 homeCount = 60 -4611608 waitCount = 28 -4611609 ripCount = 27 -4611609 locktype1 = 2 -4611610 locktype2 = 6 -4611610 locktype3 = 2 -4611611 goalCount = 0 -4611611 goalTotal = 20 -4611612 otherCount = 29 -~~~ -4611613 CURRENTGOAL IS [6] -~~~ -4621158 UP 5 -4621158 16 255 -~~~ -~~~ -4621238 DOWN 5 -4621238 0 255 -~~~ -~~~ -4621262 0 254 -~~~ -~~~ -4621263 0 252 -~~~ -~~~ -4621265 0 248 -~~~ -~~~ -4621267 0 240 -~~~ -~~~ -4621269 0 224 -~~~ -~~~ -4621271 0 192 -~~~ -~~~ -4621272 0 128 -~~~ -~~~ -4621274 0 0 -~~~ -~~~ -4621276 0 512 -4621277 homeCount = 60 -4621278 waitCount = 28 -4621278 ripCount = 27 -4621279 locktype1 = 2 -4621279 locktype2 = 6 -4621300 locktype3 = 2 -4621301 goalCount = 0 -4621301 goalTotal = 20 -4621302 otherCount = 30 -~~~ -4621492 16 512 -4621883 DOWN 5 -4621883 0 512 -4653143 UP 10 -4653144 waslock = 0 -4653143 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4653177 512 16777728 -~~~ -4653234 DOWN 10 -4653234 0 16777728 -~~~ -~~~ -4653265 0 16779776 -~~~ -~~~ -4653267 0 16779264 -4653268 homeCount = 61 -4653269 waitCount = 28 -4653269 ripCount = 27 -4653270 locktype1 = 2 -4653270 locktype2 = 6 -4653271 locktype3 = 2 -4653271 goalCount = 0 -4653272 goalTotal = 20 -4653272 otherCount = 30 -~~~ -4653327 0 2048 -4653569 UP 10 -4653569 waslock = 0 -4653569 512 2048 -~~~ -4659370 DOWN 10 -4659370 0 2048 -~~~ -~~~ -~~~ -~~~ -4659397 homeCount = 61 -4659397 waitCount = 28 -4659398 ripCount = 27 -4659398 locktype1 = 2 -4659399 locktype2 = 6 -4659399 locktype3 = 2 -4659400 goalCount = 0 -4659400 goalTotal = 20 -4659401 otherCount = 30 -~~~ -4659401 UP 10 -4659402 waslock = 0 -4659401 512 2048 -~~~ -4659484 DOWN 10 -4659484 0 2048 -~~~ -~~~ -~~~ -~~~ -4659507 homeCount = 61 -4659507 waitCount = 28 -4659508 ripCount = 27 -4659508 locktype1 = 2 -4659509 locktype2 = 6 -4659509 locktype3 = 2 -4659510 goalCount = 0 -4659510 goalTotal = 20 -4659511 otherCount = 30 -~~~ -4662675 UP 12 -4662675 2048 2048 -4664127 DOWN 12 -4664127 0 2048 -4664217 UP 12 -4664217 2048 2048 -4664276 DOWN 12 -4664276 0 2048 -4664339 UP 12 -4664339 2048 2048 -4664365 DOWN 12 -4664365 0 2048 -4664394 UP 12 -4664394 2048 2048 -4664592 DOWN 12 -4664592 0 2048 -4664696 UP 12 -4664696 2048 2048 -4666175 CLICK1 -4666175 CLICK2 -~~~ -~~~ -~~~ -4666193 2048 67110912 -~~~ -4666343 2048 2048 -4673291 DOWN 12 -4673291 0 2048 -~~~ -~~~ -4673313 0 0 -~~~ -~~~ -4673315 0 1 -~~~ -~~~ -4673317 0 3 -~~~ -~~~ -4673319 0 7 -~~~ -~~~ -4673321 0 15 -~~~ -~~~ -4673322 0 31 -~~~ -~~~ -4673324 0 63 -~~~ -~~~ -4673326 0 127 -~~~ -~~~ -4673328 0 255 -4673329 homeCount = 61 -4673329 waitCount = 29 -4673330 ripCount = 27 -4673330 locktype1 = 2 -4673331 locktype2 = 6 -4673331 locktype3 = 2 -4673352 goalCount = 0 -4673353 goalTotal = 20 -4673353 otherCount = 30 -~~~ -4673354 CURRENTGOAL IS [6] -~~~ -4685779 UP 4 -4685779 8 255 -~~~ -~~~ -4686370 DOWN 4 -4686370 0 255 -~~~ -~~~ -4686393 0 254 -~~~ -~~~ -4686395 0 252 -~~~ -~~~ -4686397 0 248 -~~~ -~~~ -4686399 0 240 -~~~ -~~~ -4686400 0 224 -~~~ -~~~ -4686402 0 192 -~~~ -~~~ -4686404 0 128 -~~~ -~~~ -4686406 0 0 -~~~ -~~~ -4686408 0 512 -4686409 homeCount = 61 -4686409 waitCount = 29 -4686410 ripCount = 27 -4686410 locktype1 = 2 -4686411 locktype2 = 6 -4686432 locktype3 = 2 -4686432 goalCount = 0 -4686433 goalTotal = 20 -4686433 otherCount = 31 -~~~ -4686950 8 512 -4687129 DOWN 4 -4687129 0 512 -4691150 UP 10 -4691150 waslock = 0 -4691150 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4691178 512 16777728 -~~~ -4691328 512 512 -4694660 DOWN 10 -4694660 0 512 -~~~ -~~~ -4694682 0 2560 -~~~ -~~~ -4694684 0 2048 -4694685 homeCount = 62 -4694685 waitCount = 29 -4694686 ripCount = 27 -4694686 locktype1 = 2 -4694687 locktype2 = 6 -4694687 locktype3 = 2 -4694688 goalCount = 0 -4694688 goalTotal = 20 -4694689 otherCount = 31 -~~~ -4697293 UP 12 -4697293 2048 2048 -4698720 DOWN 12 -4698720 0 2048 -4698799 UP 12 -4698799 2048 2048 -4700121 DOWN 12 -4700121 0 2048 -4700144 UP 12 -4700144 2048 2048 -4700294 CLICK1 -4700294 CLICK2 -~~~ -~~~ -~~~ -4700314 2048 67110912 -~~~ -4700464 2048 2048 -4707458 DOWN 12 -4707458 0 2048 -~~~ -~~~ -4707482 0 0 -~~~ -~~~ -4707484 0 1 -~~~ -~~~ -4707485 0 3 -~~~ -~~~ -4707487 0 7 -~~~ -~~~ -4707489 0 15 -~~~ -~~~ -4707491 0 31 -~~~ -~~~ -4707493 0 63 -~~~ -~~~ -4707495 0 127 -~~~ -~~~ -4707496 0 255 -4707497 homeCount = 62 -4707498 waitCount = 30 -4707498 ripCount = 27 -4707499 locktype1 = 2 -4707499 locktype2 = 6 -4707521 locktype3 = 2 -4707521 goalCount = 0 -4707522 goalTotal = 20 -4707522 otherCount = 31 -~~~ -4707523 CURRENTGOAL IS [6] -~~~ -4708450 UP 12 -4708450 2048 255 -4708630 DOWN 12 -4708630 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4708670 homeCount = 62 -4708670 waitCount = 30 -4708671 ripCount = 27 -4708671 locktype1 = 2 -4708672 locktype2 = 6 -4708672 locktype3 = 2 -4708673 goalCount = 0 -4708673 goalTotal = 20 -4708674 otherCount = 31 -~~~ -4708675 CURRENTGOAL IS [6] -~~~ -4712657 UP 8 -4712657 128 255 -~~~ -~~~ -4713151 DOWN 8 -4713151 0 255 -~~~ -~~~ -4713172 0 254 -~~~ -~~~ -4713174 0 252 -~~~ -~~~ -4713176 0 248 -~~~ -~~~ -4713178 0 240 -~~~ -~~~ -4713180 0 224 -~~~ -~~~ -4713181 0 192 -~~~ -~~~ -4713183 0 128 -~~~ -~~~ -4713185 0 0 -~~~ -~~~ -4713187 0 512 -4713188 homeCount = 62 -4713188 waitCount = 30 -4713189 ripCount = 27 -4713189 locktype1 = 2 -4713190 locktype2 = 6 -4713211 locktype3 = 2 -4713211 goalCount = 0 -4713212 goalTotal = 20 -4713212 otherCount = 32 -~~~ -4717890 UP 10 -4717891 waslock = 0 -4717890 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4717919 512 16777728 -~~~ -4718069 512 512 -4718228 DOWN 10 -4718228 0 512 -~~~ -~~~ -4718252 0 2560 -~~~ -~~~ -4718254 0 2048 -4718255 homeCount = 63 -4718256 waitCount = 30 -4718256 ripCount = 27 -4718257 locktype1 = 2 -4718257 locktype2 = 6 -4718258 locktype3 = 2 -4718258 goalCount = 0 -4718259 goalTotal = 20 -4718259 otherCount = 32 -~~~ -4718277 UP 10 -4718277 waslock = 0 -4718277 512 2048 -~~~ -4723383 DOWN 10 -4723383 0 2048 -~~~ -~~~ -~~~ -~~~ -4723407 homeCount = 63 -4723408 waitCount = 30 -4723408 ripCount = 27 -4723409 locktype1 = 2 -4723409 locktype2 = 6 -4723409 locktype3 = 2 -4723410 goalCount = 0 -4723410 goalTotal = 20 -4723411 otherCount = 32 -~~~ -4723434 UP 10 -4723434 waslock = 0 -4723434 512 2048 -~~~ -4723461 DOWN 10 -4723461 0 2048 -~~~ -~~~ -~~~ -~~~ -4723486 homeCount = 63 -4723487 waitCount = 30 -4723487 ripCount = 27 -4723488 locktype1 = 2 -4723488 locktype2 = 6 -4723489 locktype3 = 2 -4723489 goalCount = 0 -4723490 goalTotal = 20 -4723490 otherCount = 32 -~~~ -4725181 UP 12 -4725181 2048 2048 -4730467 DOWN 12 -4730467 0 2048 -4730514 UP 12 -4730514 2048 2048 -4732181 CLICK1 -4732181 CLICK2 -~~~ -~~~ -~~~ -4732205 2048 67110912 -~~~ -4732354 2048 2048 -4741145 DOWN 12 -4741145 0 2048 -~~~ -~~~ -4741163 0 0 -~~~ -~~~ -4741165 0 1 -~~~ -~~~ -4741167 0 3 -~~~ -~~~ -4741169 0 7 -~~~ -~~~ -4741171 0 15 -~~~ -~~~ -4741172 0 31 -~~~ -~~~ -4741174 0 63 -~~~ -~~~ -4741176 0 127 -~~~ -~~~ -4741178 0 255 -4741179 homeCount = 63 -4741179 waitCount = 31 -4741180 ripCount = 27 -4741180 locktype1 = 2 -4741181 locktype2 = 6 -4741202 locktype3 = 2 -4741203 goalCount = 0 -4741203 goalTotal = 20 -4741204 otherCount = 32 -~~~ -4741205 CURRENTGOAL IS [6] -~~~ -4744871 UP 4 -4744871 8 255 -~~~ -~~~ -4745068 DOWN 4 -4745068 0 255 -~~~ -~~~ -4745095 0 254 -~~~ -~~~ -4745097 0 252 -~~~ -~~~ -4745099 0 248 -~~~ -~~~ -4745101 0 240 -~~~ -~~~ -4745102 0 224 -~~~ -~~~ -4745104 0 192 -~~~ -~~~ -4745106 0 128 -~~~ -~~~ -4745108 0 0 -~~~ -~~~ -4745110 0 512 -4745111 homeCount = 63 -4745111 waitCount = 31 -4745112 ripCount = 27 -4745112 locktype1 = 2 -4745113 locktype2 = 6 -4745134 locktype3 = 2 -4745134 goalCount = 0 -4745135 goalTotal = 20 -4745135 otherCount = 33 -~~~ -4749055 UP 10 -4749055 waslock = 0 -4749055 512 512 -4749065 DOWN 10 -4749065 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4749082 0 16777728 -~~~ -~~~ -~~~ -4749085 0 16779776 -~~~ -~~~ -4749087 0 16779264 -4749088 homeCount = 64 -4749088 waitCount = 31 -4749089 ripCount = 27 -4749089 locktype1 = 2 -4749089 locktype2 = 6 -4749090 locktype3 = 2 -4749090 goalCount = 0 -4749091 goalTotal = 20 -4749091 otherCount = 33 -~~~ -4749164 UP 10 -4749165 waslock = 0 -4749164 512 16779264 -~~~ -4749232 512 2048 -4752944 DOWN 10 -4752944 0 2048 -~~~ -~~~ -~~~ -~~~ -4752969 homeCount = 64 -4752969 waitCount = 31 -4752970 ripCount = 27 -4752970 locktype1 = 2 -4752971 locktype2 = 6 -4752971 locktype3 = 2 -4752972 goalCount = 0 -4752972 goalTotal = 20 -4752972 otherCount = 33 -~~~ -4752973 UP 10 -4752973 waslock = 0 -4752973 512 2048 -~~~ -4753030 DOWN 10 -4753030 0 2048 -~~~ -~~~ -~~~ -~~~ -4753060 homeCount = 64 -4753061 waitCount = 31 -4753061 ripCount = 27 -4753062 locktype1 = 2 -4753062 locktype2 = 6 -4753063 locktype3 = 2 -4753063 goalCount = 0 -4753064 goalTotal = 20 -4753064 otherCount = 33 -~~~ -4754833 UP 12 -4754833 2048 2048 -4758334 CLICK1 -4758334 CLICK2 -~~~ -~~~ -~~~ -4758357 2048 67110912 -~~~ -4758507 2048 2048 -4765227 DOWN 12 -4765226 0 2048 -~~~ -~~~ -4765245 0 0 -~~~ -~~~ -4765247 0 1 -~~~ -~~~ -4765249 0 3 -~~~ -~~~ -4765251 0 7 -~~~ -~~~ -4765253 0 15 -~~~ -~~~ -4765254 0 31 -~~~ -~~~ -4765256 0 63 -~~~ -~~~ -4765258 0 127 -~~~ -~~~ -4765260 0 255 -4765261 homeCount = 64 -4765261 waitCount = 32 -4765262 ripCount = 27 -4765262 locktype1 = 2 -4765263 locktype2 = 6 -4765284 locktype3 = 2 -4765284 goalCount = 0 -4765285 goalTotal = 20 -4765285 otherCount = 33 -~~~ -4765286 CURRENTGOAL IS [6] -~~~ -4765287 UP 12 -4765287 2048 255 -4765315 DOWN 12 -4765315 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4765350 homeCount = 64 -4765351 waitCount = 32 -4765351 ripCount = 27 -4765352 locktype1 = 2 -4765352 locktype2 = 6 -4765353 locktype3 = 2 -4765353 goalCount = 0 -4765354 goalTotal = 20 -4765354 otherCount = 33 -~~~ -4765355 CURRENTGOAL IS [6] -~~~ -4770972 UP 2 -4770972 2 255 -~~~ -~~~ -4771352 DOWN 2 -4771352 0 255 -~~~ -~~~ -4771375 0 254 -~~~ -~~~ -4771377 0 252 -~~~ -4771379 2 252 -~~~ -~~~ -4771380 2 248 -~~~ -4771381 2 240 -~~~ -~~~ -4771383 2 224 -~~~ -~~~ -4771384 2 192 -~~~ -~~~ -4771386 2 128 -~~~ -~~~ -4771388 2 0 -~~~ -~~~ -4771390 2 512 -4771391 homeCount = 64 -4771392 waitCount = 32 -4771392 ripCount = 27 -4771393 locktype1 = 2 -4771414 locktype2 = 6 -4771414 locktype3 = 2 -4771415 goalCount = 0 -4771415 goalTotal = 20 -4771416 otherCount = 34 -~~~ -4772044 DOWN 2 -4772044 0 512 -4772070 2 512 -4772136 DOWN 2 -4772136 0 512 -4776301 UP 10 -4776302 waslock = 0 -4776301 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4776334 512 16777728 -~~~ -4776484 512 512 -4780543 DOWN 10 -4780543 0 512 -~~~ -~~~ -4780568 0 1536 -~~~ -~~~ -4780570 0 1024 -4780571 homeCount = 65 -4780572 waitCount = 32 -4780572 ripCount = 27 -4780573 locktype1 = 2 -4780573 locktype2 = 6 -4780574 locktype3 = 2 -4780574 goalCount = 0 -4780574 goalTotal = 20 -4780575 otherCount = 34 -~~~ -4780616 UP 10 -4780616 waslock = 0 -4780616 512 1024 -4780631 DOWN 10 -4780631 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -4780658 homeCount = 65 -4780659 waitCount = 32 -4780659 ripCount = 27 -4780660 locktype1 = 2 -4780660 locktype2 = 6 -4780661 locktype3 = 2 -4780661 goalCount = 0 -4780662 goalTotal = 20 -4780662 otherCount = 34 -~~~ -4782283 UP 11 -4782283 1024 1024 -4785849 DOWN 11 -4785849 0 1024 -4785873 UP 11 -4785873 1024 1024 -4785903 DOWN 11 -4785903 0 1024 -4785929 UP 11 -4785929 1024 1024 -4786783 BEEP1 -4786783 BEEP2 -~~~ -~~~ -~~~ -4786802 1024 33555456 -~~~ -4786952 1024 1024 -4791693 DOWN 11 -4791693 0 1024 -~~~ -~~~ -4791720 0 0 -~~~ -~~~ -4791722 0 1 -~~~ -~~~ -4791724 0 3 -~~~ -~~~ -4791726 0 7 -~~~ -~~~ -4791727 0 15 -~~~ -~~~ -4791729 0 31 -~~~ -~~~ -4791731 0 63 -~~~ -~~~ -4791733 0 127 -~~~ -~~~ -4791735 0 255 -4791736 homeCount = 65 -4791736 waitCount = 32 -4791737 ripCount = 28 -4791737 locktype1 = 2 -4791738 locktype2 = 6 -4791738 locktype3 = 2 -4791759 goalCount = 0 -4791760 goalTotal = 20 -4791760 otherCount = 34 -~~~ -4791761 CURRENTGOAL IS [6] -~~~ -4791762 UP 11 -4791762 1024 255 -4796159 DOWN 11 -4796159 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4796199 homeCount = 65 -4796200 waitCount = 32 -4796200 ripCount = 28 -4796201 locktype1 = 2 -4796201 locktype2 = 6 -4796202 locktype3 = 2 -4796202 goalCount = 0 -4796203 goalTotal = 20 -4796203 otherCount = 34 -~~~ -4796204 CURRENTGOAL IS [6] -~~~ -4803475 UP 6 -4803475 32 255 -~~~ -~~~ -4803496 outer reward -~~~ -4803496 32 2097407 -~~~ -~~~ -4803946 32 255 -4810377 DOWN 6 -4810377 0 255 -~~~ -~~~ -4810403 0 254 -~~~ -~~~ -4810405 0 252 -~~~ -~~~ -4810407 0 248 -~~~ -~~~ -4810408 0 240 -~~~ -~~~ -4810410 0 224 -~~~ -~~~ -4810412 0 192 -~~~ -~~~ -4810414 0 128 -~~~ -~~~ -4810416 0 0 -~~~ -~~~ -4810418 0 512 -4810419 homeCount = 65 -4810419 waitCount = 32 -4810420 ripCount = 28 -4810420 locktype1 = 2 -4810420 locktype2 = 6 -4810442 locktype3 = 2 -4810442 goalCount = 1 -4810442 goalTotal = 21 -4810443 otherCount = 34 -~~~ -4810443 32 512 -4810501 DOWN 6 -4810501 0 512 -4810580 32 512 -4810629 DOWN 6 -4810629 0 512 -4813598 32 512 -4813796 DOWN 6 -4813796 0 512 -4813876 32 512 -4813942 DOWN 6 -4813942 0 512 -4818623 UP 10 -4818623 waslock = 0 -4818623 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4818651 512 16777728 -~~~ -4818801 512 512 -4818900 DOWN 10 -4818900 0 512 -~~~ -~~~ -4818925 0 2560 -~~~ -~~~ -4818927 0 2048 -4818928 homeCount = 66 -4818929 waitCount = 32 -4818929 ripCount = 28 -4818930 locktype1 = 2 -4818930 locktype2 = 6 -4818930 locktype3 = 2 -4818931 goalCount = 1 -4818931 goalTotal = 21 -4818932 otherCount = 34 -~~~ -4818952 UP 10 -4818953 waslock = 0 -4818952 512 2048 -~~~ -4822693 DOWN 10 -4822693 0 2048 -~~~ -~~~ -~~~ -~~~ -4822716 homeCount = 66 -4822717 waitCount = 32 -4822717 ripCount = 28 -4822718 locktype1 = 2 -4822718 locktype2 = 6 -4822719 locktype3 = 2 -4822719 goalCount = 1 -4822720 goalTotal = 21 -4822720 otherCount = 34 -~~~ -4824694 UP 12 -4824694 2048 2048 -4829105 DOWN 12 -4829105 0 2048 -4829150 UP 12 -4829150 2048 2048 -4829195 CLICK1 -4829195 CLICK2 -~~~ -~~~ -~~~ -4829217 2048 67110912 -~~~ -4829366 2048 2048 -4835687 DOWN 12 -4835687 0 2048 -~~~ -~~~ -4835713 0 0 -~~~ -~~~ -4835715 0 1 -~~~ -~~~ -4835717 0 3 -~~~ -~~~ -4835719 0 7 -~~~ -~~~ -4835720 0 15 -~~~ -~~~ -4835722 0 31 -~~~ -~~~ -4835724 0 63 -~~~ -~~~ -4835726 0 127 -~~~ -~~~ -4835728 0 255 -4835729 homeCount = 66 -4835729 waitCount = 33 -4835730 ripCount = 28 -4835730 locktype1 = 2 -4835731 locktype2 = 6 -4835752 locktype3 = 2 -4835752 goalCount = 1 -4835753 goalTotal = 21 -4835753 otherCount = 34 -~~~ -4835754 CURRENTGOAL IS [6] -~~~ -4845023 UP 6 -4845023 32 255 -~~~ -~~~ -4845047 outer reward -~~~ -4845048 32 2097407 -~~~ -~~~ -4845425 DOWN 6 -4845425 0 2097407 -4845446 32 2097407 -~~~ -~~~ -4845448 32 2097406 -~~~ -~~~ -4845449 32 2097404 -~~~ -~~~ -4845451 32 2097400 -~~~ -~~~ -4845453 32 2097392 -~~~ -~~~ -4845455 32 2097376 -~~~ -~~~ -4845457 32 2097344 -~~~ -~~~ -4845458 32 2097280 -~~~ -~~~ -4845460 32 2097152 -~~~ -~~~ -4845462 32 2097664 -4845463 homeCount = 66 -4845464 waitCount = 33 -4845484 ripCount = 28 -4845485 locktype1 = 2 -4845485 locktype2 = 6 -4845486 locktype3 = 2 -4845486 goalCount = 2 -4845487 goalTotal = 22 -4845487 otherCount = 34 -~~~ -4845497 32 512 -4851372 DOWN 6 -4851372 0 512 -4851430 32 512 -4851482 DOWN 6 -4851482 0 512 -4851574 32 512 -4851594 DOWN 6 -4851594 0 512 -4855743 UP 10 -4855743 waslock = 0 -4855743 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4855773 512 16777728 -~~~ -4855923 512 512 -4860434 DOWN 10 -4860434 0 512 -~~~ -~~~ -4860459 0 1536 -~~~ -~~~ -4860461 0 1024 -4860462 homeCount = 67 -4860462 waitCount = 33 -4860463 ripCount = 28 -4860463 locktype1 = 2 -4860464 locktype2 = 6 -4860464 locktype3 = 2 -4860464 goalCount = 2 -4860465 goalTotal = 22 -4860465 otherCount = 34 -~~~ -4862633 UP 11 -4862633 1024 1024 -4864053 DOWN 11 -4864053 0 1024 -4864086 UP 11 -4864086 1024 1024 -4865406 DOWN 11 -4865406 0 1024 -4865441 UP 11 -4865441 1024 1024 -4866186 DOWN 11 -4866186 0 1024 -4866229 UP 11 -4866229 1024 1024 -4866243 DOWN 11 -4866243 0 1024 -4866287 UP 11 -4866287 1024 1024 -4866547 DOWN 11 -4866547 0 1024 -4866559 UP 11 -4866559 1024 1024 -4866633 BEEP1 -4866633 BEEP2 -~~~ -~~~ -~~~ -4866656 1024 33555456 -~~~ -4866806 1024 1024 -4871315 DOWN 11 -4871315 0 1024 -~~~ -~~~ -4871342 0 0 -~~~ -~~~ -4871344 0 1 -~~~ -4871345 UP 11 -4871345 1024 1 -~~~ -~~~ -4871347 1024 3 -~~~ -~~~ -4871348 1024 7 -~~~ -~~~ -4871350 1024 15 -~~~ -4871351 1024 31 -~~~ -~~~ -4871353 1024 63 -~~~ -~~~ -4871354 1024 127 -~~~ -~~~ -4871356 1024 255 -4871357 homeCount = 67 -4871379 waitCount = 33 -4871379 ripCount = 29 -4871380 locktype1 = 2 -4871380 locktype2 = 6 -4871380 locktype3 = 2 -4871381 goalCount = 2 -4871381 goalTotal = 22 -4871382 otherCount = 34 -~~~ -4871383 CURRENTGOAL IS [6] -~~~ -4871383 DOWN 11 -4871383 0 255 -4871405 UP 11 -4871405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4871442 homeCount = 67 -4871442 waitCount = 33 -4871443 ripCount = 29 -4871443 locktype1 = 2 -4871444 locktype2 = 6 -4871444 locktype3 = 2 -4871445 goalCount = 2 -4871445 goalTotal = 22 -4871445 otherCount = 34 -~~~ -4871447 CURRENTGOAL IS [6] -~~~ -4873361 DOWN 11 -4873361 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4873397 homeCount = 67 -4873397 waitCount = 33 -4873398 ripCount = 29 -4873398 locktype1 = 2 -4873399 locktype2 = 6 -4873399 locktype3 = 2 -4873400 goalCount = 2 -4873400 goalTotal = 22 -4873401 otherCount = 34 -~~~ -4873402 CURRENTGOAL IS [6] -~~~ -4873455 UP 11 -4873455 1024 255 -4873472 DOWN 11 -4873472 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -4873497 UP 11 -4873497 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4873509 homeCount = 67 -4873510 waitCount = 33 -4873510 ripCount = 29 -4873511 locktype1 = 2 -4873511 locktype2 = 6 -4873512 locktype3 = 2 -4873512 goalCount = 2 -4873512 goalTotal = 22 -4873513 otherCount = 34 -~~~ -4873514 CURRENTGOAL IS [6] -~~~ -4874404 DOWN 11 -4874404 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4874438 homeCount = 67 -4874438 waitCount = 33 -4874439 ripCount = 29 -4874439 locktype1 = 2 -4874440 locktype2 = 6 -4874440 locktype3 = 2 -4874441 goalCount = 2 -4874441 goalTotal = 22 -4874442 otherCount = 34 -~~~ -4874443 CURRENTGOAL IS [6] -~~~ -4877582 UP 7 -4877582 64 255 -~~~ -~~~ -4878186 DOWN 7 -4878186 0 255 -~~~ -~~~ -4878208 0 254 -~~~ -~~~ -4878210 0 252 -~~~ -~~~ -4878212 0 248 -~~~ -~~~ -4878214 0 240 -~~~ -~~~ -4878215 0 224 -~~~ -~~~ -4878217 0 192 -~~~ -~~~ -4878219 0 128 -~~~ -~~~ -4878221 0 0 -~~~ -~~~ -4878223 0 512 -4878224 homeCount = 67 -4878224 waitCount = 33 -4878225 ripCount = 29 -4878225 locktype1 = 2 -4878226 locktype2 = 6 -4878247 locktype3 = 2 -4878247 goalCount = 2 -4878248 goalTotal = 22 -4878248 otherCount = 35 -~~~ -4878255 64 512 -4878364 DOWN 7 -4878364 0 512 -4888220 UP 6 -4888220 32 512 -~~~ -4888240 WHITENOISE -~~~ -~~~ -~~~ -4888242 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4888552 DOWN 6 -4888552 0 0 -4888580 32 0 -4889335 DOWN 6 -4889335 0 0 -4895758 512 0 -4895900 0 0 -4896086 512 0 -4896709 0 0 -4896767 512 0 -4896810 0 0 -4913240 LOCKEND -~~~ -~~~ -~~~ -4913260 0 512 -4913827 UP 10 -4913827 waslock = 0 -4913827 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4913856 512 16777728 -~~~ -4914006 512 512 -4919172 DOWN 10 -4919171 0 512 -~~~ -~~~ -4919189 0 1536 -~~~ -~~~ -4919191 0 1024 -4919192 homeCount = 68 -4919192 waitCount = 33 -4919193 ripCount = 29 -4919193 locktype1 = 2 -4919193 locktype2 = 7 -4919194 locktype3 = 2 -4919194 goalCount = 2 -4919195 goalTotal = 22 -4919195 otherCount = 35 -~~~ -4919208 UP 10 -4919208 waslock = 0 -4919208 512 1024 -~~~ -4919258 DOWN 10 -4919258 0 1024 -~~~ -~~~ -~~~ -~~~ -4919283 homeCount = 68 -4919284 waitCount = 33 -4919284 ripCount = 29 -4919285 locktype1 = 2 -4919285 locktype2 = 7 -4919286 locktype3 = 2 -4919286 goalCount = 2 -4919287 goalTotal = 22 -4919287 otherCount = 35 -~~~ -4920827 UP 11 -4920827 1024 1024 -4923419 DOWN 11 -4923419 0 1024 -4923459 UP 11 -4923459 1024 1024 -4924327 BEEP1 -4924327 BEEP2 -~~~ -~~~ -~~~ -4924356 1024 33555456 -~~~ -4924506 1024 1024 -4930037 DOWN 11 -4930037 0 1024 -~~~ -~~~ -4930062 UP 11 -4930062 1024 0 -~~~ -~~~ -4930064 1024 1 -~~~ -~~~ -4930066 1024 3 -~~~ -~~~ -4930067 1024 7 -~~~ -~~~ -4930069 1024 15 -~~~ -~~~ -4930071 1024 31 -~~~ -~~~ -4930073 1024 63 -~~~ -~~~ -4930075 1024 127 -~~~ -~~~ -4930076 1024 255 -4930078 homeCount = 68 -4930078 waitCount = 33 -4930079 ripCount = 30 -4930100 locktype1 = 2 -4930100 locktype2 = 7 -4930101 locktype3 = 2 -4930101 goalCount = 2 -4930102 goalTotal = 22 -4930102 otherCount = 35 -~~~ -4930103 CURRENTGOAL IS [6] -~~~ -4931788 DOWN 11 -4931788 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4931830 homeCount = 68 -4931831 waitCount = 33 -4931831 ripCount = 30 -4931832 locktype1 = 2 -4931832 locktype2 = 7 -4931833 locktype3 = 2 -4931833 goalCount = 2 -4931834 goalTotal = 22 -4931834 otherCount = 35 -~~~ -4931835 CURRENTGOAL IS [6] -~~~ -4931856 UP 11 -4931856 1024 255 -4931911 DOWN 11 -4931911 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4931949 homeCount = 68 -4931949 waitCount = 33 -4931950 ripCount = 30 -4931950 locktype1 = 2 -4931951 locktype2 = 7 -4931951 locktype3 = 2 -4931952 goalCount = 2 -4931952 goalTotal = 22 -4931953 otherCount = 35 -~~~ -4931954 CURRENTGOAL IS [6] -~~~ -4935641 UP 6 -4935641 32 255 -~~~ -~~~ -4935667 outer reward -~~~ -4935667 32 2097407 -~~~ -~~~ -4935968 DOWN 6 -4935968 0 2097407 -~~~ -4935992 32 2097407 -~~~ -4935993 32 2097406 -~~~ -~~~ -4935995 32 2097404 -~~~ -~~~ -4935997 32 2097400 -~~~ -~~~ -4935999 32 2097392 -~~~ -~~~ -4936000 32 2097376 -~~~ -~~~ -4936002 32 2097344 -~~~ -~~~ -4936004 32 2097280 -~~~ -~~~ -4936006 32 2097152 -~~~ -~~~ -4936008 32 2097664 -4936009 homeCount = 68 -4936029 waitCount = 33 -4936031 ripCount = 30 -4936031 locktype1 = 2 -4936031 locktype2 = 7 -4936032 locktype3 = 2 -4936032 goalCount = 3 -4936033 goalTotal = 23 -4936033 otherCount = 35 -~~~ -4936117 32 512 -4943256 DOWN 6 -4943256 0 512 -4943326 32 512 -4943341 DOWN 6 -4943341 0 512 -4947597 UP 10 -4947597 waslock = 0 -4947597 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4947631 512 16777728 -~~~ -4947780 512 512 -4947829 DOWN 10 -4947829 0 512 -~~~ -~~~ -4947853 0 2560 -~~~ -~~~ -4947855 0 2048 -4947856 homeCount = 69 -4947856 waitCount = 33 -4947857 ripCount = 30 -4947857 locktype1 = 2 -4947858 locktype2 = 7 -4947858 locktype3 = 2 -4947859 goalCount = 3 -4947859 goalTotal = 23 -4947860 otherCount = 35 -~~~ -4947988 UP 10 -4947989 waslock = 0 -4947988 512 2048 -~~~ -4952305 DOWN 10 -4952305 0 2048 -~~~ -~~~ -~~~ -~~~ -4952326 homeCount = 69 -4952326 waitCount = 33 -4952327 ripCount = 30 -4952327 locktype1 = 2 -4952328 locktype2 = 7 -4952328 locktype3 = 2 -4952329 goalCount = 3 -4952329 goalTotal = 23 -4952330 otherCount = 35 -~~~ -4952364 UP 10 -4952365 waslock = 0 -4952364 512 2048 -~~~ -4952401 DOWN 10 -4952401 0 2048 -~~~ -~~~ -~~~ -~~~ -4952421 homeCount = 69 -4952422 waitCount = 33 -4952422 ripCount = 30 -4952423 locktype1 = 2 -4952423 locktype2 = 7 -4952424 locktype3 = 2 -4952424 goalCount = 3 -4952425 goalTotal = 23 -4952425 otherCount = 35 -~~~ -4954268 UP 12 -4954268 2048 2048 -4956332 DOWN 12 -4956332 0 2048 -4956407 UP 12 -4956407 2048 2048 -4957946 DOWN 12 -4957946 0 2048 -4958000 UP 12 -4958000 2048 2048 -4959769 CLICK1 -4959769 CLICK2 -~~~ -~~~ -~~~ -4959795 2048 67110912 -~~~ -4959945 2048 2048 -4966527 DOWN 12 -4966527 0 2048 -~~~ -~~~ -4966544 0 0 -~~~ -~~~ -4966546 0 1 -~~~ -~~~ -4966548 0 3 -~~~ -~~~ -4966550 0 7 -~~~ -~~~ -4966552 0 15 -~~~ -~~~ -4966553 0 31 -~~~ -4966555 UP 12 -4966555 2048 31 -~~~ -~~~ -4966557 2048 63 -~~~ -~~~ -4966558 2048 127 -~~~ -4966559 2048 255 -4966560 homeCount = 69 -4966561 waitCount = 34 -4966562 ripCount = 30 -4966583 locktype1 = 2 -4966583 locktype2 = 7 -4966584 locktype3 = 2 -4966584 goalCount = 3 -4966585 goalTotal = 23 -4966585 otherCount = 35 -~~~ -4966586 CURRENTGOAL IS [6] -~~~ -4966600 DOWN 12 -4966600 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4966632 homeCount = 69 -4966632 waitCount = 34 -4966633 ripCount = 30 -4966633 locktype1 = 2 -4966634 locktype2 = 7 -4966634 locktype3 = 2 -4966635 goalCount = 3 -4966635 goalTotal = 23 -4966636 otherCount = 35 -~~~ -4966637 CURRENTGOAL IS [6] -~~~ -4966668 UP 12 -4966668 2048 255 -4969174 DOWN 12 -4969174 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4969211 homeCount = 69 -4969212 waitCount = 34 -4969212 ripCount = 30 -4969213 locktype1 = 2 -4969213 locktype2 = 7 -4969214 locktype3 = 2 -4969214 goalCount = 3 -4969215 goalTotal = 23 -4969215 otherCount = 35 -~~~ -4969216 CURRENTGOAL IS [6] -~~~ -4974183 UP 6 -4974183 32 255 -~~~ -~~~ -4974209 outer reward -~~~ -4974209 32 2097407 -~~~ -~~~ -4974418 DOWN 6 -4974418 0 2097407 -~~~ -~~~ -4974436 0 2097406 -~~~ -~~~ -4974438 0 2097404 -~~~ -~~~ -4974440 0 2097400 -~~~ -~~~ -4974442 0 2097392 -~~~ -~~~ -4974444 0 2097376 -~~~ -~~~ -4974445 0 2097344 -~~~ -~~~ -4974447 0 2097280 -~~~ -~~~ -4974449 0 2097152 -~~~ -~~~ -4974451 0 2097664 -4974452 homeCount = 69 -4974453 waitCount = 34 -4974453 ripCount = 30 -4974474 locktype1 = 2 -4974475 locktype2 = 7 -4974475 locktype3 = 2 -4974476 goalCount = 4 -4974476 goalTotal = 24 -4974477 otherCount = 35 -~~~ -4974477 32 2097664 -4974659 32 512 -4975104 DOWN 6 -4975104 0 512 -4975119 32 512 -4975232 DOWN 6 -4975232 0 512 -4975246 32 512 -4975346 DOWN 6 -4975346 0 512 -4975380 32 512 -4975480 DOWN 6 -4975480 0 512 -4975509 32 512 -4975617 DOWN 6 -4975617 0 512 -4975642 32 512 -4975756 DOWN 6 -4975756 0 512 -4975773 32 512 -4975895 DOWN 6 -4975895 0 512 -4975910 32 512 -4980733 DOWN 6 -4980733 0 512 -4980774 32 512 -4980818 DOWN 6 -4980818 0 512 -4984695 UP 10 -4984695 waslock = 0 -4984694 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4984722 512 16777728 -~~~ -4984872 512 512 -4989193 DOWN 10 -4989193 0 512 -~~~ -~~~ -4989216 0 1536 -~~~ -~~~ -4989218 0 1024 -4989219 homeCount = 70 -4989219 waitCount = 34 -4989220 ripCount = 30 -4989220 locktype1 = 2 -4989221 locktype2 = 7 -4989221 locktype3 = 2 -4989222 goalCount = 4 -4989222 goalTotal = 24 -4989223 otherCount = 35 -~~~ -4989259 UP 10 -4989260 waslock = 0 -4989259 512 1024 -4989279 DOWN 10 -4989279 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -4989301 homeCount = 70 -4989301 waitCount = 34 -4989302 ripCount = 30 -4989302 locktype1 = 2 -4989303 locktype2 = 7 -4989303 locktype3 = 2 -4989304 goalCount = 4 -4989304 goalTotal = 24 -4989305 otherCount = 35 -~~~ -4991305 UP 11 -4991305 1024 1024 -4992871 DOWN 11 -4992871 0 1024 -4992939 UP 11 -4992939 1024 1024 -4992987 DOWN 11 -4992987 0 1024 -4992997 UP 11 -4992997 1024 1024 -4994737 DOWN 11 -4994737 0 1024 -4994747 UP 11 -4994747 1024 1024 -4997651 DOWN 11 -4997651 0 1024 -4997663 UP 11 -4997663 1024 1024 -4998026 DOWN 11 -4998026 0 1024 -4998060 UP 11 -4998060 1024 1024 -4998077 DOWN 11 -4998077 0 1024 -4998088 UP 11 -4998088 1024 1024 -4998306 BEEP1 -4998306 BEEP2 -~~~ -~~~ -~~~ -4998329 1024 33555456 -~~~ -4998478 1024 1024 -5004681 DOWN 11 -5004681 0 1024 -~~~ -~~~ -5004706 0 0 -~~~ -~~~ -5004708 0 1 -~~~ -~~~ -5004710 0 3 -~~~ -~~~ -5004711 UP 11 -5004711 1024 7 -~~~ -~~~ -5004713 1024 15 -~~~ -~~~ -5004715 1024 31 -~~~ -~~~ -5004717 1024 63 -~~~ -~~~ -5004719 1024 127 -~~~ -~~~ -5004720 1024 255 -5004721 homeCount = 70 -5004722 waitCount = 34 -5004723 ripCount = 31 -5004744 locktype1 = 2 -5004744 locktype2 = 7 -5004744 locktype3 = 2 -5004745 goalCount = 4 -5004745 goalTotal = 24 -5004746 otherCount = 35 -~~~ -5004747 CURRENTGOAL IS [6] -~~~ -5004769 DOWN 11 -5004769 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5004805 homeCount = 70 -5004806 waitCount = 34 -5004806 ripCount = 31 -5004807 locktype1 = 2 -5004807 locktype2 = 7 -5004808 locktype3 = 2 -5004808 goalCount = 4 -5004809 goalTotal = 24 -5004809 otherCount = 35 -~~~ -5004810 CURRENTGOAL IS [6] -~~~ -5014643 UP 6 -5014643 32 255 -~~~ -~~~ -5014669 outer reward -~~~ -5014670 32 2097407 -~~~ -~~~ -5014904 DOWN 6 -5014904 0 2097407 -~~~ -~~~ -5014928 0 2097406 -~~~ -~~~ -5014930 0 2097404 -~~~ -~~~ -5014931 0 2097400 -~~~ -~~~ -5014933 0 2097392 -~~~ -~~~ -5014935 0 2097376 -~~~ -~~~ -5014937 0 2097344 -~~~ -~~~ -5014939 0 2097280 -~~~ -~~~ -5014940 0 2097152 -~~~ -~~~ -5014942 0 2097664 -5014943 homeCount = 70 -5014944 waitCount = 34 -5014944 ripCount = 31 -5014966 locktype1 = 2 -5014966 locktype2 = 7 -5014966 locktype3 = 2 -5014967 goalCount = 5 -5014967 goalTotal = 25 -5014968 otherCount = 35 -~~~ -5014968 32 2097664 -5015119 32 512 -5015329 DOWN 6 -5015329 0 512 -5015358 32 512 -5015461 DOWN 6 -5015461 0 512 -5015476 32 512 -5015588 DOWN 6 -5015588 0 512 -5015600 32 512 -5015717 DOWN 6 -5015717 0 512 -5015727 32 512 -5015843 DOWN 6 -5015843 0 512 -5015855 32 512 -5020832 DOWN 6 -5020832 0 512 -5020886 32 512 -5020928 DOWN 6 -5020928 0 512 -5026912 UP 10 -5026912 waslock = 0 -5026912 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5026939 512 16777728 -~~~ -5027086 DOWN 10 -5027086 0 16777728 -5027089 0 512 -~~~ -~~~ -5027104 0 2560 -~~~ -~~~ -5027106 0 2048 -5027107 homeCount = 71 -5027107 waitCount = 34 -5027108 ripCount = 31 -5027108 locktype1 = 2 -5027109 locktype2 = 7 -5027109 locktype3 = 2 -5027110 goalCount = 5 -5027110 goalTotal = 25 -5027111 otherCount = 35 -~~~ -5027415 UP 10 -5027415 waslock = 0 -5027415 512 2048 -~~~ -5032403 DOWN 10 -5032403 0 2048 -5032408 UP 10 -5032409 waslock = 0 -5032408 512 2048 -~~~ -~~~ -~~~ -~~~ -5032426 homeCount = 71 -5032427 waitCount = 34 -5032427 ripCount = 31 -5032428 locktype1 = 2 -5032428 locktype2 = 7 -5032429 locktype3 = 2 -5032429 goalCount = 5 -5032430 goalTotal = 25 -5032430 otherCount = 35 -~~~ -~~~ -5032515 DOWN 10 -5032515 0 2048 -~~~ -~~~ -~~~ -~~~ -5032539 homeCount = 71 -5032539 waitCount = 34 -5032540 ripCount = 31 -5032540 locktype1 = 2 -5032541 locktype2 = 7 -5032541 locktype3 = 2 -5032542 goalCount = 5 -5032542 goalTotal = 25 -5032543 otherCount = 35 -~~~ -5032546 UP 10 -5032546 waslock = 0 -5032546 512 2048 -~~~ -5032613 DOWN 10 -5032613 0 2048 -~~~ -~~~ -~~~ -~~~ -5032639 homeCount = 71 -5032640 waitCount = 34 -5032640 ripCount = 31 -5032641 locktype1 = 2 -5032641 locktype2 = 7 -5032642 locktype3 = 2 -5032642 goalCount = 5 -5032643 goalTotal = 25 -5032643 otherCount = 35 -~~~ -5034484 UP 12 -5034484 2048 2048 -5036958 DOWN 12 -5036958 0 2048 -5037036 UP 12 -5037036 2048 2048 -5040518 DOWN 12 -5040518 0 2048 -5040568 UP 12 -5040568 2048 2048 -5042485 CLICK1 -5042485 CLICK2 -~~~ -~~~ -~~~ -5042506 2048 67110912 -~~~ -5042656 2048 2048 -5047511 DOWN 12 -5047510 0 2048 -5047520 UP 12 -5047520 2048 2048 -~~~ -~~~ -5047534 2048 0 -~~~ -~~~ -5047536 2048 1 -~~~ -~~~ -5047538 2048 3 -~~~ -~~~ -5047540 2048 7 -~~~ -~~~ -5047541 2048 15 -~~~ -~~~ -5047543 2048 31 -~~~ -~~~ -5047545 2048 63 -~~~ -~~~ -5047547 2048 127 -~~~ -~~~ -5047549 2048 255 -5047550 homeCount = 71 -5047550 waitCount = 35 -5047551 ripCount = 31 -5047551 locktype1 = 2 -5047573 locktype2 = 7 -5047573 locktype3 = 2 -5047573 goalCount = 5 -5047574 goalTotal = 25 -5047574 otherCount = 35 -~~~ -5047575 CURRENTGOAL IS [6] -~~~ -5047576 DOWN 12 -5047576 0 255 -5047581 UP 12 -5047581 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5047620 homeCount = 71 -5047621 waitCount = 35 -5047621 ripCount = 31 -5047622 locktype1 = 2 -5047622 locktype2 = 7 -5047623 locktype3 = 2 -5047623 goalCount = 5 -5047624 goalTotal = 25 -5047624 otherCount = 35 -~~~ -5047625 CURRENTGOAL IS [6] -~~~ -5050479 DOWN 12 -5050479 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5050518 homeCount = 71 -5050518 waitCount = 35 -5050519 ripCount = 31 -5050519 locktype1 = 2 -5050520 locktype2 = 7 -5050520 locktype3 = 2 -5050521 goalCount = 5 -5050521 goalTotal = 25 -5050522 otherCount = 35 -~~~ -5050523 CURRENTGOAL IS [6] -~~~ -5065836 UP 6 -5065836 32 255 -~~~ -~~~ -5065861 outer reward -~~~ -5065862 32 2097407 -~~~ -~~~ -5066136 DOWN 6 -5066136 0 2097407 -~~~ -~~~ -5066159 0 2097406 -~~~ -~~~ -5066161 0 2097404 -~~~ -~~~ -5066163 0 2097400 -~~~ -~~~ -5066165 0 2097392 -~~~ -~~~ -5066167 0 2097376 -~~~ -~~~ -5066168 0 2097344 -~~~ -~~~ -5066170 0 2097280 -~~~ -5066172 32 2097280 -~~~ -~~~ -5066173 32 2097152 -~~~ -5066174 32 2097664 -5066176 homeCount = 71 -5066176 waitCount = 35 -5066197 ripCount = 31 -5066197 locktype1 = 2 -5066198 locktype2 = 7 -5066198 locktype3 = 2 -5066199 goalCount = 6 -5066199 goalTotal = 26 -5066200 otherCount = 35 -~~~ -5066311 32 512 -5066557 DOWN 6 -5066557 0 512 -5066572 32 512 -5067050 DOWN 6 -5067050 0 512 -5067083 32 512 -5071100 DOWN 6 -5071100 0 512 -5071143 32 512 -5072577 DOWN 6 -5072577 0 512 -5079381 UP 10 -5079382 waslock = 0 -5079381 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5079405 512 16777728 -~~~ -5079555 512 512 -5084925 DOWN 10 -5084925 0 512 -5084940 UP 10 -5084940 waslock = 0 -5084940 512 512 -~~~ -~~~ -5084949 512 2560 -~~~ -~~~ -5084951 512 2048 -5084952 homeCount = 72 -5084952 waitCount = 35 -5084953 ripCount = 31 -5084953 locktype1 = 2 -5084954 locktype2 = 7 -5084954 locktype3 = 2 -5084955 goalCount = 6 -5084955 goalTotal = 26 -5084955 otherCount = 35 -~~~ -~~~ -5085037 DOWN 10 -5085037 0 2048 -~~~ -~~~ -~~~ -~~~ -5085065 homeCount = 72 -5085066 waitCount = 35 -5085066 ripCount = 31 -5085067 locktype1 = 2 -5085067 locktype2 = 7 -5085068 locktype3 = 2 -5085068 goalCount = 6 -5085069 goalTotal = 26 -5085069 otherCount = 35 -~~~ -5086546 UP 12 -5086546 2048 2048 -5086603 DOWN 12 -5086603 0 2048 -5086685 UP 12 -5086685 2048 2048 -5088393 DOWN 12 -5088393 0 2048 -5088565 UP 12 -5088565 2048 2048 -5089288 DOWN 12 -5089288 0 2048 -5089293 UP 12 -5089293 2048 2048 -5094546 CLICK1 -5094546 CLICK2 -~~~ -~~~ -~~~ -5094571 2048 67110912 -~~~ -5094721 2048 2048 -5100032 DOWN 12 -5100032 0 2048 -5100044 UP 12 -5100044 2048 2048 -~~~ -~~~ -5100049 2048 0 -~~~ -~~~ -5100051 2048 1 -~~~ -~~~ -5100052 2048 3 -~~~ -~~~ -5100054 2048 7 -~~~ -~~~ -5100056 2048 15 -~~~ -~~~ -5100058 2048 31 -~~~ -~~~ -5100060 2048 63 -~~~ -~~~ -5100062 2048 127 -~~~ -~~~ -5100063 2048 255 -5100064 homeCount = 72 -5100065 waitCount = 36 -5100065 ripCount = 31 -5100066 locktype1 = 2 -5100087 locktype2 = 7 -5100088 locktype3 = 2 -5100088 goalCount = 6 -5100089 goalTotal = 26 -5100089 otherCount = 35 -~~~ -5100090 CURRENTGOAL IS [6] -~~~ -5100091 DOWN 12 -5100090 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5100137 homeCount = 72 -5100137 waitCount = 36 -5100138 ripCount = 31 -5100138 locktype1 = 2 -5100139 locktype2 = 7 -5100139 locktype3 = 2 -5100140 goalCount = 6 -5100140 goalTotal = 26 -5100141 otherCount = 35 -~~~ -5100142 CURRENTGOAL IS [6] -~~~ -5100176 UP 12 -5100176 2048 255 -5100497 DOWN 12 -5100497 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5100537 homeCount = 72 -5100538 waitCount = 36 -5100538 ripCount = 31 -5100539 locktype1 = 2 -5100539 locktype2 = 7 -5100540 locktype3 = 2 -5100540 goalCount = 6 -5100541 goalTotal = 26 -5100541 otherCount = 35 -~~~ -5100542 CURRENTGOAL IS [6] -~~~ -5100637 UP 12 -5100637 2048 255 -5102022 DOWN 12 -5102022 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5102060 homeCount = 72 -5102061 waitCount = 36 -5102061 ripCount = 31 -5102062 locktype1 = 2 -5102062 locktype2 = 7 -5102063 locktype3 = 2 -5102063 goalCount = 6 -5102064 goalTotal = 26 -5102064 otherCount = 35 -~~~ -5102065 CURRENTGOAL IS [6] -~~~ -5108521 UP 6 -5108521 32 255 -~~~ -~~~ -5108549 outer reward -~~~ -5108549 32 2097407 -~~~ -~~~ -5108766 DOWN 6 -5108766 0 2097407 -~~~ -~~~ -5108789 0 2097406 -~~~ -~~~ -5108791 0 2097404 -~~~ -~~~ -5108793 0 2097400 -~~~ -~~~ -5108795 0 2097392 -~~~ -~~~ -5108797 0 2097376 -~~~ -~~~ -5108798 0 2097344 -~~~ -~~~ -5108800 0 2097280 -~~~ -~~~ -5108802 0 2097152 -~~~ -~~~ -5108804 0 2097664 -5108805 homeCount = 72 -5108805 waitCount = 36 -5108806 ripCount = 31 -5108827 locktype1 = 2 -5108828 locktype2 = 7 -5108828 locktype3 = 2 -5108829 goalCount = 7 -5108829 goalTotal = 27 -5108830 otherCount = 35 -~~~ -5108830 32 2097664 -5108999 32 512 -5109204 DOWN 6 -5109204 0 512 -5109215 32 512 -5109317 DOWN 6 -5109317 0 512 -5109351 32 512 -5109448 DOWN 6 -5109448 0 512 -5109470 32 512 -5109572 DOWN 6 -5109572 0 512 -5109589 32 512 -5109693 DOWN 6 -5109693 0 512 -5109723 32 512 -5113979 DOWN 6 -5113979 0 512 -5113984 32 512 -5115574 DOWN 6 -5115574 0 512 -5119927 UP 10 -5119927 waslock = 0 -5119927 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5119957 512 16777728 -~~~ -5119972 DOWN 10 -5119971 0 16777728 -~~~ -~~~ -5119990 0 16779776 -~~~ -~~~ -5119992 0 16779264 -5119993 homeCount = 73 -5119994 waitCount = 36 -5119994 ripCount = 31 -5119995 locktype1 = 2 -5119995 locktype2 = 7 -5119996 locktype3 = 2 -5119996 goalCount = 7 -5119997 goalTotal = 27 -5119997 otherCount = 35 -~~~ -5120049 UP 10 -5120049 waslock = 0 -5120049 512 16779264 -~~~ -5120107 512 2048 -5123786 DOWN 10 -5123786 0 2048 -~~~ -~~~ -~~~ -~~~ -5123813 homeCount = 73 -5123813 waitCount = 36 -5123814 ripCount = 31 -5123814 locktype1 = 2 -5123814 locktype2 = 7 -5123815 locktype3 = 2 -5123815 goalCount = 7 -5123816 goalTotal = 27 -5123816 otherCount = 35 -~~~ -5125790 UP 12 -5125790 2048 2048 -5127598 DOWN 12 -5127598 0 2048 -5127629 UP 12 -5127629 2048 2048 -5129445 DOWN 12 -5129445 0 2048 -5129463 UP 12 -5129463 2048 2048 -5130858 DOWN 12 -5130858 0 2048 -5130864 UP 12 -5130864 2048 2048 -5133790 CLICK1 -5133790 CLICK2 -~~~ -~~~ -~~~ -5133813 2048 67110912 -~~~ -5133963 2048 2048 -5138931 DOWN 12 -5138931 0 2048 -5138937 UP 12 -5138937 2048 2048 -~~~ -~~~ -5138950 2048 0 -~~~ -~~~ -5138951 2048 1 -~~~ -~~~ -5138953 2048 3 -~~~ -~~~ -5138955 2048 7 -~~~ -~~~ -5138957 2048 15 -~~~ -~~~ -5138959 2048 31 -~~~ -~~~ -5138961 2048 63 -~~~ -~~~ -5138962 2048 127 -~~~ -~~~ -5138964 2048 255 -5138965 homeCount = 73 -5138966 waitCount = 37 -5138966 ripCount = 31 -5138967 locktype1 = 2 -5138987 locktype2 = 7 -5138988 locktype3 = 2 -5138988 goalCount = 7 -5138989 goalTotal = 27 -5138989 otherCount = 35 -~~~ -5138990 CURRENTGOAL IS [6] -~~~ -5138991 DOWN 12 -5138991 0 255 -5139007 UP 12 -5139007 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5139035 homeCount = 73 -5139035 waitCount = 37 -5139036 ripCount = 31 -5139036 locktype1 = 2 -5139037 locktype2 = 7 -5139037 locktype3 = 2 -5139038 goalCount = 7 -5139038 goalTotal = 27 -5139039 otherCount = 35 -~~~ -5139040 CURRENTGOAL IS [6] -~~~ -5141276 DOWN 12 -5141276 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5141318 homeCount = 73 -5141319 waitCount = 37 -5141319 ripCount = 31 -5141320 locktype1 = 2 -5141320 locktype2 = 7 -5141321 locktype3 = 2 -5141321 goalCount = 7 -5141322 goalTotal = 27 -5141322 otherCount = 35 -~~~ -5141323 CURRENTGOAL IS [6] -~~~ -5147743 UP 6 -5147743 32 255 -~~~ -~~~ -5147763 outer reward -~~~ -5147764 32 2097407 -~~~ -~~~ -5147993 DOWN 6 -5147993 0 2097407 -~~~ -~~~ -5148012 0 2097406 -~~~ -~~~ -5148014 0 2097404 -~~~ -~~~ -5148016 0 2097400 -~~~ -~~~ -5148018 0 2097392 -~~~ -~~~ -5148019 0 2097376 -~~~ -~~~ -5148021 0 2097344 -~~~ -~~~ -5148023 0 2097280 -~~~ -~~~ -5148025 0 2097152 -~~~ -~~~ -5148027 0 2097664 -5148028 homeCount = 73 -5148028 waitCount = 37 -5148029 ripCount = 31 -5148050 locktype1 = 2 -5148050 locktype2 = 7 -5148051 locktype3 = 2 -5148051 goalCount = 8 -5148052 goalTotal = 28 -5148052 otherCount = 35 -~~~ -5148068 32 2097664 -5148213 32 512 -5148335 DOWN 6 -5148335 0 512 -5148358 32 512 -5148457 DOWN 6 -5148457 0 512 -5148501 32 512 -5148589 DOWN 6 -5148589 0 512 -5148618 32 512 -5155375 DOWN 6 -5155374 0 512 -5159939 UP 10 -5159939 waslock = 0 -5159939 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5159964 512 16777728 -~~~ -5160114 512 512 -5160151 DOWN 10 -5160151 0 512 -5160165 UP 10 -5160165 waslock = 0 -5160165 512 512 -~~~ -~~~ -5160171 512 2560 -~~~ -~~~ -5160173 512 2048 -5160174 homeCount = 74 -5160175 waitCount = 37 -5160175 ripCount = 31 -5160176 locktype1 = 2 -5160176 locktype2 = 7 -5160177 locktype3 = 2 -5160177 goalCount = 8 -5160178 goalTotal = 28 -5160178 otherCount = 35 -~~~ -~~~ -5164052 DOWN 10 -5164052 0 2048 -~~~ -~~~ -~~~ -~~~ -5164072 homeCount = 74 -5164073 waitCount = 37 -5164073 ripCount = 31 -5164074 locktype1 = 2 -5164074 locktype2 = 7 -5164075 locktype3 = 2 -5164075 goalCount = 8 -5164076 goalTotal = 28 -5164076 otherCount = 35 -~~~ -5165621 UP 12 -5165621 2048 2048 -5172621 CLICK1 -5172621 CLICK2 -~~~ -~~~ -~~~ -5172641 2048 67110912 -~~~ -5172791 2048 2048 -5178708 DOWN 12 -5178708 0 2048 -5178727 UP 12 -5178727 2048 2048 -~~~ -~~~ -5178729 2048 0 -~~~ -~~~ -5178731 2048 1 -~~~ -~~~ -5178733 2048 3 -~~~ -~~~ -5178735 2048 7 -~~~ -~~~ -5178737 2048 15 -~~~ -~~~ -5178738 2048 31 -~~~ -~~~ -5178740 2048 63 -~~~ -~~~ -5178742 2048 127 -~~~ -~~~ -5178744 2048 255 -5178745 homeCount = 74 -5178745 waitCount = 38 -5178766 ripCount = 31 -5178767 locktype1 = 2 -5178767 locktype2 = 7 -5178768 locktype3 = 2 -5178768 goalCount = 8 -5178769 goalTotal = 28 -5178769 otherCount = 35 -~~~ -5178770 CURRENTGOAL IS [6] -~~~ -5178791 DOWN 12 -5178791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5178818 homeCount = 74 -5178819 waitCount = 38 -5178819 ripCount = 31 -5178820 locktype1 = 2 -5178820 locktype2 = 7 -5178821 locktype3 = 2 -5178821 goalCount = 8 -5178822 goalTotal = 28 -5178822 otherCount = 35 -~~~ -5178823 CURRENTGOAL IS [6] -~~~ -5178824 UP 12 -5178824 2048 255 -5178846 DOWN 12 -5178846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5178877 homeCount = 74 -5178877 waitCount = 38 -5178878 ripCount = 31 -5178878 locktype1 = 2 -5178879 locktype2 = 7 -5178879 locktype3 = 2 -5178880 goalCount = 8 -5178880 goalTotal = 28 -5178881 otherCount = 35 -~~~ -5178882 CURRENTGOAL IS [6] -~~~ -5179006 UP 12 -5179006 2048 255 -5180699 DOWN 12 -5180699 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5180741 homeCount = 74 -5180741 waitCount = 38 -5180742 ripCount = 31 -5180742 locktype1 = 2 -5180743 locktype2 = 7 -5180743 locktype3 = 2 -5180744 goalCount = 8 -5180744 goalTotal = 28 -5180744 otherCount = 35 -~~~ -5180746 CURRENTGOAL IS [6] -~~~ -5185076 UP 6 -5185076 32 255 -~~~ -~~~ -5185099 outer reward -~~~ -5185100 32 2097407 -~~~ -~~~ -5185320 DOWN 6 -5185320 0 2097407 -~~~ -~~~ -5185345 0 2097406 -~~~ -~~~ -5185347 0 2097404 -~~~ -~~~ -5185349 0 2097400 -~~~ -~~~ -5185351 0 2097392 -~~~ -~~~ -5185353 0 2097376 -~~~ -~~~ -5185355 0 2097344 -~~~ -~~~ -5185356 0 2097280 -~~~ -~~~ -5185358 0 2097152 -~~~ -~~~ -5185360 0 2097664 -5185361 homeCount = 74 -5185362 waitCount = 38 -5185362 ripCount = 31 -5185383 locktype1 = 2 -5185384 locktype2 = 7 -5185384 locktype3 = 2 -5185385 goalCount = 9 -5185385 goalTotal = 29 -5185386 otherCount = 35 -~~~ -5185386 32 2097664 -5185549 32 512 -5185758 DOWN 6 -5185757 0 512 -5185784 32 512 -5186141 DOWN 6 -5186141 0 512 -5186165 32 512 -5189858 DOWN 6 -5189857 0 512 -5189864 32 512 -5192101 DOWN 6 -5192101 0 512 -5202397 UP 10 -5202398 waslock = 0 -5202397 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5202424 512 16777728 -~~~ -5202574 512 512 -5202655 DOWN 10 -5202655 0 512 -~~~ -~~~ -5202677 0 1536 -~~~ -~~~ -5202679 0 1024 -5202680 homeCount = 75 -5202680 waitCount = 38 -5202681 ripCount = 31 -5202681 locktype1 = 2 -5202682 locktype2 = 7 -5202682 locktype3 = 2 -5202683 goalCount = 9 -5202683 goalTotal = 29 -5202684 otherCount = 35 -~~~ -5202757 UP 10 -5202758 waslock = 0 -5202757 512 1024 -~~~ -5207019 DOWN 10 -5207019 0 1024 -5207036 UP 10 -5207036 waslock = 0 -5207035 512 1024 -~~~ -~~~ -~~~ -~~~ -5207042 homeCount = 75 -5207042 waitCount = 38 -5207043 ripCount = 31 -5207043 locktype1 = 2 -5207044 locktype2 = 7 -5207044 locktype3 = 2 -5207045 goalCount = 9 -5207045 goalTotal = 29 -5207046 otherCount = 35 -~~~ -~~~ -5207117 DOWN 10 -5207117 0 1024 -~~~ -~~~ -~~~ -~~~ -5207144 homeCount = 75 -5207144 waitCount = 38 -5207145 ripCount = 31 -5207145 locktype1 = 2 -5207146 locktype2 = 7 -5207146 locktype3 = 2 -5207147 goalCount = 9 -5207147 goalTotal = 29 -5207148 otherCount = 35 -~~~ -5209520 UP 11 -5209520 1024 1024 -5211517 DOWN 11 -5211517 0 1024 -5211529 UP 11 -5211529 1024 1024 -5212520 BEEP1 -5212520 BEEP2 -~~~ -~~~ -~~~ -5212541 1024 33555456 -~~~ -5212691 1024 1024 -5217823 DOWN 11 -5217823 0 1024 -5217847 UP 11 -5217847 1024 1024 -~~~ -~~~ -5217850 1024 0 -~~~ -~~~ -5217852 1024 1 -~~~ -~~~ -5217854 1024 3 -~~~ -~~~ -5217856 1024 7 -~~~ -~~~ -5217857 1024 15 -~~~ -~~~ -5217859 1024 31 -~~~ -~~~ -5217861 1024 63 -~~~ -~~~ -5217863 1024 127 -~~~ -~~~ -5217865 1024 255 -5217866 homeCount = 75 -5217866 waitCount = 38 -5217867 ripCount = 32 -5217867 locktype1 = 2 -5217888 locktype2 = 7 -5217889 locktype3 = 2 -5217889 goalCount = 9 -5217889 goalTotal = 29 -5217890 otherCount = 35 -~~~ -5217891 CURRENTGOAL IS [6] -~~~ -5217891 DOWN 11 -5217891 0 255 -5217918 UP 11 -5217918 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5217949 homeCount = 75 -5217949 waitCount = 38 -5217950 ripCount = 32 -5217950 locktype1 = 2 -5217951 locktype2 = 7 -5217951 locktype3 = 2 -5217952 goalCount = 9 -5217952 goalTotal = 29 -5217953 otherCount = 35 -~~~ -5217954 CURRENTGOAL IS [6] -~~~ -5217954 DOWN 11 -5217954 0 255 -5217976 UP 11 -5217976 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5218014 homeCount = 75 -5218015 waitCount = 38 -5218016 ripCount = 32 -5218016 locktype1 = 2 -5218017 locktype2 = 7 -5218017 locktype3 = 2 -5218017 goalCount = 9 -5218018 goalTotal = 29 -5218018 otherCount = 35 -~~~ -5218019 CURRENTGOAL IS [6] -~~~ -5219962 DOWN 11 -5219962 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5219994 homeCount = 75 -5219995 waitCount = 38 -5219996 ripCount = 32 -5219996 locktype1 = 2 -5219997 locktype2 = 7 -5219997 locktype3 = 2 -5219997 goalCount = 9 -5219998 goalTotal = 29 -5219998 otherCount = 35 -~~~ -5219999 CURRENTGOAL IS [6] -~~~ -5220006 UP 11 -5220006 1024 255 -5220095 DOWN 11 -5220095 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5220135 homeCount = 75 -5220135 waitCount = 38 -5220136 ripCount = 32 -5220136 locktype1 = 2 -5220137 locktype2 = 7 -5220137 locktype3 = 2 -5220138 goalCount = 9 -5220138 goalTotal = 29 -5220139 otherCount = 35 -~~~ -5220140 CURRENTGOAL IS [6] -~~~ -5220369 UP 11 -5220369 1024 255 -5220384 DOWN 11 -5220384 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5220420 homeCount = 75 -5220421 waitCount = 38 -5220421 ripCount = 32 -5220422 locktype1 = 2 -5220422 locktype2 = 7 -5220423 locktype3 = 2 -5220423 goalCount = 9 -5220424 goalTotal = 29 -5220424 otherCount = 35 -~~~ -5220425 CURRENTGOAL IS [6] -~~~ -5220756 UP 11 -5220756 1024 255 -5222629 DOWN 11 -5222629 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222658 UP 11 -5222658 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222666 homeCount = 75 -5222666 waitCount = 38 -5222667 ripCount = 32 -5222667 locktype1 = 2 -5222668 locktype2 = 7 -5222668 locktype3 = 2 -5222669 goalCount = 9 -5222669 goalTotal = 29 -5222669 otherCount = 35 -~~~ -5222671 CURRENTGOAL IS [6] -~~~ -5222721 DOWN 11 -5222721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222756 homeCount = 75 -5222757 waitCount = 38 -5222757 ripCount = 32 -5222758 locktype1 = 2 -5222758 locktype2 = 7 -5222759 locktype3 = 2 -5222759 goalCount = 9 -5222760 goalTotal = 29 -5222760 otherCount = 35 -~~~ -5222761 CURRENTGOAL IS [6] -~~~ -5225752 UP 6 -5225752 32 255 -~~~ -~~~ -5225775 outer reward -~~~ -5225775 32 2097407 -~~~ -~~~ -5225780 outerreps = 8 -~~~ -~~~ -5226029 DOWN 6 -5226029 0 2097407 -~~~ -~~~ -5226052 0 2097406 -~~~ -~~~ -5226053 0 2097404 -~~~ -~~~ -5226055 0 2097400 -~~~ -~~~ -5226057 0 2097392 -~~~ -~~~ -5226059 0 2097376 -~~~ -~~~ -5226061 0 2097344 -~~~ -~~~ -5226062 0 2097280 -~~~ -5226064 32 2097280 -~~~ -~~~ -5226066 32 2097152 -~~~ -5226067 32 2097664 -5226068 homeCount = 75 -5226068 waitCount = 38 -5226089 ripCount = 32 -5226090 locktype1 = 2 -5226090 locktype2 = 7 -5226091 locktype3 = 2 -5226091 goalCount = 0 -5226092 goalTotal = 30 -5226092 otherCount = 35 -~~~ -5226225 32 512 -5234212 DOWN 6 -5234212 0 512 -5234299 32 512 -5234328 DOWN 6 -5234328 0 512 -5238432 UP 10 -5238432 waslock = 0 -5238432 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5238461 512 16777728 -~~~ -5238611 512 512 -5238651 DOWN 10 -5238651 0 512 -5238675 UP 10 -5238675 waslock = 0 -5238675 512 512 -~~~ -~~~ -~~~ -5238678 512 1536 -~~~ -5238679 512 1024 -5238680 homeCount = 76 -5238680 waitCount = 38 -5238681 ripCount = 32 -5238681 locktype1 = 2 -5238682 locktype2 = 7 -5238682 locktype3 = 2 -5238683 goalCount = 0 -5238704 goalTotal = 30 -5238704 otherCount = 35 -~~~ -~~~ -5242681 DOWN 10 -5242681 0 1024 -~~~ -~~~ -5242707 UP 10 -5242707 waslock = 0 -5242707 512 1024 -~~~ -~~~ -5242710 homeCount = 76 -5242710 waitCount = 38 -5242711 ripCount = 32 -5242711 locktype1 = 2 -5242712 locktype2 = 7 -5242712 locktype3 = 2 -5242713 goalCount = 0 -5242713 goalTotal = 30 -5242714 otherCount = 35 -~~~ -~~~ -5242781 DOWN 10 -5242781 0 1024 -~~~ -~~~ -~~~ -~~~ -5242809 homeCount = 76 -5242809 waitCount = 38 -5242810 ripCount = 32 -5242810 locktype1 = 2 -5242811 locktype2 = 7 -5242811 locktype3 = 2 -5242812 goalCount = 0 -5242812 goalTotal = 30 -5242813 otherCount = 35 -~~~ -5244744 UP 11 -5244744 1024 1024 -5245062 DOWN 11 -5245062 0 1024 -5245263 LOCKOUT 3 -~~~ -5245287 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -5245291 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5245390 UP 11 -5245390 1024 0 -5247273 DOWN 11 -5247273 0 0 -5247303 UP 11 -5247303 1024 0 -5248048 DOWN 11 -5248048 0 0 -5248092 UP 11 -5248092 1024 0 -5249639 DOWN 11 -5249639 0 0 -5270287 LOCKEND -~~~ -~~~ -~~~ -5270306 0 512 -5281092 UP 10 -5281092 waslock = 0 -5281092 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5281122 512 16777728 -~~~ -5281134 DOWN 10 -5281134 0 16777728 -~~~ -~~~ -5281155 0 16778752 -~~~ -~~~ -5281157 0 16778240 -5281158 homeCount = 77 -5281159 waitCount = 38 -5281159 ripCount = 32 -5281160 locktype1 = 2 -5281160 locktype2 = 7 -5281161 locktype3 = 3 -5281161 goalCount = 0 -5281162 goalTotal = 30 -5281162 otherCount = 35 -~~~ -5281227 UP 10 -5281228 waslock = 0 -5281227 512 16778240 -~~~ -5281272 512 1024 -5281345 DOWN 10 -5281344 0 1024 -~~~ -~~~ -~~~ -~~~ -5281368 homeCount = 77 -5281369 waitCount = 38 -5281369 ripCount = 32 -5281370 locktype1 = 2 -5281370 locktype2 = 7 -5281371 locktype3 = 3 -5281371 goalCount = 0 -5281372 goalTotal = 30 -5281372 otherCount = 35 -~~~ -5281376 UP 10 -5281376 waslock = 0 -5281376 512 1024 -~~~ -5281500 DOWN 10 -5281500 0 1024 -5281522 UP 10 -5281522 waslock = 0 -5281522 512 1024 -~~~ -~~~ -~~~ -~~~ -5281529 homeCount = 77 -5281530 waitCount = 38 -5281530 ripCount = 32 -5281531 locktype1 = 2 -5281531 locktype2 = 7 -5281532 locktype3 = 3 -5281532 goalCount = 0 -5281533 goalTotal = 30 -5281533 otherCount = 35 -~~~ -~~~ -5281646 DOWN 10 -5281646 0 1024 -~~~ -~~~ -~~~ -~~~ -5281669 homeCount = 77 -5281669 waitCount = 38 -5281670 ripCount = 32 -5281670 locktype1 = 2 -5281671 locktype2 = 7 -5281671 locktype3 = 3 -5281672 goalCount = 0 -5281672 goalTotal = 30 -5281673 otherCount = 35 -~~~ -5281674 UP 10 -5281675 waslock = 0 -5281674 512 1024 -~~~ -5281809 DOWN 10 -5281809 0 1024 -5281818 UP 10 -5281818 waslock = 0 -5281818 512 1024 -~~~ -~~~ -~~~ -~~~ -5281840 homeCount = 77 -5281841 waitCount = 38 -5281841 ripCount = 32 -5281842 locktype1 = 2 -5281842 locktype2 = 7 -5281843 locktype3 = 3 -5281843 goalCount = 0 -5281844 goalTotal = 30 -5281844 otherCount = 35 -~~~ -~~~ -5285763 DOWN 10 -5285763 0 1024 -5285779 UP 10 -5285780 waslock = 0 -5285779 512 1024 -~~~ -~~~ -~~~ -~~~ -5285799 homeCount = 77 -5285800 waitCount = 38 -5285800 ripCount = 32 -5285801 locktype1 = 2 -5285801 locktype2 = 7 -5285802 locktype3 = 3 -5285802 goalCount = 0 -5285803 goalTotal = 30 -5285803 otherCount = 35 -~~~ -~~~ -5285874 DOWN 10 -5285874 0 1024 -~~~ -~~~ -~~~ -~~~ -5285900 homeCount = 77 -5285900 waitCount = 38 -5285901 ripCount = 32 -5285901 locktype1 = 2 -5285902 locktype2 = 7 -5285902 locktype3 = 3 -5285902 goalCount = 0 -5285903 goalTotal = 30 -5285903 otherCount = 35 -~~~ -5285920 UP 10 -5285920 waslock = 0 -5285920 512 1024 -~~~ -5285968 DOWN 10 -5285968 0 1024 -~~~ -~~~ -~~~ -~~~ -5285989 homeCount = 77 -5285990 waitCount = 38 -5285990 ripCount = 32 -5285991 locktype1 = 2 -5285991 locktype2 = 7 -5285992 locktype3 = 3 -5285992 goalCount = 0 -5285993 goalTotal = 30 -5285993 otherCount = 35 -~~~ -5287968 UP 11 -5287968 1024 1024 -5290407 DOWN 11 -5290407 0 1024 -5290421 UP 11 -5290421 1024 1024 -5290437 DOWN 11 -5290437 0 1024 -5290524 UP 11 -5290524 1024 1024 -5290968 BEEP1 -5290968 BEEP2 -~~~ -~~~ -~~~ -5290989 1024 33555456 -~~~ -5291139 1024 1024 -5296670 DOWN 11 -5296670 0 1024 -~~~ -~~~ -5296696 0 0 -~~~ -~~~ -5296698 0 1 -~~~ -~~~ -5296700 0 3 -~~~ -~~~ -5296702 0 7 -~~~ -~~~ -5296703 0 15 -~~~ -~~~ -5296705 0 31 -~~~ -~~~ -5296707 0 63 -~~~ -~~~ -5296709 0 127 -~~~ -~~~ -5296711 0 255 -5296712 homeCount = 77 -5296712 waitCount = 38 -5296713 ripCount = 33 -5296713 locktype1 = 2 -5296714 locktype2 = 7 -5296735 locktype3 = 3 -5296735 goalCount = 0 -5296736 goalTotal = 30 -5296736 otherCount = 35 -~~~ -5296737 CURRENTGOAL IS [3] -~~~ -5296738 UP 11 -5296738 1024 255 -5296936 DOWN 11 -5296936 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5296973 homeCount = 77 -5296973 waitCount = 38 -5296974 ripCount = 33 -5296974 locktype1 = 2 -5296975 locktype2 = 7 -5296975 locktype3 = 3 -5296976 goalCount = 0 -5296976 goalTotal = 30 -5296976 otherCount = 35 -~~~ -5296978 CURRENTGOAL IS [3] -~~~ -5296981 UP 11 -5296981 1024 255 -5300102 DOWN 11 -5300102 0 255 -5300120 UP 11 -5300120 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5300155 homeCount = 77 -5300156 waitCount = 38 -5300156 ripCount = 33 -5300157 locktype1 = 2 -5300157 locktype2 = 7 -5300158 locktype3 = 3 -5300158 goalCount = 0 -5300159 goalTotal = 30 -5300159 otherCount = 35 -~~~ -5300160 CURRENTGOAL IS [3] -~~~ -5302657 DOWN 11 -5302657 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5302699 homeCount = 77 -5302699 waitCount = 38 -5302700 ripCount = 33 -5302700 locktype1 = 2 -5302701 locktype2 = 7 -5302701 locktype3 = 3 -5302702 goalCount = 0 -5302702 goalTotal = 30 -5302703 otherCount = 35 -~~~ -5302704 CURRENTGOAL IS [3] -~~~ -5302808 UP 11 -5302808 1024 255 -5302848 DOWN 11 -5302848 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5302888 homeCount = 77 -5302889 waitCount = 38 -5302889 ripCount = 33 -5302890 locktype1 = 2 -5302890 locktype2 = 7 -5302891 locktype3 = 3 -5302891 goalCount = 0 -5302892 goalTotal = 30 -5302892 otherCount = 35 -~~~ -5302893 CURRENTGOAL IS [3] -~~~ -5306189 UP 8 -5306189 128 255 -~~~ -~~~ -5306730 DOWN 8 -5306730 0 255 -~~~ -~~~ -5306752 0 254 -~~~ -~~~ -5306754 0 252 -~~~ -~~~ -5306756 0 248 -~~~ -~~~ -5306757 0 240 -~~~ -~~~ -5306759 0 224 -~~~ -~~~ -5306761 0 192 -~~~ -~~~ -5306763 0 128 -~~~ -~~~ -5306765 0 0 -~~~ -~~~ -5306767 0 512 -5306768 homeCount = 77 -5306768 waitCount = 38 -5306769 ripCount = 33 -5306769 locktype1 = 2 -5306770 locktype2 = 7 -5306790 locktype3 = 3 -5306791 goalCount = 0 -5306791 goalTotal = 30 -5306792 otherCount = 36 -~~~ -5306792 128 512 -5307532 DOWN 8 -5307532 0 512 -5312695 UP 10 -5312695 waslock = 0 -5312695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5312721 512 16777728 -~~~ -5312871 512 512 -5319453 DOWN 10 -5319453 0 512 -~~~ -~~~ -5319475 0 1536 -~~~ -~~~ -5319477 0 1024 -5319478 homeCount = 78 -5319478 waitCount = 38 -5319479 ripCount = 33 -5319479 locktype1 = 2 -5319480 locktype2 = 7 -5319480 locktype3 = 3 -5319481 goalCount = 0 -5319481 goalTotal = 30 -5319482 otherCount = 36 -~~~ -5319509 UP 10 -5319509 waslock = 0 -5319509 512 1024 -5319535 DOWN 10 -5319535 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -5319565 homeCount = 78 -5319565 waitCount = 38 -5319566 ripCount = 33 -5319566 locktype1 = 2 -5319567 locktype2 = 7 -5319567 locktype3 = 3 -5319568 goalCount = 0 -5319568 goalTotal = 30 -5319569 otherCount = 36 -~~~ -5323431 UP 11 -5323431 1024 1024 -5327431 BEEP1 -5327431 BEEP2 -~~~ -~~~ -~~~ -5327453 1024 33555456 -~~~ -5327603 1024 1024 -5332677 DOWN 11 -5332677 0 1024 -5332695 UP 11 -5332695 1024 1024 -~~~ -~~~ -5332702 1024 0 -~~~ -~~~ -5332704 1024 1 -~~~ -~~~ -5332706 1024 3 -~~~ -~~~ -5332708 1024 7 -~~~ -~~~ -5332709 1024 15 -~~~ -~~~ -5332711 1024 31 -~~~ -~~~ -5332713 1024 63 -~~~ -~~~ -5332715 1024 127 -~~~ -~~~ -5332717 1024 255 -5332718 homeCount = 78 -5332718 waitCount = 38 -5332719 ripCount = 34 -5332719 locktype1 = 2 -5332740 locktype2 = 7 -5332741 locktype3 = 3 -5332741 goalCount = 0 -5332741 goalTotal = 30 -5332742 otherCount = 36 -~~~ -5332743 CURRENTGOAL IS [3] -~~~ -5332814 DOWN 11 -5332814 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5332843 UP 11 -5332842 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -5332848 homeCount = 78 -5332848 waitCount = 38 -5332849 ripCount = 34 -5332849 locktype1 = 2 -5332850 locktype2 = 7 -5332850 locktype3 = 3 -5332851 goalCount = 0 -5332851 goalTotal = 30 -5332852 otherCount = 36 -~~~ -5332853 CURRENTGOAL IS [3] -~~~ -5332941 DOWN 11 -5332941 0 255 -5332961 UP 11 -5332961 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5332978 homeCount = 78 -5332978 waitCount = 38 -5332979 ripCount = 34 -5332979 locktype1 = 2 -5332980 locktype2 = 7 -5332980 locktype3 = 3 -5332981 goalCount = 0 -5332981 goalTotal = 30 -5332982 otherCount = 36 -~~~ -5332983 CURRENTGOAL IS [3] -~~~ -5334881 DOWN 11 -5334881 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5334919 homeCount = 78 -5334919 waitCount = 38 -5334920 ripCount = 34 -5334920 locktype1 = 2 -5334921 locktype2 = 7 -5334921 locktype3 = 3 -5334922 goalCount = 0 -5334922 goalTotal = 30 -5334923 otherCount = 36 -~~~ -5334924 CURRENTGOAL IS [3] -~~~ -5340609 UP 5 -5340608 16 255 -~~~ -~~~ -5340874 DOWN 5 -5340874 0 255 -~~~ -~~~ -5340892 0 254 -~~~ -~~~ -5340894 0 252 -~~~ -~~~ -5340895 0 248 -~~~ -~~~ -5340897 0 240 -~~~ -~~~ -5340899 0 224 -~~~ -~~~ -5340901 0 192 -~~~ -~~~ -5340903 0 128 -~~~ -~~~ -5340904 0 0 -~~~ -~~~ -5340906 0 512 -5340907 homeCount = 78 -5340908 waitCount = 38 -5340908 ripCount = 34 -5340909 locktype1 = 2 -5340909 locktype2 = 7 -5340930 locktype3 = 3 -5340931 goalCount = 0 -5340931 goalTotal = 30 -5340932 otherCount = 37 -~~~ -5345212 UP 10 -5345212 waslock = 0 -5345212 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5345238 512 16777728 -~~~ -5345303 DOWN 10 -5345303 0 16777728 -~~~ -~~~ -5345330 0 16779776 -~~~ -~~~ -5345332 0 16779264 -5345333 homeCount = 79 -5345333 waitCount = 38 -5345334 ripCount = 34 -5345334 locktype1 = 2 -5345335 locktype2 = 7 -5345335 locktype3 = 3 -5345335 goalCount = 0 -5345336 goalTotal = 30 -5345336 otherCount = 37 -~~~ -5345388 0 2048 -5345395 UP 10 -5345395 waslock = 0 -5345395 512 2048 -~~~ -5345443 DOWN 10 -5345443 0 2048 -~~~ -~~~ -~~~ -~~~ -5345465 homeCount = 79 -5345466 waitCount = 38 -5345467 ripCount = 34 -5345467 locktype1 = 2 -5345467 locktype2 = 7 -5345468 locktype3 = 3 -5345468 goalCount = 0 -5345469 goalTotal = 30 -5345469 otherCount = 37 -~~~ -5345470 UP 10 -5345470 waslock = 0 -5345470 512 2048 -~~~ -5345649 DOWN 10 -5345649 0 2048 -~~~ -~~~ -~~~ -~~~ -5345675 homeCount = 79 -5345675 waitCount = 38 -5345676 ripCount = 34 -5345676 locktype1 = 2 -5345677 locktype2 = 7 -5345677 locktype3 = 3 -5345678 goalCount = 0 -5345678 goalTotal = 30 -5345679 otherCount = 37 -~~~ -5345679 UP 10 -5345679 waslock = 0 -5345679 512 2048 -~~~ -5345795 DOWN 10 -5345795 0 2048 -~~~ -~~~ -~~~ -~~~ -5345817 homeCount = 79 -5345818 waitCount = 38 -5345818 ripCount = 34 -5345819 locktype1 = 2 -5345819 locktype2 = 7 -5345819 locktype3 = 3 -5345820 goalCount = 0 -5345820 goalTotal = 30 -5345821 otherCount = 37 -~~~ -5345824 UP 10 -5345825 waslock = 0 -5345824 512 2048 -5345847 DOWN 10 -5345847 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5345864 homeCount = 79 -5345864 waitCount = 38 -5345865 ripCount = 34 -5345865 locktype1 = 2 -5345866 locktype2 = 7 -5345866 locktype3 = 3 -5345867 goalCount = 0 -5345867 goalTotal = 30 -5345868 otherCount = 37 -~~~ -5345956 UP 10 -5345956 waslock = 0 -5345956 512 2048 -5345982 DOWN 10 -5345982 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5346004 UP 10 -5346004 waslock = 0 -5346004 512 2048 -5346006 homeCount = 79 -5346006 waitCount = 38 -5346007 ripCount = 34 -5346007 locktype1 = 2 -5346008 locktype2 = 7 -5346008 locktype3 = 3 -5346009 goalCount = 0 -5346009 goalTotal = 30 -5346010 otherCount = 37 -~~~ -~~~ -5351222 DOWN 10 -5351222 0 2048 -~~~ -~~~ -~~~ -~~~ -5351245 homeCount = 79 -5351246 waitCount = 38 -5351246 ripCount = 34 -5351247 locktype1 = 2 -5351247 locktype2 = 7 -5351247 locktype3 = 3 -5351248 goalCount = 0 -5351248 goalTotal = 30 -5351249 otherCount = 37 -~~~ -5351281 UP 10 -5351281 waslock = 0 -5351281 512 2048 -~~~ -5351364 DOWN 10 -5351364 0 2048 -~~~ -~~~ -~~~ -~~~ -5351388 homeCount = 79 -5351389 waitCount = 38 -5351389 ripCount = 34 -5351390 locktype1 = 2 -5351390 locktype2 = 7 -5351391 locktype3 = 3 -5351391 goalCount = 0 -5351392 goalTotal = 30 -5351392 otherCount = 37 -~~~ -5353583 UP 12 -5353583 2048 2048 -5355776 DOWN 12 -5355776 0 2048 -5355802 UP 12 -5355802 2048 2048 -5355812 DOWN 12 -5355812 0 2048 -5355851 UP 12 -5355851 2048 2048 -5356583 CLICK1 -5356583 CLICK2 -5356595 DOWN 12 -5356595 0 2048 -~~~ -~~~ -~~~ -5356616 0 67110912 -~~~ -5356659 UP 12 -5356659 2048 67110912 -5356766 2048 2048 -~~~ -~~~ -5356769 2048 0 -~~~ -~~~ -5356771 2048 1 -~~~ -~~~ -5356773 2048 3 -~~~ -~~~ -5356774 2048 7 -~~~ -~~~ -5356776 2048 15 -~~~ -~~~ -5356778 2048 31 -~~~ -~~~ -5356780 2048 63 -~~~ -~~~ -5356782 2048 127 -~~~ -~~~ -5356784 2048 255 -5356785 homeCount = 79 -5356785 waitCount = 39 -5356786 ripCount = 34 -5356786 locktype1 = 2 -5356807 locktype2 = 7 -5356808 locktype3 = 3 -5356808 goalCount = 0 -5356809 goalTotal = 30 -5356809 otherCount = 37 -~~~ -5356810 CURRENTGOAL IS [3] -~~~ -5356916 DOWN 12 -5356916 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5356942 UP 12 -5356942 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5356950 homeCount = 79 -5356950 waitCount = 39 -5356951 ripCount = 34 -5356951 locktype1 = 2 -5356952 locktype2 = 7 -5356952 locktype3 = 3 -5356953 goalCount = 0 -5356953 goalTotal = 30 -5356954 otherCount = 37 -~~~ -5356955 CURRENTGOAL IS [3] -~~~ -5362292 DOWN 12 -5362292 0 255 -5362302 UP 12 -5362302 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5362333 homeCount = 79 -5362333 waitCount = 39 -5362334 ripCount = 34 -5362334 locktype1 = 2 -5362335 locktype2 = 7 -5362335 locktype3 = 3 -5362336 goalCount = 0 -5362336 goalTotal = 30 -5362337 otherCount = 37 -~~~ -5362338 CURRENTGOAL IS [3] -~~~ -5365136 DOWN 12 -5365136 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5365170 homeCount = 79 -5365170 waitCount = 39 -5365171 ripCount = 34 -5365171 locktype1 = 2 -5365172 locktype2 = 7 -5365172 locktype3 = 3 -5365173 goalCount = 0 -5365173 goalTotal = 30 -5365174 otherCount = 37 -~~~ -5365175 CURRENTGOAL IS [3] -~~~ -5369259 UP 6 -5369259 32 255 -~~~ -~~~ -5369588 DOWN 6 -5369587 0 255 -~~~ -~~~ -5369606 0 254 -~~~ -~~~ -5369607 0 252 -~~~ -~~~ -5369609 32 248 -~~~ -~~~ -5369611 32 240 -~~~ -~~~ -5369613 32 224 -~~~ -~~~ -5369615 32 192 -~~~ -~~~ -5369616 32 128 -~~~ -~~~ -5369618 32 0 -~~~ -~~~ -5369620 32 512 -5369621 homeCount = 79 -5369622 waitCount = 39 -5369622 ripCount = 34 -5369623 locktype1 = 2 -5369623 locktype2 = 7 -5369644 locktype3 = 3 -5369645 goalCount = 0 -5369645 goalTotal = 30 -5369646 otherCount = 38 -~~~ -5370768 DOWN 6 -5370768 0 512 -5374899 UP 10 -5374899 waslock = 0 -5374899 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5374926 512 16777728 -~~~ -5375076 512 512 -5375078 DOWN 10 -5375077 0 512 -~~~ -~~~ -5375101 0 2560 -~~~ -~~~ -5375103 0 2048 -5375104 homeCount = 80 -5375105 waitCount = 39 -5375105 ripCount = 34 -5375106 locktype1 = 2 -5375106 locktype2 = 7 -5375107 locktype3 = 3 -5375107 goalCount = 0 -5375108 goalTotal = 30 -5375108 otherCount = 38 -~~~ -5375122 UP 10 -5375122 waslock = 0 -5375122 512 2048 -~~~ -5379775 DOWN 10 -5379775 0 2048 -5379790 UP 10 -5379791 waslock = 0 -5379790 512 2048 -~~~ -~~~ -~~~ -~~~ -5379818 homeCount = 80 -5379818 waitCount = 39 -5379819 ripCount = 34 -5379819 locktype1 = 2 -5379820 locktype2 = 7 -5379820 locktype3 = 3 -5379821 goalCount = 0 -5379821 goalTotal = 30 -5379822 otherCount = 38 -~~~ -~~~ -5379874 DOWN 10 -5379874 0 2048 -~~~ -~~~ -~~~ -~~~ -5379897 homeCount = 80 -5379898 waitCount = 39 -5379898 ripCount = 34 -5379899 locktype1 = 2 -5379899 locktype2 = 7 -5379899 locktype3 = 3 -5379900 goalCount = 0 -5379900 goalTotal = 30 -5379901 otherCount = 38 -~~~ -5382027 UP 12 -5382026 2048 2048 -5383448 DOWN 12 -5383447 0 2048 -5383464 UP 12 -5383464 2048 2048 -5384242 DOWN 12 -5384242 0 2048 -5384443 LOCKOUT 3 -~~~ -5384462 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5384468 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5384556 UP 12 -5384556 2048 0 -5384693 DOWN 12 -5384693 0 0 -5384742 UP 12 -5384742 2048 0 -5384902 DOWN 12 -5384902 0 0 -5384936 UP 12 -5384936 2048 0 -5385183 DOWN 12 -5385183 0 0 -5409462 LOCKEND -~~~ -~~~ -~~~ -5409482 0 512 -5421059 UP 10 -5421059 waslock = 0 -5421059 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5421086 512 16777728 -~~~ -5421236 512 512 -5421325 DOWN 10 -5421325 0 512 -5421337 UP 10 -5421337 waslock = 0 -5421337 512 512 -~~~ -~~~ -5421350 512 1536 -~~~ -~~~ -5421352 512 1024 -5421353 homeCount = 81 -5421354 waitCount = 39 -5421354 ripCount = 34 -5421355 locktype1 = 2 -5421355 locktype2 = 7 -5421355 locktype3 = 4 -5421356 goalCount = 0 -5421356 goalTotal = 30 -5421357 otherCount = 38 -~~~ -~~~ -5421379 DOWN 10 -5421379 0 1024 -~~~ -~~~ -~~~ -~~~ -5421398 homeCount = 81 -5421398 waitCount = 39 -5421399 ripCount = 34 -5421399 locktype1 = 2 -5421400 locktype2 = 7 -5421400 locktype3 = 4 -5421401 goalCount = 0 -5421401 goalTotal = 30 -5421402 otherCount = 38 -~~~ -5421457 UP 10 -5421457 waslock = 0 -5421456 512 1024 -~~~ -5424643 DOWN 10 -5424643 0 1024 -~~~ -~~~ -~~~ -~~~ -5424663 homeCount = 81 -5424664 waitCount = 39 -5424664 ripCount = 34 -5424665 locktype1 = 2 -5424665 locktype2 = 7 -5424666 locktype3 = 4 -5424666 goalCount = 0 -5424667 goalTotal = 30 -5424667 otherCount = 38 -~~~ -5424697 UP 10 -5424698 waslock = 0 -5424697 512 1024 -~~~ -5426707 DOWN 10 -5426707 0 1024 -~~~ -~~~ -~~~ -~~~ -5426734 homeCount = 81 -5426734 waitCount = 39 -5426735 ripCount = 34 -5426735 locktype1 = 2 -5426736 locktype2 = 7 -5426736 locktype3 = 4 -5426737 goalCount = 0 -5426737 goalTotal = 30 -5426738 otherCount = 38 -~~~ -5426750 UP 10 -5426750 waslock = 0 -5426750 512 1024 -~~~ -5426812 DOWN 10 -5426812 0 1024 -~~~ -~~~ -~~~ -~~~ -5426833 homeCount = 81 -5426833 waitCount = 39 -5426834 ripCount = 34 -5426834 locktype1 = 2 -5426835 locktype2 = 7 -5426835 locktype3 = 4 -5426836 goalCount = 0 -5426836 goalTotal = 30 -5426837 otherCount = 38 -~~~ -5429056 UP 11 -5429056 1024 1024 -5429109 DOWN 11 -5429109 0 1024 -5429215 UP 11 -5429215 1024 1024 -5433057 BEEP1 -5433057 BEEP2 -~~~ -~~~ -~~~ -5433081 1024 33555456 -~~~ -5433231 1024 1024 -5433241 DOWN 11 -5433241 0 1024 -5433252 UP 11 -5433252 1024 1024 -~~~ -~~~ -5433732 1024 0 -~~~ -~~~ -5433734 1024 1 -~~~ -~~~ -5433736 1024 3 -~~~ -~~~ -5433737 1024 7 -~~~ -~~~ -5433739 1024 15 -~~~ -~~~ -5433741 1024 31 -~~~ -~~~ -5433743 1024 63 -~~~ -~~~ -5433745 1024 127 -~~~ -~~~ -5433746 1024 255 -5433747 homeCount = 81 -5433748 waitCount = 39 -5433749 ripCount = 35 -5433749 locktype1 = 2 -5433770 locktype2 = 7 -5433770 locktype3 = 4 -5433771 goalCount = 0 -5433771 goalTotal = 30 -5433772 otherCount = 38 -~~~ -5433773 CURRENTGOAL IS [3] -~~~ -5439996 DOWN 11 -5439996 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5440032 homeCount = 81 -5440032 waitCount = 39 -5440033 ripCount = 35 -5440033 locktype1 = 2 -5440034 locktype2 = 7 -5440034 locktype3 = 4 -5440035 goalCount = 0 -5440035 goalTotal = 30 -5440035 otherCount = 38 -~~~ -5440037 CURRENTGOAL IS [3] -~~~ -5448817 UP 6 -5448817 32 255 -~~~ -~~~ -5449550 DOWN 6 -5449550 0 255 -~~~ -~~~ -5449577 0 254 -~~~ -~~~ -5449579 0 252 -~~~ -~~~ -5449580 0 248 -~~~ -~~~ -5449582 0 240 -~~~ -~~~ -5449584 0 224 -~~~ -~~~ -5449586 0 192 -~~~ -~~~ -5449588 0 128 -~~~ -~~~ -5449589 0 0 -~~~ -~~~ -5449591 0 512 -5449592 homeCount = 81 -5449593 waitCount = 39 -5449593 ripCount = 35 -5449594 locktype1 = 2 -5449594 locktype2 = 7 -5449615 locktype3 = 4 -5449616 goalCount = 0 -5449616 goalTotal = 30 -5449617 otherCount = 39 -~~~ -5453833 UP 10 -5453833 waslock = 0 -5453833 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5453864 512 16777728 -~~~ -5454014 512 512 -5454054 DOWN 10 -5454054 0 512 -5454062 UP 10 -5454062 waslock = 0 -5454062 512 512 -~~~ -~~~ -5454080 512 2560 -~~~ -~~~ -5454082 512 2048 -5454083 homeCount = 82 -5454084 waitCount = 39 -5454084 ripCount = 35 -5454085 locktype1 = 2 -5454085 locktype2 = 7 -5454086 locktype3 = 4 -5454086 goalCount = 0 -5454087 goalTotal = 30 -5454087 otherCount = 39 -~~~ -~~~ -5454109 DOWN 10 -5454109 0 2048 -~~~ -~~~ -~~~ -~~~ -5454135 homeCount = 82 -5454135 waitCount = 39 -5454136 ripCount = 35 -5454136 locktype1 = 2 -5454137 locktype2 = 7 -5454137 locktype3 = 4 -5454138 goalCount = 0 -5454138 goalTotal = 30 -5454139 otherCount = 39 -~~~ -5454155 UP 10 -5454155 waslock = 0 -5454155 512 2048 -~~~ -5459304 DOWN 10 -5459304 0 2048 -~~~ -~~~ -~~~ -~~~ -5459331 homeCount = 82 -5459331 waitCount = 39 -5459332 ripCount = 35 -5459332 locktype1 = 2 -5459333 locktype2 = 7 -5459333 locktype3 = 4 -5459334 goalCount = 0 -5459334 goalTotal = 30 -5459335 otherCount = 39 -~~~ -5461800 UP 12 -5461800 2048 2048 -5464976 DOWN 12 -5464975 0 2048 -5464998 UP 12 -5464998 2048 2048 -5465058 DOWN 12 -5465058 0 2048 -5465105 UP 12 -5465105 2048 2048 -5465228 DOWN 12 -5465228 0 2048 -5465245 UP 12 -5465245 2048 2048 -5467049 DOWN 12 -5467049 0 2048 -5467092 UP 12 -5467092 2048 2048 -5467349 DOWN 12 -5467349 0 2048 -5467359 UP 12 -5467359 2048 2048 -5468800 CLICK1 -5468800 CLICK2 -~~~ -~~~ -~~~ -5468821 2048 67110912 -~~~ -5468971 2048 2048 -5477415 DOWN 12 -5477415 0 2048 -~~~ -~~~ -5477438 0 0 -~~~ -~~~ -5477440 0 1 -~~~ -~~~ -5477442 0 3 -~~~ -~~~ -5477444 0 7 -~~~ -~~~ -5477446 0 15 -~~~ -~~~ -5477447 0 31 -~~~ -~~~ -5477449 0 63 -~~~ -~~~ -5477451 0 127 -~~~ -~~~ -5477453 0 255 -5477454 homeCount = 82 -5477454 waitCount = 40 -5477455 ripCount = 35 -5477455 locktype1 = 2 -5477456 locktype2 = 7 -5477456 locktype3 = 4 -5477477 goalCount = 0 -5477478 goalTotal = 30 -5477478 otherCount = 39 -~~~ -5477479 CURRENTGOAL IS [3] -~~~ -5481136 UP 3 -5481136 4 255 -~~~ -~~~ -5481155 outer reward -~~~ -5481155 4 262399 -~~~ -~~~ -5481605 4 255 -5487589 DOWN 3 -5487589 0 255 -5487610 4 255 -~~~ -~~~ -5487626 4 254 -~~~ -~~~ -5487628 4 252 -~~~ -~~~ -5487630 4 248 -~~~ -~~~ -5487631 4 240 -~~~ -~~~ -5487633 4 224 -~~~ -~~~ -5487635 4 192 -~~~ -~~~ -5487637 4 128 -~~~ -~~~ -5487639 4 0 -~~~ -~~~ -5487641 4 512 -5487642 homeCount = 82 -5487642 waitCount = 40 -5487643 ripCount = 35 -5487643 locktype1 = 2 -5487644 locktype2 = 7 -5487665 locktype3 = 4 -5487665 goalCount = 1 -5487666 goalTotal = 31 -5487666 otherCount = 39 -~~~ -5487708 DOWN 3 -5487708 0 512 -5487767 4 512 -5487817 DOWN 3 -5487817 0 512 -5492910 UP 10 -5492910 waslock = 0 -5492910 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5492939 512 16777728 -~~~ -5493089 512 512 -5493153 DOWN 10 -5493153 0 512 -~~~ -~~~ -5493174 0 1536 -~~~ -~~~ -5493176 0 1024 -5493177 homeCount = 83 -5493178 waitCount = 40 -5493178 ripCount = 35 -5493179 locktype1 = 2 -5493179 locktype2 = 7 -5493180 locktype3 = 4 -5493180 goalCount = 1 -5493181 goalTotal = 31 -5493181 otherCount = 39 -~~~ -5493182 UP 10 -5493203 waslock = 0 -5493182 512 1024 -~~~ -5496843 DOWN 10 -5496843 0 1024 -~~~ -~~~ -~~~ -~~~ -5496867 homeCount = 83 -5496867 waitCount = 40 -5496868 ripCount = 35 -5496868 locktype1 = 2 -5496869 locktype2 = 7 -5496869 locktype3 = 4 -5496870 goalCount = 1 -5496870 goalTotal = 31 -5496870 otherCount = 39 -~~~ -5496907 UP 10 -5496907 waslock = 0 -5496907 512 1024 -~~~ -5496966 DOWN 10 -5496966 0 1024 -~~~ -~~~ -~~~ -~~~ -5496990 homeCount = 83 -5496990 waitCount = 40 -5496991 ripCount = 35 -5496991 locktype1 = 2 -5496992 locktype2 = 7 -5496992 locktype3 = 4 -5496993 goalCount = 1 -5496993 goalTotal = 31 -5496994 otherCount = 39 -~~~ -5499060 UP 11 -5499060 1024 1024 -5502861 DOWN 11 -5502861 0 1024 -5502900 UP 11 -5502900 1024 1024 -5503033 DOWN 11 -5503033 0 1024 -5503058 UP 11 -5503058 1024 1024 -5503803 DOWN 11 -5503803 0 1024 -5503839 UP 11 -5503839 1024 1024 -5504854 DOWN 11 -5504854 0 1024 -5504881 UP 11 -5504881 1024 1024 -5506061 BEEP1 -5506061 BEEP2 -~~~ -~~~ -~~~ -5506088 1024 33555456 -~~~ -5506238 1024 1024 -5512469 DOWN 11 -5512469 0 1024 -~~~ -~~~ -5512494 0 0 -~~~ -~~~ -5512496 0 1 -~~~ -~~~ -5512497 0 3 -~~~ -~~~ -5512499 0 7 -~~~ -~~~ -5512501 0 15 -~~~ -~~~ -5512503 0 31 -~~~ -~~~ -5512505 0 63 -~~~ -~~~ -5512507 0 127 -~~~ -~~~ -5512508 0 255 -5512509 homeCount = 83 -5512510 waitCount = 40 -5512510 ripCount = 36 -5512511 locktype1 = 2 -5512511 locktype2 = 7 -5512532 locktype3 = 4 -5512533 goalCount = 1 -5512533 goalTotal = 31 -5512534 otherCount = 39 -~~~ -5512535 CURRENTGOAL IS [3] -~~~ -5512585 UP 11 -5512585 1024 255 -5512624 DOWN 11 -5512624 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5512659 homeCount = 83 -5512660 waitCount = 40 -5512660 ripCount = 36 -5512661 locktype1 = 2 -5512661 locktype2 = 7 -5512662 locktype3 = 4 -5512662 goalCount = 1 -5512663 goalTotal = 31 -5512663 otherCount = 39 -~~~ -5512664 CURRENTGOAL IS [3] -~~~ -5512721 UP 11 -5512721 1024 255 -5512757 DOWN 11 -5512757 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5512790 homeCount = 83 -5512791 waitCount = 40 -5512791 ripCount = 36 -5512792 locktype1 = 2 -5512792 locktype2 = 7 -5512793 locktype3 = 4 -5512793 goalCount = 1 -5512794 goalTotal = 31 -5512794 otherCount = 39 -~~~ -5512795 CURRENTGOAL IS [3] -~~~ -5512798 UP 11 -5512798 1024 255 -5515026 DOWN 11 -5515026 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5515062 homeCount = 83 -5515062 waitCount = 40 -5515063 ripCount = 36 -5515063 locktype1 = 2 -5515064 locktype2 = 7 -5515064 locktype3 = 4 -5515065 goalCount = 1 -5515065 goalTotal = 31 -5515066 otherCount = 39 -~~~ -5515067 CURRENTGOAL IS [3] -~~~ -5515067 UP 11 -5515067 1024 255 -5515120 DOWN 11 -5515120 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5515163 homeCount = 83 -5515163 waitCount = 40 -5515164 ripCount = 36 -5515164 locktype1 = 2 -5515165 locktype2 = 7 -5515165 locktype3 = 4 -5515166 goalCount = 1 -5515166 goalTotal = 31 -5515167 otherCount = 39 -~~~ -5515168 CURRENTGOAL IS [3] -~~~ -5522004 UP 7 -5522004 64 255 -~~~ -~~~ -5523259 DOWN 7 -5523259 0 255 -~~~ -~~~ -5523277 0 254 -~~~ -~~~ -5523278 0 252 -~~~ -~~~ -5523280 0 248 -~~~ -~~~ -5523282 0 240 -~~~ -~~~ -5523284 0 224 -~~~ -~~~ -5523286 0 192 -~~~ -~~~ -5523288 0 128 -~~~ -~~~ -5523289 0 0 -~~~ -~~~ -5523291 0 512 -5523292 homeCount = 83 -5523293 waitCount = 40 -5523293 ripCount = 36 -5523294 locktype1 = 2 -5523294 locktype2 = 7 -5523315 locktype3 = 4 -5523316 goalCount = 1 -5523316 goalTotal = 31 -5523317 otherCount = 40 -~~~ -5529655 UP 10 -5529655 waslock = 0 -5529655 512 512 -~~~ -5529677 DOWN 10 -5529677 0 512 -~~~ -~~~ -~~~ -~~~ -5529683 0 16777728 -~~~ -5529696 UP 10 -5529697 waslock = 0 -5529696 512 16777728 -~~~ -~~~ -5529707 512 16779776 -~~~ -~~~ -5529709 512 16779264 -5529710 homeCount = 84 -5529710 waitCount = 40 -5529711 ripCount = 36 -5529711 locktype1 = 2 -5529712 locktype2 = 7 -5529712 locktype3 = 4 -5529713 goalCount = 1 -5529713 goalTotal = 31 -5529713 otherCount = 40 -~~~ -~~~ -5529833 512 2048 -5535219 DOWN 10 -5535219 0 2048 -~~~ -~~~ -~~~ -~~~ -5535242 homeCount = 84 -5535243 waitCount = 40 -5535243 ripCount = 36 -5535244 locktype1 = 2 -5535244 locktype2 = 7 -5535244 locktype3 = 4 -5535245 goalCount = 1 -5535245 goalTotal = 31 -5535246 otherCount = 40 -~~~ -5538565 UP 12 -5538565 2048 2048 -5544549 DOWN 12 -5544549 0 2048 -5544570 UP 12 -5544570 2048 2048 -5545566 CLICK1 -5545566 CLICK2 -~~~ -~~~ -~~~ -5545592 2048 67110912 -~~~ -5545742 2048 2048 -5550885 DOWN 12 -5550885 0 2048 -~~~ -~~~ -5550911 0 0 -~~~ -~~~ -5550912 0 1 -~~~ -~~~ -5550914 0 3 -~~~ -~~~ -5550916 0 7 -~~~ -~~~ -5550918 0 15 -~~~ -~~~ -5550920 0 31 -~~~ -~~~ -5550922 0 63 -~~~ -~~~ -5550923 0 127 -~~~ -~~~ -5550925 0 255 -5550926 homeCount = 84 -5550927 waitCount = 41 -5550927 ripCount = 36 -5550928 locktype1 = 2 -5550928 locktype2 = 7 -5550929 locktype3 = 4 -5550950 goalCount = 1 -5550950 goalTotal = 31 -5550951 otherCount = 40 -~~~ -5550952 CURRENTGOAL IS [3] -~~~ -5550952 UP 12 -5550952 2048 255 -5551037 DOWN 12 -5551037 0 255 -~~~ -~~~ -~~~ -5551057 UP 12 -5551057 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5551071 homeCount = 84 -5551072 waitCount = 41 -5551072 ripCount = 36 -5551073 locktype1 = 2 -5551073 locktype2 = 7 -5551074 locktype3 = 4 -5551074 goalCount = 1 -5551075 goalTotal = 31 -5551075 otherCount = 40 -~~~ -5551076 CURRENTGOAL IS [3] -~~~ -5551164 DOWN 12 -5551164 0 255 -5551176 UP 12 -5551176 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5551213 homeCount = 84 -5551214 waitCount = 41 -5551214 ripCount = 36 -5551215 locktype1 = 2 -5551215 locktype2 = 7 -5551216 locktype3 = 4 -5551216 goalCount = 1 -5551217 goalTotal = 31 -5551217 otherCount = 40 -~~~ -5551218 CURRENTGOAL IS [3] -~~~ -5554861 DOWN 12 -5554861 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5554903 homeCount = 84 -5554904 waitCount = 41 -5554904 ripCount = 36 -5554905 locktype1 = 2 -5554905 locktype2 = 7 -5554906 locktype3 = 4 -5554906 goalCount = 1 -5554907 goalTotal = 31 -5554907 otherCount = 40 -~~~ -5554908 CURRENTGOAL IS [3] -~~~ -5559663 UP 2 -5559663 2 255 -~~~ -~~~ -5561437 DOWN 2 -5561437 0 255 -~~~ -~~~ -5561457 0 254 -~~~ -~~~ -5561459 0 252 -~~~ -~~~ -5561460 0 248 -~~~ -~~~ -5561462 0 240 -~~~ -~~~ -5561464 0 224 -~~~ -~~~ -5561466 0 192 -~~~ -~~~ -5561468 0 128 -~~~ -~~~ -5561469 0 0 -~~~ -~~~ -5561471 0 512 -5561472 homeCount = 84 -5561473 waitCount = 41 -5561473 ripCount = 36 -5561474 locktype1 = 2 -5561474 locktype2 = 7 -5561495 locktype3 = 4 -5561496 goalCount = 1 -5561496 goalTotal = 31 -5561497 otherCount = 41 -~~~ -5564965 UP 10 -5564965 waslock = 0 -5564965 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5564994 512 16777728 -~~~ -5565007 DOWN 10 -5565007 0 16777728 -~~~ -~~~ -5565037 0 16778752 -~~~ -~~~ -5565039 0 16778240 -5565040 homeCount = 85 -5565040 waitCount = 41 -5565041 ripCount = 36 -5565041 locktype1 = 2 -5565042 locktype2 = 7 -5565042 locktype3 = 4 -5565043 goalCount = 1 -5565043 goalTotal = 31 -5565044 otherCount = 41 -~~~ -5565065 UP 10 -5565065 waslock = 0 -5565065 512 16778240 -~~~ -5565144 512 1024 -5565160 DOWN 10 -5565160 0 1024 -5565173 UP 10 -5565173 waslock = 0 -5565173 512 1024 -~~~ -~~~ -~~~ -~~~ -5565194 homeCount = 85 -5565194 waitCount = 41 -5565195 ripCount = 36 -5565195 locktype1 = 2 -5565196 locktype2 = 7 -5565196 locktype3 = 4 -5565196 goalCount = 1 -5565197 goalTotal = 31 -5565197 otherCount = 41 -~~~ -~~~ -5569406 DOWN 10 -5569406 0 1024 -~~~ -~~~ -~~~ -~~~ -5569433 homeCount = 85 -5569433 waitCount = 41 -5569434 ripCount = 36 -5569434 locktype1 = 2 -5569435 locktype2 = 7 -5569435 locktype3 = 4 -5569435 goalCount = 1 -5569436 goalTotal = 31 -5569436 otherCount = 41 -~~~ -5569465 UP 10 -5569466 waslock = 0 -5569465 512 1024 -5569491 DOWN 10 -5569491 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -5569518 homeCount = 85 -5569518 waitCount = 41 -5569519 ripCount = 36 -5569519 locktype1 = 2 -5569520 locktype2 = 7 -5569520 locktype3 = 4 -5569521 goalCount = 1 -5569521 goalTotal = 31 -5569522 otherCount = 41 -~~~ -5571097 UP 11 -5571097 1024 1024 -5574495 DOWN 11 -5574495 0 1024 -5574542 UP 11 -5574542 1024 1024 -5574781 DOWN 11 -5574781 0 1024 -5574802 UP 11 -5574802 1024 1024 -5576598 BEEP1 -5576598 BEEP2 -~~~ -~~~ -~~~ -5576622 1024 33555456 -~~~ -5576771 1024 1024 -5582951 DOWN 11 -5582951 0 1024 -~~~ -~~~ -5582969 0 0 -~~~ -~~~ -5582971 0 1 -~~~ -~~~ -5582973 0 3 -~~~ -~~~ -5582974 0 7 -~~~ -~~~ -5582976 0 15 -~~~ -~~~ -5582978 0 31 -~~~ -~~~ -5582980 0 63 -~~~ -~~~ -5582982 0 127 -~~~ -~~~ -5582984 0 255 -5582985 homeCount = 85 -5582985 waitCount = 41 -5582986 ripCount = 37 -5582986 locktype1 = 2 -5582987 locktype2 = 7 -5582987 locktype3 = 4 -5583008 goalCount = 1 -5583008 goalTotal = 31 -5583009 otherCount = 41 -~~~ -5583010 CURRENTGOAL IS [3] -~~~ -5583073 UP 11 -5583073 1024 255 -5583104 DOWN 11 -5583104 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5583138 homeCount = 85 -5583138 waitCount = 41 -5583139 ripCount = 37 -5583139 locktype1 = 2 -5583140 locktype2 = 7 -5583140 locktype3 = 4 -5583141 goalCount = 1 -5583141 goalTotal = 31 -5583142 otherCount = 41 -~~~ -5583143 CURRENTGOAL IS [3] -~~~ -5583208 UP 11 -5583208 1024 255 -5583225 DOWN 11 -5583225 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5583261 homeCount = 85 -5583262 waitCount = 41 -5583262 ripCount = 37 -5583263 locktype1 = 2 -5583263 locktype2 = 7 -5583264 locktype3 = 4 -5583264 goalCount = 1 -5583265 goalTotal = 31 -5583265 otherCount = 41 -~~~ -5583266 CURRENTGOAL IS [3] -~~~ -5583336 UP 11 -5583336 1024 255 -5585553 DOWN 11 -5585553 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5585591 homeCount = 85 -5585592 waitCount = 41 -5585592 ripCount = 37 -5585593 locktype1 = 2 -5585593 locktype2 = 7 -5585594 locktype3 = 4 -5585594 goalCount = 1 -5585595 goalTotal = 31 -5585595 otherCount = 41 -~~~ -5585596 CURRENTGOAL IS [3] -~~~ -5585606 UP 11 -5585606 1024 255 -5585621 DOWN 11 -5585621 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5585656 homeCount = 85 -5585656 waitCount = 41 -5585657 ripCount = 37 -5585657 locktype1 = 2 -5585658 locktype2 = 7 -5585658 locktype3 = 4 -5585659 goalCount = 1 -5585659 goalTotal = 31 -5585660 otherCount = 41 -~~~ -5585661 CURRENTGOAL IS [3] -~~~ -5589893 UP 4 -5589893 8 255 -~~~ -~~~ -5590508 DOWN 4 -5590508 0 255 -~~~ -~~~ -5590526 0 254 -~~~ -~~~ -5590528 0 252 -~~~ -~~~ -5590530 0 248 -~~~ -~~~ -5590532 0 240 -~~~ -~~~ -5590533 0 224 -~~~ -~~~ -5590535 0 192 -~~~ -~~~ -5590537 0 128 -~~~ -~~~ -5590539 0 0 -~~~ -~~~ -5590541 0 512 -5590542 homeCount = 85 -5590542 waitCount = 41 -5590543 ripCount = 37 -5590543 locktype1 = 2 -5590544 locktype2 = 7 -5590565 locktype3 = 4 -5590565 goalCount = 1 -5590566 goalTotal = 31 -5590566 otherCount = 42 -~~~ -5590567 8 512 -5590669 DOWN 4 -5590669 0 512 -5590754 8 512 -5590937 DOWN 4 -5590937 0 512 -5595749 UP 10 -5595749 waslock = 0 -5595749 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5595775 512 16777728 -~~~ -5595925 512 512 -5595965 DOWN 10 -5595965 0 512 -~~~ -~~~ -5595990 0 2560 -~~~ -5595992 UP 10 -5595992 waslock = 0 -5595992 512 2560 -~~~ -5595994 homeCount = 86 -5595994 waitCount = 41 -5595995 ripCount = 37 -5595995 locktype1 = 2 -5595996 locktype2 = 7 -5595996 locktype3 = 4 -5595997 goalCount = 1 -5595997 goalTotal = 31 -5596018 otherCount = 42 -~~~ -5596019 512 2048 -~~~ -5601517 DOWN 10 -5601517 0 2048 -~~~ -~~~ -~~~ -~~~ -5601544 homeCount = 86 -5601544 waitCount = 41 -5601545 ripCount = 37 -5601545 locktype1 = 2 -5601546 locktype2 = 7 -5601546 locktype3 = 4 -5601547 goalCount = 1 -5601547 goalTotal = 31 -5601548 otherCount = 42 -~~~ -5601560 UP 10 -5601560 waslock = 0 -5601560 512 2048 -~~~ -5601601 DOWN 10 -5601601 0 2048 -~~~ -~~~ -~~~ -~~~ -5601625 homeCount = 86 -5601625 waitCount = 41 -5601626 ripCount = 37 -5601626 locktype1 = 2 -5601627 locktype2 = 7 -5601627 locktype3 = 4 -5601628 goalCount = 1 -5601628 goalTotal = 31 -5601629 otherCount = 42 -~~~ -5603350 UP 12 -5603350 2048 2048 -5607351 CLICK1 -5607351 CLICK2 -~~~ -~~~ -~~~ -5607373 2048 67110912 -~~~ -5607523 2048 2048 -5613771 DOWN 12 -5613771 0 2048 -~~~ -~~~ -5613791 0 0 -~~~ -~~~ -5613793 0 1 -~~~ -~~~ -5613794 0 3 -~~~ -~~~ -5613796 0 7 -~~~ -~~~ -5613798 0 15 -~~~ -~~~ -5613800 0 31 -~~~ -~~~ -5613802 0 63 -~~~ -~~~ -5613803 0 127 -~~~ -~~~ -5613805 0 255 -5613806 homeCount = 86 -5613807 waitCount = 42 -5613807 ripCount = 37 -5613808 locktype1 = 2 -5613808 locktype2 = 7 -5613829 locktype3 = 4 -5613830 goalCount = 1 -5613830 goalTotal = 31 -5613831 otherCount = 42 -~~~ -5613832 CURRENTGOAL IS [3] -~~~ -5613832 UP 12 -5613832 2048 255 -5613856 DOWN 12 -5613856 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5613886 homeCount = 86 -5613886 waitCount = 42 -5613887 ripCount = 37 -5613887 locktype1 = 2 -5613888 locktype2 = 7 -5613888 locktype3 = 4 -5613889 goalCount = 1 -5613889 goalTotal = 31 -5613890 otherCount = 42 -~~~ -5613891 CURRENTGOAL IS [3] -~~~ -5613970 UP 12 -5613970 2048 255 -5613993 DOWN 12 -5613993 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5614033 homeCount = 86 -5614034 waitCount = 42 -5614034 ripCount = 37 -5614035 locktype1 = 2 -5614035 locktype2 = 7 -5614036 locktype3 = 4 -5614036 goalCount = 1 -5614037 goalTotal = 31 -5614037 otherCount = 42 -~~~ -5614038 CURRENTGOAL IS [3] -~~~ -5614039 UP 12 -5614039 2048 255 -5614423 DOWN 12 -5614423 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5614462 homeCount = 86 -5614463 waitCount = 42 -5614463 ripCount = 37 -5614464 locktype1 = 2 -5614464 locktype2 = 7 -5614465 locktype3 = 4 -5614465 goalCount = 1 -5614466 goalTotal = 31 -5614466 otherCount = 42 -~~~ -5614467 CURRENTGOAL IS [3] -~~~ -5617914 UP 1 -5617914 1 255 -~~~ -~~~ -5619242 DOWN 1 -5619242 0 255 -~~~ -~~~ -5619266 0 254 -~~~ -~~~ -5619268 0 252 -~~~ -~~~ -5619270 0 248 -~~~ -~~~ -5619271 0 240 -~~~ -~~~ -5619273 0 224 -~~~ -~~~ -5619275 0 192 -~~~ -~~~ -5619277 0 128 -~~~ -~~~ -5619279 0 0 -~~~ -~~~ -5619281 0 512 -5619282 homeCount = 86 -5619282 waitCount = 42 -5619282 ripCount = 37 -5619283 locktype1 = 2 -5619283 locktype2 = 7 -5619305 locktype3 = 4 -5619305 goalCount = 1 -5619305 goalTotal = 31 -5619306 otherCount = 43 -~~~ -5623329 UP 10 -5623329 waslock = 0 -5623329 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5623362 512 16777728 -~~~ -5623512 512 512 -5623523 DOWN 10 -5623523 0 512 -~~~ -~~~ -5623537 0 2560 -~~~ -~~~ -5623539 0 2048 -5623540 homeCount = 87 -5623540 waitCount = 42 -5623541 ripCount = 37 -5623541 locktype1 = 2 -5623542 locktype2 = 7 -5623542 locktype3 = 4 -5623543 goalCount = 1 -5623543 goalTotal = 31 -5623544 otherCount = 43 -~~~ -5623544 UP 10 -5623565 waslock = 0 -5623544 512 2048 -~~~ -5623698 DOWN 10 -5623698 0 2048 -5623712 UP 10 -5623712 waslock = 0 -5623712 512 2048 -~~~ -~~~ -~~~ -~~~ -5623721 homeCount = 87 -5623722 waitCount = 42 -5623722 ripCount = 37 -5623723 locktype1 = 2 -5623723 locktype2 = 7 -5623723 locktype3 = 4 -5623724 goalCount = 1 -5623724 goalTotal = 31 -5623725 otherCount = 43 -~~~ -~~~ -5627894 DOWN 10 -5627894 0 2048 -~~~ -~~~ -~~~ -~~~ -5627923 homeCount = 87 -5627923 waitCount = 42 -5627924 ripCount = 37 -5627924 locktype1 = 2 -5627925 locktype2 = 7 -5627925 locktype3 = 4 -5627926 goalCount = 1 -5627926 goalTotal = 31 -5627927 otherCount = 43 -~~~ -5629774 UP 12 -5629774 2048 2048 -5635275 CLICK1 -5635275 CLICK2 -~~~ -~~~ -~~~ -5635302 2048 67110912 -~~~ -5635452 2048 2048 -5641984 DOWN 12 -5641984 0 2048 -5642006 UP 12 -5642006 2048 2048 -~~~ -~~~ -5642011 2048 0 -~~~ -~~~ -5642013 2048 1 -~~~ -~~~ -5642015 2048 3 -~~~ -~~~ -5642016 2048 7 -~~~ -~~~ -5642018 2048 15 -~~~ -~~~ -5642020 2048 31 -~~~ -~~~ -5642022 2048 63 -~~~ -~~~ -5642024 2048 127 -~~~ -~~~ -5642026 2048 255 -5642027 homeCount = 87 -5642027 waitCount = 43 -5642028 ripCount = 37 -5642028 locktype1 = 2 -5642049 locktype2 = 7 -5642049 locktype3 = 4 -5642050 goalCount = 1 -5642050 goalTotal = 31 -5642051 otherCount = 43 -~~~ -5642052 CURRENTGOAL IS [3] -~~~ -5642075 DOWN 12 -5642075 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5642117 homeCount = 87 -5642117 waitCount = 43 -5642118 ripCount = 37 -5642118 locktype1 = 2 -5642119 locktype2 = 7 -5642119 locktype3 = 4 -5642120 goalCount = 1 -5642120 goalTotal = 31 -5642121 otherCount = 43 -~~~ -5642122 CURRENTGOAL IS [3] -~~~ -5647230 UP 2 -5647229 2 255 -~~~ -~~~ -5647953 DOWN 2 -5647953 0 255 -~~~ -~~~ -5647972 0 254 -~~~ -~~~ -5647974 0 252 -~~~ -~~~ -5647976 0 248 -~~~ -~~~ -5647977 0 240 -~~~ -~~~ -5647979 0 224 -~~~ -~~~ -5647981 0 192 -~~~ -~~~ -5647983 0 128 -~~~ -~~~ -5647985 0 0 -~~~ -~~~ -5647987 0 512 -5647988 homeCount = 87 -5647988 waitCount = 43 -5647989 ripCount = 37 -5647989 locktype1 = 2 -5647990 locktype2 = 7 -5648010 locktype3 = 4 -5648011 goalCount = 1 -5648011 goalTotal = 31 -5648012 otherCount = 44 -~~~ -5648216 2 512 -5648546 DOWN 2 -5648546 0 512 -5648670 2 512 -5648920 DOWN 2 -5648920 0 512 -5652561 UP 10 -5652561 waslock = 0 -5652561 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5652587 512 16777728 -~~~ -5652737 512 512 -5657217 DOWN 10 -5657217 0 512 -5657227 UP 10 -5657227 waslock = 0 -5657227 512 512 -~~~ -~~~ -5657243 512 2560 -~~~ -~~~ -5657245 512 2048 -5657246 homeCount = 88 -5657247 waitCount = 43 -5657247 ripCount = 37 -5657248 locktype1 = 2 -5657248 locktype2 = 7 -5657248 locktype3 = 4 -5657249 goalCount = 1 -5657249 goalTotal = 31 -5657250 otherCount = 44 -~~~ -~~~ -5657312 DOWN 10 -5657312 0 2048 -~~~ -~~~ -~~~ -~~~ -5657336 homeCount = 88 -5657336 waitCount = 43 -5657337 ripCount = 37 -5657337 locktype1 = 2 -5657338 locktype2 = 7 -5657338 locktype3 = 4 -5657339 goalCount = 1 -5657339 goalTotal = 31 -5657340 otherCount = 44 -~~~ -5659131 UP 12 -5659131 2048 2048 -5662533 DOWN 12 -5662533 0 2048 -5662574 UP 12 -5662574 2048 2048 -5662705 DOWN 12 -5662705 0 2048 -5662761 UP 12 -5662761 2048 2048 -5663131 CLICK1 -5663131 CLICK2 -~~~ -~~~ -~~~ -5663154 2048 67110912 -~~~ -5663304 2048 2048 -5670561 DOWN 12 -5670561 0 2048 -~~~ -~~~ -5670583 0 0 -~~~ -~~~ -5670585 0 1 -~~~ -~~~ -5670587 0 3 -~~~ -~~~ -5670589 0 7 -~~~ -~~~ -5670591 0 15 -~~~ -~~~ -5670592 0 31 -~~~ -~~~ -5670594 0 63 -~~~ -~~~ -5670596 0 127 -~~~ -~~~ -5670598 0 255 -5670599 homeCount = 88 -5670599 waitCount = 44 -5670600 ripCount = 37 -5670600 locktype1 = 2 -5670601 locktype2 = 7 -5670601 locktype3 = 4 -5670622 goalCount = 1 -5670623 goalTotal = 31 -5670623 otherCount = 44 -~~~ -5670624 CURRENTGOAL IS [3] -~~~ -5670625 UP 12 -5670625 2048 255 -5670656 DOWN 12 -5670656 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5670690 homeCount = 88 -5670691 waitCount = 44 -5670691 ripCount = 37 -5670692 locktype1 = 2 -5670692 locktype2 = 7 -5670693 locktype3 = 4 -5670693 goalCount = 1 -5670694 goalTotal = 31 -5670694 otherCount = 44 -~~~ -5670695 CURRENTGOAL IS [3] -~~~ -5677942 UP 2 -5677942 2 255 -~~~ -~~~ -5678387 DOWN 2 -5678387 0 255 -~~~ -~~~ -5678415 0 254 -~~~ -~~~ -5678417 0 252 -~~~ -~~~ -5678419 0 248 -~~~ -~~~ -5678420 0 240 -~~~ -~~~ -5678422 0 224 -~~~ -~~~ -5678424 0 192 -~~~ -~~~ -5678426 0 128 -~~~ -~~~ -5678428 0 0 -~~~ -~~~ -5678430 0 512 -5678431 homeCount = 88 -5678431 waitCount = 44 -5678432 ripCount = 37 -5678432 locktype1 = 2 -5678433 locktype2 = 7 -5678454 locktype3 = 4 -5678454 goalCount = 1 -5678455 goalTotal = 31 -5678455 otherCount = 45 -~~~ -5681630 UP 10 -5681630 waslock = 0 -5681630 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5681661 512 16777728 -~~~ -5681811 512 512 -5686735 DOWN 10 -5686735 0 512 -~~~ -~~~ -5686755 0 1536 -~~~ -~~~ -5686757 0 1024 -5686758 homeCount = 89 -5686759 waitCount = 44 -5686759 ripCount = 37 -5686760 locktype1 = 2 -5686760 locktype2 = 7 -5686761 locktype3 = 4 -5686761 goalCount = 1 -5686761 goalTotal = 31 -5686762 otherCount = 45 -~~~ -5688438 UP 11 -5688438 1024 1024 -5691438 BEEP1 -5691438 BEEP2 -~~~ -~~~ -~~~ -5691457 1024 33555456 -~~~ -5691544 DOWN 11 -5691544 0 33555456 -5691547 UP 11 -5691547 1024 33555456 -5691607 1024 1024 -~~~ -~~~ -5692129 1024 0 -~~~ -~~~ -5692131 1024 1 -~~~ -~~~ -5692133 1024 3 -~~~ -~~~ -5692134 1024 7 -~~~ -~~~ -5692136 1024 15 -~~~ -~~~ -5692138 1024 31 -~~~ -~~~ -5692140 1024 63 -~~~ -~~~ -5692142 1024 127 -~~~ -~~~ -5692144 1024 255 -5692145 homeCount = 89 -5692145 waitCount = 44 -5692146 ripCount = 38 -5692146 locktype1 = 2 -5692167 locktype2 = 7 -5692168 locktype3 = 4 -5692168 goalCount = 1 -5692169 goalTotal = 31 -5692169 otherCount = 45 -~~~ -5692170 CURRENTGOAL IS [3] -~~~ -5697547 DOWN 11 -5697547 0 255 -5697564 UP 11 -5697564 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697582 homeCount = 89 -5697583 waitCount = 44 -5697583 ripCount = 38 -5697584 locktype1 = 2 -5697584 locktype2 = 7 -5697585 locktype3 = 4 -5697585 goalCount = 1 -5697586 goalTotal = 31 -5697586 otherCount = 45 -~~~ -5697587 CURRENTGOAL IS [3] -~~~ -5697675 DOWN 11 -5697675 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697707 UP 11 -5697707 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -5697712 homeCount = 89 -5697713 waitCount = 44 -5697713 ripCount = 38 -5697714 locktype1 = 2 -5697714 locktype2 = 7 -5697715 locktype3 = 4 -5697715 goalCount = 1 -5697716 goalTotal = 31 -5697716 otherCount = 45 -~~~ -5697717 CURRENTGOAL IS [3] -~~~ -5697811 DOWN 11 -5697811 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697843 UP 11 -5697843 1024 255 -~~~ -~~~ -~~~ -5697846 homeCount = 89 -5697847 waitCount = 44 -5697847 ripCount = 38 -5697848 locktype1 = 2 -5697848 locktype2 = 7 -5697849 locktype3 = 4 -5697849 goalCount = 1 -5697850 goalTotal = 31 -5697850 otherCount = 45 -~~~ -5697851 CURRENTGOAL IS [3] -~~~ -5700488 DOWN 11 -5700488 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5700525 homeCount = 89 -5700526 waitCount = 44 -5700526 ripCount = 38 -5700527 locktype1 = 2 -5700527 locktype2 = 7 -5700528 locktype3 = 4 -5700528 goalCount = 1 -5700528 goalTotal = 31 -5700529 otherCount = 45 -~~~ -5700530 CURRENTGOAL IS [3] -~~~ -5700536 UP 11 -5700536 1024 255 -5700622 DOWN 11 -5700622 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5700656 homeCount = 89 -5700656 waitCount = 44 -5700657 ripCount = 38 -5700657 locktype1 = 2 -5700658 locktype2 = 7 -5700658 locktype3 = 4 -5700659 goalCount = 1 -5700659 goalTotal = 31 -5700660 otherCount = 45 -~~~ -5700661 CURRENTGOAL IS [3] -~~~ -5701175 UP 11 -5701175 1024 255 -5701502 DOWN 11 -5701502 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5701545 homeCount = 89 -5701546 waitCount = 44 -5701547 ripCount = 38 -5701547 locktype1 = 2 -5701548 locktype2 = 7 -5701548 locktype3 = 4 -5701548 goalCount = 1 -5701549 goalTotal = 31 -5701549 otherCount = 45 -~~~ -5701551 CURRENTGOAL IS [3] -~~~ -5701590 UP 11 -5701590 1024 255 -5702159 DOWN 11 -5702159 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5702196 homeCount = 89 -5702196 waitCount = 44 -5702197 ripCount = 38 -5702197 locktype1 = 2 -5702198 locktype2 = 7 -5702198 locktype3 = 4 -5702199 goalCount = 1 -5702199 goalTotal = 31 -5702200 otherCount = 45 -~~~ -5702201 CURRENTGOAL IS [3] -~~~ -5702214 UP 11 -5702214 1024 255 -5703249 DOWN 11 -5703249 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5703287 homeCount = 89 -5703288 waitCount = 44 -5703288 ripCount = 38 -5703289 locktype1 = 2 -5703290 locktype2 = 7 -5703290 locktype3 = 4 -5703290 goalCount = 1 -5703291 goalTotal = 31 -5703291 otherCount = 45 -~~~ -5703292 CURRENTGOAL IS [3] -~~~ -5716846 UP 3 -5716846 4 255 -~~~ -~~~ -5716863 outer reward -~~~ -5716864 4 262399 -~~~ -~~~ -5716866 DOWN 3 -5716866 0 262399 -~~~ -~~~ -5716883 0 262398 -~~~ -~~~ -5716885 0 262396 -~~~ -~~~ -5716887 0 262392 -~~~ -5716888 4 262392 -~~~ -~~~ -5716890 4 262384 -~~~ -~~~ -5716891 4 262368 -~~~ -5716892 4 262336 -~~~ -~~~ -5716894 4 262272 -~~~ -~~~ -5716896 4 262144 -~~~ -~~~ -5716898 4 262656 -5716899 homeCount = 89 -5716899 waitCount = 44 -5716920 ripCount = 38 -5716921 locktype1 = 2 -5716921 locktype2 = 7 -5716922 locktype3 = 4 -5716922 goalCount = 2 -5716923 goalTotal = 32 -5716923 otherCount = 45 -~~~ -5717199 DOWN 3 -5717199 0 262656 -5717223 4 262656 -5717313 4 512 -5717605 DOWN 3 -5717605 0 512 -5717612 4 512 -5717719 DOWN 3 -5717719 0 512 -5717740 4 512 -5717840 DOWN 3 -5717840 0 512 -5717858 4 512 -5717966 DOWN 3 -5717966 0 512 -5717983 4 512 -5718090 DOWN 3 -5718090 0 512 -5718109 4 512 -5723871 DOWN 3 -5723871 0 512 -5723884 4 512 -5724350 DOWN 3 -5724350 0 512 -5724405 4 512 -5724458 DOWN 3 -5724458 0 512 -5728178 UP 10 -5728179 waslock = 0 -5728178 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5728208 512 16777728 -~~~ -5728358 512 512 -5734718 DOWN 10 -5734718 0 512 -5734740 UP 10 -5734740 waslock = 0 -5734740 512 512 -~~~ -~~~ -~~~ -5734743 512 1536 -~~~ -5734744 512 1024 -5734745 homeCount = 90 -5734745 waitCount = 44 -5734746 ripCount = 38 -5734746 locktype1 = 2 -5734747 locktype2 = 7 -5734747 locktype3 = 4 -5734748 goalCount = 2 -5734769 goalTotal = 32 -5734769 otherCount = 45 -~~~ -~~~ -5734818 DOWN 10 -5734818 0 1024 -~~~ -~~~ -~~~ -~~~ -5734839 homeCount = 90 -5734840 waitCount = 44 -5734840 ripCount = 38 -5734841 locktype1 = 2 -5734841 locktype2 = 7 -5734842 locktype3 = 4 -5734842 goalCount = 2 -5734843 goalTotal = 32 -5734843 otherCount = 45 -~~~ -5736341 UP 11 -5736341 1024 1024 -5739841 BEEP1 -5739841 BEEP2 -~~~ -~~~ -~~~ -5739868 1024 33555456 -~~~ -5740018 1024 1024 -5746448 DOWN 11 -5746448 0 1024 -5746457 UP 11 -5746456 1024 1024 -~~~ -~~~ -5746467 1024 0 -~~~ -~~~ -5746469 1024 1 -~~~ -~~~ -5746471 1024 3 -~~~ -~~~ -5746472 1024 7 -~~~ -~~~ -5746474 1024 15 -~~~ -~~~ -5746476 1024 31 -~~~ -~~~ -5746478 1024 63 -~~~ -~~~ -5746480 1024 127 -~~~ -~~~ -5746481 1024 255 -5746482 homeCount = 90 -5746483 waitCount = 44 -5746484 ripCount = 39 -5746484 locktype1 = 2 -5746505 locktype2 = 7 -5746505 locktype3 = 4 -5746506 goalCount = 2 -5746506 goalTotal = 32 -5746507 otherCount = 45 -~~~ -5746508 CURRENTGOAL IS [3] -~~~ -5750211 DOWN 11 -5750211 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5750252 homeCount = 90 -5750253 waitCount = 44 -5750253 ripCount = 39 -5750254 locktype1 = 2 -5750254 locktype2 = 7 -5750255 locktype3 = 4 -5750255 goalCount = 2 -5750256 goalTotal = 32 -5750256 otherCount = 45 -~~~ -5750257 CURRENTGOAL IS [3] -~~~ -5750278 UP 11 -5750278 1024 255 -5751976 DOWN 11 -5751976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5752013 homeCount = 90 -5752013 waitCount = 44 -5752014 ripCount = 39 -5752014 locktype1 = 2 -5752015 locktype2 = 7 -5752015 locktype3 = 4 -5752016 goalCount = 2 -5752016 goalTotal = 32 -5752016 otherCount = 45 -~~~ -5752018 CURRENTGOAL IS [3] -~~~ -5758629 UP 2 -5758629 2 255 -~~~ -~~~ -5759431 DOWN 2 -5759431 0 255 -~~~ -~~~ -5759455 0 254 -~~~ -~~~ -5759457 0 252 -~~~ -~~~ -5759459 0 248 -~~~ -~~~ -5759461 0 240 -~~~ -~~~ -5759463 0 224 -~~~ -~~~ -5759465 0 192 -~~~ -~~~ -5759466 0 128 -~~~ -~~~ -5759468 0 0 -~~~ -~~~ -5759470 0 512 -5759471 homeCount = 90 -5759472 waitCount = 44 -5759472 ripCount = 39 -5759473 locktype1 = 2 -5759473 locktype2 = 7 -5759494 locktype3 = 4 -5759495 goalCount = 2 -5759495 goalTotal = 32 -5759495 otherCount = 46 -~~~ -5759663 2 512 -5759777 DOWN 2 -5759777 0 512 -5765697 UP 10 -5765697 waslock = 0 -5765697 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5765722 512 16777728 -~~~ -5765872 512 512 -5765931 DOWN 10 -5765931 0 512 -5765938 UP 10 -5765938 waslock = 0 -5765938 512 512 -~~~ -~~~ -5765957 512 2560 -~~~ -~~~ -5765959 512 2048 -5765960 homeCount = 91 -5765961 waitCount = 44 -5765961 ripCount = 39 -5765962 locktype1 = 2 -5765962 locktype2 = 7 -5765962 locktype3 = 4 -5765963 goalCount = 2 -5765963 goalTotal = 32 -5765964 otherCount = 46 -~~~ -~~~ -5770516 DOWN 10 -5770516 0 2048 -5770527 UP 10 -5770527 waslock = 0 -5770527 512 2048 -~~~ -~~~ -~~~ -~~~ -5770552 homeCount = 91 -5770553 waitCount = 44 -5770553 ripCount = 39 -5770554 locktype1 = 2 -5770554 locktype2 = 7 -5770555 locktype3 = 4 -5770555 goalCount = 2 -5770556 goalTotal = 32 -5770556 otherCount = 46 -~~~ -~~~ -5770605 DOWN 10 -5770605 0 2048 -~~~ -~~~ -~~~ -~~~ -5770632 homeCount = 91 -5770632 waitCount = 44 -5770633 ripCount = 39 -5770633 locktype1 = 2 -5770634 locktype2 = 7 -5770634 locktype3 = 4 -5770635 goalCount = 2 -5770635 goalTotal = 32 -5770635 otherCount = 46 -~~~ -5772538 UP 12 -5772538 2048 2048 -5774762 DOWN 12 -5774762 0 2048 -5774792 UP 12 -5774792 2048 2048 -5774819 DOWN 12 -5774819 0 2048 -5774837 UP 12 -5774837 2048 2048 -5777111 DOWN 12 -5777111 0 2048 -5777126 UP 12 -5777126 2048 2048 -5780539 CLICK1 -5780539 CLICK2 -~~~ -~~~ -~~~ -5780558 2048 67110912 -~~~ -5780708 2048 2048 -5787618 DOWN 12 -5787618 0 2048 -~~~ -~~~ -5787637 0 0 -~~~ -~~~ -5787639 0 1 -~~~ -~~~ -5787640 0 3 -~~~ -~~~ -5787642 0 7 -~~~ -~~~ -5787644 0 15 -~~~ -~~~ -5787646 0 31 -~~~ -~~~ -5787648 0 63 -~~~ -~~~ -5787649 0 127 -~~~ -~~~ -5787651 0 255 -5787652 homeCount = 91 -5787653 waitCount = 45 -5787653 ripCount = 39 -5787654 locktype1 = 2 -5787654 locktype2 = 7 -5787675 locktype3 = 4 -5787675 goalCount = 2 -5787676 goalTotal = 32 -5787676 otherCount = 46 -~~~ -5787677 CURRENTGOAL IS [3] -~~~ -5787678 UP 12 -5787678 2048 255 -5787722 DOWN 12 -5787722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5787754 homeCount = 91 -5787755 waitCount = 45 -5787755 ripCount = 39 -5787756 locktype1 = 2 -5787756 locktype2 = 7 -5787757 locktype3 = 4 -5787757 goalCount = 2 -5787758 goalTotal = 32 -5787758 otherCount = 46 -~~~ -5787759 CURRENTGOAL IS [3] -~~~ -5795603 UP 7 -5795603 64 255 -~~~ -~~~ -5796010 DOWN 7 -5796010 0 255 -~~~ -~~~ -5796029 0 254 -~~~ -~~~ -5796031 0 252 -~~~ -~~~ -5796033 0 248 -~~~ -~~~ -5796034 0 240 -~~~ -~~~ -5796036 0 224 -~~~ -~~~ -5796038 0 192 -~~~ -~~~ -5796040 0 128 -~~~ -~~~ -5796042 0 0 -~~~ -~~~ -5796044 0 512 -5796045 homeCount = 91 -5796045 waitCount = 45 -5796046 ripCount = 39 -5796046 locktype1 = 2 -5796047 locktype2 = 7 -5796068 locktype3 = 4 -5796068 goalCount = 2 -5796069 goalTotal = 32 -5796069 otherCount = 47 -~~~ -5796070 64 512 -5796533 DOWN 7 -5796533 0 512 -5800125 UP 10 -5800125 waslock = 0 -5800125 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5800149 512 16777728 -~~~ -5800299 512 512 -5800329 DOWN 10 -5800329 0 512 -5800334 UP 10 -5800334 waslock = 0 -5800334 512 512 -~~~ -~~~ -5800353 512 1536 -~~~ -~~~ -5800355 512 1024 -5800356 homeCount = 92 -5800357 waitCount = 45 -5800357 ripCount = 39 -5800358 locktype1 = 2 -5800358 locktype2 = 7 -5800359 locktype3 = 4 -5800359 goalCount = 2 -5800359 goalTotal = 32 -5800360 otherCount = 47 -~~~ -~~~ -5805808 DOWN 10 -5805808 0 1024 -~~~ -~~~ -~~~ -~~~ -5805836 homeCount = 92 -5805836 waitCount = 45 -5805837 ripCount = 39 -5805837 locktype1 = 2 -5805838 locktype2 = 7 -5805838 locktype3 = 4 -5805839 goalCount = 2 -5805839 goalTotal = 32 -5805840 otherCount = 47 -~~~ -5807754 UP 11 -5807754 1024 1024 -5810234 DOWN 11 -5810234 0 1024 -5810278 UP 11 -5810278 1024 1024 -5810754 BEEP1 -5810754 BEEP2 -~~~ -~~~ -~~~ -5810775 1024 33555456 -~~~ -5810925 1024 1024 -5817367 DOWN 11 -5817367 0 1024 -5817376 UP 11 -5817376 1024 1024 -~~~ -~~~ -5817392 1024 0 -~~~ -~~~ -5817394 1024 1 -~~~ -~~~ -5817396 1024 3 -~~~ -~~~ -5817397 1024 7 -~~~ -~~~ -5817399 1024 15 -~~~ -~~~ -5817401 1024 31 -~~~ -~~~ -5817403 1024 63 -~~~ -~~~ -5817405 1024 127 -~~~ -~~~ -5817407 1024 255 -5817408 homeCount = 92 -5817408 waitCount = 45 -5817409 ripCount = 40 -5817409 locktype1 = 2 -5817430 locktype2 = 7 -5817431 locktype3 = 4 -5817431 goalCount = 2 -5817432 goalTotal = 32 -5817432 otherCount = 47 -~~~ -5817433 CURRENTGOAL IS [3] -~~~ -5820017 DOWN 11 -5820017 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5820058 homeCount = 92 -5820059 waitCount = 45 -5820059 ripCount = 40 -5820060 locktype1 = 2 -5820060 locktype2 = 7 -5820061 locktype3 = 4 -5820061 goalCount = 2 -5820061 goalTotal = 32 -5820062 otherCount = 47 -~~~ -5820063 CURRENTGOAL IS [3] -~~~ -5828153 UP 3 -5828153 4 255 -~~~ -~~~ -5828176 outer reward -~~~ -5828176 4 262399 -~~~ -~~~ -5828381 DOWN 3 -5828381 0 262399 -~~~ -~~~ -5828405 0 262398 -~~~ -~~~ -5828407 0 262396 -~~~ -~~~ -5828409 0 262392 -~~~ -~~~ -5828411 0 262384 -~~~ -~~~ -5828412 0 262368 -~~~ -~~~ -5828414 0 262336 -~~~ -5828416 4 262336 -~~~ -~~~ -5828417 4 262272 -~~~ -5828418 4 262144 -~~~ -~~~ -5828420 4 262656 -5828421 homeCount = 92 -5828421 waitCount = 45 -5828442 ripCount = 40 -5828443 locktype1 = 2 -5828443 locktype2 = 7 -5828444 locktype3 = 4 -5828444 goalCount = 3 -5828445 goalTotal = 33 -5828445 otherCount = 47 -~~~ -5828626 4 512 -5828783 DOWN 3 -5828783 0 512 -5828810 4 512 -5828903 DOWN 3 -5828903 0 512 -5828941 4 512 -5829030 DOWN 3 -5829030 0 512 -5829062 4 512 -5829159 DOWN 3 -5829159 0 512 -5829194 4 512 -5829292 DOWN 3 -5829292 0 512 -5829324 4 512 -5829422 DOWN 3 -5829422 0 512 -5829451 4 512 -5829559 DOWN 3 -5829559 0 512 -5829588 4 512 -5829697 DOWN 3 -5829697 0 512 -5829724 4 512 -5829837 DOWN 3 -5829837 0 512 -5829860 4 512 -5829982 DOWN 3 -5829982 0 512 -5830000 4 512 -5830129 DOWN 3 -5830129 0 512 -5830141 4 512 -5830435 DOWN 3 -5830435 0 512 -5830444 4 512 -5833394 DOWN 3 -5833394 0 512 -5833418 4 512 -5834560 DOWN 3 -5834560 0 512 -5834571 4 512 -5834740 DOWN 3 -5834740 0 512 -5834746 4 512 -5836809 DOWN 3 -5836809 0 512 -5836847 4 512 -5836894 DOWN 3 -5836894 0 512 -5840557 UP 10 -5840558 waslock = 0 -5840557 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5840584 512 16777728 -~~~ -5840734 512 512 -5844296 DOWN 10 -5844296 0 512 -~~~ -~~~ -5844316 0 2560 -~~~ -~~~ -5844318 0 2048 -5844319 homeCount = 93 -5844320 waitCount = 45 -5844320 ripCount = 40 -5844321 locktype1 = 2 -5844321 locktype2 = 7 -5844321 locktype3 = 4 -5844322 goalCount = 3 -5844322 goalTotal = 33 -5844323 otherCount = 47 -~~~ -5845949 UP 12 -5845949 2048 2048 -5849054 DOWN 12 -5849054 0 2048 -5849095 UP 12 -5849095 2048 2048 -5849949 CLICK1 -5849949 CLICK2 -~~~ -~~~ -~~~ -5849973 2048 67110912 -~~~ -5850123 2048 2048 -5856550 DOWN 12 -5856550 0 2048 -~~~ -~~~ -5856578 0 0 -~~~ -~~~ -5856580 0 1 -~~~ -~~~ -5856581 0 3 -~~~ -~~~ -5856583 0 7 -~~~ -~~~ -5856585 0 15 -~~~ -~~~ -5856587 0 31 -~~~ -~~~ -5856589 0 63 -~~~ -~~~ -5856590 0 127 -~~~ -~~~ -5856592 0 255 -5856593 homeCount = 93 -5856594 waitCount = 46 -5856594 ripCount = 40 -5856595 locktype1 = 2 -5856595 locktype2 = 7 -5856596 locktype3 = 4 -5856617 goalCount = 3 -5856618 goalTotal = 33 -5856618 otherCount = 47 -~~~ -5856619 CURRENTGOAL IS [3] -~~~ -5856644 UP 12 -5856644 2048 255 -5858693 DOWN 12 -5858693 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5858736 homeCount = 93 -5858736 waitCount = 46 -5858737 ripCount = 40 -5858737 locktype1 = 2 -5858738 locktype2 = 7 -5858738 locktype3 = 4 -5858739 goalCount = 3 -5858739 goalTotal = 33 -5858740 otherCount = 47 -~~~ -5858741 CURRENTGOAL IS [3] -~~~ -5862529 UP 3 -5862529 4 255 -~~~ -~~~ -5862552 outer reward -~~~ -5862552 4 262399 -~~~ -~~~ -5862752 DOWN 3 -5862752 0 262399 -~~~ -~~~ -5862770 0 262398 -~~~ -~~~ -5862772 0 262396 -~~~ -~~~ -5862774 0 262392 -~~~ -~~~ -5862776 0 262384 -~~~ -~~~ -5862777 0 262368 -~~~ -~~~ -5862779 0 262336 -~~~ -~~~ -5862781 0 262272 -~~~ -~~~ -5862783 0 262144 -~~~ -~~~ -5862785 0 262656 -5862786 homeCount = 93 -5862786 waitCount = 46 -5862787 ripCount = 40 -5862808 locktype1 = 2 -5862809 locktype2 = 7 -5862809 locktype3 = 4 -5862809 goalCount = 4 -5862810 goalTotal = 34 -5862810 otherCount = 47 -~~~ -5862811 4 262656 -5863002 4 512 -5863190 DOWN 3 -5863190 0 512 -5863214 4 512 -5863309 DOWN 3 -5863309 0 512 -5863346 4 512 -5863438 DOWN 3 -5863438 0 512 -5863466 4 512 -5863585 DOWN 3 -5863585 0 512 -5863605 4 512 -5863714 DOWN 3 -5863714 0 512 -5863740 4 512 -5863854 DOWN 3 -5863854 0 512 -5863877 4 512 -5863999 DOWN 3 -5863999 0 512 -5864018 4 512 -5864142 DOWN 3 -5864142 0 512 -5864162 4 512 -5864291 DOWN 3 -5864291 0 512 -5864306 4 512 -5864440 DOWN 3 -5864440 0 512 -5864456 4 512 -5870702 DOWN 3 -5870702 0 512 -5870792 4 512 -5870801 DOWN 3 -5870801 0 512 -5874682 UP 10 -5874682 waslock = 0 -5874682 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5874707 512 16777728 -~~~ -5874857 512 512 -5874917 DOWN 10 -5874917 0 512 -5874930 UP 10 -5874931 waslock = 0 -5874930 512 512 -~~~ -~~~ -5874941 512 2560 -~~~ -~~~ -5874943 512 2048 -5874944 homeCount = 94 -5874945 waitCount = 46 -5874945 ripCount = 40 -5874946 locktype1 = 2 -5874946 locktype2 = 7 -5874947 locktype3 = 4 -5874947 goalCount = 4 -5874947 goalTotal = 34 -5874948 otherCount = 47 -~~~ -~~~ -5879193 DOWN 10 -5879193 0 2048 -~~~ -~~~ -~~~ -~~~ -5879215 homeCount = 94 -5879216 waitCount = 46 -5879216 ripCount = 40 -5879217 locktype1 = 2 -5879217 locktype2 = 7 -5879218 locktype3 = 4 -5879218 goalCount = 4 -5879219 goalTotal = 34 -5879219 otherCount = 47 -~~~ -5880914 UP 12 -5880914 2048 2048 -5881174 DOWN 12 -5881174 0 2048 -5881272 UP 12 -5881272 2048 2048 -5881331 DOWN 12 -5881331 0 2048 -5881349 UP 12 -5881349 2048 2048 -5882641 DOWN 12 -5882641 0 2048 -5882721 UP 12 -5882721 2048 2048 -5883785 DOWN 12 -5883785 0 2048 -5883812 UP 12 -5883812 2048 2048 -5886414 CLICK1 -5886414 CLICK2 -~~~ -~~~ -~~~ -5886435 2048 67110912 -~~~ -5886585 2048 2048 -5892947 DOWN 12 -5892947 0 2048 -5892961 UP 12 -5892961 2048 2048 -~~~ -~~~ -5892972 2048 0 -~~~ -~~~ -5892974 2048 1 -~~~ -~~~ -5892976 2048 3 -~~~ -~~~ -5892978 2048 7 -~~~ -~~~ -5892979 2048 15 -~~~ -~~~ -5892981 2048 31 -~~~ -~~~ -5892983 2048 63 -~~~ -~~~ -5892985 2048 127 -~~~ -~~~ -5892987 2048 255 -5892988 homeCount = 94 -5892988 waitCount = 47 -5892989 ripCount = 40 -5892989 locktype1 = 2 -5893010 locktype2 = 7 -5893010 locktype3 = 4 -5893011 goalCount = 4 -5893011 goalTotal = 34 -5893012 otherCount = 47 -~~~ -5893013 CURRENTGOAL IS [3] -~~~ -5893066 DOWN 12 -5893066 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5893100 homeCount = 94 -5893101 waitCount = 47 -5893101 ripCount = 40 -5893102 locktype1 = 2 -5893102 locktype2 = 7 -5893103 locktype3 = 4 -5893103 goalCount = 4 -5893104 goalTotal = 34 -5893104 otherCount = 47 -~~~ -5893105 CURRENTGOAL IS [3] -~~~ -5893124 UP 12 -5893124 2048 255 -5894503 DOWN 12 -5894503 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5894542 homeCount = 94 -5894542 waitCount = 47 -5894543 ripCount = 40 -5894543 locktype1 = 2 -5894544 locktype2 = 7 -5894544 locktype3 = 4 -5894545 goalCount = 4 -5894545 goalTotal = 34 -5894546 otherCount = 47 -~~~ -5894547 CURRENTGOAL IS [3] -~~~ -5898051 UP 3 -5898051 4 255 -~~~ -~~~ -5898075 outer reward -~~~ -5898075 4 262399 -~~~ -~~~ -5898084 DOWN 3 -5898084 0 262399 -~~~ -~~~ -5898105 0 262398 -~~~ -~~~ -5898107 0 262396 -~~~ -~~~ -5898109 0 262392 -~~~ -~~~ -5898111 0 262384 -~~~ -~~~ -5898113 0 262368 -~~~ -~~~ -5898114 0 262336 -~~~ -~~~ -5898116 0 262272 -~~~ -~~~ -5898118 0 262144 -~~~ -5898119 4 262144 -~~~ -5898121 4 262656 -5898121 homeCount = 94 -5898122 waitCount = 47 -5898143 ripCount = 40 -5898143 locktype1 = 2 -5898143 locktype2 = 7 -5898144 locktype3 = 4 -5898144 goalCount = 5 -5898145 goalTotal = 35 -5898145 otherCount = 47 -~~~ -5898295 DOWN 3 -5898295 0 262656 -5898339 4 262656 -5898474 DOWN 3 -5898474 0 262656 -5898485 4 262656 -5898525 4 512 -5898613 DOWN 3 -5898613 0 512 -5898629 4 512 -5898725 DOWN 3 -5898725 0 512 -5898757 4 512 -5899023 DOWN 3 -5899023 0 512 -5899036 4 512 -5899150 DOWN 3 -5899150 0 512 -5899168 4 512 -5899278 DOWN 3 -5899278 0 512 -5899303 4 512 -5899418 DOWN 3 -5899418 0 512 -5899436 4 512 -5899556 DOWN 3 -5899556 0 512 -5899573 4 512 -5900710 DOWN 3 -5900710 0 512 -5900719 4 512 -5901495 DOWN 3 -5901495 0 512 -5901502 4 512 -5907977 DOWN 3 -5907977 0 512 -5907988 4 512 -5908474 DOWN 3 -5908474 0 512 -5908635 4 512 -5908689 DOWN 3 -5908689 0 512 -5913757 UP 10 -5913758 waslock = 0 -5913757 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5913783 512 16777728 -~~~ -5913933 512 512 -5917745 DOWN 10 -5917745 0 512 -~~~ -~~~ -5917767 0 2560 -~~~ -~~~ -5917769 0 2048 -5917770 homeCount = 95 -5917771 waitCount = 47 -5917771 ripCount = 40 -5917771 locktype1 = 2 -5917772 locktype2 = 7 -5917772 locktype3 = 4 -5917773 goalCount = 5 -5917773 goalTotal = 35 -5917774 otherCount = 47 -~~~ -5917777 UP 10 -5917778 waslock = 0 -5917777 512 2048 -5917816 DOWN 10 -5917816 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5917844 homeCount = 95 -5917844 waitCount = 47 -5917845 ripCount = 40 -5917845 locktype1 = 2 -5917846 locktype2 = 7 -5917846 locktype3 = 4 -5917847 goalCount = 5 -5917847 goalTotal = 35 -5917848 otherCount = 47 -~~~ -5919813 UP 12 -5919813 2048 2048 -5920060 DOWN 12 -5920060 0 2048 -5920260 LOCKOUT 3 -~~~ -5920281 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5920287 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5920319 UP 12 -5920319 2048 0 -5921986 DOWN 12 -5921986 0 0 -5922031 UP 12 -5922031 2048 0 -5928322 DOWN 12 -5928322 0 0 -5928360 UP 12 -5928360 2048 0 -5928730 DOWN 12 -5928729 0 0 -5928859 UP 12 -5928859 2048 0 -5930252 DOWN 12 -5930252 0 0 -5942734 UP 8 -5942734 128 0 -5943812 DOWN 8 -5943812 0 0 -5944012 128 0 -5944110 DOWN 8 -5944110 0 0 -5945254 128 0 -5945281 LOCKEND -~~~ -~~~ -~~~ -5945306 128 512 -5945311 DOWN 8 -5945311 0 512 -5945821 128 512 -5947058 DOWN 8 -5947058 0 512 -5970247 UP 10 -5970248 waslock = 0 -5970247 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5970272 512 16777728 -~~~ -5970422 512 512 -5972015 DOWN 10 -5972015 0 512 -5972026 UP 10 -5972026 waslock = 0 -5972026 512 512 -~~~ -~~~ -5972046 512 1536 -~~~ -~~~ -5972048 512 1024 -5972049 homeCount = 96 -5972050 waitCount = 47 -5972050 ripCount = 40 -5972051 locktype1 = 2 -5972051 locktype2 = 7 -5972052 locktype3 = 5 -5972052 goalCount = 5 -5972053 goalTotal = 35 -5972053 otherCount = 47 -~~~ -~~~ -5976454 DOWN 10 -5976454 0 1024 -~~~ -~~~ -~~~ -~~~ -5976477 homeCount = 96 -5976477 waitCount = 47 -5976478 ripCount = 40 -5976478 locktype1 = 2 -5976479 locktype2 = 7 -5976479 locktype3 = 5 -5976480 goalCount = 5 -5976480 goalTotal = 35 -5976481 otherCount = 47 -~~~ -5982820 UP 11 -5982820 1024 1024 -5983404 DOWN 11 -5983404 0 1024 -5983449 UP 11 -5983449 1024 1024 -5983553 DOWN 11 -5983553 0 1024 -5983643 UP 11 -5983643 1024 1024 -5984311 DOWN 11 -5984311 0 1024 -5984334 UP 11 -5984334 1024 1024 -5984358 DOWN 11 -5984358 0 1024 -5984404 UP 11 -5984404 1024 1024 -5984446 DOWN 11 -5984446 0 1024 -5984470 UP 11 -5984470 1024 1024 -5985787 DOWN 11 -5985787 0 1024 -5985812 UP 11 -5985812 1024 1024 -5987321 BEEP1 -5987321 BEEP2 -~~~ -~~~ -~~~ -5987346 1024 33555456 -~~~ -5987496 1024 1024 -5995025 DOWN 11 -5995025 0 1024 -~~~ -~~~ -5995044 0 0 -~~~ -~~~ -5995046 0 1 -~~~ -~~~ -5995048 0 3 -~~~ -~~~ -5995050 0 7 -~~~ -~~~ -5995052 0 15 -~~~ -~~~ -5995053 0 31 -~~~ -~~~ -5995055 0 63 -~~~ -~~~ -5995057 0 127 -~~~ -~~~ -5995059 0 255 -5995060 homeCount = 96 -5995060 waitCount = 47 -5995061 ripCount = 41 -5995061 locktype1 = 2 -5995062 locktype2 = 7 -5995062 locktype3 = 5 -5995083 goalCount = 5 -5995084 goalTotal = 35 -5995084 otherCount = 47 -~~~ -5995085 CURRENTGOAL IS [3] -~~~ -5995086 UP 11 -5995086 1024 255 -5995127 DOWN 11 -5995127 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5995166 homeCount = 96 -5995166 waitCount = 47 -5995167 ripCount = 41 -5995167 locktype1 = 2 -5995168 locktype2 = 7 -5995168 locktype3 = 5 -5995169 goalCount = 5 -5995169 goalTotal = 35 -5995170 otherCount = 47 -~~~ -5995171 CURRENTGOAL IS [3] -~~~ -5998831 UP 6 -5998831 32 255 -~~~ -~~~ -5999406 DOWN 6 -5999406 0 255 -~~~ -~~~ -5999430 0 254 -~~~ -~~~ -5999432 0 252 -~~~ -~~~ -5999434 0 248 -~~~ -~~~ -5999435 0 240 -~~~ -~~~ -5999437 0 224 -~~~ -~~~ -5999439 0 192 -~~~ -~~~ -5999441 0 128 -~~~ -~~~ -5999443 0 0 -~~~ -~~~ -5999445 0 512 -5999446 homeCount = 96 -5999446 waitCount = 47 -5999446 ripCount = 41 -5999447 locktype1 = 2 -5999447 locktype2 = 7 -5999469 locktype3 = 5 -5999469 goalCount = 5 -5999470 goalTotal = 35 -5999470 otherCount = 48 -~~~ -6003715 UP 10 -6003715 waslock = 0 -6003715 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6003747 512 16777728 -~~~ -6003897 512 512 -6003918 DOWN 10 -6003918 0 512 -~~~ -~~~ -6003946 0 1536 -~~~ -6003948 UP 10 -6003948 waslock = 0 -6003948 512 1536 -~~~ -6003950 homeCount = 97 -6003950 waitCount = 47 -6003951 ripCount = 41 -6003951 locktype1 = 2 -6003952 locktype2 = 7 -6003952 locktype3 = 5 -6003953 goalCount = 5 -6003953 goalTotal = 35 -6003974 otherCount = 48 -~~~ -6003975 DOWN 10 -6003975 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6003999 homeCount = 97 -6004000 waitCount = 47 -6004000 ripCount = 41 -6004001 locktype1 = 2 -6004001 locktype2 = 7 -6004002 locktype3 = 5 -6004002 goalCount = 5 -6004003 goalTotal = 35 -6004003 otherCount = 48 -~~~ -6004012 UP 10 -6004013 waslock = 0 -6004012 512 1024 -~~~ -6009857 DOWN 10 -6009857 0 1024 -~~~ -~~~ -~~~ -~~~ -6009879 homeCount = 97 -6009879 waitCount = 47 -6009880 ripCount = 41 -6009880 locktype1 = 2 -6009881 locktype2 = 7 -6009881 locktype3 = 5 -6009882 goalCount = 5 -6009882 goalTotal = 35 -6009883 otherCount = 48 -~~~ -6009933 UP 10 -6009934 waslock = 0 -6009933 512 1024 -6009944 DOWN 10 -6009944 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6009963 homeCount = 97 -6009964 waitCount = 47 -6009964 ripCount = 41 -6009965 locktype1 = 2 -6009965 locktype2 = 7 -6009966 locktype3 = 5 -6009966 goalCount = 5 -6009967 goalTotal = 35 -6009967 otherCount = 48 -~~~ -6012452 UP 11 -6012452 1024 1024 -6015272 DOWN 11 -6015272 0 1024 -6015283 UP 11 -6015283 1024 1024 -6015352 DOWN 11 -6015352 0 1024 -6015388 UP 11 -6015388 1024 1024 -6017952 BEEP1 -6017952 BEEP2 -~~~ -~~~ -~~~ -6017977 1024 33555456 -~~~ -6018127 1024 1024 -6023478 DOWN 11 -6023478 0 1024 -6023492 UP 11 -6023492 1024 1024 -~~~ -~~~ -6023498 1024 0 -~~~ -~~~ -6023499 1024 1 -~~~ -~~~ -6023501 1024 3 -~~~ -~~~ -6023503 1024 7 -~~~ -~~~ -6023505 1024 15 -~~~ -~~~ -6023507 1024 31 -~~~ -~~~ -6023509 1024 63 -~~~ -~~~ -6023510 1024 127 -~~~ -~~~ -6023512 1024 255 -6023513 homeCount = 97 -6023514 waitCount = 47 -6023514 ripCount = 42 -6023515 locktype1 = 2 -6023536 locktype2 = 7 -6023536 locktype3 = 5 -6023537 goalCount = 5 -6023537 goalTotal = 35 -6023538 otherCount = 48 -~~~ -6023539 CURRENTGOAL IS [3] -~~~ -6023606 DOWN 11 -6023606 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023634 UP 11 -6023634 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023643 homeCount = 97 -6023643 waitCount = 47 -6023644 ripCount = 42 -6023644 locktype1 = 2 -6023645 locktype2 = 7 -6023645 locktype3 = 5 -6023646 goalCount = 5 -6023646 goalTotal = 35 -6023647 otherCount = 48 -~~~ -6023648 CURRENTGOAL IS [3] -~~~ -6023702 DOWN 11 -6023702 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023742 homeCount = 97 -6023743 waitCount = 47 -6023743 ripCount = 42 -6023744 locktype1 = 2 -6023744 locktype2 = 7 -6023745 locktype3 = 5 -6023745 goalCount = 5 -6023746 goalTotal = 35 -6023746 otherCount = 48 -~~~ -6023747 CURRENTGOAL IS [3] -~~~ -6023800 UP 11 -6023800 1024 255 -6023848 DOWN 11 -6023848 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023883 UP 11 -6023883 1024 255 -6023884 homeCount = 97 -6023884 waitCount = 47 -6023885 ripCount = 42 -6023885 locktype1 = 2 -6023886 locktype2 = 7 -6023886 locktype3 = 5 -6023887 goalCount = 5 -6023887 goalTotal = 35 -6023888 otherCount = 48 -~~~ -6023889 CURRENTGOAL IS [3] -~~~ -6023989 DOWN 11 -6023989 0 255 -~~~ -~~~ -~~~ -~~~ -6024013 UP 11 -6024013 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6024026 homeCount = 97 -6024027 waitCount = 47 -6024027 ripCount = 42 -6024028 locktype1 = 2 -6024028 locktype2 = 7 -6024029 locktype3 = 5 -6024029 goalCount = 5 -6024030 goalTotal = 35 -6024030 otherCount = 48 -~~~ -6024031 CURRENTGOAL IS [3] -~~~ -6024163 DOWN 11 -6024163 0 255 -6024176 UP 11 -6024176 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6024197 homeCount = 97 -6024198 waitCount = 47 -6024198 ripCount = 42 -6024199 locktype1 = 2 -6024199 locktype2 = 7 -6024200 locktype3 = 5 -6024200 goalCount = 5 -6024201 goalTotal = 35 -6024201 otherCount = 48 -~~~ -6024202 CURRENTGOAL IS [3] -~~~ -6026519 DOWN 11 -6026519 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6026563 homeCount = 97 -6026563 waitCount = 47 -6026564 ripCount = 42 -6026564 locktype1 = 2 -6026565 locktype2 = 7 -6026565 locktype3 = 5 -6026566 goalCount = 5 -6026566 goalTotal = 35 -6026567 otherCount = 48 -~~~ -6026568 CURRENTGOAL IS [3] -~~~ -6032818 UP 8 -6032818 128 255 -~~~ -~~~ -6033239 DOWN 8 -6033239 0 255 -~~~ -~~~ -6033258 0 254 -~~~ -~~~ -6033259 0 252 -~~~ -~~~ -6033261 0 248 -~~~ -~~~ -6033263 0 240 -~~~ -~~~ -6033265 0 224 -~~~ -~~~ -6033267 0 192 -~~~ -~~~ -6033269 0 128 -~~~ -~~~ -6033270 0 0 -~~~ -~~~ -6033272 0 512 -6033273 homeCount = 97 -6033274 waitCount = 47 -6033274 ripCount = 42 -6033275 locktype1 = 2 -6033275 locktype2 = 7 -6033296 locktype3 = 5 -6033297 goalCount = 5 -6033297 goalTotal = 35 -6033298 otherCount = 49 -~~~ -6033317 128 512 -6033371 DOWN 8 -6033371 0 512 -6038368 UP 10 -6038368 waslock = 0 -6038368 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6038397 512 16777728 -~~~ -6038547 512 512 -6039272 DOWN 10 -6039272 0 512 -~~~ -~~~ -6039291 0 1536 -~~~ -~~~ -6039293 0 1024 -6039294 homeCount = 98 -6039294 waitCount = 47 -6039295 ripCount = 42 -6039295 locktype1 = 2 -6039296 locktype2 = 7 -6039296 locktype3 = 5 -6039297 goalCount = 5 -6039297 goalTotal = 35 -6039297 otherCount = 49 -~~~ -6039298 UP 10 -6039319 waslock = 0 -6039298 512 1024 -~~~ -6044381 DOWN 10 -6044381 0 1024 -~~~ -~~~ -~~~ -~~~ -6044402 homeCount = 98 -6044403 waitCount = 47 -6044403 ripCount = 42 -6044404 locktype1 = 2 -6044404 locktype2 = 7 -6044405 locktype3 = 5 -6044405 goalCount = 5 -6044406 goalTotal = 35 -6044406 otherCount = 49 -~~~ -6044424 UP 10 -6044424 waslock = 0 -6044424 512 1024 -~~~ -6044471 DOWN 10 -6044471 0 1024 -~~~ -~~~ -~~~ -~~~ -6044493 homeCount = 98 -6044493 waitCount = 47 -6044494 ripCount = 42 -6044494 locktype1 = 2 -6044495 locktype2 = 7 -6044495 locktype3 = 5 -6044496 goalCount = 5 -6044496 goalTotal = 35 -6044497 otherCount = 49 -~~~ -6046733 UP 11 -6046733 1024 1024 -6049202 DOWN 11 -6049202 0 1024 -6049248 UP 11 -6049248 1024 1024 -6050940 DOWN 11 -6050940 0 1024 -6050972 UP 11 -6050972 1024 1024 -6053734 BEEP1 -6053734 BEEP2 -~~~ -~~~ -~~~ -6053752 1024 33555456 -~~~ -6053902 1024 1024 -6059069 DOWN 11 -6059069 0 1024 -~~~ -~~~ -6059095 0 0 -~~~ -~~~ -6059097 0 1 -~~~ -6059098 UP 11 -6059098 1024 1 -~~~ -~~~ -6059100 1024 3 -~~~ -~~~ -6059102 1024 7 -~~~ -6059103 1024 15 -~~~ -~~~ -6059104 1024 31 -~~~ -~~~ -6059106 1024 63 -~~~ -~~~ -6059108 1024 127 -~~~ -~~~ -6059110 1024 255 -6059111 homeCount = 98 -6059111 waitCount = 47 -6059132 ripCount = 43 -6059133 locktype1 = 2 -6059133 locktype2 = 7 -6059134 locktype3 = 5 -6059134 goalCount = 5 -6059135 goalTotal = 35 -6059135 otherCount = 49 -~~~ -6059136 CURRENTGOAL IS [3] -~~~ -6059137 DOWN 11 -6059137 0 255 -6059158 UP 11 -6059158 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059192 DOWN 11 -6059192 0 255 -~~~ -6059193 homeCount = 98 -6059194 waitCount = 47 -6059194 ripCount = 43 -6059195 locktype1 = 2 -6059195 locktype2 = 7 -6059196 locktype3 = 5 -6059196 goalCount = 5 -6059197 goalTotal = 35 -6059197 otherCount = 49 -~~~ -6059198 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059242 homeCount = 98 -6059242 waitCount = 47 -6059243 ripCount = 43 -6059243 locktype1 = 2 -6059244 locktype2 = 7 -6059244 locktype3 = 5 -6059245 goalCount = 5 -6059245 goalTotal = 35 -6059246 otherCount = 49 -~~~ -6059247 CURRENTGOAL IS [3] -~~~ -6059274 UP 11 -6059274 1024 255 -6059335 DOWN 11 -6059335 0 255 -6059341 UP 11 -6059341 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059378 homeCount = 98 -6059378 waitCount = 47 -6059379 ripCount = 43 -6059379 locktype1 = 2 -6059380 locktype2 = 7 -6059380 locktype3 = 5 -6059381 goalCount = 5 -6059381 goalTotal = 35 -6059381 otherCount = 49 -~~~ -6059383 CURRENTGOAL IS [3] -~~~ -6061599 DOWN 11 -6061599 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6061639 homeCount = 98 -6061639 waitCount = 47 -6061640 ripCount = 43 -6061640 locktype1 = 2 -6061641 locktype2 = 7 -6061641 locktype3 = 5 -6061642 goalCount = 5 -6061642 goalTotal = 35 -6061643 otherCount = 49 -~~~ -6061644 CURRENTGOAL IS [3] -~~~ -6061677 UP 11 -6061677 1024 255 -6061721 DOWN 11 -6061721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6061756 homeCount = 98 -6061757 waitCount = 47 -6061757 ripCount = 43 -6061758 locktype1 = 2 -6061758 locktype2 = 7 -6061759 locktype3 = 5 -6061759 goalCount = 5 -6061760 goalTotal = 35 -6061760 otherCount = 49 -~~~ -6061761 CURRENTGOAL IS [3] -~~~ -6067760 UP 6 -6067760 32 255 -~~~ -~~~ -6068412 DOWN 6 -6068412 0 255 -~~~ -~~~ -6068434 0 254 -~~~ -~~~ -6068436 0 252 -~~~ -~~~ -6068438 0 248 -~~~ -~~~ -6068440 0 240 -~~~ -~~~ -6068442 0 224 -~~~ -~~~ -6068443 0 192 -~~~ -~~~ -6068445 0 128 -~~~ -~~~ -6068447 0 0 -~~~ -~~~ -6068449 0 512 -6068450 homeCount = 98 -6068450 waitCount = 47 -6068451 ripCount = 43 -6068451 locktype1 = 2 -6068452 locktype2 = 7 -6068473 locktype3 = 5 -6068474 goalCount = 5 -6068474 goalTotal = 35 -6068474 otherCount = 50 -~~~ -6068505 32 512 -6068699 DOWN 6 -6068699 0 512 -6072218 UP 10 -6072218 waslock = 0 -6072218 512 512 -6072233 DOWN 10 -6072233 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6072251 0 16777728 -~~~ -~~~ -~~~ -6072254 0 16778752 -~~~ -~~~ -6072256 0 16778240 -6072257 homeCount = 99 -6072257 waitCount = 47 -6072258 ripCount = 43 -6072258 locktype1 = 2 -6072258 locktype2 = 7 -6072259 locktype3 = 5 -6072259 goalCount = 5 -6072260 goalTotal = 35 -6072260 otherCount = 50 -~~~ -6072286 UP 10 -6072286 waslock = 0 -6072286 512 16778240 -~~~ -6072401 512 1024 -6072436 DOWN 10 -6072436 0 1024 -~~~ -~~~ -~~~ -~~~ -6072460 homeCount = 99 -6072460 waitCount = 47 -6072461 ripCount = 43 -6072461 locktype1 = 2 -6072462 locktype2 = 7 -6072462 locktype3 = 5 -6072463 goalCount = 5 -6072463 goalTotal = 35 -6072464 otherCount = 50 -~~~ -6072496 UP 10 -6072496 waslock = 0 -6072496 512 1024 -~~~ -6077367 DOWN 10 -6077367 0 1024 -~~~ -~~~ -~~~ -~~~ -6077388 homeCount = 99 -6077388 waitCount = 47 -6077389 ripCount = 43 -6077389 locktype1 = 2 -6077390 locktype2 = 7 -6077390 locktype3 = 5 -6077391 goalCount = 5 -6077391 goalTotal = 35 -6077392 otherCount = 50 -~~~ -6080272 UP 11 -6080272 1024 1024 -6081281 DOWN 11 -6081281 0 1024 -6081297 UP 11 -6081297 1024 1024 -6086272 BEEP1 -6086272 BEEP2 -~~~ -~~~ -~~~ -6086296 1024 33555456 -~~~ -6086446 1024 1024 -6092798 DOWN 11 -6092798 0 1024 -~~~ -~~~ -6092824 0 0 -~~~ -~~~ -6092826 0 1 -~~~ -~~~ -6092828 0 3 -~~~ -~~~ -6092830 0 7 -~~~ -6092831 UP 11 -6092831 1024 7 -~~~ -~~~ -6092833 1024 15 -~~~ -~~~ -6092835 1024 31 -~~~ -~~~ -6092837 1024 63 -~~~ -6092838 1024 127 -~~~ -~~~ -6092839 1024 255 -6092840 homeCount = 99 -6092841 waitCount = 47 -6092862 ripCount = 44 -6092862 locktype1 = 2 -6092863 locktype2 = 7 -6092863 locktype3 = 5 -6092864 goalCount = 5 -6092864 goalTotal = 35 -6092865 otherCount = 50 -~~~ -6092866 CURRENTGOAL IS [3] -~~~ -6095570 DOWN 11 -6095570 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6095610 homeCount = 99 -6095610 waitCount = 47 -6095611 ripCount = 44 -6095611 locktype1 = 2 -6095612 locktype2 = 7 -6095612 locktype3 = 5 -6095613 goalCount = 5 -6095613 goalTotal = 35 -6095614 otherCount = 50 -~~~ -6095615 CURRENTGOAL IS [3] -~~~ -6095619 UP 11 -6095619 1024 255 -6095697 DOWN 11 -6095697 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6095730 homeCount = 99 -6095730 waitCount = 47 -6095731 ripCount = 44 -6095731 locktype1 = 2 -6095732 locktype2 = 7 -6095732 locktype3 = 5 -6095733 goalCount = 5 -6095733 goalTotal = 35 -6095734 otherCount = 50 -~~~ -6095735 CURRENTGOAL IS [3] -~~~ -6100784 UP 4 -6100784 8 255 -~~~ -~~~ -6101758 DOWN 4 -6101758 0 255 -~~~ -~~~ -6101784 0 254 -~~~ -~~~ -6101785 0 252 -~~~ -~~~ -6101787 0 248 -~~~ -~~~ -6101789 0 240 -~~~ -~~~ -6101791 0 224 -~~~ -~~~ -6101793 0 192 -~~~ -~~~ -6101794 0 128 -~~~ -~~~ -6101796 0 0 -~~~ -~~~ -6101798 0 512 -6101799 homeCount = 99 -6101800 waitCount = 47 -6101800 ripCount = 44 -6101801 locktype1 = 2 -6101801 locktype2 = 7 -6101822 locktype3 = 5 -6101823 goalCount = 5 -6101823 goalTotal = 35 -6101824 otherCount = 51 -~~~ -6101824 8 512 -6101854 DOWN 4 -6101854 0 512 -6106062 UP 10 -6106062 waslock = 0 -6106062 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6106095 512 16777728 -~~~ -6106238 DOWN 10 -6106238 0 16777728 -6106245 0 512 -~~~ -~~~ -6106259 0 2560 -~~~ -~~~ -6106261 0 2048 -6106261 homeCount = 100 -6106262 waitCount = 47 -6106262 ripCount = 44 -6106263 locktype1 = 2 -6106263 locktype2 = 7 -6106264 locktype3 = 5 -6106264 goalCount = 5 -6106265 goalTotal = 35 -6106265 otherCount = 51 -~~~ -6106278 UP 10 -6106279 waslock = 0 -6106278 512 2048 -~~~ -6111719 DOWN 10 -6111719 0 2048 -~~~ -~~~ -~~~ -~~~ -6111739 homeCount = 100 -6111739 waitCount = 47 -6111740 ripCount = 44 -6111740 locktype1 = 2 -6111741 locktype2 = 7 -6111741 locktype3 = 5 -6111742 goalCount = 5 -6111742 goalTotal = 35 -6111743 otherCount = 51 -~~~ -6113476 UP 12 -6113476 2048 2048 -6115635 DOWN 12 -6115635 0 2048 -6115646 UP 12 -6115646 2048 2048 -6116424 DOWN 12 -6116424 0 2048 -6116461 UP 12 -6116461 2048 2048 -6119477 CLICK1 -6119477 CLICK2 -~~~ -~~~ -~~~ -6119497 2048 67110912 -~~~ -6119647 2048 2048 -6127039 DOWN 12 -6127039 0 2048 -~~~ -~~~ -6127056 0 0 -~~~ -~~~ -6127058 0 1 -~~~ -~~~ -6127059 0 3 -~~~ -~~~ -6127061 0 7 -~~~ -~~~ -6127063 0 15 -~~~ -~~~ -6127065 0 31 -~~~ -~~~ -6127067 0 63 -~~~ -~~~ -6127069 0 127 -~~~ -~~~ -6127070 UP 12 -6127070 2048 255 -6127072 homeCount = 100 -6127072 waitCount = 48 -6127073 ripCount = 44 -6127073 locktype1 = 2 -6127074 locktype2 = 7 -6127095 locktype3 = 5 -6127096 goalCount = 5 -6127096 goalTotal = 35 -6127097 otherCount = 51 -~~~ -6127098 CURRENTGOAL IS [3] -~~~ -6127133 DOWN 12 -6127133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6127167 homeCount = 100 -6127167 waitCount = 48 -6127168 ripCount = 44 -6127168 locktype1 = 2 -6127169 locktype2 = 7 -6127169 locktype3 = 5 -6127170 goalCount = 5 -6127170 goalTotal = 35 -6127170 otherCount = 51 -~~~ -6127172 CURRENTGOAL IS [3] -~~~ -6131072 UP 3 -6131072 4 255 -~~~ -~~~ -6131101 outer reward -~~~ -6131102 4 262399 -~~~ -~~~ -6131384 DOWN 3 -6131384 0 262399 -~~~ -~~~ -6131407 0 262398 -~~~ -~~~ -6131409 0 262396 -~~~ -~~~ -6131411 0 262392 -~~~ -~~~ -6131413 0 262384 -~~~ -~~~ -6131415 0 262368 -~~~ -~~~ -6131416 0 262336 -~~~ -6131418 4 262336 -~~~ -~~~ -6131419 4 262272 -~~~ -6131420 4 262144 -~~~ -~~~ -6131422 4 262656 -6131423 homeCount = 100 -6131424 waitCount = 48 -6131445 ripCount = 44 -6131445 locktype1 = 2 -6131446 locktype2 = 7 -6131446 locktype3 = 5 -6131446 goalCount = 6 -6131447 goalTotal = 36 -6131447 otherCount = 51 -~~~ -6131551 4 512 -6131811 DOWN 3 -6131811 0 512 -6131828 4 512 -6131927 DOWN 3 -6131927 0 512 -6131955 4 512 -6132052 DOWN 3 -6132052 0 512 -6132082 4 512 -6132182 DOWN 3 -6132182 0 512 -6132209 4 512 -6132313 DOWN 3 -6132313 0 512 -6132339 4 512 -6132450 DOWN 3 -6132450 0 512 -6132471 4 512 -6132587 DOWN 3 -6132587 0 512 -6132610 4 512 -6132731 DOWN 3 -6132731 0 512 -6132748 4 512 -6133033 DOWN 3 -6133033 0 512 -6133043 4 512 -6138943 DOWN 3 -6138943 0 512 -6138970 4 512 -6139046 DOWN 3 -6139046 0 512 -6139128 4 512 -6139165 DOWN 3 -6139165 0 512 -6143292 UP 10 -6143293 waslock = 0 -6143292 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6143325 512 16777728 -~~~ -6143475 512 512 -6147475 DOWN 10 -6147475 0 512 -~~~ -~~~ -6147499 0 1536 -~~~ -~~~ -6147501 0 1024 -6147502 homeCount = 101 -6147502 waitCount = 48 -6147503 ripCount = 44 -6147503 locktype1 = 2 -6147504 locktype2 = 7 -6147504 locktype3 = 5 -6147505 goalCount = 6 -6147505 goalTotal = 36 -6147506 otherCount = 51 -~~~ -6147549 UP 10 -6147549 waslock = 0 -6147549 512 1024 -~~~ -6147584 DOWN 10 -6147584 0 1024 -~~~ -~~~ -~~~ -~~~ -6147612 homeCount = 101 -6147613 waitCount = 48 -6147613 ripCount = 44 -6147614 locktype1 = 2 -6147614 locktype2 = 7 -6147615 locktype3 = 5 -6147615 goalCount = 6 -6147615 goalTotal = 36 -6147616 otherCount = 51 -~~~ -6149443 UP 11 -6149443 1024 1024 -6151946 DOWN 11 -6151946 0 1024 -6152022 UP 11 -6152022 1024 1024 -6152046 DOWN 11 -6152046 0 1024 -6152082 UP 11 -6152082 1024 1024 -6153249 DOWN 11 -6153249 0 1024 -6153276 UP 11 -6153276 1024 1024 -6157443 BEEP1 -6157443 BEEP2 -~~~ -~~~ -~~~ -6157469 1024 33555456 -~~~ -6157619 1024 1024 -6163143 DOWN 11 -6163142 0 1024 -6163159 UP 11 -6163159 1024 1024 -~~~ -~~~ -6163178 1024 0 -~~~ -~~~ -6163180 1024 1 -~~~ -~~~ -6163182 1024 3 -~~~ -~~~ -6163184 1024 7 -~~~ -~~~ -6163185 1024 15 -~~~ -~~~ -6163187 1024 31 -~~~ -~~~ -6163189 1024 63 -~~~ -~~~ -6163191 1024 127 -~~~ -~~~ -6163193 1024 255 -6163194 homeCount = 101 -6163194 waitCount = 48 -6163195 ripCount = 45 -6163195 locktype1 = 2 -6163216 locktype2 = 7 -6163216 locktype3 = 5 -6163217 goalCount = 6 -6163217 goalTotal = 36 -6163218 otherCount = 51 -~~~ -6163219 CURRENTGOAL IS [3] -~~~ -6163273 DOWN 11 -6163273 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -6163305 UP 11 -6163304 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6163317 homeCount = 101 -6163317 waitCount = 48 -6163318 ripCount = 45 -6163318 locktype1 = 2 -6163319 locktype2 = 7 -6163319 locktype3 = 5 -6163320 goalCount = 6 -6163320 goalTotal = 36 -6163321 otherCount = 51 -~~~ -6163322 CURRENTGOAL IS [3] -~~~ -6167538 DOWN 11 -6167538 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6167575 homeCount = 101 -6167576 waitCount = 48 -6167576 ripCount = 45 -6167577 locktype1 = 2 -6167577 locktype2 = 7 -6167578 locktype3 = 5 -6167578 goalCount = 6 -6167579 goalTotal = 36 -6167579 otherCount = 51 -~~~ -6167580 CURRENTGOAL IS [3] -~~~ -6167605 UP 11 -6167605 1024 255 -6167660 DOWN 11 -6167660 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6167698 homeCount = 101 -6167699 waitCount = 48 -6167700 ripCount = 45 -6167700 locktype1 = 2 -6167701 locktype2 = 7 -6167701 locktype3 = 5 -6167701 goalCount = 6 -6167702 goalTotal = 36 -6167702 otherCount = 51 -~~~ -6167704 CURRENTGOAL IS [3] -~~~ -6174471 UP 2 -6174471 2 255 -~~~ -~~~ -6174897 DOWN 2 -6174897 0 255 -~~~ -~~~ -6174923 0 254 -~~~ -~~~ -6174924 0 252 -~~~ -~~~ -6174926 0 248 -~~~ -~~~ -6174928 0 240 -~~~ -~~~ -6174930 0 224 -~~~ -~~~ -6174932 0 192 -~~~ -~~~ -6174934 0 128 -~~~ -~~~ -6174935 0 0 -~~~ -~~~ -6174937 0 512 -6174938 homeCount = 101 -6174939 waitCount = 48 -6174939 ripCount = 45 -6174940 locktype1 = 2 -6174940 locktype2 = 7 -6174961 locktype3 = 5 -6174962 goalCount = 6 -6174962 goalTotal = 36 -6174963 otherCount = 52 -~~~ -6178638 UP 10 -6178638 waslock = 0 -6178638 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6178661 512 16777728 -~~~ -6178781 DOWN 10 -6178781 0 16777728 -6178796 UP 10 -6178797 waslock = 0 -6178796 512 16777728 -6178811 512 512 -~~~ -~~~ -6178815 512 1536 -~~~ -~~~ -6178817 512 1024 -6178818 homeCount = 102 -6178818 waitCount = 48 -6178819 ripCount = 45 -6178819 locktype1 = 2 -6178820 locktype2 = 7 -6178820 locktype3 = 5 -6178821 goalCount = 6 -6178821 goalTotal = 36 -6178822 otherCount = 52 -~~~ -~~~ -6183138 DOWN 10 -6183138 0 1024 -~~~ -~~~ -~~~ -~~~ -6183158 homeCount = 102 -6183159 waitCount = 48 -6183159 ripCount = 45 -6183160 locktype1 = 2 -6183160 locktype2 = 7 -6183161 locktype3 = 5 -6183161 goalCount = 6 -6183161 goalTotal = 36 -6183162 otherCount = 52 -~~~ -6184941 UP 11 -6184941 1024 1024 -6186798 DOWN 11 -6186798 0 1024 -6186827 UP 11 -6186827 1024 1024 -6187258 DOWN 11 -6187258 0 1024 -6187286 UP 11 -6187286 1024 1024 -6188348 DOWN 11 -6188348 0 1024 -6188360 UP 11 -6188360 1024 1024 -6189441 BEEP1 -6189441 BEEP2 -~~~ -~~~ -~~~ -6189469 1024 33555456 -~~~ -6189619 1024 1024 -6190398 DOWN 11 -6190398 0 1024 -6190417 UP 11 -6190417 1024 1024 -~~~ -~~~ -6190424 1024 0 -~~~ -~~~ -6190426 1024 1 -~~~ -~~~ -6190428 1024 3 -~~~ -~~~ -6190429 1024 7 -~~~ -~~~ -6190431 1024 15 -~~~ -~~~ -6190433 1024 31 -~~~ -~~~ -6190435 1024 63 -~~~ -~~~ -6190437 1024 127 -~~~ -~~~ -6190438 1024 255 -6190439 homeCount = 102 -6190440 waitCount = 48 -6190441 ripCount = 46 -6190441 locktype1 = 2 -6190462 locktype2 = 7 -6190462 locktype3 = 5 -6190463 goalCount = 6 -6190463 goalTotal = 36 -6190464 otherCount = 52 -~~~ -6190465 CURRENTGOAL IS [3] -~~~ -6190523 DOWN 11 -6190523 0 255 -6190528 UP 11 -6190528 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190560 homeCount = 102 -6190561 waitCount = 48 -6190561 ripCount = 46 -6190562 locktype1 = 2 -6190562 locktype2 = 7 -6190563 locktype3 = 5 -6190563 goalCount = 6 -6190564 goalTotal = 36 -6190564 otherCount = 52 -~~~ -6190565 CURRENTGOAL IS [3] -~~~ -6190622 DOWN 11 -6190622 0 255 -~~~ -~~~ -~~~ -6190646 UP 11 -6190646 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190660 homeCount = 102 -6190660 waitCount = 48 -6190661 ripCount = 46 -6190661 locktype1 = 2 -6190662 locktype2 = 7 -6190662 locktype3 = 5 -6190663 goalCount = 6 -6190663 goalTotal = 36 -6190664 otherCount = 52 -~~~ -6190665 CURRENTGOAL IS [3] -~~~ -6190698 DOWN 11 -6190698 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190740 homeCount = 102 -6190741 waitCount = 48 -6190741 ripCount = 46 -6190742 locktype1 = 2 -6190742 locktype2 = 7 -6190743 locktype3 = 5 -6190743 goalCount = 6 -6190744 goalTotal = 36 -6190744 otherCount = 52 -~~~ -6190745 CURRENTGOAL IS [3] -~~~ -6190756 UP 11 -6190756 1024 255 -6190794 DOWN 11 -6190794 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190830 homeCount = 102 -6190830 waitCount = 48 -6190831 ripCount = 46 -6190831 locktype1 = 2 -6190832 locktype2 = 7 -6190832 locktype3 = 5 -6190833 goalCount = 6 -6190833 goalTotal = 36 -6190834 otherCount = 52 -~~~ -6190835 CURRENTGOAL IS [3] -~~~ -6190983 UP 11 -6190983 1024 255 -6191069 DOWN 11 -6191069 0 255 -6191089 UP 11 -6191089 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6191108 DOWN 11 -6191108 0 255 -~~~ -~~~ -6191110 homeCount = 102 -6191111 waitCount = 48 -6191111 ripCount = 46 -6191112 locktype1 = 2 -6191112 locktype2 = 7 -6191113 locktype3 = 5 -6191113 goalCount = 6 -6191114 goalTotal = 36 -6191114 otherCount = 52 -~~~ -6191115 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6191164 homeCount = 102 -6191165 waitCount = 48 -6191165 ripCount = 46 -6191166 locktype1 = 2 -6191166 locktype2 = 7 -6191167 locktype3 = 5 -6191167 goalCount = 6 -6191168 goalTotal = 36 -6191168 otherCount = 52 -~~~ -6191169 CURRENTGOAL IS [3] -~~~ -6191273 UP 11 -6191273 1024 255 -6198093 DOWN 11 -6198093 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6198130 homeCount = 102 -6198130 waitCount = 48 -6198131 ripCount = 46 -6198131 locktype1 = 2 -6198132 locktype2 = 7 -6198132 locktype3 = 5 -6198133 goalCount = 6 -6198133 goalTotal = 36 -6198134 otherCount = 52 -~~~ -6198135 CURRENTGOAL IS [3] -~~~ -6202523 UP 7 -6202523 64 255 -~~~ -~~~ -6203214 DOWN 7 -6203214 0 255 -~~~ -~~~ -6203234 0 254 -~~~ -~~~ -6203236 0 252 -~~~ -~~~ -6203237 0 248 -~~~ -~~~ -6203239 0 240 -~~~ -~~~ -6203241 0 224 -~~~ -~~~ -6203243 0 192 -~~~ -~~~ -6203245 0 128 -~~~ -~~~ -6203247 0 0 -~~~ -~~~ -6203248 0 512 -6203249 homeCount = 102 -6203250 waitCount = 48 -6203250 ripCount = 46 -6203251 locktype1 = 2 -6203251 locktype2 = 7 -6203273 locktype3 = 5 -6203273 goalCount = 6 -6203274 goalTotal = 36 -6203274 otherCount = 53 -~~~ -6207230 UP 10 -6207230 waslock = 0 -6207230 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6207261 512 16777728 -~~~ -6207411 512 512 -6207527 DOWN 10 -6207527 0 512 -~~~ -~~~ -6207550 0 2560 -~~~ -~~~ -6207551 0 2048 -6207552 homeCount = 103 -6207553 waitCount = 48 -6207553 ripCount = 46 -6207554 locktype1 = 2 -6207554 locktype2 = 7 -6207555 locktype3 = 5 -6207555 goalCount = 6 -6207556 goalTotal = 36 -6207556 otherCount = 53 -~~~ -6207598 UP 10 -6207598 waslock = 0 -6207598 512 2048 -~~~ -6212686 DOWN 10 -6212686 0 2048 -~~~ -~~~ -~~~ -~~~ -6212708 homeCount = 103 -6212709 waitCount = 48 -6212709 ripCount = 46 -6212710 locktype1 = 2 -6212710 locktype2 = 7 -6212711 locktype3 = 5 -6212711 goalCount = 6 -6212712 goalTotal = 36 -6212712 otherCount = 53 -~~~ -6212713 UP 10 -6212713 waslock = 0 -6212713 512 2048 -~~~ -6212776 DOWN 10 -6212775 0 2048 -~~~ -~~~ -~~~ -~~~ -6212795 homeCount = 103 -6212796 waitCount = 48 -6212796 ripCount = 46 -6212797 locktype1 = 2 -6212797 locktype2 = 7 -6212798 locktype3 = 5 -6212798 goalCount = 6 -6212799 goalTotal = 36 -6212799 otherCount = 53 -~~~ -6214555 UP 12 -6214555 2048 2048 -6217353 DOWN 12 -6217353 0 2048 -6217356 UP 12 -6217356 2048 2048 -6217399 DOWN 12 -6217398 0 2048 -6217438 UP 12 -6217438 2048 2048 -6217465 DOWN 12 -6217465 0 2048 -6217505 UP 12 -6217505 2048 2048 -6217817 DOWN 12 -6217817 0 2048 -6217832 UP 12 -6217831 2048 2048 -6219593 DOWN 12 -6219593 0 2048 -6219608 UP 12 -6219608 2048 2048 -6219625 DOWN 12 -6219625 0 2048 -6219676 UP 12 -6219676 2048 2048 -6219797 DOWN 12 -6219797 0 2048 -6219831 UP 12 -6219831 2048 2048 -6219937 DOWN 12 -6219937 0 2048 -6219953 UP 12 -6219953 2048 2048 -6221555 CLICK1 -6221555 CLICK2 -~~~ -~~~ -~~~ -6221572 2048 67110912 -~~~ -6221722 2048 2048 -6227526 DOWN 12 -6227526 0 2048 -~~~ -~~~ -6227551 0 0 -~~~ -6227552 UP 12 -6227552 2048 0 -~~~ -~~~ -6227554 2048 1 -~~~ -~~~ -6227556 2048 3 -~~~ -6227557 2048 7 -~~~ -~~~ -6227559 2048 15 -~~~ -~~~ -6227560 2048 31 -~~~ -~~~ -6227562 2048 63 -~~~ -~~~ -6227564 2048 127 -~~~ -~~~ -6227566 2048 255 -6227567 homeCount = 103 -6227588 waitCount = 49 -6227588 ripCount = 46 -6227589 locktype1 = 2 -6227589 locktype2 = 7 -6227590 locktype3 = 5 -6227590 goalCount = 6 -6227591 goalTotal = 36 -6227591 otherCount = 53 -~~~ -6227592 CURRENTGOAL IS [3] -~~~ -6227652 DOWN 12 -6227652 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227689 homeCount = 103 -6227689 waitCount = 49 -6227690 ripCount = 46 -6227690 locktype1 = 2 -6227691 locktype2 = 7 -6227691 locktype3 = 5 -6227692 goalCount = 6 -6227692 goalTotal = 36 -6227693 otherCount = 53 -~~~ -6227694 CURRENTGOAL IS [3] -~~~ -6227745 UP 12 -6227745 2048 255 -6227816 DOWN 12 -6227816 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227853 homeCount = 103 -6227853 waitCount = 49 -6227854 ripCount = 46 -6227854 locktype1 = 2 -6227855 locktype2 = 7 -6227855 locktype3 = 5 -6227856 goalCount = 6 -6227856 goalTotal = 36 -6227857 otherCount = 53 -~~~ -6227858 CURRENTGOAL IS [3] -~~~ -6227893 UP 12 -6227893 2048 255 -6227926 DOWN 12 -6227926 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227964 homeCount = 103 -6227965 waitCount = 49 -6227966 ripCount = 46 -6227966 locktype1 = 2 -6227967 locktype2 = 7 -6227967 locktype3 = 5 -6227967 goalCount = 6 -6227968 goalTotal = 36 -6227968 otherCount = 53 -~~~ -6227970 CURRENTGOAL IS [3] -~~~ -6231199 UP 3 -6231199 4 255 -~~~ -~~~ -6231224 outer reward -~~~ -6231224 4 262399 -~~~ -~~~ -6231461 DOWN 3 -6231461 0 262399 -~~~ -~~~ -6231481 0 262398 -~~~ -~~~ -6231483 0 262396 -~~~ -~~~ -6231484 0 262392 -~~~ -~~~ -6231486 0 262384 -~~~ -~~~ -6231488 0 262368 -~~~ -~~~ -6231490 0 262336 -~~~ -~~~ -6231492 0 262272 -~~~ -~~~ -6231493 0 262144 -~~~ -~~~ -6231495 0 262656 -6231496 homeCount = 103 -6231497 waitCount = 49 -6231497 ripCount = 46 -6231498 locktype1 = 2 -6231519 locktype2 = 7 -6231519 locktype3 = 5 -6231520 goalCount = 7 -6231520 goalTotal = 37 -6231521 otherCount = 53 -~~~ -6231521 4 262656 -6231674 4 512 -6232282 DOWN 3 -6232282 0 512 -6232288 4 512 -6232415 DOWN 3 -6232415 0 512 -6232423 4 512 -6232682 DOWN 3 -6232682 0 512 -6232691 4 512 -6232821 DOWN 3 -6232821 0 512 -6232830 4 512 -6239654 DOWN 3 -6239654 0 512 -6239693 4 512 -6239759 DOWN 3 -6239759 0 512 -6243665 UP 10 -6243665 waslock = 0 -6243665 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6243697 512 16777728 -~~~ -6243847 512 512 -6247688 DOWN 10 -6247688 0 512 -~~~ -~~~ -6247711 0 2560 -~~~ -~~~ -6247713 0 2048 -6247714 homeCount = 104 -6247714 waitCount = 49 -6247715 ripCount = 46 -6247715 locktype1 = 2 -6247716 locktype2 = 7 -6247716 locktype3 = 5 -6247717 goalCount = 7 -6247717 goalTotal = 37 -6247718 otherCount = 53 -~~~ -6247723 UP 10 -6247723 waslock = 0 -6247723 512 2048 -~~~ -6247911 DOWN 10 -6247911 0 2048 -6247926 UP 10 -6247926 waslock = 0 -6247926 512 2048 -~~~ -~~~ -~~~ -~~~ -6247936 homeCount = 104 -6247937 waitCount = 49 -6247937 ripCount = 46 -6247938 locktype1 = 2 -6247938 locktype2 = 7 -6247939 locktype3 = 5 -6247939 goalCount = 7 -6247940 goalTotal = 37 -6247940 otherCount = 53 -~~~ -6247944 DOWN 10 -6247944 0 2048 -~~~ -6247985 UP 10 -6247986 waslock = 0 -6247985 512 2048 -~~~ -~~~ -~~~ -~~~ -6247991 homeCount = 104 -6247992 waitCount = 49 -6247992 ripCount = 46 -6247993 locktype1 = 2 -6247993 locktype2 = 7 -6247994 locktype3 = 5 -6247994 goalCount = 7 -6247995 goalTotal = 37 -6247995 otherCount = 53 -~~~ -~~~ -6248478 DOWN 10 -6248478 0 2048 -~~~ -~~~ -~~~ -~~~ -6248498 homeCount = 104 -6248498 waitCount = 49 -6248499 ripCount = 46 -6248499 locktype1 = 2 -6248499 locktype2 = 7 -6248500 locktype3 = 5 -6248500 goalCount = 7 -6248501 goalTotal = 37 -6248501 otherCount = 53 -~~~ -6250170 UP 12 -6250170 2048 2048 -6253007 DOWN 12 -6253007 0 2048 -6253018 UP 12 -6253018 2048 2048 -6253170 CLICK1 -6253170 CLICK2 -~~~ -~~~ -~~~ -6253198 2048 67110912 -~~~ -6253274 DOWN 12 -6253274 0 67110912 -6253295 UP 12 -6253295 2048 67110912 -6253348 2048 2048 -~~~ -~~~ -6253374 2048 0 -~~~ -~~~ -6253376 2048 1 -~~~ -~~~ -6253378 2048 3 -~~~ -~~~ -6253380 2048 7 -~~~ -~~~ -6253382 2048 15 -~~~ -~~~ -6253384 2048 31 -~~~ -~~~ -6253385 2048 63 -~~~ -~~~ -6253387 2048 127 -~~~ -~~~ -6253389 2048 255 -6253390 homeCount = 104 -6253390 waitCount = 50 -6253391 ripCount = 46 -6253392 locktype1 = 2 -6253412 locktype2 = 7 -6253413 locktype3 = 5 -6253413 goalCount = 7 -6253414 goalTotal = 37 -6253414 otherCount = 53 -~~~ -6253415 CURRENTGOAL IS [3] -~~~ -6253465 DOWN 12 -6253465 0 255 -6253469 UP 12 -6253469 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6253503 homeCount = 104 -6253504 waitCount = 50 -6253504 ripCount = 46 -6253505 locktype1 = 2 -6253505 locktype2 = 7 -6253506 locktype3 = 5 -6253506 goalCount = 7 -6253507 goalTotal = 37 -6253507 otherCount = 53 -~~~ -6253508 CURRENTGOAL IS [3] -~~~ -6259155 DOWN 12 -6259155 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259190 UP 12 -6259190 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -6259195 homeCount = 104 -6259196 waitCount = 50 -6259196 ripCount = 46 -6259197 locktype1 = 2 -6259197 locktype2 = 7 -6259198 locktype3 = 5 -6259198 goalCount = 7 -6259199 goalTotal = 37 -6259199 otherCount = 53 -~~~ -6259200 CURRENTGOAL IS [3] -~~~ -6259288 DOWN 12 -6259288 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259323 homeCount = 104 -6259324 waitCount = 50 -6259324 ripCount = 46 -6259325 locktype1 = 2 -6259325 locktype2 = 7 -6259326 locktype3 = 5 -6259326 goalCount = 7 -6259326 goalTotal = 37 -6259327 otherCount = 53 -~~~ -6259328 CURRENTGOAL IS [3] -~~~ -6259354 UP 12 -6259354 2048 255 -6259423 DOWN 12 -6259423 0 255 -6259433 UP 12 -6259433 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259464 homeCount = 104 -6259464 waitCount = 50 -6259465 ripCount = 46 -6259465 locktype1 = 2 -6259466 locktype2 = 7 -6259466 locktype3 = 5 -6259467 goalCount = 7 -6259467 goalTotal = 37 -6259468 otherCount = 53 -~~~ -6259469 CURRENTGOAL IS [3] -~~~ -6259556 DOWN 12 -6259556 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259593 homeCount = 104 -6259593 waitCount = 50 -6259594 ripCount = 46 -6259594 locktype1 = 2 -6259595 locktype2 = 7 -6259595 locktype3 = 5 -6259596 goalCount = 7 -6259596 goalTotal = 37 -6259597 otherCount = 53 -~~~ -6259598 CURRENTGOAL IS [3] -~~~ -6259605 UP 12 -6259605 2048 255 -6262944 DOWN 12 -6262944 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6262983 homeCount = 104 -6262984 waitCount = 50 -6262984 ripCount = 46 -6262985 locktype1 = 2 -6262985 locktype2 = 7 -6262986 locktype3 = 5 -6262986 goalCount = 7 -6262987 goalTotal = 37 -6262987 otherCount = 53 -~~~ -6262988 CURRENTGOAL IS [3] -~~~ -6263015 UP 12 -6263015 2048 255 -6263063 DOWN 12 -6263063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6263105 homeCount = 104 -6263106 waitCount = 50 -6263106 ripCount = 46 -6263107 locktype1 = 2 -6263107 locktype2 = 7 -6263108 locktype3 = 5 -6263108 goalCount = 7 -6263109 goalTotal = 37 -6263109 otherCount = 53 -~~~ -6263110 CURRENTGOAL IS [3] -~~~ -6267639 UP 3 -6267639 4 255 -~~~ -~~~ -6267661 outer reward -~~~ -6267661 4 262399 -~~~ -~~~ -6267664 DOWN 3 -6267664 0 262399 -~~~ -~~~ -6267681 0 262398 -~~~ -~~~ -6267683 0 262396 -~~~ -~~~ -6267685 0 262392 -~~~ -~~~ -6267687 0 262384 -~~~ -~~~ -6267688 0 262368 -~~~ -~~~ -6267690 0 262336 -~~~ -~~~ -6267692 0 262272 -~~~ -~~~ -6267694 0 262144 -~~~ -~~~ -6267696 0 262656 -6267697 homeCount = 104 -6267697 waitCount = 50 -6267698 ripCount = 46 -6267719 locktype1 = 2 -6267719 locktype2 = 7 -6267720 locktype3 = 5 -6267720 goalCount = 8 -6267721 goalTotal = 38 -6267721 otherCount = 53 -~~~ -6267722 4 262656 -6267864 DOWN 3 -6267864 0 262656 -6267907 4 262656 -6268111 4 512 -6268292 DOWN 3 -6268292 0 512 -6268311 4 512 -6268414 DOWN 3 -6268414 0 512 -6268420 4 512 -6268533 DOWN 3 -6268533 0 512 -6268554 4 512 -6268660 DOWN 3 -6268660 0 512 -6268682 4 512 -6268788 DOWN 3 -6268788 0 512 -6268816 4 512 -6268915 DOWN 3 -6268915 0 512 -6268939 4 512 -6269056 DOWN 3 -6269056 0 512 -6269079 4 512 -6269201 DOWN 3 -6269201 0 512 -6269219 4 512 -6269342 DOWN 3 -6269342 0 512 -6269357 4 512 -6275261 DOWN 3 -6275261 0 512 -6275326 4 512 -6275364 DOWN 3 -6275364 0 512 -6279323 UP 10 -6279324 waslock = 0 -6279323 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6279349 512 16777728 -~~~ -6279499 512 512 -6279523 DOWN 10 -6279523 0 512 -~~~ -~~~ -6279540 0 2560 -~~~ -~~~ -6279542 0 2048 -6279543 homeCount = 105 -6279544 waitCount = 50 -6279544 ripCount = 46 -6279545 locktype1 = 2 -6279545 locktype2 = 7 -6279546 locktype3 = 5 -6279546 goalCount = 8 -6279547 goalTotal = 38 -6279547 otherCount = 53 -~~~ -6279555 UP 10 -6279556 waslock = 0 -6279555 512 2048 -~~~ -6284324 DOWN 10 -6284324 0 2048 -~~~ -~~~ -~~~ -~~~ -6284344 homeCount = 105 -6284345 waitCount = 50 -6284345 ripCount = 46 -6284346 locktype1 = 2 -6284346 locktype2 = 7 -6284346 locktype3 = 5 -6284347 goalCount = 8 -6284347 goalTotal = 38 -6284348 otherCount = 53 -~~~ -6286304 UP 12 -6286304 2048 2048 -6287753 DOWN 12 -6287753 0 2048 -6287762 UP 12 -6287762 2048 2048 -6288087 DOWN 12 -6288087 0 2048 -6288126 UP 12 -6288126 2048 2048 -6291804 CLICK1 -6291804 CLICK2 -~~~ -~~~ -~~~ -6291824 2048 67110912 -~~~ -6291974 2048 2048 -6292013 DOWN 12 -6292013 0 2048 -~~~ -6292031 UP 12 -6292031 2048 2048 -~~~ -~~~ -6292033 2048 0 -~~~ -~~~ -6292035 2048 1 -~~~ -6292036 2048 3 -~~~ -~~~ -6292037 2048 7 -~~~ -~~~ -6292039 2048 15 -~~~ -~~~ -6292041 2048 31 -~~~ -~~~ -6292043 2048 63 -~~~ -~~~ -6292044 2048 127 -~~~ -~~~ -6292046 2048 255 -6292047 homeCount = 105 -6292069 waitCount = 51 -6292069 ripCount = 46 -6292069 locktype1 = 2 -6292070 locktype2 = 7 -6292070 locktype3 = 5 -6292071 goalCount = 8 -6292071 goalTotal = 38 -6292072 otherCount = 53 -~~~ -6292073 CURRENTGOAL IS [3] -~~~ -6303041 DOWN 12 -6303041 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6303078 homeCount = 105 -6303078 waitCount = 51 -6303079 ripCount = 46 -6303079 locktype1 = 2 -6303080 locktype2 = 7 -6303080 locktype3 = 5 -6303081 goalCount = 8 -6303081 goalTotal = 38 -6303082 otherCount = 53 -~~~ -6303083 CURRENTGOAL IS [3] -~~~ -6315313 UP 3 -6315313 4 255 -~~~ -~~~ -6315334 outer reward -~~~ -6315334 4 262399 -~~~ -~~~ -6315575 DOWN 3 -6315575 0 262399 -~~~ -~~~ -6315601 0 262398 -~~~ -~~~ -6315603 0 262396 -~~~ -~~~ -6315605 0 262392 -~~~ -~~~ -6315607 0 262384 -~~~ -~~~ -6315609 0 262368 -~~~ -~~~ -6315610 0 262336 -~~~ -~~~ -6315612 0 262272 -~~~ -~~~ -6315614 0 262144 -~~~ -~~~ -6315616 0 262656 -6315617 homeCount = 105 -6315618 waitCount = 51 -6315618 ripCount = 46 -6315618 locktype1 = 2 -6315639 locktype2 = 7 -6315640 locktype3 = 5 -6315640 goalCount = 9 -6315641 goalTotal = 39 -6315641 otherCount = 53 -~~~ -6315642 4 262656 -6315784 4 512 -6316000 DOWN 3 -6316000 0 512 -6316026 4 512 -6316119 DOWN 3 -6316119 0 512 -6316154 4 512 -6316241 DOWN 3 -6316241 0 512 -6316280 4 512 -6316365 DOWN 3 -6316365 0 512 -6316407 4 512 -6316494 DOWN 3 -6316494 0 512 -6316535 4 512 -6316625 DOWN 3 -6316625 0 512 -6316661 4 512 -6316759 DOWN 3 -6316759 0 512 -6316793 4 512 -6316912 DOWN 3 -6316912 0 512 -6316933 4 512 -6317060 DOWN 3 -6317060 0 512 -6317083 4 512 -6317210 DOWN 3 -6317210 0 512 -6317225 4 512 -6317355 DOWN 3 -6317355 0 512 -6317371 4 512 -6320953 DOWN 3 -6320953 0 512 -6320959 4 512 -6323512 DOWN 3 -6323512 0 512 -6323580 4 512 -6323594 DOWN 3 -6323594 0 512 -6329005 UP 10 -6329005 waslock = 0 -6329005 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6329038 512 16777728 -~~~ -6329156 DOWN 10 -6329156 0 16777728 -~~~ -~~~ -6329185 0 16779776 -~~~ -~~~ -6329187 0 16779264 -6329188 homeCount = 106 -6329189 waitCount = 51 -6329189 ripCount = 46 -6329190 locktype1 = 2 -6329190 locktype2 = 7 -6329191 locktype3 = 5 -6329191 goalCount = 9 -6329192 goalTotal = 39 -6329192 otherCount = 53 -~~~ -6329213 UP 10 -6329214 waslock = 0 -6329213 512 2048 -~~~ -6333127 DOWN 10 -6333127 0 2048 -~~~ -~~~ -~~~ -~~~ -6333148 homeCount = 106 -6333149 waitCount = 51 -6333149 ripCount = 46 -6333150 locktype1 = 2 -6333150 locktype2 = 7 -6333151 locktype3 = 5 -6333151 goalCount = 9 -6333151 goalTotal = 39 -6333152 otherCount = 53 -~~~ -6334853 UP 12 -6334853 2048 2048 -6336358 DOWN 12 -6336358 0 2048 -6336394 UP 12 -6336394 2048 2048 -6336421 DOWN 12 -6336421 0 2048 -6336448 UP 12 -6336448 2048 2048 -6339836 DOWN 12 -6339836 0 2048 -6339849 UP 12 -6339849 2048 2048 -6340353 CLICK1 -6340353 CLICK2 -~~~ -~~~ -~~~ -6340372 2048 67110912 -~~~ -6340522 2048 2048 -6348413 DOWN 12 -6348413 0 2048 -~~~ -~~~ -6348439 0 0 -~~~ -~~~ -6348441 0 1 -~~~ -~~~ -6348442 0 3 -~~~ -~~~ -6348444 0 7 -~~~ -~~~ -6348446 0 15 -~~~ -~~~ -6348448 0 31 -~~~ -~~~ -6348450 0 63 -~~~ -~~~ -6348452 0 127 -~~~ -~~~ -6348453 0 255 -6348454 homeCount = 106 -6348455 waitCount = 52 -6348455 ripCount = 46 -6348456 locktype1 = 2 -6348456 locktype2 = 7 -6348478 locktype3 = 5 -6348478 goalCount = 9 -6348479 goalTotal = 39 -6348479 otherCount = 53 -~~~ -6348480 CURRENTGOAL IS [3] -~~~ -6348481 UP 12 -6348481 2048 255 -6348533 DOWN 12 -6348533 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6348567 homeCount = 106 -6348567 waitCount = 52 -6348568 ripCount = 46 -6348568 locktype1 = 2 -6348569 locktype2 = 7 -6348569 locktype3 = 5 -6348570 goalCount = 9 -6348570 goalTotal = 39 -6348571 otherCount = 53 -~~~ -6348572 CURRENTGOAL IS [3] -~~~ -6348593 UP 12 -6348593 2048 255 -6348632 DOWN 12 -6348631 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6348670 homeCount = 106 -6348671 waitCount = 52 -6348671 ripCount = 46 -6348672 locktype1 = 2 -6348672 locktype2 = 7 -6348673 locktype3 = 5 -6348673 goalCount = 9 -6348674 goalTotal = 39 -6348674 otherCount = 53 -~~~ -6348675 CURRENTGOAL IS [3] -~~~ -6348773 UP 12 -6348773 2048 255 -6349353 DOWN 12 -6349352 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6349389 homeCount = 106 -6349389 waitCount = 52 -6349390 ripCount = 46 -6349390 locktype1 = 2 -6349391 locktype2 = 7 -6349391 locktype3 = 5 -6349392 goalCount = 9 -6349392 goalTotal = 39 -6349393 otherCount = 53 -~~~ -6349394 CURRENTGOAL IS [3] -~~~ -6349471 UP 12 -6349471 2048 255 -6349488 DOWN 12 -6349488 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6349526 homeCount = 106 -6349527 waitCount = 52 -6349528 ripCount = 46 -6349528 locktype1 = 2 -6349529 locktype2 = 7 -6349529 locktype3 = 5 -6349529 goalCount = 9 -6349530 goalTotal = 39 -6349530 otherCount = 53 -~~~ -6349531 CURRENTGOAL IS [3] -~~~ -6352357 UP 3 -6352357 4 255 -6352373 DOWN 3 -6352373 0 255 -~~~ -~~~ -6352379 outer reward -~~~ -6352379 0 262399 -~~~ -~~~ -6352384 outerreps = 8 -~~~ -~~~ -~~~ -~~~ -6352397 0 262398 -~~~ -~~~ -6352399 0 262396 -~~~ -~~~ -6352401 0 262392 -~~~ -~~~ -6352403 0 262384 -~~~ -~~~ -6352404 0 262368 -~~~ -~~~ -6352406 0 262336 -~~~ -~~~ -6352408 0 262272 -~~~ -~~~ -6352410 0 262144 -~~~ -~~~ -6352412 0 262656 -6352413 homeCount = 106 -6352413 waitCount = 52 -6352414 ripCount = 46 -6352435 locktype1 = 2 -6352435 locktype2 = 7 -6352436 locktype3 = 5 -6352436 goalCount = 0 -6352437 goalTotal = 40 -6352437 otherCount = 53 -~~~ -6352438 4 262656 -6352613 DOWN 3 -6352613 0 262656 -6352654 4 262656 -6352829 4 512 -6353457 DOWN 3 -6353457 0 512 -6353469 4 512 -6353587 DOWN 3 -6353587 0 512 -6353600 4 512 -6353729 DOWN 3 -6353729 0 512 -6353735 4 512 -6353868 DOWN 3 -6353868 0 512 -6353873 4 512 -6360563 DOWN 3 -6360563 0 512 -6364715 UP 10 -6364715 waslock = 0 -6364715 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6364745 512 16777728 -~~~ -6364878 DOWN 10 -6364878 0 16777728 -6364892 UP 10 -6364892 waslock = 0 -6364891 512 16777728 -6364895 512 512 -~~~ -~~~ -6364910 512 2560 -~~~ -~~~ -6364912 512 2048 -6364913 homeCount = 107 -6364913 waitCount = 52 -6364914 ripCount = 46 -6364914 locktype1 = 2 -6364915 locktype2 = 7 -6364915 locktype3 = 5 -6364916 goalCount = 0 -6364916 goalTotal = 40 -6364917 otherCount = 53 -~~~ -~~~ -6367991 DOWN 10 -6367991 0 2048 -6368002 UP 10 -6368002 waslock = 0 -6368002 512 2048 -~~~ -~~~ -~~~ -~~~ -6368025 homeCount = 107 -6368026 waitCount = 52 -6368026 ripCount = 46 -6368027 locktype1 = 2 -6368027 locktype2 = 7 -6368028 locktype3 = 5 -6368028 goalCount = 0 -6368029 goalTotal = 40 -6368029 otherCount = 53 -~~~ -~~~ -6368090 DOWN 10 -6368090 0 2048 -~~~ -~~~ -~~~ -~~~ -6368115 homeCount = 107 -6368116 waitCount = 52 -6368116 ripCount = 46 -6368117 locktype1 = 2 -6368117 locktype2 = 7 -6368118 locktype3 = 5 -6368118 goalCount = 0 -6368119 goalTotal = 40 -6368119 otherCount = 53 -~~~ -6369955 UP 12 -6369955 2048 2048 -6370697 DOWN 12 -6370697 0 2048 -6370710 UP 12 -6370710 2048 2048 -6372380 DOWN 12 -6372380 0 2048 -6372417 UP 12 -6372417 2048 2048 -6372446 DOWN 12 -6372446 0 2048 -6372474 UP 12 -6372474 2048 2048 -6373955 CLICK1 -6373955 CLICK2 -~~~ -~~~ -~~~ -6373985 2048 67110912 -~~~ -6374135 2048 2048 -6381542 DOWN 12 -6381542 0 2048 -~~~ -~~~ -6381563 0 0 -~~~ -~~~ -6381564 0 1 -~~~ -~~~ -6381566 0 3 -~~~ -~~~ -6381568 0 7 -~~~ -~~~ -6381570 0 15 -~~~ -~~~ -6381572 0 31 -~~~ -~~~ -6381574 0 63 -~~~ -~~~ -6381575 0 127 -~~~ -~~~ -6381577 0 255 -6381578 homeCount = 107 -6381579 waitCount = 53 -6381579 ripCount = 46 -6381580 locktype1 = 2 -6381580 locktype2 = 7 -6381581 locktype3 = 5 -6381602 goalCount = 0 -6381602 goalTotal = 40 -6381603 otherCount = 53 -~~~ -6381604 CURRENTGOAL IS [7] -~~~ -6381604 UP 12 -6381604 2048 255 -6381673 DOWN 12 -6381673 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6381708 homeCount = 107 -6381709 waitCount = 53 -6381709 ripCount = 46 -6381710 locktype1 = 2 -6381710 locktype2 = 7 -6381711 locktype3 = 5 -6381711 goalCount = 0 -6381712 goalTotal = 40 -6381712 otherCount = 53 -~~~ -6381713 CURRENTGOAL IS [7] -~~~ -6381775 UP 12 -6381775 2048 255 -6383359 DOWN 12 -6383359 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6383398 homeCount = 107 -6383399 waitCount = 53 -6383399 ripCount = 46 -6383400 locktype1 = 2 -6383400 locktype2 = 7 -6383401 locktype3 = 5 -6383401 goalCount = 0 -6383402 goalTotal = 40 -6383402 otherCount = 53 -~~~ -6383403 CURRENTGOAL IS [7] -~~~ -6383439 UP 12 -6383439 2048 255 -6383453 DOWN 12 -6383453 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6383489 homeCount = 107 -6383490 waitCount = 53 -6383490 ripCount = 46 -6383491 locktype1 = 2 -6383491 locktype2 = 7 -6383492 locktype3 = 5 -6383492 goalCount = 0 -6383492 goalTotal = 40 -6383493 otherCount = 53 -~~~ -6383494 CURRENTGOAL IS [7] -~~~ -6386266 UP 3 -6386266 4 255 -~~~ -~~~ -6386457 DOWN 3 -6386457 0 255 -~~~ -~~~ -6386481 0 254 -~~~ -~~~ -6386483 0 252 -~~~ -~~~ -6386485 0 248 -~~~ -~~~ -6386486 0 240 -~~~ -~~~ -6386488 0 224 -~~~ -~~~ -6386490 0 192 -~~~ -~~~ -6386492 0 128 -~~~ -~~~ -6386494 0 0 -~~~ -~~~ -6386496 0 512 -6386497 homeCount = 107 -6386497 waitCount = 53 -6386498 ripCount = 46 -6386498 locktype1 = 2 -6386499 locktype2 = 7 -6386520 locktype3 = 5 -6386520 goalCount = 0 -6386521 goalTotal = 40 -6386521 otherCount = 54 -~~~ -6386522 4 512 -6387215 DOWN 3 -6387215 0 512 -6387280 4 512 -6387330 DOWN 3 -6387330 0 512 -6391562 UP 10 -6391563 waslock = 0 -6391562 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6391588 512 16777728 -~~~ -6391612 DOWN 10 -6391612 0 16777728 -~~~ -~~~ -6391632 0 16779776 -~~~ -~~~ -6391634 0 16779264 -6391635 homeCount = 108 -6391635 waitCount = 53 -6391636 ripCount = 46 -6391636 locktype1 = 2 -6391637 locktype2 = 7 -6391637 locktype3 = 5 -6391638 goalCount = 0 -6391638 goalTotal = 40 -6391639 otherCount = 54 -~~~ -6391738 0 2048 -6391756 UP 10 -6391757 waslock = 0 -6391756 512 2048 -~~~ -6396193 DOWN 10 -6396193 0 2048 -~~~ -~~~ -6396213 UP 10 -6396213 waslock = 0 -6396213 512 2048 -~~~ -~~~ -6396215 homeCount = 108 -6396216 waitCount = 53 -6396216 ripCount = 46 -6396217 locktype1 = 2 -6396217 locktype2 = 7 -6396218 locktype3 = 5 -6396218 goalCount = 0 -6396219 goalTotal = 40 -6396219 otherCount = 54 -~~~ -~~~ -6396293 DOWN 10 -6396293 0 2048 -~~~ -~~~ -~~~ -~~~ -6396321 homeCount = 108 -6396321 waitCount = 53 -6396322 ripCount = 46 -6396322 locktype1 = 2 -6396323 locktype2 = 7 -6396323 locktype3 = 5 -6396324 goalCount = 0 -6396324 goalTotal = 40 -6396325 otherCount = 54 -~~~ -6398084 UP 12 -6398084 2048 2048 -6400258 DOWN 12 -6400258 0 2048 -6400290 UP 12 -6400289 2048 2048 -6400802 DOWN 12 -6400802 0 2048 -6400821 UP 12 -6400821 2048 2048 -6403585 CLICK1 -6403585 CLICK2 -~~~ -~~~ -~~~ -6403609 2048 67110912 -~~~ -6403759 2048 2048 -6410651 DOWN 12 -6410651 0 2048 -~~~ -~~~ -6410669 0 0 -~~~ -~~~ -6410670 0 1 -~~~ -~~~ -6410672 0 3 -~~~ -~~~ -6410674 0 7 -~~~ -~~~ -6410676 0 15 -~~~ -~~~ -6410678 0 31 -~~~ -~~~ -6410680 0 63 -~~~ -~~~ -6410681 0 127 -~~~ -~~~ -6410683 0 255 -6410684 homeCount = 108 -6410685 waitCount = 54 -6410685 ripCount = 46 -6410686 locktype1 = 2 -6410686 locktype2 = 7 -6410707 locktype3 = 5 -6410708 goalCount = 0 -6410708 goalTotal = 40 -6410709 otherCount = 54 -~~~ -6410710 CURRENTGOAL IS [7] -~~~ -6410710 UP 12 -6410710 2048 255 -6410790 DOWN 12 -6410790 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6410827 homeCount = 108 -6410827 waitCount = 54 -6410828 ripCount = 46 -6410828 locktype1 = 2 -6410829 locktype2 = 7 -6410829 locktype3 = 5 -6410830 goalCount = 0 -6410830 goalTotal = 40 -6410831 otherCount = 54 -~~~ -6410832 CURRENTGOAL IS [7] -~~~ -6410869 UP 12 -6410869 2048 255 -6410882 DOWN 12 -6410882 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6410918 homeCount = 108 -6410919 waitCount = 54 -6410919 ripCount = 46 -6410920 locktype1 = 2 -6410920 locktype2 = 7 -6410921 locktype3 = 5 -6410921 goalCount = 0 -6410922 goalTotal = 40 -6410922 otherCount = 54 -~~~ -6410923 CURRENTGOAL IS [7] -~~~ -6411007 UP 12 -6411007 2048 255 -6412314 DOWN 12 -6412314 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412351 UP 12 -6412351 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412357 homeCount = 108 -6412358 waitCount = 54 -6412358 ripCount = 46 -6412359 locktype1 = 2 -6412359 locktype2 = 7 -6412360 locktype3 = 5 -6412360 goalCount = 0 -6412361 goalTotal = 40 -6412361 otherCount = 54 -~~~ -6412362 CURRENTGOAL IS [7] -~~~ -6412418 DOWN 12 -6412418 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412457 homeCount = 108 -6412458 waitCount = 54 -6412458 ripCount = 46 -6412459 locktype1 = 2 -6412459 locktype2 = 7 -6412460 locktype3 = 5 -6412460 goalCount = 0 -6412461 goalTotal = 40 -6412461 otherCount = 54 -~~~ -6412462 CURRENTGOAL IS [7] -~~~ -6416338 UP 3 -6416338 4 255 -~~~ -~~~ -6417568 DOWN 3 -6417568 0 255 -~~~ -~~~ -6417592 0 254 -~~~ -~~~ -6417594 0 252 -~~~ -~~~ -6417596 0 248 -~~~ -~~~ -6417597 0 240 -~~~ -~~~ -6417599 0 224 -~~~ -~~~ -6417601 0 192 -~~~ -~~~ -6417603 0 128 -~~~ -~~~ -6417605 0 0 -~~~ -~~~ -6417607 0 512 -6417608 homeCount = 108 -6417608 waitCount = 54 -6417609 ripCount = 46 -6417609 locktype1 = 2 -6417610 locktype2 = 7 -6417631 locktype3 = 5 -6417631 goalCount = 0 -6417632 goalTotal = 40 -6417632 otherCount = 55 -~~~ -6417933 4 512 -6418142 DOWN 3 -6418142 0 512 -6421661 UP 10 -6421661 waslock = 0 -6421661 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6421689 512 16777728 -~~~ -6421839 512 512 -6425407 DOWN 10 -6425407 0 512 -~~~ -~~~ -6425434 0 2560 -~~~ -~~~ -6425436 0 2048 -6425437 homeCount = 109 -6425437 waitCount = 54 -6425438 ripCount = 46 -6425438 locktype1 = 2 -6425439 locktype2 = 7 -6425439 locktype3 = 5 -6425440 goalCount = 0 -6425440 goalTotal = 40 -6425441 otherCount = 55 -~~~ -6425446 UP 10 -6425446 waslock = 0 -6425446 512 2048 -~~~ -6425482 DOWN 10 -6425482 0 2048 -~~~ -~~~ -~~~ -~~~ -6425507 homeCount = 109 -6425508 waitCount = 54 -6425508 ripCount = 46 -6425509 locktype1 = 2 -6425509 locktype2 = 7 -6425510 locktype3 = 5 -6425510 goalCount = 0 -6425511 goalTotal = 40 -6425511 otherCount = 55 -~~~ -6427001 UP 12 -6427001 2048 2048 -6428272 DOWN 12 -6428272 0 2048 -6428389 UP 12 -6428389 2048 2048 -6429840 DOWN 12 -6429840 0 2048 -6429852 UP 12 -6429852 2048 2048 -6429884 DOWN 12 -6429884 0 2048 -6429912 UP 12 -6429912 2048 2048 -6430001 CLICK1 -6430001 CLICK2 -~~~ -~~~ -~~~ -6430025 2048 67110912 -~~~ -6430175 2048 2048 -6437146 DOWN 12 -6437145 0 2048 -~~~ -~~~ -6437173 0 0 -~~~ -~~~ -6437175 0 1 -~~~ -~~~ -6437176 0 3 -~~~ -~~~ -6437178 0 7 -~~~ -~~~ -6437180 0 15 -~~~ -~~~ -6437182 0 31 -~~~ -~~~ -6437184 0 63 -~~~ -~~~ -6437186 0 127 -~~~ -~~~ -6437187 0 255 -6437188 homeCount = 109 -6437189 waitCount = 55 -6437189 ripCount = 46 -6437190 locktype1 = 2 -6437190 locktype2 = 7 -6437191 locktype3 = 5 -6437212 goalCount = 0 -6437212 goalTotal = 40 -6437213 otherCount = 55 -~~~ -6437214 CURRENTGOAL IS [7] -~~~ -6448275 UP 1 -6448275 1 255 -~~~ -~~~ -6449347 DOWN 1 -6449347 0 255 -~~~ -~~~ -6449367 0 254 -~~~ -~~~ -6449369 0 252 -~~~ -~~~ -6449371 0 248 -~~~ -~~~ -6449373 0 240 -~~~ -~~~ -6449375 0 224 -~~~ -~~~ -6449376 0 192 -~~~ -~~~ -6449378 0 128 -~~~ -~~~ -6449380 0 0 -~~~ -~~~ -6449382 0 512 -6449383 homeCount = 109 -6449384 waitCount = 55 -6449384 ripCount = 46 -6449384 locktype1 = 2 -6449385 locktype2 = 7 -6449405 locktype3 = 5 -6449406 goalCount = 0 -6449406 goalTotal = 40 -6449407 otherCount = 56 -~~~ -6457553 UP 10 -6457553 waslock = 0 -6457553 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6457583 512 16777728 -~~~ -6457733 512 512 -6457762 DOWN 10 -6457762 0 512 -6457777 UP 10 -6457778 waslock = 0 -6457777 512 512 -~~~ -~~~ -6457799 512 2560 -~~~ -~~~ -6457801 512 2048 -6457802 homeCount = 110 -6457802 waitCount = 55 -6457803 ripCount = 46 -6457803 locktype1 = 2 -6457804 locktype2 = 7 -6457804 locktype3 = 5 -6457805 goalCount = 0 -6457805 goalTotal = 40 -6457806 otherCount = 56 -~~~ -~~~ -6463809 DOWN 10 -6463809 0 2048 -~~~ -~~~ -~~~ -~~~ -6463830 homeCount = 110 -6463831 waitCount = 55 -6463831 ripCount = 46 -6463832 locktype1 = 2 -6463832 locktype2 = 7 -6463833 locktype3 = 5 -6463833 goalCount = 0 -6463833 goalTotal = 40 -6463834 otherCount = 56 -~~~ -6463835 UP 10 -6463835 waslock = 0 -6463835 512 2048 -~~~ -6463903 DOWN 10 -6463903 0 2048 -~~~ -~~~ -~~~ -~~~ -6463930 homeCount = 110 -6463930 waitCount = 55 -6463931 ripCount = 46 -6463931 locktype1 = 2 -6463932 locktype2 = 7 -6463932 locktype3 = 5 -6463933 goalCount = 0 -6463933 goalTotal = 40 -6463934 otherCount = 56 -~~~ -6465881 UP 12 -6465881 2048 2048 -6467657 DOWN 12 -6467657 0 2048 -6467693 UP 12 -6467693 2048 2048 -6468741 DOWN 12 -6468741 0 2048 -6468762 UP 12 -6468762 2048 2048 -6468914 DOWN 12 -6468914 0 2048 -6468932 UP 12 -6468932 2048 2048 -6472795 DOWN 12 -6472795 0 2048 -6472832 UP 12 -6472832 2048 2048 -6472881 CLICK1 -6472881 CLICK2 -~~~ -~~~ -~~~ -6472910 2048 67110912 -~~~ -6473060 2048 2048 -6479548 DOWN 12 -6479548 0 2048 -~~~ -~~~ -6479568 0 0 -~~~ -~~~ -6479570 0 1 -~~~ -~~~ -6479572 0 3 -~~~ -~~~ -6479573 0 7 -~~~ -~~~ -6479575 0 15 -~~~ -~~~ -6479577 0 31 -~~~ -~~~ -6479579 0 63 -~~~ -~~~ -6479581 0 127 -~~~ -~~~ -6479583 0 255 -6479584 homeCount = 110 -6479584 waitCount = 56 -6479585 ripCount = 46 -6479585 locktype1 = 2 -6479586 locktype2 = 7 -6479586 locktype3 = 5 -6479607 goalCount = 0 -6479608 goalTotal = 40 -6479608 otherCount = 56 -~~~ -6479609 CURRENTGOAL IS [7] -~~~ -6479609 UP 12 -6479609 2048 255 -6479644 DOWN 12 -6479644 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6479684 homeCount = 110 -6479685 waitCount = 56 -6479685 ripCount = 46 -6479686 locktype1 = 2 -6479686 locktype2 = 7 -6479686 locktype3 = 5 -6479687 goalCount = 0 -6479687 goalTotal = 40 -6479688 otherCount = 56 -~~~ -6479689 CURRENTGOAL IS [7] -~~~ -6485355 UP 8 -6485355 128 255 -~~~ -~~~ -6486346 DOWN 8 -6486346 0 255 -~~~ -~~~ -6486369 0 254 -~~~ -~~~ -6486371 0 252 -~~~ -~~~ -6486372 0 248 -~~~ -~~~ -6486374 0 240 -~~~ -~~~ -6486376 0 224 -~~~ -~~~ -6486378 0 192 -~~~ -~~~ -6486380 0 128 -~~~ -~~~ -6486381 0 0 -~~~ -~~~ -6486383 0 512 -6486384 homeCount = 110 -6486385 waitCount = 56 -6486385 ripCount = 46 -6486386 locktype1 = 2 -6486386 locktype2 = 7 -6486407 locktype3 = 5 -6486408 goalCount = 0 -6486408 goalTotal = 40 -6486409 otherCount = 57 -~~~ -6491312 UP 10 -6491312 waslock = 0 -6491312 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6491343 512 16777728 -~~~ -6491493 512 512 -6497957 DOWN 10 -6497957 0 512 -~~~ -~~~ -6497977 0 1536 -~~~ -~~~ -6497979 0 1024 -6497980 homeCount = 111 -6497981 waitCount = 56 -6497981 ripCount = 46 -6497982 locktype1 = 2 -6497982 locktype2 = 7 -6497983 locktype3 = 5 -6497983 goalCount = 0 -6497984 goalTotal = 40 -6497984 otherCount = 57 -~~~ -6500268 UP 11 -6500268 1024 1024 -6501862 DOWN 11 -6501862 0 1024 -6501896 UP 11 -6501896 1024 1024 -6502555 DOWN 11 -6502555 0 1024 -6502573 UP 11 -6502573 1024 1024 -6502784 DOWN 11 -6502784 0 1024 -6502832 UP 11 -6502832 1024 1024 -6502852 DOWN 11 -6502852 0 1024 -6502873 UP 11 -6502873 1024 1024 -6502971 DOWN 11 -6502971 0 1024 -6502994 UP 11 -6502994 1024 1024 -6503021 DOWN 11 -6503021 0 1024 -6503040 UP 11 -6503040 1024 1024 -6503112 DOWN 11 -6503112 0 1024 -6503129 UP 11 -6503129 1024 1024 -6503268 BEEP1 -6503268 BEEP2 -~~~ -~~~ -~~~ -6503292 1024 33555456 -~~~ -6503442 1024 1024 -6503531 DOWN 11 -6503531 0 1024 -6503557 UP 11 -6503557 1024 1024 -~~~ -~~~ -6503943 1024 0 -~~~ -~~~ -6503945 1024 1 -~~~ -~~~ -6503947 1024 3 -~~~ -~~~ -6503949 1024 7 -~~~ -~~~ -6503950 1024 15 -~~~ -~~~ -6503952 1024 31 -~~~ -~~~ -6503954 1024 63 -~~~ -~~~ -6503956 1024 127 -~~~ -~~~ -6503958 1024 255 -6503959 homeCount = 111 -6503959 waitCount = 56 -6503960 ripCount = 47 -6503960 locktype1 = 2 -6503981 locktype2 = 7 -6503981 locktype3 = 5 -6503982 goalCount = 0 -6503982 goalTotal = 40 -6503983 otherCount = 57 -~~~ -6503984 CURRENTGOAL IS [7] -~~~ -6508798 DOWN 11 -6508798 0 255 -6508816 UP 11 -6508816 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6508838 homeCount = 111 -6508839 waitCount = 56 -6508839 ripCount = 47 -6508840 locktype1 = 2 -6508840 locktype2 = 7 -6508841 locktype3 = 5 -6508841 goalCount = 0 -6508842 goalTotal = 40 -6508842 otherCount = 57 -~~~ -6508843 CURRENTGOAL IS [7] -~~~ -6508920 DOWN 11 -6508920 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6508959 homeCount = 111 -6508959 waitCount = 56 -6508960 ripCount = 47 -6508960 locktype1 = 2 -6508961 locktype2 = 7 -6508961 locktype3 = 5 -6508962 goalCount = 0 -6508962 goalTotal = 40 -6508963 otherCount = 57 -~~~ -6508964 CURRENTGOAL IS [7] -~~~ -6508969 UP 11 -6508969 1024 255 -6511527 DOWN 11 -6511527 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6511571 homeCount = 111 -6511571 waitCount = 56 -6511572 ripCount = 47 -6511572 locktype1 = 2 -6511573 locktype2 = 7 -6511573 locktype3 = 5 -6511574 goalCount = 0 -6511574 goalTotal = 40 -6511574 otherCount = 57 -~~~ -6511576 CURRENTGOAL IS [7] -~~~ -6511576 UP 11 -6511576 1024 255 -6511638 DOWN 11 -6511638 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6511680 homeCount = 111 -6511680 waitCount = 56 -6511681 ripCount = 47 -6511681 locktype1 = 2 -6511682 locktype2 = 7 -6511682 locktype3 = 5 -6511683 goalCount = 0 -6511683 goalTotal = 40 -6511684 otherCount = 57 -~~~ -6511685 CURRENTGOAL IS [7] -~~~ -6512177 UP 11 -6512177 1024 255 -6513881 DOWN 11 -6513881 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6513921 homeCount = 111 -6513921 waitCount = 56 -6513922 ripCount = 47 -6513922 locktype1 = 2 -6513923 locktype2 = 7 -6513923 locktype3 = 5 -6513924 goalCount = 0 -6513924 goalTotal = 40 -6513925 otherCount = 57 -~~~ -6513926 CURRENTGOAL IS [7] -~~~ -6518545 UP 5 -6518545 16 255 -~~~ -~~~ -6518724 DOWN 5 -6518723 0 255 -~~~ -~~~ -6518744 0 254 -~~~ -~~~ -6518745 0 252 -~~~ -~~~ -6518747 0 248 -~~~ -~~~ -6518749 0 240 -~~~ -~~~ -6518751 0 224 -~~~ -~~~ -6518753 0 192 -~~~ -~~~ -6518754 0 128 -~~~ -~~~ -6518756 0 0 -~~~ -~~~ -6518758 0 512 -6518759 homeCount = 111 -6518760 waitCount = 56 -6518760 ripCount = 47 -6518761 locktype1 = 2 -6518761 locktype2 = 7 -6518782 locktype3 = 5 -6518783 goalCount = 0 -6518783 goalTotal = 40 -6518784 otherCount = 58 -~~~ -6518788 16 512 -6519650 DOWN 5 -6519650 0 512 -6524649 UP 10 -6524649 waslock = 0 -6524649 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6524681 512 16777728 -~~~ -6524831 512 512 -6529752 DOWN 10 -6529752 0 512 -~~~ -~~~ -6529776 0 2560 -~~~ -~~~ -6529778 0 2048 -6529779 homeCount = 112 -6529779 waitCount = 56 -6529780 ripCount = 47 -6529780 locktype1 = 2 -6529781 locktype2 = 7 -6529781 locktype3 = 5 -6529782 goalCount = 0 -6529782 goalTotal = 40 -6529783 otherCount = 58 -~~~ -6530785 UP 10 -6530786 waslock = 0 -6530785 512 2048 -~~~ -6531302 DOWN 10 -6531302 0 2048 -~~~ -~~~ -~~~ -~~~ -6531328 homeCount = 112 -6531329 waitCount = 56 -6531329 ripCount = 47 -6531330 locktype1 = 2 -6531330 locktype2 = 7 -6531331 locktype3 = 5 -6531331 goalCount = 0 -6531332 goalTotal = 40 -6531332 otherCount = 58 -~~~ -6533320 UP 12 -6533320 2048 2048 -6536249 DOWN 12 -6536249 0 2048 -6536449 LOCKOUT 3 -~~~ -6536465 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6536471 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6536576 UP 12 -6536576 2048 0 -6536890 DOWN 12 -6536890 0 0 -6561465 LOCKEND -~~~ -~~~ -~~~ -6561485 0 512 -6569294 UP 10 -6569295 waslock = 0 -6569294 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6569321 512 16777728 -~~~ -6569368 DOWN 10 -6569368 0 16777728 -6569397 UP 10 -6569397 waslock = 0 -6569397 512 16777728 -~~~ -~~~ -6569400 512 16778752 -~~~ -~~~ -6569402 512 16778240 -6569403 homeCount = 113 -6569404 waitCount = 56 -6569404 ripCount = 47 -6569405 locktype1 = 2 -6569405 locktype2 = 7 -6569405 locktype3 = 6 -6569406 goalCount = 0 -6569406 goalTotal = 40 -6569428 otherCount = 58 -~~~ -~~~ -6569470 512 1024 -6569498 DOWN 10 -6569498 0 1024 -~~~ -~~~ -~~~ -6569518 UP 10 -6569518 waslock = 0 -6569518 512 1024 -~~~ -6569520 homeCount = 113 -6569520 waitCount = 56 -6569521 ripCount = 47 -6569521 locktype1 = 2 -6569522 locktype2 = 7 -6569522 locktype3 = 6 -6569523 goalCount = 0 -6569523 goalTotal = 40 -6569524 otherCount = 58 -~~~ -~~~ -6569573 DOWN 10 -6569573 0 1024 -~~~ -~~~ -~~~ -~~~ -6569600 homeCount = 113 -6569601 waitCount = 56 -6569601 ripCount = 47 -6569602 locktype1 = 2 -6569602 locktype2 = 7 -6569603 locktype3 = 6 -6569603 goalCount = 0 -6569604 goalTotal = 40 -6569604 otherCount = 58 -~~~ -6569619 UP 10 -6569620 waslock = 0 -6569619 512 1024 -~~~ -6569711 DOWN 10 -6569711 0 1024 -~~~ -~~~ -~~~ -~~~ -6569740 homeCount = 113 -6569741 waitCount = 56 -6569741 ripCount = 47 -6569742 locktype1 = 2 -6569742 locktype2 = 7 -6569742 locktype3 = 6 -6569743 goalCount = 0 -6569743 goalTotal = 40 -6569744 otherCount = 58 -~~~ -6569744 UP 10 -6569745 waslock = 0 -6569744 512 1024 -~~~ -6570069 DOWN 10 -6570069 0 1024 -~~~ -~~~ -~~~ -~~~ -6570090 homeCount = 113 -6570090 waitCount = 56 -6570091 ripCount = 47 -6570091 locktype1 = 2 -6570092 locktype2 = 7 -6570092 locktype3 = 6 -6570093 goalCount = 0 -6570093 goalTotal = 40 -6570094 otherCount = 58 -~~~ -6570155 UP 10 -6570155 waslock = 0 -6570155 512 1024 -~~~ -6570216 DOWN 10 -6570216 0 1024 -~~~ -~~~ -~~~ -~~~ -6570241 homeCount = 113 -6570242 waitCount = 56 -6570242 ripCount = 47 -6570243 locktype1 = 2 -6570243 locktype2 = 7 -6570244 locktype3 = 6 -6570244 goalCount = 0 -6570245 goalTotal = 40 -6570245 otherCount = 58 -~~~ -6570297 UP 10 -6570297 waslock = 0 -6570297 512 1024 -~~~ -6570360 DOWN 10 -6570360 0 1024 -~~~ -~~~ -~~~ -~~~ -6570390 homeCount = 113 -6570390 waitCount = 56 -6570391 ripCount = 47 -6570391 locktype1 = 2 -6570392 locktype2 = 7 -6570392 locktype3 = 6 -6570393 goalCount = 0 -6570393 goalTotal = 40 -6570394 otherCount = 58 -~~~ -6570433 UP 10 -6570433 waslock = 0 -6570432 512 1024 -~~~ -6573876 DOWN 10 -6573876 0 1024 -~~~ -~~~ -~~~ -~~~ -6573901 homeCount = 113 -6573902 waitCount = 56 -6573902 ripCount = 47 -6573903 locktype1 = 2 -6573903 locktype2 = 7 -6573903 locktype3 = 6 -6573904 goalCount = 0 -6573904 goalTotal = 40 -6573905 otherCount = 58 -~~~ -6573934 UP 10 -6573935 waslock = 0 -6573934 512 1024 -~~~ -6573977 DOWN 10 -6573977 0 1024 -~~~ -~~~ -~~~ -~~~ -6574003 homeCount = 113 -6574004 waitCount = 56 -6574004 ripCount = 47 -6574005 locktype1 = 2 -6574005 locktype2 = 7 -6574006 locktype3 = 6 -6574006 goalCount = 0 -6574007 goalTotal = 40 -6574007 otherCount = 58 -~~~ -6575372 UP 11 -6575372 1024 1024 -6576446 DOWN 11 -6576446 0 1024 -6576491 UP 11 -6576491 1024 1024 -6577984 DOWN 11 -6577984 0 1024 -6577998 UP 11 -6577998 1024 1024 -6578373 BEEP1 -6578373 BEEP2 -~~~ -~~~ -~~~ -6578399 1024 33555456 -~~~ -6578549 1024 1024 -6578714 DOWN 11 -6578714 0 1024 -6578721 UP 11 -6578721 1024 1024 -6578866 DOWN 11 -6578866 0 1024 -6578903 UP 11 -6578903 1024 1024 -~~~ -~~~ -6579074 1024 0 -~~~ -~~~ -6579075 1024 1 -~~~ -~~~ -6579077 1024 3 -~~~ -~~~ -6579079 1024 7 -~~~ -~~~ -6579081 1024 15 -~~~ -~~~ -6579083 1024 31 -~~~ -~~~ -6579085 1024 63 -~~~ -~~~ -6579086 1024 127 -~~~ -~~~ -6579088 1024 255 -6579089 homeCount = 113 -6579090 waitCount = 56 -6579090 ripCount = 48 -6579091 locktype1 = 2 -6579112 locktype2 = 7 -6579112 locktype3 = 6 -6579113 goalCount = 0 -6579113 goalTotal = 40 -6579113 otherCount = 58 -~~~ -6579115 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6579142 homeCount = 113 -6579143 waitCount = 56 -6579143 ripCount = 48 -6579144 locktype1 = 2 -6579144 locktype2 = 7 -6579145 locktype3 = 6 -6579145 goalCount = 0 -6579146 goalTotal = 40 -6579146 otherCount = 58 -~~~ -6579147 CURRENTGOAL IS [7] -~~~ -6586385 DOWN 11 -6586385 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6586420 homeCount = 113 -6586421 waitCount = 56 -6586421 ripCount = 48 -6586422 locktype1 = 2 -6586422 locktype2 = 7 -6586422 locktype3 = 6 -6586423 goalCount = 0 -6586423 goalTotal = 40 -6586424 otherCount = 58 -~~~ -6586425 CURRENTGOAL IS [7] -~~~ -6590698 UP 7 -6590698 64 255 -6590720 DOWN 7 -6590720 0 255 -~~~ -~~~ -6590725 outer reward -~~~ -6590725 0 4194559 -~~~ -~~~ -~~~ -~~~ -6590745 0 4194558 -~~~ -~~~ -6590747 0 4194556 -~~~ -~~~ -6590749 0 4194552 -~~~ -~~~ -6590750 0 4194544 -~~~ -~~~ -6590752 0 4194528 -~~~ -~~~ -6590754 0 4194496 -~~~ -~~~ -6590756 0 4194432 -~~~ -~~~ -6590758 0 4194304 -~~~ -~~~ -6590760 0 4194816 -6590761 homeCount = 113 -6590761 waitCount = 56 -6590762 ripCount = 48 -6590782 locktype1 = 2 -6590783 locktype2 = 7 -6590783 locktype3 = 6 -6590784 goalCount = 1 -6590784 goalTotal = 41 -6590785 otherCount = 58 -~~~ -6590785 64 4194816 -6591175 64 512 -6599661 DOWN 7 -6599661 0 512 -6608285 UP 10 -6608286 waslock = 0 -6608285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6608312 512 16777728 -~~~ -6608462 512 512 -6608513 DOWN 10 -6608513 0 512 -~~~ -~~~ -6608534 0 2560 -~~~ -~~~ -6608535 0 2048 -6608536 homeCount = 114 -6608537 waitCount = 56 -6608537 ripCount = 48 -6608538 locktype1 = 2 -6608538 locktype2 = 7 -6608539 locktype3 = 6 -6608539 goalCount = 1 -6608540 goalTotal = 41 -6608540 otherCount = 58 -~~~ -6608630 UP 10 -6608630 waslock = 0 -6608630 512 2048 -~~~ -6613637 DOWN 10 -6613637 0 2048 -~~~ -~~~ -~~~ -~~~ -6613666 homeCount = 114 -6613667 waitCount = 56 -6613667 ripCount = 48 -6613668 locktype1 = 2 -6613668 locktype2 = 7 -6613669 locktype3 = 6 -6613669 goalCount = 1 -6613670 goalTotal = 41 -6613670 otherCount = 58 -~~~ -6616329 UP 12 -6616329 2048 2048 -6619830 CLICK1 -6619830 CLICK2 -~~~ -~~~ -~~~ -6619856 2048 67110912 -~~~ -6620006 2048 2048 -6628530 DOWN 12 -6628530 0 2048 -6628552 UP 12 -6628552 2048 2048 -~~~ -~~~ -6628554 2048 0 -~~~ -~~~ -6628556 2048 1 -~~~ -~~~ -6628557 2048 3 -~~~ -~~~ -6628559 2048 7 -~~~ -~~~ -6628561 2048 15 -~~~ -~~~ -6628563 2048 31 -~~~ -~~~ -6628565 2048 63 -~~~ -~~~ -6628566 2048 127 -~~~ -~~~ -6628568 2048 255 -6628569 homeCount = 114 -6628570 waitCount = 57 -6628591 ripCount = 48 -6628591 locktype1 = 2 -6628592 locktype2 = 7 -6628592 locktype3 = 6 -6628592 goalCount = 1 -6628593 goalTotal = 41 -6628593 otherCount = 58 -~~~ -6628595 CURRENTGOAL IS [7] -~~~ -6628616 DOWN 12 -6628616 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6628645 homeCount = 114 -6628646 waitCount = 57 -6628646 ripCount = 48 -6628647 locktype1 = 2 -6628647 locktype2 = 7 -6628648 locktype3 = 6 -6628648 goalCount = 1 -6628648 goalTotal = 41 -6628649 otherCount = 58 -~~~ -6628650 CURRENTGOAL IS [7] -~~~ -6632543 UP 4 -6632543 8 255 -~~~ -~~~ -6633261 DOWN 4 -6633261 0 255 -~~~ -~~~ -6633284 0 254 -~~~ -~~~ -6633286 0 252 -~~~ -~~~ -6633288 0 248 -~~~ -~~~ -6633289 0 240 -~~~ -~~~ -6633291 0 224 -~~~ -~~~ -6633293 0 192 -~~~ -~~~ -6633295 0 128 -~~~ -~~~ -6633297 0 0 -~~~ -~~~ -6633299 0 512 -6633300 homeCount = 114 -6633300 waitCount = 57 -6633301 ripCount = 48 -6633301 locktype1 = 2 -6633302 locktype2 = 7 -6633323 locktype3 = 6 -6633323 goalCount = 1 -6633324 goalTotal = 41 -6633324 otherCount = 59 -~~~ -6637699 UP 10 -6637699 waslock = 0 -6637699 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6637730 512 16777728 -~~~ -6637866 DOWN 10 -6637866 0 16777728 -6637880 0 512 -~~~ -~~~ -6637887 0 2560 -~~~ -~~~ -6637889 0 2048 -6637890 homeCount = 115 -6637890 waitCount = 57 -6637891 ripCount = 48 -6637891 locktype1 = 2 -6637892 locktype2 = 7 -6637892 locktype3 = 6 -6637893 goalCount = 1 -6637893 goalTotal = 41 -6637894 otherCount = 59 -~~~ -6637949 UP 10 -6637949 waslock = 0 -6637949 512 2048 -~~~ -6640995 DOWN 10 -6640995 0 2048 -~~~ -~~~ -~~~ -~~~ -6641017 homeCount = 115 -6641017 waitCount = 57 -6641018 ripCount = 48 -6641018 locktype1 = 2 -6641019 locktype2 = 7 -6641019 locktype3 = 6 -6641020 goalCount = 1 -6641020 goalTotal = 41 -6641021 otherCount = 59 -~~~ -6642706 UP 12 -6642706 2048 2048 -6645350 DOWN 12 -6645350 0 2048 -6645380 UP 12 -6645380 2048 2048 -6647206 CLICK1 -6647206 CLICK2 -~~~ -~~~ -~~~ -6647227 2048 67110912 -~~~ -6647377 2048 2048 -6657145 DOWN 12 -6657144 0 2048 -~~~ -~~~ -6657165 0 0 -~~~ -~~~ -6657167 0 1 -~~~ -~~~ -6657169 0 3 -~~~ -~~~ -6657170 0 7 -~~~ -~~~ -6657172 0 15 -~~~ -~~~ -6657174 0 31 -~~~ -~~~ -6657176 0 63 -~~~ -~~~ -6657178 0 127 -~~~ -~~~ -6657180 0 255 -6657181 homeCount = 115 -6657181 waitCount = 58 -6657182 ripCount = 48 -6657182 locktype1 = 2 -6657183 locktype2 = 7 -6657204 locktype3 = 6 -6657204 goalCount = 1 -6657205 goalTotal = 41 -6657205 otherCount = 59 -~~~ -6657206 CURRENTGOAL IS [7] -~~~ -6657218 UP 12 -6657218 2048 255 -6657280 DOWN 12 -6657280 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6657313 homeCount = 115 -6657314 waitCount = 58 -6657314 ripCount = 48 -6657315 locktype1 = 2 -6657315 locktype2 = 7 -6657316 locktype3 = 6 -6657316 goalCount = 1 -6657317 goalTotal = 41 -6657317 otherCount = 59 -~~~ -6657318 CURRENTGOAL IS [7] -~~~ -6661264 UP 3 -6661264 4 255 -~~~ -~~~ -6661872 DOWN 3 -6661872 0 255 -~~~ -~~~ -6661892 0 254 -~~~ -~~~ -6661894 0 252 -~~~ -~~~ -6661896 0 248 -~~~ -~~~ -6661898 0 240 -~~~ -~~~ -6661900 0 224 -~~~ -~~~ -6661901 0 192 -~~~ -~~~ -6661903 0 128 -~~~ -~~~ -6661905 0 0 -~~~ -~~~ -6661907 0 512 -6661908 homeCount = 115 -6661909 waitCount = 58 -6661909 ripCount = 48 -6661909 locktype1 = 2 -6661910 locktype2 = 7 -6661931 locktype3 = 6 -6661931 goalCount = 1 -6661932 goalTotal = 41 -6661932 otherCount = 60 -~~~ -6661933 4 512 -6662264 DOWN 3 -6662264 0 512 -6665814 UP 10 -6665814 waslock = 0 -6665814 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6665840 512 16777728 -~~~ -6665975 DOWN 10 -6665975 0 16777728 -6665990 0 512 -~~~ -~~~ -6665993 0 1536 -~~~ -~~~ -6665995 0 1024 -6665996 homeCount = 116 -6665997 waitCount = 58 -6665997 ripCount = 48 -6665998 locktype1 = 2 -6665998 locktype2 = 7 -6665999 locktype3 = 6 -6665999 goalCount = 1 -6666000 goalTotal = 41 -6666000 otherCount = 60 -~~~ -6666060 UP 10 -6666060 waslock = 0 -6666060 512 1024 -~~~ -6671137 DOWN 10 -6671137 0 1024 -~~~ -~~~ -~~~ -~~~ -6671163 homeCount = 116 -6671163 waitCount = 58 -6671164 ripCount = 48 -6671164 locktype1 = 2 -6671165 locktype2 = 7 -6671165 locktype3 = 6 -6671166 goalCount = 1 -6671166 goalTotal = 41 -6671167 otherCount = 60 -~~~ -6671175 UP 10 -6671175 waslock = 0 -6671175 512 1024 -6671210 DOWN 10 -6671210 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6671233 homeCount = 116 -6671234 waitCount = 58 -6671234 ripCount = 48 -6671235 locktype1 = 2 -6671235 locktype2 = 7 -6671236 locktype3 = 6 -6671236 goalCount = 1 -6671237 goalTotal = 41 -6671237 otherCount = 60 -~~~ -6672888 UP 11 -6672888 1024 1024 -6675281 DOWN 11 -6675281 0 1024 -6675325 UP 11 -6675325 1024 1024 -6675888 BEEP1 -6675888 BEEP2 -~~~ -~~~ -~~~ -6675910 1024 33555456 -~~~ -6676060 1024 1024 -6683979 DOWN 11 -6683979 0 1024 -~~~ -~~~ -6683999 0 0 -~~~ -~~~ -6684001 0 1 -~~~ -~~~ -6684003 0 3 -~~~ -~~~ -6684004 0 7 -~~~ -~~~ -6684006 0 15 -~~~ -~~~ -6684008 0 31 -~~~ -~~~ -6684010 0 63 -~~~ -~~~ -6684012 0 127 -~~~ -~~~ -6684014 0 255 -6684015 homeCount = 116 -6684015 waitCount = 58 -6684016 ripCount = 49 -6684016 locktype1 = 2 -6684017 locktype2 = 7 -6684017 locktype3 = 6 -6684038 goalCount = 1 -6684039 goalTotal = 41 -6684039 otherCount = 60 -~~~ -6684040 CURRENTGOAL IS [7] -~~~ -6684055 UP 11 -6684055 1024 255 -6684116 DOWN 11 -6684116 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6684159 homeCount = 116 -6684159 waitCount = 58 -6684160 ripCount = 49 -6684160 locktype1 = 2 -6684161 locktype2 = 7 -6684161 locktype3 = 6 -6684162 goalCount = 1 -6684162 goalTotal = 41 -6684163 otherCount = 60 -~~~ -6684164 CURRENTGOAL IS [7] -~~~ -6684221 UP 11 -6684221 1024 255 -6684256 DOWN 11 -6684256 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6684297 homeCount = 116 -6684298 waitCount = 58 -6684298 ripCount = 49 -6684299 locktype1 = 2 -6684299 locktype2 = 7 -6684300 locktype3 = 6 -6684300 goalCount = 1 -6684301 goalTotal = 41 -6684301 otherCount = 60 -~~~ -6684302 CURRENTGOAL IS [7] -~~~ -6684474 UP 11 -6684474 1024 255 -6685220 DOWN 11 -6685220 0 255 -6685235 UP 11 -6685235 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685260 DOWN 11 -6685260 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685272 homeCount = 116 -6685272 waitCount = 58 -6685273 ripCount = 49 -6685273 locktype1 = 2 -6685274 locktype2 = 7 -6685274 locktype3 = 6 -6685275 goalCount = 1 -6685275 goalTotal = 41 -6685276 otherCount = 60 -~~~ -6685277 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685304 homeCount = 116 -6685304 waitCount = 58 -6685305 ripCount = 49 -6685305 locktype1 = 2 -6685306 locktype2 = 7 -6685306 locktype3 = 6 -6685307 goalCount = 1 -6685307 goalTotal = 41 -6685308 otherCount = 60 -~~~ -6685309 CURRENTGOAL IS [7] -~~~ -6685357 UP 11 -6685357 1024 255 -6685427 DOWN 11 -6685427 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685466 homeCount = 116 -6685466 waitCount = 58 -6685467 ripCount = 49 -6685467 locktype1 = 2 -6685468 locktype2 = 7 -6685468 locktype3 = 6 -6685469 goalCount = 1 -6685469 goalTotal = 41 -6685470 otherCount = 60 -~~~ -6685471 CURRENTGOAL IS [7] -~~~ -6691250 UP 8 -6691250 128 255 -~~~ -~~~ -6691294 DOWN 8 -6691294 0 255 -~~~ -6691318 128 255 -~~~ -6691319 128 254 -~~~ -~~~ -6691320 128 252 -~~~ -~~~ -6691322 128 248 -~~~ -~~~ -6691324 128 240 -~~~ -~~~ -6691326 128 224 -~~~ -~~~ -6691328 128 192 -~~~ -~~~ -6691329 128 128 -~~~ -~~~ -6691331 128 0 -~~~ -~~~ -6691333 128 512 -6691334 homeCount = 116 -6691335 waitCount = 58 -6691356 ripCount = 49 -6691356 locktype1 = 2 -6691357 locktype2 = 7 -6691357 locktype3 = 6 -6691358 goalCount = 1 -6691358 goalTotal = 41 -6691359 otherCount = 61 -~~~ -6691705 DOWN 8 -6691705 0 512 -6692128 128 512 -6692970 DOWN 8 -6692969 0 512 -6693144 128 512 -6693170 DOWN 8 -6693170 0 512 -6693199 128 512 -6693388 DOWN 8 -6693388 0 512 -6693402 128 512 -6693443 DOWN 8 -6693443 0 512 -6693515 128 512 -6693538 DOWN 8 -6693538 0 512 -6693619 128 512 -6693648 DOWN 8 -6693648 0 512 -6694010 128 512 -6694839 DOWN 8 -6694838 0 512 -6701433 UP 10 -6701434 waslock = 0 -6701433 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6701465 512 16777728 -~~~ -6701615 512 512 -6701718 DOWN 10 -6701718 0 512 -~~~ -~~~ -6701739 0 1536 -~~~ -~~~ -6701741 0 1024 -6701742 homeCount = 117 -6701743 waitCount = 58 -6701743 ripCount = 49 -6701744 locktype1 = 2 -6701744 locktype2 = 7 -6701745 locktype3 = 6 -6701745 goalCount = 1 -6701746 goalTotal = 41 -6701746 otherCount = 61 -~~~ -6701748 UP 10 -6701748 waslock = 0 -6701748 512 1024 -~~~ -6705821 DOWN 10 -6705821 0 1024 -~~~ -~~~ -~~~ -~~~ -6705843 homeCount = 117 -6705843 waitCount = 58 -6705844 ripCount = 49 -6705844 locktype1 = 2 -6705845 locktype2 = 7 -6705845 locktype3 = 6 -6705846 goalCount = 1 -6705846 goalTotal = 41 -6705847 otherCount = 61 -~~~ -6705847 UP 10 -6705848 waslock = 0 -6705847 512 1024 -~~~ -6705920 DOWN 10 -6705920 0 1024 -~~~ -~~~ -~~~ -~~~ -6705943 homeCount = 117 -6705943 waitCount = 58 -6705944 ripCount = 49 -6705944 locktype1 = 2 -6705944 locktype2 = 7 -6705945 locktype3 = 6 -6705945 goalCount = 1 -6705946 goalTotal = 41 -6705946 otherCount = 61 -~~~ -6708068 UP 11 -6708068 1024 1024 -6708086 DOWN 11 -6708086 0 1024 -6708133 UP 11 -6708133 1024 1024 -6709911 DOWN 11 -6709911 0 1024 -6709920 UP 11 -6709920 1024 1024 -6711114 DOWN 11 -6711114 0 1024 -6711120 UP 11 -6711120 1024 1024 -6711125 DOWN 11 -6711125 0 1024 -6711144 UP 11 -6711144 1024 1024 -6711546 DOWN 11 -6711546 0 1024 -6711576 UP 11 -6711576 1024 1024 -6711611 DOWN 11 -6711611 0 1024 -6711618 UP 11 -6711618 1024 1024 -6715068 BEEP1 -6715068 BEEP2 -~~~ -~~~ -~~~ -6715093 1024 33555456 -~~~ -6715243 1024 1024 -6721928 DOWN 11 -6721928 0 1024 -~~~ -~~~ -6721951 UP 11 -6721951 1024 0 -~~~ -~~~ -6721953 1024 1 -~~~ -~~~ -6721955 1024 3 -~~~ -~~~ -6721956 1024 7 -~~~ -~~~ -6721958 1024 15 -~~~ -~~~ -6721960 1024 31 -~~~ -~~~ -6721962 1024 63 -~~~ -~~~ -6721964 1024 127 -~~~ -~~~ -6721966 1024 255 -6721967 homeCount = 117 -6721967 waitCount = 58 -6721968 ripCount = 50 -6721989 locktype1 = 2 -6721989 locktype2 = 7 -6721990 locktype3 = 6 -6721990 goalCount = 1 -6721991 goalTotal = 41 -6721991 otherCount = 61 -~~~ -6721992 CURRENTGOAL IS [7] -~~~ -6722015 DOWN 11 -6722015 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6722057 homeCount = 117 -6722057 waitCount = 58 -6722058 ripCount = 50 -6722058 locktype1 = 2 -6722059 locktype2 = 7 -6722059 locktype3 = 6 -6722060 goalCount = 1 -6722060 goalTotal = 41 -6722060 otherCount = 61 -~~~ -6722062 CURRENTGOAL IS [7] -~~~ -6725264 UP 6 -6725264 32 255 -~~~ -~~~ -6727484 DOWN 6 -6727484 0 255 -~~~ -~~~ -6727509 0 254 -~~~ -~~~ -6727510 0 252 -~~~ -~~~ -6727512 0 248 -~~~ -~~~ -6727514 0 240 -~~~ -~~~ -6727516 0 224 -~~~ -~~~ -6727518 0 192 -~~~ -~~~ -6727519 0 128 -~~~ -~~~ -6727521 0 0 -~~~ -~~~ -6727523 0 512 -6727524 homeCount = 117 -6727525 waitCount = 58 -6727525 ripCount = 50 -6727526 locktype1 = 2 -6727526 locktype2 = 7 -6727547 locktype3 = 6 -6727548 goalCount = 1 -6727548 goalTotal = 41 -6727549 otherCount = 62 -~~~ -6727577 32 512 -6727791 DOWN 6 -6727791 0 512 -6732072 UP 10 -6732072 waslock = 0 -6732072 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6732099 DOWN 10 -6732099 0 16777728 -~~~ -~~~ -~~~ -6732121 0 16779776 -~~~ -~~~ -6732123 0 16779264 -6732124 homeCount = 118 -6732124 waitCount = 58 -6732125 ripCount = 50 -6732125 locktype1 = 2 -6732126 locktype2 = 7 -6732126 locktype3 = 6 -6732127 goalCount = 1 -6732127 goalTotal = 41 -6732128 otherCount = 62 -~~~ -6732179 UP 10 -6732179 waslock = 0 -6732179 512 16779264 -~~~ -6732249 512 2048 -6732403 DOWN 10 -6732403 0 2048 -~~~ -~~~ -~~~ -~~~ -6732424 homeCount = 118 -6732425 waitCount = 58 -6732425 ripCount = 50 -6732426 locktype1 = 2 -6732426 locktype2 = 7 -6732427 locktype3 = 6 -6732427 goalCount = 1 -6732428 goalTotal = 41 -6732428 otherCount = 62 -~~~ -6732461 UP 10 -6732462 waslock = 0 -6732461 512 2048 -~~~ -6738947 DOWN 10 -6738947 0 2048 -~~~ -~~~ -~~~ -~~~ -6738973 homeCount = 118 -6738973 waitCount = 58 -6738974 ripCount = 50 -6738974 locktype1 = 2 -6738975 locktype2 = 7 -6738975 locktype3 = 6 -6738976 goalCount = 1 -6738976 goalTotal = 41 -6738976 otherCount = 62 -~~~ -6739010 UP 10 -6739010 waslock = 0 -6739010 512 2048 -~~~ -6739045 DOWN 10 -6739045 0 2048 -~~~ -~~~ -~~~ -~~~ -6739064 homeCount = 118 -6739064 waitCount = 58 -6739065 ripCount = 50 -6739065 locktype1 = 2 -6739066 locktype2 = 7 -6739066 locktype3 = 6 -6739067 goalCount = 1 -6739067 goalTotal = 41 -6739068 otherCount = 62 -~~~ -6741119 UP 12 -6741119 2048 2048 -6742871 DOWN 12 -6742871 0 2048 -6742901 UP 12 -6742901 2048 2048 -6744620 CLICK1 -6744620 CLICK2 -~~~ -~~~ -~~~ -6744642 2048 67110912 -~~~ -6744792 2048 2048 -6752291 DOWN 12 -6752291 0 2048 -~~~ -~~~ -6752311 0 0 -~~~ -~~~ -6752313 0 1 -~~~ -~~~ -6752315 0 3 -~~~ -~~~ -6752316 0 7 -~~~ -~~~ -6752318 0 15 -~~~ -~~~ -6752320 0 31 -~~~ -~~~ -6752322 0 63 -~~~ -~~~ -6752324 0 127 -~~~ -~~~ -6752325 0 255 -6752326 homeCount = 118 -6752327 waitCount = 59 -6752328 ripCount = 50 -6752328 locktype1 = 2 -6752329 locktype2 = 7 -6752329 locktype3 = 6 -6752350 goalCount = 1 -6752350 goalTotal = 41 -6752351 otherCount = 62 -~~~ -6752352 CURRENTGOAL IS [7] -~~~ -6752352 UP 12 -6752352 2048 255 -6752415 DOWN 12 -6752415 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6752456 homeCount = 118 -6752456 waitCount = 59 -6752457 ripCount = 50 -6752457 locktype1 = 2 -6752458 locktype2 = 7 -6752458 locktype3 = 6 -6752459 goalCount = 1 -6752459 goalTotal = 41 -6752460 otherCount = 62 -~~~ -6752461 CURRENTGOAL IS [7] -~~~ -6757646 UP 3 -6757646 4 255 -~~~ -~~~ -6758067 DOWN 3 -6758067 0 255 -~~~ -~~~ -6758091 0 254 -~~~ -~~~ -6758093 0 252 -~~~ -~~~ -6758094 0 248 -~~~ -~~~ -6758096 0 240 -~~~ -~~~ -6758098 0 224 -~~~ -~~~ -6758100 0 192 -~~~ -~~~ -6758102 0 128 -~~~ -~~~ -6758103 0 0 -~~~ -~~~ -6758105 0 512 -6758106 homeCount = 118 -6758107 waitCount = 59 -6758107 ripCount = 50 -6758108 locktype1 = 2 -6758108 locktype2 = 7 -6758129 locktype3 = 6 -6758130 goalCount = 1 -6758130 goalTotal = 41 -6758131 otherCount = 63 -~~~ -6761238 UP 10 -6761239 waslock = 0 -6761238 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6761268 512 16777728 -~~~ -6761417 512 512 -6761428 DOWN 10 -6761428 0 512 -~~~ -~~~ -6761445 0 2560 -~~~ -~~~ -6761446 0 2048 -6761447 homeCount = 119 -6761448 waitCount = 59 -6761448 ripCount = 50 -6761449 locktype1 = 2 -6761449 locktype2 = 7 -6761450 locktype3 = 6 -6761450 goalCount = 1 -6761451 goalTotal = 41 -6761451 otherCount = 63 -~~~ -6761468 UP 10 -6761468 waslock = 0 -6761468 512 2048 -~~~ -6768410 DOWN 10 -6768410 0 2048 -~~~ -~~~ -~~~ -~~~ -6768433 homeCount = 119 -6768433 waitCount = 59 -6768434 ripCount = 50 -6768434 locktype1 = 2 -6768434 locktype2 = 7 -6768435 locktype3 = 6 -6768435 goalCount = 1 -6768436 goalTotal = 41 -6768436 otherCount = 63 -~~~ -6770299 UP 12 -6770299 2048 2048 -6772302 DOWN 12 -6772302 0 2048 -6772362 UP 12 -6772362 2048 2048 -6773300 CLICK1 -6773300 CLICK2 -~~~ -~~~ -~~~ -6773325 2048 67110912 -~~~ -6773475 2048 2048 -6779649 DOWN 12 -6779649 0 2048 -~~~ -~~~ -6779670 0 0 -~~~ -~~~ -6779672 0 1 -~~~ -~~~ -6779674 0 3 -~~~ -~~~ -6779676 0 7 -~~~ -~~~ -6779678 0 15 -~~~ -~~~ -6779679 0 31 -~~~ -~~~ -6779681 0 63 -~~~ -~~~ -6779683 0 127 -~~~ -6779684 UP 12 -6779684 2048 127 -~~~ -6779686 homeCount = 119 -6779687 waitCount = 60 -6779687 ripCount = 50 -6779688 locktype1 = 2 -6779708 locktype2 = 7 -6779709 locktype3 = 6 -6779709 goalCount = 1 -6779710 goalTotal = 41 -6779710 otherCount = 63 -~~~ -6779711 CURRENTGOAL IS [7] -~~~ -6779712 2048 255 -6779786 DOWN 12 -6779786 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6779830 homeCount = 119 -6779831 waitCount = 60 -6779831 ripCount = 50 -6779832 locktype1 = 2 -6779832 locktype2 = 7 -6779833 locktype3 = 6 -6779833 goalCount = 1 -6779834 goalTotal = 41 -6779834 otherCount = 63 -~~~ -6779835 CURRENTGOAL IS [7] -~~~ -6779836 UP 12 -6779836 2048 255 -6779858 DOWN 12 -6779858 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6779888 homeCount = 119 -6779888 waitCount = 60 -6779889 ripCount = 50 -6779889 locktype1 = 2 -6779890 locktype2 = 7 -6779890 locktype3 = 6 -6779891 goalCount = 1 -6779891 goalTotal = 41 -6779892 otherCount = 63 -~~~ -6779893 CURRENTGOAL IS [7] -~~~ -6779906 UP 12 -6779906 2048 255 -6783028 DOWN 12 -6783028 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6783069 homeCount = 119 -6783070 waitCount = 60 -6783070 ripCount = 50 -6783071 locktype1 = 2 -6783071 locktype2 = 7 -6783072 locktype3 = 6 -6783072 goalCount = 1 -6783073 goalTotal = 41 -6783073 otherCount = 63 -~~~ -6783074 CURRENTGOAL IS [7] -~~~ -6792931 UP 6 -6792931 32 255 -~~~ -~~~ -6793358 DOWN 6 -6793358 0 255 -~~~ -~~~ -6793374 0 254 -~~~ -~~~ -6793376 0 252 -~~~ -~~~ -6793377 0 248 -~~~ -~~~ -6793379 0 240 -~~~ -~~~ -6793381 0 224 -~~~ -~~~ -6793383 0 192 -~~~ -~~~ -6793385 0 128 -~~~ -~~~ -6793387 0 0 -~~~ -~~~ -6793388 0 512 -6793389 homeCount = 119 -6793390 waitCount = 60 -6793390 ripCount = 50 -6793391 locktype1 = 2 -6793391 locktype2 = 7 -6793413 locktype3 = 6 -6793413 goalCount = 1 -6793414 goalTotal = 41 -6793414 otherCount = 64 -~~~ -6797527 UP 10 -6797527 waslock = 0 -6797527 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6797551 512 16777728 -~~~ -6797585 DOWN 10 -6797585 0 16777728 -~~~ -~~~ -6797604 0 16779776 -~~~ -~~~ -6797606 0 16779264 -6797607 homeCount = 120 -6797608 waitCount = 60 -6797608 ripCount = 50 -6797609 locktype1 = 2 -6797609 locktype2 = 7 -6797610 locktype3 = 6 -6797610 goalCount = 1 -6797611 goalTotal = 41 -6797611 otherCount = 64 -~~~ -6797632 UP 10 -6797633 waslock = 0 -6797632 512 16779264 -~~~ -6797700 DOWN 10 -6797700 0 16779264 -6797701 0 2048 -~~~ -~~~ -~~~ -~~~ -6797728 homeCount = 120 -6797728 waitCount = 60 -6797729 ripCount = 50 -6797729 locktype1 = 2 -6797730 locktype2 = 7 -6797730 locktype3 = 6 -6797731 goalCount = 1 -6797731 goalTotal = 41 -6797732 otherCount = 64 -~~~ -6797848 UP 10 -6797848 waslock = 0 -6797848 512 2048 -~~~ -6804936 DOWN 10 -6804936 0 2048 -~~~ -~~~ -~~~ -~~~ -6804957 homeCount = 120 -6804958 waitCount = 60 -6804958 ripCount = 50 -6804959 locktype1 = 2 -6804959 locktype2 = 7 -6804960 locktype3 = 6 -6804960 goalCount = 1 -6804961 goalTotal = 41 -6804961 otherCount = 64 -~~~ -6804962 UP 10 -6804962 waslock = 0 -6804962 512 2048 -~~~ -6805032 DOWN 10 -6805032 0 2048 -~~~ -~~~ -~~~ -~~~ -6805061 homeCount = 120 -6805061 waitCount = 60 -6805062 ripCount = 50 -6805062 locktype1 = 2 -6805063 locktype2 = 7 -6805063 locktype3 = 6 -6805064 goalCount = 1 -6805064 goalTotal = 41 -6805065 otherCount = 64 -~~~ -6807081 UP 12 -6807081 2048 2048 -6807157 DOWN 12 -6807157 0 2048 -6807196 UP 12 -6807196 2048 2048 -6808281 DOWN 12 -6808281 0 2048 -6808302 UP 12 -6808302 2048 2048 -6811278 DOWN 12 -6811278 0 2048 -6811347 UP 12 -6811347 2048 2048 -6814081 CLICK1 -6814081 CLICK2 -~~~ -~~~ -~~~ -6814107 2048 67110912 -~~~ -6814257 2048 2048 -6819298 DOWN 12 -6819298 0 2048 -~~~ -~~~ -6819318 0 0 -~~~ -~~~ -6819319 0 1 -~~~ -~~~ -6819321 0 3 -~~~ -~~~ -6819323 0 7 -~~~ -~~~ -6819325 0 15 -~~~ -~~~ -6819327 0 31 -~~~ -~~~ -6819329 0 63 -~~~ -~~~ -6819330 0 127 -~~~ -~~~ -6819332 0 255 -6819333 homeCount = 120 -6819334 waitCount = 61 -6819334 ripCount = 50 -6819335 locktype1 = 2 -6819335 locktype2 = 7 -6819336 locktype3 = 6 -6819357 goalCount = 1 -6819357 goalTotal = 41 -6819358 otherCount = 64 -~~~ -6819359 CURRENTGOAL IS [7] -~~~ -6819367 UP 12 -6819367 2048 255 -6819410 DOWN 12 -6819410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6819444 homeCount = 120 -6819444 waitCount = 61 -6819445 ripCount = 50 -6819445 locktype1 = 2 -6819446 locktype2 = 7 -6819446 locktype3 = 6 -6819447 goalCount = 1 -6819447 goalTotal = 41 -6819448 otherCount = 64 -~~~ -6819449 CURRENTGOAL IS [7] -~~~ -6819507 UP 12 -6819507 2048 255 -6819537 DOWN 12 -6819537 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6819574 homeCount = 120 -6819575 waitCount = 61 -6819575 ripCount = 50 -6819576 locktype1 = 2 -6819576 locktype2 = 7 -6819577 locktype3 = 6 -6819577 goalCount = 1 -6819578 goalTotal = 41 -6819578 otherCount = 64 -~~~ -6819579 CURRENTGOAL IS [7] -~~~ -6828002 UP 4 -6828002 8 255 -~~~ -~~~ -6828645 DOWN 4 -6828645 0 255 -~~~ -~~~ -6828668 0 254 -~~~ -~~~ -6828670 0 252 -~~~ -~~~ -6828672 0 248 -~~~ -~~~ -6828673 0 240 -~~~ -~~~ -6828675 0 224 -~~~ -~~~ -6828677 0 192 -~~~ -~~~ -6828679 0 128 -~~~ -~~~ -6828681 0 0 -~~~ -~~~ -6828683 0 512 -6828684 homeCount = 120 -6828684 waitCount = 61 -6828685 ripCount = 50 -6828685 locktype1 = 2 -6828686 locktype2 = 7 -6828707 locktype3 = 6 -6828707 goalCount = 1 -6828708 goalTotal = 41 -6828708 otherCount = 65 -~~~ -6832786 UP 10 -6832787 waslock = 0 -6832786 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6832816 512 16777728 -~~~ -6832958 DOWN 10 -6832958 0 16777728 -6832966 0 512 -~~~ -~~~ -6832983 0 2560 -~~~ -~~~ -6832985 0 2048 -6832986 homeCount = 121 -6832986 waitCount = 61 -6832987 ripCount = 50 -6832987 locktype1 = 2 -6832987 locktype2 = 7 -6832988 locktype3 = 6 -6832988 goalCount = 1 -6832989 goalTotal = 41 -6832989 otherCount = 65 -~~~ -6833089 UP 10 -6833089 waslock = 0 -6833088 512 2048 -~~~ -6833877 DOWN 10 -6833877 0 2048 -~~~ -~~~ -~~~ -~~~ -6833903 homeCount = 121 -6833904 waitCount = 61 -6833904 ripCount = 50 -6833905 locktype1 = 2 -6833905 locktype2 = 7 -6833906 locktype3 = 6 -6833906 goalCount = 1 -6833906 goalTotal = 41 -6833907 otherCount = 65 -~~~ -6833908 UP 10 -6833908 waslock = 0 -6833907 512 2048 -6833930 DOWN 10 -6833930 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -6833955 homeCount = 121 -6833956 waitCount = 61 -6833956 ripCount = 50 -6833957 locktype1 = 2 -6833957 locktype2 = 7 -6833958 locktype3 = 6 -6833958 goalCount = 1 -6833959 goalTotal = 41 -6833959 otherCount = 65 -~~~ -6833962 UP 10 -6833962 waslock = 0 -6833962 512 2048 -~~~ -6837947 DOWN 10 -6837947 0 2048 -~~~ -~~~ -~~~ -~~~ -6837972 homeCount = 121 -6837973 waitCount = 61 -6837973 ripCount = 50 -6837974 locktype1 = 2 -6837974 locktype2 = 7 -6837974 locktype3 = 6 -6837975 goalCount = 1 -6837975 goalTotal = 41 -6837976 otherCount = 65 -~~~ -6837999 UP 10 -6838000 waslock = 0 -6837999 512 2048 -6838018 DOWN 10 -6838018 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -6838043 homeCount = 121 -6838044 waitCount = 61 -6838044 ripCount = 50 -6838045 locktype1 = 2 -6838045 locktype2 = 7 -6838046 locktype3 = 6 -6838046 goalCount = 1 -6838046 goalTotal = 41 -6838047 otherCount = 65 -~~~ -6839502 UP 12 -6839502 2048 2048 -6842503 CLICK1 -6842503 CLICK2 -~~~ -~~~ -~~~ -6842522 2048 67110912 -~~~ -6842672 2048 2048 -6851012 DOWN 12 -6851012 0 2048 -~~~ -~~~ -6851029 0 0 -~~~ -~~~ -6851031 0 1 -~~~ -~~~ -6851033 0 3 -~~~ -~~~ -6851035 0 7 -~~~ -~~~ -6851036 0 15 -~~~ -~~~ -6851038 0 31 -~~~ -~~~ -6851040 0 63 -~~~ -~~~ -6851042 0 127 -~~~ -~~~ -6851044 0 255 -6851045 homeCount = 121 -6851045 waitCount = 62 -6851046 ripCount = 50 -6851046 locktype1 = 2 -6851047 locktype2 = 7 -6851047 locktype3 = 6 -6851068 goalCount = 1 -6851069 goalTotal = 41 -6851069 otherCount = 65 -~~~ -6851070 CURRENTGOAL IS [7] -~~~ -6867037 UP 6 -6867037 32 255 -~~~ -~~~ -6867390 DOWN 6 -6867390 0 255 -~~~ -~~~ -6867410 0 254 -~~~ -~~~ -6867412 0 252 -~~~ -~~~ -6867414 0 248 -~~~ -~~~ -6867416 0 240 -~~~ -~~~ -6867417 0 224 -~~~ -~~~ -6867419 0 192 -~~~ -~~~ -6867421 0 128 -~~~ -~~~ -6867423 0 0 -~~~ -~~~ -6867425 0 512 -6867426 homeCount = 121 -6867426 waitCount = 62 -6867427 ripCount = 50 -6867427 locktype1 = 2 -6867428 locktype2 = 7 -6867449 locktype3 = 6 -6867449 goalCount = 1 -6867450 goalTotal = 41 -6867450 otherCount = 66 -~~~ -6871554 UP 10 -6871554 waslock = 0 -6871553 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6871589 512 16777728 -~~~ -6871739 512 512 -6871848 DOWN 10 -6871848 0 512 -~~~ -~~~ -6871874 0 2560 -~~~ -~~~ -6871876 0 2048 -6871877 homeCount = 122 -6871877 waitCount = 62 -6871878 ripCount = 50 -6871878 locktype1 = 2 -6871879 locktype2 = 7 -6871879 locktype3 = 6 -6871880 goalCount = 1 -6871880 goalTotal = 41 -6871881 otherCount = 66 -~~~ -6871905 UP 10 -6871905 waslock = 0 -6871905 512 2048 -~~~ -6877839 DOWN 10 -6877839 0 2048 -~~~ -~~~ -~~~ -~~~ -6877866 homeCount = 122 -6877867 waitCount = 62 -6877867 ripCount = 50 -6877868 locktype1 = 2 -6877868 locktype2 = 7 -6877869 locktype3 = 6 -6877869 goalCount = 1 -6877869 goalTotal = 41 -6877870 otherCount = 66 -~~~ -6879791 UP 12 -6879791 2048 2048 -6881416 DOWN 12 -6881416 0 2048 -6881430 UP 12 -6881430 2048 2048 -6881961 DOWN 12 -6881961 0 2048 -6881975 UP 12 -6881975 2048 2048 -6883663 DOWN 12 -6883663 0 2048 -6883693 UP 12 -6883693 2048 2048 -6886792 CLICK1 -6886792 CLICK2 -~~~ -~~~ -~~~ -6886815 2048 67110912 -~~~ -6886965 2048 2048 -6893793 DOWN 12 -6893793 0 2048 -~~~ -~~~ -6893814 0 0 -~~~ -~~~ -6893816 0 1 -~~~ -~~~ -6893817 0 3 -~~~ -~~~ -6893819 0 7 -~~~ -~~~ -6893821 0 15 -~~~ -~~~ -6893823 0 31 -~~~ -~~~ -6893825 0 63 -~~~ -~~~ -6893826 0 127 -~~~ -~~~ -6893828 0 255 -6893829 homeCount = 122 -6893830 waitCount = 63 -6893830 ripCount = 50 -6893831 locktype1 = 2 -6893831 locktype2 = 7 -6893832 locktype3 = 6 -6893853 goalCount = 1 -6893853 goalTotal = 41 -6893854 otherCount = 66 -~~~ -6893855 CURRENTGOAL IS [7] -~~~ -6905937 UP 10 -6905938 waslock = 0 -6905937 512 255 -~~~ -6905957 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6905965 512 254 -~~~ -~~~ -6905966 512 252 -~~~ -~~~ -6905968 512 248 -~~~ -~~~ -6905970 512 240 -~~~ -~~~ -6905972 512 224 -~~~ -~~~ -6905974 512 192 -~~~ -~~~ -6905975 512 128 -~~~ -~~~ -6905977 512 0 -~~~ -~~~ -~~~ -6906246 0 0 -6930957 LOCKEND -~~~ -~~~ -~~~ -6930979 0 512 -6934646 UP 10 -6934646 waslock = 0 -6934646 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6934672 512 16777728 -~~~ -6934799 DOWN 10 -6934799 0 16777728 -~~~ -~~~ -6934819 0 16779776 -~~~ -~~~ -6934821 0 16779264 -6934822 homeCount = 123 -6934822 waitCount = 63 -6934823 ripCount = 50 -6934823 locktype1 = 2 -6934824 locktype2 = 8 -6934824 locktype3 = 6 -6934825 goalCount = 1 -6934825 goalTotal = 41 -6934826 otherCount = 66 -~~~ -6934847 0 2048 -6934867 UP 10 -6934867 waslock = 0 -6934867 512 2048 -~~~ -6934893 DOWN 10 -6934893 0 2048 -~~~ -~~~ -~~~ -~~~ -6934910 homeCount = 123 -6934911 waitCount = 63 -6934911 ripCount = 50 -6934912 locktype1 = 2 -6934912 locktype2 = 8 -6934913 locktype3 = 6 -6934913 goalCount = 1 -6934914 goalTotal = 41 -6934914 otherCount = 66 -~~~ -6935112 UP 10 -6935112 waslock = 0 -6935112 512 2048 -~~~ -6935617 DOWN 10 -6935616 0 2048 -~~~ -~~~ -~~~ -~~~ -6935639 homeCount = 123 -6935640 waitCount = 63 -6935640 ripCount = 50 -6935641 locktype1 = 2 -6935641 locktype2 = 8 -6935642 locktype3 = 6 -6935642 goalCount = 1 -6935643 goalTotal = 41 -6935643 otherCount = 66 -~~~ -6935681 UP 10 -6935682 waslock = 0 -6935681 512 2048 -~~~ -6935714 DOWN 10 -6935714 0 2048 -~~~ -~~~ -~~~ -~~~ -6935740 homeCount = 123 -6935741 waitCount = 63 -6935741 ripCount = 50 -6935742 locktype1 = 2 -6935742 locktype2 = 8 -6935743 locktype3 = 6 -6935743 goalCount = 1 -6935744 goalTotal = 41 -6935744 otherCount = 66 -~~~ -6935801 UP 10 -6935801 waslock = 0 -6935801 512 2048 -~~~ -6935843 DOWN 10 -6935843 0 2048 -~~~ -~~~ -~~~ -~~~ -6935871 homeCount = 123 -6935872 waitCount = 63 -6935872 ripCount = 50 -6935873 locktype1 = 2 -6935873 locktype2 = 8 -6935874 locktype3 = 6 -6935874 goalCount = 1 -6935875 goalTotal = 41 -6935875 otherCount = 66 -~~~ -6935918 UP 10 -6935918 waslock = 0 -6935918 512 2048 -~~~ -6935945 DOWN 10 -6935945 0 2048 -~~~ -~~~ -~~~ -~~~ -6935960 homeCount = 123 -6935960 waitCount = 63 -6935961 ripCount = 50 -6935961 locktype1 = 2 -6935962 locktype2 = 8 -6935962 locktype3 = 6 -6935963 goalCount = 1 -6935963 goalTotal = 41 -6935964 otherCount = 66 -~~~ -6936031 UP 10 -6936031 waslock = 0 -6936031 512 2048 -~~~ -6941357 DOWN 10 -6941357 0 2048 -6941366 UP 10 -6941366 waslock = 0 -6941366 512 2048 -~~~ -~~~ -~~~ -~~~ -6941394 homeCount = 123 -6941395 waitCount = 63 -6941395 ripCount = 50 -6941396 locktype1 = 2 -6941396 locktype2 = 8 -6941397 locktype3 = 6 -6941397 goalCount = 1 -6941398 goalTotal = 41 -6941398 otherCount = 66 -~~~ -~~~ -6941466 DOWN 10 -6941466 0 2048 -~~~ -~~~ -~~~ -~~~ -6941491 homeCount = 123 -6941492 waitCount = 63 -6941492 ripCount = 50 -6941493 locktype1 = 2 -6941493 locktype2 = 8 -6941493 locktype3 = 6 -6941494 goalCount = 1 -6941494 goalTotal = 41 -6941495 otherCount = 66 -~~~ -6941496 UP 10 -6941496 waslock = 0 -6941495 512 2048 -~~~ -6941566 DOWN 10 -6941566 0 2048 -~~~ -~~~ -~~~ -~~~ -6941591 homeCount = 123 -6941592 waitCount = 63 -6941592 ripCount = 50 -6941593 locktype1 = 2 -6941593 locktype2 = 8 -6941594 locktype3 = 6 -6941594 goalCount = 1 -6941595 goalTotal = 41 -6941595 otherCount = 66 -~~~ -6943531 UP 12 -6943531 2048 2048 -6945000 DOWN 12 -6945000 0 2048 -6945026 UP 12 -6945026 2048 2048 -6945349 DOWN 12 -6945349 0 2048 -6945363 UP 12 -6945363 2048 2048 -6945387 DOWN 12 -6945387 0 2048 -6945442 UP 12 -6945442 2048 2048 -6947532 CLICK1 -6947532 CLICK2 -~~~ -~~~ -~~~ -6947560 2048 67110912 -~~~ -6947710 2048 2048 -6953981 DOWN 12 -6953981 0 2048 -6953994 UP 12 -6953994 2048 2048 -~~~ -~~~ -6953999 2048 0 -~~~ -~~~ -6954001 2048 1 -~~~ -~~~ -6954002 2048 3 -~~~ -~~~ -6954004 2048 7 -~~~ -~~~ -6954006 2048 15 -~~~ -~~~ -6954008 2048 31 -~~~ -~~~ -6954010 2048 63 -~~~ -~~~ -6954012 2048 127 -~~~ -~~~ -6954013 2048 255 -6954014 homeCount = 123 -6954015 waitCount = 64 -6954015 ripCount = 50 -6954016 locktype1 = 2 -6954037 locktype2 = 8 -6954037 locktype3 = 6 -6954038 goalCount = 1 -6954038 goalTotal = 41 -6954039 otherCount = 66 -~~~ -6954040 CURRENTGOAL IS [7] -~~~ -6954190 DOWN 12 -6954190 0 255 -~~~ -~~~ -~~~ -~~~ -6954214 UP 12 -6954214 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6954227 homeCount = 123 -6954228 waitCount = 64 -6954228 ripCount = 50 -6954229 locktype1 = 2 -6954229 locktype2 = 8 -6954230 locktype3 = 6 -6954230 goalCount = 1 -6954231 goalTotal = 41 -6954231 otherCount = 66 -~~~ -6954232 CURRENTGOAL IS [7] -~~~ -6954328 DOWN 12 -6954328 0 255 -6954335 UP 12 -6954335 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6954367 homeCount = 123 -6954368 waitCount = 64 -6954368 ripCount = 50 -6954369 locktype1 = 2 -6954369 locktype2 = 8 -6954370 locktype3 = 6 -6954370 goalCount = 1 -6954371 goalTotal = 41 -6954371 otherCount = 66 -~~~ -6954372 CURRENTGOAL IS [7] -~~~ -6956456 DOWN 12 -6956456 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6956490 homeCount = 123 -6956491 waitCount = 64 -6956491 ripCount = 50 -6956492 locktype1 = 2 -6956492 locktype2 = 8 -6956493 locktype3 = 6 -6956493 goalCount = 1 -6956494 goalTotal = 41 -6956494 otherCount = 66 -~~~ -6956495 CURRENTGOAL IS [7] -~~~ -6961679 UP 5 -6961679 16 255 -~~~ -~~~ -6961995 DOWN 5 -6961995 0 255 -~~~ -~~~ -6962013 0 254 -~~~ -~~~ -6962015 0 252 -~~~ -~~~ -6962017 0 248 -~~~ -~~~ -6962019 0 240 -~~~ -~~~ -6962021 0 224 -~~~ -~~~ -6962022 0 192 -~~~ -~~~ -6962024 0 128 -~~~ -~~~ -6962026 0 0 -~~~ -~~~ -6962028 0 512 -6962029 homeCount = 123 -6962030 waitCount = 64 -6962030 ripCount = 50 -6962030 locktype1 = 2 -6962031 locktype2 = 8 -6962052 locktype3 = 6 -6962053 goalCount = 1 -6962053 goalTotal = 41 -6962054 otherCount = 67 -~~~ -6962054 16 512 -6962809 DOWN 5 -6962809 0 512 -6967089 UP 10 -6967089 waslock = 0 -6967089 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6967119 512 16777728 -~~~ -6967269 512 512 -6973816 DOWN 10 -6973816 0 512 -~~~ -~~~ -6973835 0 2560 -~~~ -~~~ -6973836 0 2048 -6973837 homeCount = 124 -6973838 waitCount = 64 -6973838 ripCount = 50 -6973839 locktype1 = 2 -6973839 locktype2 = 8 -6973840 locktype3 = 6 -6973840 goalCount = 1 -6973841 goalTotal = 41 -6973841 otherCount = 67 -~~~ -6973842 UP 10 -6973863 waslock = 0 -6973842 512 2048 -~~~ -6973904 DOWN 10 -6973904 0 2048 -~~~ -~~~ -~~~ -~~~ -6973929 homeCount = 124 -6973929 waitCount = 64 -6973930 ripCount = 50 -6973930 locktype1 = 2 -6973931 locktype2 = 8 -6973931 locktype3 = 6 -6973932 goalCount = 1 -6973932 goalTotal = 41 -6973933 otherCount = 67 -~~~ -6975942 UP 12 -6975942 2048 2048 -6978569 DOWN 12 -6978569 0 2048 -6978588 UP 12 -6978588 2048 2048 -6980629 DOWN 12 -6980629 0 2048 -6980662 UP 12 -6980662 2048 2048 -6981442 CLICK1 -6981442 CLICK2 -~~~ -~~~ -~~~ -6981468 2048 67110912 -~~~ -6981618 2048 2048 -6987168 DOWN 12 -6987168 0 2048 -~~~ -~~~ -6987185 0 0 -~~~ -~~~ -6987187 0 1 -~~~ -~~~ -6987188 0 3 -~~~ -~~~ -6987190 0 7 -~~~ -~~~ -6987192 0 15 -~~~ -~~~ -6987194 0 31 -~~~ -~~~ -6987196 0 63 -~~~ -~~~ -6987197 0 127 -~~~ -~~~ -6987199 0 255 -6987200 homeCount = 124 -6987201 waitCount = 65 -6987201 ripCount = 50 -6987202 locktype1 = 2 -6987202 locktype2 = 8 -6987203 locktype3 = 6 -6987224 goalCount = 1 -6987224 goalTotal = 41 -6987225 otherCount = 67 -~~~ -6987226 CURRENTGOAL IS [7] -~~~ -6995646 UP 5 -6995646 16 255 -~~~ -~~~ -6996817 DOWN 5 -6996817 0 255 -~~~ -~~~ -6996836 0 254 -~~~ -~~~ -6996838 0 252 -~~~ -~~~ -6996840 0 248 -~~~ -~~~ -6996841 0 240 -~~~ -~~~ -6996843 0 224 -~~~ -~~~ -6996845 0 192 -~~~ -~~~ -6996847 0 128 -~~~ -~~~ -6996849 0 0 -~~~ -~~~ -6996851 0 512 -6996852 homeCount = 124 -6996852 waitCount = 65 -6996853 ripCount = 50 -6996853 locktype1 = 2 -6996854 locktype2 = 8 -6996875 locktype3 = 6 -6996875 goalCount = 1 -6996876 goalTotal = 41 -6996876 otherCount = 68 -~~~ -6996877 16 512 -6996887 DOWN 5 -6996887 0 512 -6997103 16 512 -6997395 DOWN 5 -6997395 0 512 -6997437 16 512 -6997638 DOWN 5 -6997638 0 512 -7003045 UP 10 -7003046 waslock = 0 -7003045 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7003072 512 16777728 -~~~ -7003222 512 512 -7003296 DOWN 10 -7003296 0 512 -~~~ -~~~ -7003317 0 2560 -~~~ -~~~ -7003319 0 2048 -7003320 homeCount = 125 -7003320 waitCount = 65 -7003321 ripCount = 50 -7003321 locktype1 = 2 -7003322 locktype2 = 8 -7003322 locktype3 = 6 -7003323 goalCount = 1 -7003323 goalTotal = 41 -7003324 otherCount = 68 -~~~ -7003445 UP 10 -7003445 waslock = 0 -7003445 512 2048 -~~~ -7003799 DOWN 10 -7003799 0 2048 -~~~ -~~~ -~~~ -~~~ -7003820 homeCount = 125 -7003821 waitCount = 65 -7003821 ripCount = 50 -7003822 locktype1 = 2 -7003822 locktype2 = 8 -7003823 locktype3 = 6 -7003823 goalCount = 1 -7003824 goalTotal = 41 -7003824 otherCount = 68 -~~~ -7003825 UP 10 -7003825 waslock = 0 -7003825 512 2048 -7003847 DOWN 10 -7003847 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -7003870 homeCount = 125 -7003871 waitCount = 65 -7003871 ripCount = 50 -7003872 locktype1 = 2 -7003872 locktype2 = 8 -7003873 locktype3 = 6 -7003873 goalCount = 1 -7003874 goalTotal = 41 -7003874 otherCount = 68 -~~~ -7003892 UP 10 -7003893 waslock = 0 -7003892 512 2048 -~~~ -7008206 DOWN 10 -7008206 0 2048 -~~~ -~~~ -~~~ -~~~ -7008230 homeCount = 125 -7008230 waitCount = 65 -7008231 ripCount = 50 -7008231 locktype1 = 2 -7008232 locktype2 = 8 -7008232 locktype3 = 6 -7008233 goalCount = 1 -7008233 goalTotal = 41 -7008234 otherCount = 68 -~~~ -7008234 UP 10 -7008234 waslock = 0 -7008234 512 2048 -~~~ -7008328 DOWN 10 -7008328 0 2048 -~~~ -~~~ -~~~ -~~~ -7008353 homeCount = 125 -7008353 waitCount = 65 -7008354 ripCount = 50 -7008354 locktype1 = 2 -7008355 locktype2 = 8 -7008355 locktype3 = 6 -7008355 goalCount = 1 -7008356 goalTotal = 41 -7008356 otherCount = 68 -~~~ -7008384 UP 10 -7008385 waslock = 0 -7008384 512 2048 -~~~ -7008410 DOWN 10 -7008410 0 2048 -~~~ -~~~ -~~~ -~~~ -7008432 homeCount = 125 -7008433 waitCount = 65 -7008433 ripCount = 50 -7008434 locktype1 = 2 -7008434 locktype2 = 8 -7008435 locktype3 = 6 -7008435 goalCount = 1 -7008436 goalTotal = 41 -7008436 otherCount = 68 -~~~ -7010275 UP 12 -7010275 2048 2048 -7014339 DOWN 12 -7014339 0 2048 -7014351 UP 12 -7014351 2048 2048 -7015775 CLICK1 -7015775 CLICK2 -~~~ -~~~ -~~~ -7015800 2048 67110912 -~~~ -7015950 2048 2048 -7021725 DOWN 12 -7021725 0 2048 -~~~ -~~~ -7021748 0 0 -~~~ -~~~ -7021750 0 1 -~~~ -~~~ -7021751 0 3 -~~~ -~~~ -7021753 0 7 -~~~ -~~~ -7021755 0 15 -~~~ -~~~ -7021757 0 31 -~~~ -~~~ -7021759 0 63 -~~~ -~~~ -7021760 0 127 -~~~ -~~~ -7021762 0 255 -7021763 homeCount = 125 -7021764 waitCount = 66 -7021764 ripCount = 50 -7021765 locktype1 = 2 -7021765 locktype2 = 8 -7021766 locktype3 = 6 -7021787 goalCount = 1 -7021787 goalTotal = 41 -7021788 otherCount = 68 -~~~ -7021789 CURRENTGOAL IS [7] -~~~ -7029936 UP 11 -7029936 LOCKOUT 2 -7029935 1024 255 -~~~ -7029959 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7029967 1024 254 -~~~ -~~~ -7029969 1024 252 -~~~ -~~~ -7029970 1024 248 -~~~ -~~~ -7029972 1024 240 -~~~ -~~~ -7029974 1024 224 -~~~ -~~~ -7029976 1024 192 -~~~ -~~~ -7029978 1024 128 -~~~ -~~~ -7029980 1024 0 -~~~ -~~~ -7030046 DOWN 11 -7030046 0 0 -7038812 UP 1 -7038812 1 0 -7040163 DOWN 1 -7040163 0 0 -7044450 512 0 -7045274 0 0 -7045315 512 0 -7045409 0 0 -7045452 512 0 -7045487 0 0 -7045609 512 0 -7048059 0 0 -7048119 512 0 -7048160 0 0 -7054959 LOCKEND -~~~ -~~~ -~~~ -7054982 0 512 -7059549 UP 10 -7059549 waslock = 0 -7059549 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7059577 512 16777728 -~~~ -7059727 512 512 -7060080 DOWN 10 -7060080 0 512 -~~~ -~~~ -7060101 0 1536 -~~~ -~~~ -7060103 0 1024 -7060104 homeCount = 126 -7060104 waitCount = 66 -7060105 ripCount = 50 -7060105 locktype1 = 2 -7060106 locktype2 = 9 -7060106 locktype3 = 6 -7060107 goalCount = 1 -7060107 goalTotal = 41 -7060108 otherCount = 68 -~~~ -7060126 UP 10 -7060126 waslock = 0 -7060126 512 1024 -~~~ -7060201 DOWN 10 -7060201 0 1024 -~~~ -~~~ -~~~ -~~~ -7060230 homeCount = 126 -7060231 waitCount = 66 -7060231 ripCount = 50 -7060232 locktype1 = 2 -7060232 locktype2 = 9 -7060233 locktype3 = 6 -7060233 goalCount = 1 -7060234 goalTotal = 41 -7060234 otherCount = 68 -~~~ -7060239 UP 10 -7060240 waslock = 0 -7060239 512 1024 -~~~ -7065567 DOWN 10 -7065567 0 1024 -7065581 UP 10 -7065581 waslock = 0 -7065581 512 1024 -~~~ -~~~ -~~~ -~~~ -7065605 homeCount = 126 -7065605 waitCount = 66 -7065606 ripCount = 50 -7065606 locktype1 = 2 -7065607 locktype2 = 9 -7065607 locktype3 = 6 -7065608 goalCount = 1 -7065608 goalTotal = 41 -7065609 otherCount = 68 -~~~ -~~~ -7065644 DOWN 10 -7065644 0 1024 -~~~ -~~~ -~~~ -~~~ -7065673 homeCount = 126 -7065673 waitCount = 66 -7065674 ripCount = 50 -7065674 locktype1 = 2 -7065675 locktype2 = 9 -7065675 locktype3 = 6 -7065676 goalCount = 1 -7065676 goalTotal = 41 -7065677 otherCount = 68 -~~~ -7067367 UP 11 -7067367 1024 1024 -7069514 DOWN 11 -7069514 0 1024 -7069517 UP 11 -7069517 1024 1024 -7072868 BEEP1 -7072868 BEEP2 -~~~ -~~~ -~~~ -7072891 1024 33555456 -~~~ -7073041 1024 1024 -7079165 DOWN 11 -7079165 0 1024 -7079170 UP 11 -7079170 1024 1024 -~~~ -~~~ -7079193 1024 0 -~~~ -~~~ -7079195 1024 1 -~~~ -~~~ -7079197 1024 3 -~~~ -~~~ -7079199 1024 7 -~~~ -~~~ -7079200 1024 15 -~~~ -~~~ -7079202 1024 31 -~~~ -~~~ -7079204 1024 63 -~~~ -~~~ -7079206 1024 127 -~~~ -~~~ -7079208 1024 255 -7079209 homeCount = 126 -7079209 waitCount = 66 -7079210 ripCount = 51 -7079210 locktype1 = 2 -7079231 locktype2 = 9 -7079231 locktype3 = 6 -7079232 goalCount = 1 -7079232 goalTotal = 41 -7079233 otherCount = 68 -~~~ -7079234 CURRENTGOAL IS [7] -~~~ -7079287 DOWN 11 -7079287 0 255 -7079298 UP 11 -7079298 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7079327 homeCount = 126 -7079328 waitCount = 66 -7079328 ripCount = 51 -7079329 locktype1 = 2 -7079329 locktype2 = 9 -7079330 locktype3 = 6 -7079330 goalCount = 1 -7079331 goalTotal = 41 -7079331 otherCount = 68 -~~~ -7079332 CURRENTGOAL IS [7] -~~~ -7082284 DOWN 11 -7082284 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7082317 homeCount = 126 -7082318 waitCount = 66 -7082318 ripCount = 51 -7082319 locktype1 = 2 -7082319 locktype2 = 9 -7082320 locktype3 = 6 -7082320 goalCount = 1 -7082321 goalTotal = 41 -7082321 otherCount = 68 -~~~ -7082322 CURRENTGOAL IS [7] -~~~ -7085804 UP 7 -7085804 64 255 -~~~ -~~~ -7085824 outer reward -~~~ -7085824 64 4194559 -~~~ -~~~ -7085981 DOWN 7 -7085981 0 4194559 -~~~ -~~~ -7086003 0 4194558 -~~~ -~~~ -7086005 0 4194556 -~~~ -~~~ -7086007 0 4194552 -~~~ -~~~ -7086008 0 4194544 -~~~ -~~~ -7086010 0 4194528 -~~~ -~~~ -7086012 0 4194496 -~~~ -~~~ -7086014 0 4194432 -~~~ -~~~ -7086016 0 4194304 -~~~ -~~~ -7086018 0 4194816 -7086019 homeCount = 126 -7086019 waitCount = 66 -7086020 ripCount = 51 -7086041 locktype1 = 2 -7086041 locktype2 = 9 -7086042 locktype3 = 6 -7086042 goalCount = 2 -7086043 goalTotal = 42 -7086043 otherCount = 68 -~~~ -7086044 64 4194816 -7086274 64 512 -7094087 DOWN 7 -7094087 0 512 -7099767 UP 10 -7099767 waslock = 0 -7099767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7099800 512 16777728 -~~~ -7099950 512 512 -7104805 DOWN 10 -7104805 0 512 -~~~ -~~~ -7104824 0 2560 -~~~ -~~~ -7104826 0 2048 -7104827 homeCount = 127 -7104828 waitCount = 66 -7104828 ripCount = 51 -7104829 locktype1 = 2 -7104829 locktype2 = 9 -7104830 locktype3 = 6 -7104830 goalCount = 2 -7104831 goalTotal = 42 -7104831 otherCount = 68 -~~~ -7106451 UP 12 -7106451 2048 2048 -7108789 DOWN 12 -7108789 0 2048 -7108810 UP 12 -7108810 2048 2048 -7108872 DOWN 12 -7108872 0 2048 -7108884 UP 12 -7108884 2048 2048 -7111310 DOWN 12 -7111310 0 2048 -7111315 UP 12 -7111315 2048 2048 -7111952 CLICK1 -7111952 CLICK2 -~~~ -~~~ -~~~ -7111980 2048 67110912 -~~~ -7112130 2048 2048 -7119398 DOWN 12 -7119398 0 2048 -~~~ -~~~ -7119425 0 0 -~~~ -~~~ -7119426 0 1 -~~~ -~~~ -7119428 0 3 -~~~ -~~~ -7119430 0 7 -~~~ -~~~ -7119432 0 15 -~~~ -~~~ -7119434 0 31 -~~~ -~~~ -7119436 0 63 -~~~ -~~~ -7119437 0 127 -~~~ -7119439 UP 12 -7119439 2048 127 -~~~ -7119440 homeCount = 127 -7119441 waitCount = 67 -7119442 ripCount = 51 -7119442 locktype1 = 2 -7119463 locktype2 = 9 -7119464 locktype3 = 6 -7119464 goalCount = 2 -7119465 goalTotal = 42 -7119465 otherCount = 68 -~~~ -7119466 CURRENTGOAL IS [7] -~~~ -7119467 2048 255 -7121503 DOWN 12 -7121503 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7121544 homeCount = 127 -7121544 waitCount = 67 -7121545 ripCount = 51 -7121545 locktype1 = 2 -7121546 locktype2 = 9 -7121546 locktype3 = 6 -7121547 goalCount = 2 -7121547 goalTotal = 42 -7121548 otherCount = 68 -~~~ -7121549 CURRENTGOAL IS [7] -~~~ -7121574 UP 12 -7121574 2048 255 -7121609 DOWN 12 -7121609 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7121643 homeCount = 127 -7121643 waitCount = 67 -7121644 ripCount = 51 -7121644 locktype1 = 2 -7121645 locktype2 = 9 -7121645 locktype3 = 6 -7121646 goalCount = 2 -7121646 goalTotal = 42 -7121647 otherCount = 68 -~~~ -7121648 CURRENTGOAL IS [7] -~~~ -7126447 UP 7 -7126447 64 255 -~~~ -~~~ -7126469 outer reward -~~~ -7126469 64 4194559 -~~~ -~~~ -7126710 DOWN 7 -7126710 0 4194559 -~~~ -~~~ -7126737 0 4194558 -~~~ -~~~ -7126739 0 4194556 -~~~ -~~~ -7126740 0 4194552 -~~~ -~~~ -7126742 0 4194544 -~~~ -7126744 64 4194544 -~~~ -~~~ -7126745 64 4194528 -~~~ -~~~ -7126747 64 4194496 -~~~ -7126748 64 4194432 -~~~ -~~~ -7126750 64 4194304 -~~~ -~~~ -7126751 64 4194816 -7126752 homeCount = 127 -7126774 waitCount = 67 -7126774 ripCount = 51 -7126775 locktype1 = 2 -7126775 locktype2 = 9 -7126775 locktype3 = 6 -7126776 goalCount = 3 -7126776 goalTotal = 43 -7126777 otherCount = 68 -~~~ -7126919 64 512 -7127253 DOWN 7 -7127253 0 512 -7127273 64 512 -7127534 DOWN 7 -7127534 0 512 -7127543 64 512 -7127670 DOWN 7 -7127670 0 512 -7127680 64 512 -7136565 DOWN 7 -7136565 0 512 -7136647 64 512 -7136665 DOWN 7 -7136665 0 512 -7140698 UP 10 -7140698 waslock = 0 -7140698 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7140726 512 16777728 -~~~ -7140876 512 512 -7147055 DOWN 10 -7147055 0 512 -~~~ -~~~ -7147078 0 1536 -~~~ -~~~ -7147080 0 1024 -7147081 homeCount = 128 -7147081 waitCount = 67 -7147082 ripCount = 51 -7147082 locktype1 = 2 -7147083 locktype2 = 9 -7147083 locktype3 = 6 -7147084 goalCount = 3 -7147084 goalTotal = 43 -7147085 otherCount = 68 -~~~ -7148849 UP 11 -7148849 1024 1024 -7151745 DOWN 11 -7151745 0 1024 -7151771 UP 11 -7151771 1024 1024 -7151783 DOWN 11 -7151783 0 1024 -7151814 UP 11 -7151814 1024 1024 -7151849 BEEP1 -7151849 BEEP2 -~~~ -~~~ -~~~ -7151871 1024 33555456 -~~~ -7152020 1024 1024 -7158055 DOWN 11 -7158055 0 1024 -7158073 UP 11 -7158073 1024 1024 -~~~ -~~~ -7158091 1024 0 -~~~ -~~~ -7158093 1024 1 -~~~ -~~~ -7158095 1024 3 -~~~ -~~~ -7158097 1024 7 -~~~ -~~~ -7158098 1024 15 -~~~ -~~~ -7158100 1024 31 -~~~ -~~~ -7158102 1024 63 -~~~ -~~~ -7158104 1024 127 -~~~ -~~~ -7158106 1024 255 -7158107 homeCount = 128 -7158107 waitCount = 67 -7158108 ripCount = 52 -7158108 locktype1 = 2 -7158130 locktype2 = 9 -7158130 locktype3 = 6 -7158130 goalCount = 3 -7158131 goalTotal = 43 -7158131 otherCount = 68 -~~~ -7158132 CURRENTGOAL IS [7] -~~~ -7160244 DOWN 11 -7160244 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7160279 homeCount = 128 -7160280 waitCount = 67 -7160280 ripCount = 52 -7160281 locktype1 = 2 -7160281 locktype2 = 9 -7160282 locktype3 = 6 -7160282 goalCount = 3 -7160283 goalTotal = 43 -7160283 otherCount = 68 -~~~ -7160284 CURRENTGOAL IS [7] -~~~ -7160372 UP 11 -7160371 1024 255 -7160380 DOWN 11 -7160380 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7160417 homeCount = 128 -7160418 waitCount = 67 -7160418 ripCount = 52 -7160419 locktype1 = 2 -7160419 locktype2 = 9 -7160420 locktype3 = 6 -7160420 goalCount = 3 -7160421 goalTotal = 43 -7160421 otherCount = 68 -~~~ -7160422 CURRENTGOAL IS [7] -~~~ -7163197 UP 7 -7163197 64 255 -~~~ -~~~ -7163218 outer reward -~~~ -7163218 64 4194559 -~~~ -~~~ -7163445 DOWN 7 -7163445 0 4194559 -~~~ -~~~ -7163466 0 4194558 -~~~ -~~~ -7163468 0 4194556 -~~~ -~~~ -7163470 0 4194552 -~~~ -~~~ -7163472 0 4194544 -~~~ -~~~ -7163473 0 4194528 -~~~ -~~~ -7163475 0 4194496 -~~~ -~~~ -7163477 0 4194432 -~~~ -~~~ -7163479 0 4194304 -~~~ -~~~ -7163481 0 4194816 -7163482 homeCount = 128 -7163482 waitCount = 67 -7163483 ripCount = 52 -7163503 locktype1 = 2 -7163504 locktype2 = 9 -7163504 locktype3 = 6 -7163505 goalCount = 4 -7163505 goalTotal = 44 -7163506 otherCount = 68 -~~~ -7163506 64 4194816 -7163668 64 512 -7173399 DOWN 7 -7173399 0 512 -7173483 64 512 -7173516 DOWN 7 -7173516 0 512 -7177879 UP 10 -7177879 waslock = 0 -7177879 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7177905 512 16777728 -~~~ -7178055 512 512 -7185421 DOWN 10 -7185421 0 512 -~~~ -~~~ -7185440 0 1536 -~~~ -~~~ -7185441 0 1024 -7185442 homeCount = 129 -7185443 waitCount = 67 -7185443 ripCount = 52 -7185444 locktype1 = 2 -7185444 locktype2 = 9 -7185445 locktype3 = 6 -7185445 goalCount = 4 -7185446 goalTotal = 44 -7185446 otherCount = 68 -~~~ -7187609 UP 11 -7187609 1024 1024 -7189528 DOWN 11 -7189527 0 1024 -7189561 UP 11 -7189561 1024 1024 -7190448 DOWN 11 -7190448 0 1024 -7190455 UP 11 -7190455 1024 1024 -7190610 BEEP1 -7190610 BEEP2 -~~~ -~~~ -~~~ -7190633 1024 33555456 -~~~ -7190783 1024 1024 -7196165 DOWN 11 -7196165 0 1024 -~~~ -~~~ -7196190 0 0 -~~~ -~~~ -7196192 0 1 -~~~ -~~~ -7196194 0 3 -~~~ -~~~ -7196196 0 7 -~~~ -~~~ -7196198 0 15 -~~~ -~~~ -7196199 0 31 -~~~ -~~~ -7196201 0 63 -~~~ -~~~ -7196203 0 127 -~~~ -~~~ -7196205 0 255 -7196206 homeCount = 129 -7196206 waitCount = 67 -7196207 ripCount = 53 -7196207 locktype1 = 2 -7196208 locktype2 = 9 -7196208 locktype3 = 6 -7196229 goalCount = 4 -7196230 goalTotal = 44 -7196230 otherCount = 68 -~~~ -7196231 CURRENTGOAL IS [7] -~~~ -7196249 UP 11 -7196249 1024 255 -7196252 DOWN 11 -7196252 0 255 -7196254 UP 11 -7196254 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7196289 homeCount = 129 -7196290 waitCount = 67 -7196290 ripCount = 53 -7196291 locktype1 = 2 -7196291 locktype2 = 9 -7196291 locktype3 = 6 -7196292 goalCount = 4 -7196292 goalTotal = 44 -7196293 otherCount = 68 -~~~ -7196294 CURRENTGOAL IS [7] -~~~ -7196297 DOWN 11 -7196297 0 255 -7196324 UP 11 -7196324 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7196352 homeCount = 129 -7196352 waitCount = 67 -7196353 ripCount = 53 -7196353 locktype1 = 2 -7196354 locktype2 = 9 -7196354 locktype3 = 6 -7196355 goalCount = 4 -7196355 goalTotal = 44 -7196356 otherCount = 68 -~~~ -7196357 CURRENTGOAL IS [7] -~~~ -7198389 DOWN 11 -7198389 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198425 homeCount = 129 -7198426 waitCount = 67 -7198426 ripCount = 53 -7198427 locktype1 = 2 -7198428 locktype2 = 9 -7198428 locktype3 = 6 -7198428 goalCount = 4 -7198429 goalTotal = 44 -7198429 otherCount = 68 -~~~ -7198430 CURRENTGOAL IS [7] -~~~ -7198437 UP 11 -7198437 1024 255 -7198523 DOWN 11 -7198523 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198559 homeCount = 129 -7198560 waitCount = 67 -7198560 ripCount = 53 -7198561 locktype1 = 2 -7198561 locktype2 = 9 -7198562 locktype3 = 6 -7198562 goalCount = 4 -7198563 goalTotal = 44 -7198563 otherCount = 68 -~~~ -7198564 CURRENTGOAL IS [7] -~~~ -7198624 UP 11 -7198624 1024 255 -7198644 DOWN 11 -7198644 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198681 homeCount = 129 -7198682 waitCount = 67 -7198682 ripCount = 53 -7198683 locktype1 = 2 -7198683 locktype2 = 9 -7198684 locktype3 = 6 -7198684 goalCount = 4 -7198685 goalTotal = 44 -7198685 otherCount = 68 -~~~ -7198686 CURRENTGOAL IS [7] -~~~ -7198805 UP 11 -7198805 1024 255 -7198849 DOWN 11 -7198849 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198882 homeCount = 129 -7198883 waitCount = 67 -7198883 ripCount = 53 -7198884 locktype1 = 2 -7198884 locktype2 = 9 -7198885 locktype3 = 6 -7198885 goalCount = 4 -7198885 goalTotal = 44 -7198886 otherCount = 68 -~~~ -7198887 CURRENTGOAL IS [7] -~~~ -7201380 UP 7 -7201380 64 255 -~~~ -~~~ -7201408 outer reward -~~~ -7201408 64 4194559 -~~~ -~~~ -7201633 DOWN 7 -7201633 0 4194559 -~~~ -~~~ -7201656 0 4194558 -~~~ -~~~ -7201657 0 4194556 -~~~ -~~~ -7201659 0 4194552 -~~~ -~~~ -7201661 0 4194544 -~~~ -~~~ -7201663 0 4194528 -~~~ -~~~ -7201665 0 4194496 -~~~ -~~~ -7201666 0 4194432 -~~~ -~~~ -7201668 0 4194304 -~~~ -~~~ -7201670 0 4194816 -7201671 homeCount = 129 -7201672 waitCount = 67 -7201672 ripCount = 53 -7201693 locktype1 = 2 -7201694 locktype2 = 9 -7201694 locktype3 = 6 -7201695 goalCount = 5 -7201695 goalTotal = 45 -7201696 otherCount = 68 -~~~ -7201696 64 4194816 -7201858 64 512 -7212005 DOWN 7 -7212005 0 512 -7212062 64 512 -7212101 DOWN 7 -7212101 0 512 -7216582 UP 10 -7216582 waslock = 0 -7216582 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7216613 512 16777728 -~~~ -7216763 512 512 -7216790 DOWN 10 -7216790 0 512 -~~~ -~~~ -7216807 0 2560 -~~~ -~~~ -7216809 0 2048 -7216810 homeCount = 130 -7216810 waitCount = 67 -7216811 ripCount = 53 -7216811 locktype1 = 2 -7216812 locktype2 = 9 -7216812 locktype3 = 6 -7216813 goalCount = 5 -7216813 goalTotal = 45 -7216813 otherCount = 68 -~~~ -7216851 UP 10 -7216851 waslock = 0 -7216851 512 2048 -~~~ -7222018 DOWN 10 -7222018 0 2048 -7222030 UP 10 -7222030 waslock = 0 -7222030 512 2048 -~~~ -~~~ -~~~ -~~~ -7222052 homeCount = 130 -7222052 waitCount = 67 -7222053 ripCount = 53 -7222053 locktype1 = 2 -7222054 locktype2 = 9 -7222054 locktype3 = 6 -7222054 goalCount = 5 -7222055 goalTotal = 45 -7222055 otherCount = 68 -~~~ -~~~ -7222139 DOWN 10 -7222139 0 2048 -~~~ -~~~ -~~~ -~~~ -7222164 homeCount = 130 -7222165 waitCount = 67 -7222165 ripCount = 53 -7222166 locktype1 = 2 -7222166 locktype2 = 9 -7222167 locktype3 = 6 -7222167 goalCount = 5 -7222167 goalTotal = 45 -7222168 otherCount = 68 -~~~ -7224209 UP 12 -7224208 2048 2048 -7226515 DOWN 12 -7226515 0 2048 -7226537 UP 12 -7226537 2048 2048 -7226794 DOWN 12 -7226794 0 2048 -7226874 UP 12 -7226874 2048 2048 -7227064 DOWN 12 -7227064 0 2048 -7227084 UP 12 -7227084 2048 2048 -7227343 DOWN 12 -7227343 0 2048 -7227375 UP 12 -7227375 2048 2048 -7227423 DOWN 12 -7227423 0 2048 -7227448 UP 12 -7227447 2048 2048 -7227489 DOWN 12 -7227489 0 2048 -7227575 UP 12 -7227575 2048 2048 -7227698 DOWN 12 -7227698 0 2048 -7227728 UP 12 -7227727 2048 2048 -7230295 DOWN 12 -7230295 0 2048 -7230303 UP 12 -7230303 2048 2048 -7230405 DOWN 12 -7230405 0 2048 -7230418 UP 12 -7230418 2048 2048 -7231209 CLICK1 -7231209 CLICK2 -~~~ -~~~ -~~~ -7231238 2048 67110912 -~~~ -7231388 2048 2048 -7238786 DOWN 12 -7238786 0 2048 -~~~ -~~~ -7238809 0 0 -~~~ -~~~ -7238810 0 1 -~~~ -~~~ -7238812 0 3 -~~~ -~~~ -7238814 0 7 -~~~ -~~~ -7238816 0 15 -~~~ -~~~ -7238818 0 31 -~~~ -~~~ -7238820 0 63 -~~~ -~~~ -7238821 0 127 -~~~ -~~~ -7238823 0 255 -7238824 homeCount = 130 -7238825 waitCount = 68 -7238825 ripCount = 53 -7238826 locktype1 = 2 -7238826 locktype2 = 9 -7238848 locktype3 = 6 -7238848 goalCount = 5 -7238848 goalTotal = 45 -7238849 otherCount = 68 -~~~ -7238850 CURRENTGOAL IS [7] -~~~ -7238850 UP 12 -7238850 2048 255 -7238885 DOWN 12 -7238885 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7238925 homeCount = 130 -7238926 waitCount = 68 -7238926 ripCount = 53 -7238927 locktype1 = 2 -7238927 locktype2 = 9 -7238928 locktype3 = 6 -7238928 goalCount = 5 -7238929 goalTotal = 45 -7238929 otherCount = 68 -~~~ -7238930 CURRENTGOAL IS [7] -~~~ -7239004 UP 12 -7239004 2048 255 -7241346 DOWN 12 -7241346 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7241387 homeCount = 130 -7241388 waitCount = 68 -7241388 ripCount = 53 -7241389 locktype1 = 2 -7241389 locktype2 = 9 -7241390 locktype3 = 6 -7241390 goalCount = 5 -7241391 goalTotal = 45 -7241391 otherCount = 68 -~~~ -7241392 CURRENTGOAL IS [7] -~~~ -7241393 UP 12 -7241393 2048 255 -7241448 DOWN 12 -7241448 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7241486 homeCount = 130 -7241487 waitCount = 68 -7241487 ripCount = 53 -7241488 locktype1 = 2 -7241488 locktype2 = 9 -7241489 locktype3 = 6 -7241489 goalCount = 5 -7241490 goalTotal = 45 -7241490 otherCount = 68 -~~~ -7241491 CURRENTGOAL IS [7] -~~~ -7246047 UP 7 -7246047 64 255 -~~~ -~~~ -7246073 outer reward -~~~ -7246073 64 4194559 -~~~ -~~~ -7246239 DOWN 7 -7246239 0 4194559 -~~~ -~~~ -7246263 0 4194558 -~~~ -~~~ -7246265 0 4194556 -~~~ -~~~ -7246267 0 4194552 -~~~ -~~~ -7246269 0 4194544 -~~~ -~~~ -7246271 0 4194528 -~~~ -~~~ -7246273 0 4194496 -~~~ -~~~ -7246274 0 4194432 -~~~ -~~~ -7246276 0 4194304 -~~~ -~~~ -7246278 0 4194816 -7246279 homeCount = 130 -7246280 waitCount = 68 -7246280 ripCount = 53 -7246301 locktype1 = 2 -7246302 locktype2 = 9 -7246302 locktype3 = 6 -7246303 goalCount = 6 -7246303 goalTotal = 46 -7246304 otherCount = 68 -~~~ -7246304 64 4194816 -7246523 64 512 -7246844 DOWN 7 -7246844 0 512 -7246865 64 512 -7246981 DOWN 7 -7246981 0 512 -7246989 64 512 -7247265 DOWN 7 -7247265 0 512 -7247273 64 512 -7253973 DOWN 7 -7253973 0 512 -7253988 64 512 -7255948 DOWN 7 -7255948 0 512 -7260197 UP 10 -7260197 waslock = 0 -7260197 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7260223 512 16777728 -~~~ -7260373 512 512 -7264997 DOWN 10 -7264997 0 512 -~~~ -~~~ -7265017 0 1536 -~~~ -~~~ -7265019 0 1024 -7265020 homeCount = 131 -7265021 waitCount = 68 -7265021 ripCount = 53 -7265022 locktype1 = 2 -7265022 locktype2 = 9 -7265023 locktype3 = 6 -7265023 goalCount = 6 -7265024 goalTotal = 46 -7265024 otherCount = 68 -~~~ -7267139 UP 11 -7267139 1024 1024 -7267176 DOWN 11 -7267176 0 1024 -7267210 UP 11 -7267210 1024 1024 -7267240 DOWN 11 -7267240 0 1024 -7267440 LOCKOUT 3 -~~~ -7267457 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -7267461 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7267592 UP 11 -7267592 1024 0 -7269771 DOWN 11 -7269771 0 0 -7269794 UP 11 -7269794 1024 0 -7271659 DOWN 11 -7271659 0 0 -7271674 UP 11 -7271674 1024 0 -7275691 DOWN 11 -7275691 0 0 -7282884 UP 8 -7282884 128 0 -7283366 DOWN 8 -7283366 0 0 -7292457 LOCKEND -~~~ -~~~ -~~~ -7292478 0 512 -7293423 UP 10 -7293423 waslock = 0 -7293423 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7293452 512 16777728 -~~~ -7293602 512 512 -7298559 DOWN 10 -7298559 0 512 -~~~ -~~~ -7298577 0 2560 -~~~ -~~~ -7298579 0 2048 -7298580 homeCount = 132 -7298580 waitCount = 68 -7298581 ripCount = 53 -7298581 locktype1 = 2 -7298582 locktype2 = 9 -7298582 locktype3 = 7 -7298583 goalCount = 6 -7298583 goalTotal = 46 -7298584 otherCount = 68 -~~~ -7298630 UP 10 -7298630 waslock = 0 -7298630 512 2048 -~~~ -7298656 DOWN 10 -7298656 0 2048 -~~~ -~~~ -~~~ -~~~ -7298670 homeCount = 132 -7298670 waitCount = 68 -7298671 ripCount = 53 -7298671 locktype1 = 2 -7298672 locktype2 = 9 -7298672 locktype3 = 7 -7298673 goalCount = 6 -7298673 goalTotal = 46 -7298674 otherCount = 68 -~~~ -7300525 UP 12 -7300525 2048 2048 -7303861 DOWN 12 -7303861 0 2048 -7303914 UP 12 -7303914 2048 2048 -7304045 DOWN 12 -7304045 0 2048 -7304061 UP 12 -7304061 2048 2048 -7308526 CLICK1 -7308526 CLICK2 -~~~ -~~~ -~~~ -7308548 2048 67110912 -~~~ -7308698 2048 2048 -7317748 DOWN 12 -7317748 0 2048 -~~~ -~~~ -7317770 0 0 -~~~ -~~~ -7317772 0 1 -~~~ -~~~ -7317774 0 3 -~~~ -~~~ -7317776 0 7 -~~~ -~~~ -7317777 0 15 -~~~ -~~~ -7317779 0 31 -~~~ -~~~ -7317781 0 63 -~~~ -~~~ -7317783 0 127 -~~~ -~~~ -7317785 0 255 -7317786 homeCount = 132 -7317786 waitCount = 69 -7317787 ripCount = 53 -7317787 locktype1 = 2 -7317788 locktype2 = 9 -7317809 locktype3 = 7 -7317809 goalCount = 6 -7317810 goalTotal = 46 -7317810 otherCount = 68 -~~~ -7317811 CURRENTGOAL IS [7] -~~~ -7326698 UP 7 -7326698 64 255 -~~~ -~~~ -7326722 outer reward -~~~ -7326722 64 4194559 -~~~ -~~~ -7327001 DOWN 7 -7327001 0 4194559 -~~~ -~~~ -7327021 0 4194558 -~~~ -~~~ -7327022 0 4194556 -~~~ -~~~ -7327024 0 4194552 -~~~ -~~~ -7327026 0 4194544 -~~~ -~~~ -7327028 0 4194528 -~~~ -~~~ -7327030 0 4194496 -~~~ -~~~ -7327032 0 4194432 -~~~ -~~~ -7327033 0 4194304 -~~~ -~~~ -7327035 0 4194816 -7327036 homeCount = 132 -7327037 waitCount = 69 -7327037 ripCount = 53 -7327058 locktype1 = 2 -7327059 locktype2 = 9 -7327059 locktype3 = 7 -7327059 goalCount = 7 -7327060 goalTotal = 47 -7327060 otherCount = 68 -~~~ -7327061 64 4194816 -7327172 64 512 -7327436 DOWN 7 -7327436 0 512 -7327444 64 512 -7335677 DOWN 7 -7335677 0 512 -7335702 64 512 -7335769 DOWN 7 -7335769 0 512 -7340817 UP 10 -7340817 waslock = 0 -7340817 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7340846 512 16777728 -~~~ -7340996 512 512 -7341059 DOWN 10 -7341059 0 512 -~~~ -~~~ -7341080 0 1536 -~~~ -~~~ -7341082 0 1024 -7341083 homeCount = 133 -7341084 waitCount = 69 -7341084 ripCount = 53 -7341085 locktype1 = 2 -7341085 locktype2 = 9 -7341086 locktype3 = 7 -7341086 goalCount = 7 -7341087 goalTotal = 47 -7341087 otherCount = 68 -~~~ -7341163 UP 10 -7341163 waslock = 0 -7341163 512 1024 -~~~ -7345850 DOWN 10 -7345850 0 1024 -7345862 UP 10 -7345862 waslock = 0 -7345862 512 1024 -~~~ -~~~ -~~~ -~~~ -7345873 homeCount = 133 -7345873 waitCount = 69 -7345874 ripCount = 53 -7345874 locktype1 = 2 -7345875 locktype2 = 9 -7345875 locktype3 = 7 -7345876 goalCount = 7 -7345876 goalTotal = 47 -7345876 otherCount = 68 -~~~ -~~~ -7345957 DOWN 10 -7345957 0 1024 -~~~ -~~~ -~~~ -~~~ -7345984 homeCount = 133 -7345985 waitCount = 69 -7345985 ripCount = 53 -7345986 locktype1 = 2 -7345986 locktype2 = 9 -7345987 locktype3 = 7 -7345987 goalCount = 7 -7345988 goalTotal = 47 -7345988 otherCount = 68 -~~~ -7346012 UP 10 -7346012 waslock = 0 -7346012 512 1024 -~~~ -7346063 DOWN 10 -7346063 0 1024 -~~~ -~~~ -~~~ -~~~ -7346083 homeCount = 133 -7346083 waitCount = 69 -7346084 ripCount = 53 -7346084 locktype1 = 2 -7346085 locktype2 = 9 -7346085 locktype3 = 7 -7346086 goalCount = 7 -7346086 goalTotal = 47 -7346087 otherCount = 68 -~~~ -7348564 UP 11 -7348564 1024 1024 -7348580 DOWN 11 -7348580 0 1024 -7348605 UP 11 -7348605 1024 1024 -7350658 DOWN 11 -7350658 0 1024 -7350674 UP 11 -7350674 1024 1024 -7351121 DOWN 11 -7351121 0 1024 -7351136 UP 11 -7351136 1024 1024 -7353064 BEEP1 -7353064 BEEP2 -~~~ -~~~ -~~~ -7353083 1024 33555456 -~~~ -7353233 1024 1024 -7360547 DOWN 11 -7360547 0 1024 -~~~ -~~~ -7360571 0 0 -~~~ -~~~ -7360573 0 1 -~~~ -~~~ -7360575 0 3 -~~~ -~~~ -7360577 0 7 -~~~ -~~~ -7360578 0 15 -~~~ -~~~ -7360580 0 31 -~~~ -~~~ -7360582 0 63 -~~~ -~~~ -7360584 0 127 -~~~ -~~~ -7360586 0 255 -7360587 homeCount = 133 -7360587 waitCount = 69 -7360588 ripCount = 54 -7360588 locktype1 = 2 -7360589 locktype2 = 9 -7360610 locktype3 = 7 -7360610 goalCount = 7 -7360611 goalTotal = 47 -7360611 otherCount = 68 -~~~ -7360612 CURRENTGOAL IS [7] -~~~ -7360641 UP 11 -7360641 1024 255 -7360672 DOWN 11 -7360672 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7360707 homeCount = 133 -7360708 waitCount = 69 -7360708 ripCount = 54 -7360709 locktype1 = 2 -7360709 locktype2 = 9 -7360710 locktype3 = 7 -7360710 goalCount = 7 -7360711 goalTotal = 47 -7360711 otherCount = 68 -~~~ -7360712 CURRENTGOAL IS [7] -~~~ -7360721 UP 11 -7360721 1024 255 -7362656 DOWN 11 -7362656 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7362697 homeCount = 133 -7362698 waitCount = 69 -7362698 ripCount = 54 -7362699 locktype1 = 2 -7362699 locktype2 = 9 -7362700 locktype3 = 7 -7362700 goalCount = 7 -7362701 goalTotal = 47 -7362701 otherCount = 68 -~~~ -7362702 CURRENTGOAL IS [7] -~~~ -7365352 UP 7 -7365352 64 255 -~~~ -~~~ -7365373 outer reward -~~~ -7365374 64 4194559 -~~~ -~~~ -7365536 DOWN 7 -7365536 0 4194559 -~~~ -~~~ -7365562 0 4194558 -~~~ -~~~ -7365563 0 4194556 -~~~ -~~~ -7365565 0 4194552 -~~~ -~~~ -7365567 0 4194544 -~~~ -~~~ -7365569 0 4194528 -~~~ -~~~ -7365571 0 4194496 -~~~ -~~~ -7365572 0 4194432 -~~~ -~~~ -7365574 0 4194304 -~~~ -~~~ -7365576 0 4194816 -7365577 homeCount = 133 -7365578 waitCount = 69 -7365578 ripCount = 54 -7365599 locktype1 = 2 -7365599 locktype2 = 9 -7365600 locktype3 = 7 -7365600 goalCount = 8 -7365601 goalTotal = 48 -7365601 otherCount = 68 -~~~ -7365605 64 4194816 -7365823 64 512 -7366174 DOWN 7 -7366174 0 512 -7366179 64 512 -7374623 DOWN 7 -7374623 0 512 -7379786 UP 10 -7379786 waslock = 0 -7379786 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7379809 512 16777728 -~~~ -7379959 512 512 -7384922 DOWN 10 -7384922 0 512 -~~~ -~~~ -7384944 0 1536 -~~~ -~~~ -7384946 0 1024 -7384947 homeCount = 134 -7384948 waitCount = 69 -7384948 ripCount = 54 -7384948 locktype1 = 2 -7384949 locktype2 = 9 -7384949 locktype3 = 7 -7384950 goalCount = 8 -7384950 goalTotal = 48 -7384951 otherCount = 68 -~~~ -7384996 UP 10 -7384996 waslock = 0 -7384996 512 1024 -7385026 DOWN 10 -7385026 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -7385048 homeCount = 134 -7385048 waitCount = 69 -7385049 ripCount = 54 -7385049 locktype1 = 2 -7385050 locktype2 = 9 -7385050 locktype3 = 7 -7385051 goalCount = 8 -7385051 goalTotal = 48 -7385052 otherCount = 68 -~~~ -7387275 UP 11 -7387275 1024 1024 -7389347 DOWN 11 -7389347 0 1024 -7389404 UP 11 -7389404 1024 1024 -7393276 BEEP1 -7393276 BEEP2 -~~~ -~~~ -~~~ -7393295 1024 33555456 -~~~ -7393445 1024 1024 -7402954 DOWN 11 -7402954 0 1024 -~~~ -~~~ -7402973 0 0 -~~~ -~~~ -7402975 0 1 -~~~ -~~~ -7402977 0 3 -~~~ -~~~ -7402979 0 7 -~~~ -~~~ -7402981 0 15 -~~~ -~~~ -7402982 0 31 -~~~ -~~~ -7402984 0 63 -~~~ -~~~ -7402986 0 127 -~~~ -~~~ -7402988 0 255 -7402989 homeCount = 134 -7402989 waitCount = 69 -7402990 ripCount = 55 -7402990 locktype1 = 2 -7402991 locktype2 = 9 -7403012 locktype3 = 7 -7403013 goalCount = 8 -7403013 goalTotal = 48 -7403013 otherCount = 68 -~~~ -7403015 CURRENTGOAL IS [7] -~~~ -7403015 UP 11 -7403015 1024 255 -7403061 DOWN 11 -7403061 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7403099 homeCount = 134 -7403100 waitCount = 69 -7403100 ripCount = 55 -7403101 locktype1 = 2 -7403101 locktype2 = 9 -7403102 locktype3 = 7 -7403102 goalCount = 8 -7403103 goalTotal = 48 -7403103 otherCount = 68 -~~~ -7403104 CURRENTGOAL IS [7] -~~~ -7406281 UP 7 -7406281 64 255 -~~~ -~~~ -7406307 outer reward -~~~ -7406307 64 4194559 -~~~ -~~~ -7406343 DOWN 7 -7406343 0 4194559 -~~~ -~~~ -7406364 0 4194558 -~~~ -~~~ -7406366 0 4194556 -~~~ -~~~ -7406368 0 4194552 -~~~ -7406369 64 4194552 -~~~ -~~~ -7406371 64 4194544 -~~~ -~~~ -7406373 64 4194528 -~~~ -7406374 64 4194496 -~~~ -~~~ -7406375 64 4194432 -~~~ -~~~ -7406377 64 4194304 -~~~ -~~~ -7406379 64 4194816 -7406380 homeCount = 134 -7406401 waitCount = 69 -7406402 ripCount = 55 -7406402 locktype1 = 2 -7406403 locktype2 = 9 -7406403 locktype3 = 7 -7406404 goalCount = 9 -7406404 goalTotal = 49 -7406405 otherCount = 68 -~~~ -7406561 DOWN 7 -7406561 0 4194816 -7406594 64 4194816 -7406757 64 512 -7415726 DOWN 7 -7415726 0 512 -7415737 64 512 -7417333 DOWN 7 -7417333 0 512 -7417337 64 512 -7417494 DOWN 7 -7417494 0 512 -7417522 64 512 -7417596 DOWN 7 -7417596 0 512 -7425090 UP 10 -7425090 waslock = 0 -7425090 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7425120 512 16777728 -~~~ -7425270 512 512 -7431156 DOWN 10 -7431156 0 512 -7431172 UP 10 -7431172 waslock = 0 -7431172 512 512 -~~~ -~~~ -7431176 512 1536 -~~~ -~~~ -7431178 512 1024 -7431179 homeCount = 135 -7431179 waitCount = 69 -7431180 ripCount = 55 -7431180 locktype1 = 2 -7431181 locktype2 = 9 -7431181 locktype3 = 7 -7431181 goalCount = 9 -7431182 goalTotal = 49 -7431182 otherCount = 68 -~~~ -~~~ -7431273 DOWN 10 -7431273 0 1024 -~~~ -~~~ -~~~ -~~~ -7431299 homeCount = 135 -7431300 waitCount = 69 -7431300 ripCount = 55 -7431301 locktype1 = 2 -7431301 locktype2 = 9 -7431302 locktype3 = 7 -7431302 goalCount = 9 -7431303 goalTotal = 49 -7431303 otherCount = 68 -~~~ -7431350 UP 10 -7431350 waslock = 0 -7431350 512 1024 -7431373 DOWN 10 -7431373 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -7431399 homeCount = 135 -7431399 waitCount = 69 -7431400 ripCount = 55 -7431400 locktype1 = 2 -7431401 locktype2 = 9 -7431401 locktype3 = 7 -7431402 goalCount = 9 -7431402 goalTotal = 49 -7431403 otherCount = 68 -~~~ -7433644 UP 11 -7433644 1024 1024 -7435685 DOWN 11 -7435685 0 1024 -7435694 UP 11 -7435694 1024 1024 -7435696 DOWN 11 -7435696 0 1024 -7435712 UP 11 -7435712 1024 1024 -7435877 DOWN 11 -7435877 0 1024 -7435902 UP 11 -7435902 1024 1024 -7436645 BEEP1 -7436645 BEEP2 -~~~ -~~~ -~~~ -7436666 1024 33555456 -~~~ -7436816 1024 1024 -7444254 DOWN 11 -7444254 0 1024 -~~~ -~~~ -7444275 0 0 -~~~ -~~~ -7444277 0 1 -~~~ -~~~ -7444279 0 3 -~~~ -~~~ -7444281 0 7 -~~~ -~~~ -7444283 0 15 -~~~ -~~~ -7444285 0 31 -~~~ -~~~ -7444286 0 63 -~~~ -~~~ -7444288 0 127 -~~~ -~~~ -7444290 0 255 -7444291 homeCount = 135 -7444292 waitCount = 69 -7444292 ripCount = 56 -7444293 locktype1 = 2 -7444293 locktype2 = 9 -7444294 locktype3 = 7 -7444315 goalCount = 9 -7444315 goalTotal = 49 -7444316 otherCount = 68 -~~~ -7444317 CURRENTGOAL IS [7] -~~~ -7444336 UP 11 -7444336 1024 255 -7446175 DOWN 11 -7446175 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7446211 homeCount = 135 -7446212 waitCount = 69 -7446212 ripCount = 56 -7446213 locktype1 = 2 -7446213 locktype2 = 9 -7446214 locktype3 = 7 -7446214 goalCount = 9 -7446215 goalTotal = 49 -7446215 otherCount = 68 -~~~ -7446216 CURRENTGOAL IS [7] -~~~ -7448886 UP 7 -7448886 64 255 -~~~ -~~~ -7448911 outer reward -~~~ -7448911 64 4194559 -~~~ -~~~ -7448916 outerreps = 8 -~~~ -~~~ -7449078 DOWN 7 -7449078 0 4194559 -~~~ -~~~ -7449097 0 4194558 -~~~ -~~~ -7449099 0 4194556 -~~~ -~~~ -7449100 0 4194552 -~~~ -~~~ -7449102 0 4194544 -~~~ -~~~ -7449104 0 4194528 -~~~ -~~~ -7449106 0 4194496 -~~~ -~~~ -7449108 0 4194432 -~~~ -~~~ -7449110 0 4194304 -~~~ -~~~ -7449111 0 4194816 -7449112 homeCount = 135 -7449113 waitCount = 69 -7449113 ripCount = 56 -7449134 locktype1 = 2 -7449135 locktype2 = 9 -7449135 locktype3 = 7 -7449136 goalCount = 0 -7449136 goalTotal = 50 -7449137 otherCount = 68 -~~~ -7449142 64 4194816 -7449361 64 512 -7449716 DOWN 7 -7449716 0 512 -7449737 64 512 -7450009 DOWN 7 -7450009 0 512 -7450016 64 512 -7460272 DOWN 7 -7460272 0 512 -7460347 64 512 -7460391 DOWN 7 -7460391 0 512 -7460925 64 512 -7460936 DOWN 7 -7460936 0 512 -7466038 UP 10 -7466038 waslock = 0 -7466038 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7466064 512 16777728 -~~~ -7466214 512 512 -7466234 DOWN 10 -7466234 0 512 -~~~ -~~~ -7466261 0 2560 -~~~ -~~~ -7466262 0 2048 -7466263 homeCount = 136 -7466264 waitCount = 69 -7466264 ripCount = 56 -7466265 locktype1 = 2 -7466265 locktype2 = 9 -7466266 locktype3 = 7 -7466266 goalCount = 0 -7466267 goalTotal = 50 -7466267 otherCount = 68 -~~~ -7466338 UP 10 -7466339 waslock = 0 -7466338 512 2048 -~~~ -7473072 DOWN 10 -7473072 0 2048 -~~~ -~~~ -~~~ -~~~ -7473098 homeCount = 136 -7473099 waitCount = 69 -7473099 ripCount = 56 -7473100 locktype1 = 2 -7473100 locktype2 = 9 -7473100 locktype3 = 7 -7473101 goalCount = 0 -7473101 goalTotal = 50 -7473102 otherCount = 68 -~~~ -7473122 UP 10 -7473122 waslock = 0 -7473122 512 2048 -~~~ -7473189 DOWN 10 -7473189 0 2048 -~~~ -~~~ -~~~ -~~~ -7473215 homeCount = 136 -7473216 waitCount = 69 -7473216 ripCount = 56 -7473217 locktype1 = 2 -7473217 locktype2 = 9 -7473218 locktype3 = 7 -7473218 goalCount = 0 -7473219 goalTotal = 50 -7473219 otherCount = 68 -~~~ -7473271 UP 10 -7473271 waslock = 0 -7473271 512 2048 -7473287 DOWN 10 -7473287 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -7473310 homeCount = 136 -7473310 waitCount = 69 -7473311 ripCount = 56 -7473311 locktype1 = 2 -7473312 locktype2 = 9 -7473312 locktype3 = 7 -7473313 goalCount = 0 -7473313 goalTotal = 50 -7473314 otherCount = 68 -~~~ -7475182 UP 12 -7475182 2048 2048 -7478357 DOWN 12 -7478357 0 2048 -7478404 UP 12 -7478404 2048 2048 -7478682 CLICK1 -7478682 CLICK2 -~~~ -~~~ -~~~ -7478704 2048 67110912 -~~~ -7478854 2048 2048 -7487545 DOWN 12 -7487545 0 2048 -~~~ -~~~ -7487563 0 0 -~~~ -~~~ -7487565 0 1 -~~~ -~~~ -7487567 0 3 -~~~ -~~~ -7487569 0 7 -~~~ -~~~ -7487571 0 15 -~~~ -~~~ -7487572 0 31 -~~~ -~~~ -7487574 0 63 -~~~ -~~~ -7487576 0 127 -~~~ -~~~ -7487578 0 255 -7487579 homeCount = 136 -7487579 waitCount = 70 -7487580 ripCount = 56 -7487580 locktype1 = 2 -7487581 locktype2 = 9 -7487581 locktype3 = 7 -7487602 goalCount = 0 -7487603 goalTotal = 50 -7487603 otherCount = 68 -~~~ -7487604 CURRENTGOAL IS [1] -~~~ -7487614 UP 12 -7487614 2048 255 -7487665 DOWN 12 -7487665 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7487702 homeCount = 136 -7487703 waitCount = 70 -7487703 ripCount = 56 -7487704 locktype1 = 2 -7487704 locktype2 = 9 -7487705 locktype3 = 7 -7487705 goalCount = 0 -7487706 goalTotal = 50 -7487706 otherCount = 68 -~~~ -7487707 CURRENTGOAL IS [1] -~~~ -7497495 UP 7 -7497495 64 255 -~~~ -~~~ -7497692 DOWN 7 -7497692 0 255 -~~~ -~~~ -7497716 0 254 -~~~ -~~~ -7497718 0 252 -~~~ -~~~ -7497719 0 248 -~~~ -~~~ -7497721 0 240 -~~~ -~~~ -7497723 0 224 -~~~ -~~~ -7497725 0 192 -~~~ -~~~ -7497727 0 128 -~~~ -~~~ -7497728 0 0 -~~~ -~~~ -7497730 0 512 -7497731 homeCount = 136 -7497732 waitCount = 70 -7497732 ripCount = 56 -7497733 locktype1 = 2 -7497733 locktype2 = 9 -7497754 locktype3 = 7 -7497754 goalCount = 0 -7497755 goalTotal = 50 -7497755 otherCount = 69 -~~~ -7497775 64 512 -7498876 DOWN 7 -7498876 0 512 -7498954 64 512 -7498988 DOWN 7 -7498988 0 512 -7503794 UP 10 -7503795 waslock = 0 -7503794 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7503825 512 16777728 -~~~ -7503975 512 512 -7504038 DOWN 10 -7504038 0 512 -~~~ -~~~ -7504058 0 2560 -~~~ -~~~ -7504060 0 2048 -7504061 homeCount = 137 -7504062 waitCount = 70 -7504062 ripCount = 56 -7504063 locktype1 = 2 -7504063 locktype2 = 9 -7504064 locktype3 = 7 -7504064 goalCount = 0 -7504065 goalTotal = 50 -7504065 otherCount = 69 -~~~ -7504073 UP 10 -7504073 waslock = 0 -7504073 512 2048 -~~~ -7509916 DOWN 10 -7509916 0 2048 -~~~ -~~~ -~~~ -~~~ -7509944 homeCount = 137 -7509945 waitCount = 70 -7509945 ripCount = 56 -7509946 locktype1 = 2 -7509946 locktype2 = 9 -7509947 locktype3 = 7 -7509947 goalCount = 0 -7509948 goalTotal = 50 -7509948 otherCount = 69 -~~~ -7509968 UP 10 -7509968 waslock = 0 -7509968 512 2048 -~~~ -7510017 DOWN 10 -7510017 0 2048 -~~~ -~~~ -~~~ -~~~ -7510044 homeCount = 137 -7510045 waitCount = 70 -7510045 ripCount = 56 -7510046 locktype1 = 2 -7510046 locktype2 = 9 -7510047 locktype3 = 7 -7510047 goalCount = 0 -7510048 goalTotal = 50 -7510048 otherCount = 69 -~~~ -7512207 UP 12 -7512207 2048 2048 -7515181 DOWN 12 -7515181 0 2048 -7515189 UP 12 -7515189 2048 2048 -7515191 DOWN 12 -7515191 0 2048 -7515212 UP 12 -7515212 2048 2048 -7518208 CLICK1 -7518208 CLICK2 -~~~ -~~~ -~~~ -7518231 2048 67110912 -~~~ -7518381 2048 2048 -7527917 DOWN 12 -7527917 0 2048 -~~~ -~~~ -7527940 0 0 -~~~ -~~~ -7527942 0 1 -~~~ -~~~ -7527944 0 3 -~~~ -~~~ -7527946 0 7 -~~~ -~~~ -7527948 0 15 -~~~ -~~~ -7527949 0 31 -~~~ -~~~ -7527951 0 63 -~~~ -~~~ -7527953 0 127 -~~~ -~~~ -7527955 0 255 -7527956 homeCount = 137 -7527956 waitCount = 71 -7527957 ripCount = 56 -7527957 locktype1 = 2 -7527958 locktype2 = 9 -7527958 locktype3 = 7 -7527979 goalCount = 0 -7527980 goalTotal = 50 -7527980 otherCount = 69 -~~~ -7527981 CURRENTGOAL IS [1] -~~~ -7535073 UP 7 -7535073 64 255 -~~~ -~~~ -7535887 DOWN 7 -7535887 0 255 -~~~ -~~~ -7535912 0 254 -~~~ -~~~ -7535914 0 252 -~~~ -~~~ -7535916 0 248 -~~~ -~~~ -7535917 0 240 -~~~ -~~~ -7535919 0 224 -~~~ -~~~ -7535921 0 192 -~~~ -~~~ -7535923 0 128 -~~~ -~~~ -7535925 0 0 -~~~ -~~~ -7535927 0 512 -7535928 homeCount = 137 -7535928 waitCount = 71 -7535929 ripCount = 56 -7535929 locktype1 = 2 -7535930 locktype2 = 9 -7535951 locktype3 = 7 -7535951 goalCount = 0 -7535952 goalTotal = 50 -7535952 otherCount = 70 -~~~ -7541930 UP 10 -7541931 waslock = 0 -7541930 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7541958 512 16777728 -~~~ -7542108 512 512 -7542121 DOWN 10 -7542121 0 512 -~~~ -~~~ -7542138 0 2560 -~~~ -~~~ -7542140 0 2048 -7542141 homeCount = 138 -7542142 waitCount = 71 -7542142 ripCount = 56 -7542143 locktype1 = 2 -7542143 locktype2 = 9 -7542144 locktype3 = 7 -7542144 goalCount = 0 -7542145 goalTotal = 50 -7542145 otherCount = 70 -~~~ -7542404 UP 10 -7542404 waslock = 0 -7542404 512 2048 -~~~ -7548488 DOWN 10 -7548488 0 2048 -~~~ -~~~ -~~~ -~~~ -7548516 homeCount = 138 -7548516 waitCount = 71 -7548517 ripCount = 56 -7548517 locktype1 = 2 -7548517 locktype2 = 9 -7548518 locktype3 = 7 -7548518 goalCount = 0 -7548519 goalTotal = 50 -7548519 otherCount = 70 -~~~ -7548548 UP 10 -7548549 waslock = 0 -7548548 512 2048 -~~~ -7548586 DOWN 10 -7548586 0 2048 -~~~ -~~~ -~~~ -~~~ -7548609 homeCount = 138 -7548609 waitCount = 71 -7548610 ripCount = 56 -7548610 locktype1 = 2 -7548611 locktype2 = 9 -7548611 locktype3 = 7 -7548612 goalCount = 0 -7548612 goalTotal = 50 -7548613 otherCount = 70 -~~~ -7550864 UP 12 -7550864 2048 2048 -7551269 DOWN 12 -7551269 0 2048 -7551469 LOCKOUT 3 -~~~ -7551491 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7551497 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7551703 UP 12 -7551703 2048 0 -7552563 DOWN 12 -7552563 0 0 -7556268 512 0 -7557015 0 0 -7557777 512 0 -7557804 0 0 -7570040 512 0 -7570455 0 0 -7570527 512 0 -7570550 0 0 -7576491 LOCKEND -~~~ -~~~ -~~~ -7576514 0 512 -7579140 UP 10 -7579140 waslock = 0 -7579140 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7579169 512 16777728 -~~~ -7579319 512 512 -7579898 DOWN 10 -7579898 0 512 -7579912 UP 10 -7579913 waslock = 0 -7579912 512 512 -~~~ -~~~ -7579932 512 1536 -~~~ -~~~ -7579934 512 1024 -7579935 homeCount = 139 -7579936 waitCount = 71 -7579936 ripCount = 56 -7579937 locktype1 = 2 -7579937 locktype2 = 9 -7579938 locktype3 = 8 -7579938 goalCount = 0 -7579939 goalTotal = 50 -7579939 otherCount = 70 -~~~ -~~~ -7589333 DOWN 10 -7589333 0 1024 -~~~ -~~~ -~~~ -~~~ -7589354 homeCount = 139 -7589354 waitCount = 71 -7589355 ripCount = 56 -7589355 locktype1 = 2 -7589356 locktype2 = 9 -7589356 locktype3 = 8 -7589357 goalCount = 0 -7589357 goalTotal = 50 -7589358 otherCount = 70 -~~~ -7589393 UP 10 -7589393 waslock = 0 -7589393 512 1024 -~~~ -7589430 DOWN 10 -7589430 0 1024 -~~~ -~~~ -~~~ -~~~ -7589457 homeCount = 139 -7589458 waitCount = 71 -7589458 ripCount = 56 -7589459 locktype1 = 2 -7589459 locktype2 = 9 -7589460 locktype3 = 8 -7589460 goalCount = 0 -7589461 goalTotal = 50 -7589461 otherCount = 70 -~~~ -7590928 UP 11 -7590928 1024 1024 -7592834 DOWN 11 -7592834 0 1024 -7592866 UP 11 -7592866 1024 1024 -7593816 DOWN 11 -7593816 0 1024 -7593925 UP 11 -7593925 1024 1024 -7593962 DOWN 11 -7593962 0 1024 -7594016 UP 11 -7594016 1024 1024 -7594027 DOWN 11 -7594027 0 1024 -7594053 UP 11 -7594053 1024 1024 -7596310 DOWN 11 -7596310 0 1024 -7596336 UP 11 -7596336 1024 1024 -7596428 BEEP1 -7596428 BEEP2 -~~~ -~~~ -~~~ -7596454 1024 33555456 -~~~ -7596604 1024 1024 -7604212 DOWN 11 -7604212 0 1024 -~~~ -~~~ -7604232 0 0 -~~~ -~~~ -7604234 0 1 -~~~ -~~~ -7604236 0 3 -~~~ -~~~ -7604238 0 7 -~~~ -~~~ -7604240 0 15 -~~~ -~~~ -7604241 0 31 -~~~ -~~~ -7604243 0 63 -~~~ -~~~ -7604245 0 127 -~~~ -7604246 UP 11 -7604246 1024 127 -~~~ -7604248 homeCount = 139 -7604249 waitCount = 71 -7604249 ripCount = 57 -7604250 locktype1 = 2 -7604250 locktype2 = 9 -7604271 locktype3 = 8 -7604272 goalCount = 0 -7604272 goalTotal = 50 -7604273 otherCount = 70 -~~~ -7604274 CURRENTGOAL IS [1] -~~~ -7604274 1024 255 -7607328 DOWN 11 -7607328 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7607363 homeCount = 139 -7607363 waitCount = 71 -7607364 ripCount = 57 -7607364 locktype1 = 2 -7607365 locktype2 = 9 -7607365 locktype3 = 8 -7607366 goalCount = 0 -7607366 goalTotal = 50 -7607367 otherCount = 70 -~~~ -7607368 CURRENTGOAL IS [1] -~~~ -7608096 UP 11 -7608096 1024 255 -7608235 DOWN 11 -7608235 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7608273 homeCount = 139 -7608273 waitCount = 71 -7608274 ripCount = 57 -7608274 locktype1 = 2 -7608275 locktype2 = 9 -7608275 locktype3 = 8 -7608276 goalCount = 0 -7608276 goalTotal = 50 -7608277 otherCount = 70 -~~~ -7608278 CURRENTGOAL IS [1] -~~~ -7613872 UP 5 -7613872 16 255 -~~~ -~~~ -7614090 DOWN 5 -7614090 0 255 -~~~ -~~~ -7614106 0 254 -~~~ -~~~ -7614108 0 252 -~~~ -~~~ -7614110 0 248 -~~~ -~~~ -7614112 0 240 -~~~ -~~~ -7614113 0 224 -~~~ -~~~ -7614115 0 192 -~~~ -~~~ -7614117 0 128 -~~~ -~~~ -7614119 0 0 -~~~ -~~~ -7614121 0 512 -7614122 homeCount = 139 -7614122 waitCount = 71 -7614123 ripCount = 57 -7614123 locktype1 = 2 -7614124 locktype2 = 9 -7614145 locktype3 = 8 -7614145 goalCount = 0 -7614146 goalTotal = 50 -7614146 otherCount = 71 -~~~ -7614151 16 512 -7614918 DOWN 5 -7614918 0 512 -7615042 16 512 -7615066 DOWN 5 -7615066 0 512 -7620314 UP 10 -7620314 waslock = 0 -7620314 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7620344 512 16777728 -~~~ -7620494 512 512 -7620617 DOWN 10 -7620617 0 512 -~~~ -~~~ -7620642 0 2560 -~~~ -~~~ -7620644 0 2048 -7620645 homeCount = 140 -7620646 waitCount = 71 -7620646 ripCount = 57 -7620647 locktype1 = 2 -7620647 locktype2 = 9 -7620648 locktype3 = 8 -7620648 goalCount = 0 -7620649 goalTotal = 50 -7620649 otherCount = 71 -~~~ -7620663 UP 10 -7620663 waslock = 0 -7620663 512 2048 -~~~ -7624814 DOWN 10 -7624814 0 2048 -~~~ -~~~ -~~~ -~~~ -7624833 homeCount = 140 -7624834 waitCount = 71 -7624834 ripCount = 57 -7624835 locktype1 = 2 -7624835 locktype2 = 9 -7624836 locktype3 = 8 -7624836 goalCount = 0 -7624837 goalTotal = 50 -7624837 otherCount = 71 -~~~ -7624849 UP 10 -7624849 waslock = 0 -7624849 512 2048 -~~~ -7624910 DOWN 10 -7624910 0 2048 -~~~ -~~~ -~~~ -~~~ -7624933 homeCount = 140 -7624934 waitCount = 71 -7624934 ripCount = 57 -7624935 locktype1 = 2 -7624935 locktype2 = 9 -7624936 locktype3 = 8 -7624936 goalCount = 0 -7624937 goalTotal = 50 -7624937 otherCount = 71 -~~~ -7627214 UP 12 -7627214 2048 2048 -7629405 DOWN 12 -7629405 0 2048 -7629414 UP 12 -7629414 2048 2048 -7630600 DOWN 12 -7630600 0 2048 -7630608 UP 12 -7630608 2048 2048 -7630610 DOWN 12 -7630610 0 2048 -7630629 UP 12 -7630629 2048 2048 -7631348 DOWN 12 -7631348 0 2048 -7631373 UP 12 -7631373 2048 2048 -7631500 DOWN 12 -7631500 0 2048 -7631549 UP 12 -7631549 2048 2048 -7632751 DOWN 12 -7632751 0 2048 -7632791 UP 12 -7632791 2048 2048 -7634214 CLICK1 -7634214 CLICK2 -~~~ -~~~ -~~~ -7634234 2048 67110912 -~~~ -7634384 2048 2048 -7641364 DOWN 12 -7641364 0 2048 -~~~ -~~~ -7641390 0 0 -~~~ -~~~ -7641392 0 1 -~~~ -~~~ -7641394 0 3 -~~~ -~~~ -7641396 0 7 -~~~ -~~~ -7641398 0 15 -~~~ -~~~ -7641400 0 31 -~~~ -~~~ -7641401 0 63 -~~~ -~~~ -7641403 UP 12 -7641403 2048 127 -~~~ -~~~ -7641405 2048 255 -7641406 homeCount = 140 -7641407 waitCount = 72 -7641407 ripCount = 57 -7641408 locktype1 = 2 -7641429 locktype2 = 9 -7641429 locktype3 = 8 -7641429 goalCount = 0 -7641430 goalTotal = 50 -7641430 otherCount = 71 -~~~ -7641432 CURRENTGOAL IS [1] -~~~ -7641495 DOWN 12 -7641495 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7641537 homeCount = 140 -7641537 waitCount = 72 -7641538 ripCount = 57 -7641538 locktype1 = 2 -7641539 locktype2 = 9 -7641539 locktype3 = 8 -7641540 goalCount = 0 -7641540 goalTotal = 50 -7641540 otherCount = 71 -~~~ -7641542 CURRENTGOAL IS [1] -~~~ -7646776 UP 2 -7646776 2 255 -~~~ -~~~ -7647342 DOWN 2 -7647342 0 255 -~~~ -~~~ -7647363 0 254 -~~~ -~~~ -7647365 0 252 -~~~ -~~~ -7647367 0 248 -~~~ -~~~ -7647368 0 240 -~~~ -~~~ -7647370 0 224 -~~~ -~~~ -7647372 0 192 -~~~ -~~~ -7647374 0 128 -~~~ -~~~ -7647376 0 0 -~~~ -~~~ -7647377 0 512 -7647378 homeCount = 140 -7647379 waitCount = 72 -7647379 ripCount = 57 -7647380 locktype1 = 2 -7647380 locktype2 = 9 -7647402 locktype3 = 8 -7647402 goalCount = 0 -7647403 goalTotal = 50 -7647403 otherCount = 72 -~~~ -7651568 UP 10 -7651569 waslock = 0 -7651568 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7651599 512 16777728 -~~~ -7651749 512 512 -7651776 DOWN 10 -7651776 0 512 -~~~ -~~~ -7651794 0 2560 -~~~ -~~~ -7651796 0 2048 -7651797 homeCount = 141 -7651797 waitCount = 72 -7651798 ripCount = 57 -7651798 locktype1 = 2 -7651799 locktype2 = 9 -7651799 locktype3 = 8 -7651800 goalCount = 0 -7651800 goalTotal = 50 -7651801 otherCount = 72 -~~~ -7651924 UP 10 -7651924 waslock = 0 -7651924 512 2048 -~~~ -7657794 DOWN 10 -7657794 0 2048 -~~~ -~~~ -~~~ -~~~ -7657816 homeCount = 141 -7657816 waitCount = 72 -7657817 ripCount = 57 -7657817 locktype1 = 2 -7657817 locktype2 = 9 -7657818 locktype3 = 8 -7657818 goalCount = 0 -7657819 goalTotal = 50 -7657819 otherCount = 72 -~~~ -7657839 UP 10 -7657839 waslock = 0 -7657839 512 2048 -~~~ -7657896 DOWN 10 -7657896 0 2048 -~~~ -~~~ -~~~ -~~~ -7657929 homeCount = 141 -7657929 waitCount = 72 -7657930 ripCount = 57 -7657930 locktype1 = 2 -7657931 locktype2 = 9 -7657931 locktype3 = 8 -7657932 goalCount = 0 -7657932 goalTotal = 50 -7657933 otherCount = 72 -~~~ -7657955 UP 10 -7657956 waslock = 0 -7657955 512 2048 -~~~ -7658197 DOWN 10 -7658197 0 2048 -~~~ -~~~ -~~~ -~~~ -7658232 homeCount = 141 -7658232 waitCount = 72 -7658233 ripCount = 57 -7658233 locktype1 = 2 -7658234 locktype2 = 9 -7658234 locktype3 = 8 -7658235 goalCount = 0 -7658235 goalTotal = 50 -7658235 otherCount = 72 -~~~ -7658246 UP 10 -7658246 waslock = 0 -7658246 512 2048 -~~~ -7659679 DOWN 10 -7659679 0 2048 -~~~ -~~~ -~~~ -~~~ -7659709 homeCount = 141 -7659710 waitCount = 72 -7659710 ripCount = 57 -7659711 locktype1 = 2 -7659711 locktype2 = 9 -7659712 locktype3 = 8 -7659712 goalCount = 0 -7659712 goalTotal = 50 -7659713 otherCount = 72 -~~~ -7661563 UP 12 -7661563 2048 2048 -7662992 DOWN 12 -7662992 0 2048 -7663010 UP 12 -7663010 2048 2048 -7665836 DOWN 12 -7665836 0 2048 -7665848 UP 12 -7665848 2048 2048 -7667063 CLICK1 -7667063 CLICK2 -~~~ -~~~ -~~~ -7667083 2048 67110912 -~~~ -7667233 2048 2048 -7673720 DOWN 12 -7673720 0 2048 -~~~ -~~~ -7673742 0 0 -~~~ -~~~ -7673744 0 1 -~~~ -~~~ -7673746 0 3 -~~~ -~~~ -7673747 0 7 -~~~ -~~~ -7673749 0 15 -~~~ -~~~ -7673751 0 31 -~~~ -~~~ -7673753 0 63 -~~~ -~~~ -7673755 0 127 -~~~ -~~~ -7673757 0 255 -7673758 homeCount = 141 -7673758 waitCount = 73 -7673759 ripCount = 57 -7673759 locktype1 = 2 -7673760 locktype2 = 9 -7673760 locktype3 = 8 -7673781 goalCount = 0 -7673782 goalTotal = 50 -7673782 otherCount = 72 -~~~ -7673783 CURRENTGOAL IS [1] -~~~ -7701490 UP 6 -7701490 32 255 -~~~ -~~~ -7702442 DOWN 6 -7702442 0 255 -~~~ -~~~ -7702466 0 254 -~~~ -~~~ -7702468 0 252 -~~~ -~~~ -7702470 0 248 -~~~ -~~~ -7702472 0 240 -~~~ -~~~ -7702474 0 224 -~~~ -~~~ -7702476 0 192 -~~~ -~~~ -7702477 0 128 -~~~ -~~~ -7702479 0 0 -~~~ -~~~ -7702481 0 512 -7702482 homeCount = 141 -7702483 waitCount = 73 -7702483 ripCount = 57 -7702484 locktype1 = 2 -7702484 locktype2 = 9 -7702505 locktype3 = 8 -7702506 goalCount = 0 -7702506 goalTotal = 50 -7702507 otherCount = 73 -~~~ -7702548 32 512 -7702742 DOWN 6 -7702742 0 512 -7707698 UP 10 -7707698 waslock = 0 -7707698 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7707722 512 16777728 -~~~ -7707872 512 512 -7707990 DOWN 10 -7707990 0 512 -~~~ -~~~ -7708015 0 1536 -~~~ -~~~ -7708016 0 1024 -7708017 homeCount = 142 -7708018 waitCount = 73 -7708018 ripCount = 57 -7708019 locktype1 = 2 -7708019 locktype2 = 9 -7708020 locktype3 = 8 -7708020 goalCount = 0 -7708021 goalTotal = 50 -7708021 otherCount = 73 -~~~ -7708107 UP 10 -7708107 waslock = 0 -7708107 512 1024 -~~~ -7712341 DOWN 10 -7712341 0 1024 -~~~ -~~~ -~~~ -~~~ -7712370 homeCount = 142 -7712371 waitCount = 73 -7712371 ripCount = 57 -7712372 locktype1 = 2 -7712372 locktype2 = 9 -7712373 locktype3 = 8 -7712373 goalCount = 0 -7712374 goalTotal = 50 -7712374 otherCount = 73 -~~~ -7714949 UP 11 -7714949 1024 1024 -7715014 DOWN 11 -7715014 0 1024 -7715081 UP 11 -7715081 1024 1024 -7717142 DOWN 11 -7717142 0 1024 -7717158 UP 11 -7717158 1024 1024 -7718192 DOWN 11 -7718192 0 1024 -7718202 UP 11 -7718202 1024 1024 -7720449 BEEP1 -7720449 BEEP2 -~~~ -~~~ -~~~ -7720468 1024 33555456 -~~~ -7720618 1024 1024 -7720992 DOWN 11 -7720992 0 1024 -7721019 UP 11 -7721019 1024 1024 -~~~ -~~~ -7721117 1024 0 -~~~ -~~~ -7721119 1024 1 -~~~ -~~~ -7721121 1024 3 -~~~ -~~~ -7721123 1024 7 -~~~ -~~~ -7721124 1024 15 -~~~ -~~~ -7721126 1024 31 -~~~ -~~~ -7721128 1024 63 -~~~ -~~~ -7721130 1024 127 -~~~ -~~~ -7721132 1024 255 -7721133 homeCount = 142 -7721133 waitCount = 73 -7721134 ripCount = 58 -7721134 locktype1 = 2 -7721155 locktype2 = 9 -7721155 locktype3 = 8 -7721156 goalCount = 0 -7721156 goalTotal = 50 -7721157 otherCount = 73 -~~~ -7721158 CURRENTGOAL IS [1] -~~~ -7721158 DOWN 11 -7721158 0 255 -7721177 UP 11 -7721177 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7721207 homeCount = 142 -7721208 waitCount = 73 -7721208 ripCount = 58 -7721209 locktype1 = 2 -7721209 locktype2 = 9 -7721210 locktype3 = 8 -7721210 goalCount = 0 -7721211 goalTotal = 50 -7721211 otherCount = 73 -~~~ -7721213 CURRENTGOAL IS [1] -~~~ -7728036 DOWN 11 -7728036 0 255 -7728055 UP 11 -7728055 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7728075 homeCount = 142 -7728076 waitCount = 73 -7728076 ripCount = 58 -7728077 locktype1 = 2 -7728077 locktype2 = 9 -7728078 locktype3 = 8 -7728078 goalCount = 0 -7728079 goalTotal = 50 -7728079 otherCount = 73 -~~~ -7728080 CURRENTGOAL IS [1] -~~~ -7728150 DOWN 11 -7728150 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7728188 homeCount = 142 -7728189 waitCount = 73 -7728189 ripCount = 58 -7728190 locktype1 = 2 -7728190 locktype2 = 9 -7728191 locktype3 = 8 -7728191 goalCount = 0 -7728192 goalTotal = 50 -7728192 otherCount = 73 -~~~ -7728193 CURRENTGOAL IS [1] -~~~ -7732180 UP 8 -7732180 128 255 -~~~ -~~~ -7732779 DOWN 8 -7732779 0 255 -~~~ -~~~ -7732803 0 254 -~~~ -~~~ -7732805 0 252 -~~~ -~~~ -7732807 0 248 -~~~ -~~~ -7732809 0 240 -~~~ -~~~ -7732811 0 224 -~~~ -~~~ -7732812 0 192 -~~~ -~~~ -7732814 0 128 -~~~ -~~~ -7732816 0 0 -~~~ -~~~ -7732818 0 512 -7732819 homeCount = 142 -7732819 waitCount = 73 -7732820 ripCount = 58 -7732820 locktype1 = 2 -7732821 locktype2 = 9 -7732842 locktype3 = 8 -7732842 goalCount = 0 -7732843 goalTotal = 50 -7732843 otherCount = 74 -~~~ -7738334 UP 10 -7738334 waslock = 0 -7738334 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7738360 512 16777728 -~~~ -7738509 512 512 -7743306 DOWN 10 -7743306 0 512 -~~~ -~~~ -7743322 0 1536 -~~~ -~~~ -7743324 0 1024 -7743325 homeCount = 143 -7743326 waitCount = 73 -7743326 ripCount = 58 -7743327 locktype1 = 2 -7743327 locktype2 = 9 -7743328 locktype3 = 8 -7743328 goalCount = 0 -7743329 goalTotal = 50 -7743329 otherCount = 74 -~~~ -7743362 UP 10 -7743363 waslock = 0 -7743362 512 1024 -~~~ -7743405 DOWN 10 -7743405 0 1024 -~~~ -~~~ -~~~ -~~~ -7743418 homeCount = 143 -7743418 waitCount = 73 -7743419 ripCount = 58 -7743419 locktype1 = 2 -7743419 locktype2 = 9 -7743420 locktype3 = 8 -7743420 goalCount = 0 -7743421 goalTotal = 50 -7743421 otherCount = 74 -~~~ -7745977 UP 11 -7745977 1024 1024 -7748173 DOWN 11 -7748173 0 1024 -7748196 UP 11 -7748196 1024 1024 -7748905 DOWN 11 -7748905 0 1024 -7748925 UP 11 -7748925 1024 1024 -7748966 DOWN 11 -7748966 0 1024 -7748995 UP 11 -7748995 1024 1024 -7749281 DOWN 11 -7749281 0 1024 -7749328 UP 11 -7749328 1024 1024 -7749977 BEEP1 -7749977 BEEP2 -~~~ -~~~ -~~~ -7750008 1024 33555456 -~~~ -7750158 1024 1024 -7750253 DOWN 11 -7750253 0 1024 -7750272 UP 11 -7750272 1024 1024 -7750402 DOWN 11 -7750402 0 1024 -7750430 UP 11 -7750430 1024 1024 -~~~ -~~~ -7750674 1024 0 -~~~ -~~~ -7750675 1024 1 -~~~ -~~~ -7750677 1024 3 -~~~ -~~~ -7750679 1024 7 -~~~ -~~~ -7750681 1024 15 -~~~ -~~~ -7750683 1024 31 -~~~ -~~~ -7750685 1024 63 -~~~ -~~~ -7750686 1024 127 -~~~ -~~~ -7750688 1024 255 -7750689 homeCount = 143 -7750690 waitCount = 73 -7750690 ripCount = 59 -7750691 locktype1 = 2 -7750711 locktype2 = 9 -7750712 locktype3 = 8 -7750712 goalCount = 0 -7750713 goalTotal = 50 -7750713 otherCount = 74 -~~~ -7750714 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7750742 homeCount = 143 -7750743 waitCount = 73 -7750743 ripCount = 59 -7750744 locktype1 = 2 -7750744 locktype2 = 9 -7750744 locktype3 = 8 -7750745 goalCount = 0 -7750745 goalTotal = 50 -7750746 otherCount = 74 -~~~ -7750747 CURRENTGOAL IS [1] -~~~ -7757155 DOWN 11 -7757155 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7757187 UP 11 -7757187 1024 255 -~~~ -~~~ -~~~ -7757191 homeCount = 143 -7757191 waitCount = 73 -7757192 ripCount = 59 -7757192 locktype1 = 2 -7757193 locktype2 = 9 -7757193 locktype3 = 8 -7757194 goalCount = 0 -7757194 goalTotal = 50 -7757195 otherCount = 74 -~~~ -7757196 CURRENTGOAL IS [1] -~~~ -7757216 DOWN 11 -7757216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7757258 homeCount = 143 -7757259 waitCount = 73 -7757259 ripCount = 59 -7757260 locktype1 = 2 -7757260 locktype2 = 9 -7757261 locktype3 = 8 -7757261 goalCount = 0 -7757262 goalTotal = 50 -7757262 otherCount = 74 -~~~ -7757263 CURRENTGOAL IS [1] -~~~ -7757290 UP 11 -7757290 1024 255 -7758580 DOWN 11 -7758580 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -7758604 UP 11 -7758604 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758616 homeCount = 143 -7758617 waitCount = 73 -7758617 ripCount = 59 -7758618 locktype1 = 2 -7758618 locktype2 = 9 -7758619 locktype3 = 8 -7758619 goalCount = 0 -7758620 goalTotal = 50 -7758620 otherCount = 74 -~~~ -7758621 CURRENTGOAL IS [1] -~~~ -7758633 DOWN 11 -7758633 0 255 -7758654 UP 11 -7758654 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758676 homeCount = 143 -7758677 waitCount = 73 -7758677 ripCount = 59 -7758678 locktype1 = 2 -7758678 locktype2 = 9 -7758679 locktype3 = 8 -7758679 goalCount = 0 -7758680 goalTotal = 50 -7758680 otherCount = 74 -~~~ -7758681 CURRENTGOAL IS [1] -~~~ -7758900 DOWN 11 -7758900 0 255 -7758918 UP 11 -7758918 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758939 homeCount = 143 -7758939 waitCount = 73 -7758940 ripCount = 59 -7758940 locktype1 = 2 -7758941 locktype2 = 9 -7758941 locktype3 = 8 -7758942 goalCount = 0 -7758942 goalTotal = 50 -7758943 otherCount = 74 -~~~ -7758944 CURRENTGOAL IS [1] -~~~ -7758953 DOWN 11 -7758953 0 255 -7758981 UP 11 -7758981 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7759001 homeCount = 143 -7759001 waitCount = 73 -7759002 ripCount = 59 -7759002 locktype1 = 2 -7759003 locktype2 = 9 -7759003 locktype3 = 8 -7759004 goalCount = 0 -7759004 goalTotal = 50 -7759005 otherCount = 74 -~~~ -7759006 CURRENTGOAL IS [1] -~~~ -7760612 DOWN 11 -7760612 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7760649 homeCount = 143 -7760649 waitCount = 73 -7760650 ripCount = 59 -7760650 locktype1 = 2 -7760651 locktype2 = 9 -7760651 locktype3 = 8 -7760652 goalCount = 0 -7760652 goalTotal = 50 -7760653 otherCount = 74 -~~~ -7760654 CURRENTGOAL IS [1] -~~~ -7766970 UP 4 -7766970 8 255 -~~~ -~~~ -7767557 DOWN 4 -7767557 0 255 -~~~ -~~~ -7767576 0 254 -~~~ -~~~ -7767578 0 252 -~~~ -~~~ -7767579 0 248 -~~~ -~~~ -7767581 0 240 -~~~ -~~~ -7767583 0 224 -~~~ -~~~ -7767585 0 192 -~~~ -~~~ -7767587 0 128 -~~~ -~~~ -7767589 0 0 -~~~ -~~~ -7767591 0 512 -7767591 homeCount = 143 -7767592 waitCount = 73 -7767592 ripCount = 59 -7767593 locktype1 = 2 -7767593 locktype2 = 9 -7767615 locktype3 = 8 -7767615 goalCount = 0 -7767616 goalTotal = 50 -7767616 otherCount = 75 -~~~ -7772489 UP 10 -7772489 waslock = 0 -7772489 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7772523 512 16777728 -~~~ -7772673 512 512 -7772757 DOWN 10 -7772757 0 512 -~~~ -~~~ -7772776 0 1536 -~~~ -~~~ -7772778 0 1024 -7772779 homeCount = 144 -7772780 waitCount = 73 -7772780 ripCount = 59 -7772781 locktype1 = 2 -7772781 locktype2 = 9 -7772782 locktype3 = 8 -7772782 goalCount = 0 -7772783 goalTotal = 50 -7772783 otherCount = 75 -~~~ -7772786 UP 10 -7772786 waslock = 0 -7772786 512 1024 -~~~ -7776498 DOWN 10 -7776498 0 1024 -~~~ -~~~ -~~~ -~~~ -7776519 homeCount = 144 -7776520 waitCount = 73 -7776520 ripCount = 59 -7776521 locktype1 = 2 -7776521 locktype2 = 9 -7776522 locktype3 = 8 -7776522 goalCount = 0 -7776523 goalTotal = 50 -7776523 otherCount = 75 -~~~ -7778339 UP 11 -7778339 1024 1024 -7781339 BEEP1 -7781339 BEEP2 -~~~ -~~~ -~~~ -7781360 1024 33555456 -~~~ -7781510 1024 1024 -7790808 DOWN 11 -7790808 0 1024 -~~~ -~~~ -7790827 0 0 -~~~ -~~~ -7790829 0 1 -~~~ -~~~ -7790831 0 3 -~~~ -~~~ -7790833 0 7 -~~~ -~~~ -7790835 0 15 -~~~ -~~~ -7790836 0 31 -~~~ -~~~ -7790838 0 63 -~~~ -~~~ -7790840 0 127 -~~~ -~~~ -7790842 0 255 -7790843 homeCount = 144 -7790843 waitCount = 73 -7790844 ripCount = 60 -7790844 locktype1 = 2 -7790845 locktype2 = 9 -7790866 locktype3 = 8 -7790866 goalCount = 0 -7790867 goalTotal = 50 -7790867 otherCount = 75 -~~~ -7790868 CURRENTGOAL IS [1] -~~~ -7817653 UP 5 -7817653 16 255 -~~~ -~~~ -7817945 DOWN 5 -7817945 0 255 -~~~ -~~~ -7817966 0 254 -~~~ -~~~ -7817968 0 252 -~~~ -~~~ -7817970 0 248 -~~~ -~~~ -7817972 0 240 -~~~ -~~~ -7817974 0 224 -~~~ -~~~ -7817976 0 192 -~~~ -~~~ -7817977 0 128 -~~~ -~~~ -7817979 0 0 -~~~ -~~~ -7817981 0 512 -7817982 homeCount = 144 -7817983 waitCount = 73 -7817983 ripCount = 60 -7817984 locktype1 = 2 -7817984 locktype2 = 9 -7818005 locktype3 = 8 -7818005 goalCount = 0 -7818006 goalTotal = 50 -7818006 otherCount = 76 -~~~ -7818129 16 512 -7819084 DOWN 5 -7819084 0 512 -7819102 16 512 -7819229 DOWN 5 -7819229 0 512 -7819556 16 512 -7819594 DOWN 5 -7819594 0 512 -7824936 UP 10 -7824937 waslock = 0 -7824936 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7824966 512 16777728 -~~~ -7825116 512 512 -7825293 DOWN 10 -7825293 0 512 -~~~ -~~~ -7825317 0 1536 -~~~ -~~~ -7825319 0 1024 -7825320 homeCount = 145 -7825321 waitCount = 73 -7825321 ripCount = 60 -7825322 locktype1 = 2 -7825322 locktype2 = 9 -7825323 locktype3 = 8 -7825323 goalCount = 0 -7825324 goalTotal = 50 -7825324 otherCount = 76 -~~~ -7825341 UP 10 -7825341 waslock = 0 -7825341 512 1024 -~~~ -7829403 DOWN 10 -7829403 0 1024 -~~~ -~~~ -~~~ -~~~ -7829431 homeCount = 145 -7829431 waitCount = 73 -7829432 ripCount = 60 -7829432 locktype1 = 2 -7829433 locktype2 = 9 -7829433 locktype3 = 8 -7829434 goalCount = 0 -7829434 goalTotal = 50 -7829435 otherCount = 76 -~~~ -7829941 UP 10 -7829941 waslock = 0 -7829941 512 1024 -~~~ -7831848 DOWN 10 -7831848 0 1024 -~~~ -~~~ -~~~ -~~~ -7831870 homeCount = 145 -7831871 waitCount = 73 -7831871 ripCount = 60 -7831872 locktype1 = 2 -7831872 locktype2 = 9 -7831872 locktype3 = 8 -7831873 goalCount = 0 -7831873 goalTotal = 50 -7831874 otherCount = 76 -~~~ -7831894 UP 10 -7831894 waslock = 0 -7831894 512 1024 -~~~ -7831944 DOWN 10 -7831944 0 1024 -~~~ -~~~ -~~~ -~~~ -7831972 homeCount = 145 -7831972 waitCount = 73 -7831973 ripCount = 60 -7831973 locktype1 = 2 -7831974 locktype2 = 9 -7831974 locktype3 = 8 -7831975 goalCount = 0 -7831975 goalTotal = 50 -7831976 otherCount = 76 -~~~ -7835528 UP 11 -7835528 1024 1024 -7837151 DOWN 11 -7837151 0 1024 -7837163 UP 11 -7837163 1024 1024 -7837648 DOWN 11 -7837648 0 1024 -7837684 UP 11 -7837684 1024 1024 -7838242 DOWN 11 -7838242 0 1024 -7838271 UP 11 -7838271 1024 1024 -7840891 DOWN 11 -7840891 0 1024 -7840902 UP 11 -7840902 1024 1024 -7842529 BEEP1 -7842529 BEEP2 -~~~ -~~~ -~~~ -7842549 1024 33555456 -~~~ -7842699 1024 1024 -7849088 DOWN 11 -7849088 0 1024 -~~~ -~~~ -7849110 0 0 -~~~ -~~~ -7849112 0 1 -~~~ -~~~ -7849114 0 3 -~~~ -~~~ -7849116 0 7 -~~~ -~~~ -7849118 0 15 -~~~ -~~~ -7849119 0 31 -~~~ -~~~ -7849121 0 63 -~~~ -~~~ -7849123 0 127 -~~~ -~~~ -7849125 0 255 -7849126 homeCount = 145 -7849126 waitCount = 73 -7849127 ripCount = 61 -7849127 locktype1 = 2 -7849128 locktype2 = 9 -7849128 locktype3 = 8 -7849149 goalCount = 0 -7849150 goalTotal = 50 -7849150 otherCount = 76 -~~~ -7849151 CURRENTGOAL IS [1] -~~~ -7855904 UP 1 -7855904 1 255 -~~~ -~~~ -7855933 outer reward -~~~ -7855933 1 65791 -~~~ -~~~ -7856383 1 255 -7864549 DOWN 1 -7864549 0 255 -~~~ -~~~ -7864571 0 254 -~~~ -~~~ -7864573 0 252 -~~~ -~~~ -7864574 0 248 -~~~ -~~~ -7864576 0 240 -~~~ -~~~ -7864578 0 224 -~~~ -~~~ -7864580 0 192 -~~~ -~~~ -7864582 0 128 -~~~ -~~~ -7864583 0 0 -~~~ -~~~ -7864585 0 512 -7864586 homeCount = 145 -7864587 waitCount = 73 -7864587 ripCount = 61 -7864588 locktype1 = 2 -7864588 locktype2 = 9 -7864610 locktype3 = 8 -7864610 goalCount = 1 -7864610 goalTotal = 51 -7864611 otherCount = 76 -~~~ -7868827 UP 10 -7868828 waslock = 0 -7868827 512 512 -~~~ -~~~ -7868851 DOWN 10 -7868851 0 512 -~~~ -~~~ -~~~ -7868854 0 16777728 -~~~ -7868866 UP 10 -7868866 waslock = 0 -7868866 512 16777728 -~~~ -~~~ -7868870 512 16779776 -~~~ -~~~ -7868872 512 16779264 -7868873 homeCount = 146 -7868873 waitCount = 73 -7868874 ripCount = 61 -7868874 locktype1 = 2 -7868875 locktype2 = 9 -7868875 locktype3 = 8 -7868876 goalCount = 1 -7868876 goalTotal = 51 -7868897 otherCount = 76 -~~~ -~~~ -7869004 512 2048 -7872166 DOWN 10 -7872166 0 2048 -~~~ -~~~ -~~~ -7872190 UP 10 -7872191 waslock = 0 -7872190 512 2048 -~~~ -7872192 homeCount = 146 -7872193 waitCount = 73 -7872193 ripCount = 61 -7872194 locktype1 = 2 -7872194 locktype2 = 9 -7872195 locktype3 = 8 -7872195 goalCount = 1 -7872196 goalTotal = 51 -7872196 otherCount = 76 -~~~ -~~~ -7872268 DOWN 10 -7872268 0 2048 -~~~ -~~~ -~~~ -~~~ -7872293 homeCount = 146 -7872293 waitCount = 73 -7872294 ripCount = 61 -7872294 locktype1 = 2 -7872295 locktype2 = 9 -7872295 locktype3 = 8 -7872296 goalCount = 1 -7872296 goalTotal = 51 -7872297 otherCount = 76 -~~~ -7872341 UP 10 -7872341 waslock = 0 -7872341 512 2048 -~~~ -7872384 DOWN 10 -7872384 0 2048 -~~~ -~~~ -~~~ -~~~ -7872419 homeCount = 146 -7872419 waitCount = 73 -7872420 ripCount = 61 -7872420 locktype1 = 2 -7872421 locktype2 = 9 -7872421 locktype3 = 8 -7872421 goalCount = 1 -7872422 goalTotal = 51 -7872422 otherCount = 76 -~~~ -7874412 UP 12 -7874412 2048 2048 -7877331 DOWN 12 -7877331 0 2048 -7877347 UP 12 -7877347 2048 2048 -7877792 DOWN 12 -7877792 0 2048 -7877797 UP 12 -7877796 2048 2048 -7877912 CLICK1 -7877912 CLICK2 -~~~ -~~~ -~~~ -7877935 2048 67110912 -~~~ -7878085 2048 2048 -7885038 DOWN 12 -7885038 0 2048 -~~~ -~~~ -7885060 0 0 -~~~ -~~~ -7885062 0 1 -~~~ -~~~ -7885064 0 3 -~~~ -~~~ -7885065 0 7 -~~~ -~~~ -7885067 0 15 -~~~ -~~~ -7885069 0 31 -~~~ -~~~ -7885071 0 63 -~~~ -~~~ -7885073 0 127 -~~~ -~~~ -7885074 0 255 -7885075 homeCount = 146 -7885076 waitCount = 74 -7885077 ripCount = 61 -7885077 locktype1 = 2 -7885078 locktype2 = 9 -7885099 locktype3 = 8 -7885099 goalCount = 1 -7885100 goalTotal = 51 -7885100 otherCount = 76 -~~~ -7885101 CURRENTGOAL IS [1] -~~~ -7894917 UP 8 -7894917 128 255 -~~~ -~~~ -7895450 DOWN 8 -7895450 0 255 -~~~ -~~~ -7895471 0 254 -~~~ -~~~ -7895473 0 252 -~~~ -~~~ -7895474 0 248 -~~~ -~~~ -7895476 0 240 -~~~ -~~~ -7895478 0 224 -~~~ -~~~ -7895480 0 192 -~~~ -~~~ -7895482 0 128 -~~~ -~~~ -7895484 0 0 -~~~ -~~~ -7895485 0 512 -7895486 homeCount = 146 -7895487 waitCount = 74 -7895487 ripCount = 61 -7895488 locktype1 = 2 -7895488 locktype2 = 9 -7895510 locktype3 = 8 -7895510 goalCount = 1 -7895511 goalTotal = 51 -7895511 otherCount = 77 -~~~ -7895776 128 512 -7895968 DOWN 8 -7895968 0 512 -7896139 128 512 -7896189 DOWN 8 -7896189 0 512 -7900458 UP 10 -7900458 waslock = 0 -7900458 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7900487 512 16777728 -~~~ -7900637 512 512 -7900779 DOWN 10 -7900779 0 512 -~~~ -~~~ -7900802 0 2560 -~~~ -~~~ -7900804 0 2048 -7900805 homeCount = 147 -7900805 waitCount = 74 -7900806 ripCount = 61 -7900806 locktype1 = 2 -7900807 locktype2 = 9 -7900807 locktype3 = 8 -7900808 goalCount = 1 -7900808 goalTotal = 51 -7900809 otherCount = 77 -~~~ -7900813 UP 10 -7900814 waslock = 0 -7900813 512 2048 -~~~ -7906111 DOWN 10 -7906111 0 2048 -~~~ -~~~ -~~~ -~~~ -7906135 homeCount = 147 -7906135 waitCount = 74 -7906136 ripCount = 61 -7906136 locktype1 = 2 -7906137 locktype2 = 9 -7906137 locktype3 = 8 -7906137 goalCount = 1 -7906138 goalTotal = 51 -7906138 otherCount = 77 -~~~ -7906159 UP 10 -7906159 waslock = 0 -7906159 512 2048 -~~~ -7906195 DOWN 10 -7906195 0 2048 -~~~ -~~~ -~~~ -~~~ -7906236 homeCount = 147 -7906236 waitCount = 74 -7906237 ripCount = 61 -7906237 locktype1 = 2 -7906238 locktype2 = 9 -7906238 locktype3 = 8 -7906239 goalCount = 1 -7906239 goalTotal = 51 -7906240 otherCount = 77 -~~~ -7908017 UP 12 -7908017 2048 2048 -7911017 CLICK1 -7911017 CLICK2 -~~~ -~~~ -~~~ -7911043 2048 67110912 -~~~ -7911193 2048 2048 -7911194 DOWN 12 -7911194 0 2048 -7911200 UP 12 -7911200 2048 2048 -~~~ -~~~ -7911226 2048 0 -~~~ -~~~ -7911228 2048 1 -~~~ -~~~ -7911230 2048 3 -~~~ -~~~ -7911232 2048 7 -~~~ -~~~ -7911233 2048 15 -~~~ -~~~ -7911235 2048 31 -~~~ -~~~ -7911237 2048 63 -~~~ -~~~ -7911239 2048 127 -~~~ -~~~ -7911241 2048 255 -7911242 homeCount = 147 -7911242 waitCount = 75 -7911243 ripCount = 61 -7911243 locktype1 = 2 -7911264 locktype2 = 9 -7911265 locktype3 = 8 -7911265 goalCount = 1 -7911265 goalTotal = 51 -7911266 otherCount = 77 -~~~ -7911267 CURRENTGOAL IS [1] -~~~ -7911361 DOWN 12 -7911361 0 255 -7911380 UP 12 -7911380 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7911397 homeCount = 147 -7911398 waitCount = 75 -7911399 ripCount = 61 -7911399 locktype1 = 2 -7911400 locktype2 = 9 -7911400 locktype3 = 8 -7911400 goalCount = 1 -7911401 goalTotal = 51 -7911401 otherCount = 77 -~~~ -7911403 CURRENTGOAL IS [1] -~~~ -7919722 DOWN 12 -7919722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7919758 homeCount = 147 -7919759 waitCount = 75 -7919759 ripCount = 61 -7919760 locktype1 = 2 -7919760 locktype2 = 9 -7919761 locktype3 = 8 -7919761 goalCount = 1 -7919762 goalTotal = 51 -7919762 otherCount = 77 -~~~ -7919763 CURRENTGOAL IS [1] -~~~ -7919799 UP 12 -7919799 2048 255 -7919845 DOWN 12 -7919845 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7919877 homeCount = 147 -7919877 waitCount = 75 -7919878 ripCount = 61 -7919878 locktype1 = 2 -7919879 locktype2 = 9 -7919879 locktype3 = 8 -7919880 goalCount = 1 -7919880 goalTotal = 51 -7919881 otherCount = 77 -~~~ -7919882 CURRENTGOAL IS [1] -~~~ -7928018 UP 3 -7928018 4 255 -~~~ -~~~ -7928533 DOWN 3 -7928533 0 255 -~~~ -~~~ -7928553 0 254 -~~~ -~~~ -7928555 0 252 -~~~ -~~~ -7928557 0 248 -~~~ -~~~ -7928558 0 240 -~~~ -~~~ -7928560 0 224 -~~~ -~~~ -7928562 0 192 -~~~ -~~~ -7928564 0 128 -~~~ -~~~ -7928566 0 0 -~~~ -~~~ -7928568 0 512 -7928569 homeCount = 147 -7928569 waitCount = 75 -7928570 ripCount = 61 -7928570 locktype1 = 2 -7928570 locktype2 = 9 -7928592 locktype3 = 8 -7928592 goalCount = 1 -7928593 goalTotal = 51 -7928593 otherCount = 78 -~~~ -7932281 UP 10 -7932281 waslock = 0 -7932281 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7932304 512 16777728 -~~~ -7932453 512 512 -7932498 DOWN 10 -7932498 0 512 -~~~ -7932518 UP 10 -7932518 waslock = 0 -7932518 512 512 -~~~ -~~~ -~~~ -7932520 512 2048 -7932521 homeCount = 148 -7932522 waitCount = 75 -7932522 ripCount = 61 -7932523 locktype1 = 2 -7932523 locktype2 = 9 -7932524 locktype3 = 8 -7932524 goalCount = 1 -7932525 goalTotal = 51 -7932546 otherCount = 78 -~~~ -~~~ -7933232 DOWN 10 -7933232 0 2048 -~~~ -~~~ -~~~ -~~~ -7933254 homeCount = 148 -7933255 waitCount = 75 -7933255 ripCount = 61 -7933256 locktype1 = 2 -7933256 locktype2 = 9 -7933256 locktype3 = 8 -7933257 goalCount = 1 -7933257 goalTotal = 51 -7933258 otherCount = 78 -~~~ -7933259 UP 10 -7933259 waslock = 0 -7933258 512 2048 -~~~ -7936681 DOWN 10 -7936681 0 2048 -~~~ -~~~ -~~~ -~~~ -7936705 homeCount = 148 -7936705 waitCount = 75 -7936706 ripCount = 61 -7936706 locktype1 = 2 -7936706 locktype2 = 9 -7936707 locktype3 = 8 -7936707 goalCount = 1 -7936708 goalTotal = 51 -7936708 otherCount = 78 -~~~ -7938394 UP 12 -7938394 2048 2048 -7941781 DOWN 12 -7941781 0 2048 -7941837 UP 12 -7941837 2048 2048 -7941956 DOWN 12 -7941956 0 2048 -7941983 UP 12 -7941983 2048 2048 -7943894 CLICK1 -7943894 CLICK2 -~~~ -~~~ -~~~ -7943913 2048 67110912 -~~~ -7944063 2048 2048 -7950204 DOWN 12 -7950204 0 2048 -~~~ -~~~ -7950231 0 0 -~~~ -~~~ -7950233 0 1 -~~~ -~~~ -7950235 0 3 -~~~ -~~~ -7950237 0 7 -~~~ -~~~ -7950238 0 15 -~~~ -~~~ -7950240 0 31 -~~~ -~~~ -7950242 0 63 -~~~ -~~~ -7950244 0 127 -~~~ -~~~ -7950246 0 255 -7950247 homeCount = 148 -7950247 waitCount = 76 -7950248 ripCount = 61 -7950248 locktype1 = 2 -7950249 locktype2 = 9 -7950249 locktype3 = 8 -7950270 goalCount = 1 -7950271 goalTotal = 51 -7950271 otherCount = 78 -~~~ -7950272 CURRENTGOAL IS [1] -~~~ -7956075 UP 1 -7956075 1 255 -~~~ -~~~ -7956097 outer reward -~~~ -7956097 1 65791 -~~~ -~~~ -7956547 1 255 -7965194 DOWN 1 -7965194 0 255 -~~~ -~~~ -7965214 0 254 -~~~ -~~~ -7965216 0 252 -~~~ -~~~ -7965217 0 248 -~~~ -~~~ -7965219 0 240 -~~~ -~~~ -7965221 0 224 -~~~ -~~~ -7965223 0 192 -~~~ -~~~ -7965225 0 128 -~~~ -~~~ -7965226 0 0 -~~~ -~~~ -7965228 0 512 -7965229 homeCount = 148 -7965230 waitCount = 76 -7965230 ripCount = 61 -7965231 locktype1 = 2 -7965231 locktype2 = 9 -7965252 locktype3 = 8 -7965253 goalCount = 2 -7965253 goalTotal = 52 -7965254 otherCount = 78 -~~~ -7965254 1 512 -7965322 DOWN 1 -7965322 0 512 -7965364 1 512 -7969410 DOWN 1 -7969410 0 512 -7973544 UP 10 -7973544 waslock = 0 -7973543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7973568 512 16777728 -~~~ -7973718 512 512 -7978713 DOWN 10 -7978713 0 512 -~~~ -~~~ -7978733 0 1536 -~~~ -~~~ -7978735 0 1024 -7978736 homeCount = 149 -7978736 waitCount = 76 -7978737 ripCount = 61 -7978737 locktype1 = 2 -7978738 locktype2 = 9 -7978738 locktype3 = 8 -7978739 goalCount = 2 -7978739 goalTotal = 52 -7978740 otherCount = 78 -~~~ -7978779 UP 10 -7978779 waslock = 0 -7978779 512 1024 -~~~ -7978830 DOWN 10 -7978830 0 1024 -~~~ -~~~ -~~~ -~~~ -7978858 homeCount = 149 -7978859 waitCount = 76 -7978859 ripCount = 61 -7978860 locktype1 = 2 -7978860 locktype2 = 9 -7978861 locktype3 = 8 -7978861 goalCount = 2 -7978862 goalTotal = 52 -7978862 otherCount = 78 -~~~ -7980517 UP 11 -7980517 1024 1024 -7983057 DOWN 11 -7983057 0 1024 -7983112 UP 11 -7983112 1024 1024 -7984017 BEEP1 -7984017 BEEP2 -~~~ -~~~ -~~~ -7984035 1024 33555456 -~~~ -7984185 1024 1024 -7992797 DOWN 11 -7992797 0 1024 -~~~ -~~~ -7992824 0 0 -~~~ -7992825 UP 11 -7992825 1024 0 -~~~ -~~~ -7992827 1024 1 -~~~ -~~~ -7992829 1024 3 -~~~ -7992830 1024 7 -~~~ -~~~ -7992831 1024 15 -~~~ -~~~ -7992833 1024 31 -~~~ -~~~ -7992835 1024 63 -~~~ -~~~ -7992837 1024 127 -~~~ -~~~ -7992838 1024 255 -7992840 homeCount = 149 -7992861 waitCount = 76 -7992861 ripCount = 62 -7992862 locktype1 = 2 -7992862 locktype2 = 9 -7992863 locktype3 = 8 -7992863 goalCount = 2 -7992864 goalTotal = 52 -7992864 otherCount = 78 -~~~ -7992865 CURRENTGOAL IS [1] -~~~ -7994733 DOWN 11 -7994733 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7994771 homeCount = 149 -7994772 waitCount = 76 -7994772 ripCount = 62 -7994773 locktype1 = 2 -7994773 locktype2 = 9 -7994774 locktype3 = 8 -7994774 goalCount = 2 -7994775 goalTotal = 52 -7994775 otherCount = 78 -~~~ -7994776 CURRENTGOAL IS [1] -~~~ -7994783 UP 11 -7994783 1024 255 -7994819 DOWN 11 -7994819 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7994853 homeCount = 149 -7994853 waitCount = 76 -7994854 ripCount = 62 -7994854 locktype1 = 2 -7994855 locktype2 = 9 -7994855 locktype3 = 8 -7994856 goalCount = 2 -7994856 goalTotal = 52 -7994856 otherCount = 78 -~~~ -7994858 CURRENTGOAL IS [1] -~~~ -7999561 UP 1 -7999561 1 255 -~~~ -~~~ -7999580 outer reward -~~~ -7999581 1 65791 -~~~ -~~~ -7999876 DOWN 1 -7999876 0 65791 -7999895 1 65791 -~~~ -~~~ -7999897 1 65790 -~~~ -~~~ -7999899 1 65788 -~~~ -~~~ -7999901 1 65784 -~~~ -~~~ -7999903 1 65776 -~~~ -~~~ -7999905 1 65760 -~~~ -~~~ -7999907 1 65728 -~~~ -~~~ -7999908 1 65664 -~~~ -~~~ -7999910 1 65536 -~~~ -~~~ -7999912 1 66048 -7999913 homeCount = 149 -7999914 waitCount = 76 -7999914 ripCount = 62 -7999915 locktype1 = 2 -7999935 locktype2 = 9 -7999936 locktype3 = 8 -7999936 goalCount = 3 -7999937 goalTotal = 53 -7999937 otherCount = 78 -~~~ -8000030 1 512 -8010845 DOWN 1 -8010845 0 512 -8010907 1 512 -8010958 DOWN 1 -8010958 0 512 -8011043 1 512 -8011084 DOWN 1 -8011084 0 512 -8015421 UP 10 -8015421 waslock = 0 -8015421 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -8015455 512 16777728 -~~~ -8015605 512 512 -8018818 DOWN 10 -8018818 0 512 -~~~ -~~~ -8018839 0 2560 -~~~ -~~~ -8018841 0 2048 -8018842 homeCount = 150 -8018843 waitCount = 76 -8018843 ripCount = 62 -8018844 locktype1 = 2 -8018844 locktype2 = 9 -8018845 locktype3 = 8 -8018845 goalCount = 3 -8018846 goalTotal = 53 -8018846 otherCount = 78 -~~~ -8018847 UP 10 -8018867 waslock = 0 -8018847 512 2048 -~~~ -8018914 DOWN 10 -8018913 0 2048 -~~~ -~~~ -~~~ -~~~ -8018945 homeCount = 150 -8018945 waitCount = 76 -8018946 ripCount = 62 -8018946 locktype1 = 2 -8018946 locktype2 = 9 -8018947 locktype3 = 8 -8018947 goalCount = 3 -8018948 goalTotal = 53 -8018948 otherCount = 78 -~~~ -8020546 UP 12 -8020546 2048 2048 -8023546 CLICK1 -8023546 CLICK2 -~~~ -~~~ -~~~ -8023571 2048 67110912 -~~~ -8023721 2048 2048 -8031115 DOWN 12 -8031115 0 2048 -~~~ -~~~ -8031138 0 0 -~~~ -8031140 UP 12 -8031140 2048 0 -~~~ -~~~ -8031142 2048 1 -~~~ -~~~ -8031143 2048 3 -~~~ -8031144 2048 7 -~~~ -~~~ -8031146 2048 15 -~~~ -~~~ -8031148 2048 31 -~~~ -~~~ -8031149 2048 63 -~~~ -~~~ -8031151 2048 127 -~~~ -~~~ -8031153 2048 255 -8031154 homeCount = 150 -8031175 waitCount = 77 -8031176 ripCount = 62 -8031176 locktype1 = 2 -8031177 locktype2 = 9 -8031177 locktype3 = 8 -8031178 goalCount = 3 -8031178 goalTotal = 53 -8031179 otherCount = 78 -~~~ -8031180 CURRENTGOAL IS [1] -~~~ -8031198 DOWN 12 -8031198 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8031228 homeCount = 150 -8031228 waitCount = 77 -8031229 ripCount = 62 -8031229 locktype1 = 2 -8031230 locktype2 = 9 -8031230 locktype3 = 8 -8031231 goalCount = 3 -8031231 goalTotal = 53 -8031231 otherCount = 78 -~~~ -8031233 CURRENTGOAL IS [1] -~~~ -8031282 UP 12 -8031282 2048 255 -8032109 DOWN 12 -8032109 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8032146 homeCount = 150 -8032146 waitCount = 77 -8032147 ripCount = 62 -8032148 locktype1 = 2 -8032148 locktype2 = 9 -8032148 locktype3 = 8 -8032149 goalCount = 3 -8032149 goalTotal = 53 -8032150 otherCount = 78 -~~~ -8032151 CURRENTGOAL IS [1] -~~~ -8032154 UP 12 -8032154 2048 255 -8032202 DOWN 12 -8032202 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8032236 homeCount = 150 -8032236 waitCount = 77 -8032237 ripCount = 62 -8032237 locktype1 = 2 -8032238 locktype2 = 9 -8032238 locktype3 = 8 -8032239 goalCount = 3 -8032239 goalTotal = 53 -8032240 otherCount = 78 -~~~ -8032241 CURRENTGOAL IS [1] -~~~ -8035149 UP 1 -8035149 1 255 -~~~ -~~~ -8035173 outer reward -~~~ -8035174 1 65791 -~~~ -~~~ -8035421 DOWN 1 -8035421 0 65791 -~~~ -~~~ -8035442 0 65790 -~~~ -~~~ -8035444 0 65788 -~~~ -~~~ -8035445 0 65784 -~~~ -~~~ -8035447 0 65776 -~~~ -~~~ -8035449 0 65760 -~~~ -~~~ -8035451 0 65728 -~~~ -~~~ -8035453 0 65664 -~~~ -8035454 1 65664 -~~~ -~~~ -8035456 1 65536 -~~~ -8035457 1 66048 -8035458 homeCount = 150 -8035458 waitCount = 77 -8035459 ripCount = 62 -8035480 locktype1 = 2 -8035481 locktype2 = 9 -8035481 locktype3 = 8 -8035481 goalCount = 4 -8035482 goalTotal = 54 -8035482 otherCount = 78 -~~~ -8035623 1 512 -8047000 DOWN 1 -8047000 0 512 -8047011 1 512 -8047114 DOWN 1 -8047114 0 512 -8047158 1 512 -8047251 DOWN 1 -8047251 0 512 -8047290 1 512 -8047390 DOWN 1 -8047390 0 512 -8047404 1 512 -8047629 DOWN 1 -8047629 0 512 -8051873 UP 10 -8051873 waslock = 0 -8051873 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -8051906 512 16777728 -~~~ -8052056 512 512 -8057856 DOWN 10 -8057856 0 512 -~~~ -~~~ -8057882 0 1536 -~~~ -~~~ -8057884 0 1024 -8057885 homeCount = 151 -8057886 waitCount = 77 -8057886 ripCount = 62 -8057887 locktype1 = 2 -8057887 locktype2 = 9 -8057888 locktype3 = 8 -8057888 goalCount = 4 -8057889 goalTotal = 54 -8057889 otherCount = 78 -~~~ -8057925 UP 10 -8057925 waslock = 0 -8057925 512 1024 -~~~ -8057961 DOWN 10 -8057961 0 1024 -~~~ -~~~ -~~~ -~~~ -8057985 homeCount = 151 -8057985 waitCount = 77 -8057986 ripCount = 62 -8057986 locktype1 = 2 -8057987 locktype2 = 9 -8057987 locktype3 = 8 -8057988 goalCount = 4 -8057988 goalTotal = 54 -8057989 otherCount = 78 -~~~ -8059817 UP 11 -8059817 1024 1024 -8063817 BEEP1 -8063817 BEEP2 -~~~ -~~~ -~~~ -8063842 1024 33555456 -~~~ -8063992 1024 1024 -8074007 DOWN 11 -8074007 0 1024 -~~~ -~~~ -8074031 0 0 -~~~ -~~~ -8074033 0 1 -~~~ -~~~ -8074035 0 3 -~~~ -~~~ -8074037 0 7 -~~~ -~~~ -8074039 0 15 -~~~ -~~~ -8074041 0 31 -~~~ -~~~ -8074042 0 63 -~~~ -~~~ -8074044 0 127 -~~~ -~~~ -8074046 0 255 -8074047 homeCount = 151 -8074048 waitCount = 77 -8074048 ripCount = 63 -8074049 locktype1 = 2 -8074049 locktype2 = 9 -8074070 locktype3 = 8 -8074071 goalCount = 4 -8074071 goalTotal = 54 -8074072 otherCount = 78 -~~~ -8074073 CURRENTGOAL IS [1] -~~~ - - description: Statescript log r1 - task_epochs: 2, -, Statescript2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140114078597968 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -# -#import math -#import struct -#import re -#import time -#import random -#import numpy as np -#import pyaudio -#import wave -#from statistics import mean -## V8pre_forage -## visits to incorrect wells cause 5s lockout -## exception is repeat visit to prior well (is ok, no lockout) -## can go to any outer well, any number of times -## lockout from getting rip/wait wells wrong is also 5s -# -# -## decide what type of up trigger was just recieved; act accordingly -#def pokeIn(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# doHome() -# -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# doOuter(num) -# -## decide what type of down trigger was just recieved; act accordingly -#def pokeOut(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# global lastWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# endHome() -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# endWait() -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# endOuter() -# lastWell = currWell -# -##home poke: decide trial type and upcoming wait length; turn on lights accordingly -#def doHome(): -# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout -# global homePump -# global lastWell -# global currWell -# #global waitdist -# -# if trialtype == 0: -# opts = [1, 2] -# randnum = np.random.randint(0,2) #-1 -# trialtype = opts[randnum] -# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #randnum = np.random.randint(0,8) -# delaytime = chooseDelay() -# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") -# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime -# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC -# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") -# print("SCQTMESSAGE: trigger(1);\n") # deliver reward -# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: -# lockout([2,2]) -# -#def chooseDelay(): -# global trialtype -# global RWcount -# global waitdist -# global startwaitdist -# -# print(RWcount) -# -# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short -# return startwaitdist[RWcount[trialtype-1]] -# -# else: -# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist -# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) -# -# else: -# return int(np.random.choice(waitdist,1)) -# -# -#def endHome(): -# global trialtype -# global lastWell -# global homeWell -# global waitWells -# -# if trialtype == 1 or trialtype == 2: -# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -# -#def click(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# -# #generate_click() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC -# -#def beep(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# #generate_beep() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC -# -#def endWait(): -# global trialtype -# global goalWell -# global currWell -# global outerWells -# -# if trialtype == 3: # wait complete -# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): # turn on outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") -# -# -#def doOuter(val): -# global outerPumps -# global trialtype -# global allGoal -# global thisGoal -# global goalWell -# global outerReps -# global currWell -# global lastWell -# global homeWell -# global numgoals -# global validOuterWells -# global waslock -# -# if trialtype == 3: -# trialtype = 0 # outer satisfied, head home next -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# if currWell in goalWell : # repeated; reward -# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") -# print("SCQTMESSAGE: trigger(2);\n") # deliver reward -# allGoal+=1 -# thisGoal+=1 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC -# -# if thisGoal >= outerReps: #maxed repeats reached, time to switch -# print("time to choose new goalS!") -# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats -# chooseGoal() -# else: -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection -# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection -# print(goalWell) -# -# thisGoal = 0 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# -# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) -# goalWell = [currWell] -# -# else: # wrong well; add to forage record if newly visited -# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC -# -# elif trialtype < 3 and waslock<1: -# lockout([2,2]) -# -#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal -# global goalWell -# global oldGoals -# global numgoals -# global outerWells -# global forageNum -# #global outerReps -# -# oldGoals.append(goalWell) -# print(oldGoals) -# -# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms -# forageNum = 1 -# -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# if len(oldGoals)>7: # if all outers have been goal, reset -# print("resetting oldgoals") -# oldGoals = [None] -# -# while any(i in goalWell for i in oldGoals): #if any common elements -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# print(goalWell) -# -# outerReps = np.random.randint(4,13) -# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# print("new goal is "+str(goalWell)+"\n") -# -#def endOuter(): -# global trialtype -# global outerWells -# global homeWell -# global lastWell -# global currWell -# -# if trialtype == 0 and lastWell != currWell: # outer satisfied -# for num in range(len(outerWells)): # turn off outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -#def lockout(val): # turn off all lights for certain amount of time -# global waitWells -# global outerWells -# global lastWell -# global trialtype -# global waslock -# -# locktype = int(val[1]) -# trialtype = 4 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE -# #turn off all lights -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(waitWells)): #turn off all wait and outer well lights -# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# waslock=1 -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well -# if locktype == 1: -# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well -# if locktype == 2: -# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC -# if locktype == 3: -# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors -# -# -#def lockend(): -# global trialtype -# global homeWell -# -# trialtype = 0 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well -# print("SCQTMESSAGE: trigger(3);\n") -# -#def updateWaslock(val): -# global waslock -# -# waslock = int(val[1]) -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") -# -## Function: generate click sound -#def generate_click(): -# -# File='ZippoClick_short.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -## Function: generate cowbell sound -#def generate_beep(): -# -# File='Beep.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -#def makewhitenoise(): #play white noise for duration of lockout -# global locksoundlength -# -# soundlength = int(44100*locksoundlength/1000) -# p = pyaudio.PyAudio() -# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) -# whitenoise = np.random.randint(700,size = soundlength) -# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) -# stream.write(data) -# stream.close() -# p.terminate() -# -# -## This is the custom callback function. When events occur, addScQtEvent will -## call this function. This function MUST BE NAMED 'callback'!!!! -#def callback(line): -# -# global waslock -# -# if line.find("UP") >= 0: #input triggered -# pokeIn(re.findall(r'\d+',line)) -# if line.find("DOWN") >= 0: #input triggered -# pokeOut(re.findall(r'\d+',line)) -# if line.find("BEEP1") >= 0: # make a beep and deliver reward -# beep() -# if line.find("BEEP2") >= 0: # make a beep and deliver reward -# generate_beep() -# if line.find("CLICK1") >= 0: # make a click and deliver reward -# click() -# if line.find("CLICK2") >= 0: # make a click and deliver reward -# generate_click() -# if line.find("LOCKOUT") >= 0: # lockout procedure -# lockout(re.findall(r'\d+',line)) -# if line.find("LOCKEND") >= 0: # reset trialtype to 0 -# lockend() -# if line.find("WHITENOISE") >= 0: # make noise during lockout -# makewhitenoise() -# if line.find("waslock") >= 0: #update waslock value -# updateWaslock(re.findall(r'\d+',line)) -# -# -## define wells -#homeWell = 10 -#waitWells = [11,12] -#outerWells = [1,2,3,4,5,6,7,8] -##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num -## define pumps -#homePump = 25 -#waitPumps = [26, 27] -#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] -# -##global variables -#lastWell = -1 -#currWell = -1 -#trialtype = 0 -#outerReps = 10 -##outerReps = np.random.randint(4,13) #10 -#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# -#allGoal = 0 -#thisGoal = 0 -#numgoals = 1 # number of outer arms rewarded -#forageNum = 1 -#if numgoals == 1: -# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells -#else: -# goalWell = np.random.choice(outerWells,numgoals,replace=False) -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) -# -#oldGoals = [] #initialize with any wells to exclude from being goal -##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] -#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] -# -#startwaitdist = [1000, 1500, 2000] -# -#locksoundlength = 1000 -#print(goalWell) -#waslock=0 -#RWcount = [0,0 -# -17097908 UP 10 -17097909 waslock = 0 -17097908 512 512 -~~~ -~~~ -17097929 DOWN 10 -17097929 0 512 -~~~ -~~~ -~~~ -17097934 0 16777728 -~~~ -~~~ -~~~ -17097954 0 16779776 -~~~ -~~~ -17097956 0 16779264 -17097957 homeCount = 1 -17097957 waitCount = 0 -17097958 ripCount = 0 -17097958 locktype1 = 0 -17097959 locktype2 = 0 -17097959 locktype3 = 0 -17097960 goalCount = 0 -17097960 goalTotal = 0 -17097960 otherCount = 0 -~~~ -17098084 0 2048 -17098097 UP 10 -17098097 waslock = 0 -17098097 512 2048 -17098115 DOWN 10 -17098115 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098140 homeCount = 1 -17098140 waitCount = 0 -17098141 ripCount = 0 -17098141 locktype1 = 0 -17098142 locktype2 = 0 -17098142 locktype3 = 0 -17098143 goalCount = 0 -17098143 goalTotal = 0 -17098144 otherCount = 0 -~~~ -17098196 UP 10 -17098196 waslock = 0 -17098196 512 2048 -17098203 DOWN 10 -17098203 0 2048 -17098215 UP 10 -17098215 waslock = 0 -17098215 512 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098224 homeCount = 1 -17098224 waitCount = 0 -17098225 ripCount = 0 -17098225 locktype1 = 0 -17098226 locktype2 = 0 -17098226 locktype3 = 0 -17098227 goalCount = 0 -17098227 goalTotal = 0 -17098228 otherCount = 0 -~~~ -17098232 DOWN 10 -17098232 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098271 homeCount = 1 -17098271 waitCount = 0 -17098272 ripCount = 0 -17098272 locktype1 = 0 -17098273 locktype2 = 0 -17098273 locktype3 = 0 -17098274 goalCount = 0 -17098274 goalTotal = 0 -17098275 otherCount = 0 -~~~ -17098313 UP 10 -17098314 waslock = 0 -17098313 512 2048 -17098325 DOWN 10 -17098325 0 2048 -~~~ -~~~ -~~~ -17098341 UP 10 -17098341 waslock = 0 -17098340 512 2048 -~~~ -~~~ -17098343 homeCount = 1 -17098344 waitCount = 0 -17098344 ripCount = 0 -17098345 locktype1 = 0 -17098345 locktype2 = 0 -17098346 locktype3 = 0 -17098346 goalCount = 0 -17098347 goalTotal = 0 -17098368 otherCount = 0 -~~~ -17098368 DOWN 10 -17098368 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098389 homeCount = 1 -17098389 waitCount = 0 -17098390 ripCount = 0 -17098390 locktype1 = 0 -17098391 locktype2 = 0 -17098391 locktype3 = 0 -17098392 goalCount = 0 -17098392 goalTotal = 0 -17098393 otherCount = 0 -~~~ -17098443 UP 10 -17098443 waslock = 0 -17098443 512 2048 -~~~ -17098479 DOWN 10 -17098479 0 2048 -~~~ -~~~ -~~~ -~~~ -17098504 homeCount = 1 -17098504 waitCount = 0 -17098505 ripCount = 0 -17098505 locktype1 = 0 -17098505 locktype2 = 0 -17098506 locktype3 = 0 -17098506 goalCount = 0 -17098507 goalTotal = 0 -17098507 otherCount = 0 -~~~ -17098562 UP 10 -17098562 waslock = 0 -17098562 512 2048 -~~~ -17098607 DOWN 10 -17098607 0 2048 -~~~ -~~~ -~~~ -~~~ -17098626 homeCount = 1 -17098627 waitCount = 0 -17098627 ripCount = 0 -17098628 locktype1 = 0 -17098628 locktype2 = 0 -17098629 locktype3 = 0 -17098629 goalCount = 0 -17098630 goalTotal = 0 -17098630 otherCount = 0 -~~~ -17098693 UP 10 -17098693 waslock = 0 -17098693 512 2048 -~~~ -17098737 DOWN 10 -17098737 0 2048 -~~~ -~~~ -~~~ -~~~ -17098764 homeCount = 1 -17098764 waitCount = 0 -17098765 ripCount = 0 -17098765 locktype1 = 0 -17098766 locktype2 = 0 -17098766 locktype3 = 0 -17098767 goalCount = 0 -17098767 goalTotal = 0 -17098768 otherCount = 0 -~~~ -17098821 UP 10 -17098822 waslock = 0 -17098821 512 2048 -~~~ -17098866 DOWN 10 -17098866 0 2048 -~~~ -~~~ -~~~ -~~~ -17098893 homeCount = 1 -17098894 waitCount = 0 -17098895 ripCount = 0 -17098895 locktype1 = 0 -17098895 locktype2 = 0 -17098896 locktype3 = 0 -17098896 goalCount = 0 -17098897 goalTotal = 0 -17098897 otherCount = 0 -~~~ -17098951 UP 10 -17098951 waslock = 0 -17098951 512 2048 -~~~ -17098997 DOWN 10 -17098997 0 2048 -~~~ -~~~ -~~~ -~~~ -17099024 homeCount = 1 -17099024 waitCount = 0 -17099025 ripCount = 0 -17099025 locktype1 = 0 -17099026 locktype2 = 0 -17099026 locktype3 = 0 -17099027 goalCount = 0 -17099027 goalTotal = 0 -17099028 otherCount = 0 -~~~ -17099078 UP 10 -17099078 waslock = 0 -17099078 512 2048 -~~~ -17099137 DOWN 10 -17099137 0 2048 -~~~ -~~~ -~~~ -~~~ -17099164 homeCount = 1 -17099164 waitCount = 0 -17099165 ripCount = 0 -17099165 locktype1 = 0 -17099166 locktype2 = 0 -17099166 locktype3 = 0 -17099167 goalCount = 0 -17099167 goalTotal = 0 -17099168 otherCount = 0 -~~~ -17099210 UP 10 -17099210 waslock = 0 -17099209 512 2048 -~~~ -17099274 DOWN 10 -17099274 0 2048 -~~~ -~~~ -~~~ -~~~ -17099295 homeCount = 1 -17099295 waitCount = 0 -17099296 ripCount = 0 -17099296 locktype1 = 0 -17099297 locktype2 = 0 -17099297 locktype3 = 0 -17099298 goalCount = 0 -17099298 goalTotal = 0 -17099299 otherCount = 0 -~~~ -17099341 UP 10 -17099342 waslock = 0 -17099341 512 2048 -~~~ -17099412 DOWN 10 -17099412 0 2048 -~~~ -~~~ -~~~ -~~~ -17099438 homeCount = 1 -17099438 waitCount = 0 -17099439 ripCount = 0 -17099439 locktype1 = 0 -17099440 locktype2 = 0 -17099440 locktype3 = 0 -17099441 goalCount = 0 -17099441 goalTotal = 0 -17099442 otherCount = 0 -~~~ -17099483 UP 10 -17099483 waslock = 0 -17099483 512 2048 -~~~ -17099557 DOWN 10 -17099557 0 2048 -17099566 UP 10 -17099566 waslock = 0 -17099566 512 2048 -~~~ -~~~ -~~~ -~~~ -17099587 homeCount = 1 -17099588 waitCount = 0 -17099588 ripCount = 0 -17099589 locktype1 = 0 -17099589 locktype2 = 0 -17099590 locktype3 = 0 -17099590 goalCount = 0 -17099591 goalTotal = 0 -17099591 otherCount = 0 -~~~ -~~~ -17099696 DOWN 10 -17099696 0 2048 -17099699 UP 10 -17099699 waslock = 0 -17099699 512 2048 -~~~ -~~~ -~~~ -~~~ -17099724 homeCount = 1 -17099724 waitCount = 0 -17099725 ripCount = 0 -17099725 locktype1 = 0 -17099726 locktype2 = 0 -17099726 locktype3 = 0 -17099727 goalCount = 0 -17099727 goalTotal = 0 -17099728 otherCount = 0 -~~~ -~~~ -17100772 DOWN 10 -17100772 0 2048 -17100789 UP 10 -17100789 waslock = 0 -17100789 512 2048 -~~~ -~~~ -~~~ -~~~ -17100795 homeCount = 1 -17100795 waitCount = 0 -17100796 ripCount = 0 -17100796 locktype1 = 0 -17100797 locktype2 = 0 -17100797 locktype3 = 0 -17100798 goalCount = 0 -17100798 goalTotal = 0 -17100799 otherCount = 0 -~~~ -~~~ -17100909 DOWN 10 -17100909 0 2048 -~~~ -~~~ -~~~ -~~~ -17100938 homeCount = 1 -17100938 waitCount = 0 -17100939 ripCount = 0 -17100939 locktype1 = 0 -17100940 locktype2 = 0 -17100940 locktype3 = 0 -17100941 goalCount = 0 -17100941 goalTotal = 0 -17100942 otherCount = 0 -~~~ -17100945 UP 10 -17100945 waslock = 0 -17100945 512 2048 -~~~ -17101065 DOWN 10 -17101065 0 2048 -~~~ -~~~ -~~~ -~~~ -17101093 homeCount = 1 -17101093 waitCount = 0 -17101094 ripCount = 0 -17101094 locktype1 = 0 -17101095 locktype2 = 0 -17101095 locktype3 = 0 -17101096 goalCount = 0 -17101096 goalTotal = 0 -17101097 otherCount = 0 -~~~ -17101099 UP 10 -17101100 waslock = 0 -17101099 512 2048 -~~~ -17101243 DOWN 10 -17101243 0 2048 -~~~ -~~~ -~~~ -~~~ -17101263 UP 10 -17101264 waslock = 0 -17101263 512 2048 -17101265 homeCount = 1 -17101266 waitCount = 0 -17101266 ripCount = 0 -17101267 locktype1 = 0 -17101267 locktype2 = 0 -17101268 locktype3 = 0 -17101268 goalCount = 0 -17101269 goalTotal = 0 -17101269 otherCount = 0 -~~~ -~~~ -17101399 DOWN 10 -17101399 0 2048 -17101416 UP 10 -17101416 waslock = 0 -17101416 512 2048 -~~~ -~~~ -~~~ -~~~ -17101424 homeCount = 1 -17101424 waitCount = 0 -17101425 ripCount = 0 -17101425 locktype1 = 0 -17101425 locktype2 = 0 -17101426 locktype3 = 0 -17101426 goalCount = 0 -17101427 goalTotal = 0 -17101427 otherCount = 0 -~~~ -~~~ -17101561 DOWN 10 -17101561 0 2048 -17101572 UP 10 -17101572 waslock = 0 -17101572 512 2048 -~~~ -~~~ -~~~ -~~~ -17101596 homeCount = 1 -17101596 waitCount = 0 -17101597 ripCount = 0 -17101597 locktype1 = 0 -17101598 locktype2 = 0 -17101598 locktype3 = 0 -17101599 goalCount = 0 -17101599 goalTotal = 0 -17101600 otherCount = 0 -~~~ -~~~ -17101896 DOWN 10 -17101896 0 2048 -17101911 UP 10 -17101911 waslock = 0 -17101911 512 2048 -~~~ -~~~ -~~~ -~~~ -17101939 homeCount = 1 -17101940 waitCount = 0 -17101940 ripCount = 0 -17101940 locktype1 = 0 -17101941 locktype2 = 0 -17101941 locktype3 = 0 -17101942 goalCount = 0 -17101942 goalTotal = 0 -17101943 otherCount = 0 -~~~ -~~~ -17102043 DOWN 10 -17102043 0 2048 -~~~ -~~~ -~~~ -~~~ -17102068 homeCount = 1 -17102069 waitCount = 0 -17102069 ripCount = 0 -17102070 locktype1 = 0 -17102070 locktype2 = 0 -17102071 locktype3 = 0 -17102071 goalCount = 0 -17102072 goalTotal = 0 -17102072 otherCount = 0 -~~~ -17102073 UP 10 -17102073 waslock = 0 -17102073 512 2048 -~~~ -17102213 DOWN 10 -17102213 0 2048 -~~~ -17102236 UP 10 -17102236 waslock = 0 -17102236 512 2048 -~~~ -~~~ -~~~ -17102240 homeCount = 1 -17102240 waitCount = 0 -17102241 ripCount = 0 -17102241 locktype1 = 0 -17102242 locktype2 = 0 -17102242 locktype3 = 0 -17102242 goalCount = 0 -17102243 goalTotal = 0 -17102243 otherCount = 0 -~~~ -~~~ -17102394 DOWN 10 -17102394 0 2048 -17102404 UP 10 -17102404 waslock = 0 -17102404 512 2048 -~~~ -~~~ -~~~ -~~~ -17102428 homeCount = 1 -17102429 waitCount = 0 -17102429 ripCount = 0 -17102430 locktype1 = 0 -17102430 locktype2 = 0 -17102431 locktype3 = 0 -17102431 goalCount = 0 -17102431 goalTotal = 0 -17102432 otherCount = 0 -~~~ -~~~ -17102533 DOWN 10 -17102532 0 2048 -~~~ -~~~ -~~~ -~~~ -17102555 homeCount = 1 -17102556 waitCount = 0 -17102556 ripCount = 0 -17102557 locktype1 = 0 -17102557 locktype2 = 0 -17102558 locktype3 = 0 -17102558 goalCount = 0 -17102559 goalTotal = 0 -17102559 otherCount = 0 -~~~ -17102568 UP 10 -17102568 waslock = 0 -17102568 512 2048 -~~~ -17105160 DOWN 10 -17105160 0 2048 -17105166 UP 10 -17105167 waslock = 0 -17105166 512 2048 -~~~ -~~~ -~~~ -~~~ -17105185 homeCount = 1 -17105186 waitCount = 0 -17105186 ripCount = 0 -17105187 locktype1 = 0 -17105187 locktype2 = 0 -17105188 locktype3 = 0 -17105188 goalCount = 0 -17105189 goalTotal = 0 -17105189 otherCount = 0 -~~~ -~~~ -17105317 DOWN 10 -17105317 0 2048 -17105343 UP 10 -17105343 waslock = 0 -17105343 512 2048 -~~~ -~~~ -~~~ -~~~ -17105348 homeCount = 1 -17105348 waitCount = 0 -17105349 ripCount = 0 -17105349 locktype1 = 0 -17105350 locktype2 = 0 -17105350 locktype3 = 0 -17105351 goalCount = 0 -17105351 goalTotal = 0 -17105352 otherCount = 0 -~~~ -~~~ -17105443 DOWN 10 -17105443 0 2048 -~~~ -~~~ -~~~ -~~~ -17105469 homeCount = 1 -17105469 waitCount = 0 -17105470 ripCount = 0 -17105470 locktype1 = 0 -17105471 locktype2 = 0 -17105471 locktype3 = 0 -17105472 goalCount = 0 -17105472 goalTotal = 0 -17105473 otherCount = 0 -~~~ -17105486 UP 10 -17105486 waslock = 0 -17105486 512 2048 -~~~ -17105600 DOWN 10 -17105600 0 2048 -~~~ -~~~ -~~~ -~~~ -17105628 homeCount = 1 -17105628 waitCount = 0 -17105629 ripCount = 0 -17105629 locktype1 = 0 -17105629 locktype2 = 0 -17105630 locktype3 = 0 -17105630 goalCount = 0 -17105631 goalTotal = 0 -17105631 otherCount = 0 -~~~ -17105636 UP 10 -17105636 waslock = 0 -17105636 512 2048 -~~~ -17105791 DOWN 10 -17105791 0 2048 -~~~ -17105814 UP 10 -17105814 waslock = 0 -17105814 512 2048 -~~~ -~~~ -~~~ -17105817 homeCount = 1 -17105818 waitCount = 0 -17105818 ripCount = 0 -17105819 locktype1 = 0 -17105819 locktype2 = 0 -17105820 locktype3 = 0 -17105820 goalCount = 0 -17105821 goalTotal = 0 -17105821 otherCount = 0 -~~~ -~~~ -17105974 DOWN 10 -17105974 0 2048 -17105987 UP 10 -17105988 waslock = 0 -17105987 512 2048 -~~~ -~~~ -~~~ -~~~ -17106001 homeCount = 1 -17106002 waitCount = 0 -17106002 ripCount = 0 -17106003 locktype1 = 0 -17106003 locktype2 = 0 -17106004 locktype3 = 0 -17106004 goalCount = 0 -17106005 goalTotal = 0 -17106005 otherCount = 0 -~~~ -~~~ -17106145 DOWN 10 -17106145 0 2048 -17106156 UP 10 -17106156 waslock = 0 -17106156 512 2048 -~~~ -~~~ -~~~ -~~~ -17106177 homeCount = 1 -17106177 waitCount = 0 -17106178 ripCount = 0 -17106178 locktype1 = 0 -17106179 locktype2 = 0 -17106179 locktype3 = 0 -17106180 goalCount = 0 -17106180 goalTotal = 0 -17106181 otherCount = 0 -~~~ -~~~ -17106662 DOWN 10 -17106662 0 2048 -17106678 UP 10 -17106679 waslock = 0 -17106678 512 2048 -~~~ -~~~ -~~~ -~~~ -17106686 homeCount = 1 -17106686 waitCount = 0 -17106687 ripCount = 0 -17106687 locktype1 = 0 -17106688 locktype2 = 0 -17106688 locktype3 = 0 -17106689 goalCount = 0 -17106689 goalTotal = 0 -17106689 otherCount = 0 -~~~ -~~~ -17107378 DOWN 10 -17107378 0 2048 -17107394 UP 10 -17107395 waslock = 0 -17107394 512 2048 -~~~ -~~~ -~~~ -~~~ -17107416 homeCount = 1 -17107416 waitCount = 0 -17107417 ripCount = 0 -17107417 locktype1 = 0 -17107418 locktype2 = 0 -17107418 locktype3 = 0 -17107419 goalCount = 0 -17107419 goalTotal = 0 -17107420 otherCount = 0 -~~~ -~~~ -17110357 DOWN 10 -17110357 0 2048 -17110367 UP 10 -17110368 waslock = 0 -17110367 512 2048 -~~~ -~~~ -~~~ -~~~ -17110384 homeCount = 1 -17110384 waitCount = 0 -17110385 ripCount = 0 -17110385 locktype1 = 0 -17110386 locktype2 = 0 -17110386 locktype3 = 0 -17110387 goalCount = 0 -17110387 goalTotal = 0 -17110388 otherCount = 0 -~~~ -~~~ -17111248 DOWN 10 -17111248 0 2048 -~~~ -~~~ -~~~ -~~~ -17111278 homeCount = 1 -17111278 waitCount = 0 -17111279 ripCount = 0 -17111279 locktype1 = 0 -17111280 locktype2 = 0 -17111280 locktype3 = 0 -17111281 goalCount = 0 -17111281 goalTotal = 0 -17111282 otherCount = 0 -~~~ -17112980 UP 12 -17112980 2048 2048 -17113019 DOWN 12 -17113019 0 2048 -17113078 UP 12 -17113078 2048 2048 -17113162 DOWN 12 -17113162 0 2048 -17113362 LOCKOUT 3 -~~~ -17113381 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17113387 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17115071 UP 12 -17115071 2048 0 -17115080 DOWN 12 -17115080 0 0 -17115215 UP 12 -17115215 2048 0 -17115221 DOWN 12 -17115221 0 0 -17115349 UP 12 -17115349 2048 0 -17115363 DOWN 12 -17115363 0 0 -17115440 UP 12 -17115440 2048 0 -17115466 DOWN 12 -17115466 0 0 -17115645 UP 12 -17115645 2048 0 -17115657 DOWN 12 -17115657 0 0 -17115667 UP 12 -17115666 2048 0 -17115675 DOWN 12 -17115675 0 0 -17115780 UP 12 -17115780 2048 0 -17115801 DOWN 12 -17115801 0 0 -17115810 UP 12 -17115810 2048 0 -17115816 DOWN 12 -17115816 0 0 -17115955 UP 12 -17115955 2048 0 -17115960 DOWN 12 -17115960 0 0 -17116066 UP 12 -17116066 2048 0 -17116100 DOWN 12 -17116100 0 0 -17116204 UP 12 -17116204 2048 0 -17116257 DOWN 12 -17116257 0 0 -17116327 UP 12 -17116326 2048 0 -17116902 DOWN 12 -17116902 0 0 -17116938 UP 12 -17116938 2048 0 -17117078 DOWN 12 -17117078 0 0 -17117106 UP 12 -17117106 2048 0 -17117247 DOWN 12 -17117247 0 0 -17117269 UP 12 -17117269 2048 0 -17117395 DOWN 12 -17117394 0 0 -17117444 UP 12 -17117443 2048 0 -17117560 DOWN 12 -17117560 0 0 -17117578 UP 12 -17117578 2048 0 -17120536 DOWN 12 -17120536 0 0 -17120564 UP 12 -17120564 2048 0 -17120692 DOWN 12 -17120692 0 0 -17120734 UP 12 -17120734 2048 0 -17122749 DOWN 12 -17122749 0 0 -17122862 UP 12 -17122862 2048 0 -17122925 DOWN 12 -17122925 0 0 -17122966 UP 12 -17122966 2048 0 -17122985 DOWN 12 -17122985 0 0 -17126115 UP 11 -17126115 1024 0 -17126590 DOWN 11 -17126590 0 0 -17126628 UP 11 -17126628 1024 0 -17126735 DOWN 11 -17126735 0 0 -17126767 UP 11 -17126767 1024 0 -17126848 DOWN 11 -17126848 0 0 -17126961 UP 11 -17126961 1024 0 -17127005 DOWN 11 -17127005 0 0 -17127070 UP 11 -17127070 1024 0 -17127268 DOWN 11 -17127268 0 0 -17127323 UP 11 -17127323 1024 0 -17127360 DOWN 11 -17127360 0 0 -17128371 UP 11 -17128371 1024 0 -17128378 DOWN 11 -17128378 0 0 -17128512 UP 11 -17128512 1024 0 -17128520 DOWN 11 -17128520 0 0 -17128657 UP 11 -17128657 1024 0 -17128664 DOWN 11 -17128664 0 0 -17128799 UP 11 -17128799 1024 0 -17128814 DOWN 11 -17128814 0 0 -17128924 UP 11 -17128924 1024 0 -17128955 DOWN 11 -17128955 0 0 -17129072 UP 11 -17129072 1024 0 -17129121 DOWN 11 -17129121 0 0 -17129193 UP 11 -17129193 1024 0 -17129199 DOWN 11 -17129199 0 0 -17129206 UP 11 -17129206 1024 0 -17129273 DOWN 11 -17129273 0 0 -17129339 UP 11 -17129339 1024 0 -17129427 DOWN 11 -17129427 0 0 -17129465 UP 11 -17129465 1024 0 -17129478 DOWN 11 -17129478 0 0 -17129493 UP 11 -17129493 1024 0 -17129584 DOWN 11 -17129584 0 0 -17129604 UP 11 -17129604 1024 0 -17129642 DOWN 11 -17129642 0 0 -17129647 UP 11 -17129647 1024 0 -17129741 DOWN 11 -17129741 0 0 -17129755 UP 11 -17129755 1024 0 -17129913 DOWN 11 -17129913 0 0 -17129916 UP 11 -17129916 1024 0 -17131282 DOWN 11 -17131282 0 0 -17131290 UP 11 -17131290 1024 0 -17131452 DOWN 11 -17131452 0 0 -17131471 UP 11 -17131471 1024 0 -17131613 DOWN 11 -17131613 0 0 -17131648 UP 11 -17131648 1024 0 -17134290 DOWN 11 -17134290 0 0 -17134769 UP 11 -17134769 1024 0 -17134823 DOWN 11 -17134823 0 0 -17138381 LOCKEND -~~~ -~~~ -~~~ -17138406 0 512 -17139837 UP 10 -17139837 waslock = 0 -17139837 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17139872 512 16777728 -~~~ -17139893 DOWN 10 -17139893 0 16777728 -~~~ -~~~ -17139915 0 16779776 -~~~ -~~~ -17139917 0 16779264 -17139918 homeCount = 2 -17139918 waitCount = 0 -17139919 ripCount = 0 -17139919 locktype1 = 0 -17139920 locktype2 = 0 -17139920 locktype3 = 1 -17139921 goalCount = 0 -17139921 goalTotal = 0 -17139922 otherCount = 0 -~~~ -17139950 UP 10 -17139950 waslock = 0 -17139950 512 16779264 -~~~ -17140022 512 2048 -17140065 DOWN 10 -17140065 0 2048 -~~~ -~~~ -~~~ -~~~ -17140088 homeCount = 2 -17140089 waitCount = 0 -17140089 ripCount = 0 -17140090 locktype1 = 0 -17140090 locktype2 = 0 -17140091 locktype3 = 1 -17140091 goalCount = 0 -17140092 goalTotal = 0 -17140092 otherCount = 0 -~~~ -17140101 UP 10 -17140101 waslock = 0 -17140101 512 2048 -~~~ -17140240 DOWN 10 -17140240 0 2048 -17140257 UP 10 -17140257 waslock = 0 -17140257 512 2048 -~~~ -~~~ -~~~ -~~~ -17140270 homeCount = 2 -17140270 waitCount = 0 -17140271 ripCount = 0 -17140271 locktype1 = 0 -17140272 locktype2 = 0 -17140272 locktype3 = 1 -17140273 goalCount = 0 -17140273 goalTotal = 0 -17140274 otherCount = 0 -~~~ -~~~ -17140410 DOWN 10 -17140410 0 2048 -17140426 UP 10 -17140427 waslock = 0 -17140426 512 2048 -~~~ -~~~ -~~~ -~~~ -17140449 homeCount = 2 -17140449 waitCount = 0 -17140450 ripCount = 0 -17140450 locktype1 = 0 -17140451 locktype2 = 0 -17140451 locktype3 = 1 -17140452 goalCount = 0 -17140452 goalTotal = 0 -17140453 otherCount = 0 -~~~ -~~~ -17140577 DOWN 10 -17140577 0 2048 -17140594 UP 10 -17140594 waslock = 0 -17140594 512 2048 -~~~ -~~~ -~~~ -~~~ -17140620 homeCount = 2 -17140621 waitCount = 0 -17140621 ripCount = 0 -17140622 locktype1 = 0 -17140622 locktype2 = 0 -17140623 locktype3 = 1 -17140623 goalCount = 0 -17140624 goalTotal = 0 -17140624 otherCount = 0 -~~~ -~~~ -17142212 DOWN 10 -17142212 0 2048 -17142228 UP 10 -17142229 waslock = 0 -17142228 512 2048 -~~~ -~~~ -~~~ -~~~ -17142249 homeCount = 2 -17142250 waitCount = 0 -17142250 ripCount = 0 -17142251 locktype1 = 0 -17142251 locktype2 = 0 -17142252 locktype3 = 1 -17142252 goalCount = 0 -17142253 goalTotal = 0 -17142253 otherCount = 0 -~~~ -~~~ -17142366 DOWN 10 -17142366 0 2048 -~~~ -~~~ -~~~ -~~~ -17142389 homeCount = 2 -17142389 waitCount = 0 -17142390 ripCount = 0 -17142390 locktype1 = 0 -17142391 locktype2 = 0 -17142391 locktype3 = 1 -17142391 goalCount = 0 -17142392 goalTotal = 0 -17142392 otherCount = 0 -~~~ -17142404 UP 10 -17142405 waslock = 0 -17142404 512 2048 -~~~ -17142467 DOWN 10 -17142467 0 2048 -~~~ -~~~ -~~~ -~~~ -17142488 homeCount = 2 -17142489 waitCount = 0 -17142489 ripCount = 0 -17142490 locktype1 = 0 -17142490 locktype2 = 0 -17142491 locktype3 = 1 -17142491 goalCount = 0 -17142492 goalTotal = 0 -17142492 otherCount = 0 -~~~ -17145618 UP 7 -17145618 64 2048 -~~~ -17145638 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17145644 64 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17145661 DOWN 7 -17145661 0 0 -~~~ -17145688 64 0 -17145936 DOWN 7 -17145935 0 0 -17145982 64 0 -17146406 DOWN 7 -17146406 0 0 -17146420 64 0 -17148954 DOWN 7 -17148954 0 0 -17148975 64 0 -17149053 DOWN 7 -17149053 0 0 -17156173 512 0 -17156617 0 0 -17156641 512 0 -17156974 0 0 -17156988 512 0 -17157127 0 0 -17157152 512 0 -17157306 0 0 -17157321 512 0 -17157477 0 0 -17157493 512 0 -17157661 0 0 -17157668 512 0 -17158019 0 0 -17158039 512 0 -17158176 0 0 -17158207 512 0 -17158364 0 0 -17158393 512 0 -17158518 0 0 -17160113 UP 12 -17160113 2048 0 -17160307 DOWN 12 -17160307 0 0 -17164258 UP 2 -17164258 2 0 -17164330 DOWN 2 -17164330 0 0 -17164364 2 0 -17164660 DOWN 2 -17164660 0 0 -17164694 2 0 -17165098 DOWN 2 -17165098 0 0 -17165116 2 0 -17165603 DOWN 2 -17165603 0 0 -17165620 2 0 -17165783 DOWN 2 -17165783 0 0 -17165803 2 0 -17165960 DOWN 2 -17165960 0 0 -17165976 2 0 -17166139 DOWN 2 -17166139 0 0 -17166149 2 0 -17167551 DOWN 2 -17167551 0 0 -17167564 2 0 -17167726 DOWN 2 -17167726 0 0 -17167754 2 0 -17167812 DOWN 2 -17167812 0 0 -17167901 2 0 -17168006 DOWN 2 -17168006 0 0 -17168074 2 0 -17168160 DOWN 2 -17168160 0 0 -17168269 2 0 -17168360 DOWN 2 -17168360 0 0 -17168390 2 0 -17168528 DOWN 2 -17168528 0 0 -17168554 2 0 -17168701 DOWN 2 -17168701 0 0 -17168770 2 0 -17168793 DOWN 2 -17168793 0 0 -17170638 LOCKEND -~~~ -~~~ -~~~ -17170656 0 512 -17173427 UP 10 -17173427 waslock = 0 -17173427 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17173450 512 16777728 -~~~ -17173481 DOWN 10 -17173481 0 16777728 -~~~ -~~~ -17173505 0 16778752 -~~~ -~~~ -17173507 0 16778240 -17173508 homeCount = 3 -17173509 waitCount = 0 -17173509 ripCount = 0 -17173510 locktype1 = 0 -17173510 locktype2 = 1 -17173511 locktype3 = 1 -17173511 goalCount = 0 -17173512 goalTotal = 0 -17173512 otherCount = 0 -~~~ -17173600 0 1024 -17173629 UP 10 -17173629 waslock = 0 -17173629 512 1024 -~~~ -17177285 DOWN 10 -17177285 0 1024 -17177297 UP 10 -17177298 waslock = 0 -17177297 512 1024 -~~~ -~~~ -~~~ -~~~ -17177320 homeCount = 3 -17177320 waitCount = 0 -17177321 ripCount = 0 -17177321 locktype1 = 0 -17177322 locktype2 = 1 -17177322 locktype3 = 1 -17177322 goalCount = 0 -17177323 goalTotal = 0 -17177323 otherCount = 0 -~~~ -~~~ -17177371 DOWN 10 -17177371 0 1024 -~~~ -~~~ -~~~ -~~~ -17177399 homeCount = 3 -17177399 waitCount = 0 -17177400 ripCount = 0 -17177400 locktype1 = 0 -17177401 locktype2 = 1 -17177401 locktype3 = 1 -17177402 goalCount = 0 -17177402 goalTotal = 0 -17177403 otherCount = 0 -~~~ -17178689 UP 11 -17178689 1024 1024 -17179443 DOWN 11 -17179443 0 1024 -17179507 UP 11 -17179507 1024 1024 -17179689 BEEP1 -17179689 BEEP2 -~~~ -~~~ -~~~ -17179722 1024 33555456 -~~~ -17179872 1024 1024 -17185130 DOWN 11 -17185130 0 1024 -~~~ -~~~ -17185149 0 0 -~~~ -~~~ -17185151 0 1 -~~~ -~~~ -17185153 0 3 -~~~ -~~~ -17185155 0 7 -~~~ -~~~ -17185157 0 15 -~~~ -~~~ -17185159 0 31 -~~~ -~~~ -17185160 0 63 -~~~ -~~~ -17185162 0 127 -~~~ -~~~ -17185164 0 255 -17185165 homeCount = 3 -17185166 waitCount = 0 -17185166 ripCount = 1 -17185167 locktype1 = 0 -17185167 locktype2 = 1 -17185188 locktype3 = 1 -17185189 goalCount = 0 -17185189 goalTotal = 0 -17185190 otherCount = 0 -~~~ -17185191 CURRENTGOAL IS [8] -~~~ -17185191 UP 11 -17185191 1024 255 -17185193 DOWN 11 -17185193 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17185237 homeCount = 3 -17185238 waitCount = 0 -17185238 ripCount = 1 -17185239 locktype1 = 0 -17185239 locktype2 = 1 -17185240 locktype3 = 1 -17185240 goalCount = 0 -17185241 goalTotal = 0 -17185241 otherCount = 0 -~~~ -17185242 CURRENTGOAL IS [8] -~~~ -17187525 UP 8 -17187525 128 255 -17187540 DOWN 8 -17187540 0 255 -17187549 128 255 -~~~ -~~~ -17187564 outer reward -~~~ -17187564 128 8388863 -~~~ -~~~ -~~~ -~~~ -17187568 128 8388862 -~~~ -~~~ -17187570 128 8388860 -~~~ -~~~ -17187572 128 8388856 -~~~ -~~~ -17187574 128 8388848 -~~~ -~~~ -17187575 128 8388832 -~~~ -~~~ -17187577 128 8388800 -~~~ -~~~ -17187579 128 8388736 -~~~ -~~~ -17187581 128 8388608 -~~~ -~~~ -17187583 128 8389120 -17187604 homeCount = 3 -17187605 waitCount = 0 -17187605 ripCount = 1 -17187606 locktype1 = 0 -17187606 locktype2 = 1 -17187607 locktype3 = 1 -17187607 goalCount = 1 -17187608 goalTotal = 1 -17187608 otherCount = 0 -~~~ -17188014 128 512 -17188249 DOWN 8 -17188248 0 512 -17188270 128 512 -17188380 DOWN 8 -17188380 0 512 -17188411 128 512 -17188512 DOWN 8 -17188512 0 512 -17188550 128 512 -17188649 DOWN 8 -17188649 0 512 -17188680 128 512 -17188804 DOWN 8 -17188804 0 512 -17188815 128 512 -17188947 DOWN 8 -17188947 0 512 -17188964 128 512 -17190940 DOWN 8 -17190940 0 512 -17190964 128 512 -17193457 DOWN 8 -17193457 0 512 -17193811 128 512 -17193844 DOWN 8 -17193844 0 512 -17199369 UP 10 -17199369 waslock = 0 -17199369 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17199397 512 16777728 -~~~ -17199547 512 512 -17199572 DOWN 10 -17199572 0 512 -~~~ -~~~ -17199595 0 2560 -~~~ -~~~ -17199596 0 2048 -17199597 homeCount = 4 -17199598 waitCount = 0 -17199598 ripCount = 1 -17199599 locktype1 = 0 -17199599 locktype2 = 1 -17199600 locktype3 = 1 -17199600 goalCount = 1 -17199601 goalTotal = 1 -17199601 otherCount = 0 -~~~ -17199646 UP 10 -17199646 waslock = 0 -17199645 512 2048 -~~~ -17199747 DOWN 10 -17199747 0 2048 -~~~ -~~~ -~~~ -~~~ -17199774 homeCount = 4 -17199775 waitCount = 0 -17199775 ripCount = 1 -17199776 locktype1 = 0 -17199776 locktype2 = 1 -17199777 locktype3 = 1 -17199777 goalCount = 1 -17199778 goalTotal = 1 -17199778 otherCount = 0 -~~~ -17199781 UP 10 -17199781 waslock = 0 -17199781 512 2048 -~~~ -17199882 DOWN 10 -17199882 0 2048 -~~~ -~~~ -~~~ -~~~ -17199908 homeCount = 4 -17199909 waitCount = 0 -17199909 ripCount = 1 -17199909 locktype1 = 0 -17199910 locktype2 = 1 -17199910 locktype3 = 1 -17199911 goalCount = 1 -17199911 goalTotal = 1 -17199912 otherCount = 0 -~~~ -17199918 UP 10 -17199919 waslock = 0 -17199918 512 2048 -~~~ -17200055 DOWN 10 -17200055 0 2048 -~~~ -~~~ -~~~ -~~~ -17200079 UP 10 -17200079 waslock = 0 -17200079 512 2048 -17200080 homeCount = 4 -17200081 waitCount = 0 -17200081 ripCount = 1 -17200082 locktype1 = 0 -17200082 locktype2 = 1 -17200083 locktype3 = 1 -17200083 goalCount = 1 -17200084 goalTotal = 1 -17200084 otherCount = 0 -~~~ -~~~ -17200203 DOWN 10 -17200203 0 2048 -~~~ -~~~ -~~~ -17200231 UP 10 -17200231 waslock = 0 -17200231 512 2048 -~~~ -17200233 homeCount = 4 -17200234 waitCount = 0 -17200234 ripCount = 1 -17200235 locktype1 = 0 -17200235 locktype2 = 1 -17200235 locktype3 = 1 -17200236 goalCount = 1 -17200236 goalTotal = 1 -17200258 otherCount = 0 -~~~ -~~~ -17200369 DOWN 10 -17200369 0 2048 -17200387 UP 10 -17200388 waslock = 0 -17200387 512 2048 -~~~ -~~~ -~~~ -~~~ -17200392 homeCount = 4 -17200393 waitCount = 0 -17200393 ripCount = 1 -17200394 locktype1 = 0 -17200394 locktype2 = 1 -17200395 locktype3 = 1 -17200395 goalCount = 1 -17200396 goalTotal = 1 -17200396 otherCount = 0 -~~~ -~~~ -17200549 DOWN 10 -17200549 0 2048 -17200555 UP 10 -17200555 waslock = 0 -17200555 512 2048 -~~~ -~~~ -~~~ -~~~ -17200573 homeCount = 4 -17200574 waitCount = 0 -17200574 ripCount = 1 -17200575 locktype1 = 0 -17200575 locktype2 = 1 -17200576 locktype3 = 1 -17200576 goalCount = 1 -17200577 goalTotal = 1 -17200577 otherCount = 0 -~~~ -~~~ -17201066 DOWN 10 -17201066 0 2048 -17201087 UP 10 -17201087 waslock = 0 -17201086 512 2048 -~~~ -~~~ -~~~ -~~~ -17201094 homeCount = 4 -17201095 waitCount = 0 -17201095 ripCount = 1 -17201096 locktype1 = 0 -17201096 locktype2 = 1 -17201097 locktype3 = 1 -17201097 goalCount = 1 -17201098 goalTotal = 1 -17201098 otherCount = 0 -~~~ -~~~ -17201975 DOWN 10 -17201975 0 2048 -~~~ -~~~ -~~~ -17202002 UP 10 -17202003 waslock = 0 -17202002 512 2048 -~~~ -17202005 homeCount = 4 -17202005 waitCount = 0 -17202005 ripCount = 1 -17202006 locktype1 = 0 -17202006 locktype2 = 1 -17202007 locktype3 = 1 -17202007 goalCount = 1 -17202008 goalTotal = 1 -17202029 otherCount = 0 -~~~ -~~~ -17202166 DOWN 10 -17202166 0 2048 -17202183 UP 10 -17202183 waslock = 0 -17202183 512 2048 -~~~ -~~~ -~~~ -~~~ -17202206 homeCount = 4 -17202207 waitCount = 0 -17202207 ripCount = 1 -17202208 locktype1 = 0 -17202208 locktype2 = 1 -17202209 locktype3 = 1 -17202209 goalCount = 1 -17202210 goalTotal = 1 -17202210 otherCount = 0 -~~~ -~~~ -17202352 DOWN 10 -17202352 0 2048 -~~~ -~~~ -~~~ -17202373 UP 10 -17202373 waslock = 0 -17202372 512 2048 -~~~ -17202375 homeCount = 4 -17202375 waitCount = 0 -17202376 ripCount = 1 -17202376 locktype1 = 0 -17202377 locktype2 = 1 -17202377 locktype3 = 1 -17202378 goalCount = 1 -17202378 goalTotal = 1 -17202378 otherCount = 0 -~~~ -~~~ -17202533 DOWN 10 -17202533 0 2048 -17202545 UP 10 -17202545 waslock = 0 -17202545 512 2048 -~~~ -~~~ -~~~ -~~~ -17202570 homeCount = 4 -17202570 waitCount = 0 -17202571 ripCount = 1 -17202571 locktype1 = 0 -17202572 locktype2 = 1 -17202572 locktype3 = 1 -17202572 goalCount = 1 -17202573 goalTotal = 1 -17202573 otherCount = 0 -~~~ -~~~ -17202723 DOWN 10 -17202723 0 2048 -17202740 UP 10 -17202740 waslock = 0 -17202740 512 2048 -~~~ -~~~ -~~~ -~~~ -17202747 homeCount = 4 -17202747 waitCount = 0 -17202748 ripCount = 1 -17202748 locktype1 = 0 -17202749 locktype2 = 1 -17202749 locktype3 = 1 -17202750 goalCount = 1 -17202750 goalTotal = 1 -17202751 otherCount = 0 -~~~ -~~~ -17202889 DOWN 10 -17202889 0 2048 -~~~ -~~~ -~~~ -~~~ -17202917 homeCount = 4 -17202918 waitCount = 0 -17202918 ripCount = 1 -17202919 locktype1 = 0 -17202919 locktype2 = 1 -17202920 locktype3 = 1 -17202920 goalCount = 1 -17202921 goalTotal = 1 -17202921 otherCount = 0 -~~~ -17202922 UP 10 -17202922 waslock = 0 -17202922 512 2048 -~~~ -17203082 DOWN 10 -17203082 0 2048 -~~~ -~~~ -~~~ -~~~ -17203107 homeCount = 4 -17203107 waitCount = 0 -17203108 ripCount = 1 -17203108 locktype1 = 0 -17203109 locktype2 = 1 -17203109 locktype3 = 1 -17203110 goalCount = 1 -17203110 goalTotal = 1 -17203111 otherCount = 0 -~~~ -17203111 UP 10 -17203112 waslock = 0 -17203111 512 2048 -~~~ -17203454 DOWN 10 -17203454 0 2048 -~~~ -~~~ -~~~ -~~~ -17203476 homeCount = 4 -17203476 waitCount = 0 -17203477 ripCount = 1 -17203477 locktype1 = 0 -17203478 locktype2 = 1 -17203478 locktype3 = 1 -17203479 goalCount = 1 -17203479 goalTotal = 1 -17203480 otherCount = 0 -~~~ -17203503 UP 10 -17203504 waslock = 0 -17203503 512 2048 -~~~ -17203529 DOWN 10 -17203529 0 2048 -~~~ -~~~ -~~~ -~~~ -17203551 homeCount = 4 -17203551 waitCount = 0 -17203552 ripCount = 1 -17203552 locktype1 = 0 -17203553 locktype2 = 1 -17203553 locktype3 = 1 -17203554 goalCount = 1 -17203554 goalTotal = 1 -17203555 otherCount = 0 -~~~ -17204874 UP 12 -17204874 2048 2048 -17205289 DOWN 12 -17205289 0 2048 -17205350 UP 12 -17205350 2048 2048 -17205874 CLICK1 -17205874 CLICK2 -~~~ -~~~ -~~~ -17205897 2048 67110912 -~~~ -17206047 2048 2048 -17209020 DOWN 12 -17209019 0 2048 -17209027 UP 12 -17209027 2048 2048 -~~~ -~~~ -17209045 2048 0 -~~~ -~~~ -17209047 2048 1 -~~~ -~~~ -17209049 2048 3 -~~~ -~~~ -17209051 2048 7 -~~~ -~~~ -17209053 2048 15 -~~~ -~~~ -17209054 2048 31 -~~~ -~~~ -17209056 2048 63 -~~~ -~~~ -17209058 2048 127 -~~~ -~~~ -17209060 2048 255 -17209061 homeCount = 4 -17209061 waitCount = 1 -17209062 ripCount = 1 -17209083 locktype1 = 0 -17209084 locktype2 = 1 -17209084 locktype3 = 1 -17209085 goalCount = 1 -17209085 goalTotal = 1 -17209086 otherCount = 0 -~~~ -17209087 CURRENTGOAL IS [8] -~~~ -17209208 DOWN 12 -17209207 0 255 -17209215 UP 12 -17209215 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209252 homeCount = 4 -17209253 waitCount = 1 -17209253 ripCount = 1 -17209254 locktype1 = 0 -17209254 locktype2 = 1 -17209255 locktype3 = 1 -17209255 goalCount = 1 -17209256 goalTotal = 1 -17209256 otherCount = 0 -~~~ -17209257 CURRENTGOAL IS [8] -~~~ -17209297 DOWN 12 -17209297 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209333 homeCount = 4 -17209333 waitCount = 1 -17209334 ripCount = 1 -17209334 locktype1 = 0 -17209335 locktype2 = 1 -17209335 locktype3 = 1 -17209336 goalCount = 1 -17209336 goalTotal = 1 -17209337 otherCount = 0 -~~~ -17209338 CURRENTGOAL IS [8] -~~~ -17209367 UP 12 -17209367 2048 255 -17209442 DOWN 12 -17209441 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209482 homeCount = 4 -17209482 waitCount = 1 -17209483 ripCount = 1 -17209483 locktype1 = 0 -17209484 locktype2 = 1 -17209484 locktype3 = 1 -17209485 goalCount = 1 -17209485 goalTotal = 1 -17209486 otherCount = 0 -~~~ -17209487 CURRENTGOAL IS [8] -~~~ -17209521 UP 12 -17209521 2048 255 -17209548 DOWN 12 -17209548 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209584 homeCount = 4 -17209584 waitCount = 1 -17209585 ripCount = 1 -17209585 locktype1 = 0 -17209586 locktype2 = 1 -17209586 locktype3 = 1 -17209587 goalCount = 1 -17209587 goalTotal = 1 -17209588 otherCount = 0 -~~~ -17209589 CURRENTGOAL IS [8] -~~~ -17214096 UP 3 -17214096 4 255 -~~~ -~~~ -17214382 DOWN 3 -17214382 0 255 -~~~ -~~~ -17214406 0 254 -~~~ -~~~ -17214408 0 252 -~~~ -~~~ -17214410 0 248 -~~~ -~~~ -17214412 0 240 -~~~ -~~~ -17214413 0 224 -~~~ -~~~ -17214415 0 192 -~~~ -17214417 4 192 -~~~ -~~~ -17214418 4 128 -~~~ -17214419 4 0 -~~~ -~~~ -17214421 4 512 -17214422 homeCount = 4 -17214422 waitCount = 1 -17214423 ripCount = 1 -17214444 locktype1 = 0 -17214444 locktype2 = 1 -17214445 locktype3 = 1 -17214445 goalCount = 1 -17214446 goalTotal = 1 -17214446 otherCount = 1 -~~~ -17216429 DOWN 3 -17216429 0 512 -17221376 UP 5 -17221376 16 512 -~~~ -17221403 WHITENOISE -~~~ -~~~ -~~~ -17221405 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17221498 DOWN 5 -17221498 0 0 -17221556 16 0 -17221956 DOWN 5 -17221956 0 0 -17221991 16 0 -17222305 DOWN 5 -17222305 0 0 -17222315 16 0 -17224674 DOWN 5 -17224674 0 0 -17229229 512 0 -17229265 0 0 -17229285 512 0 -17229569 0 0 -17229641 512 0 -17230107 0 0 -17230128 512 0 -17230800 0 0 -17230861 512 0 -17230891 0 0 -17241365 UP 1 -17241365 1 0 -17243735 DOWN 1 -17243735 0 0 -17243748 1 0 -17243765 DOWN 1 -17243765 0 0 -17246403 LOCKEND -~~~ -~~~ -~~~ -17246427 0 512 -17248354 UP 10 -17248354 waslock = 0 -17248354 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17248382 512 16777728 -~~~ -17248431 DOWN 10 -17248431 0 16777728 -~~~ -~~~ -17248459 0 16778752 -~~~ -~~~ -17248461 0 16778240 -17248462 homeCount = 5 -17248462 waitCount = 1 -17248463 ripCount = 1 -17248463 locktype1 = 0 -17248464 locktype2 = 2 -17248464 locktype3 = 1 -17248465 goalCount = 1 -17248465 goalTotal = 1 -17248466 otherCount = 1 -~~~ -17248532 0 1024 -17248648 UP 10 -17248648 waslock = 0 -17248648 512 1024 -~~~ -17252377 DOWN 10 -17252377 0 1024 -~~~ -~~~ -~~~ -~~~ -17252397 homeCount = 5 -17252398 waitCount = 1 -17252399 ripCount = 1 -17252399 locktype1 = 0 -17252400 locktype2 = 2 -17252400 locktype3 = 1 -17252400 goalCount = 1 -17252401 goalTotal = 1 -17252401 otherCount = 1 -~~~ -17252421 UP 10 -17252421 waslock = 0 -17252421 512 1024 -~~~ -17252951 DOWN 10 -17252951 0 1024 -~~~ -~~~ -~~~ -~~~ -17252980 homeCount = 5 -17252980 waitCount = 1 -17252981 ripCount = 1 -17252981 locktype1 = 0 -17252981 locktype2 = 2 -17252982 locktype3 = 1 -17252982 goalCount = 1 -17252983 goalTotal = 1 -17252983 otherCount = 1 -~~~ -17254005 UP 11 -17254004 1024 1024 -17254582 DOWN 11 -17254582 0 1024 -17254724 UP 11 -17254724 1024 1024 -17255505 BEEP1 -17255505 BEEP2 -~~~ -~~~ -~~~ -17255528 1024 33555456 -~~~ -17255678 1024 1024 -17260300 DOWN 11 -17260300 0 1024 -~~~ -~~~ -17260324 0 0 -~~~ -~~~ -17260326 0 1 -~~~ -~~~ -17260328 0 3 -~~~ -~~~ -17260330 0 7 -~~~ -~~~ -17260331 0 15 -~~~ -~~~ -17260333 0 31 -~~~ -~~~ -17260335 0 63 -~~~ -~~~ -17260337 0 127 -~~~ -~~~ -17260339 0 255 -17260340 homeCount = 5 -17260340 waitCount = 1 -17260341 ripCount = 2 -17260341 locktype1 = 0 -17260342 locktype2 = 2 -17260363 locktype3 = 1 -17260363 goalCount = 1 -17260364 goalTotal = 1 -17260364 otherCount = 1 -~~~ -17260365 CURRENTGOAL IS [8] -~~~ -17260366 UP 11 -17260366 1024 255 -17260390 DOWN 11 -17260390 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17260428 homeCount = 5 -17260428 waitCount = 1 -17260429 ripCount = 2 -17260429 locktype1 = 0 -17260430 locktype2 = 2 -17260430 locktype3 = 1 -17260431 goalCount = 1 -17260431 goalTotal = 1 -17260432 otherCount = 1 -~~~ -17260433 CURRENTGOAL IS [8] -~~~ -17262731 UP 7 -17262731 64 255 -~~~ -~~~ -17262993 DOWN 7 -17262993 0 255 -~~~ -~~~ -17263010 0 254 -~~~ -~~~ -17263012 0 252 -~~~ -~~~ -17263013 0 248 -~~~ -~~~ -17263015 0 240 -~~~ -~~~ -17263017 0 224 -~~~ -~~~ -17263019 0 192 -~~~ -~~~ -17263021 0 128 -~~~ -~~~ -17263023 0 0 -~~~ -~~~ -17263024 0 512 -17263025 homeCount = 5 -17263026 waitCount = 1 -17263026 ripCount = 2 -17263027 locktype1 = 0 -17263047 locktype2 = 2 -17263048 locktype3 = 1 -17263048 goalCount = 1 -17263049 goalTotal = 1 -17263049 otherCount = 2 -~~~ -17263101 64 512 -17263724 DOWN 7 -17263724 0 512 -17267314 UP 10 -17267315 waslock = 0 -17267314 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17267339 512 16777728 -~~~ -17267489 512 512 -17267798 DOWN 10 -17267798 0 512 -~~~ -~~~ -17267824 0 1536 -~~~ -~~~ -17267826 0 1024 -17267827 homeCount = 6 -17267827 waitCount = 1 -17267828 ripCount = 2 -17267828 locktype1 = 0 -17267829 locktype2 = 2 -17267829 locktype3 = 1 -17267830 goalCount = 1 -17267830 goalTotal = 1 -17267831 otherCount = 2 -~~~ -17267852 UP 10 -17267852 waslock = 0 -17267852 512 1024 -~~~ -17271549 DOWN 10 -17271549 0 1024 -~~~ -~~~ -~~~ -~~~ -17271577 homeCount = 6 -17271577 waitCount = 1 -17271578 ripCount = 2 -17271578 locktype1 = 0 -17271579 locktype2 = 2 -17271579 locktype3 = 1 -17271580 goalCount = 1 -17271580 goalTotal = 1 -17271580 otherCount = 2 -~~~ -17273398 UP 11 -17273398 1024 1024 -17275399 BEEP1 -17275399 BEEP2 -~~~ -~~~ -~~~ -17275425 1024 33555456 -~~~ -17275575 1024 1024 -17280164 DOWN 11 -17280164 0 1024 -~~~ -~~~ -17280183 0 0 -~~~ -~~~ -17280185 0 1 -~~~ -~~~ -17280187 0 3 -~~~ -~~~ -17280189 0 7 -~~~ -~~~ -17280190 0 15 -~~~ -~~~ -17280192 0 31 -~~~ -~~~ -17280194 0 63 -~~~ -~~~ -17280196 0 127 -~~~ -~~~ -17280198 0 255 -17280199 homeCount = 6 -17280199 waitCount = 1 -17280200 ripCount = 3 -17280200 locktype1 = 0 -17280201 locktype2 = 2 -17280222 locktype3 = 1 -17280222 goalCount = 1 -17280223 goalTotal = 1 -17280223 otherCount = 2 -~~~ -17280224 CURRENTGOAL IS [8] -~~~ -17283276 UP 6 -17283276 32 255 -~~~ -~~~ -17287545 DOWN 6 -17287545 0 255 -~~~ -~~~ -17287566 0 254 -~~~ -~~~ -17287568 0 252 -~~~ -~~~ -17287570 0 248 -~~~ -~~~ -17287572 0 240 -~~~ -~~~ -17287574 0 224 -~~~ -~~~ -17287576 0 192 -~~~ -~~~ -17287577 0 128 -~~~ -~~~ -17287579 0 0 -~~~ -~~~ -17287581 0 512 -17287582 homeCount = 6 -17287583 waitCount = 1 -17287583 ripCount = 3 -17287584 locktype1 = 0 -17287584 locktype2 = 2 -17287605 locktype3 = 1 -17287606 goalCount = 1 -17287606 goalTotal = 1 -17287607 otherCount = 3 -~~~ -17292442 UP 10 -17292442 waslock = 0 -17292442 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17292474 512 16777728 -~~~ -17292624 512 512 -17292916 DOWN 10 -17292916 0 512 -~~~ -~~~ -17292940 0 2560 -~~~ -~~~ -17292942 0 2048 -17292943 homeCount = 7 -17292943 waitCount = 1 -17292944 ripCount = 3 -17292944 locktype1 = 0 -17292945 locktype2 = 2 -17292945 locktype3 = 1 -17292946 goalCount = 1 -17292946 goalTotal = 1 -17292947 otherCount = 3 -~~~ -17292968 UP 10 -17292968 waslock = 0 -17292968 512 2048 -~~~ -17295724 DOWN 10 -17295724 0 2048 -~~~ -~~~ -~~~ -~~~ -17295752 homeCount = 7 -17295753 waitCount = 1 -17295753 ripCount = 3 -17295754 locktype1 = 0 -17295754 locktype2 = 2 -17295755 locktype3 = 1 -17295755 goalCount = 1 -17295756 goalTotal = 1 -17295756 otherCount = 3 -~~~ -17297251 UP 12 -17297251 2048 2048 -17298067 DOWN 12 -17298067 0 2048 -17298091 UP 12 -17298090 2048 2048 -17298405 DOWN 12 -17298404 0 2048 -17298448 UP 12 -17298448 2048 2048 -17298503 DOWN 12 -17298503 0 2048 -17298517 UP 12 -17298517 2048 2048 -17298751 CLICK1 -17298751 CLICK2 -~~~ -~~~ -~~~ -17298774 2048 67110912 -~~~ -17298924 2048 2048 -17303723 DOWN 12 -17303723 0 2048 -~~~ -~~~ -17303749 0 0 -~~~ -~~~ -17303751 0 1 -~~~ -~~~ -17303753 0 3 -~~~ -~~~ -17303755 0 7 -~~~ -~~~ -17303757 0 15 -~~~ -~~~ -17303758 0 31 -~~~ -~~~ -17303760 0 63 -~~~ -~~~ -17303762 0 127 -~~~ -~~~ -17303764 0 255 -17303765 homeCount = 7 -17303765 waitCount = 2 -17303766 ripCount = 3 -17303766 locktype1 = 0 -17303767 locktype2 = 2 -17303788 locktype3 = 1 -17303789 goalCount = 1 -17303789 goalTotal = 1 -17303789 otherCount = 3 -~~~ -17303791 CURRENTGOAL IS [8] -~~~ -17306124 UP 3 -17306124 4 255 -~~~ -~~~ -17306596 DOWN 3 -17306596 0 255 -~~~ -~~~ -17306619 0 254 -~~~ -~~~ -17306621 0 252 -~~~ -~~~ -17306623 0 248 -~~~ -~~~ -17306625 0 240 -~~~ -~~~ -17306626 0 224 -~~~ -17306628 4 224 -~~~ -~~~ -17306630 4 192 -~~~ -~~~ -17306631 4 128 -~~~ -17306632 4 0 -~~~ -~~~ -17306634 4 512 -17306635 homeCount = 7 -17306635 waitCount = 2 -17306657 ripCount = 3 -17306657 locktype1 = 0 -17306657 locktype2 = 2 -17306658 locktype3 = 1 -17306658 goalCount = 1 -17306659 goalTotal = 1 -17306659 otherCount = 4 -~~~ -17306899 DOWN 3 -17306899 0 512 -17310805 UP 10 -17310806 waslock = 0 -17310805 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17310836 512 16777728 -~~~ -17310985 512 512 -17311009 DOWN 10 -17311009 0 512 -~~~ -~~~ -17311029 0 2560 -~~~ -~~~ -17311031 0 2048 -17311032 homeCount = 8 -17311033 waitCount = 2 -17311033 ripCount = 3 -17311034 locktype1 = 0 -17311034 locktype2 = 2 -17311034 locktype3 = 1 -17311035 goalCount = 1 -17311035 goalTotal = 1 -17311036 otherCount = 4 -~~~ -17311057 UP 10 -17311058 waslock = 0 -17311057 512 2048 -~~~ -17316712 DOWN 10 -17316712 0 2048 -~~~ -~~~ -~~~ -~~~ -17316732 homeCount = 8 -17316733 waitCount = 2 -17316733 ripCount = 3 -17316734 locktype1 = 0 -17316734 locktype2 = 2 -17316735 locktype3 = 1 -17316735 goalCount = 1 -17316736 goalTotal = 1 -17316736 otherCount = 4 -~~~ -17318338 UP 12 -17318338 2048 2048 -17319026 DOWN 12 -17319026 0 2048 -17319032 UP 12 -17319032 2048 2048 -17319678 DOWN 12 -17319678 0 2048 -17319738 UP 12 -17319738 2048 2048 -17320338 CLICK1 -17320338 CLICK2 -~~~ -~~~ -~~~ -17320363 2048 67110912 -~~~ -17320513 2048 2048 -17326725 DOWN 12 -17326725 0 2048 -~~~ -~~~ -17326751 0 0 -~~~ -~~~ -17326753 0 1 -~~~ -~~~ -17326755 0 3 -~~~ -~~~ -17326757 0 7 -~~~ -~~~ -17326758 0 15 -~~~ -~~~ -17326760 0 31 -~~~ -~~~ -17326762 0 63 -~~~ -~~~ -17326764 0 127 -~~~ -~~~ -17326766 0 255 -17326767 homeCount = 8 -17326767 waitCount = 3 -17326768 ripCount = 3 -17326768 locktype1 = 0 -17326769 locktype2 = 2 -17326790 locktype3 = 1 -17326790 goalCount = 1 -17326791 goalTotal = 1 -17326791 otherCount = 4 -~~~ -17326792 CURRENTGOAL IS [8] -~~~ -17329863 UP 8 -17329863 128 255 -~~~ -~~~ -17329893 outer reward -~~~ -17329893 128 8388863 -~~~ -~~~ -17330172 DOWN 8 -17330172 0 8388863 -~~~ -~~~ -17330190 0 8388862 -~~~ -~~~ -17330192 0 8388860 -~~~ -~~~ -17330194 0 8388856 -~~~ -17330195 128 8388856 -~~~ -~~~ -17330197 128 8388848 -~~~ -~~~ -17330198 128 8388832 -~~~ -~~~ -17330200 128 8388800 -~~~ -17330201 128 8388736 -~~~ -~~~ -17330203 128 8388608 -~~~ -~~~ -17330225 homeCount = 8 -17330226 waitCount = 3 -17330226 ripCount = 3 -17330227 locktype1 = 0 -17330227 locktype2 = 2 -17330228 locktype3 = 1 -17330228 goalCount = 2 -17330229 goalTotal = 2 -17330229 otherCount = 4 -~~~ -17330230 128 8389120 -17330343 128 512 -17330465 DOWN 8 -17330465 0 512 -17330476 128 512 -17330578 DOWN 8 -17330578 0 512 -17330607 128 512 -17330830 DOWN 8 -17330830 0 512 -17330847 128 512 -17330966 DOWN 8 -17330966 0 512 -17330984 128 512 -17331109 DOWN 8 -17331109 0 512 -17331117 128 512 -17333342 DOWN 8 -17333342 0 512 -17333351 128 512 -17333497 DOWN 8 -17333497 0 512 -17333526 128 512 -17336388 DOWN 8 -17336388 0 512 -17336425 128 512 -17336477 DOWN 8 -17336477 0 512 -17340374 UP 10 -17340375 waslock = 0 -17340374 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17340400 512 16777728 -~~~ -17340550 512 512 -17340693 DOWN 10 -17340693 0 512 -~~~ -~~~ -17340713 0 1536 -~~~ -~~~ -17340715 0 1024 -17340716 homeCount = 9 -17340716 waitCount = 3 -17340717 ripCount = 3 -17340717 locktype1 = 0 -17340718 locktype2 = 2 -17340718 locktype3 = 1 -17340719 goalCount = 2 -17340719 goalTotal = 2 -17340720 otherCount = 4 -~~~ -17340741 UP 10 -17340741 waslock = 0 -17340741 512 1024 -~~~ -17340763 DOWN 10 -17340763 0 1024 -~~~ -~~~ -~~~ -~~~ -17340794 homeCount = 9 -17340795 waitCount = 3 -17340795 ripCount = 3 -17340796 locktype1 = 0 -17340796 locktype2 = 2 -17340797 locktype3 = 1 -17340797 goalCount = 2 -17340798 goalTotal = 2 -17340798 otherCount = 4 -~~~ -17340826 UP 10 -17340826 waslock = 0 -17340826 512 1024 -~~~ -17341139 DOWN 10 -17341139 0 1024 -~~~ -17341164 UP 10 -17341164 waslock = 0 -17341164 512 1024 -~~~ -~~~ -~~~ -17341168 homeCount = 9 -17341168 waitCount = 3 -17341168 ripCount = 3 -17341169 locktype1 = 0 -17341169 locktype2 = 2 -17341170 locktype3 = 1 -17341170 goalCount = 2 -17341171 goalTotal = 2 -17341171 otherCount = 4 -~~~ -~~~ -17341287 DOWN 10 -17341287 0 1024 -~~~ -~~~ -~~~ -~~~ -17341311 homeCount = 9 -17341312 waitCount = 3 -17341312 ripCount = 3 -17341312 locktype1 = 0 -17341313 locktype2 = 2 -17341313 locktype3 = 1 -17341314 goalCount = 2 -17341314 goalTotal = 2 -17341315 otherCount = 4 -~~~ -17341319 UP 10 -17341319 waslock = 0 -17341319 512 1024 -~~~ -17345688 DOWN 10 -17345688 0 1024 -~~~ -~~~ -~~~ -~~~ -17345716 homeCount = 9 -17345716 waitCount = 3 -17345717 ripCount = 3 -17345717 locktype1 = 0 -17345718 locktype2 = 2 -17345718 locktype3 = 1 -17345719 goalCount = 2 -17345719 goalTotal = 2 -17345720 otherCount = 4 -~~~ -17345720 UP 10 -17345721 waslock = 0 -17345720 512 1024 -~~~ -17346020 DOWN 10 -17346020 0 1024 -~~~ -~~~ -~~~ -~~~ -17346050 homeCount = 9 -17346051 waitCount = 3 -17346051 ripCount = 3 -17346052 locktype1 = 0 -17346052 locktype2 = 2 -17346053 locktype3 = 1 -17346053 goalCount = 2 -17346054 goalTotal = 2 -17346054 otherCount = 4 -~~~ -17346061 UP 10 -17346061 waslock = 0 -17346061 512 1024 -~~~ -17346109 DOWN 10 -17346109 0 1024 -~~~ -~~~ -~~~ -~~~ -17346131 homeCount = 9 -17346132 waitCount = 3 -17346132 ripCount = 3 -17346133 locktype1 = 0 -17346133 locktype2 = 2 -17346134 locktype3 = 1 -17346134 goalCount = 2 -17346135 goalTotal = 2 -17346135 otherCount = 4 -~~~ -17348173 UP 11 -17348173 1024 1024 -17348892 DOWN 11 -17348892 0 1024 -17348931 UP 11 -17348931 1024 1024 -17349733 DOWN 11 -17349733 0 1024 -17349791 UP 11 -17349791 1024 1024 -17352368 DOWN 11 -17352368 0 1024 -17352424 UP 11 -17352424 1024 1024 -17353673 BEEP1 -17353673 BEEP2 -~~~ -~~~ -~~~ -17353696 1024 33555456 -~~~ -17353846 1024 1024 -17358269 DOWN 11 -17358269 0 1024 -~~~ -~~~ -17358285 0 0 -~~~ -~~~ -17358286 0 1 -~~~ -~~~ -17358288 0 3 -~~~ -~~~ -17358290 0 7 -~~~ -~~~ -17358292 0 15 -~~~ -~~~ -17358294 0 31 -~~~ -~~~ -17358295 0 63 -~~~ -~~~ -17358297 0 127 -~~~ -~~~ -17358299 0 255 -17358300 homeCount = 9 -17358301 waitCount = 3 -17358301 ripCount = 4 -17358302 locktype1 = 0 -17358302 locktype2 = 2 -17358323 locktype3 = 1 -17358323 goalCount = 2 -17358324 goalTotal = 2 -17358324 otherCount = 4 -~~~ -17358325 CURRENTGOAL IS [8] -~~~ -17365570 UP 5 -17365570 16 255 -~~~ -~~~ -17365592 DOWN 5 -17365592 0 255 -~~~ -~~~ -17365610 0 254 -~~~ -~~~ -17365612 0 252 -~~~ -~~~ -17365613 0 248 -~~~ -~~~ -17365615 0 240 -~~~ -~~~ -17365617 0 224 -~~~ -~~~ -17365619 0 192 -~~~ -~~~ -17365621 0 128 -~~~ -~~~ -17365623 0 0 -~~~ -~~~ -17365624 0 512 -17365625 homeCount = 9 -17365626 waitCount = 3 -17365626 ripCount = 4 -17365627 locktype1 = 0 -17365627 locktype2 = 2 -17365648 locktype3 = 1 -17365649 goalCount = 2 -17365649 goalTotal = 2 -17365650 otherCount = 5 -~~~ -17365781 16 512 -17365998 DOWN 5 -17365998 0 512 -17366057 16 512 -17366358 DOWN 5 -17366358 0 512 -17370017 UP 10 -17370017 waslock = 0 -17370016 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17370044 512 16777728 -~~~ -17370086 DOWN 10 -17370086 0 16777728 -17370102 UP 10 -17370102 waslock = 0 -17370102 512 16777728 -~~~ -~~~ -17370109 512 16779776 -~~~ -~~~ -17370110 512 16779264 -17370111 homeCount = 10 -17370112 waitCount = 3 -17370112 ripCount = 4 -17370113 locktype1 = 0 -17370113 locktype2 = 2 -17370114 locktype3 = 1 -17370114 goalCount = 2 -17370115 goalTotal = 2 -17370115 otherCount = 5 -~~~ -~~~ -17370194 512 2048 -17370314 DOWN 10 -17370314 0 2048 -~~~ -~~~ -~~~ -~~~ -17370342 homeCount = 10 -17370342 waitCount = 3 -17370343 ripCount = 4 -17370343 locktype1 = 0 -17370344 locktype2 = 2 -17370344 locktype3 = 1 -17370345 goalCount = 2 -17370345 goalTotal = 2 -17370346 otherCount = 5 -~~~ -17370349 UP 10 -17370350 waslock = 0 -17370349 512 2048 -~~~ -17375317 DOWN 10 -17375317 0 2048 -~~~ -~~~ -~~~ -~~~ -17375343 homeCount = 10 -17375343 waitCount = 3 -17375344 ripCount = 4 -17375344 locktype1 = 0 -17375345 locktype2 = 2 -17375345 locktype3 = 1 -17375346 goalCount = 2 -17375346 goalTotal = 2 -17375347 otherCount = 5 -~~~ -17376808 UP 12 -17376808 2048 2048 -17377545 DOWN 12 -17377545 0 2048 -17377568 UP 12 -17377568 2048 2048 -17377991 DOWN 12 -17377991 0 2048 -17378027 UP 12 -17378027 2048 2048 -17378035 DOWN 12 -17378035 0 2048 -17378077 UP 12 -17378077 2048 2048 -17379308 CLICK1 -17379308 CLICK2 -~~~ -~~~ -~~~ -17379331 2048 67110912 -~~~ -17379481 2048 2048 -17385850 DOWN 12 -17385850 0 2048 -~~~ -~~~ -17385870 0 0 -~~~ -~~~ -17385872 0 1 -~~~ -~~~ -17385874 0 3 -~~~ -~~~ -17385876 0 7 -~~~ -~~~ -17385878 0 15 -~~~ -~~~ -17385879 0 31 -~~~ -~~~ -17385881 0 63 -~~~ -~~~ -17385883 0 127 -~~~ -~~~ -17385885 0 255 -17385886 homeCount = 10 -17385886 waitCount = 4 -17385887 ripCount = 4 -17385887 locktype1 = 0 -17385888 locktype2 = 2 -17385909 locktype3 = 1 -17385910 goalCount = 2 -17385910 goalTotal = 2 -17385911 otherCount = 5 -~~~ -17385912 CURRENTGOAL IS [8] -~~~ -17388562 UP 4 -17388562 8 255 -~~~ -~~~ -17388885 DOWN 4 -17388885 0 255 -~~~ -~~~ -17388905 0 254 -~~~ -~~~ -17388907 0 252 -~~~ -~~~ -17388909 0 248 -~~~ -~~~ -17388911 0 240 -~~~ -~~~ -17388913 0 224 -~~~ -~~~ -17388915 0 192 -~~~ -~~~ -17388916 0 128 -~~~ -~~~ -17388918 0 0 -~~~ -~~~ -17388920 0 512 -17388921 homeCount = 10 -17388922 waitCount = 4 -17388922 ripCount = 4 -17388923 locktype1 = 0 -17388923 locktype2 = 2 -17388944 locktype3 = 1 -17388945 goalCount = 2 -17388945 goalTotal = 2 -17388946 otherCount = 6 -~~~ -17388946 8 512 -17390803 DOWN 4 -17390803 0 512 -17390805 8 512 -17390813 DOWN 4 -17390813 0 512 -17390818 8 512 -17392370 DOWN 4 -17392370 0 512 -17392384 8 512 -17392555 DOWN 4 -17392555 0 512 -17392566 8 512 -17392739 DOWN 4 -17392739 0 512 -17392749 8 512 -17393053 DOWN 4 -17393053 0 512 -17397905 UP 10 -17397905 waslock = 0 -17397905 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17397935 512 16777728 -~~~ -17397959 DOWN 10 -17397959 0 16777728 -~~~ -~~~ -17397988 0 16778752 -~~~ -~~~ -17397989 0 16778240 -17397990 homeCount = 11 -17397991 waitCount = 4 -17397991 ripCount = 4 -17397992 locktype1 = 0 -17397992 locktype2 = 2 -17397993 locktype3 = 1 -17397993 goalCount = 2 -17397994 goalTotal = 2 -17397994 otherCount = 6 -~~~ -17398015 UP 10 -17398015 waslock = 0 -17398015 512 16778240 -~~~ -17398085 512 1024 -17398135 DOWN 10 -17398135 0 1024 -~~~ -~~~ -~~~ -~~~ -17398161 homeCount = 11 -17398161 waitCount = 4 -17398162 ripCount = 4 -17398162 locktype1 = 0 -17398163 locktype2 = 2 -17398163 locktype3 = 1 -17398164 goalCount = 2 -17398164 goalTotal = 2 -17398165 otherCount = 6 -~~~ -17398199 UP 10 -17398200 waslock = 0 -17398199 512 1024 -~~~ -17401566 DOWN 10 -17401566 0 1024 -~~~ -~~~ -~~~ -~~~ -17401591 homeCount = 11 -17401591 waitCount = 4 -17401592 ripCount = 4 -17401592 locktype1 = 0 -17401593 locktype2 = 2 -17401593 locktype3 = 1 -17401594 goalCount = 2 -17401594 goalTotal = 2 -17401595 otherCount = 6 -~~~ -17401630 UP 10 -17401630 waslock = 0 -17401630 512 1024 -17401646 DOWN 10 -17401646 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -17401673 homeCount = 11 -17401673 waitCount = 4 -17401674 ripCount = 4 -17401674 locktype1 = 0 -17401674 locktype2 = 2 -17401675 locktype3 = 1 -17401675 goalCount = 2 -17401676 goalTotal = 2 -17401676 otherCount = 6 -~~~ -17403114 UP 11 -17403114 1024 1024 -17403966 DOWN 11 -17403966 0 1024 -17404015 UP 11 -17404015 1024 1024 -17404028 DOWN 11 -17404028 0 1024 -17404049 UP 11 -17404049 1024 1024 -17405538 DOWN 11 -17405538 0 1024 -17405561 UP 11 -17405561 1024 1024 -17407114 BEEP1 -17407114 BEEP2 -~~~ -~~~ -~~~ -17407139 1024 33555456 -~~~ -17407289 1024 1024 -17411324 DOWN 11 -17411324 0 1024 -17411329 UP 11 -17411329 1024 1024 -~~~ -~~~ -17411346 1024 0 -~~~ -~~~ -17411348 1024 1 -~~~ -~~~ -17411350 1024 3 -~~~ -~~~ -17411352 1024 7 -~~~ -~~~ -17411353 1024 15 -~~~ -~~~ -17411355 1024 31 -~~~ -~~~ -17411357 1024 63 -~~~ -~~~ -17411359 1024 127 -~~~ -~~~ -17411361 1024 255 -17411362 homeCount = 11 -17411362 waitCount = 4 -17411363 ripCount = 5 -17411384 locktype1 = 0 -17411384 locktype2 = 2 -17411385 locktype3 = 1 -17411385 goalCount = 2 -17411386 goalTotal = 2 -17411386 otherCount = 6 -~~~ -17411387 CURRENTGOAL IS [8] -~~~ -17411388 DOWN 11 -17411388 0 255 -17411400 UP 11 -17411400 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411443 homeCount = 11 -17411444 waitCount = 4 -17411444 ripCount = 5 -17411445 locktype1 = 0 -17411445 locktype2 = 2 -17411446 locktype3 = 1 -17411446 goalCount = 2 -17411447 goalTotal = 2 -17411447 otherCount = 6 -~~~ -17411448 CURRENTGOAL IS [8] -~~~ -17411594 DOWN 11 -17411594 0 255 -17411605 UP 11 -17411605 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411634 homeCount = 11 -17411635 waitCount = 4 -17411636 ripCount = 5 -17411636 locktype1 = 0 -17411637 locktype2 = 2 -17411637 locktype3 = 1 -17411638 goalCount = 2 -17411638 goalTotal = 2 -17411638 otherCount = 6 -~~~ -17411640 CURRENTGOAL IS [8] -~~~ -17411643 DOWN 11 -17411643 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411684 UP 11 -17411684 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411695 homeCount = 11 -17411696 waitCount = 4 -17411696 ripCount = 5 -17411697 locktype1 = 0 -17411697 locktype2 = 2 -17411698 locktype3 = 1 -17411698 goalCount = 2 -17411699 goalTotal = 2 -17411699 otherCount = 6 -~~~ -17411700 CURRENTGOAL IS [8] -~~~ -17411725 DOWN 11 -17411725 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411763 homeCount = 11 -17411764 waitCount = 4 -17411765 ripCount = 5 -17411765 locktype1 = 0 -17411766 locktype2 = 2 -17411766 locktype3 = 1 -17411766 goalCount = 2 -17411767 goalTotal = 2 -17411767 otherCount = 6 -~~~ -17411769 CURRENTGOAL IS [8] -~~~ -17414174 UP 8 -17414174 128 255 -~~~ -~~~ -17414201 outer reward -~~~ -17414202 128 8388863 -~~~ -~~~ -17414479 DOWN 8 -17414479 0 8388863 -17414498 128 8388863 -~~~ -~~~ -17414500 128 8388862 -~~~ -~~~ -17414502 128 8388860 -~~~ -~~~ -17414503 128 8388856 -~~~ -~~~ -17414505 128 8388848 -~~~ -~~~ -17414507 128 8388832 -~~~ -~~~ -17414509 128 8388800 -~~~ -~~~ -17414511 128 8388736 -~~~ -~~~ -17414513 128 8388608 -~~~ -~~~ -17414514 128 8389120 -17414536 homeCount = 11 -17414537 waitCount = 4 -17414537 ripCount = 5 -17414537 locktype1 = 0 -17414538 locktype2 = 2 -17414538 locktype3 = 1 -17414539 goalCount = 3 -17414539 goalTotal = 3 -17414540 otherCount = 6 -~~~ -17414651 128 512 -17414876 DOWN 8 -17414876 0 512 -17414889 128 512 -17421666 DOWN 8 -17421666 0 512 -17426251 UP 10 -17426251 waslock = 0 -17426251 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17426278 512 16777728 -~~~ -17426428 512 512 -17426438 DOWN 10 -17426438 0 512 -~~~ -~~~ -17426454 0 1536 -~~~ -~~~ -17426456 0 1024 -17426457 homeCount = 12 -17426458 waitCount = 4 -17426458 ripCount = 5 -17426459 locktype1 = 0 -17426459 locktype2 = 2 -17426460 locktype3 = 1 -17426460 goalCount = 3 -17426461 goalTotal = 3 -17426461 otherCount = 6 -~~~ -17426536 UP 10 -17426537 waslock = 0 -17426536 512 1024 -~~~ -17430663 DOWN 10 -17430663 0 1024 -~~~ -~~~ -~~~ -~~~ -17430685 homeCount = 12 -17430685 waitCount = 4 -17430686 ripCount = 5 -17430686 locktype1 = 0 -17430687 locktype2 = 2 -17430687 locktype3 = 1 -17430688 goalCount = 3 -17430688 goalTotal = 3 -17430689 otherCount = 6 -~~~ -17432753 UP 11 -17432753 1024 1024 -17433614 DOWN 11 -17433614 0 1024 -17433672 UP 11 -17433672 1024 1024 -17434770 DOWN 11 -17434770 0 1024 -17434790 UP 11 -17434790 1024 1024 -17437253 DOWN 11 -17437253 0 1024 -17437320 UP 11 -17437320 1024 1024 -17437753 BEEP1 -17437753 BEEP2 -~~~ -~~~ -~~~ -17437773 1024 33555456 -~~~ -17437923 1024 1024 -17443197 DOWN 11 -17443197 0 1024 -~~~ -~~~ -17443221 0 0 -~~~ -~~~ -17443222 0 1 -~~~ -~~~ -17443224 0 3 -~~~ -~~~ -17443226 0 7 -~~~ -~~~ -17443228 0 15 -~~~ -~~~ -17443230 0 31 -~~~ -~~~ -17443232 0 63 -~~~ -~~~ -17443233 0 127 -~~~ -17443235 UP 11 -17443235 1024 127 -~~~ -17443236 homeCount = 12 -17443237 waitCount = 4 -17443237 ripCount = 6 -17443238 locktype1 = 0 -17443259 locktype2 = 2 -17443259 locktype3 = 1 -17443260 goalCount = 3 -17443260 goalTotal = 3 -17443261 otherCount = 6 -~~~ -17443262 CURRENTGOAL IS [8] -~~~ -17443262 1024 255 -17443287 DOWN 11 -17443287 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17443317 homeCount = 12 -17443318 waitCount = 4 -17443318 ripCount = 6 -17443319 locktype1 = 0 -17443319 locktype2 = 2 -17443320 locktype3 = 1 -17443320 goalCount = 3 -17443320 goalTotal = 3 -17443321 otherCount = 6 -~~~ -17443322 CURRENTGOAL IS [8] -~~~ -17443352 UP 11 -17443352 1024 255 -17443995 DOWN 11 -17443995 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444028 homeCount = 12 -17444028 waitCount = 4 -17444029 ripCount = 6 -17444029 locktype1 = 0 -17444030 locktype2 = 2 -17444030 locktype3 = 1 -17444031 goalCount = 3 -17444031 goalTotal = 3 -17444032 otherCount = 6 -~~~ -17444033 CURRENTGOAL IS [8] -~~~ -17444354 UP 11 -17444354 1024 255 -17444599 DOWN 11 -17444599 0 255 -17444616 UP 11 -17444616 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444637 homeCount = 12 -17444637 waitCount = 4 -17444638 ripCount = 6 -17444638 locktype1 = 0 -17444639 locktype2 = 2 -17444639 locktype3 = 1 -17444640 goalCount = 3 -17444640 goalTotal = 3 -17444641 otherCount = 6 -~~~ -17444642 CURRENTGOAL IS [8] -~~~ -17444645 DOWN 11 -17444645 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444702 homeCount = 12 -17444702 waitCount = 4 -17444703 ripCount = 6 -17444703 locktype1 = 0 -17444704 locktype2 = 2 -17444704 locktype3 = 1 -17444705 goalCount = 3 -17444705 goalTotal = 3 -17444706 otherCount = 6 -~~~ -17444707 CURRENTGOAL IS [8] -~~~ -17448341 UP 8 -17448341 128 255 -~~~ -~~~ -17448364 outer reward -~~~ -17448364 128 8388863 -~~~ -~~~ -17448537 DOWN 8 -17448537 0 8388863 -~~~ -~~~ -17448561 0 8388862 -~~~ -~~~ -17448563 0 8388860 -~~~ -~~~ -17448564 0 8388856 -~~~ -~~~ -17448566 0 8388848 -~~~ -~~~ -17448568 0 8388832 -~~~ -~~~ -17448570 0 8388800 -~~~ -~~~ -17448572 0 8388736 -~~~ -~~~ -17448573 0 8388608 -~~~ -~~~ -17448575 0 8389120 -17448576 homeCount = 12 -17448577 waitCount = 4 -17448598 ripCount = 6 -17448598 locktype1 = 0 -17448599 locktype2 = 2 -17448599 locktype3 = 1 -17448600 goalCount = 4 -17448600 goalTotal = 4 -17448601 otherCount = 6 -~~~ -17448601 128 8389120 -17448814 128 512 -17448949 DOWN 8 -17448949 0 512 -17448983 128 512 -17449076 DOWN 8 -17449076 0 512 -17449099 128 512 -17449201 DOWN 8 -17449201 0 512 -17449231 128 512 -17449326 DOWN 8 -17449326 0 512 -17449363 128 512 -17449462 DOWN 8 -17449462 0 512 -17449484 128 512 -17454977 DOWN 8 -17454977 0 512 -17461792 UP 10 -17461793 waslock = 0 -17461792 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17461817 512 16777728 -~~~ -17461948 DOWN 10 -17461948 0 16777728 -17461967 0 512 -~~~ -~~~ -17461972 0 2560 -~~~ -~~~ -17461974 0 2048 -17461975 homeCount = 13 -17461975 waitCount = 4 -17461976 ripCount = 6 -17461976 locktype1 = 0 -17461977 locktype2 = 2 -17461977 locktype3 = 1 -17461978 goalCount = 4 -17461978 goalTotal = 4 -17461979 otherCount = 6 -~~~ -17462000 UP 10 -17462000 waslock = 0 -17462000 512 2048 -~~~ -17465243 DOWN 10 -17465243 0 2048 -~~~ -~~~ -~~~ -~~~ -17465265 homeCount = 13 -17465266 waitCount = 4 -17465266 ripCount = 6 -17465267 locktype1 = 0 -17465267 locktype2 = 2 -17465268 locktype3 = 1 -17465268 goalCount = 4 -17465269 goalTotal = 4 -17465269 otherCount = 6 -~~~ -17465307 UP 10 -17465308 waslock = 0 -17465307 512 2048 -17465331 DOWN 10 -17465331 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17465361 homeCount = 13 -17465362 waitCount = 4 -17465362 ripCount = 6 -17465362 locktype1 = 0 -17465363 locktype2 = 2 -17465363 locktype3 = 1 -17465364 goalCount = 4 -17465364 goalTotal = 4 -17465365 otherCount = 6 -~~~ -17466887 UP 12 -17466887 2048 2048 -17466953 DOWN 12 -17466953 0 2048 -17466965 UP 12 -17466965 2048 2048 -17467866 DOWN 12 -17467866 0 2048 -17467881 UP 12 -17467881 2048 2048 -17468821 DOWN 12 -17468821 0 2048 -17468850 UP 12 -17468850 2048 2048 -17470138 CLICK1 -17470138 CLICK2 -~~~ -~~~ -~~~ -17470157 2048 67110912 -~~~ -17470307 2048 2048 -17478019 DOWN 12 -17478019 0 2048 -~~~ -~~~ -17478045 0 0 -~~~ -~~~ -17478047 0 1 -~~~ -~~~ -17478049 0 3 -~~~ -~~~ -17478051 0 7 -~~~ -~~~ -17478052 0 15 -~~~ -~~~ -17478054 0 31 -~~~ -~~~ -17478056 0 63 -~~~ -~~~ -17478058 0 127 -~~~ -~~~ -17478060 0 255 -17478061 homeCount = 13 -17478061 waitCount = 5 -17478062 ripCount = 6 -17478062 locktype1 = 0 -17478063 locktype2 = 2 -17478084 locktype3 = 1 -17478084 goalCount = 4 -17478085 goalTotal = 4 -17478085 otherCount = 6 -~~~ -17478086 CURRENTGOAL IS [8] -~~~ -17483323 UP 8 -17483323 128 255 -~~~ -~~~ -17483350 outer reward -~~~ -17483351 128 8388863 -~~~ -~~~ -17483557 DOWN 8 -17483557 0 8388863 -~~~ -~~~ -17483578 0 8388862 -~~~ -~~~ -17483580 0 8388860 -~~~ -~~~ -17483582 0 8388856 -~~~ -~~~ -17483584 0 8388848 -~~~ -~~~ -17483585 0 8388832 -~~~ -~~~ -17483587 0 8388800 -~~~ -~~~ -17483589 0 8388736 -~~~ -~~~ -17483591 0 8388608 -~~~ -~~~ -17483593 0 8389120 -17483594 homeCount = 13 -17483594 waitCount = 5 -17483616 ripCount = 6 -17483616 locktype1 = 0 -17483616 locktype2 = 2 -17483617 locktype3 = 1 -17483617 goalCount = 5 -17483618 goalTotal = 5 -17483618 otherCount = 6 -~~~ -17483619 128 8389120 -17483800 128 512 -17483845 DOWN 8 -17483845 0 512 -17483863 128 512 -17483965 DOWN 8 -17483965 0 512 -17483990 128 512 -17484079 DOWN 8 -17484079 0 512 -17484114 128 512 -17484192 DOWN 8 -17484192 0 512 -17484238 128 512 -17484318 DOWN 8 -17484318 0 512 -17484367 128 512 -17484450 DOWN 8 -17484450 0 512 -17484491 128 512 -17486711 DOWN 8 -17486711 0 512 -17486727 128 512 -17489526 DOWN 8 -17489526 0 512 -17489546 128 512 -17489608 DOWN 8 -17489608 0 512 -17493929 UP 10 -17493929 waslock = 0 -17493929 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17493954 512 16777728 -~~~ -17494104 512 512 -17494144 DOWN 10 -17494144 0 512 -17494153 UP 10 -17494153 waslock = 0 -17494153 512 512 -~~~ -~~~ -17494169 512 1536 -~~~ -~~~ -17494171 512 1024 -17494172 homeCount = 14 -17494172 waitCount = 5 -17494173 ripCount = 6 -17494173 locktype1 = 0 -17494174 locktype2 = 2 -17494174 locktype3 = 1 -17494175 goalCount = 5 -17494175 goalTotal = 5 -17494176 otherCount = 6 -~~~ -~~~ -17497685 DOWN 10 -17497685 0 1024 -~~~ -~~~ -~~~ -~~~ -17497711 homeCount = 14 -17497712 waitCount = 5 -17497712 ripCount = 6 -17497713 locktype1 = 0 -17497713 locktype2 = 2 -17497714 locktype3 = 1 -17497714 goalCount = 5 -17497715 goalTotal = 5 -17497715 otherCount = 6 -~~~ -17497748 UP 10 -17497748 waslock = 0 -17497748 512 1024 -17497761 DOWN 10 -17497761 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -17497787 homeCount = 14 -17497788 waitCount = 5 -17497788 ripCount = 6 -17497789 locktype1 = 0 -17497789 locktype2 = 2 -17497790 locktype3 = 1 -17497790 goalCount = 5 -17497790 goalTotal = 5 -17497791 otherCount = 6 -~~~ -17499720 UP 11 -17499720 1024 1024 -17501721 BEEP1 -17501721 BEEP2 -~~~ -~~~ -~~~ -17501741 1024 33555456 -~~~ -17501890 1024 1024 -17506486 DOWN 11 -17506486 0 1024 -17506499 UP 11 -17506499 1024 1024 -~~~ -~~~ -17506521 1024 0 -~~~ -~~~ -17506523 1024 1 -~~~ -~~~ -17506525 1024 3 -~~~ -~~~ -17506527 1024 7 -~~~ -~~~ -17506529 1024 15 -~~~ -~~~ -17506530 1024 31 -~~~ -~~~ -17506532 1024 63 -~~~ -~~~ -17506534 1024 127 -~~~ -~~~ -17506536 1024 255 -17506537 homeCount = 14 -17506537 waitCount = 5 -17506538 ripCount = 7 -17506559 locktype1 = 0 -17506560 locktype2 = 2 -17506560 locktype3 = 1 -17506561 goalCount = 5 -17506561 goalTotal = 5 -17506561 otherCount = 6 -~~~ -17506563 CURRENTGOAL IS [8] -~~~ -17506564 DOWN 11 -17506564 0 255 -17506596 UP 11 -17506596 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17506617 homeCount = 14 -17506617 waitCount = 5 -17506618 ripCount = 7 -17506618 locktype1 = 0 -17506619 locktype2 = 2 -17506619 locktype3 = 1 -17506620 goalCount = 5 -17506620 goalTotal = 5 -17506621 otherCount = 6 -~~~ -17506622 CURRENTGOAL IS [8] -~~~ -17509072 DOWN 11 -17509072 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17509109 homeCount = 14 -17509110 waitCount = 5 -17509110 ripCount = 7 -17509111 locktype1 = 0 -17509111 locktype2 = 2 -17509112 locktype3 = 1 -17509112 goalCount = 5 -17509113 goalTotal = 5 -17509113 otherCount = 6 -~~~ -17509114 CURRENTGOAL IS [8] -~~~ -17512927 UP 8 -17512927 128 255 -~~~ -~~~ -17512955 outer reward -~~~ -17512955 128 8388863 -~~~ -~~~ -17513181 DOWN 8 -17513181 0 8388863 -~~~ -~~~ -17513203 0 8388862 -~~~ -~~~ -17513205 0 8388860 -~~~ -~~~ -17513207 0 8388856 -~~~ -~~~ -17513209 0 8388848 -~~~ -~~~ -17513211 0 8388832 -~~~ -~~~ -17513213 0 8388800 -~~~ -~~~ -17513214 0 8388736 -~~~ -~~~ -17513216 0 8388608 -~~~ -~~~ -17513218 0 8389120 -17513219 homeCount = 14 -17513220 waitCount = 5 -17513240 ripCount = 7 -17513241 locktype1 = 0 -17513241 locktype2 = 2 -17513242 locktype3 = 1 -17513242 goalCount = 6 -17513243 goalTotal = 6 -17513243 otherCount = 6 -~~~ -17513244 128 8389120 -17513405 128 512 -17513479 DOWN 8 -17513479 0 512 -17513494 128 512 -17513590 DOWN 8 -17513590 0 512 -17513629 128 512 -17513711 DOWN 8 -17513711 0 512 -17513756 128 512 -17513838 DOWN 8 -17513838 0 512 -17513885 128 512 -17513986 DOWN 8 -17513986 0 512 -17514007 128 512 -17514134 DOWN 8 -17514134 0 512 -17514141 128 512 -17514281 DOWN 8 -17514281 0 512 -17514290 128 512 -17514893 DOWN 8 -17514893 0 512 -17514904 128 512 -17518932 DOWN 8 -17518932 0 512 -17518938 128 512 -17519269 DOWN 8 -17519269 0 512 -17519335 128 512 -17519347 DOWN 8 -17519347 0 512 -17524157 UP 10 -17524157 waslock = 0 -17524157 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17524183 512 16777728 -~~~ -17524333 512 512 -17529362 DOWN 10 -17529362 0 512 -~~~ -~~~ -17529386 0 2560 -~~~ -~~~ -17529388 0 2048 -17529389 homeCount = 15 -17529390 waitCount = 5 -17529390 ripCount = 7 -17529391 locktype1 = 0 -17529391 locktype2 = 2 -17529392 locktype3 = 1 -17529392 goalCount = 6 -17529393 goalTotal = 6 -17529393 otherCount = 6 -~~~ -17530797 UP 12 -17530797 2048 2048 -17532183 DOWN 12 -17532183 0 2048 -17532260 UP 12 -17532260 2048 2048 -17533139 DOWN 12 -17533139 0 2048 -17533154 UP 12 -17533154 2048 2048 -17533246 DOWN 12 -17533246 0 2048 -17533274 UP 12 -17533274 2048 2048 -17534047 CLICK1 -17534047 CLICK2 -~~~ -~~~ -~~~ -17534071 2048 67110912 -~~~ -17534221 2048 2048 -17540436 DOWN 12 -17540436 0 2048 -~~~ -~~~ -17540456 0 0 -~~~ -~~~ -17540458 0 1 -~~~ -~~~ -17540460 UP 12 -17540460 2048 3 -~~~ -~~~ -17540462 2048 7 -~~~ -~~~ -17540463 2048 15 -~~~ -~~~ -17540465 2048 31 -~~~ -~~~ -17540467 2048 63 -~~~ -~~~ -17540469 2048 127 -~~~ -~~~ -17540471 2048 255 -17540472 homeCount = 15 -17540472 waitCount = 6 -17540494 ripCount = 7 -17540494 locktype1 = 0 -17540494 locktype2 = 2 -17540495 locktype3 = 1 -17540495 goalCount = 6 -17540496 goalTotal = 6 -17540496 otherCount = 6 -~~~ -17540497 CURRENTGOAL IS [8] -~~~ -17541587 DOWN 12 -17541587 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17541625 homeCount = 15 -17541625 waitCount = 6 -17541626 ripCount = 7 -17541626 locktype1 = 0 -17541627 locktype2 = 2 -17541627 locktype3 = 1 -17541628 goalCount = 6 -17541628 goalTotal = 6 -17541629 otherCount = 6 -~~~ -17541630 CURRENTGOAL IS [8] -~~~ -17541658 UP 12 -17541658 2048 255 -17541921 DOWN 12 -17541921 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17541955 homeCount = 15 -17541956 waitCount = 6 -17541956 ripCount = 7 -17541957 locktype1 = 0 -17541957 locktype2 = 2 -17541958 locktype3 = 1 -17541958 goalCount = 6 -17541959 goalTotal = 6 -17541959 otherCount = 6 -~~~ -17541960 CURRENTGOAL IS [8] -~~~ -17545684 UP 8 -17545684 128 255 -~~~ -~~~ -17545712 outer reward -~~~ -17545712 128 8388863 -~~~ -~~~ -17545903 DOWN 8 -17545903 0 8388863 -~~~ -~~~ -17545920 0 8388862 -~~~ -~~~ -17545921 0 8388860 -~~~ -~~~ -17545923 0 8388856 -~~~ -~~~ -17545925 0 8388848 -~~~ -~~~ -17545927 0 8388832 -~~~ -~~~ -17545929 0 8388800 -~~~ -~~~ -17545930 0 8388736 -~~~ -~~~ -17545932 0 8388608 -~~~ -~~~ -17545934 0 8389120 -17545935 homeCount = 15 -17545936 waitCount = 6 -17545957 ripCount = 7 -17545957 locktype1 = 0 -17545958 locktype2 = 2 -17545958 locktype3 = 1 -17545959 goalCount = 7 -17545959 goalTotal = 7 -17545960 otherCount = 6 -~~~ -17545973 128 8389120 -17546162 128 512 -17546357 DOWN 8 -17546357 0 512 -17546382 128 512 -17546476 DOWN 8 -17546476 0 512 -17546510 128 512 -17546604 DOWN 8 -17546604 0 512 -17546636 128 512 -17546732 DOWN 8 -17546732 0 512 -17546771 128 512 -17546862 DOWN 8 -17546862 0 512 -17546900 128 512 -17547009 DOWN 8 -17547009 0 512 -17547028 128 512 -17549002 DOWN 8 -17549002 0 512 -17549012 128 512 -17551604 DOWN 8 -17551604 0 512 -17551642 128 512 -17551692 DOWN 8 -17551692 0 512 -17555613 UP 10 -17555614 waslock = 0 -17555613 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17555639 512 16777728 -~~~ -17555789 512 512 -17555789 DOWN 10 -17555789 0 512 -~~~ -~~~ -17555815 0 2560 -~~~ -~~~ -17555817 0 2048 -17555818 homeCount = 16 -17555819 waitCount = 6 -17555819 ripCount = 7 -17555820 locktype1 = 0 -17555820 locktype2 = 2 -17555821 locktype3 = 1 -17555821 goalCount = 7 -17555822 goalTotal = 7 -17555822 otherCount = 6 -~~~ -17555873 UP 10 -17555874 waslock = 0 -17555873 512 2048 -~~~ -17560044 DOWN 10 -17560044 0 2048 -~~~ -~~~ -~~~ -~~~ -17560066 homeCount = 16 -17560066 waitCount = 6 -17560067 ripCount = 7 -17560067 locktype1 = 0 -17560068 locktype2 = 2 -17560068 locktype3 = 1 -17560069 goalCount = 7 -17560069 goalTotal = 7 -17560070 otherCount = 6 -~~~ -17561628 UP 12 -17561628 2048 2048 -17563348 DOWN 12 -17563348 0 2048 -17563378 UP 12 -17563378 2048 2048 -17563628 CLICK1 -17563628 CLICK2 -~~~ -~~~ -~~~ -17563654 2048 67110912 -~~~ -17563804 2048 2048 -17569146 DOWN 12 -17569146 0 2048 -~~~ -~~~ -17569173 0 0 -~~~ -~~~ -17569175 0 1 -~~~ -~~~ -17569177 0 3 -~~~ -~~~ -17569179 0 7 -~~~ -~~~ -17569180 0 15 -~~~ -~~~ -17569182 0 31 -~~~ -~~~ -17569184 0 63 -~~~ -~~~ -17569186 0 127 -~~~ -17569187 UP 12 -17569187 2048 127 -~~~ -17569189 homeCount = 16 -17569189 waitCount = 7 -17569190 ripCount = 7 -17569190 locktype1 = 0 -17569211 locktype2 = 2 -17569212 locktype3 = 1 -17569212 goalCount = 7 -17569212 goalTotal = 7 -17569213 otherCount = 6 -~~~ -17569214 CURRENTGOAL IS [8] -~~~ -17569214 DOWN 12 -17569214 0 255 -17569225 UP 12 -17569225 2048 255 -17569227 DOWN 12 -17569226 0 255 -17569253 UP 12 -17569253 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17569271 homeCount = 16 -17569271 waitCount = 7 -17569272 ripCount = 7 -17569272 locktype1 = 0 -17569273 locktype2 = 2 -17569273 locktype3 = 1 -17569274 goalCount = 7 -17569274 goalTotal = 7 -17569275 otherCount = 6 -~~~ -17569276 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17569304 homeCount = 16 -17569304 waitCount = 7 -17569305 ripCount = 7 -17569305 locktype1 = 0 -17569306 locktype2 = 2 -17569306 locktype3 = 1 -17569307 goalCount = 7 -17569328 goalTotal = 7 -17569328 otherCount = 6 -~~~ -17569329 CURRENTGOAL IS [8] -~~~ -17570621 DOWN 12 -17570621 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17570647 UP 12 -17570647 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17570656 homeCount = 16 -17570656 waitCount = 7 -17570657 ripCount = 7 -17570657 locktype1 = 0 -17570658 locktype2 = 2 -17570658 locktype3 = 1 -17570659 goalCount = 7 -17570659 goalTotal = 7 -17570660 otherCount = 6 -~~~ -17570661 CURRENTGOAL IS [8] -~~~ -17572075 DOWN 12 -17572075 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17572108 homeCount = 16 -17572109 waitCount = 7 -17572109 ripCount = 7 -17572110 locktype1 = 0 -17572110 locktype2 = 2 -17572111 locktype3 = 1 -17572111 goalCount = 7 -17572112 goalTotal = 7 -17572112 otherCount = 6 -~~~ -17572113 CURRENTGOAL IS [8] -~~~ -17576141 UP 8 -17576141 128 255 -~~~ -~~~ -17576167 outer reward -~~~ -17576167 128 8388863 -~~~ -~~~ -17576274 DOWN 8 -17576274 0 8388863 -~~~ -~~~ -17576295 0 8388862 -~~~ -~~~ -17576297 0 8388860 -~~~ -~~~ -17576299 0 8388856 -~~~ -~~~ -17576301 0 8388848 -~~~ -~~~ -17576303 0 8388832 -~~~ -~~~ -17576304 0 8388800 -~~~ -~~~ -17576306 0 8388736 -~~~ -~~~ -17576308 0 8388608 -~~~ -~~~ -17576310 0 8389120 -17576311 homeCount = 16 -17576311 waitCount = 7 -17576333 ripCount = 7 -17576333 locktype1 = 0 -17576334 locktype2 = 2 -17576334 locktype3 = 1 -17576335 goalCount = 8 -17576335 goalTotal = 8 -17576336 otherCount = 6 -~~~ -17576336 128 8389120 -17576457 DOWN 8 -17576457 0 8389120 -17576472 128 8389120 -17576617 128 512 -17576727 DOWN 8 -17576727 0 512 -17576733 128 512 -17576842 DOWN 8 -17576842 0 512 -17576862 128 512 -17576969 DOWN 8 -17576969 0 512 -17576981 128 512 -17577099 DOWN 8 -17577099 0 512 -17577112 128 512 -17577236 DOWN 8 -17577236 0 512 -17577241 128 512 -17582498 DOWN 8 -17582498 0 512 -17586638 UP 10 -17586638 waslock = 0 -17586638 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17586667 512 16777728 -~~~ -17586817 512 512 -17586841 DOWN 10 -17586841 0 512 -~~~ -~~~ -17586860 0 1536 -~~~ -~~~ -17586862 0 1024 -17586863 homeCount = 17 -17586863 waitCount = 7 -17586864 ripCount = 7 -17586864 locktype1 = 0 -17586865 locktype2 = 2 -17586865 locktype3 = 1 -17586866 goalCount = 8 -17586866 goalTotal = 8 -17586867 otherCount = 6 -~~~ -17586888 UP 10 -17586888 waslock = 0 -17586888 512 1024 -~~~ -17591203 DOWN 10 -17591203 0 1024 -~~~ -~~~ -~~~ -~~~ -17591232 homeCount = 17 -17591233 waitCount = 7 -17591233 ripCount = 7 -17591234 locktype1 = 0 -17591234 locktype2 = 2 -17591235 locktype3 = 1 -17591235 goalCount = 8 -17591236 goalTotal = 8 -17591236 otherCount = 6 -~~~ -17591254 UP 10 -17591255 waslock = 0 -17591254 512 1024 -~~~ -17591283 DOWN 10 -17591283 0 1024 -~~~ -~~~ -~~~ -~~~ -17591304 homeCount = 17 -17591305 waitCount = 7 -17591305 ripCount = 7 -17591306 locktype1 = 0 -17591306 locktype2 = 2 -17591307 locktype3 = 1 -17591307 goalCount = 8 -17591308 goalTotal = 8 -17591308 otherCount = 6 -~~~ -17593343 UP 11 -17593343 1024 1024 -17594782 DOWN 11 -17594782 0 1024 -17594806 UP 11 -17594806 1024 1024 -17596343 BEEP1 -17596343 BEEP2 -~~~ -~~~ -~~~ -17596371 1024 33555456 -~~~ -17596521 1024 1024 -17602296 DOWN 11 -17602296 0 1024 -~~~ -~~~ -17602317 0 0 -~~~ -~~~ -17602319 0 1 -~~~ -~~~ -17602321 0 3 -~~~ -~~~ -17602323 0 7 -~~~ -~~~ -17602324 0 15 -~~~ -~~~ -17602326 0 31 -~~~ -~~~ -17602328 0 63 -~~~ -~~~ -17602330 0 127 -~~~ -17602331 UP 11 -17602331 1024 127 -~~~ -17602333 homeCount = 17 -17602333 waitCount = 7 -17602334 ripCount = 8 -17602334 locktype1 = 0 -17602355 locktype2 = 2 -17602356 locktype3 = 1 -17602356 goalCount = 8 -17602357 goalTotal = 8 -17602357 otherCount = 6 -~~~ -17602358 CURRENTGOAL IS [8] -~~~ -17602358 1024 255 -17602389 DOWN 11 -17602389 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17602424 homeCount = 17 -17602424 waitCount = 7 -17602425 ripCount = 8 -17602425 locktype1 = 0 -17602426 locktype2 = 2 -17602426 locktype3 = 1 -17602427 goalCount = 8 -17602427 goalTotal = 8 -17602428 otherCount = 6 -~~~ -17602429 CURRENTGOAL IS [8] -~~~ -17605378 UP 8 -17605378 128 255 -~~~ -~~~ -17605400 outer reward -~~~ -17605401 128 8388863 -~~~ -~~~ -17605620 DOWN 8 -17605620 0 8388863 -~~~ -~~~ -17605639 0 8388862 -~~~ -~~~ -17605641 0 8388860 -~~~ -~~~ -17605643 0 8388856 -~~~ -~~~ -17605644 0 8388848 -~~~ -~~~ -17605646 0 8388832 -~~~ -~~~ -17605648 0 8388800 -~~~ -~~~ -17605650 0 8388736 -~~~ -~~~ -17605652 0 8388608 -~~~ -~~~ -17605654 0 8389120 -17605655 homeCount = 17 -17605655 waitCount = 7 -17605676 ripCount = 8 -17605677 locktype1 = 0 -17605677 locktype2 = 2 -17605678 locktype3 = 1 -17605678 goalCount = 9 -17605679 goalTotal = 9 -17605679 otherCount = 6 -~~~ -17605680 128 8389120 -17605850 128 512 -17606053 DOWN 8 -17606053 0 512 -17606073 128 512 -17606178 DOWN 8 -17606178 0 512 -17606191 128 512 -17606307 DOWN 8 -17606307 0 512 -17606321 128 512 -17606437 DOWN 8 -17606437 0 512 -17606454 128 512 -17606881 DOWN 8 -17606881 0 512 -17606887 128 512 -17611622 DOWN 8 -17611622 0 512 -17611648 128 512 -17611713 DOWN 8 -17611713 0 512 -17616088 UP 10 -17616088 waslock = 0 -17616088 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17616116 512 16777728 -~~~ -17616256 DOWN 10 -17616256 0 16777728 -17616266 0 512 -~~~ -~~~ -17616281 0 1536 -~~~ -~~~ -17616283 0 1024 -17616284 homeCount = 18 -17616285 waitCount = 7 -17616285 ripCount = 8 -17616286 locktype1 = 0 -17616286 locktype2 = 2 -17616286 locktype3 = 1 -17616287 goalCount = 9 -17616287 goalTotal = 9 -17616288 otherCount = 6 -~~~ -17616317 UP 10 -17616318 waslock = 0 -17616317 512 1024 -~~~ -17619930 DOWN 10 -17619930 0 1024 -~~~ -~~~ -~~~ -~~~ -17619958 homeCount = 18 -17619958 waitCount = 7 -17619959 ripCount = 8 -17619959 locktype1 = 0 -17619960 locktype2 = 2 -17619960 locktype3 = 1 -17619961 goalCount = 9 -17619961 goalTotal = 9 -17619962 otherCount = 6 -~~~ -17619966 UP 10 -17619966 waslock = 0 -17619966 512 1024 -~~~ -17620023 DOWN 10 -17620022 0 1024 -~~~ -~~~ -~~~ -~~~ -17620051 homeCount = 18 -17620051 waitCount = 7 -17620052 ripCount = 8 -17620052 locktype1 = 0 -17620053 locktype2 = 2 -17620053 locktype3 = 1 -17620054 goalCount = 9 -17620054 goalTotal = 9 -17620055 otherCount = 6 -~~~ -17622132 UP 11 -17622132 1024 1024 -17623222 DOWN 11 -17623222 0 1024 -17623251 UP 11 -17623251 1024 1024 -17624459 DOWN 11 -17624459 0 1024 -17624483 UP 11 -17624483 1024 1024 -17624883 BEEP1 -17624883 BEEP2 -~~~ -~~~ -~~~ -17624910 1024 33555456 -~~~ -17625060 1024 1024 -17629415 DOWN 11 -17629415 0 1024 -~~~ -~~~ -17629435 0 0 -~~~ -~~~ -17629437 0 1 -~~~ -~~~ -17629439 0 3 -~~~ -~~~ -17629440 0 7 -~~~ -~~~ -17629442 0 15 -~~~ -~~~ -17629444 UP 11 -17629444 1024 31 -~~~ -~~~ -17629446 1024 63 -~~~ -~~~ -17629448 1024 127 -~~~ -~~~ -17629450 1024 255 -17629451 homeCount = 18 -17629451 waitCount = 7 -17629452 ripCount = 9 -17629473 locktype1 = 0 -17629473 locktype2 = 2 -17629474 locktype3 = 1 -17629474 goalCount = 9 -17629475 goalTotal = 9 -17629475 otherCount = 6 -~~~ -17629476 CURRENTGOAL IS [8] -~~~ -17629477 DOWN 11 -17629477 0 255 -17629481 UP 11 -17629481 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17629533 homeCount = 18 -17629533 waitCount = 7 -17629534 ripCount = 9 -17629534 locktype1 = 0 -17629535 locktype2 = 2 -17629535 locktype3 = 1 -17629536 goalCount = 9 -17629536 goalTotal = 9 -17629537 otherCount = 6 -~~~ -17629538 CURRENTGOAL IS [8] -~~~ -17631515 DOWN 11 -17631515 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17631553 homeCount = 18 -17631553 waitCount = 7 -17631554 ripCount = 9 -17631554 locktype1 = 0 -17631555 locktype2 = 2 -17631556 locktype3 = 1 -17631556 goalCount = 9 -17631556 goalTotal = 9 -17631557 otherCount = 6 -~~~ -17631558 CURRENTGOAL IS [8] -~~~ -17634612 UP 8 -17634612 128 255 -~~~ -~~~ -17634638 outer reward -~~~ -17634638 128 8388863 -~~~ -~~~ -17634643 outerreps = 8 -~~~ -~~~ -17634881 DOWN 8 -17634881 0 8388863 -~~~ -~~~ -17634905 0 8388862 -~~~ -~~~ -17634907 0 8388860 -~~~ -~~~ -17634909 0 8388856 -~~~ -~~~ -17634911 0 8388848 -~~~ -~~~ -17634913 0 8388832 -~~~ -~~~ -17634914 0 8388800 -~~~ -~~~ -17634916 0 8388736 -~~~ -~~~ -17634918 0 8388608 -~~~ -~~~ -17634920 0 8389120 -17634921 homeCount = 18 -17634922 waitCount = 7 -17634942 ripCount = 9 -17634943 locktype1 = 0 -17634943 locktype2 = 2 -17634944 locktype3 = 1 -17634944 goalCount = 0 -17634945 goalTotal = 10 -17634945 otherCount = 6 -~~~ -17634946 128 8389120 -17635088 128 512 -17635186 DOWN 8 -17635186 0 512 -17635204 128 512 -17635303 DOWN 8 -17635303 0 512 -17635337 128 512 -17635422 DOWN 8 -17635422 0 512 -17635469 128 512 -17635548 DOWN 8 -17635548 0 512 -17635588 128 512 -17635675 DOWN 8 -17635675 0 512 -17635720 128 512 -17635815 DOWN 8 -17635815 0 512 -17635847 128 512 -17635966 DOWN 8 -17635966 0 512 -17635980 128 512 -17641244 DOWN 8 -17641243 0 512 -17646112 UP 10 -17646112 waslock = 0 -17646112 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17646140 512 16777728 -~~~ -17646290 512 512 -17646421 DOWN 10 -17646421 0 512 -~~~ -~~~ -17646445 0 2560 -~~~ -~~~ -17646447 0 2048 -17646448 homeCount = 19 -17646449 waitCount = 7 -17646449 ripCount = 9 -17646450 locktype1 = 0 -17646450 locktype2 = 2 -17646451 locktype3 = 1 -17646451 goalCount = 0 -17646452 goalTotal = 10 -17646452 otherCount = 6 -~~~ -17646474 UP 10 -17646474 waslock = 0 -17646474 512 2048 -~~~ -17650594 DOWN 10 -17650594 0 2048 -~~~ -~~~ -~~~ -~~~ -17650618 homeCount = 19 -17650619 waitCount = 7 -17650619 ripCount = 9 -17650620 locktype1 = 0 -17650620 locktype2 = 2 -17650621 locktype3 = 1 -17650621 goalCount = 0 -17650621 goalTotal = 10 -17650622 otherCount = 6 -~~~ -17650651 UP 10 -17650651 waslock = 0 -17650651 512 2048 -~~~ -17650683 DOWN 10 -17650683 0 2048 -~~~ -~~~ -~~~ -~~~ -17650701 homeCount = 19 -17650702 waitCount = 7 -17650702 ripCount = 9 -17650703 locktype1 = 0 -17650703 locktype2 = 2 -17650704 locktype3 = 1 -17650704 goalCount = 0 -17650705 goalTotal = 10 -17650705 otherCount = 6 -~~~ -17652063 UP 12 -17652063 2048 2048 -17654813 CLICK1 -17654813 CLICK2 -~~~ -~~~ -~~~ -17654838 2048 67110912 -~~~ -17654988 2048 2048 -17661976 DOWN 12 -17661976 0 2048 -~~~ -~~~ -17661996 0 0 -~~~ -~~~ -17661998 0 1 -~~~ -~~~ -17662000 0 3 -~~~ -~~~ -17662002 0 7 -~~~ -~~~ -17662004 0 15 -~~~ -~~~ -17662005 0 31 -~~~ -~~~ -17662007 0 63 -~~~ -~~~ -17662009 0 127 -~~~ -~~~ -17662011 0 255 -17662012 homeCount = 19 -17662012 waitCount = 8 -17662013 ripCount = 9 -17662014 locktype1 = 0 -17662014 locktype2 = 2 -17662035 locktype3 = 1 -17662035 goalCount = 0 -17662036 goalTotal = 10 -17662036 otherCount = 6 -~~~ -17662037 CURRENTGOAL IS [2] -~~~ -17662039 UP 12 -17662039 2048 255 -17662076 DOWN 12 -17662076 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17662113 homeCount = 19 -17662113 waitCount = 8 -17662114 ripCount = 9 -17662114 locktype1 = 0 -17662115 locktype2 = 2 -17662115 locktype3 = 1 -17662116 goalCount = 0 -17662116 goalTotal = 10 -17662117 otherCount = 6 -~~~ -17662118 CURRENTGOAL IS [2] -~~~ -17666107 UP 8 -17666107 128 255 -~~~ -~~~ -17666295 DOWN 8 -17666295 0 255 -~~~ -~~~ -17666317 0 254 -~~~ -~~~ -17666319 0 252 -~~~ -~~~ -17666321 0 248 -~~~ -~~~ -17666323 0 240 -~~~ -~~~ -17666324 0 224 -~~~ -~~~ -17666326 0 192 -~~~ -~~~ -17666328 0 128 -~~~ -~~~ -17666330 0 0 -~~~ -~~~ -17666332 0 512 -17666333 homeCount = 19 -17666333 waitCount = 8 -17666334 ripCount = 9 -17666334 locktype1 = 0 -17666355 locktype2 = 2 -17666356 locktype3 = 1 -17666356 goalCount = 0 -17666357 goalTotal = 10 -17666357 otherCount = 7 -~~~ -17666359 128 512 -17666796 DOWN 8 -17666796 0 512 -17671204 UP 10 -17671204 waslock = 0 -17671204 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17671234 512 16777728 -~~~ -17671353 DOWN 10 -17671353 0 16777728 -~~~ -~~~ -17671381 0 16779776 -~~~ -~~~ -17671382 0 16779264 -17671383 homeCount = 20 -17671384 waitCount = 8 -17671384 ripCount = 9 -17671385 locktype1 = 0 -17671385 locktype2 = 2 -17671386 locktype3 = 1 -17671386 goalCount = 0 -17671387 goalTotal = 10 -17671387 otherCount = 7 -~~~ -17671408 0 2048 -17671450 UP 10 -17671450 waslock = 0 -17671450 512 2048 -~~~ -17674585 DOWN 10 -17674585 0 2048 -~~~ -~~~ -~~~ -~~~ -17674611 homeCount = 20 -17674611 waitCount = 8 -17674612 ripCount = 9 -17674612 locktype1 = 0 -17674613 locktype2 = 2 -17674613 locktype3 = 1 -17674614 goalCount = 0 -17674614 goalTotal = 10 -17674615 otherCount = 7 -~~~ -17676314 UP 12 -17676314 2048 2048 -17676340 DOWN 12 -17676340 0 2048 -17676358 UP 12 -17676358 2048 2048 -17678656 DOWN 12 -17678656 0 2048 -17678662 UP 12 -17678662 2048 2048 -17681064 CLICK1 -17681064 CLICK2 -~~~ -~~~ -~~~ -17681098 2048 67110912 -~~~ -17681199 DOWN 12 -17681199 0 67110912 -17681207 UP 12 -17681207 2048 67110912 -17681248 2048 2048 -~~~ -~~~ -17681272 2048 0 -~~~ -~~~ -17681273 2048 1 -~~~ -~~~ -17681275 2048 3 -~~~ -~~~ -17681277 2048 7 -~~~ -~~~ -17681279 2048 15 -~~~ -~~~ -17681281 2048 31 -~~~ -~~~ -17681282 2048 63 -~~~ -~~~ -17681284 2048 127 -~~~ -~~~ -17681286 2048 255 -17681287 homeCount = 20 -17681288 waitCount = 9 -17681288 ripCount = 9 -17681309 locktype1 = 0 -17681309 locktype2 = 2 -17681310 locktype3 = 1 -17681310 goalCount = 0 -17681311 goalTotal = 10 -17681311 otherCount = 7 -~~~ -17681313 CURRENTGOAL IS [2] -~~~ -17687455 DOWN 12 -17687455 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17687496 homeCount = 20 -17687497 waitCount = 9 -17687497 ripCount = 9 -17687498 locktype1 = 0 -17687498 locktype2 = 2 -17687499 locktype3 = 1 -17687499 goalCount = 0 -17687500 goalTotal = 10 -17687500 otherCount = 7 -~~~ -17687501 CURRENTGOAL IS [2] -~~~ -17693473 UP 2 -17693473 2 255 -~~~ -~~~ -17693497 outer reward -~~~ -17693498 2 131327 -~~~ -~~~ -17693506 DOWN 2 -17693506 0 131327 -~~~ -~~~ -17693527 0 131326 -~~~ -~~~ -17693529 0 131324 -~~~ -~~~ -17693531 0 131320 -~~~ -~~~ -17693532 0 131312 -~~~ -~~~ -17693534 0 131296 -~~~ -~~~ -17693536 0 131264 -~~~ -~~~ -17693538 0 131200 -~~~ -~~~ -17693540 0 131072 -~~~ -~~~ -17693542 0 131584 -17693543 homeCount = 20 -17693543 waitCount = 9 -17693544 ripCount = 9 -17693565 locktype1 = 0 -17693565 locktype2 = 2 -17693566 locktype3 = 1 -17693566 goalCount = 1 -17693567 goalTotal = 11 -17693567 otherCount = 7 -~~~ -17693568 2 131584 -17693947 2 512 -17699688 DOWN 2 -17699687 0 512 -17699753 2 512 -17699799 DOWN 2 -17699799 0 512 -17705120 UP 10 -17705121 waslock = 0 -17705120 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17705153 512 16777728 -~~~ -17705303 512 512 -17708019 DOWN 10 -17708019 0 512 -~~~ -~~~ -17708036 0 2560 -~~~ -~~~ -17708038 0 2048 -17708039 homeCount = 21 -17708039 waitCount = 9 -17708040 ripCount = 9 -17708040 locktype1 = 0 -17708041 locktype2 = 2 -17708041 locktype3 = 1 -17708042 goalCount = 1 -17708042 goalTotal = 11 -17708043 otherCount = 7 -~~~ -17708064 UP 10 -17708064 waslock = 0 -17708064 512 2048 -~~~ -17708128 DOWN 10 -17708128 0 2048 -~~~ -~~~ -~~~ -~~~ -17708149 homeCount = 21 -17708150 waitCount = 9 -17708150 ripCount = 9 -17708151 locktype1 = 0 -17708151 locktype2 = 2 -17708152 locktype3 = 1 -17708152 goalCount = 1 -17708153 goalTotal = 11 -17708153 otherCount = 7 -~~~ -17710005 UP 12 -17710005 2048 2048 -17710933 DOWN 12 -17710933 0 2048 -17710973 UP 12 -17710973 2048 2048 -17711488 DOWN 12 -17711488 0 2048 -17711505 UP 12 -17711505 2048 2048 -17713006 CLICK1 -17713006 CLICK2 -~~~ -~~~ -~~~ -17713029 2048 67110912 -~~~ -17713179 2048 2048 -17718698 DOWN 12 -17718698 0 2048 -17718711 UP 12 -17718711 2048 2048 -~~~ -~~~ -17718718 2048 0 -~~~ -~~~ -17718719 2048 1 -~~~ -~~~ -17718721 2048 3 -~~~ -~~~ -17718723 2048 7 -~~~ -~~~ -17718725 2048 15 -~~~ -~~~ -17718727 2048 31 -~~~ -~~~ -17718728 2048 63 -~~~ -~~~ -17718730 2048 127 -~~~ -~~~ -17718732 2048 255 -17718733 homeCount = 21 -17718734 waitCount = 10 -17718734 ripCount = 9 -17718755 locktype1 = 0 -17718756 locktype2 = 2 -17718756 locktype3 = 1 -17718757 goalCount = 1 -17718757 goalTotal = 11 -17718758 otherCount = 7 -~~~ -17718759 CURRENTGOAL IS [2] -~~~ -17718770 DOWN 12 -17718770 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17718805 homeCount = 21 -17718805 waitCount = 10 -17718806 ripCount = 9 -17718806 locktype1 = 0 -17718807 locktype2 = 2 -17718807 locktype3 = 1 -17718808 goalCount = 1 -17718808 goalTotal = 11 -17718809 otherCount = 7 -~~~ -17718810 CURRENTGOAL IS [2] -~~~ -17718839 UP 12 -17718839 2048 255 -17719213 DOWN 12 -17719213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17719257 homeCount = 21 -17719258 waitCount = 10 -17719258 ripCount = 9 -17719259 locktype1 = 0 -17719259 locktype2 = 2 -17719260 locktype3 = 1 -17719260 goalCount = 1 -17719261 goalTotal = 11 -17719261 otherCount = 7 -~~~ -17719262 CURRENTGOAL IS [2] -~~~ -17719283 UP 12 -17719283 2048 255 -17719362 DOWN 12 -17719362 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17719398 homeCount = 21 -17719399 waitCount = 10 -17719399 ripCount = 9 -17719400 locktype1 = 0 -17719400 locktype2 = 2 -17719401 locktype3 = 1 -17719401 goalCount = 1 -17719402 goalTotal = 11 -17719402 otherCount = 7 -~~~ -17719403 CURRENTGOAL IS [2] -~~~ -17726146 UP 8 -17726146 128 255 -~~~ -~~~ -17726549 DOWN 8 -17726549 0 255 -~~~ -~~~ -17726574 0 254 -~~~ -~~~ -17726576 0 252 -~~~ -~~~ -17726578 0 248 -~~~ -~~~ -17726580 0 240 -~~~ -~~~ -17726582 0 224 -~~~ -~~~ -17726584 0 192 -~~~ -~~~ -17726585 0 128 -~~~ -~~~ -17726587 0 0 -~~~ -~~~ -17726589 0 512 -17726590 homeCount = 21 -17726591 waitCount = 10 -17726591 ripCount = 9 -17726592 locktype1 = 0 -17726592 locktype2 = 2 -17726613 locktype3 = 1 -17726614 goalCount = 1 -17726614 goalTotal = 11 -17726615 otherCount = 8 -~~~ -17729916 UP 10 -17729917 waslock = 0 -17729916 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17729943 512 16777728 -~~~ -17730093 512 512 -17733254 DOWN 10 -17733254 0 512 -~~~ -~~~ -17733279 0 1536 -~~~ -~~~ -17733281 0 1024 -17733282 homeCount = 22 -17733282 waitCount = 10 -17733283 ripCount = 9 -17733283 locktype1 = 0 -17733284 locktype2 = 2 -17733284 locktype3 = 1 -17733284 goalCount = 1 -17733285 goalTotal = 11 -17733285 otherCount = 8 -~~~ -17733307 UP 10 -17733307 waslock = 0 -17733307 512 1024 -~~~ -17733339 DOWN 10 -17733339 0 1024 -~~~ -~~~ -~~~ -~~~ -17733373 homeCount = 22 -17733373 waitCount = 10 -17733374 ripCount = 9 -17733374 locktype1 = 0 -17733375 locktype2 = 2 -17733375 locktype3 = 1 -17733376 goalCount = 1 -17733376 goalTotal = 11 -17733377 otherCount = 8 -~~~ -17735628 UP 11 -17735628 1024 1024 -17736890 DOWN 11 -17736890 0 1024 -17736924 UP 11 -17736924 1024 1024 -17736932 DOWN 11 -17736931 0 1024 -17736962 UP 11 -17736962 1024 1024 -17739879 BEEP1 -17739879 BEEP2 -~~~ -~~~ -~~~ -17739899 1024 33555456 -~~~ -17740049 1024 1024 -17746662 DOWN 11 -17746662 0 1024 -~~~ -~~~ -17746687 0 0 -~~~ -~~~ -17746689 0 1 -~~~ -~~~ -17746691 0 3 -~~~ -~~~ -17746692 0 7 -~~~ -~~~ -17746694 0 15 -~~~ -~~~ -17746696 0 31 -~~~ -~~~ -17746698 0 63 -~~~ -~~~ -17746700 0 127 -~~~ -~~~ -17746701 0 255 -17746703 homeCount = 22 -17746703 waitCount = 10 -17746704 ripCount = 10 -17746704 locktype1 = 0 -17746705 locktype2 = 2 -17746726 locktype3 = 1 -17746726 goalCount = 1 -17746727 goalTotal = 11 -17746727 otherCount = 8 -~~~ -17746728 CURRENTGOAL IS [2] -~~~ -17751159 UP 6 -17751159 32 255 -~~~ -~~~ -17752137 DOWN 6 -17752137 0 255 -~~~ -~~~ -17752159 0 254 -~~~ -~~~ -17752160 0 252 -~~~ -~~~ -17752162 0 248 -~~~ -~~~ -17752164 0 240 -~~~ -~~~ -17752166 0 224 -~~~ -~~~ -17752168 0 192 -~~~ -~~~ -17752169 0 128 -~~~ -~~~ -17752171 0 0 -~~~ -~~~ -17752173 0 512 -17752174 homeCount = 22 -17752175 waitCount = 10 -17752175 ripCount = 10 -17752176 locktype1 = 0 -17752197 locktype2 = 2 -17752197 locktype3 = 1 -17752198 goalCount = 1 -17752198 goalTotal = 11 -17752199 otherCount = 9 -~~~ -17755821 UP 10 -17755821 waslock = 0 -17755821 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17755853 512 16777728 -~~~ -17756003 512 512 -17756059 DOWN 10 -17756059 0 512 -~~~ -~~~ -17756076 UP 10 -17756076 waslock = 0 -17756076 512 2560 -~~~ -~~~ -17756078 512 2048 -17756079 homeCount = 23 -17756080 waitCount = 10 -17756080 ripCount = 10 -17756081 locktype1 = 0 -17756081 locktype2 = 2 -17756082 locktype3 = 1 -17756082 goalCount = 1 -17756104 goalTotal = 11 -17756104 otherCount = 9 -~~~ -~~~ -17759339 DOWN 10 -17759339 0 2048 -~~~ -~~~ -~~~ -~~~ -17759360 homeCount = 23 -17759361 waitCount = 10 -17759361 ripCount = 10 -17759362 locktype1 = 0 -17759362 locktype2 = 2 -17759363 locktype3 = 1 -17759363 goalCount = 1 -17759364 goalTotal = 11 -17759364 otherCount = 9 -~~~ -17761118 UP 12 -17761118 2048 2048 -17762724 DOWN 12 -17762724 0 2048 -17762734 UP 12 -17762734 2048 2048 -17762739 DOWN 12 -17762739 0 2048 -17762757 UP 12 -17762757 2048 2048 -17763369 CLICK1 -17763369 CLICK2 -~~~ -~~~ -~~~ -17763395 2048 67110912 -~~~ -17763545 2048 2048 -17768970 DOWN 12 -17768970 0 2048 -~~~ -~~~ -17768992 0 0 -~~~ -~~~ -17768994 0 1 -~~~ -~~~ -17768996 0 3 -~~~ -~~~ -17768997 0 7 -~~~ -~~~ -17768999 0 15 -~~~ -~~~ -17769001 0 31 -~~~ -~~~ -17769003 0 63 -~~~ -~~~ -17769005 0 127 -~~~ -~~~ -17769006 0 255 -17769008 homeCount = 23 -17769008 waitCount = 11 -17769009 ripCount = 10 -17769009 locktype1 = 0 -17769010 locktype2 = 2 -17769030 locktype3 = 1 -17769031 goalCount = 1 -17769031 goalTotal = 11 -17769032 otherCount = 9 -~~~ -17769033 CURRENTGOAL IS [2] -~~~ -17772566 UP 1 -17772566 1 255 -~~~ -~~~ -17774132 DOWN 1 -17774132 0 255 -~~~ -~~~ -17774151 0 254 -~~~ -~~~ -17774153 0 252 -~~~ -~~~ -17774155 0 248 -~~~ -~~~ -17774157 0 240 -~~~ -~~~ -17774159 0 224 -~~~ -~~~ -17774161 0 192 -~~~ -~~~ -17774162 0 128 -~~~ -~~~ -17774164 0 0 -~~~ -~~~ -17774166 0 512 -17774167 homeCount = 23 -17774168 waitCount = 11 -17774168 ripCount = 10 -17774169 locktype1 = 0 -17774190 locktype2 = 2 -17774190 locktype3 = 1 -17774191 goalCount = 1 -17774191 goalTotal = 11 -17774192 otherCount = 10 -~~~ -17777742 UP 10 -17777742 waslock = 0 -17777742 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17777769 512 16777728 -~~~ -17777919 512 512 -17777993 DOWN 10 -17777993 0 512 -~~~ -~~~ -17778017 0 1536 -~~~ -~~~ -17778019 0 1024 -17778020 homeCount = 24 -17778020 waitCount = 11 -17778021 ripCount = 10 -17778021 locktype1 = 0 -17778022 locktype2 = 2 -17778022 locktype3 = 1 -17778023 goalCount = 1 -17778023 goalTotal = 11 -17778024 otherCount = 10 -~~~ -17778045 UP 10 -17778045 waslock = 0 -17778045 512 1024 -~~~ -17781684 DOWN 10 -17781684 0 1024 -~~~ -~~~ -~~~ -~~~ -17781705 homeCount = 24 -17781706 waitCount = 11 -17781706 ripCount = 10 -17781707 locktype1 = 0 -17781707 locktype2 = 2 -17781707 locktype3 = 1 -17781708 goalCount = 1 -17781708 goalTotal = 11 -17781709 otherCount = 10 -~~~ -17781741 UP 10 -17781741 waslock = 0 -17781741 512 1024 -~~~ -17781763 DOWN 10 -17781763 0 1024 -~~~ -~~~ -~~~ -~~~ -17781788 homeCount = 24 -17781788 waitCount = 11 -17781789 ripCount = 10 -17781789 locktype1 = 0 -17781790 locktype2 = 2 -17781790 locktype3 = 1 -17781791 goalCount = 1 -17781791 goalTotal = 11 -17781792 otherCount = 10 -~~~ -17783131 UP 11 -17783131 1024 1024 -17786131 BEEP1 -17786131 BEEP2 -~~~ -~~~ -~~~ -17786156 1024 33555456 -~~~ -17786306 1024 1024 -17793507 DOWN 11 -17793507 0 1024 -~~~ -~~~ -17793532 0 0 -~~~ -~~~ -17793534 0 1 -~~~ -~~~ -17793536 0 3 -~~~ -~~~ -17793538 0 7 -~~~ -~~~ -17793540 0 15 -~~~ -~~~ -17793541 0 31 -~~~ -~~~ -17793543 0 63 -~~~ -~~~ -17793545 0 127 -~~~ -~~~ -17793547 0 255 -17793548 homeCount = 24 -17793548 waitCount = 11 -17793549 ripCount = 11 -17793549 locktype1 = 0 -17793550 locktype2 = 2 -17793571 locktype3 = 1 -17793571 goalCount = 1 -17793572 goalTotal = 11 -17793572 otherCount = 10 -~~~ -17793573 CURRENTGOAL IS [2] -~~~ -17799331 UP 7 -17799331 64 255 -~~~ -~~~ -17799555 DOWN 7 -17799555 0 255 -~~~ -~~~ -17799574 0 254 -~~~ -~~~ -17799576 0 252 -~~~ -~~~ -17799578 0 248 -~~~ -~~~ -17799579 0 240 -~~~ -~~~ -17799581 0 224 -~~~ -~~~ -17799583 0 192 -~~~ -~~~ -17799585 0 128 -~~~ -~~~ -17799587 0 0 -~~~ -~~~ -17799588 0 512 -17799589 homeCount = 24 -17799590 waitCount = 11 -17799591 ripCount = 11 -17799591 locktype1 = 0 -17799612 locktype2 = 2 -17799612 locktype3 = 1 -17799613 goalCount = 1 -17799613 goalTotal = 11 -17799614 otherCount = 11 -~~~ -17799621 64 512 -17800053 DOWN 7 -17800053 0 512 -17804037 UP 10 -17804037 waslock = 0 -17804037 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17804064 512 16777728 -~~~ -17804214 512 512 -17804372 DOWN 10 -17804372 0 512 -17804384 UP 10 -17804385 waslock = 0 -17804384 512 512 -~~~ -~~~ -17804404 512 2560 -~~~ -~~~ -17804406 512 2048 -17804407 homeCount = 25 -17804408 waitCount = 11 -17804408 ripCount = 11 -17804409 locktype1 = 0 -17804409 locktype2 = 2 -17804410 locktype3 = 1 -17804410 goalCount = 1 -17804411 goalTotal = 11 -17804411 otherCount = 11 -~~~ -~~~ -17808182 DOWN 10 -17808182 0 2048 -~~~ -~~~ -~~~ -~~~ -17808210 homeCount = 25 -17808211 waitCount = 11 -17808211 ripCount = 11 -17808212 locktype1 = 0 -17808212 locktype2 = 2 -17808213 locktype3 = 1 -17808213 goalCount = 1 -17808214 goalTotal = 11 -17808214 otherCount = 11 -~~~ -17809982 UP 12 -17809982 2048 2048 -17811792 DOWN 12 -17811792 0 2048 -17811817 UP 12 -17811817 2048 2048 -17813483 CLICK1 -17813483 CLICK2 -~~~ -~~~ -~~~ -17813510 2048 67110912 -~~~ -17813658 DOWN 12 -17813658 0 67110912 -17813660 0 2048 -17813687 UP 12 -17813687 2048 2048 -~~~ -~~~ -17813690 2048 0 -~~~ -~~~ -17813692 2048 1 -~~~ -~~~ -17813693 2048 3 -~~~ -~~~ -17813695 2048 7 -~~~ -~~~ -17813697 2048 15 -~~~ -~~~ -17813699 2048 31 -~~~ -~~~ -17813701 2048 63 -~~~ -~~~ -17813703 2048 127 -~~~ -~~~ -17813704 2048 255 -17813706 homeCount = 25 -17813706 waitCount = 12 -17813727 ripCount = 11 -17813727 locktype1 = 0 -17813728 locktype2 = 2 -17813728 locktype3 = 1 -17813729 goalCount = 1 -17813729 goalTotal = 11 -17813730 otherCount = 11 -~~~ -17813731 CURRENTGOAL IS [2] -~~~ -17818291 DOWN 12 -17818291 0 255 -17818296 UP 12 -17818296 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17818326 homeCount = 25 -17818327 waitCount = 12 -17818327 ripCount = 11 -17818328 locktype1 = 0 -17818328 locktype2 = 2 -17818329 locktype3 = 1 -17818329 goalCount = 1 -17818330 goalTotal = 11 -17818330 otherCount = 11 -~~~ -17818331 CURRENTGOAL IS [2] -~~~ -17818368 DOWN 12 -17818368 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17818405 homeCount = 25 -17818406 waitCount = 12 -17818406 ripCount = 11 -17818407 locktype1 = 0 -17818407 locktype2 = 2 -17818408 locktype3 = 1 -17818408 goalCount = 1 -17818409 goalTotal = 11 -17818409 otherCount = 11 -~~~ -17818410 CURRENTGOAL IS [2] -~~~ -17823832 UP 2 -17823832 2 255 -~~~ -~~~ -17823852 outer reward -~~~ -17823852 2 131327 -~~~ -~~~ -17824185 DOWN 2 -17824185 0 131327 -~~~ -17824208 2 131327 -~~~ -17824210 2 131326 -~~~ -~~~ -17824211 2 131324 -~~~ -~~~ -17824213 2 131320 -~~~ -~~~ -17824215 2 131312 -~~~ -~~~ -17824216 2 131296 -~~~ -~~~ -17824218 2 131264 -~~~ -~~~ -17824220 2 131200 -~~~ -~~~ -17824222 2 131072 -~~~ -~~~ -17824224 2 131584 -17824225 homeCount = 25 -17824225 waitCount = 12 -17824247 ripCount = 11 -17824247 locktype1 = 0 -17824248 locktype2 = 2 -17824248 locktype3 = 1 -17824249 goalCount = 2 -17824249 goalTotal = 12 -17824250 otherCount = 11 -~~~ -17824302 2 512 -17824581 DOWN 2 -17824581 0 512 -17824598 2 512 -17824700 DOWN 2 -17824700 0 512 -17824721 2 512 -17824823 DOWN 2 -17824823 0 512 -17824846 2 512 -17824949 DOWN 2 -17824949 0 512 -17824965 2 512 -17829925 DOWN 2 -17829925 0 512 -17829977 2 512 -17830030 DOWN 2 -17830030 0 512 -17830113 2 512 -17830135 DOWN 2 -17830135 0 512 -17835168 UP 10 -17835169 waslock = 0 -17835168 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17835195 512 16777728 -~~~ -17835345 512 512 -17835401 DOWN 10 -17835401 0 512 -~~~ -~~~ -17835421 0 2560 -~~~ -17835422 UP 10 -17835423 waslock = 0 -17835422 512 2560 -~~~ -17835424 homeCount = 26 -17835425 waitCount = 12 -17835425 ripCount = 11 -17835426 locktype1 = 0 -17835426 locktype2 = 2 -17835427 locktype3 = 1 -17835427 goalCount = 2 -17835448 goalTotal = 12 -17835449 otherCount = 11 -~~~ -~~~ -17835450 512 2048 -17839165 DOWN 10 -17839165 0 2048 -~~~ -~~~ -~~~ -~~~ -17839192 homeCount = 26 -17839192 waitCount = 12 -17839193 ripCount = 11 -17839193 locktype1 = 0 -17839194 locktype2 = 2 -17839194 locktype3 = 1 -17839195 goalCount = 2 -17839195 goalTotal = 12 -17839196 otherCount = 11 -~~~ -17839209 UP 10 -17839210 waslock = 0 -17839209 512 2048 -~~~ -17839245 DOWN 10 -17839245 0 2048 -~~~ -~~~ -~~~ -~~~ -17839268 homeCount = 26 -17839268 waitCount = 12 -17839269 ripCount = 11 -17839269 locktype1 = 0 -17839270 locktype2 = 2 -17839270 locktype3 = 1 -17839271 goalCount = 2 -17839271 goalTotal = 12 -17839272 otherCount = 11 -~~~ -17840917 UP 12 -17840917 2048 2048 -17843738 DOWN 12 -17843738 0 2048 -17843774 UP 12 -17843774 2048 2048 -17844418 CLICK1 -17844418 CLICK2 -~~~ -~~~ -~~~ -17844442 2048 67110912 -~~~ -17844592 2048 2048 -17849626 DOWN 12 -17849626 0 2048 -~~~ -~~~ -17849650 0 0 -~~~ -~~~ -17849652 0 1 -~~~ -~~~ -17849653 0 3 -~~~ -~~~ -17849655 0 7 -~~~ -~~~ -17849657 0 15 -~~~ -~~~ -17849659 0 31 -~~~ -~~~ -17849661 0 63 -~~~ -~~~ -17849663 0 127 -~~~ -~~~ -17849664 0 255 -17849665 homeCount = 26 -17849666 waitCount = 13 -17849666 ripCount = 11 -17849667 locktype1 = 0 -17849667 locktype2 = 2 -17849688 locktype3 = 1 -17849689 goalCount = 2 -17849689 goalTotal = 12 -17849690 otherCount = 11 -~~~ -17849691 CURRENTGOAL IS [2] -~~~ -17849708 UP 12 -17849708 2048 255 -17849722 DOWN 12 -17849722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17849759 homeCount = 26 -17849760 waitCount = 13 -17849760 ripCount = 11 -17849761 locktype1 = 0 -17849761 locktype2 = 2 -17849762 locktype3 = 1 -17849762 goalCount = 2 -17849763 goalTotal = 12 -17849763 otherCount = 11 -~~~ -17849764 CURRENTGOAL IS [2] -~~~ -17853717 UP 2 -17853717 2 255 -~~~ -~~~ -17853745 outer reward -~~~ -17853745 2 131327 -~~~ -~~~ -17853940 DOWN 2 -17853940 0 131327 -~~~ -~~~ -17853964 0 131326 -~~~ -~~~ -17853966 0 131324 -~~~ -~~~ -17853967 0 131320 -~~~ -~~~ -17853969 0 131312 -~~~ -~~~ -17853971 0 131296 -~~~ -~~~ -17853973 0 131264 -~~~ -~~~ -17853975 0 131200 -~~~ -~~~ -17853977 0 131072 -~~~ -~~~ -17853978 0 131584 -17853979 homeCount = 26 -17853980 waitCount = 13 -17853981 ripCount = 11 -17854002 locktype1 = 0 -17854002 locktype2 = 2 -17854003 locktype3 = 1 -17854003 goalCount = 3 -17854004 goalTotal = 13 -17854004 otherCount = 11 -~~~ -17854005 2 131584 -17854195 2 512 -17854610 DOWN 2 -17854610 0 512 -17854627 2 512 -17854734 DOWN 2 -17854734 0 512 -17854760 2 512 -17854858 DOWN 2 -17854858 0 512 -17854884 2 512 -17854994 DOWN 2 -17854994 0 512 -17855017 2 512 -17855122 DOWN 2 -17855122 0 512 -17855152 2 512 -17855268 DOWN 2 -17855268 0 512 -17855283 2 512 -17861087 DOWN 2 -17861087 0 512 -17866371 UP 10 -17866371 waslock = 0 -17866371 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17866401 512 16777728 -~~~ -17866500 DOWN 10 -17866500 0 16777728 -17866522 UP 10 -17866522 waslock = 0 -17866522 512 16777728 -~~~ -~~~ -17866529 512 16778752 -~~~ -~~~ -17866531 512 16778240 -17866532 homeCount = 27 -17866532 waitCount = 13 -17866533 ripCount = 11 -17866533 locktype1 = 0 -17866534 locktype2 = 2 -17866534 locktype3 = 1 -17866535 goalCount = 3 -17866535 goalTotal = 13 -17866536 otherCount = 11 -~~~ -17866557 512 1024 -~~~ -17871309 DOWN 10 -17871309 0 1024 -~~~ -~~~ -~~~ -~~~ -17871338 homeCount = 27 -17871338 waitCount = 13 -17871339 ripCount = 11 -17871339 locktype1 = 0 -17871340 locktype2 = 2 -17871340 locktype3 = 1 -17871341 goalCount = 3 -17871341 goalTotal = 13 -17871342 otherCount = 11 -~~~ -17872797 UP 11 -17872797 1024 1024 -17876092 DOWN 11 -17876092 0 1024 -17876102 UP 11 -17876102 1024 1024 -17880683 DOWN 11 -17880683 0 1024 -17880710 UP 11 -17880710 1024 1024 -17880798 BEEP1 -17880798 BEEP2 -~~~ -~~~ -~~~ -17880819 1024 33555456 -~~~ -17880968 1024 1024 -17885726 DOWN 11 -17885726 0 1024 -~~~ -~~~ -17885745 0 0 -~~~ -~~~ -17885747 0 1 -~~~ -~~~ -17885748 0 3 -~~~ -~~~ -17885750 0 7 -~~~ -~~~ -17885752 0 15 -~~~ -~~~ -17885754 0 31 -~~~ -~~~ -17885756 0 63 -~~~ -~~~ -17885757 0 127 -~~~ -~~~ -17885759 0 255 -17885760 homeCount = 27 -17885761 waitCount = 13 -17885761 ripCount = 12 -17885762 locktype1 = 0 -17885783 locktype2 = 2 -17885784 locktype3 = 1 -17885784 goalCount = 3 -17885785 goalTotal = 13 -17885785 otherCount = 11 -~~~ -17885786 CURRENTGOAL IS [2] -~~~ -17885798 UP 11 -17885798 1024 255 -17887457 DOWN 11 -17887457 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887486 UP 11 -17887486 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887492 homeCount = 27 -17887493 waitCount = 13 -17887493 ripCount = 12 -17887494 locktype1 = 0 -17887494 locktype2 = 2 -17887495 locktype3 = 1 -17887495 goalCount = 3 -17887496 goalTotal = 13 -17887496 otherCount = 11 -~~~ -17887497 CURRENTGOAL IS [2] -~~~ -17887540 DOWN 11 -17887540 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887582 homeCount = 27 -17887583 waitCount = 13 -17887583 ripCount = 12 -17887584 locktype1 = 0 -17887584 locktype2 = 2 -17887585 locktype3 = 1 -17887585 goalCount = 3 -17887586 goalTotal = 13 -17887586 otherCount = 11 -~~~ -17887587 CURRENTGOAL IS [2] -~~~ -17891303 UP 2 -17891303 2 255 -~~~ -~~~ -17891329 outer reward -~~~ -17891329 2 131327 -~~~ -~~~ -17891504 DOWN 2 -17891504 0 131327 -~~~ -~~~ -17891528 0 131326 -~~~ -~~~ -17891530 0 131324 -~~~ -~~~ -17891531 0 131320 -~~~ -~~~ -17891533 0 131312 -~~~ -~~~ -17891535 0 131296 -~~~ -~~~ -17891537 0 131264 -~~~ -~~~ -17891539 0 131200 -~~~ -~~~ -17891540 0 131072 -~~~ -~~~ -17891542 0 131584 -17891543 homeCount = 27 -17891544 waitCount = 13 -17891544 ripCount = 12 -17891566 locktype1 = 0 -17891566 locktype2 = 2 -17891567 locktype3 = 1 -17891567 goalCount = 4 -17891568 goalTotal = 14 -17891568 otherCount = 11 -~~~ -17891569 2 131584 -17891779 2 512 -17892060 DOWN 2 -17892060 0 512 -17892075 2 512 -17892185 DOWN 2 -17892185 0 512 -17892200 2 512 -17898873 DOWN 2 -17898873 0 512 -17898936 2 512 -17898969 DOWN 2 -17898969 0 512 -17903622 UP 10 -17903623 waslock = 0 -17903622 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17903655 512 16777728 -~~~ -17903805 512 512 -17907190 DOWN 10 -17907190 0 512 -~~~ -~~~ -17907209 0 1536 -~~~ -~~~ -17907211 0 1024 -17907212 homeCount = 28 -17907212 waitCount = 13 -17907213 ripCount = 12 -17907213 locktype1 = 0 -17907214 locktype2 = 2 -17907214 locktype3 = 1 -17907215 goalCount = 4 -17907215 goalTotal = 14 -17907216 otherCount = 11 -~~~ -17907245 UP 10 -17907245 waslock = 0 -17907245 512 1024 -~~~ -17907292 DOWN 10 -17907292 0 1024 -~~~ -~~~ -~~~ -~~~ -17907315 homeCount = 28 -17907316 waitCount = 13 -17907316 ripCount = 12 -17907317 locktype1 = 0 -17907317 locktype2 = 2 -17907318 locktype3 = 1 -17907318 goalCount = 4 -17907319 goalTotal = 14 -17907319 otherCount = 11 -~~~ -17908743 UP 11 -17908743 1024 1024 -17911424 DOWN 11 -17911424 0 1024 -17911439 UP 11 -17911439 1024 1024 -17914044 DOWN 11 -17914044 0 1024 -17914054 UP 11 -17914054 1024 1024 -17914744 BEEP1 -17914744 BEEP2 -~~~ -~~~ -~~~ -17914764 1024 33555456 -~~~ -17914914 1024 1024 -17920379 DOWN 11 -17920379 0 1024 -17920399 UP 11 -17920399 1024 1024 -~~~ -~~~ -17920402 1024 0 -~~~ -~~~ -17920404 1024 1 -~~~ -~~~ -17920406 1024 3 -~~~ -~~~ -17920408 1024 7 -~~~ -~~~ -17920409 1024 15 -~~~ -~~~ -17920411 1024 31 -~~~ -~~~ -17920413 1024 63 -~~~ -~~~ -17920415 1024 127 -~~~ -~~~ -17920417 1024 255 -17920418 homeCount = 28 -17920418 waitCount = 13 -17920439 ripCount = 13 -17920440 locktype1 = 0 -17920440 locktype2 = 2 -17920441 locktype3 = 1 -17920441 goalCount = 4 -17920442 goalTotal = 14 -17920442 otherCount = 11 -~~~ -17920443 CURRENTGOAL IS [2] -~~~ -17920510 DOWN 11 -17920510 0 255 -17920518 UP 11 -17920517 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17920542 homeCount = 28 -17920543 waitCount = 13 -17920543 ripCount = 13 -17920544 locktype1 = 0 -17920544 locktype2 = 2 -17920545 locktype3 = 1 -17920545 goalCount = 4 -17920546 goalTotal = 14 -17920546 otherCount = 11 -~~~ -17920547 CURRENTGOAL IS [2] -~~~ -17922012 DOWN 11 -17922012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17922052 homeCount = 28 -17922053 waitCount = 13 -17922054 ripCount = 13 -17922054 locktype1 = 0 -17922055 locktype2 = 2 -17922055 locktype3 = 1 -17922055 goalCount = 4 -17922056 goalTotal = 14 -17922056 otherCount = 11 -~~~ -17922058 CURRENTGOAL IS [2] -~~~ -17925749 UP 2 -17925749 2 255 -~~~ -~~~ -17925768 outer reward -~~~ -17925768 2 131327 -~~~ -~~~ -17925771 DOWN 2 -17925771 0 131327 -~~~ -~~~ -17925792 0 131326 -~~~ -~~~ -17925794 0 131324 -~~~ -~~~ -17925796 0 131320 -~~~ -~~~ -17925797 0 131312 -~~~ -~~~ -17925799 0 131296 -~~~ -~~~ -17925801 0 131264 -~~~ -~~~ -17925803 0 131200 -~~~ -17925804 2 131200 -~~~ -~~~ -17925806 2 131072 -~~~ -17925807 2 131584 -17925808 homeCount = 28 -17925809 waitCount = 13 -17925830 ripCount = 13 -17925830 locktype1 = 0 -17925831 locktype2 = 2 -17925831 locktype3 = 1 -17925832 goalCount = 5 -17925832 goalTotal = 15 -17925833 otherCount = 11 -~~~ -17926043 DOWN 2 -17926043 0 131584 -17926080 2 131584 -17926218 2 512 -17926346 DOWN 2 -17926346 0 512 -17926352 2 512 -17926453 DOWN 2 -17926453 0 512 -17926478 2 512 -17926574 DOWN 2 -17926574 0 512 -17926610 2 512 -17926695 DOWN 2 -17926695 0 512 -17926739 2 512 -17926820 DOWN 2 -17926820 0 512 -17926863 2 512 -17926961 DOWN 2 -17926961 0 512 -17926990 2 512 -17927108 DOWN 2 -17927108 0 512 -17927126 2 512 -17932908 DOWN 2 -17932908 0 512 -17937014 UP 10 -17937014 waslock = 0 -17937014 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17937042 512 16777728 -~~~ -17937192 512 512 -17941745 DOWN 10 -17941745 0 512 -~~~ -~~~ -17941767 0 2560 -~~~ -~~~ -17941769 0 2048 -17941770 homeCount = 29 -17941771 waitCount = 13 -17941771 ripCount = 13 -17941772 locktype1 = 0 -17941772 locktype2 = 2 -17941772 locktype3 = 1 -17941773 goalCount = 5 -17941773 goalTotal = 15 -17941774 otherCount = 11 -~~~ -17943411 UP 12 -17943411 2048 2048 -17945337 DOWN 12 -17945337 0 2048 -17945386 UP 12 -17945386 2048 2048 -17951411 CLICK1 -17951411 CLICK2 -~~~ -~~~ -~~~ -17951429 2048 67110912 -~~~ -17951579 2048 2048 -17957761 DOWN 12 -17957761 0 2048 -~~~ -~~~ -17957779 0 0 -~~~ -~~~ -17957781 0 1 -~~~ -~~~ -17957783 0 3 -~~~ -~~~ -17957784 0 7 -~~~ -~~~ -17957786 0 15 -~~~ -~~~ -17957788 0 31 -~~~ -~~~ -17957790 0 63 -~~~ -~~~ -17957792 0 127 -~~~ -~~~ -17957794 0 255 -17957795 homeCount = 29 -17957795 waitCount = 14 -17957796 ripCount = 13 -17957796 locktype1 = 0 -17957797 locktype2 = 2 -17957817 locktype3 = 1 -17957818 goalCount = 5 -17957818 goalTotal = 15 -17957819 otherCount = 11 -~~~ -17957820 CURRENTGOAL IS [2] -~~~ -17957820 UP 12 -17957820 2048 255 -17957860 DOWN 12 -17957860 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17957900 homeCount = 29 -17957900 waitCount = 14 -17957901 ripCount = 13 -17957902 locktype1 = 0 -17957902 locktype2 = 2 -17957903 locktype3 = 1 -17957903 goalCount = 5 -17957903 goalTotal = 15 -17957904 otherCount = 11 -~~~ -17957905 CURRENTGOAL IS [2] -~~~ -17960837 UP 2 -17960837 2 255 -~~~ -~~~ -17960865 outer reward -~~~ -17960866 2 131327 -~~~ -~~~ -17960983 DOWN 2 -17960983 0 131327 -~~~ -~~~ -17961004 0 131326 -~~~ -~~~ -17961006 0 131324 -~~~ -~~~ -17961008 0 131320 -~~~ -~~~ -17961009 0 131312 -~~~ -~~~ -17961011 0 131296 -~~~ -~~~ -17961013 0 131264 -~~~ -~~~ -17961015 0 131200 -~~~ -~~~ -17961017 0 131072 -~~~ -~~~ -17961019 0 131584 -17961020 homeCount = 29 -17961020 waitCount = 14 -17961021 ripCount = 13 -17961042 locktype1 = 0 -17961042 locktype2 = 2 -17961043 locktype3 = 1 -17961043 goalCount = 6 -17961044 goalTotal = 16 -17961044 otherCount = 11 -~~~ -17961051 2 131584 -17961315 2 512 -17961832 DOWN 2 -17961832 0 512 -17961853 2 512 -17961968 DOWN 2 -17961968 0 512 -17961983 2 512 -17962107 DOWN 2 -17962107 0 512 -17962114 2 512 -17962230 DOWN 2 -17962230 0 512 -17962255 2 512 -17969076 DOWN 2 -17969076 0 512 -17969149 2 512 -17969179 DOWN 2 -17969179 0 512 -17973719 UP 10 -17973719 waslock = 0 -17973719 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17973748 512 16777728 -~~~ -17973898 512 512 -17978571 DOWN 10 -17978571 0 512 -~~~ -~~~ -17978594 0 1536 -~~~ -~~~ -17978596 0 1024 -17978597 homeCount = 30 -17978597 waitCount = 14 -17978598 ripCount = 13 -17978598 locktype1 = 0 -17978599 locktype2 = 2 -17978599 locktype3 = 1 -17978600 goalCount = 6 -17978600 goalTotal = 16 -17978601 otherCount = 11 -~~~ -17978622 UP 10 -17978622 waslock = 0 -17978622 512 1024 -~~~ -17978673 DOWN 10 -17978673 0 1024 -~~~ -~~~ -~~~ -~~~ -17978698 homeCount = 30 -17978699 waitCount = 14 -17978699 ripCount = 13 -17978700 locktype1 = 0 -17978700 locktype2 = 2 -17978701 locktype3 = 1 -17978701 goalCount = 6 -17978702 goalTotal = 16 -17978702 otherCount = 11 -~~~ -17980140 UP 11 -17980140 1024 1024 -17982129 DOWN 11 -17982129 0 1024 -17982145 UP 11 -17982145 1024 1024 -17987640 BEEP1 -17987640 BEEP2 -~~~ -~~~ -~~~ -17987665 1024 33555456 -~~~ -17987815 1024 1024 -17995055 DOWN 11 -17995055 0 1024 -~~~ -~~~ -17995073 0 0 -~~~ -~~~ -17995075 0 1 -~~~ -~~~ -17995077 0 3 -~~~ -~~~ -17995079 0 7 -~~~ -~~~ -17995081 0 15 -~~~ -~~~ -17995083 0 31 -~~~ -~~~ -17995084 0 63 -~~~ -~~~ -17995086 0 127 -~~~ -~~~ -17995088 0 255 -17995089 homeCount = 30 -17995090 waitCount = 14 -17995090 ripCount = 14 -17995091 locktype1 = 0 -17995112 locktype2 = 2 -17995112 locktype3 = 1 -17995113 goalCount = 6 -17995113 goalTotal = 16 -17995114 otherCount = 11 -~~~ -17995115 CURRENTGOAL IS [2] -~~~ -17999238 UP 2 -17999238 2 255 -~~~ -~~~ -17999256 outer reward -~~~ -17999256 2 131327 -~~~ -~~~ -17999414 DOWN 2 -17999414 0 131327 -~~~ -~~~ -17999435 0 131326 -~~~ -~~~ -17999437 0 131324 -~~~ -~~~ -17999438 0 131320 -~~~ -~~~ -17999440 0 131312 -~~~ -~~~ -17999442 0 131296 -~~~ -~~~ -17999444 0 131264 -~~~ -~~~ -17999446 0 131200 -~~~ -~~~ -17999448 0 131072 -~~~ -~~~ -17999449 0 131584 -17999451 homeCount = 30 -17999451 waitCount = 14 -17999452 ripCount = 14 -17999472 locktype1 = 0 -17999473 locktype2 = 2 -17999473 locktype3 = 1 -17999474 goalCount = 7 -17999474 goalTotal = 17 -17999475 otherCount = 11 -~~~ -17999475 2 131584 -17999706 2 512 -17999969 DOWN 2 -17999969 0 512 -17999988 2 512 -18000082 DOWN 2 -18000082 0 512 -18000121 2 512 -18000212 DOWN 2 -18000212 0 512 -18000243 2 512 -18000338 DOWN 2 -18000338 0 512 -18000379 2 512 -18000475 DOWN 2 -18000475 0 512 -18000502 2 512 -18001062 DOWN 2 -18001062 0 512 -18001075 2 512 -18006367 DOWN 2 -18006367 0 512 -18006392 2 512 -18006463 DOWN 2 -18006463 0 512 -18011267 UP 10 -18011267 waslock = 0 -18011267 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18011300 512 16777728 -~~~ -18011450 512 512 -18011639 DOWN 10 -18011639 0 512 -18011656 UP 10 -18011656 waslock = 0 -18011656 512 512 -~~~ -~~~ -18011664 512 1536 -~~~ -~~~ -18011666 512 1024 -18011667 homeCount = 31 -18011668 waitCount = 14 -18011668 ripCount = 14 -18011669 locktype1 = 0 -18011669 locktype2 = 2 -18011670 locktype3 = 1 -18011670 goalCount = 7 -18011671 goalTotal = 17 -18011671 otherCount = 11 -~~~ -~~~ -18014768 DOWN 10 -18014768 0 1024 -~~~ -~~~ -~~~ -~~~ -18014787 homeCount = 31 -18014788 waitCount = 14 -18014788 ripCount = 14 -18014789 locktype1 = 0 -18014789 locktype2 = 2 -18014789 locktype3 = 1 -18014790 goalCount = 7 -18014790 goalTotal = 17 -18014791 otherCount = 11 -~~~ -18014805 UP 10 -18014805 waslock = 0 -18014804 512 1024 -~~~ -18014873 DOWN 10 -18014873 0 1024 -~~~ -~~~ -~~~ -~~~ -18014898 homeCount = 31 -18014899 waitCount = 14 -18014899 ripCount = 14 -18014900 locktype1 = 0 -18014900 locktype2 = 2 -18014901 locktype3 = 1 -18014901 goalCount = 7 -18014902 goalTotal = 17 -18014902 otherCount = 11 -~~~ -18016371 UP 11 -18016371 1024 1024 -18019466 DOWN 11 -18019466 0 1024 -18019477 UP 11 -18019477 1024 1024 -18020371 BEEP1 -18020371 BEEP2 -~~~ -~~~ -~~~ -18020397 1024 33555456 -~~~ -18020547 1024 1024 -18025455 DOWN 11 -18025454 0 1024 -18025472 UP 11 -18025472 1024 1024 -~~~ -~~~ -18025475 1024 0 -~~~ -~~~ -18025477 1024 1 -~~~ -~~~ -18025479 1024 3 -~~~ -~~~ -18025480 1024 7 -~~~ -~~~ -18025482 1024 15 -~~~ -~~~ -18025484 1024 31 -~~~ -~~~ -18025486 1024 63 -~~~ -~~~ -18025488 1024 127 -~~~ -~~~ -18025490 1024 255 -18025491 homeCount = 31 -18025491 waitCount = 14 -18025492 ripCount = 15 -18025513 locktype1 = 0 -18025513 locktype2 = 2 -18025514 locktype3 = 1 -18025514 goalCount = 7 -18025514 goalTotal = 17 -18025515 otherCount = 11 -~~~ -18025516 CURRENTGOAL IS [2] -~~~ -18025534 DOWN 11 -18025534 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18025574 homeCount = 31 -18025574 waitCount = 14 -18025575 ripCount = 15 -18025575 locktype1 = 0 -18025576 locktype2 = 2 -18025576 locktype3 = 1 -18025577 goalCount = 7 -18025577 goalTotal = 17 -18025578 otherCount = 11 -~~~ -18025579 CURRENTGOAL IS [2] -~~~ -18025617 UP 11 -18025617 1024 255 -18028361 DOWN 11 -18028361 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18028404 homeCount = 31 -18028404 waitCount = 14 -18028405 ripCount = 15 -18028405 locktype1 = 0 -18028406 locktype2 = 2 -18028406 locktype3 = 1 -18028407 goalCount = 7 -18028407 goalTotal = 17 -18028408 otherCount = 11 -~~~ -18028409 CURRENTGOAL IS [2] -~~~ -18028430 UP 11 -18028430 1024 255 -18028451 DOWN 11 -18028451 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18028494 homeCount = 31 -18028494 waitCount = 14 -18028495 ripCount = 15 -18028495 locktype1 = 0 -18028496 locktype2 = 2 -18028496 locktype3 = 1 -18028497 goalCount = 7 -18028497 goalTotal = 17 -18028498 otherCount = 11 -~~~ -18028499 CURRENTGOAL IS [2] -~~~ -18032808 UP 2 -18032808 2 255 -~~~ -~~~ -18032831 outer reward -~~~ -18032831 2 131327 -~~~ -~~~ -18033013 DOWN 2 -18033013 0 131327 -~~~ -~~~ -18033039 0 131326 -~~~ -~~~ -18033040 0 131324 -~~~ -~~~ -18033042 0 131320 -~~~ -~~~ -18033044 0 131312 -~~~ -~~~ -18033046 0 131296 -~~~ -~~~ -18033048 0 131264 -~~~ -~~~ -18033050 0 131200 -~~~ -~~~ -18033051 0 131072 -~~~ -~~~ -18033053 0 131584 -18033054 homeCount = 31 -18033055 waitCount = 14 -18033055 ripCount = 15 -18033076 locktype1 = 0 -18033077 locktype2 = 2 -18033077 locktype3 = 1 -18033078 goalCount = 8 -18033078 goalTotal = 18 -18033079 otherCount = 11 -~~~ -18033079 2 131584 -18033281 2 512 -18033570 DOWN 2 -18033570 0 512 -18033590 2 512 -18033697 DOWN 2 -18033697 0 512 -18033720 2 512 -18033834 DOWN 2 -18033834 0 512 -18033851 2 512 -18033956 DOWN 2 -18033956 0 512 -18033979 2 512 -18034089 DOWN 2 -18034089 0 512 -18034108 2 512 -18034220 DOWN 2 -18034220 0 512 -18034238 2 512 -18034509 DOWN 2 -18034509 0 512 -18034533 2 512 -18043258 DOWN 2 -18043258 0 512 -18057543 UP 10 -18057543 waslock = 0 -18057543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18057574 512 16777728 -~~~ -18057724 512 512 -18062627 DOWN 10 -18062627 0 512 -~~~ -~~~ -18062649 0 2560 -~~~ -~~~ -18062651 0 2048 -18062652 homeCount = 32 -18062653 waitCount = 14 -18062653 ripCount = 15 -18062654 locktype1 = 0 -18062654 locktype2 = 2 -18062655 locktype3 = 1 -18062655 goalCount = 8 -18062656 goalTotal = 18 -18062656 otherCount = 11 -~~~ -18064275 UP 12 -18064275 2048 2048 -18065776 DOWN 12 -18065776 0 2048 -18065788 UP 12 -18065788 2048 2048 -18066962 DOWN 12 -18066962 0 2048 -18066982 UP 12 -18066982 2048 2048 -18069995 DOWN 12 -18069995 0 2048 -18070016 UP 12 -18070016 2048 2048 -18070275 CLICK1 -18070275 CLICK2 -~~~ -~~~ -~~~ -18070302 2048 67110912 -~~~ -18070452 2048 2048 -18076097 DOWN 12 -18076097 0 2048 -~~~ -~~~ -18076120 0 0 -~~~ -~~~ -18076122 0 1 -~~~ -18076123 UP 12 -18076123 2048 1 -~~~ -~~~ -18076125 2048 3 -~~~ -~~~ -18076127 2048 7 -~~~ -~~~ -18076128 2048 15 -~~~ -18076129 2048 31 -~~~ -~~~ -18076131 2048 63 -~~~ -~~~ -18076132 2048 127 -~~~ -~~~ -18076134 2048 255 -18076135 homeCount = 32 -18076156 waitCount = 15 -18076157 ripCount = 15 -18076157 locktype1 = 0 -18076158 locktype2 = 2 -18076158 locktype3 = 1 -18076159 goalCount = 8 -18076159 goalTotal = 18 -18076160 otherCount = 11 -~~~ -18076161 CURRENTGOAL IS [2] -~~~ -18076417 DOWN 12 -18076417 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076446 UP 12 -18076446 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076455 homeCount = 32 -18076456 waitCount = 15 -18076456 ripCount = 15 -18076457 locktype1 = 0 -18076457 locktype2 = 2 -18076458 locktype3 = 1 -18076458 goalCount = 8 -18076459 goalTotal = 18 -18076459 otherCount = 11 -~~~ -18076460 CURRENTGOAL IS [2] -~~~ -18076482 DOWN 12 -18076481 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076512 homeCount = 32 -18076512 waitCount = 15 -18076513 ripCount = 15 -18076513 locktype1 = 0 -18076514 locktype2 = 2 -18076514 locktype3 = 1 -18076515 goalCount = 8 -18076515 goalTotal = 18 -18076516 otherCount = 11 -~~~ -18076517 CURRENTGOAL IS [2] -~~~ -18076538 UP 12 -18076538 2048 255 -18078783 DOWN 12 -18078783 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078807 UP 12 -18078807 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078818 homeCount = 32 -18078818 waitCount = 15 -18078819 ripCount = 15 -18078819 locktype1 = 0 -18078820 locktype2 = 2 -18078820 locktype3 = 1 -18078821 goalCount = 8 -18078821 goalTotal = 18 -18078822 otherCount = 11 -~~~ -18078823 CURRENTGOAL IS [2] -~~~ -18078844 DOWN 12 -18078844 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078877 homeCount = 32 -18078878 waitCount = 15 -18078878 ripCount = 15 -18078879 locktype1 = 0 -18078879 locktype2 = 2 -18078880 locktype3 = 1 -18078880 goalCount = 8 -18078881 goalTotal = 18 -18078881 otherCount = 11 -~~~ -18078882 CURRENTGOAL IS [2] -~~~ -18082583 UP 2 -18082583 2 255 -~~~ -~~~ -18082608 outer reward -~~~ -18082608 2 131327 -~~~ -~~~ -18082618 DOWN 2 -18082618 0 131327 -~~~ -~~~ -18082642 0 131326 -~~~ -~~~ -18082644 0 131324 -~~~ -~~~ -18082646 0 131320 -~~~ -~~~ -18082647 0 131312 -~~~ -~~~ -18082649 0 131296 -~~~ -~~~ -18082651 0 131264 -~~~ -~~~ -18082653 0 131200 -~~~ -~~~ -18082655 0 131072 -~~~ -~~~ -18082657 0 131584 -18082658 homeCount = 32 -18082658 waitCount = 15 -18082659 ripCount = 15 -18082679 locktype1 = 0 -18082680 locktype2 = 2 -18082680 locktype3 = 1 -18082681 goalCount = 9 -18082681 goalTotal = 19 -18082682 otherCount = 11 -~~~ -18082682 2 131584 -18082895 DOWN 2 -18082895 0 131584 -18082932 2 131584 -18083058 2 512 -18083217 DOWN 2 -18083217 0 512 -18083238 2 512 -18083329 DOWN 2 -18083329 0 512 -18083357 2 512 -18083584 DOWN 2 -18083584 0 512 -18083594 2 512 -18083695 DOWN 2 -18083695 0 512 -18083729 2 512 -18083842 DOWN 2 -18083842 0 512 -18083852 2 512 -18089144 DOWN 2 -18089144 0 512 -18089198 2 512 -18089250 DOWN 2 -18089250 0 512 -18095222 UP 10 -18095222 waslock = 0 -18095222 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18095251 512 16777728 -~~~ -18095401 512 512 -18095403 DOWN 10 -18095403 0 512 -~~~ -~~~ -18095434 0 1536 -~~~ -~~~ -18095436 0 1024 -18095437 homeCount = 33 -18095437 waitCount = 15 -18095438 ripCount = 15 -18095438 locktype1 = 0 -18095439 locktype2 = 2 -18095439 locktype3 = 1 -18095440 goalCount = 9 -18095440 goalTotal = 19 -18095441 otherCount = 11 -~~~ -18095462 UP 10 -18095462 waslock = 0 -18095462 512 1024 -~~~ -18098815 DOWN 10 -18098815 0 1024 -~~~ -~~~ -~~~ -~~~ -18098837 homeCount = 33 -18098837 waitCount = 15 -18098838 ripCount = 15 -18098838 locktype1 = 0 -18098839 locktype2 = 2 -18098839 locktype3 = 1 -18098840 goalCount = 9 -18098840 goalTotal = 19 -18098841 otherCount = 11 -~~~ -18098841 UP 10 -18098842 waslock = 0 -18098841 512 1024 -~~~ -18098941 DOWN 10 -18098941 0 1024 -~~~ -~~~ -~~~ -~~~ -18098969 homeCount = 33 -18098969 waitCount = 15 -18098970 ripCount = 15 -18098970 locktype1 = 0 -18098971 locktype2 = 2 -18098971 locktype3 = 1 -18098972 goalCount = 9 -18098972 goalTotal = 19 -18098973 otherCount = 11 -~~~ -18100646 UP 11 -18100646 1024 1024 -18102966 DOWN 11 -18102966 0 1024 -18102978 UP 11 -18102978 1024 1024 -18104195 DOWN 11 -18104195 0 1024 -18104215 UP 11 -18104215 1024 1024 -18106646 BEEP1 -18106646 BEEP2 -~~~ -~~~ -~~~ -18106667 1024 33555456 -~~~ -18106817 1024 1024 -18106960 DOWN 11 -18106959 0 1024 -18107054 UP 11 -18107054 1024 1024 -~~~ -~~~ -18107351 1024 0 -~~~ -~~~ -18107353 1024 1 -~~~ -~~~ -18107355 1024 3 -~~~ -~~~ -18107357 1024 7 -~~~ -~~~ -18107359 1024 15 -~~~ -~~~ -18107361 1024 31 -~~~ -~~~ -18107362 1024 63 -~~~ -~~~ -18107364 1024 127 -~~~ -~~~ -18107366 1024 255 -18107367 homeCount = 33 -18107368 waitCount = 15 -18107368 ripCount = 16 -18107389 locktype1 = 0 -18107390 locktype2 = 2 -18107390 locktype3 = 1 -18107391 goalCount = 9 -18107391 goalTotal = 19 -18107392 otherCount = 11 -~~~ -18107393 CURRENTGOAL IS [2] -~~~ -18113951 DOWN 11 -18113951 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18113992 homeCount = 33 -18113993 waitCount = 15 -18113993 ripCount = 16 -18113994 locktype1 = 0 -18113994 locktype2 = 2 -18113995 locktype3 = 1 -18113995 goalCount = 9 -18113996 goalTotal = 19 -18113996 otherCount = 11 -~~~ -18113997 CURRENTGOAL IS [2] -~~~ -18114018 UP 11 -18114018 1024 255 -18114037 DOWN 11 -18114037 0 255 -18114051 UP 11 -18114051 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18114071 homeCount = 33 -18114072 waitCount = 15 -18114072 ripCount = 16 -18114073 locktype1 = 0 -18114073 locktype2 = 2 -18114074 locktype3 = 1 -18114074 goalCount = 9 -18114075 goalTotal = 19 -18114075 otherCount = 11 -~~~ -18114076 CURRENTGOAL IS [2] -~~~ -18115869 DOWN 11 -18115869 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18115903 homeCount = 33 -18115904 waitCount = 15 -18115904 ripCount = 16 -18115905 locktype1 = 0 -18115905 locktype2 = 2 -18115906 locktype3 = 1 -18115906 goalCount = 9 -18115907 goalTotal = 19 -18115907 otherCount = 11 -~~~ -18115908 CURRENTGOAL IS [2] -~~~ -18115930 UP 11 -18115929 1024 255 -18115962 DOWN 11 -18115962 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18116001 homeCount = 33 -18116002 waitCount = 15 -18116003 ripCount = 16 -18116003 locktype1 = 0 -18116004 locktype2 = 2 -18116004 locktype3 = 1 -18116005 goalCount = 9 -18116005 goalTotal = 19 -18116005 otherCount = 11 -~~~ -18116007 CURRENTGOAL IS [2] -~~~ -18119662 UP 2 -18119662 2 255 -~~~ -~~~ -18119689 outer reward -~~~ -18119690 2 131327 -~~~ -~~~ -18119694 outerreps = 6 -~~~ -~~~ -18119938 DOWN 2 -18119938 0 131327 -~~~ -~~~ -18119956 0 131326 -~~~ -~~~ -18119958 0 131324 -~~~ -~~~ -18119960 0 131320 -~~~ -~~~ -18119962 0 131312 -~~~ -~~~ -18119964 0 131296 -~~~ -~~~ -18119965 0 131264 -~~~ -~~~ -18119967 0 131200 -~~~ -~~~ -18119969 0 131072 -~~~ -~~~ -18119971 0 131584 -18119972 homeCount = 33 -18119972 waitCount = 15 -18119973 ripCount = 16 -18119994 locktype1 = 0 -18119995 locktype2 = 2 -18119995 locktype3 = 1 -18119996 goalCount = 0 -18119996 goalTotal = 20 -18119997 otherCount = 11 -~~~ -18119997 2 131584 -18120139 2 512 -18120369 DOWN 2 -18120369 0 512 -18120413 2 512 -18120500 DOWN 2 -18120500 0 512 -18120526 2 512 -18120623 DOWN 2 -18120623 0 512 -18120657 2 512 -18120748 DOWN 2 -18120748 0 512 -18120794 2 512 -18120885 DOWN 2 -18120885 0 512 -18120911 2 512 -18121020 DOWN 2 -18121020 0 512 -18121047 2 512 -18121152 DOWN 2 -18121152 0 512 -18121183 2 512 -18122677 DOWN 2 -18122677 0 512 -18122709 2 512 -18125125 DOWN 2 -18125125 0 512 -18125302 2 512 -18125328 DOWN 2 -18125328 0 512 -18125357 2 512 -18128345 DOWN 2 -18128345 0 512 -18128359 2 512 -18128526 DOWN 2 -18128525 0 512 -18128539 2 512 -18128866 DOWN 2 -18128866 0 512 -18133826 UP 10 -18133826 waslock = 0 -18133826 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18133854 512 16777728 -~~~ -18134004 512 512 -18139345 DOWN 10 -18139345 0 512 -~~~ -~~~ -18139368 0 2560 -~~~ -~~~ -18139370 0 2048 -18139371 homeCount = 34 -18139371 waitCount = 15 -18139372 ripCount = 16 -18139372 locktype1 = 0 -18139373 locktype2 = 2 -18139373 locktype3 = 1 -18139374 goalCount = 0 -18139374 goalTotal = 20 -18139375 otherCount = 11 -~~~ -18139396 UP 10 -18139396 waslock = 0 -18139396 512 2048 -~~~ -18139449 DOWN 10 -18139449 0 2048 -~~~ -~~~ -~~~ -~~~ -18139471 homeCount = 34 -18139471 waitCount = 15 -18139472 ripCount = 16 -18139472 locktype1 = 0 -18139473 locktype2 = 2 -18139473 locktype3 = 1 -18139474 goalCount = 0 -18139474 goalTotal = 20 -18139475 otherCount = 11 -~~~ -18141355 UP 12 -18141355 2048 2048 -18143540 DOWN 12 -18143540 0 2048 -18143589 UP 12 -18143589 2048 2048 -18144355 CLICK1 -18144355 CLICK2 -~~~ -~~~ -~~~ -18144383 2048 67110912 -~~~ -18144533 2048 2048 -18149565 DOWN 12 -18149565 0 2048 -18149572 UP 12 -18149572 2048 2048 -~~~ -~~~ -18149589 2048 0 -~~~ -~~~ -18149591 2048 1 -~~~ -~~~ -18149593 2048 3 -~~~ -~~~ -18149595 2048 7 -~~~ -~~~ -18149596 2048 15 -~~~ -~~~ -18149598 2048 31 -~~~ -~~~ -18149600 2048 63 -~~~ -~~~ -18149602 2048 127 -~~~ -~~~ -18149604 2048 255 -18149605 homeCount = 34 -18149605 waitCount = 16 -18149606 ripCount = 16 -18149627 locktype1 = 0 -18149627 locktype2 = 2 -18149628 locktype3 = 1 -18149628 goalCount = 0 -18149629 goalTotal = 20 -18149629 otherCount = 11 -~~~ -18149630 CURRENTGOAL IS [3] -~~~ -18149645 DOWN 12 -18149645 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18149687 homeCount = 34 -18149688 waitCount = 16 -18149688 ripCount = 16 -18149689 locktype1 = 0 -18149689 locktype2 = 2 -18149690 locktype3 = 1 -18149690 goalCount = 0 -18149691 goalTotal = 20 -18149691 otherCount = 11 -~~~ -18149692 CURRENTGOAL IS [3] -~~~ -18149746 UP 12 -18149746 2048 255 -18153121 DOWN 12 -18153121 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18153157 homeCount = 34 -18153158 waitCount = 16 -18153158 ripCount = 16 -18153159 locktype1 = 0 -18153159 locktype2 = 2 -18153160 locktype3 = 1 -18153160 goalCount = 0 -18153161 goalTotal = 20 -18153161 otherCount = 11 -~~~ -18153162 CURRENTGOAL IS [3] -~~~ -18155871 UP 2 -18155871 2 255 -~~~ -~~~ -18156143 DOWN 2 -18156143 0 255 -~~~ -~~~ -18156160 0 254 -~~~ -~~~ -18156162 0 252 -~~~ -~~~ -18156163 0 248 -~~~ -~~~ -18156165 0 240 -~~~ -~~~ -18156167 0 224 -~~~ -~~~ -18156169 0 192 -~~~ -~~~ -18156171 0 128 -~~~ -~~~ -18156172 0 0 -~~~ -~~~ -18156174 0 512 -18156175 homeCount = 34 -18156176 waitCount = 16 -18156176 ripCount = 16 -18156177 locktype1 = 0 -18156198 locktype2 = 2 -18156199 locktype3 = 1 -18156199 goalCount = 0 -18156200 goalTotal = 20 -18156200 otherCount = 12 -~~~ -18156201 2 512 -18156901 DOWN 2 -18156901 0 512 -18163599 UP 10 -18163599 waslock = 0 -18163599 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18163626 512 16777728 -18163628 DOWN 10 -18163628 0 16777728 -~~~ -~~~ -18163651 UP 10 -18163651 waslock = 0 -18163651 512 16777728 -~~~ -~~~ -~~~ -18163654 512 16778240 -18163655 homeCount = 35 -18163655 waitCount = 16 -18163656 ripCount = 16 -18163656 locktype1 = 0 -18163657 locktype2 = 2 -18163657 locktype3 = 1 -18163658 goalCount = 0 -18163679 goalTotal = 20 -18163679 otherCount = 12 -~~~ -~~~ -18163776 512 1024 -18168791 DOWN 10 -18168791 0 1024 -~~~ -~~~ -~~~ -~~~ -18168813 homeCount = 35 -18168814 waitCount = 16 -18168814 ripCount = 16 -18168815 locktype1 = 0 -18168815 locktype2 = 2 -18168816 locktype3 = 1 -18168816 goalCount = 0 -18168817 goalTotal = 20 -18168817 otherCount = 12 -~~~ -18170139 UP 11 -18170139 1024 1024 -18172433 DOWN 11 -18172433 0 1024 -18172442 UP 11 -18172442 1024 1024 -18174140 BEEP1 -18174140 BEEP2 -~~~ -~~~ -~~~ -18174161 1024 33555456 -~~~ -18174311 1024 1024 -18174484 DOWN 11 -18174484 0 1024 -18174503 UP 11 -18174503 1024 1024 -~~~ -~~~ -18174835 1024 0 -~~~ -~~~ -18174837 1024 1 -~~~ -~~~ -18174839 1024 3 -~~~ -~~~ -18174841 1024 7 -~~~ -~~~ -18174842 1024 15 -~~~ -~~~ -18174844 1024 31 -~~~ -~~~ -18174846 1024 63 -~~~ -~~~ -18174848 1024 127 -~~~ -~~~ -18174850 1024 255 -18174851 homeCount = 35 -18174851 waitCount = 16 -18174852 ripCount = 17 -18174873 locktype1 = 0 -18174873 locktype2 = 2 -18174874 locktype3 = 1 -18174874 goalCount = 0 -18174875 goalTotal = 20 -18174875 otherCount = 12 -~~~ -18174876 CURRENTGOAL IS [3] -~~~ -18179712 DOWN 11 -18179712 0 255 -18179726 UP 11 -18179726 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18179746 homeCount = 35 -18179747 waitCount = 16 -18179747 ripCount = 17 -18179748 locktype1 = 0 -18179748 locktype2 = 2 -18179749 locktype3 = 1 -18179749 goalCount = 0 -18179750 goalTotal = 20 -18179750 otherCount = 12 -~~~ -18179751 CURRENTGOAL IS [3] -~~~ -18179980 DOWN 11 -18179980 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18180007 UP 11 -18180007 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18180016 homeCount = 35 -18180017 waitCount = 16 -18180017 ripCount = 17 -18180018 locktype1 = 0 -18180018 locktype2 = 2 -18180019 locktype3 = 1 -18180019 goalCount = 0 -18180020 goalTotal = 20 -18180020 otherCount = 12 -~~~ -18180021 CURRENTGOAL IS [3] -~~~ -18182924 DOWN 11 -18182924 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18182966 homeCount = 35 -18182966 waitCount = 16 -18182967 ripCount = 17 -18182967 locktype1 = 0 -18182968 locktype2 = 2 -18182968 locktype3 = 1 -18182969 goalCount = 0 -18182969 goalTotal = 20 -18182970 otherCount = 12 -~~~ -18182971 CURRENTGOAL IS [3] -~~~ -18185764 UP 8 -18185764 128 255 -~~~ -~~~ -18185790 DOWN 8 -18185790 0 255 -~~~ -~~~ -18185804 0 254 -~~~ -~~~ -18185806 0 252 -~~~ -~~~ -18185808 0 248 -~~~ -~~~ -18185809 0 240 -~~~ -~~~ -18185811 0 224 -~~~ -~~~ -18185813 0 192 -~~~ -~~~ -18185815 0 128 -~~~ -~~~ -18185817 0 0 -~~~ -~~~ -18185819 0 512 -18185820 homeCount = 35 -18185820 waitCount = 16 -18185821 ripCount = 17 -18185821 locktype1 = 0 -18185842 locktype2 = 2 -18185843 locktype3 = 1 -18185843 goalCount = 0 -18185844 goalTotal = 20 -18185844 otherCount = 13 -~~~ -18185900 128 512 -18186287 DOWN 8 -18186287 0 512 -18186568 128 512 -18186592 DOWN 8 -18186592 0 512 -18196202 UP 10 -18196202 waslock = 0 -18196202 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18196229 512 16777728 -~~~ -18196378 512 512 -18200273 DOWN 10 -18200273 0 512 -~~~ -~~~ -18200292 0 1536 -~~~ -~~~ -18200294 0 1024 -18200295 homeCount = 36 -18200296 waitCount = 16 -18200296 ripCount = 17 -18200297 locktype1 = 0 -18200297 locktype2 = 2 -18200298 locktype3 = 1 -18200298 goalCount = 0 -18200299 goalTotal = 20 -18200299 otherCount = 13 -~~~ -18208210 UP 11 -18208210 1024 1024 -18208226 DOWN 11 -18208226 0 1024 -18208284 UP 11 -18208284 1024 1024 -18209774 DOWN 11 -18209774 0 1024 -18209820 UP 11 -18209820 1024 1024 -18210790 DOWN 11 -18210790 0 1024 -18210798 UP 11 -18210798 1024 1024 -18216211 BEEP1 -18216211 BEEP2 -~~~ -~~~ -~~~ -18216234 1024 33555456 -~~~ -18216384 1024 1024 -18223775 DOWN 11 -18223775 0 1024 -~~~ -~~~ -18223793 0 0 -~~~ -~~~ -18223795 0 1 -~~~ -~~~ -18223797 0 3 -~~~ -~~~ -18223798 0 7 -~~~ -~~~ -18223800 0 15 -~~~ -~~~ -18223802 0 31 -~~~ -~~~ -18223804 0 63 -~~~ -~~~ -18223806 0 127 -~~~ -~~~ -18223807 0 255 -18223808 homeCount = 36 -18223809 waitCount = 16 -18223810 ripCount = 18 -18223810 locktype1 = 0 -18223811 locktype2 = 2 -18223831 locktype3 = 1 -18223832 goalCount = 0 -18223832 goalTotal = 20 -18223833 otherCount = 13 -~~~ -18223834 CURRENTGOAL IS [3] -~~~ -18227228 UP 5 -18227228 16 255 -~~~ -18227252 DOWN 5 -18227252 0 255 -~~~ -~~~ -~~~ -18227283 0 254 -~~~ -~~~ -18227284 0 252 -~~~ -~~~ -18227286 0 248 -~~~ -~~~ -18227288 0 240 -~~~ -~~~ -18227290 0 224 -~~~ -~~~ -18227292 0 192 -~~~ -~~~ -18227294 0 128 -~~~ -~~~ -18227295 0 0 -~~~ -~~~ -18227297 0 512 -18227298 homeCount = 36 -18227299 waitCount = 16 -18227299 ripCount = 18 -18227300 locktype1 = 0 -18227321 locktype2 = 2 -18227321 locktype3 = 1 -18227322 goalCount = 0 -18227322 goalTotal = 20 -18227323 otherCount = 14 -~~~ -18227714 16 512 -18228137 DOWN 5 -18228137 0 512 -18235161 UP 10 -18235161 waslock = 0 -18235161 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18235189 512 16777728 -~~~ -18235339 512 512 -18235410 DOWN 10 -18235410 0 512 -18235431 UP 10 -18235431 waslock = 0 -18235431 512 512 -~~~ -~~~ -~~~ -18235434 512 1536 -~~~ -18235435 512 1024 -18235436 homeCount = 37 -18235436 waitCount = 16 -18235437 ripCount = 18 -18235437 locktype1 = 0 -18235438 locktype2 = 2 -18235438 locktype3 = 1 -18235460 goalCount = 0 -18235460 goalTotal = 20 -18235460 otherCount = 14 -~~~ -~~~ -18235511 DOWN 10 -18235511 0 1024 -~~~ -~~~ -~~~ -~~~ -18235536 homeCount = 37 -18235537 waitCount = 16 -18235537 ripCount = 18 -18235538 locktype1 = 0 -18235538 locktype2 = 2 -18235539 locktype3 = 1 -18235539 goalCount = 0 -18235540 goalTotal = 20 -18235540 otherCount = 14 -~~~ -18235607 UP 10 -18235607 waslock = 0 -18235607 512 1024 -~~~ -18239208 DOWN 10 -18239208 0 1024 -18239219 UP 10 -18239220 waslock = 0 -18239219 512 1024 -~~~ -~~~ -~~~ -~~~ -18239239 homeCount = 37 -18239239 waitCount = 16 -18239240 ripCount = 18 -18239240 locktype1 = 0 -18239241 locktype2 = 2 -18239241 locktype3 = 1 -18239242 goalCount = 0 -18239242 goalTotal = 20 -18239243 otherCount = 14 -~~~ -~~~ -18239327 DOWN 10 -18239327 0 1024 -~~~ -~~~ -~~~ -~~~ -18239348 homeCount = 37 -18239348 waitCount = 16 -18239349 ripCount = 18 -18239349 locktype1 = 0 -18239350 locktype2 = 2 -18239350 locktype3 = 1 -18239351 goalCount = 0 -18239351 goalTotal = 20 -18239352 otherCount = 14 -~~~ -18239392 UP 10 -18239393 waslock = 0 -18239392 512 1024 -18239414 DOWN 10 -18239414 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -18239439 homeCount = 37 -18239439 waitCount = 16 -18239440 ripCount = 18 -18239440 locktype1 = 0 -18239441 locktype2 = 2 -18239441 locktype3 = 1 -18239442 goalCount = 0 -18239442 goalTotal = 20 -18239443 otherCount = 14 -~~~ -18242195 UP 11 -18242195 1024 1024 -18242247 DOWN 11 -18242247 0 1024 -18242425 UP 11 -18242425 1024 1024 -18242444 DOWN 11 -18242444 0 1024 -18242544 UP 11 -18242544 1024 1024 -18245225 DOWN 11 -18245225 0 1024 -18245246 UP 11 -18245246 1024 1024 -18246696 BEEP1 -18246696 BEEP2 -~~~ -~~~ -~~~ -18246717 1024 33555456 -~~~ -18246867 1024 1024 -18252109 DOWN 11 -18252109 0 1024 -18252130 UP 11 -18252130 1024 1024 -~~~ -~~~ -18252136 1024 0 -~~~ -~~~ -18252138 1024 1 -~~~ -~~~ -18252140 1024 3 -~~~ -~~~ -18252142 1024 7 -~~~ -~~~ -18252144 1024 15 -~~~ -~~~ -18252145 1024 31 -~~~ -~~~ -18252147 1024 63 -~~~ -~~~ -18252149 1024 127 -~~~ -~~~ -18252151 1024 255 -18252152 homeCount = 37 -18252153 waitCount = 16 -18252153 ripCount = 19 -18252174 locktype1 = 0 -18252175 locktype2 = 2 -18252175 locktype3 = 1 -18252176 goalCount = 0 -18252176 goalTotal = 20 -18252177 otherCount = 14 -~~~ -18252178 CURRENTGOAL IS [3] -~~~ -18254872 DOWN 11 -18254872 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18254913 homeCount = 37 -18254913 waitCount = 16 -18254914 ripCount = 19 -18254914 locktype1 = 0 -18254915 locktype2 = 2 -18254915 locktype3 = 1 -18254916 goalCount = 0 -18254916 goalTotal = 20 -18254917 otherCount = 14 -~~~ -18254918 CURRENTGOAL IS [3] -~~~ -18258249 UP 4 -18258249 8 255 -~~~ -~~~ -18258276 DOWN 4 -18258276 0 255 -~~~ -~~~ -18258294 0 254 -~~~ -~~~ -18258296 0 252 -~~~ -~~~ -18258298 0 248 -~~~ -~~~ -18258300 0 240 -~~~ -~~~ -18258301 0 224 -~~~ -~~~ -18258303 0 192 -~~~ -~~~ -18258305 0 128 -~~~ -~~~ -18258307 0 0 -~~~ -~~~ -18258309 0 512 -18258310 homeCount = 37 -18258310 waitCount = 16 -18258311 ripCount = 19 -18258311 locktype1 = 0 -18258333 locktype2 = 2 -18258333 locktype3 = 1 -18258333 goalCount = 0 -18258334 goalTotal = 20 -18258334 otherCount = 15 -~~~ -18258335 8 512 -18259587 DOWN 4 -18259587 0 512 -18266478 UP 10 -18266478 waslock = 0 -18266477 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18266509 512 16777728 -~~~ -18266659 512 512 -18266771 DOWN 10 -18266771 0 512 -~~~ -~~~ -18266793 0 2560 -~~~ -~~~ -18266795 0 2048 -18266796 homeCount = 38 -18266796 waitCount = 16 -18266797 ripCount = 19 -18266797 locktype1 = 0 -18266798 locktype2 = 2 -18266798 locktype3 = 1 -18266799 goalCount = 0 -18266799 goalTotal = 20 -18266800 otherCount = 15 -~~~ -18266821 UP 10 -18266821 waslock = 0 -18266821 512 2048 -~~~ -18272909 DOWN 10 -18272909 0 2048 -~~~ -~~~ -~~~ -~~~ -18272936 homeCount = 38 -18272936 waitCount = 16 -18272937 ripCount = 19 -18272937 locktype1 = 0 -18272938 locktype2 = 2 -18272938 locktype3 = 1 -18272939 goalCount = 0 -18272939 goalTotal = 20 -18272940 otherCount = 15 -~~~ -18274852 UP 12 -18274852 2048 2048 -18278279 DOWN 12 -18278279 0 2048 -18278286 UP 12 -18278286 2048 2048 -18278290 DOWN 12 -18278290 0 2048 -18278305 UP 12 -18278305 2048 2048 -18281568 DOWN 12 -18281568 0 2048 -18281603 UP 12 -18281603 2048 2048 -18282352 CLICK1 -18282352 CLICK2 -~~~ -~~~ -~~~ -18282379 2048 67110912 -~~~ -18282529 2048 2048 -18288085 DOWN 12 -18288085 0 2048 -~~~ -~~~ -18288103 0 0 -~~~ -~~~ -18288105 0 1 -~~~ -18288106 UP 12 -18288106 2048 1 -~~~ -~~~ -~~~ -18288109 2048 7 -~~~ -~~~ -18288110 2048 15 -~~~ -~~~ -18288112 2048 31 -~~~ -~~~ -18288114 2048 63 -~~~ -~~~ -18288116 2048 127 -~~~ -~~~ -18288118 2048 255 -18288119 homeCount = 38 -18288119 waitCount = 17 -18288140 ripCount = 19 -18288140 locktype1 = 0 -18288141 locktype2 = 2 -18288141 locktype3 = 1 -18288142 goalCount = 0 -18288142 goalTotal = 20 -18288143 otherCount = 15 -~~~ -18288144 CURRENTGOAL IS [3] -~~~ -18288166 DOWN 12 -18288166 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18288203 homeCount = 38 -18288203 waitCount = 17 -18288204 ripCount = 19 -18288204 locktype1 = 0 -18288205 locktype2 = 2 -18288205 locktype3 = 1 -18288206 goalCount = 0 -18288206 goalTotal = 20 -18288207 otherCount = 15 -~~~ -18288208 CURRENTGOAL IS [3] -~~~ -18292311 UP 3 -18292311 4 255 -~~~ -~~~ -18292337 outer reward -~~~ -18292338 4 262399 -~~~ -~~~ -18292624 DOWN 3 -18292624 0 262399 -~~~ -~~~ -18292648 0 262398 -~~~ -~~~ -18292650 0 262396 -~~~ -~~~ -18292651 0 262392 -~~~ -~~~ -18292653 0 262384 -~~~ -~~~ -18292655 0 262368 -~~~ -18292656 4 262368 -~~~ -~~~ -18292658 4 262336 -~~~ -~~~ -18292660 4 262272 -~~~ -18292661 4 262144 -~~~ -~~~ -18292662 4 262656 -18292663 homeCount = 38 -18292684 waitCount = 17 -18292685 ripCount = 19 -18292685 locktype1 = 0 -18292686 locktype2 = 2 -18292686 locktype3 = 1 -18292687 goalCount = 1 -18292687 goalTotal = 21 -18292688 otherCount = 15 -~~~ -18292787 4 512 -18293056 DOWN 3 -18293056 0 512 -18293081 4 512 -18293179 DOWN 3 -18293179 0 512 -18293201 4 512 -18293306 DOWN 3 -18293306 0 512 -18293327 4 512 -18293431 DOWN 3 -18293431 0 512 -18293456 4 512 -18293561 DOWN 3 -18293561 0 512 -18293585 4 512 -18293698 DOWN 3 -18293698 0 512 -18293718 4 512 -18293833 DOWN 3 -18293833 0 512 -18293855 4 512 -18293976 DOWN 3 -18293976 0 512 -18293991 4 512 -18294119 DOWN 3 -18294119 0 512 -18294131 4 512 -18299516 DOWN 3 -18299516 0 512 -18299584 4 512 -18299611 DOWN 3 -18299611 0 512 -18305797 UP 10 -18305797 waslock = 0 -18305797 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18305825 512 16777728 -~~~ -18305975 512 512 -18311404 DOWN 10 -18311404 0 512 -~~~ -~~~ -18311429 0 1536 -~~~ -~~~ -18311431 0 1024 -18311432 homeCount = 39 -18311432 waitCount = 17 -18311433 ripCount = 19 -18311433 locktype1 = 0 -18311434 locktype2 = 2 -18311434 locktype3 = 1 -18311435 goalCount = 1 -18311435 goalTotal = 21 -18311436 otherCount = 15 -~~~ -18311457 UP 10 -18311457 waslock = 0 -18311457 512 1024 -~~~ -18311489 DOWN 10 -18311489 0 1024 -~~~ -~~~ -~~~ -~~~ -18311503 homeCount = 39 -18311503 waitCount = 17 -18311504 ripCount = 19 -18311504 locktype1 = 0 -18311505 locktype2 = 2 -18311505 locktype3 = 1 -18311506 goalCount = 1 -18311506 goalTotal = 21 -18311507 otherCount = 15 -~~~ -18313122 UP 11 -18313122 1024 1024 -18322122 BEEP1 -18322122 BEEP2 -~~~ -~~~ -~~~ -18322144 1024 33555456 -~~~ -18322294 1024 1024 -18326944 DOWN 11 -18326944 0 1024 -18326951 UP 11 -18326951 1024 1024 -~~~ -~~~ -18326969 1024 0 -~~~ -~~~ -18326971 1024 1 -~~~ -~~~ -18326973 1024 3 -~~~ -~~~ -18326975 1024 7 -~~~ -~~~ -18326976 1024 15 -~~~ -~~~ -18326978 1024 31 -~~~ -~~~ -18326980 1024 63 -~~~ -~~~ -18326982 1024 127 -~~~ -~~~ -18326984 1024 255 -18326985 homeCount = 39 -18326985 waitCount = 17 -18326986 ripCount = 20 -18327007 locktype1 = 0 -18327007 locktype2 = 2 -18327008 locktype3 = 1 -18327008 goalCount = 1 -18327009 goalTotal = 21 -18327009 otherCount = 15 -~~~ -18327010 CURRENTGOAL IS [3] -~~~ -18327218 DOWN 11 -18327218 0 255 -~~~ -~~~ -~~~ -18327242 UP 11 -18327242 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18327257 homeCount = 39 -18327257 waitCount = 17 -18327258 ripCount = 20 -18327258 locktype1 = 0 -18327259 locktype2 = 2 -18327259 locktype3 = 1 -18327260 goalCount = 1 -18327260 goalTotal = 21 -18327261 otherCount = 15 -~~~ -18327262 CURRENTGOAL IS [3] -~~~ -18330417 DOWN 11 -18330417 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18330460 homeCount = 39 -18330461 waitCount = 17 -18330461 ripCount = 20 -18330462 locktype1 = 0 -18330462 locktype2 = 2 -18330463 locktype3 = 1 -18330463 goalCount = 1 -18330464 goalTotal = 21 -18330464 otherCount = 15 -~~~ -18330465 CURRENTGOAL IS [3] -~~~ -18335296 UP 2 -18335296 2 255 -~~~ -~~~ -18335330 DOWN 2 -18335330 0 255 -~~~ -18335345 2 255 -~~~ -~~~ -18335347 2 254 -~~~ -~~~ -18335348 2 252 -~~~ -18335350 2 248 -~~~ -~~~ -18335351 2 240 -~~~ -~~~ -18335353 2 224 -~~~ -~~~ -18335355 2 192 -~~~ -~~~ -18335357 2 128 -~~~ -~~~ -18335358 2 0 -~~~ -~~~ -18335360 2 512 -18335361 homeCount = 39 -18335362 waitCount = 17 -18335362 ripCount = 20 -18335384 locktype1 = 0 -18335384 locktype2 = 2 -18335385 locktype3 = 1 -18335385 goalCount = 1 -18335385 goalTotal = 21 -18335386 otherCount = 16 -~~~ -18335768 DOWN 2 -18335768 0 512 -18335780 2 512 -18336120 DOWN 2 -18336120 0 512 -18336346 2 512 -18336362 DOWN 2 -18336362 0 512 -18336949 2 512 -18337029 DOWN 2 -18337029 0 512 -18340544 UP 10 -18340544 waslock = 0 -18340544 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18340570 512 16777728 -~~~ -18340720 512 512 -18344340 DOWN 10 -18344340 0 512 -~~~ -~~~ -18344365 0 2560 -~~~ -~~~ -18344367 0 2048 -18344368 homeCount = 40 -18344368 waitCount = 17 -18344369 ripCount = 20 -18344369 locktype1 = 0 -18344370 locktype2 = 2 -18344370 locktype3 = 1 -18344371 goalCount = 1 -18344371 goalTotal = 21 -18344372 otherCount = 16 -~~~ -18344393 UP 10 -18344393 waslock = 0 -18344393 512 2048 -~~~ -18344426 DOWN 10 -18344426 0 2048 -~~~ -~~~ -~~~ -~~~ -18344451 homeCount = 40 -18344451 waitCount = 17 -18344452 ripCount = 20 -18344452 locktype1 = 0 -18344453 locktype2 = 2 -18344453 locktype3 = 1 -18344454 goalCount = 1 -18344454 goalTotal = 21 -18344455 otherCount = 16 -~~~ -18346034 UP 12 -18346034 2048 2048 -18353034 CLICK1 -18353034 CLICK2 -~~~ -~~~ -~~~ -18353058 2048 67110912 -~~~ -18353208 2048 2048 -18353356 DOWN 12 -18353356 0 2048 -~~~ -~~~ -18353377 0 0 -~~~ -~~~ -18353379 0 1 -~~~ -~~~ -18353381 0 3 -~~~ -~~~ -18353383 0 7 -~~~ -~~~ -18353385 0 15 -~~~ -~~~ -18353387 0 31 -~~~ -~~~ -18353388 0 63 -~~~ -~~~ -18353390 0 127 -~~~ -~~~ -18353392 0 255 -18353393 homeCount = 40 -18353394 waitCount = 18 -18353394 ripCount = 20 -18353395 locktype1 = 0 -18353395 locktype2 = 2 -18353416 locktype3 = 1 -18353417 goalCount = 1 -18353417 goalTotal = 21 -18353418 otherCount = 16 -~~~ -18353419 CURRENTGOAL IS [3] -~~~ -18353419 UP 12 -18353419 2048 255 -18359231 DOWN 12 -18359231 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18359273 homeCount = 40 -18359274 waitCount = 18 -18359274 ripCount = 20 -18359275 locktype1 = 0 -18359276 locktype2 = 2 -18359276 locktype3 = 1 -18359276 goalCount = 1 -18359277 goalTotal = 21 -18359277 otherCount = 16 -~~~ -18359279 CURRENTGOAL IS [3] -~~~ -18359318 UP 12 -18359318 2048 255 -18359326 DOWN 12 -18359326 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18359353 homeCount = 40 -18359354 waitCount = 18 -18359354 ripCount = 20 -18359355 locktype1 = 0 -18359355 locktype2 = 2 -18359356 locktype3 = 1 -18359356 goalCount = 1 -18359357 goalTotal = 21 -18359357 otherCount = 16 -~~~ -18359358 CURRENTGOAL IS [3] -~~~ -18367152 UP 10 -18367152 waslock = 0 -18367152 512 255 -~~~ -18367170 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18367178 512 254 -~~~ -~~~ -18367180 512 252 -~~~ -~~~ -18367181 512 248 -~~~ -~~~ -18367183 512 240 -~~~ -~~~ -18367185 512 224 -~~~ -~~~ -18367187 512 192 -~~~ -~~~ -18367189 512 128 -~~~ -~~~ -18367191 512 0 -~~~ -~~~ -~~~ -18367431 0 0 -18367494 512 0 -18368467 0 0 -18370070 512 0 -18370115 0 0 -18390750 512 0 -18390835 0 0 -18390853 512 0 -18391792 0 0 -18391867 512 0 -18392170 LOCKEND -~~~ -~~~ -~~~ -18392191 512 512 -18392406 DOWN 10 -18392406 0 512 -18392474 UP 10 -18392474 waslock = 0 -18392474 512 512 -18392493 DOWN 10 -18392493 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18392519 0 16777728 -~~~ -~~~ -~~~ -18392522 0 16778752 -~~~ -~~~ -18392524 0 16778240 -18392525 homeCount = 41 -18392525 waitCount = 18 -18392526 ripCount = 20 -18392526 locktype1 = 0 -18392527 locktype2 = 3 -18392527 locktype3 = 1 -18392528 goalCount = 1 -18392528 goalTotal = 21 -18392529 otherCount = 16 -~~~ -18392654 UP 10 -18392654 waslock = 0 -18392654 512 16778240 -18392669 512 1024 -~~~ -18392693 DOWN 10 -18392693 0 1024 -~~~ -~~~ -~~~ -~~~ -18392714 homeCount = 41 -18392715 waitCount = 18 -18392715 ripCount = 20 -18392716 locktype1 = 0 -18392716 locktype2 = 3 -18392717 locktype3 = 1 -18392717 goalCount = 1 -18392718 goalTotal = 21 -18392718 otherCount = 16 -~~~ -18392893 UP 10 -18392894 waslock = 0 -18392893 512 1024 -~~~ -18399200 DOWN 10 -18399200 0 1024 -~~~ -~~~ -~~~ -~~~ -18399223 homeCount = 41 -18399224 waitCount = 18 -18399224 ripCount = 20 -18399225 locktype1 = 0 -18399225 locktype2 = 3 -18399226 locktype3 = 1 -18399226 goalCount = 1 -18399227 goalTotal = 21 -18399227 otherCount = 16 -~~~ -18399231 UP 10 -18399231 waslock = 0 -18399231 512 1024 -~~~ -18399278 DOWN 10 -18399278 0 1024 -~~~ -~~~ -~~~ -~~~ -18399297 homeCount = 41 -18399297 waitCount = 18 -18399298 ripCount = 20 -18399298 locktype1 = 0 -18399299 locktype2 = 3 -18399299 locktype3 = 1 -18399300 goalCount = 1 -18399300 goalTotal = 21 -18399301 otherCount = 16 -~~~ -18402849 UP 11 -18402849 1024 1024 -18403841 DOWN 11 -18403841 0 1024 -18403876 UP 11 -18403876 1024 1024 -18404665 DOWN 11 -18404665 0 1024 -18404719 UP 11 -18404719 1024 1024 -18405850 BEEP1 -18405850 BEEP2 -~~~ -~~~ -~~~ -18405873 1024 33555456 -~~~ -18406023 1024 1024 -18411287 DOWN 11 -18411286 0 1024 -~~~ -~~~ -18411311 0 0 -~~~ -~~~ -18411313 0 1 -~~~ -~~~ -18411315 0 3 -~~~ -~~~ -18411317 UP 11 -18411317 1024 7 -~~~ -~~~ -18411319 1024 15 -~~~ -~~~ -18411320 1024 31 -~~~ -~~~ -18411322 1024 63 -~~~ -~~~ -18411324 1024 127 -~~~ -~~~ -18411326 1024 255 -18411327 homeCount = 41 -18411327 waitCount = 18 -18411349 ripCount = 21 -18411349 locktype1 = 0 -18411349 locktype2 = 3 -18411350 locktype3 = 1 -18411350 goalCount = 1 -18411351 goalTotal = 21 -18411352 otherCount = 16 -~~~ -18411353 CURRENTGOAL IS [3] -~~~ -18411418 DOWN 11 -18411418 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18411461 homeCount = 41 -18411461 waitCount = 18 -18411462 ripCount = 21 -18411462 locktype1 = 0 -18411463 locktype2 = 3 -18411463 locktype3 = 1 -18411464 goalCount = 1 -18411464 goalTotal = 21 -18411465 otherCount = 16 -~~~ -18411466 CURRENTGOAL IS [3] -~~~ -18411487 UP 11 -18411487 1024 255 -18411552 DOWN 11 -18411552 0 255 -18411570 UP 11 -18411570 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18411606 homeCount = 41 -18411606 waitCount = 18 -18411607 ripCount = 21 -18411607 locktype1 = 0 -18411608 locktype2 = 3 -18411608 locktype3 = 1 -18411609 goalCount = 1 -18411609 goalTotal = 21 -18411610 otherCount = 16 -~~~ -18411611 CURRENTGOAL IS [3] -~~~ -18413548 DOWN 11 -18413548 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18413589 homeCount = 41 -18413590 waitCount = 18 -18413590 ripCount = 21 -18413591 locktype1 = 0 -18413591 locktype2 = 3 -18413592 locktype3 = 1 -18413592 goalCount = 1 -18413593 goalTotal = 21 -18413593 otherCount = 16 -~~~ -18413594 CURRENTGOAL IS [3] -~~~ -18413618 UP 11 -18413618 1024 255 -18413653 DOWN 11 -18413653 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18413689 homeCount = 41 -18413690 waitCount = 18 -18413691 ripCount = 21 -18413691 locktype1 = 0 -18413692 locktype2 = 3 -18413692 locktype3 = 1 -18413693 goalCount = 1 -18413693 goalTotal = 21 -18413694 otherCount = 16 -~~~ -18413695 CURRENTGOAL IS [3] -~~~ -18427752 UP 3 -18427752 4 255 -~~~ -~~~ -18427780 outer reward -~~~ -18427781 4 262399 -~~~ -~~~ -18428037 DOWN 3 -18428037 0 262399 -~~~ -~~~ -18428056 0 262398 -~~~ -~~~ -18428057 0 262396 -~~~ -~~~ -18428059 0 262392 -~~~ -~~~ -18428061 0 262384 -~~~ -~~~ -18428063 0 262368 -~~~ -~~~ -18428065 0 262336 -~~~ -~~~ -18428067 0 262272 -~~~ -~~~ -18428068 0 262144 -~~~ -~~~ -18428070 0 262656 -18428071 homeCount = 41 -18428072 waitCount = 18 -18428072 ripCount = 21 -18428093 locktype1 = 0 -18428094 locktype2 = 3 -18428094 locktype3 = 1 -18428095 goalCount = 2 -18428095 goalTotal = 22 -18428096 otherCount = 16 -~~~ -18428096 4 262656 -18428230 4 512 -18428443 DOWN 3 -18428443 0 512 -18428476 4 512 -18428561 DOWN 3 -18428561 0 512 -18428599 4 512 -18428685 DOWN 3 -18428685 0 512 -18428724 4 512 -18428808 DOWN 3 -18428808 0 512 -18428850 4 512 -18428934 DOWN 3 -18428934 0 512 -18428970 4 512 -18429072 DOWN 3 -18429072 0 512 -18429100 4 512 -18429211 DOWN 3 -18429211 0 512 -18429239 4 512 -18429351 DOWN 3 -18429351 0 512 -18429374 4 512 -18429495 DOWN 3 -18429495 0 512 -18429514 4 512 -18429638 DOWN 3 -18429638 0 512 -18429655 4 512 -18435540 DOWN 3 -18435540 0 512 -18435579 4 512 -18435628 DOWN 3 -18435628 0 512 -18441200 UP 10 -18441200 waslock = 0 -18441200 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18441225 512 16777728 -~~~ -18441375 512 512 -18446646 DOWN 10 -18446646 0 512 -18446663 UP 10 -18446663 waslock = 0 -18446663 512 512 -~~~ -~~~ -18446669 512 1536 -~~~ -~~~ -18446671 512 1024 -18446672 homeCount = 42 -18446673 waitCount = 18 -18446673 ripCount = 21 -18446674 locktype1 = 0 -18446674 locktype2 = 3 -18446675 locktype3 = 1 -18446675 goalCount = 2 -18446676 goalTotal = 22 -18446676 otherCount = 16 -~~~ -~~~ -18446731 DOWN 10 -18446731 0 1024 -~~~ -~~~ -~~~ -~~~ -18446752 homeCount = 42 -18446752 waitCount = 18 -18446753 ripCount = 21 -18446753 locktype1 = 0 -18446754 locktype2 = 3 -18446754 locktype3 = 1 -18446755 goalCount = 2 -18446755 goalTotal = 22 -18446756 otherCount = 16 -~~~ -18449519 UP 11 -18449519 1024 1024 -18449878 DOWN 11 -18449878 0 1024 -18450078 LOCKOUT 3 -~~~ -18450101 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -18450105 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18463180 UP 1 -18463180 1 0 -18465562 DOWN 1 -18465562 0 0 -18465583 1 0 -18465670 DOWN 1 -18465670 0 0 -18465744 1 0 -18465767 DOWN 1 -18465767 0 0 -18475101 LOCKEND -~~~ -~~~ -~~~ -18475120 0 512 -18476607 UP 10 -18476608 waslock = 0 -18476607 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18476638 512 16777728 -~~~ -18476788 512 512 -18476832 DOWN 10 -18476832 0 512 -18476847 UP 10 -18476848 waslock = 0 -18476847 512 512 -~~~ -~~~ -18476852 512 2560 -~~~ -~~~ -18476854 512 2048 -18476855 homeCount = 43 -18476855 waitCount = 18 -18476856 ripCount = 21 -18476856 locktype1 = 0 -18476857 locktype2 = 3 -18476857 locktype3 = 2 -18476858 goalCount = 2 -18476858 goalTotal = 22 -18476859 otherCount = 16 -~~~ -~~~ -18477271 DOWN 10 -18477271 0 2048 -~~~ -~~~ -~~~ -~~~ -18477297 homeCount = 43 -18477297 waitCount = 18 -18477298 ripCount = 21 -18477298 locktype1 = 0 -18477299 locktype2 = 3 -18477299 locktype3 = 2 -18477299 goalCount = 2 -18477300 goalTotal = 22 -18477300 otherCount = 16 -~~~ -18477304 UP 10 -18477305 waslock = 0 -18477304 512 2048 -~~~ -18480504 DOWN 10 -18480503 0 2048 -~~~ -~~~ -~~~ -~~~ -18480533 homeCount = 43 -18480533 waitCount = 18 -18480534 ripCount = 21 -18480534 locktype1 = 0 -18480535 locktype2 = 3 -18480535 locktype3 = 2 -18480535 goalCount = 2 -18480536 goalTotal = 22 -18480536 otherCount = 16 -~~~ -18486382 UP 12 -18486382 2048 2048 -18489050 DOWN 12 -18489050 0 2048 -18489054 UP 12 -18489054 2048 2048 -18489417 DOWN 12 -18489417 0 2048 -18489429 UP 12 -18489429 2048 2048 -18492382 CLICK1 -18492382 CLICK2 -~~~ -~~~ -~~~ -18492402 2048 67110912 -~~~ -18492552 2048 2048 -18499697 DOWN 12 -18499697 0 2048 -~~~ -~~~ -18499721 0 0 -~~~ -~~~ -18499722 0 1 -~~~ -~~~ -18499724 0 3 -~~~ -~~~ -18499726 0 7 -~~~ -~~~ -18499728 0 15 -~~~ -~~~ -18499730 0 31 -~~~ -~~~ -18499731 0 63 -~~~ -~~~ -18499733 0 127 -~~~ -~~~ -18499735 0 255 -18499736 homeCount = 43 -18499737 waitCount = 19 -18499737 ripCount = 21 -18499738 locktype1 = 0 -18499738 locktype2 = 3 -18499759 locktype3 = 2 -18499759 goalCount = 2 -18499760 goalTotal = 22 -18499760 otherCount = 16 -~~~ -18499761 CURRENTGOAL IS [3] -~~~ -18499762 UP 12 -18499762 2048 255 -18499791 DOWN 12 -18499791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18499824 homeCount = 43 -18499824 waitCount = 19 -18499825 ripCount = 21 -18499825 locktype1 = 0 -18499826 locktype2 = 3 -18499826 locktype3 = 2 -18499827 goalCount = 2 -18499827 goalTotal = 22 -18499828 otherCount = 16 -~~~ -18499829 CURRENTGOAL IS [3] -~~~ -18503006 UP 3 -18503006 4 255 -~~~ -~~~ -18503026 outer reward -~~~ -18503026 4 262399 -~~~ -~~~ -18503213 DOWN 3 -18503213 0 262399 -~~~ -~~~ -18503234 0 262398 -~~~ -~~~ -18503236 0 262396 -~~~ -~~~ -18503238 0 262392 -~~~ -~~~ -18503240 0 262384 -~~~ -~~~ -18503242 0 262368 -~~~ -~~~ -18503243 0 262336 -~~~ -~~~ -18503245 0 262272 -~~~ -~~~ -18503247 0 262144 -~~~ -~~~ -18503249 0 262656 -18503250 homeCount = 43 -18503250 waitCount = 19 -18503251 ripCount = 21 -18503272 locktype1 = 0 -18503273 locktype2 = 3 -18503273 locktype3 = 2 -18503274 goalCount = 3 -18503274 goalTotal = 23 -18503275 otherCount = 16 -~~~ -18503279 4 262656 -18503402 DOWN 3 -18503402 0 262656 -18503448 4 262656 -18503476 4 512 -18503554 DOWN 3 -18503554 0 512 -18503589 4 512 -18504212 DOWN 3 -18504212 0 512 -18504219 4 512 -18504339 DOWN 3 -18504339 0 512 -18504353 4 512 -18504473 DOWN 3 -18504473 0 512 -18504487 4 512 -18504613 DOWN 3 -18504613 0 512 -18504623 4 512 -18511674 DOWN 3 -18511674 0 512 -18516945 UP 10 -18516945 waslock = 0 -18516944 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18516972 512 16777728 -~~~ -18517021 DOWN 10 -18517021 0 16777728 -~~~ -~~~ -18517045 0 16779776 -~~~ -~~~ -18517047 0 16779264 -18517048 homeCount = 44 -18517049 waitCount = 19 -18517049 ripCount = 21 -18517050 locktype1 = 0 -18517050 locktype2 = 3 -18517051 locktype3 = 2 -18517051 goalCount = 3 -18517052 goalTotal = 23 -18517052 otherCount = 16 -~~~ -18517073 UP 10 -18517073 waslock = 0 -18517073 512 16779264 -~~~ -18517122 512 2048 -18517244 DOWN 10 -18517244 0 2048 -~~~ -~~~ -~~~ -~~~ -18517267 homeCount = 44 -18517268 waitCount = 19 -18517268 ripCount = 21 -18517269 locktype1 = 0 -18517269 locktype2 = 3 -18517270 locktype3 = 2 -18517270 goalCount = 3 -18517271 goalTotal = 23 -18517271 otherCount = 16 -~~~ -18517332 UP 10 -18517332 waslock = 0 -18517332 512 2048 -~~~ -18523840 DOWN 10 -18523840 0 2048 -~~~ -~~~ -~~~ -~~~ -18523866 homeCount = 44 -18523867 waitCount = 19 -18523867 ripCount = 21 -18523868 locktype1 = 0 -18523868 locktype2 = 3 -18523869 locktype3 = 2 -18523869 goalCount = 3 -18523870 goalTotal = 23 -18523870 otherCount = 16 -~~~ -18523918 UP 10 -18523918 waslock = 0 -18523918 512 2048 -~~~ -18523968 DOWN 10 -18523968 0 2048 -~~~ -~~~ -~~~ -~~~ -18524000 homeCount = 44 -18524000 waitCount = 19 -18524001 ripCount = 21 -18524001 locktype1 = 0 -18524002 locktype2 = 3 -18524002 locktype3 = 2 -18524003 goalCount = 3 -18524003 goalTotal = 23 -18524004 otherCount = 16 -~~~ -18526588 UP 12 -18526588 2048 2048 -18528844 DOWN 12 -18528844 0 2048 -18528979 UP 12 -18528979 2048 2048 -18530361 DOWN 12 -18530361 0 2048 -18530370 UP 12 -18530370 2048 2048 -18533589 CLICK1 -18533589 CLICK2 -~~~ -~~~ -~~~ -18533616 2048 67110912 -~~~ -18533766 2048 2048 -18539900 DOWN 12 -18539900 0 2048 -18539915 UP 12 -18539915 2048 2048 -~~~ -~~~ -18539936 2048 0 -~~~ -~~~ -18539938 2048 1 -~~~ -~~~ -18539940 2048 3 -~~~ -~~~ -18539942 2048 7 -~~~ -~~~ -18539944 2048 15 -~~~ -~~~ -18539945 2048 31 -~~~ -~~~ -18539947 2048 63 -~~~ -~~~ -18539949 2048 127 -~~~ -~~~ -18539951 2048 255 -18539952 homeCount = 44 -18539952 waitCount = 20 -18539953 ripCount = 21 -18539974 locktype1 = 0 -18539974 locktype2 = 3 -18539975 locktype3 = 2 -18539975 goalCount = 3 -18539976 goalTotal = 23 -18539976 otherCount = 16 -~~~ -18539978 CURRENTGOAL IS [3] -~~~ -18539978 DOWN 12 -18539978 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18540031 homeCount = 44 -18540031 waitCount = 20 -18540032 ripCount = 21 -18540032 locktype1 = 0 -18540033 locktype2 = 3 -18540033 locktype3 = 2 -18540034 goalCount = 3 -18540034 goalTotal = 23 -18540035 otherCount = 16 -~~~ -18540036 CURRENTGOAL IS [3] -~~~ -18540070 UP 12 -18540070 2048 255 -18541775 DOWN 12 -18541775 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18541811 homeCount = 44 -18541811 waitCount = 20 -18541812 ripCount = 21 -18541812 locktype1 = 0 -18541813 locktype2 = 3 -18541813 locktype3 = 2 -18541814 goalCount = 3 -18541814 goalTotal = 23 -18541815 otherCount = 16 -~~~ -18541816 CURRENTGOAL IS [3] -~~~ -18546659 UP 3 -18546659 4 255 -18546682 DOWN 3 -18546682 0 255 -~~~ -~~~ -18546687 outer reward -~~~ -18546687 0 262399 -~~~ -~~~ -~~~ -~~~ -18546705 0 262398 -~~~ -~~~ -18546707 0 262396 -~~~ -~~~ -18546708 0 262392 -~~~ -~~~ -18546710 0 262384 -~~~ -~~~ -18546712 0 262368 -~~~ -~~~ -18546714 0 262336 -~~~ -~~~ -18546716 0 262272 -~~~ -~~~ -18546718 0 262144 -~~~ -~~~ -18546720 0 262656 -18546721 homeCount = 44 -18546721 waitCount = 20 -18546722 ripCount = 21 -18546743 locktype1 = 0 -18546743 locktype2 = 3 -18546744 locktype3 = 2 -18546744 goalCount = 4 -18546745 goalTotal = 24 -18546745 otherCount = 16 -~~~ -18546749 4 262656 -18546765 DOWN 3 -18546765 0 262656 -18546772 4 262656 -18547009 DOWN 3 -18547009 0 262656 -18547054 4 262656 -18547137 4 512 -18547322 DOWN 3 -18547322 0 512 -18547332 4 512 -18547439 DOWN 3 -18547439 0 512 -18547461 4 512 -18547566 DOWN 3 -18547566 0 512 -18547594 4 512 -18547707 DOWN 3 -18547707 0 512 -18547728 4 512 -18547850 DOWN 3 -18547850 0 512 -18547867 4 512 -18547995 DOWN 3 -18547995 0 512 -18548006 4 512 -18548140 DOWN 3 -18548140 0 512 -18548148 4 512 -18554299 DOWN 3 -18554299 0 512 -18554342 4 512 -18554410 DOWN 3 -18554410 0 512 -18559726 UP 10 -18559727 waslock = 0 -18559726 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18559752 512 16777728 -~~~ -18559902 512 512 -18559951 DOWN 10 -18559951 0 512 -18559967 UP 10 -18559967 waslock = 0 -18559967 512 512 -~~~ -~~~ -18559990 512 2560 -~~~ -~~~ -18559992 512 2048 -18559993 homeCount = 45 -18559994 waitCount = 20 -18559994 ripCount = 21 -18559995 locktype1 = 0 -18559995 locktype2 = 3 -18559996 locktype3 = 2 -18559996 goalCount = 4 -18559997 goalTotal = 24 -18559997 otherCount = 16 -~~~ -~~~ -18564270 DOWN 10 -18564270 0 2048 -~~~ -~~~ -~~~ -~~~ -18564299 homeCount = 45 -18564299 waitCount = 20 -18564300 ripCount = 21 -18564300 locktype1 = 0 -18564301 locktype2 = 3 -18564301 locktype3 = 2 -18564302 goalCount = 4 -18564302 goalTotal = 24 -18564303 otherCount = 16 -~~~ -18564342 UP 10 -18564343 waslock = 0 -18564342 512 2048 -18564366 DOWN 10 -18564366 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -18564389 homeCount = 45 -18564389 waitCount = 20 -18564390 ripCount = 21 -18564390 locktype1 = 0 -18564391 locktype2 = 3 -18564391 locktype3 = 2 -18564392 goalCount = 4 -18564392 goalTotal = 24 -18564393 otherCount = 16 -~~~ -18567704 UP 12 -18567704 2048 2048 -18569618 DOWN 12 -18569618 0 2048 -18569670 UP 12 -18569670 2048 2048 -18570808 DOWN 12 -18570808 0 2048 -18570818 UP 12 -18570818 2048 2048 -18572697 DOWN 12 -18572697 0 2048 -18572719 UP 12 -18572719 2048 2048 -18576704 CLICK1 -18576704 CLICK2 -~~~ -~~~ -~~~ -18576729 2048 67110912 -~~~ -18576879 2048 2048 -18583757 DOWN 12 -18583757 0 2048 -~~~ -~~~ -18583777 0 0 -~~~ -~~~ -18583779 0 1 -~~~ -~~~ -18583781 0 3 -~~~ -~~~ -18583783 0 7 -~~~ -~~~ -18583785 0 15 -~~~ -~~~ -18583786 0 31 -~~~ -~~~ -18583788 0 63 -~~~ -~~~ -18583790 0 127 -~~~ -~~~ -18583792 0 255 -18583793 homeCount = 45 -18583793 waitCount = 21 -18583794 ripCount = 21 -18583794 locktype1 = 0 -18583815 locktype2 = 3 -18583816 locktype3 = 2 -18583816 goalCount = 4 -18583817 goalTotal = 24 -18583817 otherCount = 16 -~~~ -18583819 CURRENTGOAL IS [3] -~~~ -18587416 UP 3 -18587416 4 255 -~~~ -~~~ -18587438 outer reward -~~~ -18587438 4 262399 -~~~ -~~~ -18587710 DOWN 3 -18587710 0 262399 -~~~ -~~~ -18587736 0 262398 -~~~ -~~~ -18587738 0 262396 -~~~ -~~~ -18587739 0 262392 -~~~ -~~~ -18587741 0 262384 -~~~ -~~~ -18587743 0 262368 -~~~ -~~~ -18587745 0 262336 -~~~ -~~~ -18587747 0 262272 -~~~ -~~~ -18587748 0 262144 -~~~ -~~~ -18587750 0 262656 -18587752 homeCount = 45 -18587752 waitCount = 21 -18587753 ripCount = 21 -18587774 locktype1 = 0 -18587774 locktype2 = 3 -18587775 locktype3 = 2 -18587775 goalCount = 5 -18587776 goalTotal = 25 -18587776 otherCount = 16 -~~~ -18587777 4 262656 -18587888 4 512 -18588129 DOWN 3 -18588129 0 512 -18588142 4 512 -18588388 DOWN 3 -18588388 0 512 -18588399 4 512 -18588514 DOWN 3 -18588514 0 512 -18588530 4 512 -18588647 DOWN 3 -18588647 0 512 -18588665 4 512 -18588781 DOWN 3 -18588781 0 512 -18588798 4 512 -18593276 DOWN 3 -18593276 0 512 -18593288 4 512 -18596652 DOWN 3 -18596652 0 512 -18602809 UP 10 -18602809 waslock = 0 -18602809 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18602835 512 16777728 -~~~ -18602985 512 512 -18606263 DOWN 10 -18606263 0 512 -~~~ -~~~ -18606286 0 2560 -~~~ -~~~ -18606288 0 2048 -18606289 homeCount = 46 -18606290 waitCount = 21 -18606290 ripCount = 21 -18606291 locktype1 = 0 -18606291 locktype2 = 3 -18606292 locktype3 = 2 -18606292 goalCount = 5 -18606293 goalTotal = 25 -18606293 otherCount = 16 -~~~ -18608915 UP 12 -18608915 2048 2048 -18610847 DOWN 12 -18610847 0 2048 -18610865 UP 12 -18610865 2048 2048 -18616415 CLICK1 -18616415 CLICK2 -~~~ -~~~ -~~~ -18616441 2048 67110912 -~~~ -18616590 2048 2048 -18621494 DOWN 12 -18621494 0 2048 -~~~ -~~~ -18621517 0 0 -~~~ -~~~ -18621519 0 1 -~~~ -~~~ -18621521 0 3 -~~~ -~~~ -18621522 0 7 -~~~ -~~~ -18621524 0 15 -~~~ -~~~ -18621526 0 31 -~~~ -~~~ -18621528 0 63 -~~~ -~~~ -18621530 0 127 -~~~ -~~~ -18621532 0 255 -18621533 homeCount = 46 -18621533 waitCount = 22 -18621534 ripCount = 21 -18621534 locktype1 = 0 -18621535 locktype2 = 3 -18621556 locktype3 = 2 -18621556 goalCount = 5 -18621557 goalTotal = 25 -18621557 otherCount = 16 -~~~ -18621558 CURRENTGOAL IS [3] -~~~ -18621560 UP 12 -18621560 2048 255 -18621597 DOWN 12 -18621597 0 255 -18621612 UP 12 -18621612 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18621629 DOWN 12 -18621629 0 255 -~~~ -~~~ -18621631 homeCount = 46 -18621632 waitCount = 22 -18621632 ripCount = 21 -18621633 locktype1 = 0 -18621633 locktype2 = 3 -18621634 locktype3 = 2 -18621634 goalCount = 5 -18621635 goalTotal = 25 -18621635 otherCount = 16 -~~~ -18621657 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18621682 homeCount = 46 -18621682 waitCount = 22 -18621683 ripCount = 21 -18621683 locktype1 = 0 -18621684 locktype2 = 3 -18621684 locktype3 = 2 -18621685 goalCount = 5 -18621685 goalTotal = 25 -18621686 otherCount = 16 -~~~ -18621687 CURRENTGOAL IS [3] -~~~ -18624994 UP 3 -18624994 4 255 -~~~ -~~~ -18625017 outer reward -~~~ -18625018 4 262399 -~~~ -~~~ -18625215 DOWN 3 -18625215 0 262399 -~~~ -~~~ -18625239 0 262398 -~~~ -~~~ -18625241 0 262396 -~~~ -~~~ -18625243 0 262392 -~~~ -~~~ -18625244 0 262384 -~~~ -~~~ -18625246 0 262368 -~~~ -~~~ -18625248 0 262336 -~~~ -~~~ -18625250 0 262272 -~~~ -~~~ -18625252 0 262144 -~~~ -~~~ -18625254 0 262656 -18625255 homeCount = 46 -18625255 waitCount = 22 -18625256 ripCount = 21 -18625277 locktype1 = 0 -18625277 locktype2 = 3 -18625278 locktype3 = 2 -18625278 goalCount = 6 -18625279 goalTotal = 26 -18625279 otherCount = 16 -~~~ -18625280 4 262656 -18625467 4 512 -18625771 DOWN 3 -18625771 0 512 -18625792 4 512 -18625894 DOWN 3 -18625894 0 512 -18625916 4 512 -18626018 DOWN 3 -18626018 0 512 -18626045 4 512 -18626149 DOWN 3 -18626149 0 512 -18626175 4 512 -18626293 DOWN 3 -18626293 0 512 -18626309 4 512 -18626446 DOWN 3 -18626446 0 512 -18626455 4 512 -18626598 DOWN 3 -18626598 0 512 -18626604 4 512 -18628358 DOWN 3 -18628358 0 512 -18628374 4 512 -18633219 DOWN 3 -18633219 0 512 -18633229 4 512 -18633558 DOWN 3 -18633558 0 512 -18640894 UP 10 -18640895 waslock = 0 -18640894 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18640921 512 16777728 -~~~ -18641071 512 512 -18641125 DOWN 10 -18641125 0 512 -~~~ -~~~ -18641147 0 1536 -~~~ -~~~ -18641149 0 1024 -18641150 homeCount = 47 -18641151 waitCount = 22 -18641151 ripCount = 21 -18641152 locktype1 = 0 -18641152 locktype2 = 3 -18641152 locktype3 = 2 -18641153 goalCount = 6 -18641153 goalTotal = 26 -18641154 otherCount = 16 -~~~ -18641175 UP 10 -18641175 waslock = 0 -18641175 512 1024 -~~~ -18644766 DOWN 10 -18644766 0 1024 -~~~ -~~~ -~~~ -~~~ -18644789 homeCount = 47 -18644790 waitCount = 22 -18644790 ripCount = 21 -18644791 locktype1 = 0 -18644791 locktype2 = 3 -18644792 locktype3 = 2 -18644792 goalCount = 6 -18644793 goalTotal = 26 -18644793 otherCount = 16 -~~~ -18644817 UP 10 -18644817 waslock = 0 -18644817 512 1024 -~~~ -18644873 DOWN 10 -18644873 0 1024 -~~~ -~~~ -~~~ -~~~ -18644899 homeCount = 47 -18644900 waitCount = 22 -18644900 ripCount = 21 -18644901 locktype1 = 0 -18644901 locktype2 = 3 -18644902 locktype3 = 2 -18644902 goalCount = 6 -18644903 goalTotal = 26 -18644903 otherCount = 16 -~~~ -18647367 UP 11 -18647367 1024 1024 -18647805 DOWN 11 -18647805 0 1024 -18647964 UP 11 -18647964 1024 1024 -18648007 DOWN 11 -18648007 0 1024 -18648039 UP 11 -18648039 1024 1024 -18649073 DOWN 11 -18649073 0 1024 -18649104 UP 11 -18649104 1024 1024 -18650368 BEEP1 -18650368 BEEP2 -~~~ -~~~ -~~~ -18650388 1024 33555456 -~~~ -18650538 1024 1024 -18658120 DOWN 11 -18658120 0 1024 -~~~ -~~~ -18658145 0 0 -~~~ -~~~ -18658147 0 1 -~~~ -~~~ -18658149 0 3 -~~~ -~~~ -18658150 0 7 -~~~ -~~~ -18658152 0 15 -~~~ -~~~ -18658154 0 31 -~~~ -18658155 UP 11 -18658155 1024 31 -~~~ -~~~ -18658157 1024 63 -~~~ -~~~ -18658159 1024 127 -~~~ -18658160 1024 255 -18658161 homeCount = 47 -18658162 waitCount = 22 -18658183 ripCount = 22 -18658183 locktype1 = 0 -18658184 locktype2 = 3 -18658184 locktype3 = 2 -18658185 goalCount = 6 -18658185 goalTotal = 26 -18658186 otherCount = 16 -~~~ -18658187 CURRENTGOAL IS [3] -~~~ -18658213 DOWN 11 -18658213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -18658239 UP 11 -18658239 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18658251 DOWN 11 -18658250 0 255 -18658252 homeCount = 47 -18658252 waitCount = 22 -18658253 ripCount = 22 -18658253 locktype1 = 0 -18658254 locktype2 = 3 -18658254 locktype3 = 2 -18658255 goalCount = 6 -18658255 goalTotal = 26 -18658256 otherCount = 16 -~~~ -18658278 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18658306 homeCount = 47 -18658307 waitCount = 22 -18658307 ripCount = 22 -18658308 locktype1 = 0 -18658308 locktype2 = 3 -18658309 locktype3 = 2 -18658309 goalCount = 6 -18658310 goalTotal = 26 -18658310 otherCount = 16 -~~~ -18658311 CURRENTGOAL IS [3] -~~~ -18658333 UP 11 -18658332 1024 255 -18660179 DOWN 11 -18660179 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18660213 homeCount = 47 -18660214 waitCount = 22 -18660214 ripCount = 22 -18660215 locktype1 = 0 -18660215 locktype2 = 3 -18660216 locktype3 = 2 -18660216 goalCount = 6 -18660217 goalTotal = 26 -18660217 otherCount = 16 -~~~ -18660218 CURRENTGOAL IS [3] -~~~ -18669161 UP 4 -18669161 8 255 -~~~ -~~~ -18669847 DOWN 4 -18669847 0 255 -~~~ -~~~ -18669867 0 254 -~~~ -~~~ -18669869 0 252 -~~~ -~~~ -18669871 0 248 -~~~ -~~~ -18669873 0 240 -~~~ -~~~ -18669874 0 224 -~~~ -~~~ -18669876 0 192 -~~~ -~~~ -18669878 0 128 -~~~ -~~~ -18669880 0 0 -~~~ -~~~ -18669882 0 512 -18669883 homeCount = 47 -18669883 waitCount = 22 -18669884 ripCount = 22 -18669884 locktype1 = 0 -18669906 locktype2 = 3 -18669906 locktype3 = 2 -18669907 goalCount = 6 -18669907 goalTotal = 26 -18669907 otherCount = 17 -~~~ -18675216 UP 10 -18675217 waslock = 0 -18675216 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18675244 512 16777728 -~~~ -18675394 512 512 -18675464 DOWN 10 -18675464 0 512 -~~~ -~~~ -18675487 0 1536 -~~~ -~~~ -18675489 0 1024 -18675490 homeCount = 48 -18675491 waitCount = 22 -18675491 ripCount = 22 -18675492 locktype1 = 0 -18675492 locktype2 = 3 -18675493 locktype3 = 2 -18675493 goalCount = 6 -18675494 goalTotal = 26 -18675494 otherCount = 17 -~~~ -18675516 UP 10 -18675516 waslock = 0 -18675516 512 1024 -~~~ -18678929 DOWN 10 -18678929 0 1024 -~~~ -~~~ -~~~ -~~~ -18678952 homeCount = 48 -18678953 waitCount = 22 -18678953 ripCount = 22 -18678954 locktype1 = 0 -18678954 locktype2 = 3 -18678955 locktype3 = 2 -18678955 goalCount = 6 -18678956 goalTotal = 26 -18678956 otherCount = 17 -~~~ -18680811 UP 11 -18680810 1024 1024 -18683346 DOWN 11 -18683346 0 1024 -18683354 UP 11 -18683354 1024 1024 -18683811 BEEP1 -18683811 BEEP2 -~~~ -~~~ -~~~ -18683831 1024 33555456 -~~~ -18683981 1024 1024 -18690848 DOWN 11 -18690848 0 1024 -~~~ -~~~ -18690870 0 0 -~~~ -~~~ -18690872 0 1 -~~~ -~~~ -18690874 0 3 -~~~ -~~~ -18690876 0 7 -~~~ -~~~ -18690878 0 15 -~~~ -~~~ -18690879 0 31 -~~~ -~~~ -18690881 0 63 -~~~ -~~~ -18690883 0 127 -~~~ -~~~ -18690885 0 255 -18690886 homeCount = 48 -18690886 waitCount = 22 -18690887 ripCount = 23 -18690888 locktype1 = 0 -18690888 locktype2 = 3 -18690909 locktype3 = 2 -18690909 goalCount = 6 -18690910 goalTotal = 26 -18690910 otherCount = 17 -~~~ -18690911 CURRENTGOAL IS [3] -~~~ -18690912 UP 11 -18690912 1024 255 -18690951 DOWN 11 -18690951 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18690988 homeCount = 48 -18690989 waitCount = 22 -18690989 ripCount = 23 -18690990 locktype1 = 0 -18690990 locktype2 = 3 -18690991 locktype3 = 2 -18690991 goalCount = 6 -18690992 goalTotal = 26 -18690992 otherCount = 17 -~~~ -18690993 CURRENTGOAL IS [3] -~~~ -18691033 UP 11 -18691033 1024 255 -18693082 DOWN 11 -18693082 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18693117 homeCount = 48 -18693118 waitCount = 22 -18693118 ripCount = 23 -18693119 locktype1 = 0 -18693119 locktype2 = 3 -18693120 locktype3 = 2 -18693120 goalCount = 6 -18693121 goalTotal = 26 -18693121 otherCount = 17 -~~~ -18693123 CURRENTGOAL IS [3] -~~~ -18698599 UP 2 -18698599 2 255 -~~~ -~~~ -18699845 DOWN 2 -18699845 0 255 -~~~ -~~~ -18699870 0 254 -~~~ -~~~ -18699872 0 252 -~~~ -~~~ -18699874 0 248 -~~~ -~~~ -18699876 0 240 -~~~ -~~~ -18699877 0 224 -~~~ -~~~ -18699879 0 192 -~~~ -~~~ -18699881 0 128 -~~~ -~~~ -18699883 0 0 -~~~ -~~~ -18699885 0 512 -18699886 homeCount = 48 -18699886 waitCount = 22 -18699887 ripCount = 23 -18699887 locktype1 = 0 -18699908 locktype2 = 3 -18699908 locktype3 = 2 -18699909 goalCount = 6 -18699909 goalTotal = 26 -18699910 otherCount = 18 -~~~ -18699963 2 512 -18700182 DOWN 2 -18700182 0 512 -18700384 2 512 -18700951 DOWN 2 -18700951 0 512 -18704490 UP 10 -18704491 waslock = 0 -18704490 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18704517 512 16777728 -~~~ -18704667 512 512 -18704708 DOWN 10 -18704708 0 512 -~~~ -~~~ -18704735 0 2560 -~~~ -~~~ -18704737 0 2048 -18704738 homeCount = 49 -18704738 waitCount = 22 -18704739 ripCount = 23 -18704739 locktype1 = 0 -18704740 locktype2 = 3 -18704740 locktype3 = 2 -18704741 goalCount = 6 -18704741 goalTotal = 26 -18704741 otherCount = 18 -~~~ -18704814 UP 10 -18704814 waslock = 0 -18704814 512 2048 -~~~ -18710733 DOWN 10 -18710733 0 2048 -18710750 UP 10 -18710750 waslock = 0 -18710750 512 2048 -~~~ -~~~ -~~~ -~~~ -18710758 homeCount = 49 -18710759 waitCount = 22 -18710759 ripCount = 23 -18710760 locktype1 = 0 -18710760 locktype2 = 3 -18710761 locktype3 = 2 -18710761 goalCount = 6 -18710762 goalTotal = 26 -18710762 otherCount = 18 -~~~ -~~~ -18710824 DOWN 10 -18710824 0 2048 -~~~ -~~~ -~~~ -~~~ -18710848 homeCount = 49 -18710848 waitCount = 22 -18710849 ripCount = 23 -18710849 locktype1 = 0 -18710850 locktype2 = 3 -18710850 locktype3 = 2 -18710851 goalCount = 6 -18710851 goalTotal = 26 -18710852 otherCount = 18 -~~~ -18712891 UP 12 -18712891 2048 2048 -18714448 DOWN 12 -18714448 0 2048 -18714495 UP 12 -18714495 2048 2048 -18719953 DOWN 12 -18719953 0 2048 -18719966 UP 12 -18719966 2048 2048 -18721892 CLICK1 -18721892 CLICK2 -~~~ -~~~ -~~~ -18721916 2048 67110912 -~~~ -18722066 2048 2048 -18727895 DOWN 12 -18727895 0 2048 -~~~ -~~~ -18727917 0 0 -~~~ -~~~ -18727919 0 1 -~~~ -~~~ -18727921 0 3 -~~~ -~~~ -18727923 0 7 -~~~ -~~~ -18727925 0 15 -~~~ -~~~ -18727926 0 31 -~~~ -~~~ -18727928 0 63 -~~~ -~~~ -18727930 0 127 -~~~ -~~~ -18727932 0 255 -18727933 homeCount = 49 -18727933 waitCount = 23 -18727934 ripCount = 23 -18727934 locktype1 = 0 -18727935 locktype2 = 3 -18727956 locktype3 = 2 -18727956 goalCount = 6 -18727957 goalTotal = 26 -18727957 otherCount = 18 -~~~ -18727958 CURRENTGOAL IS [3] -~~~ -18727959 UP 12 -18727959 2048 255 -18727992 DOWN 12 -18727992 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18728034 homeCount = 49 -18728035 waitCount = 23 -18728035 ripCount = 23 -18728036 locktype1 = 0 -18728036 locktype2 = 3 -18728037 locktype3 = 2 -18728037 goalCount = 6 -18728038 goalTotal = 26 -18728038 otherCount = 18 -~~~ -18728039 CURRENTGOAL IS [3] -~~~ -18755525 UP 10 -18755525 waslock = 0 -18755525 512 255 -~~~ -18755550 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18755557 512 254 -~~~ -~~~ -18755559 512 252 -~~~ -~~~ -18755561 512 248 -~~~ -~~~ -18755563 512 240 -~~~ -~~~ -18755565 512 224 -~~~ -~~~ -18755566 512 192 -~~~ -~~~ -18755568 512 128 -~~~ -~~~ -18755570 512 0 -~~~ -~~~ -~~~ -18755790 0 0 -18755827 512 0 -18756881 0 0 -18756920 512 0 -18756992 0 0 -18757067 512 0 -18757128 0 0 -18757165 512 0 -18757749 0 0 -18757778 512 0 -18757848 0 0 -18779443 UP 2 -18779443 2 0 -18779457 DOWN 2 -18779457 0 0 -18779539 2 0 -18779749 DOWN 2 -18779749 0 0 -18780550 LOCKEND -~~~ -~~~ -~~~ -18780570 0 512 -18787322 UP 10 -18787322 waslock = 0 -18787322 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18787355 512 16777728 -~~~ -18787505 512 512 -18787570 DOWN 10 -18787570 0 512 -~~~ -~~~ -18787590 0 2560 -~~~ -~~~ -18787592 0 2048 -18787593 homeCount = 50 -18787593 waitCount = 23 -18787594 ripCount = 23 -18787594 locktype1 = 0 -18787595 locktype2 = 4 -18787595 locktype3 = 2 -18787596 goalCount = 6 -18787596 goalTotal = 26 -18787597 otherCount = 18 -~~~ -18787721 UP 10 -18787721 waslock = 0 -18787721 512 2048 -~~~ -18788131 DOWN 10 -18788130 0 2048 -~~~ -~~~ -~~~ -~~~ -18788152 homeCount = 50 -18788153 waitCount = 23 -18788153 ripCount = 23 -18788154 locktype1 = 0 -18788155 locktype2 = 4 -18788155 locktype3 = 2 -18788156 goalCount = 6 -18788156 goalTotal = 26 -18788156 otherCount = 18 -~~~ -18788200 UP 10 -18788200 waslock = 0 -18788200 512 2048 -~~~ -18788239 DOWN 10 -18788239 0 2048 -~~~ -~~~ -~~~ -~~~ -18788265 homeCount = 50 -18788265 waitCount = 23 -18788266 ripCount = 23 -18788266 locktype1 = 0 -18788267 locktype2 = 4 -18788267 locktype3 = 2 -18788268 goalCount = 6 -18788268 goalTotal = 26 -18788269 otherCount = 18 -~~~ -18788360 UP 10 -18788360 waslock = 0 -18788360 512 2048 -~~~ -18788394 DOWN 10 -18788394 0 2048 -~~~ -~~~ -~~~ -~~~ -18788420 homeCount = 50 -18788420 waitCount = 23 -18788421 ripCount = 23 -18788421 locktype1 = 0 -18788422 locktype2 = 4 -18788422 locktype3 = 2 -18788423 goalCount = 6 -18788423 goalTotal = 26 -18788424 otherCount = 18 -~~~ -18788497 UP 10 -18788497 waslock = 0 -18788497 512 2048 -~~~ -18792370 DOWN 10 -18792370 0 2048 -~~~ -~~~ -~~~ -~~~ -18792392 homeCount = 50 -18792393 waitCount = 23 -18792393 ripCount = 23 -18792394 locktype1 = 0 -18792394 locktype2 = 4 -18792395 locktype3 = 2 -18792395 goalCount = 6 -18792396 goalTotal = 26 -18792396 otherCount = 18 -~~~ -18794314 UP 12 -18794314 2048 2048 -18798314 CLICK1 -18798314 CLICK2 -~~~ -~~~ -~~~ -18798335 2048 67110912 -~~~ -18798485 2048 2048 -18798830 DOWN 12 -18798830 0 2048 -~~~ -~~~ -18798852 0 0 -~~~ -~~~ -18798854 0 1 -~~~ -~~~ -18798856 0 3 -~~~ -~~~ -18798858 0 7 -~~~ -~~~ -18798860 0 15 -~~~ -~~~ -18798861 0 31 -~~~ -~~~ -18798863 0 63 -~~~ -~~~ -18798865 0 127 -~~~ -~~~ -18798867 0 255 -18798868 homeCount = 50 -18798868 waitCount = 24 -18798869 ripCount = 23 -18798869 locktype1 = 0 -18798870 locktype2 = 4 -18798891 locktype3 = 2 -18798891 goalCount = 6 -18798892 goalTotal = 26 -18798892 otherCount = 18 -~~~ -18798893 CURRENTGOAL IS [3] -~~~ -18799141 UP 12 -18799141 2048 255 -18805238 DOWN 12 -18805238 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18805280 homeCount = 50 -18805281 waitCount = 24 -18805281 ripCount = 23 -18805282 locktype1 = 0 -18805282 locktype2 = 4 -18805283 locktype3 = 2 -18805283 goalCount = 6 -18805284 goalTotal = 26 -18805284 otherCount = 18 -~~~ -18805285 CURRENTGOAL IS [3] -~~~ -18816138 UP 3 -18816138 4 255 -~~~ -~~~ -18816163 outer reward -~~~ -18816164 4 262399 -~~~ -~~~ -18816446 DOWN 3 -18816446 0 262399 -~~~ -~~~ -18816472 0 262398 -~~~ -~~~ -18816474 0 262396 -~~~ -~~~ -18816476 0 262392 -~~~ -~~~ -18816477 0 262384 -~~~ -~~~ -18816479 0 262368 -~~~ -~~~ -18816481 0 262336 -~~~ -~~~ -18816483 0 262272 -~~~ -~~~ -18816485 0 262144 -~~~ -~~~ -18816487 0 262656 -18816488 homeCount = 50 -18816488 waitCount = 24 -18816489 ripCount = 23 -18816510 locktype1 = 0 -18816510 locktype2 = 4 -18816511 locktype3 = 2 -18816511 goalCount = 7 -18816512 goalTotal = 27 -18816512 otherCount = 18 -~~~ -18816513 4 262656 -18816613 4 512 -18816865 DOWN 3 -18816865 0 512 -18816894 4 512 -18816982 DOWN 3 -18816982 0 512 -18817017 4 512 -18817107 DOWN 3 -18817107 0 512 -18817140 4 512 -18817244 DOWN 3 -18817244 0 512 -18817270 4 512 -18817376 DOWN 3 -18817376 0 512 -18817404 4 512 -18817518 DOWN 3 -18817518 0 512 -18817544 4 512 -18817665 DOWN 3 -18817665 0 512 -18817685 4 512 -18817810 DOWN 3 -18817810 0 512 -18817828 4 512 -18817959 DOWN 3 -18817959 0 512 -18817972 4 512 -18818112 DOWN 3 -18818112 0 512 -18818118 4 512 -18824909 DOWN 3 -18824909 0 512 -18824934 4 512 -18825030 DOWN 3 -18825030 0 512 -18825078 4 512 -18825125 DOWN 3 -18825125 0 512 -18830803 UP 10 -18830803 waslock = 0 -18830803 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18830828 512 16777728 -~~~ -18830978 512 512 -18831044 DOWN 10 -18831044 0 512 -~~~ -~~~ -18831064 0 1536 -~~~ -~~~ -18831066 0 1024 -18831067 homeCount = 51 -18831068 waitCount = 24 -18831068 ripCount = 23 -18831069 locktype1 = 0 -18831069 locktype2 = 4 -18831070 locktype3 = 2 -18831070 goalCount = 7 -18831071 goalTotal = 27 -18831071 otherCount = 18 -~~~ -18831092 UP 10 -18831093 waslock = 0 -18831092 512 1024 -~~~ -18838139 DOWN 10 -18838139 0 1024 -~~~ -~~~ -~~~ -~~~ -18838168 homeCount = 51 -18838169 waitCount = 24 -18838169 ripCount = 23 -18838170 locktype1 = 0 -18838170 locktype2 = 4 -18838171 locktype3 = 2 -18838171 goalCount = 7 -18838172 goalTotal = 27 -18838172 otherCount = 18 -~~~ -18840028 UP 11 -18840028 1024 1024 -18843430 DOWN 11 -18843430 0 1024 -18843441 UP 11 -18843441 1024 1024 -18844015 DOWN 11 -18844015 0 1024 -18844035 UP 11 -18844035 1024 1024 -18844730 DOWN 11 -18844730 0 1024 -18844737 UP 11 -18844737 1024 1024 -18844739 DOWN 11 -18844739 0 1024 -18844762 UP 11 -18844762 1024 1024 -18846028 BEEP1 -18846028 BEEP2 -~~~ -~~~ -~~~ -18846047 1024 33555456 -~~~ -18846197 1024 1024 -18851283 DOWN 11 -18851283 0 1024 -~~~ -~~~ -18851304 0 0 -~~~ -18851305 UP 11 -18851305 1024 0 -~~~ -~~~ -18851307 1024 1 -~~~ -~~~ -18851308 1024 3 -~~~ -~~~ -18851310 1024 7 -~~~ -18851311 1024 15 -~~~ -~~~ -18851313 1024 31 -~~~ -~~~ -18851314 1024 63 -~~~ -~~~ -18851316 1024 127 -~~~ -~~~ -18851318 1024 255 -18851319 homeCount = 51 -18851340 waitCount = 24 -18851341 ripCount = 24 -18851341 locktype1 = 0 -18851342 locktype2 = 4 -18851342 locktype3 = 2 -18851342 goalCount = 7 -18851343 goalTotal = 27 -18851343 otherCount = 18 -~~~ -18851345 CURRENTGOAL IS [3] -~~~ -18851424 DOWN 11 -18851424 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851453 UP 11 -18851453 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851460 homeCount = 51 -18851460 waitCount = 24 -18851461 ripCount = 24 -18851461 locktype1 = 0 -18851462 locktype2 = 4 -18851462 locktype3 = 2 -18851463 goalCount = 7 -18851463 goalTotal = 27 -18851464 otherCount = 18 -~~~ -18851465 CURRENTGOAL IS [3] -~~~ -18851571 DOWN 11 -18851571 0 255 -18851591 UP 11 -18851591 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851623 homeCount = 51 -18851624 waitCount = 24 -18851624 ripCount = 24 -18851625 locktype1 = 0 -18851625 locktype2 = 4 -18851626 locktype3 = 2 -18851626 goalCount = 7 -18851627 goalTotal = 27 -18851627 otherCount = 18 -~~~ -18851628 CURRENTGOAL IS [3] -~~~ -18854817 DOWN 11 -18854817 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18854855 homeCount = 51 -18854856 waitCount = 24 -18854856 ripCount = 24 -18854857 locktype1 = 0 -18854857 locktype2 = 4 -18854858 locktype3 = 2 -18854858 goalCount = 7 -18854859 goalTotal = 27 -18854859 otherCount = 18 -~~~ -18854860 CURRENTGOAL IS [3] -~~~ -18859075 UP 7 -18859075 64 255 -~~~ -~~~ -18860364 DOWN 7 -18860364 0 255 -~~~ -~~~ -18860388 0 254 -~~~ -~~~ -18860390 0 252 -~~~ -~~~ -18860392 0 248 -~~~ -~~~ -18860394 0 240 -~~~ -~~~ -18860396 0 224 -~~~ -~~~ -18860397 0 192 -~~~ -~~~ -18860399 0 128 -~~~ -~~~ -18860401 0 0 -~~~ -~~~ -18860403 0 512 -18860404 homeCount = 51 -18860404 waitCount = 24 -18860405 ripCount = 24 -18860405 locktype1 = 0 -18860426 locktype2 = 4 -18860426 locktype3 = 2 -18860427 goalCount = 7 -18860427 goalTotal = 27 -18860428 otherCount = 19 -~~~ -18866353 UP 10 -18866353 waslock = 0 -18866353 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18866384 512 16777728 -~~~ -18866534 512 512 -18866683 DOWN 10 -18866683 0 512 -18866707 UP 10 -18866707 waslock = 0 -18866707 512 512 -~~~ -~~~ -18866712 512 1536 -~~~ -~~~ -18866713 512 1024 -18866715 homeCount = 52 -18866715 waitCount = 24 -18866716 ripCount = 24 -18866716 locktype1 = 0 -18866716 locktype2 = 4 -18866717 locktype3 = 2 -18866717 goalCount = 7 -18866718 goalTotal = 27 -18866718 otherCount = 19 -~~~ -~~~ -18872118 DOWN 10 -18872118 0 1024 -18872136 UP 10 -18872136 waslock = 0 -18872136 512 1024 -~~~ -~~~ -~~~ -~~~ -18872142 homeCount = 52 -18872143 waitCount = 24 -18872143 ripCount = 24 -18872144 locktype1 = 0 -18872144 locktype2 = 4 -18872145 locktype3 = 2 -18872145 goalCount = 7 -18872146 goalTotal = 27 -18872146 otherCount = 19 -~~~ -~~~ -18872215 DOWN 10 -18872215 0 1024 -~~~ -~~~ -~~~ -~~~ -18872244 homeCount = 52 -18872245 waitCount = 24 -18872245 ripCount = 24 -18872246 locktype1 = 0 -18872246 locktype2 = 4 -18872247 locktype3 = 2 -18872247 goalCount = 7 -18872248 goalTotal = 27 -18872248 otherCount = 19 -~~~ -18876242 UP 11 -18876242 1024 1024 -18880510 DOWN 11 -18880510 0 1024 -18880546 UP 11 -18880546 1024 1024 -18883742 BEEP1 -18883742 BEEP2 -~~~ -~~~ -~~~ -18883760 1024 33555456 -~~~ -18883910 1024 1024 -18890371 DOWN 11 -18890371 0 1024 -~~~ -~~~ -18890388 0 0 -~~~ -~~~ -18890390 0 1 -~~~ -~~~ -18890392 0 3 -~~~ -~~~ -18890394 0 7 -~~~ -~~~ -18890396 0 15 -~~~ -~~~ -18890397 0 31 -~~~ -~~~ -18890399 0 63 -~~~ -~~~ -18890401 0 127 -~~~ -~~~ -18890403 0 255 -18890404 homeCount = 52 -18890404 waitCount = 24 -18890405 ripCount = 25 -18890405 locktype1 = 0 -18890427 locktype2 = 4 -18890427 locktype3 = 2 -18890428 goalCount = 7 -18890428 goalTotal = 27 -18890429 otherCount = 19 -~~~ -18890430 CURRENTGOAL IS [3] -~~~ -18890451 UP 11 -18890451 1024 255 -18893254 DOWN 11 -18893254 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18893297 homeCount = 52 -18893297 waitCount = 24 -18893298 ripCount = 25 -18893298 locktype1 = 0 -18893299 locktype2 = 4 -18893299 locktype3 = 2 -18893300 goalCount = 7 -18893300 goalTotal = 27 -18893301 otherCount = 19 -~~~ -18893302 CURRENTGOAL IS [3] -~~~ -18900482 UP 3 -18900482 4 255 -~~~ -~~~ -18900502 outer reward -~~~ -18900502 4 262399 -~~~ -~~~ -18900730 DOWN 3 -18900730 0 262399 -~~~ -~~~ -18900753 0 262398 -~~~ -~~~ -18900755 0 262396 -~~~ -~~~ -18900756 0 262392 -~~~ -~~~ -18900758 0 262384 -~~~ -~~~ -18900760 0 262368 -~~~ -~~~ -18900762 0 262336 -~~~ -~~~ -18900764 0 262272 -~~~ -~~~ -18900765 0 262144 -~~~ -~~~ -18900767 0 262656 -18900768 homeCount = 52 -18900769 waitCount = 24 -18900769 ripCount = 25 -18900791 locktype1 = 0 -18900791 locktype2 = 4 -18900792 locktype3 = 2 -18900792 goalCount = 8 -18900793 goalTotal = 28 -18900793 otherCount = 19 -~~~ -18900794 4 262656 -18900903 DOWN 3 -18900903 0 262656 -18900920 4 262656 -18900952 4 512 -18901039 DOWN 3 -18901039 0 512 -18901060 4 512 -18901156 DOWN 3 -18901156 0 512 -18901187 4 512 -18901292 DOWN 3 -18901292 0 512 -18901310 4 512 -18901420 DOWN 3 -18901420 0 512 -18901440 4 512 -18901546 DOWN 3 -18901546 0 512 -18901573 4 512 -18901676 DOWN 3 -18901676 0 512 -18901702 4 512 -18901804 DOWN 3 -18901804 0 512 -18901832 4 512 -18901936 DOWN 3 -18901936 0 512 -18901964 4 512 -18902072 DOWN 3 -18902072 0 512 -18902098 4 512 -18902211 DOWN 3 -18902211 0 512 -18902233 4 512 -18902355 DOWN 3 -18902355 0 512 -18902378 4 512 -18909942 DOWN 3 -18909942 0 512 -18922266 UP 10 -18922267 waslock = 0 -18922266 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18922297 512 16777728 -~~~ -18922447 512 512 -18929052 DOWN 10 -18929052 0 512 -~~~ -~~~ -18929069 0 1536 -~~~ -~~~ -18929071 0 1024 -18929072 homeCount = 53 -18929073 waitCount = 24 -18929073 ripCount = 25 -18929074 locktype1 = 0 -18929074 locktype2 = 4 -18929075 locktype3 = 2 -18929075 goalCount = 8 -18929076 goalTotal = 28 -18929076 otherCount = 19 -~~~ -18929098 UP 10 -18929098 waslock = 0 -18929097 512 1024 -~~~ -18929166 DOWN 10 -18929166 0 1024 -~~~ -~~~ -~~~ -~~~ -18929193 homeCount = 53 -18929194 waitCount = 24 -18929194 ripCount = 25 -18929194 locktype1 = 0 -18929195 locktype2 = 4 -18929195 locktype3 = 2 -18929196 goalCount = 8 -18929196 goalTotal = 28 -18929197 otherCount = 19 -~~~ -18934312 UP 11 -18934312 1024 1024 -18935944 DOWN 11 -18935944 0 1024 -18935995 UP 11 -18935995 1024 1024 -18937812 BEEP1 -18937812 BEEP2 -~~~ -~~~ -~~~ -18937832 1024 33555456 -~~~ -18937982 1024 1024 -18944487 DOWN 11 -18944487 0 1024 -18944496 UP 11 -18944496 1024 1024 -~~~ -~~~ -18944510 1024 0 -~~~ -~~~ -18944512 1024 1 -~~~ -~~~ -18944513 1024 3 -~~~ -~~~ -18944515 1024 7 -~~~ -~~~ -18944517 1024 15 -~~~ -~~~ -18944519 1024 31 -~~~ -~~~ -18944521 1024 63 -~~~ -~~~ -18944523 1024 127 -~~~ -~~~ -18944524 1024 255 -18944525 homeCount = 53 -18944526 waitCount = 24 -18944526 ripCount = 26 -18944548 locktype1 = 0 -18944548 locktype2 = 4 -18944548 locktype3 = 2 -18944549 goalCount = 8 -18944549 goalTotal = 28 -18944550 otherCount = 19 -~~~ -18944551 CURRENTGOAL IS [3] -~~~ -18944560 DOWN 11 -18944560 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18944597 UP 11 -18944597 1024 255 -18944599 homeCount = 53 -18944599 waitCount = 24 -18944600 ripCount = 26 -18944600 locktype1 = 0 -18944601 locktype2 = 4 -18944601 locktype3 = 2 -18944602 goalCount = 8 -18944602 goalTotal = 28 -18944603 otherCount = 19 -~~~ -18944625 CURRENTGOAL IS [3] -~~~ -18947334 DOWN 11 -18947334 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18947369 homeCount = 53 -18947369 waitCount = 24 -18947370 ripCount = 26 -18947370 locktype1 = 0 -18947371 locktype2 = 4 -18947371 locktype3 = 2 -18947372 goalCount = 8 -18947372 goalTotal = 28 -18947373 otherCount = 19 -~~~ -18947374 CURRENTGOAL IS [3] -~~~ -18958627 UP 3 -18958627 4 255 -~~~ -~~~ -18958649 outer reward -~~~ -18958650 4 262399 -~~~ -~~~ -18958918 DOWN 3 -18958918 0 262399 -~~~ -~~~ -18958945 0 262398 -~~~ -~~~ -18958947 0 262396 -~~~ -~~~ -18958948 0 262392 -~~~ -~~~ -18958950 0 262384 -~~~ -~~~ -18958952 0 262368 -~~~ -~~~ -18958954 0 262336 -~~~ -~~~ -18958956 0 262272 -~~~ -~~~ -18958958 0 262144 -~~~ -~~~ -18958959 0 262656 -18958960 homeCount = 53 -18958961 waitCount = 24 -18958961 ripCount = 26 -18958983 locktype1 = 0 -18958983 locktype2 = 4 -18958984 locktype3 = 2 -18958984 goalCount = 9 -18958985 goalTotal = 29 -18958985 otherCount = 19 -~~~ -18958986 4 262656 -18959099 4 512 -18959236 DOWN 3 -18959236 0 512 -18959257 4 512 -18959354 DOWN 3 -18959354 0 512 -18959373 4 512 -18959476 DOWN 3 -18959476 0 512 -18959502 4 512 -18959605 DOWN 3 -18959605 0 512 -18959631 4 512 -18959734 DOWN 3 -18959734 0 512 -18959764 4 512 -18959869 DOWN 3 -18959869 0 512 -18959901 4 512 -18960009 DOWN 3 -18960009 0 512 -18960036 4 512 -18960155 DOWN 3 -18960155 0 512 -18960176 4 512 -18960303 DOWN 3 -18960303 0 512 -18960314 4 512 -18964481 DOWN 3 -18964481 0 512 -18964498 4 512 -18967799 DOWN 3 -18967799 0 512 -18967877 4 512 -18967898 DOWN 3 -18967898 0 512 - - description: Statescript log r2 - task_epochs: 4, -, Statescript3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140114078599888 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -# -#import math -#import struct -#import re -#import time -#import random -#import numpy as np -#import pyaudio -#import wave -#from statistics import mean -## V8pre_forage -## visits to incorrect wells cause 5s lockout -## exception is repeat visit to prior well (is ok, no lockout) -## can go to any outer well, any number of times -## lockout from getting rip/wait wells wrong is also 5s -# -# -## decide what type of up trigger was just recieved; act accordingly -#def pokeIn(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# doHome() -# -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# doOuter(num) -# -## decide what type of down trigger was just recieved; act accordingly -#def pokeOut(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# global lastWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# endHome() -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# endWait() -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# endOuter() -# lastWell = currWell -# -##home poke: decide trial type and upcoming wait length; turn on lights accordingly -#def doHome(): -# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout -# global homePump -# global lastWell -# global currWell -# #global waitdist -# -# if trialtype == 0: -# opts = [1, 2] -# randnum = np.random.randint(0,2) #-1 -# trialtype = opts[randnum] -# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #randnum = np.random.randint(0,8) -# delaytime = chooseDelay() -# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") -# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime -# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC -# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") -# print("SCQTMESSAGE: trigger(1);\n") # deliver reward -# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: -# lockout([2,2]) -# -#def chooseDelay(): -# global trialtype -# global RWcount -# global waitdist -# global startwaitdist -# -# print(RWcount) -# -# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short -# return startwaitdist[RWcount[trialtype-1]] -# -# else: -# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist -# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) -# -# else: -# return int(np.random.choice(waitdist,1)) -# -# -#def endHome(): -# global trialtype -# global lastWell -# global homeWell -# global waitWells -# -# if trialtype == 1 or trialtype == 2: -# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -# -#def click(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# -# #generate_click() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC -# -#def beep(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# #generate_beep() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC -# -#def endWait(): -# global trialtype -# global goalWell -# global currWell -# global outerWells -# -# if trialtype == 3: # wait complete -# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): # turn on outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") -# -# -#def doOuter(val): -# global outerPumps -# global trialtype -# global allGoal -# global thisGoal -# global goalWell -# global outerReps -# global currWell -# global lastWell -# global homeWell -# global numgoals -# global validOuterWells -# global waslock -# -# if trialtype == 3: -# trialtype = 0 # outer satisfied, head home next -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# if currWell in goalWell : # repeated; reward -# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") -# print("SCQTMESSAGE: trigger(2);\n") # deliver reward -# allGoal+=1 -# thisGoal+=1 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC -# -# if thisGoal >= outerReps: #maxed repeats reached, time to switch -# print("time to choose new goalS!") -# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats -# chooseGoal() -# else: -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection -# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection -# print(goalWell) -# -# thisGoal = 0 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# -# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) -# goalWell = [currWell] -# -# else: # wrong well; add to forage record if newly visited -# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC -# -# elif trialtype < 3 and waslock<1: -# lockout([2,2]) -# -#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal -# global goalWell -# global oldGoals -# global numgoals -# global outerWells -# global forageNum -# #global outerReps -# -# oldGoals.append(goalWell) -# print(oldGoals) -# -# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms -# forageNum = 1 -# -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# if len(oldGoals)>7: # if all outers have been goal, reset -# print("resetting oldgoals") -# oldGoals = [None] -# -# while any(i in goalWell for i in oldGoals): #if any common elements -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# print(goalWell) -# -# outerReps = np.random.randint(4,13) -# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# print("new goal is "+str(goalWell)+"\n") -# -#def endOuter(): -# global trialtype -# global outerWells -# global homeWell -# global lastWell -# global currWell -# -# if trialtype == 0 and lastWell != currWell: # outer satisfied -# for num in range(len(outerWells)): # turn off outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -#def lockout(val): # turn off all lights for certain amount of time -# global waitWells -# global outerWells -# global lastWell -# global trialtype -# global waslock -# -# locktype = int(val[1]) -# trialtype = 4 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE -# #turn off all lights -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(waitWells)): #turn off all wait and outer well lights -# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# waslock=1 -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well -# if locktype == 1: -# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well -# if locktype == 2: -# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC -# if locktype == 3: -# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors -# -# -#def lockend(): -# global trialtype -# global homeWell -# -# trialtype = 0 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well -# print("SCQTMESSAGE: trigger(3);\n") -# -#def updateWaslock(val): -# global waslock -# -# waslock = int(val[1]) -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") -# -## Function: generate click sound -#def generate_click(): -# -# File='ZippoClick_short.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -## Function: generate cowbell sound -#def generate_beep(): -# -# File='Beep.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -#def makewhitenoise(): #play white noise for duration of lockout -# global locksoundlength -# -# soundlength = int(44100*locksoundlength/1000) -# p = pyaudio.PyAudio() -# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) -# whitenoise = np.random.randint(700,size = soundlength) -# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) -# stream.write(data) -# stream.close() -# p.terminate() -# -# -## This is the custom callback function. When events occur, addScQtEvent will -## call this function. This function MUST BE NAMED 'callback'!!!! -#def callback(line): -# -# global waslock -# -# if line.find("UP") >= 0: #input triggered -# pokeIn(re.findall(r'\d+',line)) -# if line.find("DOWN") >= 0: #input triggered -# pokeOut(re.findall(r'\d+',line)) -# if line.find("BEEP1") >= 0: # make a beep and deliver reward -# beep() -# if line.find("BEEP2") >= 0: # make a beep and deliver reward -# generate_beep() -# if line.find("CLICK1") >= 0: # make a click and deliver reward -# click() -# if line.find("CLICK2") >= 0: # make a click and deliver reward -# generate_click() -# if line.find("LOCKOUT") >= 0: # lockout procedure -# lockout(re.findall(r'\d+',line)) -# if line.find("LOCKEND") >= 0: # reset trialtype to 0 -# lockend() -# if line.find("WHITENOISE") >= 0: # make noise during lockout -# makewhitenoise() -# if line.find("waslock") >= 0: #update waslock value -# updateWaslock(re.findall(r'\d+',line)) -# -# -## define wells -#homeWell = 10 -#waitWells = [11,12] -#outerWells = [1,2,3,4,5,6,7,8] -##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num -## define pumps -#homePump = 25 -#waitPumps = [26, 27] -#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] -# -##global variables -#lastWell = -1 -#currWell = -1 -#trialtype = 0 -#outerReps = 10 -##outerReps = np.random.randint(4,13) #10 -#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# -#allGoal = 0 -#thisGoal = 0 -#numgoals = 1 # number of outer arms rewarded -#forageNum = 1 -#if numgoals == 1: -# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells -#else: -# goalWell = np.random.choice(outerWells,numgoals,replace=False) -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) -# -#oldGoals = [] #initialize with any wells to exclude from being goal -##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] -#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] -# -#startwaitdist = [1000, 1500, 2000] -# -#locksoundlength = 1000 -#print(goalWell) -#waslock=0 -#RWcount = [0,0 -# -24056604 UP 10 -24056604 waslock = 0 -24056604 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24056628 512 16777728 -~~~ -24056778 512 512 -24056821 DOWN 10 -24056821 0 512 -~~~ -~~~ -24056843 0 1536 -~~~ -~~~ -24056845 0 1024 -24056846 homeCount = 1 -24056846 waitCount = 0 -24056847 ripCount = 0 -24056847 locktype1 = 0 -24056848 locktype2 = 0 -24056848 locktype3 = 0 -24056849 goalCount = 0 -24056849 goalTotal = 0 -24056850 otherCount = 0 -~~~ -24057124 UP 10 -24057124 waslock = 0 -24057124 512 1024 -24057128 DOWN 10 -24057128 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057147 homeCount = 1 -24057147 waitCount = 0 -24057148 ripCount = 0 -24057148 locktype1 = 0 -24057149 locktype2 = 0 -24057149 locktype3 = 0 -24057150 goalCount = 0 -24057150 goalTotal = 0 -24057151 otherCount = 0 -~~~ -24057247 UP 10 -24057247 waslock = 0 -24057247 512 1024 -24057257 DOWN 10 -24057256 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057278 homeCount = 1 -24057279 waitCount = 0 -24057280 ripCount = 0 -24057280 locktype1 = 0 -24057281 locktype2 = 0 -24057281 locktype3 = 0 -24057281 goalCount = 0 -24057282 goalTotal = 0 -24057282 otherCount = 0 -~~~ -24057380 UP 10 -24057380 waslock = 0 -24057379 512 1024 -24057390 DOWN 10 -24057390 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057406 homeCount = 1 -24057407 waitCount = 0 -24057407 ripCount = 0 -24057408 locktype1 = 0 -24057408 locktype2 = 0 -24057409 locktype3 = 0 -24057409 goalCount = 0 -24057410 goalTotal = 0 -24057410 otherCount = 0 -~~~ -24057508 UP 10 -24057508 waslock = 0 -24057508 512 1024 -24057525 DOWN 10 -24057525 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057549 homeCount = 1 -24057549 waitCount = 0 -24057550 ripCount = 0 -24057550 locktype1 = 0 -24057551 locktype2 = 0 -24057551 locktype3 = 0 -24057552 goalCount = 0 -24057552 goalTotal = 0 -24057553 otherCount = 0 -~~~ -24057634 UP 10 -24057634 waslock = 0 -24057634 512 1024 -~~~ -24057659 DOWN 10 -24057659 0 1024 -~~~ -~~~ -~~~ -~~~ -24057678 homeCount = 1 -24057679 waitCount = 0 -24057679 ripCount = 0 -24057680 locktype1 = 0 -24057680 locktype2 = 0 -24057681 locktype3 = 0 -24057681 goalCount = 0 -24057682 goalTotal = 0 -24057682 otherCount = 0 -~~~ -24057752 UP 10 -24057752 waslock = 0 -24057752 512 1024 -~~~ -24057792 DOWN 10 -24057792 0 1024 -~~~ -~~~ -~~~ -~~~ -24057817 homeCount = 1 -24057818 waitCount = 0 -24057818 ripCount = 0 -24057819 locktype1 = 0 -24057819 locktype2 = 0 -24057820 locktype3 = 0 -24057820 goalCount = 0 -24057821 goalTotal = 0 -24057821 otherCount = 0 -~~~ -24057884 UP 10 -24057884 waslock = 0 -24057884 512 1024 -~~~ -24057931 DOWN 10 -24057931 0 1024 -~~~ -~~~ -~~~ -~~~ -24057955 homeCount = 1 -24057956 waitCount = 0 -24057956 ripCount = 0 -24057957 locktype1 = 0 -24057957 locktype2 = 0 -24057958 locktype3 = 0 -24057958 goalCount = 0 -24057959 goalTotal = 0 -24057959 otherCount = 0 -~~~ -24058025 UP 10 -24058025 waslock = 0 -24058025 512 1024 -~~~ -24058092 DOWN 10 -24058092 0 1024 -~~~ -~~~ -~~~ -~~~ -24058115 homeCount = 1 -24058115 waitCount = 0 -24058116 ripCount = 0 -24058116 locktype1 = 0 -24058117 locktype2 = 0 -24058117 locktype3 = 0 -24058118 goalCount = 0 -24058118 goalTotal = 0 -24058119 otherCount = 0 -~~~ -24058171 UP 10 -24058172 waslock = 0 -24058171 512 1024 -~~~ -24058243 DOWN 10 -24058243 0 1024 -24058250 UP 10 -24058251 waslock = 0 -24058250 512 1024 -24058271 DOWN 10 -24058271 0 1024 -~~~ -~~~ -~~~ -~~~ -24058277 homeCount = 1 -24058278 waitCount = 0 -24058278 ripCount = 0 -24058279 locktype1 = 0 -24058279 locktype2 = 0 -24058280 locktype3 = 0 -24058280 goalCount = 0 -24058281 goalTotal = 0 -24058281 otherCount = 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24058307 homeCount = 1 -24058307 waitCount = 0 -24058308 ripCount = 0 -24058308 locktype1 = 0 -24058309 locktype2 = 0 -24058309 locktype3 = 0 -24058310 goalCount = 0 -24058310 goalTotal = 0 -24058311 otherCount = 0 -~~~ -24058325 UP 10 -24058325 waslock = 0 -24058325 512 1024 -~~~ -24058429 DOWN 10 -24058429 0 1024 -24058443 UP 10 -24058443 waslock = 0 -24058443 512 1024 -~~~ -~~~ -~~~ -~~~ -24058462 homeCount = 1 -24058463 waitCount = 0 -24058463 ripCount = 0 -24058464 locktype1 = 0 -24058464 locktype2 = 0 -24058465 locktype3 = 0 -24058465 goalCount = 0 -24058466 goalTotal = 0 -24058466 otherCount = 0 -~~~ -~~~ -24058585 DOWN 10 -24058585 0 1024 -24058597 UP 10 -24058597 waslock = 0 -24058597 512 1024 -~~~ -~~~ -~~~ -~~~ -24058624 homeCount = 1 -24058625 waitCount = 0 -24058625 ripCount = 0 -24058626 locktype1 = 0 -24058626 locktype2 = 0 -24058627 locktype3 = 0 -24058627 goalCount = 0 -24058628 goalTotal = 0 -24058628 otherCount = 0 -~~~ -~~~ -24058732 DOWN 10 -24058732 0 1024 -24058752 UP 10 -24058752 waslock = 0 -24058752 512 1024 -~~~ -~~~ -~~~ -~~~ -24058759 homeCount = 1 -24058759 waitCount = 0 -24058760 ripCount = 0 -24058760 locktype1 = 0 -24058761 locktype2 = 0 -24058761 locktype3 = 0 -24058762 goalCount = 0 -24058762 goalTotal = 0 -24058763 otherCount = 0 -~~~ -~~~ -24059043 DOWN 10 -24059043 0 1024 -~~~ -24059062 UP 10 -24059063 waslock = 0 -24059062 512 1024 -~~~ -~~~ -~~~ -24059066 homeCount = 1 -24059067 waitCount = 0 -24059067 ripCount = 0 -24059068 locktype1 = 0 -24059068 locktype2 = 0 -24059069 locktype3 = 0 -24059069 goalCount = 0 -24059070 goalTotal = 0 -24059070 otherCount = 0 -~~~ -~~~ -24059196 DOWN 10 -24059196 0 1024 -~~~ -~~~ -~~~ -~~~ -24059218 homeCount = 1 -24059218 waitCount = 0 -24059219 ripCount = 0 -24059219 locktype1 = 0 -24059220 locktype2 = 0 -24059220 locktype3 = 0 -24059221 goalCount = 0 -24059221 goalTotal = 0 -24059222 otherCount = 0 -~~~ -24059223 UP 10 -24059223 waslock = 0 -24059223 512 1024 -~~~ -24059360 DOWN 10 -24059360 0 1024 -24059385 UP 10 -24059385 waslock = 0 -24059385 512 1024 -~~~ -~~~ -~~~ -~~~ -24059399 homeCount = 1 -24059399 waitCount = 0 -24059400 ripCount = 0 -24059400 locktype1 = 0 -24059401 locktype2 = 0 -24059401 locktype3 = 0 -24059402 goalCount = 0 -24059402 goalTotal = 0 -24059403 otherCount = 0 -~~~ -~~~ -24059519 DOWN 10 -24059519 0 1024 -~~~ -~~~ -~~~ -~~~ -24059539 homeCount = 1 -24059539 waitCount = 0 -24059540 ripCount = 0 -24059540 locktype1 = 0 -24059541 locktype2 = 0 -24059541 locktype3 = 0 -24059542 goalCount = 0 -24059542 goalTotal = 0 -24059543 otherCount = 0 -~~~ -24059548 UP 10 -24059548 waslock = 0 -24059547 512 1024 -~~~ -24059681 DOWN 10 -24059681 0 1024 -~~~ -~~~ -~~~ -~~~ -24059713 homeCount = 1 -24059713 waitCount = 0 -24059714 ripCount = 0 -24059714 locktype1 = 0 -24059715 locktype2 = 0 -24059715 locktype3 = 0 -24059716 goalCount = 0 -24059716 goalTotal = 0 -24059717 otherCount = 0 -~~~ -24059717 UP 10 -24059718 waslock = 0 -24059717 512 1024 -~~~ -24059856 DOWN 10 -24059856 0 1024 -~~~ -~~~ -~~~ -~~~ -24059881 homeCount = 1 -24059882 waitCount = 0 -24059882 ripCount = 0 -24059883 locktype1 = 0 -24059883 locktype2 = 0 -24059884 locktype3 = 0 -24059884 goalCount = 0 -24059885 goalTotal = 0 -24059885 otherCount = 0 -~~~ -24059888 UP 10 -24059889 waslock = 0 -24059888 512 1024 -~~~ -24060002 DOWN 10 -24060002 0 1024 -~~~ -~~~ -~~~ -~~~ -24060036 homeCount = 1 -24060037 waitCount = 0 -24060037 ripCount = 0 -24060038 locktype1 = 0 -24060038 locktype2 = 0 -24060039 locktype3 = 0 -24060039 goalCount = 0 -24060040 goalTotal = 0 -24060040 otherCount = 0 -~~~ -24060057 UP 10 -24060058 waslock = 0 -24060057 512 1024 -~~~ -24060155 DOWN 10 -24060155 0 1024 -~~~ -~~~ -~~~ -~~~ -24060183 homeCount = 1 -24060184 waitCount = 0 -24060184 ripCount = 0 -24060185 locktype1 = 0 -24060185 locktype2 = 0 -24060186 locktype3 = 0 -24060186 goalCount = 0 -24060187 goalTotal = 0 -24060187 otherCount = 0 -~~~ -24060218 UP 10 -24060219 waslock = 0 -24060218 512 1024 -~~~ -24060311 DOWN 10 -24060311 0 1024 -~~~ -~~~ -~~~ -~~~ -24060333 homeCount = 1 -24060333 waitCount = 0 -24060334 ripCount = 0 -24060334 locktype1 = 0 -24060335 locktype2 = 0 -24060335 locktype3 = 0 -24060336 goalCount = 0 -24060336 goalTotal = 0 -24060337 otherCount = 0 -~~~ -24060384 UP 10 -24060384 waslock = 0 -24060383 512 1024 -~~~ -24060470 DOWN 10 -24060470 0 1024 -~~~ -~~~ -~~~ -~~~ -24060494 homeCount = 1 -24060494 waitCount = 0 -24060495 ripCount = 0 -24060495 locktype1 = 0 -24060496 locktype2 = 0 -24060496 locktype3 = 0 -24060497 goalCount = 0 -24060497 goalTotal = 0 -24060498 otherCount = 0 -~~~ -24060541 UP 10 -24060542 waslock = 0 -24060541 512 1024 -~~~ -24060656 DOWN 10 -24060656 0 1024 -~~~ -~~~ -~~~ -~~~ -24060683 homeCount = 1 -24060683 waitCount = 0 -24060684 ripCount = 0 -24060684 locktype1 = 0 -24060685 locktype2 = 0 -24060685 locktype3 = 0 -24060686 goalCount = 0 -24060686 goalTotal = 0 -24060687 otherCount = 0 -~~~ -24060718 UP 10 -24060718 waslock = 0 -24060718 512 1024 -~~~ -24060821 DOWN 10 -24060821 0 1024 -~~~ -~~~ -~~~ -~~~ -24060844 homeCount = 1 -24060844 waitCount = 0 -24060845 ripCount = 0 -24060845 locktype1 = 0 -24060846 locktype2 = 0 -24060846 locktype3 = 0 -24060847 goalCount = 0 -24060847 goalTotal = 0 -24060848 otherCount = 0 -~~~ -24060875 UP 10 -24060875 waslock = 0 -24060875 512 1024 -~~~ -24061011 DOWN 10 -24061011 0 1024 -~~~ -~~~ -~~~ -~~~ -24061035 homeCount = 1 -24061035 waitCount = 0 -24061036 ripCount = 0 -24061036 locktype1 = 0 -24061037 locktype2 = 0 -24061037 locktype3 = 0 -24061038 goalCount = 0 -24061038 goalTotal = 0 -24061039 otherCount = 0 -~~~ -24061064 UP 10 -24061065 waslock = 0 -24061064 512 1024 -~~~ -24061209 DOWN 10 -24061209 0 1024 -24061222 UP 10 -24061223 waslock = 0 -24061222 512 1024 -~~~ -~~~ -~~~ -~~~ -24061246 homeCount = 1 -24061247 waitCount = 0 -24061247 ripCount = 0 -24061248 locktype1 = 0 -24061248 locktype2 = 0 -24061249 locktype3 = 0 -24061249 goalCount = 0 -24061250 goalTotal = 0 -24061250 otherCount = 0 -~~~ -~~~ -24061545 DOWN 10 -24061545 0 1024 -24061560 UP 10 -24061560 waslock = 0 -24061560 512 1024 -~~~ -~~~ -~~~ -~~~ -24061597 homeCount = 1 -24061598 waitCount = 0 -24061598 ripCount = 0 -24061599 locktype1 = 0 -24061599 locktype2 = 0 -24061600 locktype3 = 0 -24061600 goalCount = 0 -24061601 goalTotal = 0 -24061601 otherCount = 0 -~~~ -~~~ -24063988 DOWN 10 -24063988 0 1024 -24064005 UP 10 -24064006 waslock = 0 -24064005 512 1024 -~~~ -~~~ -~~~ -~~~ -24064014 homeCount = 1 -24064014 waitCount = 0 -24064015 ripCount = 0 -24064015 locktype1 = 0 -24064016 locktype2 = 0 -24064016 locktype3 = 0 -24064017 goalCount = 0 -24064017 goalTotal = 0 -24064018 otherCount = 0 -~~~ -~~~ -24064723 DOWN 10 -24064723 0 1024 -~~~ -~~~ -24064751 UP 10 -24064751 waslock = 0 -24064751 512 1024 -~~~ -~~~ -24064754 homeCount = 1 -24064754 waitCount = 0 -24064755 ripCount = 0 -24064755 locktype1 = 0 -24064756 locktype2 = 0 -24064756 locktype3 = 0 -24064757 goalCount = 0 -24064757 goalTotal = 0 -24064778 otherCount = 0 -~~~ -~~~ -24065124 DOWN 10 -24065124 0 1024 -24065130 UP 10 -24065130 waslock = 0 -24065130 512 1024 -~~~ -~~~ -~~~ -~~~ -24065153 homeCount = 1 -24065153 waitCount = 0 -24065154 ripCount = 0 -24065154 locktype1 = 0 -24065155 locktype2 = 0 -24065155 locktype3 = 0 -24065156 goalCount = 0 -24065156 goalTotal = 0 -24065157 otherCount = 0 -~~~ -~~~ -24065460 DOWN 10 -24065460 0 1024 -~~~ -~~~ -~~~ -~~~ -24065484 homeCount = 1 -24065484 waitCount = 0 -24065485 ripCount = 0 -24065485 locktype1 = 0 -24065486 locktype2 = 0 -24065486 locktype3 = 0 -24065487 goalCount = 0 -24065487 goalTotal = 0 -24065488 otherCount = 0 -~~~ -24065532 UP 10 -24065532 waslock = 0 -24065531 512 1024 -~~~ -24065573 DOWN 10 -24065573 0 1024 -~~~ -~~~ -~~~ -~~~ -24065598 homeCount = 1 -24065598 waitCount = 0 -24065599 ripCount = 0 -24065599 locktype1 = 0 -24065600 locktype2 = 0 -24065600 locktype3 = 0 -24065601 goalCount = 0 -24065601 goalTotal = 0 -24065602 otherCount = 0 -~~~ -24065685 UP 10 -24065685 waslock = 0 -24065685 512 1024 -24065713 DOWN 10 -24065713 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24065736 homeCount = 1 -24065737 waitCount = 0 -24065737 ripCount = 0 -24065738 locktype1 = 0 -24065738 locktype2 = 0 -24065739 locktype3 = 0 -24065739 goalCount = 0 -24065740 goalTotal = 0 -24065740 otherCount = 0 -~~~ -24067490 UP 12 -24067490 LOCKOUT 1 -24067490 2048 1024 -~~~ -24067512 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -24067516 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24067665 DOWN 12 -24067665 0 0 -24067738 UP 12 -24067738 2048 0 -24067825 DOWN 12 -24067825 0 0 -24067873 UP 12 -24067873 2048 0 -24067961 DOWN 12 -24067961 0 0 -24068038 UP 12 -24068038 2048 0 -24068088 DOWN 12 -24068088 0 0 -24068334 UP 12 -24068334 2048 0 -24068564 DOWN 12 -24068564 0 0 -24068910 UP 12 -24068910 2048 0 -24068985 DOWN 12 -24068985 0 0 -24069745 UP 12 -24069745 2048 0 -24069769 DOWN 12 -24069769 0 0 -24070207 UP 12 -24070207 2048 0 -24070211 DOWN 12 -24070211 0 0 -24070465 UP 12 -24070465 2048 0 -24070485 DOWN 12 -24070485 0 0 -24070493 UP 12 -24070493 2048 0 -24070500 DOWN 12 -24070500 0 0 -24070608 UP 12 -24070608 2048 0 -24070632 DOWN 12 -24070632 0 0 -24070641 UP 12 -24070641 2048 0 -24070650 DOWN 12 -24070650 0 0 -24070709 UP 12 -24070709 2048 0 -24070737 DOWN 12 -24070737 0 0 -24070752 UP 12 -24070752 2048 0 -24070796 DOWN 12 -24070796 0 0 -24070859 UP 12 -24070859 2048 0 -24070876 DOWN 12 -24070876 0 0 -24070898 UP 12 -24070898 2048 0 -24070949 DOWN 12 -24070949 0 0 -24071006 UP 12 -24071006 2048 0 -24071024 DOWN 12 -24071024 0 0 -24071048 UP 12 -24071048 2048 0 -24071100 DOWN 12 -24071100 0 0 -24071199 UP 12 -24071199 2048 0 -24071254 DOWN 12 -24071254 0 0 -24071325 UP 12 -24071325 2048 0 -24071406 DOWN 12 -24071406 0 0 -24071413 UP 12 -24071413 2048 0 -24071565 DOWN 12 -24071565 0 0 -24071569 UP 12 -24071569 2048 0 -24072422 DOWN 12 -24072422 0 0 -24072431 UP 12 -24072430 2048 0 -24072582 DOWN 12 -24072582 0 0 -24072603 UP 12 -24072603 2048 0 -24072753 DOWN 12 -24072753 0 0 -24072770 UP 12 -24072770 2048 0 -24072935 DOWN 12 -24072935 0 0 -24072956 UP 12 -24072956 2048 0 -24073295 DOWN 12 -24073295 0 0 -24073309 UP 12 -24073309 2048 0 -24073471 DOWN 12 -24073471 0 0 -24073494 UP 12 -24073494 2048 0 -24073657 DOWN 12 -24073657 0 0 -24073677 UP 12 -24073677 2048 0 -24073837 DOWN 12 -24073837 0 0 -24073859 UP 12 -24073859 2048 0 -24076260 DOWN 12 -24076260 0 0 -24076298 UP 12 -24076298 2048 0 -24076357 DOWN 12 -24076357 0 0 -24078484 UP 11 -24078484 1024 0 -24078510 DOWN 11 -24078510 0 0 -24078583 UP 11 -24078583 1024 0 -24078838 DOWN 11 -24078838 0 0 -24078872 UP 11 -24078872 1024 0 -24078960 DOWN 11 -24078960 0 0 -24081253 UP 11 -24081253 1024 0 -24081256 DOWN 11 -24081256 0 0 -24081403 UP 11 -24081403 1024 0 -24081408 DOWN 11 -24081408 0 0 -24081555 UP 11 -24081555 1024 0 -24081559 DOWN 11 -24081559 0 0 -24081780 UP 11 -24081780 1024 0 -24081797 DOWN 11 -24081797 0 0 -24081990 UP 11 -24081990 1024 0 -24081998 DOWN 11 -24081998 0 0 -24082137 UP 11 -24082137 1024 0 -24082165 DOWN 11 -24082165 0 0 -24082275 UP 11 -24082275 1024 0 -24082334 DOWN 11 -24082334 0 0 -24082411 UP 11 -24082411 1024 0 -24082495 DOWN 11 -24082495 0 0 -24082530 UP 11 -24082530 1024 0 -24082553 DOWN 11 -24082553 0 0 -24082562 UP 11 -24082562 1024 0 -24082667 DOWN 11 -24082667 0 0 -24082693 UP 11 -24082693 1024 0 -24082844 DOWN 11 -24082844 0 0 -24082860 UP 11 -24082860 1024 0 -24083018 DOWN 11 -24083018 0 0 -24083043 UP 11 -24083043 1024 0 -24083092 DOWN 11 -24083092 0 0 -24083101 UP 11 -24083101 1024 0 -24083201 DOWN 11 -24083201 0 0 -24083211 UP 11 -24083211 1024 0 -24083378 DOWN 11 -24083378 0 0 -24083382 UP 11 -24083382 1024 0 -24083552 DOWN 11 -24083552 0 0 -24083557 UP 11 -24083557 1024 0 -24083729 DOWN 11 -24083729 0 0 -24083743 UP 11 -24083743 1024 0 -24083912 DOWN 11 -24083912 0 0 -24083936 UP 11 -24083936 1024 0 -24084098 DOWN 11 -24084098 0 0 -24084109 UP 11 -24084108 1024 0 -24086825 DOWN 11 -24086825 0 0 -24086849 UP 11 -24086849 1024 0 -24086884 DOWN 11 -24086884 0 0 -24086917 UP 11 -24086917 1024 0 -24086937 DOWN 11 -24086937 0 0 -24086949 UP 11 -24086949 1024 0 -24087030 DOWN 11 -24087030 0 0 -24087064 UP 11 -24087064 1024 0 -24087088 DOWN 11 -24087088 0 0 -24087108 UP 11 -24087108 1024 0 -24087213 DOWN 11 -24087213 0 0 -24087245 UP 11 -24087245 1024 0 -24087271 DOWN 11 -24087271 0 0 -24087277 UP 11 -24087277 1024 0 -24087389 DOWN 11 -24087389 0 0 -24087403 UP 11 -24087403 1024 0 -24087574 DOWN 11 -24087574 0 0 -24087584 UP 11 -24087584 1024 0 -24088308 DOWN 11 -24088308 0 0 -24088330 UP 11 -24088330 1024 0 -24088411 DOWN 11 -24088411 0 0 -24088480 UP 11 -24088480 1024 0 -24088557 DOWN 11 -24088557 0 0 -24088788 UP 11 -24088788 1024 0 -24089081 DOWN 11 -24089081 0 0 -24092512 LOCKEND -~~~ -~~~ -~~~ -24092533 0 512 -24094091 UP 7 -24094091 64 512 -24094400 DOWN 7 -24094399 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24094430 64 512 -~~~ -~~~ -~~~ -24094434 homeCount = 1 -24094434 waitCount = 0 -24094435 ripCount = 0 -24094435 locktype1 = 1 -24094436 locktype2 = 0 -24094436 locktype3 = 0 -24094437 goalCount = 0 -24094437 goalTotal = 0 -24094438 otherCount = 0 -~~~ -24095843 DOWN 7 -24095843 0 512 -24100125 UP 10 -24100125 waslock = 0 -24100125 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24100155 512 16777728 -~~~ -24100304 512 512 -24100517 DOWN 10 -24100517 0 512 -~~~ -~~~ -24100541 0 2560 -~~~ -~~~ -24100543 0 2048 -24100544 homeCount = 2 -24100545 waitCount = 0 -24100545 ripCount = 0 -24100546 locktype1 = 1 -24100546 locktype2 = 0 -24100547 locktype3 = 0 -24100547 goalCount = 0 -24100548 goalTotal = 0 -24100548 otherCount = 0 -~~~ -24100569 UP 10 -24100570 waslock = 0 -24100569 512 2048 -~~~ -24100616 DOWN 10 -24100616 0 2048 -~~~ -~~~ -~~~ -~~~ -24100646 homeCount = 2 -24100646 waitCount = 0 -24100647 ripCount = 0 -24100647 locktype1 = 1 -24100648 locktype2 = 0 -24100648 locktype3 = 0 -24100649 goalCount = 0 -24100649 goalTotal = 0 -24100650 otherCount = 0 -~~~ -24100783 UP 10 -24100783 waslock = 0 -24100783 512 2048 -~~~ -24100815 DOWN 10 -24100815 0 2048 -~~~ -~~~ -~~~ -~~~ -24100843 homeCount = 2 -24100843 waitCount = 0 -24100844 ripCount = 0 -24100844 locktype1 = 1 -24100845 locktype2 = 0 -24100845 locktype3 = 0 -24100846 goalCount = 0 -24100846 goalTotal = 0 -24100847 otherCount = 0 -~~~ -24100909 UP 10 -24100909 waslock = 0 -24100909 512 2048 -~~~ -24100989 DOWN 10 -24100989 0 2048 -~~~ -~~~ -~~~ -~~~ -24101013 homeCount = 2 -24101013 waitCount = 0 -24101014 ripCount = 0 -24101014 locktype1 = 1 -24101015 locktype2 = 0 -24101015 locktype3 = 0 -24101016 goalCount = 0 -24101016 goalTotal = 0 -24101017 otherCount = 0 -~~~ -24101018 UP 10 -24101018 waslock = 0 -24101018 512 2048 -~~~ -24101542 DOWN 10 -24101542 0 2048 -24101568 UP 10 -24101569 waslock = 0 -24101568 512 2048 -~~~ -~~~ -~~~ -~~~ -24101575 homeCount = 2 -24101575 waitCount = 0 -24101576 ripCount = 0 -24101576 locktype1 = 1 -24101577 locktype2 = 0 -24101577 locktype3 = 0 -24101578 goalCount = 0 -24101578 goalTotal = 0 -24101579 otherCount = 0 -~~~ -~~~ -24101712 DOWN 10 -24101712 0 2048 -~~~ -24101739 UP 10 -24101739 waslock = 0 -24101739 512 2048 -~~~ -~~~ -~~~ -24101742 homeCount = 2 -24101743 waitCount = 0 -24101743 ripCount = 0 -24101744 locktype1 = 1 -24101744 locktype2 = 0 -24101745 locktype3 = 0 -24101745 goalCount = 0 -24101746 goalTotal = 0 -24101746 otherCount = 0 -~~~ -~~~ -24101900 DOWN 10 -24101900 0 2048 -24101911 UP 10 -24101911 waslock = 0 -24101911 512 2048 -~~~ -~~~ -~~~ -~~~ -24101935 homeCount = 2 -24101935 waitCount = 0 -24101936 ripCount = 0 -24101936 locktype1 = 1 -24101937 locktype2 = 0 -24101937 locktype3 = 0 -24101938 goalCount = 0 -24101938 goalTotal = 0 -24101939 otherCount = 0 -~~~ -~~~ -24102072 DOWN 10 -24102071 0 2048 -24102086 UP 10 -24102086 waslock = 0 -24102086 512 2048 -~~~ -~~~ -~~~ -~~~ -24102094 homeCount = 2 -24102095 waitCount = 0 -24102095 ripCount = 0 -24102096 locktype1 = 1 -24102096 locktype2 = 0 -24102097 locktype3 = 0 -24102097 goalCount = 0 -24102098 goalTotal = 0 -24102098 otherCount = 0 -~~~ -~~~ -24103807 DOWN 10 -24103807 0 2048 -24103823 UP 10 -24103823 waslock = 0 -24103823 512 2048 -~~~ -~~~ -~~~ -~~~ -24103831 homeCount = 2 -24103831 waitCount = 0 -24103832 ripCount = 0 -24103832 locktype1 = 1 -24103833 locktype2 = 0 -24103833 locktype3 = 0 -24103834 goalCount = 0 -24103834 goalTotal = 0 -24103835 otherCount = 0 -~~~ -~~~ -24103981 DOWN 10 -24103981 0 2048 -~~~ -~~~ -~~~ -~~~ -24104009 homeCount = 2 -24104010 waitCount = 0 -24104010 ripCount = 0 -24104011 locktype1 = 1 -24104011 locktype2 = 0 -24104012 locktype3 = 0 -24104012 goalCount = 0 -24104013 goalTotal = 0 -24104013 otherCount = 0 -~~~ -24104014 UP 10 -24104014 waslock = 0 -24104014 512 2048 -~~~ -24104173 DOWN 10 -24104173 0 2048 -~~~ -~~~ -~~~ -~~~ -24104198 homeCount = 2 -24104199 waitCount = 0 -24104199 ripCount = 0 -24104200 locktype1 = 1 -24104200 locktype2 = 0 -24104201 locktype3 = 0 -24104201 goalCount = 0 -24104202 goalTotal = 0 -24104202 otherCount = 0 -~~~ -24116229 UP 12 -24116229 2048 2048 -24116292 DOWN 12 -24116292 0 2048 -24116492 LOCKOUT 3 -~~~ -24116519 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24116525 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24116631 UP 12 -24116631 2048 0 -24116733 DOWN 12 -24116732 0 0 -24116782 UP 12 -24116782 2048 0 -24116880 DOWN 12 -24116880 0 0 -24116947 UP 12 -24116947 2048 0 -24117083 DOWN 12 -24117083 0 0 -24117145 UP 12 -24117145 2048 0 -24117245 DOWN 12 -24117245 0 0 -24120977 UP 3 -24120976 4 0 -24121186 DOWN 3 -24121186 0 0 -24121258 4 0 -24121715 DOWN 3 -24121715 0 0 -24121728 4 0 -24121872 DOWN 3 -24121872 0 0 -24121886 4 0 -24122597 DOWN 3 -24122597 0 0 -24122606 4 0 -24123130 DOWN 3 -24123130 0 0 -24123149 4 0 -24124151 DOWN 3 -24124151 0 0 -24124156 4 0 -24124181 DOWN 3 -24124181 0 0 -24133999 512 0 -24134020 0 0 -24134058 512 0 -24134337 0 0 -24134372 512 0 -24134413 0 0 -24134490 512 0 -24134977 0 0 -24134997 512 0 -24135340 0 0 -24135350 512 0 -24135514 0 0 -24135570 512 0 -24135615 0 0 -24139773 UP 8 -24139773 128 0 -24139806 DOWN 8 -24139806 0 0 -24139876 128 0 -24140057 DOWN 8 -24140057 0 0 -24140110 128 0 -24140388 DOWN 8 -24140388 0 0 -24140409 128 0 -24140533 DOWN 8 -24140533 0 0 -24140560 128 0 -24140693 DOWN 8 -24140693 0 0 -24140720 128 0 -24140869 DOWN 8 -24140869 0 0 -24140886 128 0 -24141045 DOWN 8 -24141045 0 0 -24141064 128 0 -24141211 DOWN 8 -24141211 0 0 -24141242 128 0 -24141397 DOWN 8 -24141397 0 0 -24141423 128 0 -24141519 LOCKEND -~~~ -~~~ -~~~ -24141542 128 512 -24141565 DOWN 8 -24141565 0 512 -24141596 128 512 -24141750 DOWN 8 -24141750 0 512 -24141766 128 512 -24142090 DOWN 8 -24142090 0 512 -24142106 128 512 -24143455 DOWN 8 -24143455 0 512 -24149708 UP 10 -24149708 waslock = 0 -24149708 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24149735 512 16777728 -~~~ -24149823 DOWN 10 -24149823 0 16777728 -24149841 UP 10 -24149842 waslock = 0 -24149841 512 16777728 -~~~ -~~~ -24149848 512 16779776 -~~~ -~~~ -24149850 512 16779264 -24149851 homeCount = 3 -24149852 waitCount = 0 -24149852 ripCount = 0 -24149853 locktype1 = 1 -24149853 locktype2 = 0 -24149854 locktype3 = 1 -24149854 goalCount = 0 -24149855 goalTotal = 0 -24149855 otherCount = 0 -~~~ -~~~ -24149885 512 2048 -24150195 DOWN 10 -24150195 0 2048 -~~~ -~~~ -~~~ -~~~ -24150224 homeCount = 3 -24150224 waitCount = 0 -24150225 ripCount = 0 -24150225 locktype1 = 1 -24150226 locktype2 = 0 -24150226 locktype3 = 1 -24150227 goalCount = 0 -24150227 goalTotal = 0 -24150228 otherCount = 0 -~~~ -24150237 UP 10 -24150237 waslock = 0 -24150236 512 2048 -~~~ -24150377 DOWN 10 -24150377 0 2048 -~~~ -~~~ -~~~ -~~~ -24150405 homeCount = 3 -24150405 waitCount = 0 -24150406 ripCount = 0 -24150406 locktype1 = 1 -24150407 locktype2 = 0 -24150407 locktype3 = 1 -24150408 goalCount = 0 -24150408 goalTotal = 0 -24150409 otherCount = 0 -~~~ -24150410 UP 10 -24150410 waslock = 0 -24150410 512 2048 -~~~ -24150548 DOWN 10 -24150547 0 2048 -~~~ -~~~ -~~~ -~~~ -24150574 homeCount = 3 -24150574 waitCount = 0 -24150575 ripCount = 0 -24150575 locktype1 = 1 -24150576 locktype2 = 0 -24150576 locktype3 = 1 -24150577 goalCount = 0 -24150577 goalTotal = 0 -24150578 otherCount = 0 -~~~ -24150582 UP 10 -24150582 waslock = 0 -24150582 512 2048 -~~~ -24150712 DOWN 10 -24150712 0 2048 -~~~ -~~~ -~~~ -~~~ -24150732 homeCount = 3 -24150732 waitCount = 0 -24150733 ripCount = 0 -24150733 locktype1 = 1 -24150734 locktype2 = 0 -24150734 locktype3 = 1 -24150735 goalCount = 0 -24150735 goalTotal = 0 -24150736 otherCount = 0 -~~~ -24150746 UP 10 -24150747 waslock = 0 -24150746 512 2048 -~~~ -24150885 DOWN 10 -24150885 0 2048 -~~~ -~~~ -~~~ -~~~ -24150911 homeCount = 3 -24150912 waitCount = 0 -24150912 ripCount = 0 -24150913 locktype1 = 1 -24150913 locktype2 = 0 -24150914 locktype3 = 1 -24150914 goalCount = 0 -24150915 goalTotal = 0 -24150915 otherCount = 0 -~~~ -24150922 UP 10 -24150922 waslock = 0 -24150922 512 2048 -~~~ -24151063 DOWN 10 -24151063 0 2048 -~~~ -~~~ -~~~ -~~~ -24151091 homeCount = 3 -24151092 waitCount = 0 -24151092 ripCount = 0 -24151093 locktype1 = 1 -24151093 locktype2 = 0 -24151094 locktype3 = 1 -24151094 goalCount = 0 -24151095 goalTotal = 0 -24151095 otherCount = 0 -~~~ -24151096 UP 10 -24151096 waslock = 0 -24151096 512 2048 -~~~ -24151239 DOWN 10 -24151239 0 2048 -~~~ -~~~ -~~~ -~~~ -24151264 homeCount = 3 -24151264 waitCount = 0 -24151265 ripCount = 0 -24151265 locktype1 = 1 -24151266 locktype2 = 0 -24151266 locktype3 = 1 -24151267 goalCount = 0 -24151267 goalTotal = 0 -24151268 otherCount = 0 -~~~ -24151272 UP 10 -24151273 waslock = 0 -24151272 512 2048 -~~~ -24151430 DOWN 10 -24151430 0 2048 -~~~ -~~~ -~~~ -~~~ -24151453 homeCount = 3 -24151454 waitCount = 0 -24151454 ripCount = 0 -24151455 locktype1 = 1 -24151455 locktype2 = 0 -24151456 locktype3 = 1 -24151456 goalCount = 0 -24151457 goalTotal = 0 -24151457 otherCount = 0 -~~~ -24151458 UP 10 -24151458 waslock = 0 -24151458 512 2048 -~~~ -24151611 DOWN 10 -24151610 0 2048 -~~~ -~~~ -~~~ -~~~ -24151634 homeCount = 3 -24151635 waitCount = 0 -24151635 ripCount = 0 -24151636 locktype1 = 1 -24151636 locktype2 = 0 -24151637 locktype3 = 1 -24151637 goalCount = 0 -24151638 goalTotal = 0 -24151638 otherCount = 0 -~~~ -24151641 UP 10 -24151642 waslock = 0 -24151641 512 2048 -~~~ -24151782 DOWN 10 -24151782 0 2048 -~~~ -~~~ -~~~ -~~~ -24151805 homeCount = 3 -24151805 waitCount = 0 -24151806 ripCount = 0 -24151806 locktype1 = 1 -24151807 locktype2 = 0 -24151807 locktype3 = 1 -24151808 goalCount = 0 -24151808 goalTotal = 0 -24151809 otherCount = 0 -~~~ -24151823 UP 10 -24151824 waslock = 0 -24151823 512 2048 -~~~ -24151978 DOWN 10 -24151978 0 2048 -24152002 UP 10 -24152003 waslock = 0 -24152002 512 2048 -~~~ -~~~ -~~~ -~~~ -24152007 homeCount = 3 -24152007 waitCount = 0 -24152008 ripCount = 0 -24152008 locktype1 = 1 -24152009 locktype2 = 0 -24152009 locktype3 = 1 -24152010 goalCount = 0 -24152010 goalTotal = 0 -24152011 otherCount = 0 -~~~ -~~~ -24152184 DOWN 10 -24152184 0 2048 -24152194 UP 10 -24152195 waslock = 0 -24152194 512 2048 -~~~ -~~~ -~~~ -~~~ -24152213 homeCount = 3 -24152213 waitCount = 0 -24152214 ripCount = 0 -24152214 locktype1 = 1 -24152215 locktype2 = 0 -24152215 locktype3 = 1 -24152216 goalCount = 0 -24152216 goalTotal = 0 -24152217 otherCount = 0 -~~~ -~~~ -24152367 DOWN 10 -24152367 0 2048 -~~~ -~~~ -~~~ -~~~ -24152395 homeCount = 3 -24152395 waitCount = 0 -24152396 ripCount = 0 -24152396 locktype1 = 1 -24152397 locktype2 = 0 -24152397 locktype3 = 1 -24152398 goalCount = 0 -24152398 goalTotal = 0 -24152399 otherCount = 0 -~~~ -24152402 UP 10 -24152403 waslock = 0 -24152402 512 2048 -~~~ -24152539 DOWN 10 -24152539 0 2048 -~~~ -~~~ -~~~ -~~~ -24152564 homeCount = 3 -24152564 waitCount = 0 -24152565 ripCount = 0 -24152565 locktype1 = 1 -24152566 locktype2 = 0 -24152566 locktype3 = 1 -24152567 goalCount = 0 -24152567 goalTotal = 0 -24152568 otherCount = 0 -~~~ -24152572 UP 10 -24152573 waslock = 0 -24152572 512 2048 -~~~ -24152741 DOWN 10 -24152741 0 2048 -24152759 UP 10 -24152760 waslock = 0 -24152759 512 2048 -~~~ -~~~ -~~~ -~~~ -24152763 homeCount = 3 -24152764 waitCount = 0 -24152764 ripCount = 0 -24152765 locktype1 = 1 -24152765 locktype2 = 0 -24152766 locktype3 = 1 -24152766 goalCount = 0 -24152767 goalTotal = 0 -24152767 otherCount = 0 -~~~ -~~~ -24153497 DOWN 10 -24153497 0 2048 -~~~ -~~~ -~~~ -~~~ -24153532 homeCount = 3 -24153532 waitCount = 0 -24153533 ripCount = 0 -24153533 locktype1 = 1 -24153534 locktype2 = 0 -24153534 locktype3 = 1 -24153535 goalCount = 0 -24153535 goalTotal = 0 -24153536 otherCount = 0 -~~~ -24153539 UP 10 -24153539 waslock = 0 -24153539 512 2048 -~~~ -24153665 DOWN 10 -24153665 0 2048 -~~~ -~~~ -24153684 UP 10 -24153684 waslock = 0 -24153684 512 2048 -~~~ -~~~ -24153686 homeCount = 3 -24153687 waitCount = 0 -24153687 ripCount = 0 -24153688 locktype1 = 1 -24153688 locktype2 = 0 -24153689 locktype3 = 1 -24153689 goalCount = 0 -24153690 goalTotal = 0 -24153711 otherCount = 0 -~~~ -~~~ -24153879 DOWN 10 -24153879 0 2048 -~~~ -~~~ -~~~ -~~~ -24153906 UP 10 -24153906 waslock = 0 -24153906 512 2048 -24153907 homeCount = 3 -24153908 waitCount = 0 -24153908 ripCount = 0 -24153909 locktype1 = 1 -24153909 locktype2 = 0 -24153910 locktype3 = 1 -24153910 goalCount = 0 -24153911 goalTotal = 0 -24153911 otherCount = 0 -~~~ -~~~ -24154063 DOWN 10 -24154063 0 2048 -~~~ -~~~ -24154084 UP 10 -24154084 waslock = 0 -24154084 512 2048 -~~~ -~~~ -24154087 homeCount = 3 -24154087 waitCount = 0 -24154088 ripCount = 0 -24154088 locktype1 = 1 -24154089 locktype2 = 0 -24154089 locktype3 = 1 -24154090 goalCount = 0 -24154090 goalTotal = 0 -24154111 otherCount = 0 -~~~ -~~~ -24154734 DOWN 10 -24154734 0 2048 -~~~ -24154753 UP 10 -24154753 waslock = 0 -24154753 512 2048 -~~~ -~~~ -~~~ -24154757 homeCount = 3 -24154757 waitCount = 0 -24154758 ripCount = 0 -24154758 locktype1 = 1 -24154759 locktype2 = 0 -24154759 locktype3 = 1 -24154760 goalCount = 0 -24154760 goalTotal = 0 -24154761 otherCount = 0 -~~~ -~~~ -24155139 DOWN 10 -24155139 0 2048 -24155152 UP 10 -24155152 waslock = 0 -24155152 512 2048 -~~~ -~~~ -~~~ -~~~ -24155162 homeCount = 3 -24155163 waitCount = 0 -24155163 ripCount = 0 -24155163 locktype1 = 1 -24155164 locktype2 = 0 -24155164 locktype3 = 1 -24155165 goalCount = 0 -24155165 goalTotal = 0 -24155166 otherCount = 0 -~~~ -~~~ -24155249 DOWN 10 -24155249 0 2048 -~~~ -~~~ -~~~ -~~~ -24155276 homeCount = 3 -24155276 waitCount = 0 -24155277 ripCount = 0 -24155277 locktype1 = 1 -24155278 locktype2 = 0 -24155278 locktype3 = 1 -24155279 goalCount = 0 -24155279 goalTotal = 0 -24155280 otherCount = 0 -~~~ -24155317 UP 10 -24155317 waslock = 0 -24155317 512 2048 -~~~ -24155370 DOWN 10 -24155370 0 2048 -~~~ -~~~ -~~~ -~~~ -24155391 homeCount = 3 -24155392 waitCount = 0 -24155392 ripCount = 0 -24155393 locktype1 = 1 -24155393 locktype2 = 0 -24155394 locktype3 = 1 -24155394 goalCount = 0 -24155395 goalTotal = 0 -24155395 otherCount = 0 -~~~ -24157118 UP 12 -24157118 2048 2048 -24158118 CLICK1 -24158118 CLICK2 -~~~ -~~~ -~~~ -24158143 2048 67110912 -~~~ -24158293 2048 2048 -24162037 DOWN 12 -24162037 0 2048 -24162046 UP 12 -24162046 2048 2048 -~~~ -~~~ -24162059 2048 0 -~~~ -~~~ -24162061 2048 1 -~~~ -~~~ -24162063 2048 3 -~~~ -~~~ -24162065 2048 7 -~~~ -~~~ -24162066 2048 15 -~~~ -~~~ -24162068 2048 31 -~~~ -~~~ -24162070 2048 63 -~~~ -~~~ -24162072 2048 127 -~~~ -~~~ -24162074 2048 255 -24162075 homeCount = 3 -24162075 waitCount = 1 -24162076 ripCount = 0 -24162076 locktype1 = 1 -24162097 locktype2 = 0 -24162098 locktype3 = 1 -24162098 goalCount = 0 -24162099 goalTotal = 0 -24162099 otherCount = 0 -~~~ -24162100 CURRENTGOAL IS [2] -~~~ -24164104 DOWN 12 -24164104 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24164146 homeCount = 3 -24164147 waitCount = 1 -24164147 ripCount = 0 -24164148 locktype1 = 1 -24164148 locktype2 = 0 -24164149 locktype3 = 1 -24164149 goalCount = 0 -24164150 goalTotal = 0 -24164150 otherCount = 0 -~~~ -24164151 CURRENTGOAL IS [2] -~~~ -24166882 UP 3 -24166882 4 255 -~~~ -~~~ -24167174 DOWN 3 -24167174 0 255 -~~~ -~~~ -24167201 0 254 -~~~ -~~~ -24167203 0 252 -~~~ -~~~ -24167205 0 248 -~~~ -~~~ -24167207 0 240 -~~~ -~~~ -24167209 0 224 -~~~ -~~~ -24167211 0 192 -~~~ -~~~ -24167212 0 128 -~~~ -~~~ -24167214 0 0 -~~~ -~~~ -24167216 0 512 -24167217 homeCount = 3 -24167218 waitCount = 1 -24167218 ripCount = 0 -24167219 locktype1 = 1 -24167219 locktype2 = 0 -24167240 locktype3 = 1 -24167240 goalCount = 0 -24167241 goalTotal = 0 -24167241 otherCount = 1 -~~~ -24167242 4 512 -24167909 DOWN 3 -24167909 0 512 -24167987 4 512 -24167998 DOWN 3 -24167998 0 512 -24171196 UP 10 -24171196 waslock = 0 -24171196 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24171228 512 16777728 -~~~ -24171232 DOWN 10 -24171232 0 16777728 -~~~ -~~~ -24171244 0 16778752 -~~~ -~~~ -24171246 0 16778240 -24171247 homeCount = 4 -24171247 waitCount = 1 -24171248 ripCount = 0 -24171248 locktype1 = 1 -24171249 locktype2 = 0 -24171249 locktype3 = 1 -24171250 goalCount = 0 -24171250 goalTotal = 0 -24171251 otherCount = 1 -~~~ -24171296 UP 10 -24171296 waslock = 0 -24171296 512 16778240 -~~~ -24171323 DOWN 10 -24171323 0 16778240 -~~~ -~~~ -~~~ -~~~ -24171346 homeCount = 4 -24171346 waitCount = 1 -24171347 ripCount = 0 -24171347 locktype1 = 1 -24171348 locktype2 = 0 -24171348 locktype3 = 1 -24171349 goalCount = 0 -24171349 goalTotal = 0 -24171350 otherCount = 1 -~~~ -24171378 0 1024 -24171850 UP 10 -24171850 waslock = 0 -24171850 512 1024 -~~~ -24172122 DOWN 10 -24172122 0 1024 -~~~ -~~~ -~~~ -~~~ -24172155 homeCount = 4 -24172156 waitCount = 1 -24172156 ripCount = 0 -24172157 locktype1 = 1 -24172157 locktype2 = 0 -24172158 locktype3 = 1 -24172158 goalCount = 0 -24172159 goalTotal = 0 -24172159 otherCount = 1 -~~~ -24172177 UP 10 -24172177 waslock = 0 -24172177 512 1024 -24172206 DOWN 10 -24172206 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24172253 homeCount = 4 -24172254 waitCount = 1 -24172254 ripCount = 0 -24172255 locktype1 = 1 -24172255 locktype2 = 0 -24172256 locktype3 = 1 -24172256 goalCount = 0 -24172257 goalTotal = 0 -24172257 otherCount = 1 -~~~ -24172303 UP 10 -24172303 waslock = 0 -24172303 512 1024 -~~~ -24172431 DOWN 10 -24172431 0 1024 -24172454 UP 10 -24172454 waslock = 0 -24172454 512 1024 -~~~ -~~~ -~~~ -~~~ -24172460 homeCount = 4 -24172461 waitCount = 1 -24172461 ripCount = 0 -24172462 locktype1 = 1 -24172462 locktype2 = 0 -24172463 locktype3 = 1 -24172463 goalCount = 0 -24172464 goalTotal = 0 -24172464 otherCount = 1 -~~~ -~~~ -24176002 DOWN 10 -24176002 0 1024 -~~~ -~~~ -~~~ -~~~ -24176021 homeCount = 4 -24176022 waitCount = 1 -24176022 ripCount = 0 -24176023 locktype1 = 1 -24176023 locktype2 = 0 -24176024 locktype3 = 1 -24176024 goalCount = 0 -24176025 goalTotal = 0 -24176025 otherCount = 1 -~~~ -24176057 UP 10 -24176057 waslock = 0 -24176057 512 1024 -~~~ -24176101 DOWN 10 -24176101 0 1024 -~~~ -~~~ -~~~ -~~~ -24176131 homeCount = 4 -24176131 waitCount = 1 -24176132 ripCount = 0 -24176132 locktype1 = 1 -24176133 locktype2 = 0 -24176133 locktype3 = 1 -24176134 goalCount = 0 -24176134 goalTotal = 0 -24176135 otherCount = 1 -~~~ -24177410 UP 11 -24177410 1024 1024 -24177464 DOWN 11 -24177464 0 1024 -24177493 UP 11 -24177493 1024 1024 -24178180 DOWN 11 -24178180 0 1024 -24178233 UP 11 -24178233 1024 1024 -24178411 BEEP1 -24178411 BEEP2 -~~~ -~~~ -~~~ -24178442 1024 33555456 -~~~ -24178528 DOWN 11 -24178528 0 33555456 -24178550 UP 11 -24178550 1024 33555456 -24178592 1024 1024 -~~~ -~~~ -24179111 1024 0 -~~~ -~~~ -24179113 1024 1 -~~~ -~~~ -24179115 1024 3 -~~~ -~~~ -24179116 1024 7 -~~~ -~~~ -24179118 1024 15 -~~~ -~~~ -24179120 1024 31 -~~~ -24179121 DOWN 11 -24179121 0 31 -~~~ -~~~ -24179123 0 63 -~~~ -~~~ -24179125 0 127 -~~~ -24179126 0 255 -24179127 homeCount = 4 -24179128 waitCount = 1 -24179149 ripCount = 1 -24179149 locktype1 = 1 -24179150 locktype2 = 0 -24179150 locktype3 = 1 -24179151 goalCount = 0 -24179151 goalTotal = 0 -24179152 otherCount = 1 -~~~ -24179153 CURRENTGOAL IS [2] -~~~ -24179153 UP 11 -24179153 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24179182 homeCount = 4 -24179183 waitCount = 1 -24179183 ripCount = 1 -24179184 locktype1 = 1 -24179184 locktype2 = 0 -24179185 locktype3 = 1 -24179185 goalCount = 0 -24179206 goalTotal = 0 -24179207 otherCount = 1 -~~~ -24179208 CURRENTGOAL IS [2] -~~~ -24183586 DOWN 11 -24183586 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24183630 homeCount = 4 -24183630 waitCount = 1 -24183631 ripCount = 1 -24183631 locktype1 = 1 -24183632 locktype2 = 0 -24183632 locktype3 = 1 -24183633 goalCount = 0 -24183633 goalTotal = 0 -24183634 otherCount = 1 -~~~ -24183635 CURRENTGOAL IS [2] -~~~ -24186519 UP 7 -24186519 64 255 -24186539 DOWN 7 -24186539 0 255 -~~~ -~~~ -~~~ -~~~ -24186563 0 254 -~~~ -~~~ -24186565 0 252 -~~~ -~~~ -24186567 0 248 -~~~ -~~~ -24186569 0 240 -~~~ -~~~ -24186571 0 224 -~~~ -~~~ -24186573 0 192 -~~~ -~~~ -24186574 0 128 -~~~ -~~~ -24186576 0 0 -~~~ -~~~ -24186578 0 512 -24186579 homeCount = 4 -24186580 waitCount = 1 -24186580 ripCount = 1 -24186581 locktype1 = 1 -24186581 locktype2 = 0 -24186602 locktype3 = 1 -24186602 goalCount = 0 -24186603 goalTotal = 0 -24186603 otherCount = 2 -~~~ -24186624 64 512 -24186990 DOWN 7 -24186990 0 512 -24187012 64 512 -24189589 DOWN 7 -24189589 0 512 -24189637 64 512 -24189704 DOWN 7 -24189704 0 512 -24196352 UP 10 -24196352 waslock = 0 -24196352 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24196378 512 16777728 -~~~ -24196528 512 512 -24196681 DOWN 10 -24196680 0 512 -~~~ -~~~ -24196702 0 1536 -~~~ -~~~ -24196704 0 1024 -24196705 homeCount = 5 -24196706 waitCount = 1 -24196706 ripCount = 1 -24196707 locktype1 = 1 -24196707 locktype2 = 0 -24196708 locktype3 = 1 -24196708 goalCount = 0 -24196709 goalTotal = 0 -24196709 otherCount = 2 -~~~ -24196730 UP 10 -24196731 waslock = 0 -24196730 512 1024 -~~~ -24200930 DOWN 10 -24200930 0 1024 -~~~ -~~~ -~~~ -~~~ -24200956 homeCount = 5 -24200957 waitCount = 1 -24200957 ripCount = 1 -24200958 locktype1 = 1 -24200958 locktype2 = 0 -24200959 locktype3 = 1 -24200960 goalCount = 0 -24200960 goalTotal = 0 -24200960 otherCount = 2 -~~~ -24200961 UP 10 -24200961 waslock = 0 -24200961 512 1024 -~~~ -24201037 DOWN 10 -24201037 0 1024 -~~~ -~~~ -~~~ -~~~ -24201065 homeCount = 5 -24201065 waitCount = 1 -24201066 ripCount = 1 -24201066 locktype1 = 1 -24201067 locktype2 = 0 -24201067 locktype3 = 1 -24201068 goalCount = 0 -24201068 goalTotal = 0 -24201069 otherCount = 2 -~~~ -24203157 UP 11 -24203157 1024 1024 -24203186 DOWN 11 -24203186 0 1024 -24203242 UP 11 -24203242 1024 1024 -24204343 DOWN 11 -24204343 0 1024 -24204378 UP 11 -24204378 1024 1024 -24204450 DOWN 11 -24204450 0 1024 -24204510 UP 11 -24204510 1024 1024 -24204657 BEEP1 -24204657 BEEP2 -~~~ -~~~ -~~~ -24204685 1024 33555456 -~~~ -24204835 1024 1024 -24208431 DOWN 11 -24208431 0 1024 -24208433 UP 11 -24208433 1024 1024 -~~~ -~~~ -24208455 1024 0 -~~~ -~~~ -24208457 1024 1 -~~~ -~~~ -24208459 1024 3 -~~~ -~~~ -24208460 1024 7 -~~~ -~~~ -24208462 1024 15 -~~~ -~~~ -24208464 1024 31 -~~~ -~~~ -24208466 1024 63 -~~~ -~~~ -24208468 1024 127 -~~~ -~~~ -24208469 1024 255 -24208470 homeCount = 5 -24208471 waitCount = 1 -24208472 ripCount = 2 -24208472 locktype1 = 1 -24208493 locktype2 = 0 -24208493 locktype3 = 1 -24208494 goalCount = 0 -24208494 goalTotal = 0 -24208495 otherCount = 2 -~~~ -24208496 CURRENTGOAL IS [2] -~~~ -24208558 DOWN 11 -24208558 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208599 UP 11 -24208599 1024 255 -24208600 homeCount = 5 -24208601 waitCount = 1 -24208601 ripCount = 2 -24208602 locktype1 = 1 -24208602 locktype2 = 0 -24208603 locktype3 = 1 -24208603 goalCount = 0 -24208604 goalTotal = 0 -24208604 otherCount = 2 -~~~ -24208626 CURRENTGOAL IS [2] -~~~ -24208626 DOWN 11 -24208626 0 255 -24208640 UP 11 -24208640 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208681 homeCount = 5 -24208682 waitCount = 1 -24208682 ripCount = 2 -24208683 locktype1 = 1 -24208684 locktype2 = 0 -24208684 locktype3 = 1 -24208685 goalCount = 0 -24208685 goalTotal = 0 -24208686 otherCount = 2 -~~~ -24208687 CURRENTGOAL IS [2] -~~~ -24208711 DOWN 11 -24208711 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208740 homeCount = 5 -24208741 waitCount = 1 -24208741 ripCount = 2 -24208742 locktype1 = 1 -24208742 locktype2 = 0 -24208743 locktype3 = 1 -24208743 goalCount = 0 -24208744 goalTotal = 0 -24208744 otherCount = 2 -~~~ -24208745 CURRENTGOAL IS [2] -~~~ -24208812 UP 11 -24208812 1024 255 -24208850 DOWN 11 -24208850 0 255 -24208860 UP 11 -24208860 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208893 homeCount = 5 -24208893 waitCount = 1 -24208894 ripCount = 2 -24208894 locktype1 = 1 -24208895 locktype2 = 0 -24208895 locktype3 = 1 -24208896 goalCount = 0 -24208896 goalTotal = 0 -24208897 otherCount = 2 -~~~ -24208898 CURRENTGOAL IS [2] -~~~ -24209074 DOWN 11 -24209074 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209106 UP 11 -24209106 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -24209112 homeCount = 5 -24209112 waitCount = 1 -24209113 ripCount = 2 -24209113 locktype1 = 1 -24209114 locktype2 = 0 -24209114 locktype3 = 1 -24209115 goalCount = 0 -24209115 goalTotal = 0 -24209116 otherCount = 2 -~~~ -24209117 CURRENTGOAL IS [2] -~~~ -24209145 DOWN 11 -24209145 0 255 -24209163 UP 11 -24209163 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209187 homeCount = 5 -24209188 waitCount = 1 -24209188 ripCount = 2 -24209189 locktype1 = 1 -24209189 locktype2 = 0 -24209190 locktype3 = 1 -24209190 goalCount = 0 -24209191 goalTotal = 0 -24209191 otherCount = 2 -~~~ -24209192 CURRENTGOAL IS [2] -~~~ -24209289 DOWN 11 -24209289 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209331 homeCount = 5 -24209332 waitCount = 1 -24209332 ripCount = 2 -24209333 locktype1 = 1 -24209333 locktype2 = 0 -24209334 locktype3 = 1 -24209334 goalCount = 0 -24209335 goalTotal = 0 -24209335 otherCount = 2 -~~~ -24209337 CURRENTGOAL IS [2] -~~~ -24212126 UP 5 -24212126 16 255 -~~~ -24212146 DOWN 5 -24212146 0 255 -~~~ -~~~ -~~~ -24212177 0 254 -~~~ -~~~ -24212178 0 252 -~~~ -~~~ -24212180 0 248 -~~~ -~~~ -24212182 0 240 -~~~ -~~~ -24212184 0 224 -~~~ -~~~ -24212186 0 192 -~~~ -~~~ -24212187 0 128 -~~~ -~~~ -24212189 0 0 -~~~ -~~~ -24212191 0 512 -24212192 homeCount = 5 -24212193 waitCount = 1 -24212193 ripCount = 2 -24212194 locktype1 = 1 -24212194 locktype2 = 0 -24212215 locktype3 = 1 -24212215 goalCount = 0 -24212216 goalTotal = 0 -24212216 otherCount = 3 -~~~ -24212469 16 512 -24212756 DOWN 5 -24212756 0 512 -24212762 16 512 -24213578 DOWN 5 -24213578 0 512 -24213590 16 512 -24213754 DOWN 5 -24213754 0 512 -24213774 16 512 -24214290 DOWN 5 -24214290 0 512 -24214316 16 512 -24214469 DOWN 5 -24214469 0 512 -24214501 16 512 -24214663 DOWN 5 -24214663 0 512 -24214680 16 512 -24214843 DOWN 5 -24214843 0 512 -24214884 16 512 -24215375 DOWN 5 -24215375 0 512 -24215398 16 512 -24215554 DOWN 5 -24215554 0 512 -24215575 16 512 -24216148 DOWN 5 -24216148 0 512 -24216172 16 512 -24216867 DOWN 5 -24216867 0 512 -24216888 16 512 -24216954 DOWN 5 -24216954 0 512 -24216960 16 512 -24217048 DOWN 5 -24217048 0 512 -24217080 16 512 -24217982 DOWN 5 -24217982 0 512 -24218106 16 512 -24218201 DOWN 5 -24218201 0 512 -24218225 16 512 -24218393 DOWN 5 -24218393 0 512 -24218402 16 512 -24218595 DOWN 5 -24218595 0 512 -24218607 16 512 -24218777 DOWN 5 -24218777 0 512 -24218799 16 512 -24218818 DOWN 5 -24218818 0 512 -24218852 16 512 -24218964 DOWN 5 -24218964 0 512 -24218986 16 512 -24219001 DOWN 5 -24219001 0 512 -24219056 16 512 -24219074 DOWN 5 -24219074 0 512 -24233913 UP 10 -24233913 waslock = 0 -24233913 512 512 -24233926 DOWN 10 -24233926 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24233953 0 16777728 -~~~ -~~~ -~~~ -24233956 0 16779776 -~~~ -~~~ -24233958 0 16779264 -24233959 homeCount = 6 -24233959 waitCount = 1 -24233960 ripCount = 2 -24233960 locktype1 = 1 -24233961 locktype2 = 0 -24233961 locktype3 = 1 -24233962 goalCount = 0 -24233962 goalTotal = 0 -24233963 otherCount = 3 -~~~ -24234035 UP 10 -24234035 waslock = 0 -24234035 512 16779264 -~~~ -24234103 512 2048 -24234151 DOWN 10 -24234151 0 2048 -~~~ -~~~ -~~~ -~~~ -24234174 homeCount = 6 -24234175 waitCount = 1 -24234175 ripCount = 2 -24234176 locktype1 = 1 -24234176 locktype2 = 0 -24234177 locktype3 = 1 -24234177 goalCount = 0 -24234178 goalTotal = 0 -24234178 otherCount = 3 -~~~ -24234246 UP 10 -24234246 waslock = 0 -24234246 512 2048 -~~~ -24234719 DOWN 10 -24234719 0 2048 -24234733 UP 10 -24234733 waslock = 0 -24234733 512 2048 -~~~ -~~~ -~~~ -~~~ -24234756 homeCount = 6 -24234757 waitCount = 1 -24234757 ripCount = 2 -24234758 locktype1 = 1 -24234758 locktype2 = 0 -24234759 locktype3 = 1 -24234759 goalCount = 0 -24234760 goalTotal = 0 -24234760 otherCount = 3 -~~~ -~~~ -24234879 DOWN 10 -24234879 0 2048 -24234898 UP 10 -24234899 waslock = 0 -24234898 512 2048 -~~~ -~~~ -~~~ -~~~ -24234904 homeCount = 6 -24234904 waitCount = 1 -24234905 ripCount = 2 -24234905 locktype1 = 1 -24234906 locktype2 = 0 -24234906 locktype3 = 1 -24234907 goalCount = 0 -24234907 goalTotal = 0 -24234908 otherCount = 3 -~~~ -~~~ -24235038 DOWN 10 -24235038 0 2048 -24235063 UP 10 -24235064 waslock = 0 -24235063 512 2048 -~~~ -~~~ -~~~ -~~~ -24235074 homeCount = 6 -24235074 waitCount = 1 -24235075 ripCount = 2 -24235075 locktype1 = 1 -24235076 locktype2 = 0 -24235076 locktype3 = 1 -24235077 goalCount = 0 -24235077 goalTotal = 0 -24235078 otherCount = 3 -~~~ -~~~ -24238546 DOWN 10 -24238546 0 2048 -24238564 UP 10 -24238564 waslock = 0 -24238564 512 2048 -~~~ -~~~ -~~~ -~~~ -24238587 homeCount = 6 -24238588 waitCount = 1 -24238588 ripCount = 2 -24238589 locktype1 = 1 -24238589 locktype2 = 0 -24238590 locktype3 = 1 -24238590 goalCount = 0 -24238591 goalTotal = 0 -24238591 otherCount = 3 -~~~ -~~~ -24238665 DOWN 10 -24238665 0 2048 -~~~ -~~~ -~~~ -~~~ -24238694 homeCount = 6 -24238694 waitCount = 1 -24238695 ripCount = 2 -24238695 locktype1 = 1 -24238696 locktype2 = 0 -24238696 locktype3 = 1 -24238697 goalCount = 0 -24238697 goalTotal = 0 -24238698 otherCount = 3 -~~~ -24238715 UP 10 -24238715 waslock = 0 -24238715 512 2048 -~~~ -24238760 DOWN 10 -24238760 0 2048 -~~~ -~~~ -~~~ -~~~ -24238786 homeCount = 6 -24238787 waitCount = 1 -24238787 ripCount = 2 -24238788 locktype1 = 1 -24238788 locktype2 = 0 -24238789 locktype3 = 1 -24238789 goalCount = 0 -24238790 goalTotal = 0 -24238790 otherCount = 3 -~~~ -24240420 UP 12 -24240420 2048 2048 -24241195 DOWN 12 -24241195 0 2048 -24241237 UP 12 -24241237 2048 2048 -24241466 DOWN 12 -24241466 0 2048 -24241603 UP 12 -24241603 2048 2048 -24241920 CLICK1 -24241920 CLICK2 -~~~ -~~~ -~~~ -24241942 2048 67110912 -~~~ -24242092 2048 2048 -24248498 DOWN 12 -24248498 0 2048 -~~~ -~~~ -24248521 0 0 -~~~ -~~~ -24248523 UP 12 -24248523 2048 1 -~~~ -~~~ -24248525 2048 3 -~~~ -~~~ -24248526 2048 7 -~~~ -~~~ -24248528 2048 15 -~~~ -~~~ -24248530 2048 31 -~~~ -~~~ -24248532 2048 63 -~~~ -~~~ -24248533 2048 127 -~~~ -~~~ -24248535 2048 255 -24248536 homeCount = 6 -24248537 waitCount = 2 -24248537 ripCount = 2 -24248559 locktype1 = 1 -24248559 locktype2 = 0 -24248560 locktype3 = 1 -24248560 goalCount = 0 -24248561 goalTotal = 0 -24248561 otherCount = 3 -~~~ -24248562 CURRENTGOAL IS [2] -~~~ -24248563 DOWN 12 -24248563 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24248619 homeCount = 6 -24248619 waitCount = 2 -24248620 ripCount = 2 -24248620 locktype1 = 1 -24248621 locktype2 = 0 -24248621 locktype3 = 1 -24248622 goalCount = 0 -24248622 goalTotal = 0 -24248623 otherCount = 3 -~~~ -24248624 CURRENTGOAL IS [2] -~~~ -24251525 UP 1 -24251524 1 255 -~~~ -~~~ -24252734 DOWN 1 -24252734 0 255 -24252741 1 255 -~~~ -~~~ -24252757 1 254 -~~~ -~~~ -24252759 1 252 -~~~ -~~~ -24252760 1 248 -~~~ -~~~ -24252762 1 240 -~~~ -~~~ -24252764 1 224 -~~~ -~~~ -24252766 1 192 -~~~ -~~~ -24252768 1 128 -~~~ -~~~ -24252769 1 0 -~~~ -~~~ -24252771 1 512 -24252772 homeCount = 6 -24252773 waitCount = 2 -24252773 ripCount = 2 -24252774 locktype1 = 1 -24252774 locktype2 = 0 -24252795 locktype3 = 1 -24252796 goalCount = 0 -24252796 goalTotal = 0 -24252797 otherCount = 4 -~~~ -24253082 DOWN 1 -24253082 0 512 -24253096 1 512 -24253270 DOWN 1 -24253270 0 512 -24253278 1 512 -24253999 DOWN 1 -24253999 0 512 -24254012 1 512 -24254185 DOWN 1 -24254185 0 512 -24254197 1 512 -24254296 DOWN 1 -24254296 0 512 -24254647 1 512 -24254672 DOWN 1 -24254672 0 512 -24262772 UP 10 -24262773 waslock = 0 -24262772 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24262798 512 16777728 -~~~ -24262832 DOWN 10 -24262832 0 16777728 -~~~ -~~~ -24262851 0 16778752 -~~~ -~~~ -24262853 0 16778240 -24262854 homeCount = 7 -24262855 waitCount = 2 -24262855 ripCount = 2 -24262856 locktype1 = 1 -24262856 locktype2 = 0 -24262857 locktype3 = 1 -24262857 goalCount = 0 -24262858 goalTotal = 0 -24262858 otherCount = 4 -~~~ -24262879 UP 10 -24262879 waslock = 0 -24262879 512 16778240 -~~~ -24262948 512 1024 -24262970 DOWN 10 -24262970 0 1024 -~~~ -~~~ -~~~ -~~~ -24262994 homeCount = 7 -24262995 waitCount = 2 -24262995 ripCount = 2 -24262996 locktype1 = 1 -24262996 locktype2 = 0 -24262997 locktype3 = 1 -24262997 goalCount = 0 -24262998 goalTotal = 0 -24262998 otherCount = 4 -~~~ -24263099 UP 10 -24263099 waslock = 0 -24263099 512 1024 -~~~ -24263849 DOWN 10 -24263849 0 1024 -24263863 UP 10 -24263863 waslock = 0 -24263863 512 1024 -~~~ -~~~ -~~~ -~~~ -24263874 homeCount = 7 -24263874 waitCount = 2 -24263875 ripCount = 2 -24263875 locktype1 = 1 -24263876 locktype2 = 0 -24263876 locktype3 = 1 -24263877 goalCount = 0 -24263877 goalTotal = 0 -24263878 otherCount = 4 -~~~ -~~~ -24266888 DOWN 10 -24266888 0 1024 -~~~ -~~~ -~~~ -~~~ -24266911 homeCount = 7 -24266912 waitCount = 2 -24266912 ripCount = 2 -24266913 locktype1 = 1 -24266913 locktype2 = 0 -24266914 locktype3 = 1 -24266914 goalCount = 0 -24266915 goalTotal = 0 -24266915 otherCount = 4 -~~~ -24266933 UP 10 -24266933 waslock = 0 -24266933 512 1024 -~~~ -24266988 DOWN 10 -24266988 0 1024 -~~~ -~~~ -~~~ -~~~ -24267015 homeCount = 7 -24267016 waitCount = 2 -24267016 ripCount = 2 -24267017 locktype1 = 1 -24267017 locktype2 = 0 -24267018 locktype3 = 1 -24267018 goalCount = 0 -24267019 goalTotal = 0 -24267019 otherCount = 4 -~~~ -24271770 UP 11 -24271770 1024 1024 -24273771 BEEP1 -24273771 BEEP2 -~~~ -~~~ -~~~ -24273793 1024 33555456 -~~~ -24273943 1024 1024 -24277448 DOWN 11 -24277448 0 1024 -~~~ -~~~ -24277475 0 0 -~~~ -~~~ -24277476 0 1 -~~~ -~~~ -24277478 0 3 -~~~ -~~~ -24277480 0 7 -~~~ -~~~ -24277482 0 15 -~~~ -~~~ -24277484 0 31 -~~~ -24277485 UP 11 -24277485 1024 31 -~~~ -~~~ -24277487 1024 63 -~~~ -~~~ -24277489 1024 127 -~~~ -24277490 1024 255 -24277491 homeCount = 7 -24277491 waitCount = 2 -24277512 ripCount = 3 -24277513 locktype1 = 1 -24277513 locktype2 = 0 -24277514 locktype3 = 1 -24277514 goalCount = 0 -24277515 goalTotal = 0 -24277515 otherCount = 4 -~~~ -24277517 CURRENTGOAL IS [2] -~~~ -24277552 DOWN 11 -24277552 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24277592 homeCount = 7 -24277593 waitCount = 2 -24277593 ripCount = 3 -24277594 locktype1 = 1 -24277594 locktype2 = 0 -24277595 locktype3 = 1 -24277596 goalCount = 0 -24277596 goalTotal = 0 -24277597 otherCount = 4 -~~~ -24277598 CURRENTGOAL IS [2] -~~~ -24281549 UP 8 -24281549 128 255 -~~~ -~~~ -24281853 DOWN 8 -24281853 0 255 -~~~ -~~~ -24281878 0 254 -~~~ -~~~ -24281880 0 252 -~~~ -~~~ -24281882 0 248 -~~~ -~~~ -24281883 0 240 -~~~ -~~~ -24281885 0 224 -~~~ -~~~ -24281887 0 192 -~~~ -~~~ -24281889 0 128 -~~~ -~~~ -24281891 0 0 -~~~ -~~~ -24281893 0 512 -24281893 homeCount = 7 -24281894 waitCount = 2 -24281895 ripCount = 3 -24281895 locktype1 = 1 -24281895 locktype2 = 0 -24281916 locktype3 = 1 -24281917 goalCount = 0 -24281917 goalTotal = 0 -24281918 otherCount = 5 -~~~ -24281918 128 512 -24282421 DOWN 8 -24282421 0 512 -24286521 UP 10 -24286521 waslock = 0 -24286521 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24286555 512 16777728 -~~~ -24286705 512 512 -24286795 DOWN 10 -24286795 0 512 -~~~ -~~~ -24286820 0 2560 -~~~ -~~~ -24286822 0 2048 -24286823 homeCount = 8 -24286823 waitCount = 2 -24286824 ripCount = 3 -24286824 locktype1 = 1 -24286825 locktype2 = 0 -24286825 locktype3 = 1 -24286826 goalCount = 0 -24286826 goalTotal = 0 -24286827 otherCount = 5 -~~~ -24286920 UP 10 -24286920 waslock = 0 -24286920 512 2048 -~~~ -24287572 DOWN 10 -24287572 0 2048 -24287592 UP 10 -24287592 waslock = 0 -24287592 512 2048 -~~~ -~~~ -~~~ -~~~ -24287596 homeCount = 8 -24287597 waitCount = 2 -24287597 ripCount = 3 -24287598 locktype1 = 1 -24287598 locktype2 = 0 -24287599 locktype3 = 1 -24287599 goalCount = 0 -24287600 goalTotal = 0 -24287600 otherCount = 5 -~~~ -~~~ -24291624 DOWN 10 -24291624 0 2048 -~~~ -~~~ -~~~ -~~~ -24291653 homeCount = 8 -24291653 waitCount = 2 -24291654 ripCount = 3 -24291654 locktype1 = 1 -24291655 locktype2 = 0 -24291655 locktype3 = 1 -24291656 goalCount = 0 -24291656 goalTotal = 0 -24291657 otherCount = 5 -~~~ -24291697 UP 10 -24291698 waslock = 0 -24291697 512 2048 -24291715 DOWN 10 -24291715 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -24291743 homeCount = 8 -24291743 waitCount = 2 -24291744 ripCount = 3 -24291744 locktype1 = 1 -24291745 locktype2 = 0 -24291745 locktype3 = 1 -24291746 goalCount = 0 -24291746 goalTotal = 0 -24291746 otherCount = 5 -~~~ -24293130 UP 12 -24293130 2048 2048 -24293155 DOWN 12 -24293155 0 2048 -24293209 UP 12 -24293209 2048 2048 -24294378 DOWN 12 -24294378 0 2048 -24294428 UP 12 -24294428 2048 2048 -24295131 CLICK1 -24295131 CLICK2 -~~~ -~~~ -~~~ -24295153 2048 67110912 -~~~ -24295303 2048 2048 -24300097 DOWN 12 -24300097 0 2048 -~~~ -~~~ -24300119 0 0 -~~~ -~~~ -24300121 0 1 -~~~ -~~~ -24300123 0 3 -~~~ -~~~ -24300125 0 7 -~~~ -~~~ -24300127 0 15 -~~~ -~~~ -24300129 0 31 -~~~ -~~~ -24300130 0 63 -~~~ -~~~ -24300132 0 127 -~~~ -~~~ -24300134 0 255 -24300135 homeCount = 8 -24300136 waitCount = 3 -24300136 ripCount = 3 -24300137 locktype1 = 1 -24300137 locktype2 = 0 -24300158 locktype3 = 1 -24300158 goalCount = 0 -24300159 goalTotal = 0 -24300159 otherCount = 5 -~~~ -24300160 CURRENTGOAL IS [2] -~~~ -24303861 UP 3 -24303861 4 255 -~~~ -~~~ -24304128 DOWN 3 -24304128 0 255 -~~~ -~~~ -24304149 0 254 -~~~ -~~~ -24304151 0 252 -~~~ -~~~ -24304153 0 248 -~~~ -~~~ -24304155 0 240 -~~~ -~~~ -24304157 0 224 -~~~ -~~~ -24304158 0 192 -~~~ -~~~ -24304160 0 128 -~~~ -~~~ -24304162 0 0 -~~~ -~~~ -24304164 0 512 -24304165 homeCount = 8 -24304165 waitCount = 3 -24304166 ripCount = 3 -24304166 locktype1 = 1 -24304188 locktype2 = 0 -24304188 locktype3 = 1 -24304189 goalCount = 0 -24304189 goalTotal = 0 -24304190 otherCount = 6 -~~~ -24305317 4 512 -24305742 DOWN 3 -24305742 0 512 -24309794 UP 10 -24309795 waslock = 0 -24309794 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24309826 512 16777728 -~~~ -24309976 512 512 -24310016 DOWN 10 -24310016 0 512 -~~~ -~~~ -24310043 0 1536 -~~~ -~~~ -24310045 0 1024 -24310046 homeCount = 9 -24310047 waitCount = 3 -24310047 ripCount = 3 -24310048 locktype1 = 1 -24310048 locktype2 = 0 -24310049 locktype3 = 1 -24310049 goalCount = 0 -24310050 goalTotal = 0 -24310050 otherCount = 6 -~~~ -24310071 UP 10 -24310072 waslock = 0 -24310071 512 1024 -~~~ -24316271 DOWN 10 -24316271 0 1024 -~~~ -~~~ -~~~ -~~~ -24316293 homeCount = 9 -24316294 waitCount = 3 -24316294 ripCount = 3 -24316295 locktype1 = 1 -24316295 locktype2 = 0 -24316296 locktype3 = 1 -24316296 goalCount = 0 -24316297 goalTotal = 0 -24316297 otherCount = 6 -~~~ -24316327 UP 10 -24316327 waslock = 0 -24316327 512 1024 -~~~ -24316347 DOWN 10 -24316347 0 1024 -~~~ -~~~ -~~~ -~~~ -24316382 homeCount = 9 -24316383 waitCount = 3 -24316383 ripCount = 3 -24316384 locktype1 = 1 -24316384 locktype2 = 0 -24316385 locktype3 = 1 -24316385 goalCount = 0 -24316386 goalTotal = 0 -24316386 otherCount = 6 -~~~ -24317934 UP 11 -24317934 1024 1024 -24319937 DOWN 11 -24319937 0 1024 -24319996 UP 11 -24319996 1024 1024 -24321434 BEEP1 -24321434 BEEP2 -~~~ -~~~ -~~~ -24321456 1024 33555456 -~~~ -24321606 1024 1024 -24325737 DOWN 11 -24325737 0 1024 -~~~ -~~~ -24325761 0 0 -~~~ -~~~ -24325762 0 1 -~~~ -~~~ -24325764 0 3 -~~~ -~~~ -24325766 0 7 -~~~ -24325767 UP 11 -24325767 1024 7 -~~~ -~~~ -24325769 1024 15 -~~~ -~~~ -24325771 1024 31 -~~~ -~~~ -24325773 1024 63 -~~~ -24325774 1024 127 -~~~ -~~~ -24325775 1024 255 -24325776 homeCount = 9 -24325777 waitCount = 3 -24325798 ripCount = 4 -24325799 locktype1 = 1 -24325799 locktype2 = 0 -24325800 locktype3 = 1 -24325800 goalCount = 0 -24325801 goalTotal = 0 -24325801 otherCount = 6 -~~~ -24325802 CURRENTGOAL IS [2] -~~~ -24325834 DOWN 11 -24325834 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24325867 homeCount = 9 -24325867 waitCount = 3 -24325868 ripCount = 4 -24325868 locktype1 = 1 -24325869 locktype2 = 0 -24325870 locktype3 = 1 -24325870 goalCount = 0 -24325871 goalTotal = 0 -24325871 otherCount = 6 -~~~ -24325872 CURRENTGOAL IS [2] -~~~ -24328994 UP 7 -24328994 64 255 -~~~ -~~~ -24329409 DOWN 7 -24329409 0 255 -~~~ -~~~ -24329431 0 254 -~~~ -~~~ -24329433 0 252 -~~~ -~~~ -24329434 0 248 -~~~ -~~~ -24329436 0 240 -~~~ -~~~ -24329438 0 224 -~~~ -~~~ -24329440 0 192 -~~~ -~~~ -24329442 0 128 -~~~ -~~~ -24329444 0 0 -~~~ -~~~ -24329445 0 512 -24329446 homeCount = 9 -24329447 waitCount = 3 -24329447 ripCount = 4 -24329448 locktype1 = 1 -24329448 locktype2 = 0 -24329470 locktype3 = 1 -24329470 goalCount = 0 -24329471 goalTotal = 0 -24329471 otherCount = 7 -~~~ -24329556 64 512 -24330105 DOWN 7 -24330105 0 512 -24330111 64 512 -24330227 DOWN 7 -24330227 0 512 -24330263 64 512 -24330369 DOWN 7 -24330369 0 512 -24334809 UP 10 -24334810 waslock = 0 -24334809 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24334837 512 16777728 -~~~ -24334987 512 512 -24335207 DOWN 10 -24335207 0 512 -~~~ -~~~ -24335235 0 2560 -~~~ -~~~ -24335237 0 2048 -24335238 homeCount = 10 -24335238 waitCount = 3 -24335239 ripCount = 4 -24335239 locktype1 = 1 -24335240 locktype2 = 0 -24335240 locktype3 = 1 -24335241 goalCount = 0 -24335241 goalTotal = 0 -24335242 otherCount = 7 -~~~ -24335265 UP 10 -24335265 waslock = 0 -24335265 512 2048 -~~~ -24338650 DOWN 10 -24338650 0 2048 -~~~ -~~~ -~~~ -~~~ -24338675 homeCount = 10 -24338675 waitCount = 3 -24338676 ripCount = 4 -24338676 locktype1 = 1 -24338677 locktype2 = 0 -24338677 locktype3 = 1 -24338678 goalCount = 0 -24338678 goalTotal = 0 -24338679 otherCount = 7 -~~~ -24340261 UP 12 -24340261 2048 2048 -24342412 DOWN 12 -24342411 0 2048 -24342434 UP 12 -24342434 2048 2048 -24343011 CLICK1 -24343011 CLICK2 -~~~ -~~~ -~~~ -24343038 2048 67110912 -~~~ -24343188 2048 2048 -24349505 DOWN 12 -24349505 0 2048 -~~~ -~~~ -24349532 0 0 -~~~ -~~~ -24349534 0 1 -~~~ -~~~ -24349536 0 3 -~~~ -~~~ -24349538 0 7 -~~~ -~~~ -24349540 0 15 -~~~ -~~~ -24349541 0 31 -~~~ -~~~ -24349543 0 63 -~~~ -~~~ -24349545 0 127 -~~~ -~~~ -24349547 0 255 -24349548 homeCount = 10 -24349548 waitCount = 4 -24349549 ripCount = 4 -24349549 locktype1 = 1 -24349550 locktype2 = 0 -24349571 locktype3 = 1 -24349571 goalCount = 0 -24349572 goalTotal = 0 -24349572 otherCount = 7 -~~~ -24349573 CURRENTGOAL IS [2] -~~~ -24349574 UP 12 -24349574 2048 255 -24349612 DOWN 12 -24349612 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24349653 homeCount = 10 -24349653 waitCount = 4 -24349654 ripCount = 4 -24349654 locktype1 = 1 -24349655 locktype2 = 0 -24349655 locktype3 = 1 -24349656 goalCount = 0 -24349656 goalTotal = 0 -24349657 otherCount = 7 -~~~ -24349658 CURRENTGOAL IS [2] -~~~ -24357745 UP 4 -24357745 8 255 -~~~ -~~~ -24358074 DOWN 4 -24358074 0 255 -~~~ -~~~ -24358096 0 254 -~~~ -~~~ -24358098 0 252 -~~~ -24358099 8 252 -~~~ -~~~ -24358101 8 248 -~~~ -24358102 8 240 -~~~ -~~~ -24358104 8 224 -~~~ -~~~ -24358105 8 192 -~~~ -~~~ -24358107 8 128 -~~~ -~~~ -24358109 8 0 -~~~ -~~~ -24358111 8 512 -24358112 homeCount = 10 -24358112 waitCount = 4 -24358113 ripCount = 4 -24358134 locktype1 = 1 -24358135 locktype2 = 0 -24358135 locktype3 = 1 -24358136 goalCount = 0 -24358136 goalTotal = 0 -24358137 otherCount = 8 -~~~ -24361306 DOWN 4 -24361306 0 512 -24361341 8 512 -24361402 DOWN 4 -24361402 0 512 -24368998 UP 10 -24368998 waslock = 0 -24368998 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24369024 512 16777728 -~~~ -24369174 512 512 -24369202 DOWN 10 -24369202 0 512 -~~~ -~~~ -24369219 0 2560 -~~~ -~~~ -24369221 0 2048 -24369222 homeCount = 11 -24369222 waitCount = 4 -24369223 ripCount = 4 -24369223 locktype1 = 1 -24369224 locktype2 = 0 -24369224 locktype3 = 1 -24369225 goalCount = 0 -24369225 goalTotal = 0 -24369226 otherCount = 8 -~~~ -24369297 UP 10 -24369297 waslock = 0 -24369297 512 2048 -~~~ -24369593 DOWN 10 -24369593 0 2048 -24369603 UP 10 -24369604 waslock = 0 -24369603 512 2048 -~~~ -~~~ -~~~ -~~~ -24369622 homeCount = 11 -24369622 waitCount = 4 -24369623 ripCount = 4 -24369623 locktype1 = 1 -24369624 locktype2 = 0 -24369624 locktype3 = 1 -24369625 goalCount = 0 -24369625 goalTotal = 0 -24369626 otherCount = 8 -~~~ -~~~ -24373779 DOWN 10 -24373779 0 2048 -24373792 UP 10 -24373793 waslock = 0 -24373792 512 2048 -~~~ -~~~ -~~~ -~~~ -24373815 homeCount = 11 -24373816 waitCount = 4 -24373816 ripCount = 4 -24373817 locktype1 = 1 -24373817 locktype2 = 0 -24373818 locktype3 = 1 -24373818 goalCount = 0 -24373819 goalTotal = 0 -24373819 otherCount = 8 -~~~ -~~~ -24373870 DOWN 10 -24373870 0 2048 -~~~ -~~~ -~~~ -~~~ -24373899 homeCount = 11 -24373899 waitCount = 4 -24373900 ripCount = 4 -24373900 locktype1 = 1 -24373901 locktype2 = 0 -24373901 locktype3 = 1 -24373902 goalCount = 0 -24373902 goalTotal = 0 -24373903 otherCount = 8 -~~~ -24375836 UP 12 -24375835 2048 2048 -24378836 CLICK1 -24378836 CLICK2 -~~~ -~~~ -~~~ -24378857 2048 67110912 -~~~ -24379007 2048 2048 -24384231 DOWN 12 -24384231 0 2048 -~~~ -~~~ -24384256 0 0 -~~~ -~~~ -24384258 0 1 -~~~ -~~~ -24384260 0 3 -~~~ -~~~ -24384262 0 7 -~~~ -~~~ -24384263 0 15 -~~~ -~~~ -24384265 0 31 -~~~ -~~~ -24384267 0 63 -~~~ -~~~ -24384269 0 127 -~~~ -~~~ -24384271 0 255 -24384272 homeCount = 11 -24384272 waitCount = 5 -24384273 ripCount = 4 -24384273 locktype1 = 1 -24384274 locktype2 = 0 -24384295 locktype3 = 1 -24384296 goalCount = 0 -24384296 goalTotal = 0 -24384297 otherCount = 8 -~~~ -24384298 CURRENTGOAL IS [2] -~~~ -24384298 UP 12 -24384298 2048 255 -24384325 DOWN 12 -24384325 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24384360 homeCount = 11 -24384361 waitCount = 5 -24384361 ripCount = 4 -24384362 locktype1 = 1 -24384362 locktype2 = 0 -24384363 locktype3 = 1 -24384363 goalCount = 0 -24384364 goalTotal = 0 -24384364 otherCount = 8 -~~~ -24384365 CURRENTGOAL IS [2] -~~~ -24389237 UP 6 -24389236 32 255 -~~~ -~~~ -24389519 DOWN 6 -24389519 0 255 -24389542 32 255 -~~~ -~~~ -24389544 32 254 -~~~ -~~~ -24389546 32 252 -~~~ -~~~ -24389548 32 248 -~~~ -~~~ -24389549 32 240 -~~~ -~~~ -24389551 32 224 -~~~ -~~~ -24389553 32 192 -~~~ -~~~ -24389555 32 128 -~~~ -~~~ -24389557 32 0 -~~~ -~~~ -24389559 32 512 -24389560 homeCount = 11 -24389560 waitCount = 5 -24389561 ripCount = 4 -24389582 locktype1 = 1 -24389582 locktype2 = 0 -24389583 locktype3 = 1 -24389583 goalCount = 0 -24389584 goalTotal = 0 -24389584 otherCount = 9 -~~~ -24392219 DOWN 6 -24392219 0 512 -24392230 32 512 -24393458 DOWN 6 -24393458 0 512 -24393466 32 512 -24393642 DOWN 6 -24393642 0 512 -24393651 32 512 -24393817 DOWN 6 -24393817 0 512 -24393821 32 512 -24393825 DOWN 6 -24393825 0 512 -24393836 32 512 -24394208 DOWN 6 -24394207 0 512 -24394217 32 512 -24394415 DOWN 6 -24394415 0 512 -24394427 32 512 -24394798 DOWN 6 -24394798 0 512 -24394811 32 512 -24394998 DOWN 6 -24394998 0 512 -24395017 32 512 -24395073 DOWN 6 -24395073 0 512 -24395092 32 512 -24395192 DOWN 6 -24395192 0 512 -24395196 32 512 -24395200 DOWN 6 -24395200 0 512 -24395237 32 512 -24395252 DOWN 6 -24395252 0 512 -24395263 32 512 -24395284 DOWN 6 -24395284 0 512 -24395295 32 512 -24395361 DOWN 6 -24395361 0 512 -24395449 32 512 -24395489 DOWN 6 -24395489 0 512 -24402448 UP 10 -24402449 waslock = 0 -24402448 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24402483 512 16777728 -~~~ -24402602 DOWN 10 -24402602 0 16777728 -~~~ -~~~ -24402626 0 16778752 -~~~ -~~~ -24402628 0 16778240 -24402629 homeCount = 12 -24402630 waitCount = 5 -24402630 ripCount = 4 -24402631 locktype1 = 1 -24402631 locktype2 = 0 -24402632 locktype3 = 1 -24402632 goalCount = 0 -24402633 goalTotal = 0 -24402633 otherCount = 9 -~~~ -24402654 0 1024 -24402740 UP 10 -24402740 waslock = 0 -24402740 512 1024 -~~~ -24408234 DOWN 10 -24408234 0 1024 -~~~ -~~~ -~~~ -~~~ -24408258 homeCount = 12 -24408259 waitCount = 5 -24408259 ripCount = 4 -24408260 locktype1 = 1 -24408260 locktype2 = 0 -24408261 locktype3 = 1 -24408261 goalCount = 0 -24408262 goalTotal = 0 -24408262 otherCount = 9 -~~~ -24408263 UP 10 -24408263 waslock = 0 -24408263 512 1024 -~~~ -24408328 DOWN 10 -24408328 0 1024 -~~~ -~~~ -~~~ -~~~ -24408348 homeCount = 12 -24408349 waitCount = 5 -24408349 ripCount = 4 -24408350 locktype1 = 1 -24408350 locktype2 = 0 -24408351 locktype3 = 1 -24408351 goalCount = 0 -24408352 goalTotal = 0 -24408352 otherCount = 9 -~~~ -24410668 UP 11 -24410668 1024 1024 -24411491 DOWN 11 -24411491 0 1024 -24411562 UP 11 -24411562 1024 1024 -24412763 DOWN 11 -24412763 0 1024 -24412794 UP 11 -24412794 1024 1024 -24415418 BEEP1 -24415418 BEEP2 -~~~ -~~~ -~~~ -24415438 1024 33555456 -~~~ -24415588 1024 1024 -24420194 DOWN 11 -24420194 0 1024 -~~~ -~~~ -24420218 0 0 -~~~ -~~~ -24420220 0 1 -~~~ -~~~ -24420222 0 3 -~~~ -~~~ -24420223 0 7 -~~~ -~~~ -24420225 0 15 -~~~ -24420227 UP 11 -24420227 1024 15 -~~~ -~~~ -24420229 1024 31 -~~~ -~~~ -24420230 1024 63 -~~~ -~~~ -24420232 1024 127 -~~~ -24420233 1024 255 -24420234 homeCount = 12 -24420235 waitCount = 5 -24420256 ripCount = 5 -24420256 locktype1 = 1 -24420257 locktype2 = 0 -24420257 locktype3 = 1 -24420258 goalCount = 0 -24420258 goalTotal = 0 -24420259 otherCount = 9 -~~~ -24420260 CURRENTGOAL IS [2] -~~~ -24420296 DOWN 11 -24420296 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24420332 homeCount = 12 -24420332 waitCount = 5 -24420333 ripCount = 5 -24420333 locktype1 = 1 -24420334 locktype2 = 0 -24420334 locktype3 = 1 -24420335 goalCount = 0 -24420335 goalTotal = 0 -24420336 otherCount = 9 -~~~ -24420337 CURRENTGOAL IS [2] -~~~ -24426866 UP 5 -24426866 16 255 -~~~ -~~~ -24426890 DOWN 5 -24426890 0 255 -~~~ -~~~ -24426907 0 254 -~~~ -~~~ -24426909 0 252 -~~~ -~~~ -24426911 0 248 -~~~ -~~~ -24426913 0 240 -~~~ -~~~ -24426915 0 224 -~~~ -~~~ -24426917 0 192 -~~~ -~~~ -24426918 0 128 -~~~ -~~~ -24426920 0 0 -~~~ -~~~ -24426922 0 512 -24426923 homeCount = 12 -24426924 waitCount = 5 -24426924 ripCount = 5 -24426925 locktype1 = 1 -24426925 locktype2 = 0 -24426946 locktype3 = 1 -24426946 goalCount = 0 -24426947 goalTotal = 0 -24426947 otherCount = 10 -~~~ -24426979 16 512 -24427073 DOWN 5 -24427072 0 512 -24427218 16 512 -24429575 DOWN 5 -24429575 0 512 -24434372 UP 10 -24434372 waslock = 0 -24434372 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24434403 512 16777728 -~~~ -24434419 DOWN 10 -24434419 0 16777728 -~~~ -~~~ -24434438 0 16778752 -~~~ -~~~ -24434440 0 16778240 -24434441 homeCount = 13 -24434441 waitCount = 5 -24434442 ripCount = 5 -24434442 locktype1 = 1 -24434443 locktype2 = 0 -24434443 locktype3 = 1 -24434444 goalCount = 0 -24434444 goalTotal = 0 -24434445 otherCount = 10 -~~~ -24434477 UP 10 -24434477 waslock = 0 -24434477 512 16778240 -~~~ -24434553 512 1024 -24434651 DOWN 10 -24434651 0 1024 -~~~ -~~~ -~~~ -~~~ -24434677 homeCount = 13 -24434677 waitCount = 5 -24434678 ripCount = 5 -24434678 locktype1 = 1 -24434679 locktype2 = 0 -24434679 locktype3 = 1 -24434680 goalCount = 0 -24434680 goalTotal = 0 -24434681 otherCount = 10 -~~~ -24434692 UP 10 -24434692 waslock = 0 -24434692 512 1024 -~~~ -24438070 DOWN 10 -24438070 0 1024 -~~~ -~~~ -~~~ -~~~ -24438094 homeCount = 13 -24438095 waitCount = 5 -24438096 ripCount = 5 -24438096 locktype1 = 1 -24438096 locktype2 = 0 -24438097 locktype3 = 1 -24438097 goalCount = 0 -24438098 goalTotal = 0 -24438098 otherCount = 10 -~~~ -24438103 UP 10 -24438103 waslock = 0 -24438103 512 1024 -~~~ -24438161 DOWN 10 -24438161 0 1024 -~~~ -~~~ -~~~ -~~~ -24438185 homeCount = 13 -24438186 waitCount = 5 -24438186 ripCount = 5 -24438187 locktype1 = 1 -24438187 locktype2 = 0 -24438188 locktype3 = 1 -24438188 goalCount = 0 -24438189 goalTotal = 0 -24438189 otherCount = 10 -~~~ -24440662 UP 11 -24440662 1024 1024 -24442855 DOWN 11 -24442855 0 1024 -24442904 UP 11 -24442904 1024 1024 -24443662 BEEP1 -24443662 BEEP2 -~~~ -~~~ -~~~ -24443685 1024 33555456 -~~~ -24443834 1024 1024 -24451080 DOWN 11 -24451079 0 1024 -~~~ -~~~ -24451102 0 0 -~~~ -~~~ -24451104 0 1 -~~~ -~~~ -24451106 0 3 -~~~ -~~~ -24451108 0 7 -~~~ -~~~ -24451109 0 15 -~~~ -~~~ -24451111 0 31 -~~~ -~~~ -24451113 0 63 -~~~ -~~~ -24451115 0 127 -~~~ -~~~ -24451117 0 255 -24451118 homeCount = 13 -24451118 waitCount = 5 -24451119 ripCount = 6 -24451119 locktype1 = 1 -24451120 locktype2 = 0 -24451141 locktype3 = 1 -24451141 goalCount = 0 -24451142 goalTotal = 0 -24451142 otherCount = 10 -~~~ -24451143 CURRENTGOAL IS [2] -~~~ -24460605 UP 3 -24460605 4 255 -~~~ -~~~ -24461083 DOWN 3 -24461083 0 255 -~~~ -~~~ -24461101 0 254 -~~~ -~~~ -24461102 0 252 -~~~ -~~~ -24461104 0 248 -~~~ -~~~ -24461106 0 240 -~~~ -~~~ -24461108 0 224 -~~~ -~~~ -24461110 0 192 -~~~ -~~~ -24461112 0 128 -~~~ -~~~ -24461113 0 0 -~~~ -~~~ -24461115 0 512 -24461116 homeCount = 13 -24461117 waitCount = 5 -24461117 ripCount = 6 -24461118 locktype1 = 1 -24461118 locktype2 = 0 -24461139 locktype3 = 1 -24461139 goalCount = 0 -24461140 goalTotal = 0 -24461140 otherCount = 11 -~~~ -24470566 UP 10 -24470566 waslock = 0 -24470566 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24470600 512 16777728 -~~~ -24470618 DOWN 10 -24470618 0 16777728 -~~~ -~~~ -24470642 0 16779776 -~~~ -~~~ -24470644 0 16779264 -24470645 homeCount = 14 -24470646 waitCount = 5 -24470646 ripCount = 6 -24470647 locktype1 = 1 -24470647 locktype2 = 0 -24470648 locktype3 = 1 -24470648 goalCount = 0 -24470649 goalTotal = 0 -24470649 otherCount = 11 -~~~ -24470750 0 2048 -24470776 UP 10 -24470777 waslock = 0 -24470776 512 2048 -~~~ -24471246 DOWN 10 -24471246 0 2048 -~~~ -~~~ -~~~ -~~~ -24471267 homeCount = 14 -24471268 waitCount = 5 -24471268 ripCount = 6 -24471269 locktype1 = 1 -24471269 locktype2 = 0 -24471270 locktype3 = 1 -24471270 goalCount = 0 -24471271 goalTotal = 0 -24471271 otherCount = 11 -~~~ -24471304 UP 10 -24471304 waslock = 0 -24471304 512 2048 -~~~ -24474135 DOWN 10 -24474135 0 2048 -~~~ -~~~ -~~~ -~~~ -24474157 homeCount = 14 -24474158 waitCount = 5 -24474158 ripCount = 6 -24474159 locktype1 = 1 -24474159 locktype2 = 0 -24474160 locktype3 = 1 -24474160 goalCount = 0 -24474161 goalTotal = 0 -24474161 otherCount = 11 -~~~ -24474162 UP 10 -24474162 waslock = 0 -24474162 512 2048 -~~~ -24474229 DOWN 10 -24474229 0 2048 -~~~ -~~~ -~~~ -~~~ -24474257 homeCount = 14 -24474257 waitCount = 5 -24474258 ripCount = 6 -24474258 locktype1 = 1 -24474259 locktype2 = 0 -24474259 locktype3 = 1 -24474260 goalCount = 0 -24474260 goalTotal = 0 -24474261 otherCount = 11 -~~~ -24476866 UP 12 -24476866 2048 2048 -24478171 DOWN 12 -24478171 0 2048 -24478314 UP 12 -24478314 2048 2048 -24478478 DOWN 12 -24478478 0 2048 -24478534 UP 12 -24478534 2048 2048 -24479866 CLICK1 -24479866 CLICK2 -~~~ -~~~ -~~~ -24479885 2048 67110912 -~~~ -24480035 2048 2048 -24480170 DOWN 12 -24480169 0 2048 -24480191 UP 12 -24480191 2048 2048 -~~~ -~~~ -24480194 2048 0 -~~~ -~~~ -24480196 2048 1 -~~~ -~~~ -24480198 2048 3 -~~~ -~~~ -24480200 2048 7 -~~~ -~~~ -24480201 2048 15 -~~~ -~~~ -24480203 2048 31 -~~~ -~~~ -24480205 2048 63 -~~~ -~~~ -24480207 2048 127 -~~~ -~~~ -24480209 2048 255 -24480210 homeCount = 14 -24480210 waitCount = 6 -24480211 ripCount = 6 -24480211 locktype1 = 1 -24480232 locktype2 = 0 -24480233 locktype3 = 1 -24480233 goalCount = 0 -24480234 goalTotal = 0 -24480234 otherCount = 11 -~~~ -24480235 CURRENTGOAL IS [2] -~~~ -24480236 DOWN 12 -24480236 0 255 -24480241 UP 12 -24480241 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24480291 homeCount = 14 -24480292 waitCount = 6 -24480292 ripCount = 6 -24480293 locktype1 = 1 -24480293 locktype2 = 0 -24480294 locktype3 = 1 -24480294 goalCount = 0 -24480295 goalTotal = 0 -24480295 otherCount = 11 -~~~ -24480296 CURRENTGOAL IS [2] -~~~ -24486384 DOWN 12 -24486384 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24486422 homeCount = 14 -24486423 waitCount = 6 -24486423 ripCount = 6 -24486424 locktype1 = 1 -24486424 locktype2 = 0 -24486425 locktype3 = 1 -24486425 goalCount = 0 -24486426 goalTotal = 0 -24486426 otherCount = 11 -~~~ -24486427 CURRENTGOAL IS [2] -~~~ -24486451 UP 12 -24486451 2048 255 -24486485 DOWN 12 -24486485 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24486522 homeCount = 14 -24486523 waitCount = 6 -24486523 ripCount = 6 -24486524 locktype1 = 1 -24486524 locktype2 = 0 -24486525 locktype3 = 1 -24486525 goalCount = 0 -24486526 goalTotal = 0 -24486526 otherCount = 11 -~~~ -24486528 CURRENTGOAL IS [2] -~~~ -24495698 UP 10 -24495698 waslock = 0 -24495698 512 255 -~~~ -24495716 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24495724 512 254 -~~~ -~~~ -24495726 512 252 -~~~ -~~~ -24495728 512 248 -~~~ -~~~ -24495730 512 240 -~~~ -~~~ -24495731 512 224 -~~~ -~~~ -24495733 512 192 -~~~ -~~~ -24495735 512 128 -~~~ -~~~ -24495737 512 0 -~~~ -~~~ -~~~ -24495945 0 0 -24495963 512 0 -24496559 0 0 -24506369 UP 4 -24506369 8 0 -24506413 DOWN 4 -24506413 0 0 -24506422 8 0 -24506707 DOWN 4 -24506707 0 0 -24506736 8 0 -24507337 DOWN 4 -24507337 0 0 -24507431 8 0 -24507448 DOWN 4 -24507448 0 0 -24516898 512 0 -24517038 0 0 -24517058 512 0 -24517301 0 0 -24517347 512 0 -24517934 0 0 -24518002 512 0 -24518042 0 0 -24518118 512 0 -24518339 0 0 -24518366 512 0 -24518604 0 0 -24520716 LOCKEND -~~~ -~~~ -~~~ -24520736 0 512 -24521787 UP 10 -24521788 waslock = 0 -24521787 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24521813 512 16777728 -~~~ -24521815 DOWN 10 -24521815 0 16777728 -~~~ -~~~ -24521838 0 16778752 -~~~ -~~~ -24521840 0 16778240 -24521841 homeCount = 15 -24521842 waitCount = 6 -24521842 ripCount = 6 -24521843 locktype1 = 1 -24521843 locktype2 = 1 -24521844 locktype3 = 1 -24521844 goalCount = 0 -24521845 goalTotal = 0 -24521845 otherCount = 11 -~~~ -24521869 UP 10 -24521869 waslock = 0 -24521869 512 16778240 -~~~ -24521963 512 1024 -24521981 DOWN 10 -24521981 0 1024 -~~~ -24522000 UP 10 -24522000 waslock = 0 -24522000 512 1024 -~~~ -~~~ -~~~ -24522004 homeCount = 15 -24522004 waitCount = 6 -24522005 ripCount = 6 -24522005 locktype1 = 1 -24522006 locktype2 = 1 -24522006 locktype3 = 1 -24522007 goalCount = 0 -24522007 goalTotal = 0 -24522008 otherCount = 11 -~~~ -~~~ -24522130 DOWN 10 -24522130 0 1024 -24522156 UP 10 -24522156 waslock = 0 -24522156 512 1024 -~~~ -~~~ -~~~ -~~~ -24522160 homeCount = 15 -24522161 waitCount = 6 -24522161 ripCount = 6 -24522162 locktype1 = 1 -24522162 locktype2 = 1 -24522163 locktype3 = 1 -24522163 goalCount = 0 -24522164 goalTotal = 0 -24522164 otherCount = 11 -~~~ -~~~ -24522270 DOWN 10 -24522270 0 1024 -24522292 UP 10 -24522292 waslock = 0 -24522292 512 1024 -~~~ -~~~ -~~~ -~~~ -24522296 homeCount = 15 -24522297 waitCount = 6 -24522298 ripCount = 6 -24522298 locktype1 = 1 -24522299 locktype2 = 1 -24522299 locktype3 = 1 -24522300 goalCount = 0 -24522300 goalTotal = 0 -24522301 otherCount = 11 -~~~ -~~~ -24526070 DOWN 10 -24526069 0 1024 -~~~ -~~~ -~~~ -~~~ -24526094 homeCount = 15 -24526094 waitCount = 6 -24526095 ripCount = 6 -24526095 locktype1 = 1 -24526096 locktype2 = 1 -24526096 locktype3 = 1 -24526097 goalCount = 0 -24526097 goalTotal = 0 -24526098 otherCount = 11 -~~~ -24526110 UP 10 -24526110 waslock = 0 -24526110 512 1024 -~~~ -24526164 DOWN 10 -24526164 0 1024 -~~~ -~~~ -~~~ -~~~ -24526194 homeCount = 15 -24526194 waitCount = 6 -24526195 ripCount = 6 -24526195 locktype1 = 1 -24526196 locktype2 = 1 -24526196 locktype3 = 1 -24526197 goalCount = 0 -24526197 goalTotal = 0 -24526198 otherCount = 11 -~~~ -24528059 UP 11 -24528059 1024 1024 -24529285 DOWN 11 -24529285 0 1024 -24529326 UP 11 -24529326 1024 1024 -24530226 DOWN 11 -24530226 0 1024 -24530258 UP 11 -24530258 1024 1024 -24530559 BEEP1 -24530559 BEEP2 -~~~ -~~~ -~~~ -24530584 1024 33555456 -~~~ -24530734 1024 1024 -24535727 DOWN 11 -24535727 0 1024 -~~~ -~~~ -24535750 0 0 -~~~ -~~~ -24535752 0 1 -~~~ -~~~ -24535754 0 3 -~~~ -~~~ -24535756 0 7 -~~~ -~~~ -24535757 0 15 -~~~ -~~~ -24535759 0 31 -~~~ -~~~ -24535761 0 63 -~~~ -~~~ -24535763 0 127 -~~~ -~~~ -24535765 0 255 -24535766 homeCount = 15 -24535766 waitCount = 6 -24535767 ripCount = 7 -24535767 locktype1 = 1 -24535768 locktype2 = 1 -24535789 locktype3 = 1 -24535789 goalCount = 0 -24535790 goalTotal = 0 -24535790 otherCount = 11 -~~~ -24535791 CURRENTGOAL IS [2] -~~~ -24535792 UP 11 -24535792 1024 255 -24535865 DOWN 11 -24535865 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24535907 homeCount = 15 -24535907 waitCount = 6 -24535908 ripCount = 7 -24535909 locktype1 = 1 -24535909 locktype2 = 1 -24535910 locktype3 = 1 -24535910 goalCount = 0 -24535911 goalTotal = 0 -24535911 otherCount = 11 -~~~ -24535912 CURRENTGOAL IS [2] -~~~ -24535936 UP 11 -24535936 1024 255 -24535954 DOWN 11 -24535954 0 255 -24535969 UP 11 -24535969 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24535990 homeCount = 15 -24535990 waitCount = 6 -24535991 ripCount = 7 -24535991 locktype1 = 1 -24535992 locktype2 = 1 -24535992 locktype3 = 1 -24535993 goalCount = 0 -24535993 goalTotal = 0 -24535994 otherCount = 11 -~~~ -24535995 CURRENTGOAL IS [2] -~~~ -24536278 DOWN 11 -24536278 0 255 -24536289 UP 11 -24536289 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24536318 homeCount = 15 -24536318 waitCount = 6 -24536319 ripCount = 7 -24536319 locktype1 = 1 -24536320 locktype2 = 1 -24536320 locktype3 = 1 -24536321 goalCount = 0 -24536321 goalTotal = 0 -24536322 otherCount = 11 -~~~ -24536323 CURRENTGOAL IS [2] -~~~ -24536680 DOWN 11 -24536680 0 255 -24536699 UP 11 -24536699 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24536718 homeCount = 15 -24536718 waitCount = 6 -24536719 ripCount = 7 -24536719 locktype1 = 1 -24536720 locktype2 = 1 -24536720 locktype3 = 1 -24536721 goalCount = 0 -24536721 goalTotal = 0 -24536722 otherCount = 11 -~~~ -24536723 CURRENTGOAL IS [2] -~~~ -24539066 DOWN 11 -24539066 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24539109 homeCount = 15 -24539110 waitCount = 6 -24539110 ripCount = 7 -24539111 locktype1 = 1 -24539111 locktype2 = 1 -24539112 locktype3 = 1 -24539112 goalCount = 0 -24539113 goalTotal = 0 -24539113 otherCount = 11 -~~~ -24539114 CURRENTGOAL IS [2] -~~~ -24545155 UP 8 -24545155 128 255 -~~~ -~~~ -24545193 DOWN 8 -24545193 0 255 -~~~ -~~~ -24545213 0 254 -~~~ -~~~ -24545215 0 252 -~~~ -~~~ -24545217 0 248 -~~~ -~~~ -24545219 0 240 -~~~ -~~~ -24545220 0 224 -~~~ -~~~ -24545222 0 192 -~~~ -~~~ -24545224 0 128 -~~~ -~~~ -24545226 0 0 -~~~ -~~~ -24545228 0 512 -24545229 homeCount = 15 -24545229 waitCount = 6 -24545230 ripCount = 7 -24545230 locktype1 = 1 -24545231 locktype2 = 1 -24545252 locktype3 = 1 -24545252 goalCount = 0 -24545253 goalTotal = 0 -24545253 otherCount = 12 -~~~ -24545254 128 512 -24545775 DOWN 8 -24545775 0 512 -24549428 UP 10 -24549428 waslock = 0 -24549428 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24549451 512 16777728 -~~~ -24549601 512 512 -24549640 DOWN 10 -24549640 0 512 -~~~ -~~~ -24549668 0 2560 -~~~ -~~~ -24549670 0 2048 -24549671 homeCount = 16 -24549672 waitCount = 6 -24549672 ripCount = 7 -24549673 locktype1 = 1 -24549673 locktype2 = 1 -24549674 locktype3 = 1 -24549674 goalCount = 0 -24549675 goalTotal = 0 -24549675 otherCount = 12 -~~~ -24549810 UP 10 -24549810 waslock = 0 -24549810 512 2048 -~~~ -24553189 DOWN 10 -24553189 0 2048 -~~~ -~~~ -~~~ -~~~ -24553217 homeCount = 16 -24553218 waitCount = 6 -24553218 ripCount = 7 -24553219 locktype1 = 1 -24553219 locktype2 = 1 -24553220 locktype3 = 1 -24553220 goalCount = 0 -24553221 goalTotal = 0 -24553221 otherCount = 12 -~~~ -24553222 UP 10 -24553222 waslock = 0 -24553222 512 2048 -~~~ -24553263 DOWN 10 -24553263 0 2048 -~~~ -~~~ -~~~ -~~~ -24553290 homeCount = 16 -24553291 waitCount = 6 -24553291 ripCount = 7 -24553292 locktype1 = 1 -24553292 locktype2 = 1 -24553293 locktype3 = 1 -24553293 goalCount = 0 -24553294 goalTotal = 0 -24553294 otherCount = 12 -~~~ -24561352 UP 12 -24561352 2048 2048 -24562969 DOWN 12 -24562969 0 2048 -24563044 UP 12 -24563044 2048 2048 -24565353 CLICK1 -24565353 CLICK2 -~~~ -~~~ -~~~ -24565378 2048 67110912 -~~~ -24565527 2048 2048 -24569179 DOWN 12 -24569179 0 2048 -~~~ -~~~ -24569206 0 0 -~~~ -~~~ -24569208 0 1 -~~~ -~~~ -24569210 0 3 -~~~ -~~~ -24569212 0 7 -~~~ -~~~ -24569214 0 15 -~~~ -~~~ -24569215 0 31 -~~~ -~~~ -24569217 0 63 -~~~ -~~~ -24569219 0 127 -~~~ -24569220 UP 12 -24569220 2048 127 -~~~ -24569222 homeCount = 16 -24569223 waitCount = 7 -24569223 ripCount = 7 -24569224 locktype1 = 1 -24569245 locktype2 = 1 -24569245 locktype3 = 1 -24569246 goalCount = 0 -24569246 goalTotal = 0 -24569247 otherCount = 12 -~~~ -24569248 CURRENTGOAL IS [2] -~~~ -24569248 DOWN 12 -24569248 0 255 -24569257 UP 12 -24569256 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569303 homeCount = 16 -24569304 waitCount = 7 -24569304 ripCount = 7 -24569305 locktype1 = 1 -24569305 locktype2 = 1 -24569306 locktype3 = 1 -24569306 goalCount = 0 -24569307 goalTotal = 0 -24569307 otherCount = 12 -~~~ -24569308 CURRENTGOAL IS [2] -~~~ -24569329 DOWN 12 -24569329 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569365 homeCount = 16 -24569366 waitCount = 7 -24569366 ripCount = 7 -24569367 locktype1 = 1 -24569367 locktype2 = 1 -24569368 locktype3 = 1 -24569368 goalCount = 0 -24569369 goalTotal = 0 -24569369 otherCount = 12 -~~~ -24569370 CURRENTGOAL IS [2] -~~~ -24569392 UP 12 -24569392 2048 255 -24569399 DOWN 12 -24569399 0 255 -24569404 UP 12 -24569404 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569430 DOWN 12 -24569430 0 255 -~~~ -~~~ -~~~ -24569434 homeCount = 16 -24569434 waitCount = 7 -24569435 ripCount = 7 -24569435 locktype1 = 1 -24569436 locktype2 = 1 -24569436 locktype3 = 1 -24569437 goalCount = 0 -24569437 goalTotal = 0 -24569438 otherCount = 12 -~~~ -24569439 CURRENTGOAL IS [2] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569466 homeCount = 16 -24569467 waitCount = 7 -24569467 ripCount = 7 -24569468 locktype1 = 1 -24569468 locktype2 = 1 -24569469 locktype3 = 1 -24569490 goalCount = 0 -24569491 goalTotal = 0 -24569491 otherCount = 12 -~~~ -24569492 CURRENTGOAL IS [2] -~~~ -24569541 UP 12 -24569541 2048 255 -24569575 DOWN 12 -24569575 0 255 -24569590 UP 12 -24569590 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569628 homeCount = 16 -24569629 waitCount = 7 -24569630 ripCount = 7 -24569630 locktype1 = 1 -24569631 locktype2 = 1 -24569631 locktype3 = 1 -24569632 goalCount = 0 -24569632 goalTotal = 0 -24569633 otherCount = 12 -~~~ -24569634 CURRENTGOAL IS [2] -~~~ -24569745 DOWN 12 -24569745 0 255 -24569762 UP 12 -24569762 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569779 homeCount = 16 -24569780 waitCount = 7 -24569781 ripCount = 7 -24569781 locktype1 = 1 -24569782 locktype2 = 1 -24569782 locktype3 = 1 -24569783 goalCount = 0 -24569783 goalTotal = 0 -24569784 otherCount = 12 -~~~ -24569785 CURRENTGOAL IS [2] -~~~ -24571050 DOWN 12 -24571050 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24571089 homeCount = 16 -24571090 waitCount = 7 -24571091 ripCount = 7 -24571091 locktype1 = 1 -24571092 locktype2 = 1 -24571092 locktype3 = 1 -24571093 goalCount = 0 -24571093 goalTotal = 0 -24571094 otherCount = 12 -~~~ -24571095 CURRENTGOAL IS [2] -~~~ -24581925 UP 5 -24581925 16 255 -~~~ -~~~ -24582431 DOWN 5 -24582431 0 255 -~~~ -~~~ -24582453 0 254 -~~~ -~~~ -24582454 0 252 -~~~ -~~~ -24582456 0 248 -~~~ -~~~ -24582458 0 240 -~~~ -~~~ -24582460 0 224 -~~~ -~~~ -24582462 0 192 -~~~ -~~~ -24582463 0 128 -~~~ -~~~ -24582465 0 0 -~~~ -~~~ -24582467 0 512 -24582468 homeCount = 16 -24582469 waitCount = 7 -24582469 ripCount = 7 -24582470 locktype1 = 1 -24582491 locktype2 = 1 -24582491 locktype3 = 1 -24582492 goalCount = 0 -24582492 goalTotal = 0 -24582493 otherCount = 13 -~~~ -24587390 UP 10 -24587390 waslock = 0 -24587390 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24587414 512 16777728 -~~~ -24587539 DOWN 10 -24587539 0 16777728 -24587564 0 512 -~~~ -~~~ -24587570 0 2560 -~~~ -~~~ -24587572 0 2048 -24587573 homeCount = 17 -24587574 waitCount = 7 -24587574 ripCount = 7 -24587575 locktype1 = 1 -24587575 locktype2 = 1 -24587576 locktype3 = 1 -24587576 goalCount = 0 -24587577 goalTotal = 0 -24587577 otherCount = 13 -~~~ -24587616 UP 10 -24587617 waslock = 0 -24587616 512 2048 -~~~ -24592258 DOWN 10 -24592258 0 2048 -24592272 UP 10 -24592273 waslock = 0 -24592272 512 2048 -~~~ -~~~ -~~~ -~~~ -24592280 homeCount = 17 -24592280 waitCount = 7 -24592281 ripCount = 7 -24592281 locktype1 = 1 -24592282 locktype2 = 1 -24592282 locktype3 = 1 -24592283 goalCount = 0 -24592283 goalTotal = 0 -24592284 otherCount = 13 -~~~ -~~~ -24592358 DOWN 10 -24592358 0 2048 -~~~ -~~~ -~~~ -~~~ -24592383 homeCount = 17 -24592383 waitCount = 7 -24592384 ripCount = 7 -24592384 locktype1 = 1 -24592385 locktype2 = 1 -24592385 locktype3 = 1 -24592386 goalCount = 0 -24592386 goalTotal = 0 -24592387 otherCount = 13 -~~~ -24616551 UP 12 -24616551 2048 2048 -24617583 DOWN 12 -24617583 0 2048 -24617639 UP 12 -24617639 2048 2048 -24617756 DOWN 12 -24617756 0 2048 -24617784 UP 12 -24617784 2048 2048 -24618319 DOWN 12 -24618319 0 2048 -24618357 UP 12 -24618357 2048 2048 -24618387 DOWN 12 -24618386 0 2048 -24618449 UP 12 -24618449 2048 2048 -24620577 DOWN 12 -24620577 0 2048 -24620632 UP 12 -24620632 2048 2048 -24621302 CLICK1 -24621302 CLICK2 -~~~ -~~~ -~~~ -24621333 2048 67110912 -~~~ -24621483 2048 2048 -24625570 DOWN 12 -24625570 0 2048 -~~~ -~~~ -24625587 0 0 -~~~ -~~~ -24625589 0 1 -~~~ -~~~ -24625591 0 3 -~~~ -~~~ -24625593 0 7 -~~~ -~~~ -24625595 0 15 -~~~ -~~~ -24625596 0 31 -~~~ -~~~ -24625598 0 63 -~~~ -~~~ -24625600 0 127 -~~~ -~~~ -24625602 0 255 -24625603 homeCount = 17 -24625603 waitCount = 8 -24625604 ripCount = 7 -24625604 locktype1 = 1 -24625605 locktype2 = 1 -24625626 locktype3 = 1 -24625627 goalCount = 0 -24625627 goalTotal = 0 -24625628 otherCount = 13 -~~~ -24625629 CURRENTGOAL IS [2] -~~~ -24625629 UP 12 -24625629 2048 255 -24625651 DOWN 12 -24625651 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24625689 homeCount = 17 -24625689 waitCount = 8 -24625690 ripCount = 7 -24625690 locktype1 = 1 -24625691 locktype2 = 1 -24625691 locktype3 = 1 -24625692 goalCount = 0 -24625692 goalTotal = 0 -24625693 otherCount = 13 -~~~ -24625694 CURRENTGOAL IS [2] -~~~ -24642952 UP 1 -24642952 1 255 -~~~ -~~~ -24645925 DOWN 1 -24645925 0 255 -~~~ -~~~ -24645946 0 254 -~~~ -~~~ -24645948 0 252 -~~~ -~~~ -24645949 0 248 -~~~ -~~~ -24645951 0 240 -~~~ -~~~ -24645953 0 224 -~~~ -~~~ -24645955 0 192 -~~~ -~~~ -24645957 0 128 -~~~ -~~~ -24645959 0 0 -~~~ -~~~ -24645960 0 512 -24645961 homeCount = 17 -24645962 waitCount = 8 -24645963 ripCount = 7 -24645963 locktype1 = 1 -24645964 locktype2 = 1 -24645984 locktype3 = 1 -24645985 goalCount = 0 -24645985 goalTotal = 0 -24645986 otherCount = 14 -~~~ -24651763 UP 10 -24651763 waslock = 0 -24651763 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24651793 512 16777728 -~~~ -24651860 DOWN 10 -24651860 0 16777728 -~~~ -~~~ -24651887 0 16778752 -~~~ -~~~ -24651889 0 16778240 -24651890 homeCount = 18 -24651890 waitCount = 8 -24651891 ripCount = 7 -24651891 locktype1 = 1 -24651892 locktype2 = 1 -24651892 locktype3 = 1 -24651893 goalCount = 0 -24651893 goalTotal = 0 -24651894 otherCount = 14 -~~~ -24651915 UP 10 -24651915 waslock = 0 -24651915 512 16778240 -~~~ -24651942 512 1024 -24652117 DOWN 10 -24652117 0 1024 -~~~ -~~~ -~~~ -~~~ -24652140 homeCount = 18 -24652141 waitCount = 8 -24652141 ripCount = 7 -24652142 locktype1 = 1 -24652142 locktype2 = 1 -24652143 locktype3 = 1 -24652143 goalCount = 0 -24652144 goalTotal = 0 -24652144 otherCount = 14 -~~~ -24652150 UP 10 -24652150 waslock = 0 -24652150 512 1024 -~~~ -24655008 DOWN 10 -24655008 0 1024 -~~~ -~~~ -~~~ -~~~ -24655031 homeCount = 18 -24655032 waitCount = 8 -24655032 ripCount = 7 -24655033 locktype1 = 1 -24655033 locktype2 = 1 -24655034 locktype3 = 1 -24655034 goalCount = 0 -24655035 goalTotal = 0 -24655035 otherCount = 14 -~~~ -24655066 UP 10 -24655066 waslock = 0 -24655066 512 1024 -~~~ -24655104 DOWN 10 -24655104 0 1024 -~~~ -~~~ -~~~ -~~~ -24655122 homeCount = 18 -24655122 waitCount = 8 -24655123 ripCount = 7 -24655123 locktype1 = 1 -24655124 locktype2 = 1 -24655124 locktype3 = 1 -24655125 goalCount = 0 -24655125 goalTotal = 0 -24655126 otherCount = 14 -~~~ -24657381 UP 11 -24657381 1024 1024 -24658427 DOWN 11 -24658427 0 1024 -24658437 UP 11 -24658437 1024 1024 -24661881 BEEP1 -24661881 BEEP2 -~~~ -~~~ -~~~ -24661900 1024 33555456 -~~~ -24662050 1024 1024 -24667500 DOWN 11 -24667500 0 1024 -~~~ -~~~ -24667519 0 0 -~~~ -~~~ -24667520 0 1 -~~~ -~~~ -24667522 0 3 -~~~ -~~~ -24667524 0 7 -~~~ -~~~ -24667526 0 15 -~~~ -~~~ -24667528 0 31 -~~~ -~~~ -24667529 0 63 -~~~ -~~~ -24667531 0 127 -~~~ -~~~ -24667533 0 255 -24667534 homeCount = 18 -24667535 waitCount = 8 -24667535 ripCount = 8 -24667536 locktype1 = 1 -24667536 locktype2 = 1 -24667557 locktype3 = 1 -24667557 goalCount = 0 -24667558 goalTotal = 0 -24667558 otherCount = 14 -~~~ -24667559 CURRENTGOAL IS [2] -~~~ -24731227 UP 11 -24731227 1024 255 -24732218 DOWN 11 -24732218 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24732257 homeCount = 18 -24732258 waitCount = 8 -24732258 ripCount = 8 -24732259 locktype1 = 1 -24732259 locktype2 = 1 -24732260 locktype3 = 1 -24732260 goalCount = 0 -24732261 goalTotal = 0 -24732261 otherCount = 14 -~~~ -24732262 CURRENTGOAL IS [2] -~~~ -24744749 UP 4 -24744749 8 255 -~~~ -~~~ -24745153 DOWN 4 -24745153 0 255 -~~~ -~~~ -24745173 0 254 -~~~ -~~~ -24745175 0 252 -~~~ -~~~ -24745177 0 248 -~~~ -~~~ -24745178 0 240 -~~~ -~~~ -24745180 0 224 -~~~ -~~~ -24745182 0 192 -~~~ -24745183 8 192 -~~~ -~~~ -24745185 8 128 -~~~ -24745186 8 0 -~~~ -~~~ -24745188 8 512 -24745189 homeCount = 18 -24745189 waitCount = 8 -24745190 ripCount = 8 -24745211 locktype1 = 1 -24745211 locktype2 = 1 -24745212 locktype3 = 1 -24745212 goalCount = 0 -24745213 goalTotal = 0 -24745213 otherCount = 15 -~~~ -24746821 DOWN 4 -24746821 0 512 -24746860 8 512 -24746902 DOWN 4 -24746901 0 512 -24752241 UP 10 -24752241 waslock = 0 -24752241 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24752270 512 16777728 -~~~ -24752379 DOWN 10 -24752379 0 16777728 -~~~ -~~~ -24752404 0 16779776 -~~~ -~~~ -24752406 0 16779264 -24752407 homeCount = 19 -24752407 waitCount = 8 -24752408 ripCount = 8 -24752408 locktype1 = 1 -24752409 locktype2 = 1 -24752409 locktype3 = 1 -24752410 goalCount = 0 -24752410 goalTotal = 0 -24752411 otherCount = 15 -~~~ -24752431 0 2048 -24752545 UP 10 -24752545 waslock = 0 -24752545 512 2048 -~~~ -24753086 DOWN 10 -24753086 0 2048 -24753096 UP 10 -24753096 waslock = 0 -24753096 512 2048 -~~~ -~~~ -~~~ -~~~ -24753119 homeCount = 19 -24753119 waitCount = 8 -24753120 ripCount = 8 -24753120 locktype1 = 1 -24753121 locktype2 = 1 -24753121 locktype3 = 1 -24753122 goalCount = 0 -24753122 goalTotal = 0 -24753123 otherCount = 15 -~~~ -~~~ -24758163 DOWN 10 -24758163 0 2048 -~~~ -~~~ -~~~ -~~~ -24758187 homeCount = 19 -24758187 waitCount = 8 -24758188 ripCount = 8 -24758188 locktype1 = 1 -24758189 locktype2 = 1 -24758189 locktype3 = 1 -24758190 goalCount = 0 -24758190 goalTotal = 0 -24758191 otherCount = 15 -~~~ -24760831 UP 12 -24760831 2048 2048 -24761455 DOWN 12 -24761455 0 2048 -24761656 LOCKOUT 3 -~~~ -24761677 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24761683 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24762044 UP 12 -24762044 2048 0 -24762069 DOWN 12 -24762069 0 0 -24762110 UP 12 -24762110 2048 0 -24762804 DOWN 12 -24762804 0 0 -24786677 LOCKEND -~~~ -~~~ -~~~ -24786697 0 512 -24787613 UP 10 -24787613 waslock = 0 -24787613 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24787645 512 16777728 -~~~ -24787699 DOWN 10 -24787699 0 16777728 -24787723 UP 10 -24787723 waslock = 0 -24787723 512 16777728 -~~~ -~~~ -24787726 512 16779776 -~~~ -~~~ -24787728 512 16779264 -24787729 homeCount = 20 -24787730 waitCount = 8 -24787730 ripCount = 8 -24787731 locktype1 = 1 -24787731 locktype2 = 1 -24787732 locktype3 = 2 -24787732 goalCount = 0 -24787733 goalTotal = 0 -24787754 otherCount = 15 -~~~ -~~~ -24787795 512 2048 -24788471 DOWN 10 -24788471 0 2048 -~~~ -~~~ -~~~ -~~~ -24788500 homeCount = 20 -24788500 waitCount = 8 -24788501 ripCount = 8 -24788501 locktype1 = 1 -24788502 locktype2 = 1 -24788502 locktype3 = 2 -24788503 goalCount = 0 -24788503 goalTotal = 0 -24788504 otherCount = 15 -~~~ -24788523 UP 10 -24788523 waslock = 0 -24788523 512 2048 -~~~ -24793994 DOWN 10 -24793994 0 2048 -~~~ -~~~ -~~~ -~~~ -24794018 homeCount = 20 -24794019 waitCount = 8 -24794019 ripCount = 8 -24794020 locktype1 = 1 -24794020 locktype2 = 1 -24794021 locktype3 = 2 -24794021 goalCount = 0 -24794022 goalTotal = 0 -24794022 otherCount = 15 -~~~ -24833942 UP 12 -24833942 2048 2048 -24834649 DOWN 12 -24834649 0 2048 -24834690 UP 12 -24834690 2048 2048 -24835479 DOWN 12 -24835479 0 2048 -24835513 UP 12 -24835513 2048 2048 -24835759 DOWN 12 -24835759 0 2048 -24835877 UP 12 -24835877 2048 2048 -24835927 DOWN 12 -24835927 0 2048 -24835951 UP 12 -24835951 2048 2048 -24836281 DOWN 12 -24836281 0 2048 -24836323 UP 12 -24836323 2048 2048 -24836439 DOWN 12 -24836439 0 2048 -24836452 UP 12 -24836452 2048 2048 -24836649 DOWN 12 -24836649 0 2048 -24836676 UP 12 -24836676 2048 2048 -24836942 CLICK1 -24836942 CLICK2 -~~~ -~~~ -~~~ -24836972 2048 67110912 -~~~ -24837059 DOWN 12 -24837059 0 67110912 -24837122 0 2048 -24837133 UP 12 -24837133 2048 2048 -~~~ -~~~ -24837144 2048 0 -~~~ -~~~ -24837146 2048 1 -~~~ -~~~ -24837148 2048 3 -~~~ -~~~ -24837150 2048 7 -~~~ -~~~ -24837152 2048 15 -~~~ -~~~ -24837153 2048 31 -~~~ -~~~ -24837155 2048 63 -~~~ -~~~ -24837157 2048 127 -~~~ -~~~ -24837159 2048 255 -24837160 homeCount = 20 -24837160 waitCount = 9 -24837161 ripCount = 8 -24837182 locktype1 = 1 -24837183 locktype2 = 1 -24837183 locktype3 = 2 -24837184 goalCount = 0 -24837184 goalTotal = 0 -24837185 otherCount = 15 -~~~ -24837186 CURRENTGOAL IS [2] -~~~ -24837229 DOWN 12 -24837229 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24837272 homeCount = 20 -24837272 waitCount = 9 -24837273 ripCount = 8 -24837273 locktype1 = 1 -24837274 locktype2 = 1 -24837274 locktype3 = 2 -24837275 goalCount = 0 -24837275 goalTotal = 0 -24837276 otherCount = 15 -~~~ -24837277 CURRENTGOAL IS [2] -~~~ -24837298 UP 12 -24837298 2048 255 -24842976 DOWN 12 -24842976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24843011 homeCount = 20 -24843011 waitCount = 9 -24843012 ripCount = 8 -24843012 locktype1 = 1 -24843013 locktype2 = 1 -24843013 locktype3 = 2 -24843014 goalCount = 0 -24843014 goalTotal = 0 -24843015 otherCount = 15 -~~~ -24843016 CURRENTGOAL IS [2] -~~~ -24848553 UP 4 -24848553 8 255 -~~~ -~~~ -24848589 DOWN 4 -24848589 0 255 -~~~ -~~~ -24848608 0 254 -~~~ -~~~ -24848610 0 252 -~~~ -~~~ -24848612 0 248 -~~~ -~~~ -24848613 0 240 -~~~ -~~~ -24848615 0 224 -~~~ -~~~ -24848617 0 192 -~~~ -~~~ -24848619 0 128 -~~~ -~~~ -24848621 0 0 -~~~ -~~~ -24848623 0 512 -24848624 homeCount = 20 -24848624 waitCount = 9 -24848625 ripCount = 8 -24848625 locktype1 = 1 -24848646 locktype2 = 1 -24848647 locktype3 = 2 -24848647 goalCount = 0 -24848648 goalTotal = 0 -24848648 otherCount = 16 -~~~ -24848649 8 512 -24848856 DOWN 4 -24848856 0 512 -24857480 UP 10 -24857481 waslock = 0 -24857480 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24857509 512 16777728 -~~~ -24857659 512 512 -24858225 DOWN 10 -24858225 0 512 -~~~ -24858250 UP 10 -24858251 waslock = 0 -24858250 512 512 -~~~ -~~~ -~~~ -24858253 512 2048 -24858254 homeCount = 21 -24858255 waitCount = 9 -24858255 ripCount = 8 -24858256 locktype1 = 1 -24858256 locktype2 = 1 -24858257 locktype3 = 2 -24858257 goalCount = 0 -24858278 goalTotal = 0 -24858279 otherCount = 16 -~~~ -~~~ -24862400 DOWN 10 -24862400 0 2048 -24862418 UP 10 -24862419 waslock = 0 -24862418 512 2048 -~~~ -~~~ -~~~ -~~~ -24862426 homeCount = 21 -24862426 waitCount = 9 -24862427 ripCount = 8 -24862427 locktype1 = 1 -24862428 locktype2 = 1 -24862428 locktype3 = 2 -24862429 goalCount = 0 -24862429 goalTotal = 0 -24862430 otherCount = 16 -~~~ -~~~ -24862493 DOWN 10 -24862493 0 2048 -~~~ -~~~ -~~~ -~~~ -24862522 homeCount = 21 -24862523 waitCount = 9 -24862523 ripCount = 8 -24862524 locktype1 = 1 -24862524 locktype2 = 1 -24862525 locktype3 = 2 -24862525 goalCount = 0 -24862526 goalTotal = 0 -24862526 otherCount = 16 -~~~ -24930514 UP 10 -24930515 waslock = 0 -24930514 512 2048 -~~~ -24930785 DOWN 10 -24930785 0 2048 -~~~ -~~~ -~~~ -~~~ -24930806 homeCount = 21 -24930806 waitCount = 9 -24930807 ripCount = 8 -24930807 locktype1 = 1 -24930808 locktype2 = 1 -24930808 locktype3 = 2 -24930809 goalCount = 0 -24930809 goalTotal = 0 -24930810 otherCount = 16 -~~~ -24930873 UP 10 -24930874 waslock = 0 -24930873 512 2048 -~~~ -24931398 DOWN 10 -24931398 0 2048 -~~~ -~~~ -~~~ -~~~ -24931425 homeCount = 21 -24931426 waitCount = 9 -24931426 ripCount = 8 -24931427 locktype1 = 1 -24931427 locktype2 = 1 -24931428 locktype3 = 2 -24931428 goalCount = 0 -24931429 goalTotal = 0 -24931429 otherCount = 16 -~~~ -24931444 UP 10 -24931445 waslock = 0 -24931444 512 2048 -~~~ -24932304 DOWN 10 -24932304 0 2048 -24932319 UP 10 -24932320 waslock = 0 -24932319 512 2048 -~~~ -~~~ -~~~ -~~~ -24932326 homeCount = 21 -24932327 waitCount = 9 -24932327 ripCount = 8 -24932328 locktype1 = 1 -24932328 locktype2 = 1 -24932329 locktype3 = 2 -24932329 goalCount = 0 -24932330 goalTotal = 0 -24932330 otherCount = 16 -~~~ -~~~ -24933504 DOWN 10 -24933504 0 2048 -~~~ -~~~ -~~~ -~~~ -24933528 homeCount = 21 -24933529 waitCount = 9 -24933529 ripCount = 8 -24933530 locktype1 = 1 -24933530 locktype2 = 1 -24933531 locktype3 = 2 -24933531 goalCount = 0 -24933532 goalTotal = 0 -24933532 otherCount = 16 -~~~ -24933557 UP 10 -24933558 waslock = 0 -24933557 512 2048 -~~~ -24933598 DOWN 10 -24933598 0 2048 -~~~ -~~~ -~~~ -~~~ -24933626 homeCount = 21 -24933627 waitCount = 9 -24933627 ripCount = 8 -24933628 locktype1 = 1 -24933628 locktype2 = 1 -24933629 locktype3 = 2 -24933629 goalCount = 0 -24933630 goalTotal = 0 -24933630 otherCount = 16 -~~~ -24937095 UP 12 -24937095 2048 2048 -24939013 DOWN 12 -24939013 0 2048 -24939059 UP 12 -24939059 2048 2048 -24940772 DOWN 12 -24940772 0 2048 -24940815 UP 12 -24940815 2048 2048 -24940959 DOWN 12 -24940959 0 2048 -24940980 UP 12 -24940980 2048 2048 -24941345 CLICK1 -24941345 CLICK2 -~~~ -~~~ -~~~ -24941365 2048 67110912 -~~~ -24941515 2048 2048 -24946106 DOWN 12 -24946105 0 2048 -~~~ -~~~ -24946124 0 0 -~~~ -~~~ -24946126 0 1 -~~~ -~~~ -24946128 0 3 -~~~ -~~~ -24946130 0 7 -~~~ -~~~ -24946132 0 15 -~~~ -~~~ -24946133 0 31 -~~~ -~~~ -24946135 0 63 -~~~ -~~~ -24946137 0 127 -~~~ -~~~ -24946139 0 255 -24946140 homeCount = 21 -24946140 waitCount = 10 -24946141 ripCount = 8 -24946141 locktype1 = 1 -24946142 locktype2 = 1 -24946163 locktype3 = 2 -24946163 goalCount = 0 -24946164 goalTotal = 0 -24946164 otherCount = 16 -~~~ -24946165 CURRENTGOAL IS [2] -~~~ -24946181 UP 12 -24946181 2048 255 -24946208 DOWN 12 -24946208 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24946241 homeCount = 21 -24946241 waitCount = 10 -24946242 ripCount = 8 -24946242 locktype1 = 1 -24946243 locktype2 = 1 -24946243 locktype3 = 2 -24946244 goalCount = 0 -24946244 goalTotal = 0 -24946245 otherCount = 16 -~~~ -24946246 CURRENTGOAL IS [2] -~~~ -24950351 UP 1 -24950351 1 255 -~~~ -~~~ -24951379 DOWN 1 -24951379 0 255 -~~~ -~~~ -24951405 0 254 -~~~ -~~~ -24951406 0 252 -~~~ -~~~ -24951408 0 248 -~~~ -~~~ -24951410 0 240 -~~~ -~~~ -24951412 0 224 -~~~ -~~~ -24951414 0 192 -~~~ -~~~ -24951415 0 128 -~~~ -~~~ -24951417 0 0 -~~~ -~~~ -24951419 0 512 -24951420 homeCount = 21 -24951421 waitCount = 10 -24951421 ripCount = 8 -24951422 locktype1 = 1 -24951422 locktype2 = 1 -24951443 locktype3 = 2 -24951443 goalCount = 0 -24951444 goalTotal = 0 -24951444 otherCount = 17 -~~~ -24955122 UP 10 -24955122 waslock = 0 -24955122 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24955153 512 16777728 -~~~ -24955284 DOWN 10 -24955284 0 16777728 -24955303 0 512 -24955318 UP 10 -24955319 waslock = 0 -24955318 512 512 -~~~ -~~~ -24955321 512 1536 -~~~ -~~~ -24955323 512 1024 -24955324 homeCount = 22 -24955324 waitCount = 10 -24955325 ripCount = 8 -24955325 locktype1 = 1 -24955326 locktype2 = 1 -24955326 locktype3 = 2 -24955327 goalCount = 0 -24955348 goalTotal = 0 -24955348 otherCount = 17 -~~~ -~~~ -24955745 DOWN 10 -24955745 0 1024 -~~~ -~~~ -~~~ -24955771 UP 10 -24955771 waslock = 0 -24955771 512 1024 -~~~ -24955773 homeCount = 22 -24955774 waitCount = 10 -24955774 ripCount = 8 -24955775 locktype1 = 1 -24955775 locktype2 = 1 -24955776 locktype3 = 2 -24955776 goalCount = 0 -24955777 goalTotal = 0 -24955798 otherCount = 17 -~~~ -~~~ -24958679 DOWN 10 -24958679 0 1024 -~~~ -~~~ -~~~ -~~~ -24958701 homeCount = 22 -24958702 waitCount = 10 -24958702 ripCount = 8 -24958703 locktype1 = 1 -24958703 locktype2 = 1 -24958704 locktype3 = 2 -24958704 goalCount = 0 -24958705 goalTotal = 0 -24958705 otherCount = 17 -~~~ -24958730 UP 10 -24958730 waslock = 0 -24958730 512 1024 -24958749 DOWN 10 -24958749 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24958773 homeCount = 22 -24958773 waitCount = 10 -24958774 ripCount = 8 -24958774 locktype1 = 1 -24958775 locktype2 = 1 -24958775 locktype3 = 2 -24958776 goalCount = 0 -24958776 goalTotal = 0 -24958777 otherCount = 17 -~~~ -24960062 UP 11 -24960062 1024 1024 -24961852 DOWN 11 -24961852 0 1024 -24961864 UP 11 -24961864 1024 1024 -24962813 BEEP1 -24962813 BEEP2 -~~~ -~~~ -~~~ -24962837 1024 33555456 -~~~ -24962987 1024 1024 -24963064 DOWN 11 -24963064 0 1024 -24963077 UP 11 -24963077 1024 1024 -~~~ -~~~ -24963504 1024 0 -~~~ -~~~ -24963505 1024 1 -~~~ -~~~ -24963507 1024 3 -~~~ -~~~ -24963509 1024 7 -~~~ -~~~ -24963511 1024 15 -~~~ -~~~ -24963513 1024 31 -~~~ -~~~ -24963514 1024 63 -~~~ -~~~ -24963516 1024 127 -~~~ -~~~ -24963518 1024 255 -24963519 homeCount = 22 -24963520 waitCount = 10 -24963520 ripCount = 9 -24963521 locktype1 = 1 -24963542 locktype2 = 1 -24963542 locktype3 = 2 -24963543 goalCount = 0 -24963543 goalTotal = 0 -24963544 otherCount = 17 -~~~ -24963545 CURRENTGOAL IS [2] -~~~ -24968316 DOWN 11 -24968316 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24968356 homeCount = 22 -24968357 waitCount = 10 -24968357 ripCount = 9 -24968358 locktype1 = 1 -24968358 locktype2 = 1 -24968359 locktype3 = 2 -24968359 goalCount = 0 -24968360 goalTotal = 0 -24968360 otherCount = 17 -~~~ -24968361 CURRENTGOAL IS [2] -~~~ -24968382 UP 11 -24968382 1024 255 -24968404 DOWN 11 -24968404 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24968438 homeCount = 22 -24968439 waitCount = 10 -24968439 ripCount = 9 -24968440 locktype1 = 1 -24968441 locktype2 = 1 -24968441 locktype3 = 2 -24968442 goalCount = 0 -24968442 goalTotal = 0 -24968443 otherCount = 17 -~~~ -24968444 CURRENTGOAL IS [2] -~~~ -24971124 UP 7 -24971124 64 255 -~~~ -~~~ -24971481 DOWN 7 -24971481 0 255 -~~~ -~~~ -24971503 0 254 -~~~ -~~~ -24971505 0 252 -~~~ -~~~ -24971506 0 248 -~~~ -~~~ -24971508 0 240 -~~~ -~~~ -24971510 0 224 -~~~ -~~~ -24971512 0 192 -~~~ -~~~ -24971514 64 128 -~~~ -~~~ -24971515 64 0 -~~~ -~~~ -24971517 64 512 -24971518 homeCount = 22 -24971519 waitCount = 10 -24971519 ripCount = 9 -24971520 locktype1 = 1 -24971541 locktype2 = 1 -24971542 locktype3 = 2 -24971542 goalCount = 0 -24971543 goalTotal = 0 -24971543 otherCount = 18 -~~~ -24972028 DOWN 7 -24972028 0 512 -24972049 64 512 -24972113 DOWN 7 -24972113 0 512 -24978577 UP 10 -24978578 waslock = 0 -24978577 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24978604 512 16777728 -~~~ -24978753 512 512 -24978766 DOWN 10 -24978766 0 512 -~~~ -~~~ -24978786 0 1536 -~~~ -~~~ -24978788 0 1024 -24978789 homeCount = 23 -24978789 waitCount = 10 -24978790 ripCount = 9 -24978790 locktype1 = 1 -24978791 locktype2 = 1 -24978791 locktype3 = 2 -24978792 goalCount = 0 -24978792 goalTotal = 0 -24978793 otherCount = 18 -~~~ -24978850 UP 10 -24978851 waslock = 0 -24978850 512 1024 -~~~ -24978958 DOWN 10 -24978958 0 1024 -24978966 UP 10 -24978966 waslock = 0 -24978966 512 1024 -~~~ -~~~ -~~~ -~~~ -24978988 homeCount = 23 -24978989 waitCount = 10 -24978989 ripCount = 9 -24978990 locktype1 = 1 -24978990 locktype2 = 1 -24978991 locktype3 = 2 -24978991 goalCount = 0 -24978992 goalTotal = 0 -24978992 otherCount = 18 -~~~ -~~~ -24978997 DOWN 10 -24978997 0 1024 -~~~ -~~~ -~~~ -~~~ -24979033 homeCount = 23 -24979034 waitCount = 10 -24979034 ripCount = 9 -24979035 locktype1 = 1 -24979035 locktype2 = 1 -24979036 locktype3 = 2 -24979036 goalCount = 0 -24979037 goalTotal = 0 -24979037 otherCount = 18 -~~~ -24979055 UP 10 -24979055 waslock = 0 -24979055 512 1024 -~~~ -24983166 DOWN 10 -24983166 0 1024 -~~~ -~~~ -~~~ -~~~ -24983190 homeCount = 23 -24983190 waitCount = 10 -24983191 ripCount = 9 -24983191 locktype1 = 1 -24983192 locktype2 = 1 -24983192 locktype3 = 2 -24983193 goalCount = 0 -24983193 goalTotal = 0 -24983194 otherCount = 18 -~~~ -24983202 UP 10 -24983202 waslock = 0 -24983202 512 1024 -~~~ -24983259 DOWN 10 -24983259 0 1024 -~~~ -~~~ -~~~ -~~~ -24983280 homeCount = 23 -24983281 waitCount = 10 -24983281 ripCount = 9 -24983282 locktype1 = 1 -24983282 locktype2 = 1 -24983283 locktype3 = 2 -24983283 goalCount = 0 -24983284 goalTotal = 0 -24983284 otherCount = 18 -~~~ -24992949 UP 10 -24992949 waslock = 0 -24992948 512 1024 -~~~ -24993619 DOWN 10 -24993619 0 1024 -~~~ -~~~ -~~~ -~~~ -24993640 homeCount = 23 -24993641 waitCount = 10 -24993641 ripCount = 9 -24993642 locktype1 = 1 -24993642 locktype2 = 1 -24993643 locktype3 = 2 -24993643 goalCount = 0 -24993644 goalTotal = 0 -24993644 otherCount = 18 -~~~ -24993658 UP 10 -24993658 waslock = 0 -24993658 512 1024 -~~~ -24993819 DOWN 10 -24993819 0 1024 -~~~ -~~~ -~~~ -~~~ -24993845 homeCount = 23 -24993845 waitCount = 10 -24993846 ripCount = 9 -24993846 locktype1 = 1 -24993847 locktype2 = 1 -24993847 locktype3 = 2 -24993848 goalCount = 0 -24993848 goalTotal = 0 -24993849 otherCount = 18 -~~~ -24993855 UP 10 -24993855 waslock = 0 -24993855 512 1024 -~~~ -24994083 DOWN 10 -24994083 0 1024 -~~~ -~~~ -~~~ -~~~ -24994116 homeCount = 23 -24994117 waitCount = 10 -24994117 ripCount = 9 -24994118 locktype1 = 1 -24994118 locktype2 = 1 -24994119 locktype3 = 2 -24994119 goalCount = 0 -24994120 goalTotal = 0 -24994120 otherCount = 18 -~~~ -25014055 UP 10 -25014055 waslock = 0 -25014055 512 1024 -~~~ -25014332 DOWN 10 -25014332 0 1024 -~~~ -~~~ -~~~ -~~~ -25014361 homeCount = 23 -25014361 waitCount = 10 -25014362 ripCount = 9 -25014362 locktype1 = 1 -25014363 locktype2 = 1 -25014363 locktype3 = 2 -25014364 goalCount = 0 -25014364 goalTotal = 0 -25014365 otherCount = 18 -~~~ -25014825 UP 10 -25014825 waslock = 0 -25014825 512 1024 -~~~ -25015812 DOWN 10 -25015812 0 1024 -~~~ -~~~ -~~~ -~~~ -25015841 homeCount = 23 -25015841 waitCount = 10 -25015842 ripCount = 9 -25015842 locktype1 = 1 -25015843 locktype2 = 1 -25015843 locktype3 = 2 -25015844 goalCount = 0 -25015844 goalTotal = 0 -25015845 otherCount = 18 -~~~ -25015866 UP 10 -25015866 waslock = 0 -25015866 512 1024 -~~~ -25015908 DOWN 10 -25015908 0 1024 -~~~ -~~~ -~~~ -~~~ -25015937 homeCount = 23 -25015938 waitCount = 10 -25015938 ripCount = 9 -25015939 locktype1 = 1 -25015940 locktype2 = 1 -25015940 locktype3 = 2 -25015941 goalCount = 0 -25015941 goalTotal = 0 -25015942 otherCount = 18 -~~~ -25026289 UP 11 -25026289 1024 1024 -25027542 DOWN 11 -25027542 0 1024 -25027560 UP 11 -25027560 1024 1024 -25027600 DOWN 11 -25027600 0 1024 -25027621 UP 11 -25027621 1024 1024 -25028239 DOWN 11 -25028239 0 1024 -25028248 UP 11 -25028248 1024 1024 -25028279 DOWN 11 -25028279 0 1024 -25028295 UP 11 -25028295 1024 1024 -25029519 DOWN 11 -25029519 0 1024 -25029539 UP 11 -25029539 1024 1024 -25031039 BEEP1 -25031039 BEEP2 -~~~ -~~~ -~~~ -25031065 1024 33555456 -~~~ -25031215 1024 1024 -25034863 DOWN 11 -25034863 0 1024 -~~~ -~~~ -25034883 0 0 -~~~ -~~~ -25034884 0 1 -~~~ -~~~ -25034886 0 3 -~~~ -~~~ -25034888 0 7 -~~~ -~~~ -25034890 0 15 -~~~ -~~~ -25034892 0 31 -~~~ -~~~ -25034893 0 63 -~~~ -~~~ -25034895 0 127 -~~~ -~~~ -25034897 0 255 -25034898 homeCount = 23 -25034899 waitCount = 10 -25034899 ripCount = 10 -25034900 locktype1 = 1 -25034900 locktype2 = 1 -25034921 locktype3 = 2 -25034922 goalCount = 0 -25034922 goalTotal = 0 -25034923 otherCount = 18 -~~~ -25034924 CURRENTGOAL IS [2] -~~~ -25034924 UP 11 -25034924 1024 255 -25034974 DOWN 11 -25034974 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25035007 homeCount = 23 -25035008 waitCount = 10 -25035008 ripCount = 10 -25035009 locktype1 = 1 -25035010 locktype2 = 1 -25035010 locktype3 = 2 -25035011 goalCount = 0 -25035011 goalTotal = 0 -25035012 otherCount = 18 -~~~ -25035013 CURRENTGOAL IS [2] -~~~ -25037912 UP 8 -25037912 128 255 -~~~ -~~~ -25038494 DOWN 8 -25038494 0 255 -~~~ -~~~ -25038511 0 254 -~~~ -~~~ -25038513 0 252 -~~~ -~~~ -25038514 0 248 -~~~ -~~~ -25038516 0 240 -~~~ -~~~ -25038518 0 224 -~~~ -~~~ -25038520 0 192 -~~~ -~~~ -25038522 0 128 -~~~ -~~~ -25038524 0 0 -~~~ -~~~ -25038525 0 512 -25038526 homeCount = 23 -25038527 waitCount = 10 -25038527 ripCount = 10 -25038528 locktype1 = 1 -25038528 locktype2 = 1 -25038549 locktype3 = 2 -25038550 goalCount = 0 -25038550 goalTotal = 0 -25038551 otherCount = 19 -~~~ -25043144 UP 10 -25043144 waslock = 0 -25043144 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25043167 512 16777728 -~~~ -25043317 512 512 -25043535 DOWN 10 -25043535 0 512 -~~~ -~~~ -25043565 0 2560 -~~~ -~~~ -25043567 0 2048 -25043568 homeCount = 24 -25043568 waitCount = 10 -25043569 ripCount = 10 -25043569 locktype1 = 1 -25043570 locktype2 = 1 -25043570 locktype3 = 2 -25043571 goalCount = 0 -25043571 goalTotal = 0 -25043572 otherCount = 19 -~~~ -25043738 UP 10 -25043738 waslock = 0 -25043738 512 2048 -~~~ -25047500 DOWN 10 -25047500 0 2048 -~~~ -~~~ -25047525 UP 10 -25047526 waslock = 0 -25047525 512 2048 -~~~ -~~~ -25047528 homeCount = 24 -25047528 waitCount = 10 -25047529 ripCount = 10 -25047529 locktype1 = 1 -25047530 locktype2 = 1 -25047530 locktype3 = 2 -25047531 goalCount = 0 -25047531 goalTotal = 0 -25047552 otherCount = 19 -~~~ -~~~ -25047584 DOWN 10 -25047584 0 2048 -~~~ -~~~ -~~~ -~~~ -25047608 homeCount = 24 -25047608 waitCount = 10 -25047609 ripCount = 10 -25047609 locktype1 = 1 -25047610 locktype2 = 1 -25047610 locktype3 = 2 -25047611 goalCount = 0 -25047611 goalTotal = 0 -25047612 otherCount = 19 -~~~ -25052125 UP 12 -25052125 2048 2048 -25054402 DOWN 12 -25054401 0 2048 -25054425 UP 12 -25054425 2048 2048 -25054523 DOWN 12 -25054523 0 2048 -25054564 UP 12 -25054564 2048 2048 -25054625 CLICK1 -25054625 CLICK2 -~~~ -~~~ -~~~ -25054647 2048 67110912 -~~~ -25054797 2048 2048 -25060172 DOWN 12 -25060172 0 2048 -25060192 UP 12 -25060192 2048 2048 -~~~ -~~~ -25060196 2048 0 -~~~ -~~~ -25060198 2048 1 -~~~ -~~~ -25060199 2048 3 -~~~ -~~~ -25060201 2048 7 -~~~ -~~~ -25060203 2048 15 -~~~ -~~~ -25060205 2048 31 -~~~ -~~~ -25060207 2048 63 -~~~ -~~~ -25060209 2048 127 -~~~ -~~~ -25060210 2048 255 -25060211 homeCount = 24 -25060212 waitCount = 11 -25060213 ripCount = 10 -25060213 locktype1 = 1 -25060234 locktype2 = 1 -25060235 locktype3 = 2 -25060235 goalCount = 0 -25060236 goalTotal = 0 -25060236 otherCount = 19 -~~~ -25060237 CURRENTGOAL IS [2] -~~~ -25060249 DOWN 12 -25060249 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25060289 homeCount = 24 -25060289 waitCount = 11 -25060290 ripCount = 10 -25060290 locktype1 = 1 -25060291 locktype2 = 1 -25060291 locktype3 = 2 -25060292 goalCount = 0 -25060292 goalTotal = 0 -25060293 otherCount = 19 -~~~ -25060294 CURRENTGOAL IS [2] -~~~ -25063141 UP 3 -25063141 4 255 -~~~ -~~~ -25063547 DOWN 3 -25063547 0 255 -~~~ -~~~ -25063565 0 254 -~~~ -~~~ -25063567 0 252 -~~~ -~~~ -25063569 0 248 -~~~ -~~~ -25063570 0 240 -~~~ -~~~ -25063572 0 224 -~~~ -~~~ -25063574 0 192 -~~~ -~~~ -25063576 0 128 -~~~ -~~~ -25063578 0 0 -~~~ -~~~ -25063580 0 512 -25063581 homeCount = 24 -25063581 waitCount = 11 -25063582 ripCount = 10 -25063582 locktype1 = 1 -25063603 locktype2 = 1 -25063604 locktype3 = 2 -25063604 goalCount = 0 -25063605 goalTotal = 0 -25063605 otherCount = 20 -~~~ -25067425 UP 10 -25067425 waslock = 0 -25067425 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25067452 512 16777728 -~~~ -25067602 512 512 -25067687 DOWN 10 -25067687 0 512 -~~~ -~~~ -25067706 0 1536 -~~~ -~~~ -25067708 0 1024 -25067709 homeCount = 25 -25067710 waitCount = 11 -25067710 ripCount = 10 -25067711 locktype1 = 1 -25067711 locktype2 = 1 -25067712 locktype3 = 2 -25067712 goalCount = 0 -25067713 goalTotal = 0 -25067713 otherCount = 20 -~~~ -25067735 UP 10 -25067735 waslock = 0 -25067735 512 1024 -~~~ -25071823 DOWN 10 -25071823 0 1024 -~~~ -~~~ -~~~ -~~~ -25071852 homeCount = 25 -25071853 waitCount = 11 -25071853 ripCount = 10 -25071854 locktype1 = 1 -25071854 locktype2 = 1 -25071855 locktype3 = 2 -25071855 goalCount = 0 -25071856 goalTotal = 0 -25071856 otherCount = 20 -~~~ -25073297 UP 11 -25073297 1024 1024 -25075903 DOWN 11 -25075903 0 1024 -25075949 UP 11 -25075949 1024 1024 -25076047 BEEP1 -25076047 BEEP2 -~~~ -~~~ -~~~ -25076076 1024 33555456 -~~~ -25076226 1024 1024 -25080864 DOWN 11 -25080864 0 1024 -25080887 UP 11 -25080887 1024 1024 -~~~ -~~~ -25080891 1024 0 -~~~ -~~~ -25080892 1024 1 -~~~ -~~~ -25080894 1024 3 -~~~ -~~~ -25080896 1024 7 -~~~ -~~~ -25080898 1024 15 -~~~ -~~~ -25080900 1024 31 -~~~ -~~~ -25080901 1024 63 -~~~ -~~~ -25080903 1024 127 -~~~ -~~~ -25080905 1024 255 -25080906 homeCount = 25 -25080907 waitCount = 11 -25080907 ripCount = 11 -25080928 locktype1 = 1 -25080929 locktype2 = 1 -25080929 locktype3 = 2 -25080930 goalCount = 0 -25080930 goalTotal = 0 -25080931 otherCount = 20 -~~~ -25080932 CURRENTGOAL IS [2] -~~~ -25080976 DOWN 11 -25080976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25081015 homeCount = 25 -25081015 waitCount = 11 -25081016 ripCount = 11 -25081016 locktype1 = 1 -25081017 locktype2 = 1 -25081018 locktype3 = 2 -25081018 goalCount = 0 -25081018 goalTotal = 0 -25081019 otherCount = 20 -~~~ -25081020 CURRENTGOAL IS [2] -~~~ -25084278 UP 6 -25084278 32 255 -~~~ -~~~ -25085001 DOWN 6 -25085001 0 255 -25085013 32 255 -~~~ -~~~ -25085032 32 254 -~~~ -~~~ -25085034 32 252 -~~~ -~~~ -25085036 32 248 -~~~ -~~~ -25085037 32 240 -~~~ -~~~ -25085039 32 224 -~~~ -~~~ -25085041 32 192 -~~~ -~~~ -25085043 32 128 -~~~ -~~~ -25085045 32 0 -~~~ -~~~ -25085047 32 512 -25085048 homeCount = 25 -25085048 waitCount = 11 -25085049 ripCount = 11 -25085049 locktype1 = 1 -25085070 locktype2 = 1 -25085070 locktype3 = 2 -25085071 goalCount = 0 -25085071 goalTotal = 0 -25085072 otherCount = 21 -~~~ -25085490 DOWN 6 -25085490 0 512 -25089559 UP 10 -25089560 waslock = 0 -25089559 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25089592 512 16777728 -~~~ -25089594 DOWN 10 -25089594 0 16777728 -~~~ -~~~ -25089613 0 16779776 -~~~ -~~~ -25089615 0 16779264 -25089616 homeCount = 26 -25089616 waitCount = 11 -25089617 ripCount = 11 -25089617 locktype1 = 1 -25089618 locktype2 = 1 -25089618 locktype3 = 2 -25089619 goalCount = 0 -25089619 goalTotal = 0 -25089620 otherCount = 21 -~~~ -25089742 0 2048 -25089753 UP 10 -25089753 waslock = 0 -25089753 512 2048 -~~~ -25090106 DOWN 10 -25090106 0 2048 -~~~ -~~~ -~~~ -~~~ -25090129 homeCount = 26 -25090129 waitCount = 11 -25090130 ripCount = 11 -25090130 locktype1 = 1 -25090131 locktype2 = 1 -25090131 locktype3 = 2 -25090132 goalCount = 0 -25090132 goalTotal = 0 -25090133 otherCount = 21 -~~~ -25090343 UP 10 -25090344 waslock = 0 -25090343 512 2048 -~~~ -25093735 DOWN 10 -25093735 0 2048 -~~~ -~~~ -~~~ -25093757 UP 10 -25093757 waslock = 0 -25093757 512 2048 -~~~ -25093759 homeCount = 26 -25093759 waitCount = 11 -25093760 ripCount = 11 -25093760 locktype1 = 1 -25093761 locktype2 = 1 -25093761 locktype3 = 2 -25093762 goalCount = 0 -25093762 goalTotal = 0 -25093763 otherCount = 21 -~~~ -~~~ -25093831 DOWN 10 -25093831 0 2048 -~~~ -~~~ -~~~ -~~~ -25093859 homeCount = 26 -25093859 waitCount = 11 -25093860 ripCount = 11 -25093860 locktype1 = 1 -25093861 locktype2 = 1 -25093861 locktype3 = 2 -25093862 goalCount = 0 -25093862 goalTotal = 0 -25093863 otherCount = 21 -~~~ -25095923 UP 12 -25095923 2048 2048 -25099423 CLICK1 -25099423 CLICK2 -~~~ -~~~ -~~~ -25099447 2048 67110912 -~~~ -25099548 DOWN 12 -25099548 0 67110912 -25099570 UP 12 -25099570 2048 67110912 -25099596 2048 2048 -~~~ -~~~ -25099615 2048 0 -~~~ -~~~ -25099616 2048 1 -~~~ -~~~ -25099618 2048 3 -~~~ -~~~ -25099620 2048 7 -~~~ -~~~ -25099622 2048 15 -~~~ -~~~ -25099624 2048 31 -~~~ -~~~ -25099625 2048 63 -~~~ -~~~ -25099627 2048 127 -~~~ -~~~ -25099629 2048 255 -25099630 homeCount = 26 -25099631 waitCount = 12 -25099631 ripCount = 11 -25099652 locktype1 = 1 -25099653 locktype2 = 1 -25099653 locktype3 = 2 -25099654 goalCount = 0 -25099654 goalTotal = 0 -25099655 otherCount = 21 -~~~ -25099656 CURRENTGOAL IS [2] -~~~ -25103441 DOWN 12 -25103441 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25103483 homeCount = 26 -25103484 waitCount = 12 -25103484 ripCount = 11 -25103485 locktype1 = 1 -25103485 locktype2 = 1 -25103486 locktype3 = 2 -25103486 goalCount = 0 -25103487 goalTotal = 0 -25103487 otherCount = 21 -~~~ -25103488 CURRENTGOAL IS [2] -~~~ -25107617 UP 2 -25107617 2 255 -~~~ -~~~ -25107640 outer reward -~~~ -25107640 2 131327 -~~~ -~~~ -25108090 2 255 -25108090 DOWN 2 -25108090 0 255 -~~~ -~~~ -25108124 0 254 -~~~ -~~~ -25108126 0 252 -~~~ -~~~ -25108128 0 248 -~~~ -~~~ -25108129 0 240 -~~~ -~~~ -25108131 0 224 -~~~ -~~~ -25108133 0 192 -~~~ -~~~ -25108135 0 128 -~~~ -~~~ -25108137 0 0 -~~~ -~~~ -25108139 0 512 -25108139 homeCount = 26 -25108140 waitCount = 12 -25108141 ripCount = 11 -25108141 locktype1 = 1 -25108162 locktype2 = 1 -25108163 locktype3 = 2 -25108163 goalCount = 1 -25108164 goalTotal = 1 -25108164 otherCount = 21 -~~~ -25108165 2 512 -25108303 DOWN 2 -25108303 0 512 -25108337 2 512 -25108404 DOWN 2 -25108404 0 512 -25108444 2 512 -25108534 DOWN 2 -25108534 0 512 -25108561 2 512 -25108675 DOWN 2 -25108675 0 512 -25108681 2 512 -25108797 DOWN 2 -25108797 0 512 -25108808 2 512 -25108923 DOWN 2 -25108923 0 512 -25108940 2 512 -25109063 DOWN 2 -25109063 0 512 -25109079 2 512 -25109213 DOWN 2 -25109213 0 512 -25109221 2 512 -25111989 DOWN 2 -25111989 0 512 -25111997 2 512 -25112095 DOWN 2 -25112095 0 512 -25112143 2 512 -25112170 DOWN 2 -25112170 0 512 -25112175 2 512 -25112334 DOWN 2 -25112334 0 512 -25112350 2 512 -25112437 DOWN 2 -25112437 0 512 -25112458 2 512 -25112510 DOWN 2 -25112510 0 512 -25112516 2 512 -25112519 DOWN 2 -25112519 0 512 -25112525 2 512 -25112616 DOWN 2 -25112616 0 512 -25112644 2 512 -25112863 DOWN 2 -25112863 0 512 -25112875 2 512 -25112908 DOWN 2 -25112908 0 512 -25112924 2 512 -25112973 DOWN 2 -25112973 0 512 -25112985 2 512 -25113064 DOWN 2 -25113064 0 512 -25113068 2 512 -25113165 DOWN 2 -25113165 0 512 -25113182 2 512 -25113240 DOWN 2 -25113240 0 512 -25113268 2 512 -25113362 DOWN 2 -25113362 0 512 -25113405 2 512 -25113427 DOWN 2 -25113427 0 512 -25113453 2 512 -25113486 DOWN 2 -25113486 0 512 -25113492 2 512 -25113607 DOWN 2 -25113607 0 512 -25113626 2 512 -25114161 DOWN 2 -25114161 0 512 -25114185 2 512 -25114363 DOWN 2 -25114363 0 512 -25114372 2 512 -25114757 DOWN 2 -25114757 0 512 -25114769 2 512 -25114897 DOWN 2 -25114897 0 512 -25114923 2 512 -25115469 DOWN 2 -25115469 0 512 -25115493 2 512 -25115664 DOWN 2 -25115664 0 512 -25115679 2 512 -25118445 DOWN 2 -25118445 0 512 -25118505 2 512 -25118523 DOWN 2 -25118523 0 512 -25123502 UP 10 -25123502 waslock = 0 -25123502 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25123535 512 16777728 -~~~ -25123685 512 512 -25123787 DOWN 10 -25123787 0 512 -~~~ -~~~ -25123809 0 2560 -~~~ -~~~ -25123811 0 2048 -25123812 homeCount = 27 -25123812 waitCount = 12 -25123813 ripCount = 11 -25123813 locktype1 = 1 -25123814 locktype2 = 1 -25123814 locktype3 = 2 -25123815 goalCount = 1 -25123815 goalTotal = 1 -25123816 otherCount = 21 -~~~ -25123946 UP 10 -25123946 waslock = 0 -25123946 512 2048 -~~~ -25128830 DOWN 10 -25128830 0 2048 -~~~ -~~~ -~~~ -~~~ -25128851 homeCount = 27 -25128852 waitCount = 12 -25128852 ripCount = 11 -25128853 locktype1 = 1 -25128853 locktype2 = 1 -25128854 locktype3 = 2 -25128854 goalCount = 1 -25128855 goalTotal = 1 -25128855 otherCount = 21 -~~~ -25130706 UP 12 -25130706 2048 2048 -25132114 DOWN 12 -25132114 0 2048 -25132126 UP 12 -25132126 2048 2048 -25133707 CLICK1 -25133707 CLICK2 -~~~ -~~~ -~~~ -25133732 2048 67110912 -~~~ -25133881 2048 2048 -25138417 DOWN 12 -25138417 0 2048 -~~~ -~~~ -25138438 0 0 -~~~ -~~~ -25138440 0 1 -~~~ -~~~ -25138441 0 3 -~~~ -~~~ -25138443 0 7 -~~~ -~~~ -25138445 0 15 -~~~ -~~~ -25138447 0 31 -~~~ -~~~ -25138449 0 63 -~~~ -~~~ -25138451 0 127 -~~~ -~~~ -25138452 0 255 -25138453 homeCount = 27 -25138454 waitCount = 13 -25138454 ripCount = 11 -25138455 locktype1 = 1 -25138456 locktype2 = 1 -25138476 locktype3 = 2 -25138477 goalCount = 1 -25138477 goalTotal = 1 -25138478 otherCount = 21 -~~~ -25138479 CURRENTGOAL IS [2] -~~~ -25138480 UP 12 -25138479 2048 255 -25138526 DOWN 12 -25138526 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25138567 homeCount = 27 -25138567 waitCount = 13 -25138568 ripCount = 11 -25138568 locktype1 = 1 -25138569 locktype2 = 1 -25138569 locktype3 = 2 -25138570 goalCount = 1 -25138570 goalTotal = 1 -25138571 otherCount = 21 -~~~ -25138572 CURRENTGOAL IS [2] -~~~ -25142186 UP 2 -25142186 2 255 -~~~ -~~~ -25142212 outer reward -~~~ -25142212 2 131327 -~~~ -~~~ -25142409 DOWN 2 -25142409 0 131327 -~~~ -~~~ -25142429 0 131326 -~~~ -~~~ -25142431 0 131324 -~~~ -~~~ -25142433 0 131320 -~~~ -~~~ -25142435 0 131312 -~~~ -~~~ -25142437 0 131296 -~~~ -~~~ -25142438 0 131264 -~~~ -~~~ -25142440 0 131200 -~~~ -~~~ -25142442 0 131072 -~~~ -~~~ -25142444 0 131584 -25142445 homeCount = 27 -25142445 waitCount = 13 -25142446 ripCount = 11 -25142467 locktype1 = 1 -25142467 locktype2 = 1 -25142468 locktype3 = 2 -25142468 goalCount = 2 -25142469 goalTotal = 2 -25142469 otherCount = 21 -~~~ -25142514 2 131584 -25142662 2 512 -25142890 DOWN 2 -25142890 0 512 -25142916 2 512 -25143005 DOWN 2 -25143005 0 512 -25143054 2 512 -25143131 DOWN 2 -25143131 0 512 -25143167 2 512 -25143275 DOWN 2 -25143275 0 512 -25143289 2 512 -25143415 DOWN 2 -25143415 0 512 -25143426 2 512 -25143556 DOWN 2 -25143556 0 512 -25143574 2 512 -25143700 DOWN 2 -25143700 0 512 -25143717 2 512 -25143855 DOWN 2 -25143855 0 512 -25143873 2 512 -25145835 DOWN 2 -25145835 0 512 -25145862 2 512 -25146013 DOWN 2 -25146013 0 512 -25146025 2 512 -25146180 DOWN 2 -25146180 0 512 -25146196 2 512 -25146245 DOWN 2 -25146245 0 512 -25146262 2 512 -25146416 DOWN 2 -25146416 0 512 -25146444 2 512 -25146594 DOWN 2 -25146594 0 512 -25146604 2 512 -25146772 DOWN 2 -25146772 0 512 -25146776 2 512 -25146903 DOWN 2 -25146903 0 512 -25146914 2 512 -25147108 DOWN 2 -25147108 0 512 -25147157 2 512 -25147264 DOWN 2 -25147264 0 512 -25147283 2 512 -25147322 DOWN 2 -25147322 0 512 -25147326 2 512 -25147510 DOWN 2 -25147510 0 512 -25147517 2 512 -25149784 DOWN 2 -25149784 0 512 -25149798 2 512 -25149902 DOWN 2 -25149902 0 512 -25154660 UP 10 -25154660 waslock = 0 -25154660 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25154687 512 16777728 -~~~ -25154837 512 512 -25154873 DOWN 10 -25154873 0 512 -~~~ -~~~ -25154890 0 1536 -~~~ -~~~ -25154892 0 1024 -25154893 homeCount = 28 -25154893 waitCount = 13 -25154894 ripCount = 11 -25154894 locktype1 = 1 -25154895 locktype2 = 1 -25154895 locktype3 = 2 -25154896 goalCount = 2 -25154896 goalTotal = 2 -25154897 otherCount = 21 -~~~ -25154918 UP 10 -25154919 waslock = 0 -25154918 512 1024 -~~~ -25159969 DOWN 10 -25159969 0 1024 -~~~ -~~~ -~~~ -~~~ -25159992 homeCount = 28 -25159992 waitCount = 13 -25159993 ripCount = 11 -25159993 locktype1 = 1 -25159994 locktype2 = 1 -25159994 locktype3 = 2 -25159995 goalCount = 2 -25159995 goalTotal = 2 -25159996 otherCount = 21 -~~~ -25161799 UP 11 -25161799 1024 1024 -25164091 DOWN 11 -25164091 0 1024 -25164144 UP 11 -25164144 1024 1024 -25164160 DOWN 11 -25164160 0 1024 -25164179 UP 11 -25164179 1024 1024 -25164800 BEEP1 -25164800 BEEP2 -~~~ -~~~ -~~~ -25164824 1024 33555456 -~~~ -25164974 1024 1024 -25169371 DOWN 11 -25169371 0 1024 -~~~ -~~~ -25169390 0 0 -~~~ -~~~ -25169392 0 1 -~~~ -~~~ -25169394 0 3 -~~~ -~~~ -25169396 0 7 -~~~ -~~~ -25169398 0 15 -~~~ -~~~ -25169400 0 31 -~~~ -~~~ -25169401 0 63 -~~~ -~~~ -25169403 0 127 -~~~ -~~~ -25169405 0 255 -25169406 homeCount = 28 -25169407 waitCount = 13 -25169407 ripCount = 12 -25169408 locktype1 = 1 -25169408 locktype2 = 1 -25169429 locktype3 = 2 -25169430 goalCount = 2 -25169430 goalTotal = 2 -25169431 otherCount = 21 -~~~ -25169432 CURRENTGOAL IS [2] -~~~ -25169432 UP 11 -25169432 1024 255 -25171560 DOWN 11 -25171560 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25171599 homeCount = 28 -25171599 waitCount = 13 -25171600 ripCount = 12 -25171600 locktype1 = 1 -25171601 locktype2 = 1 -25171601 locktype3 = 2 -25171602 goalCount = 2 -25171602 goalTotal = 2 -25171603 otherCount = 21 -~~~ -25171604 CURRENTGOAL IS [2] -~~~ -25175596 UP 2 -25175596 2 255 -~~~ -~~~ -25175623 outer reward -~~~ -25175624 2 131327 -~~~ -~~~ -25175843 DOWN 2 -25175843 0 131327 -~~~ -~~~ -25175862 0 131326 -~~~ -~~~ -25175863 0 131324 -~~~ -~~~ -25175865 0 131320 -~~~ -~~~ -25175867 0 131312 -~~~ -~~~ -25175869 0 131296 -~~~ -~~~ -25175871 0 131264 -~~~ -~~~ -25175872 0 131200 -~~~ -~~~ -25175874 0 131072 -~~~ -~~~ -25175876 0 131584 -25175877 homeCount = 28 -25175878 waitCount = 13 -25175878 ripCount = 12 -25175899 locktype1 = 1 -25175899 locktype2 = 1 -25175900 locktype3 = 2 -25175900 goalCount = 3 -25175901 goalTotal = 3 -25175901 otherCount = 21 -~~~ -25175912 2 131584 -25176073 2 512 -25176303 DOWN 2 -25176303 0 512 -25176332 2 512 -25176429 DOWN 2 -25176428 0 512 -25176458 2 512 -25176562 DOWN 2 -25176562 0 512 -25176589 2 512 -25176708 DOWN 2 -25176707 0 512 -25176725 2 512 -25176848 DOWN 2 -25176848 0 512 -25176866 2 512 -25176998 DOWN 2 -25176998 0 512 -25177012 2 512 -25177155 DOWN 2 -25177155 0 512 -25177160 2 512 -25179505 DOWN 2 -25179505 0 512 -25179517 2 512 -25179928 DOWN 2 -25179928 0 512 -25179960 2 512 -25180105 DOWN 2 -25180105 0 512 -25180114 2 512 -25180168 DOWN 2 -25180168 0 512 -25180175 2 512 -25180180 DOWN 2 -25180180 0 512 -25180183 2 512 -25180269 DOWN 2 -25180269 0 512 -25180276 2 512 -25180707 DOWN 2 -25180707 0 512 -25180712 2 512 -25180718 DOWN 2 -25180718 0 512 -25180730 2 512 -25180907 DOWN 2 -25180907 0 512 -25180911 2 512 -25180916 DOWN 2 -25180916 0 512 -25180927 2 512 -25181086 DOWN 2 -25181086 0 512 -25181088 2 512 -25181094 DOWN 2 -25181094 0 512 -25181102 2 512 -25182687 DOWN 2 -25182687 0 512 -25182694 2 512 -25182785 DOWN 2 -25182785 0 512 -25188753 UP 10 -25188754 waslock = 0 -25188753 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25188782 512 16777728 -~~~ -25188784 DOWN 10 -25188784 0 16777728 -~~~ -~~~ -25188799 0 16779776 -~~~ -~~~ -25188801 0 16779264 -25188802 homeCount = 29 -25188803 waitCount = 13 -25188803 ripCount = 12 -25188804 locktype1 = 1 -25188804 locktype2 = 1 -25188805 locktype3 = 2 -25188805 goalCount = 3 -25188806 goalTotal = 3 -25188806 otherCount = 21 -~~~ -25188827 UP 10 -25188827 waslock = 0 -25188827 512 16779264 -~~~ -25188932 512 2048 -25188960 DOWN 10 -25188960 0 2048 -25188979 UP 10 -25188980 waslock = 0 -25188979 512 2048 -~~~ -~~~ -~~~ -~~~ -25188986 homeCount = 29 -25188987 waitCount = 13 -25188987 ripCount = 12 -25188988 locktype1 = 1 -25188988 locktype2 = 1 -25188989 locktype3 = 2 -25188989 goalCount = 3 -25188990 goalTotal = 3 -25188990 otherCount = 21 -~~~ -~~~ -25193421 DOWN 10 -25193421 0 2048 -~~~ -~~~ -~~~ -~~~ -25193442 homeCount = 29 -25193442 waitCount = 13 -25193443 ripCount = 12 -25193443 locktype1 = 1 -25193444 locktype2 = 1 -25193444 locktype3 = 2 -25193445 goalCount = 3 -25193445 goalTotal = 3 -25193446 otherCount = 21 -~~~ -25195698 UP 12 -25195698 2048 2048 -25198392 DOWN 12 -25198392 0 2048 -25198421 UP 12 -25198421 2048 2048 -25198445 DOWN 12 -25198445 0 2048 -25198456 UP 12 -25198456 2048 2048 -25198532 DOWN 12 -25198532 0 2048 -25198548 UP 12 -25198548 2048 2048 -25201743 DOWN 12 -25201743 0 2048 -25201782 UP 12 -25201782 2048 2048 -25203699 CLICK1 -25203699 CLICK2 -~~~ -~~~ -~~~ -25203727 2048 67110912 -~~~ -25203877 2048 2048 -25209218 DOWN 12 -25209218 0 2048 -~~~ -~~~ -25209234 0 0 -~~~ -~~~ -25209236 0 1 -~~~ -~~~ -25209238 0 3 -~~~ -~~~ -25209240 0 7 -~~~ -~~~ -25209241 0 15 -~~~ -~~~ -25209243 0 31 -~~~ -~~~ -25209245 0 63 -~~~ -~~~ -25209247 0 127 -~~~ -~~~ -25209249 0 255 -25209250 homeCount = 29 -25209250 waitCount = 14 -25209251 ripCount = 12 -25209251 locktype1 = 1 -25209252 locktype2 = 1 -25209273 locktype3 = 2 -25209273 goalCount = 3 -25209274 goalTotal = 3 -25209274 otherCount = 21 -~~~ -25209275 CURRENTGOAL IS [2] -~~~ -25209277 UP 12 -25209277 2048 255 -25209310 DOWN 12 -25209310 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25209342 homeCount = 29 -25209342 waitCount = 14 -25209343 ripCount = 12 -25209343 locktype1 = 1 -25209344 locktype2 = 1 -25209344 locktype3 = 2 -25209345 goalCount = 3 -25209345 goalTotal = 3 -25209346 otherCount = 21 -~~~ -25209347 CURRENTGOAL IS [2] -~~~ -25224023 UP 2 -25224023 2 255 -~~~ -~~~ -25224050 outer reward -~~~ -25224051 2 131327 -~~~ -~~~ -25224076 DOWN 2 -25224076 0 131327 -~~~ -~~~ -25224097 0 131326 -~~~ -~~~ -25224098 0 131324 -~~~ -~~~ -25224100 0 131320 -~~~ -~~~ -25224102 0 131312 -~~~ -~~~ -25224104 0 131296 -~~~ -~~~ -25224106 0 131264 -~~~ -~~~ -25224107 0 131200 -~~~ -~~~ -25224109 0 131072 -~~~ -~~~ -25224111 0 131584 -25224112 homeCount = 29 -25224113 waitCount = 14 -25224113 ripCount = 12 -25224134 locktype1 = 1 -25224134 locktype2 = 1 -25224135 locktype3 = 2 -25224135 goalCount = 4 -25224136 goalTotal = 4 -25224136 otherCount = 21 -~~~ -25224137 2 131584 -25224348 DOWN 2 -25224348 0 131584 -25224404 2 131584 -25224500 2 512 -25224662 DOWN 2 -25224662 0 512 -25224678 2 512 -25224773 DOWN 2 -25224773 0 512 -25224805 2 512 -25224898 DOWN 2 -25224898 0 512 -25224928 2 512 -25225017 DOWN 2 -25225017 0 512 -25225059 2 512 -25225149 DOWN 2 -25225149 0 512 -25225185 2 512 -25225285 DOWN 2 -25225285 0 512 -25225318 2 512 -25225427 DOWN 2 -25225427 0 512 -25225455 2 512 -25225579 DOWN 2 -25225579 0 512 -25225598 2 512 -25225730 DOWN 2 -25225730 0 512 -25225749 2 512 -25226040 DOWN 2 -25226040 0 512 -25226046 2 512 -25228169 DOWN 2 -25228169 0 512 -25228174 2 512 -25228345 DOWN 2 -25228345 0 512 -25228356 2 512 -25228509 DOWN 2 -25228509 0 512 -25228532 2 512 -25230264 DOWN 2 -25230264 0 512 -25230289 2 512 -25230334 DOWN 2 -25230334 0 512 -25234295 UP 10 -25234295 waslock = 0 -25234295 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25234324 512 16777728 -~~~ -25234474 512 512 -25234489 DOWN 10 -25234488 0 512 -25234502 UP 10 -25234503 waslock = 0 -25234502 512 512 -~~~ -~~~ -25234510 512 2560 -~~~ -~~~ -25234511 512 2048 -25234512 homeCount = 30 -25234513 waitCount = 14 -25234514 ripCount = 12 -25234514 locktype1 = 1 -25234515 locktype2 = 1 -25234515 locktype3 = 2 -25234516 goalCount = 4 -25234516 goalTotal = 4 -25234517 otherCount = 21 -~~~ -~~~ -25238280 DOWN 10 -25238280 0 2048 -~~~ -~~~ -~~~ -~~~ -25238301 homeCount = 30 -25238301 waitCount = 14 -25238302 ripCount = 12 -25238302 locktype1 = 1 -25238303 locktype2 = 1 -25238303 locktype3 = 2 -25238304 goalCount = 4 -25238304 goalTotal = 4 -25238305 otherCount = 21 -~~~ -25239988 UP 12 -25239988 2048 2048 -25248189 DOWN 12 -25248189 0 2048 -25248207 UP 12 -25248207 2048 2048 -25248906 DOWN 12 -25248906 0 2048 -25248913 UP 12 -25248913 2048 2048 -25248988 CLICK1 -25248988 CLICK2 -~~~ -~~~ -~~~ -25249009 2048 67110912 -~~~ -25249159 2048 2048 -25254041 DOWN 12 -25254041 0 2048 -~~~ -~~~ -25254067 0 0 -~~~ -~~~ -25254068 0 1 -~~~ -~~~ -25254070 0 3 -~~~ -~~~ -25254072 0 7 -~~~ -~~~ -25254074 0 15 -~~~ -~~~ -25254076 0 31 -~~~ -~~~ -25254077 0 63 -~~~ -~~~ -25254079 0 127 -~~~ -~~~ -25254081 0 255 -25254082 homeCount = 30 -25254083 waitCount = 15 -25254083 ripCount = 12 -25254084 locktype1 = 1 -25254084 locktype2 = 1 -25254105 locktype3 = 2 -25254106 goalCount = 4 -25254106 goalTotal = 4 -25254107 otherCount = 21 -~~~ -25254108 CURRENTGOAL IS [2] -~~~ -25254108 UP 12 -25254108 2048 255 -25254169 DOWN 12 -25254169 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25254205 homeCount = 30 -25254206 waitCount = 15 -25254206 ripCount = 12 -25254207 locktype1 = 1 -25254207 locktype2 = 1 -25254208 locktype3 = 2 -25254208 goalCount = 4 -25254209 goalTotal = 4 -25254209 otherCount = 21 -~~~ -25254211 CURRENTGOAL IS [2] -~~~ -25258239 UP 2 -25258239 2 255 -~~~ -~~~ -25258262 outer reward -~~~ -25258263 2 131327 -~~~ -~~~ -25258296 DOWN 2 -25258296 0 131327 -~~~ -~~~ -25258319 0 131326 -~~~ -~~~ -25258321 0 131324 -~~~ -~~~ -25258323 0 131320 -~~~ -~~~ -25258325 0 131312 -~~~ -~~~ -25258326 0 131296 -~~~ -~~~ -25258328 0 131264 -~~~ -~~~ -25258330 2 131200 -~~~ -~~~ -25258332 2 131072 -~~~ -~~~ -25258334 2 131584 -25258335 homeCount = 30 -25258335 waitCount = 15 -25258336 ripCount = 12 -25258357 locktype1 = 1 -25258357 locktype2 = 1 -25258358 locktype3 = 2 -25258358 goalCount = 5 -25258359 goalTotal = 5 -25258359 otherCount = 21 -~~~ -25258494 DOWN 2 -25258494 0 131584 -25258540 2 131584 -25258712 2 512 -25258902 DOWN 2 -25258902 0 512 -25258920 2 512 -25259017 DOWN 2 -25259017 0 512 -25259045 2 512 -25259135 DOWN 2 -25259135 0 512 -25259172 2 512 -25259262 DOWN 2 -25259262 0 512 -25259297 2 512 -25259389 DOWN 2 -25259389 0 512 -25259433 2 512 -25259522 DOWN 2 -25259522 0 512 -25259562 2 512 -25259655 DOWN 2 -25259655 0 512 -25259693 2 512 -25259792 DOWN 2 -25259792 0 512 -25259825 2 512 -25259938 DOWN 2 -25259938 0 512 -25259963 2 512 -25260096 DOWN 2 -25260096 0 512 -25260109 2 512 -25260255 DOWN 2 -25260255 0 512 -25260267 2 512 -25260407 DOWN 2 -25260407 0 512 -25260417 2 512 -25260562 DOWN 2 -25260562 0 512 -25260572 2 512 -25264430 DOWN 2 -25264430 0 512 -25264465 2 512 -25264520 DOWN 2 -25264520 0 512 -25268595 UP 10 -25268595 waslock = 0 -25268595 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25268618 512 16777728 -~~~ -25268768 512 512 -25268819 DOWN 10 -25268819 0 512 -25268840 UP 10 -25268840 waslock = 0 -25268839 512 512 -~~~ -~~~ -25268846 512 1536 -~~~ -~~~ -25268848 512 1024 -25268849 homeCount = 31 -25268850 waitCount = 15 -25268850 ripCount = 12 -25268851 locktype1 = 1 -25268851 locktype2 = 1 -25268852 locktype3 = 2 -25268852 goalCount = 5 -25268853 goalTotal = 5 -25268853 otherCount = 21 -~~~ -~~~ -25271996 DOWN 10 -25271996 0 1024 -~~~ -~~~ -~~~ -~~~ -25272015 homeCount = 31 -25272015 waitCount = 15 -25272016 ripCount = 12 -25272016 locktype1 = 1 -25272017 locktype2 = 1 -25272017 locktype3 = 2 -25272018 goalCount = 5 -25272018 goalTotal = 5 -25272019 otherCount = 21 -~~~ -25273511 UP 11 -25273511 1024 1024 -25275924 DOWN 11 -25275924 0 1024 -25275938 UP 11 -25275938 1024 1024 -25277719 DOWN 11 -25277719 0 1024 -25277728 UP 11 -25277728 1024 1024 -25280511 BEEP1 -25280511 BEEP2 -~~~ -~~~ -~~~ -25280536 1024 33555456 -~~~ -25280686 1024 1024 -25285951 DOWN 11 -25285951 0 1024 -~~~ -~~~ -25285973 0 0 -~~~ -~~~ -25285975 0 1 -~~~ -~~~ -25285976 0 3 -~~~ -~~~ -25285978 0 7 -~~~ -~~~ -25285980 0 15 -~~~ -~~~ -25285982 0 31 -~~~ -~~~ -25285984 0 63 -~~~ -~~~ -25285986 0 127 -~~~ -~~~ -25285987 0 255 -25285988 homeCount = 31 -25285989 waitCount = 15 -25285990 ripCount = 13 -25285990 locktype1 = 1 -25285991 locktype2 = 1 -25286011 locktype3 = 2 -25286012 goalCount = 5 -25286012 goalTotal = 5 -25286013 otherCount = 21 -~~~ -25286014 CURRENTGOAL IS [2] -~~~ -25286014 UP 11 -25286014 1024 255 -25288352 DOWN 11 -25288352 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288383 UP 11 -25288383 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288393 homeCount = 31 -25288394 waitCount = 15 -25288394 ripCount = 13 -25288395 locktype1 = 1 -25288395 locktype2 = 1 -25288396 locktype3 = 2 -25288396 goalCount = 5 -25288397 goalTotal = 5 -25288397 otherCount = 21 -~~~ -25288398 CURRENTGOAL IS [2] -~~~ -25288446 DOWN 11 -25288446 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288484 homeCount = 31 -25288485 waitCount = 15 -25288485 ripCount = 13 -25288486 locktype1 = 1 -25288486 locktype2 = 1 -25288487 locktype3 = 2 -25288487 goalCount = 5 -25288488 goalTotal = 5 -25288488 otherCount = 21 -~~~ -25288489 CURRENTGOAL IS [2] -~~~ -25292276 UP 2 -25292276 2 255 -~~~ -~~~ -25292299 outer reward -~~~ -25292300 2 131327 -~~~ -~~~ -25292481 DOWN 2 -25292481 0 131327 -~~~ -~~~ -25292508 0 131326 -~~~ -~~~ -25292510 0 131324 -~~~ -~~~ -25292511 0 131320 -~~~ -~~~ -25292513 0 131312 -~~~ -~~~ -25292515 0 131296 -~~~ -~~~ -25292517 0 131264 -~~~ -~~~ -25292519 0 131200 -~~~ -~~~ -25292521 0 131072 -~~~ -~~~ -25292522 0 131584 -25292523 homeCount = 31 -25292524 waitCount = 15 -25292525 ripCount = 13 -25292545 locktype1 = 1 -25292546 locktype2 = 1 -25292546 locktype3 = 2 -25292547 goalCount = 6 -25292547 goalTotal = 6 -25292548 otherCount = 21 -~~~ -25292548 2 131584 -25292749 2 512 -25292894 DOWN 2 -25292894 0 512 -25292922 2 512 -25293016 DOWN 2 -25293016 0 512 -25293052 2 512 -25293153 DOWN 2 -25293153 0 512 -25293173 2 512 -25294024 DOWN 2 -25294024 0 512 -25294050 2 512 -25299590 DOWN 2 -25299590 0 512 -25303635 UP 10 -25303636 waslock = 0 -25303635 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25303667 512 16777728 -~~~ -25303817 512 512 -25307585 DOWN 10 -25307585 0 512 -~~~ -~~~ -25307608 0 1536 -~~~ -~~~ -25307610 0 1024 -25307611 homeCount = 32 -25307611 waitCount = 15 -25307612 ripCount = 13 -25307613 locktype1 = 1 -25307613 locktype2 = 1 -25307614 locktype3 = 2 -25307614 goalCount = 6 -25307615 goalTotal = 6 -25307615 otherCount = 21 -~~~ -25309251 UP 11 -25309251 1024 1024 -25311815 DOWN 11 -25311815 0 1024 -25311837 UP 11 -25311837 1024 1024 -25313752 BEEP1 -25313752 BEEP2 -~~~ -~~~ -~~~ -25313771 1024 33555456 -~~~ -25313921 1024 1024 -25318968 DOWN 11 -25318968 0 1024 -~~~ -~~~ -25318989 0 0 -~~~ -~~~ -25318991 0 1 -~~~ -~~~ -25318993 0 3 -~~~ -~~~ -25318995 0 7 -~~~ -~~~ -25318997 0 15 -~~~ -~~~ -25318998 0 31 -~~~ -~~~ -25319000 0 63 -~~~ -~~~ -25319002 0 127 -~~~ -~~~ -25319004 0 255 -25319005 homeCount = 32 -25319005 waitCount = 15 -25319006 ripCount = 14 -25319007 locktype1 = 1 -25319007 locktype2 = 1 -25319028 locktype3 = 2 -25319028 goalCount = 6 -25319029 goalTotal = 6 -25319029 otherCount = 21 -~~~ -25319031 CURRENTGOAL IS [2] -~~~ -25319045 UP 11 -25319045 1024 255 -25319211 DOWN 11 -25319211 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25319245 homeCount = 32 -25319246 waitCount = 15 -25319246 ripCount = 14 -25319247 locktype1 = 1 -25319247 locktype2 = 1 -25319248 locktype3 = 2 -25319248 goalCount = 6 -25319249 goalTotal = 6 -25319249 otherCount = 21 -~~~ -25319251 CURRENTGOAL IS [2] -~~~ -25319272 UP 11 -25319272 1024 255 -25321213 DOWN 11 -25321213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25321245 homeCount = 32 -25321246 waitCount = 15 -25321246 ripCount = 14 -25321247 locktype1 = 1 -25321247 locktype2 = 1 -25321248 locktype3 = 2 -25321248 goalCount = 6 -25321249 goalTotal = 6 -25321249 otherCount = 21 -~~~ -25321250 CURRENTGOAL IS [2] -~~~ -25324835 UP 2 -25324835 2 255 -~~~ -~~~ -25324860 outer reward -~~~ -25324861 2 131327 -~~~ -~~~ -25325077 DOWN 2 -25325077 0 131327 -~~~ -~~~ -25325099 0 131326 -~~~ -~~~ -25325101 0 131324 -~~~ -~~~ -25325103 0 131320 -~~~ -~~~ -25325105 0 131312 -~~~ -~~~ -25325106 0 131296 -~~~ -~~~ -25325108 0 131264 -~~~ -~~~ -25325110 0 131200 -~~~ -~~~ -25325112 0 131072 -~~~ -~~~ -25325114 0 131584 -25325115 homeCount = 32 -25325115 waitCount = 15 -25325116 ripCount = 14 -25325136 locktype1 = 1 -25325137 locktype2 = 1 -25325137 locktype3 = 2 -25325138 goalCount = 7 -25325138 goalTotal = 7 -25325139 otherCount = 21 -~~~ -25325141 2 131584 -25325310 2 512 -25325492 DOWN 2 -25325492 0 512 -25325540 2 512 -25325616 DOWN 2 -25325616 0 512 -25325662 2 512 -25325755 DOWN 2 -25325754 0 512 -25325776 2 512 -25326611 DOWN 2 -25326611 0 512 -25326629 2 512 -25329406 DOWN 2 -25329406 0 512 -25329419 2 512 -25329757 DOWN 2 -25329757 0 512 -25329760 2 512 -25329762 DOWN 2 -25329762 0 512 -25329781 2 512 -25329935 DOWN 2 -25329935 0 512 -25329937 2 512 -25329945 DOWN 2 -25329945 0 512 -25329953 2 512 -25331774 DOWN 2 -25331774 0 512 -25331786 2 512 -25331865 DOWN 2 -25331865 0 512 -25335687 UP 10 -25335687 waslock = 0 -25335687 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25335716 512 16777728 -~~~ -25335866 512 512 -25339372 DOWN 10 -25339372 0 512 -~~~ -~~~ -25339390 0 1536 -~~~ -~~~ -25339392 0 1024 -25339393 homeCount = 33 -25339394 waitCount = 15 -25339394 ripCount = 14 -25339395 locktype1 = 1 -25339395 locktype2 = 1 -25339396 locktype3 = 2 -25339396 goalCount = 7 -25339397 goalTotal = 7 -25339397 otherCount = 21 -~~~ -25339425 UP 10 -25339425 waslock = 0 -25339425 512 1024 -25339438 DOWN 10 -25339438 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25339466 homeCount = 33 -25339466 waitCount = 15 -25339467 ripCount = 14 -25339467 locktype1 = 1 -25339468 locktype2 = 1 -25339468 locktype3 = 2 -25339469 goalCount = 7 -25339469 goalTotal = 7 -25339470 otherCount = 21 -~~~ -25341420 UP 11 -25341420 1024 1024 -25341496 DOWN 11 -25341496 0 1024 -25341560 UP 11 -25341560 1024 1024 -25343328 DOWN 11 -25343328 0 1024 -25343349 UP 11 -25343349 1024 1024 -25349420 BEEP1 -25349420 BEEP2 -~~~ -~~~ -~~~ -25349444 1024 33555456 -~~~ -25349594 1024 1024 -25355080 DOWN 11 -25355080 0 1024 -~~~ -~~~ -25355104 0 0 -~~~ -~~~ -25355105 0 1 -~~~ -~~~ -25355107 0 3 -~~~ -25355109 UP 11 -25355108 1024 3 -~~~ -~~~ -25355110 1024 7 -~~~ -~~~ -25355112 1024 15 -~~~ -~~~ -25355114 1024 31 -~~~ -25355115 1024 63 -~~~ -~~~ -25355116 1024 127 -~~~ -~~~ -25355118 1024 255 -25355119 homeCount = 33 -25355140 waitCount = 15 -25355141 ripCount = 15 -25355141 locktype1 = 1 -25355142 locktype2 = 1 -25355142 locktype3 = 2 -25355143 goalCount = 7 -25355143 goalTotal = 7 -25355144 otherCount = 21 -~~~ -25355145 CURRENTGOAL IS [2] -~~~ -25357469 DOWN 11 -25357469 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25357509 homeCount = 33 -25357510 waitCount = 15 -25357510 ripCount = 15 -25357511 locktype1 = 1 -25357511 locktype2 = 1 -25357512 locktype3 = 2 -25357512 goalCount = 7 -25357513 goalTotal = 7 -25357513 otherCount = 21 -~~~ -25357514 CURRENTGOAL IS [2] -~~~ -25361464 UP 2 -25361464 2 255 -~~~ -~~~ -25361487 outer reward -~~~ -25361487 2 131327 -~~~ -~~~ -25361745 DOWN 2 -25361745 0 131327 -~~~ -~~~ -25361763 0 131326 -~~~ -~~~ -25361765 0 131324 -~~~ -~~~ -25361766 0 131320 -~~~ -~~~ -25361768 0 131312 -~~~ -~~~ -25361770 0 131296 -~~~ -~~~ -25361772 0 131264 -~~~ -~~~ -25361774 0 131200 -~~~ -~~~ -25361776 0 131072 -~~~ -~~~ -25361778 0 131584 -25361779 homeCount = 33 -25361779 waitCount = 15 -25361780 ripCount = 15 -25361800 locktype1 = 1 -25361801 locktype2 = 1 -25361801 locktype3 = 2 -25361802 goalCount = 8 -25361802 goalTotal = 8 -25361803 otherCount = 21 -~~~ -25361803 2 131584 -25361937 2 512 -25362139 DOWN 2 -25362139 0 512 -25362176 2 512 -25362263 DOWN 2 -25362263 0 512 -25362291 2 512 -25362386 DOWN 2 -25362386 0 512 -25362422 2 512 -25362510 DOWN 2 -25362510 0 512 -25362553 2 512 -25362641 DOWN 2 -25362641 0 512 -25362682 2 512 -25362795 DOWN 2 -25362795 0 512 -25362813 2 512 -25362939 DOWN 2 -25362939 0 512 -25362959 2 512 -25363093 DOWN 2 -25363093 0 512 -25363099 2 512 -25363241 DOWN 2 -25363241 0 512 -25363246 2 512 -25363391 DOWN 2 -25363391 0 512 -25363399 2 512 -25366031 DOWN 2 -25366031 0 512 -25366037 2 512 -25366210 DOWN 2 -25366210 0 512 -25366218 2 512 -25368328 DOWN 2 -25368328 0 512 -25368391 2 512 -25368427 DOWN 2 -25368427 0 512 -25371877 UP 10 -25371877 waslock = 0 -25371877 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25371903 512 16777728 -~~~ -25372053 512 512 -25379887 DOWN 10 -25379887 0 512 -~~~ -~~~ -25379906 0 1536 -~~~ -~~~ -25379908 0 1024 -25379909 homeCount = 34 -25379909 waitCount = 15 -25379910 ripCount = 15 -25379910 locktype1 = 1 -25379911 locktype2 = 1 -25379911 locktype3 = 2 -25379912 goalCount = 8 -25379912 goalTotal = 8 -25379913 otherCount = 21 -~~~ -25379964 UP 10 -25379964 waslock = 0 -25379964 512 1024 -~~~ -25380013 DOWN 10 -25380013 0 1024 -~~~ -~~~ -~~~ -~~~ -25380044 homeCount = 34 -25380044 waitCount = 15 -25380045 ripCount = 15 -25380045 locktype1 = 1 -25380046 locktype2 = 1 -25380046 locktype3 = 2 -25380047 goalCount = 8 -25380047 goalTotal = 8 -25380048 otherCount = 21 -~~~ -25381643 UP 10 -25381644 waslock = 0 -25381643 512 1024 -25381658 DOWN 10 -25381658 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25381684 homeCount = 34 -25381685 waitCount = 15 -25381685 ripCount = 15 -25381686 locktype1 = 1 -25381686 locktype2 = 1 -25381687 locktype3 = 2 -25381687 goalCount = 8 -25381688 goalTotal = 8 -25381688 otherCount = 21 -~~~ -25383621 UP 11 -25383621 1024 1024 -25388121 BEEP1 -25388121 BEEP2 -~~~ -~~~ -~~~ -25388149 1024 33555456 -~~~ -25388299 1024 1024 -25394043 DOWN 11 -25394043 0 1024 -~~~ -~~~ -25394066 0 0 -~~~ -~~~ -25394068 0 1 -~~~ -~~~ -25394070 0 3 -~~~ -~~~ -25394072 0 7 -~~~ -~~~ -25394074 UP 11 -25394073 1024 15 -~~~ -~~~ -25394076 1024 31 -~~~ -~~~ -25394077 1024 63 -~~~ -~~~ -25394079 1024 127 -~~~ -~~~ -25394081 1024 255 -25394082 homeCount = 34 -25394082 waitCount = 15 -25394083 ripCount = 16 -25394104 locktype1 = 1 -25394104 locktype2 = 1 -25394105 locktype3 = 2 -25394105 goalCount = 8 -25394106 goalTotal = 8 -25394106 otherCount = 21 -~~~ -25394108 CURRENTGOAL IS [2] -~~~ -25394133 DOWN 11 -25394133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25394169 homeCount = 34 -25394170 waitCount = 15 -25394170 ripCount = 16 -25394171 locktype1 = 1 -25394171 locktype2 = 1 -25394172 locktype3 = 2 -25394172 goalCount = 8 -25394173 goalTotal = 8 -25394173 otherCount = 21 -~~~ -25394174 CURRENTGOAL IS [2] -~~~ -25394253 UP 11 -25394253 1024 255 -25394289 DOWN 11 -25394289 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25394325 homeCount = 34 -25394325 waitCount = 15 -25394326 ripCount = 16 -25394326 locktype1 = 1 -25394327 locktype2 = 1 -25394327 locktype3 = 2 -25394328 goalCount = 8 -25394328 goalTotal = 8 -25394329 otherCount = 21 -~~~ -25394330 CURRENTGOAL IS [2] -~~~ -25394940 UP 11 -25394940 1024 255 -25394971 DOWN 11 -25394971 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25395007 UP 11 -25395007 1024 255 -25395008 homeCount = 34 -25395009 waitCount = 15 -25395009 ripCount = 16 -25395010 locktype1 = 1 -25395010 locktype2 = 1 -25395011 locktype3 = 2 -25395011 goalCount = 8 -25395012 goalTotal = 8 -25395012 otherCount = 21 -~~~ -25395034 CURRENTGOAL IS [2] -~~~ -25398455 DOWN 11 -25398455 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25398496 homeCount = 34 -25398496 waitCount = 15 -25398497 ripCount = 16 -25398497 locktype1 = 1 -25398498 locktype2 = 1 -25398498 locktype3 = 2 -25398499 goalCount = 8 -25398499 goalTotal = 8 -25398500 otherCount = 21 -~~~ -25398501 CURRENTGOAL IS [2] -~~~ -25411077 UP 8 -25411077 128 255 -~~~ -~~~ -25411117 DOWN 8 -25411117 0 255 -~~~ -~~~ -25411143 0 254 -~~~ -~~~ -25411145 0 252 -~~~ -~~~ -25411147 0 248 -~~~ -~~~ -25411149 0 240 -~~~ -~~~ -25411151 0 224 -~~~ -~~~ -25411152 0 192 -~~~ -~~~ -25411154 0 128 -~~~ -~~~ -25411156 0 0 -~~~ -~~~ -25411158 0 512 -25411159 homeCount = 34 -25411160 waitCount = 15 -25411160 ripCount = 16 -25411161 locktype1 = 1 -25411161 locktype2 = 1 -25411182 locktype3 = 2 -25411182 goalCount = 8 -25411183 goalTotal = 8 -25411183 otherCount = 22 -~~~ -25411186 128 512 -25411487 DOWN 8 -25411487 0 512 -25415389 UP 10 -25415390 waslock = 0 -25415389 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25415415 512 16777728 -~~~ -25415564 DOWN 10 -25415564 0 16777728 -25415565 0 512 -~~~ -~~~ -25415591 0 1536 -~~~ -~~~ -25415593 0 1024 -25415594 homeCount = 35 -25415595 waitCount = 15 -25415595 ripCount = 16 -25415596 locktype1 = 1 -25415596 locktype2 = 1 -25415597 locktype3 = 2 -25415597 goalCount = 8 -25415598 goalTotal = 8 -25415598 otherCount = 22 -~~~ -25415732 UP 10 -25415732 waslock = 0 -25415732 512 1024 -~~~ -25421067 DOWN 10 -25421067 0 1024 -~~~ -~~~ -~~~ -~~~ -25421092 homeCount = 35 -25421093 waitCount = 15 -25421093 ripCount = 16 -25421094 locktype1 = 1 -25421094 locktype2 = 1 -25421095 locktype3 = 2 -25421095 goalCount = 8 -25421096 goalTotal = 8 -25421096 otherCount = 22 -~~~ -25421137 UP 10 -25421137 waslock = 0 -25421137 512 1024 -25421143 DOWN 10 -25421143 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25421169 homeCount = 35 -25421169 waitCount = 15 -25421170 ripCount = 16 -25421170 locktype1 = 1 -25421171 locktype2 = 1 -25421171 locktype3 = 2 -25421172 goalCount = 8 -25421172 goalTotal = 8 -25421173 otherCount = 22 -~~~ -25424199 UP 11 -25424199 1024 1024 -25431199 BEEP1 -25431199 BEEP2 -~~~ -~~~ -~~~ -25431220 1024 33555456 -~~~ -25431370 1024 1024 -25436615 DOWN 11 -25436615 0 1024 -~~~ -~~~ -25436639 0 0 -~~~ -~~~ -25436641 0 1 -~~~ -~~~ -25436643 0 3 -~~~ -~~~ -25436645 0 7 -~~~ -~~~ -25436646 0 15 -~~~ -25436648 UP 11 -25436648 1024 15 -~~~ -~~~ -25436650 1024 31 -~~~ -~~~ -25436651 1024 63 -~~~ -~~~ -25436653 1024 127 -~~~ -25436654 1024 255 -25436655 homeCount = 35 -25436656 waitCount = 15 -25436677 ripCount = 17 -25436677 locktype1 = 1 -25436678 locktype2 = 1 -25436678 locktype3 = 2 -25436679 goalCount = 8 -25436679 goalTotal = 8 -25436680 otherCount = 22 -~~~ -25436681 CURRENTGOAL IS [2] -~~~ -25436836 DOWN 11 -25436836 0 255 -25436857 UP 11 -25436857 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25436874 homeCount = 35 -25436875 waitCount = 15 -25436875 ripCount = 17 -25436876 locktype1 = 1 -25436876 locktype2 = 1 -25436877 locktype3 = 2 -25436877 goalCount = 8 -25436878 goalTotal = 8 -25436878 otherCount = 22 -~~~ -25436880 CURRENTGOAL IS [2] -~~~ -25436901 DOWN 11 -25436901 0 255 -25436910 UP 11 -25436910 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25436946 homeCount = 35 -25436947 waitCount = 15 -25436947 ripCount = 17 -25436948 locktype1 = 1 -25436948 locktype2 = 1 -25436949 locktype3 = 2 -25436949 goalCount = 8 -25436950 goalTotal = 8 -25436950 otherCount = 22 -~~~ -25436951 CURRENTGOAL IS [2] -~~~ -25438811 DOWN 11 -25438811 0 255 -25438829 UP 11 -25438829 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25438864 homeCount = 35 -25438864 waitCount = 15 -25438865 ripCount = 17 -25438866 locktype1 = 1 -25438866 locktype2 = 1 -25438867 locktype3 = 2 -25438867 goalCount = 8 -25438868 goalTotal = 8 -25438868 otherCount = 22 -~~~ -25438869 CURRENTGOAL IS [2] -~~~ -25438892 DOWN 11 -25438892 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25438927 homeCount = 35 -25438927 waitCount = 15 -25438928 ripCount = 17 -25438928 locktype1 = 1 -25438929 locktype2 = 1 -25438929 locktype3 = 2 -25438930 goalCount = 8 -25438930 goalTotal = 8 -25438931 otherCount = 22 -~~~ -25438932 CURRENTGOAL IS [2] -~~~ -25443046 UP 2 -25443046 2 255 -~~~ -~~~ -25443074 outer reward -~~~ -25443075 2 131327 -~~~ -~~~ -25443261 DOWN 2 -25443261 0 131327 -~~~ -~~~ -25443281 0 131326 -~~~ -~~~ -25443283 0 131324 -~~~ -~~~ -25443285 0 131320 -~~~ -~~~ -25443287 0 131312 -~~~ -~~~ -25443288 0 131296 -~~~ -~~~ -25443290 0 131264 -~~~ -~~~ -25443292 0 131200 -~~~ -~~~ -25443294 0 131072 -~~~ -~~~ -25443296 0 131584 -25443297 homeCount = 35 -25443297 waitCount = 15 -25443298 ripCount = 17 -25443319 locktype1 = 1 -25443319 locktype2 = 1 -25443320 locktype3 = 2 -25443320 goalCount = 9 -25443321 goalTotal = 9 -25443321 otherCount = 22 -~~~ -25443322 2 131584 -25443524 2 512 -25443802 DOWN 2 -25443802 0 512 -25443828 2 512 -25443922 DOWN 2 -25443922 0 512 -25443955 2 512 -25444050 DOWN 2 -25444050 0 512 -25444072 2 512 -25444174 DOWN 2 -25444174 0 512 -25444198 2 512 -25444307 DOWN 2 -25444307 0 512 -25444329 2 512 -25444444 DOWN 2 -25444444 0 512 -25444465 2 512 -25444596 DOWN 2 -25444596 0 512 -25444605 2 512 -25445036 DOWN 2 -25445036 0 512 -25445047 2 512 -25448195 DOWN 2 -25448195 0 512 -25448235 2 512 -25450273 DOWN 2 -25450273 0 512 -25450339 2 512 -25450371 DOWN 2 -25450371 0 512 -25454316 UP 10 -25454317 waslock = 0 -25454316 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25454349 512 16777728 -~~~ -25454499 512 512 -25457148 DOWN 10 -25457148 0 512 -~~~ -~~~ -25457174 0 2560 -~~~ -~~~ -25457176 0 2048 -25457177 homeCount = 36 -25457178 waitCount = 15 -25457178 ripCount = 17 -25457179 locktype1 = 1 -25457179 locktype2 = 1 -25457180 locktype3 = 2 -25457180 goalCount = 9 -25457181 goalTotal = 9 -25457181 otherCount = 22 -~~~ -25459795 UP 12 -25459795 2048 2048 -25463795 CLICK1 -25463795 CLICK2 -~~~ -~~~ -~~~ -25463815 2048 67110912 -~~~ -25463965 2048 2048 -25469814 DOWN 12 -25469814 0 2048 -~~~ -~~~ -25469833 0 0 -~~~ -~~~ -25469835 0 1 -~~~ -~~~ -25469837 0 3 -~~~ -~~~ -25469838 0 7 -~~~ -~~~ -25469840 0 15 -~~~ -~~~ -25469842 0 31 -~~~ -~~~ -25469844 0 63 -~~~ -~~~ -25469846 0 127 -~~~ -~~~ -25469848 0 255 -25469849 homeCount = 36 -25469849 waitCount = 16 -25469850 ripCount = 17 -25469850 locktype1 = 1 -25469851 locktype2 = 1 -25469872 locktype3 = 2 -25469872 goalCount = 9 -25469873 goalTotal = 9 -25469873 otherCount = 22 -~~~ -25469874 CURRENTGOAL IS [2] -~~~ -25469921 UP 12 -25469921 2048 255 -25469955 DOWN 12 -25469955 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25469988 homeCount = 36 -25469989 waitCount = 16 -25469990 ripCount = 17 -25469990 locktype1 = 1 -25469991 locktype2 = 1 -25469991 locktype3 = 2 -25469992 goalCount = 9 -25469992 goalTotal = 9 -25469993 otherCount = 22 -~~~ -25469994 CURRENTGOAL IS [2] -~~~ -25470055 UP 12 -25470055 2048 255 -25471638 DOWN 12 -25471638 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25471678 homeCount = 36 -25471679 waitCount = 16 -25471680 ripCount = 17 -25471680 locktype1 = 1 -25471681 locktype2 = 1 -25471681 locktype3 = 2 -25471682 goalCount = 9 -25471682 goalTotal = 9 -25471683 otherCount = 22 -~~~ -25471684 CURRENTGOAL IS [2] -~~~ -25474558 UP 2 -25474558 2 255 -~~~ -~~~ -25474587 outer reward -~~~ -25474588 2 131327 -~~~ -~~~ -25474593 outerreps = 7 -~~~ -~~~ -25474839 DOWN 2 -25474839 0 131327 -~~~ -~~~ -25474864 0 131326 -~~~ -~~~ -25474866 0 131324 -~~~ -~~~ -25474868 0 131320 -~~~ -~~~ -25474869 0 131312 -~~~ -~~~ -25474871 0 131296 -~~~ -~~~ -25474873 0 131264 -~~~ -~~~ -25474875 0 131200 -~~~ -~~~ -25474877 0 131072 -~~~ -~~~ -25474879 0 131584 -25474880 homeCount = 36 -25474880 waitCount = 16 -25474881 ripCount = 17 -25474901 locktype1 = 1 -25474902 locktype2 = 1 -25474902 locktype3 = 2 -25474903 goalCount = 0 -25474903 goalTotal = 10 -25474904 otherCount = 22 -~~~ -25474904 2 131584 -25475037 2 512 -25475141 DOWN 2 -25475141 0 512 -25475149 2 512 -25475254 DOWN 2 -25475254 0 512 -25475276 2 512 -25475378 DOWN 2 -25475378 0 512 -25475399 2 512 -25475501 DOWN 2 -25475501 0 512 -25475524 2 512 -25475623 DOWN 2 -25475623 0 512 -25475660 2 512 -25480617 DOWN 2 -25480617 0 512 -25480646 2 512 -25480707 DOWN 2 -25480707 0 512 -25484920 UP 10 -25484920 waslock = 0 -25484920 512 512 -~~~ -~~~ -~~~ -25484949 DOWN 10 -25484949 0 512 -~~~ -~~~ -25484951 0 16777728 -~~~ -~~~ -~~~ -25484971 0 16779776 -~~~ -~~~ -25484973 0 16779264 -25484974 homeCount = 37 -25484974 waitCount = 16 -25484975 ripCount = 17 -25484975 locktype1 = 1 -25484976 locktype2 = 1 -25484976 locktype3 = 2 -25484977 goalCount = 0 -25484977 goalTotal = 10 -25484978 otherCount = 22 -~~~ -25484999 UP 10 -25484999 waslock = 0 -25484999 512 16779264 -~~~ -25485101 DOWN 10 -25485101 0 16779264 -25485102 0 2048 -~~~ -~~~ -~~~ -25485124 UP 10 -25485125 waslock = 0 -25485124 512 2048 -~~~ -25485126 homeCount = 37 -25485127 waitCount = 16 -25485127 ripCount = 17 -25485128 locktype1 = 1 -25485128 locktype2 = 1 -25485129 locktype3 = 2 -25485129 goalCount = 0 -25485130 goalTotal = 10 -25485151 otherCount = 22 -~~~ -~~~ -25490231 DOWN 10 -25490231 0 2048 -~~~ -~~~ -~~~ -~~~ -25490257 homeCount = 37 -25490257 waitCount = 16 -25490258 ripCount = 17 -25490258 locktype1 = 1 -25490259 locktype2 = 1 -25490259 locktype3 = 2 -25490260 goalCount = 0 -25490260 goalTotal = 10 -25490261 otherCount = 22 -~~~ -25492166 UP 12 -25492166 2048 2048 -25496488 DOWN 12 -25496488 0 2048 -25496519 UP 12 -25496519 2048 2048 -25498167 CLICK1 -25498167 CLICK2 -~~~ -~~~ -~~~ -25498195 2048 67110912 -~~~ -25498345 2048 2048 -25504762 DOWN 12 -25504762 0 2048 -~~~ -~~~ -25504784 0 0 -~~~ -~~~ -25504786 0 1 -~~~ -~~~ -25504788 0 3 -~~~ -~~~ -25504790 0 7 -~~~ -~~~ -25504791 0 15 -~~~ -~~~ -25504793 0 31 -~~~ -~~~ -25504795 0 63 -~~~ -~~~ -25504797 0 127 -~~~ -~~~ -25504799 0 255 -25504800 homeCount = 37 -25504800 waitCount = 17 -25504801 ripCount = 17 -25504801 locktype1 = 1 -25504802 locktype2 = 1 -25504823 locktype3 = 2 -25504823 goalCount = 0 -25504824 goalTotal = 10 -25504824 otherCount = 22 -~~~ -25504825 CURRENTGOAL IS [3] -~~~ -25504829 UP 12 -25504829 2048 255 -25504904 DOWN 12 -25504904 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25504941 homeCount = 37 -25504941 waitCount = 17 -25504942 ripCount = 17 -25504942 locktype1 = 1 -25504943 locktype2 = 1 -25504943 locktype3 = 2 -25504944 goalCount = 0 -25504944 goalTotal = 10 -25504945 otherCount = 22 -~~~ -25504946 CURRENTGOAL IS [3] -~~~ -25504979 UP 12 -25504979 2048 255 -25505014 DOWN 12 -25505014 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25505051 homeCount = 37 -25505051 waitCount = 17 -25505052 ripCount = 17 -25505052 locktype1 = 1 -25505053 locktype2 = 1 -25505053 locktype3 = 2 -25505054 goalCount = 0 -25505054 goalTotal = 10 -25505055 otherCount = 22 -~~~ -25505056 CURRENTGOAL IS [3] -~~~ -25505126 UP 12 -25505126 2048 255 -25505144 DOWN 12 -25505144 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25505183 homeCount = 37 -25505184 waitCount = 17 -25505184 ripCount = 17 -25505185 locktype1 = 1 -25505186 locktype2 = 1 -25505186 locktype3 = 2 -25505187 goalCount = 0 -25505187 goalTotal = 10 -25505188 otherCount = 22 -~~~ -25505189 CURRENTGOAL IS [3] -~~~ -25505306 UP 12 -25505306 2048 255 -25506646 DOWN 12 -25506646 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25506682 homeCount = 37 -25506683 waitCount = 17 -25506683 ripCount = 17 -25506684 locktype1 = 1 -25506684 locktype2 = 1 -25506685 locktype3 = 2 -25506685 goalCount = 0 -25506686 goalTotal = 10 -25506686 otherCount = 22 -~~~ -25506687 CURRENTGOAL IS [3] -~~~ -25509308 UP 2 -25509308 2 255 -25509319 DOWN 2 -25509319 0 255 -~~~ -~~~ -~~~ -~~~ -25509347 0 254 -~~~ -~~~ -25509349 0 252 -~~~ -~~~ -25509351 0 248 -~~~ -~~~ -25509353 0 240 -~~~ -~~~ -25509354 0 224 -~~~ -~~~ -25509356 0 192 -~~~ -~~~ -25509358 0 128 -~~~ -~~~ -25509360 0 0 -~~~ -~~~ -25509362 0 512 -25509363 homeCount = 37 -25509363 waitCount = 17 -25509364 ripCount = 17 -25509364 locktype1 = 1 -25509386 locktype2 = 1 -25509386 locktype3 = 2 -25509387 goalCount = 0 -25509387 goalTotal = 10 -25509388 otherCount = 23 -~~~ -25509398 2 512 -25509552 DOWN 2 -25509552 0 512 -25509607 2 512 -25510174 DOWN 2 -25510174 0 512 -25513834 UP 10 -25513835 waslock = 0 -25513834 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25513865 512 16777728 -~~~ -25514015 512 512 -25517951 DOWN 10 -25517951 0 512 -~~~ -~~~ -25517967 0 1536 -~~~ -~~~ -25517969 0 1024 -25517970 homeCount = 38 -25517971 waitCount = 17 -25517971 ripCount = 17 -25517972 locktype1 = 1 -25517972 locktype2 = 1 -25517973 locktype3 = 2 -25517973 goalCount = 0 -25517974 goalTotal = 10 -25517974 otherCount = 23 -~~~ -25520064 UP 11 -25520064 1024 1024 -25521046 DOWN 11 -25521046 0 1024 -25521134 UP 11 -25521134 1024 1024 -25521986 DOWN 11 -25521986 0 1024 -25522013 UP 11 -25522013 1024 1024 -25527064 BEEP1 -25527064 BEEP2 -~~~ -~~~ -~~~ -25527092 1024 33555456 -~~~ -25527242 1024 1024 -25534001 DOWN 11 -25534001 0 1024 -~~~ -~~~ -25534020 0 0 -~~~ -~~~ -25534021 0 1 -~~~ -~~~ -25534023 0 3 -~~~ -~~~ -25534025 0 7 -~~~ -~~~ -25534027 0 15 -~~~ -~~~ -25534029 0 31 -~~~ -~~~ -25534030 0 63 -~~~ -~~~ -25534032 0 127 -~~~ -~~~ -25534034 0 255 -25534035 homeCount = 38 -25534036 waitCount = 17 -25534036 ripCount = 18 -25534037 locktype1 = 1 -25534037 locktype2 = 1 -25534058 locktype3 = 2 -25534059 goalCount = 0 -25534059 goalTotal = 10 -25534060 otherCount = 23 -~~~ -25534061 CURRENTGOAL IS [3] -~~~ -25536586 UP 6 -25536586 32 255 -~~~ -~~~ -25537282 DOWN 6 -25537282 0 255 -~~~ -~~~ -25537299 0 254 -~~~ -~~~ -25537301 0 252 -~~~ -~~~ -25537303 0 248 -~~~ -~~~ -25537305 0 240 -~~~ -~~~ -25537307 0 224 -~~~ -~~~ -25537308 0 192 -~~~ -~~~ -25537310 0 128 -~~~ -~~~ -25537312 0 0 -~~~ -~~~ -25537314 0 512 -25537315 homeCount = 38 -25537316 waitCount = 17 -25537316 ripCount = 18 -25537317 locktype1 = 1 -25537338 locktype2 = 1 -25537338 locktype3 = 2 -25537339 goalCount = 0 -25537339 goalTotal = 10 -25537340 otherCount = 24 -~~~ -25542032 UP 10 -25542033 waslock = 0 -25542032 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25542057 512 16777728 -~~~ -25542207 512 512 -25542256 DOWN 10 -25542256 0 512 -25542264 UP 10 -25542265 waslock = 0 -25542264 512 512 -~~~ -~~~ -25542284 512 1536 -~~~ -~~~ -25542286 512 1024 -25542287 homeCount = 39 -25542287 waitCount = 17 -25542288 ripCount = 18 -25542288 locktype1 = 1 -25542289 locktype2 = 1 -25542289 locktype3 = 2 -25542290 goalCount = 0 -25542290 goalTotal = 10 -25542291 otherCount = 24 -~~~ -~~~ -25545602 DOWN 10 -25545602 0 1024 -~~~ -~~~ -~~~ -~~~ -25545626 homeCount = 39 -25545626 waitCount = 17 -25545627 ripCount = 18 -25545627 locktype1 = 1 -25545628 locktype2 = 1 -25545628 locktype3 = 2 -25545629 goalCount = 0 -25545629 goalTotal = 10 -25545630 otherCount = 24 -~~~ -25545632 UP 10 -25545632 waslock = 0 -25545632 512 1024 -~~~ -25545696 DOWN 10 -25545696 0 1024 -~~~ -~~~ -~~~ -~~~ -25545720 homeCount = 39 -25545721 waitCount = 17 -25545721 ripCount = 18 -25545722 locktype1 = 1 -25545722 locktype2 = 1 -25545723 locktype3 = 2 -25545723 goalCount = 0 -25545724 goalTotal = 10 -25545724 otherCount = 24 -~~~ -25549079 UP 11 -25549079 1024 1024 -25549392 DOWN 11 -25549392 0 1024 -25549592 LOCKOUT 3 -~~~ -25549617 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -25549620 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25549678 UP 11 -25549678 1024 0 -25549870 DOWN 11 -25549870 0 0 -25557733 UP 1 -25557733 1 0 -25558031 DOWN 1 -25558031 0 0 -25560934 1 0 -25560938 DOWN 1 -25560938 0 0 -25569322 512 0 -25569441 0 0 -25571157 512 0 -25571190 0 0 -25574617 LOCKEND -~~~ -~~~ -~~~ -25574638 0 512 -25577445 UP 3 -25577445 4 512 -25577923 DOWN 3 -25577923 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25577963 homeCount = 39 -25577963 waitCount = 17 -25577964 ripCount = 18 -25577964 locktype1 = 1 -25577965 locktype2 = 1 -25577965 locktype3 = 3 -25577966 goalCount = 0 -25577966 goalTotal = 10 -25577967 otherCount = 24 -~~~ -25578067 4 512 -25578092 DOWN 3 -25578092 0 512 -25585413 UP 10 -25585413 waslock = 0 -25585413 512 512 -~~~ -~~~ -25585438 DOWN 10 -25585438 0 512 -~~~ -~~~ -~~~ -25585443 0 16777728 -~~~ -~~~ -~~~ -25585465 0 16778752 -~~~ -~~~ -25585467 0 16778240 -25585468 homeCount = 40 -25585468 waitCount = 17 -25585469 ripCount = 18 -25585469 locktype1 = 1 -25585470 locktype2 = 1 -25585470 locktype3 = 3 -25585471 goalCount = 0 -25585471 goalTotal = 10 -25585472 otherCount = 24 -~~~ -25585592 0 1024 -25585685 UP 10 -25585686 waslock = 0 -25585685 512 1024 -~~~ -25590182 DOWN 10 -25590182 0 1024 -~~~ -~~~ -~~~ -~~~ -25590209 homeCount = 40 -25590210 waitCount = 17 -25590210 ripCount = 18 -25590211 locktype1 = 1 -25590211 locktype2 = 1 -25590212 locktype3 = 3 -25590212 goalCount = 0 -25590213 goalTotal = 10 -25590213 otherCount = 24 -~~~ -25609245 UP 8 -25609245 128 1024 -25609250 DOWN 8 -25609250 0 1024 -~~~ -25609266 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -25609270 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25615729 128 0 -25617512 DOWN 8 -25617512 0 0 -25618844 128 0 -25619296 DOWN 8 -25619296 0 0 -25625955 512 0 -25626331 0 0 -25626436 512 0 -25626571 0 0 -25626586 512 0 -25626882 0 0 -25627022 512 0 -25627063 0 0 -25627287 512 0 -25627295 0 0 -25627379 512 0 -25627437 0 0 -25630940 512 0 -25631248 0 0 -25634266 LOCKEND -~~~ -~~~ -~~~ -25634286 0 512 -25659806 UP 10 -25659806 waslock = 0 -25659806 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25659833 512 16777728 -~~~ -25659979 DOWN 10 -25659979 0 16777728 -25659983 0 512 -~~~ -~~~ -25660007 0 2560 -~~~ -~~~ -25660009 0 2048 -25660010 homeCount = 41 -25660010 waitCount = 17 -25660011 ripCount = 18 -25660011 locktype1 = 1 -25660012 locktype2 = 2 -25660012 locktype3 = 3 -25660013 goalCount = 0 -25660013 goalTotal = 10 -25660014 otherCount = 24 -~~~ -25660095 UP 10 -25660096 waslock = 0 -25660095 512 2048 -~~~ -25660160 DOWN 10 -25660160 0 2048 -~~~ -~~~ -~~~ -~~~ -25660189 homeCount = 41 -25660190 waitCount = 17 -25660190 ripCount = 18 -25660191 locktype1 = 1 -25660191 locktype2 = 2 -25660192 locktype3 = 3 -25660192 goalCount = 0 -25660193 goalTotal = 10 -25660193 otherCount = 24 -~~~ -25660261 UP 10 -25660261 waslock = 0 -25660261 512 2048 -~~~ -25660934 DOWN 10 -25660934 0 2048 -25660947 UP 10 -25660947 waslock = 0 -25660947 512 2048 -~~~ -~~~ -~~~ -~~~ -25660969 homeCount = 41 -25660970 waitCount = 17 -25660970 ripCount = 18 -25660971 locktype1 = 1 -25660971 locktype2 = 2 -25660972 locktype3 = 3 -25660972 goalCount = 0 -25660973 goalTotal = 10 -25660973 otherCount = 24 -~~~ -~~~ -25666236 DOWN 10 -25666236 0 2048 -~~~ -~~~ -~~~ -~~~ -25666259 homeCount = 41 -25666259 waitCount = 17 -25666260 ripCount = 18 -25666260 locktype1 = 1 -25666261 locktype2 = 2 -25666261 locktype3 = 3 -25666262 goalCount = 0 -25666262 goalTotal = 10 -25666263 otherCount = 24 -~~~ -25666276 UP 10 -25666277 waslock = 0 -25666276 512 2048 -~~~ -25666339 DOWN 10 -25666339 0 2048 -~~~ -~~~ -~~~ -~~~ -25666369 homeCount = 41 -25666370 waitCount = 17 -25666370 ripCount = 18 -25666371 locktype1 = 1 -25666371 locktype2 = 2 -25666372 locktype3 = 3 -25666372 goalCount = 0 -25666373 goalTotal = 10 -25666373 otherCount = 24 -~~~ -25685376 UP 12 -25685376 2048 2048 -25686651 DOWN 12 -25686651 0 2048 -25686705 UP 12 -25686705 2048 2048 -25686732 DOWN 12 -25686732 0 2048 -25686786 UP 12 -25686786 2048 2048 -25688376 CLICK1 -25688376 CLICK2 -~~~ -~~~ -~~~ -25688399 2048 67110912 -~~~ -25688549 2048 2048 -25694671 DOWN 12 -25694671 0 2048 -~~~ -~~~ -25694697 0 0 -~~~ -~~~ -25694699 0 1 -~~~ -~~~ -25694701 0 3 -~~~ -~~~ -25694703 0 7 -~~~ -~~~ -25694705 0 15 -~~~ -~~~ -25694706 0 31 -~~~ -~~~ -25694708 0 63 -~~~ -~~~ -25694710 0 127 -~~~ -~~~ -25694712 0 255 -25694713 homeCount = 41 -25694713 waitCount = 18 -25694714 ripCount = 18 -25694714 locktype1 = 1 -25694715 locktype2 = 2 -25694736 locktype3 = 3 -25694736 goalCount = 0 -25694737 goalTotal = 10 -25694737 otherCount = 24 -~~~ -25694738 CURRENTGOAL IS [3] -~~~ -25698435 UP 2 -25698435 2 255 -~~~ -~~~ -25698854 DOWN 2 -25698854 0 255 -~~~ -~~~ -25698879 0 254 -~~~ -~~~ -25698881 0 252 -~~~ -~~~ -25698882 0 248 -~~~ -~~~ -25698884 0 240 -~~~ -~~~ -25698886 0 224 -~~~ -~~~ -25698888 0 192 -~~~ -~~~ -25698890 0 128 -~~~ -~~~ -25698891 0 0 -~~~ -~~~ -25698893 0 512 -25698894 homeCount = 41 -25698895 waitCount = 18 -25698895 ripCount = 18 -25698896 locktype1 = 1 -25698917 locktype2 = 2 -25698918 locktype3 = 3 -25698918 goalCount = 0 -25698919 goalTotal = 10 -25698919 otherCount = 25 -~~~ -25698948 2 512 -25699154 DOWN 2 -25699154 0 512 -25703394 UP 10 -25703394 waslock = 0 -25703394 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25703424 512 16777728 -~~~ -25703574 512 512 -25708617 DOWN 10 -25708617 0 512 -~~~ -~~~ -25708639 0 2560 -~~~ -~~~ -25708641 0 2048 -25708642 homeCount = 42 -25708642 waitCount = 18 -25708643 ripCount = 18 -25708643 locktype1 = 1 -25708644 locktype2 = 2 -25708644 locktype3 = 3 -25708645 goalCount = 0 -25708645 goalTotal = 10 -25708646 otherCount = 25 -~~~ -25708690 UP 10 -25708690 waslock = 0 -25708690 512 2048 -25708696 DOWN 10 -25708696 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -25708728 homeCount = 42 -25708728 waitCount = 18 -25708729 ripCount = 18 -25708729 locktype1 = 1 -25708730 locktype2 = 2 -25708730 locktype3 = 3 -25708731 goalCount = 0 -25708731 goalTotal = 10 -25708732 otherCount = 25 -~~~ -25711186 UP 12 -25711186 2048 2048 -25712394 DOWN 12 -25712394 0 2048 -25712398 UP 12 -25712398 2048 2048 -25713214 DOWN 12 -25713214 0 2048 -25713244 UP 12 -25713244 2048 2048 -25715186 CLICK1 -25715186 CLICK2 -~~~ -~~~ -~~~ -25715209 2048 67110912 -~~~ -25715359 2048 2048 -25721807 DOWN 12 -25721807 0 2048 -~~~ -~~~ -25721829 0 0 -~~~ -~~~ -25721830 0 1 -~~~ -~~~ -25721832 0 3 -~~~ -~~~ -25721834 0 7 -~~~ -~~~ -25721836 0 15 -~~~ -~~~ -25721838 0 31 -~~~ -~~~ -25721840 0 63 -~~~ -~~~ -25721841 0 127 -~~~ -~~~ -25721843 0 255 -25721844 homeCount = 42 -25721845 waitCount = 19 -25721845 ripCount = 18 -25721846 locktype1 = 1 -25721846 locktype2 = 2 -25721867 locktype3 = 3 -25721868 goalCount = 0 -25721868 goalTotal = 10 -25721869 otherCount = 25 -~~~ -25721870 CURRENTGOAL IS [3] -~~~ -25726763 UP 3 -25726762 4 255 -~~~ -~~~ -25726783 outer reward -~~~ -25726783 4 262399 -~~~ -~~~ -25727233 4 255 -25734068 DOWN 3 -25734068 0 255 -~~~ -~~~ -25734091 0 254 -~~~ -~~~ -25734093 0 252 -~~~ -~~~ -25734094 0 248 -~~~ -~~~ -25734096 0 240 -~~~ -~~~ -25734098 0 224 -~~~ -~~~ -25734100 0 192 -~~~ -~~~ -25734102 0 128 -~~~ -~~~ -25734104 0 0 -~~~ -~~~ -25734105 0 512 -25734106 homeCount = 42 -25734107 waitCount = 19 -25734107 ripCount = 18 -25734108 locktype1 = 1 -25734108 locktype2 = 2 -25734129 locktype3 = 3 -25734130 goalCount = 1 -25734130 goalTotal = 11 -25734131 otherCount = 25 -~~~ -25738531 UP 10 -25738531 waslock = 0 -25738531 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25738557 512 16777728 -~~~ -25738707 512 512 -25738767 DOWN 10 -25738767 0 512 -25738784 UP 10 -25738784 waslock = 0 -25738784 512 512 -~~~ -~~~ -25738803 512 1536 -~~~ -~~~ -25738805 512 1024 -25738806 homeCount = 43 -25738806 waitCount = 19 -25738807 ripCount = 18 -25738807 locktype1 = 1 -25738808 locktype2 = 2 -25738808 locktype3 = 3 -25738809 goalCount = 1 -25738809 goalTotal = 11 -25738810 otherCount = 25 -~~~ -~~~ -25742304 DOWN 10 -25742304 0 1024 -~~~ -~~~ -~~~ -~~~ -25742326 homeCount = 43 -25742327 waitCount = 19 -25742327 ripCount = 18 -25742328 locktype1 = 1 -25742328 locktype2 = 2 -25742329 locktype3 = 3 -25742329 goalCount = 1 -25742330 goalTotal = 11 -25742330 otherCount = 25 -~~~ -25744264 UP 11 -25744264 1024 1024 -25746728 DOWN 11 -25746728 0 1024 -25746745 UP 11 -25746745 1024 1024 -25748072 DOWN 11 -25748072 0 1024 -25748099 UP 11 -25748099 1024 1024 -25748764 BEEP1 -25748764 BEEP2 -~~~ -~~~ -~~~ -25748784 1024 33555456 -~~~ -25748934 1024 1024 -25755625 DOWN 11 -25755625 0 1024 -~~~ -~~~ -25755651 0 0 -~~~ -~~~ -25755653 0 1 -~~~ -25755654 UP 11 -25755654 1024 1 -~~~ -~~~ -25755656 1024 3 -~~~ -~~~ -25755657 1024 7 -~~~ -25755658 1024 15 -~~~ -~~~ -25755660 1024 31 -~~~ -~~~ -25755662 1024 63 -~~~ -~~~ -25755663 1024 127 -~~~ -~~~ -25755665 1024 255 -25755666 homeCount = 43 -25755688 waitCount = 19 -25755688 ripCount = 19 -25755689 locktype1 = 1 -25755689 locktype2 = 2 -25755690 locktype3 = 3 -25755690 goalCount = 1 -25755691 goalTotal = 11 -25755691 otherCount = 25 -~~~ -25755692 CURRENTGOAL IS [3] -~~~ -25755708 DOWN 11 -25755708 0 255 -25755722 UP 11 -25755722 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25755751 homeCount = 43 -25755751 waitCount = 19 -25755752 ripCount = 19 -25755753 locktype1 = 1 -25755753 locktype2 = 2 -25755754 locktype3 = 3 -25755754 goalCount = 1 -25755755 goalTotal = 11 -25755755 otherCount = 25 -~~~ -25755756 CURRENTGOAL IS [3] -~~~ -25758703 DOWN 11 -25758703 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25758737 homeCount = 43 -25758737 waitCount = 19 -25758738 ripCount = 19 -25758738 locktype1 = 1 -25758739 locktype2 = 2 -25758739 locktype3 = 3 -25758740 goalCount = 1 -25758740 goalTotal = 11 -25758741 otherCount = 25 -~~~ -25758742 CURRENTGOAL IS [3] -~~~ -25762427 UP 2 -25762427 2 255 -~~~ -~~~ -25763276 DOWN 2 -25763276 0 255 -~~~ -~~~ -25763302 0 254 -~~~ -~~~ -25763304 0 252 -~~~ -~~~ -25763306 0 248 -~~~ -~~~ -25763307 0 240 -~~~ -~~~ -25763309 0 224 -~~~ -~~~ -25763311 0 192 -~~~ -~~~ -25763313 0 128 -~~~ -~~~ -25763315 0 0 -~~~ -~~~ -25763317 0 512 -25763318 homeCount = 43 -25763318 waitCount = 19 -25763319 ripCount = 19 -25763319 locktype1 = 1 -25763320 locktype2 = 2 -25763341 locktype3 = 3 -25763341 goalCount = 1 -25763342 goalTotal = 11 -25763342 otherCount = 26 -~~~ -25763466 2 512 -25763664 DOWN 2 -25763664 0 512 -25768061 UP 10 -25768061 waslock = 0 -25768061 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25768092 512 16777728 -~~~ -25768220 DOWN 10 -25768220 0 16777728 -~~~ -25768242 0 512 -~~~ -25768243 0 1536 -~~~ -~~~ -25768244 0 1024 -25768245 homeCount = 44 -25768246 waitCount = 19 -25768246 ripCount = 19 -25768247 locktype1 = 1 -25768247 locktype2 = 2 -25768248 locktype3 = 3 -25768248 goalCount = 1 -25768249 goalTotal = 11 -25768270 otherCount = 26 -~~~ -25768271 UP 10 -25768271 waslock = 0 -25768271 512 1024 -~~~ -25771738 DOWN 10 -25771738 0 1024 -~~~ -~~~ -~~~ -~~~ -25771767 homeCount = 44 -25771768 waitCount = 19 -25771768 ripCount = 19 -25771769 locktype1 = 1 -25771769 locktype2 = 2 -25771770 locktype3 = 3 -25771770 goalCount = 1 -25771771 goalTotal = 11 -25771771 otherCount = 26 -~~~ -25773584 UP 11 -25773584 1024 1024 -25778369 DOWN 11 -25778369 0 1024 -25778378 UP 11 -25778378 1024 1024 -25781584 BEEP1 -25781584 BEEP2 -~~~ -~~~ -~~~ -25781606 1024 33555456 -~~~ -25781756 1024 1024 -25787347 DOWN 11 -25787347 0 1024 -~~~ -~~~ -25787363 0 0 -~~~ -~~~ -25787365 0 1 -~~~ -~~~ -25787367 0 3 -~~~ -~~~ -25787369 0 7 -~~~ -~~~ -25787370 0 15 -~~~ -~~~ -25787372 0 31 -~~~ -~~~ -25787374 0 63 -~~~ -~~~ -25787376 0 127 -~~~ -~~~ -25787378 0 255 -25787379 homeCount = 44 -25787379 waitCount = 19 -25787380 ripCount = 20 -25787380 locktype1 = 1 -25787381 locktype2 = 2 -25787402 locktype3 = 3 -25787402 goalCount = 1 -25787403 goalTotal = 11 -25787403 otherCount = 26 -~~~ -25787404 CURRENTGOAL IS [3] -~~~ -25790514 UP 6 -25790514 32 255 -~~~ -~~~ -25791449 DOWN 6 -25791449 0 255 -~~~ -~~~ -25791474 0 254 -~~~ -~~~ -25791476 0 252 -~~~ -~~~ -25791477 0 248 -~~~ -~~~ -25791479 0 240 -~~~ -~~~ -25791481 0 224 -~~~ -~~~ -25791483 0 192 -~~~ -~~~ -25791485 0 128 -~~~ -~~~ -25791486 0 0 -~~~ -~~~ -25791488 0 512 -25791489 homeCount = 44 -25791490 waitCount = 19 -25791490 ripCount = 20 -25791491 locktype1 = 1 -25791491 locktype2 = 2 -25791512 locktype3 = 3 -25791513 goalCount = 1 -25791513 goalTotal = 11 -25791514 otherCount = 27 -~~~ -25795603 UP 10 -25795603 waslock = 0 -25795603 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25795630 512 16777728 -~~~ -25795780 512 512 -25795823 DOWN 10 -25795823 0 512 -~~~ -~~~ -25795843 0 2560 -~~~ -~~~ -25795845 0 2048 -25795846 homeCount = 45 -25795846 waitCount = 19 -25795847 ripCount = 20 -25795847 locktype1 = 1 -25795848 locktype2 = 2 -25795848 locktype3 = 3 -25795849 goalCount = 1 -25795849 goalTotal = 11 -25795850 otherCount = 27 -~~~ -25796003 UP 10 -25796003 waslock = 0 -25796003 512 2048 -~~~ -25801292 DOWN 10 -25801292 0 2048 -~~~ -~~~ -~~~ -~~~ -25801318 homeCount = 45 -25801318 waitCount = 19 -25801319 ripCount = 20 -25801319 locktype1 = 1 -25801320 locktype2 = 2 -25801320 locktype3 = 3 -25801321 goalCount = 1 -25801321 goalTotal = 11 -25801322 otherCount = 27 -~~~ -25803540 UP 12 -25803540 2048 2048 -25805479 DOWN 12 -25805479 0 2048 -25805510 UP 12 -25805510 2048 2048 -25805675 DOWN 12 -25805675 0 2048 -25805730 UP 12 -25805730 2048 2048 -25806962 DOWN 12 -25806962 0 2048 -25806974 UP 12 -25806974 2048 2048 -25807043 DOWN 12 -25807043 0 2048 -25807214 UP 12 -25807214 2048 2048 -25807283 DOWN 12 -25807283 0 2048 -25807346 UP 12 -25807346 2048 2048 -25809540 CLICK1 -25809540 CLICK2 -~~~ -~~~ -~~~ -25809566 2048 67110912 -~~~ -25809716 2048 2048 -25815767 DOWN 12 -25815767 0 2048 -~~~ -~~~ -25815784 0 0 -~~~ -~~~ -25815786 0 1 -~~~ -~~~ -25815788 0 3 -~~~ -~~~ -25815789 0 7 -~~~ -25815791 UP 12 -25815791 2048 7 -~~~ -~~~ -25815793 2048 15 -~~~ -~~~ -25815794 2048 31 -~~~ -25815795 2048 63 -~~~ -~~~ -25815797 2048 127 -~~~ -~~~ -25815798 2048 255 -25815800 homeCount = 45 -25815821 waitCount = 20 -25815821 ripCount = 20 -25815822 locktype1 = 1 -25815822 locktype2 = 2 -25815823 locktype3 = 3 -25815823 goalCount = 1 -25815824 goalTotal = 11 -25815824 otherCount = 27 -~~~ -25815825 CURRENTGOAL IS [3] -~~~ -25815864 DOWN 12 -25815864 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25815903 homeCount = 45 -25815903 waitCount = 20 -25815904 ripCount = 20 -25815904 locktype1 = 1 -25815905 locktype2 = 2 -25815905 locktype3 = 3 -25815906 goalCount = 1 -25815906 goalTotal = 11 -25815907 otherCount = 27 -~~~ -25815908 CURRENTGOAL IS [3] -~~~ -25819190 UP 2 -25819190 2 255 -~~~ -~~~ -25820057 DOWN 2 -25820057 0 255 -~~~ -~~~ -25820079 0 254 -~~~ -~~~ -25820081 0 252 -~~~ -~~~ -25820083 0 248 -~~~ -~~~ -25820084 0 240 -~~~ -~~~ -25820086 0 224 -~~~ -~~~ -25820088 0 192 -~~~ -~~~ -25820090 0 128 -~~~ -~~~ -25820092 0 0 -~~~ -~~~ -25820094 0 512 -25820095 homeCount = 45 -25820095 waitCount = 20 -25820096 ripCount = 20 -25820096 locktype1 = 1 -25820097 locktype2 = 2 -25820118 locktype3 = 3 -25820118 goalCount = 1 -25820119 goalTotal = 11 -25820119 otherCount = 28 -~~~ -25820242 2 512 -25820365 DOWN 2 -25820365 0 512 -25823770 UP 10 -25823770 waslock = 0 -25823769 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25823798 512 16777728 -~~~ -25823948 512 512 -25823994 DOWN 10 -25823994 0 512 -~~~ -~~~ -25824011 0 2560 -~~~ -~~~ -25824013 0 2048 -25824014 homeCount = 46 -25824015 waitCount = 20 -25824015 ripCount = 20 -25824016 locktype1 = 1 -25824016 locktype2 = 2 -25824017 locktype3 = 3 -25824017 goalCount = 1 -25824018 goalTotal = 11 -25824018 otherCount = 28 -~~~ -25824040 UP 10 -25824040 waslock = 0 -25824040 512 2048 -~~~ -25829907 DOWN 10 -25829907 0 2048 -~~~ -~~~ -~~~ -~~~ -25829936 homeCount = 46 -25829936 waitCount = 20 -25829937 ripCount = 20 -25829937 locktype1 = 1 -25829938 locktype2 = 2 -25829938 locktype3 = 3 -25829939 goalCount = 1 -25829939 goalTotal = 11 -25829940 otherCount = 28 -~~~ -25831818 UP 12 -25831818 2048 2048 -25834819 CLICK1 -25834819 CLICK2 -~~~ -~~~ -~~~ -25834844 2048 67110912 -~~~ -25834994 2048 2048 -25840649 DOWN 12 -25840649 0 2048 -~~~ -~~~ -25840671 0 0 -~~~ -~~~ -25840673 0 1 -~~~ -~~~ -25840675 0 3 -~~~ -~~~ -25840677 0 7 -~~~ -~~~ -25840678 0 15 -~~~ -~~~ -25840680 0 31 -~~~ -~~~ -25840682 0 63 -~~~ -~~~ -25840684 0 127 -~~~ -~~~ -25840686 0 255 -25840687 homeCount = 46 -25840687 waitCount = 21 -25840688 ripCount = 20 -25840688 locktype1 = 1 -25840689 locktype2 = 2 -25840709 locktype3 = 3 -25840710 goalCount = 1 -25840710 goalTotal = 11 -25840711 otherCount = 28 -~~~ -25840712 CURRENTGOAL IS [3] -~~~ -25840713 UP 12 -25840712 2048 255 -25840753 DOWN 12 -25840753 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25840790 homeCount = 46 -25840791 waitCount = 21 -25840791 ripCount = 20 -25840792 locktype1 = 1 -25840792 locktype2 = 2 -25840793 locktype3 = 3 -25840793 goalCount = 1 -25840794 goalTotal = 11 -25840794 otherCount = 28 -~~~ -25840795 CURRENTGOAL IS [3] -~~~ -25846229 UP 3 -25846229 4 255 -~~~ -~~~ -25846247 outer reward -~~~ -25846248 4 262399 -~~~ -~~~ -25846289 DOWN 3 -25846289 0 262399 -25846303 4 262399 -~~~ -~~~ -25846306 4 262398 -~~~ -~~~ -25846308 4 262396 -~~~ -~~~ -25846310 4 262392 -~~~ -~~~ -25846311 4 262384 -~~~ -~~~ -25846313 4 262368 -~~~ -~~~ -25846315 4 262336 -~~~ -~~~ -25846317 4 262272 -~~~ -~~~ -25846319 4 262144 -~~~ -~~~ -25846321 4 262656 -25846322 homeCount = 46 -25846322 waitCount = 21 -25846323 ripCount = 20 -25846343 locktype1 = 1 -25846344 locktype2 = 2 -25846344 locktype3 = 3 -25846345 goalCount = 2 -25846345 goalTotal = 12 -25846346 otherCount = 28 -~~~ -25846482 DOWN 3 -25846482 0 262656 -25846517 4 262656 -25846697 4 512 -25846875 DOWN 3 -25846875 0 512 -25846903 4 512 -25846998 DOWN 3 -25846998 0 512 -25847030 4 512 -25847129 DOWN 3 -25847129 0 512 -25847156 4 512 -25847253 DOWN 3 -25847253 0 512 -25847287 4 512 -25847385 DOWN 3 -25847385 0 512 -25847417 4 512 -25847522 DOWN 3 -25847522 0 512 -25847548 4 512 -25847656 DOWN 3 -25847656 0 512 -25847682 4 512 -25847794 DOWN 3 -25847794 0 512 -25847816 4 512 -25847942 DOWN 3 -25847942 0 512 -25847958 4 512 -25848087 DOWN 3 -25848087 0 512 -25848099 4 512 -25853342 DOWN 3 -25853342 0 512 -25853409 4 512 -25853445 DOWN 3 -25853445 0 512 -25911695 UP 10 -25911695 waslock = 0 -25911695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25911722 512 16777728 -~~~ -25911797 DOWN 10 -25911797 0 16777728 -~~~ -~~~ -25911816 0 16779776 -~~~ -~~~ -25911818 0 16779264 -25911819 homeCount = 47 -25911820 waitCount = 21 -25911820 ripCount = 20 -25911821 locktype1 = 1 -25911821 locktype2 = 2 -25911822 locktype3 = 3 -25911822 goalCount = 2 -25911823 goalTotal = 12 -25911823 otherCount = 28 -~~~ -25911872 0 2048 -25911895 UP 10 -25911895 waslock = 0 -25911895 512 2048 -~~~ -25915776 DOWN 10 -25915776 0 2048 -~~~ -~~~ -~~~ -~~~ -25915802 homeCount = 47 -25915802 waitCount = 21 -25915803 ripCount = 20 -25915803 locktype1 = 1 -25915804 locktype2 = 2 -25915804 locktype3 = 3 -25915805 goalCount = 2 -25915805 goalTotal = 12 -25915806 otherCount = 28 -~~~ -25915830 UP 10 -25915830 waslock = 0 -25915830 512 2048 -25915843 DOWN 10 -25915843 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -25915863 homeCount = 47 -25915864 waitCount = 21 -25915864 ripCount = 20 -25915865 locktype1 = 1 -25915865 locktype2 = 2 -25915866 locktype3 = 3 -25915866 goalCount = 2 -25915867 goalTotal = 12 -25915867 otherCount = 28 -~~~ -25917690 UP 12 -25917690 2048 2048 -25918023 DOWN 12 -25918023 0 2048 -25918224 LOCKOUT 3 -~~~ -25918241 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25918247 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25929828 UP 3 -25929828 4 0 -25930022 DOWN 3 -25930022 0 0 -25930052 4 0 -25930295 DOWN 3 -25930295 0 0 -25930361 4 0 -25930673 DOWN 3 -25930673 0 0 -25930706 4 0 -25930744 DOWN 3 -25930744 0 0 -25942332 UP 5 -25942332 16 0 -25942648 DOWN 5 -25942648 0 0 -25942755 16 0 -25943167 DOWN 5 -25943166 0 0 -25943232 16 0 -25943241 LOCKEND -25943251 DOWN 5 -25943251 0 0 -~~~ -~~~ -~~~ -25943255 0 512 -26002769 UP 10 -26002770 waslock = 0 -26002769 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26002799 512 16777728 -~~~ -26002899 DOWN 10 -26002899 0 16777728 -26002914 UP 10 -26002914 waslock = 0 -26002914 512 16777728 -~~~ -~~~ -26002925 512 16778752 -~~~ -~~~ -26002927 512 16778240 -26002928 homeCount = 48 -26002928 waitCount = 21 -26002929 ripCount = 20 -26002929 locktype1 = 1 -26002930 locktype2 = 2 -26002930 locktype3 = 4 -26002931 goalCount = 2 -26002931 goalTotal = 12 -26002932 otherCount = 28 -~~~ -~~~ -26002954 512 1024 -26003187 DOWN 10 -26003187 0 1024 -~~~ -~~~ -~~~ -~~~ -26003216 homeCount = 48 -26003216 waitCount = 21 -26003217 ripCount = 20 -26003217 locktype1 = 1 -26003218 locktype2 = 2 -26003218 locktype3 = 4 -26003219 goalCount = 2 -26003219 goalTotal = 12 -26003220 otherCount = 28 -~~~ -26003230 UP 10 -26003230 waslock = 0 -26003230 512 1024 -~~~ -26003679 DOWN 10 -26003679 0 1024 -26003691 UP 10 -26003691 waslock = 0 -26003691 512 1024 -~~~ -~~~ -~~~ -~~~ -26003719 homeCount = 48 -26003719 waitCount = 21 -26003720 ripCount = 20 -26003721 locktype1 = 1 -26003721 locktype2 = 2 -26003722 locktype3 = 4 -26003722 goalCount = 2 -26003723 goalTotal = 12 -26003723 otherCount = 28 -~~~ -~~~ -26003834 DOWN 10 -26003834 0 1024 -26003848 UP 10 -26003848 waslock = 0 -26003848 512 1024 -~~~ -~~~ -~~~ -~~~ -26003862 homeCount = 48 -26003863 waitCount = 21 -26003863 ripCount = 20 -26003864 locktype1 = 1 -26003864 locktype2 = 2 -26003865 locktype3 = 4 -26003865 goalCount = 2 -26003866 goalTotal = 12 -26003866 otherCount = 28 -~~~ -~~~ -26003992 DOWN 10 -26003992 0 1024 -26004002 UP 10 -26004003 waslock = 0 -26004002 512 1024 -~~~ -~~~ -~~~ -~~~ -26004018 homeCount = 48 -26004018 waitCount = 21 -26004019 ripCount = 20 -26004020 locktype1 = 1 -26004020 locktype2 = 2 -26004021 locktype3 = 4 -26004021 goalCount = 2 -26004022 goalTotal = 12 -26004022 otherCount = 28 -~~~ -~~~ -26007545 DOWN 10 -26007545 0 1024 -26007568 UP 10 -26007568 waslock = 0 -26007568 512 1024 -~~~ -~~~ -~~~ -~~~ -26007576 homeCount = 48 -26007576 waitCount = 21 -26007577 ripCount = 20 -26007577 locktype1 = 1 -26007578 locktype2 = 2 -26007578 locktype3 = 4 -26007579 goalCount = 2 -26007579 goalTotal = 12 -26007580 otherCount = 28 -~~~ -~~~ -26007655 DOWN 10 -26007655 0 1024 -~~~ -~~~ -~~~ -~~~ -26007677 homeCount = 48 -26007677 waitCount = 21 -26007678 ripCount = 20 -26007679 locktype1 = 1 -26007679 locktype2 = 2 -26007680 locktype3 = 4 -26007680 goalCount = 2 -26007681 goalTotal = 12 -26007681 otherCount = 28 -~~~ -26043997 UP 10 -26043997 waslock = 0 -26043997 512 1024 -~~~ -26044753 DOWN 10 -26044753 0 1024 -~~~ -~~~ -~~~ -~~~ -26044775 homeCount = 48 -26044776 waitCount = 21 -26044776 ripCount = 20 -26044777 locktype1 = 1 -26044777 locktype2 = 2 -26044778 locktype3 = 4 -26044778 goalCount = 2 -26044779 goalTotal = 12 -26044779 otherCount = 28 -~~~ -26046836 UP 11 -26046836 1024 1024 -26047796 DOWN 11 -26047796 0 1024 -26047996 LOCKOUT 3 -~~~ -26048015 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26048019 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26048033 UP 11 -26048033 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -26048065 DOWN 11 -26048065 0 0 -26048110 UP 11 -26048110 1024 0 -26048521 DOWN 11 -26048521 0 0 -26048580 UP 11 -26048580 1024 0 -26050905 DOWN 11 -26050905 0 0 -26050915 UP 11 -26050915 1024 0 -26054064 DOWN 11 -26054064 0 0 -26054111 UP 11 -26054111 1024 0 -26055170 DOWN 11 -26055170 0 0 -26055174 UP 11 -26055174 1024 0 -26060757 DOWN 11 -26060757 0 0 -26065042 UP 8 -26065042 128 0 -26065099 DOWN 8 -26065099 0 0 -26065152 128 0 -26065553 DOWN 8 -26065553 0 0 -26073015 LOCKEND -~~~ -~~~ -~~~ -26073040 0 512 -26074095 UP 10 -26074095 waslock = 0 -26074095 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26074124 512 16777728 -~~~ -26074274 512 512 -26074286 DOWN 10 -26074286 0 512 -~~~ -~~~ -26074307 0 1536 -~~~ -~~~ -26074309 0 1024 -26074310 homeCount = 49 -26074311 waitCount = 21 -26074311 ripCount = 20 -26074312 locktype1 = 1 -26074312 locktype2 = 2 -26074313 locktype3 = 5 -26074313 goalCount = 2 -26074314 goalTotal = 12 -26074314 otherCount = 28 -~~~ -26074335 UP 10 -26074336 waslock = 0 -26074335 512 1024 -~~~ -26079241 DOWN 10 -26079241 0 1024 -26079255 UP 10 -26079255 waslock = 0 -26079255 512 1024 -~~~ -~~~ -~~~ -~~~ -26079262 homeCount = 49 -26079262 waitCount = 21 -26079263 ripCount = 20 -26079263 locktype1 = 1 -26079264 locktype2 = 2 -26079264 locktype3 = 5 -26079265 goalCount = 2 -26079265 goalTotal = 12 -26079266 otherCount = 28 -~~~ -~~~ -26079356 DOWN 10 -26079356 0 1024 -~~~ -~~~ -~~~ -~~~ -26079382 homeCount = 49 -26079382 waitCount = 21 -26079383 ripCount = 20 -26079383 locktype1 = 1 -26079384 locktype2 = 2 -26079384 locktype3 = 5 -26079385 goalCount = 2 -26079385 goalTotal = 12 -26079386 otherCount = 28 -~~~ -26079397 UP 10 -26079398 waslock = 0 -26079397 512 1024 -~~~ -26079458 DOWN 10 -26079458 0 1024 -~~~ -~~~ -~~~ -~~~ -26079482 homeCount = 49 -26079482 waitCount = 21 -26079483 ripCount = 20 -26079483 locktype1 = 1 -26079484 locktype2 = 2 -26079484 locktype3 = 5 -26079485 goalCount = 2 -26079485 goalTotal = 12 -26079486 otherCount = 28 -~~~ -26082385 UP 11 -26082384 1024 1024 -26086385 BEEP1 -26086385 BEEP2 -~~~ -~~~ -~~~ -26086410 1024 33555456 -~~~ -26086560 1024 1024 -26093563 DOWN 11 -26093563 0 1024 -~~~ -~~~ -26093584 0 0 -~~~ -~~~ -26093585 0 1 -~~~ -~~~ -26093587 0 3 -~~~ -~~~ -26093589 0 7 -~~~ -~~~ -26093591 0 15 -~~~ -~~~ -26093593 0 31 -~~~ -26093594 UP 11 -26093594 1024 31 -~~~ -~~~ -26093596 1024 63 -~~~ -~~~ -26093598 1024 127 -~~~ -26093599 1024 255 -26093600 homeCount = 49 -26093600 waitCount = 21 -26093622 ripCount = 21 -26093622 locktype1 = 1 -26093623 locktype2 = 2 -26093623 locktype3 = 5 -26093624 goalCount = 2 -26093624 goalTotal = 12 -26093625 otherCount = 28 -~~~ -26093626 CURRENTGOAL IS [3] -~~~ -26093680 DOWN 11 -26093680 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26093719 homeCount = 49 -26093720 waitCount = 21 -26093721 ripCount = 21 -26093721 locktype1 = 1 -26093722 locktype2 = 2 -26093722 locktype3 = 5 -26093723 goalCount = 2 -26093723 goalTotal = 12 -26093724 otherCount = 28 -~~~ -26093725 CURRENTGOAL IS [3] -~~~ -26093746 UP 11 -26093746 1024 255 -26093773 DOWN 11 -26093773 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26093808 homeCount = 49 -26093808 waitCount = 21 -26093809 ripCount = 21 -26093809 locktype1 = 1 -26093810 locktype2 = 2 -26093810 locktype3 = 5 -26093811 goalCount = 2 -26093811 goalTotal = 12 -26093812 otherCount = 28 -~~~ -26093813 CURRENTGOAL IS [3] -~~~ -26096717 UP 6 -26096717 32 255 -~~~ -~~~ -26097351 DOWN 6 -26097351 0 255 -~~~ -~~~ -26097373 0 254 -~~~ -~~~ -26097375 0 252 -~~~ -~~~ -26097377 0 248 -~~~ -~~~ -26097379 0 240 -~~~ -~~~ -26097380 0 224 -~~~ -~~~ -26097382 0 192 -~~~ -~~~ -26097384 0 128 -~~~ -~~~ -26097386 0 0 -~~~ -~~~ -26097388 0 512 -26097389 homeCount = 49 -26097389 waitCount = 21 -26097390 ripCount = 21 -26097390 locktype1 = 1 -26097391 locktype2 = 2 -26097412 locktype3 = 5 -26097412 goalCount = 2 -26097413 goalTotal = 12 -26097413 otherCount = 29 -~~~ -26104495 UP 10 -26104495 waslock = 0 -26104495 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26104524 512 16777728 -~~~ -26104673 512 512 -26104700 DOWN 10 -26104700 0 512 -~~~ -~~~ -26104727 0 2560 -~~~ -~~~ -26104729 0 2048 -26104730 homeCount = 50 -26104730 waitCount = 21 -26104731 ripCount = 21 -26104731 locktype1 = 1 -26104732 locktype2 = 2 -26104732 locktype3 = 5 -26104733 goalCount = 2 -26104733 goalTotal = 12 -26104734 otherCount = 29 -~~~ -26104857 UP 10 -26104858 waslock = 0 -26104857 512 2048 -~~~ -26109785 DOWN 10 -26109785 0 2048 -~~~ -~~~ -~~~ -~~~ -26109809 homeCount = 50 -26109809 waitCount = 21 -26109810 ripCount = 21 -26109810 locktype1 = 1 -26109811 locktype2 = 2 -26109811 locktype3 = 5 -26109812 goalCount = 2 -26109812 goalTotal = 12 -26109813 otherCount = 29 -~~~ -26109830 UP 10 -26109830 waslock = 0 -26109830 512 2048 -~~~ -26109886 DOWN 10 -26109886 0 2048 -~~~ -~~~ -~~~ -~~~ -26109910 homeCount = 50 -26109910 waitCount = 21 -26109911 ripCount = 21 -26109911 locktype1 = 1 -26109912 locktype2 = 2 -26109912 locktype3 = 5 -26109913 goalCount = 2 -26109913 goalTotal = 12 -26109914 otherCount = 29 -~~~ -26112362 UP 12 -26112362 2048 2048 -26113374 DOWN 12 -26113374 0 2048 -26113418 UP 12 -26113418 2048 2048 -26113943 DOWN 12 -26113943 0 2048 -26114024 UP 12 -26114024 2048 2048 -26115863 CLICK1 -26115863 CLICK2 -~~~ -~~~ -~~~ -26115889 2048 67110912 -~~~ -26116039 2048 2048 -26122109 DOWN 12 -26122109 0 2048 -~~~ -~~~ -26122129 0 0 -~~~ -~~~ -26122131 0 1 -~~~ -~~~ -26122132 0 3 -~~~ -~~~ -26122134 0 7 -~~~ -~~~ -26122136 0 15 -~~~ -~~~ -26122138 0 31 -~~~ -~~~ -26122140 0 63 -~~~ -~~~ -26122142 0 127 -~~~ -~~~ -26122143 0 255 -26122145 homeCount = 50 -26122145 waitCount = 22 -26122146 ripCount = 21 -26122146 locktype1 = 1 -26122147 locktype2 = 2 -26122167 locktype3 = 5 -26122168 goalCount = 2 -26122168 goalTotal = 12 -26122169 otherCount = 29 -~~~ -26122170 CURRENTGOAL IS [3] -~~~ -26126211 UP 3 -26126210 4 255 -26126231 DOWN 3 -26126231 0 255 -~~~ -~~~ -26126237 outer reward -~~~ -26126238 0 262399 -~~~ -~~~ -26126244 4 262399 -~~~ -~~~ -26126256 4 262398 -~~~ -~~~ -26126257 4 262396 -~~~ -~~~ -26126259 4 262392 -~~~ -~~~ -26126261 4 262384 -~~~ -~~~ -26126263 4 262368 -~~~ -~~~ -26126265 4 262336 -~~~ -~~~ -26126267 4 262272 -~~~ -~~~ -26126268 4 262144 -~~~ -~~~ -26126270 4 262656 -26126271 homeCount = 50 -26126272 waitCount = 22 -26126272 ripCount = 21 -26126293 locktype1 = 1 -26126294 locktype2 = 2 -26126294 locktype3 = 5 -26126295 goalCount = 3 -26126295 goalTotal = 13 -26126296 otherCount = 29 -~~~ -26126454 DOWN 3 -26126453 0 262656 -26126503 4 262656 -26126687 4 512 -26126888 DOWN 3 -26126888 0 512 -26126906 4 512 -26127010 DOWN 3 -26127010 0 512 -26127033 4 512 -26127136 DOWN 3 -26127136 0 512 -26127161 4 512 -26127269 DOWN 3 -26127269 0 512 -26127292 4 512 -26127399 DOWN 3 -26127399 0 512 -26127422 4 512 -26127527 DOWN 3 -26127527 0 512 -26127551 4 512 -26127663 DOWN 3 -26127662 0 512 -26127684 4 512 -26127810 DOWN 3 -26127810 0 512 -26127825 4 512 -26127960 DOWN 3 -26127960 0 512 -26127966 4 512 -26132825 DOWN 3 -26132825 0 512 -26132840 4 512 -26132983 DOWN 3 -26132983 0 512 -26132987 4 512 -26133827 DOWN 3 -26133827 0 512 -26133837 4 512 -26134015 DOWN 3 -26134015 0 512 -26134023 4 512 -26135949 DOWN 3 -26135949 0 512 -26140435 UP 10 -26140435 waslock = 0 -26140435 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26140463 512 16777728 -~~~ -26140613 512 512 -26140699 DOWN 10 -26140698 0 512 -~~~ -~~~ -26140719 0 1536 -~~~ -~~~ -26140720 0 1024 -26140722 homeCount = 51 -26140722 waitCount = 22 -26140723 ripCount = 21 -26140723 locktype1 = 1 -26140724 locktype2 = 2 -26140724 locktype3 = 5 -26140725 goalCount = 3 -26140725 goalTotal = 13 -26140726 otherCount = 29 -~~~ -26140747 UP 10 -26140747 waslock = 0 -26140747 512 1024 -~~~ -26144504 DOWN 10 -26144504 0 1024 -~~~ -~~~ -~~~ -~~~ -26144530 homeCount = 51 -26144531 waitCount = 22 -26144531 ripCount = 21 -26144532 locktype1 = 1 -26144532 locktype2 = 2 -26144533 locktype3 = 5 -26144533 goalCount = 3 -26144534 goalTotal = 13 -26144534 otherCount = 29 -~~~ -26144553 UP 10 -26144553 waslock = 0 -26144552 512 1024 -~~~ -26144607 DOWN 10 -26144607 0 1024 -~~~ -~~~ -~~~ -~~~ -26144630 homeCount = 51 -26144631 waitCount = 22 -26144631 ripCount = 21 -26144632 locktype1 = 1 -26144632 locktype2 = 2 -26144633 locktype3 = 5 -26144633 goalCount = 3 -26144634 goalTotal = 13 -26144634 otherCount = 29 -~~~ -26146769 UP 11 -26146769 1024 1024 -26151953 DOWN 11 -26151953 0 1024 -26151979 UP 11 -26151979 1024 1024 -26154269 BEEP1 -26154269 BEEP2 -~~~ -~~~ -~~~ -26154291 1024 33555456 -~~~ -26154441 1024 1024 -26160782 DOWN 11 -26160782 0 1024 -26160794 UP 11 -26160794 1024 1024 -~~~ -~~~ -26160806 1024 0 -~~~ -~~~ -26160808 1024 1 -~~~ -~~~ -26160810 1024 3 -~~~ -~~~ -26160812 1024 7 -~~~ -~~~ -26160814 1024 15 -~~~ -~~~ -26160815 1024 31 -~~~ -~~~ -26160817 1024 63 -~~~ -~~~ -26160819 1024 127 -~~~ -~~~ -26160821 1024 255 -26160822 homeCount = 51 -26160822 waitCount = 22 -26160823 ripCount = 22 -26160844 locktype1 = 1 -26160845 locktype2 = 2 -26160845 locktype3 = 5 -26160846 goalCount = 3 -26160846 goalTotal = 13 -26160847 otherCount = 29 -~~~ -26160848 CURRENTGOAL IS [3] -~~~ -26160904 DOWN 11 -26160904 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26160942 homeCount = 51 -26160943 waitCount = 22 -26160943 ripCount = 22 -26160944 locktype1 = 1 -26160945 locktype2 = 2 -26160945 locktype3 = 5 -26160946 goalCount = 3 -26160946 goalTotal = 13 -26160947 otherCount = 29 -~~~ -26160948 CURRENTGOAL IS [3] -~~~ -26160969 UP 11 -26160969 1024 255 -26160984 DOWN 11 -26160984 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26161023 homeCount = 51 -26161023 waitCount = 22 -26161024 ripCount = 22 -26161024 locktype1 = 1 -26161025 locktype2 = 2 -26161025 locktype3 = 5 -26161026 goalCount = 3 -26161026 goalTotal = 13 -26161027 otherCount = 29 -~~~ -26161028 CURRENTGOAL IS [3] -~~~ -26161049 UP 11 -26161049 1024 255 -26163216 DOWN 11 -26163216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26163255 homeCount = 51 -26163255 waitCount = 22 -26163256 ripCount = 22 -26163256 locktype1 = 1 -26163257 locktype2 = 2 -26163257 locktype3 = 5 -26163258 goalCount = 3 -26163258 goalTotal = 13 -26163259 otherCount = 29 -~~~ -26163260 CURRENTGOAL IS [3] -~~~ -26176641 UP 4 -26176641 8 255 -~~~ -~~~ -26177975 DOWN 4 -26177975 0 255 -~~~ -~~~ -26178001 0 254 -~~~ -~~~ -26178003 0 252 -~~~ -~~~ -26178005 0 248 -~~~ -~~~ -26178006 0 240 -~~~ -~~~ -26178008 0 224 -~~~ -~~~ -26178010 0 192 -~~~ -~~~ -26178012 0 128 -~~~ -~~~ -26178014 0 0 -~~~ -~~~ -26178016 0 512 -26178017 homeCount = 51 -26178017 waitCount = 22 -26178018 ripCount = 22 -26178018 locktype1 = 1 -26178019 locktype2 = 2 -26178040 locktype3 = 5 -26178040 goalCount = 3 -26178041 goalTotal = 13 -26178041 otherCount = 30 -~~~ -26183987 UP 10 -26183987 waslock = 0 -26183986 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26184016 512 16777728 -~~~ -26184166 512 512 -26184227 DOWN 10 -26184227 0 512 -~~~ -26184253 UP 10 -26184253 waslock = 0 -26184253 512 512 -~~~ -~~~ -~~~ -26184256 512 2048 -26184257 homeCount = 52 -26184257 waitCount = 22 -26184258 ripCount = 22 -26184258 locktype1 = 1 -26184259 locktype2 = 2 -26184259 locktype3 = 5 -26184260 goalCount = 3 -26184280 goalTotal = 13 -26184281 otherCount = 30 -~~~ -~~~ -26190484 DOWN 10 -26190484 0 2048 -26190501 UP 10 -26190501 waslock = 0 -26190501 512 2048 -~~~ -~~~ -~~~ -~~~ -26190525 homeCount = 52 -26190525 waitCount = 22 -26190526 ripCount = 22 -26190526 locktype1 = 1 -26190527 locktype2 = 2 -26190527 locktype3 = 5 -26190528 goalCount = 3 -26190528 goalTotal = 13 -26190529 otherCount = 30 -~~~ -~~~ -26190590 DOWN 10 -26190590 0 2048 -~~~ -~~~ -~~~ -~~~ -26190618 homeCount = 52 -26190619 waitCount = 22 -26190619 ripCount = 22 -26190620 locktype1 = 1 -26190620 locktype2 = 2 -26190621 locktype3 = 5 -26190621 goalCount = 3 -26190622 goalTotal = 13 -26190622 otherCount = 30 -~~~ -26192739 UP 12 -26192739 2048 2048 -26197344 DOWN 12 -26197344 0 2048 -26197364 UP 12 -26197364 2048 2048 -26200239 CLICK1 -26200239 CLICK2 -~~~ -~~~ -~~~ -26200261 2048 67110912 -~~~ -26200411 2048 2048 -26205923 DOWN 12 -26205923 0 2048 -~~~ -~~~ -26205949 0 0 -~~~ -~~~ -26205951 0 1 -~~~ -~~~ -26205953 0 3 -~~~ -~~~ -26205955 0 7 -~~~ -~~~ -26205957 0 15 -~~~ -~~~ -26205959 0 31 -~~~ -~~~ -26205960 0 63 -~~~ -~~~ -26205962 0 127 -~~~ -~~~ -26205964 0 255 -26205965 homeCount = 52 -26205966 waitCount = 23 -26205966 ripCount = 22 -26205967 locktype1 = 1 -26205967 locktype2 = 2 -26205988 locktype3 = 5 -26205989 goalCount = 3 -26205989 goalTotal = 13 -26205990 otherCount = 30 -~~~ -26205991 CURRENTGOAL IS [3] -~~~ -26205991 UP 12 -26205991 2048 255 -26206044 DOWN 12 -26206044 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26206086 homeCount = 52 -26206087 waitCount = 23 -26206088 ripCount = 22 -26206088 locktype1 = 1 -26206089 locktype2 = 2 -26206089 locktype3 = 5 -26206090 goalCount = 3 -26206090 goalTotal = 13 -26206091 otherCount = 30 -~~~ -26206092 CURRENTGOAL IS [3] -~~~ -26211547 UP 3 -26211547 4 255 -~~~ -~~~ -26211574 outer reward -~~~ -26211574 4 262399 -~~~ -~~~ -26211584 DOWN 3 -26211584 0 262399 -26211594 4 262399 -~~~ -~~~ -26211604 4 262398 -~~~ -~~~ -26211605 4 262396 -~~~ -~~~ -26211607 4 262392 -~~~ -~~~ -26211609 4 262384 -~~~ -~~~ -26211611 4 262368 -~~~ -~~~ -26211613 4 262336 -~~~ -~~~ -26211614 4 262272 -~~~ -~~~ -26211616 4 262144 -~~~ -~~~ -26211618 4 262656 -26211619 homeCount = 52 -26211620 waitCount = 23 -26211620 ripCount = 22 -26211641 locktype1 = 1 -26211641 locktype2 = 2 -26211642 locktype3 = 5 -26211642 goalCount = 4 -26211643 goalTotal = 14 -26211643 otherCount = 30 -~~~ -26211753 DOWN 3 -26211753 0 262656 -26211803 4 262656 -26212024 4 512 -26212186 DOWN 3 -26212186 0 512 -26212197 4 512 -26212288 DOWN 3 -26212288 0 512 -26212324 4 512 -26212415 DOWN 3 -26212415 0 512 -26212448 4 512 -26212545 DOWN 3 -26212545 0 512 -26212578 4 512 -26212679 DOWN 3 -26212679 0 512 -26212713 4 512 -26212817 DOWN 3 -26212817 0 512 -26212848 4 512 -26212954 DOWN 3 -26212954 0 512 -26212985 4 512 -26213104 DOWN 3 -26213103 0 512 -26213127 4 512 -26213255 DOWN 3 -26213255 0 512 -26213277 4 512 -26213411 DOWN 3 -26213411 0 512 -26213421 4 512 -26213565 DOWN 3 -26213565 0 512 -26213573 4 512 -26213710 DOWN 3 -26213710 0 512 -26213718 4 512 -26219060 DOWN 3 -26219060 0 512 -26219068 4 512 -26221652 DOWN 3 -26221652 0 512 -26229831 UP 10 -26229831 waslock = 0 -26229831 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26229859 512 16777728 -~~~ -26229926 DOWN 10 -26229926 0 16777728 -26229942 UP 10 -26229942 waslock = 0 -26229942 512 16777728 -~~~ -~~~ -26229952 512 16778752 -~~~ -~~~ -26229954 512 16778240 -26229955 homeCount = 53 -26229956 waitCount = 23 -26229957 ripCount = 22 -26229957 locktype1 = 1 -26229958 locktype2 = 2 -26229958 locktype3 = 5 -26229959 goalCount = 4 -26229959 goalTotal = 14 -26229960 otherCount = 30 -~~~ -~~~ -26230009 512 1024 -26230077 DOWN 10 -26230077 0 1024 -~~~ -~~~ -~~~ -~~~ -26230108 homeCount = 53 -26230109 waitCount = 23 -26230109 ripCount = 22 -26230110 locktype1 = 1 -26230110 locktype2 = 2 -26230111 locktype3 = 5 -26230111 goalCount = 4 -26230112 goalTotal = 14 -26230112 otherCount = 30 -~~~ -26230121 UP 10 -26230122 waslock = 0 -26230121 512 1024 -~~~ -26233087 DOWN 10 -26233087 0 1024 -~~~ -~~~ -~~~ -~~~ -26233108 homeCount = 53 -26233108 waitCount = 23 -26233109 ripCount = 22 -26233109 locktype1 = 1 -26233110 locktype2 = 2 -26233110 locktype3 = 5 -26233111 goalCount = 4 -26233111 goalTotal = 14 -26233112 otherCount = 30 -~~~ -26233148 UP 10 -26233148 waslock = 0 -26233148 512 1024 -26233177 DOWN 10 -26233177 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -26233199 homeCount = 53 -26233200 waitCount = 23 -26233200 ripCount = 22 -26233201 locktype1 = 1 -26233201 locktype2 = 2 -26233202 locktype3 = 5 -26233202 goalCount = 4 -26233203 goalTotal = 14 -26233203 otherCount = 30 -~~~ -26247738 UP 11 -26247738 1024 1024 -26248518 DOWN 11 -26248518 0 1024 -26248528 UP 11 -26248528 1024 1024 -26248828 DOWN 11 -26248828 0 1024 -26248837 UP 11 -26248837 1024 1024 -26255739 BEEP1 -26255739 BEEP2 -~~~ -~~~ -~~~ -26255767 1024 33555456 -~~~ -26255917 1024 1024 -26262091 DOWN 11 -26262091 0 1024 -~~~ -~~~ -26262114 0 0 -~~~ -~~~ -26262116 0 1 -~~~ -~~~ -26262118 0 3 -~~~ -~~~ -26262120 0 7 -~~~ -~~~ -26262122 0 15 -~~~ -~~~ -26262123 0 31 -~~~ -~~~ -26262125 0 63 -~~~ -~~~ -26262127 0 127 -~~~ -~~~ -26262129 0 255 -26262130 homeCount = 53 -26262130 waitCount = 23 -26262131 ripCount = 23 -26262131 locktype1 = 1 -26262132 locktype2 = 2 -26262153 locktype3 = 5 -26262153 goalCount = 4 -26262154 goalTotal = 14 -26262154 otherCount = 30 -~~~ -26262156 CURRENTGOAL IS [3] -~~~ -26266855 UP 2 -26266855 2 255 -~~~ -~~~ -26267703 DOWN 2 -26267703 0 255 -~~~ -~~~ -26267724 0 254 -~~~ -~~~ -26267726 0 252 -~~~ -~~~ -26267727 0 248 -~~~ -~~~ -26267729 0 240 -~~~ -~~~ -26267731 0 224 -~~~ -~~~ -26267733 0 192 -~~~ -~~~ -26267735 0 128 -~~~ -~~~ -26267737 0 0 -~~~ -~~~ -26267738 0 512 -26267739 homeCount = 53 -26267740 waitCount = 23 -26267740 ripCount = 23 -26267741 locktype1 = 1 -26267742 locktype2 = 2 -26267762 locktype3 = 5 -26267763 goalCount = 4 -26267763 goalTotal = 14 -26267764 otherCount = 31 -~~~ -26271543 UP 10 -26271543 waslock = 0 -26271543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26271574 512 16777728 -~~~ -26271724 512 512 -26271742 DOWN 10 -26271742 0 512 -~~~ -26271766 UP 10 -26271767 waslock = 0 -26271766 512 512 -~~~ -~~~ -~~~ -26271769 512 1024 -26271770 homeCount = 54 -26271770 waitCount = 23 -26271771 ripCount = 23 -26271771 locktype1 = 1 -26271772 locktype2 = 2 -26271772 locktype3 = 5 -26271773 goalCount = 4 -26271794 goalTotal = 14 -26271794 otherCount = 31 -~~~ -~~~ -26276322 DOWN 10 -26276322 0 1024 -~~~ -~~~ -~~~ -26276348 UP 10 -26276348 waslock = 0 -26276348 512 1024 -~~~ -26276350 homeCount = 54 -26276351 waitCount = 23 -26276351 ripCount = 23 -26276352 locktype1 = 1 -26276352 locktype2 = 2 -26276353 locktype3 = 5 -26276353 goalCount = 4 -26276354 goalTotal = 14 -26276354 otherCount = 31 -~~~ -~~~ -26276422 DOWN 10 -26276422 0 1024 -~~~ -~~~ -~~~ -~~~ -26276450 homeCount = 54 -26276451 waitCount = 23 -26276451 ripCount = 23 -26276452 locktype1 = 1 -26276452 locktype2 = 2 -26276453 locktype3 = 5 -26276453 goalCount = 4 -26276454 goalTotal = 14 -26276454 otherCount = 31 -~~~ -26278218 UP 11 -26278218 1024 1024 -26278776 DOWN 11 -26278776 0 1024 -26278976 LOCKOUT 3 -~~~ -26278999 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26279003 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26279119 UP 11 -26279119 1024 0 -26280486 DOWN 11 -26280486 0 0 -26280724 UP 11 -26280724 1024 0 -26281454 DOWN 11 -26281454 0 0 -26281479 UP 11 -26281479 1024 0 -26283087 DOWN 11 -26283087 0 0 -26287949 UP 7 -26287949 64 0 -26288421 DOWN 7 -26288421 0 0 -26288485 64 0 -26289335 DOWN 7 -26289335 0 0 -26299747 512 0 -26300083 0 0 -26303999 LOCKEND -~~~ -~~~ -~~~ -26304019 0 512 -26306470 UP 10 -26306471 waslock = 0 -26306470 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26306503 512 16777728 -~~~ -26306653 512 512 -26306805 DOWN 10 -26306805 0 512 -~~~ -~~~ -26306827 0 1536 -~~~ -~~~ -26306829 0 1024 -26306830 homeCount = 55 -26306831 waitCount = 23 -26306831 ripCount = 23 -26306832 locktype1 = 1 -26306832 locktype2 = 2 -26306833 locktype3 = 6 -26306833 goalCount = 4 -26306834 goalTotal = 14 -26306834 otherCount = 31 -~~~ -26307269 UP 10 -26307269 waslock = 0 -26307269 512 1024 -~~~ -26311394 DOWN 10 -26311394 0 1024 -~~~ -~~~ -~~~ -~~~ -26311414 homeCount = 55 -26311415 waitCount = 23 -26311415 ripCount = 23 -26311416 locktype1 = 1 -26311416 locktype2 = 2 -26311417 locktype3 = 6 -26311417 goalCount = 4 -26311418 goalTotal = 14 -26311418 otherCount = 31 -~~~ -26351737 UP 10 -26351737 waslock = 0 -26351737 512 1024 -26351742 DOWN 10 -26351742 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -26351768 homeCount = 55 -26351768 waitCount = 23 -26351769 ripCount = 23 -26351769 locktype1 = 1 -26351770 locktype2 = 2 -26351770 locktype3 = 6 -26351771 goalCount = 4 -26351771 goalTotal = 14 -26351772 otherCount = 31 -~~~ -26372865 UP 1 -26372865 1 1024 -~~~ -26372883 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26372886 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26375957 DOWN 1 -26375957 0 0 -26385649 512 0 -26385845 0 0 -26386178 512 0 -26386431 0 0 -26386459 512 0 -26386675 0 0 -26386743 512 0 -26386792 0 0 -26386863 512 0 -26386871 0 0 -26392652 UP 12 -26392652 2048 0 -26393059 DOWN 12 -26393059 0 0 -26397883 LOCKEND -~~~ -~~~ -~~~ -26397903 0 512 -26399587 UP 12 -26399587 2048 512 -26399913 DOWN 12 -26399913 0 512 -26400043 UP 12 -26400043 2048 512 -26400088 DOWN 12 -26400088 0 512 -26400350 UP 12 -26400350 2048 512 -26400466 DOWN 12 -26400466 0 512 -26400557 UP 12 -26400557 2048 512 -26401146 DOWN 12 -26401146 0 512 -26401657 UP 12 -26401657 2048 512 -26401745 DOWN 12 -26401745 0 512 -26401786 UP 12 -26401785 2048 512 -26402161 DOWN 12 -26402161 0 512 -26412119 UP 10 -26412120 waslock = 0 -26412119 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26412148 512 16777728 -~~~ -26412157 DOWN 10 -26412157 0 16777728 -~~~ -~~~ -26412181 0 16778752 -~~~ -~~~ -26412183 0 16778240 -26412184 homeCount = 56 -26412185 waitCount = 23 -26412185 ripCount = 23 -26412186 locktype1 = 1 -26412186 locktype2 = 3 -26412187 locktype3 = 6 -26412187 goalCount = 4 -26412188 goalTotal = 14 -26412188 otherCount = 31 -~~~ -26412209 UP 10 -26412209 waslock = 0 -26412209 512 16778240 -~~~ -26412298 512 1024 -26412306 DOWN 10 -26412306 0 1024 -~~~ -~~~ -~~~ -~~~ -26412325 homeCount = 56 -26412326 waitCount = 23 -26412326 ripCount = 23 -26412327 locktype1 = 1 -26412327 locktype2 = 3 -26412328 locktype3 = 6 -26412328 goalCount = 4 -26412329 goalTotal = 14 -26412329 otherCount = 31 -~~~ -26412346 UP 10 -26412346 waslock = 0 -26412346 512 1024 -~~~ -26412417 DOWN 10 -26412417 0 1024 -~~~ -~~~ -~~~ -~~~ -26412448 homeCount = 56 -26412448 waitCount = 23 -26412449 ripCount = 23 -26412449 locktype1 = 1 -26412450 locktype2 = 3 -26412450 locktype3 = 6 -26412451 goalCount = 4 -26412451 goalTotal = 14 -26412452 otherCount = 31 -~~~ -26412489 UP 10 -26412489 waslock = 0 -26412489 512 1024 -~~~ -26412539 DOWN 10 -26412539 0 1024 -~~~ -~~~ -~~~ -~~~ -26412565 homeCount = 56 -26412566 waitCount = 23 -26412566 ripCount = 23 -26412567 locktype1 = 1 -26412567 locktype2 = 3 -26412568 locktype3 = 6 -26412568 goalCount = 4 -26412569 goalTotal = 14 -26412569 otherCount = 31 -~~~ -26412617 UP 10 -26412618 waslock = 0 -26412617 512 1024 -~~~ -26418530 DOWN 10 -26418530 0 1024 -~~~ -~~~ -~~~ -~~~ -26418559 homeCount = 56 -26418559 waitCount = 23 -26418560 ripCount = 23 -26418560 locktype1 = 1 -26418561 locktype2 = 3 -26418561 locktype3 = 6 -26418562 goalCount = 4 -26418562 goalTotal = 14 -26418563 otherCount = 31 -~~~ -26430877 UP 2 -26430877 2 1024 -~~~ -26430896 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26430900 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26431379 DOWN 2 -26431379 0 0 -26445486 512 0 -26445500 0 0 -26446355 512 0 -26446424 0 0 -26446456 512 0 -26446528 0 0 -26451352 UP 1 -26451352 1 0 -26451385 DOWN 1 -26451385 0 0 -26451422 1 0 -26452043 DOWN 1 -26452043 0 0 -26452263 1 0 -26452275 DOWN 1 -26452275 0 0 -26455896 LOCKEND -~~~ -~~~ -~~~ -26455917 0 512 -26474835 UP 10 -26474835 waslock = 0 -26474835 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26474862 512 16777728 -~~~ -26474896 DOWN 10 -26474896 0 16777728 -~~~ -~~~ -26474916 0 16778752 -~~~ -~~~ -26474918 0 16778240 -26474919 homeCount = 57 -26474920 waitCount = 23 -26474920 ripCount = 23 -26474921 locktype1 = 1 -26474921 locktype2 = 4 -26474922 locktype3 = 6 -26474922 goalCount = 4 -26474923 goalTotal = 14 -26474923 otherCount = 31 -~~~ -26474944 UP 10 -26474944 waslock = 0 -26474944 512 16778240 -~~~ -26475012 512 1024 -26475064 DOWN 10 -26475064 0 1024 -~~~ -~~~ -~~~ -~~~ -26475094 homeCount = 57 -26475095 waitCount = 23 -26475095 ripCount = 23 -26475096 locktype1 = 1 -26475096 locktype2 = 4 -26475097 locktype3 = 6 -26475097 goalCount = 4 -26475098 goalTotal = 14 -26475098 otherCount = 31 -~~~ -26475180 UP 10 -26475180 waslock = 0 -26475180 512 1024 -~~~ -26475308 DOWN 10 -26475308 0 1024 -~~~ -~~~ -~~~ -~~~ -26475331 homeCount = 57 -26475331 waitCount = 23 -26475332 ripCount = 23 -26475332 locktype1 = 1 -26475333 locktype2 = 4 -26475333 locktype3 = 6 -26475334 goalCount = 4 -26475334 goalTotal = 14 -26475335 otherCount = 31 -~~~ -26475336 UP 10 -26475336 waslock = 0 -26475335 512 1024 -~~~ -26480573 DOWN 10 -26480573 0 1024 -~~~ -~~~ -~~~ -~~~ -26480600 homeCount = 57 -26480600 waitCount = 23 -26480601 ripCount = 23 -26480601 locktype1 = 1 -26480602 locktype2 = 4 -26480602 locktype3 = 6 -26480603 goalCount = 4 -26480603 goalTotal = 14 -26480604 otherCount = 31 -~~~ -26482063 UP 11 -26482063 1024 1024 -26482260 DOWN 11 -26482260 0 1024 -26482460 LOCKOUT 3 -~~~ -26482478 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26482482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26486116 UP 7 -26486116 64 0 -26486575 DOWN 7 -26486575 0 0 -26502358 512 0 -26502527 0 0 -26507478 LOCKEND -~~~ -~~~ -~~~ -26507497 0 512 -26610111 UP 10 -26610111 waslock = 0 -26610111 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26610142 512 16777728 -~~~ -26610292 512 512 -26610742 DOWN 10 -26610742 0 512 -~~~ -~~~ -26610767 0 1536 -~~~ -~~~ -26610769 0 1024 -26610770 homeCount = 58 -26610771 waitCount = 23 -26610771 ripCount = 23 -26610772 locktype1 = 1 -26610772 locktype2 = 4 -26610773 locktype3 = 7 -26610773 goalCount = 4 -26610774 goalTotal = 14 -26610774 otherCount = 31 -~~~ -26610795 UP 10 -26610796 waslock = 0 -26610795 512 1024 -~~~ -26611050 DOWN 10 -26611050 0 1024 -26611074 UP 10 -26611075 waslock = 0 -26611074 512 1024 -~~~ -~~~ -~~~ -~~~ -26611083 homeCount = 58 -26611083 waitCount = 23 -26611084 ripCount = 23 -26611084 locktype1 = 1 -26611085 locktype2 = 4 -26611085 locktype3 = 7 -26611086 goalCount = 4 -26611086 goalTotal = 14 -26611087 otherCount = 31 -~~~ -~~~ -26611219 DOWN 10 -26611219 0 1024 -~~~ -~~~ -~~~ -~~~ -26611240 homeCount = 58 -26611240 waitCount = 23 -26611241 ripCount = 23 -26611241 locktype1 = 1 -26611242 locktype2 = 4 -26611242 locktype3 = 7 -26611243 goalCount = 4 -26611243 goalTotal = 14 -26611244 otherCount = 31 -~~~ -26611244 UP 10 -26611245 waslock = 0 -26611244 512 1024 -~~~ -26611380 DOWN 10 -26611380 0 1024 -~~~ -26611412 UP 10 -26611412 waslock = 0 -26611412 512 1024 -~~~ -~~~ -~~~ -26611415 homeCount = 58 -26611416 waitCount = 23 -26611416 ripCount = 23 -26611417 locktype1 = 1 -26611417 locktype2 = 4 -26611418 locktype3 = 7 -26611418 goalCount = 4 -26611419 goalTotal = 14 -26611419 otherCount = 31 -~~~ -~~~ -26611544 DOWN 10 -26611544 0 1024 -26611573 UP 10 -26611573 waslock = 0 -26611573 512 1024 -~~~ -~~~ -~~~ -~~~ -26611579 homeCount = 58 -26611579 waitCount = 23 -26611580 ripCount = 23 -26611580 locktype1 = 1 -26611581 locktype2 = 4 -26611581 locktype3 = 7 -26611582 goalCount = 4 -26611582 goalTotal = 14 -26611583 otherCount = 31 -~~~ -~~~ -26611731 DOWN 10 -26611731 0 1024 -~~~ -~~~ -~~~ -~~~ -26611755 homeCount = 58 -26611756 waitCount = 23 -26611756 ripCount = 23 -26611757 locktype1 = 1 -26611757 locktype2 = 4 -26611758 locktype3 = 7 -26611758 goalCount = 4 -26611759 goalTotal = 14 -26611759 otherCount = 31 -~~~ -26611760 UP 10 -26611760 waslock = 0 -26611760 512 1024 -~~~ -26611907 DOWN 10 -26611907 0 1024 -~~~ -~~~ -~~~ -~~~ -26611935 homeCount = 58 -26611935 waitCount = 23 -26611936 ripCount = 23 -26611936 locktype1 = 1 -26611937 locktype2 = 4 -26611937 locktype3 = 7 -26611938 goalCount = 4 -26611938 goalTotal = 14 -26611939 otherCount = 31 -~~~ -26611943 UP 10 -26611943 waslock = 0 -26611943 512 1024 -~~~ -26612078 DOWN 10 -26612078 0 1024 -26612098 UP 10 -26612098 waslock = 0 -26612098 512 1024 -~~~ -~~~ -~~~ -~~~ -26612110 homeCount = 58 -26612111 waitCount = 23 -26612111 ripCount = 23 -26612112 locktype1 = 1 -26612112 locktype2 = 4 -26612113 locktype3 = 7 -26612113 goalCount = 4 -26612114 goalTotal = 14 -26612114 otherCount = 31 -~~~ -~~~ -26613140 DOWN 10 -26613140 0 1024 -26613146 UP 10 -26613146 waslock = 0 -26613146 512 1024 -~~~ -~~~ -~~~ -~~~ -26613168 homeCount = 58 -26613169 waitCount = 23 -26613169 ripCount = 23 -26613170 locktype1 = 1 -26613170 locktype2 = 4 -26613171 locktype3 = 7 -26613171 goalCount = 4 -26613172 goalTotal = 14 -26613172 otherCount = 31 -~~~ -~~~ -26613312 DOWN 10 -26613312 0 1024 -26613330 UP 10 -26613330 waslock = 0 -26613330 512 1024 -~~~ -~~~ -~~~ -~~~ -26613338 homeCount = 58 -26613339 waitCount = 23 -26613339 ripCount = 23 -26613340 locktype1 = 1 -26613340 locktype2 = 4 -26613341 locktype3 = 7 -26613341 goalCount = 4 -26613342 goalTotal = 14 -26613342 otherCount = 31 -~~~ -~~~ -26613483 DOWN 10 -26613483 0 1024 -~~~ -~~~ -~~~ -~~~ -26613506 homeCount = 58 -26613507 waitCount = 23 -26613508 ripCount = 23 -26613508 locktype1 = 1 -26613509 locktype2 = 4 -26613509 locktype3 = 7 -26613510 goalCount = 4 -26613510 goalTotal = 14 -26613511 otherCount = 31 -~~~ -26613513 UP 10 -26613514 waslock = 0 -26613513 512 1024 -~~~ -26614355 DOWN 10 -26614355 0 1024 -26614372 UP 10 -26614373 waslock = 0 -26614372 512 1024 -~~~ -~~~ -~~~ -~~~ -26614377 homeCount = 58 -26614378 waitCount = 23 -26614378 ripCount = 23 -26614379 locktype1 = 1 -26614379 locktype2 = 4 -26614380 locktype3 = 7 -26614380 goalCount = 4 -26614381 goalTotal = 14 -26614381 otherCount = 31 -~~~ -~~~ -26614729 DOWN 10 -26614729 0 1024 -26614735 UP 10 -26614735 waslock = 0 -26614735 512 1024 -~~~ -~~~ -~~~ -~~~ -26614757 homeCount = 58 -26614758 waitCount = 23 -26614758 ripCount = 23 -26614759 locktype1 = 1 -26614759 locktype2 = 4 -26614760 locktype3 = 7 -26614760 goalCount = 4 -26614761 goalTotal = 14 -26614761 otherCount = 31 -~~~ -~~~ -26614892 DOWN 10 -26614892 0 1024 -~~~ -26614914 UP 10 -26614914 waslock = 0 -26614914 512 1024 -~~~ -~~~ -~~~ -26614917 homeCount = 58 -26614918 waitCount = 23 -26614918 ripCount = 23 -26614919 locktype1 = 1 -26614919 locktype2 = 4 -26614920 locktype3 = 7 -26614920 goalCount = 4 -26614921 goalTotal = 14 -26614921 otherCount = 31 -~~~ -~~~ -26615008 DOWN 10 -26615008 0 1024 -~~~ -~~~ -~~~ -~~~ -26615036 homeCount = 58 -26615037 waitCount = 23 -26615038 ripCount = 23 -26615038 locktype1 = 1 -26615039 locktype2 = 4 -26615039 locktype3 = 7 -26615040 goalCount = 4 -26615040 goalTotal = 14 -26615041 otherCount = 31 -~~~ -26638056 UP 5 -26638056 16 1024 -~~~ -26638084 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26638088 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26638140 DOWN 5 -26638140 0 0 -26638216 16 0 -26638335 DOWN 5 -26638335 0 0 -26638492 16 0 -26638740 DOWN 5 -26638740 0 0 -26663084 LOCKEND -~~~ -~~~ -~~~ -26663104 0 512 -26828055 UP 10 -26828055 waslock = 0 -26828055 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26828081 512 16777728 -~~~ -26828231 512 512 -26828398 DOWN 10 -26828398 0 512 -~~~ -~~~ -26828424 0 1536 -~~~ -~~~ -26828426 0 1024 -26828427 homeCount = 59 -26828427 waitCount = 23 -26828428 ripCount = 23 -26828428 locktype1 = 1 -26828429 locktype2 = 5 -26828429 locktype3 = 7 -26828430 goalCount = 4 -26828430 goalTotal = 14 -26828431 otherCount = 31 -~~~ -26828487 UP 10 -26828488 waslock = 0 -26828487 512 1024 -~~~ -26828917 DOWN 10 -26828917 0 1024 -~~~ -~~~ -~~~ -26828938 UP 10 -26828938 waslock = 0 -26828938 512 1024 -~~~ -26828940 homeCount = 59 -26828940 waitCount = 23 -26828941 ripCount = 23 -26828941 locktype1 = 1 -26828942 locktype2 = 5 -26828942 locktype3 = 7 -26828943 goalCount = 4 -26828943 goalTotal = 14 -26828944 otherCount = 31 -~~~ -~~~ -26829068 DOWN 10 -26829068 0 1024 -26829088 UP 10 -26829088 waslock = 0 -26829088 512 1024 -~~~ -~~~ -~~~ -~~~ -26829100 homeCount = 59 -26829100 waitCount = 23 -26829101 ripCount = 23 -26829101 locktype1 = 1 -26829102 locktype2 = 5 -26829102 locktype3 = 7 -26829103 goalCount = 4 -26829103 goalTotal = 14 -26829104 otherCount = 31 -~~~ -~~~ -26829218 DOWN 10 -26829218 0 1024 -26829240 UP 10 -26829240 waslock = 0 -26829240 512 1024 -~~~ -~~~ -~~~ -~~~ -26829251 homeCount = 59 -26829252 waitCount = 23 -26829252 ripCount = 23 -26829253 locktype1 = 1 -26829253 locktype2 = 5 -26829254 locktype3 = 7 -26829254 goalCount = 4 -26829255 goalTotal = 14 -26829256 otherCount = 31 -~~~ -~~~ -26829378 DOWN 10 -26829378 0 1024 -26829396 UP 10 -26829397 waslock = 0 -26829396 512 1024 -~~~ -~~~ -~~~ -~~~ -26829421 homeCount = 59 -26829422 waitCount = 23 -26829422 ripCount = 23 -26829423 locktype1 = 1 -26829423 locktype2 = 5 -26829424 locktype3 = 7 -26829424 goalCount = 4 -26829425 goalTotal = 14 -26829425 otherCount = 31 -~~~ -~~~ -26829533 DOWN 10 -26829533 0 1024 -26829546 UP 10 -26829546 waslock = 0 -26829546 512 1024 -~~~ -~~~ -~~~ -~~~ -26829570 homeCount = 59 -26829571 waitCount = 23 -26829571 ripCount = 23 -26829572 locktype1 = 1 -26829572 locktype2 = 5 -26829573 locktype3 = 7 -26829573 goalCount = 4 -26829574 goalTotal = 14 -26829574 otherCount = 31 -~~~ -~~~ -26836773 DOWN 10 -26836773 0 1024 -~~~ -~~~ -~~~ -~~~ -26836797 homeCount = 59 -26836798 waitCount = 23 -26836798 ripCount = 23 -26836799 locktype1 = 1 -26836799 locktype2 = 5 -26836800 locktype3 = 7 -26836800 goalCount = 4 -26836801 goalTotal = 14 -26836801 otherCount = 31 -~~~ -26836807 UP 10 -26836807 waslock = 0 -26836807 512 1024 -~~~ -26836875 DOWN 10 -26836875 0 1024 -~~~ -~~~ -~~~ -~~~ -26836898 homeCount = 59 -26836899 waitCount = 23 -26836899 ripCount = 23 -26836900 locktype1 = 1 -26836900 locktype2 = 5 -26836901 locktype3 = 7 -26836901 goalCount = 4 -26836902 goalTotal = 14 -26836902 otherCount = 31 -~~~ -26840595 UP 11 -26840595 1024 1024 -26841373 DOWN 11 -26841373 0 1024 -26841547 UP 11 -26841547 1024 1024 -26842677 DOWN 11 -26842677 0 1024 -26842764 UP 11 -26842764 1024 1024 -26844956 DOWN 11 -26844956 0 1024 -26845156 LOCKOUT 3 -~~~ -26845172 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26845176 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26845183 UP 11 -26845183 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26845256 DOWN 11 -26845256 0 0 -26845365 UP 11 -26845365 1024 0 -26845641 DOWN 11 -26845641 0 0 -26846066 UP 11 -26846066 1024 0 -26846157 DOWN 11 -26846157 0 0 -26866622 UP 8 -26866622 128 0 -26866677 DOWN 8 -26866677 0 0 -26866696 128 0 -26867041 DOWN 8 -26867041 0 0 -26867078 128 0 -26867109 DOWN 8 -26867109 0 0 -26870172 LOCKEND -~~~ -~~~ -~~~ -26870193 0 512 -26877037 UP 10 -26877037 waslock = 0 -26877037 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26877067 512 16777728 -~~~ -26877073 DOWN 10 -26877073 0 16777728 -~~~ -~~~ -26877082 0 16778752 -~~~ -~~~ -26877084 0 16778240 -26877085 homeCount = 60 -26877085 waitCount = 23 -26877086 ripCount = 23 -26877086 locktype1 = 1 -26877087 locktype2 = 5 -26877087 locktype3 = 8 -26877088 goalCount = 4 -26877088 goalTotal = 14 -26877089 otherCount = 31 -~~~ -26877151 UP 10 -26877151 waslock = 0 -26877151 512 16778240 -~~~ -26877201 DOWN 10 -26877201 0 16778240 -26877217 0 1024 -~~~ -~~~ -~~~ -~~~ -26877224 homeCount = 60 -26877225 waitCount = 23 -26877225 ripCount = 23 -26877226 locktype1 = 1 -26877226 locktype2 = 5 -26877227 locktype3 = 8 -26877227 goalCount = 4 -26877228 goalTotal = 14 -26877228 otherCount = 31 -~~~ -26877534 UP 10 -26877535 waslock = 0 -26877534 512 1024 -~~~ -26877694 DOWN 10 -26877694 0 1024 -~~~ -~~~ -~~~ -26877715 UP 10 -26877715 waslock = 0 -26877715 512 1024 -~~~ -26877717 homeCount = 60 -26877718 waitCount = 23 -26877718 ripCount = 23 -26877719 locktype1 = 1 -26877719 locktype2 = 5 -26877720 locktype3 = 8 -26877720 goalCount = 4 -26877721 goalTotal = 14 -26877742 otherCount = 31 -~~~ -~~~ -26877844 DOWN 10 -26877844 0 1024 -~~~ -~~~ -~~~ -~~~ -26877866 homeCount = 60 -26877866 waitCount = 23 -26877867 ripCount = 23 -26877867 locktype1 = 1 -26877868 locktype2 = 5 -26877868 locktype3 = 8 -26877869 goalCount = 4 -26877869 goalTotal = 14 -26877870 otherCount = 31 -~~~ -26877872 UP 10 -26877873 waslock = 0 -26877872 512 1024 -~~~ -26877995 DOWN 10 -26877994 0 1024 -~~~ -~~~ -~~~ -~~~ -26878015 homeCount = 60 -26878016 waitCount = 23 -26878016 ripCount = 23 -26878017 locktype1 = 1 -26878017 locktype2 = 5 -26878018 locktype3 = 8 -26878018 goalCount = 4 -26878019 goalTotal = 14 -26878019 otherCount = 31 -~~~ -26878027 UP 10 -26878027 waslock = 0 -26878027 512 1024 -~~~ -26878159 DOWN 10 -26878159 0 1024 -26878173 UP 10 -26878174 waslock = 0 -26878173 512 1024 -~~~ -~~~ -~~~ -~~~ -26878196 homeCount = 60 -26878196 waitCount = 23 -26878197 ripCount = 23 -26878197 locktype1 = 1 -26878198 locktype2 = 5 -26878198 locktype3 = 8 -26878199 goalCount = 4 -26878199 goalTotal = 14 -26878200 otherCount = 31 -~~~ -~~~ -26878498 DOWN 10 -26878498 0 1024 -26878503 UP 10 -26878503 waslock = 0 -26878503 512 1024 -~~~ -~~~ -~~~ -~~~ -26878527 homeCount = 60 -26878528 waitCount = 23 -26878528 ripCount = 23 -26878529 locktype1 = 1 -26878529 locktype2 = 5 -26878530 locktype3 = 8 -26878530 goalCount = 4 -26878531 goalTotal = 14 -26878531 otherCount = 31 -~~~ -~~~ -26882217 DOWN 10 -26882217 0 1024 -26882229 UP 10 -26882229 waslock = 0 -26882229 512 1024 -~~~ -~~~ -~~~ -~~~ -26882244 homeCount = 60 -26882245 waitCount = 23 -26882245 ripCount = 23 -26882246 locktype1 = 1 -26882246 locktype2 = 5 -26882247 locktype3 = 8 -26882247 goalCount = 4 -26882248 goalTotal = 14 -26882248 otherCount = 31 -~~~ -~~~ -26882330 DOWN 10 -26882330 0 1024 -~~~ -~~~ -~~~ -~~~ -26882359 homeCount = 60 -26882360 waitCount = 23 -26882360 ripCount = 23 -26882361 locktype1 = 1 -26882361 locktype2 = 5 -26882362 locktype3 = 8 -26882362 goalCount = 4 -26882363 goalTotal = 14 -26882363 otherCount = 31 -~~~ -26882377 UP 10 -26882378 waslock = 0 -26882377 512 1024 -~~~ -26882442 DOWN 10 -26882442 0 1024 -~~~ -~~~ -~~~ -~~~ -26882465 homeCount = 60 -26882465 waitCount = 23 -26882466 ripCount = 23 -26882466 locktype1 = 1 -26882467 locktype2 = 5 -26882467 locktype3 = 8 -26882468 goalCount = 4 -26882468 goalTotal = 14 -26882469 otherCount = 31 -~~~ -26885557 UP 11 -26885557 1024 1024 -26886036 DOWN 11 -26886036 0 1024 -26886087 UP 11 -26886087 1024 1024 -26888031 DOWN 11 -26888031 0 1024 -26888091 UP 11 -26888091 1024 1024 -26889084 DOWN 11 -26889084 0 1024 -26889112 UP 11 -26889112 1024 1024 -26889129 DOWN 11 -26889129 0 1024 -26889167 UP 11 -26889167 1024 1024 -26892557 BEEP1 -26892557 BEEP2 -~~~ -~~~ -~~~ -26892586 1024 33555456 -~~~ -26892736 1024 1024 -26899793 DOWN 11 -26899793 0 1024 -~~~ -~~~ -26899812 0 0 -~~~ -~~~ -26899814 0 1 -~~~ -~~~ -26899816 0 3 -~~~ -~~~ -26899818 0 7 -~~~ -~~~ -26899820 0 15 -~~~ -~~~ -26899821 0 31 -~~~ -~~~ -26899823 0 63 -~~~ -~~~ -26899825 0 127 -~~~ -~~~ -26899827 0 255 -26899828 homeCount = 60 -26899828 waitCount = 23 -26899829 ripCount = 24 -26899830 locktype1 = 1 -26899830 locktype2 = 5 -26899851 locktype3 = 8 -26899852 goalCount = 4 -26899852 goalTotal = 14 -26899853 otherCount = 31 -~~~ -26899854 CURRENTGOAL IS [3] -~~~ -26899854 UP 11 -26899854 1024 255 -26899916 DOWN 11 -26899916 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26899951 homeCount = 60 -26899951 waitCount = 23 -26899952 ripCount = 24 -26899952 locktype1 = 1 -26899953 locktype2 = 5 -26899953 locktype3 = 8 -26899954 goalCount = 4 -26899954 goalTotal = 14 -26899955 otherCount = 31 -~~~ -26899956 CURRENTGOAL IS [3] -~~~ -26903241 UP 6 -26903241 32 255 -~~~ -~~~ -26903783 DOWN 6 -26903783 0 255 -~~~ -~~~ -26903805 0 254 -~~~ -~~~ -26903807 0 252 -~~~ -~~~ -26903809 0 248 -~~~ -~~~ -26903810 0 240 -~~~ -~~~ -26903812 0 224 -~~~ -~~~ -26903814 0 192 -~~~ -~~~ -26903816 0 128 -~~~ -~~~ -26903818 0 0 -~~~ -~~~ -26903820 0 512 -26903821 homeCount = 60 -26903821 waitCount = 23 -26903822 ripCount = 24 -26903822 locktype1 = 1 -26903823 locktype2 = 5 -26903844 locktype3 = 8 -26903844 goalCount = 4 -26903845 goalTotal = 14 -26903845 otherCount = 32 -~~~ -26911555 UP 10 -26911555 waslock = 0 -26911555 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26911582 512 16777728 -~~~ -26911731 512 512 -26912233 DOWN 10 -26912233 0 512 -~~~ -~~~ -26912255 0 2560 -~~~ -~~~ -26912257 0 2048 -26912258 homeCount = 61 -26912259 waitCount = 23 -26912259 ripCount = 24 -26912260 locktype1 = 1 -26912260 locktype2 = 5 -26912261 locktype3 = 8 -26912261 goalCount = 4 -26912262 goalTotal = 14 -26912262 otherCount = 32 -~~~ -26912287 UP 10 -26912287 waslock = 0 -26912287 512 2048 -~~~ -26920292 DOWN 10 -26920292 0 2048 -~~~ -~~~ -~~~ -~~~ -26920320 homeCount = 61 -26920320 waitCount = 23 -26920321 ripCount = 24 -26920321 locktype1 = 1 -26920322 locktype2 = 5 -26920322 locktype3 = 8 -26920323 goalCount = 4 -26920323 goalTotal = 14 -26920324 otherCount = 32 -~~~ -26920339 UP 10 -26920340 waslock = 0 -26920339 512 2048 -~~~ -26920386 DOWN 10 -26920386 0 2048 -~~~ -~~~ -~~~ -~~~ -26920410 homeCount = 61 -26920411 waitCount = 23 -26920411 ripCount = 24 -26920412 locktype1 = 1 -26920412 locktype2 = 5 -26920413 locktype3 = 8 -26920413 goalCount = 4 -26920414 goalTotal = 14 -26920414 otherCount = 32 -~~~ -26923784 UP 12 -26923784 2048 2048 -26925861 DOWN 12 -26925861 0 2048 -26925884 UP 12 -26925884 2048 2048 -26925973 DOWN 12 -26925973 0 2048 -26926052 UP 12 -26926052 2048 2048 -26926816 DOWN 12 -26926816 0 2048 -26926864 UP 12 -26926864 2048 2048 -26926874 DOWN 12 -26926874 0 2048 -26926909 UP 12 -26926909 2048 2048 -26926925 DOWN 12 -26926925 0 2048 -26926989 UP 12 -26926989 2048 2048 -26926999 DOWN 12 -26926999 0 2048 -26927041 UP 12 -26927041 2048 2048 -26927325 DOWN 12 -26927325 0 2048 -26927356 UP 12 -26927356 2048 2048 -26927785 CLICK1 -26927785 CLICK2 -~~~ -~~~ -~~~ -26927811 2048 67110912 -~~~ -26927961 2048 2048 -26928178 DOWN 12 -26928178 0 2048 -26928199 UP 12 -26928199 2048 2048 -~~~ -~~~ -26928218 2048 0 -~~~ -~~~ -26928220 2048 1 -~~~ -~~~ -26928222 2048 3 -~~~ -~~~ -26928224 2048 7 -~~~ -~~~ -26928226 2048 15 -~~~ -~~~ -26928227 2048 31 -~~~ -~~~ -26928229 2048 63 -~~~ -~~~ -26928231 2048 127 -~~~ -~~~ -26928233 2048 255 -26928234 homeCount = 61 -26928234 waitCount = 24 -26928235 ripCount = 24 -26928256 locktype1 = 1 -26928256 locktype2 = 5 -26928257 locktype3 = 8 -26928257 goalCount = 4 -26928258 goalTotal = 14 -26928258 otherCount = 32 -~~~ -26928259 CURRENTGOAL IS [3] -~~~ -26933900 DOWN 12 -26933900 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26933935 homeCount = 61 -26933936 waitCount = 24 -26933937 ripCount = 24 -26933937 locktype1 = 1 -26933938 locktype2 = 5 -26933938 locktype3 = 8 -26933939 goalCount = 4 -26933939 goalTotal = 14 -26933940 otherCount = 32 -~~~ -26933941 CURRENTGOAL IS [3] -~~~ -26933962 UP 12 -26933962 2048 255 -26933994 DOWN 12 -26933994 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26934035 homeCount = 61 -26934036 waitCount = 24 -26934036 ripCount = 24 -26934037 locktype1 = 1 -26934037 locktype2 = 5 -26934038 locktype3 = 8 -26934038 goalCount = 4 -26934039 goalTotal = 14 -26934039 otherCount = 32 -~~~ -26934040 CURRENTGOAL IS [3] -~~~ -26937185 UP 3 -26937185 4 255 -~~~ -~~~ -26937210 outer reward -~~~ -26937210 4 262399 -~~~ -~~~ -26937426 DOWN 3 -26937426 0 262399 -~~~ -~~~ -26937450 0 262398 -~~~ -~~~ -26937452 0 262396 -~~~ -~~~ -26937453 0 262392 -~~~ -~~~ -26937455 0 262384 -~~~ -~~~ -26937457 0 262368 -~~~ -~~~ -26937459 0 262336 -~~~ -~~~ -26937461 0 262272 -~~~ -~~~ -26937463 0 262144 -~~~ -~~~ -26937464 0 262656 -26937465 homeCount = 61 -26937466 waitCount = 24 -26937466 ripCount = 24 -26937487 locktype1 = 1 -26937488 locktype2 = 5 -26937488 locktype3 = 8 -26937489 goalCount = 5 -26937489 goalTotal = 15 -26937490 otherCount = 32 -~~~ -26937490 4 262656 -26937660 4 512 -26937920 DOWN 3 -26937920 0 512 -26937928 4 512 -26938037 DOWN 3 -26938037 0 512 -26938051 4 512 -26938169 DOWN 3 -26938169 0 512 -26938180 4 512 -26938303 DOWN 3 -26938303 0 512 -26938316 4 512 -26938445 DOWN 3 -26938445 0 512 -26938449 4 512 -26947063 DOWN 3 -26947063 0 512 -26947088 4 512 -26947159 DOWN 3 -26947159 0 512 -26953706 UP 10 -26953707 waslock = 0 -26953706 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26953737 512 16777728 -~~~ -26953887 512 512 -26957615 DOWN 10 -26957615 0 512 -~~~ -~~~ -26957638 0 2560 -~~~ -~~~ -26957640 0 2048 -26957641 homeCount = 62 -26957641 waitCount = 24 -26957642 ripCount = 24 -26957642 locktype1 = 1 -26957643 locktype2 = 5 -26957643 locktype3 = 8 -26957644 goalCount = 5 -26957644 goalTotal = 15 -26957645 otherCount = 32 -~~~ -26957681 UP 10 -26957681 waslock = 0 -26957681 512 2048 -26957700 DOWN 10 -26957700 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -26957724 homeCount = 62 -26957724 waitCount = 24 -26957725 ripCount = 24 -26957725 locktype1 = 1 -26957726 locktype2 = 5 -26957726 locktype3 = 8 -26957727 goalCount = 5 -26957727 goalTotal = 15 -26957728 otherCount = 32 -~~~ -26962052 UP 12 -26962052 2048 2048 -26964338 DOWN 12 -26964338 0 2048 -26964404 UP 12 -26964404 2048 2048 -26964424 DOWN 12 -26964424 0 2048 -26964540 UP 12 -26964540 2048 2048 -26965052 CLICK1 -26965052 CLICK2 -~~~ -~~~ -~~~ -26965081 2048 67110912 -~~~ -26965231 2048 2048 -26973280 DOWN 12 -26973280 0 2048 -~~~ -~~~ -26973298 0 0 -~~~ -~~~ -26973300 0 1 -~~~ -~~~ -26973302 0 3 -~~~ -~~~ -26973303 0 7 -~~~ -~~~ -26973305 0 15 -~~~ -~~~ -26973307 0 31 -~~~ -~~~ -26973309 0 63 -~~~ -~~~ -26973311 0 127 -~~~ -~~~ -26973312 0 255 -26973314 homeCount = 62 -26973314 waitCount = 25 -26973315 ripCount = 24 -26973315 locktype1 = 1 -26973316 locktype2 = 5 -26973337 locktype3 = 8 -26973337 goalCount = 5 -26973338 goalTotal = 15 -26973338 otherCount = 32 -~~~ -26973339 CURRENTGOAL IS [3] -~~~ -26977815 UP 3 -26977815 4 255 -~~~ -~~~ -26977840 DOWN 3 -26977840 0 255 -26977841 outer reward -~~~ -~~~ -26977843 0 262399 -~~~ -~~~ -~~~ -26977869 0 262398 -~~~ -~~~ -26977871 0 262396 -~~~ -~~~ -26977873 0 262392 -~~~ -~~~ -26977875 0 262384 -~~~ -~~~ -26977876 0 262368 -~~~ -~~~ -26977878 0 262336 -~~~ -~~~ -26977880 0 262272 -~~~ -~~~ -26977882 0 262144 -~~~ -~~~ -26977884 0 262656 -26977885 homeCount = 62 -26977885 waitCount = 25 -26977886 ripCount = 24 -26977907 locktype1 = 1 -26977907 locktype2 = 5 -26977908 locktype3 = 8 -26977908 goalCount = 6 -26977909 goalTotal = 16 -26977909 otherCount = 32 -~~~ -26977915 4 262656 -26978097 DOWN 3 -26978097 0 262656 -26978154 4 262656 -26978291 4 512 -26978403 DOWN 3 -26978403 0 512 -26978408 4 512 -26978514 DOWN 3 -26978514 0 512 -26978539 4 512 -26978642 DOWN 3 -26978642 0 512 -26978666 4 512 -26978769 DOWN 3 -26978769 0 512 -26978798 4 512 -26978909 DOWN 3 -26978909 0 512 -26978930 4 512 -26979051 DOWN 3 -26979051 0 512 -26979070 4 512 -26979189 DOWN 3 -26979189 0 512 -26979206 4 512 -26979331 DOWN 3 -26979331 0 512 -26979347 4 512 -26979473 DOWN 3 -26979473 0 512 -26979486 4 512 -26986107 DOWN 3 -26986107 0 512 -26986116 4 512 -26986209 DOWN 3 -26986209 0 512 -26996165 UP 10 -26996165 waslock = 0 -26996165 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26996194 512 16777728 -~~~ -26996209 DOWN 10 -26996209 0 16777728 -~~~ -~~~ -26996229 0 16778752 -~~~ -~~~ -26996231 0 16778240 -26996232 homeCount = 63 -26996233 waitCount = 25 -26996233 ripCount = 24 -26996234 locktype1 = 1 -26996234 locktype2 = 5 -26996235 locktype3 = 8 -26996235 goalCount = 6 -26996236 goalTotal = 16 -26996236 otherCount = 32 -~~~ -26996334 UP 10 -26996335 waslock = 0 -26996334 512 16778240 -26996344 512 1024 -~~~ -26999145 DOWN 10 -26999145 0 1024 -~~~ -~~~ -~~~ -~~~ -26999172 homeCount = 63 -26999173 waitCount = 25 -26999173 ripCount = 24 -26999174 locktype1 = 1 -26999174 locktype2 = 5 -26999175 locktype3 = 8 -26999175 goalCount = 6 -26999176 goalTotal = 16 -26999176 otherCount = 32 -~~~ -26999205 UP 10 -26999205 waslock = 0 -26999205 512 1024 -~~~ -26999233 DOWN 10 -26999233 0 1024 -~~~ -~~~ -~~~ -~~~ -26999253 homeCount = 63 -26999254 waitCount = 25 -26999255 ripCount = 24 -26999255 locktype1 = 1 -26999256 locktype2 = 5 -26999256 locktype3 = 8 -26999257 goalCount = 6 -26999257 goalTotal = 16 -26999258 otherCount = 32 -~~~ -27001162 UP 11 -27001162 1024 1024 -27001306 DOWN 11 -27001306 0 1024 -27001401 UP 11 -27001401 1024 1024 -27003166 DOWN 11 -27003166 0 1024 -27003171 UP 11 -27003171 1024 1024 -27004049 DOWN 11 -27004049 0 1024 -27004086 UP 11 -27004086 1024 1024 -27007946 DOWN 11 -27007946 0 1024 -27008003 UP 11 -27008003 1024 1024 -27008162 BEEP1 -27008162 BEEP2 -~~~ -~~~ -~~~ -27008181 1024 33555456 -~~~ -27008331 1024 1024 -27014589 DOWN 11 -27014589 0 1024 -27014597 UP 11 -27014597 1024 1024 -~~~ -~~~ -27014609 1024 0 -~~~ -~~~ -27014611 1024 1 -~~~ -~~~ -27014613 1024 3 -~~~ -~~~ -27014615 1024 7 -~~~ -~~~ -27014617 1024 15 -~~~ -~~~ -27014618 1024 31 -~~~ -~~~ -27014620 1024 63 -~~~ -~~~ -27014622 1024 127 -~~~ -~~~ -27014624 1024 255 -27014625 homeCount = 63 -27014625 waitCount = 25 -27014626 ripCount = 25 -27014626 locktype1 = 1 -27014648 locktype2 = 5 -27014648 locktype3 = 8 -27014649 goalCount = 6 -27014649 goalTotal = 16 -27014650 otherCount = 32 -~~~ -27014651 CURRENTGOAL IS [3] -~~~ -27014657 DOWN 11 -27014657 0 255 -27014686 UP 11 -27014686 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27014706 homeCount = 63 -27014707 waitCount = 25 -27014707 ripCount = 25 -27014708 locktype1 = 1 -27014708 locktype2 = 5 -27014709 locktype3 = 8 -27014709 goalCount = 6 -27014710 goalTotal = 16 -27014710 otherCount = 32 -~~~ -27014712 CURRENTGOAL IS [3] -~~~ -27017012 DOWN 11 -27017012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27017052 homeCount = 63 -27017052 waitCount = 25 -27017053 ripCount = 25 -27017053 locktype1 = 1 -27017054 locktype2 = 5 -27017054 locktype3 = 8 -27017055 goalCount = 6 -27017055 goalTotal = 16 -27017056 otherCount = 32 -~~~ -27017057 CURRENTGOAL IS [3] -~~~ -27021381 UP 3 -27021381 4 255 -~~~ -27021406 DOWN 3 -27021406 0 255 -~~~ -27021408 outer reward -~~~ -27021408 0 262399 -~~~ -~~~ -~~~ -~~~ -27021428 0 262398 -~~~ -~~~ -27021429 0 262396 -~~~ -~~~ -27021431 0 262392 -~~~ -~~~ -27021433 0 262384 -~~~ -~~~ -27021435 0 262368 -~~~ -~~~ -27021437 0 262336 -~~~ -~~~ -27021439 0 262272 -~~~ -~~~ -27021440 0 262144 -~~~ -~~~ -27021442 0 262656 -27021443 homeCount = 63 -27021444 waitCount = 25 -27021444 ripCount = 25 -27021465 locktype1 = 1 -27021466 locktype2 = 5 -27021466 locktype3 = 8 -27021467 goalCount = 7 -27021467 goalTotal = 17 -27021468 otherCount = 32 -~~~ -27021468 4 262656 -27021652 DOWN 3 -27021652 0 262656 -27021699 4 262656 -27021858 4 512 -27021932 DOWN 3 -27021932 0 512 -27021941 4 512 -27022042 DOWN 3 -27022042 0 512 -27022076 4 512 -27022167 DOWN 3 -27022167 0 512 -27022203 4 512 -27022292 DOWN 3 -27022292 0 512 -27022330 4 512 -27022423 DOWN 3 -27022423 0 512 -27022459 4 512 -27022563 DOWN 3 -27022563 0 512 -27022595 4 512 -27022716 DOWN 3 -27022716 0 512 -27022736 4 512 -27022857 DOWN 3 -27022857 0 512 -27022878 4 512 -27023007 DOWN 3 -27023007 0 512 -27023021 4 512 -27023155 DOWN 3 -27023155 0 512 -27023169 4 512 -27023313 DOWN 3 -27023313 0 512 -27023320 4 512 -27023931 DOWN 3 -27023931 0 512 -27023939 4 512 -27030753 DOWN 3 -27030753 0 512 -27036671 UP 10 -27036671 waslock = 0 -27036671 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27036703 512 16777728 -~~~ -27036738 DOWN 10 -27036738 0 16777728 -~~~ -~~~ -27036757 0 16778752 -~~~ -~~~ -27036759 0 16778240 -27036760 homeCount = 64 -27036761 waitCount = 25 -27036761 ripCount = 25 -27036762 locktype1 = 1 -27036762 locktype2 = 5 -27036763 locktype3 = 8 -27036763 goalCount = 7 -27036764 goalTotal = 17 -27036764 otherCount = 32 -~~~ -27036785 UP 10 -27036786 waslock = 0 -27036785 512 16778240 -~~~ -27036853 512 1024 -27036868 DOWN 10 -27036868 0 1024 -~~~ -~~~ -~~~ -~~~ -27036891 homeCount = 64 -27036892 waitCount = 25 -27036892 ripCount = 25 -27036893 locktype1 = 1 -27036893 locktype2 = 5 -27036894 locktype3 = 8 -27036894 goalCount = 7 -27036895 goalTotal = 17 -27036895 otherCount = 32 -~~~ -27036905 UP 10 -27036905 waslock = 0 -27036905 512 1024 -~~~ -27041635 DOWN 10 -27041635 0 1024 -~~~ -~~~ -~~~ -~~~ -27041661 homeCount = 64 -27041661 waitCount = 25 -27041662 ripCount = 25 -27041662 locktype1 = 1 -27041663 locktype2 = 5 -27041663 locktype3 = 8 -27041664 goalCount = 7 -27041664 goalTotal = 17 -27041665 otherCount = 32 -~~~ -27043061 UP 11 -27043061 1024 1024 -27046061 BEEP1 -27046061 BEEP2 -~~~ -~~~ -~~~ -27046079 1024 33555456 -~~~ -27046120 DOWN 11 -27046120 0 33555456 -27046136 UP 11 -27046136 1024 33555456 -27046229 1024 1024 -~~~ -~~~ -27046756 1024 0 -~~~ -~~~ -27046758 1024 1 -~~~ -~~~ -27046760 1024 3 -~~~ -~~~ -27046762 1024 7 -~~~ -~~~ -27046764 1024 15 -~~~ -~~~ -27046765 1024 31 -~~~ -~~~ -27046767 1024 63 -~~~ -~~~ -27046769 1024 127 -~~~ -~~~ -27046771 1024 255 -27046772 homeCount = 64 -27046773 waitCount = 25 -27046773 ripCount = 26 -27046774 locktype1 = 1 -27046795 locktype2 = 5 -27046795 locktype3 = 8 -27046796 goalCount = 7 -27046796 goalTotal = 17 -27046797 otherCount = 32 -~~~ -27046798 CURRENTGOAL IS [3] -~~~ -27053631 DOWN 11 -27053631 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27053669 UP 11 -27053669 1024 255 -~~~ -~~~ -~~~ -~~~ -27053674 homeCount = 64 -27053674 waitCount = 25 -27053675 ripCount = 26 -27053675 locktype1 = 1 -27053676 locktype2 = 5 -27053676 locktype3 = 8 -27053677 goalCount = 7 -27053677 goalTotal = 17 -27053678 otherCount = 32 -~~~ -27053679 CURRENTGOAL IS [3] -~~~ -27053700 DOWN 11 -27053700 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27053736 homeCount = 64 -27053736 waitCount = 25 -27053737 ripCount = 26 -27053737 locktype1 = 1 -27053738 locktype2 = 5 -27053739 locktype3 = 8 -27053739 goalCount = 7 -27053740 goalTotal = 17 -27053740 otherCount = 32 -~~~ -27053741 CURRENTGOAL IS [3] -~~~ -27053762 UP 11 -27053762 1024 255 -27056774 DOWN 11 -27056774 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27056816 homeCount = 64 -27056816 waitCount = 25 -27056817 ripCount = 26 -27056817 locktype1 = 1 -27056818 locktype2 = 5 -27056818 locktype3 = 8 -27056819 goalCount = 7 -27056819 goalTotal = 17 -27056820 otherCount = 32 -~~~ -27056821 CURRENTGOAL IS [3] -~~~ -27062933 UP 3 -27062933 4 255 -~~~ -~~~ -27062952 outer reward -~~~ -27062952 4 262399 -~~~ -~~~ -27063104 DOWN 3 -27063104 0 262399 -~~~ -~~~ -27063129 0 262398 -~~~ -~~~ -27063131 0 262396 -~~~ -~~~ -27063133 0 262392 -~~~ -~~~ -27063134 0 262384 -~~~ -~~~ -27063136 0 262368 -~~~ -~~~ -27063138 0 262336 -~~~ -~~~ -27063140 0 262272 -~~~ -~~~ -27063142 0 262144 -~~~ -~~~ -27063144 0 262656 -27063145 homeCount = 64 -27063145 waitCount = 25 -27063146 ripCount = 26 -27063167 locktype1 = 1 -27063167 locktype2 = 5 -27063168 locktype3 = 8 -27063168 goalCount = 8 -27063169 goalTotal = 18 -27063169 otherCount = 32 -~~~ -27063170 4 262656 -27063263 DOWN 3 -27063263 0 262656 -27063290 4 262656 -27063402 4 512 -27063542 DOWN 3 -27063542 0 512 -27063554 4 512 -27063660 DOWN 3 -27063660 0 512 -27063683 4 512 -27063784 DOWN 3 -27063784 0 512 -27063813 4 512 -27063917 DOWN 3 -27063917 0 512 -27063947 4 512 -27064050 DOWN 3 -27064050 0 512 -27064081 4 512 -27064190 DOWN 3 -27064190 0 512 -27064217 4 512 -27064327 DOWN 3 -27064327 0 512 -27064350 4 512 -27064474 DOWN 3 -27064474 0 512 -27064492 4 512 -27064630 DOWN 3 -27064630 0 512 -27064639 4 512 -27064937 DOWN 3 -27064937 0 512 -27064946 4 512 -27071303 DOWN 3 -27071303 0 512 -27071339 4 512 -27071394 DOWN 3 -27071394 0 512 -27082226 UP 10 -27082226 waslock = 0 -27082226 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27082258 512 16777728 -~~~ -27082277 DOWN 10 -27082277 0 16777728 -~~~ -~~~ -27082306 0 16779776 -~~~ -~~~ -27082308 0 16779264 -27082309 homeCount = 65 -27082310 waitCount = 25 -27082310 ripCount = 26 -27082311 locktype1 = 1 -27082311 locktype2 = 5 -27082312 locktype3 = 8 -27082312 goalCount = 8 -27082313 goalTotal = 18 -27082313 otherCount = 32 -~~~ -27082334 UP 10 -27082335 waslock = 0 -27082334 512 16779264 -~~~ -27082408 512 2048 -27082466 DOWN 10 -27082466 0 2048 -~~~ -~~~ -~~~ -~~~ -27082492 homeCount = 65 -27082493 waitCount = 25 -27082493 ripCount = 26 -27082494 locktype1 = 1 -27082494 locktype2 = 5 -27082495 locktype3 = 8 -27082495 goalCount = 8 -27082496 goalTotal = 18 -27082496 otherCount = 32 -~~~ -27082497 UP 10 -27082497 waslock = 0 -27082497 512 2048 -~~~ -27087311 DOWN 10 -27087311 0 2048 -~~~ -~~~ -~~~ -~~~ -27087333 homeCount = 65 -27087334 waitCount = 25 -27087334 ripCount = 26 -27087335 locktype1 = 1 -27087335 locktype2 = 5 -27087336 locktype3 = 8 -27087336 goalCount = 8 -27087337 goalTotal = 18 -27087337 otherCount = 32 -~~~ -27089424 UP 12 -27089424 2048 2048 -27090682 DOWN 12 -27090682 0 2048 -27090773 UP 12 -27090773 2048 2048 -27091335 DOWN 12 -27091335 0 2048 -27091389 UP 12 -27091389 2048 2048 -27091472 DOWN 12 -27091472 0 2048 -27091539 UP 12 -27091539 2048 2048 -27094269 DOWN 12 -27094268 0 2048 -27094323 UP 12 -27094323 2048 2048 -27094359 DOWN 12 -27094359 0 2048 -27094535 UP 12 -27094535 2048 2048 -27097424 CLICK1 -27097424 CLICK2 -~~~ -~~~ -~~~ -27097442 2048 67110912 -~~~ -27097592 2048 2048 -27103685 DOWN 12 -27103685 0 2048 -~~~ -~~~ -27103710 0 0 -~~~ -~~~ -27103712 0 1 -~~~ -~~~ -27103714 0 3 -~~~ -~~~ -27103715 0 7 -~~~ -~~~ -27103717 0 15 -~~~ -~~~ -27103719 0 31 -~~~ -~~~ -27103721 0 63 -~~~ -~~~ -27103723 0 127 -~~~ -~~~ -27103725 0 255 -27103726 homeCount = 65 -27103726 waitCount = 26 -27103727 ripCount = 26 -27103727 locktype1 = 1 -27103728 locktype2 = 5 -27103749 locktype3 = 8 -27103749 goalCount = 8 -27103750 goalTotal = 18 -27103750 otherCount = 32 -~~~ -27103751 CURRENTGOAL IS [3] -~~~ -27103752 UP 12 -27103752 2048 255 -27103785 DOWN 12 -27103785 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27103821 homeCount = 65 -27103822 waitCount = 26 -27103822 ripCount = 26 -27103823 locktype1 = 1 -27103824 locktype2 = 5 -27103824 locktype3 = 8 -27103825 goalCount = 8 -27103825 goalTotal = 18 -27103826 otherCount = 32 -~~~ -27103827 CURRENTGOAL IS [3] -~~~ -27108255 UP 2 -27108255 2 255 -27108270 DOWN 2 -27108270 0 255 -~~~ -~~~ -~~~ -~~~ -27108294 0 254 -~~~ -~~~ -27108296 0 252 -~~~ -~~~ -27108298 0 248 -~~~ -~~~ -27108300 0 240 -~~~ -~~~ -27108302 0 224 -~~~ -~~~ -27108303 0 192 -~~~ -~~~ -27108305 0 128 -~~~ -~~~ -27108307 0 0 -~~~ -~~~ -27108309 0 512 -27108310 homeCount = 65 -27108310 waitCount = 26 -27108311 ripCount = 26 -27108311 locktype1 = 1 -27108332 locktype2 = 5 -27108333 locktype3 = 8 -27108333 goalCount = 8 -27108334 goalTotal = 18 -27108334 otherCount = 33 -~~~ -27108335 2 512 -27109045 DOWN 2 -27109045 0 512 -27109118 2 512 -27109129 DOWN 2 -27109129 0 512 -27114052 UP 10 -27114052 waslock = 0 -27114052 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27114082 512 16777728 -~~~ -27114122 DOWN 10 -27114122 0 16777728 -~~~ -~~~ -27114145 0 16779776 -~~~ -~~~ -27114147 0 16779264 -27114148 homeCount = 66 -27114149 waitCount = 26 -27114149 ripCount = 26 -27114150 locktype1 = 1 -27114150 locktype2 = 5 -27114152 locktype3 = 8 -27114152 goalCount = 8 -27114152 goalTotal = 18 -27114152 otherCount = 33 -~~~ -27114173 UP 10 -27114173 waslock = 0 -27114173 512 16779264 -~~~ -27114232 512 2048 -27114292 DOWN 10 -27114292 0 2048 -~~~ -~~~ -27114320 UP 10 -27114320 waslock = 0 -27114320 512 2048 -~~~ -~~~ -27114323 homeCount = 66 -27114323 waitCount = 26 -27114324 ripCount = 26 -27114324 locktype1 = 1 -27114325 locktype2 = 5 -27114325 locktype3 = 8 -27114326 goalCount = 8 -27114326 goalTotal = 18 -27114347 otherCount = 33 -~~~ -~~~ -27117113 DOWN 10 -27117113 0 2048 -~~~ -~~~ -~~~ -~~~ -27117139 homeCount = 66 -27117140 waitCount = 26 -27117140 ripCount = 26 -27117141 locktype1 = 1 -27117141 locktype2 = 5 -27117142 locktype3 = 8 -27117142 goalCount = 8 -27117143 goalTotal = 18 -27117143 otherCount = 33 -~~~ -27117158 UP 10 -27117159 waslock = 0 -27117158 512 2048 -~~~ -27117200 DOWN 10 -27117200 0 2048 -~~~ -~~~ -~~~ -~~~ -27117221 homeCount = 66 -27117222 waitCount = 26 -27117222 ripCount = 26 -27117223 locktype1 = 1 -27117223 locktype2 = 5 -27117224 locktype3 = 8 -27117224 goalCount = 8 -27117225 goalTotal = 18 -27117225 otherCount = 33 -~~~ -27119113 UP 12 -27119113 2048 2048 -27121174 DOWN 12 -27121174 0 2048 -27121261 UP 12 -27121261 2048 2048 -27121838 DOWN 12 -27121838 0 2048 -27121887 UP 12 -27121887 2048 2048 -27121905 DOWN 12 -27121905 0 2048 -27121986 UP 12 -27121986 2048 2048 -27122114 CLICK1 -27122114 CLICK2 -~~~ -~~~ -~~~ -27122139 2048 67110912 -~~~ -27122289 2048 2048 -27127218 DOWN 12 -27127218 0 2048 -~~~ -~~~ -27127238 0 0 -~~~ -~~~ -27127239 0 1 -~~~ -~~~ -27127241 0 3 -~~~ -~~~ -27127243 0 7 -~~~ -~~~ -27127245 0 15 -~~~ -~~~ -27127247 0 31 -~~~ -~~~ -27127248 0 63 -~~~ -~~~ -27127250 0 127 -~~~ -~~~ -27127252 0 255 -27127253 homeCount = 66 -27127254 waitCount = 27 -27127254 ripCount = 26 -27127255 locktype1 = 1 -27127255 locktype2 = 5 -27127276 locktype3 = 8 -27127277 goalCount = 8 -27127277 goalTotal = 18 -27127278 otherCount = 33 -~~~ -27127279 CURRENTGOAL IS [3] -~~~ -27130040 UP 3 -27130040 4 255 -~~~ -~~~ -27130059 outer reward -~~~ -27130059 4 262399 -~~~ -~~~ -27130264 DOWN 3 -27130264 0 262399 -~~~ -~~~ -27130288 0 262398 -~~~ -~~~ -27130289 0 262396 -~~~ -~~~ -27130291 0 262392 -~~~ -~~~ -27130293 0 262384 -~~~ -~~~ -27130295 0 262368 -~~~ -~~~ -27130297 0 262336 -~~~ -~~~ -27130299 0 262272 -~~~ -~~~ -27130300 0 262144 -~~~ -~~~ -27130302 0 262656 -27130303 homeCount = 66 -27130304 waitCount = 27 -27130304 ripCount = 26 -27130325 locktype1 = 1 -27130325 locktype2 = 5 -27130326 locktype3 = 8 -27130326 goalCount = 9 -27130327 goalTotal = 19 -27130327 otherCount = 33 -~~~ -27130328 4 262656 -27130509 4 512 -27130691 DOWN 3 -27130691 0 512 -27130708 4 512 -27130810 DOWN 3 -27130810 0 512 -27130833 4 512 -27130933 DOWN 3 -27130933 0 512 -27130961 4 512 -27131066 DOWN 3 -27131066 0 512 -27131090 4 512 -27131199 DOWN 3 -27131199 0 512 -27131228 4 512 -27131361 DOWN 3 -27131361 0 512 -27131369 4 512 -27131503 DOWN 3 -27131503 0 512 -27131514 4 512 -27131656 DOWN 3 -27131656 0 512 -27131664 4 512 -27137144 DOWN 3 -27137144 0 512 -27137148 4 512 -27137802 DOWN 3 -27137802 0 512 -27137820 4 512 -27137905 DOWN 3 -27137905 0 512 -27144403 UP 10 -27144403 waslock = 0 -27144403 512 512 -27144418 DOWN 10 -27144418 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27144434 0 16777728 -~~~ -~~~ -~~~ -27144437 0 16779776 -~~~ -~~~ -27144439 0 16779264 -27144440 homeCount = 67 -27144441 waitCount = 27 -27144441 ripCount = 26 -27144442 locktype1 = 1 -27144442 locktype2 = 5 -27144443 locktype3 = 8 -27144443 goalCount = 9 -27144444 goalTotal = 19 -27144465 otherCount = 33 -~~~ -27144570 UP 10 -27144570 waslock = 0 -27144569 512 16779264 -27144584 512 2048 -~~~ -27147490 DOWN 10 -27147489 0 2048 -~~~ -~~~ -~~~ -~~~ -27147518 homeCount = 67 -27147519 waitCount = 27 -27147519 ripCount = 26 -27147520 locktype1 = 1 -27147520 locktype2 = 5 -27147521 locktype3 = 8 -27147521 goalCount = 9 -27147522 goalTotal = 19 -27147522 otherCount = 33 -~~~ -27149811 UP 12 -27149811 2048 2048 -27150616 DOWN 12 -27150616 0 2048 -27150637 UP 12 -27150637 2048 2048 -27150660 DOWN 12 -27150660 0 2048 -27150819 UP 12 -27150819 2048 2048 -27153312 CLICK1 -27153312 CLICK2 -~~~ -~~~ -~~~ -27153335 2048 67110912 -~~~ -27153484 2048 2048 -27157877 DOWN 12 -27157877 0 2048 -~~~ -~~~ -27157896 0 0 -~~~ -~~~ -27157897 0 1 -~~~ -~~~ -27157899 0 3 -~~~ -~~~ -27157901 0 7 -~~~ -~~~ -27157903 0 15 -~~~ -~~~ -27157905 0 31 -~~~ -~~~ -27157906 0 63 -~~~ -~~~ -27157908 0 127 -~~~ -~~~ -27157910 0 255 -27157911 homeCount = 67 -27157912 waitCount = 28 -27157912 ripCount = 26 -27157913 locktype1 = 1 -27157913 locktype2 = 5 -27157934 locktype3 = 8 -27157935 goalCount = 9 -27157935 goalTotal = 19 -27157936 otherCount = 33 -~~~ -27157937 CURRENTGOAL IS [3] -~~~ -27157937 UP 12 -27157937 2048 255 -27157959 DOWN 12 -27157959 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27157999 homeCount = 67 -27157999 waitCount = 28 -27158000 ripCount = 26 -27158000 locktype1 = 1 -27158001 locktype2 = 5 -27158001 locktype3 = 8 -27158002 goalCount = 9 -27158002 goalTotal = 19 -27158003 otherCount = 33 -~~~ -27158004 CURRENTGOAL IS [3] -~~~ -27158025 UP 12 -27158025 2048 255 -27158102 DOWN 12 -27158102 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158130 UP 12 -27158130 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158138 DOWN 12 -27158138 0 255 -~~~ -~~~ -~~~ -27158142 homeCount = 67 -27158142 waitCount = 28 -27158143 ripCount = 26 -27158143 locktype1 = 1 -27158144 locktype2 = 5 -27158145 locktype3 = 8 -27158145 goalCount = 9 -27158146 goalTotal = 19 -27158146 otherCount = 33 -~~~ -27158147 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158175 homeCount = 67 -27158176 waitCount = 28 -27158176 ripCount = 26 -27158177 locktype1 = 1 -27158177 locktype2 = 5 -27158178 locktype3 = 8 -27158199 goalCount = 9 -27158199 goalTotal = 19 -27158200 otherCount = 33 -~~~ -27158201 CURRENTGOAL IS [3] -~~~ -27158201 UP 12 -27158201 2048 255 -27158224 DOWN 12 -27158223 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158250 homeCount = 67 -27158251 waitCount = 28 -27158251 ripCount = 26 -27158252 locktype1 = 1 -27158252 locktype2 = 5 -27158253 locktype3 = 8 -27158253 goalCount = 9 -27158254 goalTotal = 19 -27158254 otherCount = 33 -~~~ -27158255 CURRENTGOAL IS [3] -~~~ -27158327 UP 12 -27158327 2048 255 -27158356 DOWN 12 -27158356 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158391 homeCount = 67 -27158392 waitCount = 28 -27158392 ripCount = 26 -27158393 locktype1 = 1 -27158393 locktype2 = 5 -27158394 locktype3 = 8 -27158394 goalCount = 9 -27158395 goalTotal = 19 -27158395 otherCount = 33 -~~~ -27158396 CURRENTGOAL IS [3] -~~~ -27158417 UP 12 -27158417 2048 255 -27158500 DOWN 12 -27158500 0 255 -27158522 UP 12 -27158522 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158542 homeCount = 67 -27158543 waitCount = 28 -27158543 ripCount = 26 -27158544 locktype1 = 1 -27158544 locktype2 = 5 -27158545 locktype3 = 8 -27158545 goalCount = 9 -27158546 goalTotal = 19 -27158546 otherCount = 33 -~~~ -27158548 CURRENTGOAL IS [3] -~~~ -27160569 DOWN 12 -27160569 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27160604 homeCount = 67 -27160605 waitCount = 28 -27160606 ripCount = 26 -27160606 locktype1 = 1 -27160607 locktype2 = 5 -27160607 locktype3 = 8 -27160608 goalCount = 9 -27160608 goalTotal = 19 -27160609 otherCount = 33 -~~~ -27160610 CURRENTGOAL IS [3] -~~~ -27160631 UP 12 -27160631 2048 255 -27160668 DOWN 12 -27160668 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27160706 homeCount = 67 -27160707 waitCount = 28 -27160707 ripCount = 26 -27160708 locktype1 = 1 -27160708 locktype2 = 5 -27160709 locktype3 = 8 -27160709 goalCount = 9 -27160710 goalTotal = 19 -27160710 otherCount = 33 -~~~ -27160711 CURRENTGOAL IS [3] -~~~ -27163334 UP 3 -27163334 4 255 -27163351 DOWN 3 -27163351 0 255 -~~~ -~~~ -27163374 outer reward -~~~ -27163375 0 262399 -~~~ -~~~ -27163379 outerreps = 8 -~~~ -~~~ -~~~ -~~~ -27163382 0 262398 -~~~ -~~~ -27163384 0 262396 -~~~ -~~~ -27163386 0 262392 -~~~ -~~~ -27163388 0 262384 -~~~ -~~~ -27163389 0 262368 -~~~ -~~~ -27163391 0 262336 -~~~ -~~~ -27163393 0 262272 -~~~ -~~~ -27163395 0 262144 -~~~ -~~~ -27163397 0 262656 -27163398 homeCount = 67 -27163398 waitCount = 28 -27163420 ripCount = 26 -27163420 locktype1 = 1 -27163421 locktype2 = 5 -27163421 locktype3 = 8 -27163422 goalCount = 0 -27163422 goalTotal = 20 -27163423 otherCount = 33 -~~~ -27163423 4 262656 -27163560 DOWN 3 -27163560 0 262656 -27163618 4 262656 -27163824 4 512 -27163981 DOWN 3 -27163981 0 512 -27164002 4 512 -27164107 DOWN 3 -27164107 0 512 -27164122 4 512 -27164237 DOWN 3 -27164237 0 512 -27164261 4 512 -27164373 DOWN 3 -27164373 0 512 -27164398 4 512 -27164523 DOWN 3 -27164523 0 512 -27164537 4 512 -27164678 DOWN 3 -27164677 0 512 -27164687 4 512 -27164824 DOWN 3 -27164824 0 512 -27164832 4 512 -27164973 DOWN 3 -27164973 0 512 -27164981 4 512 -27165435 DOWN 3 -27165435 0 512 -27165447 4 512 -27168176 DOWN 3 -27168176 0 512 -27168182 4 512 -27168186 DOWN 3 -27168186 0 512 -27168193 4 512 -27171704 DOWN 3 -27171704 0 512 -27171738 4 512 -27171814 DOWN 3 -27171814 0 512 -27176949 UP 10 -27176949 waslock = 0 -27176949 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27176979 512 16777728 -~~~ -27177102 DOWN 10 -27177102 0 16777728 -~~~ -~~~ -27177125 0 16778752 -~~~ -~~~ -27177127 0 16778240 -27177128 homeCount = 68 -27177129 waitCount = 28 -27177129 ripCount = 26 -27177130 locktype1 = 1 -27177130 locktype2 = 5 -27177131 locktype3 = 8 -27177131 goalCount = 0 -27177132 goalTotal = 20 -27177132 otherCount = 33 -~~~ -27177153 UP 10 -27177153 waslock = 0 -27177153 512 16778240 -27177155 512 1024 -~~~ -27183894 DOWN 10 -27183894 0 1024 -~~~ -~~~ -~~~ -~~~ -27183916 homeCount = 68 -27183917 waitCount = 28 -27183917 ripCount = 26 -27183918 locktype1 = 1 -27183918 locktype2 = 5 -27183919 locktype3 = 8 -27183919 goalCount = 0 -27183920 goalTotal = 20 -27183920 otherCount = 33 -~~~ -27186228 UP 11 -27186228 1024 1024 -27187560 DOWN 11 -27187560 0 1024 -27187573 UP 11 -27187573 1024 1024 -27187589 DOWN 11 -27187589 0 1024 -27187640 UP 11 -27187640 1024 1024 -27192229 BEEP1 -27192229 BEEP2 -~~~ -~~~ -~~~ -27192256 1024 33555456 -~~~ -27192406 1024 1024 -27198684 DOWN 11 -27198684 0 1024 -~~~ -~~~ -27198705 0 0 -~~~ -~~~ -27198707 0 1 -~~~ -~~~ -27198709 0 3 -~~~ -~~~ -27198711 0 7 -~~~ -~~~ -27198712 0 15 -~~~ -~~~ -27198714 0 31 -~~~ -~~~ -27198716 0 63 -~~~ -~~~ -27198718 0 127 -~~~ -~~~ -27198720 0 255 -27198721 homeCount = 68 -27198721 waitCount = 28 -27198722 ripCount = 27 -27198722 locktype1 = 1 -27198723 locktype2 = 5 -27198744 locktype3 = 8 -27198744 goalCount = 0 -27198745 goalTotal = 20 -27198745 otherCount = 33 -~~~ -27198746 CURRENTGOAL IS [1] -~~~ -27198766 UP 11 -27198766 1024 255 -27200991 DOWN 11 -27200991 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27201031 homeCount = 68 -27201031 waitCount = 28 -27201032 ripCount = 27 -27201032 locktype1 = 1 -27201033 locktype2 = 5 -27201033 locktype3 = 8 -27201034 goalCount = 0 -27201034 goalTotal = 20 -27201035 otherCount = 33 -~~~ -27201036 CURRENTGOAL IS [1] -~~~ -27201067 UP 11 -27201067 1024 255 -27201082 DOWN 11 -27201082 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27201121 homeCount = 68 -27201122 waitCount = 28 -27201122 ripCount = 27 -27201123 locktype1 = 1 -27201123 locktype2 = 5 -27201124 locktype3 = 8 -27201124 goalCount = 0 -27201125 goalTotal = 20 -27201125 otherCount = 33 -~~~ -27201127 CURRENTGOAL IS [1] -~~~ -27206452 UP 2 -27206452 2 255 -27206462 DOWN 2 -27206462 0 255 -~~~ -~~~ -~~~ -~~~ -27206480 0 254 -~~~ -~~~ -27206482 0 252 -~~~ -~~~ -27206484 0 248 -~~~ -~~~ -27206486 0 240 -~~~ -~~~ -27206487 0 224 -~~~ -~~~ -27206489 0 192 -~~~ -~~~ -27206491 0 128 -~~~ -~~~ -27206493 0 0 -~~~ -~~~ -27206495 0 512 -27206496 homeCount = 68 -27206496 waitCount = 28 -27206497 ripCount = 27 -27206497 locktype1 = 1 -27206519 locktype2 = 5 -27206519 locktype3 = 8 -27206520 goalCount = 0 -27206520 goalTotal = 20 -27206521 otherCount = 34 -~~~ -27206534 2 512 -27207052 DOWN 2 -27207052 0 512 -27212399 UP 10 -27212399 waslock = 0 -27212399 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27212427 512 16777728 -~~~ -27212435 DOWN 10 -27212435 0 16777728 -~~~ -~~~ -27212452 0 16778752 -~~~ -27212453 UP 10 -27212453 waslock = 0 -27212453 512 16778752 -~~~ -27212455 homeCount = 69 -27212456 waitCount = 28 -27212456 ripCount = 27 -27212457 locktype1 = 1 -27212457 locktype2 = 5 -27212458 locktype3 = 8 -27212458 goalCount = 0 -27212479 goalTotal = 20 -27212480 otherCount = 34 -~~~ -27212480 512 16778240 -~~~ -27212557 DOWN 10 -27212557 0 16778240 -27212577 0 1024 -27212591 UP 10 -27212591 waslock = 0 -27212591 512 1024 -~~~ -~~~ -~~~ -~~~ -27212598 homeCount = 69 -27212598 waitCount = 28 -27212599 ripCount = 27 -27212599 locktype1 = 1 -27212600 locktype2 = 5 -27212600 locktype3 = 8 -27212601 goalCount = 0 -27212601 goalTotal = 20 -27212602 otherCount = 34 -~~~ -~~~ -27216740 DOWN 10 -27216740 0 1024 -~~~ -~~~ -~~~ -~~~ -27216765 homeCount = 69 -27216765 waitCount = 28 -27216766 ripCount = 27 -27216766 locktype1 = 1 -27216767 locktype2 = 5 -27216767 locktype3 = 8 -27216768 goalCount = 0 -27216768 goalTotal = 20 -27216769 otherCount = 34 -~~~ -27221107 UP 11 -27221107 1024 1024 -27230108 BEEP1 -27230108 BEEP2 -~~~ -~~~ -~~~ -27230134 1024 33555456 -~~~ -27230284 1024 1024 -27237176 DOWN 11 -27237176 0 1024 -~~~ -~~~ -27237202 0 0 -~~~ -~~~ -27237203 0 1 -~~~ -~~~ -27237205 0 3 -~~~ -~~~ -27237207 0 7 -~~~ -~~~ -27237209 0 15 -~~~ -~~~ -27237211 0 31 -~~~ -~~~ -27237213 0 63 -~~~ -~~~ -27237214 0 127 -~~~ -~~~ -27237216 0 255 -27237217 homeCount = 69 -27237218 waitCount = 28 -27237218 ripCount = 28 -27237219 locktype1 = 1 -27237219 locktype2 = 5 -27237240 locktype3 = 8 -27237241 goalCount = 0 -27237241 goalTotal = 20 -27237242 otherCount = 34 -~~~ -27237243 CURRENTGOAL IS [1] -~~~ -27237243 UP 11 -27237243 1024 255 -27237293 DOWN 11 -27237293 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27237330 homeCount = 69 -27237330 waitCount = 28 -27237331 ripCount = 28 -27237331 locktype1 = 1 -27237332 locktype2 = 5 -27237332 locktype3 = 8 -27237333 goalCount = 0 -27237333 goalTotal = 20 -27237334 otherCount = 34 -~~~ -27237335 CURRENTGOAL IS [1] -~~~ -27244806 UP 3 -27244806 4 255 -27244824 DOWN 3 -27244824 0 255 -~~~ -~~~ -~~~ -~~~ -27244845 0 254 -~~~ -~~~ -27244846 0 252 -~~~ -~~~ -27244848 0 248 -~~~ -~~~ -27244850 0 240 -~~~ -~~~ -27244852 0 224 -~~~ -~~~ -27244854 0 192 -~~~ -~~~ -27244856 0 128 -~~~ -~~~ -27244857 0 0 -~~~ -~~~ -27244859 0 512 -27244860 homeCount = 69 -27244861 waitCount = 28 -27244861 ripCount = 28 -27244862 locktype1 = 1 -27244883 locktype2 = 5 -27244884 locktype3 = 8 -27244884 goalCount = 0 -27244885 goalTotal = 20 -27244885 otherCount = 35 -~~~ -27244896 4 512 -27245112 DOWN 3 -27245112 0 512 -27245162 4 512 -27245949 DOWN 3 -27245949 0 512 -27246153 4 512 -27247409 DOWN 3 -27247409 0 512 -27252323 UP 10 -27252323 waslock = 0 -27252323 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27252354 512 16777728 -~~~ -27252487 DOWN 10 -27252487 0 16777728 -27252504 0 512 -~~~ -~~~ -27252509 0 2560 -~~~ -~~~ -27252511 0 2048 -27252512 homeCount = 70 -27252513 waitCount = 28 -27252513 ripCount = 28 -27252514 locktype1 = 1 -27252514 locktype2 = 5 -27252515 locktype3 = 8 -27252515 goalCount = 0 -27252516 goalTotal = 20 -27252516 otherCount = 35 -~~~ -27252537 UP 10 -27252538 waslock = 0 -27252537 512 2048 -~~~ -27257198 DOWN 10 -27257198 0 2048 -~~~ -~~~ -~~~ -~~~ -27257221 homeCount = 70 -27257221 waitCount = 28 -27257222 ripCount = 28 -27257222 locktype1 = 1 -27257223 locktype2 = 5 -27257223 locktype3 = 8 -27257224 goalCount = 0 -27257224 goalTotal = 20 -27257225 otherCount = 35 -~~~ -27257233 UP 10 -27257233 waslock = 0 -27257233 512 2048 -~~~ -27257298 DOWN 10 -27257298 0 2048 -~~~ -~~~ -~~~ -~~~ -27257321 homeCount = 70 -27257322 waitCount = 28 -27257322 ripCount = 28 -27257323 locktype1 = 1 -27257323 locktype2 = 5 -27257324 locktype3 = 8 -27257324 goalCount = 0 -27257325 goalTotal = 20 -27257325 otherCount = 35 -~~~ -27259477 UP 12 -27259477 2048 2048 -27262833 DOWN 12 -27262833 0 2048 -27262866 UP 12 -27262866 2048 2048 -27262907 DOWN 12 -27262907 0 2048 -27262994 UP 12 -27262994 2048 2048 -27263034 DOWN 12 -27263034 0 2048 -27263046 UP 12 -27263046 2048 2048 -27267477 CLICK1 -27267477 CLICK2 -~~~ -~~~ -~~~ -27267503 2048 67110912 -~~~ -27267653 2048 2048 -27274654 DOWN 12 -27274654 0 2048 -~~~ -~~~ -27274672 0 0 -~~~ -~~~ -27274674 0 1 -~~~ -~~~ -27274676 0 3 -~~~ -~~~ -27274677 0 7 -~~~ -~~~ -27274679 0 15 -~~~ -~~~ -27274681 0 31 -~~~ -~~~ -27274683 0 63 -~~~ -~~~ -27274685 0 127 -~~~ -~~~ -27274686 0 255 -27274687 homeCount = 70 -27274688 waitCount = 29 -27274689 ripCount = 28 -27274689 locktype1 = 1 -27274690 locktype2 = 5 -27274710 locktype3 = 8 -27274711 goalCount = 0 -27274711 goalTotal = 20 -27274712 otherCount = 35 -~~~ -27274713 CURRENTGOAL IS [1] -~~~ -27278587 UP 3 -27278587 4 255 -~~~ -~~~ -27278893 DOWN 3 -27278893 0 255 -~~~ -~~~ -27278912 0 254 -~~~ -~~~ -27278914 0 252 -~~~ -~~~ -27278916 0 248 -~~~ -~~~ -27278917 0 240 -~~~ -~~~ -27278919 0 224 -~~~ -~~~ -27278921 0 192 -~~~ -~~~ -27278923 0 128 -~~~ -~~~ -27278925 0 0 -~~~ -~~~ -27278927 0 512 -27278928 homeCount = 70 -27278928 waitCount = 29 -27278929 ripCount = 28 -27278929 locktype1 = 1 -27278930 locktype2 = 5 -27278951 locktype3 = 8 -27278951 goalCount = 0 -27278952 goalTotal = 20 -27278952 otherCount = 36 -~~~ -27278953 4 512 -27279428 DOWN 3 -27279428 0 512 -27279473 4 512 -27279495 DOWN 3 -27279495 0 512 -27283748 UP 10 -27283748 waslock = 0 -27283748 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27283772 512 16777728 -~~~ -27283922 512 512 -27288098 DOWN 10 -27288098 0 512 -~~~ -~~~ -27288117 0 1536 -~~~ -~~~ -27288119 0 1024 -27288120 homeCount = 71 -27288120 waitCount = 29 -27288121 ripCount = 28 -27288121 locktype1 = 1 -27288122 locktype2 = 5 -27288122 locktype3 = 8 -27288123 goalCount = 0 -27288123 goalTotal = 20 -27288124 otherCount = 36 -~~~ -27288158 UP 10 -27288158 waslock = 0 -27288158 512 1024 -~~~ -27288186 DOWN 10 -27288186 0 1024 -~~~ -~~~ -~~~ -~~~ -27288215 homeCount = 71 -27288215 waitCount = 29 -27288216 ripCount = 28 -27288216 locktype1 = 1 -27288217 locktype2 = 5 -27288217 locktype3 = 8 -27288218 goalCount = 0 -27288218 goalTotal = 20 -27288219 otherCount = 36 -~~~ -27303216 UP 4 -27303216 8 1024 -~~~ -27303239 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -27303243 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27304347 DOWN 4 -27304347 0 0 -27321209 512 0 -27321279 0 0 -27328239 LOCKEND -~~~ -~~~ -~~~ -27328258 0 512 -27338600 UP 5 -27338600 16 512 -27338629 DOWN 5 -27338629 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27338662 homeCount = 71 -27338663 waitCount = 29 -27338663 ripCount = 28 -27338664 locktype1 = 1 -27338664 locktype2 = 6 -27338665 locktype3 = 8 -27338665 goalCount = 0 -27338666 goalTotal = 20 -27338666 otherCount = 36 -~~~ -27338727 16 512 -27338920 DOWN 5 -27338920 0 512 -27339036 16 512 -27339061 DOWN 5 -27339061 0 512 -27339130 16 512 -27339491 DOWN 5 -27339491 0 512 -27349519 UP 10 -27349520 waslock = 0 -27349519 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27349543 512 16777728 -~~~ -27349693 512 512 -27349747 DOWN 10 -27349747 0 512 -~~~ -~~~ -27349772 0 2560 -~~~ -~~~ -27349774 0 2048 -27349775 homeCount = 72 -27349776 waitCount = 29 -27349776 ripCount = 28 -27349777 locktype1 = 1 -27349777 locktype2 = 6 -27349778 locktype3 = 8 -27349778 goalCount = 0 -27349779 goalTotal = 20 -27349779 otherCount = 36 -~~~ -27349887 UP 10 -27349888 waslock = 0 -27349887 512 2048 -~~~ -27355800 DOWN 10 -27355800 0 2048 -~~~ -~~~ -~~~ -~~~ -27355821 homeCount = 72 -27355821 waitCount = 29 -27355822 ripCount = 28 -27355822 locktype1 = 1 -27355823 locktype2 = 6 -27355823 locktype3 = 8 -27355824 goalCount = 0 -27355824 goalTotal = 20 -27355825 otherCount = 36 -~~~ -27355830 UP 10 -27355831 waslock = 0 -27355830 512 2048 -~~~ -27355896 DOWN 10 -27355896 0 2048 -~~~ -~~~ -~~~ -~~~ -27355921 homeCount = 72 -27355921 waitCount = 29 -27355922 ripCount = 28 -27355922 locktype1 = 1 -27355923 locktype2 = 6 -27355923 locktype3 = 8 -27355924 goalCount = 0 -27355924 goalTotal = 20 -27355925 otherCount = 36 -~~~ -27359955 UP 12 -27359955 2048 2048 -27361229 DOWN 12 -27361229 0 2048 -27361429 LOCKOUT 3 -~~~ -27361449 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27361455 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27361545 UP 12 -27361545 2048 0 -27363005 DOWN 12 -27363005 0 0 -27363061 UP 12 -27363061 2048 0 -27363086 DOWN 12 -27363086 0 0 -27363176 UP 12 -27363176 2048 0 -27363450 DOWN 12 -27363450 0 0 -27363499 UP 12 -27363498 2048 0 -27363784 DOWN 12 -27363784 0 0 -27363793 UP 12 -27363792 2048 0 -27367425 DOWN 12 -27367425 0 0 -27367513 UP 12 -27367513 2048 0 -27367580 DOWN 12 -27367580 0 0 -27367680 UP 12 -27367680 2048 0 -27373426 DOWN 12 -27373426 0 0 -27373444 UP 12 -27373444 2048 0 -27373471 DOWN 12 -27373471 0 0 -27373514 UP 12 -27373514 2048 0 -27373617 DOWN 12 -27373617 0 0 -27373720 UP 12 -27373720 2048 0 -27375640 DOWN 12 -27375640 0 0 -27386449 LOCKEND -~~~ -~~~ -~~~ -27386471 0 512 -27392770 UP 10 -27392770 waslock = 0 -27392770 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27392793 512 16777728 -~~~ -27392943 512 512 -27392954 DOWN 10 -27392954 0 512 -~~~ -~~~ -27392972 0 1536 -~~~ -~~~ -27392974 0 1024 -27392975 homeCount = 73 -27392976 waitCount = 29 -27392976 ripCount = 28 -27392977 locktype1 = 1 -27392977 locktype2 = 6 -27392978 locktype3 = 9 -27392978 goalCount = 0 -27392979 goalTotal = 20 -27392979 otherCount = 36 -~~~ -27393151 UP 10 -27393152 waslock = 0 -27393151 512 1024 -~~~ -27393293 DOWN 10 -27393293 0 1024 -~~~ -~~~ -27393320 UP 10 -27393320 waslock = 0 -27393320 512 1024 -~~~ -~~~ -27393323 homeCount = 73 -27393323 waitCount = 29 -27393324 ripCount = 28 -27393324 locktype1 = 1 -27393325 locktype2 = 6 -27393325 locktype3 = 9 -27393326 goalCount = 0 -27393326 goalTotal = 20 -27393347 otherCount = 36 -~~~ -~~~ -27393593 DOWN 10 -27393593 0 1024 -27393607 UP 10 -27393607 waslock = 0 -27393607 512 1024 -~~~ -~~~ -~~~ -~~~ -27393623 homeCount = 73 -27393623 waitCount = 29 -27393624 ripCount = 28 -27393624 locktype1 = 1 -27393625 locktype2 = 6 -27393625 locktype3 = 9 -27393626 goalCount = 0 -27393626 goalTotal = 20 -27393627 otherCount = 36 -~~~ -~~~ -27393753 DOWN 10 -27393753 0 1024 -27393770 UP 10 -27393770 waslock = 0 -27393770 512 1024 -~~~ -~~~ -~~~ -~~~ -27393782 homeCount = 73 -27393782 waitCount = 29 -27393783 ripCount = 28 -27393783 locktype1 = 1 -27393784 locktype2 = 6 -27393784 locktype3 = 9 -27393785 goalCount = 0 -27393785 goalTotal = 20 -27393786 otherCount = 36 -~~~ -~~~ -27393918 DOWN 10 -27393918 0 1024 -~~~ -~~~ -~~~ -27393940 UP 10 -27393940 waslock = 0 -27393940 512 1024 -~~~ -27393942 homeCount = 73 -27393942 waitCount = 29 -27393943 ripCount = 28 -27393943 locktype1 = 1 -27393944 locktype2 = 6 -27393944 locktype3 = 9 -27393945 goalCount = 0 -27393945 goalTotal = 20 -27393946 otherCount = 36 -~~~ -~~~ -27397740 DOWN 10 -27397740 0 1024 -~~~ -~~~ -~~~ -~~~ -27397761 homeCount = 73 -27397761 waitCount = 29 -27397762 ripCount = 28 -27397762 locktype1 = 1 -27397763 locktype2 = 6 -27397763 locktype3 = 9 -27397764 goalCount = 0 -27397764 goalTotal = 20 -27397765 otherCount = 36 -~~~ -27397767 UP 10 -27397767 waslock = 0 -27397767 512 1024 -~~~ -27397836 DOWN 10 -27397836 0 1024 -~~~ -~~~ -~~~ -~~~ -27397863 homeCount = 73 -27397863 waitCount = 29 -27397864 ripCount = 28 -27397865 locktype1 = 1 -27397865 locktype2 = 6 -27397866 locktype3 = 9 -27397866 goalCount = 0 -27397867 goalTotal = 20 -27397867 otherCount = 36 -~~~ -27401205 UP 11 -27401205 1024 1024 -27405837 DOWN 11 -27405837 0 1024 -27405869 UP 11 -27405869 1024 1024 -27405991 DOWN 11 -27405991 0 1024 -27406002 UP 11 -27406002 1024 1024 -27408205 BEEP1 -27408205 BEEP2 -~~~ -~~~ -~~~ -27408231 1024 33555456 -~~~ -27408381 1024 1024 -27415414 DOWN 11 -27415414 0 1024 -27415427 UP 11 -27415427 1024 1024 -27415439 DOWN 11 -27415439 0 1024 -~~~ -~~~ -27415441 0 0 -~~~ -~~~ -27415442 0 1 -~~~ -~~~ -27415444 0 3 -~~~ -~~~ -27415446 0 7 -~~~ -~~~ -27415447 0 15 -~~~ -~~~ -27415449 0 31 -~~~ -~~~ -27415451 0 63 -~~~ -~~~ -27415453 0 127 -~~~ -~~~ -27415455 0 255 -27415456 homeCount = 73 -27415456 waitCount = 29 -27415457 ripCount = 29 -27415478 locktype1 = 1 -27415478 locktype2 = 6 -27415479 locktype3 = 9 -27415479 goalCount = 0 -27415480 goalTotal = 20 -27415480 otherCount = 36 -~~~ -27415481 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27415509 homeCount = 73 -27415509 waitCount = 29 -27415510 ripCount = 29 -27415510 locktype1 = 1 -27415511 locktype2 = 6 -27415511 locktype3 = 9 -27415512 goalCount = 0 -27415512 goalTotal = 20 -27415513 otherCount = 36 -~~~ -27415534 CURRENTGOAL IS [1] -~~~ -27415535 UP 11 -27415535 1024 255 -27417762 DOWN 11 -27417762 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27417797 homeCount = 73 -27417798 waitCount = 29 -27417798 ripCount = 29 -27417799 locktype1 = 1 -27417799 locktype2 = 6 -27417800 locktype3 = 9 -27417800 goalCount = 0 -27417801 goalTotal = 20 -27417801 otherCount = 36 -~~~ -27417802 CURRENTGOAL IS [1] -~~~ -27420577 UP 6 -27420577 32 255 -~~~ -~~~ -27421351 DOWN 6 -27421351 0 255 -~~~ -~~~ -27421370 0 254 -~~~ -~~~ -27421372 0 252 -~~~ -~~~ -27421374 0 248 -~~~ -~~~ -27421376 0 240 -~~~ -~~~ -27421377 0 224 -~~~ -~~~ -27421379 0 192 -~~~ -~~~ -27421381 0 128 -~~~ -~~~ -27421383 0 0 -~~~ -~~~ -27421385 0 512 -27421386 homeCount = 73 -27421386 waitCount = 29 -27421387 ripCount = 29 -27421387 locktype1 = 1 -27421388 locktype2 = 6 -27421409 locktype3 = 9 -27421409 goalCount = 0 -27421410 goalTotal = 20 -27421410 otherCount = 37 -~~~ -27426117 UP 10 -27426118 waslock = 0 -27426117 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27426143 512 16777728 -~~~ -27426293 512 512 -27426356 DOWN 10 -27426355 0 512 -~~~ -~~~ -27426378 0 2560 -~~~ -~~~ -27426380 0 2048 -27426381 homeCount = 74 -27426381 waitCount = 29 -27426382 ripCount = 29 -27426382 locktype1 = 1 -27426383 locktype2 = 6 -27426383 locktype3 = 9 -27426384 goalCount = 0 -27426384 goalTotal = 20 -27426385 otherCount = 37 -~~~ -27426406 UP 10 -27426406 waslock = 0 -27426406 512 2048 -~~~ -27431666 DOWN 10 -27431666 0 2048 -~~~ -~~~ -~~~ -~~~ -27431691 homeCount = 74 -27431691 waitCount = 29 -27431692 ripCount = 29 -27431692 locktype1 = 1 -27431693 locktype2 = 6 -27431693 locktype3 = 9 -27431694 goalCount = 0 -27431694 goalTotal = 20 -27431695 otherCount = 37 -~~~ -27431705 UP 10 -27431705 waslock = 0 -27431704 512 2048 -~~~ -27431767 DOWN 10 -27431767 0 2048 -~~~ -~~~ -~~~ -~~~ -27431791 homeCount = 74 -27431792 waitCount = 29 -27431792 ripCount = 29 -27431793 locktype1 = 1 -27431793 locktype2 = 6 -27431794 locktype3 = 9 -27431794 goalCount = 0 -27431795 goalTotal = 20 -27431795 otherCount = 37 -~~~ -27434661 UP 12 -27434661 2048 2048 -27435489 DOWN 12 -27435489 0 2048 -27435670 UP 12 -27435670 2048 2048 -27437661 CLICK1 -27437661 CLICK2 -~~~ -~~~ -~~~ -27437680 2048 67110912 -~~~ -27437830 2048 2048 -27446647 DOWN 12 -27446647 0 2048 -~~~ -~~~ -27446668 0 0 -~~~ -~~~ -27446670 0 1 -~~~ -~~~ -27446672 0 3 -~~~ -~~~ -27446673 0 7 -~~~ -~~~ -27446675 0 15 -~~~ -~~~ -27446677 0 31 -~~~ -~~~ -27446679 0 63 -~~~ -~~~ -27446681 0 127 -~~~ -~~~ -27446683 0 255 -27446684 homeCount = 74 -27446684 waitCount = 30 -27446685 ripCount = 29 -27446685 locktype1 = 1 -27446686 locktype2 = 6 -27446706 locktype3 = 9 -27446707 goalCount = 0 -27446707 goalTotal = 20 -27446708 otherCount = 37 -~~~ -27446709 CURRENTGOAL IS [1] -~~~ -27449877 UP 3 -27449877 4 255 -~~~ -~~~ -27450268 DOWN 3 -27450268 0 255 -~~~ -~~~ -27450290 0 254 -~~~ -~~~ -27450292 0 252 -~~~ -~~~ -27450294 0 248 -~~~ -~~~ -27450296 0 240 -~~~ -~~~ -27450298 0 224 -~~~ -~~~ -27450299 0 192 -~~~ -~~~ -27450301 0 128 -~~~ -~~~ -27450303 0 0 -~~~ -~~~ -27450305 0 512 -27450306 homeCount = 74 -27450306 waitCount = 30 -27450307 ripCount = 29 -27450307 locktype1 = 1 -27450329 locktype2 = 6 -27450329 locktype3 = 9 -27450330 goalCount = 0 -27450330 goalTotal = 20 -27450331 otherCount = 38 -~~~ -27454527 UP 10 -27454527 waslock = 0 -27454527 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27454559 512 16777728 -~~~ -27454581 DOWN 10 -27454581 0 16777728 -~~~ -~~~ -27454604 0 16779776 -~~~ -~~~ -27454606 0 16779264 -27454607 homeCount = 75 -27454607 waitCount = 30 -27454608 ripCount = 29 -27454608 locktype1 = 1 -27454609 locktype2 = 6 -27454609 locktype3 = 9 -27454610 goalCount = 0 -27454610 goalTotal = 20 -27454611 otherCount = 38 -~~~ -27454632 UP 10 -27454633 waslock = 0 -27454632 512 16779264 -~~~ -27454709 512 2048 -27454756 DOWN 10 -27454756 0 2048 -~~~ -~~~ -~~~ -~~~ -27454777 homeCount = 75 -27454777 waitCount = 30 -27454778 ripCount = 29 -27454778 locktype1 = 1 -27454779 locktype2 = 6 -27454779 locktype3 = 9 -27454780 goalCount = 0 -27454780 goalTotal = 20 -27454781 otherCount = 38 -~~~ -27454826 UP 10 -27454826 waslock = 0 -27454826 512 2048 -~~~ -27458766 DOWN 10 -27458766 0 2048 -~~~ -~~~ -~~~ -~~~ -27458789 homeCount = 75 -27458789 waitCount = 30 -27458790 ripCount = 29 -27458790 locktype1 = 1 -27458791 locktype2 = 6 -27458791 locktype3 = 9 -27458792 goalCount = 0 -27458792 goalTotal = 20 -27458793 otherCount = 38 -~~~ -27460839 UP 12 -27460839 2048 2048 -27460866 DOWN 12 -27460866 0 2048 -27460888 UP 12 -27460888 2048 2048 -27465667 DOWN 12 -27465667 0 2048 -27465757 UP 12 -27465757 2048 2048 -27468839 CLICK1 -27468839 CLICK2 -~~~ -~~~ -~~~ -27468867 2048 67110912 -~~~ -27469017 2048 2048 -27475004 DOWN 12 -27475004 0 2048 -~~~ -~~~ -27475026 0 0 -~~~ -~~~ -27475027 0 1 -~~~ -~~~ -27475029 0 3 -~~~ -~~~ -27475031 0 7 -~~~ -~~~ -27475033 0 15 -~~~ -~~~ -27475035 0 31 -~~~ -~~~ -27475037 0 63 -~~~ -~~~ -27475038 0 127 -~~~ -~~~ -27475040 0 255 -27475041 homeCount = 75 -27475042 waitCount = 31 -27475042 ripCount = 29 -27475043 locktype1 = 1 -27475043 locktype2 = 6 -27475064 locktype3 = 9 -27475065 goalCount = 0 -27475065 goalTotal = 20 -27475066 otherCount = 38 -~~~ -27475067 CURRENTGOAL IS [1] -~~~ -27475072 UP 12 -27475072 2048 255 -27475103 DOWN 12 -27475103 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27475142 homeCount = 75 -27475143 waitCount = 31 -27475143 ripCount = 29 -27475144 locktype1 = 1 -27475144 locktype2 = 6 -27475145 locktype3 = 9 -27475145 goalCount = 0 -27475146 goalTotal = 20 -27475147 otherCount = 38 -~~~ -27475148 CURRENTGOAL IS [1] -~~~ -27482092 UP 2 -27482092 2 255 -~~~ -~~~ -27482690 DOWN 2 -27482690 0 255 -~~~ -~~~ -27482709 0 254 -~~~ -~~~ -27482711 0 252 -~~~ -~~~ -27482712 0 248 -~~~ -~~~ -27482714 0 240 -~~~ -~~~ -27482716 0 224 -~~~ -~~~ -27482718 0 192 -~~~ -~~~ -27482720 0 128 -~~~ -~~~ -27482722 0 0 -~~~ -~~~ -27482723 0 512 -27482724 homeCount = 75 -27482725 waitCount = 31 -27482725 ripCount = 29 -27482726 locktype1 = 1 -27482747 locktype2 = 6 -27482748 locktype3 = 9 -27482748 goalCount = 0 -27482749 goalTotal = 20 -27482749 otherCount = 39 -~~~ -27487605 UP 10 -27487606 waslock = 0 -27487605 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27487635 512 16777728 -~~~ -27487754 DOWN 10 -27487754 0 16777728 -~~~ -~~~ -27487779 0 16778752 -~~~ -~~~ -27487781 0 16778240 -27487782 homeCount = 76 -27487782 waitCount = 31 -27487783 ripCount = 29 -27487783 locktype1 = 1 -27487784 locktype2 = 6 -27487784 locktype3 = 9 -27487785 goalCount = 0 -27487785 goalTotal = 20 -27487786 otherCount = 39 -~~~ -27487807 0 1024 -27487838 UP 10 -27487838 waslock = 0 -27487838 512 1024 -~~~ -27487993 DOWN 10 -27487993 0 1024 -27488009 UP 10 -27488009 waslock = 0 -27488009 512 1024 -~~~ -~~~ -~~~ -~~~ -27488022 homeCount = 76 -27488022 waitCount = 31 -27488023 ripCount = 29 -27488023 locktype1 = 1 -27488024 locktype2 = 6 -27488024 locktype3 = 9 -27488025 goalCount = 0 -27488025 goalTotal = 20 -27488026 otherCount = 39 -~~~ -~~~ -27492613 DOWN 10 -27492613 0 1024 -~~~ -~~~ -~~~ -~~~ -27492643 homeCount = 76 -27492644 waitCount = 31 -27492644 ripCount = 29 -27492645 locktype1 = 1 -27492645 locktype2 = 6 -27492646 locktype3 = 9 -27492646 goalCount = 0 -27492647 goalTotal = 20 -27492647 otherCount = 39 -~~~ -27492656 UP 10 -27492656 waslock = 0 -27492656 512 1024 -~~~ -27492718 DOWN 10 -27492718 0 1024 -~~~ -~~~ -~~~ -~~~ -27492751 homeCount = 76 -27492752 waitCount = 31 -27492752 ripCount = 29 -27492753 locktype1 = 1 -27492753 locktype2 = 6 -27492754 locktype3 = 9 -27492754 goalCount = 0 -27492755 goalTotal = 20 -27492755 otherCount = 39 -~~~ -27495022 UP 11 -27495022 1024 1024 -27497784 DOWN 11 -27497784 0 1024 -27497812 UP 11 -27497812 1024 1024 -27498522 BEEP1 -27498522 BEEP2 -~~~ -~~~ -~~~ -27498543 1024 33555456 -~~~ -27498693 1024 1024 -27505621 DOWN 11 -27505621 0 1024 -~~~ -~~~ -27505642 0 0 -~~~ -~~~ -27505644 0 1 -~~~ -~~~ -27505646 0 3 -~~~ -~~~ -27505647 0 7 -~~~ -~~~ -27505649 0 15 -~~~ -~~~ -27505651 0 31 -~~~ -~~~ -27505653 0 63 -~~~ -~~~ -27505655 0 127 -~~~ -~~~ -27505657 0 255 -27505658 homeCount = 76 -27505658 waitCount = 31 -27505659 ripCount = 30 -27505659 locktype1 = 1 -27505660 locktype2 = 6 -27505681 locktype3 = 9 -27505681 goalCount = 0 -27505682 goalTotal = 20 -27505682 otherCount = 39 -~~~ -27505683 CURRENTGOAL IS [1] -~~~ -27509309 UP 7 -27509309 64 255 -27509329 DOWN 7 -27509329 0 255 -~~~ -~~~ -~~~ -~~~ -27509353 0 254 -~~~ -~~~ -27509355 0 252 -~~~ -~~~ -27509356 0 248 -~~~ -~~~ -27509358 0 240 -~~~ -~~~ -27509360 0 224 -~~~ -~~~ -27509362 0 192 -~~~ -~~~ -27509364 0 128 -~~~ -~~~ -27509366 0 0 -~~~ -~~~ -27509367 0 512 -27509368 homeCount = 76 -27509369 waitCount = 31 -27509369 ripCount = 30 -27509370 locktype1 = 1 -27509370 locktype2 = 6 -27509391 locktype3 = 9 -27509392 goalCount = 0 -27509392 goalTotal = 20 -27509393 otherCount = 40 -~~~ -27509408 64 512 -27510460 DOWN 7 -27510460 0 512 -27515208 UP 10 -27515208 waslock = 0 -27515208 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27515238 512 16777728 -~~~ -27515387 512 512 -27515447 DOWN 10 -27515447 0 512 -~~~ -~~~ -27515474 0 1536 -~~~ -~~~ -27515476 0 1024 -27515477 homeCount = 77 -27515477 waitCount = 31 -27515478 ripCount = 30 -27515478 locktype1 = 1 -27515479 locktype2 = 6 -27515479 locktype3 = 9 -27515480 goalCount = 0 -27515480 goalTotal = 20 -27515481 otherCount = 40 -~~~ -27515502 UP 10 -27515502 waslock = 0 -27515502 512 1024 -~~~ -27519901 DOWN 10 -27519901 0 1024 -27519912 UP 10 -27519912 waslock = 0 -27519912 512 1024 -~~~ -~~~ -~~~ -~~~ -27519937 homeCount = 77 -27519937 waitCount = 31 -27519938 ripCount = 30 -27519938 locktype1 = 1 -27519939 locktype2 = 6 -27519939 locktype3 = 9 -27519940 goalCount = 0 -27519940 goalTotal = 20 -27519941 otherCount = 40 -~~~ -~~~ -27520005 DOWN 10 -27520005 0 1024 -~~~ -~~~ -~~~ -~~~ -27520037 homeCount = 77 -27520037 waitCount = 31 -27520038 ripCount = 30 -27520038 locktype1 = 1 -27520039 locktype2 = 6 -27520039 locktype3 = 9 -27520040 goalCount = 0 -27520040 goalTotal = 20 -27520041 otherCount = 40 -~~~ -27522612 UP 11 -27522612 1024 1024 -27526612 BEEP1 -27526612 BEEP2 -~~~ -~~~ -~~~ -27526634 1024 33555456 -~~~ -27526784 1024 1024 -27534399 DOWN 11 -27534399 0 1024 -~~~ -~~~ -27534424 0 0 -~~~ -~~~ -27534425 0 1 -~~~ -~~~ -27534427 0 3 -~~~ -~~~ -27534429 0 7 -~~~ -~~~ -27534431 0 15 -~~~ -~~~ -27534433 0 31 -~~~ -~~~ -27534435 0 63 -~~~ -~~~ -27534436 0 127 -~~~ -~~~ -27534438 0 255 -27534439 homeCount = 77 -27534440 waitCount = 31 -27534440 ripCount = 31 -27534441 locktype1 = 1 -27534441 locktype2 = 6 -27534462 locktype3 = 9 -27534463 goalCount = 0 -27534463 goalTotal = 20 -27534464 otherCount = 40 -~~~ -27534465 CURRENTGOAL IS [1] -~~~ -27539259 UP 5 -27539259 16 255 -~~~ -~~~ -27539345 DOWN 5 -27539345 0 255 -~~~ -~~~ -27539365 0 254 -~~~ -~~~ -27539366 0 252 -~~~ -~~~ -27539368 0 248 -~~~ -~~~ -27539370 0 240 -~~~ -~~~ -27539372 0 224 -~~~ -~~~ -27539374 0 192 -~~~ -~~~ -27539375 0 128 -~~~ -~~~ -27539377 0 0 -~~~ -~~~ -27539379 0 512 -27539380 homeCount = 77 -27539381 waitCount = 31 -27539381 ripCount = 31 -27539382 locktype1 = 1 -27539382 locktype2 = 6 -27539403 locktype3 = 9 -27539404 goalCount = 0 -27539404 goalTotal = 20 -27539405 otherCount = 41 -~~~ -27539853 16 512 -27540465 DOWN 5 -27540465 0 512 -27540535 16 512 -27540559 DOWN 5 -27540559 0 512 -27545443 UP 10 -27545443 waslock = 0 -27545442 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27545472 512 16777728 -~~~ -27545622 512 512 -27545710 DOWN 10 -27545710 0 512 -~~~ -~~~ -27545737 0 1536 -~~~ -~~~ -27545739 0 1024 -27545740 homeCount = 78 -27545741 waitCount = 31 -27545741 ripCount = 31 -27545742 locktype1 = 1 -27545742 locktype2 = 6 -27545743 locktype3 = 9 -27545743 goalCount = 0 -27545744 goalTotal = 20 -27545744 otherCount = 41 -~~~ -27545765 UP 10 -27545766 waslock = 0 -27545765 512 1024 -~~~ -27552068 DOWN 10 -27552068 0 1024 -~~~ -~~~ -~~~ -~~~ -27552094 homeCount = 78 -27552095 waitCount = 31 -27552095 ripCount = 31 -27552096 locktype1 = 1 -27552096 locktype2 = 6 -27552097 locktype3 = 9 -27552097 goalCount = 0 -27552098 goalTotal = 20 -27552098 otherCount = 41 -~~~ -27552127 UP 10 -27552127 waslock = 0 -27552127 512 1024 -~~~ -27552162 DOWN 10 -27552162 0 1024 -~~~ -~~~ -~~~ -~~~ -27552191 homeCount = 78 -27552191 waitCount = 31 -27552192 ripCount = 31 -27552192 locktype1 = 1 -27552193 locktype2 = 6 -27552193 locktype3 = 9 -27552194 goalCount = 0 -27552194 goalTotal = 20 -27552195 otherCount = 41 -~~~ -27555522 UP 11 -27555522 1024 1024 -27555840 DOWN 11 -27555840 0 1024 -27555878 UP 11 -27555878 1024 1024 -27555985 DOWN 11 -27555985 0 1024 -27556185 LOCKOUT 3 -~~~ -27556203 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -27556206 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27561528 UP 11 -27561528 1024 0 -27561696 DOWN 11 -27561696 0 0 -27569980 UP 1 -27569980 1 0 -27570625 DOWN 1 -27570625 0 0 -27570643 1 0 -27570978 DOWN 1 -27570978 0 0 -27579623 512 0 -27579824 0 0 -27581203 LOCKEND -~~~ -~~~ -~~~ -27581224 0 512 -27582044 UP 10 -27582044 waslock = 0 -27582044 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27582081 512 16777728 -~~~ -27582231 512 512 -27582274 DOWN 10 -27582274 0 512 -~~~ -~~~ -27582292 0 2560 -~~~ -~~~ -27582294 0 2048 -27582295 homeCount = 79 -27582295 waitCount = 31 -27582296 ripCount = 31 -27582296 locktype1 = 1 -27582297 locktype2 = 6 -27582297 locktype3 = 10 -27582298 goalCount = 0 -27582298 goalTotal = 20 -27582299 otherCount = 41 -~~~ -27582320 UP 10 -27582321 waslock = 0 -27582320 512 2048 -~~~ -27582472 DOWN 10 -27582472 0 2048 -~~~ -~~~ -~~~ -~~~ -27582495 homeCount = 79 -27582495 waitCount = 31 -27582496 ripCount = 31 -27582496 locktype1 = 1 -27582497 locktype2 = 6 -27582497 locktype3 = 10 -27582498 goalCount = 0 -27582498 goalTotal = 20 -27582499 otherCount = 41 -~~~ -27582502 UP 10 -27582503 waslock = 0 -27582502 512 2048 -~~~ -27587012 DOWN 10 -27587012 0 2048 -27587023 UP 10 -27587024 waslock = 0 -27587023 512 2048 -~~~ -~~~ -~~~ -~~~ -27587035 homeCount = 79 -27587035 waitCount = 31 -27587036 ripCount = 31 -27587036 locktype1 = 1 -27587037 locktype2 = 6 -27587037 locktype3 = 10 -27587038 goalCount = 0 -27587038 goalTotal = 20 -27587039 otherCount = 41 -~~~ -~~~ -27587107 DOWN 10 -27587107 0 2048 -~~~ -~~~ -~~~ -~~~ -27587134 homeCount = 79 -27587135 waitCount = 31 -27587135 ripCount = 31 -27587136 locktype1 = 1 -27587136 locktype2 = 6 -27587137 locktype3 = 10 -27587137 goalCount = 0 -27587138 goalTotal = 20 -27587139 otherCount = 41 -~~~ -27589509 UP 12 -27589509 2048 2048 -27591426 DOWN 12 -27591426 0 2048 -27591493 UP 12 -27591493 2048 2048 -27595563 DOWN 12 -27595563 0 2048 -27595758 UP 12 -27595758 2048 2048 -27597010 CLICK1 -27597010 CLICK2 -~~~ -~~~ -~~~ -27597035 2048 67110912 -~~~ -27597185 2048 2048 -27603647 DOWN 12 -27603647 0 2048 -~~~ -~~~ -27603673 0 0 -~~~ -~~~ -27603675 0 1 -~~~ -~~~ -27603677 0 3 -~~~ -~~~ -27603679 0 7 -~~~ -~~~ -27603680 0 15 -~~~ -~~~ -27603682 0 31 -~~~ -~~~ -27603684 0 63 -~~~ -~~~ -27603686 0 127 -~~~ -~~~ -27603688 0 255 -27603689 homeCount = 79 -27603689 waitCount = 32 -27603690 ripCount = 31 -27603690 locktype1 = 1 -27603691 locktype2 = 6 -27603712 locktype3 = 10 -27603712 goalCount = 0 -27603713 goalTotal = 20 -27603713 otherCount = 41 -~~~ -27603715 CURRENTGOAL IS [1] -~~~ -27607433 UP 4 -27607433 8 255 -~~~ -~~~ -27608146 DOWN 4 -27608146 0 255 -~~~ -~~~ -27608171 0 254 -~~~ -~~~ -27608173 0 252 -~~~ -~~~ -27608174 0 248 -~~~ -~~~ -27608176 0 240 -~~~ -~~~ -27608178 0 224 -~~~ -~~~ -27608180 0 192 -~~~ -~~~ -27608182 0 128 -~~~ -~~~ -27608184 0 0 -~~~ -~~~ -27608186 0 512 -27608186 homeCount = 79 -27608187 waitCount = 32 -27608188 ripCount = 31 -27608188 locktype1 = 1 -27608209 locktype2 = 6 -27608210 locktype3 = 10 -27608210 goalCount = 0 -27608211 goalTotal = 20 -27608211 otherCount = 42 -~~~ -27613875 UP 10 -27613875 waslock = 0 -27613875 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27613908 512 16777728 -~~~ -27613925 DOWN 10 -27613925 0 16777728 -~~~ -~~~ -27613944 0 16779776 -~~~ -~~~ -27613946 0 16779264 -27613947 homeCount = 80 -27613948 waitCount = 32 -27613948 ripCount = 31 -27613949 locktype1 = 1 -27613949 locktype2 = 6 -27613950 locktype3 = 10 -27613950 goalCount = 0 -27613951 goalTotal = 20 -27613951 otherCount = 42 -~~~ -27613972 UP 10 -27613973 waslock = 0 -27613972 512 16779264 -~~~ -27614058 512 2048 -27614058 DOWN 10 -27614058 0 2048 -~~~ -~~~ -~~~ -~~~ -27614087 homeCount = 80 -27614087 waitCount = 32 -27614088 ripCount = 31 -27614088 locktype1 = 1 -27614089 locktype2 = 6 -27614089 locktype3 = 10 -27614090 goalCount = 0 -27614090 goalTotal = 20 -27614091 otherCount = 42 -~~~ -27614158 UP 10 -27614158 waslock = 0 -27614158 512 2048 -~~~ -27620143 DOWN 10 -27620143 0 2048 -~~~ -~~~ -~~~ -~~~ -27620166 homeCount = 80 -27620166 waitCount = 32 -27620167 ripCount = 31 -27620167 locktype1 = 1 -27620168 locktype2 = 6 -27620168 locktype3 = 10 -27620169 goalCount = 0 -27620169 goalTotal = 20 -27620170 otherCount = 42 -~~~ -27623236 UP 12 -27623236 2048 2048 -27625528 DOWN 12 -27625527 0 2048 -27625543 UP 12 -27625543 2048 2048 -27625606 DOWN 12 -27625606 0 2048 -27625661 UP 12 -27625661 2048 2048 -27626237 CLICK1 -27626237 CLICK2 -~~~ -~~~ -~~~ -27626266 2048 67110912 -~~~ -27626416 2048 2048 -27631910 DOWN 12 -27631910 0 2048 -~~~ -27631934 UP 12 -27631934 2048 2048 -~~~ -~~~ -27631936 2048 0 -~~~ -~~~ -27631937 2048 1 -~~~ -27631938 2048 3 -~~~ -~~~ -27631940 2048 7 -~~~ -~~~ -27631942 2048 15 -~~~ -~~~ -27631943 2048 31 -~~~ -~~~ -27631945 2048 63 -~~~ -~~~ -27631947 2048 127 -~~~ -~~~ -27631949 2048 255 -27631950 homeCount = 80 -27631971 waitCount = 33 -27631971 ripCount = 31 -27631972 locktype1 = 1 -27631972 locktype2 = 6 -27631973 locktype3 = 10 -27631973 goalCount = 0 -27631974 goalTotal = 20 -27631974 otherCount = 42 -~~~ -27631975 CURRENTGOAL IS [1] -~~~ -27632012 DOWN 12 -27632012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27632045 homeCount = 80 -27632045 waitCount = 33 -27632046 ripCount = 31 -27632047 locktype1 = 1 -27632047 locktype2 = 6 -27632048 locktype3 = 10 -27632048 goalCount = 0 -27632049 goalTotal = 20 -27632049 otherCount = 42 -~~~ -27632050 CURRENTGOAL IS [1] -~~~ -27632101 UP 12 -27632101 2048 255 -27632109 DOWN 12 -27632109 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27632148 homeCount = 80 -27632149 waitCount = 33 -27632150 ripCount = 31 -27632150 locktype1 = 1 -27632151 locktype2 = 6 -27632151 locktype3 = 10 -27632152 goalCount = 0 -27632152 goalTotal = 20 -27632153 otherCount = 42 -~~~ -27632154 CURRENTGOAL IS [1] -~~~ -27635610 UP 3 -27635610 4 255 -~~~ -~~~ -27636256 DOWN 3 -27636256 0 255 -~~~ -~~~ -27636278 0 254 -~~~ -~~~ -27636280 0 252 -~~~ -~~~ -27636282 0 248 -~~~ -~~~ -27636284 0 240 -~~~ -~~~ -27636286 0 224 -~~~ -~~~ -27636287 0 192 -~~~ -~~~ -27636289 0 128 -~~~ -~~~ -27636291 0 0 -~~~ -~~~ -27636293 0 512 -27636294 homeCount = 80 -27636294 waitCount = 33 -27636295 ripCount = 31 -27636295 locktype1 = 1 -27636317 locktype2 = 6 -27636317 locktype3 = 10 -27636318 goalCount = 0 -27636318 goalTotal = 20 -27636319 otherCount = 43 -~~~ -27639801 UP 10 -27639801 waslock = 0 -27639801 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27639826 512 16777728 -~~~ -27639833 DOWN 10 -27639833 0 16777728 -~~~ -~~~ -27639856 0 16779776 -~~~ -~~~ -27639858 0 16779264 -27639859 homeCount = 81 -27639860 waitCount = 33 -27639860 ripCount = 31 -27639861 locktype1 = 1 -27639861 locktype2 = 6 -27639862 locktype3 = 10 -27639862 goalCount = 0 -27639863 goalTotal = 20 -27639863 otherCount = 43 -~~~ -27639884 UP 10 -27639884 waslock = 0 -27639884 512 16779264 -~~~ -27639976 512 2048 -27640009 DOWN 10 -27640009 0 2048 -27640033 UP 10 -27640033 waslock = 0 -27640033 512 2048 -~~~ -~~~ -~~~ -~~~ -27640042 homeCount = 81 -27640042 waitCount = 33 -27640043 ripCount = 31 -27640043 locktype1 = 1 -27640044 locktype2 = 6 -27640044 locktype3 = 10 -27640045 goalCount = 0 -27640045 goalTotal = 20 -27640046 otherCount = 43 -~~~ -~~~ -27644807 DOWN 10 -27644807 0 2048 -~~~ -~~~ -~~~ -~~~ -27644834 homeCount = 81 -27644834 waitCount = 33 -27644835 ripCount = 31 -27644835 locktype1 = 1 -27644836 locktype2 = 6 -27644836 locktype3 = 10 -27644837 goalCount = 0 -27644837 goalTotal = 20 -27644838 otherCount = 43 -~~~ -27646984 UP 12 -27646984 2048 2048 -27651484 CLICK1 -27651484 CLICK2 -~~~ -~~~ -~~~ -27651502 2048 67110912 -~~~ -27651652 2048 2048 -27656240 DOWN 12 -27656240 0 2048 -27656249 UP 12 -27656249 2048 2048 -~~~ -~~~ -27656262 2048 0 -~~~ -~~~ -27656264 2048 1 -~~~ -~~~ -27656266 2048 3 -~~~ -~~~ -27656268 2048 7 -~~~ -~~~ -27656270 2048 15 -~~~ -~~~ -27656271 2048 31 -~~~ -~~~ -27656273 2048 63 -~~~ -~~~ -27656275 2048 127 -~~~ -~~~ -27656277 2048 255 -27656278 homeCount = 81 -27656278 waitCount = 34 -27656279 ripCount = 31 -27656280 locktype1 = 1 -27656301 locktype2 = 6 -27656301 locktype3 = 10 -27656302 goalCount = 0 -27656302 goalTotal = 20 -27656303 otherCount = 43 -~~~ -27656304 CURRENTGOAL IS [1] -~~~ -27656327 DOWN 12 -27656327 0 255 -27656335 UP 12 -27656335 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656365 DOWN 12 -27656365 0 255 -~~~ -~~~ -~~~ -27656369 homeCount = 81 -27656369 waitCount = 34 -27656370 ripCount = 31 -27656371 locktype1 = 1 -27656371 locktype2 = 6 -27656372 locktype3 = 10 -27656372 goalCount = 0 -27656373 goalTotal = 20 -27656373 otherCount = 43 -~~~ -27656374 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656412 homeCount = 81 -27656413 waitCount = 34 -27656413 ripCount = 31 -27656414 locktype1 = 1 -27656414 locktype2 = 6 -27656415 locktype3 = 10 -27656415 goalCount = 0 -27656416 goalTotal = 20 -27656416 otherCount = 43 -~~~ -27656417 CURRENTGOAL IS [1] -~~~ -27656456 UP 12 -27656456 2048 255 -27656502 DOWN 12 -27656502 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656539 homeCount = 81 -27656540 waitCount = 34 -27656540 ripCount = 31 -27656541 locktype1 = 1 -27656541 locktype2 = 6 -27656542 locktype3 = 10 -27656542 goalCount = 0 -27656543 goalTotal = 20 -27656543 otherCount = 43 -~~~ -27656544 CURRENTGOAL IS [1] -~~~ -27656604 UP 12 -27656604 2048 255 -27656632 DOWN 12 -27656632 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656669 homeCount = 81 -27656670 waitCount = 34 -27656670 ripCount = 31 -27656671 locktype1 = 1 -27656671 locktype2 = 6 -27656672 locktype3 = 10 -27656672 goalCount = 0 -27656673 goalTotal = 20 -27656673 otherCount = 43 -~~~ -27656674 CURRENTGOAL IS [1] -~~~ -27656745 UP 12 -27656745 2048 255 -27656777 DOWN 12 -27656776 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656824 homeCount = 81 -27656825 waitCount = 34 -27656825 ripCount = 31 -27656826 locktype1 = 1 -27656826 locktype2 = 6 -27656827 locktype3 = 10 -27656827 goalCount = 0 -27656828 goalTotal = 20 -27656828 otherCount = 43 -~~~ -27656829 CURRENTGOAL IS [1] -~~~ -27656904 UP 12 -27656904 2048 255 -27656933 DOWN 12 -27656933 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656975 homeCount = 81 -27656975 waitCount = 34 -27656976 ripCount = 31 -27656976 locktype1 = 1 -27656977 locktype2 = 6 -27656977 locktype3 = 10 -27656978 goalCount = 0 -27656978 goalTotal = 20 -27656979 otherCount = 43 -~~~ -27656980 CURRENTGOAL IS [1] -~~~ -27657042 UP 12 -27657042 2048 255 -27657070 DOWN 12 -27657070 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657106 homeCount = 81 -27657106 waitCount = 34 -27657107 ripCount = 31 -27657107 locktype1 = 1 -27657108 locktype2 = 6 -27657108 locktype3 = 10 -27657109 goalCount = 0 -27657109 goalTotal = 20 -27657110 otherCount = 43 -~~~ -27657111 CURRENTGOAL IS [1] -~~~ -27657177 UP 12 -27657177 2048 255 -27657218 DOWN 12 -27657217 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657256 homeCount = 81 -27657256 waitCount = 34 -27657257 ripCount = 31 -27657257 locktype1 = 1 -27657258 locktype2 = 6 -27657258 locktype3 = 10 -27657259 goalCount = 0 -27657259 goalTotal = 20 -27657260 otherCount = 43 -~~~ -27657261 CURRENTGOAL IS [1] -~~~ -27657282 UP 12 -27657282 2048 255 -27657301 DOWN 12 -27657301 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657335 homeCount = 81 -27657335 waitCount = 34 -27657336 ripCount = 31 -27657337 locktype1 = 1 -27657337 locktype2 = 6 -27657338 locktype3 = 10 -27657338 goalCount = 0 -27657339 goalTotal = 20 -27657339 otherCount = 43 -~~~ -27657340 CURRENTGOAL IS [1] -~~~ -27657361 UP 12 -27657361 2048 255 -27657380 DOWN 12 -27657380 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657415 homeCount = 81 -27657415 waitCount = 34 -27657416 ripCount = 31 -27657416 locktype1 = 1 -27657417 locktype2 = 6 -27657417 locktype3 = 10 -27657418 goalCount = 0 -27657418 goalTotal = 20 -27657419 otherCount = 43 -~~~ -27657420 CURRENTGOAL IS [1] -~~~ -27657492 UP 12 -27657492 2048 255 -27657528 DOWN 12 -27657528 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657567 homeCount = 81 -27657568 waitCount = 34 -27657568 ripCount = 31 -27657569 locktype1 = 1 -27657569 locktype2 = 6 -27657570 locktype3 = 10 -27657570 goalCount = 0 -27657571 goalTotal = 20 -27657571 otherCount = 43 -~~~ -27657572 CURRENTGOAL IS [1] -~~~ -27657594 UP 12 -27657593 2048 255 -27659986 DOWN 12 -27659986 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27660019 homeCount = 81 -27660019 waitCount = 34 -27660020 ripCount = 31 -27660020 locktype1 = 1 -27660021 locktype2 = 6 -27660021 locktype3 = 10 -27660022 goalCount = 0 -27660022 goalTotal = 20 -27660023 otherCount = 43 -~~~ -27660024 CURRENTGOAL IS [1] -~~~ -27660045 UP 12 -27660045 2048 255 -27660067 DOWN 12 -27660067 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27660108 homeCount = 81 -27660108 waitCount = 34 -27660109 ripCount = 31 -27660109 locktype1 = 1 -27660110 locktype2 = 6 -27660110 locktype3 = 10 -27660111 goalCount = 0 -27660111 goalTotal = 20 -27660112 otherCount = 43 -~~~ -27660113 CURRENTGOAL IS [1] -~~~ -27663773 UP 1 -27663773 1 255 -~~~ -~~~ -27663794 outer reward -~~~ -27663794 1 65791 -~~~ -~~~ -27664244 1 255 -27674160 DOWN 1 -27674160 0 255 -~~~ -~~~ -27674180 0 254 -~~~ -~~~ -27674182 0 252 -~~~ -~~~ -27674184 0 248 -~~~ -~~~ -27674186 0 240 -~~~ -~~~ -27674188 0 224 -~~~ -~~~ -27674189 0 192 -~~~ -~~~ -27674191 0 128 -~~~ -~~~ -27674193 0 0 -~~~ -~~~ -27674195 0 512 -27674196 homeCount = 81 -27674196 waitCount = 34 -27674197 ripCount = 31 -27674197 locktype1 = 1 -27674198 locktype2 = 6 -27674219 locktype3 = 10 -27674220 goalCount = 1 -27674220 goalTotal = 21 -27674221 otherCount = 43 -~~~ -27674221 1 512 -27674272 DOWN 1 -27674272 0 512 -27678680 UP 10 -27678680 waslock = 0 -27678679 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27678707 512 16777728 -~~~ -27678857 512 512 -27682040 DOWN 10 -27682040 0 512 -~~~ -~~~ -27682061 0 1536 -~~~ -~~~ -27682062 0 1024 -27682063 homeCount = 82 -27682064 waitCount = 34 -27682065 ripCount = 31 -27682065 locktype1 = 1 -27682066 locktype2 = 6 -27682066 locktype3 = 10 -27682067 goalCount = 1 -27682067 goalTotal = 21 -27682068 otherCount = 43 -~~~ -27682089 UP 10 -27682089 waslock = 0 -27682089 512 1024 -~~~ -27682132 DOWN 10 -27682132 0 1024 -~~~ -~~~ -~~~ -~~~ -27682163 homeCount = 82 -27682164 waitCount = 34 -27682164 ripCount = 31 -27682165 locktype1 = 1 -27682165 locktype2 = 6 -27682166 locktype3 = 10 -27682166 goalCount = 1 -27682167 goalTotal = 21 -27682167 otherCount = 43 -~~~ -27684669 UP 11 -27684669 1024 1024 -27684805 DOWN 11 -27684805 0 1024 -27684823 UP 11 -27684823 1024 1024 -27692669 BEEP1 -27692669 BEEP2 -~~~ -~~~ -~~~ -27692694 1024 33555456 -~~~ -27692843 1024 1024 -27699461 DOWN 11 -27699461 0 1024 -~~~ -~~~ -27699484 0 0 -~~~ -~~~ -27699486 0 1 -~~~ -~~~ -27699488 0 3 -~~~ -~~~ -27699489 0 7 -~~~ -~~~ -27699491 0 15 -~~~ -~~~ -27699493 0 31 -~~~ -~~~ -27699495 0 63 -~~~ -~~~ -27699497 0 127 -~~~ -~~~ -27699498 0 255 -27699499 homeCount = 82 -27699500 waitCount = 34 -27699501 ripCount = 32 -27699501 locktype1 = 1 -27699502 locktype2 = 6 -27699523 locktype3 = 10 -27699523 goalCount = 1 -27699524 goalTotal = 21 -27699524 otherCount = 43 -~~~ -27699525 CURRENTGOAL IS [1] -~~~ -27699526 UP 11 -27699526 1024 255 -27699618 DOWN 11 -27699618 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27699659 homeCount = 82 -27699659 waitCount = 34 -27699660 ripCount = 32 -27699660 locktype1 = 1 -27699661 locktype2 = 6 -27699661 locktype3 = 10 -27699662 goalCount = 1 -27699662 goalTotal = 21 -27699663 otherCount = 43 -~~~ -27699664 CURRENTGOAL IS [1] -~~~ -27699703 UP 11 -27699703 1024 255 -27701657 DOWN 11 -27701657 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27701692 homeCount = 82 -27701692 waitCount = 34 -27701693 ripCount = 32 -27701693 locktype1 = 1 -27701694 locktype2 = 6 -27701694 locktype3 = 10 -27701695 goalCount = 1 -27701695 goalTotal = 21 -27701696 otherCount = 43 -~~~ -27701697 CURRENTGOAL IS [1] -~~~ -27704975 UP 7 -27704975 64 255 -~~~ -~~~ -27705020 DOWN 7 -27705020 0 255 -~~~ -~~~ -27705045 0 254 -~~~ -~~~ -27705047 0 252 -~~~ -~~~ -27705049 0 248 -~~~ -~~~ -27705051 0 240 -~~~ -~~~ -27705053 0 224 -~~~ -~~~ -27705054 0 192 -~~~ -~~~ -27705056 0 128 -~~~ -~~~ -27705058 0 0 -~~~ -~~~ -27705060 0 512 -27705061 homeCount = 82 -27705062 waitCount = 34 -27705062 ripCount = 32 -27705063 locktype1 = 1 -27705063 locktype2 = 6 -27705084 locktype3 = 10 -27705084 goalCount = 1 -27705085 goalTotal = 21 -27705085 otherCount = 44 -~~~ -27705086 64 512 -27705608 DOWN 7 -27705608 0 512 -27709885 UP 10 -27709885 waslock = 0 -27709884 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27709910 512 16777728 -~~~ -27710060 512 512 -27710125 DOWN 10 -27710125 0 512 -27710138 UP 10 -27710139 waslock = 0 -27710138 512 512 -~~~ -~~~ -27710156 512 1536 -~~~ -~~~ -27710158 512 1024 -27710159 homeCount = 83 -27710160 waitCount = 34 -27710160 ripCount = 32 -27710161 locktype1 = 1 -27710161 locktype2 = 6 -27710162 locktype3 = 10 -27710162 goalCount = 1 -27710163 goalTotal = 21 -27710163 otherCount = 44 -~~~ -~~~ -27715361 DOWN 10 -27715361 0 1024 -~~~ -~~~ -~~~ -~~~ -27715381 homeCount = 83 -27715382 waitCount = 34 -27715382 ripCount = 32 -27715383 locktype1 = 1 -27715383 locktype2 = 6 -27715384 locktype3 = 10 -27715384 goalCount = 1 -27715385 goalTotal = 21 -27715385 otherCount = 44 -~~~ -27715396 UP 10 -27715396 waslock = 0 -27715396 512 1024 -~~~ -27715460 DOWN 10 -27715460 0 1024 -~~~ -~~~ -~~~ -~~~ -27715482 homeCount = 83 -27715483 waitCount = 34 -27715483 ripCount = 32 -27715484 locktype1 = 1 -27715484 locktype2 = 6 -27715485 locktype3 = 10 -27715485 goalCount = 1 -27715486 goalTotal = 21 -27715486 otherCount = 44 -~~~ -27718462 UP 11 -27718462 1024 1024 -27725622 DOWN 11 -27725622 0 1024 -27725640 UP 11 -27725639 1024 1024 -27725962 BEEP1 -27725962 BEEP2 -~~~ -~~~ -~~~ -27725991 1024 33555456 -~~~ -27726141 1024 1024 -27732734 DOWN 11 -27732734 0 1024 -~~~ -~~~ -27732758 0 0 -~~~ -~~~ -27732760 0 1 -~~~ -~~~ -27732761 0 3 -~~~ -~~~ -27732763 0 7 -~~~ -~~~ -27732765 0 15 -~~~ -~~~ -27732767 0 31 -~~~ -~~~ -27732769 0 63 -~~~ -~~~ -27732771 0 127 -~~~ -~~~ -27732772 0 255 -27732773 homeCount = 83 -27732774 waitCount = 34 -27732774 ripCount = 33 -27732775 locktype1 = 1 -27732775 locktype2 = 6 -27732796 locktype3 = 10 -27732797 goalCount = 1 -27732797 goalTotal = 21 -27732798 otherCount = 44 -~~~ -27732799 CURRENTGOAL IS [1] -~~~ -27732799 UP 11 -27732799 1024 255 -27732846 DOWN 11 -27732846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27732883 homeCount = 83 -27732883 waitCount = 34 -27732884 ripCount = 33 -27732884 locktype1 = 1 -27732885 locktype2 = 6 -27732885 locktype3 = 10 -27732886 goalCount = 1 -27732886 goalTotal = 21 -27732887 otherCount = 44 -~~~ -27732888 CURRENTGOAL IS [1] -~~~ -27732921 UP 11 -27732921 1024 255 -27732964 DOWN 11 -27732964 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27733006 homeCount = 83 -27733006 waitCount = 34 -27733007 ripCount = 33 -27733007 locktype1 = 1 -27733008 locktype2 = 6 -27733008 locktype3 = 10 -27733009 goalCount = 1 -27733009 goalTotal = 21 -27733010 otherCount = 44 -~~~ -27733011 CURRENTGOAL IS [1] -~~~ -27740748 UP 1 -27740748 1 255 -~~~ -~~~ -27740772 outer reward -~~~ -27740772 1 65791 -~~~ -~~~ -27741222 1 255 -27751154 DOWN 1 -27751154 0 255 -~~~ -~~~ -27751180 0 254 -~~~ -~~~ -27751182 0 252 -~~~ -~~~ -27751184 0 248 -~~~ -~~~ -27751186 0 240 -~~~ -~~~ -27751188 0 224 -~~~ -~~~ -27751189 0 192 -~~~ -~~~ -27751191 0 128 -~~~ -~~~ -27751193 0 0 -~~~ -~~~ -27751195 0 512 -27751196 homeCount = 83 -27751196 waitCount = 34 -27751197 ripCount = 33 -27751197 locktype1 = 1 -27751219 locktype2 = 6 -27751219 locktype3 = 10 -27751220 goalCount = 2 -27751220 goalTotal = 22 -27751221 otherCount = 44 -~~~ -27755454 UP 10 -27755454 waslock = 0 -27755454 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27755488 512 16777728 -~~~ -27755637 512 512 -27760423 DOWN 10 -27760423 0 512 -~~~ -~~~ -27760440 0 2560 -~~~ -~~~ -27760442 0 2048 -27760443 homeCount = 84 -27760444 waitCount = 34 -27760444 ripCount = 33 -27760445 locktype1 = 1 -27760445 locktype2 = 6 -27760446 locktype3 = 10 -27760446 goalCount = 2 -27760447 goalTotal = 22 -27760447 otherCount = 44 -~~~ -27760475 UP 10 -27760475 waslock = 0 -27760475 512 2048 -~~~ -27760523 DOWN 10 -27760523 0 2048 -~~~ -~~~ -~~~ -~~~ -27760554 homeCount = 84 -27760555 waitCount = 34 -27760555 ripCount = 33 -27760556 locktype1 = 1 -27760556 locktype2 = 6 -27760557 locktype3 = 10 -27760557 goalCount = 2 -27760558 goalTotal = 22 -27760559 otherCount = 44 -~~~ -27765567 UP 12 -27765567 2048 2048 -27768756 DOWN 12 -27768756 0 2048 -27768842 UP 12 -27768842 2048 2048 -27768908 DOWN 12 -27768908 0 2048 -27769091 UP 12 -27769091 2048 2048 -27769107 DOWN 12 -27769107 0 2048 -27769128 UP 12 -27769128 2048 2048 -27771567 CLICK1 -27771567 CLICK2 -~~~ -~~~ -~~~ -27771592 2048 67110912 -~~~ -27771742 2048 2048 -27776734 DOWN 12 -27776734 0 2048 -~~~ -~~~ -27776751 0 0 -~~~ -~~~ -27776753 0 1 -~~~ -~~~ -27776754 0 3 -~~~ -~~~ -27776756 0 7 -~~~ -~~~ -27776758 0 15 -~~~ -~~~ -27776760 0 31 -~~~ -~~~ -27776762 0 63 -~~~ -~~~ -27776764 0 127 -~~~ -~~~ -27776765 UP 12 -27776765 2048 255 -27776767 homeCount = 84 -27776767 waitCount = 35 -27776768 ripCount = 33 -27776768 locktype1 = 1 -27776789 locktype2 = 6 -27776790 locktype3 = 10 -27776790 goalCount = 2 -27776791 goalTotal = 22 -27776791 otherCount = 44 -~~~ -27776792 CURRENTGOAL IS [1] -~~~ -27776832 DOWN 12 -27776832 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27776867 homeCount = 84 -27776868 waitCount = 35 -27776869 ripCount = 33 -27776869 locktype1 = 1 -27776870 locktype2 = 6 -27776870 locktype3 = 10 -27776871 goalCount = 2 -27776871 goalTotal = 22 -27776872 otherCount = 44 -~~~ -27776873 CURRENTGOAL IS [1] -~~~ -27789324 UP 1 -27789324 1 255 -~~~ -~~~ -27789343 outer reward -~~~ -27789344 1 65791 -~~~ -~~~ -27789793 1 255 -27798609 DOWN 1 -27798609 0 255 -~~~ -~~~ -27798631 0 254 -~~~ -~~~ -27798633 0 252 -~~~ -~~~ -27798635 0 248 -~~~ -~~~ -27798637 0 240 -~~~ -~~~ -27798638 0 224 -~~~ -~~~ -27798640 0 192 -~~~ -~~~ -27798642 0 128 -~~~ -~~~ -27798644 0 0 -~~~ -~~~ -27798646 0 512 -27798647 homeCount = 84 -27798647 waitCount = 35 -27798648 ripCount = 33 -27798648 locktype1 = 1 -27798649 locktype2 = 6 -27798670 locktype3 = 10 -27798670 goalCount = 3 -27798671 goalTotal = 23 -27798671 otherCount = 44 -~~~ -27805587 UP 10 -27805587 waslock = 0 -27805587 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27805621 512 16777728 -~~~ -27805771 512 512 -27805806 DOWN 10 -27805806 0 512 -~~~ -27805822 UP 10 -27805822 waslock = 0 -27805822 512 512 -~~~ -~~~ -~~~ -27805825 512 2048 -27805826 homeCount = 85 -27805826 waitCount = 35 -27805827 ripCount = 33 -27805827 locktype1 = 1 -27805828 locktype2 = 6 -27805828 locktype3 = 10 -27805829 goalCount = 3 -27805849 goalTotal = 23 -27805850 otherCount = 44 -~~~ -~~~ -27811079 DOWN 10 -27811078 0 2048 -~~~ -~~~ -~~~ -~~~ -27811106 homeCount = 85 -27811107 waitCount = 35 -27811107 ripCount = 33 -27811108 locktype1 = 1 -27811108 locktype2 = 6 -27811109 locktype3 = 10 -27811109 goalCount = 3 -27811110 goalTotal = 23 -27811110 otherCount = 44 -~~~ -27811131 UP 10 -27811132 waslock = 0 -27811131 512 2048 -~~~ -27811175 DOWN 10 -27811175 0 2048 -~~~ -~~~ -~~~ -~~~ -27811202 homeCount = 85 -27811202 waitCount = 35 -27811203 ripCount = 33 -27811203 locktype1 = 1 -27811204 locktype2 = 6 -27811204 locktype3 = 10 -27811205 goalCount = 3 -27811205 goalTotal = 23 -27811206 otherCount = 44 -~~~ -27813456 UP 12 -27813456 2048 2048 -27815579 DOWN 12 -27815579 0 2048 -27815618 UP 12 -27815618 2048 2048 -27818639 DOWN 12 -27818639 0 2048 -27818723 UP 12 -27818723 2048 2048 -27821456 CLICK1 -27821456 CLICK2 -~~~ -~~~ -~~~ -27821480 2048 67110912 -~~~ -27821630 2048 2048 -27830770 DOWN 12 -27830770 0 2048 -~~~ -~~~ -27830788 0 0 -~~~ -~~~ -27830790 0 1 -~~~ -~~~ -27830792 0 3 -~~~ -~~~ -27830794 0 7 -~~~ -~~~ -27830796 0 15 -~~~ -~~~ -27830797 0 31 -~~~ -~~~ -27830799 0 63 -~~~ -~~~ -27830801 0 127 -~~~ -~~~ -27830803 0 255 -27830804 homeCount = 85 -27830805 waitCount = 36 -27830805 ripCount = 33 -27830806 locktype1 = 1 -27830806 locktype2 = 6 -27830827 locktype3 = 10 -27830828 goalCount = 3 -27830828 goalTotal = 23 -27830829 otherCount = 44 -~~~ -27830830 CURRENTGOAL IS [1] -~~~ -27836086 UP 1 -27836086 1 255 -~~~ -~~~ -27836109 outer reward -~~~ -27836110 1 65791 -~~~ -~~~ -27836346 DOWN 1 -27836346 0 65791 -~~~ -~~~ -27836368 0 65790 -~~~ -~~~ -27836369 0 65788 -~~~ -~~~ -27836371 0 65784 -~~~ -~~~ -27836373 0 65776 -~~~ -~~~ -27836375 0 65760 -~~~ -27836376 1 65760 -~~~ -~~~ -27836378 1 65728 -~~~ -27836379 1 65664 -~~~ -~~~ -27836381 1 65536 -~~~ -~~~ -27836382 1 66048 -27836383 homeCount = 85 -27836384 waitCount = 36 -27836405 ripCount = 33 -27836405 locktype1 = 1 -27836406 locktype2 = 6 -27836406 locktype3 = 10 -27836407 goalCount = 4 -27836407 goalTotal = 24 -27836408 otherCount = 44 -~~~ -27836559 1 512 -27845893 DOWN 1 -27845893 0 512 -27845965 1 512 -27846024 DOWN 1 -27846024 0 512 -27846085 1 512 -27846137 DOWN 1 -27846137 0 512 -27850834 UP 10 -27850834 waslock = 0 -27850834 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27850864 512 16777728 -~~~ -27851011 DOWN 10 -27851010 0 16777728 -27851014 0 512 -~~~ -~~~ -27851029 0 1536 -~~~ -~~~ -27851031 0 1024 -27851032 homeCount = 86 -27851033 waitCount = 36 -27851033 ripCount = 33 -27851034 locktype1 = 1 -27851034 locktype2 = 6 -27851035 locktype3 = 10 -27851035 goalCount = 4 -27851036 goalTotal = 24 -27851036 otherCount = 44 -~~~ -27851057 UP 10 -27851058 waslock = 0 -27851057 512 1024 -~~~ -27853817 DOWN 10 -27853817 0 1024 -~~~ -~~~ -~~~ -~~~ -27853841 homeCount = 86 -27853841 waitCount = 36 -27853842 ripCount = 33 -27853842 locktype1 = 1 -27853843 locktype2 = 6 -27853843 locktype3 = 10 -27853844 goalCount = 4 -27853844 goalTotal = 24 -27853845 otherCount = 44 -~~~ -27856740 UP 11 -27856740 1024 1024 -27860921 DOWN 11 -27860921 0 1024 -27860925 UP 11 -27860925 1024 1024 -27864241 BEEP1 -27864241 BEEP2 -~~~ -~~~ -~~~ -27864260 1024 33555456 -~~~ -27864410 1024 1024 -27870387 DOWN 11 -27870387 0 1024 -27870394 UP 11 -27870394 1024 1024 -~~~ -~~~ -27870408 1024 0 -~~~ -~~~ -27870410 1024 1 -~~~ -~~~ -27870412 1024 3 -~~~ -~~~ -27870413 1024 7 -~~~ -~~~ -27870415 1024 15 -~~~ -~~~ -27870417 1024 31 -~~~ -~~~ -27870419 1024 63 -~~~ -~~~ -27870421 1024 127 -~~~ -~~~ -27870423 1024 255 -27870424 homeCount = 86 -27870424 waitCount = 36 -27870425 ripCount = 34 -27870425 locktype1 = 1 -27870446 locktype2 = 6 -27870447 locktype3 = 10 -27870447 goalCount = 4 -27870448 goalTotal = 24 -27870448 otherCount = 44 -~~~ -27870450 CURRENTGOAL IS [1] -~~~ -27872522 DOWN 11 -27872522 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872551 UP 11 -27872551 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872557 homeCount = 86 -27872557 waitCount = 36 -27872558 ripCount = 34 -27872559 locktype1 = 1 -27872559 locktype2 = 6 -27872560 locktype3 = 10 -27872560 goalCount = 4 -27872561 goalTotal = 24 -27872561 otherCount = 44 -~~~ -27872562 CURRENTGOAL IS [1] -~~~ -27872619 DOWN 11 -27872619 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872660 homeCount = 86 -27872661 waitCount = 36 -27872661 ripCount = 34 -27872662 locktype1 = 1 -27872662 locktype2 = 6 -27872663 locktype3 = 10 -27872663 goalCount = 4 -27872664 goalTotal = 24 -27872664 otherCount = 44 -~~~ -27872666 CURRENTGOAL IS [1] -~~~ -27877231 UP 1 -27877231 1 255 -~~~ -~~~ -27877255 outer reward -~~~ -27877255 1 65791 -~~~ -~~~ -27877705 1 255 -27886848 DOWN 1 -27886848 0 255 -~~~ -~~~ -27886873 0 254 -~~~ -~~~ -27886875 0 252 -~~~ -~~~ -27886877 0 248 -~~~ -~~~ -27886879 0 240 -~~~ -~~~ -27886880 0 224 -~~~ -~~~ -27886882 0 192 -~~~ -~~~ -27886884 0 128 -~~~ -~~~ -27886886 0 0 -~~~ -~~~ -27886888 0 512 -27886889 homeCount = 86 -27886889 waitCount = 36 -27886890 ripCount = 34 -27886890 locktype1 = 1 -27886911 locktype2 = 6 -27886912 locktype3 = 10 -27886912 goalCount = 5 -27886913 goalTotal = 25 -27886913 otherCount = 44 -~~~ -27886914 1 512 -27888622 DOWN 1 -27888622 0 512 -27888710 1 512 -27888740 DOWN 1 -27888740 0 512 -27893642 UP 10 -27893642 waslock = 0 -27893642 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27893669 512 16777728 -~~~ -27893815 DOWN 10 -27893815 0 16777728 -27893819 0 512 -~~~ -~~~ -27893834 0 1536 -~~~ -~~~ -27893836 0 1024 -27893837 homeCount = 87 -27893837 waitCount = 36 -27893838 ripCount = 34 -27893838 locktype1 = 1 -27893839 locktype2 = 6 -27893839 locktype3 = 10 -27893840 goalCount = 5 -27893840 goalTotal = 25 -27893841 otherCount = 44 -~~~ -27893862 UP 10 -27893862 waslock = 0 -27893862 512 1024 -~~~ -27899216 DOWN 10 -27899216 0 1024 -~~~ -~~~ -~~~ -~~~ -27899236 homeCount = 87 -27899237 waitCount = 36 -27899238 ripCount = 34 -27899238 locktype1 = 1 -27899239 locktype2 = 6 -27899239 locktype3 = 10 -27899240 goalCount = 5 -27899240 goalTotal = 25 -27899241 otherCount = 44 -~~~ -27899293 UP 10 -27899294 waslock = 0 -27899293 512 1024 -~~~ -27899323 DOWN 10 -27899323 0 1024 -~~~ -~~~ -~~~ -~~~ -27899339 homeCount = 87 -27899340 waitCount = 36 -27899340 ripCount = 34 -27899341 locktype1 = 1 -27899341 locktype2 = 6 -27899342 locktype3 = 10 -27899342 goalCount = 5 -27899343 goalTotal = 25 -27899343 otherCount = 44 -~~~ -27902072 UP 11 -27902072 1024 1024 -27905909 DOWN 11 -27905909 0 1024 -27905926 UP 11 -27905926 1024 1024 -27911073 BEEP1 -27911073 BEEP2 -~~~ -~~~ -~~~ -27911096 1024 33555456 -~~~ -27911190 DOWN 11 -27911190 0 33555456 -27911215 UP 11 -27911215 1024 33555456 -27911245 1024 1024 -~~~ -~~~ -27911764 1024 0 -~~~ -~~~ -27911766 1024 1 -~~~ -~~~ -27911768 1024 3 -~~~ -~~~ -27911770 1024 7 -~~~ -~~~ -27911771 1024 15 -~~~ -~~~ -27911773 1024 31 -~~~ -~~~ -27911775 1024 63 -~~~ -~~~ -27911777 1024 127 -~~~ -~~~ -27911779 1024 255 -27911780 homeCount = 87 -27911780 waitCount = 36 -27911781 ripCount = 35 -27911781 locktype1 = 1 -27911803 locktype2 = 6 -27911803 locktype3 = 10 -27911804 goalCount = 5 -27911804 goalTotal = 25 -27911805 otherCount = 44 -~~~ -27911806 CURRENTGOAL IS [1] -~~~ -27918132 DOWN 11 -27918132 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27918170 homeCount = 87 -27918171 waitCount = 36 -27918171 ripCount = 35 -27918172 locktype1 = 1 -27918172 locktype2 = 6 -27918173 locktype3 = 10 -27918173 goalCount = 5 -27918174 goalTotal = 25 -27918174 otherCount = 44 -~~~ -27918175 CURRENTGOAL IS [1] -~~~ -27918197 UP 11 -27918197 1024 255 -27920410 DOWN 11 -27920410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27920453 homeCount = 87 -27920453 waitCount = 36 -27920454 ripCount = 35 -27920454 locktype1 = 1 -27920455 locktype2 = 6 -27920455 locktype3 = 10 -27920456 goalCount = 5 -27920456 goalTotal = 25 -27920457 otherCount = 44 -~~~ -27920458 CURRENTGOAL IS [1] -~~~ -27920480 UP 11 -27920479 1024 255 -27920515 DOWN 11 -27920515 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27920551 homeCount = 87 -27920552 waitCount = 36 -27920552 ripCount = 35 -27920553 locktype1 = 1 -27920553 locktype2 = 6 -27920554 locktype3 = 10 -27920554 goalCount = 5 -27920555 goalTotal = 25 -27920555 otherCount = 44 -~~~ -27920556 CURRENTGOAL IS [1] -~~~ -27925246 UP 1 -27925246 1 255 -~~~ -~~~ -27925268 outer reward -~~~ -27925268 1 65791 -~~~ -~~~ -27925717 1 255 -27936444 DOWN 1 -27936444 0 255 -~~~ -~~~ -27936465 0 254 -~~~ -~~~ -27936467 0 252 -~~~ -~~~ -27936469 0 248 -~~~ -~~~ -27936471 0 240 -~~~ -~~~ -27936472 0 224 -~~~ -~~~ -27936474 0 192 -~~~ -~~~ -27936476 0 128 -~~~ -~~~ -27936478 0 0 -~~~ -~~~ -27936480 0 512 -27936481 homeCount = 87 -27936481 waitCount = 36 -27936482 ripCount = 35 -27936482 locktype1 = 1 -27936503 locktype2 = 6 -27936504 locktype3 = 10 -27936504 goalCount = 6 -27936505 goalTotal = 26 -27936505 otherCount = 44 -~~~ -27936515 1 512 -27936544 DOWN 1 -27936544 0 512 -27942299 UP 10 -27942299 waslock = 0 -27942299 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27942333 512 16777728 -~~~ -27942483 512 512 -27942510 DOWN 10 -27942510 0 512 -~~~ -~~~ -27942536 0 1536 -~~~ -~~~ -27942538 0 1024 -27942539 homeCount = 88 -27942540 waitCount = 36 -27942540 ripCount = 35 -27942541 locktype1 = 1 -27942541 locktype2 = 6 -27942542 locktype3 = 10 -27942542 goalCount = 6 -27942543 goalTotal = 26 -27942543 otherCount = 44 -~~~ -27942565 UP 10 -27942565 waslock = 0 -27942565 512 1024 -~~~ -27945190 DOWN 10 -27945190 0 1024 -~~~ -~~~ -~~~ -~~~ -27945220 homeCount = 88 -27945221 waitCount = 36 -27945221 ripCount = 35 -27945222 locktype1 = 1 -27945222 locktype2 = 6 -27945223 locktype3 = 10 -27945223 goalCount = 6 -27945224 goalTotal = 26 -27945224 otherCount = 44 -~~~ -27945226 UP 10 -27945226 waslock = 0 -27945226 512 1024 -~~~ -27945285 DOWN 10 -27945285 0 1024 -~~~ -~~~ -~~~ -~~~ -27945311 homeCount = 88 -27945311 waitCount = 36 -27945312 ripCount = 35 -27945312 locktype1 = 1 -27945313 locktype2 = 6 -27945313 locktype3 = 10 -27945314 goalCount = 6 -27945314 goalTotal = 26 -27945315 otherCount = 44 -~~~ -27947700 UP 11 -27947700 1024 1024 -27951200 BEEP1 -27951200 BEEP2 -~~~ -~~~ -~~~ -27951222 1024 33555456 -~~~ -27951371 1024 1024 -27957662 DOWN 11 -27957662 0 1024 -27957672 UP 11 -27957672 1024 1024 -~~~ -~~~ -27957680 1024 0 -~~~ -~~~ -27957681 1024 1 -~~~ -~~~ -27957683 1024 3 -~~~ -~~~ -27957685 1024 7 -~~~ -~~~ -27957687 1024 15 -~~~ -~~~ -27957689 1024 31 -~~~ -~~~ -27957691 1024 63 -~~~ -~~~ -27957692 1024 127 -~~~ -~~~ -27957694 1024 255 -27957695 homeCount = 88 -27957696 waitCount = 36 -27957696 ripCount = 36 -27957718 locktype1 = 1 -27957718 locktype2 = 6 -27957719 locktype3 = 10 -27957719 goalCount = 6 -27957720 goalTotal = 26 -27957720 otherCount = 44 -~~~ -27957721 CURRENTGOAL IS [1] -~~~ -27957739 DOWN 11 -27957739 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27957767 UP 11 -27957767 1024 255 -~~~ -27957769 homeCount = 88 -27957769 waitCount = 36 -27957770 ripCount = 36 -27957770 locktype1 = 1 -27957771 locktype2 = 6 -27957771 locktype3 = 10 -27957772 goalCount = 6 -27957772 goalTotal = 26 -27957773 otherCount = 44 -~~~ -27957795 CURRENTGOAL IS [1] -~~~ -27959629 DOWN 11 -27959629 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27959667 homeCount = 88 -27959667 waitCount = 36 -27959668 ripCount = 36 -27959669 locktype1 = 1 -27959669 locktype2 = 6 -27959670 locktype3 = 10 -27959670 goalCount = 6 -27959671 goalTotal = 26 -27959671 otherCount = 44 -~~~ -27959672 CURRENTGOAL IS [1] -~~~ -27963580 UP 1 -27963580 1 255 -~~~ -~~~ -27963607 outer reward -~~~ -27963607 1 65791 -~~~ -~~~ -27964057 1 255 -27975016 DOWN 1 -27975016 0 255 -~~~ -~~~ -27975037 0 254 -~~~ -~~~ -27975039 0 252 -~~~ -~~~ -27975041 0 248 -~~~ -~~~ -27975043 0 240 -~~~ -~~~ -27975045 0 224 -~~~ -~~~ -27975046 0 192 -~~~ -~~~ -27975048 0 128 -~~~ -~~~ -27975050 0 0 -~~~ -~~~ -27975052 0 512 -27975053 homeCount = 88 -27975053 waitCount = 36 -27975054 ripCount = 36 -27975054 locktype1 = 1 -27975055 locktype2 = 6 -27975076 locktype3 = 10 -27975076 goalCount = 7 -27975077 goalTotal = 27 -27975077 otherCount = 44 -~~~ -27975084 1 512 -27975144 DOWN 1 -27975144 0 512 -27980896 UP 10 -27980896 waslock = 0 -27980896 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27980921 512 16777728 -~~~ -27980997 DOWN 10 -27980997 0 16777728 -~~~ -~~~ -27981015 0 16778752 -~~~ -~~~ -27981017 0 16778240 -27981018 homeCount = 89 -27981018 waitCount = 36 -27981019 ripCount = 36 -27981019 locktype1 = 1 -27981020 locktype2 = 6 -27981020 locktype3 = 10 -27981021 goalCount = 7 -27981021 goalTotal = 27 -27981022 otherCount = 44 -~~~ -27981043 UP 10 -27981043 waslock = 0 -27981043 512 16778240 -~~~ -27981071 512 1024 -27987553 DOWN 10 -27987553 0 1024 -~~~ -~~~ -~~~ -~~~ -27987580 homeCount = 89 -27987580 waitCount = 36 -27987581 ripCount = 36 -27987581 locktype1 = 1 -27987582 locktype2 = 6 -27987582 locktype3 = 10 -27987583 goalCount = 7 -27987583 goalTotal = 27 -27987584 otherCount = 44 -~~~ -27989439 UP 11 -27989439 1024 1024 -27992292 DOWN 11 -27992292 0 1024 -27992302 UP 11 -27992302 1024 1024 -27997439 BEEP1 -27997439 BEEP2 -~~~ -~~~ -~~~ -27997459 1024 33555456 -~~~ -27997609 1024 1024 -28004157 DOWN 11 -28004157 0 1024 -~~~ -~~~ -28004178 0 0 -~~~ -~~~ -28004180 0 1 -~~~ -~~~ -28004182 0 3 -~~~ -~~~ -28004184 0 7 -~~~ -~~~ -28004185 0 15 -~~~ -~~~ -28004187 0 31 -~~~ -~~~ -28004189 0 63 -~~~ -~~~ -28004191 0 127 -~~~ -~~~ -28004193 0 255 -28004194 homeCount = 89 -28004194 waitCount = 36 -28004195 ripCount = 37 -28004195 locktype1 = 1 -28004196 locktype2 = 6 -28004217 locktype3 = 10 -28004218 goalCount = 7 -28004218 goalTotal = 27 -28004219 otherCount = 44 -~~~ -28004220 CURRENTGOAL IS [1] -~~~ -28008115 UP 1 -28008115 1 255 -~~~ -~~~ -28008134 outer reward -~~~ -28008134 1 65791 -~~~ -~~~ -28008353 DOWN 1 -28008353 0 65791 -28008370 1 65791 -~~~ -~~~ -28008372 1 65790 -~~~ -~~~ -28008374 1 65788 -~~~ -~~~ -28008376 1 65784 -~~~ -~~~ -28008378 1 65776 -~~~ -~~~ -28008380 1 65760 -~~~ -~~~ -28008382 1 65728 -~~~ -~~~ -28008383 1 65664 -~~~ -~~~ -28008385 1 65536 -~~~ -~~~ -28008387 1 66048 -28008388 homeCount = 89 -28008389 waitCount = 36 -28008389 ripCount = 37 -28008410 locktype1 = 1 -28008410 locktype2 = 6 -28008411 locktype3 = 10 -28008411 goalCount = 8 -28008412 goalTotal = 28 -28008412 otherCount = 44 -~~~ -28008584 1 512 -28018306 DOWN 1 -28018306 0 512 -28018329 1 512 -28018420 DOWN 1 -28018420 0 512 -28018472 1 512 -28019511 DOWN 1 -28019511 0 512 -28019538 1 512 -28019606 DOWN 1 -28019606 0 512 -28026274 UP 10 -28026274 waslock = 0 -28026274 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28026301 512 16777728 -~~~ -28026429 DOWN 10 -28026429 0 16777728 -28026451 0 512 -~~~ -~~~ -28026456 0 1536 -~~~ -~~~ -28026457 0 1024 -28026458 homeCount = 90 -28026459 waitCount = 36 -28026460 ripCount = 37 -28026460 locktype1 = 1 -28026461 locktype2 = 6 -28026461 locktype3 = 10 -28026462 goalCount = 8 -28026462 goalTotal = 28 -28026463 otherCount = 44 -~~~ -28026642 UP 10 -28026643 waslock = 0 -28026642 512 1024 -~~~ -28026762 DOWN 10 -28026762 0 1024 -28026776 UP 10 -28026777 waslock = 0 -28026776 512 1024 -~~~ -~~~ -~~~ -~~~ -28026799 homeCount = 90 -28026799 waitCount = 36 -28026800 ripCount = 37 -28026800 locktype1 = 1 -28026801 locktype2 = 6 -28026801 locktype3 = 10 -28026802 goalCount = 8 -28026802 goalTotal = 28 -28026803 otherCount = 44 -~~~ -~~~ -28031965 DOWN 10 -28031965 0 1024 -~~~ -~~~ -~~~ -~~~ -28031988 homeCount = 90 -28031988 waitCount = 36 -28031989 ripCount = 37 -28031989 locktype1 = 1 -28031990 locktype2 = 6 -28031990 locktype3 = 10 -28031991 goalCount = 8 -28031991 goalTotal = 28 -28031992 otherCount = 44 -~~~ -28033822 UP 11 -28033822 1024 1024 -28036822 BEEP1 -28036822 BEEP2 -~~~ -~~~ -~~~ -28036845 1024 33555456 -~~~ -28036995 1024 1024 -28042883 DOWN 11 -28042883 0 1024 -~~~ -~~~ -28042903 0 0 -~~~ -~~~ -28042905 0 1 -~~~ -28042907 UP 11 -28042907 1024 1 -~~~ -~~~ -28042909 1024 3 -~~~ -~~~ -28042910 1024 7 -~~~ -~~~ -28042912 1024 15 -~~~ -28042913 1024 31 -~~~ -~~~ -28042914 1024 63 -~~~ -~~~ -28042916 1024 127 -~~~ -~~~ -28042918 1024 255 -28042919 homeCount = 90 -28042940 waitCount = 36 -28042941 ripCount = 38 -28042941 locktype1 = 1 -28042942 locktype2 = 6 -28042942 locktype3 = 10 -28042943 goalCount = 8 -28042943 goalTotal = 28 -28042944 otherCount = 44 -~~~ -28042945 CURRENTGOAL IS [1] -~~~ -28046203 DOWN 11 -28046203 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28046238 homeCount = 90 -28046239 waitCount = 36 -28046239 ripCount = 38 -28046240 locktype1 = 1 -28046240 locktype2 = 6 -28046241 locktype3 = 10 -28046241 goalCount = 8 -28046242 goalTotal = 28 -28046242 otherCount = 44 -~~~ -28046243 CURRENTGOAL IS [1] -~~~ -28050087 UP 1 -28050087 1 255 -~~~ -~~~ -28050115 outer reward -~~~ -28050116 1 65791 -~~~ -~~~ -28050301 DOWN 1 -28050301 0 65791 -~~~ -~~~ -28050323 0 65790 -~~~ -~~~ -28050325 0 65788 -~~~ -~~~ -28050326 0 65784 -~~~ -~~~ -28050328 0 65776 -~~~ -~~~ -28050330 0 65760 -~~~ -~~~ -28050332 0 65728 -~~~ -~~~ -28050334 0 65664 -~~~ -28050335 1 65664 -~~~ -~~~ -28050337 1 65536 -~~~ -28050338 1 66048 -28050339 homeCount = 90 -28050340 waitCount = 36 -28050361 ripCount = 38 -28050361 locktype1 = 1 -28050362 locktype2 = 6 -28050362 locktype3 = 10 -28050363 goalCount = 9 -28050363 goalTotal = 29 -28050364 otherCount = 44 -~~~ -28050565 1 512 -28059860 DOWN 1 -28059860 0 512 -28064424 UP 10 -28064425 waslock = 0 -28064424 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28064452 512 16777728 -~~~ -28064602 512 512 -28068806 DOWN 10 -28068806 0 512 -~~~ -~~~ -28068826 0 2560 -~~~ -~~~ -28068828 0 2048 -28068829 homeCount = 91 -28068829 waitCount = 36 -28068830 ripCount = 38 -28068830 locktype1 = 1 -28068831 locktype2 = 6 -28068831 locktype3 = 10 -28068832 goalCount = 9 -28068832 goalTotal = 29 -28068833 otherCount = 44 -~~~ -28068854 UP 10 -28068854 waslock = 0 -28068853 512 2048 -28068875 DOWN 10 -28068875 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28068899 homeCount = 91 -28068899 waitCount = 36 -28068900 ripCount = 38 -28068900 locktype1 = 1 -28068901 locktype2 = 6 -28068901 locktype3 = 10 -28068902 goalCount = 9 -28068902 goalTotal = 29 -28068903 otherCount = 44 -~~~ -28071033 UP 12 -28071033 2048 2048 -28071048 DOWN 12 -28071048 0 2048 -28071231 UP 12 -28071231 2048 2048 -28071271 DOWN 12 -28071271 0 2048 -28071314 UP 12 -28071314 2048 2048 -28074234 DOWN 12 -28074234 0 2048 -28074316 UP 12 -28074316 2048 2048 -28078155 DOWN 12 -28078155 0 2048 -28078237 UP 12 -28078237 2048 2048 -28079033 CLICK1 -28079033 CLICK2 -~~~ -~~~ -~~~ -28079058 2048 67110912 -~~~ -28079208 2048 2048 -28086231 DOWN 12 -28086231 0 2048 -~~~ -~~~ -28086256 0 0 -~~~ -~~~ -28086258 0 1 -~~~ -28086259 UP 12 -28086259 2048 1 -~~~ -~~~ -28086261 2048 3 -~~~ -~~~ -28086262 2048 7 -~~~ -28086263 2048 15 -~~~ -~~~ -28086265 2048 31 -~~~ -~~~ -28086267 2048 63 -~~~ -~~~ -28086268 2048 127 -~~~ -~~~ -28086270 2048 255 -28086271 homeCount = 91 -28086292 waitCount = 37 -28086293 ripCount = 38 -28086293 locktype1 = 1 -28086294 locktype2 = 6 -28086294 locktype3 = 10 -28086295 goalCount = 9 -28086295 goalTotal = 29 -28086296 otherCount = 44 -~~~ -28086297 CURRENTGOAL IS [1] -~~~ -28086333 DOWN 12 -28086333 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28086372 homeCount = 91 -28086372 waitCount = 37 -28086373 ripCount = 38 -28086374 locktype1 = 1 -28086374 locktype2 = 6 -28086375 locktype3 = 10 -28086375 goalCount = 9 -28086376 goalTotal = 29 -28086376 otherCount = 44 -~~~ -28086377 CURRENTGOAL IS [1] -~~~ -28089464 UP 1 -28089464 1 255 -~~~ -~~~ -28089492 outer reward -~~~ -28089492 1 65791 -~~~ -~~~ -28089497 outerreps = 4 -~~~ -~~~ -28089754 DOWN 1 -28089754 0 65791 -~~~ -~~~ -28089778 0 65790 -~~~ -~~~ -28089780 0 65788 -~~~ -~~~ -28089782 0 65784 -~~~ -~~~ -28089784 0 65776 -~~~ -28089785 1 65776 -~~~ -~~~ -28089787 1 65760 -~~~ -28089788 1 65728 -~~~ -~~~ -28089789 1 65664 -~~~ -~~~ -28089791 1 65536 -~~~ -~~~ -28089793 1 66048 -28089794 homeCount = 91 -28089794 waitCount = 37 -28089815 ripCount = 38 -28089815 locktype1 = 1 -28089816 locktype2 = 6 -28089816 locktype3 = 10 -28089817 goalCount = 0 -28089817 goalTotal = 30 -28089818 otherCount = 44 -~~~ -28089942 1 512 -28099533 DOWN 1 -28099533 0 512 -28099580 1 512 -28099664 DOWN 1 -28099664 0 512 -28103844 UP 10 -28103844 waslock = 0 -28103844 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28103875 512 16777728 -~~~ -28104025 512 512 -28104040 DOWN 10 -28104040 0 512 -28104053 UP 10 -28104053 waslock = 0 -28104053 512 512 -~~~ -~~~ -28104060 512 1536 -~~~ -~~~ -28104062 512 1024 -28104063 homeCount = 92 -28104063 waitCount = 37 -28104064 ripCount = 38 -28104064 locktype1 = 1 -28104065 locktype2 = 6 -28104065 locktype3 = 10 -28104066 goalCount = 0 -28104066 goalTotal = 30 -28104067 otherCount = 44 -~~~ -~~~ -28104223 DOWN 10 -28104223 0 1024 -28104230 UP 10 -28104231 waslock = 0 -28104230 512 1024 -~~~ -~~~ -~~~ -~~~ -28104246 homeCount = 92 -28104246 waitCount = 37 -28104247 ripCount = 38 -28104247 locktype1 = 1 -28104248 locktype2 = 6 -28104249 locktype3 = 10 -28104249 goalCount = 0 -28104250 goalTotal = 30 -28104250 otherCount = 44 -~~~ -~~~ -28107687 DOWN 10 -28107687 0 1024 -~~~ -~~~ -~~~ -~~~ -28107717 homeCount = 92 -28107718 waitCount = 37 -28107718 ripCount = 38 -28107719 locktype1 = 1 -28107719 locktype2 = 6 -28107720 locktype3 = 10 -28107720 goalCount = 0 -28107721 goalTotal = 30 -28107721 otherCount = 44 -~~~ -28107757 UP 10 -28107757 waslock = 0 -28107757 512 1024 -28107772 DOWN 10 -28107772 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28107791 homeCount = 92 -28107792 waitCount = 37 -28107793 ripCount = 38 -28107793 locktype1 = 1 -28107794 locktype2 = 6 -28107794 locktype3 = 10 -28107795 goalCount = 0 -28107795 goalTotal = 30 -28107796 otherCount = 44 -~~~ -28110492 UP 11 -28110492 1024 1024 -28113993 BEEP1 -28113993 BEEP2 -~~~ -~~~ -~~~ -28114015 1024 33555456 -~~~ -28114165 1024 1024 -28114440 DOWN 11 -28114440 0 1024 -28114465 UP 11 -28114465 1024 1024 -~~~ -~~~ -28114682 1024 0 -~~~ -~~~ -28114684 1024 1 -~~~ -~~~ -28114686 1024 3 -~~~ -~~~ -28114688 1024 7 -~~~ -~~~ -28114689 1024 15 -~~~ -~~~ -28114691 1024 31 -~~~ -~~~ -28114693 1024 63 -~~~ -~~~ -28114695 1024 127 -~~~ -~~~ -28114697 1024 255 -28114698 homeCount = 92 -28114698 waitCount = 37 -28114699 ripCount = 39 -28114720 locktype1 = 1 -28114721 locktype2 = 6 -28114721 locktype3 = 10 -28114722 goalCount = 0 -28114722 goalTotal = 30 -28114723 otherCount = 44 -~~~ -28114724 CURRENTGOAL IS [7] -~~~ -28123147 DOWN 11 -28123147 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28123189 homeCount = 92 -28123189 waitCount = 37 -28123190 ripCount = 39 -28123191 locktype1 = 1 -28123191 locktype2 = 6 -28123192 locktype3 = 10 -28123192 goalCount = 0 -28123193 goalTotal = 30 -28123193 otherCount = 44 -~~~ -28123194 CURRENTGOAL IS [7] -~~~ -28123265 UP 11 -28123265 1024 255 -28123279 DOWN 11 -28123279 0 255 -28123296 UP 11 -28123296 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28123312 homeCount = 92 -28123313 waitCount = 37 -28123313 ripCount = 39 -28123314 locktype1 = 1 -28123315 locktype2 = 6 -28123315 locktype3 = 10 -28123316 goalCount = 0 -28123316 goalTotal = 30 -28123317 otherCount = 44 -~~~ -28123318 CURRENTGOAL IS [7] -~~~ -28125461 DOWN 11 -28125461 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28125501 homeCount = 92 -28125502 waitCount = 37 -28125502 ripCount = 39 -28125503 locktype1 = 1 -28125503 locktype2 = 6 -28125504 locktype3 = 10 -28125504 goalCount = 0 -28125505 goalTotal = 30 -28125505 otherCount = 44 -~~~ -28125506 CURRENTGOAL IS [7] -~~~ -28129280 UP 1 -28129280 1 255 -~~~ -~~~ -28129542 DOWN 1 -28129542 0 255 -~~~ -~~~ -28129565 0 254 -~~~ -~~~ -28129567 0 252 -~~~ -28129569 1 252 -~~~ -~~~ -28129570 1 248 -~~~ -28129571 1 240 -~~~ -~~~ -28129573 1 224 -~~~ -~~~ -28129575 1 192 -~~~ -~~~ -28129576 1 128 -~~~ -~~~ -28129578 1 0 -~~~ -~~~ -28129580 1 512 -28129581 homeCount = 92 -28129582 waitCount = 37 -28129582 ripCount = 39 -28129603 locktype1 = 1 -28129604 locktype2 = 6 -28129604 locktype3 = 10 -28129605 goalCount = 0 -28129605 goalTotal = 30 -28129606 otherCount = 45 -~~~ -28132434 DOWN 1 -28132434 0 512 -28135996 UP 10 -28135996 waslock = 0 -28135996 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28136023 512 16777728 -~~~ -28136173 512 512 -28136193 DOWN 10 -28136193 0 512 -~~~ -~~~ -28136216 0 1536 -~~~ -~~~ -28136218 0 1024 -28136219 homeCount = 93 -28136220 waitCount = 37 -28136220 ripCount = 39 -28136221 locktype1 = 1 -28136221 locktype2 = 6 -28136222 locktype3 = 10 -28136222 goalCount = 0 -28136223 goalTotal = 30 -28136223 otherCount = 45 -~~~ -28136245 UP 10 -28136245 waslock = 0 -28136245 512 1024 -~~~ -28138668 DOWN 10 -28138668 0 1024 -~~~ -~~~ -~~~ -~~~ -28138688 homeCount = 93 -28138688 waitCount = 37 -28138689 ripCount = 39 -28138689 locktype1 = 1 -28138690 locktype2 = 6 -28138690 locktype3 = 10 -28138691 goalCount = 0 -28138691 goalTotal = 30 -28138692 otherCount = 45 -~~~ -28138714 UP 10 -28138714 waslock = 0 -28138714 512 1024 -~~~ -28138749 DOWN 10 -28138748 0 1024 -~~~ -~~~ -~~~ -~~~ -28138770 homeCount = 93 -28138770 waitCount = 37 -28138771 ripCount = 39 -28138771 locktype1 = 1 -28138772 locktype2 = 6 -28138772 locktype3 = 10 -28138773 goalCount = 0 -28138773 goalTotal = 30 -28138774 otherCount = 45 -~~~ -28140396 UP 11 -28140396 1024 1024 -28143396 BEEP1 -28143396 BEEP2 -~~~ -~~~ -~~~ -28143421 1024 33555456 -~~~ -28143571 1024 1024 -28150234 DOWN 11 -28150234 0 1024 -~~~ -~~~ -28150260 0 0 -~~~ -~~~ -28150262 0 1 -~~~ -~~~ -28150264 0 3 -~~~ -~~~ -28150265 0 7 -~~~ -~~~ -28150267 0 15 -~~~ -~~~ -28150269 0 31 -~~~ -~~~ -28150271 0 63 -~~~ -~~~ -28150273 0 127 -~~~ -~~~ -28150275 0 255 -28150276 homeCount = 93 -28150276 waitCount = 37 -28150277 ripCount = 40 -28150277 locktype1 = 1 -28150278 locktype2 = 6 -28150299 locktype3 = 10 -28150299 goalCount = 0 -28150300 goalTotal = 30 -28150300 otherCount = 45 -~~~ -28150301 CURRENTGOAL IS [7] -~~~ -28150330 UP 11 -28150330 1024 255 -28150374 DOWN 11 -28150374 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28150408 homeCount = 93 -28150409 waitCount = 37 -28150410 ripCount = 40 -28150410 locktype1 = 1 -28150411 locktype2 = 6 -28150411 locktype3 = 10 -28150412 goalCount = 0 -28150412 goalTotal = 30 -28150413 otherCount = 45 -~~~ -28150414 CURRENTGOAL IS [7] -~~~ -28150482 UP 11 -28150482 1024 255 -28150504 DOWN 11 -28150504 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28150538 homeCount = 93 -28150539 waitCount = 37 -28150539 ripCount = 40 -28150540 locktype1 = 1 -28150541 locktype2 = 6 -28150541 locktype3 = 10 -28150542 goalCount = 0 -28150542 goalTotal = 30 -28150543 otherCount = 45 -~~~ -28150544 CURRENTGOAL IS [7] -~~~ -28150614 UP 11 -28150614 1024 255 -28152416 DOWN 11 -28152416 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28152462 homeCount = 93 -28152462 waitCount = 37 -28152463 ripCount = 40 -28152463 locktype1 = 1 -28152464 locktype2 = 6 -28152464 locktype3 = 10 -28152465 goalCount = 0 -28152465 goalTotal = 30 -28152466 otherCount = 45 -~~~ -28152467 CURRENTGOAL IS [7] -~~~ -28155346 UP 7 -28155346 64 255 -~~~ -~~~ -28155366 outer reward -~~~ -28155367 64 4194559 -~~~ -~~~ -28155389 DOWN 7 -28155389 0 4194559 -~~~ -~~~ -28155414 0 4194558 -~~~ -~~~ -28155416 0 4194556 -~~~ -~~~ -28155417 0 4194552 -~~~ -~~~ -28155419 0 4194544 -~~~ -~~~ -28155421 0 4194528 -~~~ -~~~ -28155423 0 4194496 -~~~ -~~~ -28155425 0 4194432 -~~~ -~~~ -28155426 0 4194304 -~~~ -~~~ -28155428 0 4194816 -28155429 homeCount = 93 -28155430 waitCount = 37 -28155430 ripCount = 40 -28155451 locktype1 = 1 -28155452 locktype2 = 6 -28155452 locktype3 = 10 -28155453 goalCount = 1 -28155453 goalTotal = 31 -28155454 otherCount = 45 -~~~ -28155455 64 4194816 -28155816 64 512 -28162953 DOWN 7 -28162953 0 512 -28162983 64 512 -28163080 DOWN 7 -28163080 0 512 -28163122 64 512 -28163206 DOWN 7 -28163206 0 512 -28163287 64 512 -28163352 DOWN 7 -28163352 0 512 -28171612 UP 10 -28171613 waslock = 0 -28171612 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28171642 512 16777728 -~~~ -28171792 512 512 -28171878 DOWN 10 -28171878 0 512 -~~~ -~~~ -28171904 0 2560 -~~~ -~~~ -28171906 0 2048 -28171907 homeCount = 94 -28171908 waitCount = 37 -28171908 ripCount = 40 -28171909 locktype1 = 1 -28171909 locktype2 = 6 -28171910 locktype3 = 10 -28171910 goalCount = 1 -28171911 goalTotal = 31 -28171911 otherCount = 45 -~~~ -28173078 UP 10 -28173078 waslock = 0 -28173078 512 2048 -~~~ -28177126 DOWN 10 -28177126 0 2048 -~~~ -~~~ -~~~ -~~~ -28177147 homeCount = 94 -28177147 waitCount = 37 -28177148 ripCount = 40 -28177148 locktype1 = 1 -28177149 locktype2 = 6 -28177149 locktype3 = 10 -28177150 goalCount = 1 -28177150 goalTotal = 31 -28177151 otherCount = 45 -~~~ -28177189 UP 10 -28177189 waslock = 0 -28177189 512 2048 -~~~ -28177225 DOWN 10 -28177225 0 2048 -~~~ -~~~ -~~~ -~~~ -28177251 homeCount = 94 -28177252 waitCount = 37 -28177252 ripCount = 40 -28177253 locktype1 = 1 -28177253 locktype2 = 6 -28177254 locktype3 = 10 -28177254 goalCount = 1 -28177255 goalTotal = 31 -28177255 otherCount = 45 -~~~ -28179849 UP 12 -28179849 2048 2048 -28182849 CLICK1 -28182849 CLICK2 -~~~ -~~~ -~~~ -28182876 2048 67110912 -~~~ -28183026 2048 2048 -28183159 DOWN 12 -28183159 0 2048 -~~~ -~~~ -28183186 0 0 -~~~ -~~~ -28183188 0 1 -~~~ -~~~ -28183190 0 3 -~~~ -~~~ -28183192 0 7 -~~~ -~~~ -28183194 0 15 -~~~ -~~~ -28183195 0 31 -~~~ -~~~ -28183197 0 63 -~~~ -~~~ -28183199 0 127 -~~~ -~~~ -28183201 0 255 -28183202 homeCount = 94 -28183202 waitCount = 38 -28183203 ripCount = 40 -28183204 locktype1 = 1 -28183204 locktype2 = 6 -28183225 locktype3 = 10 -28183225 goalCount = 1 -28183226 goalTotal = 31 -28183226 otherCount = 45 -~~~ -28183228 CURRENTGOAL IS [7] -~~~ -28183266 UP 12 -28183266 2048 255 -28183306 DOWN 12 -28183306 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28183343 UP 12 -28183343 2048 255 -~~~ -28183344 homeCount = 94 -28183345 waitCount = 38 -28183345 ripCount = 40 -28183346 locktype1 = 1 -28183346 locktype2 = 6 -28183347 locktype3 = 10 -28183347 goalCount = 1 -28183348 goalTotal = 31 -28183349 otherCount = 45 -~~~ -28183370 CURRENTGOAL IS [7] -~~~ -28190586 DOWN 12 -28190586 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28190625 homeCount = 94 -28190626 waitCount = 38 -28190626 ripCount = 40 -28190627 locktype1 = 1 -28190627 locktype2 = 6 -28190628 locktype3 = 10 -28190628 goalCount = 1 -28190629 goalTotal = 31 -28190629 otherCount = 45 -~~~ -28190630 CURRENTGOAL IS [7] -~~~ -28196854 UP 8 -28196854 128 255 -~~~ -~~~ -28197377 DOWN 8 -28197377 0 255 -~~~ -~~~ -28197398 0 254 -~~~ -~~~ -28197400 0 252 -~~~ -~~~ -28197402 0 248 -~~~ -~~~ -28197404 0 240 -~~~ -~~~ -28197405 0 224 -~~~ -~~~ -28197407 0 192 -~~~ -~~~ -28197409 0 128 -~~~ -~~~ -28197411 0 0 -~~~ -~~~ -28197413 0 512 -28197414 homeCount = 94 -28197414 waitCount = 38 -28197415 ripCount = 40 -28197415 locktype1 = 1 -28197416 locktype2 = 6 -28197437 locktype3 = 10 -28197437 goalCount = 1 -28197438 goalTotal = 31 -28197438 otherCount = 46 -~~~ -28197589 128 512 -28197873 DOWN 8 -28197873 0 512 -28201996 UP 10 -28201996 waslock = 0 -28201996 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28202028 512 16777728 -~~~ -28202178 512 512 -28202268 DOWN 10 -28202268 0 512 -~~~ -~~~ -28202293 0 2560 -~~~ -~~~ -28202295 0 2048 -28202296 homeCount = 95 -28202297 waitCount = 38 -28202297 ripCount = 40 -28202298 locktype1 = 1 -28202298 locktype2 = 6 -28202299 locktype3 = 10 -28202299 goalCount = 1 -28202300 goalTotal = 31 -28202300 otherCount = 46 -~~~ -28202321 UP 10 -28202321 waslock = 0 -28202321 512 2048 -~~~ -28208913 DOWN 10 -28208913 0 2048 -~~~ -~~~ -~~~ -~~~ -28208936 homeCount = 95 -28208936 waitCount = 38 -28208937 ripCount = 40 -28208937 locktype1 = 1 -28208938 locktype2 = 6 -28208938 locktype3 = 10 -28208939 goalCount = 1 -28208939 goalTotal = 31 -28208940 otherCount = 46 -~~~ -28208955 UP 10 -28208955 waslock = 0 -28208955 512 2048 -~~~ -28209014 DOWN 10 -28209014 0 2048 -~~~ -~~~ -~~~ -~~~ -28209035 homeCount = 95 -28209036 waitCount = 38 -28209036 ripCount = 40 -28209037 locktype1 = 1 -28209037 locktype2 = 6 -28209038 locktype3 = 10 -28209038 goalCount = 1 -28209039 goalTotal = 31 -28209039 otherCount = 46 -~~~ -28210982 UP 12 -28210982 2048 2048 -28215482 CLICK1 -28215482 CLICK2 -~~~ -~~~ -~~~ -28215506 2048 67110912 -~~~ -28215656 2048 2048 -28223085 DOWN 12 -28223084 0 2048 -~~~ -~~~ -28223104 0 0 -~~~ -~~~ -28223106 0 1 -~~~ -~~~ -28223108 0 3 -~~~ -~~~ -28223110 0 7 -~~~ -~~~ -28223111 0 15 -~~~ -~~~ -28223113 0 31 -~~~ -~~~ -28223115 0 63 -~~~ -~~~ -28223117 0 127 -~~~ -~~~ -28223119 0 255 -28223120 homeCount = 95 -28223120 waitCount = 39 -28223121 ripCount = 40 -28223121 locktype1 = 1 -28223122 locktype2 = 6 -28223142 locktype3 = 10 -28223143 goalCount = 1 -28223143 goalTotal = 31 -28223144 otherCount = 46 -~~~ -28223145 CURRENTGOAL IS [7] -~~~ -28223146 UP 12 -28223146 2048 255 -28223185 DOWN 12 -28223185 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28223222 homeCount = 95 -28223222 waitCount = 39 -28223223 ripCount = 40 -28223223 locktype1 = 1 -28223224 locktype2 = 6 -28223224 locktype3 = 10 -28223225 goalCount = 1 -28223225 goalTotal = 31 -28223226 otherCount = 46 -~~~ -28223227 CURRENTGOAL IS [7] -~~~ -28233647 UP 7 -28233647 64 255 -~~~ -~~~ -28233670 outer reward -~~~ -28233670 64 4194559 -~~~ -~~~ -28233821 DOWN 7 -28233821 0 4194559 -~~~ -~~~ -28233837 0 4194558 -~~~ -~~~ -28233839 0 4194556 -~~~ -~~~ -28233841 0 4194552 -~~~ -~~~ -28233843 0 4194544 -~~~ -~~~ -28233845 0 4194528 -~~~ -~~~ -28233847 0 4194496 -~~~ -~~~ -28233848 0 4194432 -~~~ -~~~ -28233850 0 4194304 -~~~ -~~~ -28233852 0 4194816 -28233853 homeCount = 95 -28233854 waitCount = 39 -28233854 ripCount = 40 -28233875 locktype1 = 1 -28233876 locktype2 = 6 -28233876 locktype3 = 10 -28233877 goalCount = 2 -28233877 goalTotal = 32 -28233878 otherCount = 46 -~~~ -28233878 64 4194816 -28234120 64 512 -28243031 DOWN 7 -28243031 0 512 -28243057 64 512 -28243146 DOWN 7 -28243146 0 512 -28248129 UP 10 -28248129 waslock = 0 -28248129 512 512 -~~~ -~~~ -~~~ -~~~ -28248154 DOWN 10 -28248154 0 512 -~~~ -28248156 0 16777728 -~~~ -~~~ -~~~ -28248171 0 16779776 -~~~ -~~~ -28248172 0 16779264 -28248173 homeCount = 96 -28248174 waitCount = 39 -28248174 ripCount = 40 -28248175 locktype1 = 1 -28248175 locktype2 = 6 -28248176 locktype3 = 10 -28248176 goalCount = 2 -28248177 goalTotal = 32 -28248178 otherCount = 46 -~~~ -28248236 UP 10 -28248236 waslock = 0 -28248236 512 16779264 -~~~ -28248306 512 2048 -28248640 DOWN 10 -28248640 0 2048 -28248654 UP 10 -28248654 waslock = 0 -28248654 512 2048 -~~~ -~~~ -~~~ -~~~ -28248674 homeCount = 96 -28248675 waitCount = 39 -28248675 ripCount = 40 -28248676 locktype1 = 1 -28248676 locktype2 = 6 -28248677 locktype3 = 10 -28248677 goalCount = 2 -28248678 goalTotal = 32 -28248678 otherCount = 46 -~~~ -~~~ -28252124 DOWN 10 -28252124 0 2048 -28252140 UP 10 -28252141 waslock = 0 -28252140 512 2048 -~~~ -~~~ -~~~ -~~~ -28252165 homeCount = 96 -28252166 waitCount = 39 -28252166 ripCount = 40 -28252167 locktype1 = 1 -28252167 locktype2 = 6 -28252168 locktype3 = 10 -28252168 goalCount = 2 -28252169 goalTotal = 32 -28252169 otherCount = 46 -~~~ -~~~ -28252230 DOWN 10 -28252230 0 2048 -~~~ -~~~ -~~~ -~~~ -28252253 homeCount = 96 -28252254 waitCount = 39 -28252254 ripCount = 40 -28252255 locktype1 = 1 -28252255 locktype2 = 6 -28252256 locktype3 = 10 -28252256 goalCount = 2 -28252257 goalTotal = 32 -28252257 otherCount = 46 -~~~ -28252286 UP 10 -28252286 waslock = 0 -28252286 512 2048 -~~~ -28252324 DOWN 10 -28252324 0 2048 -~~~ -~~~ -~~~ -~~~ -28252352 homeCount = 96 -28252352 waitCount = 39 -28252353 ripCount = 40 -28252353 locktype1 = 1 -28252354 locktype2 = 6 -28252354 locktype3 = 10 -28252355 goalCount = 2 -28252355 goalTotal = 32 -28252356 otherCount = 46 -~~~ -28254088 UP 12 -28254088 2048 2048 -28259672 DOWN 12 -28259672 0 2048 -28259689 UP 12 -28259689 2048 2048 -28259725 DOWN 12 -28259725 0 2048 -28259759 UP 12 -28259759 2048 2048 -28259931 DOWN 12 -28259930 0 2048 -28259941 UP 12 -28259941 2048 2048 -28260607 DOWN 12 -28260607 0 2048 -28260622 UP 12 -28260621 2048 2048 -28263088 CLICK1 -28263088 CLICK2 -~~~ -~~~ -~~~ -28263111 2048 67110912 -~~~ -28263261 2048 2048 -28269902 DOWN 12 -28269902 0 2048 -28269928 UP 12 -28269928 2048 2048 -~~~ -~~~ -28269931 2048 0 -~~~ -~~~ -28269932 2048 1 -~~~ -~~~ -28269934 2048 3 -~~~ -~~~ -28269936 2048 7 -~~~ -~~~ -28269938 2048 15 -~~~ -~~~ -28269940 2048 31 -~~~ -~~~ -28269942 2048 63 -~~~ -~~~ -28269943 2048 127 -~~~ -~~~ -28269945 2048 255 -28269946 homeCount = 96 -28269947 waitCount = 40 -28269968 ripCount = 40 -28269969 locktype1 = 1 -28269969 locktype2 = 6 -28269970 locktype3 = 10 -28269970 goalCount = 2 -28269971 goalTotal = 32 -28269971 otherCount = 46 -~~~ -28269972 CURRENTGOAL IS [7] -~~~ -28269986 DOWN 12 -28269986 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28270027 homeCount = 96 -28270027 waitCount = 40 -28270028 ripCount = 40 -28270028 locktype1 = 1 -28270029 locktype2 = 6 -28270029 locktype3 = 10 -28270030 goalCount = 2 -28270030 goalTotal = 32 -28270031 otherCount = 46 -~~~ -28270032 CURRENTGOAL IS [7] -~~~ -28276085 UP 7 -28276085 64 255 -~~~ -~~~ -28276113 outer reward -~~~ -28276113 64 4194559 -~~~ -~~~ -28276119 DOWN 7 -28276118 0 4194559 -~~~ -~~~ -28276132 0 4194558 -~~~ -~~~ -28276133 0 4194556 -~~~ -~~~ -28276135 0 4194552 -~~~ -~~~ -28276137 0 4194544 -~~~ -~~~ -28276139 0 4194528 -~~~ -~~~ -28276141 0 4194496 -~~~ -~~~ -28276142 0 4194432 -~~~ -~~~ -28276144 0 4194304 -~~~ -~~~ -28276146 0 4194816 -28276147 homeCount = 96 -28276148 waitCount = 40 -28276148 ripCount = 40 -28276169 locktype1 = 1 -28276170 locktype2 = 6 -28276170 locktype3 = 10 -28276171 goalCount = 3 -28276171 goalTotal = 33 -28276172 otherCount = 46 -~~~ -28276172 64 4194816 -28276185 DOWN 7 -28276185 0 4194816 -28276189 64 4194816 -28276301 DOWN 7 -28276301 0 4194816 -28276362 64 4194816 -28276473 DOWN 7 -28276473 0 4194816 -28276504 64 4194816 -28276563 64 512 -28276768 DOWN 7 -28276768 0 512 -28276782 64 512 -28277032 DOWN 7 -28277032 0 512 -28277039 64 512 -28285770 DOWN 7 -28285770 0 512 -28290802 UP 10 -28290802 waslock = 0 -28290802 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28290828 512 16777728 -~~~ -28290978 512 512 -28291074 DOWN 10 -28291074 0 512 -~~~ -~~~ -28291097 0 2560 -~~~ -~~~ -28291099 0 2048 -28291100 homeCount = 97 -28291101 waitCount = 40 -28291101 ripCount = 40 -28291102 locktype1 = 1 -28291102 locktype2 = 6 -28291103 locktype3 = 10 -28291103 goalCount = 3 -28291104 goalTotal = 33 -28291104 otherCount = 46 -~~~ -28291157 UP 10 -28291157 waslock = 0 -28291157 512 2048 -~~~ -28298203 DOWN 10 -28298203 0 2048 -~~~ -~~~ -28298222 UP 10 -28298222 waslock = 0 -28298222 512 2048 -~~~ -~~~ -28298224 homeCount = 97 -28298225 waitCount = 40 -28298225 ripCount = 40 -28298226 locktype1 = 1 -28298226 locktype2 = 6 -28298227 locktype3 = 10 -28298227 goalCount = 3 -28298228 goalTotal = 33 -28298249 otherCount = 46 -~~~ -~~~ -28298313 DOWN 10 -28298313 0 2048 -~~~ -~~~ -~~~ -~~~ -28298336 homeCount = 97 -28298336 waitCount = 40 -28298337 ripCount = 40 -28298337 locktype1 = 1 -28298338 locktype2 = 6 -28298338 locktype3 = 10 -28298339 goalCount = 3 -28298339 goalTotal = 33 -28298340 otherCount = 46 -~~~ -28298386 UP 10 -28298386 waslock = 0 -28298386 512 2048 -28298408 DOWN 10 -28298408 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28298435 homeCount = 97 -28298436 waitCount = 40 -28298436 ripCount = 40 -28298437 locktype1 = 1 -28298437 locktype2 = 6 -28298438 locktype3 = 10 -28298438 goalCount = 3 -28298439 goalTotal = 33 -28298439 otherCount = 46 -~~~ -28300760 UP 12 -28300760 2048 2048 -28302267 DOWN 12 -28302267 0 2048 -28302282 UP 12 -28302282 2048 2048 -28303163 DOWN 12 -28303163 0 2048 -28303230 UP 12 -28303230 2048 2048 -28303340 DOWN 12 -28303340 0 2048 -28303346 UP 12 -28303346 2048 2048 -28303760 CLICK1 -28303760 CLICK2 -~~~ -~~~ -~~~ -28303783 2048 67110912 -~~~ -28303933 2048 2048 -28304129 DOWN 12 -28304129 0 2048 -28304147 UP 12 -28304147 2048 2048 -~~~ -~~~ -28304150 2048 0 -~~~ -~~~ -28304152 2048 1 -~~~ -~~~ -28304154 2048 3 -~~~ -~~~ -28304156 2048 7 -~~~ -~~~ -28304158 2048 15 -~~~ -~~~ -28304159 2048 31 -~~~ -~~~ -28304161 2048 63 -~~~ -~~~ -28304163 2048 127 -~~~ -~~~ -28304165 2048 255 -28304166 homeCount = 97 -28304167 waitCount = 41 -28304167 ripCount = 40 -28304188 locktype1 = 1 -28304188 locktype2 = 6 -28304189 locktype3 = 10 -28304189 goalCount = 3 -28304190 goalTotal = 33 -28304190 otherCount = 46 -~~~ -28304192 CURRENTGOAL IS [7] -~~~ -28311063 DOWN 12 -28311063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28311100 homeCount = 97 -28311101 waitCount = 41 -28311102 ripCount = 40 -28311102 locktype1 = 1 -28311103 locktype2 = 6 -28311103 locktype3 = 10 -28311104 goalCount = 3 -28311104 goalTotal = 33 -28311105 otherCount = 46 -~~~ -28311106 CURRENTGOAL IS [7] -~~~ -28311127 UP 12 -28311127 2048 255 -28311173 DOWN 12 -28311173 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28311212 homeCount = 97 -28311213 waitCount = 41 -28311213 ripCount = 40 -28311214 locktype1 = 1 -28311214 locktype2 = 6 -28311215 locktype3 = 10 -28311215 goalCount = 3 -28311216 goalTotal = 33 -28311216 otherCount = 46 -~~~ -28311217 CURRENTGOAL IS [7] -~~~ -28311282 UP 12 -28311282 2048 255 -28313151 DOWN 12 -28313151 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28313192 homeCount = 97 -28313193 waitCount = 41 -28313193 ripCount = 40 -28313194 locktype1 = 1 -28313194 locktype2 = 6 -28313195 locktype3 = 10 -28313195 goalCount = 3 -28313196 goalTotal = 33 -28313196 otherCount = 46 -~~~ -28313197 CURRENTGOAL IS [7] -~~~ -28318089 UP 7 -28318089 64 255 -~~~ -~~~ -28318108 outer reward -~~~ -28318108 64 4194559 -~~~ -~~~ -28318332 DOWN 7 -28318332 0 4194559 -~~~ -~~~ -28318355 0 4194558 -~~~ -~~~ -28318357 0 4194556 -~~~ -~~~ -28318359 0 4194552 -~~~ -~~~ -28318361 0 4194544 -~~~ -~~~ -28318362 0 4194528 -~~~ -~~~ -28318364 0 4194496 -~~~ -~~~ -28318366 0 4194432 -~~~ -~~~ -28318368 0 4194304 -~~~ -~~~ -28318370 0 4194816 -28318371 homeCount = 97 -28318371 waitCount = 41 -28318372 ripCount = 40 -28318393 locktype1 = 1 -28318393 locktype2 = 6 -28318394 locktype3 = 10 -28318394 goalCount = 4 -28318395 goalTotal = 34 -28318395 otherCount = 46 -~~~ -28318396 64 4194816 -28318558 64 512 -28318784 DOWN 7 -28318784 0 512 -28318799 64 512 -28326513 DOWN 7 -28326513 0 512 -28326537 64 512 -28326605 DOWN 7 -28326605 0 512 -28331412 UP 10 -28331413 waslock = 0 -28331412 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28331443 512 16777728 -~~~ -28331593 512 512 -28331648 DOWN 10 -28331648 0 512 -~~~ -~~~ -28331669 0 2560 -~~~ -~~~ -28331671 0 2048 -28331672 homeCount = 98 -28331672 waitCount = 41 -28331673 ripCount = 40 -28331673 locktype1 = 1 -28331674 locktype2 = 6 -28331674 locktype3 = 10 -28331675 goalCount = 4 -28331675 goalTotal = 34 -28331676 otherCount = 46 -~~~ -28331697 UP 10 -28331697 waslock = 0 -28331697 512 2048 -~~~ -28334733 DOWN 10 -28334733 0 2048 -~~~ -~~~ -~~~ -~~~ -28334758 homeCount = 98 -28334759 waitCount = 41 -28334759 ripCount = 40 -28334760 locktype1 = 1 -28334760 locktype2 = 6 -28334761 locktype3 = 10 -28334761 goalCount = 4 -28334762 goalTotal = 34 -28334762 otherCount = 46 -~~~ -28334797 UP 10 -28334797 waslock = 0 -28334797 512 2048 -~~~ -28334845 DOWN 10 -28334845 0 2048 -~~~ -~~~ -~~~ -~~~ -28334877 homeCount = 98 -28334877 waitCount = 41 -28334878 ripCount = 40 -28334878 locktype1 = 1 -28334879 locktype2 = 6 -28334879 locktype3 = 10 -28334880 goalCount = 4 -28334880 goalTotal = 34 -28334881 otherCount = 46 -~~~ -28336994 UP 12 -28336994 2048 2048 -28339137 DOWN 12 -28339137 0 2048 -28339153 UP 12 -28339152 2048 2048 -28339517 DOWN 12 -28339517 0 2048 -28339545 UP 12 -28339545 2048 2048 -28340452 DOWN 12 -28340452 0 2048 -28340540 UP 12 -28340540 2048 2048 -28340551 DOWN 12 -28340551 0 2048 -28340555 UP 12 -28340555 2048 2048 -28340569 DOWN 12 -28340569 0 2048 -28340589 UP 12 -28340589 2048 2048 -28340861 DOWN 12 -28340861 0 2048 -28340868 UP 12 -28340868 2048 2048 -28342994 CLICK1 -28342994 CLICK2 -~~~ -~~~ -~~~ -28343019 2048 67110912 -~~~ -28343169 2048 2048 -28347975 DOWN 12 -28347975 0 2048 -28347979 UP 12 -28347979 2048 2048 -~~~ -~~~ -28348001 2048 0 -~~~ -~~~ -28348003 2048 1 -~~~ -~~~ -28348004 2048 3 -~~~ -~~~ -28348006 2048 7 -~~~ -~~~ -28348008 2048 15 -~~~ -~~~ -28348010 2048 31 -~~~ -~~~ -28348012 2048 63 -~~~ -~~~ -28348014 DOWN 12 -28348013 0 127 -~~~ -~~~ -28348015 0 255 -28348016 homeCount = 98 -28348017 waitCount = 42 -28348018 ripCount = 40 -28348039 locktype1 = 1 -28348039 locktype2 = 6 -28348040 locktype3 = 10 -28348040 goalCount = 4 -28348041 goalTotal = 34 -28348041 otherCount = 46 -~~~ -28348042 CURRENTGOAL IS [7] -~~~ -28348046 UP 12 -28348046 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28348075 homeCount = 98 -28348075 waitCount = 42 -28348076 ripCount = 40 -28348076 locktype1 = 1 -28348077 locktype2 = 6 -28348077 locktype3 = 10 -28348078 goalCount = 4 -28348078 goalTotal = 34 -28348079 otherCount = 46 -~~~ -28348080 CURRENTGOAL IS [7] -~~~ -28348143 DOWN 12 -28348143 0 255 -28348159 UP 12 -28348159 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28348186 homeCount = 98 -28348186 waitCount = 42 -28348187 ripCount = 40 -28348187 locktype1 = 1 -28348188 locktype2 = 6 -28348188 locktype3 = 10 -28348189 goalCount = 4 -28348189 goalTotal = 34 -28348190 otherCount = 46 -~~~ -28348191 CURRENTGOAL IS [7] -~~~ -28350762 DOWN 12 -28350762 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28350795 homeCount = 98 -28350796 waitCount = 42 -28350796 ripCount = 40 -28350797 locktype1 = 1 -28350797 locktype2 = 6 -28350798 locktype3 = 10 -28350798 goalCount = 4 -28350799 goalTotal = 34 -28350799 otherCount = 46 -~~~ -28350800 CURRENTGOAL IS [7] -~~~ -28354630 UP 7 -28354630 64 255 -~~~ -~~~ -28354651 outer reward -~~~ -28354651 64 4194559 -~~~ -~~~ -28354678 DOWN 7 -28354678 0 4194559 -~~~ -~~~ -28354698 0 4194558 -~~~ -~~~ -28354700 0 4194556 -~~~ -~~~ -28354702 0 4194552 -~~~ -~~~ -28354704 0 4194544 -~~~ -~~~ -28354706 0 4194528 -~~~ -28354707 64 4194528 -~~~ -~~~ -28354709 64 4194496 -~~~ -~~~ -28354710 64 4194432 -~~~ -28354711 64 4194304 -~~~ -~~~ -28354713 64 4194816 -28354714 homeCount = 98 -28354735 waitCount = 42 -28354736 ripCount = 40 -28354736 locktype1 = 1 -28354737 locktype2 = 6 -28354737 locktype3 = 10 -28354738 goalCount = 5 -28354738 goalTotal = 35 -28354739 otherCount = 46 -~~~ -28354868 DOWN 7 -28354868 0 4194816 -28354919 64 4194816 -28355101 64 512 -28363140 DOWN 7 -28363140 0 512 -28363188 64 512 -28363237 DOWN 7 -28363237 0 512 -28367403 UP 10 -28367403 waslock = 0 -28367403 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28367436 512 16777728 -~~~ -28367557 DOWN 10 -28367557 0 16777728 -~~~ -~~~ -28367580 0 16778752 -~~~ -~~~ -28367581 0 16778240 -28367583 homeCount = 99 -28367583 waitCount = 42 -28367584 ripCount = 40 -28367584 locktype1 = 1 -28367585 locktype2 = 6 -28367585 locktype3 = 10 -28367586 goalCount = 5 -28367586 goalTotal = 35 -28367587 otherCount = 46 -~~~ -28367608 UP 10 -28367608 waslock = 0 -28367608 512 16778240 -28367609 512 1024 -~~~ -28367951 DOWN 10 -28367951 0 1024 -~~~ -~~~ -~~~ -~~~ -28367974 homeCount = 99 -28367975 waitCount = 42 -28367975 ripCount = 40 -28367976 locktype1 = 1 -28367976 locktype2 = 6 -28367977 locktype3 = 10 -28367977 goalCount = 5 -28367978 goalTotal = 35 -28367978 otherCount = 46 -~~~ -28368002 UP 10 -28368003 waslock = 0 -28368002 512 1024 -~~~ -28371913 DOWN 10 -28371913 0 1024 -~~~ -~~~ -~~~ -~~~ -28371933 homeCount = 99 -28371934 waitCount = 42 -28371934 ripCount = 40 -28371935 locktype1 = 1 -28371935 locktype2 = 6 -28371936 locktype3 = 10 -28371936 goalCount = 5 -28371937 goalTotal = 35 -28371937 otherCount = 46 -~~~ -28371983 UP 10 -28371983 waslock = 0 -28371983 512 1024 -~~~ -28372017 DOWN 10 -28372017 0 1024 -~~~ -~~~ -~~~ -~~~ -28372043 homeCount = 99 -28372044 waitCount = 42 -28372044 ripCount = 40 -28372045 locktype1 = 1 -28372045 locktype2 = 6 -28372046 locktype3 = 10 -28372046 goalCount = 5 -28372047 goalTotal = 35 -28372047 otherCount = 46 -~~~ -28374860 UP 11 -28374860 1024 1024 -28375214 DOWN 11 -28375214 0 1024 -28375405 UP 11 -28375405 1024 1024 -28375439 DOWN 11 -28375439 0 1024 -28375489 UP 11 -28375489 1024 1024 -28377737 DOWN 11 -28377737 0 1024 -28377747 UP 11 -28377746 1024 1024 -28378861 BEEP1 -28378861 BEEP2 -~~~ -~~~ -~~~ -28378886 1024 33555456 -~~~ -28379036 1024 1024 -28385014 DOWN 11 -28385013 0 1024 -28385028 UP 11 -28385028 1024 1024 -~~~ -~~~ -28385030 1024 0 -~~~ -~~~ -28385032 1024 1 -~~~ -~~~ -28385034 1024 3 -~~~ -~~~ -28385035 1024 7 -~~~ -~~~ -28385037 1024 15 -~~~ -~~~ -28385039 1024 31 -~~~ -~~~ -28385041 1024 63 -~~~ -~~~ -28385043 1024 127 -~~~ -~~~ -28385045 1024 255 -28385046 homeCount = 99 -28385046 waitCount = 42 -28385067 ripCount = 41 -28385067 locktype1 = 1 -28385068 locktype2 = 6 -28385068 locktype3 = 10 -28385069 goalCount = 5 -28385069 goalTotal = 35 -28385070 otherCount = 46 -~~~ -28385071 CURRENTGOAL IS [7] -~~~ -28388281 DOWN 11 -28388281 0 255 -28388298 UP 11 -28388298 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28388317 homeCount = 99 -28388317 waitCount = 42 -28388318 ripCount = 41 -28388318 locktype1 = 1 -28388319 locktype2 = 6 -28388319 locktype3 = 10 -28388320 goalCount = 5 -28388320 goalTotal = 35 -28388321 otherCount = 46 -~~~ -28388322 CURRENTGOAL IS [7] -~~~ -28388394 DOWN 11 -28388394 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28388438 homeCount = 99 -28388438 waitCount = 42 -28388439 ripCount = 41 -28388439 locktype1 = 1 -28388440 locktype2 = 6 -28388440 locktype3 = 10 -28388441 goalCount = 5 -28388441 goalTotal = 35 -28388442 otherCount = 46 -~~~ -28388443 CURRENTGOAL IS [7] -~~~ -28391127 UP 7 -28391127 64 255 -~~~ -28391152 DOWN 7 -28391152 0 255 -~~~ -28391154 outer reward -~~~ -28391154 0 4194559 -~~~ -~~~ -~~~ -~~~ -28391173 0 4194558 -~~~ -28391175 64 4194558 -~~~ -~~~ -28391176 64 4194556 -~~~ -~~~ -28391178 64 4194552 -~~~ -28391179 64 4194544 -~~~ -~~~ -28391181 64 4194528 -~~~ -~~~ -28391182 64 4194496 -~~~ -~~~ -28391184 64 4194432 -~~~ -~~~ -28391186 64 4194304 -~~~ -~~~ -28391188 64 4194816 -28391210 homeCount = 99 -28391210 waitCount = 42 -28391211 ripCount = 41 -28391211 locktype1 = 1 -28391212 locktype2 = 6 -28391212 locktype3 = 10 -28391213 goalCount = 6 -28391213 goalTotal = 36 -28391214 otherCount = 46 -~~~ -28391352 DOWN 7 -28391352 0 4194816 -28391410 64 4194816 -28391604 64 512 -28401070 DOWN 7 -28401070 0 512 -28405631 UP 10 -28405631 waslock = 0 -28405631 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28405662 512 16777728 -~~~ -28405812 512 512 -28405858 DOWN 10 -28405858 0 512 -28405879 UP 10 -28405880 waslock = 0 -28405879 512 512 -~~~ -~~~ -28405884 512 1536 -~~~ -~~~ -28405886 512 1024 -28405887 homeCount = 100 -28405887 waitCount = 42 -28405888 ripCount = 41 -28405888 locktype1 = 1 -28405889 locktype2 = 6 -28405889 locktype3 = 10 -28405890 goalCount = 6 -28405890 goalTotal = 36 -28405891 otherCount = 46 -~~~ -~~~ -28411150 DOWN 10 -28411150 0 1024 -~~~ -~~~ -~~~ -~~~ -28411176 homeCount = 100 -28411177 waitCount = 42 -28411177 ripCount = 41 -28411178 locktype1 = 1 -28411178 locktype2 = 6 -28411179 locktype3 = 10 -28411179 goalCount = 6 -28411180 goalTotal = 36 -28411180 otherCount = 46 -~~~ -28411204 UP 10 -28411205 waslock = 0 -28411204 512 1024 -~~~ -28411240 DOWN 10 -28411240 0 1024 -~~~ -~~~ -~~~ -~~~ -28411267 homeCount = 100 -28411268 waitCount = 42 -28411268 ripCount = 41 -28411269 locktype1 = 1 -28411269 locktype2 = 6 -28411270 locktype3 = 10 -28411270 goalCount = 6 -28411271 goalTotal = 36 -28411271 otherCount = 46 -~~~ -28413812 UP 11 -28413812 1024 1024 -28415393 DOWN 11 -28415393 0 1024 -28415594 LOCKOUT 3 -~~~ -28415615 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -28415619 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28416951 UP 11 -28416951 1024 0 -28434365 DOWN 11 -28434365 0 0 -28440615 LOCKEND -~~~ -~~~ -~~~ -28440635 0 512 -28442032 UP 7 -28442032 64 512 -28442581 DOWN 7 -28442581 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28442619 homeCount = 100 -28442620 waitCount = 42 -28442620 ripCount = 41 -28442621 locktype1 = 1 -28442621 locktype2 = 6 -28442622 locktype3 = 11 -28442622 goalCount = 6 -28442623 goalTotal = 36 -28442623 otherCount = 46 -~~~ -28447649 UP 10 -28447649 waslock = 0 -28447649 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28447681 512 16777728 -~~~ -28447831 512 512 -28451216 DOWN 10 -28451216 0 512 -~~~ -~~~ -28451236 0 2560 -~~~ -~~~ -28451238 0 2048 -28451239 homeCount = 101 -28451239 waitCount = 42 -28451240 ripCount = 41 -28451240 locktype1 = 1 -28451241 locktype2 = 6 -28451241 locktype3 = 11 -28451242 goalCount = 6 -28451242 goalTotal = 36 -28451243 otherCount = 46 -~~~ -28451279 UP 10 -28451279 waslock = 0 -28451279 512 2048 -~~~ -28451321 DOWN 10 -28451321 0 2048 -~~~ -~~~ -~~~ -~~~ -28451352 homeCount = 101 -28451352 waitCount = 42 -28451353 ripCount = 41 -28451353 locktype1 = 1 -28451354 locktype2 = 6 -28451354 locktype3 = 11 -28451355 goalCount = 6 -28451355 goalTotal = 36 -28451356 otherCount = 46 -~~~ -28454622 UP 12 -28454622 2048 2048 -28455640 DOWN 12 -28455640 0 2048 -28455828 UP 12 -28455828 2048 2048 -28457622 CLICK1 -28457622 CLICK2 -~~~ -~~~ -~~~ -28457646 2048 67110912 -~~~ -28457700 DOWN 12 -28457700 0 67110912 -28457745 UP 12 -28457745 2048 67110912 -28457796 2048 2048 -~~~ -~~~ -28457831 2048 0 -~~~ -~~~ -28457833 2048 1 -~~~ -~~~ -28457835 2048 3 -~~~ -~~~ -28457837 2048 7 -~~~ -~~~ -28457839 2048 15 -~~~ -~~~ -28457841 2048 31 -~~~ -~~~ -28457842 2048 63 -~~~ -~~~ -28457844 2048 127 -~~~ -~~~ -28457846 2048 255 -28457847 homeCount = 101 -28457848 waitCount = 43 -28457848 ripCount = 41 -28457869 locktype1 = 1 -28457869 locktype2 = 6 -28457870 locktype3 = 11 -28457870 goalCount = 6 -28457871 goalTotal = 36 -28457871 otherCount = 46 -~~~ -28457872 CURRENTGOAL IS [7] -~~~ -28457923 DOWN 12 -28457923 0 255 -28457931 UP 12 -28457931 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28457961 homeCount = 101 -28457962 waitCount = 43 -28457962 ripCount = 41 -28457963 locktype1 = 1 -28457963 locktype2 = 6 -28457964 locktype3 = 11 -28457964 goalCount = 6 -28457965 goalTotal = 36 -28457965 otherCount = 46 -~~~ -28457966 CURRENTGOAL IS [7] -~~~ -28458047 DOWN 12 -28458046 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28458081 homeCount = 101 -28458081 waitCount = 43 -28458082 ripCount = 41 -28458082 locktype1 = 1 -28458083 locktype2 = 6 -28458083 locktype3 = 11 -28458084 goalCount = 6 -28458084 goalTotal = 36 -28458085 otherCount = 46 -~~~ -28458086 CURRENTGOAL IS [7] -~~~ -28458107 UP 12 -28458107 2048 255 -28458209 DOWN 12 -28458209 0 255 -28458222 UP 12 -28458222 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28458251 homeCount = 101 -28458252 waitCount = 43 -28458252 ripCount = 41 -28458253 locktype1 = 1 -28458253 locktype2 = 6 -28458254 locktype3 = 11 -28458254 goalCount = 6 -28458255 goalTotal = 36 -28458255 otherCount = 46 -~~~ -28458257 CURRENTGOAL IS [7] -~~~ -28464145 DOWN 12 -28464145 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464183 homeCount = 101 -28464183 waitCount = 43 -28464184 ripCount = 41 -28464184 locktype1 = 1 -28464185 locktype2 = 6 -28464185 locktype3 = 11 -28464186 goalCount = 6 -28464186 goalTotal = 36 -28464187 otherCount = 46 -~~~ -28464188 CURRENTGOAL IS [7] -~~~ -28464211 UP 12 -28464211 2048 255 -28464279 DOWN 12 -28464279 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464314 homeCount = 101 -28464314 waitCount = 43 -28464315 ripCount = 41 -28464315 locktype1 = 1 -28464316 locktype2 = 6 -28464316 locktype3 = 11 -28464317 goalCount = 6 -28464317 goalTotal = 36 -28464318 otherCount = 46 -~~~ -28464319 CURRENTGOAL IS [7] -~~~ -28464343 UP 12 -28464343 2048 255 -28464552 DOWN 12 -28464552 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464592 homeCount = 101 -28464593 waitCount = 43 -28464594 ripCount = 41 -28464594 locktype1 = 1 -28464595 locktype2 = 6 -28464595 locktype3 = 11 -28464596 goalCount = 6 -28464596 goalTotal = 36 -28464597 otherCount = 46 -~~~ -28464598 CURRENTGOAL IS [7] -~~~ -28464678 UP 12 -28464678 2048 255 -28464954 DOWN 12 -28464954 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464994 homeCount = 101 -28464994 waitCount = 43 -28464995 ripCount = 41 -28464995 locktype1 = 1 -28464996 locktype2 = 6 -28464997 locktype3 = 11 -28464997 goalCount = 6 -28464998 goalTotal = 36 -28464998 otherCount = 46 -~~~ -28464999 CURRENTGOAL IS [7] -~~~ -28465040 UP 12 -28465040 2048 255 -28466476 DOWN 12 -28466476 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28466513 homeCount = 101 -28466514 waitCount = 43 -28466514 ripCount = 41 -28466515 locktype1 = 1 -28466515 locktype2 = 6 -28466516 locktype3 = 11 -28466516 goalCount = 6 -28466517 goalTotal = 36 -28466517 otherCount = 46 -~~~ -28466518 CURRENTGOAL IS [7] -~~~ -28466540 UP 12 -28466540 2048 255 -28466558 DOWN 12 -28466558 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28466594 homeCount = 101 -28466594 waitCount = 43 -28466595 ripCount = 41 -28466596 locktype1 = 1 -28466596 locktype2 = 6 -28466597 locktype3 = 11 -28466597 goalCount = 6 -28466598 goalTotal = 36 -28466598 otherCount = 46 -~~~ -28466599 CURRENTGOAL IS [7] -~~~ -28473374 UP 3 -28473374 4 255 -~~~ -~~~ -28474863 DOWN 3 -28474863 0 255 -~~~ -~~~ -28474888 0 254 -~~~ -~~~ -28474890 0 252 -~~~ -~~~ -28474892 0 248 -~~~ -~~~ -28474894 0 240 -~~~ -~~~ -28474896 0 224 -~~~ -~~~ -28474897 0 192 -~~~ -~~~ -28474899 0 128 -~~~ -~~~ -28474901 0 0 -~~~ -~~~ -28474903 0 512 -28474904 homeCount = 101 -28474904 waitCount = 43 -28474905 ripCount = 41 -28474905 locktype1 = 1 -28474906 locktype2 = 6 -28474927 locktype3 = 11 -28474928 goalCount = 6 -28474928 goalTotal = 36 -28474929 otherCount = 47 -~~~ -28474947 4 512 -28474978 DOWN 3 -28474978 0 512 -28479683 UP 10 -28479683 waslock = 0 -28479683 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28479707 512 16777728 -~~~ -28479857 512 512 -28479857 DOWN 10 -28479857 0 512 -~~~ -~~~ -28479883 0 2560 -~~~ -~~~ -28479885 0 2048 -28479886 homeCount = 102 -28479886 waitCount = 43 -28479887 ripCount = 41 -28479887 locktype1 = 1 -28479888 locktype2 = 6 -28479888 locktype3 = 11 -28479889 goalCount = 6 -28479889 goalTotal = 36 -28479890 otherCount = 47 -~~~ -28479911 UP 10 -28479911 waslock = 0 -28479911 512 2048 -~~~ -28485096 DOWN 10 -28485096 0 2048 -~~~ -~~~ -~~~ -~~~ -28485121 UP 10 -28485121 waslock = 0 -28485121 512 2048 -28485123 homeCount = 102 -28485123 waitCount = 43 -28485124 ripCount = 41 -28485124 locktype1 = 1 -28485125 locktype2 = 6 -28485125 locktype3 = 11 -28485126 goalCount = 6 -28485126 goalTotal = 36 -28485127 otherCount = 47 -~~~ -~~~ -28485197 DOWN 10 -28485197 0 2048 -~~~ -~~~ -~~~ -~~~ -28485222 homeCount = 102 -28485222 waitCount = 43 -28485223 ripCount = 41 -28485223 locktype1 = 1 -28485224 locktype2 = 6 -28485224 locktype3 = 11 -28485225 goalCount = 6 -28485225 goalTotal = 36 -28485226 otherCount = 47 -~~~ -28487348 UP 12 -28487348 2048 2048 -28489141 DOWN 12 -28489141 0 2048 -28489173 UP 12 -28489173 2048 2048 -28489765 DOWN 12 -28489765 0 2048 -28489810 UP 12 -28489810 2048 2048 -28490348 CLICK1 -28490348 CLICK2 -~~~ -~~~ -~~~ -28490373 2048 67110912 -~~~ -28490523 2048 2048 -28490662 DOWN 12 -28490662 0 2048 -28490664 UP 12 -28490664 2048 2048 -~~~ -~~~ -28490680 2048 0 -~~~ -~~~ -28490682 2048 1 -~~~ -~~~ -28490684 2048 3 -~~~ -~~~ -28490686 2048 7 -~~~ -~~~ -28490688 2048 15 -~~~ -~~~ -28490689 2048 31 -~~~ -~~~ -28490691 2048 63 -~~~ -~~~ -28490693 2048 127 -~~~ -~~~ -28490695 2048 255 -28490696 homeCount = 102 -28490696 waitCount = 44 -28490697 ripCount = 41 -28490718 locktype1 = 1 -28490719 locktype2 = 6 -28490719 locktype3 = 11 -28490720 goalCount = 6 -28490720 goalTotal = 36 -28490721 otherCount = 47 -~~~ -28490722 CURRENTGOAL IS [7] -~~~ -28490802 DOWN 12 -28490802 0 255 -28490812 UP 12 -28490812 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28490850 homeCount = 102 -28490850 waitCount = 44 -28490851 ripCount = 41 -28490851 locktype1 = 1 -28490852 locktype2 = 6 -28490853 locktype3 = 11 -28490853 goalCount = 6 -28490854 goalTotal = 36 -28490854 otherCount = 47 -~~~ -28490855 CURRENTGOAL IS [7] -~~~ -28499180 DOWN 12 -28499180 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28499217 homeCount = 102 -28499218 waitCount = 44 -28499218 ripCount = 41 -28499219 locktype1 = 1 -28499220 locktype2 = 6 -28499220 locktype3 = 11 -28499221 goalCount = 6 -28499221 goalTotal = 36 -28499222 otherCount = 47 -~~~ -28499223 CURRENTGOAL IS [7] -~~~ -28502930 UP 4 -28502930 8 255 -~~~ -~~~ -28504240 DOWN 4 -28504240 0 255 -~~~ -~~~ -28504264 0 254 -~~~ -~~~ -28504266 0 252 -~~~ -~~~ -28504268 0 248 -~~~ -~~~ -28504269 0 240 -~~~ -~~~ -28504271 0 224 -~~~ -~~~ -28504273 0 192 -~~~ -~~~ -28504275 0 128 -~~~ -~~~ -28504277 0 0 -~~~ -~~~ -28504279 0 512 -28504280 homeCount = 102 -28504280 waitCount = 44 -28504281 ripCount = 41 -28504281 locktype1 = 1 -28504282 locktype2 = 6 -28504303 locktype3 = 11 -28504303 goalCount = 6 -28504304 goalTotal = 36 -28504304 otherCount = 48 -~~~ -28510764 UP 10 -28510764 waslock = 0 -28510764 512 512 -~~~ -~~~ -28510787 DOWN 10 -28510786 0 512 -~~~ -~~~ -~~~ -28510790 0 16777728 -~~~ -28510807 UP 10 -28510807 waslock = 0 -28510807 512 16777728 -~~~ -~~~ -~~~ -28510810 512 16778752 -~~~ -28510811 512 16778240 -28510812 homeCount = 103 -28510812 waitCount = 44 -28510813 ripCount = 41 -28510813 locktype1 = 1 -28510814 locktype2 = 6 -28510814 locktype3 = 11 -28510836 goalCount = 6 -28510836 goalTotal = 36 -28510837 otherCount = 48 -~~~ -~~~ -28510940 512 1024 -28511036 DOWN 10 -28511036 0 1024 -~~~ -~~~ -~~~ -~~~ -28511057 homeCount = 103 -28511058 waitCount = 44 -28511058 ripCount = 41 -28511059 locktype1 = 1 -28511059 locktype2 = 6 -28511060 locktype3 = 11 -28511060 goalCount = 6 -28511061 goalTotal = 36 -28511061 otherCount = 48 -~~~ -28511079 UP 10 -28511079 waslock = 0 -28511079 512 1024 -~~~ -28516182 DOWN 10 -28516182 0 1024 -~~~ -~~~ -~~~ -~~~ -28516207 homeCount = 103 -28516207 waitCount = 44 -28516208 ripCount = 41 -28516208 locktype1 = 1 -28516209 locktype2 = 6 -28516209 locktype3 = 11 -28516210 goalCount = 6 -28516210 goalTotal = 36 -28516211 otherCount = 48 -~~~ -28516242 UP 10 -28516242 waslock = 0 -28516242 512 1024 -28516260 DOWN 10 -28516260 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28516286 homeCount = 103 -28516287 waitCount = 44 -28516287 ripCount = 41 -28516288 locktype1 = 1 -28516288 locktype2 = 6 -28516289 locktype3 = 11 -28516289 goalCount = 6 -28516290 goalTotal = 36 -28516290 otherCount = 48 -~~~ -28518090 UP 11 -28518090 1024 1024 -28522590 BEEP1 -28522590 BEEP2 -~~~ -~~~ -~~~ -28522616 1024 33555456 -~~~ -28522635 DOWN 11 -28522635 0 33555456 -28522652 UP 11 -28522652 1024 33555456 -28522766 1024 1024 -28522899 DOWN 11 -28522899 0 1024 -28522967 UP 11 -28522967 1024 1024 -28523180 DOWN 11 -28523180 0 1024 -28523192 UP 11 -28523192 1024 1024 -~~~ -~~~ -28523290 1024 0 -~~~ -~~~ -28523292 1024 1 -~~~ -~~~ -28523293 1024 3 -~~~ -~~~ -28523295 1024 7 -~~~ -~~~ -28523297 1024 15 -~~~ -~~~ -28523299 1024 31 -~~~ -~~~ -28523301 1024 63 -~~~ -~~~ -28523302 1024 127 -~~~ -~~~ -28523304 1024 255 -28523305 homeCount = 103 -28523306 waitCount = 44 -28523306 ripCount = 42 -28523327 locktype1 = 1 -28523328 locktype2 = 6 -28523329 locktype3 = 11 -28523329 goalCount = 6 -28523330 goalTotal = 36 -28523330 otherCount = 48 -~~~ -28523331 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28523359 homeCount = 103 -28523360 waitCount = 44 -28523360 ripCount = 42 -28523361 locktype1 = 1 -28523361 locktype2 = 6 -28523362 locktype3 = 11 -28523362 goalCount = 6 -28523363 goalTotal = 36 -28523363 otherCount = 48 -~~~ -28523385 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28523392 homeCount = 103 -28523392 waitCount = 44 -28523393 ripCount = 42 -28523393 locktype1 = 1 -28523394 locktype2 = 6 -28523394 locktype3 = 11 -28523415 goalCount = 6 -28523416 goalTotal = 36 -28523416 otherCount = 48 -~~~ -28523417 CURRENTGOAL IS [7] -~~~ -28529119 DOWN 11 -28529119 0 255 -~~~ -~~~ -28529139 UP 11 -28529139 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529154 homeCount = 103 -28529155 waitCount = 44 -28529155 ripCount = 42 -28529156 locktype1 = 1 -28529157 locktype2 = 6 -28529157 locktype3 = 11 -28529158 goalCount = 6 -28529158 goalTotal = 36 -28529159 otherCount = 48 -~~~ -28529160 CURRENTGOAL IS [7] -~~~ -28529243 DOWN 11 -28529243 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529278 UP 11 -28529278 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529285 homeCount = 103 -28529286 waitCount = 44 -28529286 ripCount = 42 -28529287 locktype1 = 1 -28529287 locktype2 = 6 -28529288 locktype3 = 11 -28529288 goalCount = 6 -28529289 goalTotal = 36 -28529289 otherCount = 48 -~~~ -28529291 CURRENTGOAL IS [7] -~~~ -28529377 DOWN 11 -28529377 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529405 UP 11 -28529405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529413 homeCount = 103 -28529413 waitCount = 44 -28529414 ripCount = 42 -28529415 locktype1 = 1 -28529415 locktype2 = 6 -28529416 locktype3 = 11 -28529416 goalCount = 6 -28529417 goalTotal = 36 -28529417 otherCount = 48 -~~~ -28529418 CURRENTGOAL IS [7] -~~~ -28531283 DOWN 11 -28531283 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28531322 homeCount = 103 -28531323 waitCount = 44 -28531323 ripCount = 42 -28531324 locktype1 = 1 -28531324 locktype2 = 6 -28531325 locktype3 = 11 -28531325 goalCount = 6 -28531326 goalTotal = 36 -28531326 otherCount = 48 -~~~ -28531327 CURRENTGOAL IS [7] -~~~ -28535334 UP 7 -28535334 64 255 -~~~ -~~~ -28535359 outer reward -~~~ -28535359 64 4194559 -~~~ -~~~ -28535740 DOWN 7 -28535740 0 4194559 -~~~ -~~~ -28535756 0 4194558 -~~~ -~~~ -28535758 0 4194556 -~~~ -~~~ -28535760 0 4194552 -~~~ -~~~ -28535762 0 4194544 -~~~ -~~~ -28535764 0 4194528 -~~~ -~~~ -28535765 0 4194496 -~~~ -~~~ -28535767 0 4194432 -~~~ -~~~ -28535769 0 4194304 -~~~ -28535770 64 4194304 -~~~ -28535772 64 4194816 -28535773 homeCount = 103 -28535793 waitCount = 44 -28535794 ripCount = 42 -28535794 locktype1 = 1 -28535795 locktype2 = 6 -28535795 locktype3 = 11 -28535796 goalCount = 7 -28535796 goalTotal = 37 -28535797 otherCount = 48 -~~~ -28535809 64 512 -28543837 DOWN 7 -28543837 0 512 -28548438 UP 10 -28548438 waslock = 0 -28548438 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28548463 512 16777728 -~~~ -28548613 512 512 -28548656 DOWN 10 -28548656 0 512 -28548677 UP 10 -28548678 waslock = 0 -28548677 512 512 -~~~ -~~~ -~~~ -28548680 512 1536 -~~~ -28548682 homeCount = 104 -28548682 waitCount = 44 -28548683 ripCount = 42 -28548683 locktype1 = 1 -28548684 locktype2 = 6 -28548684 locktype3 = 11 -28548685 goalCount = 7 -28548705 goalTotal = 37 -28548706 otherCount = 48 -~~~ -~~~ -28548707 512 1024 -28553037 DOWN 10 -28553037 0 1024 -~~~ -~~~ -~~~ -~~~ -28553060 homeCount = 104 -28553061 waitCount = 44 -28553061 ripCount = 42 -28553062 locktype1 = 1 -28553063 locktype2 = 6 -28553063 locktype3 = 11 -28553064 goalCount = 7 -28553064 goalTotal = 37 -28553065 otherCount = 48 -~~~ -28555797 UP 11 -28555797 1024 1024 -28558797 BEEP1 -28558797 BEEP2 -~~~ -~~~ -~~~ -28558819 1024 33555456 -~~~ -28558969 1024 1024 -28566484 DOWN 11 -28566484 0 1024 -28566489 UP 11 -28566489 1024 1024 -~~~ -~~~ -28566507 1024 0 -~~~ -~~~ -28566509 1024 1 -~~~ -~~~ -28566511 1024 3 -~~~ -~~~ -28566513 1024 7 -~~~ -~~~ -28566515 1024 15 -~~~ -~~~ -28566516 1024 31 -~~~ -~~~ -28566518 1024 63 -~~~ -~~~ -28566520 1024 127 -~~~ -~~~ -28566522 1024 255 -28566523 homeCount = 104 -28566524 waitCount = 44 -28566524 ripCount = 43 -28566525 locktype1 = 1 -28566546 locktype2 = 6 -28566546 locktype3 = 11 -28566547 goalCount = 7 -28566547 goalTotal = 37 -28566548 otherCount = 48 -~~~ -28566549 CURRENTGOAL IS [7] -~~~ -28568685 DOWN 11 -28568685 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28568725 homeCount = 104 -28568726 waitCount = 44 -28568726 ripCount = 43 -28568727 locktype1 = 1 -28568728 locktype2 = 6 -28568728 locktype3 = 11 -28568729 goalCount = 7 -28568729 goalTotal = 37 -28568730 otherCount = 48 -~~~ -28568731 CURRENTGOAL IS [7] -~~~ -28571533 UP 7 -28571533 64 255 -28571553 DOWN 7 -28571553 0 255 -~~~ -~~~ -28571574 outer reward -~~~ -28571574 0 4194559 -~~~ -~~~ -~~~ -~~~ -28571578 0 4194558 -~~~ -~~~ -28571580 0 4194556 -~~~ -~~~ -28571582 0 4194552 -~~~ -~~~ -28571584 0 4194544 -~~~ -~~~ -28571585 0 4194528 -~~~ -~~~ -28571587 0 4194496 -~~~ -~~~ -28571589 0 4194432 -~~~ -~~~ -28571591 0 4194304 -~~~ -~~~ -28571593 0 4194816 -28571594 homeCount = 104 -28571615 waitCount = 44 -28571615 ripCount = 43 -28571616 locktype1 = 1 -28571616 locktype2 = 6 -28571617 locktype3 = 11 -28571617 goalCount = 8 -28571618 goalTotal = 38 -28571618 otherCount = 48 -~~~ -28571624 64 4194816 -28571719 DOWN 7 -28571719 0 4194816 -28571813 64 4194816 -28572024 64 512 -28581184 DOWN 7 -28581184 0 512 -28585695 UP 10 -28585696 waslock = 0 -28585695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28585719 512 16777728 -~~~ -28585869 512 512 -28585923 DOWN 10 -28585923 0 512 -~~~ -~~~ -28585947 0 2560 -~~~ -~~~ -28585948 0 2048 -28585949 homeCount = 105 -28585950 waitCount = 44 -28585950 ripCount = 43 -28585951 locktype1 = 1 -28585951 locktype2 = 6 -28585952 locktype3 = 11 -28585952 goalCount = 8 -28585953 goalTotal = 38 -28585954 otherCount = 48 -~~~ -28585975 UP 10 -28585975 waslock = 0 -28585975 512 2048 -~~~ -28589699 DOWN 10 -28589699 0 2048 -~~~ -~~~ -~~~ -~~~ -28589726 homeCount = 105 -28589726 waitCount = 44 -28589727 ripCount = 43 -28589727 locktype1 = 1 -28589728 locktype2 = 6 -28589728 locktype3 = 11 -28589729 goalCount = 8 -28589729 goalTotal = 38 -28589730 otherCount = 48 -~~~ -28589736 UP 10 -28589737 waslock = 0 -28589736 512 2048 -~~~ -28589793 DOWN 10 -28589793 0 2048 -~~~ -~~~ -~~~ -~~~ -28589817 homeCount = 105 -28589818 waitCount = 44 -28589818 ripCount = 43 -28589819 locktype1 = 1 -28589819 locktype2 = 6 -28589820 locktype3 = 11 -28589820 goalCount = 8 -28589821 goalTotal = 38 -28589821 otherCount = 48 -~~~ -28591883 UP 12 -28591883 2048 2048 -28594999 DOWN 12 -28594999 0 2048 -28595008 UP 12 -28595008 2048 2048 -28596384 CLICK1 -28596384 CLICK2 -~~~ -~~~ -~~~ -28596405 2048 67110912 -~~~ -28596555 2048 2048 -28602879 DOWN 12 -28602879 0 2048 -~~~ -~~~ -28602904 0 0 -~~~ -~~~ -28602906 0 1 -~~~ -~~~ -28602908 0 3 -~~~ -~~~ -28602910 0 7 -~~~ -~~~ -28602912 0 15 -~~~ -~~~ -28602913 0 31 -~~~ -~~~ -28602915 0 63 -~~~ -~~~ -28602917 0 127 -~~~ -~~~ -28602919 0 255 -28602920 homeCount = 105 -28602920 waitCount = 45 -28602921 ripCount = 43 -28602921 locktype1 = 1 -28602922 locktype2 = 6 -28602943 locktype3 = 11 -28602944 goalCount = 8 -28602944 goalTotal = 38 -28602945 otherCount = 48 -~~~ -28602946 CURRENTGOAL IS [7] -~~~ -28602948 UP 12 -28602948 2048 255 -28602980 DOWN 12 -28602980 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603008 UP 12 -28603008 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603014 homeCount = 105 -28603015 waitCount = 45 -28603015 ripCount = 43 -28603016 locktype1 = 1 -28603016 locktype2 = 6 -28603017 locktype3 = 11 -28603017 goalCount = 8 -28603018 goalTotal = 38 -28603018 otherCount = 48 -~~~ -28603020 CURRENTGOAL IS [7] -~~~ -28603548 DOWN 12 -28603548 0 255 -28603564 UP 12 -28603564 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603599 homeCount = 105 -28603599 waitCount = 45 -28603600 ripCount = 43 -28603601 locktype1 = 1 -28603601 locktype2 = 6 -28603602 locktype3 = 11 -28603602 goalCount = 8 -28603603 goalTotal = 38 -28603603 otherCount = 48 -~~~ -28603604 CURRENTGOAL IS [7] -~~~ -28605256 DOWN 12 -28605256 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28605289 homeCount = 105 -28605290 waitCount = 45 -28605290 ripCount = 43 -28605291 locktype1 = 1 -28605291 locktype2 = 6 -28605292 locktype3 = 11 -28605292 goalCount = 8 -28605293 goalTotal = 38 -28605293 otherCount = 48 -~~~ -28605295 CURRENTGOAL IS [7] -~~~ -28605316 UP 12 -28605316 2048 255 -28605340 DOWN 12 -28605340 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28605382 homeCount = 105 -28605382 waitCount = 45 -28605383 ripCount = 43 -28605383 locktype1 = 1 -28605384 locktype2 = 6 -28605384 locktype3 = 11 -28605385 goalCount = 8 -28605385 goalTotal = 38 -28605386 otherCount = 48 -~~~ -28605387 CURRENTGOAL IS [7] -~~~ -28610041 UP 7 -28610041 64 255 -~~~ -~~~ -28610066 outer reward -~~~ -28610066 64 4194559 -~~~ -~~~ -28610080 DOWN 7 -28610080 0 4194559 -~~~ -~~~ -28610104 0 4194558 -~~~ -~~~ -28610106 0 4194556 -~~~ -~~~ -28610108 0 4194552 -~~~ -~~~ -28610110 0 4194544 -~~~ -~~~ -28610112 0 4194528 -~~~ -~~~ -28610113 0 4194496 -~~~ -~~~ -28610115 0 4194432 -~~~ -~~~ -28610117 0 4194304 -~~~ -~~~ -28610119 0 4194816 -28610120 homeCount = 105 -28610120 waitCount = 45 -28610121 ripCount = 43 -28610142 locktype1 = 1 -28610143 locktype2 = 6 -28610143 locktype3 = 11 -28610144 goalCount = 9 -28610144 goalTotal = 39 -28610145 otherCount = 48 -~~~ -28610145 64 4194816 -28610263 DOWN 7 -28610263 0 4194816 -28610325 64 4194816 -28610516 64 512 -28610711 DOWN 7 -28610711 0 512 -28610728 64 512 -28618901 DOWN 7 -28618901 0 512 -28624410 UP 10 -28624410 waslock = 0 -28624410 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28624433 512 16777728 -~~~ -28624583 512 512 -28629207 DOWN 10 -28629207 0 512 -~~~ -~~~ -28629227 0 1536 -~~~ -~~~ -28629229 0 1024 -28629230 homeCount = 106 -28629230 waitCount = 45 -28629231 ripCount = 43 -28629231 locktype1 = 1 -28629232 locktype2 = 6 -28629232 locktype3 = 11 -28629233 goalCount = 9 -28629233 goalTotal = 39 -28629234 otherCount = 48 -~~~ -28629267 UP 10 -28629268 waslock = 0 -28629267 512 1024 -28629281 DOWN 10 -28629281 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28629317 homeCount = 106 -28629318 waitCount = 45 -28629318 ripCount = 43 -28629319 locktype1 = 1 -28629319 locktype2 = 6 -28629320 locktype3 = 11 -28629320 goalCount = 9 -28629321 goalTotal = 39 -28629321 otherCount = 48 -~~~ -28631683 UP 11 -28631683 1024 1024 -28635339 DOWN 11 -28635339 0 1024 -28635349 UP 11 -28635349 1024 1024 -28635683 BEEP1 -28635683 BEEP2 -~~~ -~~~ -~~~ -28635709 1024 33555456 -~~~ -28635859 1024 1024 -28642049 DOWN 11 -28642048 0 1024 -~~~ -~~~ -28642066 0 0 -~~~ -28642067 UP 11 -28642067 1024 0 -~~~ -~~~ -28642069 1024 1 -~~~ -~~~ -28642071 1024 3 -~~~ -~~~ -28642072 1024 7 -~~~ -28642073 1024 15 -~~~ -~~~ -28642075 1024 31 -~~~ -~~~ -28642076 1024 63 -~~~ -~~~ -28642078 1024 127 -~~~ -~~~ -28642080 1024 255 -28642081 homeCount = 106 -28642102 waitCount = 45 -28642102 ripCount = 44 -28642103 locktype1 = 1 -28642103 locktype2 = 6 -28642104 locktype3 = 11 -28642104 goalCount = 9 -28642105 goalTotal = 39 -28642105 otherCount = 48 -~~~ -28642107 CURRENTGOAL IS [7] -~~~ -28642132 DOWN 11 -28642132 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642162 homeCount = 106 -28642162 waitCount = 45 -28642163 ripCount = 44 -28642163 locktype1 = 1 -28642164 locktype2 = 6 -28642164 locktype3 = 11 -28642165 goalCount = 9 -28642165 goalTotal = 39 -28642166 otherCount = 48 -~~~ -28642167 CURRENTGOAL IS [7] -~~~ -28642188 UP 11 -28642188 1024 255 -28642197 DOWN 11 -28642197 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642220 UP 11 -28642220 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642227 homeCount = 106 -28642228 waitCount = 45 -28642228 ripCount = 44 -28642229 locktype1 = 1 -28642229 locktype2 = 6 -28642230 locktype3 = 11 -28642230 goalCount = 9 -28642231 goalTotal = 39 -28642231 otherCount = 48 -~~~ -28642232 CURRENTGOAL IS [7] -~~~ -28642272 DOWN 11 -28642272 0 255 -28642296 UP 11 -28642296 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642313 homeCount = 106 -28642314 waitCount = 45 -28642314 ripCount = 44 -28642315 locktype1 = 1 -28642315 locktype2 = 6 -28642316 locktype3 = 11 -28642316 goalCount = 9 -28642317 goalTotal = 39 -28642317 otherCount = 48 -~~~ -28642318 CURRENTGOAL IS [7] -~~~ -28643982 DOWN 11 -28643982 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28644022 homeCount = 106 -28644022 waitCount = 45 -28644023 ripCount = 44 -28644023 locktype1 = 1 -28644024 locktype2 = 6 -28644024 locktype3 = 11 -28644025 goalCount = 9 -28644025 goalTotal = 39 -28644026 otherCount = 48 -~~~ -28644027 CURRENTGOAL IS [7] -~~~ -28644048 UP 11 -28644048 1024 255 -28644071 DOWN 11 -28644071 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28644112 homeCount = 106 -28644113 waitCount = 45 -28644113 ripCount = 44 -28644114 locktype1 = 1 -28644114 locktype2 = 6 -28644115 locktype3 = 11 -28644115 goalCount = 9 -28644116 goalTotal = 39 -28644116 otherCount = 48 -~~~ -28644118 CURRENTGOAL IS [7] -~~~ -28646624 UP 7 -28646624 64 255 -~~~ -~~~ -28646652 outer reward -~~~ -28646652 64 4194559 -~~~ -~~~ -28646657 outerreps = 6 -~~~ -~~~ -28646820 DOWN 7 -28646820 0 4194559 -~~~ -~~~ -28646837 0 4194558 -~~~ -~~~ -28646838 0 4194556 -~~~ -~~~ -28646840 0 4194552 -~~~ -~~~ -28646842 0 4194544 -~~~ -~~~ -28646844 0 4194528 -~~~ -~~~ -28646846 0 4194496 -~~~ -~~~ -28646848 0 4194432 -~~~ -~~~ -28646849 0 4194304 -~~~ -~~~ -28646851 0 4194816 -28646852 homeCount = 106 -28646853 waitCount = 45 -28646874 ripCount = 44 -28646875 locktype1 = 1 -28646875 locktype2 = 6 -28646876 locktype3 = 11 -28646876 goalCount = 0 -28646877 goalTotal = 40 -28646877 otherCount = 48 -~~~ -28646881 64 4194816 -28647102 64 512 -28654098 DOWN 7 -28654098 0 512 -28654128 64 512 -28655573 DOWN 7 -28655573 0 512 -28659979 UP 10 -28659979 waslock = 0 -28659979 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28660003 512 16777728 -~~~ -28660153 512 512 -28660172 DOWN 10 -28660172 0 512 -~~~ -~~~ -28660192 0 2560 -~~~ -~~~ -28660194 0 2048 -28660195 homeCount = 107 -28660196 waitCount = 45 -28660196 ripCount = 44 -28660197 locktype1 = 1 -28660197 locktype2 = 6 -28660198 locktype3 = 11 -28660198 goalCount = 0 -28660199 goalTotal = 40 -28660199 otherCount = 48 -~~~ -28660221 UP 10 -28660221 waslock = 0 -28660221 512 2048 -~~~ -28664181 DOWN 10 -28664181 0 2048 -~~~ -~~~ -~~~ -~~~ -28664200 homeCount = 107 -28664201 waitCount = 45 -28664201 ripCount = 44 -28664202 locktype1 = 1 -28664202 locktype2 = 6 -28664203 locktype3 = 11 -28664203 goalCount = 0 -28664204 goalTotal = 40 -28664204 otherCount = 48 -~~~ -28664242 UP 10 -28664242 waslock = 0 -28664242 512 2048 -~~~ -28664282 DOWN 10 -28664282 0 2048 -~~~ -~~~ -~~~ -~~~ -28664301 homeCount = 107 -28664301 waitCount = 45 -28664302 ripCount = 44 -28664302 locktype1 = 1 -28664303 locktype2 = 6 -28664303 locktype3 = 11 -28664304 goalCount = 0 -28664304 goalTotal = 40 -28664305 otherCount = 48 -~~~ -28666679 UP 12 -28666679 2048 2048 -28669418 DOWN 12 -28669418 0 2048 -28669421 UP 12 -28669421 2048 2048 -28670180 CLICK1 -28670180 CLICK2 -~~~ -~~~ -~~~ -28670200 2048 67110912 -~~~ -28670350 2048 2048 -28675738 DOWN 12 -28675738 0 2048 -28675753 UP 12 -28675753 2048 2048 -~~~ -~~~ -28675758 2048 0 -~~~ -~~~ -28675760 2048 1 -~~~ -~~~ -28675761 2048 3 -~~~ -~~~ -28675763 2048 7 -~~~ -~~~ -28675765 2048 15 -~~~ -~~~ -28675767 2048 31 -~~~ -~~~ -28675769 2048 63 -~~~ -~~~ -28675771 2048 127 -~~~ -~~~ -28675772 2048 255 -28675773 homeCount = 107 -28675774 waitCount = 46 -28675775 ripCount = 44 -28675796 locktype1 = 1 -28675796 locktype2 = 6 -28675797 locktype3 = 11 -28675797 goalCount = 0 -28675798 goalTotal = 40 -28675798 otherCount = 48 -~~~ -28675799 CURRENTGOAL IS [8] -~~~ -28675955 DOWN 12 -28675955 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28675995 homeCount = 107 -28675996 waitCount = 46 -28675996 ripCount = 44 -28675997 locktype1 = 1 -28675997 locktype2 = 6 -28675998 locktype3 = 11 -28675998 goalCount = 0 -28675999 goalTotal = 40 -28675999 otherCount = 48 -~~~ -28676000 CURRENTGOAL IS [8] -~~~ -28676059 UP 12 -28676058 2048 255 -28676099 DOWN 12 -28676099 0 255 -28676107 UP 12 -28676107 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676134 homeCount = 107 -28676135 waitCount = 46 -28676135 ripCount = 44 -28676136 locktype1 = 1 -28676136 locktype2 = 6 -28676137 locktype3 = 11 -28676137 goalCount = 0 -28676138 goalTotal = 40 -28676138 otherCount = 48 -~~~ -28676139 CURRENTGOAL IS [8] -~~~ -28676193 DOWN 12 -28676193 0 255 -~~~ -~~~ -~~~ -28676221 UP 12 -28676221 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676236 homeCount = 107 -28676236 waitCount = 46 -28676237 ripCount = 44 -28676238 locktype1 = 1 -28676238 locktype2 = 6 -28676239 locktype3 = 11 -28676239 goalCount = 0 -28676240 goalTotal = 40 -28676240 otherCount = 48 -~~~ -28676241 CURRENTGOAL IS [8] -~~~ -28676262 DOWN 12 -28676262 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676294 homeCount = 107 -28676294 waitCount = 46 -28676295 ripCount = 44 -28676296 locktype1 = 1 -28676296 locktype2 = 6 -28676297 locktype3 = 11 -28676297 goalCount = 0 -28676298 goalTotal = 40 -28676298 otherCount = 48 -~~~ -28676299 CURRENTGOAL IS [8] -~~~ -28676341 UP 12 -28676341 2048 255 -28676567 DOWN 12 -28676567 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676604 homeCount = 107 -28676605 waitCount = 46 -28676606 ripCount = 44 -28676606 locktype1 = 1 -28676607 locktype2 = 6 -28676607 locktype3 = 11 -28676608 goalCount = 0 -28676608 goalTotal = 40 -28676609 otherCount = 48 -~~~ -28676610 CURRENTGOAL IS [8] -~~~ -28676631 UP 12 -28676631 2048 255 -28676674 DOWN 12 -28676674 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676715 homeCount = 107 -28676716 waitCount = 46 -28676717 ripCount = 44 -28676717 locktype1 = 1 -28676718 locktype2 = 6 -28676718 locktype3 = 11 -28676719 goalCount = 0 -28676719 goalTotal = 40 -28676720 otherCount = 48 -~~~ -28676721 CURRENTGOAL IS [8] -~~~ -28676794 UP 12 -28676794 2048 255 -28676813 DOWN 12 -28676813 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676847 homeCount = 107 -28676848 waitCount = 46 -28676848 ripCount = 44 -28676849 locktype1 = 1 -28676849 locktype2 = 6 -28676850 locktype3 = 11 -28676850 goalCount = 0 -28676851 goalTotal = 40 -28676851 otherCount = 48 -~~~ -28676853 CURRENTGOAL IS [8] -~~~ -28681987 UP 7 -28681987 64 255 -~~~ -~~~ -28682178 DOWN 7 -28682178 0 255 -~~~ -~~~ -28682199 0 254 -~~~ -~~~ -28682201 0 252 -~~~ -~~~ -28682203 0 248 -~~~ -~~~ -28682205 0 240 -~~~ -~~~ -28682206 0 224 -~~~ -~~~ -28682208 0 192 -~~~ -~~~ -28682210 0 128 -~~~ -~~~ -28682212 0 0 -~~~ -~~~ -28682214 0 512 -28682215 homeCount = 107 -28682215 waitCount = 46 -28682216 ripCount = 44 -28682216 locktype1 = 1 -28682237 locktype2 = 6 -28682237 locktype3 = 11 -28682238 goalCount = 0 -28682238 goalTotal = 40 -28682239 otherCount = 49 -~~~ -28682242 64 512 -28682805 DOWN 7 -28682805 0 512 -28687242 UP 10 -28687242 waslock = 0 -28687242 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28687267 512 16777728 -~~~ -28687417 512 512 -28692614 DOWN 10 -28692614 0 512 -~~~ -~~~ -28692630 0 1536 -~~~ -~~~ -28692632 0 1024 -28692633 homeCount = 108 -28692633 waitCount = 46 -28692634 ripCount = 44 -28692634 locktype1 = 1 -28692635 locktype2 = 6 -28692635 locktype3 = 11 -28692636 goalCount = 0 -28692636 goalTotal = 40 -28692637 otherCount = 49 -~~~ -28722460 UP 5 -28722460 16 1024 -~~~ -28722481 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -28722485 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28722793 DOWN 5 -28722793 0 0 -28722950 16 0 -28723527 DOWN 5 -28723527 0 0 -28723945 16 0 -28723961 DOWN 5 -28723961 0 0 -28731390 512 0 -28731607 0 0 -28734719 512 0 -28740000 0 0 -28740067 512 0 -28740107 0 0 -28747481 LOCKEND -~~~ -~~~ -~~~ -28747502 0 512 -28779978 UP 10 -28779978 waslock = 0 -28779978 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28780008 512 16777728 -~~~ -28780038 DOWN 10 -28780038 0 16777728 -~~~ -~~~ -28780067 0 16779776 -~~~ -~~~ -28780069 0 16779264 -28780070 homeCount = 109 -28780070 waitCount = 46 -28780071 ripCount = 44 -28780071 locktype1 = 1 -28780072 locktype2 = 7 -28780072 locktype3 = 11 -28780073 goalCount = 0 -28780073 goalTotal = 40 -28780074 otherCount = 49 -~~~ -28780103 UP 10 -28780103 waslock = 0 -28780103 512 16779264 -28780132 DOWN 10 -28780132 0 16779264 -~~~ -~~~ -~~~ -~~~ -~~~ -28780155 homeCount = 109 -28780155 waitCount = 46 -28780156 ripCount = 44 -28780156 locktype1 = 1 -28780157 locktype2 = 7 -28780157 locktype3 = 11 -28780158 goalCount = 0 -28780158 goalTotal = 40 -28780159 otherCount = 49 -~~~ -28780159 0 2048 -28780313 UP 10 -28780314 waslock = 0 -28780313 512 2048 -~~~ -28780367 DOWN 10 -28780367 0 2048 -~~~ -~~~ -~~~ -~~~ -28780397 homeCount = 109 -28780397 waitCount = 46 -28780398 ripCount = 44 -28780398 locktype1 = 1 -28780399 locktype2 = 7 -28780399 locktype3 = 11 -28780400 goalCount = 0 -28780400 goalTotal = 40 -28780401 otherCount = 49 -~~~ -28780413 UP 10 -28780414 waslock = 0 -28780413 512 2048 -~~~ -28780850 DOWN 10 -28780850 0 2048 -~~~ -~~~ -~~~ -~~~ -28780875 homeCount = 109 -28780875 waitCount = 46 -28780876 ripCount = 44 -28780877 locktype1 = 1 -28780877 locktype2 = 7 -28780878 locktype3 = 11 -28780878 goalCount = 0 -28780879 goalTotal = 40 -28780879 otherCount = 49 -~~~ -28780890 UP 10 -28780890 waslock = 0 -28780890 512 2048 -28780908 DOWN 10 -28780908 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28780933 homeCount = 109 -28780933 waitCount = 46 -28780934 ripCount = 44 -28780934 locktype1 = 1 -28780935 locktype2 = 7 -28780935 locktype3 = 11 -28780936 goalCount = 0 -28780936 goalTotal = 40 -28780937 otherCount = 49 -~~~ -28781017 UP 10 -28781017 waslock = 0 -28781017 512 2048 -28781032 DOWN 10 -28781032 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28781058 homeCount = 109 -28781058 waitCount = 46 -28781059 ripCount = 44 -28781059 locktype1 = 1 -28781060 locktype2 = 7 -28781060 locktype3 = 11 -28781061 goalCount = 0 -28781061 goalTotal = 40 -28781062 otherCount = 49 -~~~ -28781144 UP 10 -28781144 waslock = 0 -28781144 512 2048 -28781154 DOWN 10 -28781154 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28781175 homeCount = 109 -28781176 waitCount = 46 -28781176 ripCount = 44 -28781177 locktype1 = 1 -28781177 locktype2 = 7 -28781178 locktype3 = 11 -28781178 goalCount = 0 -28781179 goalTotal = 40 -28781179 otherCount = 49 -~~~ -28781262 UP 10 -28781263 waslock = 0 -28781262 512 2048 -~~~ -28783973 DOWN 10 -28783973 0 2048 -~~~ -~~~ -~~~ -~~~ -28783999 homeCount = 109 -28783999 waitCount = 46 -28784000 ripCount = 44 -28784000 locktype1 = 1 -28784001 locktype2 = 7 -28784001 locktype3 = 11 -28784002 goalCount = 0 -28784002 goalTotal = 40 -28784003 otherCount = 49 -~~~ -28784018 UP 10 -28784019 waslock = 0 -28784018 512 2048 -~~~ -28784075 DOWN 10 -28784075 0 2048 -~~~ -~~~ -~~~ -~~~ -28784099 homeCount = 109 -28784099 waitCount = 46 -28784100 ripCount = 44 -28784100 locktype1 = 1 -28784101 locktype2 = 7 -28784101 locktype3 = 11 -28784102 goalCount = 0 -28784103 goalTotal = 40 -28784103 otherCount = 49 -~~~ -28797858 UP 1 -28797858 1 2048 -28797882 DOWN 1 -28797882 0 2048 -~~~ -28797884 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28797889 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28797959 1 0 -28798533 DOWN 1 -28798533 0 0 -28805298 512 0 -28805377 0 0 -28805484 512 0 -28805569 0 0 -28812038 512 0 -28812315 0 0 -28812347 512 0 -28812391 0 0 -28812415 512 0 -28812432 0 0 -28822884 LOCKEND -~~~ -~~~ -~~~ -28822907 0 512 -28824977 UP 10 -28824977 waslock = 0 -28824977 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28825010 512 16777728 -~~~ -28825030 DOWN 10 -28825030 0 16777728 -~~~ -~~~ -28825053 0 16778752 -~~~ -~~~ -28825055 0 16778240 -28825056 homeCount = 110 -28825057 waitCount = 46 -28825057 ripCount = 44 -28825058 locktype1 = 1 -28825058 locktype2 = 8 -28825059 locktype3 = 11 -28825059 goalCount = 0 -28825060 goalTotal = 40 -28825060 otherCount = 49 -~~~ -28825081 UP 10 -28825082 waslock = 0 -28825081 512 16778240 -~~~ -28825160 512 1024 -28829576 DOWN 10 -28829576 0 1024 -~~~ -~~~ -~~~ -~~~ -28829597 homeCount = 110 -28829597 waitCount = 46 -28829598 ripCount = 44 -28829599 locktype1 = 1 -28829599 locktype2 = 8 -28829600 locktype3 = 11 -28829600 goalCount = 0 -28829601 goalTotal = 40 -28829601 otherCount = 49 -~~~ -28829635 UP 10 -28829635 waslock = 0 -28829635 512 1024 -~~~ -28829692 DOWN 10 -28829692 0 1024 -~~~ -~~~ -~~~ -~~~ -28829717 homeCount = 110 -28829717 waitCount = 46 -28829718 ripCount = 44 -28829718 locktype1 = 1 -28829719 locktype2 = 8 -28829719 locktype3 = 11 -28829720 goalCount = 0 -28829720 goalTotal = 40 -28829721 otherCount = 49 -~~~ -28829775 UP 10 -28829775 waslock = 0 -28829775 512 1024 -~~~ -28829802 DOWN 10 -28829802 0 1024 -~~~ -~~~ -~~~ -~~~ -28829831 homeCount = 110 -28829832 waitCount = 46 -28829832 ripCount = 44 -28829833 locktype1 = 1 -28829833 locktype2 = 8 -28829834 locktype3 = 11 -28829834 goalCount = 0 -28829835 goalTotal = 40 -28829835 otherCount = 49 -~~~ -28832575 UP 11 -28832575 1024 1024 -28836075 BEEP1 -28836075 BEEP2 -~~~ -~~~ -~~~ -28836096 1024 33555456 -~~~ -28836246 1024 1024 -28842504 DOWN 11 -28842504 0 1024 -~~~ -28842524 UP 11 -28842524 1024 1024 -~~~ -~~~ -28842526 1024 0 -~~~ -~~~ -28842527 1024 1 -~~~ -28842529 1024 3 -~~~ -~~~ -28842530 1024 7 -~~~ -~~~ -28842532 1024 15 -~~~ -~~~ -28842534 1024 31 -~~~ -~~~ -28842536 1024 63 -~~~ -~~~ -28842537 1024 127 -~~~ -~~~ -28842539 1024 255 -28842540 homeCount = 110 -28842561 waitCount = 46 -28842562 ripCount = 45 -28842562 locktype1 = 1 -28842563 locktype2 = 8 -28842563 locktype3 = 11 -28842564 goalCount = 0 -28842564 goalTotal = 40 -28842565 otherCount = 49 -~~~ -28842566 CURRENTGOAL IS [8] -~~~ -28842627 DOWN 11 -28842627 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28842665 homeCount = 110 -28842666 waitCount = 46 -28842666 ripCount = 45 -28842667 locktype1 = 1 -28842667 locktype2 = 8 -28842668 locktype3 = 11 -28842668 goalCount = 0 -28842669 goalTotal = 40 -28842669 otherCount = 49 -~~~ -28842670 CURRENTGOAL IS [8] -~~~ -28842708 UP 11 -28842708 1024 255 -28842766 DOWN 11 -28842766 0 255 -28842777 UP 11 -28842777 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28842817 homeCount = 110 -28842818 waitCount = 46 -28842819 ripCount = 45 -28842819 locktype1 = 1 -28842820 locktype2 = 8 -28842820 locktype3 = 11 -28842821 goalCount = 0 -28842821 goalTotal = 40 -28842822 otherCount = 49 -~~~ -28842823 CURRENTGOAL IS [8] -~~~ -28844915 DOWN 11 -28844915 0 255 -28844936 UP 11 -28844936 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28844956 homeCount = 110 -28844956 waitCount = 46 -28844957 ripCount = 45 -28844957 locktype1 = 1 -28844958 locktype2 = 8 -28844958 locktype3 = 11 -28844959 goalCount = 0 -28844959 goalTotal = 40 -28844960 otherCount = 49 -~~~ -28844961 CURRENTGOAL IS [8] -~~~ -28845000 DOWN 11 -28845000 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28845037 homeCount = 110 -28845037 waitCount = 46 -28845038 ripCount = 45 -28845038 locktype1 = 1 -28845039 locktype2 = 8 -28845039 locktype3 = 11 -28845040 goalCount = 0 -28845040 goalTotal = 40 -28845041 otherCount = 49 -~~~ -28845042 CURRENTGOAL IS [8] -~~~ -28848013 UP 6 -28848013 32 255 -~~~ -~~~ -28848533 DOWN 6 -28848533 0 255 -~~~ -~~~ -28848550 0 254 -~~~ -~~~ -28848552 0 252 -~~~ -~~~ -28848554 0 248 -~~~ -~~~ -28848556 0 240 -~~~ -~~~ -28848558 0 224 -~~~ -~~~ -28848560 0 192 -~~~ -~~~ -28848561 0 128 -~~~ -~~~ -28848563 0 0 -~~~ -~~~ -28848565 0 512 -28848566 homeCount = 110 -28848567 waitCount = 46 -28848567 ripCount = 45 -28848568 locktype1 = 1 -28848589 locktype2 = 8 -28848589 locktype3 = 11 -28848590 goalCount = 0 -28848590 goalTotal = 40 -28848591 otherCount = 50 -~~~ -28853286 UP 10 -28853286 waslock = 0 -28853285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28853310 512 16777728 -~~~ -28853460 512 512 -28853551 DOWN 10 -28853551 0 512 -~~~ -~~~ -28853578 0 2560 -~~~ -~~~ -28853580 0 2048 -28853581 homeCount = 111 -28853582 waitCount = 46 -28853582 ripCount = 45 -28853583 locktype1 = 1 -28853583 locktype2 = 8 -28853584 locktype3 = 11 -28853584 goalCount = 0 -28853585 goalTotal = 40 -28853585 otherCount = 50 -~~~ -28853607 UP 10 -28853607 waslock = 0 -28853607 512 2048 -~~~ -28858404 DOWN 10 -28858404 0 2048 -~~~ -~~~ -~~~ -~~~ -28858432 homeCount = 111 -28858433 waitCount = 46 -28858433 ripCount = 45 -28858434 locktype1 = 1 -28858434 locktype2 = 8 -28858435 locktype3 = 11 -28858435 goalCount = 0 -28858436 goalTotal = 40 -28858436 otherCount = 50 -~~~ -28860886 UP 12 -28860886 2048 2048 -28863790 DOWN 12 -28863790 0 2048 -28863828 UP 12 -28863828 2048 2048 -28863856 DOWN 12 -28863856 0 2048 -28863886 CLICK1 -28863886 CLICK2 -~~~ -~~~ -~~~ -28863919 0 67110912 -~~~ -28863922 UP 12 -28863922 2048 67110912 -28864069 2048 2048 -28864196 DOWN 12 -28864196 0 2048 -~~~ -~~~ -28864220 0 0 -~~~ -~~~ -28864222 0 1 -~~~ -~~~ -28864224 0 3 -~~~ -~~~ -28864226 0 7 -~~~ -~~~ -28864228 0 15 -~~~ -~~~ -28864229 0 31 -~~~ -~~~ -28864231 0 63 -~~~ -~~~ -28864233 0 127 -~~~ -~~~ -28864235 0 255 -28864236 homeCount = 111 -28864236 waitCount = 47 -28864237 ripCount = 45 -28864238 locktype1 = 1 -28864238 locktype2 = 8 -28864259 locktype3 = 11 -28864260 goalCount = 0 -28864260 goalTotal = 40 -28864261 otherCount = 50 -~~~ -28864262 CURRENTGOAL IS [8] -~~~ -28864299 UP 12 -28864299 2048 255 -28870550 DOWN 12 -28870550 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28870587 homeCount = 111 -28870587 waitCount = 47 -28870588 ripCount = 45 -28870588 locktype1 = 1 -28870589 locktype2 = 8 -28870589 locktype3 = 11 -28870590 goalCount = 0 -28870590 goalTotal = 40 -28870591 otherCount = 50 -~~~ -28870592 CURRENTGOAL IS [8] -~~~ -28870613 UP 12 -28870613 2048 255 -28870653 DOWN 12 -28870653 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28870688 homeCount = 111 -28870689 waitCount = 47 -28870689 ripCount = 45 -28870690 locktype1 = 1 -28870690 locktype2 = 8 -28870691 locktype3 = 11 -28870692 goalCount = 0 -28870692 goalTotal = 40 -28870693 otherCount = 50 -~~~ -28870694 CURRENTGOAL IS [8] -~~~ -28874529 UP 4 -28874529 8 255 -~~~ -~~~ -28875631 DOWN 4 -28875631 0 255 -~~~ -~~~ -28875652 0 254 -~~~ -~~~ -28875654 0 252 -~~~ -~~~ -28875655 0 248 -~~~ -~~~ -28875657 0 240 -~~~ -~~~ -28875659 0 224 -~~~ -~~~ -28875661 0 192 -~~~ -~~~ -28875663 0 128 -~~~ -~~~ -28875664 0 0 -~~~ -~~~ -28875666 0 512 -28875667 homeCount = 111 -28875668 waitCount = 47 -28875668 ripCount = 45 -28875669 locktype1 = 1 -28875690 locktype2 = 8 -28875691 locktype3 = 11 -28875691 goalCount = 0 -28875692 goalTotal = 40 -28875692 otherCount = 51 -~~~ -28883393 UP 10 -28883394 waslock = 0 -28883393 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28883422 512 16777728 -~~~ -28883439 DOWN 10 -28883439 0 16777728 -~~~ -~~~ -28883466 0 16779776 -~~~ -~~~ -28883468 0 16779264 -28883469 homeCount = 112 -28883470 waitCount = 47 -28883470 ripCount = 45 -28883471 locktype1 = 1 -28883471 locktype2 = 8 -28883472 locktype3 = 11 -28883472 goalCount = 0 -28883473 goalTotal = 40 -28883473 otherCount = 51 -~~~ -28883509 UP 10 -28883509 waslock = 0 -28883509 512 16779264 -~~~ -28883572 512 2048 -28883585 DOWN 10 -28883585 0 2048 -~~~ -~~~ -~~~ -~~~ -28883605 homeCount = 112 -28883605 waitCount = 47 -28883606 ripCount = 45 -28883606 locktype1 = 1 -28883607 locktype2 = 8 -28883607 locktype3 = 11 -28883608 goalCount = 0 -28883608 goalTotal = 40 -28883609 otherCount = 51 -~~~ -28883764 UP 10 -28883764 waslock = 0 -28883764 512 2048 -~~~ -28888011 DOWN 10 -28888011 0 2048 -~~~ -~~~ -~~~ -~~~ -28888031 homeCount = 112 -28888032 waitCount = 47 -28888032 ripCount = 45 -28888033 locktype1 = 1 -28888033 locktype2 = 8 -28888034 locktype3 = 11 -28888034 goalCount = 0 -28888035 goalTotal = 40 -28888035 otherCount = 51 -~~~ -28888049 UP 10 -28888050 waslock = 0 -28888049 512 2048 -~~~ -28888103 DOWN 10 -28888103 0 2048 -~~~ -~~~ -~~~ -~~~ -28888134 homeCount = 112 -28888134 waitCount = 47 -28888135 ripCount = 45 -28888135 locktype1 = 1 -28888136 locktype2 = 8 -28888136 locktype3 = 11 -28888137 goalCount = 0 -28888137 goalTotal = 40 -28888138 otherCount = 51 -~~~ -28890034 UP 12 -28890034 2048 2048 -28893690 DOWN 12 -28893690 0 2048 -28893790 UP 12 -28893790 2048 2048 -28893861 DOWN 12 -28893861 0 2048 -28893878 UP 12 -28893878 2048 2048 -28893921 DOWN 12 -28893921 0 2048 -28893942 UP 12 -28893942 2048 2048 -28893949 DOWN 12 -28893949 0 2048 -28893954 UP 12 -28893954 2048 2048 -28893964 DOWN 12 -28893964 0 2048 -28893989 UP 12 -28893989 2048 2048 -28898611 DOWN 12 -28898611 0 2048 -28898680 UP 12 -28898680 2048 2048 -28899034 CLICK1 -28899034 CLICK2 -~~~ -~~~ -~~~ -28899062 2048 67110912 -~~~ -28899212 2048 2048 -28908224 DOWN 12 -28908224 0 2048 -~~~ -~~~ -28908245 0 0 -~~~ -~~~ -28908247 0 1 -~~~ -~~~ -28908249 0 3 -~~~ -~~~ -28908251 0 7 -~~~ -~~~ -28908253 0 15 -~~~ -~~~ -28908255 0 31 -~~~ -~~~ -28908256 0 63 -~~~ -~~~ -28908258 0 127 -~~~ -~~~ -28908260 0 255 -28908261 homeCount = 112 -28908262 waitCount = 48 -28908262 ripCount = 45 -28908263 locktype1 = 1 -28908263 locktype2 = 8 -28908284 locktype3 = 11 -28908285 goalCount = 0 -28908285 goalTotal = 40 -28908286 otherCount = 51 -~~~ -28908287 CURRENTGOAL IS [8] -~~~ -28908287 UP 12 -28908287 2048 255 -28908312 DOWN 12 -28908312 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28908355 homeCount = 112 -28908356 waitCount = 48 -28908356 ripCount = 45 -28908357 locktype1 = 1 -28908357 locktype2 = 8 -28908358 locktype3 = 11 -28908358 goalCount = 0 -28908359 goalTotal = 40 -28908359 otherCount = 51 -~~~ -28908361 CURRENTGOAL IS [8] -~~~ -28912740 UP 1 -28912740 1 255 -~~~ -~~~ -28913834 DOWN 1 -28913834 0 255 -~~~ -~~~ -28913860 0 254 -~~~ -~~~ -28913862 0 252 -~~~ -~~~ -28913864 0 248 -~~~ -~~~ -28913866 0 240 -~~~ -~~~ -28913867 0 224 -~~~ -~~~ -28913869 0 192 -~~~ -~~~ -28913871 0 128 -~~~ -~~~ -28913873 0 0 -~~~ -~~~ -28913875 0 512 -28913876 homeCount = 112 -28913876 waitCount = 48 -28913877 ripCount = 45 -28913877 locktype1 = 1 -28913878 locktype2 = 8 -28913899 locktype3 = 11 -28913899 goalCount = 0 -28913900 goalTotal = 40 -28913900 otherCount = 52 -~~~ -28917360 UP 10 -28917360 waslock = 0 -28917360 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28917386 512 16777728 -~~~ -28917536 512 512 -28923452 DOWN 10 -28923452 0 512 -28923462 UP 10 -28923462 waslock = 0 -28923462 512 512 -~~~ -~~~ -28923482 512 2560 -~~~ -~~~ -28923484 512 2048 -28923485 homeCount = 113 -28923486 waitCount = 48 -28923486 ripCount = 45 -28923487 locktype1 = 1 -28923487 locktype2 = 8 -28923488 locktype3 = 11 -28923488 goalCount = 0 -28923489 goalTotal = 40 -28923489 otherCount = 52 -~~~ -~~~ -28923558 DOWN 10 -28923558 0 2048 -~~~ -~~~ -~~~ -~~~ -28923583 homeCount = 113 -28923584 waitCount = 48 -28923584 ripCount = 45 -28923585 locktype1 = 1 -28923585 locktype2 = 8 -28923586 locktype3 = 11 -28923586 goalCount = 0 -28923587 goalTotal = 40 -28923587 otherCount = 52 -~~~ -28923618 UP 10 -28923619 waslock = 0 -28923618 512 2048 -~~~ -28923656 DOWN 10 -28923656 0 2048 -~~~ -~~~ -~~~ -~~~ -28923679 homeCount = 113 -28923680 waitCount = 48 -28923680 ripCount = 45 -28923681 locktype1 = 1 -28923681 locktype2 = 8 -28923682 locktype3 = 11 -28923682 goalCount = 0 -28923683 goalTotal = 40 -28923683 otherCount = 52 -~~~ -28925345 UP 12 -28925345 2048 2048 -28926820 DOWN 12 -28926820 0 2048 -28926832 UP 12 -28926832 2048 2048 -28927113 DOWN 12 -28927113 0 2048 -28927174 UP 12 -28927174 2048 2048 -28928345 CLICK1 -28928345 CLICK2 -~~~ -~~~ -~~~ -28928364 2048 67110912 -~~~ -28928481 DOWN 12 -28928481 0 67110912 -28928514 0 2048 -28928534 UP 12 -28928534 2048 2048 -28928545 DOWN 12 -28928545 0 2048 -~~~ -~~~ -28928551 0 0 -~~~ -~~~ -28928553 0 1 -~~~ -~~~ -28928555 0 3 -~~~ -~~~ -28928557 0 7 -~~~ -~~~ -28928558 0 15 -~~~ -~~~ -28928560 0 31 -~~~ -~~~ -28928562 0 63 -~~~ -~~~ -28928564 0 127 -~~~ -~~~ -28928566 0 255 -28928567 homeCount = 113 -28928567 waitCount = 49 -28928568 ripCount = 45 -28928568 locktype1 = 1 -28928569 locktype2 = 8 -28928590 locktype3 = 11 -28928590 goalCount = 0 -28928591 goalTotal = 40 -28928592 otherCount = 52 -~~~ -28928593 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28928600 homeCount = 113 -28928621 waitCount = 49 -28928621 ripCount = 45 -28928622 locktype1 = 1 -28928622 locktype2 = 8 -28928623 locktype3 = 11 -28928623 goalCount = 0 -28928624 goalTotal = 40 -28928624 otherCount = 52 -~~~ -28928625 CURRENTGOAL IS [8] -~~~ -28928626 UP 12 -28928626 2048 255 -28934970 DOWN 12 -28934970 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28935004 homeCount = 113 -28935004 waitCount = 49 -28935005 ripCount = 45 -28935006 locktype1 = 1 -28935006 locktype2 = 8 -28935007 locktype3 = 11 -28935007 goalCount = 0 -28935008 goalTotal = 40 -28935008 otherCount = 52 -~~~ -28935009 CURRENTGOAL IS [8] -~~~ -28935030 UP 12 -28935030 2048 255 -28935063 DOWN 12 -28935063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28935104 homeCount = 113 -28935104 waitCount = 49 -28935105 ripCount = 45 -28935105 locktype1 = 1 -28935106 locktype2 = 8 -28935107 locktype3 = 11 -28935107 goalCount = 0 -28935108 goalTotal = 40 -28935108 otherCount = 52 -~~~ -28935109 CURRENTGOAL IS [8] -~~~ -28939803 UP 4 -28939803 8 255 -~~~ -~~~ -28940719 DOWN 4 -28940719 0 255 -~~~ -~~~ -28940736 0 254 -~~~ -~~~ -28940738 0 252 -~~~ -~~~ -28940740 0 248 -~~~ -~~~ -28940741 0 240 -~~~ -~~~ -28940743 0 224 -~~~ -~~~ -28940745 0 192 -~~~ -~~~ -28940747 0 128 -~~~ -~~~ -28940749 0 0 -~~~ -~~~ -28940751 0 512 -28940752 homeCount = 113 -28940752 waitCount = 49 -28940753 ripCount = 45 -28940753 locktype1 = 1 -28940774 locktype2 = 8 -28940775 locktype3 = 11 -28940775 goalCount = 0 -28940776 goalTotal = 40 -28940776 otherCount = 53 -~~~ -28940844 8 512 -28941165 DOWN 4 -28941165 0 512 -28944970 UP 10 -28944970 waslock = 0 -28944970 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28944999 512 16777728 -~~~ -28945149 512 512 -28945191 DOWN 10 -28945191 0 512 -~~~ -~~~ -28945214 0 1536 -~~~ -~~~ -28945216 0 1024 -28945217 homeCount = 114 -28945217 waitCount = 49 -28945218 ripCount = 45 -28945218 locktype1 = 1 -28945219 locktype2 = 8 -28945219 locktype3 = 11 -28945220 goalCount = 0 -28945220 goalTotal = 40 -28945221 otherCount = 53 -~~~ -28945242 UP 10 -28945242 waslock = 0 -28945242 512 1024 -~~~ -28952252 DOWN 10 -28952252 0 1024 -~~~ -~~~ -~~~ -~~~ -28952276 homeCount = 114 -28952276 waitCount = 49 -28952277 ripCount = 45 -28952277 locktype1 = 1 -28952278 locktype2 = 8 -28952278 locktype3 = 11 -28952279 goalCount = 0 -28952279 goalTotal = 40 -28952280 otherCount = 53 -~~~ -28954847 UP 11 -28954847 1024 1024 -28958772 DOWN 11 -28958772 0 1024 -28958793 UP 11 -28958793 1024 1024 -28958938 DOWN 11 -28958938 0 1024 -28958951 UP 11 -28958951 1024 1024 -28962347 BEEP1 -28962347 BEEP2 -~~~ -~~~ -~~~ -28962376 1024 33555456 -~~~ -28962526 1024 1024 -28969334 DOWN 11 -28969334 0 1024 -~~~ -~~~ -28969353 0 0 -~~~ -~~~ -28969355 0 1 -~~~ -~~~ -28969357 0 3 -~~~ -~~~ -28969359 0 7 -~~~ -~~~ -28969361 0 15 -~~~ -~~~ -28969363 0 31 -~~~ -~~~ -28969364 0 63 -~~~ -~~~ -28969366 0 127 -~~~ -~~~ -28969368 0 255 -28969369 homeCount = 114 -28969370 waitCount = 49 -28969370 ripCount = 46 -28969371 locktype1 = 1 -28969371 locktype2 = 8 -28969392 locktype3 = 11 -28969393 goalCount = 0 -28969393 goalTotal = 40 -28969394 otherCount = 53 -~~~ -28969395 CURRENTGOAL IS [8] -~~~ -28969395 UP 11 -28969395 1024 255 -28969432 DOWN 11 -28969432 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28969472 homeCount = 114 -28969472 waitCount = 49 -28969473 ripCount = 46 -28969473 locktype1 = 1 -28969474 locktype2 = 8 -28969474 locktype3 = 11 -28969475 goalCount = 0 -28969475 goalTotal = 40 -28969476 otherCount = 53 -~~~ -28969477 CURRENTGOAL IS [8] -~~~ -28972662 UP 7 -28972662 64 255 -~~~ -~~~ -28973269 DOWN 7 -28973269 0 255 -~~~ -~~~ -28973295 0 254 -~~~ -~~~ -28973297 0 252 -~~~ -~~~ -28973299 0 248 -~~~ -~~~ -28973301 0 240 -~~~ -~~~ -28973303 0 224 -~~~ -~~~ -28973305 0 192 -~~~ -~~~ -28973306 0 128 -~~~ -~~~ -28973308 0 0 -~~~ -~~~ -28973310 0 512 -28973311 homeCount = 114 -28973312 waitCount = 49 -28973312 ripCount = 46 -28973313 locktype1 = 1 -28973313 locktype2 = 8 -28973334 locktype3 = 11 -28973335 goalCount = 0 -28973335 goalTotal = 40 -28973336 otherCount = 54 -~~~ -28977764 UP 10 -28977764 waslock = 0 -28977764 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28977794 512 16777728 -~~~ -28977944 512 512 -28978037 DOWN 10 -28978037 0 512 -~~~ -~~~ -28978059 0 2560 -~~~ -~~~ -28978060 0 2048 -28978061 homeCount = 115 -28978062 waitCount = 49 -28978063 ripCount = 46 -28978063 locktype1 = 1 -28978064 locktype2 = 8 -28978064 locktype3 = 11 -28978065 goalCount = 0 -28978065 goalTotal = 40 -28978066 otherCount = 54 -~~~ -28978087 UP 10 -28978087 waslock = 0 -28978087 512 2048 -~~~ -28978234 DOWN 10 -28978234 0 2048 -28978250 UP 10 -28978250 waslock = 0 -28978250 512 2048 -~~~ -~~~ -~~~ -~~~ -28978273 homeCount = 115 -28978273 waitCount = 49 -28978274 ripCount = 46 -28978275 locktype1 = 1 -28978275 locktype2 = 8 -28978276 locktype3 = 11 -28978276 goalCount = 0 -28978277 goalTotal = 40 -28978277 otherCount = 54 -~~~ -~~~ -28978477 DOWN 10 -28978477 0 2048 -~~~ -~~~ -~~~ -~~~ -28978501 homeCount = 115 -28978501 waitCount = 49 -28978502 ripCount = 46 -28978502 locktype1 = 1 -28978503 locktype2 = 8 -28978503 locktype3 = 11 -28978504 goalCount = 0 -28978504 goalTotal = 40 -28978505 otherCount = 54 -~~~ -28978551 UP 10 -28978551 waslock = 0 -28978551 512 2048 -28978570 DOWN 10 -28978570 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28978599 homeCount = 115 -28978600 waitCount = 49 -28978600 ripCount = 46 -28978601 locktype1 = 1 -28978601 locktype2 = 8 -28978602 locktype3 = 11 -28978602 goalCount = 0 -28978603 goalTotal = 40 -28978603 otherCount = 54 -~~~ -28978681 UP 10 -28978681 waslock = 0 -28978681 512 2048 -~~~ -28985257 DOWN 10 -28985257 0 2048 -~~~ -~~~ -~~~ -~~~ -28985282 homeCount = 115 -28985282 waitCount = 49 -28985283 ripCount = 46 -28985283 locktype1 = 1 -28985284 locktype2 = 8 -28985284 locktype3 = 11 -28985285 goalCount = 0 -28985286 goalTotal = 40 -28985286 otherCount = 54 -~~~ -28995900 UP 12 -28995900 2048 2048 -28997144 DOWN 12 -28997144 0 2048 -28997344 LOCKOUT 3 -28997347 UP 12 -28997347 2048 2048 -~~~ -28997369 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28997375 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28997612 DOWN 12 -28997612 0 0 -28997634 UP 12 -28997634 2048 0 -29001991 DOWN 12 -29001991 0 0 -29002007 UP 12 -29002007 2048 0 -29002019 DOWN 12 -29002018 0 0 -29002056 UP 12 -29002056 2048 0 -29002152 DOWN 12 -29002152 0 0 -29002178 UP 12 -29002178 2048 0 -29002188 DOWN 12 -29002188 0 0 -29002210 UP 12 -29002210 2048 0 -29007757 DOWN 12 -29007757 0 0 -29007782 UP 12 -29007782 2048 0 -29007799 DOWN 12 -29007799 0 0 -29007825 UP 12 -29007825 2048 0 -29009658 DOWN 12 -29009658 0 0 -29009698 UP 12 -29009698 2048 0 -29009727 DOWN 12 -29009727 0 0 -29009797 UP 12 -29009797 2048 0 -29009830 DOWN 12 -29009830 0 0 -29011177 UP 12 -29011177 2048 0 -29011199 DOWN 12 -29011199 0 0 -29011358 UP 12 -29011358 2048 0 -29012274 DOWN 12 -29012274 0 0 -29022369 LOCKEND -~~~ -~~~ -~~~ -29022391 0 512 -29026767 UP 10 -29026767 waslock = 0 -29026767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29026795 512 16777728 -~~~ -29026842 DOWN 10 -29026842 0 16777728 -~~~ -~~~ -29026871 0 16779776 -~~~ -~~~ -29026873 0 16779264 -29026874 homeCount = 116 -29026874 waitCount = 49 -29026875 ripCount = 46 -29026875 locktype1 = 1 -29026876 locktype2 = 8 -29026876 locktype3 = 12 -29026877 goalCount = 0 -29026877 goalTotal = 40 -29026878 otherCount = 54 -~~~ -29026908 UP 10 -29026908 waslock = 0 -29026908 512 16779264 -~~~ -29026944 512 2048 -29026962 DOWN 10 -29026962 0 2048 -~~~ -~~~ -~~~ -~~~ -29026992 homeCount = 116 -29026992 waitCount = 49 -29026993 ripCount = 46 -29026994 locktype1 = 1 -29026994 locktype2 = 8 -29026995 locktype3 = 12 -29026995 goalCount = 0 -29026996 goalTotal = 40 -29026996 otherCount = 54 -~~~ -29026998 UP 10 -29026998 waslock = 0 -29026998 512 2048 -29027028 DOWN 10 -29027028 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29027062 homeCount = 116 -29027062 waitCount = 49 -29027063 ripCount = 46 -29027063 locktype1 = 1 -29027064 locktype2 = 8 -29027064 locktype3 = 12 -29027065 goalCount = 0 -29027065 goalTotal = 40 -29027066 otherCount = 54 -~~~ -29027296 UP 10 -29027296 waslock = 0 -29027296 512 2048 -~~~ -29027830 DOWN 10 -29027830 0 2048 -~~~ -~~~ -~~~ -~~~ -29027855 homeCount = 116 -29027856 waitCount = 49 -29027857 ripCount = 46 -29027857 locktype1 = 1 -29027858 locktype2 = 8 -29027858 locktype3 = 12 -29027859 goalCount = 0 -29027859 goalTotal = 40 -29027860 otherCount = 54 -~~~ -29027895 UP 10 -29027895 waslock = 0 -29027895 512 2048 -~~~ -29027938 DOWN 10 -29027938 0 2048 -~~~ -~~~ -~~~ -~~~ -29027966 homeCount = 116 -29027966 waitCount = 49 -29027967 ripCount = 46 -29027967 locktype1 = 1 -29027968 locktype2 = 8 -29027968 locktype3 = 12 -29027969 goalCount = 0 -29027969 goalTotal = 40 -29027970 otherCount = 54 -~~~ -29028014 UP 10 -29028015 waslock = 0 -29028014 512 2048 -~~~ -29029618 DOWN 10 -29029618 0 2048 -~~~ -~~~ -~~~ -29029641 UP 10 -29029641 waslock = 0 -29029640 512 2048 -~~~ -29029643 homeCount = 116 -29029643 waitCount = 49 -29029644 ripCount = 46 -29029644 locktype1 = 1 -29029645 locktype2 = 8 -29029645 locktype3 = 12 -29029646 goalCount = 0 -29029646 goalTotal = 40 -29029667 otherCount = 54 -~~~ -29029668 DOWN 10 -29029668 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29029695 homeCount = 116 -29029696 waitCount = 49 -29029697 ripCount = 46 -29029697 locktype1 = 1 -29029698 locktype2 = 8 -29029698 locktype3 = 12 -29029699 goalCount = 0 -29029699 goalTotal = 40 -29029700 otherCount = 54 -~~~ -29030443 UP 10 -29030443 waslock = 0 -29030443 512 2048 -~~~ -29033311 DOWN 10 -29033311 0 2048 -~~~ -~~~ -~~~ -~~~ -29033333 homeCount = 116 -29033333 waitCount = 49 -29033334 ripCount = 46 -29033334 locktype1 = 1 -29033335 locktype2 = 8 -29033335 locktype3 = 12 -29033336 goalCount = 0 -29033336 goalTotal = 40 -29033337 otherCount = 54 -~~~ -29035977 UP 12 -29035977 2048 2048 -29037448 DOWN 12 -29037448 0 2048 -29037516 UP 12 -29037516 2048 2048 -29038598 DOWN 12 -29038598 0 2048 -29038676 UP 12 -29038676 2048 2048 -29038784 DOWN 12 -29038784 0 2048 -29038806 UP 12 -29038806 2048 2048 -29040477 CLICK1 -29040477 CLICK2 -~~~ -~~~ -~~~ -29040503 2048 67110912 -~~~ -29040653 2048 2048 -29046553 DOWN 12 -29046553 0 2048 -~~~ -~~~ -29046571 0 0 -~~~ -~~~ -29046573 0 1 -~~~ -~~~ -29046575 0 3 -~~~ -~~~ -29046577 0 7 -~~~ -29046578 UP 12 -29046578 2048 7 -~~~ -~~~ -29046580 2048 15 -~~~ -~~~ -29046581 2048 31 -~~~ -~~~ -29046583 2048 63 -~~~ -29046584 2048 127 -~~~ -~~~ -29046586 2048 255 -29046587 homeCount = 116 -29046608 waitCount = 50 -29046608 ripCount = 46 -29046609 locktype1 = 1 -29046609 locktype2 = 8 -29046610 locktype3 = 12 -29046610 goalCount = 0 -29046611 goalTotal = 40 -29046611 otherCount = 54 -~~~ -29046612 CURRENTGOAL IS [8] -~~~ -29046660 DOWN 12 -29046660 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29046699 homeCount = 116 -29046699 waitCount = 50 -29046700 ripCount = 46 -29046700 locktype1 = 1 -29046701 locktype2 = 8 -29046701 locktype3 = 12 -29046702 goalCount = 0 -29046702 goalTotal = 40 -29046703 otherCount = 54 -~~~ -29046704 CURRENTGOAL IS [8] -~~~ -29046725 UP 12 -29046725 2048 255 -29046750 DOWN 12 -29046750 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29046789 homeCount = 116 -29046790 waitCount = 50 -29046790 ripCount = 46 -29046791 locktype1 = 1 -29046792 locktype2 = 8 -29046792 locktype3 = 12 -29046793 goalCount = 0 -29046793 goalTotal = 40 -29046794 otherCount = 54 -~~~ -29046795 CURRENTGOAL IS [8] -~~~ -29046840 UP 12 -29046840 2048 255 -29047066 DOWN 12 -29047066 0 255 -29047070 UP 12 -29047070 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29047101 homeCount = 116 -29047102 waitCount = 50 -29047102 ripCount = 46 -29047103 locktype1 = 1 -29047103 locktype2 = 8 -29047104 locktype3 = 12 -29047104 goalCount = 0 -29047105 goalTotal = 40 -29047105 otherCount = 54 -~~~ -29047106 CURRENTGOAL IS [8] -~~~ -29048094 DOWN 12 -29048094 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29048130 homeCount = 116 -29048131 waitCount = 50 -29048131 ripCount = 46 -29048132 locktype1 = 1 -29048132 locktype2 = 8 -29048133 locktype3 = 12 -29048133 goalCount = 0 -29048134 goalTotal = 40 -29048134 otherCount = 54 -~~~ -29048135 CURRENTGOAL IS [8] -~~~ -29056595 UP 6 -29056595 32 255 -~~~ -~~~ -29057269 DOWN 6 -29057269 0 255 -~~~ -~~~ -29057285 0 254 -~~~ -~~~ -29057287 0 252 -~~~ -~~~ -29057289 0 248 -~~~ -~~~ -29057291 0 240 -~~~ -~~~ -29057292 0 224 -~~~ -~~~ -29057294 0 192 -~~~ -~~~ -29057296 0 128 -~~~ -29057297 32 128 -~~~ -~~~ -29057299 32 0 -~~~ -29057300 32 512 -29057301 homeCount = 116 -29057302 waitCount = 50 -29057302 ripCount = 46 -29057323 locktype1 = 1 -29057324 locktype2 = 8 -29057324 locktype3 = 12 -29057325 goalCount = 0 -29057325 goalTotal = 40 -29057326 otherCount = 55 -~~~ -29057340 DOWN 6 -29057340 0 512 -29061896 UP 10 -29061896 waslock = 0 -29061896 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29061923 512 16777728 -~~~ -29062073 512 512 -29062111 DOWN 10 -29062111 0 512 -~~~ -~~~ -29062139 0 1536 -~~~ -~~~ -29062141 0 1024 -29062142 homeCount = 117 -29062142 waitCount = 50 -29062143 ripCount = 46 -29062143 locktype1 = 1 -29062144 locktype2 = 8 -29062144 locktype3 = 12 -29062145 goalCount = 0 -29062145 goalTotal = 40 -29062146 otherCount = 55 -~~~ -29062222 UP 10 -29062222 waslock = 0 -29062222 512 1024 -~~~ -29066190 DOWN 10 -29066190 0 1024 -~~~ -~~~ -~~~ -~~~ -29066222 homeCount = 117 -29066223 waitCount = 50 -29066223 ripCount = 46 -29066224 locktype1 = 1 -29066224 locktype2 = 8 -29066225 locktype3 = 12 -29066225 goalCount = 0 -29066226 goalTotal = 40 -29066226 otherCount = 55 -~~~ -29068842 UP 11 -29068841 1024 1024 -29077842 BEEP1 -29077842 BEEP2 -~~~ -~~~ -~~~ -29077868 1024 33555456 -~~~ -29078018 1024 1024 -29086532 DOWN 11 -29086532 0 1024 -~~~ -~~~ -29086560 0 0 -~~~ -~~~ -29086561 0 1 -~~~ -~~~ -29086563 0 3 -~~~ -~~~ -29086565 0 7 -~~~ -~~~ -29086567 0 15 -~~~ -~~~ -29086569 0 31 -~~~ -~~~ -29086571 0 63 -~~~ -~~~ -29086572 0 127 -~~~ -~~~ -29086574 0 255 -29086575 homeCount = 117 -29086576 waitCount = 50 -29086576 ripCount = 47 -29086577 locktype1 = 1 -29086577 locktype2 = 8 -29086598 locktype3 = 12 -29086599 goalCount = 0 -29086599 goalTotal = 40 -29086600 otherCount = 55 -~~~ -29086601 CURRENTGOAL IS [8] -~~~ -29086601 UP 11 -29086601 1024 255 -29086651 DOWN 11 -29086651 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29086685 homeCount = 117 -29086685 waitCount = 50 -29086686 ripCount = 47 -29086686 locktype1 = 1 -29086687 locktype2 = 8 -29086687 locktype3 = 12 -29086688 goalCount = 0 -29086688 goalTotal = 40 -29086689 otherCount = 55 -~~~ -29086690 CURRENTGOAL IS [8] -~~~ -29093885 UP 3 -29093885 4 255 -~~~ -~~~ -29094389 DOWN 3 -29094389 0 255 -~~~ -~~~ -29094407 0 254 -~~~ -~~~ -29094409 0 252 -~~~ -~~~ -29094411 0 248 -~~~ -~~~ -29094413 0 240 -~~~ -~~~ -29094414 0 224 -~~~ -~~~ -29094416 0 192 -~~~ -~~~ -29094418 0 128 -~~~ -~~~ -29094420 0 0 -~~~ -~~~ -29094422 0 512 -29094423 homeCount = 117 -29094423 waitCount = 50 -29094424 ripCount = 47 -29094424 locktype1 = 1 -29094445 locktype2 = 8 -29094445 locktype3 = 12 -29094446 goalCount = 0 -29094446 goalTotal = 40 -29094447 otherCount = 56 -~~~ -29094505 4 512 -29094791 DOWN 3 -29094791 0 512 -29098404 UP 10 -29098405 waslock = 0 -29098404 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29098437 512 16777728 -~~~ -29098451 DOWN 10 -29098451 0 16777728 -~~~ -~~~ -29098472 0 16778752 -~~~ -~~~ -29098474 0 16778240 -29098475 homeCount = 118 -29098476 waitCount = 50 -29098476 ripCount = 47 -29098477 locktype1 = 1 -29098477 locktype2 = 8 -29098478 locktype3 = 12 -29098478 goalCount = 0 -29098479 goalTotal = 40 -29098479 otherCount = 56 -~~~ -29098509 UP 10 -29098510 waslock = 0 -29098509 512 16778240 -~~~ -29098587 512 1024 -29098590 DOWN 10 -29098590 0 1024 -~~~ -~~~ -~~~ -~~~ -29098618 homeCount = 118 -29098618 waitCount = 50 -29098619 ripCount = 47 -29098619 locktype1 = 1 -29098620 locktype2 = 8 -29098620 locktype3 = 12 -29098621 goalCount = 0 -29098621 goalTotal = 40 -29098622 otherCount = 56 -~~~ -29098713 UP 10 -29098713 waslock = 0 -29098713 512 1024 -~~~ -29101907 DOWN 10 -29101907 0 1024 -~~~ -~~~ -~~~ -~~~ -29101936 homeCount = 118 -29101937 waitCount = 50 -29101937 ripCount = 47 -29101938 locktype1 = 1 -29101938 locktype2 = 8 -29101939 locktype3 = 12 -29101939 goalCount = 0 -29101940 goalTotal = 40 -29101940 otherCount = 56 -~~~ -29101953 UP 10 -29101953 waslock = 0 -29101953 512 1024 -~~~ -29101998 DOWN 10 -29101998 0 1024 -~~~ -~~~ -~~~ -~~~ -29102018 homeCount = 118 -29102018 waitCount = 50 -29102019 ripCount = 47 -29102019 locktype1 = 1 -29102020 locktype2 = 8 -29102020 locktype3 = 12 -29102021 goalCount = 0 -29102021 goalTotal = 40 -29102022 otherCount = 56 -~~~ -29103694 UP 11 -29103694 1024 1024 -29112694 BEEP1 -29112694 BEEP2 -~~~ -~~~ -~~~ -29112721 1024 33555456 -~~~ -29112871 1024 1024 -29119544 DOWN 11 -29119544 0 1024 -~~~ -~~~ -29119570 0 0 -~~~ -~~~ -29119572 0 1 -~~~ -~~~ -29119574 0 3 -~~~ -~~~ -29119575 0 7 -~~~ -~~~ -29119577 0 15 -~~~ -~~~ -29119579 0 31 -~~~ -~~~ -29119581 0 63 -~~~ -~~~ -29119583 0 127 -~~~ -~~~ -29119585 0 255 -29119586 homeCount = 118 -29119586 waitCount = 50 -29119587 ripCount = 48 -29119587 locktype1 = 1 -29119588 locktype2 = 8 -29119609 locktype3 = 12 -29119609 goalCount = 0 -29119610 goalTotal = 40 -29119610 otherCount = 56 -~~~ -29119611 CURRENTGOAL IS [8] -~~~ -29119612 UP 11 -29119612 1024 255 -29119616 DOWN 11 -29119616 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29119668 homeCount = 118 -29119669 waitCount = 50 -29119669 ripCount = 48 -29119670 locktype1 = 1 -29119670 locktype2 = 8 -29119671 locktype3 = 12 -29119671 goalCount = 0 -29119672 goalTotal = 40 -29119672 otherCount = 56 -~~~ -29119673 CURRENTGOAL IS [8] -~~~ -29122599 UP 8 -29122599 128 255 -~~~ -~~~ -29122624 outer reward -~~~ -29122624 128 8388863 -~~~ -~~~ -29123074 128 255 -29130013 DOWN 8 -29130013 0 255 -~~~ -~~~ -29130032 0 254 -~~~ -~~~ -29130034 0 252 -~~~ -~~~ -29130036 0 248 -~~~ -~~~ -29130037 0 240 -~~~ -~~~ -29130039 0 224 -~~~ -~~~ -29130041 0 192 -~~~ -~~~ -29130043 0 128 -~~~ -~~~ -29130045 0 0 -~~~ -~~~ -29130047 0 512 -29130048 homeCount = 118 -29130048 waitCount = 50 -29130049 ripCount = 48 -29130049 locktype1 = 1 -29130050 locktype2 = 8 -29130071 locktype3 = 12 -29130071 goalCount = 1 -29130072 goalTotal = 41 -29130072 otherCount = 56 -~~~ -29130073 128 512 -29130117 DOWN 8 -29130117 0 512 -29135768 UP 10 -29135768 waslock = 0 -29135767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29135792 512 16777728 -~~~ -29135942 512 512 -29136087 DOWN 10 -29136087 0 512 -~~~ -~~~ -29136106 0 2560 -~~~ -~~~ -29136108 0 2048 -29136109 homeCount = 119 -29136109 waitCount = 50 -29136110 ripCount = 48 -29136110 locktype1 = 1 -29136111 locktype2 = 8 -29136111 locktype3 = 12 -29136112 goalCount = 1 -29136112 goalTotal = 41 -29136113 otherCount = 56 -~~~ -29136174 UP 10 -29136174 waslock = 0 -29136174 512 2048 -~~~ -29140118 DOWN 10 -29140118 0 2048 -~~~ -~~~ -~~~ -~~~ -29140138 homeCount = 119 -29140138 waitCount = 50 -29140139 ripCount = 48 -29140139 locktype1 = 1 -29140140 locktype2 = 8 -29140140 locktype3 = 12 -29140141 goalCount = 1 -29140141 goalTotal = 41 -29140142 otherCount = 56 -~~~ -29140155 UP 10 -29140156 waslock = 0 -29140155 512 2048 -~~~ -29140225 DOWN 10 -29140225 0 2048 -~~~ -~~~ -~~~ -~~~ -29140256 homeCount = 119 -29140257 waitCount = 50 -29140257 ripCount = 48 -29140258 locktype1 = 1 -29140258 locktype2 = 8 -29140259 locktype3 = 12 -29140259 goalCount = 1 -29140260 goalTotal = 41 -29140260 otherCount = 56 -~~~ -29140302 UP 10 -29140302 waslock = 0 -29140302 512 2048 -29140330 DOWN 10 -29140330 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29140355 homeCount = 119 -29140356 waitCount = 50 -29140356 ripCount = 48 -29140357 locktype1 = 1 -29140357 locktype2 = 8 -29140358 locktype3 = 12 -29140358 goalCount = 1 -29140359 goalTotal = 41 -29140359 otherCount = 56 -~~~ -29142523 UP 12 -29142523 2048 2048 -29145524 CLICK1 -29145524 CLICK2 -~~~ -~~~ -~~~ -29145549 2048 67110912 -~~~ -29145699 2048 2048 -29145721 DOWN 12 -29145721 0 2048 -29145728 UP 12 -29145728 2048 2048 -~~~ -~~~ -29145738 2048 0 -~~~ -~~~ -29145740 2048 1 -~~~ -~~~ -29145742 2048 3 -~~~ -~~~ -29145743 2048 7 -~~~ -~~~ -29145745 2048 15 -~~~ -~~~ -29145747 2048 31 -~~~ -~~~ -29145749 2048 63 -~~~ -~~~ -29145751 2048 127 -~~~ -~~~ -29145753 2048 255 -29145754 homeCount = 119 -29145754 waitCount = 51 -29145755 ripCount = 48 -29145775 locktype1 = 1 -29145776 locktype2 = 8 -29145776 locktype3 = 12 -29145777 goalCount = 1 -29145777 goalTotal = 41 -29145778 otherCount = 56 -~~~ -29145779 CURRENTGOAL IS [8] -~~~ -29145803 DOWN 12 -29145803 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29145844 homeCount = 119 -29145845 waitCount = 51 -29145846 ripCount = 48 -29145846 locktype1 = 1 -29145847 locktype2 = 8 -29145847 locktype3 = 12 -29145848 goalCount = 1 -29145848 goalTotal = 41 -29145849 otherCount = 56 -~~~ -29145850 CURRENTGOAL IS [8] -~~~ -29145897 UP 12 -29145897 2048 255 -29151732 DOWN 12 -29151732 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29151764 homeCount = 119 -29151765 waitCount = 51 -29151765 ripCount = 48 -29151766 locktype1 = 1 -29151766 locktype2 = 8 -29151767 locktype3 = 12 -29151767 goalCount = 1 -29151768 goalTotal = 41 -29151768 otherCount = 56 -~~~ -29151769 CURRENTGOAL IS [8] -~~~ -29151798 UP 12 -29151798 2048 255 -29151813 DOWN 12 -29151813 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29151848 homeCount = 119 -29151849 waitCount = 51 -29151849 ripCount = 48 -29151850 locktype1 = 1 -29151850 locktype2 = 8 -29151851 locktype3 = 12 -29151851 goalCount = 1 -29151852 goalTotal = 41 -29151852 otherCount = 56 -~~~ -29151854 CURRENTGOAL IS [8] -~~~ -29157194 UP 1 -29157194 1 255 -~~~ -~~~ -29157720 DOWN 1 -29157720 0 255 -~~~ -~~~ -29157744 0 254 -~~~ -~~~ -29157745 0 252 -~~~ -~~~ -29157747 0 248 -~~~ -~~~ -29157749 0 240 -~~~ -~~~ -29157751 0 224 -~~~ -~~~ -29157753 0 192 -~~~ -~~~ -29157755 0 128 -~~~ -~~~ -29157756 0 0 -~~~ -~~~ -29157758 0 512 -29157759 homeCount = 119 -29157760 waitCount = 51 -29157760 ripCount = 48 -29157761 locktype1 = 1 -29157781 locktype2 = 8 -29157782 locktype3 = 12 -29157782 goalCount = 1 -29157783 goalTotal = 41 -29157784 otherCount = 57 -~~~ -29161043 UP 10 -29161044 waslock = 0 -29161043 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29161070 512 16777728 -~~~ -29161220 512 512 -29167184 DOWN 10 -29167184 0 512 -~~~ -~~~ -29167204 0 2560 -~~~ -~~~ -29167206 0 2048 -29167207 homeCount = 120 -29167208 waitCount = 51 -29167208 ripCount = 48 -29167209 locktype1 = 1 -29167209 locktype2 = 8 -29167210 locktype3 = 12 -29167210 goalCount = 1 -29167211 goalTotal = 41 -29167211 otherCount = 57 -~~~ -29167233 UP 10 -29167233 waslock = 0 -29167233 512 2048 -~~~ -29167284 DOWN 10 -29167283 0 2048 -~~~ -~~~ -~~~ -~~~ -29167308 homeCount = 120 -29167309 waitCount = 51 -29167309 ripCount = 48 -29167310 locktype1 = 1 -29167310 locktype2 = 8 -29167311 locktype3 = 12 -29167311 goalCount = 1 -29167312 goalTotal = 41 -29167312 otherCount = 57 -~~~ -29169240 UP 12 -29169240 2048 2048 -29173241 CLICK1 -29173241 CLICK2 -~~~ -~~~ -~~~ -29173267 2048 67110912 -~~~ -29173417 2048 2048 -29180620 DOWN 12 -29180620 0 2048 -~~~ -~~~ -29180645 0 0 -~~~ -~~~ -29180647 0 1 -~~~ -~~~ -29180649 0 3 -~~~ -~~~ -29180650 0 7 -~~~ -~~~ -29180652 0 15 -~~~ -~~~ -29180654 0 31 -~~~ -~~~ -29180656 0 63 -~~~ -~~~ -29180658 0 127 -~~~ -~~~ -29180660 0 255 -29180661 homeCount = 120 -29180661 waitCount = 52 -29180662 ripCount = 48 -29180662 locktype1 = 1 -29180663 locktype2 = 8 -29180684 locktype3 = 12 -29180684 goalCount = 1 -29180685 goalTotal = 41 -29180685 otherCount = 57 -~~~ -29180686 CURRENTGOAL IS [8] -~~~ -29180699 UP 12 -29180699 2048 255 -29180715 DOWN 12 -29180715 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29180750 homeCount = 120 -29180750 waitCount = 52 -29180751 ripCount = 48 -29180751 locktype1 = 1 -29180752 locktype2 = 8 -29180752 locktype3 = 12 -29180753 goalCount = 1 -29180753 goalTotal = 41 -29180754 otherCount = 57 -~~~ -29180755 CURRENTGOAL IS [8] -~~~ -29185318 UP 1 -29185318 1 255 -~~~ -~~~ -29185916 DOWN 1 -29185916 0 255 -~~~ -~~~ -29185935 0 254 -~~~ -~~~ -29185937 0 252 -~~~ -~~~ -29185939 0 248 -~~~ -~~~ -29185941 0 240 -~~~ -~~~ -29185943 0 224 -~~~ -~~~ -29185944 0 192 -~~~ -~~~ -29185946 0 128 -~~~ -~~~ -29185948 0 0 -~~~ -~~~ -29185950 0 512 -29185951 homeCount = 120 -29185952 waitCount = 52 -29185952 ripCount = 48 -29185953 locktype1 = 1 -29185953 locktype2 = 8 -29185974 locktype3 = 12 -29185975 goalCount = 1 -29185975 goalTotal = 41 -29185976 otherCount = 58 -~~~ -29186163 1 512 -29186492 DOWN 1 -29186492 0 512 -29186605 1 512 -29187016 DOWN 1 -29187016 0 512 -29187039 1 512 -29187068 DOWN 1 -29187068 0 512 -29191463 UP 10 -29191463 waslock = 0 -29191463 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29191495 512 16777728 -~~~ -29191624 DOWN 10 -29191624 0 16777728 -29191645 0 512 -~~~ -~~~ -29191649 0 1536 -~~~ -~~~ -29191651 0 1024 -29191652 homeCount = 121 -29191652 waitCount = 52 -29191653 ripCount = 48 -29191653 locktype1 = 1 -29191654 locktype2 = 8 -29191654 locktype3 = 12 -29191655 goalCount = 1 -29191655 goalTotal = 41 -29191656 otherCount = 58 -~~~ -29191677 UP 10 -29191677 waslock = 0 -29191677 512 1024 -~~~ -29191706 DOWN 10 -29191706 0 1024 -~~~ -~~~ -~~~ -~~~ -29191722 homeCount = 121 -29191722 waitCount = 52 -29191723 ripCount = 48 -29191723 locktype1 = 1 -29191724 locktype2 = 8 -29191724 locktype3 = 12 -29191725 goalCount = 1 -29191725 goalTotal = 41 -29191726 otherCount = 58 -~~~ -29192235 UP 10 -29192235 waslock = 0 -29192235 512 1024 -~~~ -29198177 DOWN 10 -29198177 0 1024 -~~~ -~~~ -~~~ -~~~ -29198200 homeCount = 121 -29198201 waitCount = 52 -29198201 ripCount = 48 -29198202 locktype1 = 1 -29198202 locktype2 = 8 -29198203 locktype3 = 12 -29198203 goalCount = 1 -29198204 goalTotal = 41 -29198204 otherCount = 58 -~~~ -29198220 UP 10 -29198221 waslock = 0 -29198220 512 1024 -29198243 DOWN 10 -29198243 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -29198272 homeCount = 121 -29198272 waitCount = 52 -29198273 ripCount = 48 -29198273 locktype1 = 1 -29198274 locktype2 = 8 -29198274 locktype3 = 12 -29198275 goalCount = 1 -29198275 goalTotal = 41 -29198276 otherCount = 58 -~~~ -29199804 UP 11 -29199804 1024 1024 -29203422 DOWN 11 -29203422 0 1024 -29203433 UP 11 -29203433 1024 1024 -29203804 BEEP1 -29203804 BEEP2 -~~~ -~~~ -~~~ -29203828 1024 33555456 -~~~ -29203978 1024 1024 -29204975 DOWN 11 -29204975 0 1024 -~~~ -~~~ -29205002 0 0 -~~~ -~~~ -29205003 0 1 -~~~ -~~~ -29205005 0 3 -~~~ -~~~ -29205007 0 7 -~~~ -~~~ -29205009 0 15 -~~~ -~~~ -29205011 0 31 -~~~ -~~~ -29205012 0 63 -~~~ -~~~ -29205014 0 127 -~~~ -29205016 UP 11 -29205016 1024 127 -~~~ -29205017 homeCount = 121 -29205018 waitCount = 52 -29205018 ripCount = 49 -29205019 locktype1 = 1 -29205040 locktype2 = 8 -29205041 locktype3 = 12 -29205041 goalCount = 1 -29205042 goalTotal = 41 -29205042 otherCount = 58 -~~~ -29205043 CURRENTGOAL IS [8] -~~~ -29205044 1024 255 -29205098 DOWN 11 -29205098 0 255 -29205104 UP 11 -29205104 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205137 homeCount = 121 -29205138 waitCount = 52 -29205138 ripCount = 49 -29205139 locktype1 = 1 -29205139 locktype2 = 8 -29205140 locktype3 = 12 -29205141 goalCount = 1 -29205141 goalTotal = 41 -29205142 otherCount = 58 -~~~ -29205143 CURRENTGOAL IS [8] -~~~ -29205893 DOWN 11 -29205893 0 255 -29205909 UP 11 -29205909 1024 255 -~~~ -~~~ -~~~ -~~~ -29205929 DOWN 11 -29205929 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205942 homeCount = 121 -29205943 waitCount = 52 -29205943 ripCount = 49 -29205944 locktype1 = 1 -29205944 locktype2 = 8 -29205945 locktype3 = 12 -29205945 goalCount = 1 -29205946 goalTotal = 41 -29205946 otherCount = 58 -~~~ -29205948 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205975 homeCount = 121 -29205976 waitCount = 52 -29205976 ripCount = 49 -29205977 locktype1 = 1 -29205977 locktype2 = 8 -29205978 locktype3 = 12 -29205978 goalCount = 1 -29206000 goalTotal = 41 -29206000 otherCount = 58 -~~~ -29206001 CURRENTGOAL IS [8] -~~~ -29206071 UP 11 -29206071 1024 255 -29206350 DOWN 11 -29206350 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29206391 homeCount = 121 -29206392 waitCount = 52 -29206392 ripCount = 49 -29206393 locktype1 = 1 -29206393 locktype2 = 8 -29206394 locktype3 = 12 -29206395 goalCount = 1 -29206395 goalTotal = 41 -29206396 otherCount = 58 -~~~ -29206397 CURRENTGOAL IS [8] -~~~ -29207308 UP 11 -29207308 1024 255 -29207410 DOWN 11 -29207410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29207449 UP 11 -29207449 1024 255 -~~~ -~~~ -~~~ -~~~ -29207454 homeCount = 121 -29207454 waitCount = 52 -29207455 ripCount = 49 -29207455 locktype1 = 1 -29207456 locktype2 = 8 -29207456 locktype3 = 12 -29207457 goalCount = 1 -29207457 goalTotal = 41 -29207458 otherCount = 58 -~~~ -29207459 CURRENTGOAL IS [8] -~~~ -29208017 DOWN 11 -29208017 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208055 homeCount = 121 -29208055 waitCount = 52 -29208056 ripCount = 49 -29208056 locktype1 = 1 -29208057 locktype2 = 8 -29208057 locktype3 = 12 -29208058 goalCount = 1 -29208058 goalTotal = 41 -29208059 otherCount = 58 -~~~ -29208060 CURRENTGOAL IS [8] -~~~ -29208103 UP 11 -29208103 1024 255 -29208328 DOWN 11 -29208328 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208368 homeCount = 121 -29208368 waitCount = 52 -29208369 ripCount = 49 -29208369 locktype1 = 1 -29208370 locktype2 = 8 -29208370 locktype3 = 12 -29208371 goalCount = 1 -29208371 goalTotal = 41 -29208372 otherCount = 58 -~~~ -29208373 CURRENTGOAL IS [8] -~~~ -29208456 UP 11 -29208456 1024 255 -29208683 DOWN 11 -29208683 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208712 UP 11 -29208712 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -29208717 homeCount = 121 -29208718 waitCount = 52 -29208718 ripCount = 49 -29208719 locktype1 = 1 -29208719 locktype2 = 8 -29208720 locktype3 = 12 -29208720 goalCount = 1 -29208721 goalTotal = 41 -29208721 otherCount = 58 -~~~ -29208722 CURRENTGOAL IS [8] -~~~ -29214121 DOWN 11 -29214121 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214151 UP 11 -29214151 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214158 homeCount = 121 -29214158 waitCount = 52 -29214159 ripCount = 49 -29214159 locktype1 = 1 -29214160 locktype2 = 8 -29214160 locktype3 = 12 -29214161 goalCount = 1 -29214162 goalTotal = 41 -29214162 otherCount = 58 -~~~ -29214163 CURRENTGOAL IS [8] -~~~ -29214210 DOWN 11 -29214210 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214248 homeCount = 121 -29214248 waitCount = 52 -29214249 ripCount = 49 -29214249 locktype1 = 1 -29214250 locktype2 = 8 -29214250 locktype3 = 12 -29214251 goalCount = 1 -29214251 goalTotal = 41 -29214252 otherCount = 58 -~~~ -29214253 CURRENTGOAL IS [8] -~~~ -29218329 UP 7 -29218329 64 255 -~~~ -~~~ -29218784 DOWN 7 -29218784 0 255 -~~~ -~~~ -29218803 0 254 -~~~ -~~~ -29218805 0 252 -~~~ -~~~ -29218807 0 248 -~~~ -~~~ -29218809 0 240 -~~~ -~~~ -29218811 0 224 -~~~ -29218812 64 224 -~~~ -~~~ -29218814 64 192 -~~~ -29218815 64 128 -~~~ -~~~ -29218816 64 0 -~~~ -~~~ -29218818 64 512 -29218819 homeCount = 121 -29218819 waitCount = 52 -29218841 ripCount = 49 -29218841 locktype1 = 1 -29218842 locktype2 = 8 -29218842 locktype3 = 12 -29218843 goalCount = 1 -29218843 goalTotal = 41 -29218844 otherCount = 59 -~~~ -29219408 DOWN 7 -29219408 0 512 -29224639 UP 10 -29224640 waslock = 0 -29224639 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29224670 512 16777728 -~~~ -29224820 512 512 -29224880 DOWN 10 -29224880 0 512 -~~~ -~~~ -29224910 0 2560 -~~~ -~~~ -29224912 0 2048 -29224913 homeCount = 122 -29224913 waitCount = 52 -29224914 ripCount = 49 -29224914 locktype1 = 1 -29224915 locktype2 = 8 -29224915 locktype3 = 12 -29224916 goalCount = 1 -29224916 goalTotal = 41 -29224917 otherCount = 59 -~~~ -29224952 UP 10 -29224952 waslock = 0 -29224952 512 2048 -~~~ -29229705 DOWN 10 -29229705 0 2048 -~~~ -~~~ -~~~ -~~~ -29229726 homeCount = 122 -29229727 waitCount = 52 -29229727 ripCount = 49 -29229728 locktype1 = 1 -29229728 locktype2 = 8 -29229729 locktype3 = 12 -29229729 goalCount = 1 -29229730 goalTotal = 41 -29229730 otherCount = 59 -~~~ -29229738 UP 10 -29229738 waslock = 0 -29229738 512 2048 -~~~ -29229795 DOWN 10 -29229795 0 2048 -~~~ -~~~ -~~~ -~~~ -29229818 homeCount = 122 -29229818 waitCount = 52 -29229819 ripCount = 49 -29229819 locktype1 = 1 -29229820 locktype2 = 8 -29229820 locktype3 = 12 -29229821 goalCount = 1 -29229821 goalTotal = 41 -29229822 otherCount = 59 -~~~ -29232290 UP 12 -29232290 2048 2048 -29232929 DOWN 12 -29232929 0 2048 -29233130 LOCKOUT 3 -~~~ -29233156 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29233162 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29233439 UP 12 -29233439 2048 0 -29233601 DOWN 12 -29233601 0 0 -29233714 UP 12 -29233714 2048 0 -29233929 DOWN 12 -29233929 0 0 -29244665 UP 4 -29244665 8 0 -29244691 DOWN 4 -29244691 0 0 -29244744 8 0 -29245299 DOWN 4 -29245299 0 0 -29245374 8 0 -29245764 DOWN 4 -29245764 0 0 -29256362 512 0 -29256669 0 0 -29256725 512 0 -29257036 0 0 -29257137 512 0 -29257143 0 0 -29258156 LOCKEND -~~~ -~~~ -~~~ -29258176 0 512 -29259266 UP 10 -29259266 waslock = 0 -29259266 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29259291 512 16777728 -~~~ -29259347 DOWN 10 -29259347 0 16777728 -~~~ -~~~ -29259364 0 16778752 -~~~ -~~~ -29259366 0 16778240 -29259367 homeCount = 123 -29259368 waitCount = 52 -29259368 ripCount = 49 -29259369 locktype1 = 1 -29259369 locktype2 = 8 -29259370 locktype3 = 13 -29259370 goalCount = 1 -29259371 goalTotal = 41 -29259371 otherCount = 59 -~~~ -29259392 UP 10 -29259393 waslock = 0 -29259392 512 16778240 -~~~ -29259441 512 1024 -29264964 DOWN 10 -29264964 0 1024 -~~~ -~~~ -~~~ -~~~ -29264987 homeCount = 123 -29264988 waitCount = 52 -29264988 ripCount = 49 -29264989 locktype1 = 1 -29264989 locktype2 = 8 -29264990 locktype3 = 13 -29264990 goalCount = 1 -29264991 goalTotal = 41 -29264991 otherCount = 59 -~~~ -29266921 UP 11 -29266920 1024 1024 -29270765 DOWN 11 -29270765 0 1024 -29270788 UP 11 -29270788 1024 1024 -29275741 DOWN 11 -29275741 0 1024 -29275751 UP 11 -29275750 1024 1024 -29275921 BEEP1 -29275921 BEEP2 -~~~ -~~~ -~~~ -29275948 1024 33555456 -~~~ -29276098 1024 1024 -29284636 DOWN 11 -29284635 0 1024 -~~~ -~~~ -29284655 0 0 -~~~ -~~~ -29284657 0 1 -~~~ -~~~ -29284659 0 3 -~~~ -~~~ -29284661 0 7 -~~~ -~~~ -29284662 0 15 -~~~ -~~~ -29284664 0 31 -~~~ -~~~ -29284666 0 63 -~~~ -~~~ -29284668 0 127 -~~~ -~~~ -29284670 0 255 -29284671 homeCount = 123 -29284671 waitCount = 52 -29284672 ripCount = 50 -29284672 locktype1 = 1 -29284673 locktype2 = 8 -29284694 locktype3 = 13 -29284694 goalCount = 1 -29284695 goalTotal = 41 -29284695 otherCount = 59 -~~~ -29284696 CURRENTGOAL IS [8] -~~~ -29284697 UP 11 -29284697 1024 255 -29284755 DOWN 11 -29284755 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29284796 homeCount = 123 -29284796 waitCount = 52 -29284797 ripCount = 50 -29284797 locktype1 = 1 -29284798 locktype2 = 8 -29284799 locktype3 = 13 -29284799 goalCount = 1 -29284800 goalTotal = 41 -29284800 otherCount = 59 -~~~ -29284801 CURRENTGOAL IS [8] -~~~ -29288212 UP 8 -29288212 128 255 -~~~ -~~~ -29288231 outer reward -~~~ -29288232 128 8388863 -~~~ -~~~ -29288549 DOWN 8 -29288549 0 8388863 -~~~ -~~~ -29288570 0 8388862 -~~~ -~~~ -29288571 0 8388860 -~~~ -~~~ -29288573 0 8388856 -~~~ -29288575 128 8388856 -~~~ -~~~ -29288576 128 8388848 -~~~ -~~~ -29288578 128 8388832 -~~~ -29288579 128 8388800 -~~~ -~~~ -29288581 128 8388736 -~~~ -~~~ -29288582 128 8388608 -~~~ -~~~ -29288584 128 8389120 -29288606 homeCount = 123 -29288607 waitCount = 52 -29288607 ripCount = 50 -29288608 locktype1 = 1 -29288608 locktype2 = 8 -29288609 locktype3 = 13 -29288609 goalCount = 2 -29288610 goalTotal = 42 -29288610 otherCount = 59 -~~~ -29288681 128 512 -29288820 DOWN 8 -29288820 0 512 -29288834 128 512 -29288934 DOWN 8 -29288934 0 512 -29288960 128 512 -29289062 DOWN 8 -29289062 0 512 -29289076 128 512 -29289179 DOWN 8 -29289179 0 512 -29289202 128 512 -29289305 DOWN 8 -29289305 0 512 -29289323 128 512 -29289431 DOWN 8 -29289431 0 512 -29289453 128 512 -29289581 DOWN 8 -29289581 0 512 -29289598 128 512 -29289717 DOWN 8 -29289717 0 512 -29289724 128 512 -29295838 DOWN 8 -29295838 0 512 -29300855 UP 10 -29300856 waslock = 0 -29300855 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29300888 512 16777728 -~~~ -29301038 512 512 -29301135 DOWN 10 -29301135 0 512 -~~~ -~~~ -29301161 0 1536 -~~~ -~~~ -29301163 0 1024 -29301164 homeCount = 124 -29301164 waitCount = 52 -29301165 ripCount = 50 -29301165 locktype1 = 1 -29301166 locktype2 = 8 -29301166 locktype3 = 13 -29301167 goalCount = 2 -29301167 goalTotal = 42 -29301168 otherCount = 59 -~~~ -29301247 UP 10 -29301247 waslock = 0 -29301247 512 1024 -~~~ -29308901 DOWN 10 -29308901 0 1024 -29308911 UP 10 -29308911 waslock = 0 -29308911 512 1024 -~~~ -~~~ -~~~ -~~~ -29308934 homeCount = 124 -29308935 waitCount = 52 -29308936 ripCount = 50 -29308936 locktype1 = 1 -29308937 locktype2 = 8 -29308937 locktype3 = 13 -29308938 goalCount = 2 -29308938 goalTotal = 42 -29308939 otherCount = 59 -~~~ -~~~ -29308997 DOWN 10 -29308997 0 1024 -~~~ -~~~ -~~~ -~~~ -29309025 homeCount = 124 -29309026 waitCount = 52 -29309026 ripCount = 50 -29309027 locktype1 = 1 -29309027 locktype2 = 8 -29309028 locktype3 = 13 -29309028 goalCount = 2 -29309029 goalTotal = 42 -29309029 otherCount = 59 -~~~ -29311128 UP 11 -29311128 1024 1024 -29314264 DOWN 11 -29314264 0 1024 -29314275 UP 11 -29314275 1024 1024 -29318628 BEEP1 -29318628 BEEP2 -~~~ -~~~ -~~~ -29318653 1024 33555456 -~~~ -29318803 1024 1024 -29327074 DOWN 11 -29327074 0 1024 -~~~ -~~~ -29327093 0 0 -~~~ -~~~ -29327095 0 1 -~~~ -~~~ -29327096 0 3 -~~~ -~~~ -29327098 0 7 -~~~ -~~~ -29327100 0 15 -~~~ -~~~ -29327102 0 31 -~~~ -~~~ -29327104 0 63 -~~~ -~~~ -29327105 0 127 -~~~ -~~~ -29327107 0 255 -29327108 homeCount = 124 -29327109 waitCount = 52 -29327109 ripCount = 51 -29327110 locktype1 = 1 -29327110 locktype2 = 8 -29327131 locktype3 = 13 -29327132 goalCount = 2 -29327132 goalTotal = 42 -29327133 otherCount = 59 -~~~ -29327134 CURRENTGOAL IS [8] -~~~ -29327143 UP 11 -29327143 1024 255 -29327191 DOWN 11 -29327191 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29327227 homeCount = 124 -29327228 waitCount = 52 -29327228 ripCount = 51 -29327229 locktype1 = 1 -29327229 locktype2 = 8 -29327230 locktype3 = 13 -29327230 goalCount = 2 -29327231 goalTotal = 42 -29327231 otherCount = 59 -~~~ -29327233 CURRENTGOAL IS [8] -~~~ -29331590 UP 8 -29331590 128 255 -~~~ -~~~ -29331613 outer reward -~~~ -29331614 128 8388863 -~~~ -~~~ -29331812 DOWN 8 -29331812 0 8388863 -~~~ -~~~ -29331833 0 8388862 -~~~ -~~~ -29331835 0 8388860 -~~~ -~~~ -29331837 0 8388856 -~~~ -~~~ -29331838 0 8388848 -~~~ -~~~ -29331840 0 8388832 -~~~ -~~~ -29331842 0 8388800 -~~~ -~~~ -29331844 0 8388736 -~~~ -~~~ -29331846 0 8388608 -~~~ -~~~ -29331848 0 8389120 -29331849 homeCount = 124 -29331849 waitCount = 52 -29331850 ripCount = 51 -29331871 locktype1 = 1 -29331871 locktype2 = 8 -29331872 locktype3 = 13 -29331872 goalCount = 3 -29331873 goalTotal = 43 -29331873 otherCount = 59 -~~~ -29331874 128 8389120 -29332063 128 512 -29332236 DOWN 8 -29332236 0 512 -29332246 128 512 -29332338 DOWN 8 -29332338 0 512 -29332375 128 512 -29332458 DOWN 8 -29332458 0 512 -29332486 128 512 -29332583 DOWN 8 -29332583 0 512 -29332608 128 512 -29332710 DOWN 8 -29332710 0 512 -29332732 128 512 -29332982 DOWN 8 -29332982 0 512 -29332985 128 512 -29333239 DOWN 8 -29333239 0 512 -29333247 128 512 -29338471 DOWN 8 -29338471 0 512 -29344506 UP 10 -29344507 waslock = 0 -29344506 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29344530 512 16777728 -~~~ -29344680 512 512 -29349720 DOWN 10 -29349720 0 512 -~~~ -~~~ -29349745 0 2560 -~~~ -~~~ -29349746 0 2048 -29349747 homeCount = 125 -29349748 waitCount = 52 -29349749 ripCount = 51 -29349749 locktype1 = 1 -29349750 locktype2 = 8 -29349750 locktype3 = 13 -29349751 goalCount = 3 -29349751 goalTotal = 43 -29349752 otherCount = 59 -~~~ -29349773 UP 10 -29349773 waslock = 0 -29349773 512 2048 -~~~ -29349825 DOWN 10 -29349825 0 2048 -~~~ -~~~ -~~~ -~~~ -29349849 homeCount = 125 -29349849 waitCount = 52 -29349850 ripCount = 51 -29349850 locktype1 = 1 -29349851 locktype2 = 8 -29349851 locktype3 = 13 -29349852 goalCount = 3 -29349852 goalTotal = 43 -29349853 otherCount = 59 -~~~ -29352255 UP 12 -29352255 2048 2048 -29352543 DOWN 12 -29352543 0 2048 -29352728 UP 12 -29352728 2048 2048 -29355255 CLICK1 -29355255 CLICK2 -~~~ -~~~ -~~~ -29355278 2048 67110912 -~~~ -29355428 2048 2048 -29362752 DOWN 12 -29362752 0 2048 -~~~ -~~~ -29362776 0 0 -~~~ -~~~ -29362778 0 1 -~~~ -~~~ -29362780 0 3 -~~~ -~~~ -29362782 0 7 -~~~ -~~~ -29362783 0 15 -~~~ -~~~ -29362785 0 31 -~~~ -~~~ -29362787 0 63 -~~~ -~~~ -29362789 0 127 -~~~ -29362790 UP 12 -29362790 2048 127 -~~~ -29362792 homeCount = 125 -29362792 waitCount = 53 -29362793 ripCount = 51 -29362793 locktype1 = 1 -29362815 locktype2 = 8 -29362815 locktype3 = 13 -29362816 goalCount = 3 -29362816 goalTotal = 43 -29362817 otherCount = 59 -~~~ -29362818 CURRENTGOAL IS [8] -~~~ -29362818 2048 255 -29362852 DOWN 12 -29362852 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29362893 homeCount = 125 -29362894 waitCount = 53 -29362894 ripCount = 51 -29362895 locktype1 = 1 -29362895 locktype2 = 8 -29362896 locktype3 = 13 -29362896 goalCount = 3 -29362897 goalTotal = 43 -29362897 otherCount = 59 -~~~ -29362898 CURRENTGOAL IS [8] -~~~ -29367715 UP 8 -29367715 128 255 -~~~ -~~~ -29367735 outer reward -~~~ -29367735 128 8388863 -~~~ -~~~ -29367928 DOWN 8 -29367928 0 8388863 -~~~ -~~~ -29367952 0 8388862 -~~~ -~~~ -29367953 0 8388860 -~~~ -~~~ -29367955 0 8388856 -~~~ -~~~ -29367957 0 8388848 -~~~ -~~~ -29367959 0 8388832 -~~~ -~~~ -29367961 0 8388800 -~~~ -~~~ -29367962 0 8388736 -~~~ -~~~ -29367964 0 8388608 -~~~ -~~~ -29367966 0 8389120 -29367967 homeCount = 125 -29367968 waitCount = 53 -29367968 ripCount = 51 -29367989 locktype1 = 1 -29367990 locktype2 = 8 -29367990 locktype3 = 13 -29367991 goalCount = 4 -29367991 goalTotal = 44 -29367992 otherCount = 59 -~~~ -29367998 128 8389120 -29368185 128 512 -29368242 DOWN 8 -29368242 0 512 -29368254 128 512 -29368363 DOWN 8 -29368363 0 512 -29368371 128 512 -29368479 DOWN 8 -29368479 0 512 -29368499 128 512 -29368596 DOWN 8 -29368596 0 512 -29368622 128 512 -29368726 DOWN 8 -29368726 0 512 -29368746 128 512 -29368850 DOWN 8 -29368850 0 512 -29368886 128 512 -29368991 DOWN 8 -29368991 0 512 -29369005 128 512 -29374850 DOWN 8 -29374850 0 512 -29374897 128 512 -29374950 DOWN 8 -29374950 0 512 -29379956 UP 10 -29379957 waslock = 0 -29379956 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29379988 512 16777728 -~~~ -29380138 512 512 -29383458 DOWN 10 -29383458 0 512 -~~~ -~~~ -29383482 0 1536 -~~~ -~~~ -29383484 0 1024 -29383485 homeCount = 126 -29383485 waitCount = 53 -29383486 ripCount = 51 -29383486 locktype1 = 1 -29383487 locktype2 = 8 -29383487 locktype3 = 13 -29383488 goalCount = 4 -29383488 goalTotal = 44 -29383489 otherCount = 59 -~~~ -29383510 UP 10 -29383510 waslock = 0 -29383510 512 1024 -~~~ -29383556 DOWN 10 -29383556 0 1024 -~~~ -~~~ -~~~ -~~~ -29383589 homeCount = 126 -29383590 waitCount = 53 -29383590 ripCount = 51 -29383591 locktype1 = 1 -29383591 locktype2 = 8 -29383592 locktype3 = 13 -29383592 goalCount = 4 -29383593 goalTotal = 44 -29383593 otherCount = 59 -~~~ -29385874 UP 11 -29385873 1024 1024 -29389139 DOWN 11 -29389138 0 1024 -29389207 UP 11 -29389207 1024 1024 -29390700 DOWN 11 -29390700 0 1024 -29390716 UP 11 -29390716 1024 1024 -29390735 DOWN 11 -29390735 0 1024 -29390772 UP 11 -29390772 1024 1024 -29393374 BEEP1 -29393374 BEEP2 -~~~ -~~~ -~~~ -29393395 1024 33555456 -~~~ -29393545 1024 1024 -29398229 DOWN 11 -29398229 0 1024 -29398250 UP 11 -29398250 1024 1024 -~~~ -~~~ -~~~ -29398252 1024 0 -~~~ -29398253 1024 1 -~~~ -~~~ -29398255 1024 3 -~~~ -~~~ -29398256 1024 7 -~~~ -~~~ -29398258 1024 15 -~~~ -~~~ -29398260 1024 31 -~~~ -~~~ -29398262 1024 63 -~~~ -~~~ -29398264 1024 127 -~~~ -~~~ -29398266 1024 255 -29398267 homeCount = 126 -29398288 waitCount = 53 -29398288 ripCount = 52 -29398289 locktype1 = 1 -29398289 locktype2 = 8 -29398290 locktype3 = 13 -29398290 goalCount = 4 -29398291 goalTotal = 44 -29398291 otherCount = 59 -~~~ -29398292 CURRENTGOAL IS [8] -~~~ -29401721 DOWN 11 -29401721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29401758 homeCount = 126 -29401758 waitCount = 53 -29401759 ripCount = 52 -29401760 locktype1 = 1 -29401760 locktype2 = 8 -29401761 locktype3 = 13 -29401761 goalCount = 4 -29401762 goalTotal = 44 -29401762 otherCount = 59 -~~~ -29401763 CURRENTGOAL IS [8] -~~~ -29401784 UP 11 -29401784 1024 255 -29401846 DOWN 11 -29401846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29401878 homeCount = 126 -29401878 waitCount = 53 -29401879 ripCount = 52 -29401879 locktype1 = 1 -29401880 locktype2 = 8 -29401880 locktype3 = 13 -29401881 goalCount = 4 -29401881 goalTotal = 44 -29401882 otherCount = 59 -~~~ -29401883 CURRENTGOAL IS [8] -~~~ -29406312 UP 8 -29406312 128 255 -~~~ -~~~ -29406334 outer reward -~~~ -29406335 128 8388863 -~~~ -~~~ -29406562 DOWN 8 -29406562 0 8388863 -~~~ -~~~ -29406584 0 8388862 -~~~ -~~~ -29406586 0 8388860 -~~~ -~~~ -29406588 0 8388856 -~~~ -~~~ -29406590 0 8388848 -~~~ -~~~ -29406591 0 8388832 -~~~ -~~~ -29406593 0 8388800 -~~~ -~~~ -29406595 0 8388736 -~~~ -~~~ -29406597 0 8388608 -~~~ -~~~ -29406599 0 8389120 -29406600 homeCount = 126 -29406600 waitCount = 53 -29406601 ripCount = 52 -29406622 locktype1 = 1 -29406623 locktype2 = 8 -29406623 locktype3 = 13 -29406624 goalCount = 5 -29406624 goalTotal = 45 -29406625 otherCount = 59 -~~~ -29406625 128 8389120 -29406784 128 512 -29406967 DOWN 8 -29406967 0 512 -29406996 128 512 -29407085 DOWN 8 -29407085 0 512 -29407104 128 512 -29407202 DOWN 8 -29407202 0 512 -29407224 128 512 -29407338 DOWN 8 -29407338 0 512 -29407357 128 512 -29413909 DOWN 8 -29413909 0 512 -29413959 128 512 -29414006 DOWN 8 -29414006 0 512 -29418802 UP 10 -29418803 waslock = 0 -29418802 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29418830 512 16777728 -~~~ -29418980 512 512 -29419012 DOWN 10 -29419012 0 512 -~~~ -~~~ -29419037 0 2560 -~~~ -~~~ -29419039 0 2048 -29419040 homeCount = 127 -29419040 waitCount = 53 -29419041 ripCount = 52 -29419041 locktype1 = 1 -29419042 locktype2 = 8 -29419042 locktype3 = 13 -29419043 goalCount = 5 -29419043 goalTotal = 45 -29419044 otherCount = 59 -~~~ -29419074 UP 10 -29419075 waslock = 0 -29419074 512 2048 -~~~ -29424344 DOWN 10 -29424344 0 2048 -~~~ -~~~ -~~~ -~~~ -29424367 homeCount = 127 -29424367 waitCount = 53 -29424368 ripCount = 52 -29424368 locktype1 = 1 -29424369 locktype2 = 8 -29424369 locktype3 = 13 -29424370 goalCount = 5 -29424370 goalTotal = 45 -29424371 otherCount = 59 -~~~ -29424380 UP 10 -29424381 waslock = 0 -29424380 512 2048 -~~~ -29424422 DOWN 10 -29424422 0 2048 -~~~ -~~~ -~~~ -~~~ -29424446 homeCount = 127 -29424446 waitCount = 53 -29424447 ripCount = 52 -29424447 locktype1 = 1 -29424448 locktype2 = 8 -29424448 locktype3 = 13 -29424449 goalCount = 5 -29424449 goalTotal = 45 -29424450 otherCount = 59 -~~~ -29430294 UP 10 -29430294 waslock = 0 -29430294 512 2048 -~~~ -29430680 DOWN 10 -29430680 0 2048 -~~~ -~~~ -~~~ -~~~ -29430708 homeCount = 127 -29430708 waitCount = 53 -29430709 ripCount = 52 -29430710 locktype1 = 1 -29430710 locktype2 = 8 -29430711 locktype3 = 13 -29430711 goalCount = 5 -29430712 goalTotal = 45 -29430712 otherCount = 59 -~~~ -29435478 UP 12 -29435478 2048 2048 -29435569 DOWN 12 -29435569 0 2048 -29435769 LOCKOUT 3 -~~~ -29435786 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29435792 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29447190 UP 7 -29447190 64 0 -29447579 DOWN 7 -29447579 0 0 - - description: Statescript log r3 - task_epochs: 6, -] -2021-05-24 19:16:53,864 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-24 19:16:57,487 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-05-24 19:16:57,490 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-05-24 19:16:57,490 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-05-24 19:16:57,491 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-05-24 19:16:57,492 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-05-24 19:16:57,492 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-05-24 19:16:57,492 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-05-24 19:16:57,493 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-05-24 19:16:57,494 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-05-24 19:16:57,495 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-05-24 19:16:57,496 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_01_s1.1. -2021-05-24 19:16:57,498 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_02_r1.1. -2021-05-24 19:16:57,500 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-05-24 19:16:57,500 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-05-24 19:16:57,506 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-05-24 19:16:57,507 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-05-24 19:16:57,509 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-05-24 19:16:57,530 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-05-24 19:16:57,532 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-05-24 19:16:57,534 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-05-24 19:16:57,536 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-05-24 19:18:05,647 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-05-24 19:18:05,651 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-05-24 19:18:28,809 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-05-24 19:18:28,810 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-05-24 19:18:28,810 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-05-24 19:18:28,812 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-05-24 19:18:28,813 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-05-24 19:18:29,664 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-05-24 19:18:29,669 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 19:18:45,440 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 19:19:33,457 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 19:19:49,090 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 19:20:09,724 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 19:20:26,070 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 19:21:13,554 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 19:21:29,497 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-05-24 19:21:29,503 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-05-24 19:21:30,138 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 19:21:36,844 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 19:21:52,356 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 19:21:57,874 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 19:22:04,717 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 19:22:11,473 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 19:22:27,035 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 19:23:11,748 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-05-24 19:23:13,049 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-05-24 19:23:13,050 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /stelmo/loren/despereaux20191125.nwb -2021-05-24 19:50:22,534 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 19:50:22,535 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 19:50:22,541 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 19:50:22,579 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 19:50:22,817 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 19:50:22,820 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 19:50:45,576 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 19:50:50,880 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 19:50:53,028 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 19:50:59,014 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 19:51:01,027 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 19:51:21,175 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 19:51:28,879 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 19:51:34,688 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 19:55:25,948 rec_to_nwb.processing.builder.nwb_file_builder: INFO /stelmo/loren/despereaux20191125.nwb file has been created. -2021-05-24 20:16:26,627 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Extraction parameters : -data_path = /stelmo/loren/ -animal_name = despereaux -parallel_instances = 4 -extract_analog = True -extract_dio = True -extract_time = True -extract_mda = True -extract_lfps = False -extract_spikes = False -overwrite = False -lfp_export_args = ('-highpass', '0', '-lowpass', '400', '-interp', '0', '-userefs', '0', '-outputrate', '1500') -mda_export_args = ('-usespikefilters', '0', '-interp', '0', '-userefs', '0') -analog_export_args = () -time_export_args = () -spikes_export_args = () -dio_export_args = () -trodes_rec_export_args = () - -2021-05-24 20:16:27,009 rec_to_binaries.core: INFO Extracting analog data... -2021-05-24 20:16:27,011 rec_to_binaries.core: INFO Extracting DIO... -2021-05-24 20:16:27,011 rec_to_binaries.core: INFO Extracting mda... -2021-05-24 20:16:27,012 rec_to_binaries.core: INFO Extracting time... -2021-05-24 20:22:51,771 rec_to_binaries.core: INFO Making position directory... -2021-05-24 20:22:53,556 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Building NWB files -2021-05-24 20:22:53,557 rec_to_nwb.processing.builder.raw_to_nwb_builder: INFO Date: 20191125 -2021-05-24 20:22:53,557 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWBFileBuilder initialization -2021-05-24 20:22:53,558 rec_to_nwb.processing.builder.nwb_file_builder: INFO NWB builder initialization parameters: -data_path = /stelmo/loren/ -animal_name = despereaux -date = 20191125 -nwb_metadata = Experiment Info: -Experimenter: Anna Gillespie -Description: Sungod control -Session Id: 4 -Subject: Long Evans Rat - -Available probe types: ['128c-4s8mm6cm-20um-40um-sl', 'tetrode_12.5'] -process_dio = True -process_mda = True -process_analog = True -output_file = /stelmo/loren/despereaux20191125.nwb - -2021-05-24 20:22:54,184 rec_to_nwb.processing.header.header_checker.header_logger: WARNING Rec files: [PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_02_r1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_05_s3.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_03_s2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_07_s4.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_01_s1.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_04_r2.rec'), PosixPath('/stelmo/loren/despereaux/raw/20191125/20191125_despereaux_06_r3.rec')] contain inconsistent xml headers! - , [] -2021-05-24 20:23:03,987 rec_to_nwb.processing.builder.nwb_file_builder: INFO Building components for NWB -2021-05-24 20:23:04,013 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating behavior -2021-05-24 20:23:04,013 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting behavior -2021-05-24 20:23:04,013 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating tasks -2021-05-24 20:23:04,014 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting tasks -2021-05-24 20:23:04,014 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating associated files -2021-05-24 20:23:04,014 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting associated files -2021-05-24 20:23:04,015 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating video files -2021-05-24 20:23:04,015 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting video files -2021-05-24 20:23:04,015 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating analog -2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting analog -2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating sample count-timestamp corespondence -2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting sample count-timestamp corespondence -2021-05-24 20:23:04,016 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Creating Camera Sample Frame Counts -2021-05-24 20:23:04,017 rec_to_nwb.processing.builder.originators.processing_module_originator: INFO ProcessingModule: Injecting camera_sample_frame_counts -2021-05-24 20:23:04,017 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Building -2021-05-24 20:23:04,023 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Creating -2021-05-24 20:23:04,023 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO AssociatedFiles: Injecting -2021-05-24 20:23:04,026 rec_to_nwb.processing.builder.originators.associated_files_originator: INFO Files stored inside nwb: [Statescript1 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140511632191056 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -2608699 UP 10 -2608699 waslock = 0 -2608699 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2608722 512 16777728 -~~~ -2608872 512 512 -2608885 DOWN 10 -2608885 0 512 -~~~ -~~~ -2608901 0 1536 -~~~ -~~~ -2608903 0 1024 -2608904 homeCount = 1 -2608904 waitCount = 0 -2608905 ripCount = 0 -2608905 locktype1 = 0 -2608906 locktype2 = 0 -2608906 locktype3 = 0 -2608907 goalCount = 0 -2608907 goalTotal = 0 -2608908 otherCount = 0 -~~~ -2609055 UP 10 -2609055 waslock = 0 -2609054 512 1024 -2609074 DOWN 10 -2609074 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -2609109 homeCount = 1 -2609109 waitCount = 0 -2609109 ripCount = 0 -2609110 locktype1 = 0 -2609110 locktype2 = 0 -2609111 locktype3 = 0 -2609111 goalCount = 0 -2609112 goalTotal = 0 -2609112 otherCount = 0 -~~~ -2609182 UP 10 -2609182 waslock = 0 -2609182 512 1024 -~~~ -2609223 DOWN 10 -2609223 0 1024 -~~~ -~~~ -~~~ -~~~ -2609256 homeCount = 1 -2609257 waitCount = 0 -2609257 ripCount = 0 -2609258 locktype1 = 0 -2609258 locktype2 = 0 -2609259 locktype3 = 0 -2609259 goalCount = 0 -2609260 goalTotal = 0 -2609260 otherCount = 0 -~~~ -2609311 UP 10 -2609311 waslock = 0 -2609311 512 1024 -~~~ -2609574 DOWN 10 -2609574 0 1024 -~~~ -~~~ -~~~ -2609597 UP 10 -2609597 waslock = 0 -2609597 512 1024 -~~~ -2609599 homeCount = 1 -2609600 waitCount = 0 -2609600 ripCount = 0 -2609601 locktype1 = 0 -2609601 locktype2 = 0 -2609602 locktype3 = 0 -2609602 goalCount = 0 -2609602 goalTotal = 0 -2609603 otherCount = 0 -~~~ -~~~ -2609728 DOWN 10 -2609728 0 1024 -~~~ -~~~ -~~~ -~~~ -2609754 homeCount = 1 -2609754 waitCount = 0 -2609755 ripCount = 0 -2609755 locktype1 = 0 -2609756 locktype2 = 0 -2609756 locktype3 = 0 -2609757 goalCount = 0 -2609757 goalTotal = 0 -2609758 otherCount = 0 -~~~ -2609758 UP 10 -2609759 waslock = 0 -2609758 512 1024 -~~~ -2609870 DOWN 10 -2609870 0 1024 -~~~ -~~~ -~~~ -~~~ -2609895 homeCount = 1 -2609896 waitCount = 0 -2609896 ripCount = 0 -2609897 locktype1 = 0 -2609897 locktype2 = 0 -2609898 locktype3 = 0 -2609898 goalCount = 0 -2609898 goalTotal = 0 -2609899 otherCount = 0 -~~~ -2609909 UP 10 -2609910 waslock = 0 -2609909 512 1024 -~~~ -2610022 DOWN 10 -2610022 0 1024 -~~~ -~~~ -~~~ -~~~ -2610045 homeCount = 1 -2610045 waitCount = 0 -2610046 ripCount = 0 -2610046 locktype1 = 0 -2610047 locktype2 = 0 -2610047 locktype3 = 0 -2610048 goalCount = 0 -2610048 goalTotal = 0 -2610049 otherCount = 0 -~~~ -2610059 UP 10 -2610059 waslock = 0 -2610059 512 1024 -~~~ -2610177 DOWN 10 -2610177 0 1024 -~~~ -~~~ -~~~ -~~~ -2610204 homeCount = 1 -2610205 waitCount = 0 -2610205 ripCount = 0 -2610206 locktype1 = 0 -2610206 locktype2 = 0 -2610206 locktype3 = 0 -2610207 goalCount = 0 -2610207 goalTotal = 0 -2610208 otherCount = 0 -~~~ -2610208 UP 10 -2610209 waslock = 0 -2610208 512 1024 -~~~ -2610339 DOWN 10 -2610338 0 1024 -~~~ -~~~ -~~~ -2610363 UP 10 -2610363 waslock = 0 -2610363 512 1024 -~~~ -2610365 homeCount = 1 -2610365 waitCount = 0 -2610366 ripCount = 0 -2610366 locktype1 = 0 -2610367 locktype2 = 0 -2610367 locktype3 = 0 -2610367 goalCount = 0 -2610368 goalTotal = 0 -2610368 otherCount = 0 -~~~ -~~~ -2610495 DOWN 10 -2610495 0 1024 -~~~ -~~~ -~~~ -~~~ -2610515 homeCount = 1 -2610515 waitCount = 0 -2610516 ripCount = 0 -2610516 locktype1 = 0 -2610516 locktype2 = 0 -2610517 locktype3 = 0 -2610517 goalCount = 0 -2610518 goalTotal = 0 -2610518 otherCount = 0 -~~~ -2610526 UP 10 -2610526 waslock = 0 -2610526 512 1024 -~~~ -2610666 DOWN 10 -2610666 0 1024 -2610679 UP 10 -2610680 waslock = 0 -2610679 512 1024 -~~~ -~~~ -~~~ -~~~ -2610696 homeCount = 1 -2610697 waitCount = 0 -2610697 ripCount = 0 -2610698 locktype1 = 0 -2610698 locktype2 = 0 -2610699 locktype3 = 0 -2610699 goalCount = 0 -2610700 goalTotal = 0 -2610700 otherCount = 0 -~~~ -~~~ -2611006 DOWN 10 -2611006 0 1024 -2611013 UP 10 -2611013 waslock = 0 -2611013 512 1024 -~~~ -~~~ -~~~ -~~~ -2611036 homeCount = 1 -2611036 waitCount = 0 -2611037 ripCount = 0 -2611037 locktype1 = 0 -2611038 locktype2 = 0 -2611038 locktype3 = 0 -2611038 goalCount = 0 -2611039 goalTotal = 0 -2611039 otherCount = 0 -~~~ -~~~ -2611156 DOWN 10 -2611156 0 1024 -2611188 UP 10 -2611189 waslock = 0 -2611188 512 1024 -~~~ -~~~ -~~~ -~~~ -2611194 homeCount = 1 -2611195 waitCount = 0 -2611195 ripCount = 0 -2611196 locktype1 = 0 -2611196 locktype2 = 0 -2611196 locktype3 = 0 -2611197 goalCount = 0 -2611197 goalTotal = 0 -2611198 otherCount = 0 -~~~ -~~~ -2611313 DOWN 10 -2611313 0 1024 -~~~ -~~~ -~~~ -~~~ -2611336 homeCount = 1 -2611337 waitCount = 0 -2611337 ripCount = 0 -2611338 locktype1 = 0 -2611338 locktype2 = 0 -2611339 locktype3 = 0 -2611339 goalCount = 0 -2611340 goalTotal = 0 -2611340 otherCount = 0 -~~~ -2611352 UP 10 -2611353 waslock = 0 -2611352 512 1024 -~~~ -2611481 DOWN 10 -2611481 0 1024 -~~~ -~~~ -~~~ -~~~ -2611505 homeCount = 1 -2611506 waitCount = 0 -2611506 ripCount = 0 -2611507 locktype1 = 0 -2611507 locktype2 = 0 -2611508 locktype3 = 0 -2611508 goalCount = 0 -2611508 goalTotal = 0 -2611509 otherCount = 0 -~~~ -2611524 UP 10 -2611524 waslock = 0 -2611524 512 1024 -~~~ -2611655 DOWN 10 -2611655 0 1024 -~~~ -~~~ -~~~ -~~~ -2611675 homeCount = 1 -2611676 waitCount = 0 -2611676 ripCount = 0 -2611677 locktype1 = 0 -2611677 locktype2 = 0 -2611678 locktype3 = 0 -2611678 goalCount = 0 -2611679 goalTotal = 0 -2611679 otherCount = 0 -~~~ -2611701 UP 10 -2611702 waslock = 0 -2611701 512 1024 -~~~ -2611829 DOWN 10 -2611829 0 1024 -~~~ -~~~ -~~~ -~~~ -2611855 homeCount = 1 -2611855 waitCount = 0 -2611856 ripCount = 0 -2611856 locktype1 = 0 -2611857 locktype2 = 0 -2611857 locktype3 = 0 -2611858 goalCount = 0 -2611858 goalTotal = 0 -2611859 otherCount = 0 -~~~ -2611865 UP 10 -2611865 waslock = 0 -2611865 512 1024 -~~~ -2612015 DOWN 10 -2612015 0 1024 -~~~ -~~~ -~~~ -2612033 UP 10 -2612034 waslock = 0 -2612033 512 1024 -~~~ -2612035 homeCount = 1 -2612036 waitCount = 0 -2612036 ripCount = 0 -2612037 locktype1 = 0 -2612037 locktype2 = 0 -2612038 locktype3 = 0 -2612038 goalCount = 0 -2612039 goalTotal = 0 -2612039 otherCount = 0 -~~~ -~~~ -2612181 DOWN 10 -2612180 0 1024 -~~~ -~~~ -~~~ -~~~ -2612207 homeCount = 1 -2612208 waitCount = 0 -2612208 ripCount = 0 -2612209 locktype1 = 0 -2612209 locktype2 = 0 -2612210 locktype3 = 0 -2612210 goalCount = 0 -2612211 goalTotal = 0 -2612211 otherCount = 0 -~~~ -2612229 UP 10 -2612229 waslock = 0 -2612229 512 1024 -~~~ -2612356 DOWN 10 -2612356 0 1024 -~~~ -~~~ -~~~ -~~~ -2612387 homeCount = 1 -2612387 waitCount = 0 -2612388 ripCount = 0 -2612388 locktype1 = 0 -2612389 locktype2 = 0 -2612389 locktype3 = 0 -2612390 goalCount = 0 -2612390 goalTotal = 0 -2612391 otherCount = 0 -~~~ -2612407 UP 10 -2612407 waslock = 0 -2612406 512 1024 -~~~ -2614983 DOWN 10 -2614983 0 1024 -~~~ -~~~ -~~~ -~~~ -2615004 homeCount = 1 -2615005 waitCount = 0 -2615005 ripCount = 0 -2615006 locktype1 = 0 -2615006 locktype2 = 0 -2615007 locktype3 = 0 -2615007 goalCount = 0 -2615008 goalTotal = 0 -2615008 otherCount = 0 -~~~ -2617153 UP 12 -2617154 LOCKOUT 1 -2617153 2048 1024 -~~~ -2617175 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -2617178 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2617366 DOWN 12 -2617366 0 0 -2617491 UP 12 -2617491 2048 0 -2617895 DOWN 12 -2617895 0 0 -2617923 UP 12 -2617923 2048 0 -2618053 DOWN 12 -2618053 0 0 -2618075 UP 12 -2618075 2048 0 -2619271 DOWN 12 -2619271 0 0 -2619295 UP 12 -2619295 2048 0 -2619584 DOWN 12 -2619584 0 0 -2619593 UP 12 -2619593 2048 0 -2621137 DOWN 12 -2621137 0 0 -2622946 UP 11 -2622946 1024 0 -2623563 DOWN 11 -2623563 0 0 -2623582 UP 11 -2623582 1024 0 -2623717 DOWN 11 -2623717 0 0 -2623731 UP 11 -2623731 1024 0 -2623879 DOWN 11 -2623879 0 0 -2623904 UP 11 -2623903 1024 0 -2624051 DOWN 11 -2624051 0 0 -2624056 UP 11 -2624056 1024 0 -2626713 DOWN 11 -2626713 0 0 -2626722 UP 11 -2626722 1024 0 -2627171 DOWN 11 -2627171 0 0 -2631902 UP 7 -2631902 64 0 -2632210 DOWN 7 -2632210 0 0 -2632230 64 0 -2634192 DOWN 7 -2634192 0 0 -2634209 64 0 -2635732 DOWN 7 -2635732 0 0 -2642069 512 0 -2642175 LOCKEND -~~~ -~~~ -~~~ -2642201 512 512 -2642433 DOWN 10 -2642433 0 512 -2642526 UP 10 -2642526 waslock = 0 -2642526 512 512 -2642544 DOWN 10 -2642544 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2642558 0 16777728 -~~~ -~~~ -~~~ -2642570 0 16778752 -~~~ -~~~ -2642571 0 16778240 -2642572 homeCount = 2 -2642573 waitCount = 0 -2642573 ripCount = 0 -2642574 locktype1 = 1 -2642574 locktype2 = 0 -2642575 locktype3 = 0 -2642575 goalCount = 0 -2642576 goalTotal = 0 -2642576 otherCount = 0 -~~~ -2642628 UP 10 -2642629 waslock = 0 -2642628 512 16778240 -~~~ -2642704 DOWN 10 -2642704 0 16778240 -2642706 UP 10 -2642707 waslock = 0 -2642706 512 16778240 -2642708 512 1024 -2642713 DOWN 10 -2642713 0 1024 -2642720 UP 10 -2642720 waslock = 0 -2642720 512 1024 -~~~ -~~~ -~~~ -~~~ -2642742 homeCount = 2 -2642742 waitCount = 0 -2642743 ripCount = 0 -2642743 locktype1 = 1 -2642744 locktype2 = 0 -2642744 locktype3 = 0 -2642745 goalCount = 0 -2642745 goalTotal = 0 -2642746 otherCount = 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2642748 homeCount = 2 -2642770 waitCount = 0 -2642770 ripCount = 0 -2642771 locktype1 = 1 -2642771 locktype2 = 0 -2642772 locktype3 = 0 -2642772 goalCount = 0 -2642772 goalTotal = 0 -2642773 otherCount = 0 -~~~ -~~~ -2643241 DOWN 10 -2643241 0 1024 -2643258 UP 10 -2643258 waslock = 0 -2643258 512 1024 -~~~ -~~~ -~~~ -~~~ -2643268 homeCount = 2 -2643268 waitCount = 0 -2643269 ripCount = 0 -2643269 locktype1 = 1 -2643269 locktype2 = 0 -2643270 locktype3 = 0 -2643270 goalCount = 0 -2643271 goalTotal = 0 -2643271 otherCount = 0 -~~~ -~~~ -2643397 DOWN 10 -2643397 0 1024 -~~~ -~~~ -~~~ -~~~ -2643424 homeCount = 2 -2643424 waitCount = 0 -2643425 ripCount = 0 -2643425 locktype1 = 1 -2643426 locktype2 = 0 -2643426 locktype3 = 0 -2643427 goalCount = 0 -2643427 goalTotal = 0 -2643427 otherCount = 0 -~~~ -2643429 UP 10 -2643429 waslock = 0 -2643429 512 1024 -~~~ -2646784 DOWN 10 -2646784 0 1024 -~~~ -~~~ -~~~ -~~~ -2646812 homeCount = 2 -2646812 waitCount = 0 -2646813 ripCount = 0 -2646813 locktype1 = 1 -2646813 locktype2 = 0 -2646814 locktype3 = 0 -2646814 goalCount = 0 -2646815 goalTotal = 0 -2646815 otherCount = 0 -~~~ -2654547 UP 2 -2654547 2 1024 -~~~ -2654570 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -2654574 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2654848 DOWN 2 -2654848 0 0 -2654865 2 0 -2655008 DOWN 2 -2655008 0 0 -2655030 2 0 -2657028 DOWN 2 -2657028 0 0 -2661794 512 0 -2661810 0 0 -2661854 512 0 -2662303 0 0 -2662318 512 0 -2662471 0 0 -2662483 512 0 -2662646 0 0 -2662676 512 0 -2662753 0 0 -2662824 512 0 -2663410 0 0 -2667214 UP 8 -2667214 128 0 -2667509 DOWN 8 -2667509 0 0 -2667541 128 0 -2667910 DOWN 8 -2667910 0 0 -2667936 128 0 -2668075 DOWN 8 -2668075 0 0 -2668097 128 0 -2668243 DOWN 8 -2668243 0 0 -2668267 128 0 -2668421 DOWN 8 -2668421 0 0 -2668438 128 0 -2668589 DOWN 8 -2668589 0 0 -2668622 128 0 -2668952 DOWN 8 -2668952 0 0 -2668978 128 0 -2669136 DOWN 8 -2669136 0 0 -2669147 128 0 -2670697 DOWN 8 -2670697 0 0 -2670704 128 0 -2670876 DOWN 8 -2670876 0 0 -2670890 128 0 -2673117 DOWN 8 -2673117 0 0 -2673168 128 0 -2673243 DOWN 8 -2673243 0 0 -2673296 128 0 -2673609 DOWN 8 -2673609 0 0 -2673620 128 0 -2674173 DOWN 8 -2674173 0 0 -2674176 128 0 -2674222 DOWN 8 -2674222 0 0 -2674261 128 0 -2674378 DOWN 8 -2674378 0 0 -2674393 128 0 -2674564 DOWN 8 -2674564 0 0 -2674583 128 0 -2674681 DOWN 8 -2674681 0 0 -2679570 LOCKEND -~~~ -~~~ -~~~ -2679589 0 512 -2680342 UP 10 -2680343 waslock = 0 -2680342 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2680378 512 16777728 -~~~ -2680411 DOWN 10 -2680411 0 16777728 -~~~ -~~~ -2680438 0 16779776 -~~~ -~~~ -2680440 0 16779264 -2680441 homeCount = 3 -2680442 waitCount = 0 -2680442 ripCount = 0 -2680443 locktype1 = 1 -2680443 locktype2 = 1 -2680443 locktype3 = 0 -2680444 goalCount = 0 -2680444 goalTotal = 0 -2680445 otherCount = 0 -~~~ -2680525 UP 10 -2680525 waslock = 0 -2680525 512 16779264 -2680528 512 2048 -~~~ -2680573 DOWN 10 -2680573 0 2048 -~~~ -~~~ -~~~ -~~~ -2680601 homeCount = 3 -2680601 waitCount = 0 -2680602 ripCount = 0 -2680602 locktype1 = 1 -2680603 locktype2 = 1 -2680603 locktype3 = 0 -2680604 goalCount = 0 -2680604 goalTotal = 0 -2680605 otherCount = 0 -~~~ -2680677 UP 10 -2680678 waslock = 0 -2680677 512 2048 -~~~ -2681296 DOWN 10 -2681296 0 2048 -~~~ -~~~ -2681318 UP 10 -2681318 waslock = 0 -2681318 512 2048 -~~~ -~~~ -2681321 homeCount = 3 -2681321 waitCount = 0 -2681322 ripCount = 0 -2681322 locktype1 = 1 -2681323 locktype2 = 1 -2681323 locktype3 = 0 -2681324 goalCount = 0 -2681324 goalTotal = 0 -2681325 otherCount = 0 -~~~ -~~~ -2682967 DOWN 10 -2682967 0 2048 -2682978 UP 10 -2682978 waslock = 0 -2682978 512 2048 -~~~ -~~~ -~~~ -~~~ -2683005 homeCount = 3 -2683005 waitCount = 0 -2683006 ripCount = 0 -2683006 locktype1 = 1 -2683007 locktype2 = 1 -2683007 locktype3 = 0 -2683008 goalCount = 0 -2683008 goalTotal = 0 -2683009 otherCount = 0 -~~~ -~~~ -2684230 DOWN 10 -2684230 0 2048 -~~~ -~~~ -~~~ -~~~ -2684252 homeCount = 3 -2684253 waitCount = 0 -2684253 ripCount = 0 -2684254 locktype1 = 1 -2684254 locktype2 = 1 -2684255 locktype3 = 0 -2684255 goalCount = 0 -2684256 goalTotal = 0 -2684256 otherCount = 0 -~~~ -2684266 UP 10 -2684266 waslock = 0 -2684266 512 2048 -~~~ -2684599 DOWN 10 -2684599 0 2048 -~~~ -~~~ -2684620 UP 10 -2684620 waslock = 0 -2684620 512 2048 -~~~ -~~~ -2684623 homeCount = 3 -2684623 waitCount = 0 -2684624 ripCount = 0 -2684624 locktype1 = 1 -2684624 locktype2 = 1 -2684625 locktype3 = 0 -2684625 goalCount = 0 -2684626 goalTotal = 0 -2684626 otherCount = 0 -~~~ -~~~ -2684738 DOWN 10 -2684738 0 2048 -~~~ -~~~ -~~~ -~~~ -2684765 homeCount = 3 -2684765 waitCount = 0 -2684766 ripCount = 0 -2684766 locktype1 = 1 -2684767 locktype2 = 1 -2684767 locktype3 = 0 -2684768 goalCount = 0 -2684768 goalTotal = 0 -2684769 otherCount = 0 -~~~ -2685961 UP 12 -2685961 2048 2048 -2686484 DOWN 12 -2686484 0 2048 -2686519 UP 12 -2686519 2048 2048 -2686961 CLICK1 -2686961 CLICK2 -2686961 DOWN 12 -2686961 0 2048 -~~~ -~~~ -~~~ -2686981 0 67110912 -~~~ -2687006 UP 12 -2687006 2048 67110912 -2687131 2048 2048 -~~~ -~~~ -2687156 2048 0 -~~~ -~~~ -2687157 2048 1 -~~~ -~~~ -2687159 2048 3 -~~~ -~~~ -2687161 2048 7 -~~~ -~~~ -2687163 2048 15 -~~~ -~~~ -2687165 2048 31 -~~~ -~~~ -2687166 2048 63 -~~~ -~~~ -2687168 2048 127 -~~~ -~~~ -2687170 2048 255 -2687171 homeCount = 3 -2687172 waitCount = 1 -2687172 ripCount = 0 -2687173 locktype1 = 1 -2687194 locktype2 = 1 -2687194 locktype3 = 0 -2687195 goalCount = 0 -2687195 goalTotal = 0 -2687196 otherCount = 0 -~~~ -2687197 CURRENTGOAL IS [5] -~~~ -2691575 DOWN 12 -2691575 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2691618 homeCount = 3 -2691619 waitCount = 1 -2691619 ripCount = 0 -2691620 locktype1 = 1 -2691620 locktype2 = 1 -2691621 locktype3 = 0 -2691621 goalCount = 0 -2691621 goalTotal = 0 -2691622 otherCount = 0 -~~~ -2691623 CURRENTGOAL IS [5] -~~~ -2694045 UP 4 -2694045 8 255 -~~~ -~~~ -2694307 DOWN 4 -2694307 0 255 -~~~ -~~~ -2694333 0 254 -~~~ -~~~ -2694335 0 252 -~~~ -~~~ -2694337 0 248 -~~~ -~~~ -2694339 0 240 -~~~ -2694340 8 240 -~~~ -~~~ -2694342 8 224 -~~~ -~~~ -2694344 8 192 -~~~ -2694345 8 128 -~~~ -~~~ -2694346 8 0 -~~~ -~~~ -2694348 8 512 -2694349 homeCount = 3 -2694349 waitCount = 1 -2694350 ripCount = 0 -2694371 locktype1 = 1 -2694371 locktype2 = 1 -2694372 locktype3 = 0 -2694372 goalCount = 0 -2694373 goalTotal = 0 -2694373 otherCount = 1 -~~~ -2697167 DOWN 4 -2697167 0 512 -2700619 UP 10 -2700620 waslock = 0 -2700619 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2700643 512 16777728 -~~~ -2700677 DOWN 10 -2700677 0 16777728 -~~~ -~~~ -2700697 0 16778752 -~~~ -~~~ -2700699 0 16778240 -2700700 homeCount = 4 -2700700 waitCount = 1 -2700701 ripCount = 0 -2700701 locktype1 = 1 -2700702 locktype2 = 1 -2700702 locktype3 = 0 -2700703 goalCount = 0 -2700703 goalTotal = 0 -2700703 otherCount = 1 -~~~ -2700725 UP 10 -2700725 waslock = 0 -2700725 512 16778240 -~~~ -2700793 512 1024 -2700811 DOWN 10 -2700811 0 1024 -~~~ -~~~ -~~~ -~~~ -2700832 homeCount = 4 -2700832 waitCount = 1 -2700833 ripCount = 0 -2700833 locktype1 = 1 -2700834 locktype2 = 1 -2700834 locktype3 = 0 -2700835 goalCount = 0 -2700835 goalTotal = 0 -2700836 otherCount = 1 -~~~ -2700921 UP 10 -2700921 waslock = 0 -2700921 512 1024 -~~~ -2703713 DOWN 10 -2703713 0 1024 -2703727 UP 10 -2703728 waslock = 0 -2703727 512 1024 -~~~ -~~~ -~~~ -~~~ -2703741 homeCount = 4 -2703742 waitCount = 1 -2703742 ripCount = 0 -2703743 locktype1 = 1 -2703743 locktype2 = 1 -2703744 locktype3 = 0 -2703744 goalCount = 0 -2703745 goalTotal = 0 -2703745 otherCount = 1 -~~~ -~~~ -2703764 DOWN 10 -2703764 0 1024 -~~~ -~~~ -~~~ -~~~ -2703786 homeCount = 4 -2703786 waitCount = 1 -2703787 ripCount = 0 -2703787 locktype1 = 1 -2703788 locktype2 = 1 -2703788 locktype3 = 0 -2703789 goalCount = 0 -2703789 goalTotal = 0 -2703790 otherCount = 1 -~~~ -2704753 UP 11 -2704753 1024 1024 -2705597 DOWN 11 -2705597 0 1024 -2705617 UP 11 -2705617 1024 1024 -2705678 DOWN 11 -2705678 0 1024 -2705744 UP 11 -2705744 1024 1024 -2705753 BEEP1 -2705753 BEEP2 -~~~ -~~~ -~~~ -2705772 1024 33555456 -~~~ -2705922 1024 1024 -2709117 DOWN 11 -2709117 0 1024 -~~~ -~~~ -2709138 0 0 -~~~ -~~~ -2709140 0 1 -~~~ -~~~ -2709142 0 3 -~~~ -~~~ -2709144 0 7 -~~~ -~~~ -2709146 0 15 -~~~ -~~~ -2709147 0 31 -~~~ -~~~ -2709149 0 63 -~~~ -~~~ -2709151 0 127 -~~~ -~~~ -2709153 0 255 -2709154 homeCount = 4 -2709154 waitCount = 1 -2709155 ripCount = 1 -2709155 locktype1 = 1 -2709156 locktype2 = 1 -2709156 locktype3 = 0 -2709178 goalCount = 0 -2709178 goalTotal = 0 -2709178 otherCount = 1 -~~~ -2709180 CURRENTGOAL IS [5] -~~~ -2709182 UP 11 -2709182 1024 255 -2709619 DOWN 11 -2709619 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2709655 homeCount = 4 -2709655 waitCount = 1 -2709656 ripCount = 1 -2709656 locktype1 = 1 -2709657 locktype2 = 1 -2709657 locktype3 = 0 -2709658 goalCount = 0 -2709658 goalTotal = 0 -2709659 otherCount = 1 -~~~ -2709660 CURRENTGOAL IS [5] -~~~ -2711925 UP 7 -2711925 64 255 -~~~ -~~~ -2714140 DOWN 7 -2714140 0 255 -~~~ -~~~ -2714164 0 254 -~~~ -~~~ -2714166 0 252 -~~~ -~~~ -2714168 0 248 -~~~ -~~~ -2714170 0 240 -~~~ -~~~ -2714171 0 224 -~~~ -~~~ -2714173 0 192 -~~~ -~~~ -2714175 0 128 -~~~ -~~~ -2714177 0 0 -~~~ -~~~ -2714179 0 512 -2714180 homeCount = 4 -2714180 waitCount = 1 -2714181 ripCount = 1 -2714181 locktype1 = 1 -2714182 locktype2 = 1 -2714203 locktype3 = 0 -2714203 goalCount = 0 -2714204 goalTotal = 0 -2714204 otherCount = 2 -~~~ -2714205 64 512 -2714226 DOWN 7 -2714226 0 512 -2717944 UP 10 -2717945 waslock = 0 -2717944 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2717977 512 16777728 -~~~ -2718127 512 512 -2718153 DOWN 10 -2718153 0 512 -~~~ -~~~ -2718172 0 2560 -~~~ -~~~ -2718174 0 2048 -2718175 homeCount = 5 -2718176 waitCount = 1 -2718176 ripCount = 1 -2718177 locktype1 = 1 -2718177 locktype2 = 1 -2718178 locktype3 = 0 -2718178 goalCount = 0 -2718179 goalTotal = 0 -2718179 otherCount = 2 -~~~ -2718313 UP 10 -2718314 waslock = 0 -2718313 512 2048 -~~~ -2721159 DOWN 10 -2721158 0 2048 -2721177 UP 10 -2721177 waslock = 0 -2721177 512 2048 -~~~ -~~~ -~~~ -~~~ -2721185 homeCount = 5 -2721186 waitCount = 1 -2721186 ripCount = 1 -2721187 locktype1 = 1 -2721187 locktype2 = 1 -2721188 locktype3 = 0 -2721188 goalCount = 0 -2721189 goalTotal = 0 -2721189 otherCount = 2 -~~~ -~~~ -2721253 DOWN 10 -2721253 0 2048 -~~~ -~~~ -~~~ -~~~ -2721276 homeCount = 5 -2721276 waitCount = 1 -2721277 ripCount = 1 -2721277 locktype1 = 1 -2721278 locktype2 = 1 -2721278 locktype3 = 0 -2721279 goalCount = 0 -2721279 goalTotal = 0 -2721280 otherCount = 2 -~~~ -2722359 UP 12 -2722359 2048 2048 -2722798 DOWN 12 -2722798 0 2048 -2722838 UP 12 -2722838 2048 2048 -2723142 DOWN 12 -2723142 0 2048 -2723159 UP 12 -2723159 2048 2048 -2723223 DOWN 12 -2723223 0 2048 -2723288 UP 12 -2723288 2048 2048 -2723859 CLICK1 -2723859 CLICK2 -~~~ -~~~ -~~~ -2723886 2048 67110912 -~~~ -2724036 2048 2048 -2727818 DOWN 12 -2727818 0 2048 -~~~ -~~~ -2727844 0 0 -~~~ -~~~ -2727846 0 1 -~~~ -~~~ -2727847 0 3 -~~~ -~~~ -2727849 0 7 -~~~ -~~~ -2727851 0 15 -~~~ -~~~ -2727853 0 31 -~~~ -~~~ -2727855 0 63 -~~~ -~~~ -2727856 0 127 -~~~ -~~~ -2727858 0 255 -2727859 homeCount = 5 -2727860 waitCount = 2 -2727860 ripCount = 1 -2727861 locktype1 = 1 -2727861 locktype2 = 1 -2727862 locktype3 = 0 -2727883 goalCount = 0 -2727883 goalTotal = 0 -2727884 otherCount = 2 -~~~ -2727885 CURRENTGOAL IS [5] -~~~ -2732529 UP 1 -2732529 1 255 -~~~ -~~~ -2732809 DOWN 1 -2732809 0 255 -2732825 1 255 -~~~ -~~~ -2732828 1 254 -~~~ -~~~ -2732830 1 252 -~~~ -~~~ -2732832 1 248 -~~~ -~~~ -2732833 1 240 -~~~ -~~~ -2732835 1 224 -~~~ -~~~ -2732837 1 192 -~~~ -~~~ -2732839 1 128 -~~~ -~~~ -2732841 1 0 -~~~ -~~~ -2732843 1 512 -2732843 homeCount = 5 -2732844 waitCount = 2 -2732844 ripCount = 1 -2732845 locktype1 = 1 -2732845 locktype2 = 1 -2732866 locktype3 = 0 -2732867 goalCount = 0 -2732867 goalTotal = 0 -2732867 otherCount = 3 -~~~ -2734994 DOWN 1 -2734994 0 512 -2735003 1 512 -2735908 DOWN 1 -2735908 0 512 -2735920 1 512 -2736101 DOWN 1 -2736101 0 512 -2736111 1 512 -2737189 DOWN 1 -2737189 0 512 -2737197 1 512 -2737380 DOWN 1 -2737380 0 512 -2737397 1 512 -2737567 DOWN 1 -2737567 0 512 -2737579 1 512 -2737737 DOWN 1 -2737737 0 512 -2737755 1 512 -2737928 DOWN 1 -2737928 0 512 -2737943 1 512 -2738611 DOWN 1 -2738611 0 512 -2738651 1 512 -2738688 DOWN 1 -2738688 0 512 -2738818 1 512 -2738845 DOWN 1 -2738845 0 512 -2743363 UP 10 -2743363 waslock = 0 -2743363 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2743394 512 16777728 -~~~ -2743521 DOWN 10 -2743520 0 16777728 -2743544 0 512 -~~~ -~~~ -2743560 0 2560 -~~~ -~~~ -2743562 0 2048 -2743563 homeCount = 6 -2743564 waitCount = 2 -2743564 ripCount = 1 -2743565 locktype1 = 1 -2743565 locktype2 = 1 -2743566 locktype3 = 0 -2743566 goalCount = 0 -2743567 goalTotal = 0 -2743567 otherCount = 3 -~~~ -2743579 UP 10 -2743579 waslock = 0 -2743579 512 2048 -~~~ -2748231 DOWN 10 -2748231 0 2048 -~~~ -~~~ -~~~ -~~~ -2748261 homeCount = 6 -2748261 waitCount = 2 -2748262 ripCount = 1 -2748262 locktype1 = 1 -2748263 locktype2 = 1 -2748263 locktype3 = 0 -2748263 goalCount = 0 -2748264 goalTotal = 0 -2748264 otherCount = 3 -~~~ -2748272 UP 10 -2748273 waslock = 0 -2748272 512 2048 -~~~ -2748303 DOWN 10 -2748303 0 2048 -~~~ -~~~ -~~~ -~~~ -2748321 homeCount = 6 -2748322 waitCount = 2 -2748322 ripCount = 1 -2748323 locktype1 = 1 -2748323 locktype2 = 1 -2748324 locktype3 = 0 -2748324 goalCount = 0 -2748325 goalTotal = 0 -2748325 otherCount = 3 -~~~ -2749680 UP 12 -2749680 2048 2048 -2751680 CLICK1 -2751680 CLICK2 -~~~ -~~~ -~~~ -2751702 2048 67110912 -~~~ -2751852 2048 2048 -2755155 DOWN 12 -2755155 0 2048 -~~~ -~~~ -2755179 0 0 -~~~ -2755181 UP 12 -2755181 2048 0 -~~~ -~~~ -2755182 2048 1 -~~~ -~~~ -2755184 2048 3 -~~~ -2755185 2048 7 -~~~ -~~~ -2755187 2048 15 -~~~ -~~~ -2755188 2048 31 -~~~ -~~~ -2755190 2048 63 -~~~ -~~~ -2755192 2048 127 -~~~ -~~~ -2755194 2048 255 -2755195 homeCount = 6 -2755216 waitCount = 3 -2755217 ripCount = 1 -2755217 locktype1 = 1 -2755218 locktype2 = 1 -2755218 locktype3 = 0 -2755218 goalCount = 0 -2755219 goalTotal = 0 -2755219 otherCount = 3 -~~~ -2755220 CURRENTGOAL IS [5] -~~~ -2755257 DOWN 12 -2755257 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2755297 homeCount = 6 -2755297 waitCount = 3 -2755298 ripCount = 1 -2755298 locktype1 = 1 -2755299 locktype2 = 1 -2755299 locktype3 = 0 -2755300 goalCount = 0 -2755300 goalTotal = 0 -2755301 otherCount = 3 -~~~ -2755302 CURRENTGOAL IS [5] -~~~ -2758389 UP 6 -2758389 32 255 -~~~ -~~~ -2762845 DOWN 6 -2762845 0 255 -~~~ -~~~ -2762870 0 254 -~~~ -~~~ -2762872 0 252 -~~~ -~~~ -2762873 0 248 -~~~ -~~~ -2762875 0 240 -~~~ -~~~ -2762877 0 224 -~~~ -~~~ -2762879 0 192 -~~~ -~~~ -2762881 0 128 -~~~ -~~~ -2762882 0 0 -~~~ -~~~ -2762884 0 512 -2762885 homeCount = 6 -2762886 waitCount = 3 -2762886 ripCount = 1 -2762887 locktype1 = 1 -2762887 locktype2 = 1 -2762908 locktype3 = 0 -2762909 goalCount = 0 -2762909 goalTotal = 0 -2762910 otherCount = 4 -~~~ -2766008 UP 10 -2766008 waslock = 0 -2766008 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2766038 512 16777728 -~~~ -2766188 512 512 -2766218 DOWN 10 -2766217 0 512 -~~~ -~~~ -2766243 0 1536 -~~~ -~~~ -2766245 0 1024 -2766246 homeCount = 7 -2766246 waitCount = 3 -2766247 ripCount = 1 -2766247 locktype1 = 1 -2766248 locktype2 = 1 -2766248 locktype3 = 0 -2766249 goalCount = 0 -2766249 goalTotal = 0 -2766250 otherCount = 4 -~~~ -2766305 UP 10 -2766305 waslock = 0 -2766305 512 1024 -~~~ -2770192 DOWN 10 -2770192 0 1024 -~~~ -~~~ -~~~ -~~~ -2770215 homeCount = 7 -2770215 waitCount = 3 -2770216 ripCount = 1 -2770216 locktype1 = 1 -2770217 locktype2 = 1 -2770217 locktype3 = 0 -2770218 goalCount = 0 -2770218 goalTotal = 0 -2770219 otherCount = 4 -~~~ -2771671 UP 11 -2771671 1024 1024 -2771682 DOWN 11 -2771682 0 1024 -2771731 UP 11 -2771731 1024 1024 -2773171 BEEP1 -2773171 BEEP2 -~~~ -~~~ -~~~ -2773194 1024 33555456 -~~~ -2773198 DOWN 11 -2773198 0 33555456 -2773250 UP 11 -2773250 1024 33555456 -2773344 1024 1024 -~~~ -~~~ -2773852 1024 0 -~~~ -~~~ -2773854 1024 1 -~~~ -~~~ -2773856 1024 3 -~~~ -~~~ -2773858 1024 7 -~~~ -~~~ -2773860 1024 15 -~~~ -~~~ -2773861 1024 31 -~~~ -~~~ -2773863 1024 63 -~~~ -~~~ -2773865 1024 127 -~~~ -~~~ -2773867 1024 255 -2773868 homeCount = 7 -2773868 waitCount = 3 -2773869 ripCount = 2 -2773869 locktype1 = 1 -2773890 locktype2 = 1 -2773891 locktype3 = 0 -2773891 goalCount = 0 -2773892 goalTotal = 0 -2773892 otherCount = 4 -~~~ -2773893 CURRENTGOAL IS [5] -~~~ -2778754 DOWN 11 -2778754 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2778788 homeCount = 7 -2778789 waitCount = 3 -2778789 ripCount = 2 -2778790 locktype1 = 1 -2778790 locktype2 = 1 -2778790 locktype3 = 0 -2778791 goalCount = 0 -2778791 goalTotal = 0 -2778792 otherCount = 4 -~~~ -2778793 CURRENTGOAL IS [5] -~~~ -2782128 UP 6 -2782128 32 255 -~~~ -~~~ -2783049 DOWN 6 -2783049 0 255 -~~~ -~~~ -2783075 0 254 -~~~ -~~~ -2783077 0 252 -~~~ -~~~ -2783078 0 248 -~~~ -~~~ -2783080 0 240 -~~~ -~~~ -2783082 0 224 -~~~ -~~~ -2783084 0 192 -~~~ -~~~ -2783086 0 128 -~~~ -~~~ -2783088 0 0 -~~~ -~~~ -2783090 0 512 -2783090 homeCount = 7 -2783091 waitCount = 3 -2783091 ripCount = 2 -2783092 locktype1 = 1 -2783092 locktype2 = 1 -2783114 locktype3 = 0 -2783114 goalCount = 0 -2783114 goalTotal = 0 -2783115 otherCount = 5 -~~~ -2786457 UP 10 -2786457 waslock = 0 -2786457 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2786485 512 16777728 -~~~ -2786635 512 512 -2786717 DOWN 10 -2786716 0 512 -~~~ -~~~ -2786737 0 2560 -~~~ -~~~ -2786739 0 2048 -2786740 homeCount = 8 -2786740 waitCount = 3 -2786741 ripCount = 2 -2786741 locktype1 = 1 -2786742 locktype2 = 1 -2786742 locktype3 = 0 -2786742 goalCount = 0 -2786743 goalTotal = 0 -2786743 otherCount = 5 -~~~ -2786787 UP 10 -2786787 waslock = 0 -2786787 512 2048 -~~~ -2790582 DOWN 10 -2790582 0 2048 -~~~ -~~~ -~~~ -~~~ -2790611 UP 10 -2790611 waslock = 0 -2790610 512 2048 -2790612 homeCount = 8 -2790613 waitCount = 3 -2790613 ripCount = 2 -2790614 locktype1 = 1 -2790614 locktype2 = 1 -2790615 locktype3 = 0 -2790615 goalCount = 0 -2790616 goalTotal = 0 -2790616 otherCount = 5 -~~~ -~~~ -2790655 DOWN 10 -2790655 0 2048 -~~~ -~~~ -~~~ -~~~ -2790682 homeCount = 8 -2790682 waitCount = 3 -2790683 ripCount = 2 -2790683 locktype1 = 1 -2790684 locktype2 = 1 -2790684 locktype3 = 0 -2790685 goalCount = 0 -2790685 goalTotal = 0 -2790686 otherCount = 5 -~~~ -2791798 UP 12 -2791798 2048 2048 -2792281 DOWN 12 -2792281 0 2048 -2792337 UP 12 -2792337 2048 2048 -2792758 DOWN 12 -2792758 0 2048 -2792844 UP 12 -2792844 2048 2048 -2795298 CLICK1 -2795298 CLICK2 -~~~ -~~~ -~~~ -2795318 2048 67110912 -~~~ -2795468 2048 2048 -2799664 DOWN 12 -2799664 0 2048 -~~~ -~~~ -2799687 0 0 -~~~ -~~~ -2799689 0 1 -~~~ -~~~ -2799690 0 3 -~~~ -~~~ -2799692 0 7 -~~~ -~~~ -2799694 0 15 -~~~ -~~~ -2799696 0 31 -~~~ -~~~ -2799698 0 63 -~~~ -~~~ -2799700 0 127 -~~~ -~~~ -2799701 0 255 -2799702 homeCount = 8 -2799703 waitCount = 4 -2799703 ripCount = 2 -2799704 locktype1 = 1 -2799704 locktype2 = 1 -2799705 locktype3 = 0 -2799726 goalCount = 0 -2799727 goalTotal = 0 -2799727 otherCount = 5 -~~~ -2799728 CURRENTGOAL IS [5] -~~~ -2802199 UP 4 -2802199 8 255 -~~~ -~~~ -2802576 DOWN 4 -2802576 0 255 -2802593 8 255 -~~~ -~~~ -2802609 8 254 -~~~ -~~~ -2802611 8 252 -~~~ -~~~ -2802613 8 248 -~~~ -~~~ -2802615 8 240 -~~~ -~~~ -2802616 8 224 -~~~ -~~~ -2802618 8 192 -~~~ -~~~ -2802620 8 128 -~~~ -~~~ -2802622 8 0 -~~~ -~~~ -2802624 8 512 -2802625 homeCount = 8 -2802625 waitCount = 4 -2802626 ripCount = 2 -2802626 locktype1 = 1 -2802627 locktype2 = 1 -2802648 locktype3 = 0 -2802648 goalCount = 0 -2802649 goalTotal = 0 -2802649 otherCount = 6 -~~~ -2803199 DOWN 4 -2803199 0 512 -2806645 UP 10 -2806645 waslock = 0 -2806645 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2806667 512 16777728 -~~~ -2806808 DOWN 10 -2806808 0 16777728 -2806817 0 512 -~~~ -~~~ -2806832 0 2560 -~~~ -~~~ -2806834 0 2048 -2806835 homeCount = 9 -2806836 waitCount = 4 -2806836 ripCount = 2 -2806837 locktype1 = 1 -2806837 locktype2 = 1 -2806838 locktype3 = 0 -2806838 goalCount = 0 -2806838 goalTotal = 0 -2806839 otherCount = 6 -~~~ -2806843 UP 10 -2806843 waslock = 0 -2806843 512 2048 -~~~ -2807597 DOWN 10 -2807597 0 2048 -~~~ -~~~ -~~~ -~~~ -2807626 homeCount = 9 -2807626 waitCount = 4 -2807627 ripCount = 2 -2807627 locktype1 = 1 -2807628 locktype2 = 1 -2807628 locktype3 = 0 -2807629 goalCount = 0 -2807629 goalTotal = 0 -2807630 otherCount = 6 -~~~ -2810696 UP 11 -2810696 LOCKOUT 1 -2810696 1024 2048 -~~~ -2810723 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2810729 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2810753 DOWN 11 -2810753 0 0 -2810768 UP 11 -2810768 1024 0 -2811250 DOWN 11 -2811250 0 0 -2811286 UP 11 -2811286 1024 0 -2811744 DOWN 11 -2811744 0 0 -2811766 UP 11 -2811766 1024 0 -2811807 DOWN 11 -2811807 0 0 -2811850 UP 11 -2811850 1024 0 -2812828 DOWN 11 -2812828 0 0 -2812876 UP 11 -2812876 1024 0 -2813995 DOWN 11 -2813995 0 0 -2814049 UP 11 -2814049 1024 0 -2815505 DOWN 11 -2815505 0 0 -2819543 UP 8 -2819543 128 0 -2819585 DOWN 8 -2819585 0 0 -2819606 128 0 -2819875 DOWN 8 -2819875 0 0 -2819901 128 0 -2819941 DOWN 8 -2819941 0 0 -2824340 512 0 -2824731 0 0 -2824770 512 0 -2827498 0 0 -2827513 512 0 -2827572 0 0 -2835723 LOCKEND -~~~ -~~~ -~~~ -2835743 0 512 -2837111 UP 3 -2837111 4 512 -2837391 DOWN 3 -2837391 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2837428 homeCount = 9 -2837428 waitCount = 4 -2837429 ripCount = 2 -2837429 locktype1 = 2 -2837430 locktype2 = 1 -2837430 locktype3 = 0 -2837431 goalCount = 0 -2837431 goalTotal = 0 -2837432 otherCount = 6 -~~~ -2837436 4 512 -2837822 DOWN 3 -2837822 0 512 -2837860 4 512 -2838167 DOWN 3 -2838167 0 512 -2838177 4 512 -2838316 DOWN 3 -2838316 0 512 -2838347 4 512 -2839028 DOWN 3 -2839028 0 512 -2839041 4 512 -2839199 DOWN 3 -2839199 0 512 -2839209 4 512 -2841094 DOWN 3 -2841094 0 512 -2841119 4 512 -2841151 DOWN 3 -2841151 0 512 -2845140 UP 10 -2845140 waslock = 0 -2845140 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2845169 512 16777728 -~~~ -2845199 DOWN 10 -2845199 0 16777728 -~~~ -~~~ -2845224 0 16778752 -~~~ -~~~ -2845226 0 16778240 -2845227 homeCount = 10 -2845227 waitCount = 4 -2845228 ripCount = 2 -2845228 locktype1 = 2 -2845229 locktype2 = 1 -2845229 locktype3 = 0 -2845230 goalCount = 0 -2845230 goalTotal = 0 -2845231 otherCount = 6 -~~~ -2845259 UP 10 -2845259 waslock = 0 -2845259 512 16778240 -~~~ -2845319 512 1024 -2845324 DOWN 10 -2845324 0 1024 -~~~ -~~~ -~~~ -~~~ -2845350 homeCount = 10 -2845350 waitCount = 4 -2845351 ripCount = 2 -2845351 locktype1 = 2 -2845352 locktype2 = 1 -2845352 locktype3 = 0 -2845353 goalCount = 0 -2845353 goalTotal = 0 -2845354 otherCount = 6 -~~~ -2845370 UP 10 -2845370 waslock = 0 -2845370 512 1024 -~~~ -2846016 DOWN 10 -2846016 0 1024 -~~~ -~~~ -~~~ -~~~ -2846039 homeCount = 10 -2846039 waitCount = 4 -2846040 ripCount = 2 -2846040 locktype1 = 2 -2846041 locktype2 = 1 -2846041 locktype3 = 0 -2846041 goalCount = 0 -2846042 goalTotal = 0 -2846042 otherCount = 6 -~~~ -2846045 UP 10 -2846045 waslock = 0 -2846045 512 1024 -~~~ -2846440 DOWN 10 -2846440 0 1024 -~~~ -~~~ -~~~ -~~~ -2846469 homeCount = 10 -2846470 waitCount = 4 -2846470 ripCount = 2 -2846471 locktype1 = 2 -2846471 locktype2 = 1 -2846472 locktype3 = 0 -2846472 goalCount = 0 -2846473 goalTotal = 0 -2846473 otherCount = 6 -~~~ -2846499 UP 10 -2846499 waslock = 0 -2846498 512 1024 -~~~ -2846565 DOWN 10 -2846565 0 1024 -~~~ -~~~ -~~~ -~~~ -2846591 homeCount = 10 -2846592 waitCount = 4 -2846592 ripCount = 2 -2846593 locktype1 = 2 -2846593 locktype2 = 1 -2846594 locktype3 = 0 -2846594 goalCount = 0 -2846595 goalTotal = 0 -2846595 otherCount = 6 -~~~ -2847849 UP 11 -2847849 1024 1024 -2849371 DOWN 11 -2849371 0 1024 -2849409 UP 11 -2849409 1024 1024 -2849850 BEEP1 -2849850 BEEP2 -~~~ -~~~ -~~~ -2849879 1024 33555456 -~~~ -2850029 1024 1024 -2855199 DOWN 11 -2855199 0 1024 -~~~ -~~~ -2855227 0 0 -~~~ -~~~ -2855228 0 1 -~~~ -~~~ -2855230 0 3 -~~~ -~~~ -2855232 0 7 -~~~ -~~~ -2855234 0 15 -~~~ -~~~ -2855236 0 31 -~~~ -~~~ -2855237 0 63 -~~~ -~~~ -2855239 0 127 -~~~ -~~~ -2855241 0 255 -2855242 homeCount = 10 -2855243 waitCount = 4 -2855243 ripCount = 3 -2855244 locktype1 = 2 -2855244 locktype2 = 1 -2855245 locktype3 = 0 -2855266 goalCount = 0 -2855266 goalTotal = 0 -2855267 otherCount = 6 -~~~ -2855268 CURRENTGOAL IS [5] -~~~ -2857717 UP 7 -2857717 64 255 -~~~ -~~~ -2858426 DOWN 7 -2858426 0 255 -~~~ -~~~ -2858445 0 254 -~~~ -~~~ -2858447 0 252 -~~~ -~~~ -2858449 0 248 -~~~ -~~~ -2858451 0 240 -~~~ -~~~ -2858453 0 224 -~~~ -~~~ -2858455 0 192 -~~~ -~~~ -2858456 0 128 -~~~ -~~~ -2858458 0 0 -~~~ -~~~ -2858460 0 512 -2858461 homeCount = 10 -2858462 waitCount = 4 -2858462 ripCount = 3 -2858463 locktype1 = 2 -2858463 locktype2 = 1 -2858484 locktype3 = 0 -2858485 goalCount = 0 -2858485 goalTotal = 0 -2858486 otherCount = 7 -~~~ -2858682 64 512 -2859243 DOWN 7 -2859243 0 512 -2859279 64 512 -2859326 DOWN 7 -2859326 0 512 -2862459 UP 10 -2862459 waslock = 0 -2862459 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2862493 512 16777728 -~~~ -2862499 DOWN 10 -2862499 0 16777728 -~~~ -~~~ -2862523 0 16778752 -~~~ -~~~ -2862525 0 16778240 -2862526 homeCount = 11 -2862527 waitCount = 4 -2862527 ripCount = 3 -2862528 locktype1 = 2 -2862528 locktype2 = 1 -2862528 locktype3 = 0 -2862529 goalCount = 0 -2862529 goalTotal = 0 -2862530 otherCount = 7 -~~~ -2862551 UP 10 -2862551 waslock = 0 -2862551 512 16778240 -~~~ -2862643 512 1024 -2862760 DOWN 10 -2862760 0 1024 -~~~ -~~~ -~~~ -~~~ -2862797 homeCount = 11 -2862798 waitCount = 4 -2862798 ripCount = 3 -2862799 locktype1 = 2 -2862799 locktype2 = 1 -2862799 locktype3 = 0 -2862800 goalCount = 0 -2862800 goalTotal = 0 -2862801 otherCount = 7 -~~~ -2862809 UP 10 -2862809 waslock = 0 -2862809 512 1024 -~~~ -2868573 DOWN 10 -2868573 0 1024 -~~~ -~~~ -~~~ -~~~ -2868601 homeCount = 11 -2868602 waitCount = 4 -2868602 ripCount = 3 -2868603 locktype1 = 2 -2868603 locktype2 = 1 -2868604 locktype3 = 0 -2868604 goalCount = 0 -2868605 goalTotal = 0 -2868605 otherCount = 7 -~~~ -2870096 UP 11 -2870096 1024 1024 -2870130 DOWN 11 -2870130 0 1024 -2870158 UP 11 -2870158 1024 1024 -2870493 DOWN 11 -2870493 0 1024 -2870497 UP 11 -2870497 1024 1024 -2871248 DOWN 11 -2871248 0 1024 -2871278 UP 11 -2871278 1024 1024 -2871621 DOWN 11 -2871621 0 1024 -2871738 UP 11 -2871738 1024 1024 -2874346 BEEP1 -2874346 BEEP2 -~~~ -~~~ -~~~ -2874367 1024 33555456 -~~~ -2874517 1024 1024 -2880959 DOWN 11 -2880959 0 1024 -~~~ -~~~ -2880977 0 0 -~~~ -~~~ -2880978 0 1 -~~~ -~~~ -2880980 0 3 -~~~ -~~~ -2880982 0 7 -~~~ -~~~ -2880984 0 15 -~~~ -~~~ -2880986 0 31 -~~~ -~~~ -2880988 0 63 -~~~ -~~~ -2880989 0 127 -~~~ -~~~ -2880991 0 255 -2880992 homeCount = 11 -2880993 waitCount = 4 -2880993 ripCount = 4 -2880994 locktype1 = 2 -2880994 locktype2 = 1 -2880995 locktype3 = 0 -2881016 goalCount = 0 -2881016 goalTotal = 0 -2881017 otherCount = 7 -~~~ -2881018 CURRENTGOAL IS [5] -~~~ -2881018 UP 11 -2881018 1024 255 -2881052 DOWN 11 -2881052 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2881094 homeCount = 11 -2881095 waitCount = 4 -2881095 ripCount = 4 -2881096 locktype1 = 2 -2881096 locktype2 = 1 -2881097 locktype3 = 0 -2881097 goalCount = 0 -2881098 goalTotal = 0 -2881098 otherCount = 7 -~~~ -2881099 CURRENTGOAL IS [5] -~~~ -2883804 UP 5 -2883804 16 255 -~~~ -~~~ -2883831 outer reward -~~~ -2883831 16 1048831 -~~~ -~~~ -2884000 DOWN 5 -2884000 0 1048831 -~~~ -~~~ -2884018 0 1048830 -~~~ -~~~ -2884020 0 1048828 -~~~ -~~~ -2884022 0 1048824 -~~~ -~~~ -2884024 0 1048816 -~~~ -~~~ -2884026 0 1048800 -~~~ -~~~ -2884027 0 1048768 -~~~ -~~~ -2884029 0 1048704 -~~~ -~~~ -2884031 0 1048576 -~~~ -~~~ -2884033 0 1049088 -2884034 homeCount = 11 -2884034 waitCount = 4 -2884035 ripCount = 4 -2884056 locktype1 = 2 -2884056 locktype2 = 1 -2884057 locktype3 = 0 -2884057 goalCount = 1 -2884058 goalTotal = 1 -2884058 otherCount = 7 -~~~ -2884085 16 1049088 -2884281 16 512 -2884488 DOWN 5 -2884488 0 512 -2884507 16 512 -2884624 DOWN 5 -2884624 0 512 -2884646 16 512 -2884762 DOWN 5 -2884762 0 512 -2884788 16 512 -2884901 DOWN 5 -2884901 0 512 -2884928 16 512 -2885047 DOWN 5 -2885047 0 512 -2885071 16 512 -2885212 DOWN 5 -2885212 0 512 -2885215 16 512 -2885512 DOWN 5 -2885512 0 512 -2885526 16 512 -2893817 DOWN 5 -2893817 0 512 -2893879 16 512 -2893901 DOWN 5 -2893901 0 512 -2900132 UP 10 -2900132 waslock = 0 -2900132 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2900165 512 16777728 -~~~ -2900270 DOWN 10 -2900270 0 16777728 -~~~ -~~~ -2900289 0 16779776 -~~~ -~~~ -2900291 0 16779264 -2900292 homeCount = 12 -2900292 waitCount = 4 -2900293 ripCount = 4 -2900293 locktype1 = 2 -2900294 locktype2 = 1 -2900294 locktype3 = 0 -2900295 goalCount = 1 -2900295 goalTotal = 1 -2900296 otherCount = 7 -~~~ -2900317 0 2048 -2900502 UP 10 -2900503 waslock = 0 -2900502 512 2048 -~~~ -2904478 DOWN 10 -2904478 0 2048 -~~~ -~~~ -~~~ -~~~ -2904501 homeCount = 12 -2904501 waitCount = 4 -2904502 ripCount = 4 -2904502 locktype1 = 2 -2904503 locktype2 = 1 -2904503 locktype3 = 0 -2904504 goalCount = 1 -2904504 goalTotal = 1 -2904505 otherCount = 7 -~~~ -2906493 UP 12 -2906493 2048 2048 -2907045 DOWN 12 -2907045 0 2048 -2907073 UP 12 -2907073 2048 2048 -2907265 DOWN 12 -2907265 0 2048 -2907322 UP 12 -2907322 2048 2048 -2908818 DOWN 12 -2908818 0 2048 -2908848 UP 12 -2908848 2048 2048 -2908879 DOWN 12 -2908879 0 2048 -2908896 UP 12 -2908896 2048 2048 -2908993 CLICK1 -2908993 CLICK2 -~~~ -~~~ -~~~ -2909022 2048 67110912 -~~~ -2909172 2048 2048 -2917583 DOWN 12 -2917583 0 2048 -~~~ -~~~ -2917608 0 0 -~~~ -~~~ -2917610 0 1 -~~~ -~~~ -2917612 0 3 -~~~ -~~~ -2917614 0 7 -~~~ -~~~ -2917616 0 15 -~~~ -~~~ -2917618 0 31 -~~~ -~~~ -2917619 0 63 -~~~ -~~~ -2917621 0 127 -~~~ -~~~ -2917623 0 255 -2917624 homeCount = 12 -2917624 waitCount = 5 -2917625 ripCount = 4 -2917625 locktype1 = 2 -2917626 locktype2 = 1 -2917626 locktype3 = 0 -2917647 goalCount = 1 -2917648 goalTotal = 1 -2917648 otherCount = 7 -~~~ -2917649 CURRENTGOAL IS [5] -~~~ -2926969 UP 10 -2926969 waslock = 0 -2926969 512 255 -~~~ -2926992 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2926999 512 254 -~~~ -~~~ -2927001 512 252 -~~~ -~~~ -2927003 512 248 -~~~ -~~~ -2927005 512 240 -~~~ -~~~ -2927006 512 224 -~~~ -~~~ -2927008 512 192 -~~~ -~~~ -2927010 512 128 -~~~ -~~~ -2927012 512 0 -~~~ -~~~ -~~~ -2927150 0 0 -2927358 512 0 -2927666 0 0 -2929005 UP 11 -2929005 1024 0 -2930091 DOWN 11 -2930091 0 0 -2930141 UP 11 -2930141 1024 0 -2930869 DOWN 11 -2930869 0 0 -2930890 UP 11 -2930890 1024 0 -2930901 DOWN 11 -2930901 0 0 -2930965 UP 11 -2930965 1024 0 -2932611 DOWN 11 -2932611 0 0 -2932703 UP 11 -2932703 1024 0 -2932933 DOWN 11 -2932933 0 0 -2937462 512 0 -2938258 0 0 -2938311 512 0 -2938361 0 0 -2938456 512 0 -2938511 0 0 -2938584 512 0 -2938784 0 0 -2950209 512 0 -2950384 0 0 -2951992 LOCKEND -~~~ -~~~ -~~~ -2952011 0 512 -2955226 UP 10 -2955226 waslock = 0 -2955226 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2955256 512 16777728 -~~~ -2955406 512 512 -2955469 DOWN 10 -2955469 0 512 -~~~ -~~~ -2955491 0 1536 -~~~ -~~~ -2955492 0 1024 -2955493 homeCount = 13 -2955494 waitCount = 5 -2955494 ripCount = 4 -2955495 locktype1 = 2 -2955495 locktype2 = 2 -2955496 locktype3 = 0 -2955496 goalCount = 1 -2955497 goalTotal = 1 -2955497 otherCount = 7 -~~~ -2955567 UP 10 -2955567 waslock = 0 -2955567 512 1024 -~~~ -2959020 DOWN 10 -2959020 0 1024 -2959034 UP 10 -2959035 waslock = 0 -2959034 512 1024 -~~~ -~~~ -~~~ -~~~ -2959056 homeCount = 13 -2959056 waitCount = 5 -2959057 ripCount = 4 -2959057 locktype1 = 2 -2959057 locktype2 = 2 -2959058 locktype3 = 0 -2959058 goalCount = 1 -2959059 goalTotal = 1 -2959059 otherCount = 7 -~~~ -~~~ -2959132 DOWN 10 -2959132 0 1024 -~~~ -~~~ -~~~ -~~~ -2959154 homeCount = 13 -2959154 waitCount = 5 -2959155 ripCount = 4 -2959155 locktype1 = 2 -2959156 locktype2 = 2 -2959156 locktype3 = 0 -2959157 goalCount = 1 -2959157 goalTotal = 1 -2959158 otherCount = 7 -~~~ -2960777 UP 11 -2960777 1024 1024 -2962087 DOWN 11 -2962087 0 1024 -2962136 UP 11 -2962136 1024 1024 -2964777 BEEP1 -2964777 BEEP2 -~~~ -~~~ -~~~ -2964802 1024 33555456 -~~~ -2964952 1024 1024 -2971806 DOWN 11 -2971806 0 1024 -~~~ -~~~ -2971831 0 0 -~~~ -~~~ -2971833 0 1 -~~~ -~~~ -2971835 0 3 -~~~ -~~~ -2971837 0 7 -~~~ -~~~ -2971838 0 15 -~~~ -~~~ -2971840 0 31 -~~~ -~~~ -2971842 0 63 -~~~ -~~~ -2971844 0 127 -~~~ -~~~ -2971846 0 255 -2971847 homeCount = 13 -2971847 waitCount = 5 -2971848 ripCount = 5 -2971848 locktype1 = 2 -2971849 locktype2 = 2 -2971870 locktype3 = 0 -2971870 goalCount = 1 -2971871 goalTotal = 1 -2971871 otherCount = 7 -~~~ -2971872 CURRENTGOAL IS [5] -~~~ -2971877 UP 11 -2971877 1024 255 -2971903 DOWN 11 -2971903 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -2971937 homeCount = 13 -2971938 waitCount = 5 -2971938 ripCount = 5 -2971939 locktype1 = 2 -2971939 locktype2 = 2 -2971940 locktype3 = 0 -2971940 goalCount = 1 -2971940 goalTotal = 1 -2971941 otherCount = 7 -~~~ -2971942 CURRENTGOAL IS [5] -~~~ -2976396 UP 5 -2976396 16 255 -~~~ -~~~ -2976414 outer reward -~~~ -2976414 16 1048831 -~~~ -~~~ -2976423 DOWN 5 -2976423 0 1048831 -~~~ -~~~ -2976442 0 1048830 -~~~ -~~~ -2976444 0 1048828 -~~~ -~~~ -2976446 0 1048824 -~~~ -~~~ -2976448 0 1048816 -~~~ -~~~ -2976450 0 1048800 -~~~ -~~~ -2976451 0 1048768 -~~~ -~~~ -2976453 0 1048704 -~~~ -~~~ -2976455 0 1048576 -~~~ -~~~ -2976457 0 1049088 -2976458 homeCount = 13 -2976459 waitCount = 5 -2976459 ripCount = 5 -2976480 locktype1 = 2 -2976481 locktype2 = 2 -2976481 locktype3 = 0 -2976482 goalCount = 2 -2976482 goalTotal = 2 -2976483 otherCount = 7 -~~~ -2976745 16 1049088 -2976864 16 512 -2977119 DOWN 5 -2977119 0 512 -2977139 16 512 -2977247 DOWN 5 -2977247 0 512 -2977273 16 512 -2977378 DOWN 5 -2977378 0 512 -2977408 16 512 -2977520 DOWN 5 -2977520 0 512 -2977546 16 512 -2977661 DOWN 5 -2977661 0 512 -2977678 16 512 -2977805 DOWN 5 -2977805 0 512 -2977822 16 512 -2977954 DOWN 5 -2977954 0 512 -2977960 16 512 -2978103 DOWN 5 -2978103 0 512 -2978108 16 512 -2984704 DOWN 5 -2984704 0 512 -2984779 16 512 -2984829 DOWN 5 -2984829 0 512 -2988561 UP 10 -2988561 waslock = 0 -2988561 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -2988589 512 16777728 -~~~ -2988710 DOWN 10 -2988710 0 16777728 -~~~ -~~~ -2988736 0 16779776 -~~~ -~~~ -2988737 0 16779264 -2988738 homeCount = 14 -2988739 waitCount = 5 -2988739 ripCount = 5 -2988740 locktype1 = 2 -2988740 locktype2 = 2 -2988741 locktype3 = 0 -2988741 goalCount = 2 -2988742 goalTotal = 2 -2988742 otherCount = 7 -~~~ -2988763 0 2048 -2988869 UP 10 -2988869 waslock = 0 -2988869 512 2048 -~~~ -2992466 DOWN 10 -2992466 0 2048 -~~~ -~~~ -~~~ -~~~ -2992487 homeCount = 14 -2992487 waitCount = 5 -2992488 ripCount = 5 -2992488 locktype1 = 2 -2992489 locktype2 = 2 -2992489 locktype3 = 0 -2992490 goalCount = 2 -2992490 goalTotal = 2 -2992491 otherCount = 7 -~~~ -2994131 UP 12 -2994131 2048 2048 -2994583 DOWN 12 -2994583 0 2048 -2994618 UP 12 -2994618 2048 2048 -2997762 DOWN 12 -2997762 0 2048 -2997801 UP 12 -2997801 2048 2048 -2998062 DOWN 12 -2998062 0 2048 -2998088 UP 12 -2998088 2048 2048 -2998631 CLICK1 -2998631 CLICK2 -~~~ -~~~ -~~~ -2998655 2048 67110912 -~~~ -2998805 2048 2048 -3004157 DOWN 12 -3004156 0 2048 -~~~ -~~~ -3004183 0 0 -~~~ -~~~ -3004185 0 1 -~~~ -~~~ -3004187 0 3 -~~~ -~~~ -3004188 0 7 -~~~ -~~~ -3004190 0 15 -~~~ -~~~ -3004192 0 31 -~~~ -~~~ -3004194 0 63 -~~~ -~~~ -3004196 0 127 -~~~ -~~~ -3004197 0 255 -3004198 homeCount = 14 -3004199 waitCount = 6 -3004199 ripCount = 5 -3004200 locktype1 = 2 -3004200 locktype2 = 2 -3004201 locktype3 = 0 -3004222 goalCount = 2 -3004222 goalTotal = 2 -3004223 otherCount = 7 -~~~ -3004224 CURRENTGOAL IS [5] -~~~ -3008015 UP 4 -3008015 8 255 -~~~ -~~~ -3008683 DOWN 4 -3008683 0 255 -~~~ -~~~ -3008705 0 254 -~~~ -~~~ -3008706 0 252 -~~~ -~~~ -3008708 0 248 -~~~ -~~~ -3008710 0 240 -~~~ -~~~ -3008712 0 224 -~~~ -~~~ -3008714 0 192 -~~~ -~~~ -3008716 0 128 -~~~ -~~~ -3008717 0 0 -~~~ -~~~ -3008719 0 512 -3008720 homeCount = 14 -3008721 waitCount = 6 -3008721 ripCount = 5 -3008722 locktype1 = 2 -3008722 locktype2 = 2 -3008743 locktype3 = 0 -3008743 goalCount = 2 -3008744 goalTotal = 2 -3008744 otherCount = 8 -~~~ -3008745 8 512 -3008988 DOWN 4 -3008988 0 512 -3012101 UP 10 -3012101 waslock = 0 -3012101 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3012131 512 16777728 -~~~ -3012281 512 512 -3012321 DOWN 10 -3012321 0 512 -3012338 UP 10 -3012338 waslock = 0 -3012338 512 512 -~~~ -~~~ -3012356 512 1536 -~~~ -~~~ -3012358 512 1024 -3012359 homeCount = 15 -3012359 waitCount = 6 -3012360 ripCount = 5 -3012360 locktype1 = 2 -3012361 locktype2 = 2 -3012361 locktype3 = 0 -3012362 goalCount = 2 -3012362 goalTotal = 2 -3012363 otherCount = 8 -~~~ -~~~ -3016884 DOWN 10 -3016884 0 1024 -~~~ -~~~ -~~~ -~~~ -3016910 homeCount = 15 -3016910 waitCount = 6 -3016911 ripCount = 5 -3016911 locktype1 = 2 -3016912 locktype2 = 2 -3016912 locktype3 = 0 -3016913 goalCount = 2 -3016913 goalTotal = 2 -3016913 otherCount = 8 -~~~ -3016929 UP 10 -3016930 waslock = 0 -3016929 512 1024 -~~~ -3016971 DOWN 10 -3016971 0 1024 -~~~ -~~~ -~~~ -~~~ -3017003 homeCount = 15 -3017004 waitCount = 6 -3017004 ripCount = 5 -3017005 locktype1 = 2 -3017005 locktype2 = 2 -3017006 locktype3 = 0 -3017006 goalCount = 2 -3017007 goalTotal = 2 -3017007 otherCount = 8 -~~~ -3018772 UP 11 -3018772 1024 1024 -3022772 BEEP1 -3022772 BEEP2 -~~~ -~~~ -~~~ -3022798 1024 33555456 -~~~ -3022948 1024 1024 -3026798 DOWN 11 -3026798 0 1024 -3026812 UP 11 -3026812 1024 1024 -~~~ -~~~ -3026816 1024 0 -~~~ -~~~ -3026818 1024 1 -~~~ -~~~ -3026820 1024 3 -~~~ -~~~ -3026822 1024 7 -~~~ -~~~ -3026824 1024 15 -~~~ -~~~ -3026826 1024 31 -~~~ -~~~ -3026827 1024 63 -~~~ -~~~ -3026829 1024 127 -~~~ -~~~ -3026831 1024 255 -3026832 homeCount = 15 -3026833 waitCount = 6 -3026833 ripCount = 6 -3026834 locktype1 = 2 -3026855 locktype2 = 2 -3026855 locktype3 = 0 -3026856 goalCount = 2 -3026856 goalTotal = 2 -3026857 otherCount = 8 -~~~ -3026858 CURRENTGOAL IS [5] -~~~ -3029131 DOWN 11 -3029131 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3029172 homeCount = 15 -3029172 waitCount = 6 -3029173 ripCount = 6 -3029173 locktype1 = 2 -3029174 locktype2 = 2 -3029174 locktype3 = 0 -3029175 goalCount = 2 -3029175 goalTotal = 2 -3029176 otherCount = 8 -~~~ -3029177 CURRENTGOAL IS [5] -~~~ -3029180 UP 11 -3029180 1024 255 -3029224 DOWN 11 -3029224 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3029261 homeCount = 15 -3029262 waitCount = 6 -3029262 ripCount = 6 -3029263 locktype1 = 2 -3029263 locktype2 = 2 -3029264 locktype3 = 0 -3029264 goalCount = 2 -3029265 goalTotal = 2 -3029265 otherCount = 8 -~~~ -3029266 CURRENTGOAL IS [5] -~~~ -3033041 UP 5 -3033041 16 255 -~~~ -~~~ -3033069 outer reward -~~~ -3033069 16 1048831 -~~~ -~~~ -3033156 DOWN 5 -3033156 0 1048831 -~~~ -~~~ -3033176 0 1048830 -~~~ -~~~ -3033178 0 1048828 -~~~ -~~~ -3033180 0 1048824 -~~~ -~~~ -3033182 0 1048816 -~~~ -~~~ -3033183 0 1048800 -~~~ -~~~ -3033185 0 1048768 -~~~ -~~~ -3033187 0 1048704 -~~~ -~~~ -3033189 0 1048576 -~~~ -~~~ -3033191 0 1049088 -3033192 homeCount = 15 -3033192 waitCount = 6 -3033193 ripCount = 6 -3033214 locktype1 = 2 -3033214 locktype2 = 2 -3033215 locktype3 = 0 -3033215 goalCount = 3 -3033215 goalTotal = 3 -3033216 otherCount = 8 -~~~ -3033216 16 1049088 -3033519 16 512 -3033749 DOWN 5 -3033749 0 512 -3033766 16 512 -3033865 DOWN 5 -3033865 0 512 -3033899 16 512 -3033999 DOWN 5 -3033999 0 512 -3034031 16 512 -3034141 DOWN 5 -3034141 0 512 -3034169 16 512 -3034280 DOWN 5 -3034280 0 512 -3034309 16 512 -3034429 DOWN 5 -3034429 0 512 -3034450 16 512 -3034576 DOWN 5 -3034576 0 512 -3034597 16 512 -3035054 DOWN 5 -3035054 0 512 -3035067 16 512 -3042062 DOWN 5 -3042062 0 512 -3042075 16 512 -3042174 DOWN 5 -3042174 0 512 -3045701 UP 10 -3045701 waslock = 0 -3045701 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3045733 512 16777728 -~~~ -3045883 512 512 -3045949 DOWN 10 -3045949 0 512 -3045963 UP 10 -3045963 waslock = 0 -3045963 512 512 -~~~ -~~~ -3045967 512 2560 -~~~ -~~~ -3045969 512 2048 -3045970 homeCount = 16 -3045970 waitCount = 6 -3045971 ripCount = 6 -3045971 locktype1 = 2 -3045972 locktype2 = 2 -3045972 locktype3 = 0 -3045973 goalCount = 3 -3045973 goalTotal = 3 -3045973 otherCount = 8 -~~~ -~~~ -3051491 DOWN 10 -3051491 0 2048 -~~~ -~~~ -~~~ -~~~ -3051519 homeCount = 16 -3051520 waitCount = 6 -3051520 ripCount = 6 -3051521 locktype1 = 2 -3051521 locktype2 = 2 -3051522 locktype3 = 0 -3051522 goalCount = 3 -3051523 goalTotal = 3 -3051523 otherCount = 8 -~~~ -3053813 UP 12 -3053813 2048 2048 -3054243 DOWN 12 -3054243 0 2048 -3054339 UP 12 -3054339 2048 2048 -3054607 DOWN 12 -3054607 0 2048 -3054671 UP 12 -3054671 2048 2048 -3056813 CLICK1 -3056813 CLICK2 -~~~ -~~~ -~~~ -3056838 2048 67110912 -~~~ -3056987 2048 2048 -3061603 DOWN 12 -3061603 0 2048 -~~~ -~~~ -3061626 0 0 -~~~ -~~~ -3061627 0 1 -~~~ -~~~ -3061629 0 3 -~~~ -~~~ -3061631 0 7 -~~~ -~~~ -3061633 0 15 -~~~ -~~~ -3061635 0 31 -~~~ -~~~ -3061636 0 63 -~~~ -~~~ -3061638 0 127 -~~~ -~~~ -3061640 0 255 -3061641 homeCount = 16 -3061642 waitCount = 7 -3061642 ripCount = 6 -3061643 locktype1 = 2 -3061643 locktype2 = 2 -3061664 locktype3 = 0 -3061665 goalCount = 3 -3061665 goalTotal = 3 -3061666 otherCount = 8 -~~~ -3061667 CURRENTGOAL IS [5] -~~~ -3065106 UP 5 -3065106 16 255 -~~~ -~~~ -3065129 outer reward -~~~ -3065130 16 1048831 -~~~ -~~~ -3065146 DOWN 5 -3065146 0 1048831 -~~~ -~~~ -3065166 0 1048830 -~~~ -~~~ -3065168 0 1048828 -~~~ -~~~ -3065170 0 1048824 -~~~ -~~~ -3065171 0 1048816 -~~~ -~~~ -3065173 0 1048800 -~~~ -~~~ -3065175 0 1048768 -~~~ -~~~ -3065177 0 1048704 -~~~ -~~~ -3065179 0 1048576 -~~~ -~~~ -3065181 0 1049088 -3065182 homeCount = 16 -3065182 waitCount = 7 -3065183 ripCount = 6 -3065204 locktype1 = 2 -3065204 locktype2 = 2 -3065205 locktype3 = 0 -3065205 goalCount = 4 -3065206 goalTotal = 4 -3065206 otherCount = 8 -~~~ -3065207 16 1049088 -3065270 DOWN 5 -3065270 0 1049088 -3065325 16 1049088 -3065579 16 512 -3065887 DOWN 5 -3065887 0 512 -3065911 16 512 -3066021 DOWN 5 -3066021 0 512 -3066053 16 512 -3066168 DOWN 5 -3066168 0 512 -3066196 16 512 -3066317 DOWN 5 -3066317 0 512 -3066340 16 512 -3074351 DOWN 5 -3074351 0 512 -3074360 16 512 -3075013 DOWN 5 -3075013 0 512 -3075057 16 512 -3076432 DOWN 5 -3076432 0 512 -3080377 UP 10 -3080378 waslock = 0 -3080377 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3080403 512 16777728 -~~~ -3080553 512 512 -3080585 DOWN 10 -3080585 0 512 -~~~ -~~~ -3080606 0 2560 -~~~ -~~~ -3080608 0 2048 -3080609 homeCount = 17 -3080610 waitCount = 7 -3080610 ripCount = 6 -3080611 locktype1 = 2 -3080611 locktype2 = 2 -3080612 locktype3 = 0 -3080612 goalCount = 4 -3080613 goalTotal = 4 -3080613 otherCount = 8 -~~~ -3080614 UP 10 -3080635 waslock = 0 -3080614 512 2048 -~~~ -3084727 DOWN 10 -3084727 0 2048 -~~~ -~~~ -~~~ -3084747 UP 10 -3084747 waslock = 0 -3084747 512 2048 -~~~ -3084749 homeCount = 17 -3084750 waitCount = 7 -3084750 ripCount = 6 -3084751 locktype1 = 2 -3084751 locktype2 = 2 -3084751 locktype3 = 0 -3084752 goalCount = 4 -3084752 goalTotal = 4 -3084753 otherCount = 8 -~~~ -~~~ -3084815 DOWN 10 -3084815 0 2048 -~~~ -~~~ -~~~ -~~~ -3084840 homeCount = 17 -3084840 waitCount = 7 -3084841 ripCount = 6 -3084841 locktype1 = 2 -3084842 locktype2 = 2 -3084842 locktype3 = 0 -3084843 goalCount = 4 -3084843 goalTotal = 4 -3084844 otherCount = 8 -~~~ -3086263 UP 12 -3086263 2048 2048 -3086712 DOWN 12 -3086712 0 2048 -3086759 UP 12 -3086759 2048 2048 -3088514 CLICK1 -3088514 CLICK2 -~~~ -~~~ -~~~ -3088539 2048 67110912 -~~~ -3088689 2048 2048 -3093822 DOWN 12 -3093822 0 2048 -~~~ -~~~ -3093848 0 0 -~~~ -~~~ -3093849 0 1 -~~~ -~~~ -3093851 0 3 -~~~ -~~~ -3093853 0 7 -~~~ -~~~ -3093855 0 15 -~~~ -~~~ -3093857 0 31 -~~~ -~~~ -3093858 0 63 -~~~ -~~~ -3093860 0 127 -~~~ -~~~ -3093862 0 255 -3093863 homeCount = 17 -3093864 waitCount = 8 -3093864 ripCount = 6 -3093865 locktype1 = 2 -3093865 locktype2 = 2 -3093866 locktype3 = 0 -3093887 goalCount = 4 -3093887 goalTotal = 4 -3093888 otherCount = 8 -~~~ -3093889 CURRENTGOAL IS [5] -~~~ -3093890 UP 12 -3093890 2048 255 -3096724 DOWN 12 -3096724 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3096762 homeCount = 17 -3096762 waitCount = 8 -3096763 ripCount = 6 -3096763 locktype1 = 2 -3096764 locktype2 = 2 -3096764 locktype3 = 0 -3096765 goalCount = 4 -3096765 goalTotal = 4 -3096766 otherCount = 8 -~~~ -3096767 CURRENTGOAL IS [5] -~~~ -3096796 UP 12 -3096796 2048 255 -3096833 DOWN 12 -3096833 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3096874 homeCount = 17 -3096874 waitCount = 8 -3096875 ripCount = 6 -3096875 locktype1 = 2 -3096876 locktype2 = 2 -3096876 locktype3 = 0 -3096877 goalCount = 4 -3096877 goalTotal = 4 -3096877 otherCount = 8 -~~~ -3096879 CURRENTGOAL IS [5] -~~~ -3100868 UP 5 -3100868 16 255 -~~~ -~~~ -3100887 outer reward -~~~ -3100888 16 1048831 -~~~ -~~~ -3100913 DOWN 5 -3100913 0 1048831 -~~~ -~~~ -3100937 0 1048830 -~~~ -~~~ -3100939 0 1048828 -~~~ -~~~ -3100941 0 1048824 -~~~ -~~~ -3100942 0 1048816 -~~~ -~~~ -3100944 0 1048800 -~~~ -~~~ -3100946 0 1048768 -~~~ -~~~ -3100948 0 1048704 -~~~ -3100949 16 1048704 -~~~ -~~~ -3100951 16 1048576 -~~~ -3100952 16 1049088 -3100953 homeCount = 17 -3100953 waitCount = 8 -3100974 ripCount = 6 -3100975 locktype1 = 2 -3100975 locktype2 = 2 -3100976 locktype3 = 0 -3100976 goalCount = 5 -3100977 goalTotal = 5 -3100977 otherCount = 8 -~~~ -3101030 DOWN 5 -3101030 0 1049088 -3101085 16 1049088 -3101337 16 512 -3101521 DOWN 5 -3101521 0 512 -3101537 16 512 -3101644 DOWN 5 -3101644 0 512 -3101675 16 512 -3101791 DOWN 5 -3101791 0 512 -3101820 16 512 -3101934 DOWN 5 -3101934 0 512 -3101961 16 512 -3110337 DOWN 5 -3110337 0 512 -3110357 16 512 -3110459 DOWN 5 -3110459 0 512 -3110518 16 512 -3110553 DOWN 5 -3110553 0 512 -3115418 UP 10 -3115418 waslock = 0 -3115418 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3115442 512 16777728 -~~~ -3115592 512 512 -3115661 DOWN 10 -3115661 0 512 -~~~ -~~~ -3115693 0 2560 -~~~ -~~~ -3115694 0 2048 -3115695 homeCount = 18 -3115696 waitCount = 8 -3115696 ripCount = 6 -3115697 locktype1 = 2 -3115697 locktype2 = 2 -3115698 locktype3 = 0 -3115698 goalCount = 5 -3115699 goalTotal = 5 -3115699 otherCount = 8 -~~~ -3115746 UP 10 -3115746 waslock = 0 -3115746 512 2048 -~~~ -3119352 DOWN 10 -3119352 0 2048 -~~~ -~~~ -~~~ -~~~ -3119379 homeCount = 18 -3119379 waitCount = 8 -3119380 ripCount = 6 -3119380 locktype1 = 2 -3119381 locktype2 = 2 -3119381 locktype3 = 0 -3119382 goalCount = 5 -3119382 goalTotal = 5 -3119383 otherCount = 8 -~~~ -3120777 UP 12 -3120777 2048 2048 -3123277 CLICK1 -3123277 CLICK2 -~~~ -~~~ -~~~ -3123299 2048 67110912 -~~~ -3123449 2048 2048 -3130663 DOWN 12 -3130663 0 2048 -~~~ -~~~ -3130687 0 0 -~~~ -~~~ -3130689 0 1 -~~~ -~~~ -3130691 0 3 -~~~ -~~~ -3130693 0 7 -~~~ -~~~ -3130695 0 15 -~~~ -~~~ -3130696 0 31 -~~~ -~~~ -3130698 0 63 -~~~ -~~~ -3130700 0 127 -~~~ -~~~ -3130702 0 255 -3130703 homeCount = 18 -3130703 waitCount = 9 -3130704 ripCount = 6 -3130704 locktype1 = 2 -3130705 locktype2 = 2 -3130705 locktype3 = 0 -3130726 goalCount = 5 -3130726 goalTotal = 5 -3130727 otherCount = 8 -~~~ -3130728 CURRENTGOAL IS [5] -~~~ -3130749 UP 12 -3130749 2048 255 -3130773 DOWN 12 -3130773 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3130808 homeCount = 18 -3130809 waitCount = 9 -3130809 ripCount = 6 -3130810 locktype1 = 2 -3130810 locktype2 = 2 -3130811 locktype3 = 0 -3130811 goalCount = 5 -3130812 goalTotal = 5 -3130812 otherCount = 8 -~~~ -3130813 CURRENTGOAL IS [5] -~~~ -3130908 UP 12 -3130908 2048 255 -3131207 DOWN 12 -3131207 0 255 -3131223 UP 12 -3131223 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131244 homeCount = 18 -3131244 waitCount = 9 -3131245 ripCount = 6 -3131245 locktype1 = 2 -3131246 locktype2 = 2 -3131246 locktype3 = 0 -3131247 goalCount = 5 -3131247 goalTotal = 5 -3131248 otherCount = 8 -~~~ -3131249 CURRENTGOAL IS [5] -~~~ -3131887 DOWN 12 -3131887 0 255 -3131901 UP 12 -3131901 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131929 DOWN 12 -3131929 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131935 homeCount = 18 -3131936 waitCount = 9 -3131936 ripCount = 6 -3131937 locktype1 = 2 -3131937 locktype2 = 2 -3131938 locktype3 = 0 -3131938 goalCount = 5 -3131939 goalTotal = 5 -3131939 otherCount = 8 -~~~ -3131940 CURRENTGOAL IS [5] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3131976 homeCount = 18 -3131977 waitCount = 9 -3131977 ripCount = 6 -3131978 locktype1 = 2 -3131978 locktype2 = 2 -3131978 locktype3 = 0 -3131979 goalCount = 5 -3131979 goalTotal = 5 -3131980 otherCount = 8 -~~~ -3131981 CURRENTGOAL IS [5] -~~~ -3135451 UP 5 -3135451 16 255 -~~~ -~~~ -3135472 outer reward -~~~ -3135472 16 1048831 -~~~ -~~~ -3135498 DOWN 5 -3135498 0 1048831 -~~~ -~~~ -3135518 0 1048830 -~~~ -~~~ -3135520 0 1048828 -~~~ -~~~ -3135521 0 1048824 -~~~ -~~~ -3135523 0 1048816 -~~~ -~~~ -3135525 0 1048800 -~~~ -~~~ -3135527 0 1048768 -~~~ -~~~ -3135529 0 1048704 -~~~ -~~~ -3135531 0 1048576 -~~~ -~~~ -3135533 0 1049088 -3135534 homeCount = 18 -3135534 waitCount = 9 -3135534 ripCount = 6 -3135555 locktype1 = 2 -3135556 locktype2 = 2 -3135556 locktype3 = 0 -3135557 goalCount = 6 -3135557 goalTotal = 6 -3135558 otherCount = 8 -~~~ -3135701 16 1049088 -3135922 16 512 -3136141 DOWN 5 -3136141 0 512 -3136162 16 512 -3136267 DOWN 5 -3136267 0 512 -3136300 16 512 -3136417 DOWN 5 -3136417 0 512 -3136440 16 512 -3136571 DOWN 5 -3136571 0 512 -3136593 16 512 -3136726 DOWN 5 -3136726 0 512 -3136735 16 512 -3144812 DOWN 5 -3144812 0 512 -3144860 16 512 -3144921 DOWN 5 -3144921 0 512 -3149602 UP 10 -3149602 waslock = 0 -3149602 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3149626 512 16777728 -~~~ -3149776 512 512 -3149906 DOWN 10 -3149906 0 512 -~~~ -~~~ -3149930 0 2560 -~~~ -~~~ -3149931 0 2048 -3149932 homeCount = 19 -3149933 waitCount = 9 -3149933 ripCount = 6 -3149934 locktype1 = 2 -3149934 locktype2 = 2 -3149935 locktype3 = 0 -3149935 goalCount = 6 -3149936 goalTotal = 6 -3149936 otherCount = 8 -~~~ -3149950 UP 10 -3149950 waslock = 0 -3149950 512 2048 -~~~ -3154133 DOWN 10 -3154133 0 2048 -~~~ -~~~ -~~~ -~~~ -3154161 homeCount = 19 -3154161 waitCount = 9 -3154162 ripCount = 6 -3154162 locktype1 = 2 -3154163 locktype2 = 2 -3154163 locktype3 = 0 -3154164 goalCount = 6 -3154164 goalTotal = 6 -3154165 otherCount = 8 -~~~ -3155594 UP 12 -3155594 2048 2048 -3158393 DOWN 12 -3158393 0 2048 -3158406 UP 12 -3158406 2048 2048 -3158844 CLICK1 -3158844 CLICK2 -~~~ -~~~ -~~~ -3158876 2048 67110912 -~~~ -3159026 2048 2048 -3163507 DOWN 12 -3163507 0 2048 -~~~ -~~~ -3163529 0 0 -~~~ -~~~ -3163531 0 1 -~~~ -~~~ -3163533 0 3 -~~~ -~~~ -3163535 0 7 -~~~ -~~~ -3163536 0 15 -~~~ -~~~ -3163538 0 31 -~~~ -~~~ -3163540 0 63 -~~~ -~~~ -3163542 0 127 -~~~ -~~~ -3163544 0 255 -3163545 homeCount = 19 -3163545 waitCount = 10 -3163546 ripCount = 6 -3163546 locktype1 = 2 -3163547 locktype2 = 2 -3163568 locktype3 = 0 -3163568 goalCount = 6 -3163569 goalTotal = 6 -3163569 otherCount = 8 -~~~ -3163570 CURRENTGOAL IS [5] -~~~ -3163578 UP 12 -3163578 2048 255 -3163598 DOWN 12 -3163598 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3163638 homeCount = 19 -3163638 waitCount = 10 -3163639 ripCount = 6 -3163639 locktype1 = 2 -3163640 locktype2 = 2 -3163640 locktype3 = 0 -3163641 goalCount = 6 -3163641 goalTotal = 6 -3163642 otherCount = 8 -~~~ -3163643 CURRENTGOAL IS [5] -~~~ -3166713 UP 5 -3166713 16 255 -~~~ -~~~ -3166733 outer reward -~~~ -3166734 16 1048831 -~~~ -~~~ -3166852 DOWN 5 -3166852 0 1048831 -~~~ -~~~ -3166871 0 1048830 -~~~ -~~~ -3166872 0 1048828 -~~~ -~~~ -3166874 0 1048824 -~~~ -~~~ -3166876 0 1048816 -~~~ -~~~ -3166878 0 1048800 -~~~ -~~~ -3166880 0 1048768 -~~~ -~~~ -3166881 0 1048704 -~~~ -~~~ -3166883 0 1048576 -~~~ -~~~ -3166885 0 1049088 -3166886 homeCount = 19 -3166887 waitCount = 10 -3166887 ripCount = 6 -3166908 locktype1 = 2 -3166909 locktype2 = 2 -3166909 locktype3 = 0 -3166910 goalCount = 7 -3166910 goalTotal = 7 -3166911 otherCount = 8 -~~~ -3166920 16 1049088 -3167183 16 512 -3167467 DOWN 5 -3167467 0 512 -3167492 16 512 -3167596 DOWN 5 -3167596 0 512 -3167627 16 512 -3167749 DOWN 5 -3167749 0 512 -3167769 16 512 -3167902 DOWN 5 -3167902 0 512 -3167918 16 512 -3168063 DOWN 5 -3168063 0 512 -3168067 16 512 -3168216 DOWN 5 -3168216 0 512 -3168221 16 512 -3173245 DOWN 5 -3173245 0 512 -3173274 16 512 -3173358 DOWN 5 -3173358 0 512 -3173398 16 512 -3173533 DOWN 5 -3173533 0 512 -3173545 16 512 -3174748 DOWN 5 -3174748 0 512 -3178391 UP 10 -3178391 waslock = 0 -3178391 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3178419 512 16777728 -~~~ -3178513 DOWN 10 -3178513 0 16777728 -~~~ -~~~ -3178533 0 16779776 -~~~ -~~~ -3178535 0 16779264 -3178536 homeCount = 20 -3178536 waitCount = 10 -3178537 ripCount = 6 -3178537 locktype1 = 2 -3178538 locktype2 = 2 -3178538 locktype3 = 0 -3178539 goalCount = 7 -3178539 goalTotal = 7 -3178540 otherCount = 8 -~~~ -3178565 UP 10 -3178565 waslock = 0 -3178565 512 16779264 -3178569 512 2048 -~~~ -3181110 DOWN 10 -3181110 0 2048 -~~~ -~~~ -~~~ -~~~ -3181136 homeCount = 20 -3181137 waitCount = 10 -3181137 ripCount = 6 -3181138 locktype1 = 2 -3181138 locktype2 = 2 -3181138 locktype3 = 0 -3181139 goalCount = 7 -3181139 goalTotal = 7 -3181140 otherCount = 8 -~~~ -3181148 UP 10 -3181148 waslock = 0 -3181148 512 2048 -~~~ -3182879 DOWN 10 -3182879 0 2048 -~~~ -~~~ -~~~ -~~~ -3182909 homeCount = 20 -3182909 waitCount = 10 -3182910 ripCount = 6 -3182910 locktype1 = 2 -3182911 locktype2 = 2 -3182911 locktype3 = 0 -3182912 goalCount = 7 -3182912 goalTotal = 7 -3182912 otherCount = 8 -~~~ -3184248 UP 12 -3184248 2048 2048 -3184441 DOWN 12 -3184441 0 2048 -3184642 LOCKOUT 3 -~~~ -3184664 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3184670 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3184821 UP 12 -3184821 2048 0 -3186676 DOWN 12 -3186676 0 0 -3186687 UP 12 -3186687 2048 0 -3186880 DOWN 12 -3186880 0 0 -3186888 UP 12 -3186888 2048 0 -3192209 DOWN 12 -3192209 0 0 -3203995 512 0 -3204208 0 0 -3204247 512 0 -3204551 0 0 -3209664 LOCKEND -~~~ -~~~ -~~~ -3209684 0 512 -3211290 UP 10 -3211291 waslock = 0 -3211290 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3211319 512 16777728 -~~~ -3211469 512 512 -3211753 DOWN 10 -3211753 0 512 -~~~ -~~~ -3211773 0 2560 -~~~ -~~~ -3211775 0 2048 -3211776 homeCount = 21 -3211776 waitCount = 10 -3211777 ripCount = 6 -3211777 locktype1 = 2 -3211778 locktype2 = 2 -3211778 locktype3 = 1 -3211779 goalCount = 7 -3211779 goalTotal = 7 -3211780 otherCount = 8 -~~~ -3212060 UP 10 -3212061 waslock = 0 -3212060 512 2048 -~~~ -3212477 DOWN 10 -3212477 0 2048 -3212487 UP 10 -3212488 waslock = 0 -3212487 512 2048 -~~~ -~~~ -~~~ -~~~ -3212507 homeCount = 21 -3212508 waitCount = 10 -3212508 ripCount = 6 -3212509 locktype1 = 2 -3212509 locktype2 = 2 -3212510 locktype3 = 1 -3212510 goalCount = 7 -3212511 goalTotal = 7 -3212511 otherCount = 8 -~~~ -~~~ -3215388 DOWN 10 -3215388 0 2048 -3215405 UP 10 -3215405 waslock = 0 -3215405 512 2048 -~~~ -~~~ -~~~ -~~~ -3215428 homeCount = 21 -3215428 waitCount = 10 -3215429 ripCount = 6 -3215429 locktype1 = 2 -3215430 locktype2 = 2 -3215430 locktype3 = 1 -3215431 goalCount = 7 -3215431 goalTotal = 7 -3215432 otherCount = 8 -~~~ -~~~ -3215479 DOWN 10 -3215479 0 2048 -~~~ -~~~ -~~~ -~~~ -3215506 homeCount = 21 -3215506 waitCount = 10 -3215507 ripCount = 6 -3215507 locktype1 = 2 -3215508 locktype2 = 2 -3215508 locktype3 = 1 -3215508 goalCount = 7 -3215509 goalTotal = 7 -3215509 otherCount = 8 -~~~ -3216863 UP 12 -3216863 2048 2048 -3218565 DOWN 12 -3218565 0 2048 -3218574 UP 12 -3218574 2048 2048 -3220863 CLICK1 -3220863 CLICK2 -~~~ -~~~ -~~~ -3220884 2048 67110912 -~~~ -3221034 2048 2048 -3226345 DOWN 12 -3226345 0 2048 -~~~ -~~~ -3226363 0 0 -~~~ -~~~ -3226365 0 1 -~~~ -~~~ -3226367 0 3 -~~~ -~~~ -3226368 0 7 -~~~ -~~~ -3226370 0 15 -~~~ -~~~ -3226372 0 31 -~~~ -~~~ -3226374 0 63 -~~~ -~~~ -3226376 0 127 -~~~ -~~~ -3226377 0 255 -3226378 homeCount = 21 -3226379 waitCount = 11 -3226379 ripCount = 6 -3226380 locktype1 = 2 -3226380 locktype2 = 2 -3226402 locktype3 = 1 -3226402 goalCount = 7 -3226403 goalTotal = 7 -3226403 otherCount = 8 -~~~ -3226404 CURRENTGOAL IS [5] -~~~ -3226405 UP 12 -3226405 2048 255 -3226446 DOWN 12 -3226446 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3226478 homeCount = 21 -3226479 waitCount = 11 -3226479 ripCount = 6 -3226480 locktype1 = 2 -3226480 locktype2 = 2 -3226481 locktype3 = 1 -3226481 goalCount = 7 -3226482 goalTotal = 7 -3226482 otherCount = 8 -~~~ -3226483 CURRENTGOAL IS [5] -~~~ -3229553 UP 5 -3229553 16 255 -~~~ -~~~ -3229574 outer reward -~~~ -3229575 16 1048831 -~~~ -~~~ -3229607 DOWN 5 -3229607 0 1048831 -~~~ -~~~ -3229632 0 1048830 -~~~ -~~~ -3229634 0 1048828 -~~~ -~~~ -3229636 0 1048824 -~~~ -~~~ -3229638 0 1048816 -~~~ -~~~ -3229640 0 1048800 -~~~ -~~~ -3229642 0 1048768 -~~~ -~~~ -3229643 0 1048704 -~~~ -~~~ -3229645 0 1048576 -~~~ -~~~ -3229647 16 1049088 -3229648 homeCount = 21 -3229649 waitCount = 11 -3229649 ripCount = 6 -3229670 locktype1 = 2 -3229671 locktype2 = 2 -3229671 locktype3 = 1 -3229672 goalCount = 8 -3229672 goalTotal = 8 -3229673 otherCount = 8 -~~~ -3229707 DOWN 5 -3229707 0 1049088 -3229782 16 1049088 -3230024 16 512 -3230230 DOWN 5 -3230230 0 512 -3230247 16 512 -3230349 DOWN 5 -3230349 0 512 -3230385 16 512 -3230485 DOWN 5 -3230485 0 512 -3230525 16 512 -3230632 DOWN 5 -3230632 0 512 -3230658 16 512 -3231216 DOWN 5 -3231216 0 512 -3231224 16 512 -3238685 DOWN 5 -3238685 0 512 -3242068 UP 10 -3242068 waslock = 0 -3242068 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3242100 512 16777728 -~~~ -3242250 512 512 -3242279 DOWN 10 -3242279 0 512 -3242291 UP 10 -3242291 waslock = 0 -3242291 512 512 -~~~ -~~~ -3242317 512 1536 -~~~ -~~~ -3242319 512 1024 -3242320 homeCount = 22 -3242321 waitCount = 11 -3242321 ripCount = 6 -3242322 locktype1 = 2 -3242322 locktype2 = 2 -3242322 locktype3 = 1 -3242323 goalCount = 8 -3242323 goalTotal = 8 -3242324 otherCount = 8 -~~~ -~~~ -3245953 DOWN 10 -3245953 0 1024 -~~~ -~~~ -~~~ -~~~ -3245977 homeCount = 22 -3245977 waitCount = 11 -3245978 ripCount = 6 -3245978 locktype1 = 2 -3245979 locktype2 = 2 -3245979 locktype3 = 1 -3245980 goalCount = 8 -3245980 goalTotal = 8 -3245981 otherCount = 8 -~~~ -3248007 UP 11 -3248006 1024 1024 -3248996 DOWN 11 -3248996 0 1024 -3249014 UP 11 -3249014 1024 1024 -3249041 DOWN 11 -3249041 0 1024 -3249053 UP 11 -3249053 1024 1024 -3249157 DOWN 11 -3249157 0 1024 -3249226 UP 11 -3249226 1024 1024 -3250007 BEEP1 -3250007 BEEP2 -~~~ -~~~ -~~~ -3250027 1024 33555456 -~~~ -3250177 1024 1024 -3254636 DOWN 11 -3254636 0 1024 -~~~ -~~~ -3254664 0 0 -~~~ -~~~ -3254666 0 1 -~~~ -~~~ -3254668 0 3 -~~~ -~~~ -3254669 0 7 -~~~ -~~~ -3254671 0 15 -~~~ -~~~ -3254673 0 31 -~~~ -~~~ -3254675 0 63 -~~~ -~~~ -3254677 0 127 -~~~ -~~~ -3254679 0 255 -3254680 homeCount = 22 -3254680 waitCount = 11 -3254681 ripCount = 7 -3254681 locktype1 = 2 -3254682 locktype2 = 2 -3254703 locktype3 = 1 -3254703 goalCount = 8 -3254704 goalTotal = 8 -3254704 otherCount = 8 -~~~ -3254705 CURRENTGOAL IS [5] -~~~ -3254706 UP 11 -3254706 1024 255 -3254903 DOWN 11 -3254903 0 255 -3254916 UP 11 -3254916 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3254954 homeCount = 22 -3254955 waitCount = 11 -3254955 ripCount = 7 -3254956 locktype1 = 2 -3254956 locktype2 = 2 -3254957 locktype3 = 1 -3254957 goalCount = 8 -3254957 goalTotal = 8 -3254958 otherCount = 8 -~~~ -3254959 CURRENTGOAL IS [5] -~~~ -3256704 DOWN 11 -3256704 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3256740 homeCount = 22 -3256741 waitCount = 11 -3256741 ripCount = 7 -3256742 locktype1 = 2 -3256742 locktype2 = 2 -3256743 locktype3 = 1 -3256743 goalCount = 8 -3256744 goalTotal = 8 -3256744 otherCount = 8 -~~~ -3256745 CURRENTGOAL IS [5] -~~~ -3256756 UP 11 -3256756 1024 255 -3256791 DOWN 11 -3256791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3256831 homeCount = 22 -3256832 waitCount = 11 -3256832 ripCount = 7 -3256833 locktype1 = 2 -3256833 locktype2 = 2 -3256834 locktype3 = 1 -3256834 goalCount = 8 -3256835 goalTotal = 8 -3256835 otherCount = 8 -~~~ -3256836 CURRENTGOAL IS [5] -~~~ -3256857 UP 11 -3256857 1024 255 -3259186 DOWN 11 -3259186 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3259222 homeCount = 22 -3259222 waitCount = 11 -3259223 ripCount = 7 -3259223 locktype1 = 2 -3259224 locktype2 = 2 -3259224 locktype3 = 1 -3259225 goalCount = 8 -3259225 goalTotal = 8 -3259226 otherCount = 8 -~~~ -3259227 CURRENTGOAL IS [5] -~~~ -3262562 UP 5 -3262562 16 255 -~~~ -~~~ -3262589 outer reward -~~~ -3262589 16 1048831 -~~~ -~~~ -3262710 DOWN 5 -3262710 0 1048831 -~~~ -~~~ -3262726 0 1048830 -~~~ -~~~ -3262728 0 1048828 -~~~ -~~~ -3262730 0 1048824 -~~~ -~~~ -3262732 0 1048816 -~~~ -~~~ -3262733 0 1048800 -~~~ -~~~ -3262735 0 1048768 -~~~ -~~~ -3262737 0 1048704 -~~~ -~~~ -3262739 0 1048576 -~~~ -~~~ -3262741 0 1049088 -3262742 homeCount = 22 -3262742 waitCount = 11 -3262743 ripCount = 7 -3262764 locktype1 = 2 -3262764 locktype2 = 2 -3262764 locktype3 = 1 -3262765 goalCount = 9 -3262765 goalTotal = 9 -3262766 otherCount = 8 -~~~ -3262801 16 1049088 -3263039 16 512 -3263359 DOWN 5 -3263359 0 512 -3263383 16 512 -3263493 DOWN 5 -3263493 0 512 -3263518 16 512 -3264398 DOWN 5 -3264398 0 512 -3264406 16 512 -3270249 DOWN 5 -3270249 0 512 -3270308 16 512 -3270360 DOWN 5 -3270360 0 512 -3273977 UP 10 -3273977 waslock = 0 -3273977 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3274003 512 16777728 -~~~ -3274153 512 512 -3274201 DOWN 10 -3274201 0 512 -~~~ -~~~ -3274227 0 2560 -~~~ -~~~ -3274229 0 2048 -3274230 homeCount = 23 -3274230 waitCount = 11 -3274231 ripCount = 7 -3274231 locktype1 = 2 -3274232 locktype2 = 2 -3274232 locktype3 = 1 -3274233 goalCount = 9 -3274233 goalTotal = 9 -3274234 otherCount = 8 -~~~ -3274240 UP 10 -3274240 waslock = 0 -3274240 512 2048 -~~~ -3278548 DOWN 10 -3278548 0 2048 -~~~ -~~~ -~~~ -~~~ -3278571 homeCount = 23 -3278571 waitCount = 11 -3278572 ripCount = 7 -3278572 locktype1 = 2 -3278572 locktype2 = 2 -3278573 locktype3 = 1 -3278573 goalCount = 9 -3278574 goalTotal = 9 -3278574 otherCount = 8 -~~~ -3280094 UP 12 -3280093 2048 2048 -3283094 CLICK1 -3283094 CLICK2 -~~~ -~~~ -~~~ -3283119 2048 67110912 -~~~ -3283269 2048 2048 -3287508 DOWN 12 -3287508 0 2048 -~~~ -~~~ -3287532 0 0 -~~~ -~~~ -3287534 0 1 -~~~ -~~~ -3287536 0 3 -~~~ -~~~ -3287538 0 7 -~~~ -~~~ -3287539 0 15 -~~~ -~~~ -3287541 0 31 -~~~ -~~~ -3287543 0 63 -~~~ -~~~ -3287545 0 127 -~~~ -~~~ -3287547 0 255 -3287548 homeCount = 23 -3287548 waitCount = 12 -3287549 ripCount = 7 -3287549 locktype1 = 2 -3287550 locktype2 = 2 -3287550 locktype3 = 1 -3287571 goalCount = 9 -3287572 goalTotal = 9 -3287572 otherCount = 8 -~~~ -3287573 CURRENTGOAL IS [5] -~~~ -3287592 UP 12 -3287592 2048 255 -3289873 DOWN 12 -3289873 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3289914 homeCount = 23 -3289914 waitCount = 12 -3289915 ripCount = 7 -3289915 locktype1 = 2 -3289916 locktype2 = 2 -3289916 locktype3 = 1 -3289917 goalCount = 9 -3289917 goalTotal = 9 -3289918 otherCount = 8 -~~~ -3289919 CURRENTGOAL IS [5] -~~~ -3289919 UP 12 -3289919 2048 255 -3289957 DOWN 12 -3289957 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3289993 homeCount = 23 -3289994 waitCount = 12 -3289994 ripCount = 7 -3289995 locktype1 = 2 -3289995 locktype2 = 2 -3289996 locktype3 = 1 -3289996 goalCount = 9 -3289997 goalTotal = 9 -3289997 otherCount = 8 -~~~ -3289998 CURRENTGOAL IS [5] -~~~ -3293507 UP 5 -3293507 16 255 -~~~ -~~~ -3293531 outer reward -~~~ -3293531 16 1048831 -~~~ -~~~ -3293536 outerreps = 12 -~~~ -~~~ -3293615 DOWN 5 -3293615 0 1048831 -~~~ -~~~ -3293637 0 1048830 -~~~ -~~~ -3293639 0 1048828 -~~~ -~~~ -3293641 0 1048824 -~~~ -~~~ -3293643 0 1048816 -~~~ -~~~ -3293645 0 1048800 -~~~ -~~~ -3293647 0 1048768 -~~~ -~~~ -3293648 0 1048704 -~~~ -~~~ -3293650 0 1048576 -~~~ -~~~ -3293652 0 1049088 -3293653 homeCount = 23 -3293654 waitCount = 12 -3293654 ripCount = 7 -3293675 locktype1 = 2 -3293675 locktype2 = 2 -3293676 locktype3 = 1 -3293676 goalCount = 0 -3293677 goalTotal = 10 -3293677 otherCount = 8 -~~~ -3293737 16 1049088 -3293981 16 512 -3294292 DOWN 5 -3294292 0 512 -3294316 16 512 -3294427 DOWN 5 -3294427 0 512 -3294455 16 512 -3294576 DOWN 5 -3294576 0 512 -3294585 16 512 -3300882 DOWN 5 -3300882 0 512 -3300930 16 512 -3300943 DOWN 5 -3300943 0 512 -3304714 UP 10 -3304714 waslock = 0 -3304714 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3304747 512 16777728 -~~~ -3304897 512 512 -3304898 DOWN 10 -3304898 0 512 -3304908 UP 10 -3304908 waslock = 0 -3304908 512 512 -~~~ -~~~ -3304923 512 1536 -~~~ -~~~ -3304925 512 1024 -3304926 homeCount = 24 -3304927 waitCount = 12 -3304927 ripCount = 7 -3304928 locktype1 = 2 -3304928 locktype2 = 2 -3304928 locktype3 = 1 -3304929 goalCount = 0 -3304929 goalTotal = 10 -3304930 otherCount = 8 -~~~ -~~~ -3308761 DOWN 10 -3308761 0 1024 -~~~ -~~~ -~~~ -~~~ -3308787 homeCount = 24 -3308788 waitCount = 12 -3308788 ripCount = 7 -3308789 locktype1 = 2 -3308789 locktype2 = 2 -3308790 locktype3 = 1 -3308790 goalCount = 0 -3308791 goalTotal = 10 -3308791 otherCount = 8 -~~~ -3308798 UP 10 -3308798 waslock = 0 -3308798 512 1024 -~~~ -3308860 DOWN 10 -3308860 0 1024 -~~~ -~~~ -~~~ -~~~ -3308885 homeCount = 24 -3308886 waitCount = 12 -3308886 ripCount = 7 -3308887 locktype1 = 2 -3308887 locktype2 = 2 -3308888 locktype3 = 1 -3308888 goalCount = 0 -3308889 goalTotal = 10 -3308889 otherCount = 8 -~~~ -3311076 UP 11 -3311076 1024 1024 -3313181 DOWN 11 -3313181 0 1024 -3313192 UP 11 -3313192 1024 1024 -3314077 BEEP1 -3314077 BEEP2 -~~~ -~~~ -~~~ -3314104 1024 33555456 -~~~ -3314254 1024 1024 -3318081 DOWN 11 -3318081 0 1024 -~~~ -3318103 UP 11 -3318103 1024 1024 -~~~ -~~~ -3318105 1024 0 -~~~ -~~~ -3318106 1024 1 -~~~ -3318107 1024 3 -~~~ -~~~ -3318109 1024 7 -~~~ -~~~ -3318111 1024 15 -~~~ -~~~ -3318113 1024 31 -~~~ -~~~ -3318114 1024 63 -~~~ -~~~ -3318116 1024 127 -~~~ -~~~ -3318118 1024 255 -3318119 homeCount = 24 -3318140 waitCount = 12 -3318141 ripCount = 8 -3318141 locktype1 = 2 -3318142 locktype2 = 2 -3318142 locktype3 = 1 -3318142 goalCount = 0 -3318143 goalTotal = 10 -3318143 otherCount = 8 -~~~ -3318144 CURRENTGOAL IS [4] -~~~ -3318210 DOWN 11 -3318210 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3318243 homeCount = 24 -3318243 waitCount = 12 -3318244 ripCount = 8 -3318244 locktype1 = 2 -3318245 locktype2 = 2 -3318245 locktype3 = 1 -3318246 goalCount = 0 -3318246 goalTotal = 10 -3318247 otherCount = 8 -~~~ -3318248 CURRENTGOAL IS [4] -~~~ -3318282 UP 11 -3318282 1024 255 -3320896 DOWN 11 -3320896 0 255 -3320908 UP 11 -3320907 1024 255 -3320920 DOWN 11 -3320920 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3320943 homeCount = 24 -3320944 waitCount = 12 -3320944 ripCount = 8 -3320945 locktype1 = 2 -3320945 locktype2 = 2 -3320946 locktype3 = 1 -3320946 goalCount = 0 -3320947 goalTotal = 10 -3320947 otherCount = 8 -~~~ -3320948 CURRENTGOAL IS [4] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3320976 homeCount = 24 -3320976 waitCount = 12 -3320977 ripCount = 8 -3320977 locktype1 = 2 -3320978 locktype2 = 2 -3320978 locktype3 = 1 -3320979 goalCount = 0 -3320979 goalTotal = 10 -3321000 otherCount = 8 -~~~ -3321001 CURRENTGOAL IS [4] -~~~ -3321002 UP 11 -3321002 1024 255 -3323162 DOWN 11 -3323162 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3323198 homeCount = 24 -3323198 waitCount = 12 -3323199 ripCount = 8 -3323199 locktype1 = 2 -3323200 locktype2 = 2 -3323200 locktype3 = 1 -3323201 goalCount = 0 -3323201 goalTotal = 10 -3323202 otherCount = 8 -~~~ -3323203 CURRENTGOAL IS [4] -~~~ -3326113 UP 5 -3326113 16 255 -~~~ -~~~ -3326327 DOWN 5 -3326327 0 255 -~~~ -~~~ -3326352 0 254 -~~~ -~~~ -3326354 0 252 -~~~ -~~~ -3326356 0 248 -~~~ -~~~ -3326358 0 240 -~~~ -~~~ -3326360 0 224 -~~~ -~~~ -3326361 0 192 -~~~ -~~~ -3326363 0 128 -~~~ -~~~ -3326365 0 0 -~~~ -~~~ -3326367 0 512 -3326368 homeCount = 24 -3326368 waitCount = 12 -3326369 ripCount = 8 -3326369 locktype1 = 2 -3326370 locktype2 = 2 -3326391 locktype3 = 1 -3326392 goalCount = 0 -3326392 goalTotal = 10 -3326392 otherCount = 9 -~~~ -3326393 16 512 -3327275 DOWN 5 -3327275 0 512 -3331483 UP 10 -3331483 waslock = 0 -3331483 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3331515 512 16777728 -~~~ -3331628 DOWN 10 -3331628 0 16777728 -~~~ -~~~ -3331648 0 16779776 -~~~ -~~~ -3331650 0 16779264 -3331651 homeCount = 25 -3331652 waitCount = 12 -3331652 ripCount = 8 -3331653 locktype1 = 2 -3331653 locktype2 = 2 -3331654 locktype3 = 1 -3331654 goalCount = 0 -3331655 goalTotal = 10 -3331655 otherCount = 9 -~~~ -3331676 0 2048 -3331678 UP 10 -3331678 waslock = 0 -3331678 512 2048 -~~~ -3335072 DOWN 10 -3335072 0 2048 -~~~ -~~~ -~~~ -~~~ -3335101 homeCount = 25 -3335102 waitCount = 12 -3335102 ripCount = 8 -3335103 locktype1 = 2 -3335103 locktype2 = 2 -3335104 locktype3 = 1 -3335104 goalCount = 0 -3335105 goalTotal = 10 -3335105 otherCount = 9 -~~~ -3335111 UP 10 -3335111 waslock = 0 -3335111 512 2048 -~~~ -3335173 DOWN 10 -3335173 0 2048 -~~~ -~~~ -~~~ -~~~ -3335201 homeCount = 25 -3335201 waitCount = 12 -3335202 ripCount = 8 -3335202 locktype1 = 2 -3335202 locktype2 = 2 -3335203 locktype3 = 1 -3335203 goalCount = 0 -3335204 goalTotal = 10 -3335204 otherCount = 9 -~~~ -3337393 UP 12 -3337393 2048 2048 -3338245 DOWN 12 -3338245 0 2048 -3338263 UP 12 -3338263 2048 2048 -3338315 DOWN 12 -3338315 0 2048 -3338351 UP 12 -3338351 2048 2048 -3341498 DOWN 12 -3341498 0 2048 -3341509 UP 12 -3341509 2048 2048 -3343393 CLICK1 -3343393 CLICK2 -~~~ -~~~ -~~~ -3343422 2048 67110912 -~~~ -3343572 2048 2048 -3347572 DOWN 12 -3347572 0 2048 -~~~ -~~~ -3347598 0 0 -~~~ -~~~ -3347599 0 1 -~~~ -~~~ -3347601 0 3 -~~~ -~~~ -3347603 0 7 -~~~ -~~~ -3347605 0 15 -~~~ -~~~ -3347607 0 31 -~~~ -~~~ -3347608 0 63 -~~~ -~~~ -3347610 0 127 -~~~ -~~~ -3347612 0 255 -3347613 homeCount = 25 -3347614 waitCount = 13 -3347614 ripCount = 8 -3347615 locktype1 = 2 -3347615 locktype2 = 2 -3347616 locktype3 = 1 -3347636 goalCount = 0 -3347637 goalTotal = 10 -3347637 otherCount = 9 -~~~ -3347638 CURRENTGOAL IS [4] -~~~ -3353871 UP 1 -3353871 1 255 -~~~ -~~~ -3355979 DOWN 1 -3355979 0 255 -~~~ -~~~ -3355998 0 254 -~~~ -~~~ -3355999 0 252 -~~~ -~~~ -3356001 0 248 -~~~ -~~~ -3356003 0 240 -~~~ -~~~ -3356005 0 224 -~~~ -~~~ -3356007 0 192 -~~~ -~~~ -3356008 0 128 -~~~ -~~~ -3356010 0 0 -~~~ -~~~ -3356012 0 512 -3356013 homeCount = 25 -3356014 waitCount = 13 -3356014 ripCount = 8 -3356015 locktype1 = 2 -3356015 locktype2 = 2 -3356036 locktype3 = 1 -3356037 goalCount = 0 -3356037 goalTotal = 10 -3356038 otherCount = 10 -~~~ -3356051 1 512 -3356113 DOWN 1 -3356113 0 512 -3364545 UP 10 -3364546 waslock = 0 -3364545 512 512 -3364564 DOWN 10 -3364564 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3364574 0 16777728 -~~~ -3364586 UP 10 -3364587 waslock = 0 -3364586 512 16777728 -~~~ -~~~ -3364589 512 16779776 -~~~ -~~~ -3364591 512 16779264 -3364592 homeCount = 26 -3364592 waitCount = 13 -3364593 ripCount = 8 -3364593 locktype1 = 2 -3364594 locktype2 = 2 -3364594 locktype3 = 1 -3364595 goalCount = 0 -3364616 goalTotal = 10 -3364616 otherCount = 10 -~~~ -~~~ -3364724 512 2048 -3364785 DOWN 10 -3364785 0 2048 -~~~ -~~~ -~~~ -~~~ -3364814 homeCount = 26 -3364815 waitCount = 13 -3364815 ripCount = 8 -3364816 locktype1 = 2 -3364816 locktype2 = 2 -3364817 locktype3 = 1 -3364817 goalCount = 0 -3364818 goalTotal = 10 -3364818 otherCount = 10 -~~~ -3364820 UP 10 -3364821 waslock = 0 -3364820 512 2048 -~~~ -3369000 DOWN 10 -3369000 0 2048 -~~~ -~~~ -~~~ -~~~ -3369021 homeCount = 26 -3369021 waitCount = 13 -3369022 ripCount = 8 -3369022 locktype1 = 2 -3369023 locktype2 = 2 -3369023 locktype3 = 1 -3369024 goalCount = 0 -3369024 goalTotal = 10 -3369025 otherCount = 10 -~~~ -3371473 UP 12 -3371473 2048 2048 -3371491 DOWN 12 -3371491 0 2048 -3371539 UP 12 -3371539 2048 2048 -3372597 DOWN 12 -3372597 0 2048 -3372605 UP 12 -3372605 2048 2048 -3372635 DOWN 12 -3372635 0 2048 -3372713 UP 12 -3372713 2048 2048 -3374473 CLICK1 -3374473 CLICK2 -~~~ -~~~ -~~~ -3374502 2048 67110912 -~~~ -3374652 2048 2048 -3379419 DOWN 12 -3379419 0 2048 -~~~ -~~~ -3379439 0 0 -~~~ -~~~ -3379441 0 1 -~~~ -3379442 UP 12 -3379442 2048 1 -~~~ -~~~ -3379444 2048 3 -~~~ -~~~ -3379446 2048 7 -~~~ -3379447 2048 15 -~~~ -~~~ -3379448 2048 31 -~~~ -~~~ -3379450 2048 63 -~~~ -~~~ -3379452 2048 127 -~~~ -~~~ -3379454 2048 255 -3379455 homeCount = 26 -3379455 waitCount = 14 -3379476 ripCount = 8 -3379477 locktype1 = 2 -3379477 locktype2 = 2 -3379478 locktype3 = 1 -3379478 goalCount = 0 -3379479 goalTotal = 10 -3379479 otherCount = 10 -~~~ -3379480 CURRENTGOAL IS [4] -~~~ -3379501 DOWN 12 -3379501 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3379536 homeCount = 26 -3379537 waitCount = 14 -3379537 ripCount = 8 -3379538 locktype1 = 2 -3379538 locktype2 = 2 -3379539 locktype3 = 1 -3379539 goalCount = 0 -3379540 goalTotal = 10 -3379540 otherCount = 10 -~~~ -3379541 CURRENTGOAL IS [4] -~~~ -3382877 UP 5 -3382877 16 255 -~~~ -~~~ -3383277 DOWN 5 -3383277 0 255 -~~~ -~~~ -3383303 0 254 -~~~ -~~~ -3383305 0 252 -~~~ -~~~ -3383307 0 248 -~~~ -~~~ -3383309 0 240 -~~~ -~~~ -3383311 0 224 -~~~ -~~~ -3383312 0 192 -~~~ -~~~ -3383314 0 128 -~~~ -~~~ -3383316 0 0 -~~~ -~~~ -3383318 0 512 -3383319 homeCount = 26 -3383319 waitCount = 14 -3383320 ripCount = 8 -3383320 locktype1 = 2 -3383321 locktype2 = 2 -3383342 locktype3 = 1 -3383342 goalCount = 0 -3383343 goalTotal = 10 -3383343 otherCount = 11 -~~~ -3383433 16 512 -3383515 DOWN 5 -3383515 0 512 -3386814 UP 10 -3386815 waslock = 0 -3386814 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3386842 512 16777728 -~~~ -3386992 512 512 -3387046 DOWN 10 -3387046 0 512 -~~~ -~~~ -3387067 0 1536 -~~~ -~~~ -3387069 0 1024 -3387070 homeCount = 27 -3387070 waitCount = 14 -3387071 ripCount = 8 -3387071 locktype1 = 2 -3387072 locktype2 = 2 -3387072 locktype3 = 1 -3387073 goalCount = 0 -3387073 goalTotal = 10 -3387074 otherCount = 11 -~~~ -3387074 UP 10 -3387095 waslock = 0 -3387074 512 1024 -~~~ -3390332 DOWN 10 -3390332 0 1024 -~~~ -~~~ -~~~ -~~~ -3390354 homeCount = 27 -3390354 waitCount = 14 -3390355 ripCount = 8 -3390355 locktype1 = 2 -3390356 locktype2 = 2 -3390356 locktype3 = 1 -3390357 goalCount = 0 -3390357 goalTotal = 10 -3390358 otherCount = 11 -~~~ -3390364 UP 10 -3390364 waslock = 0 -3390363 512 1024 -~~~ -3390422 DOWN 10 -3390422 0 1024 -~~~ -~~~ -~~~ -~~~ -3390446 homeCount = 27 -3390446 waitCount = 14 -3390447 ripCount = 8 -3390447 locktype1 = 2 -3390448 locktype2 = 2 -3390448 locktype3 = 1 -3390449 goalCount = 0 -3390449 goalTotal = 10 -3390450 otherCount = 11 -~~~ -3392373 UP 11 -3392373 1024 1024 -3394624 BEEP1 -3394624 BEEP2 -~~~ -~~~ -~~~ -3394644 1024 33555456 -~~~ -3394794 1024 1024 -3402282 DOWN 11 -3402282 0 1024 -~~~ -~~~ -3402303 0 0 -~~~ -~~~ -3402305 0 1 -~~~ -~~~ -3402307 0 3 -~~~ -~~~ -3402308 0 7 -~~~ -~~~ -3402310 0 15 -~~~ -~~~ -3402312 0 31 -~~~ -~~~ -3402314 0 63 -~~~ -~~~ -3402316 0 127 -~~~ -~~~ -3402317 0 255 -3402318 homeCount = 27 -3402319 waitCount = 14 -3402319 ripCount = 9 -3402320 locktype1 = 2 -3402320 locktype2 = 2 -3402321 locktype3 = 1 -3402342 goalCount = 0 -3402342 goalTotal = 10 -3402343 otherCount = 11 -~~~ -3402344 CURRENTGOAL IS [4] -~~~ -3405003 UP 8 -3405003 128 255 -~~~ -~~~ -3405483 DOWN 8 -3405483 0 255 -3405500 128 255 -~~~ -~~~ -3405509 128 254 -~~~ -~~~ -3405511 128 252 -~~~ -~~~ -3405513 128 248 -~~~ -~~~ -3405515 128 240 -~~~ -~~~ -3405517 128 224 -~~~ -~~~ -3405518 128 192 -~~~ -~~~ -3405520 128 128 -~~~ -~~~ -3405522 128 0 -~~~ -~~~ -3405524 128 512 -3405525 homeCount = 27 -3405526 waitCount = 14 -3405526 ripCount = 9 -3405526 locktype1 = 2 -3405547 locktype2 = 2 -3405548 locktype3 = 1 -3405548 goalCount = 0 -3405549 goalTotal = 10 -3405549 otherCount = 12 -~~~ -3405550 DOWN 8 -3405550 0 512 -3405554 128 512 -3405618 DOWN 8 -3405618 0 512 -3405768 128 512 -3406173 DOWN 8 -3406173 0 512 -3406190 128 512 -3406488 DOWN 8 -3406488 0 512 -3412401 UP 10 -3412402 waslock = 0 -3412401 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3412426 512 16777728 -~~~ -3412576 512 512 -3417283 DOWN 10 -3417283 0 512 -~~~ -~~~ -3417301 0 1536 -~~~ -~~~ -3417303 0 1024 -3417304 homeCount = 28 -3417305 waitCount = 14 -3417305 ripCount = 9 -3417306 locktype1 = 2 -3417306 locktype2 = 2 -3417306 locktype3 = 1 -3417307 goalCount = 0 -3417307 goalTotal = 10 -3417308 otherCount = 12 -~~~ -3417314 UP 10 -3417314 waslock = 0 -3417314 512 1024 -~~~ -3417369 DOWN 10 -3417369 0 1024 -~~~ -~~~ -~~~ -~~~ -3417395 homeCount = 28 -3417395 waitCount = 14 -3417396 ripCount = 9 -3417396 locktype1 = 2 -3417397 locktype2 = 2 -3417397 locktype3 = 1 -3417398 goalCount = 0 -3417398 goalTotal = 10 -3417398 otherCount = 12 -~~~ -3418917 UP 11 -3418917 1024 1024 -3421167 BEEP1 -3421167 BEEP2 -~~~ -~~~ -~~~ -3421193 1024 33555456 -~~~ -3421343 1024 1024 -3426415 DOWN 11 -3426415 0 1024 -~~~ -~~~ -3426441 0 0 -~~~ -3426442 UP 11 -3426442 1024 0 -~~~ -~~~ -3426444 1024 1 -~~~ -~~~ -3426446 1024 3 -~~~ -3426447 1024 7 -~~~ -~~~ -3426448 1024 15 -~~~ -~~~ -3426450 1024 31 -~~~ -~~~ -3426452 1024 63 -~~~ -~~~ -3426453 1024 127 -~~~ -~~~ -3426455 1024 255 -3426456 homeCount = 28 -3426478 waitCount = 14 -3426478 ripCount = 10 -3426478 locktype1 = 2 -3426479 locktype2 = 2 -3426479 locktype3 = 1 -3426480 goalCount = 0 -3426480 goalTotal = 10 -3426481 otherCount = 12 -~~~ -3426482 CURRENTGOAL IS [4] -~~~ -3426484 DOWN 11 -3426484 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3426535 UP 11 -3426535 1024 255 -~~~ -~~~ -~~~ -~~~ -3426539 homeCount = 28 -3426540 waitCount = 14 -3426540 ripCount = 10 -3426541 locktype1 = 2 -3426541 locktype2 = 2 -3426542 locktype3 = 1 -3426542 goalCount = 0 -3426543 goalTotal = 10 -3426543 otherCount = 12 -~~~ -3426544 CURRENTGOAL IS [4] -~~~ -3428785 DOWN 11 -3428785 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3428822 homeCount = 28 -3428823 waitCount = 14 -3428823 ripCount = 10 -3428824 locktype1 = 2 -3428824 locktype2 = 2 -3428825 locktype3 = 1 -3428825 goalCount = 0 -3428826 goalTotal = 10 -3428826 otherCount = 12 -~~~ -3428827 CURRENTGOAL IS [4] -~~~ -3431457 UP 6 -3431457 32 255 -~~~ -~~~ -3433724 DOWN 6 -3433724 0 255 -~~~ -~~~ -3433746 0 254 -~~~ -~~~ -3433747 0 252 -~~~ -~~~ -3433749 0 248 -~~~ -~~~ -3433751 0 240 -~~~ -~~~ -3433753 0 224 -~~~ -~~~ -3433755 0 192 -~~~ -~~~ -3433757 0 128 -~~~ -~~~ -3433758 0 0 -~~~ -~~~ -3433760 0 512 -3433761 homeCount = 28 -3433762 waitCount = 14 -3433762 ripCount = 10 -3433763 locktype1 = 2 -3433763 locktype2 = 2 -3433784 locktype3 = 1 -3433785 goalCount = 0 -3433785 goalTotal = 10 -3433786 otherCount = 13 -~~~ -3433786 32 512 -3433787 DOWN 6 -3433787 0 512 -3437391 UP 10 -3437392 waslock = 0 -3437391 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3437423 512 16777728 -~~~ -3437573 512 512 -3439941 DOWN 10 -3439941 0 512 -~~~ -~~~ -3439966 0 1536 -~~~ -~~~ -3439968 0 1024 -3439969 homeCount = 29 -3439969 waitCount = 14 -3439970 ripCount = 10 -3439970 locktype1 = 2 -3439971 locktype2 = 2 -3439971 locktype3 = 1 -3439971 goalCount = 0 -3439972 goalTotal = 10 -3439972 otherCount = 13 -~~~ -3440045 UP 10 -3440045 waslock = 0 -3440045 512 1024 -~~~ -3443900 DOWN 10 -3443900 0 1024 -~~~ -~~~ -~~~ -~~~ -3443928 homeCount = 29 -3443929 waitCount = 14 -3443929 ripCount = 10 -3443930 locktype1 = 2 -3443930 locktype2 = 2 -3443931 locktype3 = 1 -3443931 goalCount = 0 -3443932 goalTotal = 10 -3443932 otherCount = 13 -~~~ -3443937 UP 10 -3443938 waslock = 0 -3443937 512 1024 -~~~ -3444010 DOWN 10 -3444010 0 1024 -~~~ -~~~ -~~~ -~~~ -3444047 homeCount = 29 -3444048 waitCount = 14 -3444048 ripCount = 10 -3444049 locktype1 = 2 -3444049 locktype2 = 2 -3444050 locktype3 = 1 -3444050 goalCount = 0 -3444051 goalTotal = 10 -3444051 otherCount = 13 -~~~ -3447480 UP 11 -3447480 1024 1024 -3449428 DOWN 11 -3449428 0 1024 -3449534 UP 11 -3449534 1024 1024 -3450480 BEEP1 -3450480 BEEP2 -~~~ -~~~ -~~~ -3450499 1024 33555456 -~~~ -3450520 DOWN 11 -3450520 0 33555456 -3450539 UP 11 -3450539 1024 33555456 -3450649 1024 1024 -3450808 DOWN 11 -3450808 0 1024 -3450838 UP 11 -3450838 1024 1024 -~~~ -~~~ -3451150 1024 0 -~~~ -~~~ -3451152 1024 1 -~~~ -~~~ -3451154 1024 3 -~~~ -~~~ -3451156 1024 7 -~~~ -~~~ -3451158 1024 15 -~~~ -~~~ -3451160 1024 31 -~~~ -~~~ -3451161 1024 63 -~~~ -~~~ -3451163 1024 127 -~~~ -~~~ -3451165 1024 255 -3451166 homeCount = 29 -3451167 waitCount = 14 -3451167 ripCount = 11 -3451168 locktype1 = 2 -3451188 locktype2 = 2 -3451189 locktype3 = 1 -3451189 goalCount = 0 -3451190 goalTotal = 10 -3451190 otherCount = 13 -~~~ -3451191 CURRENTGOAL IS [4] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3451219 homeCount = 29 -3451219 waitCount = 14 -3451220 ripCount = 11 -3451220 locktype1 = 2 -3451221 locktype2 = 2 -3451221 locktype3 = 1 -3451222 goalCount = 0 -3451222 goalTotal = 10 -3451223 otherCount = 13 -~~~ -3451224 CURRENTGOAL IS [4] -~~~ -3455069 DOWN 11 -3455069 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3455110 homeCount = 29 -3455111 waitCount = 14 -3455111 ripCount = 11 -3455112 locktype1 = 2 -3455112 locktype2 = 2 -3455113 locktype3 = 1 -3455113 goalCount = 0 -3455113 goalTotal = 10 -3455114 otherCount = 13 -~~~ -3455115 CURRENTGOAL IS [4] -~~~ -3455116 UP 11 -3455115 1024 255 -3455168 DOWN 11 -3455168 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3455204 homeCount = 29 -3455205 waitCount = 14 -3455205 ripCount = 11 -3455206 locktype1 = 2 -3455206 locktype2 = 2 -3455207 locktype3 = 1 -3455207 goalCount = 0 -3455208 goalTotal = 10 -3455208 otherCount = 13 -~~~ -3455209 CURRENTGOAL IS [4] -~~~ -3467183 UP 5 -3467183 16 255 -~~~ -~~~ -3467241 DOWN 5 -3467241 0 255 -3467259 16 255 -~~~ -~~~ -3467270 16 254 -~~~ -~~~ -3467271 16 252 -~~~ -~~~ -3467273 16 248 -~~~ -~~~ -3467275 16 240 -~~~ -~~~ -3467277 16 224 -~~~ -~~~ -3467279 16 192 -~~~ -~~~ -3467281 16 128 -~~~ -~~~ -3467282 16 0 -~~~ -~~~ -3467284 16 512 -3467285 homeCount = 29 -3467286 waitCount = 14 -3467286 ripCount = 11 -3467287 locktype1 = 2 -3467308 locktype2 = 2 -3467308 locktype3 = 1 -3467309 goalCount = 0 -3467309 goalTotal = 10 -3467310 otherCount = 14 -~~~ -3467494 DOWN 5 -3467494 0 512 -3470785 UP 10 -3470785 waslock = 0 -3470785 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3470815 512 16777728 -~~~ -3470959 DOWN 10 -3470959 0 16777728 -3470965 0 512 -3470971 UP 10 -3470971 waslock = 0 -3470971 512 512 -~~~ -~~~ -3470990 512 1536 -~~~ -~~~ -3470992 512 1024 -3470993 homeCount = 30 -3470994 waitCount = 14 -3470994 ripCount = 11 -3470995 locktype1 = 2 -3470995 locktype2 = 2 -3470996 locktype3 = 1 -3470996 goalCount = 0 -3470997 goalTotal = 10 -3470997 otherCount = 14 -~~~ -~~~ -3471019 DOWN 10 -3471019 0 1024 -~~~ -~~~ -~~~ -~~~ -3471035 homeCount = 30 -3471036 waitCount = 14 -3471036 ripCount = 11 -3471037 locktype1 = 2 -3471037 locktype2 = 2 -3471038 locktype3 = 1 -3471038 goalCount = 0 -3471039 goalTotal = 10 -3471039 otherCount = 14 -~~~ -3471096 UP 10 -3471097 waslock = 0 -3471096 512 1024 -~~~ -3474249 DOWN 10 -3474249 0 1024 -~~~ -~~~ -~~~ -~~~ -3474271 homeCount = 30 -3474271 waitCount = 14 -3474272 ripCount = 11 -3474272 locktype1 = 2 -3474273 locktype2 = 2 -3474273 locktype3 = 1 -3474274 goalCount = 0 -3474274 goalTotal = 10 -3474275 otherCount = 14 -~~~ -3474308 UP 10 -3474308 waslock = 0 -3474307 512 1024 -3474331 DOWN 10 -3474331 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -3474354 homeCount = 30 -3474354 waitCount = 14 -3474355 ripCount = 11 -3474355 locktype1 = 2 -3474356 locktype2 = 2 -3474356 locktype3 = 1 -3474356 goalCount = 0 -3474357 goalTotal = 10 -3474357 otherCount = 14 -~~~ -3476396 UP 11 -3476396 1024 1024 -3476414 DOWN 11 -3476414 0 1024 -3476440 UP 11 -3476440 1024 1024 -3477699 DOWN 11 -3477699 0 1024 -3477756 UP 11 -3477756 1024 1024 -3482397 BEEP1 -3482397 BEEP2 -~~~ -~~~ -~~~ -3482421 1024 33555456 -~~~ -3482571 1024 1024 -3487234 DOWN 11 -3487234 0 1024 -~~~ -~~~ -3487260 0 0 -~~~ -~~~ -3487261 0 1 -~~~ -~~~ -3487263 0 3 -~~~ -~~~ -3487265 0 7 -~~~ -~~~ -3487267 0 15 -~~~ -~~~ -3487269 0 31 -~~~ -~~~ -3487271 0 63 -~~~ -~~~ -3487272 0 127 -~~~ -~~~ -3487274 0 255 -3487275 homeCount = 30 -3487276 waitCount = 14 -3487276 ripCount = 12 -3487277 locktype1 = 2 -3487277 locktype2 = 2 -3487278 locktype3 = 1 -3487299 goalCount = 0 -3487299 goalTotal = 10 -3487299 otherCount = 14 -~~~ -3487301 CURRENTGOAL IS [4] -~~~ -3492075 UP 3 -3492075 4 255 -~~~ -~~~ -3493640 DOWN 3 -3493640 0 255 -~~~ -~~~ -3493660 0 254 -~~~ -~~~ -3493662 0 252 -~~~ -~~~ -3493664 0 248 -~~~ -~~~ -3493666 0 240 -~~~ -~~~ -3493668 0 224 -~~~ -~~~ -3493669 0 192 -~~~ -~~~ -3493671 0 128 -~~~ -~~~ -3493673 0 0 -~~~ -~~~ -3493675 0 512 -3493676 homeCount = 30 -3493676 waitCount = 14 -3493677 ripCount = 12 -3493677 locktype1 = 2 -3493678 locktype2 = 2 -3493699 locktype3 = 1 -3493699 goalCount = 0 -3493700 goalTotal = 10 -3493700 otherCount = 15 -~~~ -3496771 UP 10 -3496771 waslock = 0 -3496771 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3496799 512 16777728 -~~~ -3496949 512 512 -3496960 DOWN 10 -3496959 0 512 -~~~ -~~~ -3496976 0 2560 -~~~ -~~~ -3496978 0 2048 -3496979 homeCount = 31 -3496980 waitCount = 14 -3496980 ripCount = 12 -3496981 locktype1 = 2 -3496981 locktype2 = 2 -3496982 locktype3 = 1 -3496982 goalCount = 0 -3496983 goalTotal = 10 -3496983 otherCount = 15 -~~~ -3496994 UP 10 -3496994 waslock = 0 -3496994 512 2048 -~~~ -3500863 DOWN 10 -3500863 0 2048 -~~~ -~~~ -~~~ -~~~ -3500884 homeCount = 31 -3500884 waitCount = 14 -3500885 ripCount = 12 -3500885 locktype1 = 2 -3500886 locktype2 = 2 -3500886 locktype3 = 1 -3500887 goalCount = 0 -3500887 goalTotal = 10 -3500888 otherCount = 15 -~~~ -3502510 UP 12 -3502510 2048 2048 -3503845 DOWN 12 -3503845 0 2048 -3503872 UP 12 -3503872 2048 2048 -3508139 DOWN 12 -3508139 0 2048 -3508145 UP 12 -3508145 2048 2048 -3508156 DOWN 12 -3508156 0 2048 -3508173 UP 12 -3508173 2048 2048 -3508510 CLICK1 -3508510 CLICK2 -~~~ -~~~ -~~~ -3508533 2048 67110912 -~~~ -3508683 2048 2048 -3515792 DOWN 12 -3515792 0 2048 -~~~ -~~~ -3515814 0 0 -~~~ -~~~ -3515816 0 1 -~~~ -~~~ -3515818 0 3 -~~~ -~~~ -3515820 0 7 -~~~ -~~~ -3515821 0 15 -~~~ -~~~ -3515823 0 31 -~~~ -~~~ -3515825 0 63 -~~~ -~~~ -3515827 0 127 -~~~ -~~~ -3515829 0 255 -3515830 homeCount = 31 -3515830 waitCount = 15 -3515831 ripCount = 12 -3515831 locktype1 = 2 -3515832 locktype2 = 2 -3515853 locktype3 = 1 -3515853 goalCount = 0 -3515854 goalTotal = 10 -3515854 otherCount = 15 -~~~ -3515855 CURRENTGOAL IS [4] -~~~ -3521707 UP 8 -3521707 128 255 -~~~ -~~~ -3522495 DOWN 8 -3522494 0 255 -~~~ -~~~ -3522516 0 254 -~~~ -~~~ -3522517 0 252 -~~~ -~~~ -3522519 0 248 -~~~ -~~~ -3522521 0 240 -~~~ -~~~ -3522523 0 224 -~~~ -~~~ -3522525 0 192 -~~~ -~~~ -3522526 0 128 -~~~ -~~~ -3522528 0 0 -~~~ -~~~ -3522530 0 512 -3522531 homeCount = 31 -3522532 waitCount = 15 -3522532 ripCount = 12 -3522533 locktype1 = 2 -3522533 locktype2 = 2 -3522554 locktype3 = 1 -3522554 goalCount = 0 -3522555 goalTotal = 10 -3522555 otherCount = 16 -~~~ -3528013 UP 10 -3528013 waslock = 0 -3528013 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3528040 512 16777728 -~~~ -3528190 512 512 -3532039 DOWN 10 -3532039 0 512 -3532051 UP 10 -3532051 waslock = 0 -3532051 512 512 -~~~ -~~~ -3532064 512 2560 -~~~ -~~~ -3532066 512 2048 -3532067 homeCount = 32 -3532068 waitCount = 15 -3532068 ripCount = 12 -3532069 locktype1 = 2 -3532069 locktype2 = 2 -3532070 locktype3 = 1 -3532070 goalCount = 0 -3532071 goalTotal = 10 -3532071 otherCount = 16 -~~~ -~~~ -3532129 DOWN 10 -3532129 0 2048 -~~~ -~~~ -~~~ -~~~ -3532159 homeCount = 32 -3532159 waitCount = 15 -3532160 ripCount = 12 -3532160 locktype1 = 2 -3532161 locktype2 = 2 -3532161 locktype3 = 1 -3532162 goalCount = 0 -3532162 goalTotal = 10 -3532163 otherCount = 16 -~~~ -3533716 UP 12 -3533716 2048 2048 -3535140 DOWN 12 -3535140 0 2048 -3535175 UP 12 -3535175 2048 2048 -3535301 DOWN 12 -3535301 0 2048 -3535317 UP 12 -3535317 2048 2048 -3540716 CLICK1 -3540716 CLICK2 -~~~ -~~~ -~~~ -3540738 2048 67110912 -~~~ -3540888 2048 2048 -3547369 DOWN 12 -3547369 0 2048 -~~~ -~~~ -3547388 0 0 -~~~ -~~~ -3547390 0 1 -~~~ -~~~ -3547391 0 3 -~~~ -~~~ -3547393 0 7 -~~~ -~~~ -3547395 0 15 -~~~ -~~~ -3547397 0 31 -~~~ -~~~ -3547399 0 63 -~~~ -~~~ -3547401 0 127 -~~~ -~~~ -3547402 0 255 -3547403 homeCount = 32 -3547404 waitCount = 16 -3547404 ripCount = 12 -3547405 locktype1 = 2 -3547405 locktype2 = 2 -3547427 locktype3 = 1 -3547427 goalCount = 0 -3547428 goalTotal = 10 -3547428 otherCount = 16 -~~~ -3547429 CURRENTGOAL IS [4] -~~~ -3561111 UP 10 -3561112 waslock = 0 -3561111 512 255 -~~~ -3561132 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3561140 512 254 -~~~ -~~~ -3561142 512 252 -~~~ -~~~ -3561143 512 248 -~~~ -~~~ -3561145 512 240 -~~~ -~~~ -3561147 512 224 -~~~ -~~~ -3561149 512 192 -~~~ -~~~ -3561151 512 128 -~~~ -~~~ -3561152 512 0 -~~~ -~~~ -~~~ -3561157 0 0 -3561238 512 0 -3562992 0 0 -3564933 UP 11 -3564933 1024 0 -3565541 DOWN 11 -3565541 0 0 -3565809 UP 11 -3565809 1024 0 -3566154 DOWN 11 -3566154 0 0 -3576441 512 0 -3576538 0 0 -3582894 512 0 -3583443 0 0 -3583733 512 0 -3584225 0 0 -3584278 512 0 -3584343 0 0 -3584390 512 0 -3585280 0 0 -3585494 512 0 -3585871 0 0 -3586132 LOCKEND -~~~ -~~~ -~~~ -3586153 0 512 -3586897 UP 10 -3586897 waslock = 0 -3586897 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3586928 512 16777728 -~~~ -3587078 512 512 -3590979 DOWN 10 -3590979 0 512 -3590998 UP 10 -3590999 waslock = 0 -3590998 512 512 -~~~ -~~~ -3591002 512 1536 -~~~ -~~~ -3591004 512 1024 -3591005 homeCount = 33 -3591005 waitCount = 16 -3591006 ripCount = 12 -3591006 locktype1 = 2 -3591007 locktype2 = 3 -3591007 locktype3 = 1 -3591008 goalCount = 0 -3591008 goalTotal = 10 -3591009 otherCount = 16 -~~~ -~~~ -3591090 DOWN 10 -3591090 0 1024 -~~~ -~~~ -~~~ -~~~ -3591121 homeCount = 33 -3591121 waitCount = 16 -3591122 ripCount = 12 -3591122 locktype1 = 2 -3591123 locktype2 = 3 -3591123 locktype3 = 1 -3591124 goalCount = 0 -3591124 goalTotal = 10 -3591125 otherCount = 16 -~~~ -3591146 UP 10 -3591147 waslock = 0 -3591146 512 1024 -~~~ -3591191 DOWN 10 -3591191 0 1024 -~~~ -~~~ -~~~ -~~~ -3591219 homeCount = 33 -3591219 waitCount = 16 -3591220 ripCount = 12 -3591220 locktype1 = 2 -3591221 locktype2 = 3 -3591221 locktype3 = 1 -3591222 goalCount = 0 -3591222 goalTotal = 10 -3591223 otherCount = 16 -~~~ -3593272 UP 11 -3593272 1024 1024 -3593859 DOWN 11 -3593859 0 1024 -3593918 UP 11 -3593918 1024 1024 -3593945 DOWN 11 -3593945 0 1024 -3593960 UP 11 -3593960 1024 1024 -3594765 DOWN 11 -3594765 0 1024 -3594779 UP 11 -3594779 1024 1024 -3598015 DOWN 11 -3598015 0 1024 -3598034 UP 11 -3598034 1024 1024 -3600272 BEEP1 -3600272 BEEP2 -~~~ -~~~ -~~~ -3600296 1024 33555456 -~~~ -3600445 1024 1024 -3604781 DOWN 11 -3604781 0 1024 -3604791 UP 11 -3604791 1024 1024 -~~~ -~~~ -3604804 1024 0 -~~~ -~~~ -3604806 1024 1 -~~~ -~~~ -3604808 1024 3 -~~~ -~~~ -3604809 1024 7 -~~~ -~~~ -3604811 1024 15 -~~~ -~~~ -3604813 1024 31 -~~~ -~~~ -3604815 1024 63 -~~~ -~~~ -3604817 1024 127 -~~~ -~~~ -3604818 1024 255 -3604819 homeCount = 33 -3604820 waitCount = 16 -3604821 ripCount = 13 -3604821 locktype1 = 2 -3604842 locktype2 = 3 -3604843 locktype3 = 1 -3604843 goalCount = 0 -3604844 goalTotal = 10 -3604844 otherCount = 16 -~~~ -3604845 CURRENTGOAL IS [4] -~~~ -3604903 DOWN 11 -3604903 0 255 -3604925 UP 11 -3604925 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3604942 homeCount = 33 -3604943 waitCount = 16 -3604943 ripCount = 13 -3604944 locktype1 = 2 -3604944 locktype2 = 3 -3604945 locktype3 = 1 -3604945 goalCount = 0 -3604946 goalTotal = 10 -3604946 otherCount = 16 -~~~ -3604947 CURRENTGOAL IS [4] -~~~ -3605028 DOWN 11 -3605028 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3605064 homeCount = 33 -3605064 waitCount = 16 -3605065 ripCount = 13 -3605065 locktype1 = 2 -3605066 locktype2 = 3 -3605066 locktype3 = 1 -3605067 goalCount = 0 -3605067 goalTotal = 10 -3605068 otherCount = 16 -~~~ -3605069 CURRENTGOAL IS [4] -~~~ -3605092 UP 11 -3605092 1024 255 -3608325 DOWN 11 -3608325 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3608364 homeCount = 33 -3608364 waitCount = 16 -3608365 ripCount = 13 -3608365 locktype1 = 2 -3608366 locktype2 = 3 -3608366 locktype3 = 1 -3608367 goalCount = 0 -3608367 goalTotal = 10 -3608368 otherCount = 16 -~~~ -3608369 CURRENTGOAL IS [4] -~~~ -3608378 UP 11 -3608378 1024 255 -3608425 DOWN 11 -3608425 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3608464 homeCount = 33 -3608465 waitCount = 16 -3608465 ripCount = 13 -3608466 locktype1 = 2 -3608466 locktype2 = 3 -3608467 locktype3 = 1 -3608467 goalCount = 0 -3608467 goalTotal = 10 -3608468 otherCount = 16 -~~~ -3608469 CURRENTGOAL IS [4] -~~~ -3616545 UP 10 -3616545 waslock = 0 -3616545 512 255 -~~~ -3616569 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3616577 512 254 -~~~ -~~~ -3616579 512 252 -~~~ -~~~ -3616581 512 248 -~~~ -~~~ -3616582 512 240 -~~~ -~~~ -3616584 512 224 -~~~ -~~~ -3616586 512 192 -~~~ -~~~ -3616588 512 128 -~~~ -~~~ -3616590 512 0 -~~~ -~~~ -~~~ -3617133 0 0 -3617163 512 0 -3617761 0 0 -3617783 512 0 -3617868 0 0 -3618349 512 0 -3618488 0 0 -3620077 512 0 -3620300 0 0 -3623436 UP 12 -3623436 2048 0 -3623470 DOWN 12 -3623470 0 0 -3626087 512 0 -3626274 0 0 -3628560 UP 11 -3628560 1024 0 -3629234 DOWN 11 -3629234 0 0 -3640902 512 0 -3641510 0 0 -3641538 512 0 -3641569 LOCKEND -~~~ -~~~ -~~~ -3641592 512 512 -3641834 DOWN 10 -3641834 0 512 -3642205 UP 10 -3642205 waslock = 0 -3642205 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3642238 512 16777728 -~~~ -3642263 DOWN 10 -3642263 0 16777728 -~~~ -~~~ -3642281 0 16779776 -~~~ -~~~ -3642283 0 16779264 -3642284 homeCount = 34 -3642284 waitCount = 16 -3642285 ripCount = 13 -3642285 locktype1 = 2 -3642286 locktype2 = 4 -3642286 locktype3 = 1 -3642287 goalCount = 0 -3642287 goalTotal = 10 -3642288 otherCount = 16 -~~~ -3642363 UP 10 -3642363 waslock = 0 -3642363 512 16779264 -~~~ -3642386 DOWN 10 -3642386 0 16779264 -3642388 0 2048 -~~~ -~~~ -~~~ -~~~ -3642414 homeCount = 34 -3642415 waitCount = 16 -3642415 ripCount = 13 -3642416 locktype1 = 2 -3642416 locktype2 = 4 -3642416 locktype3 = 1 -3642417 goalCount = 0 -3642417 goalTotal = 10 -3642418 otherCount = 16 -~~~ -3642507 UP 10 -3642507 waslock = 0 -3642506 512 2048 -~~~ -3648667 DOWN 10 -3648667 0 2048 -3648678 UP 10 -3648678 waslock = 0 -3648678 512 2048 -~~~ -~~~ -~~~ -~~~ -3648694 homeCount = 34 -3648695 waitCount = 16 -3648695 ripCount = 13 -3648696 locktype1 = 2 -3648696 locktype2 = 4 -3648697 locktype3 = 1 -3648697 goalCount = 0 -3648698 goalTotal = 10 -3648698 otherCount = 16 -~~~ -~~~ -3648761 DOWN 10 -3648761 0 2048 -~~~ -~~~ -~~~ -~~~ -3648785 homeCount = 34 -3648786 waitCount = 16 -3648786 ripCount = 13 -3648787 locktype1 = 2 -3648787 locktype2 = 4 -3648788 locktype3 = 1 -3648788 goalCount = 0 -3648789 goalTotal = 10 -3648789 otherCount = 16 -~~~ -3648842 UP 10 -3648842 waslock = 0 -3648842 512 2048 -3648864 DOWN 10 -3648864 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3648895 homeCount = 34 -3648895 waitCount = 16 -3648895 ripCount = 13 -3648896 locktype1 = 2 -3648896 locktype2 = 4 -3648897 locktype3 = 1 -3648897 goalCount = 0 -3648898 goalTotal = 10 -3648898 otherCount = 16 -~~~ -3652123 UP 12 -3652123 2048 2048 -3652932 DOWN 12 -3652932 0 2048 -3652964 UP 12 -3652964 2048 2048 -3653181 DOWN 12 -3653181 0 2048 -3653233 UP 12 -3653233 2048 2048 -3654201 DOWN 12 -3654201 0 2048 -3654214 UP 12 -3654214 2048 2048 -3654302 DOWN 12 -3654302 0 2048 -3654322 UP 12 -3654322 2048 2048 -3656123 CLICK1 -3656123 CLICK2 -~~~ -~~~ -~~~ -3656142 2048 67110912 -~~~ -3656292 2048 2048 -3663270 DOWN 12 -3663270 0 2048 -~~~ -~~~ -3663292 0 0 -~~~ -~~~ -3663294 0 1 -~~~ -~~~ -3663295 0 3 -~~~ -~~~ -3663297 0 7 -~~~ -~~~ -3663299 0 15 -~~~ -~~~ -3663301 0 31 -~~~ -~~~ -3663303 0 63 -~~~ -~~~ -3663305 0 127 -~~~ -~~~ -3663306 0 255 -3663307 homeCount = 34 -3663308 waitCount = 17 -3663308 ripCount = 13 -3663309 locktype1 = 2 -3663309 locktype2 = 4 -3663310 locktype3 = 1 -3663331 goalCount = 0 -3663331 goalTotal = 10 -3663332 otherCount = 16 -~~~ -3663333 CURRENTGOAL IS [4] -~~~ -3663342 UP 12 -3663342 2048 255 -3663376 DOWN 12 -3663376 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3663417 homeCount = 34 -3663418 waitCount = 17 -3663418 ripCount = 13 -3663419 locktype1 = 2 -3663419 locktype2 = 4 -3663420 locktype3 = 1 -3663420 goalCount = 0 -3663421 goalTotal = 10 -3663421 otherCount = 16 -~~~ -3663422 CURRENTGOAL IS [4] -~~~ -3667780 UP 8 -3667780 128 255 -~~~ -~~~ -3669059 DOWN 8 -3669059 0 255 -~~~ -~~~ -3669082 0 254 -~~~ -~~~ -3669083 0 252 -~~~ -~~~ -3669085 0 248 -~~~ -~~~ -3669087 0 240 -~~~ -~~~ -3669089 0 224 -~~~ -~~~ -3669091 0 192 -~~~ -~~~ -3669092 0 128 -~~~ -~~~ -3669094 0 0 -~~~ -~~~ -3669096 0 512 -3669097 homeCount = 34 -3669098 waitCount = 17 -3669098 ripCount = 13 -3669099 locktype1 = 2 -3669099 locktype2 = 4 -3669120 locktype3 = 1 -3669120 goalCount = 0 -3669121 goalTotal = 10 -3669121 otherCount = 17 -~~~ -3669122 128 512 -3669779 DOWN 8 -3669778 0 512 -3673367 UP 10 -3673368 waslock = 0 -3673367 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3673398 512 16777728 -~~~ -3673548 512 512 -3674004 DOWN 10 -3674004 0 512 -~~~ -~~~ -3674022 0 2560 -~~~ -~~~ -3674024 0 2048 -3674025 homeCount = 35 -3674026 waitCount = 17 -3674026 ripCount = 13 -3674027 locktype1 = 2 -3674027 locktype2 = 4 -3674028 locktype3 = 1 -3674028 goalCount = 0 -3674029 goalTotal = 10 -3674029 otherCount = 17 -~~~ -3674070 UP 10 -3674071 waslock = 0 -3674070 512 2048 -~~~ -3674098 DOWN 10 -3674098 0 2048 -~~~ -~~~ -~~~ -~~~ -3674117 homeCount = 35 -3674117 waitCount = 17 -3674118 ripCount = 13 -3674118 locktype1 = 2 -3674119 locktype2 = 4 -3674119 locktype3 = 1 -3674120 goalCount = 0 -3674120 goalTotal = 10 -3674121 otherCount = 17 -~~~ -3674174 UP 10 -3674174 waslock = 0 -3674174 512 2048 -~~~ -3674249 DOWN 10 -3674249 0 2048 -~~~ -~~~ -~~~ -~~~ -3674275 homeCount = 35 -3674276 waitCount = 17 -3674276 ripCount = 13 -3674277 locktype1 = 2 -3674277 locktype2 = 4 -3674277 locktype3 = 1 -3674278 goalCount = 0 -3674278 goalTotal = 10 -3674279 otherCount = 17 -~~~ -3674293 UP 10 -3674293 waslock = 0 -3674293 512 2048 -~~~ -3677709 DOWN 10 -3677709 0 2048 -~~~ -~~~ -~~~ -~~~ -3677735 homeCount = 35 -3677736 waitCount = 17 -3677736 ripCount = 13 -3677737 locktype1 = 2 -3677737 locktype2 = 4 -3677738 locktype3 = 1 -3677738 goalCount = 0 -3677738 goalTotal = 10 -3677739 otherCount = 17 -~~~ -3677740 UP 10 -3677740 waslock = 0 -3677740 512 2048 -~~~ -3677816 DOWN 10 -3677816 0 2048 -~~~ -~~~ -~~~ -~~~ -3677847 homeCount = 35 -3677847 waitCount = 17 -3677848 ripCount = 13 -3677848 locktype1 = 2 -3677849 locktype2 = 4 -3677849 locktype3 = 1 -3677850 goalCount = 0 -3677850 goalTotal = 10 -3677851 otherCount = 17 -~~~ -3679816 UP 12 -3679816 2048 2048 -3681588 DOWN 12 -3681588 0 2048 -3681597 UP 12 -3681597 2048 2048 -3684430 DOWN 12 -3684430 0 2048 -3684485 UP 12 -3684485 2048 2048 -3684747 DOWN 12 -3684747 0 2048 -3684948 LOCKOUT 3 -~~~ -3684973 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3684978 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3685030 UP 12 -3685030 2048 0 -3685082 DOWN 12 -3685082 0 0 -3685355 UP 12 -3685355 2048 0 -3692687 DOWN 12 -3692687 0 0 -3692745 UP 12 -3692745 2048 0 -3692881 DOWN 12 -3692881 0 0 -3692939 UP 12 -3692939 2048 0 -3694152 DOWN 12 -3694152 0 0 -3699170 UP 4 -3699170 8 0 -3699650 DOWN 4 -3699650 0 0 -3699701 8 0 -3700017 DOWN 4 -3700017 0 0 -3706263 512 0 -3706530 0 0 -3706569 512 0 -3707502 0 0 -3709664 512 0 -3709973 LOCKEND -~~~ -~~~ -~~~ -3709995 512 512 -3710150 DOWN 10 -3710150 0 512 -3710528 UP 10 -3710528 waslock = 0 -3710528 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3710560 512 16777728 -~~~ -3710592 DOWN 10 -3710592 0 16777728 -~~~ -~~~ -3710613 0 16778752 -~~~ -~~~ -3710615 0 16778240 -3710616 homeCount = 36 -3710616 waitCount = 17 -3710617 ripCount = 13 -3710617 locktype1 = 2 -3710618 locktype2 = 4 -3710618 locktype3 = 2 -3710618 goalCount = 0 -3710619 goalTotal = 10 -3710619 otherCount = 17 -~~~ -3710647 UP 10 -3710647 waslock = 0 -3710647 512 16778240 -~~~ -3710710 512 1024 -3710725 DOWN 10 -3710725 0 1024 -~~~ -~~~ -~~~ -~~~ -3710752 homeCount = 36 -3710752 waitCount = 17 -3710753 ripCount = 13 -3710753 locktype1 = 2 -3710754 locktype2 = 4 -3710754 locktype3 = 2 -3710755 goalCount = 0 -3710755 goalTotal = 10 -3710756 otherCount = 17 -~~~ -3710813 UP 10 -3710813 waslock = 0 -3710813 512 1024 -~~~ -3716169 DOWN 10 -3716169 0 1024 -~~~ -3716193 UP 10 -3716194 waslock = 0 -3716193 512 1024 -~~~ -~~~ -~~~ -3716197 homeCount = 36 -3716197 waitCount = 17 -3716198 ripCount = 13 -3716198 locktype1 = 2 -3716199 locktype2 = 4 -3716199 locktype3 = 2 -3716200 goalCount = 0 -3716200 goalTotal = 10 -3716201 otherCount = 17 -~~~ -~~~ -3716276 DOWN 10 -3716276 0 1024 -~~~ -~~~ -~~~ -~~~ -3716297 homeCount = 36 -3716297 waitCount = 17 -3716298 ripCount = 13 -3716298 locktype1 = 2 -3716299 locktype2 = 4 -3716299 locktype3 = 2 -3716300 goalCount = 0 -3716300 goalTotal = 10 -3716301 otherCount = 17 -~~~ -3717906 UP 11 -3717906 1024 1024 -3723028 DOWN 11 -3723028 0 1024 -3723040 UP 11 -3723040 1024 1024 -3724906 BEEP1 -3724906 BEEP2 -~~~ -~~~ -~~~ -3724926 1024 33555456 -~~~ -3725076 1024 1024 -3731454 DOWN 11 -3731454 0 1024 -~~~ -3731474 UP 11 -3731474 1024 1024 -~~~ -~~~ -3731475 1024 0 -~~~ -3731477 1024 1 -~~~ -~~~ -3731478 1024 3 -~~~ -~~~ -3731480 1024 7 -~~~ -~~~ -3731482 1024 15 -~~~ -~~~ -3731483 1024 31 -~~~ -~~~ -3731485 1024 63 -~~~ -~~~ -3731487 1024 127 -~~~ -~~~ -3731489 1024 255 -3731490 homeCount = 36 -3731490 waitCount = 17 -3731511 ripCount = 14 -3731512 locktype1 = 2 -3731512 locktype2 = 4 -3731513 locktype3 = 2 -3731513 goalCount = 0 -3731514 goalTotal = 10 -3731514 otherCount = 17 -~~~ -3731515 CURRENTGOAL IS [4] -~~~ -3731564 DOWN 11 -3731564 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3731600 homeCount = 36 -3731600 waitCount = 17 -3731601 ripCount = 14 -3731601 locktype1 = 2 -3731602 locktype2 = 4 -3731602 locktype3 = 2 -3731603 goalCount = 0 -3731603 goalTotal = 10 -3731604 otherCount = 17 -~~~ -3731605 CURRENTGOAL IS [4] -~~~ -3731649 UP 11 -3731648 1024 255 -3731667 DOWN 11 -3731667 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3731701 homeCount = 36 -3731702 waitCount = 17 -3731702 ripCount = 14 -3731703 locktype1 = 2 -3731703 locktype2 = 4 -3731704 locktype3 = 2 -3731704 goalCount = 0 -3731705 goalTotal = 10 -3731705 otherCount = 17 -~~~ -3731706 CURRENTGOAL IS [4] -~~~ -3745775 UP 10 -3745776 waslock = 0 -3745775 512 255 -~~~ -3745796 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3745804 512 254 -~~~ -~~~ -3745805 512 252 -~~~ -~~~ -3745807 512 248 -~~~ -~~~ -3745809 512 240 -~~~ -~~~ -3745811 512 224 -~~~ -~~~ -3745813 512 192 -~~~ -~~~ -3745815 512 128 -~~~ -~~~ -3745816 512 0 -~~~ -~~~ -~~~ -3745982 0 0 -3749232 512 0 -3749422 0 0 -3749467 512 0 -3749501 0 0 -3749833 512 0 -3750026 0 0 -3750243 512 0 -3750549 0 0 -3752435 512 0 -3753237 0 0 -3753302 512 0 -3753343 0 0 -3759767 512 0 -3760055 0 0 -3760344 512 0 -3760578 0 0 -3768463 512 0 -3768985 0 0 -3769220 512 0 -3769969 0 0 -3770796 LOCKEND -~~~ -~~~ -~~~ -3770817 0 512 -3771670 UP 10 -3771670 waslock = 0 -3771670 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3771703 512 16777728 -~~~ -3771725 DOWN 10 -3771725 0 16777728 -~~~ -~~~ -3771749 0 16779776 -~~~ -~~~ -3771751 0 16779264 -3771752 homeCount = 37 -3771753 waitCount = 17 -3771753 ripCount = 14 -3771754 locktype1 = 2 -3771754 locktype2 = 5 -3771755 locktype3 = 2 -3771755 goalCount = 0 -3771756 goalTotal = 10 -3771756 otherCount = 17 -~~~ -3771805 UP 10 -3771805 waslock = 0 -3771805 512 16779264 -~~~ -3771853 512 2048 -3776248 DOWN 10 -3776248 0 2048 -3776261 UP 10 -3776261 waslock = 0 -3776261 512 2048 -~~~ -~~~ -~~~ -~~~ -3776269 homeCount = 37 -3776269 waitCount = 17 -3776270 ripCount = 14 -3776270 locktype1 = 2 -3776271 locktype2 = 5 -3776271 locktype3 = 2 -3776272 goalCount = 0 -3776272 goalTotal = 10 -3776272 otherCount = 17 -~~~ -~~~ -3777488 DOWN 10 -3777488 0 2048 -~~~ -~~~ -~~~ -~~~ -3777511 homeCount = 37 -3777511 waitCount = 17 -3777512 ripCount = 14 -3777512 locktype1 = 2 -3777513 locktype2 = 5 -3777513 locktype3 = 2 -3777514 goalCount = 0 -3777514 goalTotal = 10 -3777515 otherCount = 17 -~~~ -3778917 UP 12 -3778916 2048 2048 -3780637 DOWN 12 -3780637 0 2048 -3780645 UP 12 -3780645 2048 2048 -3781520 DOWN 12 -3781520 0 2048 -3781545 UP 12 -3781544 2048 2048 -3781571 DOWN 12 -3781571 0 2048 -3781623 UP 12 -3781623 2048 2048 -3781643 DOWN 12 -3781643 0 2048 -3781678 UP 12 -3781678 2048 2048 -3784417 CLICK1 -3784417 CLICK2 -~~~ -~~~ -~~~ -3784438 2048 67110912 -~~~ -3784588 2048 2048 -3789657 DOWN 12 -3789657 0 2048 -~~~ -~~~ -3789677 0 0 -~~~ -~~~ -3789678 0 1 -~~~ -~~~ -3789680 0 3 -~~~ -~~~ -3789682 0 7 -~~~ -~~~ -3789684 0 15 -~~~ -~~~ -3789686 0 31 -~~~ -~~~ -3789688 0 63 -~~~ -~~~ -3789689 0 127 -~~~ -~~~ -3789691 0 255 -3789692 homeCount = 37 -3789693 waitCount = 18 -3789693 ripCount = 14 -3789694 locktype1 = 2 -3789694 locktype2 = 5 -3789715 locktype3 = 2 -3789716 goalCount = 0 -3789716 goalTotal = 10 -3789717 otherCount = 17 -~~~ -3789718 CURRENTGOAL IS [4] -~~~ -3789718 UP 12 -3789718 2048 255 -3789772 DOWN 12 -3789772 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3789807 homeCount = 37 -3789808 waitCount = 18 -3789808 ripCount = 14 -3789809 locktype1 = 2 -3789809 locktype2 = 5 -3789810 locktype3 = 2 -3789810 goalCount = 0 -3789811 goalTotal = 10 -3789811 otherCount = 17 -~~~ -3789812 CURRENTGOAL IS [4] -~~~ -3794235 UP 5 -3794235 16 255 -~~~ -~~~ -3795367 DOWN 5 -3795367 0 255 -~~~ -~~~ -3795392 0 254 -~~~ -~~~ -3795394 0 252 -~~~ -~~~ -3795396 0 248 -~~~ -~~~ -3795398 0 240 -~~~ -~~~ -3795399 0 224 -~~~ -~~~ -3795401 0 192 -~~~ -~~~ -3795403 0 128 -~~~ -~~~ -3795405 0 0 -~~~ -~~~ -3795407 0 512 -3795408 homeCount = 37 -3795408 waitCount = 18 -3795409 ripCount = 14 -3795409 locktype1 = 2 -3795410 locktype2 = 5 -3795431 locktype3 = 2 -3795431 goalCount = 0 -3795432 goalTotal = 10 -3795432 otherCount = 18 -~~~ -3795433 16 512 -3795632 DOWN 5 -3795632 0 512 -3795657 16 512 -3795681 DOWN 5 -3795681 0 512 -3799735 UP 10 -3799735 waslock = 0 -3799735 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3799766 512 16777728 -~~~ -3799916 512 512 -3800136 DOWN 10 -3800136 0 512 -~~~ -~~~ -3800161 0 2560 -~~~ -~~~ -3800163 0 2048 -3800164 homeCount = 38 -3800165 waitCount = 18 -3800165 ripCount = 14 -3800166 locktype1 = 2 -3800166 locktype2 = 5 -3800167 locktype3 = 2 -3800167 goalCount = 0 -3800168 goalTotal = 10 -3800168 otherCount = 18 -~~~ -3800211 UP 10 -3800211 waslock = 0 -3800211 512 2048 -3800219 DOWN 10 -3800219 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3800237 homeCount = 38 -3800238 waitCount = 18 -3800238 ripCount = 14 -3800239 locktype1 = 2 -3800239 locktype2 = 5 -3800239 locktype3 = 2 -3800240 goalCount = 0 -3800240 goalTotal = 10 -3800241 otherCount = 18 -~~~ -3800339 UP 10 -3800340 waslock = 0 -3800339 512 2048 -~~~ -3800385 DOWN 10 -3800385 0 2048 -3800396 UP 10 -3800396 waslock = 0 -3800396 512 2048 -~~~ -~~~ -~~~ -~~~ -3800409 homeCount = 38 -3800410 waitCount = 18 -3800410 ripCount = 14 -3800411 locktype1 = 2 -3800411 locktype2 = 5 -3800412 locktype3 = 2 -3800412 goalCount = 0 -3800413 goalTotal = 10 -3800413 otherCount = 18 -~~~ -3800414 DOWN 10 -3800414 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -3800451 homeCount = 38 -3800452 waitCount = 18 -3800452 ripCount = 14 -3800453 locktype1 = 2 -3800453 locktype2 = 5 -3800453 locktype3 = 2 -3800454 goalCount = 0 -3800454 goalTotal = 10 -3800455 otherCount = 18 -~~~ -3800468 UP 10 -3800468 waslock = 0 -3800467 512 2048 -~~~ -3803996 DOWN 10 -3803996 0 2048 -~~~ -~~~ -~~~ -~~~ -3804015 homeCount = 38 -3804016 waitCount = 18 -3804016 ripCount = 14 -3804017 locktype1 = 2 -3804017 locktype2 = 5 -3804018 locktype3 = 2 -3804018 goalCount = 0 -3804019 goalTotal = 10 -3804019 otherCount = 18 -~~~ -3804022 UP 10 -3804022 waslock = 0 -3804022 512 2048 -~~~ -3804098 DOWN 10 -3804098 0 2048 -~~~ -~~~ -~~~ -~~~ -3804127 homeCount = 38 -3804128 waitCount = 18 -3804128 ripCount = 14 -3804129 locktype1 = 2 -3804129 locktype2 = 5 -3804129 locktype3 = 2 -3804130 goalCount = 0 -3804130 goalTotal = 10 -3804131 otherCount = 18 -~~~ -3805817 UP 12 -3805817 2048 2048 -3807265 DOWN 12 -3807265 0 2048 -3807349 UP 12 -3807349 2048 2048 -3807359 DOWN 12 -3807359 0 2048 -3807468 UP 12 -3807468 2048 2048 -3807502 DOWN 12 -3807502 0 2048 -3807537 UP 12 -3807537 2048 2048 -3811317 CLICK1 -3811317 CLICK2 -~~~ -~~~ -~~~ -3811334 2048 67110912 -~~~ -3811484 2048 2048 -3817632 DOWN 12 -3817632 0 2048 -~~~ -~~~ -3817654 0 0 -~~~ -~~~ -3817656 0 1 -~~~ -~~~ -3817658 0 3 -~~~ -~~~ -3817660 0 7 -~~~ -~~~ -3817662 0 15 -~~~ -~~~ -3817664 0 31 -~~~ -~~~ -3817665 0 63 -~~~ -~~~ -3817667 0 127 -~~~ -~~~ -3817669 0 255 -3817670 homeCount = 38 -3817671 waitCount = 19 -3817671 ripCount = 14 -3817672 locktype1 = 2 -3817672 locktype2 = 5 -3817673 locktype3 = 2 -3817694 goalCount = 0 -3817694 goalTotal = 10 -3817695 otherCount = 18 -~~~ -3817696 CURRENTGOAL IS [4] -~~~ -3817696 UP 12 -3817696 2048 255 -3817723 DOWN 12 -3817723 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3817760 homeCount = 38 -3817760 waitCount = 19 -3817761 ripCount = 14 -3817761 locktype1 = 2 -3817762 locktype2 = 5 -3817762 locktype3 = 2 -3817763 goalCount = 0 -3817763 goalTotal = 10 -3817764 otherCount = 18 -~~~ -3817765 CURRENTGOAL IS [4] -~~~ -3821477 UP 1 -3821477 1 255 -~~~ -~~~ -3822494 DOWN 1 -3822494 0 255 -~~~ -~~~ -3822514 0 254 -~~~ -~~~ -3822516 0 252 -~~~ -~~~ -3822517 0 248 -~~~ -~~~ -3822519 0 240 -~~~ -~~~ -3822521 0 224 -~~~ -~~~ -3822523 0 192 -~~~ -~~~ -3822525 0 128 -~~~ -~~~ -3822526 0 0 -~~~ -~~~ -3822528 0 512 -3822529 homeCount = 38 -3822530 waitCount = 19 -3822530 ripCount = 14 -3822531 locktype1 = 2 -3822531 locktype2 = 5 -3822552 locktype3 = 2 -3822553 goalCount = 0 -3822553 goalTotal = 10 -3822554 otherCount = 19 -~~~ -3826161 UP 10 -3826161 waslock = 0 -3826161 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3826190 512 16777728 -~~~ -3826340 512 512 -3826395 DOWN 10 -3826395 0 512 -3826408 UP 10 -3826408 waslock = 0 -3826408 512 512 -~~~ -~~~ -3826416 512 1536 -~~~ -~~~ -3826418 512 1024 -3826419 homeCount = 39 -3826420 waitCount = 19 -3826420 ripCount = 14 -3826420 locktype1 = 2 -3826421 locktype2 = 5 -3826421 locktype3 = 2 -3826422 goalCount = 0 -3826422 goalTotal = 10 -3826423 otherCount = 19 -~~~ -~~~ -3829789 DOWN 10 -3829789 0 1024 -~~~ -~~~ -~~~ -~~~ -3829819 homeCount = 39 -3829820 waitCount = 19 -3829820 ripCount = 14 -3829821 locktype1 = 2 -3829821 locktype2 = 5 -3829822 locktype3 = 2 -3829822 goalCount = 0 -3829823 goalTotal = 10 -3829823 otherCount = 19 -~~~ -3829857 UP 10 -3829857 waslock = 0 -3829857 512 1024 -~~~ -3829908 DOWN 10 -3829908 0 1024 -~~~ -~~~ -~~~ -~~~ -3829939 homeCount = 39 -3829939 waitCount = 19 -3829940 ripCount = 14 -3829940 locktype1 = 2 -3829941 locktype2 = 5 -3829941 locktype3 = 2 -3829942 goalCount = 0 -3829942 goalTotal = 10 -3829943 otherCount = 19 -~~~ -3831810 UP 11 -3831810 1024 1024 -3834588 DOWN 11 -3834588 0 1024 -3834611 UP 11 -3834611 1024 1024 -3834810 BEEP1 -3834810 BEEP2 -~~~ -~~~ -~~~ -3834838 1024 33555456 -~~~ -3834988 1024 1024 -3843339 DOWN 11 -3843339 0 1024 -~~~ -~~~ -3843368 0 0 -~~~ -~~~ -3843370 0 1 -~~~ -~~~ -3843372 0 3 -~~~ -~~~ -3843373 0 7 -~~~ -~~~ -3843375 0 15 -~~~ -~~~ -3843377 0 31 -~~~ -~~~ -3843379 0 63 -~~~ -~~~ -3843381 0 127 -~~~ -~~~ -3843382 0 255 -3843383 homeCount = 39 -3843384 waitCount = 19 -3843384 ripCount = 15 -3843385 locktype1 = 2 -3843385 locktype2 = 5 -3843407 locktype3 = 2 -3843407 goalCount = 0 -3843408 goalTotal = 10 -3843408 otherCount = 19 -~~~ -3843409 CURRENTGOAL IS [4] -~~~ -3850007 UP 6 -3850007 32 255 -~~~ -~~~ -3850438 DOWN 6 -3850438 0 255 -~~~ -~~~ -3850460 0 254 -~~~ -~~~ -3850461 0 252 -~~~ -~~~ -3850463 0 248 -~~~ -~~~ -3850465 0 240 -~~~ -~~~ -3850467 0 224 -~~~ -~~~ -3850469 0 192 -~~~ -~~~ -3850471 0 128 -~~~ -~~~ -3850472 0 0 -~~~ -~~~ -3850474 0 512 -3850475 homeCount = 39 -3850476 waitCount = 19 -3850476 ripCount = 15 -3850477 locktype1 = 2 -3850477 locktype2 = 5 -3850498 locktype3 = 2 -3850499 goalCount = 0 -3850499 goalTotal = 10 -3850500 otherCount = 20 -~~~ -3854285 UP 10 -3854285 waslock = 0 -3854285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3854318 512 16777728 -~~~ -3854327 DOWN 10 -3854327 0 16777728 -~~~ -~~~ -3854355 0 16778752 -~~~ -~~~ -3854357 0 16778240 -3854358 homeCount = 40 -3854359 waitCount = 19 -3854359 ripCount = 15 -3854359 locktype1 = 2 -3854360 locktype2 = 5 -3854360 locktype3 = 2 -3854361 goalCount = 0 -3854361 goalTotal = 10 -3854362 otherCount = 20 -~~~ -3854428 UP 10 -3854428 waslock = 0 -3854428 512 16778240 -~~~ -3854468 512 1024 -3854575 DOWN 10 -3854575 0 1024 -3854594 UP 10 -3854594 waslock = 0 -3854594 512 1024 -~~~ -~~~ -~~~ -~~~ -3854615 homeCount = 40 -3854616 waitCount = 19 -3854616 ripCount = 15 -3854617 locktype1 = 2 -3854617 locktype2 = 5 -3854617 locktype3 = 2 -3854618 goalCount = 0 -3854618 goalTotal = 10 -3854619 otherCount = 20 -~~~ -~~~ -3858624 DOWN 10 -3858624 0 1024 -3858631 UP 10 -3858632 waslock = 0 -3858631 512 1024 -~~~ -~~~ -~~~ -~~~ -3858656 homeCount = 40 -3858657 waitCount = 19 -3858657 ripCount = 15 -3858658 locktype1 = 2 -3858658 locktype2 = 5 -3858659 locktype3 = 2 -3858659 goalCount = 0 -3858660 goalTotal = 10 -3858660 otherCount = 20 -~~~ -~~~ -3858741 DOWN 10 -3858741 0 1024 -~~~ -~~~ -~~~ -~~~ -3858764 homeCount = 40 -3858764 waitCount = 19 -3858765 ripCount = 15 -3858765 locktype1 = 2 -3858765 locktype2 = 5 -3858766 locktype3 = 2 -3858766 goalCount = 0 -3858767 goalTotal = 10 -3858767 otherCount = 20 -~~~ -3858768 UP 10 -3858768 waslock = 0 -3858768 512 1024 -~~~ -3858851 DOWN 10 -3858851 0 1024 -~~~ -~~~ -~~~ -~~~ -3858874 homeCount = 40 -3858874 waitCount = 19 -3858875 ripCount = 15 -3858875 locktype1 = 2 -3858876 locktype2 = 5 -3858876 locktype3 = 2 -3858877 goalCount = 0 -3858877 goalTotal = 10 -3858878 otherCount = 20 -~~~ -3861332 UP 11 -3861332 1024 1024 -3864187 DOWN 11 -3864187 0 1024 -3864226 UP 11 -3864226 1024 1024 -3864504 DOWN 11 -3864504 0 1024 -3864515 UP 11 -3864515 1024 1024 -3869332 BEEP1 -3869332 BEEP2 -~~~ -~~~ -~~~ -3869353 1024 33555456 -~~~ -3869503 1024 1024 -3877388 DOWN 11 -3877388 0 1024 -~~~ -~~~ -3877411 0 0 -~~~ -~~~ -3877413 0 1 -~~~ -~~~ -3877415 0 3 -~~~ -~~~ -3877416 0 7 -~~~ -~~~ -3877418 0 15 -~~~ -~~~ -3877420 0 31 -~~~ -~~~ -3877422 0 63 -~~~ -~~~ -3877424 0 127 -~~~ -~~~ -3877425 0 255 -3877426 homeCount = 40 -3877427 waitCount = 19 -3877427 ripCount = 16 -3877428 locktype1 = 2 -3877428 locktype2 = 5 -3877429 locktype3 = 2 -3877450 goalCount = 0 -3877450 goalTotal = 10 -3877451 otherCount = 20 -~~~ -3877452 CURRENTGOAL IS [4] -~~~ -3877452 UP 11 -3877452 1024 255 -3877495 DOWN 11 -3877495 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3877536 homeCount = 40 -3877537 waitCount = 19 -3877537 ripCount = 16 -3877538 locktype1 = 2 -3877538 locktype2 = 5 -3877539 locktype3 = 2 -3877539 goalCount = 0 -3877540 goalTotal = 10 -3877540 otherCount = 20 -~~~ -3877541 CURRENTGOAL IS [4] -~~~ -3888649 UP 10 -3888649 waslock = 0 -3888649 512 255 -~~~ -3888671 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3888679 512 254 -~~~ -~~~ -3888681 512 252 -~~~ -~~~ -3888683 512 248 -~~~ -~~~ -3888684 512 240 -~~~ -~~~ -3888686 512 224 -~~~ -~~~ -3888688 512 192 -~~~ -~~~ -3888690 512 128 -~~~ -~~~ -3888692 512 0 -~~~ -~~~ -~~~ -3888764 0 0 -3888945 512 0 -3889129 0 0 -3892595 UP 11 -3892595 1024 0 -3892720 DOWN 11 -3892720 0 0 -3896362 512 0 -3896505 0 0 -3896586 512 0 -3896737 0 0 -3896765 512 0 -3897158 0 0 -3897194 512 0 -3897289 0 0 -3897321 512 0 -3897709 0 0 -3899622 512 0 -3900148 0 0 -3906959 512 0 -3908083 0 0 -3908132 512 0 -3908168 0 0 -3913671 LOCKEND -~~~ -~~~ -~~~ -3913693 0 512 -3919562 UP 10 -3919562 waslock = 0 -3919562 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3919587 512 16777728 -~~~ -3919709 DOWN 10 -3919709 0 16777728 -3919737 0 512 -~~~ -~~~ -3919739 0 1536 -~~~ -~~~ -3919740 0 1024 -3919741 homeCount = 41 -3919742 waitCount = 19 -3919742 ripCount = 16 -3919743 locktype1 = 2 -3919743 locktype2 = 6 -3919744 locktype3 = 2 -3919744 goalCount = 0 -3919745 goalTotal = 10 -3919745 otherCount = 20 -~~~ -3919773 UP 10 -3919773 waslock = 0 -3919773 512 1024 -3919795 DOWN 10 -3919795 0 1024 -~~~ -3919811 UP 10 -3919811 waslock = 0 -3919811 512 1024 -~~~ -~~~ -~~~ -~~~ -3919830 homeCount = 41 -3919830 waitCount = 19 -3919831 ripCount = 16 -3919831 locktype1 = 2 -3919832 locktype2 = 6 -3919832 locktype3 = 2 -3919833 goalCount = 0 -3919833 goalTotal = 10 -3919834 otherCount = 20 -~~~ -~~~ -3924979 DOWN 10 -3924979 0 1024 -~~~ -~~~ -~~~ -~~~ -3925005 homeCount = 41 -3925006 waitCount = 19 -3925006 ripCount = 16 -3925007 locktype1 = 2 -3925007 locktype2 = 6 -3925008 locktype3 = 2 -3925008 goalCount = 0 -3925008 goalTotal = 10 -3925009 otherCount = 20 -~~~ -3926610 UP 11 -3926610 1024 1024 -3926694 DOWN 11 -3926694 0 1024 -3926742 UP 11 -3926742 1024 1024 -3930573 DOWN 11 -3930573 0 1024 -3930600 UP 11 -3930600 1024 1024 -3930610 BEEP1 -3930610 BEEP2 -~~~ -~~~ -~~~ -3930628 1024 33555456 -~~~ -3930778 1024 1024 -3937964 DOWN 11 -3937964 0 1024 -3937975 UP 11 -3937975 1024 1024 -~~~ -~~~ -3937994 1024 0 -~~~ -~~~ -3937996 1024 1 -~~~ -~~~ -3937997 1024 3 -~~~ -~~~ -3937999 1024 7 -~~~ -~~~ -3938001 1024 15 -~~~ -~~~ -3938003 1024 31 -~~~ -~~~ -3938005 1024 63 -~~~ -~~~ -3938006 1024 127 -~~~ -~~~ -3938008 1024 255 -3938009 homeCount = 41 -3938010 waitCount = 19 -3938010 ripCount = 17 -3938011 locktype1 = 2 -3938031 locktype2 = 6 -3938032 locktype3 = 2 -3938032 goalCount = 0 -3938033 goalTotal = 10 -3938033 otherCount = 20 -~~~ -3938034 CURRENTGOAL IS [4] -~~~ -3938094 DOWN 11 -3938094 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3938130 homeCount = 41 -3938131 waitCount = 19 -3938131 ripCount = 17 -3938132 locktype1 = 2 -3938132 locktype2 = 6 -3938133 locktype3 = 2 -3938133 goalCount = 0 -3938134 goalTotal = 10 -3938134 otherCount = 20 -~~~ -3938135 CURRENTGOAL IS [4] -~~~ -3944182 UP 7 -3944182 64 255 -~~~ -~~~ -3945239 DOWN 7 -3945239 0 255 -~~~ -~~~ -3945265 0 254 -~~~ -~~~ -3945267 0 252 -~~~ -~~~ -3945269 0 248 -~~~ -~~~ -3945271 0 240 -~~~ -~~~ -3945272 0 224 -~~~ -~~~ -3945274 0 192 -~~~ -~~~ -3945276 0 128 -~~~ -~~~ -3945278 0 0 -~~~ -~~~ -3945280 0 512 -3945281 homeCount = 41 -3945281 waitCount = 19 -3945282 ripCount = 17 -3945282 locktype1 = 2 -3945283 locktype2 = 6 -3945304 locktype3 = 2 -3945304 goalCount = 0 -3945305 goalTotal = 10 -3945305 otherCount = 21 -~~~ -3945639 64 512 -3945686 DOWN 7 -3945686 0 512 -3950837 UP 10 -3950838 waslock = 0 -3950837 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3950872 512 16777728 -~~~ -3951022 512 512 -3955553 DOWN 10 -3955553 0 512 -~~~ -~~~ -3955574 0 2560 -~~~ -~~~ -3955576 0 2048 -3955577 homeCount = 42 -3955578 waitCount = 19 -3955578 ripCount = 17 -3955579 locktype1 = 2 -3955579 locktype2 = 6 -3955580 locktype3 = 2 -3955580 goalCount = 0 -3955581 goalTotal = 10 -3955581 otherCount = 21 -~~~ -3955584 UP 10 -3955584 waslock = 0 -3955584 512 2048 -~~~ -3955653 DOWN 10 -3955653 0 2048 -~~~ -~~~ -~~~ -~~~ -3955679 homeCount = 42 -3955679 waitCount = 19 -3955680 ripCount = 17 -3955680 locktype1 = 2 -3955681 locktype2 = 6 -3955681 locktype3 = 2 -3955682 goalCount = 0 -3955682 goalTotal = 10 -3955683 otherCount = 21 -~~~ -3957642 UP 12 -3957642 2048 2048 -3960221 DOWN 12 -3960221 0 2048 -3960243 UP 12 -3960243 2048 2048 -3960399 DOWN 12 -3960399 0 2048 -3960427 UP 12 -3960427 2048 2048 -3960642 CLICK1 -3960642 CLICK2 -~~~ -~~~ -~~~ -3960669 2048 67110912 -~~~ -3960819 2048 2048 -3965466 DOWN 12 -3965465 0 2048 -~~~ -~~~ -3965487 0 0 -~~~ -~~~ -3965489 0 1 -~~~ -~~~ -3965491 0 3 -~~~ -~~~ -3965492 0 7 -~~~ -~~~ -3965494 0 15 -~~~ -~~~ -3965496 0 31 -~~~ -~~~ -3965498 0 63 -~~~ -~~~ -3965500 0 127 -~~~ -~~~ -3965502 0 255 -3965503 homeCount = 42 -3965503 waitCount = 20 -3965504 ripCount = 17 -3965504 locktype1 = 2 -3965505 locktype2 = 6 -3965505 locktype3 = 2 -3965526 goalCount = 0 -3965526 goalTotal = 10 -3965527 otherCount = 21 -~~~ -3965528 CURRENTGOAL IS [4] -~~~ -3965532 UP 12 -3965532 2048 255 -3965567 DOWN 12 -3965567 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -3965604 homeCount = 42 -3965604 waitCount = 20 -3965605 ripCount = 17 -3965605 locktype1 = 2 -3965606 locktype2 = 6 -3965606 locktype3 = 2 -3965607 goalCount = 0 -3965607 goalTotal = 10 -3965608 otherCount = 21 -~~~ -3965609 CURRENTGOAL IS [4] -~~~ -3978210 UP 1 -3978210 1 255 -~~~ -~~~ -3979269 DOWN 1 -3979269 0 255 -~~~ -~~~ -3979288 0 254 -~~~ -~~~ -3979290 0 252 -~~~ -~~~ -3979292 0 248 -~~~ -~~~ -3979294 0 240 -~~~ -~~~ -3979295 0 224 -~~~ -~~~ -3979297 0 192 -~~~ -~~~ -3979299 0 128 -~~~ -~~~ -3979301 0 0 -~~~ -~~~ -3979303 0 512 -3979304 homeCount = 42 -3979304 waitCount = 20 -3979305 ripCount = 17 -3979305 locktype1 = 2 -3979306 locktype2 = 6 -3979326 locktype3 = 2 -3979327 goalCount = 0 -3979327 goalTotal = 10 -3979328 otherCount = 22 -~~~ -3982606 UP 10 -3982607 waslock = 0 -3982606 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -3982633 512 16777728 -~~~ -3982783 512 512 -3982795 DOWN 10 -3982795 0 512 -~~~ -~~~ -3982807 0 1536 -~~~ -~~~ -3982809 0 1024 -3982810 homeCount = 43 -3982811 waitCount = 20 -3982811 ripCount = 17 -3982812 locktype1 = 2 -3982812 locktype2 = 6 -3982813 locktype3 = 2 -3982813 goalCount = 0 -3982814 goalTotal = 10 -3982814 otherCount = 22 -~~~ -3982834 UP 10 -3982834 waslock = 0 -3982834 512 1024 -~~~ -3987599 DOWN 10 -3987599 0 1024 -3987616 UP 10 -3987617 waslock = 0 -3987616 512 1024 -~~~ -~~~ -~~~ -~~~ -3987621 homeCount = 43 -3987622 waitCount = 20 -3987622 ripCount = 17 -3987623 locktype1 = 2 -3987623 locktype2 = 6 -3987624 locktype3 = 2 -3987624 goalCount = 0 -3987625 goalTotal = 10 -3987625 otherCount = 22 -~~~ -~~~ -3987720 DOWN 10 -3987720 0 1024 -~~~ -~~~ -~~~ -~~~ -3987742 homeCount = 43 -3987742 waitCount = 20 -3987743 ripCount = 17 -3987743 locktype1 = 2 -3987744 locktype2 = 6 -3987744 locktype3 = 2 -3987745 goalCount = 0 -3987745 goalTotal = 10 -3987746 otherCount = 22 -~~~ -3987749 UP 10 -3987749 waslock = 0 -3987749 512 1024 -~~~ -3987825 DOWN 10 -3987825 0 1024 -~~~ -~~~ -~~~ -~~~ -3987859 homeCount = 43 -3987860 waitCount = 20 -3987860 ripCount = 17 -3987861 locktype1 = 2 -3987861 locktype2 = 6 -3987862 locktype3 = 2 -3987862 goalCount = 0 -3987862 goalTotal = 10 -3987863 otherCount = 22 -~~~ -3989547 UP 11 -3989547 1024 1024 -3995048 BEEP1 -3995048 BEEP2 -~~~ -~~~ -~~~ -3995074 1024 33555456 -~~~ -3995224 1024 1024 -4000147 DOWN 11 -4000147 0 1024 -~~~ -~~~ -4000174 0 0 -~~~ -~~~ -4000176 UP 11 -4000176 1024 1 -~~~ -~~~ -4000178 1024 3 -~~~ -~~~ -4000180 1024 7 -~~~ -~~~ -4000181 1024 15 -~~~ -~~~ -4000183 1024 31 -~~~ -~~~ -4000185 1024 63 -~~~ -~~~ -4000187 1024 127 -~~~ -~~~ -4000189 1024 255 -4000190 homeCount = 43 -4000190 waitCount = 20 -4000191 ripCount = 18 -4000212 locktype1 = 2 -4000212 locktype2 = 6 -4000213 locktype3 = 2 -4000213 goalCount = 0 -4000214 goalTotal = 10 -4000214 otherCount = 22 -~~~ -4000215 CURRENTGOAL IS [4] -~~~ -4002715 DOWN 11 -4002715 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4002752 homeCount = 43 -4002752 waitCount = 20 -4002753 ripCount = 18 -4002753 locktype1 = 2 -4002754 locktype2 = 6 -4002754 locktype3 = 2 -4002755 goalCount = 0 -4002755 goalTotal = 10 -4002756 otherCount = 22 -~~~ -4002757 CURRENTGOAL IS [4] -~~~ -4002789 UP 11 -4002789 1024 255 -4002814 DOWN 11 -4002814 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4002852 homeCount = 43 -4002853 waitCount = 20 -4002853 ripCount = 18 -4002854 locktype1 = 2 -4002854 locktype2 = 6 -4002855 locktype3 = 2 -4002855 goalCount = 0 -4002855 goalTotal = 10 -4002856 otherCount = 22 -~~~ -4002857 CURRENTGOAL IS [4] -~~~ -4017754 UP 4 -4017754 8 255 -~~~ -~~~ -4017778 outer reward -~~~ -4017778 8 524543 -~~~ -~~~ -4018228 8 255 -4026115 DOWN 4 -4026115 0 255 -4026124 8 255 -~~~ -~~~ -4026135 8 254 -~~~ -~~~ -4026137 8 252 -~~~ -~~~ -4026139 8 248 -~~~ -~~~ -4026141 8 240 -~~~ -~~~ -4026143 8 224 -~~~ -~~~ -4026145 8 192 -~~~ -~~~ -4026146 8 128 -~~~ -~~~ -4026148 8 0 -~~~ -~~~ -4026150 8 512 -4026151 homeCount = 43 -4026152 waitCount = 20 -4026152 ripCount = 18 -4026153 locktype1 = 2 -4026153 locktype2 = 6 -4026174 locktype3 = 2 -4026175 goalCount = 1 -4026175 goalTotal = 11 -4026176 otherCount = 22 -~~~ -4026210 DOWN 4 -4026210 0 512 -4031912 UP 10 -4031913 waslock = 0 -4031912 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4031942 512 16777728 -~~~ -4032092 512 512 -4034692 DOWN 10 -4034692 0 512 -4034708 UP 10 -4034708 waslock = 0 -4034708 512 512 -~~~ -~~~ -4034727 512 1536 -~~~ -~~~ -4034729 512 1024 -4034730 homeCount = 44 -4034730 waitCount = 20 -4034731 ripCount = 18 -4034731 locktype1 = 2 -4034732 locktype2 = 6 -4034732 locktype3 = 2 -4034733 goalCount = 1 -4034733 goalTotal = 11 -4034734 otherCount = 22 -~~~ -~~~ -4034802 DOWN 10 -4034802 0 1024 -~~~ -~~~ -~~~ -~~~ -4034829 homeCount = 44 -4034829 waitCount = 20 -4034830 ripCount = 18 -4034830 locktype1 = 2 -4034831 locktype2 = 6 -4034831 locktype3 = 2 -4034832 goalCount = 1 -4034832 goalTotal = 11 -4034833 otherCount = 22 -~~~ -4034845 UP 10 -4034845 waslock = 0 -4034845 512 1024 -~~~ -4034916 DOWN 10 -4034916 0 1024 -~~~ -~~~ -~~~ -~~~ -4034938 homeCount = 44 -4034939 waitCount = 20 -4034939 ripCount = 18 -4034940 locktype1 = 2 -4034940 locktype2 = 6 -4034941 locktype3 = 2 -4034941 goalCount = 1 -4034942 goalTotal = 11 -4034942 otherCount = 22 -~~~ -4034974 UP 10 -4034974 waslock = 0 -4034974 512 1024 -~~~ -4036788 DOWN 10 -4036788 0 1024 -4036798 UP 10 -4036798 waslock = 0 -4036798 512 1024 -~~~ -~~~ -~~~ -~~~ -4036820 homeCount = 44 -4036821 waitCount = 20 -4036821 ripCount = 18 -4036822 locktype1 = 2 -4036822 locktype2 = 6 -4036823 locktype3 = 2 -4036823 goalCount = 1 -4036824 goalTotal = 11 -4036824 otherCount = 22 -~~~ -~~~ -4036891 DOWN 10 -4036891 0 1024 -~~~ -~~~ -~~~ -~~~ -4036918 homeCount = 44 -4036919 waitCount = 20 -4036919 ripCount = 18 -4036920 locktype1 = 2 -4036920 locktype2 = 6 -4036921 locktype3 = 2 -4036921 goalCount = 1 -4036922 goalTotal = 11 -4036922 otherCount = 22 -~~~ -4039257 UP 11 -4039257 1024 1024 -4040494 DOWN 11 -4040494 0 1024 -4040534 UP 11 -4040534 1024 1024 -4041183 DOWN 11 -4041183 0 1024 -4041188 UP 11 -4041188 1024 1024 -4046257 BEEP1 -4046257 BEEP2 -~~~ -~~~ -~~~ -4046278 1024 33555456 -~~~ -4046428 1024 1024 -4052299 DOWN 11 -4052299 0 1024 -~~~ -~~~ -4052326 0 0 -~~~ -~~~ -4052328 0 1 -~~~ -~~~ -4052330 0 3 -~~~ -~~~ -4052331 0 7 -~~~ -~~~ -4052333 0 15 -~~~ -~~~ -4052335 0 31 -~~~ -~~~ -4052337 0 63 -~~~ -~~~ -4052339 0 127 -~~~ -~~~ -4052340 0 255 -4052341 homeCount = 44 -4052342 waitCount = 20 -4052342 ripCount = 19 -4052343 locktype1 = 2 -4052343 locktype2 = 6 -4052344 locktype3 = 2 -4052365 goalCount = 1 -4052365 goalTotal = 11 -4052366 otherCount = 22 -~~~ -4052367 CURRENTGOAL IS [4] -~~~ -4052367 UP 11 -4052367 1024 255 -4052392 DOWN 11 -4052392 0 255 -4052405 UP 11 -4052405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4052432 homeCount = 44 -4052432 waitCount = 20 -4052433 ripCount = 19 -4052433 locktype1 = 2 -4052434 locktype2 = 6 -4052434 locktype3 = 2 -4052435 goalCount = 1 -4052435 goalTotal = 11 -4052436 otherCount = 22 -~~~ -4052437 CURRENTGOAL IS [4] -~~~ -4055242 DOWN 11 -4055242 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4055281 homeCount = 44 -4055281 waitCount = 20 -4055282 ripCount = 19 -4055282 locktype1 = 2 -4055283 locktype2 = 6 -4055283 locktype3 = 2 -4055284 goalCount = 1 -4055284 goalTotal = 11 -4055285 otherCount = 22 -~~~ -4055286 CURRENTGOAL IS [4] -~~~ -4059122 UP 8 -4059122 128 255 -~~~ -~~~ -4059571 DOWN 8 -4059571 0 255 -~~~ -~~~ -4059595 0 254 -~~~ -~~~ -4059597 0 252 -~~~ -~~~ -4059599 0 248 -~~~ -~~~ -4059601 0 240 -~~~ -~~~ -4059603 0 224 -~~~ -~~~ -4059604 0 192 -~~~ -~~~ -4059606 0 128 -~~~ -~~~ -4059608 0 0 -~~~ -~~~ -4059610 0 512 -4059611 homeCount = 44 -4059611 waitCount = 20 -4059612 ripCount = 19 -4059612 locktype1 = 2 -4059613 locktype2 = 6 -4059634 locktype3 = 2 -4059635 goalCount = 1 -4059635 goalTotal = 11 -4059635 otherCount = 23 -~~~ -4059721 128 512 -4059773 DOWN 8 -4059773 0 512 -4067416 UP 10 -4067416 waslock = 0 -4067416 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4067444 512 16777728 -~~~ -4067594 512 512 -4068209 DOWN 10 -4068209 0 512 -4068223 UP 10 -4068223 waslock = 0 -4068223 512 512 -~~~ -~~~ -4068228 512 1536 -~~~ -~~~ -4068230 512 1024 -4068231 homeCount = 45 -4068231 waitCount = 20 -4068232 ripCount = 19 -4068232 locktype1 = 2 -4068233 locktype2 = 6 -4068233 locktype3 = 2 -4068234 goalCount = 1 -4068234 goalTotal = 11 -4068235 otherCount = 23 -~~~ -~~~ -4068337 DOWN 10 -4068337 0 1024 -~~~ -~~~ -~~~ -~~~ -4068363 homeCount = 45 -4068363 waitCount = 20 -4068364 ripCount = 19 -4068364 locktype1 = 2 -4068365 locktype2 = 6 -4068365 locktype3 = 2 -4068366 goalCount = 1 -4068366 goalTotal = 11 -4068367 otherCount = 23 -~~~ -4068380 UP 10 -4068380 waslock = 0 -4068380 512 1024 -~~~ -4068460 DOWN 10 -4068460 0 1024 -~~~ -~~~ -~~~ -~~~ -4068482 homeCount = 45 -4068482 waitCount = 20 -4068483 ripCount = 19 -4068483 locktype1 = 2 -4068484 locktype2 = 6 -4068484 locktype3 = 2 -4068485 goalCount = 1 -4068485 goalTotal = 11 -4068486 otherCount = 23 -~~~ -4068495 UP 10 -4068496 waslock = 0 -4068495 512 1024 -~~~ -4072504 DOWN 10 -4072504 0 1024 -~~~ -~~~ -~~~ -~~~ -4072531 homeCount = 45 -4072531 waitCount = 20 -4072532 ripCount = 19 -4072532 locktype1 = 2 -4072533 locktype2 = 6 -4072533 locktype3 = 2 -4072534 goalCount = 1 -4072534 goalTotal = 11 -4072535 otherCount = 23 -~~~ -4072546 UP 10 -4072546 waslock = 0 -4072546 512 1024 -~~~ -4072605 DOWN 10 -4072605 0 1024 -~~~ -~~~ -~~~ -~~~ -4072634 homeCount = 45 -4072635 waitCount = 20 -4072635 ripCount = 19 -4072636 locktype1 = 2 -4072636 locktype2 = 6 -4072637 locktype3 = 2 -4072637 goalCount = 1 -4072638 goalTotal = 11 -4072638 otherCount = 23 -~~~ -4074839 UP 11 -4074839 1024 1024 -4077839 BEEP1 -4077839 BEEP2 -~~~ -~~~ -~~~ -4077859 1024 33555456 -~~~ -4078009 1024 1024 -4083791 DOWN 11 -4083791 0 1024 -~~~ -~~~ -4083818 0 0 -~~~ -~~~ -4083820 0 1 -~~~ -~~~ -4083822 0 3 -~~~ -~~~ -4083823 0 7 -~~~ -~~~ -4083825 0 15 -~~~ -4083827 UP 11 -4083826 1024 15 -~~~ -~~~ -4083828 1024 31 -~~~ -~~~ -4083830 1024 63 -~~~ -4083831 1024 127 -~~~ -~~~ -4083833 1024 255 -4083834 homeCount = 45 -4083834 waitCount = 20 -4083855 ripCount = 20 -4083855 locktype1 = 2 -4083856 locktype2 = 6 -4083856 locktype3 = 2 -4083857 goalCount = 1 -4083857 goalTotal = 11 -4083858 otherCount = 23 -~~~ -4083859 CURRENTGOAL IS [4] -~~~ -4083859 DOWN 11 -4083859 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4083907 homeCount = 45 -4083908 waitCount = 20 -4083909 ripCount = 20 -4083909 locktype1 = 2 -4083910 locktype2 = 6 -4083910 locktype3 = 2 -4083911 goalCount = 1 -4083911 goalTotal = 11 -4083911 otherCount = 23 -~~~ -4083913 CURRENTGOAL IS [4] -~~~ -4083913 UP 11 -4083913 1024 255 -4086791 DOWN 11 -4086791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4086829 homeCount = 45 -4086829 waitCount = 20 -4086830 ripCount = 20 -4086830 locktype1 = 2 -4086831 locktype2 = 6 -4086831 locktype3 = 2 -4086832 goalCount = 1 -4086832 goalTotal = 11 -4086833 otherCount = 23 -~~~ -4086834 CURRENTGOAL IS [4] -~~~ -4087998 UP 11 -4087998 1024 255 -4088002 DOWN 11 -4088002 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4088043 homeCount = 45 -4088043 waitCount = 20 -4088044 ripCount = 20 -4088044 locktype1 = 2 -4088045 locktype2 = 6 -4088045 locktype3 = 2 -4088046 goalCount = 1 -4088046 goalTotal = 11 -4088047 otherCount = 23 -~~~ -4088048 CURRENTGOAL IS [4] -~~~ -4090950 UP 5 -4090950 16 255 -~~~ -~~~ -4091298 DOWN 5 -4091297 0 255 -~~~ -~~~ -4091323 0 254 -~~~ -~~~ -4091325 0 252 -~~~ -~~~ -4091327 0 248 -~~~ -~~~ -4091329 0 240 -~~~ -~~~ -4091330 0 224 -~~~ -~~~ -4091332 0 192 -~~~ -~~~ -4091334 0 128 -~~~ -~~~ -4091336 0 0 -~~~ -~~~ -4091338 0 512 -4091339 homeCount = 45 -4091339 waitCount = 20 -4091340 ripCount = 20 -4091340 locktype1 = 2 -4091341 locktype2 = 6 -4091362 locktype3 = 2 -4091362 goalCount = 1 -4091363 goalTotal = 11 -4091363 otherCount = 24 -~~~ -4091364 16 512 -4091503 DOWN 5 -4091503 0 512 -4095890 UP 10 -4095891 waslock = 0 -4095890 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4095915 512 16777728 -~~~ -4096065 512 512 -4096110 DOWN 10 -4096110 0 512 -~~~ -~~~ -4096133 0 2560 -~~~ -~~~ -4096135 0 2048 -4096136 homeCount = 46 -4096137 waitCount = 20 -4096137 ripCount = 20 -4096138 locktype1 = 2 -4096138 locktype2 = 6 -4096139 locktype3 = 2 -4096139 goalCount = 1 -4096140 goalTotal = 11 -4096140 otherCount = 24 -~~~ -4096211 UP 10 -4096211 waslock = 0 -4096211 512 2048 -~~~ -4100984 DOWN 10 -4100984 0 2048 -~~~ -~~~ -~~~ -~~~ -4101012 homeCount = 46 -4101012 waitCount = 20 -4101013 ripCount = 20 -4101013 locktype1 = 2 -4101014 locktype2 = 6 -4101014 locktype3 = 2 -4101015 goalCount = 1 -4101015 goalTotal = 11 -4101016 otherCount = 24 -~~~ -4102585 UP 12 -4102585 2048 2048 -4104563 DOWN 12 -4104563 0 2048 -4104602 UP 12 -4104602 2048 2048 -4106085 CLICK1 -4106085 CLICK2 -~~~ -~~~ -~~~ -4106111 2048 67110912 -~~~ -4106261 2048 2048 -4113653 DOWN 12 -4113653 0 2048 -~~~ -~~~ -4113670 0 0 -~~~ -~~~ -4113672 0 1 -~~~ -~~~ -4113674 0 3 -~~~ -~~~ -4113675 0 7 -~~~ -~~~ -4113677 0 15 -~~~ -~~~ -4113679 0 31 -~~~ -~~~ -4113681 0 63 -~~~ -~~~ -4113683 0 127 -~~~ -~~~ -4113685 0 255 -4113686 homeCount = 46 -4113686 waitCount = 21 -4113687 ripCount = 20 -4113687 locktype1 = 2 -4113688 locktype2 = 6 -4113709 locktype3 = 2 -4113709 goalCount = 1 -4113710 goalTotal = 11 -4113710 otherCount = 24 -~~~ -4113711 CURRENTGOAL IS [4] -~~~ -4113721 UP 12 -4113721 2048 255 -4113777 DOWN 12 -4113777 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4113818 homeCount = 46 -4113819 waitCount = 21 -4113819 ripCount = 20 -4113820 locktype1 = 2 -4113820 locktype2 = 6 -4113821 locktype3 = 2 -4113821 goalCount = 1 -4113822 goalTotal = 11 -4113822 otherCount = 24 -~~~ -4113823 CURRENTGOAL IS [4] -~~~ -4114284 UP 12 -4114284 2048 255 -4114665 DOWN 12 -4114665 0 255 -4114670 UP 12 -4114670 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4114698 homeCount = 46 -4114699 waitCount = 21 -4114699 ripCount = 20 -4114700 locktype1 = 2 -4114700 locktype2 = 6 -4114701 locktype3 = 2 -4114701 goalCount = 1 -4114702 goalTotal = 11 -4114702 otherCount = 24 -~~~ -4114703 CURRENTGOAL IS [4] -~~~ -4114704 DOWN 12 -4114704 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4114761 homeCount = 46 -4114761 waitCount = 21 -4114762 ripCount = 20 -4114763 locktype1 = 2 -4114763 locktype2 = 6 -4114763 locktype3 = 2 -4114764 goalCount = 1 -4114764 goalTotal = 11 -4114765 otherCount = 24 -~~~ -4114766 CURRENTGOAL IS [4] -~~~ -4114819 UP 12 -4114819 2048 255 -4114989 DOWN 12 -4114989 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4115028 homeCount = 46 -4115028 waitCount = 21 -4115029 ripCount = 20 -4115030 locktype1 = 2 -4115030 locktype2 = 6 -4115030 locktype3 = 2 -4115031 goalCount = 1 -4115031 goalTotal = 11 -4115032 otherCount = 24 -~~~ -4115033 CURRENTGOAL IS [4] -~~~ -4115131 UP 12 -4115131 2048 255 -4115180 DOWN 12 -4115180 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4115219 homeCount = 46 -4115220 waitCount = 21 -4115220 ripCount = 20 -4115221 locktype1 = 2 -4115221 locktype2 = 6 -4115222 locktype3 = 2 -4115222 goalCount = 1 -4115223 goalTotal = 11 -4115223 otherCount = 24 -~~~ -4115224 CURRENTGOAL IS [4] -~~~ -4122428 UP 4 -4122428 8 255 -~~~ -~~~ -4122455 outer reward -~~~ -4122456 8 524543 -~~~ -~~~ -4122729 DOWN 4 -4122729 0 524543 -~~~ -~~~ -4122753 0 524542 -~~~ -~~~ -4122755 0 524540 -~~~ -~~~ -4122757 0 524536 -~~~ -~~~ -4122759 0 524528 -~~~ -~~~ -4122761 0 524512 -~~~ -~~~ -4122762 0 524480 -~~~ -~~~ -4122764 0 524416 -~~~ -~~~ -4122766 0 524288 -~~~ -4122767 8 524288 -~~~ -4122769 8 524800 -4122770 homeCount = 46 -4122770 waitCount = 21 -4122791 ripCount = 20 -4122792 locktype1 = 2 -4122792 locktype2 = 6 -4122793 locktype3 = 2 -4122793 goalCount = 2 -4122794 goalTotal = 12 -4122794 otherCount = 24 -~~~ -4122905 8 512 -4123027 DOWN 4 -4123027 0 512 -4123052 8 512 -4123136 DOWN 4 -4123136 0 512 -4123166 8 512 -4123268 DOWN 4 -4123268 0 512 -4123295 8 512 -4123386 DOWN 4 -4123386 0 512 -4123423 8 512 -4123521 DOWN 4 -4123521 0 512 -4123554 8 512 -4123652 DOWN 4 -4123652 0 512 -4123684 8 512 -4123785 DOWN 4 -4123785 0 512 -4123811 8 512 -4123915 DOWN 4 -4123915 0 512 -4123946 8 512 -4124055 DOWN 4 -4124055 0 512 -4124079 8 512 -4124194 DOWN 4 -4124194 0 512 -4124218 8 512 -4124337 DOWN 4 -4124337 0 512 -4124358 8 512 -4124486 DOWN 4 -4124486 0 512 -4124501 8 512 -4124634 DOWN 4 -4124634 0 512 -4124650 8 512 -4124790 DOWN 4 -4124790 0 512 -4124797 8 512 -4125100 DOWN 4 -4125100 0 512 -4125109 8 512 -4128672 DOWN 4 -4128672 0 512 -4128679 8 512 -4128805 DOWN 4 -4128805 0 512 -4128828 8 512 -4130462 DOWN 4 -4130462 0 512 -4134961 UP 10 -4134961 waslock = 0 -4134961 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4134991 512 16777728 -~~~ -4135000 DOWN 10 -4135000 0 16777728 -~~~ -~~~ -4135021 0 16778752 -~~~ -~~~ -4135023 0 16778240 -4135024 homeCount = 47 -4135025 waitCount = 21 -4135025 ripCount = 20 -4135026 locktype1 = 2 -4135026 locktype2 = 6 -4135027 locktype3 = 2 -4135027 goalCount = 2 -4135028 goalTotal = 12 -4135028 otherCount = 24 -~~~ -4135049 UP 10 -4135050 waslock = 0 -4135049 512 16778240 -~~~ -4135141 512 1024 -4135184 DOWN 10 -4135184 0 1024 -~~~ -~~~ -~~~ -~~~ -4135208 homeCount = 47 -4135209 waitCount = 21 -4135209 ripCount = 20 -4135210 locktype1 = 2 -4135210 locktype2 = 6 -4135211 locktype3 = 2 -4135211 goalCount = 2 -4135212 goalTotal = 12 -4135212 otherCount = 24 -~~~ -4135243 UP 10 -4135243 waslock = 0 -4135243 512 1024 -~~~ -4139256 DOWN 10 -4139256 0 1024 -~~~ -~~~ -~~~ -~~~ -4139281 homeCount = 47 -4139281 waitCount = 21 -4139282 ripCount = 20 -4139282 locktype1 = 2 -4139283 locktype2 = 6 -4139283 locktype3 = 2 -4139284 goalCount = 2 -4139284 goalTotal = 12 -4139285 otherCount = 24 -~~~ -4141258 UP 11 -4141258 1024 1024 -4143110 DOWN 11 -4143110 0 1024 -4143119 UP 11 -4143119 1024 1024 -4143125 DOWN 11 -4143125 0 1024 -4143142 UP 11 -4143142 1024 1024 -4143768 DOWN 11 -4143768 0 1024 -4143852 UP 11 -4143852 1024 1024 -4144258 BEEP1 -4144258 BEEP2 -~~~ -~~~ -~~~ -4144279 1024 33555456 -~~~ -4144429 1024 1024 -4148801 DOWN 11 -4148801 0 1024 -4148814 UP 11 -4148814 1024 1024 -~~~ -~~~ -4148830 1024 0 -~~~ -~~~ -4148831 1024 1 -~~~ -~~~ -4148833 1024 3 -~~~ -~~~ -4148835 1024 7 -~~~ -~~~ -4148837 1024 15 -~~~ -~~~ -4148839 1024 31 -~~~ -~~~ -4148841 1024 63 -~~~ -~~~ -4148842 1024 127 -~~~ -~~~ -4148844 1024 255 -4148845 homeCount = 47 -4148846 waitCount = 21 -4148846 ripCount = 21 -4148847 locktype1 = 2 -4148868 locktype2 = 6 -4148868 locktype3 = 2 -4148869 goalCount = 2 -4148869 goalTotal = 12 -4148870 otherCount = 24 -~~~ -4148871 CURRENTGOAL IS [4] -~~~ -4150765 DOWN 11 -4150765 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4150803 homeCount = 47 -4150804 waitCount = 21 -4150805 ripCount = 21 -4150805 locktype1 = 2 -4150806 locktype2 = 6 -4150806 locktype3 = 2 -4150806 goalCount = 2 -4150807 goalTotal = 12 -4150807 otherCount = 24 -~~~ -4150808 CURRENTGOAL IS [4] -~~~ -4150827 UP 11 -4150827 1024 255 -4150902 DOWN 11 -4150902 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4150944 homeCount = 47 -4150944 waitCount = 21 -4150945 ripCount = 21 -4150945 locktype1 = 2 -4150946 locktype2 = 6 -4150946 locktype3 = 2 -4150947 goalCount = 2 -4150947 goalTotal = 12 -4150948 otherCount = 24 -~~~ -4150949 CURRENTGOAL IS [4] -~~~ -4154099 UP 4 -4154099 8 255 -~~~ -~~~ -4154121 outer reward -~~~ -4154121 8 524543 -~~~ -~~~ -4154381 DOWN 4 -4154381 0 524543 -~~~ -~~~ -4154408 0 524542 -~~~ -4154409 8 524542 -~~~ -~~~ -4154411 8 524540 -~~~ -4154412 8 524536 -~~~ -~~~ -4154414 8 524528 -~~~ -~~~ -4154415 8 524512 -~~~ -~~~ -4154417 8 524480 -~~~ -~~~ -4154419 8 524416 -~~~ -~~~ -4154421 8 524288 -~~~ -~~~ -4154423 8 524800 -4154424 homeCount = 47 -4154424 waitCount = 21 -4154445 ripCount = 21 -4154446 locktype1 = 2 -4154446 locktype2 = 6 -4154447 locktype3 = 2 -4154447 goalCount = 3 -4154448 goalTotal = 13 -4154448 otherCount = 24 -~~~ -4154571 8 512 -4154798 DOWN 4 -4154798 0 512 -4154825 8 512 -4154922 DOWN 4 -4154922 0 512 -4154958 8 512 -4155053 DOWN 4 -4155053 0 512 -4155087 8 512 -4155192 DOWN 4 -4155192 0 512 -4155219 8 512 -4155325 DOWN 4 -4155325 0 512 -4155360 8 512 -4155624 DOWN 4 -4155624 0 512 -4155633 8 512 -4156054 DOWN 4 -4156054 0 512 -4156064 8 512 -4162502 DOWN 4 -4162502 0 512 -4162532 8 512 -4162633 DOWN 4 -4162633 0 512 -4162670 8 512 -4162773 DOWN 4 -4162773 0 512 -4167844 UP 10 -4167845 waslock = 0 -4167844 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4167875 512 16777728 -~~~ -4168025 512 512 -4170914 DOWN 10 -4170914 0 512 -~~~ -~~~ -4170942 0 2560 -~~~ -~~~ -4170944 0 2048 -4170945 homeCount = 48 -4170945 waitCount = 21 -4170946 ripCount = 21 -4170946 locktype1 = 2 -4170946 locktype2 = 6 -4170947 locktype3 = 2 -4170947 goalCount = 3 -4170948 goalTotal = 13 -4170948 otherCount = 24 -~~~ -4170949 UP 10 -4170970 waslock = 0 -4170949 512 2048 -~~~ -4171034 DOWN 10 -4171034 0 2048 -~~~ -~~~ -~~~ -~~~ -4171061 homeCount = 48 -4171062 waitCount = 21 -4171062 ripCount = 21 -4171063 locktype1 = 2 -4171063 locktype2 = 6 -4171064 locktype3 = 2 -4171064 goalCount = 3 -4171065 goalTotal = 13 -4171065 otherCount = 24 -~~~ -4171069 UP 10 -4171071 waslock = 0 -4171069 512 2048 -~~~ -4173229 DOWN 10 -4173229 0 2048 -~~~ -~~~ -~~~ -~~~ -4173254 homeCount = 48 -4173254 waitCount = 21 -4173255 ripCount = 21 -4173255 locktype1 = 2 -4173256 locktype2 = 6 -4173256 locktype3 = 2 -4173257 goalCount = 3 -4173257 goalTotal = 13 -4173258 otherCount = 24 -~~~ -4174888 UP 12 -4174888 2048 2048 -4177658 DOWN 12 -4177658 0 2048 -4177681 UP 12 -4177681 2048 2048 -4177889 CLICK1 -4177889 CLICK2 -~~~ -~~~ -~~~ -4177910 2048 67110912 -~~~ -4178060 2048 2048 -4183984 DOWN 12 -4183984 0 2048 -4184003 UP 12 -4184003 2048 2048 -~~~ -~~~ -4184010 2048 0 -~~~ -~~~ -4184012 2048 1 -~~~ -~~~ -4184014 2048 3 -~~~ -~~~ -4184016 2048 7 -~~~ -~~~ -4184018 2048 15 -~~~ -~~~ -4184019 2048 31 -~~~ -~~~ -4184021 2048 63 -~~~ -~~~ -4184023 2048 127 -~~~ -~~~ -4184025 2048 255 -4184026 homeCount = 48 -4184026 waitCount = 22 -4184027 ripCount = 21 -4184027 locktype1 = 2 -4184048 locktype2 = 6 -4184049 locktype3 = 2 -4184049 goalCount = 3 -4184050 goalTotal = 13 -4184050 otherCount = 24 -~~~ -4184051 CURRENTGOAL IS [4] -~~~ -4184071 DOWN 12 -4184071 0 255 -~~~ -~~~ -~~~ -~~~ -4184086 UP 12 -4184086 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184100 homeCount = 48 -4184100 waitCount = 22 -4184101 ripCount = 21 -4184101 locktype1 = 2 -4184102 locktype2 = 6 -4184102 locktype3 = 2 -4184103 goalCount = 3 -4184103 goalTotal = 13 -4184104 otherCount = 24 -~~~ -4184105 CURRENTGOAL IS [4] -~~~ -4184107 DOWN 12 -4184107 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184155 homeCount = 48 -4184155 waitCount = 22 -4184156 ripCount = 21 -4184156 locktype1 = 2 -4184157 locktype2 = 6 -4184157 locktype3 = 2 -4184158 goalCount = 3 -4184158 goalTotal = 13 -4184159 otherCount = 24 -~~~ -4184160 CURRENTGOAL IS [4] -~~~ -4184181 UP 12 -4184181 2048 255 -4184186 DOWN 12 -4184186 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184206 UP 12 -4184206 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184212 homeCount = 48 -4184213 waitCount = 22 -4184213 ripCount = 21 -4184214 locktype1 = 2 -4184214 locktype2 = 6 -4184215 locktype3 = 2 -4184215 goalCount = 3 -4184216 goalTotal = 13 -4184216 otherCount = 24 -~~~ -4184217 CURRENTGOAL IS [4] -~~~ -4184649 DOWN 12 -4184649 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4184690 homeCount = 48 -4184691 waitCount = 22 -4184691 ripCount = 21 -4184692 locktype1 = 2 -4184692 locktype2 = 6 -4184693 locktype3 = 2 -4184693 goalCount = 3 -4184694 goalTotal = 13 -4184694 otherCount = 24 -~~~ -4184695 CURRENTGOAL IS [4] -~~~ -4184704 UP 12 -4184704 2048 255 -4185594 DOWN 12 -4185594 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4185628 homeCount = 48 -4185629 waitCount = 22 -4185629 ripCount = 21 -4185630 locktype1 = 2 -4185630 locktype2 = 6 -4185631 locktype3 = 2 -4185631 goalCount = 3 -4185632 goalTotal = 13 -4185632 otherCount = 24 -~~~ -4185633 CURRENTGOAL IS [4] -~~~ -4185641 UP 12 -4185641 2048 255 -4185708 DOWN 12 -4185707 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4185750 homeCount = 48 -4185750 waitCount = 22 -4185751 ripCount = 21 -4185751 locktype1 = 2 -4185752 locktype2 = 6 -4185752 locktype3 = 2 -4185752 goalCount = 3 -4185753 goalTotal = 13 -4185753 otherCount = 24 -~~~ -4185755 CURRENTGOAL IS [4] -~~~ -4189317 UP 4 -4189317 8 255 -~~~ -~~~ -4189337 outer reward -~~~ -4189337 8 524543 -~~~ -~~~ -4189569 DOWN 4 -4189569 0 524543 -~~~ -~~~ -4189593 0 524542 -~~~ -~~~ -4189595 0 524540 -~~~ -~~~ -4189597 0 524536 -~~~ -~~~ -4189599 0 524528 -~~~ -~~~ -4189601 0 524512 -~~~ -~~~ -4189603 0 524480 -~~~ -~~~ -4189604 0 524416 -~~~ -~~~ -4189606 0 524288 -~~~ -~~~ -4189608 0 524800 -4189609 homeCount = 48 -4189610 waitCount = 22 -4189610 ripCount = 21 -4189611 locktype1 = 2 -4189631 locktype2 = 6 -4189632 locktype3 = 2 -4189632 goalCount = 4 -4189633 goalTotal = 14 -4189633 otherCount = 24 -~~~ -4189634 8 524800 -4189787 8 512 -4190012 DOWN 4 -4190012 0 512 -4190037 8 512 -4190135 DOWN 4 -4190135 0 512 -4190166 8 512 -4190263 DOWN 4 -4190263 0 512 -4190291 8 512 -4190397 DOWN 4 -4190397 0 512 -4190428 8 512 -4190540 DOWN 4 -4190540 0 512 -4190564 8 512 -4190690 DOWN 4 -4190690 0 512 -4190706 8 512 -4190823 DOWN 4 -4190823 0 512 -4190850 8 512 -4190967 DOWN 4 -4190967 0 512 -4190989 8 512 -4191427 DOWN 4 -4191427 0 512 -4191434 8 512 -4196787 DOWN 4 -4196787 0 512 -4196850 8 512 -4196885 DOWN 4 -4196885 0 512 -4201709 UP 10 -4201709 waslock = 0 -4201709 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4201743 512 16777728 -~~~ -4201893 512 512 -4205616 DOWN 10 -4205616 0 512 -~~~ -~~~ -4205637 0 2560 -~~~ -~~~ -4205639 0 2048 -4205640 homeCount = 49 -4205640 waitCount = 22 -4205641 ripCount = 21 -4205641 locktype1 = 2 -4205642 locktype2 = 6 -4205642 locktype3 = 2 -4205643 goalCount = 4 -4205643 goalTotal = 14 -4205644 otherCount = 24 -~~~ -4207370 UP 12 -4207370 2048 2048 -4210795 DOWN 12 -4210795 0 2048 -4210828 UP 12 -4210828 2048 2048 -4213370 CLICK1 -4213370 CLICK2 -~~~ -~~~ -~~~ -4213398 2048 67110912 -~~~ -4213548 2048 2048 -4218738 DOWN 12 -4218738 0 2048 -4218747 UP 12 -4218747 2048 2048 -~~~ -~~~ -4218767 2048 0 -~~~ -~~~ -4218768 2048 1 -~~~ -~~~ -4218770 2048 3 -~~~ -~~~ -4218772 2048 7 -~~~ -~~~ -4218774 2048 15 -~~~ -~~~ -4218776 2048 31 -~~~ -~~~ -4218777 2048 63 -~~~ -~~~ -4218779 2048 127 -~~~ -~~~ -4218781 2048 255 -4218782 homeCount = 49 -4218783 waitCount = 23 -4218783 ripCount = 21 -4218784 locktype1 = 2 -4218805 locktype2 = 6 -4218805 locktype3 = 2 -4218805 goalCount = 4 -4218806 goalTotal = 14 -4218806 otherCount = 24 -~~~ -4218807 CURRENTGOAL IS [4] -~~~ -4218872 DOWN 12 -4218872 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4218914 homeCount = 49 -4218915 waitCount = 23 -4218915 ripCount = 21 -4218916 locktype1 = 2 -4218916 locktype2 = 6 -4218917 locktype3 = 2 -4218917 goalCount = 4 -4218918 goalTotal = 14 -4218918 otherCount = 24 -~~~ -4218919 CURRENTGOAL IS [4] -~~~ -4218920 UP 12 -4218920 2048 255 -4221459 DOWN 12 -4221459 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4221495 homeCount = 49 -4221495 waitCount = 23 -4221496 ripCount = 21 -4221496 locktype1 = 2 -4221497 locktype2 = 6 -4221497 locktype3 = 2 -4221498 goalCount = 4 -4221498 goalTotal = 14 -4221498 otherCount = 24 -~~~ -4221500 CURRENTGOAL IS [4] -~~~ -4224609 UP 4 -4224609 8 255 -~~~ -~~~ -4224631 outer reward -~~~ -4224631 8 524543 -~~~ -~~~ -4224876 DOWN 4 -4224876 0 524543 -~~~ -~~~ -4224899 0 524542 -~~~ -~~~ -4224900 0 524540 -~~~ -~~~ -4224902 0 524536 -~~~ -~~~ -4224904 0 524528 -~~~ -~~~ -4224906 0 524512 -~~~ -~~~ -4224908 0 524480 -~~~ -~~~ -4224909 0 524416 -~~~ -~~~ -4224911 0 524288 -~~~ -~~~ -4224913 0 524800 -4224914 homeCount = 49 -4224915 waitCount = 23 -4224915 ripCount = 21 -4224916 locktype1 = 2 -4224936 locktype2 = 6 -4224937 locktype3 = 2 -4224937 goalCount = 5 -4224938 goalTotal = 15 -4224938 otherCount = 24 -~~~ -4224939 8 524800 -4225081 8 512 -4225313 DOWN 4 -4225313 0 512 -4225326 8 512 -4225439 DOWN 4 -4225439 0 512 -4225457 8 512 -4225572 DOWN 4 -4225572 0 512 -4225586 8 512 -4225707 DOWN 4 -4225707 0 512 -4225724 8 512 -4225835 DOWN 4 -4225835 0 512 -4225858 8 512 -4225971 DOWN 4 -4225971 0 512 -4225988 8 512 -4226102 DOWN 4 -4226102 0 512 -4226123 8 512 -4226240 DOWN 4 -4226240 0 512 -4226257 8 512 -4226379 DOWN 4 -4226379 0 512 -4226390 8 512 -4226527 DOWN 4 -4226527 0 512 -4226533 8 512 -4231515 DOWN 4 -4231515 0 512 -4231529 8 512 -4233369 DOWN 4 -4233369 0 512 -4237735 UP 10 -4237735 waslock = 0 -4237735 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4237765 512 16777728 -~~~ -4237915 512 512 -4241880 DOWN 10 -4241880 0 512 -~~~ -~~~ -4241900 0 1536 -~~~ -~~~ -4241902 0 1024 -4241903 homeCount = 50 -4241903 waitCount = 23 -4241904 ripCount = 21 -4241904 locktype1 = 2 -4241905 locktype2 = 6 -4241905 locktype3 = 2 -4241905 goalCount = 5 -4241906 goalTotal = 15 -4241906 otherCount = 24 -~~~ -4243762 UP 11 -4243762 1024 1024 -4243837 DOWN 11 -4243837 0 1024 -4243952 UP 11 -4243952 1024 1024 -4250763 BEEP1 -4250763 BEEP2 -~~~ -~~~ -~~~ -4250781 1024 33555456 -~~~ -4250931 1024 1024 -4256515 DOWN 11 -4256515 0 1024 -~~~ -~~~ -4256539 0 0 -~~~ -~~~ -4256541 0 1 -~~~ -~~~ -4256543 0 3 -~~~ -~~~ -4256545 0 7 -~~~ -~~~ -4256546 0 15 -~~~ -~~~ -4256548 0 31 -~~~ -~~~ -4256550 0 63 -~~~ -~~~ -4256552 0 127 -~~~ -~~~ -4256554 0 255 -4256555 homeCount = 50 -4256555 waitCount = 23 -4256556 ripCount = 22 -4256556 locktype1 = 2 -4256557 locktype2 = 6 -4256557 locktype3 = 2 -4256578 goalCount = 5 -4256579 goalTotal = 15 -4256579 otherCount = 24 -~~~ -4256580 CURRENTGOAL IS [4] -~~~ -4256581 UP 11 -4256581 1024 255 -4259496 DOWN 11 -4259496 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4259538 homeCount = 50 -4259538 waitCount = 23 -4259539 ripCount = 22 -4259539 locktype1 = 2 -4259540 locktype2 = 6 -4259540 locktype3 = 2 -4259541 goalCount = 5 -4259541 goalTotal = 15 -4259542 otherCount = 24 -~~~ -4259543 CURRENTGOAL IS [4] -~~~ -4265652 UP 4 -4265652 8 255 -~~~ -~~~ -4265674 outer reward -~~~ -4265674 8 524543 -~~~ -~~~ -4265917 DOWN 4 -4265917 0 524543 -~~~ -~~~ -4265942 0 524542 -~~~ -~~~ -4265944 0 524540 -~~~ -~~~ -4265945 0 524536 -~~~ -~~~ -4265947 0 524528 -~~~ -~~~ -4265949 0 524512 -~~~ -~~~ -4265951 0 524480 -~~~ -~~~ -4265953 0 524416 -~~~ -~~~ -4265955 0 524288 -~~~ -~~~ -4265956 0 524800 -4265957 homeCount = 50 -4265958 waitCount = 23 -4265958 ripCount = 22 -4265959 locktype1 = 2 -4265980 locktype2 = 6 -4265980 locktype3 = 2 -4265981 goalCount = 6 -4265981 goalTotal = 16 -4265982 otherCount = 24 -~~~ -4265982 8 524800 -4266107 DOWN 4 -4266107 0 524800 -4266124 0 512 -4266129 8 512 -4266357 DOWN 4 -4266357 0 512 -4266378 8 512 -4266481 DOWN 4 -4266481 0 512 -4266507 8 512 -4266607 DOWN 4 -4266607 0 512 -4266639 8 512 -4266745 DOWN 4 -4266745 0 512 -4266764 8 512 -4266865 DOWN 4 -4266865 0 512 -4266891 8 512 -4266997 DOWN 4 -4266997 0 512 -4267021 8 512 -4267136 DOWN 4 -4267136 0 512 -4267154 8 512 -4274215 DOWN 4 -4274215 0 512 -4280342 UP 10 -4280343 waslock = 0 -4280342 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4280370 512 16777728 -~~~ -4280520 512 512 -4280525 DOWN 10 -4280525 0 512 -4280544 UP 10 -4280544 waslock = 0 -4280544 512 512 -~~~ -~~~ -4280547 512 1536 -~~~ -~~~ -4280549 512 1024 -4280550 homeCount = 51 -4280551 waitCount = 23 -4280551 ripCount = 22 -4280552 locktype1 = 2 -4280552 locktype2 = 6 -4280553 locktype3 = 2 -4280553 goalCount = 6 -4280554 goalTotal = 16 -4280554 otherCount = 24 -~~~ -~~~ -4284174 DOWN 10 -4284174 0 1024 -~~~ -~~~ -~~~ -~~~ -4284198 homeCount = 51 -4284199 waitCount = 23 -4284199 ripCount = 22 -4284200 locktype1 = 2 -4284200 locktype2 = 6 -4284201 locktype3 = 2 -4284201 goalCount = 6 -4284202 goalTotal = 16 -4284202 otherCount = 24 -~~~ -4285958 UP 11 -4285958 1024 1024 -4289670 DOWN 11 -4289669 0 1024 -4289688 UP 11 -4289688 1024 1024 -4290459 BEEP1 -4290459 BEEP2 -~~~ -~~~ -~~~ -4290489 1024 33555456 -~~~ -4290638 1024 1024 -4295683 DOWN 11 -4295683 0 1024 -4295693 UP 11 -4295693 1024 1024 -~~~ -~~~ -4295706 1024 0 -~~~ -~~~ -4295708 1024 1 -~~~ -~~~ -4295710 1024 3 -~~~ -~~~ -4295712 1024 7 -~~~ -~~~ -4295713 1024 15 -~~~ -~~~ -4295715 1024 31 -~~~ -~~~ -4295717 1024 63 -~~~ -~~~ -4295719 1024 127 -~~~ -~~~ -4295721 1024 255 -4295722 homeCount = 51 -4295722 waitCount = 23 -4295723 ripCount = 23 -4295723 locktype1 = 2 -4295744 locktype2 = 6 -4295745 locktype3 = 2 -4295745 goalCount = 6 -4295745 goalTotal = 16 -4295746 otherCount = 24 -~~~ -4295747 CURRENTGOAL IS [4] -~~~ -4295766 DOWN 11 -4295766 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4295801 UP 11 -4295801 1024 255 -4295803 homeCount = 51 -4295803 waitCount = 23 -4295804 ripCount = 23 -4295804 locktype1 = 2 -4295805 locktype2 = 6 -4295805 locktype3 = 2 -4295805 goalCount = 6 -4295806 goalTotal = 16 -4295806 otherCount = 24 -~~~ -4295808 CURRENTGOAL IS [4] -~~~ -4298136 DOWN 11 -4298136 0 255 -4298151 UP 11 -4298150 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298186 homeCount = 51 -4298186 waitCount = 23 -4298187 ripCount = 23 -4298187 locktype1 = 2 -4298188 locktype2 = 6 -4298188 locktype3 = 2 -4298189 goalCount = 6 -4298189 goalTotal = 16 -4298189 otherCount = 24 -~~~ -4298191 CURRENTGOAL IS [4] -~~~ -4298236 DOWN 11 -4298236 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298273 homeCount = 51 -4298274 waitCount = 23 -4298274 ripCount = 23 -4298275 locktype1 = 2 -4298275 locktype2 = 6 -4298276 locktype3 = 2 -4298276 goalCount = 6 -4298277 goalTotal = 16 -4298277 otherCount = 24 -~~~ -4298278 CURRENTGOAL IS [4] -~~~ -4298331 UP 11 -4298331 1024 255 -4298354 DOWN 11 -4298354 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4298397 homeCount = 51 -4298397 waitCount = 23 -4298398 ripCount = 23 -4298399 locktype1 = 2 -4298399 locktype2 = 6 -4298399 locktype3 = 2 -4298400 goalCount = 6 -4298400 goalTotal = 16 -4298401 otherCount = 24 -~~~ -4298402 CURRENTGOAL IS [4] -~~~ -4302468 UP 4 -4302468 8 255 -~~~ -~~~ -4302491 outer reward -~~~ -4302492 8 524543 -~~~ -~~~ -4302679 DOWN 4 -4302679 0 524543 -~~~ -~~~ -4302699 0 524542 -~~~ -~~~ -4302701 0 524540 -~~~ -~~~ -4302703 0 524536 -~~~ -~~~ -4302704 0 524528 -~~~ -~~~ -4302706 0 524512 -~~~ -~~~ -4302708 0 524480 -~~~ -~~~ -4302710 0 524416 -~~~ -~~~ -4302712 0 524288 -~~~ -~~~ -4302714 0 524800 -4302715 homeCount = 51 -4302715 waitCount = 23 -4302716 ripCount = 23 -4302716 locktype1 = 2 -4302737 locktype2 = 6 -4302737 locktype3 = 2 -4302738 goalCount = 7 -4302738 goalTotal = 17 -4302739 otherCount = 24 -~~~ -4302739 8 524800 -4302941 8 512 -4303248 DOWN 4 -4303248 0 512 -4303265 8 512 -4303374 DOWN 4 -4303374 0 512 -4303389 8 512 -4303497 DOWN 4 -4303497 0 512 -4303521 8 512 -4303616 DOWN 4 -4303616 0 512 -4303650 8 512 -4303768 DOWN 4 -4303768 0 512 -4303779 8 512 -4304355 DOWN 4 -4304355 0 512 -4304361 8 512 -4309831 DOWN 4 -4309831 0 512 -4314365 UP 10 -4314365 waslock = 0 -4314365 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4314398 512 16777728 -~~~ -4314518 DOWN 10 -4314518 0 16777728 -~~~ -~~~ -4314541 0 16778752 -~~~ -~~~ -4314543 0 16778240 -4314544 homeCount = 52 -4314544 waitCount = 23 -4314545 ripCount = 23 -4314545 locktype1 = 2 -4314546 locktype2 = 6 -4314546 locktype3 = 2 -4314547 goalCount = 7 -4314547 goalTotal = 17 -4314548 otherCount = 24 -~~~ -4314569 UP 10 -4314569 waslock = 0 -4314569 512 16778240 -4314571 512 1024 -~~~ -4320357 DOWN 10 -4320357 0 1024 -~~~ -~~~ -~~~ -~~~ -4320385 homeCount = 52 -4320385 waitCount = 23 -4320386 ripCount = 23 -4320386 locktype1 = 2 -4320387 locktype2 = 6 -4320387 locktype3 = 2 -4320388 goalCount = 7 -4320388 goalTotal = 17 -4320389 otherCount = 24 -~~~ -4322525 UP 11 -4322525 1024 1024 -4324497 DOWN 11 -4324497 0 1024 -4324536 UP 11 -4324536 1024 1024 -4326525 BEEP1 -4326525 BEEP2 -~~~ -~~~ -~~~ -4326554 1024 33555456 -~~~ -4326703 1024 1024 -4332297 DOWN 11 -4332297 0 1024 -~~~ -~~~ -4332321 0 0 -~~~ -~~~ -4332323 0 1 -~~~ -~~~ -4332325 0 3 -~~~ -~~~ -4332327 0 7 -~~~ -~~~ -4332329 0 15 -~~~ -~~~ -4332331 0 31 -~~~ -~~~ -4332332 0 63 -~~~ -~~~ -4332334 0 127 -~~~ -~~~ -4332336 0 255 -4332337 homeCount = 52 -4332338 waitCount = 23 -4332338 ripCount = 24 -4332339 locktype1 = 2 -4332339 locktype2 = 6 -4332360 locktype3 = 2 -4332361 goalCount = 7 -4332361 goalTotal = 17 -4332362 otherCount = 24 -~~~ -4332363 CURRENTGOAL IS [4] -~~~ -4332363 UP 11 -4332363 1024 255 -4336000 DOWN 11 -4336000 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4336037 homeCount = 52 -4336038 waitCount = 23 -4336038 ripCount = 24 -4336039 locktype1 = 2 -4336039 locktype2 = 6 -4336040 locktype3 = 2 -4336040 goalCount = 7 -4336041 goalTotal = 17 -4336041 otherCount = 24 -~~~ -4336042 CURRENTGOAL IS [4] -~~~ -4336052 UP 11 -4336052 1024 255 -4336156 DOWN 11 -4336156 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4336197 homeCount = 52 -4336198 waitCount = 23 -4336198 ripCount = 24 -4336199 locktype1 = 2 -4336199 locktype2 = 6 -4336200 locktype3 = 2 -4336200 goalCount = 7 -4336201 goalTotal = 17 -4336201 otherCount = 24 -~~~ -4336202 CURRENTGOAL IS [4] -~~~ -4340725 UP 4 -4340725 8 255 -~~~ -~~~ -4340744 outer reward -~~~ -4340745 8 524543 -~~~ -~~~ -4340992 DOWN 4 -4340992 0 524543 -~~~ -~~~ -4341014 0 524542 -~~~ -~~~ -4341016 0 524540 -~~~ -~~~ -4341018 0 524536 -~~~ -~~~ -4341020 0 524528 -~~~ -~~~ -4341022 0 524512 -~~~ -~~~ -4341023 0 524480 -~~~ -~~~ -4341025 0 524416 -~~~ -~~~ -4341027 0 524288 -~~~ -~~~ -4341029 0 524800 -4341030 homeCount = 52 -4341030 waitCount = 23 -4341031 ripCount = 24 -4341031 locktype1 = 2 -4341052 locktype2 = 6 -4341053 locktype3 = 2 -4341053 goalCount = 8 -4341054 goalTotal = 18 -4341054 otherCount = 24 -~~~ -4341055 8 524800 -4341194 8 512 -4341417 DOWN 4 -4341417 0 512 -4341435 8 512 -4341664 DOWN 4 -4341664 0 512 -4341693 8 512 -4341796 DOWN 4 -4341796 0 512 -4341811 8 512 -4341917 DOWN 4 -4341917 0 512 -4341945 8 512 -4342051 DOWN 4 -4342051 0 512 -4342074 8 512 -4342192 DOWN 4 -4342192 0 512 -4342207 8 512 -4342332 DOWN 4 -4342332 0 512 -4342351 8 512 -4342475 DOWN 4 -4342475 0 512 -4342489 8 512 -4342627 DOWN 4 -4342627 0 512 -4342636 8 512 -4342773 DOWN 4 -4342773 0 512 -4342786 8 512 -4342928 DOWN 4 -4342928 0 512 -4342942 8 512 -4343079 DOWN 4 -4343079 0 512 -4343090 8 512 -4345668 DOWN 4 -4345668 0 512 -4345673 8 512 -4347893 DOWN 4 -4347893 0 512 -4347977 8 512 -4347999 DOWN 4 -4347999 0 512 -4352959 UP 10 -4352959 waslock = 0 -4352959 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4352990 512 16777728 -~~~ -4353126 DOWN 10 -4353126 0 16777728 -4353139 0 512 -~~~ -~~~ -4353148 0 1536 -~~~ -~~~ -4353150 0 1024 -4353150 homeCount = 53 -4353151 waitCount = 23 -4353151 ripCount = 24 -4353152 locktype1 = 2 -4353152 locktype2 = 6 -4353153 locktype3 = 2 -4353153 goalCount = 8 -4353154 goalTotal = 18 -4353154 otherCount = 24 -~~~ -4353161 UP 10 -4353161 waslock = 0 -4353161 512 1024 -~~~ -4356494 DOWN 10 -4356494 0 1024 -~~~ -~~~ -~~~ -~~~ -4356516 homeCount = 53 -4356517 waitCount = 23 -4356517 ripCount = 24 -4356518 locktype1 = 2 -4356518 locktype2 = 6 -4356519 locktype3 = 2 -4356519 goalCount = 8 -4356520 goalTotal = 18 -4356520 otherCount = 24 -~~~ -4356538 UP 10 -4356539 waslock = 0 -4356538 512 1024 -~~~ -4356593 DOWN 10 -4356593 0 1024 -~~~ -~~~ -~~~ -~~~ -4356618 homeCount = 53 -4356619 waitCount = 23 -4356619 ripCount = 24 -4356620 locktype1 = 2 -4356620 locktype2 = 6 -4356621 locktype3 = 2 -4356621 goalCount = 8 -4356622 goalTotal = 18 -4356622 otherCount = 24 -~~~ -4358394 UP 11 -4358394 1024 1024 -4361395 BEEP1 -4361395 BEEP2 -~~~ -~~~ -~~~ -4361417 1024 33555456 -~~~ -4361567 1024 1024 -4368629 DOWN 11 -4368629 0 1024 -~~~ -~~~ -4368655 0 0 -~~~ -~~~ -4368657 0 1 -~~~ -~~~ -4368659 0 3 -~~~ -~~~ -4368660 0 7 -~~~ -~~~ -4368662 0 15 -~~~ -~~~ -4368664 0 31 -~~~ -~~~ -4368666 0 63 -~~~ -~~~ -4368668 0 127 -~~~ -~~~ -4368669 0 255 -4368670 homeCount = 53 -4368671 waitCount = 23 -4368672 ripCount = 25 -4368672 locktype1 = 2 -4368673 locktype2 = 6 -4368673 locktype3 = 2 -4368694 goalCount = 8 -4368694 goalTotal = 18 -4368695 otherCount = 24 -~~~ -4368696 CURRENTGOAL IS [4] -~~~ -4368696 UP 11 -4368696 1024 255 -4370757 DOWN 11 -4370757 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4370794 homeCount = 53 -4370794 waitCount = 23 -4370795 ripCount = 25 -4370795 locktype1 = 2 -4370796 locktype2 = 6 -4370796 locktype3 = 2 -4370797 goalCount = 8 -4370797 goalTotal = 18 -4370798 otherCount = 24 -~~~ -4370799 CURRENTGOAL IS [4] -~~~ -4370799 UP 11 -4370799 1024 255 -4370853 DOWN 11 -4370853 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4370893 homeCount = 53 -4370893 waitCount = 23 -4370894 ripCount = 25 -4370894 locktype1 = 2 -4370895 locktype2 = 6 -4370895 locktype3 = 2 -4370896 goalCount = 8 -4370896 goalTotal = 18 -4370897 otherCount = 24 -~~~ -4370898 CURRENTGOAL IS [4] -~~~ -4374044 UP 4 -4374044 8 255 -~~~ -~~~ -4374070 outer reward -~~~ -4374070 8 524543 -~~~ -~~~ -4374256 DOWN 4 -4374256 0 524543 -~~~ -~~~ -4374277 0 524542 -~~~ -~~~ -4374279 0 524540 -~~~ -~~~ -4374281 0 524536 -~~~ -~~~ -4374283 0 524528 -~~~ -~~~ -4374284 0 524512 -~~~ -~~~ -4374286 0 524480 -~~~ -~~~ -4374288 0 524416 -~~~ -~~~ -4374290 0 524288 -~~~ -~~~ -4374292 0 524800 -4374293 homeCount = 53 -4374293 waitCount = 23 -4374294 ripCount = 25 -4374315 locktype1 = 2 -4374315 locktype2 = 6 -4374316 locktype3 = 2 -4374316 goalCount = 9 -4374317 goalTotal = 19 -4374317 otherCount = 24 -~~~ -4374318 8 524800 -4374520 8 512 -4374698 DOWN 4 -4374698 0 512 -4374706 8 512 -4374816 DOWN 4 -4374815 0 512 -4374836 8 512 -4374934 DOWN 4 -4374934 0 512 -4374972 8 512 -4375072 DOWN 4 -4375071 0 512 -4375096 8 512 -4375198 DOWN 4 -4375198 0 512 -4375232 8 512 -4375338 DOWN 4 -4375338 0 512 -4375353 8 512 -4375631 DOWN 4 -4375631 0 512 -4375642 8 512 -4379874 DOWN 4 -4379874 0 512 -4379885 8 512 -4380055 DOWN 4 -4380055 0 512 -4380062 8 512 -4381987 DOWN 4 -4381987 0 512 -4382016 8 512 -4382061 DOWN 4 -4382061 0 512 -4385877 UP 10 -4385878 waslock = 0 -4385877 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4385906 512 16777728 -~~~ -4385914 DOWN 10 -4385913 0 16777728 -~~~ -~~~ -4385944 0 16778752 -~~~ -4385945 UP 10 -4385945 waslock = 0 -4385945 512 16778752 -~~~ -4385947 homeCount = 54 -4385948 waitCount = 23 -4385948 ripCount = 25 -4385949 locktype1 = 2 -4385949 locktype2 = 6 -4385950 locktype3 = 2 -4385950 goalCount = 9 -4385951 goalTotal = 19 -4385972 otherCount = 24 -~~~ -4385972 512 16778240 -~~~ -4386055 512 1024 -4390253 DOWN 10 -4390253 0 1024 -~~~ -~~~ -~~~ -~~~ -4390279 homeCount = 54 -4390280 waitCount = 23 -4390280 ripCount = 25 -4390281 locktype1 = 2 -4390281 locktype2 = 6 -4390282 locktype3 = 2 -4390282 goalCount = 9 -4390283 goalTotal = 19 -4390283 otherCount = 24 -~~~ -4390329 UP 10 -4390330 waslock = 0 -4390329 512 1024 -~~~ -4390375 DOWN 10 -4390375 0 1024 -~~~ -~~~ -~~~ -~~~ -4390398 homeCount = 54 -4390399 waitCount = 23 -4390399 ripCount = 25 -4390400 locktype1 = 2 -4390400 locktype2 = 6 -4390401 locktype3 = 2 -4390401 goalCount = 9 -4390402 goalTotal = 19 -4390402 otherCount = 24 -~~~ -4391799 UP 11 -4391799 1024 1024 -4395467 DOWN 11 -4395467 0 1024 -4395532 UP 11 -4395532 1024 1024 -4398800 BEEP1 -4398800 BEEP2 -~~~ -~~~ -~~~ -4398827 1024 33555456 -~~~ -4398977 1024 1024 -4404797 DOWN 11 -4404797 0 1024 -~~~ -~~~ -4404815 0 0 -~~~ -~~~ -4404817 0 1 -~~~ -~~~ -4404819 0 3 -~~~ -~~~ -4404821 0 7 -~~~ -~~~ -4404823 0 15 -~~~ -4404824 UP 11 -4404824 1024 15 -~~~ -~~~ -~~~ -4404826 1024 63 -~~~ -~~~ -4404828 1024 127 -~~~ -~~~ -4404830 1024 255 -4404831 homeCount = 54 -4404831 waitCount = 23 -4404832 ripCount = 26 -4404853 locktype1 = 2 -4404854 locktype2 = 6 -4404854 locktype3 = 2 -4404855 goalCount = 9 -4404855 goalTotal = 19 -4404856 otherCount = 24 -~~~ -4404857 CURRENTGOAL IS [4] -~~~ -4404857 DOWN 11 -4404857 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -4404890 UP 11 -4404890 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4404902 homeCount = 54 -4404903 waitCount = 23 -4404903 ripCount = 26 -4404904 locktype1 = 2 -4404904 locktype2 = 6 -4404905 locktype3 = 2 -4404905 goalCount = 9 -4404906 goalTotal = 19 -4404906 otherCount = 24 -~~~ -4404907 CURRENTGOAL IS [4] -~~~ -4408442 DOWN 11 -4408442 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4408483 homeCount = 54 -4408483 waitCount = 23 -4408484 ripCount = 26 -4408484 locktype1 = 2 -4408485 locktype2 = 6 -4408485 locktype3 = 2 -4408486 goalCount = 9 -4408486 goalTotal = 19 -4408486 otherCount = 24 -~~~ -4408488 CURRENTGOAL IS [4] -~~~ -4411793 UP 4 -4411793 8 255 -~~~ -~~~ -4411820 outer reward -~~~ -4411820 8 524543 -~~~ -~~~ -4411825 outerreps = 12 -~~~ -~~~ -4412010 DOWN 4 -4412010 0 524543 -~~~ -~~~ -4412036 0 524542 -~~~ -~~~ -4412037 0 524540 -~~~ -~~~ -4412039 0 524536 -~~~ -~~~ -4412041 0 524528 -~~~ -~~~ -4412043 0 524512 -~~~ -~~~ -4412045 0 524480 -~~~ -~~~ -4412047 0 524416 -~~~ -~~~ -4412048 0 524288 -~~~ -~~~ -4412050 0 524800 -4412051 homeCount = 54 -4412052 waitCount = 23 -4412052 ripCount = 26 -4412073 locktype1 = 2 -4412074 locktype2 = 6 -4412074 locktype3 = 2 -4412075 goalCount = 0 -4412075 goalTotal = 20 -4412076 otherCount = 24 -~~~ -4412076 8 524800 -4412270 8 512 -4412461 DOWN 4 -4412461 0 512 -4412488 8 512 -4412620 DOWN 4 -4412620 0 512 -4412641 8 512 -4412756 DOWN 4 -4412756 0 512 -4412785 8 512 -4412892 DOWN 4 -4412892 0 512 -4412925 8 512 -4413034 DOWN 4 -4413034 0 512 -4413058 8 512 -4413170 DOWN 4 -4413170 0 512 -4413199 8 512 -4413313 DOWN 4 -4413313 0 512 -4413341 8 512 -4413460 DOWN 4 -4413460 0 512 -4413480 8 512 -4413605 DOWN 4 -4413605 0 512 -4413626 8 512 -4413754 DOWN 4 -4413754 0 512 -4413772 8 512 -4413907 DOWN 4 -4413907 0 512 -4413921 8 512 -4420599 DOWN 4 -4420599 0 512 -4420642 8 512 -4420716 DOWN 4 -4420716 0 512 -4425492 UP 10 -4425492 waslock = 0 -4425492 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4425523 512 16777728 -~~~ -4425673 512 512 -4428204 DOWN 10 -4428204 0 512 -~~~ -~~~ -4428226 0 2560 -~~~ -~~~ -4428228 0 2048 -4428229 homeCount = 55 -4428229 waitCount = 23 -4428230 ripCount = 26 -4428230 locktype1 = 2 -4428231 locktype2 = 6 -4428231 locktype3 = 2 -4428232 goalCount = 0 -4428232 goalTotal = 20 -4428233 otherCount = 24 -~~~ -4430289 UP 12 -4430289 2048 2048 -4435709 DOWN 12 -4435709 0 2048 -4435765 UP 12 -4435765 2048 2048 -4435789 CLICK1 -4435789 CLICK2 -~~~ -~~~ -~~~ -4435811 2048 67110912 -~~~ -4435961 2048 2048 -4442288 DOWN 12 -4442288 0 2048 -~~~ -~~~ -4442307 0 0 -~~~ -~~~ -4442309 0 1 -~~~ -~~~ -4442310 0 3 -~~~ -~~~ -4442312 0 7 -~~~ -~~~ -4442314 0 15 -~~~ -~~~ -4442316 0 31 -~~~ -~~~ -4442318 0 63 -~~~ -~~~ -4442319 0 127 -~~~ -~~~ -4442321 0 255 -4442322 homeCount = 55 -4442323 waitCount = 24 -4442323 ripCount = 26 -4442324 locktype1 = 2 -4442324 locktype2 = 6 -4442325 locktype3 = 2 -4442346 goalCount = 0 -4442346 goalTotal = 20 -4442347 otherCount = 24 -~~~ -4442348 CURRENTGOAL IS [6] -~~~ -4442348 UP 12 -4442348 2048 255 -4442406 DOWN 12 -4442406 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4442443 homeCount = 55 -4442443 waitCount = 24 -4442444 ripCount = 26 -4442444 locktype1 = 2 -4442445 locktype2 = 6 -4442445 locktype3 = 2 -4442446 goalCount = 0 -4442446 goalTotal = 20 -4442447 otherCount = 24 -~~~ -4442448 CURRENTGOAL IS [6] -~~~ -4442871 UP 12 -4442871 2048 255 -4444133 DOWN 12 -4444133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4444173 homeCount = 55 -4444173 waitCount = 24 -4444174 ripCount = 26 -4444174 locktype1 = 2 -4444175 locktype2 = 6 -4444175 locktype3 = 2 -4444176 goalCount = 0 -4444176 goalTotal = 20 -4444177 otherCount = 24 -~~~ -4444178 CURRENTGOAL IS [6] -~~~ -4446862 UP 4 -4446862 8 255 -~~~ -~~~ -4447080 DOWN 4 -4447080 0 255 -~~~ -~~~ -4447099 0 254 -~~~ -~~~ -4447101 0 252 -~~~ -~~~ -4447102 0 248 -~~~ -~~~ -4447104 0 240 -~~~ -~~~ -4447106 0 224 -~~~ -~~~ -4447108 0 192 -~~~ -~~~ -4447110 0 128 -~~~ -~~~ -4447112 0 0 -~~~ -~~~ -4447113 0 512 -4447114 homeCount = 55 -4447115 waitCount = 24 -4447115 ripCount = 26 -4447116 locktype1 = 2 -4447116 locktype2 = 6 -4447137 locktype3 = 2 -4447138 goalCount = 0 -4447138 goalTotal = 20 -4447139 otherCount = 25 -~~~ -4447139 8 512 -4447799 DOWN 4 -4447799 0 512 -4452075 UP 10 -4452076 waslock = 0 -4452075 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4452106 512 16777728 -~~~ -4452117 DOWN 10 -4452117 0 16777728 -4452125 UP 10 -4452125 waslock = 0 -4452125 512 16777728 -~~~ -~~~ -4452143 512 16779776 -~~~ -~~~ -4452145 512 16779264 -4452146 homeCount = 56 -4452147 waitCount = 24 -4452147 ripCount = 26 -4452148 locktype1 = 2 -4452148 locktype2 = 6 -4452149 locktype3 = 2 -4452149 goalCount = 0 -4452150 goalTotal = 20 -4452150 otherCount = 25 -~~~ -~~~ -4452256 512 2048 -4452265 DOWN 10 -4452265 0 2048 -4452277 UP 10 -4452277 waslock = 0 -4452277 512 2048 -~~~ -~~~ -~~~ -~~~ -4452287 homeCount = 56 -4452287 waitCount = 24 -4452288 ripCount = 26 -4452288 locktype1 = 2 -4452289 locktype2 = 6 -4452289 locktype3 = 2 -4452290 goalCount = 0 -4452290 goalTotal = 20 -4452291 otherCount = 25 -~~~ -~~~ -4456357 DOWN 10 -4456357 0 2048 -~~~ -~~~ -~~~ -~~~ -4456382 homeCount = 56 -4456382 waitCount = 24 -4456383 ripCount = 26 -4456383 locktype1 = 2 -4456384 locktype2 = 6 -4456384 locktype3 = 2 -4456385 goalCount = 0 -4456385 goalTotal = 20 -4456386 otherCount = 25 -~~~ -4458260 UP 12 -4458260 2048 2048 -4461699 DOWN 12 -4461699 0 2048 -4461721 UP 12 -4461721 2048 2048 -4461856 DOWN 12 -4461856 0 2048 -4461869 UP 12 -4461869 2048 2048 -4461961 DOWN 12 -4461961 0 2048 -4461992 UP 12 -4461992 2048 2048 -4462760 CLICK1 -4462760 CLICK2 -~~~ -~~~ -~~~ -4462782 2048 67110912 -~~~ -4462932 2048 2048 -4469122 DOWN 12 -4469122 0 2048 -4469136 UP 12 -4469136 2048 2048 -~~~ -~~~ -4469143 2048 0 -~~~ -~~~ -4469145 2048 1 -~~~ -~~~ -4469146 2048 3 -~~~ -~~~ -4469148 2048 7 -~~~ -~~~ -4469150 2048 15 -~~~ -~~~ -4469152 2048 31 -~~~ -~~~ -4469154 2048 63 -~~~ -~~~ -4469155 2048 127 -~~~ -~~~ -4469157 2048 255 -4469158 homeCount = 56 -4469159 waitCount = 25 -4469159 ripCount = 26 -4469160 locktype1 = 2 -4469181 locktype2 = 6 -4469181 locktype3 = 2 -4469181 goalCount = 0 -4469182 goalTotal = 20 -4469182 otherCount = 25 -~~~ -4469183 CURRENTGOAL IS [6] -~~~ -4469216 DOWN 12 -4469216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4469257 homeCount = 56 -4469258 waitCount = 25 -4469258 ripCount = 26 -4469259 locktype1 = 2 -4469259 locktype2 = 6 -4469260 locktype3 = 2 -4469260 goalCount = 0 -4469261 goalTotal = 20 -4469261 otherCount = 25 -~~~ -4469262 CURRENTGOAL IS [6] -~~~ -4478752 UP 4 -4478752 8 255 -~~~ -~~~ -4479850 DOWN 4 -4479850 0 255 -4479863 8 255 -~~~ -~~~ -4479870 8 254 -~~~ -~~~ -4479872 8 252 -~~~ -~~~ -4479874 8 248 -~~~ -~~~ -4479876 8 240 -~~~ -~~~ -4479877 8 224 -~~~ -~~~ -4479879 8 192 -~~~ -~~~ -4479881 8 128 -~~~ -~~~ -4479883 8 0 -~~~ -~~~ -4479885 8 512 -4479886 homeCount = 56 -4479886 waitCount = 25 -4479887 ripCount = 26 -4479887 locktype1 = 2 -4479888 locktype2 = 6 -4479909 locktype3 = 2 -4479909 goalCount = 0 -4479910 goalTotal = 20 -4479910 otherCount = 26 -~~~ -4480518 DOWN 4 -4480518 0 512 -4480662 8 512 -4480695 DOWN 4 -4480695 0 512 -4488328 UP 10 -4488329 waslock = 0 -4488328 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4488357 512 16777728 -~~~ -4488507 512 512 -4491647 DOWN 10 -4491647 0 512 -~~~ -~~~ -4491671 0 1536 -~~~ -~~~ -4491673 0 1024 -4491674 homeCount = 57 -4491675 waitCount = 25 -4491675 ripCount = 26 -4491676 locktype1 = 2 -4491676 locktype2 = 6 -4491677 locktype3 = 2 -4491677 goalCount = 0 -4491678 goalTotal = 20 -4491678 otherCount = 26 -~~~ -4491681 UP 10 -4491681 waslock = 0 -4491681 512 1024 -~~~ -4491732 DOWN 10 -4491732 0 1024 -~~~ -~~~ -~~~ -~~~ -4491759 homeCount = 57 -4491760 waitCount = 25 -4491760 ripCount = 26 -4491761 locktype1 = 2 -4491761 locktype2 = 6 -4491762 locktype3 = 2 -4491762 goalCount = 0 -4491763 goalTotal = 20 -4491763 otherCount = 26 -~~~ -4493146 UP 11 -4493146 1024 1024 -4496146 BEEP1 -4496146 BEEP2 -~~~ -~~~ -~~~ -4496174 1024 33555456 -~~~ -4496324 1024 1024 -4502061 DOWN 11 -4502061 0 1024 -4502078 UP 11 -4502078 1024 1024 -~~~ -~~~ -4502085 1024 0 -~~~ -~~~ -4502087 1024 1 -~~~ -~~~ -4502089 1024 3 -~~~ -~~~ -4502091 1024 7 -~~~ -~~~ -4502093 1024 15 -~~~ -~~~ -4502094 1024 31 -~~~ -~~~ -4502096 1024 63 -~~~ -~~~ -4502098 1024 127 -~~~ -~~~ -4502100 1024 255 -4502101 homeCount = 57 -4502101 waitCount = 25 -4502102 ripCount = 27 -4502102 locktype1 = 2 -4502123 locktype2 = 6 -4502124 locktype3 = 2 -4502124 goalCount = 0 -4502124 goalTotal = 20 -4502125 otherCount = 26 -~~~ -4502126 CURRENTGOAL IS [6] -~~~ -4502199 DOWN 11 -4502199 0 255 -4502220 UP 11 -4502220 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4502253 homeCount = 57 -4502254 waitCount = 25 -4502254 ripCount = 27 -4502255 locktype1 = 2 -4502255 locktype2 = 6 -4502256 locktype3 = 2 -4502256 goalCount = 0 -4502256 goalTotal = 20 -4502257 otherCount = 26 -~~~ -4502258 CURRENTGOAL IS [6] -~~~ -4503858 DOWN 11 -4503858 0 255 -4503869 UP 11 -4503869 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4503906 homeCount = 57 -4503907 waitCount = 25 -4503907 ripCount = 27 -4503908 locktype1 = 2 -4503908 locktype2 = 6 -4503909 locktype3 = 2 -4503909 goalCount = 0 -4503910 goalTotal = 20 -4503910 otherCount = 26 -~~~ -4503911 CURRENTGOAL IS [6] -~~~ -4503932 DOWN 11 -4503932 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4503967 homeCount = 57 -4503967 waitCount = 25 -4503968 ripCount = 27 -4503968 locktype1 = 2 -4503969 locktype2 = 6 -4503969 locktype3 = 2 -4503970 goalCount = 0 -4503970 goalTotal = 20 -4503971 otherCount = 26 -~~~ -4503972 CURRENTGOAL IS [6] -~~~ -4508236 UP 7 -4508236 64 255 -~~~ -~~~ -4509602 DOWN 7 -4509602 0 255 -~~~ -~~~ -4509629 0 254 -~~~ -~~~ -4509631 0 252 -~~~ -~~~ -4509632 0 248 -~~~ -~~~ -4509634 0 240 -~~~ -~~~ -4509636 0 224 -~~~ -~~~ -4509638 0 192 -~~~ -~~~ -4509640 0 128 -~~~ -~~~ -4509642 0 0 -~~~ -~~~ -4509643 0 512 -4509644 homeCount = 57 -4509645 waitCount = 25 -4509645 ripCount = 27 -4509646 locktype1 = 2 -4509646 locktype2 = 6 -4509667 locktype3 = 2 -4509668 goalCount = 0 -4509668 goalTotal = 20 -4509669 otherCount = 27 -~~~ -4513958 UP 10 -4513958 waslock = 0 -4513958 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4513985 512 16777728 -~~~ -4514134 512 512 -4518768 DOWN 10 -4518768 0 512 -4518781 UP 10 -4518781 waslock = 0 -4518781 512 512 -~~~ -~~~ -4518788 512 2560 -~~~ -~~~ -4518790 512 2048 -4518791 homeCount = 58 -4518792 waitCount = 25 -4518792 ripCount = 27 -4518793 locktype1 = 2 -4518793 locktype2 = 6 -4518794 locktype3 = 2 -4518794 goalCount = 0 -4518795 goalTotal = 20 -4518795 otherCount = 27 -~~~ -~~~ -4518875 DOWN 10 -4518875 0 2048 -~~~ -~~~ -~~~ -~~~ -4518904 homeCount = 58 -4518905 waitCount = 25 -4518905 ripCount = 27 -4518906 locktype1 = 2 -4518906 locktype2 = 6 -4518907 locktype3 = 2 -4518907 goalCount = 0 -4518908 goalTotal = 20 -4518908 otherCount = 27 -~~~ -4518933 UP 10 -4518934 waslock = 0 -4518933 512 2048 -~~~ -4518972 DOWN 10 -4518972 0 2048 -~~~ -~~~ -~~~ -~~~ -4518998 homeCount = 58 -4518998 waitCount = 25 -4518999 ripCount = 27 -4518999 locktype1 = 2 -4519000 locktype2 = 6 -4519000 locktype3 = 2 -4519001 goalCount = 0 -4519001 goalTotal = 20 -4519002 otherCount = 27 -~~~ -4522457 UP 12 -4522457 2048 2048 -4523944 DOWN 12 -4523944 0 2048 -4523959 UP 12 -4523959 2048 2048 -4525297 DOWN 12 -4525297 0 2048 -4525313 UP 12 -4525313 2048 2048 -4525457 CLICK1 -4525457 CLICK2 -~~~ -~~~ -~~~ -4525481 2048 67110912 -~~~ -4525631 2048 2048 -4533270 DOWN 12 -4533270 0 2048 -~~~ -~~~ -4533292 0 0 -~~~ -~~~ -4533294 0 1 -~~~ -~~~ -4533295 0 3 -~~~ -~~~ -4533297 0 7 -~~~ -~~~ -4533299 0 15 -~~~ -~~~ -4533301 0 31 -~~~ -~~~ -4533303 0 63 -~~~ -~~~ -4533304 0 127 -~~~ -~~~ -4533306 0 255 -4533307 homeCount = 58 -4533308 waitCount = 26 -4533308 ripCount = 27 -4533309 locktype1 = 2 -4533309 locktype2 = 6 -4533310 locktype3 = 2 -4533331 goalCount = 0 -4533331 goalTotal = 20 -4533332 otherCount = 27 -~~~ -4533333 CURRENTGOAL IS [6] -~~~ -4536223 UP 1 -4536223 1 255 -~~~ -~~~ -4537485 DOWN 1 -4537485 0 255 -~~~ -~~~ -4537514 0 254 -~~~ -~~~ -4537516 0 252 -~~~ -~~~ -4537518 0 248 -~~~ -~~~ -4537519 0 240 -~~~ -~~~ -4537521 0 224 -~~~ -~~~ -4537523 0 192 -~~~ -~~~ -4537525 0 128 -~~~ -~~~ -4537527 0 0 -~~~ -~~~ -4537529 0 512 -4537530 homeCount = 58 -4537530 waitCount = 26 -4537531 ripCount = 27 -4537531 locktype1 = 2 -4537532 locktype2 = 6 -4537553 locktype3 = 2 -4537553 goalCount = 0 -4537554 goalTotal = 20 -4537554 otherCount = 28 -~~~ -4541072 UP 10 -4541073 waslock = 0 -4541072 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4541100 512 16777728 -~~~ -4541113 DOWN 10 -4541113 0 16777728 -4541130 UP 10 -4541130 waslock = 0 -4541130 512 16777728 -~~~ -~~~ -4541134 512 16779776 -~~~ -~~~ -4541136 512 16779264 -4541137 homeCount = 59 -4541138 waitCount = 26 -4541138 ripCount = 27 -4541139 locktype1 = 2 -4541139 locktype2 = 6 -4541139 locktype3 = 2 -4541140 goalCount = 0 -4541140 goalTotal = 20 -4541162 otherCount = 28 -~~~ -~~~ -4541250 512 2048 -4544625 DOWN 10 -4544625 0 2048 -4544638 UP 10 -4544638 waslock = 0 -4544638 512 2048 -~~~ -~~~ -~~~ -~~~ -4544662 homeCount = 59 -4544663 waitCount = 26 -4544663 ripCount = 27 -4544664 locktype1 = 2 -4544664 locktype2 = 6 -4544665 locktype3 = 2 -4544665 goalCount = 0 -4544666 goalTotal = 20 -4544666 otherCount = 28 -~~~ -~~~ -4544737 DOWN 10 -4544737 0 2048 -~~~ -~~~ -~~~ -~~~ -4544772 homeCount = 59 -4544773 waitCount = 26 -4544773 ripCount = 27 -4544774 locktype1 = 2 -4544774 locktype2 = 6 -4544775 locktype3 = 2 -4544775 goalCount = 0 -4544776 goalTotal = 20 -4544776 otherCount = 28 -~~~ -4544787 UP 10 -4544787 waslock = 0 -4544787 512 2048 -~~~ -4544820 DOWN 10 -4544820 0 2048 -~~~ -~~~ -~~~ -~~~ -4544842 homeCount = 59 -4544842 waitCount = 26 -4544843 ripCount = 27 -4544843 locktype1 = 2 -4544844 locktype2 = 6 -4544844 locktype3 = 2 -4544845 goalCount = 0 -4544845 goalTotal = 20 -4544846 otherCount = 28 -~~~ -4546342 UP 12 -4546342 2048 2048 -4548004 DOWN 12 -4548004 0 2048 -4548042 UP 12 -4548042 2048 2048 -4549331 DOWN 12 -4549331 0 2048 -4549341 UP 12 -4549341 2048 2048 -4549342 CLICK1 -4549343 CLICK2 -~~~ -~~~ -~~~ -4549361 2048 67110912 -~~~ -4549511 2048 2048 -4555132 DOWN 12 -4555132 0 2048 -~~~ -~~~ -4555156 0 0 -~~~ -~~~ -4555158 0 1 -~~~ -~~~ -4555159 0 3 -~~~ -~~~ -4555161 0 7 -~~~ -~~~ -4555163 0 15 -~~~ -~~~ -4555165 0 31 -~~~ -~~~ -4555167 0 63 -~~~ -4555168 UP 12 -4555168 2048 63 -~~~ -~~~ -4555170 2048 127 -~~~ -4555171 homeCount = 59 -4555172 waitCount = 27 -4555172 ripCount = 27 -4555173 locktype1 = 2 -4555194 locktype2 = 6 -4555194 locktype3 = 2 -4555194 goalCount = 0 -4555195 goalTotal = 20 -4555195 otherCount = 28 -~~~ -4555197 CURRENTGOAL IS [6] -~~~ -4555197 2048 255 -4555226 DOWN 12 -4555226 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4555259 homeCount = 59 -4555259 waitCount = 27 -4555260 ripCount = 27 -4555260 locktype1 = 2 -4555261 locktype2 = 6 -4555261 locktype3 = 2 -4555262 goalCount = 0 -4555262 goalTotal = 20 -4555263 otherCount = 28 -~~~ -4555264 CURRENTGOAL IS [6] -~~~ -4578122 UP 1 -4578122 1 255 -~~~ -~~~ -4578407 DOWN 1 -4578407 0 255 -~~~ -~~~ -4578425 0 254 -~~~ -~~~ -4578427 0 252 -~~~ -~~~ -4578428 0 248 -~~~ -~~~ -4578430 0 240 -~~~ -~~~ -4578432 0 224 -~~~ -~~~ -4578434 0 192 -~~~ -~~~ -4578436 0 128 -~~~ -~~~ -4578438 0 0 -~~~ -~~~ -4578439 0 512 -4578440 homeCount = 59 -4578441 waitCount = 27 -4578441 ripCount = 27 -4578442 locktype1 = 2 -4578442 locktype2 = 6 -4578463 locktype3 = 2 -4578464 goalCount = 0 -4578464 goalTotal = 20 -4578465 otherCount = 29 -~~~ -4578465 1 512 -4578663 DOWN 1 -4578663 0 512 -4582924 1 512 -4582970 DOWN 1 -4582970 0 512 -4591382 UP 10 -4591383 waslock = 0 -4591382 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4591413 512 16777728 -~~~ -4591509 DOWN 10 -4591509 0 16777728 -4591521 UP 10 -4591521 waslock = 0 -4591521 512 16777728 -~~~ -~~~ -4591537 512 16779776 -~~~ -~~~ -4591539 512 16779264 -4591540 homeCount = 60 -4591541 waitCount = 27 -4591541 ripCount = 27 -4591542 locktype1 = 2 -4591542 locktype2 = 6 -4591543 locktype3 = 2 -4591543 goalCount = 0 -4591544 goalTotal = 20 -4591544 otherCount = 29 -~~~ -~~~ -4591566 512 2048 -4591576 DOWN 10 -4591576 0 2048 -~~~ -~~~ -~~~ -~~~ -4591602 homeCount = 60 -4591603 waitCount = 27 -4591603 ripCount = 27 -4591604 locktype1 = 2 -4591604 locktype2 = 6 -4591605 locktype3 = 2 -4591605 goalCount = 0 -4591606 goalTotal = 20 -4591606 otherCount = 29 -~~~ -4591669 UP 10 -4591669 waslock = 0 -4591669 512 2048 -~~~ -4591896 DOWN 10 -4591896 0 2048 -4591916 UP 10 -4591917 waslock = 0 -4591916 512 2048 -~~~ -~~~ -~~~ -~~~ -4591922 homeCount = 60 -4591922 waitCount = 27 -4591923 ripCount = 27 -4591923 locktype1 = 2 -4591924 locktype2 = 6 -4591924 locktype3 = 2 -4591925 goalCount = 0 -4591925 goalTotal = 20 -4591926 otherCount = 29 -~~~ -~~~ -4592040 DOWN 10 -4592040 0 2048 -~~~ -~~~ -~~~ -~~~ -4592063 homeCount = 60 -4592064 waitCount = 27 -4592064 ripCount = 27 -4592065 locktype1 = 2 -4592065 locktype2 = 6 -4592066 locktype3 = 2 -4592066 goalCount = 0 -4592067 goalTotal = 20 -4592067 otherCount = 29 -~~~ -4592076 UP 10 -4592076 waslock = 0 -4592076 512 2048 -~~~ -4592555 DOWN 10 -4592555 0 2048 -4592571 UP 10 -4592571 waslock = 0 -4592571 512 2048 -~~~ -~~~ -~~~ -~~~ -4592596 homeCount = 60 -4592597 waitCount = 27 -4592597 ripCount = 27 -4592598 locktype1 = 2 -4592598 locktype2 = 6 -4592599 locktype3 = 2 -4592599 goalCount = 0 -4592600 goalTotal = 20 -4592600 otherCount = 29 -~~~ -~~~ -4596305 DOWN 10 -4596305 0 2048 -4596315 UP 10 -4596315 waslock = 0 -4596315 512 2048 -~~~ -~~~ -~~~ -~~~ -4596335 homeCount = 60 -4596335 waitCount = 27 -4596336 ripCount = 27 -4596336 locktype1 = 2 -4596337 locktype2 = 6 -4596337 locktype3 = 2 -4596338 goalCount = 0 -4596338 goalTotal = 20 -4596338 otherCount = 29 -~~~ -~~~ -4596388 DOWN 10 -4596388 0 2048 -~~~ -~~~ -~~~ -~~~ -4596418 homeCount = 60 -4596418 waitCount = 27 -4596419 ripCount = 27 -4596419 locktype1 = 2 -4596420 locktype2 = 6 -4596420 locktype3 = 2 -4596421 goalCount = 0 -4596421 goalTotal = 20 -4596422 otherCount = 29 -~~~ -4598400 UP 12 -4598400 2048 2048 -4599231 DOWN 12 -4599231 0 2048 -4599308 UP 12 -4599308 2048 2048 -4599343 DOWN 12 -4599343 0 2048 -4599349 UP 12 -4599349 2048 2048 -4599898 DOWN 12 -4599898 0 2048 -4599929 UP 12 -4599929 2048 2048 -4599943 DOWN 12 -4599943 0 2048 -4599987 UP 12 -4599987 2048 2048 -4601873 DOWN 12 -4601873 0 2048 -4601883 UP 12 -4601883 2048 2048 -4601892 DOWN 12 -4601892 0 2048 -4601911 UP 12 -4601911 2048 2048 -4602165 DOWN 12 -4602165 0 2048 -4602189 UP 12 -4602189 2048 2048 -4602226 DOWN 12 -4602226 0 2048 -4602261 UP 12 -4602261 2048 2048 -4602431 DOWN 12 -4602431 0 2048 -4602447 UP 12 -4602447 2048 2048 -4604401 CLICK1 -4604401 CLICK2 -~~~ -~~~ -~~~ -4604423 2048 67110912 -~~~ -4604573 2048 2048 -4611485 DOWN 12 -4611485 0 2048 -~~~ -~~~ -4611512 0 0 -~~~ -~~~ -4611513 0 1 -~~~ -~~~ -4611515 0 3 -~~~ -~~~ -4611517 0 7 -~~~ -~~~ -4611519 0 15 -~~~ -~~~ -4611521 0 31 -~~~ -4611522 UP 12 -4611522 2048 31 -~~~ -~~~ -4611524 2048 63 -~~~ -~~~ -4611526 2048 127 -~~~ -4611527 2048 255 -4611528 homeCount = 60 -4611528 waitCount = 28 -4611529 ripCount = 27 -4611550 locktype1 = 2 -4611550 locktype2 = 6 -4611551 locktype3 = 2 -4611551 goalCount = 0 -4611552 goalTotal = 20 -4611552 otherCount = 29 -~~~ -4611553 CURRENTGOAL IS [6] -~~~ -4611569 DOWN 12 -4611569 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4611608 homeCount = 60 -4611608 waitCount = 28 -4611609 ripCount = 27 -4611609 locktype1 = 2 -4611610 locktype2 = 6 -4611610 locktype3 = 2 -4611611 goalCount = 0 -4611611 goalTotal = 20 -4611612 otherCount = 29 -~~~ -4611613 CURRENTGOAL IS [6] -~~~ -4621158 UP 5 -4621158 16 255 -~~~ -~~~ -4621238 DOWN 5 -4621238 0 255 -~~~ -~~~ -4621262 0 254 -~~~ -~~~ -4621263 0 252 -~~~ -~~~ -4621265 0 248 -~~~ -~~~ -4621267 0 240 -~~~ -~~~ -4621269 0 224 -~~~ -~~~ -4621271 0 192 -~~~ -~~~ -4621272 0 128 -~~~ -~~~ -4621274 0 0 -~~~ -~~~ -4621276 0 512 -4621277 homeCount = 60 -4621278 waitCount = 28 -4621278 ripCount = 27 -4621279 locktype1 = 2 -4621279 locktype2 = 6 -4621300 locktype3 = 2 -4621301 goalCount = 0 -4621301 goalTotal = 20 -4621302 otherCount = 30 -~~~ -4621492 16 512 -4621883 DOWN 5 -4621883 0 512 -4653143 UP 10 -4653144 waslock = 0 -4653143 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4653177 512 16777728 -~~~ -4653234 DOWN 10 -4653234 0 16777728 -~~~ -~~~ -4653265 0 16779776 -~~~ -~~~ -4653267 0 16779264 -4653268 homeCount = 61 -4653269 waitCount = 28 -4653269 ripCount = 27 -4653270 locktype1 = 2 -4653270 locktype2 = 6 -4653271 locktype3 = 2 -4653271 goalCount = 0 -4653272 goalTotal = 20 -4653272 otherCount = 30 -~~~ -4653327 0 2048 -4653569 UP 10 -4653569 waslock = 0 -4653569 512 2048 -~~~ -4659370 DOWN 10 -4659370 0 2048 -~~~ -~~~ -~~~ -~~~ -4659397 homeCount = 61 -4659397 waitCount = 28 -4659398 ripCount = 27 -4659398 locktype1 = 2 -4659399 locktype2 = 6 -4659399 locktype3 = 2 -4659400 goalCount = 0 -4659400 goalTotal = 20 -4659401 otherCount = 30 -~~~ -4659401 UP 10 -4659402 waslock = 0 -4659401 512 2048 -~~~ -4659484 DOWN 10 -4659484 0 2048 -~~~ -~~~ -~~~ -~~~ -4659507 homeCount = 61 -4659507 waitCount = 28 -4659508 ripCount = 27 -4659508 locktype1 = 2 -4659509 locktype2 = 6 -4659509 locktype3 = 2 -4659510 goalCount = 0 -4659510 goalTotal = 20 -4659511 otherCount = 30 -~~~ -4662675 UP 12 -4662675 2048 2048 -4664127 DOWN 12 -4664127 0 2048 -4664217 UP 12 -4664217 2048 2048 -4664276 DOWN 12 -4664276 0 2048 -4664339 UP 12 -4664339 2048 2048 -4664365 DOWN 12 -4664365 0 2048 -4664394 UP 12 -4664394 2048 2048 -4664592 DOWN 12 -4664592 0 2048 -4664696 UP 12 -4664696 2048 2048 -4666175 CLICK1 -4666175 CLICK2 -~~~ -~~~ -~~~ -4666193 2048 67110912 -~~~ -4666343 2048 2048 -4673291 DOWN 12 -4673291 0 2048 -~~~ -~~~ -4673313 0 0 -~~~ -~~~ -4673315 0 1 -~~~ -~~~ -4673317 0 3 -~~~ -~~~ -4673319 0 7 -~~~ -~~~ -4673321 0 15 -~~~ -~~~ -4673322 0 31 -~~~ -~~~ -4673324 0 63 -~~~ -~~~ -4673326 0 127 -~~~ -~~~ -4673328 0 255 -4673329 homeCount = 61 -4673329 waitCount = 29 -4673330 ripCount = 27 -4673330 locktype1 = 2 -4673331 locktype2 = 6 -4673331 locktype3 = 2 -4673352 goalCount = 0 -4673353 goalTotal = 20 -4673353 otherCount = 30 -~~~ -4673354 CURRENTGOAL IS [6] -~~~ -4685779 UP 4 -4685779 8 255 -~~~ -~~~ -4686370 DOWN 4 -4686370 0 255 -~~~ -~~~ -4686393 0 254 -~~~ -~~~ -4686395 0 252 -~~~ -~~~ -4686397 0 248 -~~~ -~~~ -4686399 0 240 -~~~ -~~~ -4686400 0 224 -~~~ -~~~ -4686402 0 192 -~~~ -~~~ -4686404 0 128 -~~~ -~~~ -4686406 0 0 -~~~ -~~~ -4686408 0 512 -4686409 homeCount = 61 -4686409 waitCount = 29 -4686410 ripCount = 27 -4686410 locktype1 = 2 -4686411 locktype2 = 6 -4686432 locktype3 = 2 -4686432 goalCount = 0 -4686433 goalTotal = 20 -4686433 otherCount = 31 -~~~ -4686950 8 512 -4687129 DOWN 4 -4687129 0 512 -4691150 UP 10 -4691150 waslock = 0 -4691150 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4691178 512 16777728 -~~~ -4691328 512 512 -4694660 DOWN 10 -4694660 0 512 -~~~ -~~~ -4694682 0 2560 -~~~ -~~~ -4694684 0 2048 -4694685 homeCount = 62 -4694685 waitCount = 29 -4694686 ripCount = 27 -4694686 locktype1 = 2 -4694687 locktype2 = 6 -4694687 locktype3 = 2 -4694688 goalCount = 0 -4694688 goalTotal = 20 -4694689 otherCount = 31 -~~~ -4697293 UP 12 -4697293 2048 2048 -4698720 DOWN 12 -4698720 0 2048 -4698799 UP 12 -4698799 2048 2048 -4700121 DOWN 12 -4700121 0 2048 -4700144 UP 12 -4700144 2048 2048 -4700294 CLICK1 -4700294 CLICK2 -~~~ -~~~ -~~~ -4700314 2048 67110912 -~~~ -4700464 2048 2048 -4707458 DOWN 12 -4707458 0 2048 -~~~ -~~~ -4707482 0 0 -~~~ -~~~ -4707484 0 1 -~~~ -~~~ -4707485 0 3 -~~~ -~~~ -4707487 0 7 -~~~ -~~~ -4707489 0 15 -~~~ -~~~ -4707491 0 31 -~~~ -~~~ -4707493 0 63 -~~~ -~~~ -4707495 0 127 -~~~ -~~~ -4707496 0 255 -4707497 homeCount = 62 -4707498 waitCount = 30 -4707498 ripCount = 27 -4707499 locktype1 = 2 -4707499 locktype2 = 6 -4707521 locktype3 = 2 -4707521 goalCount = 0 -4707522 goalTotal = 20 -4707522 otherCount = 31 -~~~ -4707523 CURRENTGOAL IS [6] -~~~ -4708450 UP 12 -4708450 2048 255 -4708630 DOWN 12 -4708630 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4708670 homeCount = 62 -4708670 waitCount = 30 -4708671 ripCount = 27 -4708671 locktype1 = 2 -4708672 locktype2 = 6 -4708672 locktype3 = 2 -4708673 goalCount = 0 -4708673 goalTotal = 20 -4708674 otherCount = 31 -~~~ -4708675 CURRENTGOAL IS [6] -~~~ -4712657 UP 8 -4712657 128 255 -~~~ -~~~ -4713151 DOWN 8 -4713151 0 255 -~~~ -~~~ -4713172 0 254 -~~~ -~~~ -4713174 0 252 -~~~ -~~~ -4713176 0 248 -~~~ -~~~ -4713178 0 240 -~~~ -~~~ -4713180 0 224 -~~~ -~~~ -4713181 0 192 -~~~ -~~~ -4713183 0 128 -~~~ -~~~ -4713185 0 0 -~~~ -~~~ -4713187 0 512 -4713188 homeCount = 62 -4713188 waitCount = 30 -4713189 ripCount = 27 -4713189 locktype1 = 2 -4713190 locktype2 = 6 -4713211 locktype3 = 2 -4713211 goalCount = 0 -4713212 goalTotal = 20 -4713212 otherCount = 32 -~~~ -4717890 UP 10 -4717891 waslock = 0 -4717890 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4717919 512 16777728 -~~~ -4718069 512 512 -4718228 DOWN 10 -4718228 0 512 -~~~ -~~~ -4718252 0 2560 -~~~ -~~~ -4718254 0 2048 -4718255 homeCount = 63 -4718256 waitCount = 30 -4718256 ripCount = 27 -4718257 locktype1 = 2 -4718257 locktype2 = 6 -4718258 locktype3 = 2 -4718258 goalCount = 0 -4718259 goalTotal = 20 -4718259 otherCount = 32 -~~~ -4718277 UP 10 -4718277 waslock = 0 -4718277 512 2048 -~~~ -4723383 DOWN 10 -4723383 0 2048 -~~~ -~~~ -~~~ -~~~ -4723407 homeCount = 63 -4723408 waitCount = 30 -4723408 ripCount = 27 -4723409 locktype1 = 2 -4723409 locktype2 = 6 -4723409 locktype3 = 2 -4723410 goalCount = 0 -4723410 goalTotal = 20 -4723411 otherCount = 32 -~~~ -4723434 UP 10 -4723434 waslock = 0 -4723434 512 2048 -~~~ -4723461 DOWN 10 -4723461 0 2048 -~~~ -~~~ -~~~ -~~~ -4723486 homeCount = 63 -4723487 waitCount = 30 -4723487 ripCount = 27 -4723488 locktype1 = 2 -4723488 locktype2 = 6 -4723489 locktype3 = 2 -4723489 goalCount = 0 -4723490 goalTotal = 20 -4723490 otherCount = 32 -~~~ -4725181 UP 12 -4725181 2048 2048 -4730467 DOWN 12 -4730467 0 2048 -4730514 UP 12 -4730514 2048 2048 -4732181 CLICK1 -4732181 CLICK2 -~~~ -~~~ -~~~ -4732205 2048 67110912 -~~~ -4732354 2048 2048 -4741145 DOWN 12 -4741145 0 2048 -~~~ -~~~ -4741163 0 0 -~~~ -~~~ -4741165 0 1 -~~~ -~~~ -4741167 0 3 -~~~ -~~~ -4741169 0 7 -~~~ -~~~ -4741171 0 15 -~~~ -~~~ -4741172 0 31 -~~~ -~~~ -4741174 0 63 -~~~ -~~~ -4741176 0 127 -~~~ -~~~ -4741178 0 255 -4741179 homeCount = 63 -4741179 waitCount = 31 -4741180 ripCount = 27 -4741180 locktype1 = 2 -4741181 locktype2 = 6 -4741202 locktype3 = 2 -4741203 goalCount = 0 -4741203 goalTotal = 20 -4741204 otherCount = 32 -~~~ -4741205 CURRENTGOAL IS [6] -~~~ -4744871 UP 4 -4744871 8 255 -~~~ -~~~ -4745068 DOWN 4 -4745068 0 255 -~~~ -~~~ -4745095 0 254 -~~~ -~~~ -4745097 0 252 -~~~ -~~~ -4745099 0 248 -~~~ -~~~ -4745101 0 240 -~~~ -~~~ -4745102 0 224 -~~~ -~~~ -4745104 0 192 -~~~ -~~~ -4745106 0 128 -~~~ -~~~ -4745108 0 0 -~~~ -~~~ -4745110 0 512 -4745111 homeCount = 63 -4745111 waitCount = 31 -4745112 ripCount = 27 -4745112 locktype1 = 2 -4745113 locktype2 = 6 -4745134 locktype3 = 2 -4745134 goalCount = 0 -4745135 goalTotal = 20 -4745135 otherCount = 33 -~~~ -4749055 UP 10 -4749055 waslock = 0 -4749055 512 512 -4749065 DOWN 10 -4749065 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4749082 0 16777728 -~~~ -~~~ -~~~ -4749085 0 16779776 -~~~ -~~~ -4749087 0 16779264 -4749088 homeCount = 64 -4749088 waitCount = 31 -4749089 ripCount = 27 -4749089 locktype1 = 2 -4749089 locktype2 = 6 -4749090 locktype3 = 2 -4749090 goalCount = 0 -4749091 goalTotal = 20 -4749091 otherCount = 33 -~~~ -4749164 UP 10 -4749165 waslock = 0 -4749164 512 16779264 -~~~ -4749232 512 2048 -4752944 DOWN 10 -4752944 0 2048 -~~~ -~~~ -~~~ -~~~ -4752969 homeCount = 64 -4752969 waitCount = 31 -4752970 ripCount = 27 -4752970 locktype1 = 2 -4752971 locktype2 = 6 -4752971 locktype3 = 2 -4752972 goalCount = 0 -4752972 goalTotal = 20 -4752972 otherCount = 33 -~~~ -4752973 UP 10 -4752973 waslock = 0 -4752973 512 2048 -~~~ -4753030 DOWN 10 -4753030 0 2048 -~~~ -~~~ -~~~ -~~~ -4753060 homeCount = 64 -4753061 waitCount = 31 -4753061 ripCount = 27 -4753062 locktype1 = 2 -4753062 locktype2 = 6 -4753063 locktype3 = 2 -4753063 goalCount = 0 -4753064 goalTotal = 20 -4753064 otherCount = 33 -~~~ -4754833 UP 12 -4754833 2048 2048 -4758334 CLICK1 -4758334 CLICK2 -~~~ -~~~ -~~~ -4758357 2048 67110912 -~~~ -4758507 2048 2048 -4765227 DOWN 12 -4765226 0 2048 -~~~ -~~~ -4765245 0 0 -~~~ -~~~ -4765247 0 1 -~~~ -~~~ -4765249 0 3 -~~~ -~~~ -4765251 0 7 -~~~ -~~~ -4765253 0 15 -~~~ -~~~ -4765254 0 31 -~~~ -~~~ -4765256 0 63 -~~~ -~~~ -4765258 0 127 -~~~ -~~~ -4765260 0 255 -4765261 homeCount = 64 -4765261 waitCount = 32 -4765262 ripCount = 27 -4765262 locktype1 = 2 -4765263 locktype2 = 6 -4765284 locktype3 = 2 -4765284 goalCount = 0 -4765285 goalTotal = 20 -4765285 otherCount = 33 -~~~ -4765286 CURRENTGOAL IS [6] -~~~ -4765287 UP 12 -4765287 2048 255 -4765315 DOWN 12 -4765315 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4765350 homeCount = 64 -4765351 waitCount = 32 -4765351 ripCount = 27 -4765352 locktype1 = 2 -4765352 locktype2 = 6 -4765353 locktype3 = 2 -4765353 goalCount = 0 -4765354 goalTotal = 20 -4765354 otherCount = 33 -~~~ -4765355 CURRENTGOAL IS [6] -~~~ -4770972 UP 2 -4770972 2 255 -~~~ -~~~ -4771352 DOWN 2 -4771352 0 255 -~~~ -~~~ -4771375 0 254 -~~~ -~~~ -4771377 0 252 -~~~ -4771379 2 252 -~~~ -~~~ -4771380 2 248 -~~~ -4771381 2 240 -~~~ -~~~ -4771383 2 224 -~~~ -~~~ -4771384 2 192 -~~~ -~~~ -4771386 2 128 -~~~ -~~~ -4771388 2 0 -~~~ -~~~ -4771390 2 512 -4771391 homeCount = 64 -4771392 waitCount = 32 -4771392 ripCount = 27 -4771393 locktype1 = 2 -4771414 locktype2 = 6 -4771414 locktype3 = 2 -4771415 goalCount = 0 -4771415 goalTotal = 20 -4771416 otherCount = 34 -~~~ -4772044 DOWN 2 -4772044 0 512 -4772070 2 512 -4772136 DOWN 2 -4772136 0 512 -4776301 UP 10 -4776302 waslock = 0 -4776301 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4776334 512 16777728 -~~~ -4776484 512 512 -4780543 DOWN 10 -4780543 0 512 -~~~ -~~~ -4780568 0 1536 -~~~ -~~~ -4780570 0 1024 -4780571 homeCount = 65 -4780572 waitCount = 32 -4780572 ripCount = 27 -4780573 locktype1 = 2 -4780573 locktype2 = 6 -4780574 locktype3 = 2 -4780574 goalCount = 0 -4780574 goalTotal = 20 -4780575 otherCount = 34 -~~~ -4780616 UP 10 -4780616 waslock = 0 -4780616 512 1024 -4780631 DOWN 10 -4780631 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -4780658 homeCount = 65 -4780659 waitCount = 32 -4780659 ripCount = 27 -4780660 locktype1 = 2 -4780660 locktype2 = 6 -4780661 locktype3 = 2 -4780661 goalCount = 0 -4780662 goalTotal = 20 -4780662 otherCount = 34 -~~~ -4782283 UP 11 -4782283 1024 1024 -4785849 DOWN 11 -4785849 0 1024 -4785873 UP 11 -4785873 1024 1024 -4785903 DOWN 11 -4785903 0 1024 -4785929 UP 11 -4785929 1024 1024 -4786783 BEEP1 -4786783 BEEP2 -~~~ -~~~ -~~~ -4786802 1024 33555456 -~~~ -4786952 1024 1024 -4791693 DOWN 11 -4791693 0 1024 -~~~ -~~~ -4791720 0 0 -~~~ -~~~ -4791722 0 1 -~~~ -~~~ -4791724 0 3 -~~~ -~~~ -4791726 0 7 -~~~ -~~~ -4791727 0 15 -~~~ -~~~ -4791729 0 31 -~~~ -~~~ -4791731 0 63 -~~~ -~~~ -4791733 0 127 -~~~ -~~~ -4791735 0 255 -4791736 homeCount = 65 -4791736 waitCount = 32 -4791737 ripCount = 28 -4791737 locktype1 = 2 -4791738 locktype2 = 6 -4791738 locktype3 = 2 -4791759 goalCount = 0 -4791760 goalTotal = 20 -4791760 otherCount = 34 -~~~ -4791761 CURRENTGOAL IS [6] -~~~ -4791762 UP 11 -4791762 1024 255 -4796159 DOWN 11 -4796159 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4796199 homeCount = 65 -4796200 waitCount = 32 -4796200 ripCount = 28 -4796201 locktype1 = 2 -4796201 locktype2 = 6 -4796202 locktype3 = 2 -4796202 goalCount = 0 -4796203 goalTotal = 20 -4796203 otherCount = 34 -~~~ -4796204 CURRENTGOAL IS [6] -~~~ -4803475 UP 6 -4803475 32 255 -~~~ -~~~ -4803496 outer reward -~~~ -4803496 32 2097407 -~~~ -~~~ -4803946 32 255 -4810377 DOWN 6 -4810377 0 255 -~~~ -~~~ -4810403 0 254 -~~~ -~~~ -4810405 0 252 -~~~ -~~~ -4810407 0 248 -~~~ -~~~ -4810408 0 240 -~~~ -~~~ -4810410 0 224 -~~~ -~~~ -4810412 0 192 -~~~ -~~~ -4810414 0 128 -~~~ -~~~ -4810416 0 0 -~~~ -~~~ -4810418 0 512 -4810419 homeCount = 65 -4810419 waitCount = 32 -4810420 ripCount = 28 -4810420 locktype1 = 2 -4810420 locktype2 = 6 -4810442 locktype3 = 2 -4810442 goalCount = 1 -4810442 goalTotal = 21 -4810443 otherCount = 34 -~~~ -4810443 32 512 -4810501 DOWN 6 -4810501 0 512 -4810580 32 512 -4810629 DOWN 6 -4810629 0 512 -4813598 32 512 -4813796 DOWN 6 -4813796 0 512 -4813876 32 512 -4813942 DOWN 6 -4813942 0 512 -4818623 UP 10 -4818623 waslock = 0 -4818623 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4818651 512 16777728 -~~~ -4818801 512 512 -4818900 DOWN 10 -4818900 0 512 -~~~ -~~~ -4818925 0 2560 -~~~ -~~~ -4818927 0 2048 -4818928 homeCount = 66 -4818929 waitCount = 32 -4818929 ripCount = 28 -4818930 locktype1 = 2 -4818930 locktype2 = 6 -4818930 locktype3 = 2 -4818931 goalCount = 1 -4818931 goalTotal = 21 -4818932 otherCount = 34 -~~~ -4818952 UP 10 -4818953 waslock = 0 -4818952 512 2048 -~~~ -4822693 DOWN 10 -4822693 0 2048 -~~~ -~~~ -~~~ -~~~ -4822716 homeCount = 66 -4822717 waitCount = 32 -4822717 ripCount = 28 -4822718 locktype1 = 2 -4822718 locktype2 = 6 -4822719 locktype3 = 2 -4822719 goalCount = 1 -4822720 goalTotal = 21 -4822720 otherCount = 34 -~~~ -4824694 UP 12 -4824694 2048 2048 -4829105 DOWN 12 -4829105 0 2048 -4829150 UP 12 -4829150 2048 2048 -4829195 CLICK1 -4829195 CLICK2 -~~~ -~~~ -~~~ -4829217 2048 67110912 -~~~ -4829366 2048 2048 -4835687 DOWN 12 -4835687 0 2048 -~~~ -~~~ -4835713 0 0 -~~~ -~~~ -4835715 0 1 -~~~ -~~~ -4835717 0 3 -~~~ -~~~ -4835719 0 7 -~~~ -~~~ -4835720 0 15 -~~~ -~~~ -4835722 0 31 -~~~ -~~~ -4835724 0 63 -~~~ -~~~ -4835726 0 127 -~~~ -~~~ -4835728 0 255 -4835729 homeCount = 66 -4835729 waitCount = 33 -4835730 ripCount = 28 -4835730 locktype1 = 2 -4835731 locktype2 = 6 -4835752 locktype3 = 2 -4835752 goalCount = 1 -4835753 goalTotal = 21 -4835753 otherCount = 34 -~~~ -4835754 CURRENTGOAL IS [6] -~~~ -4845023 UP 6 -4845023 32 255 -~~~ -~~~ -4845047 outer reward -~~~ -4845048 32 2097407 -~~~ -~~~ -4845425 DOWN 6 -4845425 0 2097407 -4845446 32 2097407 -~~~ -~~~ -4845448 32 2097406 -~~~ -~~~ -4845449 32 2097404 -~~~ -~~~ -4845451 32 2097400 -~~~ -~~~ -4845453 32 2097392 -~~~ -~~~ -4845455 32 2097376 -~~~ -~~~ -4845457 32 2097344 -~~~ -~~~ -4845458 32 2097280 -~~~ -~~~ -4845460 32 2097152 -~~~ -~~~ -4845462 32 2097664 -4845463 homeCount = 66 -4845464 waitCount = 33 -4845484 ripCount = 28 -4845485 locktype1 = 2 -4845485 locktype2 = 6 -4845486 locktype3 = 2 -4845486 goalCount = 2 -4845487 goalTotal = 22 -4845487 otherCount = 34 -~~~ -4845497 32 512 -4851372 DOWN 6 -4851372 0 512 -4851430 32 512 -4851482 DOWN 6 -4851482 0 512 -4851574 32 512 -4851594 DOWN 6 -4851594 0 512 -4855743 UP 10 -4855743 waslock = 0 -4855743 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4855773 512 16777728 -~~~ -4855923 512 512 -4860434 DOWN 10 -4860434 0 512 -~~~ -~~~ -4860459 0 1536 -~~~ -~~~ -4860461 0 1024 -4860462 homeCount = 67 -4860462 waitCount = 33 -4860463 ripCount = 28 -4860463 locktype1 = 2 -4860464 locktype2 = 6 -4860464 locktype3 = 2 -4860464 goalCount = 2 -4860465 goalTotal = 22 -4860465 otherCount = 34 -~~~ -4862633 UP 11 -4862633 1024 1024 -4864053 DOWN 11 -4864053 0 1024 -4864086 UP 11 -4864086 1024 1024 -4865406 DOWN 11 -4865406 0 1024 -4865441 UP 11 -4865441 1024 1024 -4866186 DOWN 11 -4866186 0 1024 -4866229 UP 11 -4866229 1024 1024 -4866243 DOWN 11 -4866243 0 1024 -4866287 UP 11 -4866287 1024 1024 -4866547 DOWN 11 -4866547 0 1024 -4866559 UP 11 -4866559 1024 1024 -4866633 BEEP1 -4866633 BEEP2 -~~~ -~~~ -~~~ -4866656 1024 33555456 -~~~ -4866806 1024 1024 -4871315 DOWN 11 -4871315 0 1024 -~~~ -~~~ -4871342 0 0 -~~~ -~~~ -4871344 0 1 -~~~ -4871345 UP 11 -4871345 1024 1 -~~~ -~~~ -4871347 1024 3 -~~~ -~~~ -4871348 1024 7 -~~~ -~~~ -4871350 1024 15 -~~~ -4871351 1024 31 -~~~ -~~~ -4871353 1024 63 -~~~ -~~~ -4871354 1024 127 -~~~ -~~~ -4871356 1024 255 -4871357 homeCount = 67 -4871379 waitCount = 33 -4871379 ripCount = 29 -4871380 locktype1 = 2 -4871380 locktype2 = 6 -4871380 locktype3 = 2 -4871381 goalCount = 2 -4871381 goalTotal = 22 -4871382 otherCount = 34 -~~~ -4871383 CURRENTGOAL IS [6] -~~~ -4871383 DOWN 11 -4871383 0 255 -4871405 UP 11 -4871405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4871442 homeCount = 67 -4871442 waitCount = 33 -4871443 ripCount = 29 -4871443 locktype1 = 2 -4871444 locktype2 = 6 -4871444 locktype3 = 2 -4871445 goalCount = 2 -4871445 goalTotal = 22 -4871445 otherCount = 34 -~~~ -4871447 CURRENTGOAL IS [6] -~~~ -4873361 DOWN 11 -4873361 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4873397 homeCount = 67 -4873397 waitCount = 33 -4873398 ripCount = 29 -4873398 locktype1 = 2 -4873399 locktype2 = 6 -4873399 locktype3 = 2 -4873400 goalCount = 2 -4873400 goalTotal = 22 -4873401 otherCount = 34 -~~~ -4873402 CURRENTGOAL IS [6] -~~~ -4873455 UP 11 -4873455 1024 255 -4873472 DOWN 11 -4873472 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -4873497 UP 11 -4873497 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4873509 homeCount = 67 -4873510 waitCount = 33 -4873510 ripCount = 29 -4873511 locktype1 = 2 -4873511 locktype2 = 6 -4873512 locktype3 = 2 -4873512 goalCount = 2 -4873512 goalTotal = 22 -4873513 otherCount = 34 -~~~ -4873514 CURRENTGOAL IS [6] -~~~ -4874404 DOWN 11 -4874404 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4874438 homeCount = 67 -4874438 waitCount = 33 -4874439 ripCount = 29 -4874439 locktype1 = 2 -4874440 locktype2 = 6 -4874440 locktype3 = 2 -4874441 goalCount = 2 -4874441 goalTotal = 22 -4874442 otherCount = 34 -~~~ -4874443 CURRENTGOAL IS [6] -~~~ -4877582 UP 7 -4877582 64 255 -~~~ -~~~ -4878186 DOWN 7 -4878186 0 255 -~~~ -~~~ -4878208 0 254 -~~~ -~~~ -4878210 0 252 -~~~ -~~~ -4878212 0 248 -~~~ -~~~ -4878214 0 240 -~~~ -~~~ -4878215 0 224 -~~~ -~~~ -4878217 0 192 -~~~ -~~~ -4878219 0 128 -~~~ -~~~ -4878221 0 0 -~~~ -~~~ -4878223 0 512 -4878224 homeCount = 67 -4878224 waitCount = 33 -4878225 ripCount = 29 -4878225 locktype1 = 2 -4878226 locktype2 = 6 -4878247 locktype3 = 2 -4878247 goalCount = 2 -4878248 goalTotal = 22 -4878248 otherCount = 35 -~~~ -4878255 64 512 -4878364 DOWN 7 -4878364 0 512 -4888220 UP 6 -4888220 32 512 -~~~ -4888240 WHITENOISE -~~~ -~~~ -~~~ -4888242 32 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4888552 DOWN 6 -4888552 0 0 -4888580 32 0 -4889335 DOWN 6 -4889335 0 0 -4895758 512 0 -4895900 0 0 -4896086 512 0 -4896709 0 0 -4896767 512 0 -4896810 0 0 -4913240 LOCKEND -~~~ -~~~ -~~~ -4913260 0 512 -4913827 UP 10 -4913827 waslock = 0 -4913827 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4913856 512 16777728 -~~~ -4914006 512 512 -4919172 DOWN 10 -4919171 0 512 -~~~ -~~~ -4919189 0 1536 -~~~ -~~~ -4919191 0 1024 -4919192 homeCount = 68 -4919192 waitCount = 33 -4919193 ripCount = 29 -4919193 locktype1 = 2 -4919193 locktype2 = 7 -4919194 locktype3 = 2 -4919194 goalCount = 2 -4919195 goalTotal = 22 -4919195 otherCount = 35 -~~~ -4919208 UP 10 -4919208 waslock = 0 -4919208 512 1024 -~~~ -4919258 DOWN 10 -4919258 0 1024 -~~~ -~~~ -~~~ -~~~ -4919283 homeCount = 68 -4919284 waitCount = 33 -4919284 ripCount = 29 -4919285 locktype1 = 2 -4919285 locktype2 = 7 -4919286 locktype3 = 2 -4919286 goalCount = 2 -4919287 goalTotal = 22 -4919287 otherCount = 35 -~~~ -4920827 UP 11 -4920827 1024 1024 -4923419 DOWN 11 -4923419 0 1024 -4923459 UP 11 -4923459 1024 1024 -4924327 BEEP1 -4924327 BEEP2 -~~~ -~~~ -~~~ -4924356 1024 33555456 -~~~ -4924506 1024 1024 -4930037 DOWN 11 -4930037 0 1024 -~~~ -~~~ -4930062 UP 11 -4930062 1024 0 -~~~ -~~~ -4930064 1024 1 -~~~ -~~~ -4930066 1024 3 -~~~ -~~~ -4930067 1024 7 -~~~ -~~~ -4930069 1024 15 -~~~ -~~~ -4930071 1024 31 -~~~ -~~~ -4930073 1024 63 -~~~ -~~~ -4930075 1024 127 -~~~ -~~~ -4930076 1024 255 -4930078 homeCount = 68 -4930078 waitCount = 33 -4930079 ripCount = 30 -4930100 locktype1 = 2 -4930100 locktype2 = 7 -4930101 locktype3 = 2 -4930101 goalCount = 2 -4930102 goalTotal = 22 -4930102 otherCount = 35 -~~~ -4930103 CURRENTGOAL IS [6] -~~~ -4931788 DOWN 11 -4931788 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4931830 homeCount = 68 -4931831 waitCount = 33 -4931831 ripCount = 30 -4931832 locktype1 = 2 -4931832 locktype2 = 7 -4931833 locktype3 = 2 -4931833 goalCount = 2 -4931834 goalTotal = 22 -4931834 otherCount = 35 -~~~ -4931835 CURRENTGOAL IS [6] -~~~ -4931856 UP 11 -4931856 1024 255 -4931911 DOWN 11 -4931911 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4931949 homeCount = 68 -4931949 waitCount = 33 -4931950 ripCount = 30 -4931950 locktype1 = 2 -4931951 locktype2 = 7 -4931951 locktype3 = 2 -4931952 goalCount = 2 -4931952 goalTotal = 22 -4931953 otherCount = 35 -~~~ -4931954 CURRENTGOAL IS [6] -~~~ -4935641 UP 6 -4935641 32 255 -~~~ -~~~ -4935667 outer reward -~~~ -4935667 32 2097407 -~~~ -~~~ -4935968 DOWN 6 -4935968 0 2097407 -~~~ -4935992 32 2097407 -~~~ -4935993 32 2097406 -~~~ -~~~ -4935995 32 2097404 -~~~ -~~~ -4935997 32 2097400 -~~~ -~~~ -4935999 32 2097392 -~~~ -~~~ -4936000 32 2097376 -~~~ -~~~ -4936002 32 2097344 -~~~ -~~~ -4936004 32 2097280 -~~~ -~~~ -4936006 32 2097152 -~~~ -~~~ -4936008 32 2097664 -4936009 homeCount = 68 -4936029 waitCount = 33 -4936031 ripCount = 30 -4936031 locktype1 = 2 -4936031 locktype2 = 7 -4936032 locktype3 = 2 -4936032 goalCount = 3 -4936033 goalTotal = 23 -4936033 otherCount = 35 -~~~ -4936117 32 512 -4943256 DOWN 6 -4943256 0 512 -4943326 32 512 -4943341 DOWN 6 -4943341 0 512 -4947597 UP 10 -4947597 waslock = 0 -4947597 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4947631 512 16777728 -~~~ -4947780 512 512 -4947829 DOWN 10 -4947829 0 512 -~~~ -~~~ -4947853 0 2560 -~~~ -~~~ -4947855 0 2048 -4947856 homeCount = 69 -4947856 waitCount = 33 -4947857 ripCount = 30 -4947857 locktype1 = 2 -4947858 locktype2 = 7 -4947858 locktype3 = 2 -4947859 goalCount = 3 -4947859 goalTotal = 23 -4947860 otherCount = 35 -~~~ -4947988 UP 10 -4947989 waslock = 0 -4947988 512 2048 -~~~ -4952305 DOWN 10 -4952305 0 2048 -~~~ -~~~ -~~~ -~~~ -4952326 homeCount = 69 -4952326 waitCount = 33 -4952327 ripCount = 30 -4952327 locktype1 = 2 -4952328 locktype2 = 7 -4952328 locktype3 = 2 -4952329 goalCount = 3 -4952329 goalTotal = 23 -4952330 otherCount = 35 -~~~ -4952364 UP 10 -4952365 waslock = 0 -4952364 512 2048 -~~~ -4952401 DOWN 10 -4952401 0 2048 -~~~ -~~~ -~~~ -~~~ -4952421 homeCount = 69 -4952422 waitCount = 33 -4952422 ripCount = 30 -4952423 locktype1 = 2 -4952423 locktype2 = 7 -4952424 locktype3 = 2 -4952424 goalCount = 3 -4952425 goalTotal = 23 -4952425 otherCount = 35 -~~~ -4954268 UP 12 -4954268 2048 2048 -4956332 DOWN 12 -4956332 0 2048 -4956407 UP 12 -4956407 2048 2048 -4957946 DOWN 12 -4957946 0 2048 -4958000 UP 12 -4958000 2048 2048 -4959769 CLICK1 -4959769 CLICK2 -~~~ -~~~ -~~~ -4959795 2048 67110912 -~~~ -4959945 2048 2048 -4966527 DOWN 12 -4966527 0 2048 -~~~ -~~~ -4966544 0 0 -~~~ -~~~ -4966546 0 1 -~~~ -~~~ -4966548 0 3 -~~~ -~~~ -4966550 0 7 -~~~ -~~~ -4966552 0 15 -~~~ -~~~ -4966553 0 31 -~~~ -4966555 UP 12 -4966555 2048 31 -~~~ -~~~ -4966557 2048 63 -~~~ -~~~ -4966558 2048 127 -~~~ -4966559 2048 255 -4966560 homeCount = 69 -4966561 waitCount = 34 -4966562 ripCount = 30 -4966583 locktype1 = 2 -4966583 locktype2 = 7 -4966584 locktype3 = 2 -4966584 goalCount = 3 -4966585 goalTotal = 23 -4966585 otherCount = 35 -~~~ -4966586 CURRENTGOAL IS [6] -~~~ -4966600 DOWN 12 -4966600 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4966632 homeCount = 69 -4966632 waitCount = 34 -4966633 ripCount = 30 -4966633 locktype1 = 2 -4966634 locktype2 = 7 -4966634 locktype3 = 2 -4966635 goalCount = 3 -4966635 goalTotal = 23 -4966636 otherCount = 35 -~~~ -4966637 CURRENTGOAL IS [6] -~~~ -4966668 UP 12 -4966668 2048 255 -4969174 DOWN 12 -4969174 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -4969211 homeCount = 69 -4969212 waitCount = 34 -4969212 ripCount = 30 -4969213 locktype1 = 2 -4969213 locktype2 = 7 -4969214 locktype3 = 2 -4969214 goalCount = 3 -4969215 goalTotal = 23 -4969215 otherCount = 35 -~~~ -4969216 CURRENTGOAL IS [6] -~~~ -4974183 UP 6 -4974183 32 255 -~~~ -~~~ -4974209 outer reward -~~~ -4974209 32 2097407 -~~~ -~~~ -4974418 DOWN 6 -4974418 0 2097407 -~~~ -~~~ -4974436 0 2097406 -~~~ -~~~ -4974438 0 2097404 -~~~ -~~~ -4974440 0 2097400 -~~~ -~~~ -4974442 0 2097392 -~~~ -~~~ -4974444 0 2097376 -~~~ -~~~ -4974445 0 2097344 -~~~ -~~~ -4974447 0 2097280 -~~~ -~~~ -4974449 0 2097152 -~~~ -~~~ -4974451 0 2097664 -4974452 homeCount = 69 -4974453 waitCount = 34 -4974453 ripCount = 30 -4974474 locktype1 = 2 -4974475 locktype2 = 7 -4974475 locktype3 = 2 -4974476 goalCount = 4 -4974476 goalTotal = 24 -4974477 otherCount = 35 -~~~ -4974477 32 2097664 -4974659 32 512 -4975104 DOWN 6 -4975104 0 512 -4975119 32 512 -4975232 DOWN 6 -4975232 0 512 -4975246 32 512 -4975346 DOWN 6 -4975346 0 512 -4975380 32 512 -4975480 DOWN 6 -4975480 0 512 -4975509 32 512 -4975617 DOWN 6 -4975617 0 512 -4975642 32 512 -4975756 DOWN 6 -4975756 0 512 -4975773 32 512 -4975895 DOWN 6 -4975895 0 512 -4975910 32 512 -4980733 DOWN 6 -4980733 0 512 -4980774 32 512 -4980818 DOWN 6 -4980818 0 512 -4984695 UP 10 -4984695 waslock = 0 -4984694 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -4984722 512 16777728 -~~~ -4984872 512 512 -4989193 DOWN 10 -4989193 0 512 -~~~ -~~~ -4989216 0 1536 -~~~ -~~~ -4989218 0 1024 -4989219 homeCount = 70 -4989219 waitCount = 34 -4989220 ripCount = 30 -4989220 locktype1 = 2 -4989221 locktype2 = 7 -4989221 locktype3 = 2 -4989222 goalCount = 4 -4989222 goalTotal = 24 -4989223 otherCount = 35 -~~~ -4989259 UP 10 -4989260 waslock = 0 -4989259 512 1024 -4989279 DOWN 10 -4989279 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -4989301 homeCount = 70 -4989301 waitCount = 34 -4989302 ripCount = 30 -4989302 locktype1 = 2 -4989303 locktype2 = 7 -4989303 locktype3 = 2 -4989304 goalCount = 4 -4989304 goalTotal = 24 -4989305 otherCount = 35 -~~~ -4991305 UP 11 -4991305 1024 1024 -4992871 DOWN 11 -4992871 0 1024 -4992939 UP 11 -4992939 1024 1024 -4992987 DOWN 11 -4992987 0 1024 -4992997 UP 11 -4992997 1024 1024 -4994737 DOWN 11 -4994737 0 1024 -4994747 UP 11 -4994747 1024 1024 -4997651 DOWN 11 -4997651 0 1024 -4997663 UP 11 -4997663 1024 1024 -4998026 DOWN 11 -4998026 0 1024 -4998060 UP 11 -4998060 1024 1024 -4998077 DOWN 11 -4998077 0 1024 -4998088 UP 11 -4998088 1024 1024 -4998306 BEEP1 -4998306 BEEP2 -~~~ -~~~ -~~~ -4998329 1024 33555456 -~~~ -4998478 1024 1024 -5004681 DOWN 11 -5004681 0 1024 -~~~ -~~~ -5004706 0 0 -~~~ -~~~ -5004708 0 1 -~~~ -~~~ -5004710 0 3 -~~~ -~~~ -5004711 UP 11 -5004711 1024 7 -~~~ -~~~ -5004713 1024 15 -~~~ -~~~ -5004715 1024 31 -~~~ -~~~ -5004717 1024 63 -~~~ -~~~ -5004719 1024 127 -~~~ -~~~ -5004720 1024 255 -5004721 homeCount = 70 -5004722 waitCount = 34 -5004723 ripCount = 31 -5004744 locktype1 = 2 -5004744 locktype2 = 7 -5004744 locktype3 = 2 -5004745 goalCount = 4 -5004745 goalTotal = 24 -5004746 otherCount = 35 -~~~ -5004747 CURRENTGOAL IS [6] -~~~ -5004769 DOWN 11 -5004769 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5004805 homeCount = 70 -5004806 waitCount = 34 -5004806 ripCount = 31 -5004807 locktype1 = 2 -5004807 locktype2 = 7 -5004808 locktype3 = 2 -5004808 goalCount = 4 -5004809 goalTotal = 24 -5004809 otherCount = 35 -~~~ -5004810 CURRENTGOAL IS [6] -~~~ -5014643 UP 6 -5014643 32 255 -~~~ -~~~ -5014669 outer reward -~~~ -5014670 32 2097407 -~~~ -~~~ -5014904 DOWN 6 -5014904 0 2097407 -~~~ -~~~ -5014928 0 2097406 -~~~ -~~~ -5014930 0 2097404 -~~~ -~~~ -5014931 0 2097400 -~~~ -~~~ -5014933 0 2097392 -~~~ -~~~ -5014935 0 2097376 -~~~ -~~~ -5014937 0 2097344 -~~~ -~~~ -5014939 0 2097280 -~~~ -~~~ -5014940 0 2097152 -~~~ -~~~ -5014942 0 2097664 -5014943 homeCount = 70 -5014944 waitCount = 34 -5014944 ripCount = 31 -5014966 locktype1 = 2 -5014966 locktype2 = 7 -5014966 locktype3 = 2 -5014967 goalCount = 5 -5014967 goalTotal = 25 -5014968 otherCount = 35 -~~~ -5014968 32 2097664 -5015119 32 512 -5015329 DOWN 6 -5015329 0 512 -5015358 32 512 -5015461 DOWN 6 -5015461 0 512 -5015476 32 512 -5015588 DOWN 6 -5015588 0 512 -5015600 32 512 -5015717 DOWN 6 -5015717 0 512 -5015727 32 512 -5015843 DOWN 6 -5015843 0 512 -5015855 32 512 -5020832 DOWN 6 -5020832 0 512 -5020886 32 512 -5020928 DOWN 6 -5020928 0 512 -5026912 UP 10 -5026912 waslock = 0 -5026912 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5026939 512 16777728 -~~~ -5027086 DOWN 10 -5027086 0 16777728 -5027089 0 512 -~~~ -~~~ -5027104 0 2560 -~~~ -~~~ -5027106 0 2048 -5027107 homeCount = 71 -5027107 waitCount = 34 -5027108 ripCount = 31 -5027108 locktype1 = 2 -5027109 locktype2 = 7 -5027109 locktype3 = 2 -5027110 goalCount = 5 -5027110 goalTotal = 25 -5027111 otherCount = 35 -~~~ -5027415 UP 10 -5027415 waslock = 0 -5027415 512 2048 -~~~ -5032403 DOWN 10 -5032403 0 2048 -5032408 UP 10 -5032409 waslock = 0 -5032408 512 2048 -~~~ -~~~ -~~~ -~~~ -5032426 homeCount = 71 -5032427 waitCount = 34 -5032427 ripCount = 31 -5032428 locktype1 = 2 -5032428 locktype2 = 7 -5032429 locktype3 = 2 -5032429 goalCount = 5 -5032430 goalTotal = 25 -5032430 otherCount = 35 -~~~ -~~~ -5032515 DOWN 10 -5032515 0 2048 -~~~ -~~~ -~~~ -~~~ -5032539 homeCount = 71 -5032539 waitCount = 34 -5032540 ripCount = 31 -5032540 locktype1 = 2 -5032541 locktype2 = 7 -5032541 locktype3 = 2 -5032542 goalCount = 5 -5032542 goalTotal = 25 -5032543 otherCount = 35 -~~~ -5032546 UP 10 -5032546 waslock = 0 -5032546 512 2048 -~~~ -5032613 DOWN 10 -5032613 0 2048 -~~~ -~~~ -~~~ -~~~ -5032639 homeCount = 71 -5032640 waitCount = 34 -5032640 ripCount = 31 -5032641 locktype1 = 2 -5032641 locktype2 = 7 -5032642 locktype3 = 2 -5032642 goalCount = 5 -5032643 goalTotal = 25 -5032643 otherCount = 35 -~~~ -5034484 UP 12 -5034484 2048 2048 -5036958 DOWN 12 -5036958 0 2048 -5037036 UP 12 -5037036 2048 2048 -5040518 DOWN 12 -5040518 0 2048 -5040568 UP 12 -5040568 2048 2048 -5042485 CLICK1 -5042485 CLICK2 -~~~ -~~~ -~~~ -5042506 2048 67110912 -~~~ -5042656 2048 2048 -5047511 DOWN 12 -5047510 0 2048 -5047520 UP 12 -5047520 2048 2048 -~~~ -~~~ -5047534 2048 0 -~~~ -~~~ -5047536 2048 1 -~~~ -~~~ -5047538 2048 3 -~~~ -~~~ -5047540 2048 7 -~~~ -~~~ -5047541 2048 15 -~~~ -~~~ -5047543 2048 31 -~~~ -~~~ -5047545 2048 63 -~~~ -~~~ -5047547 2048 127 -~~~ -~~~ -5047549 2048 255 -5047550 homeCount = 71 -5047550 waitCount = 35 -5047551 ripCount = 31 -5047551 locktype1 = 2 -5047573 locktype2 = 7 -5047573 locktype3 = 2 -5047573 goalCount = 5 -5047574 goalTotal = 25 -5047574 otherCount = 35 -~~~ -5047575 CURRENTGOAL IS [6] -~~~ -5047576 DOWN 12 -5047576 0 255 -5047581 UP 12 -5047581 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5047620 homeCount = 71 -5047621 waitCount = 35 -5047621 ripCount = 31 -5047622 locktype1 = 2 -5047622 locktype2 = 7 -5047623 locktype3 = 2 -5047623 goalCount = 5 -5047624 goalTotal = 25 -5047624 otherCount = 35 -~~~ -5047625 CURRENTGOAL IS [6] -~~~ -5050479 DOWN 12 -5050479 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5050518 homeCount = 71 -5050518 waitCount = 35 -5050519 ripCount = 31 -5050519 locktype1 = 2 -5050520 locktype2 = 7 -5050520 locktype3 = 2 -5050521 goalCount = 5 -5050521 goalTotal = 25 -5050522 otherCount = 35 -~~~ -5050523 CURRENTGOAL IS [6] -~~~ -5065836 UP 6 -5065836 32 255 -~~~ -~~~ -5065861 outer reward -~~~ -5065862 32 2097407 -~~~ -~~~ -5066136 DOWN 6 -5066136 0 2097407 -~~~ -~~~ -5066159 0 2097406 -~~~ -~~~ -5066161 0 2097404 -~~~ -~~~ -5066163 0 2097400 -~~~ -~~~ -5066165 0 2097392 -~~~ -~~~ -5066167 0 2097376 -~~~ -~~~ -5066168 0 2097344 -~~~ -~~~ -5066170 0 2097280 -~~~ -5066172 32 2097280 -~~~ -~~~ -5066173 32 2097152 -~~~ -5066174 32 2097664 -5066176 homeCount = 71 -5066176 waitCount = 35 -5066197 ripCount = 31 -5066197 locktype1 = 2 -5066198 locktype2 = 7 -5066198 locktype3 = 2 -5066199 goalCount = 6 -5066199 goalTotal = 26 -5066200 otherCount = 35 -~~~ -5066311 32 512 -5066557 DOWN 6 -5066557 0 512 -5066572 32 512 -5067050 DOWN 6 -5067050 0 512 -5067083 32 512 -5071100 DOWN 6 -5071100 0 512 -5071143 32 512 -5072577 DOWN 6 -5072577 0 512 -5079381 UP 10 -5079382 waslock = 0 -5079381 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5079405 512 16777728 -~~~ -5079555 512 512 -5084925 DOWN 10 -5084925 0 512 -5084940 UP 10 -5084940 waslock = 0 -5084940 512 512 -~~~ -~~~ -5084949 512 2560 -~~~ -~~~ -5084951 512 2048 -5084952 homeCount = 72 -5084952 waitCount = 35 -5084953 ripCount = 31 -5084953 locktype1 = 2 -5084954 locktype2 = 7 -5084954 locktype3 = 2 -5084955 goalCount = 6 -5084955 goalTotal = 26 -5084955 otherCount = 35 -~~~ -~~~ -5085037 DOWN 10 -5085037 0 2048 -~~~ -~~~ -~~~ -~~~ -5085065 homeCount = 72 -5085066 waitCount = 35 -5085066 ripCount = 31 -5085067 locktype1 = 2 -5085067 locktype2 = 7 -5085068 locktype3 = 2 -5085068 goalCount = 6 -5085069 goalTotal = 26 -5085069 otherCount = 35 -~~~ -5086546 UP 12 -5086546 2048 2048 -5086603 DOWN 12 -5086603 0 2048 -5086685 UP 12 -5086685 2048 2048 -5088393 DOWN 12 -5088393 0 2048 -5088565 UP 12 -5088565 2048 2048 -5089288 DOWN 12 -5089288 0 2048 -5089293 UP 12 -5089293 2048 2048 -5094546 CLICK1 -5094546 CLICK2 -~~~ -~~~ -~~~ -5094571 2048 67110912 -~~~ -5094721 2048 2048 -5100032 DOWN 12 -5100032 0 2048 -5100044 UP 12 -5100044 2048 2048 -~~~ -~~~ -5100049 2048 0 -~~~ -~~~ -5100051 2048 1 -~~~ -~~~ -5100052 2048 3 -~~~ -~~~ -5100054 2048 7 -~~~ -~~~ -5100056 2048 15 -~~~ -~~~ -5100058 2048 31 -~~~ -~~~ -5100060 2048 63 -~~~ -~~~ -5100062 2048 127 -~~~ -~~~ -5100063 2048 255 -5100064 homeCount = 72 -5100065 waitCount = 36 -5100065 ripCount = 31 -5100066 locktype1 = 2 -5100087 locktype2 = 7 -5100088 locktype3 = 2 -5100088 goalCount = 6 -5100089 goalTotal = 26 -5100089 otherCount = 35 -~~~ -5100090 CURRENTGOAL IS [6] -~~~ -5100091 DOWN 12 -5100090 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5100137 homeCount = 72 -5100137 waitCount = 36 -5100138 ripCount = 31 -5100138 locktype1 = 2 -5100139 locktype2 = 7 -5100139 locktype3 = 2 -5100140 goalCount = 6 -5100140 goalTotal = 26 -5100141 otherCount = 35 -~~~ -5100142 CURRENTGOAL IS [6] -~~~ -5100176 UP 12 -5100176 2048 255 -5100497 DOWN 12 -5100497 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5100537 homeCount = 72 -5100538 waitCount = 36 -5100538 ripCount = 31 -5100539 locktype1 = 2 -5100539 locktype2 = 7 -5100540 locktype3 = 2 -5100540 goalCount = 6 -5100541 goalTotal = 26 -5100541 otherCount = 35 -~~~ -5100542 CURRENTGOAL IS [6] -~~~ -5100637 UP 12 -5100637 2048 255 -5102022 DOWN 12 -5102022 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5102060 homeCount = 72 -5102061 waitCount = 36 -5102061 ripCount = 31 -5102062 locktype1 = 2 -5102062 locktype2 = 7 -5102063 locktype3 = 2 -5102063 goalCount = 6 -5102064 goalTotal = 26 -5102064 otherCount = 35 -~~~ -5102065 CURRENTGOAL IS [6] -~~~ -5108521 UP 6 -5108521 32 255 -~~~ -~~~ -5108549 outer reward -~~~ -5108549 32 2097407 -~~~ -~~~ -5108766 DOWN 6 -5108766 0 2097407 -~~~ -~~~ -5108789 0 2097406 -~~~ -~~~ -5108791 0 2097404 -~~~ -~~~ -5108793 0 2097400 -~~~ -~~~ -5108795 0 2097392 -~~~ -~~~ -5108797 0 2097376 -~~~ -~~~ -5108798 0 2097344 -~~~ -~~~ -5108800 0 2097280 -~~~ -~~~ -5108802 0 2097152 -~~~ -~~~ -5108804 0 2097664 -5108805 homeCount = 72 -5108805 waitCount = 36 -5108806 ripCount = 31 -5108827 locktype1 = 2 -5108828 locktype2 = 7 -5108828 locktype3 = 2 -5108829 goalCount = 7 -5108829 goalTotal = 27 -5108830 otherCount = 35 -~~~ -5108830 32 2097664 -5108999 32 512 -5109204 DOWN 6 -5109204 0 512 -5109215 32 512 -5109317 DOWN 6 -5109317 0 512 -5109351 32 512 -5109448 DOWN 6 -5109448 0 512 -5109470 32 512 -5109572 DOWN 6 -5109572 0 512 -5109589 32 512 -5109693 DOWN 6 -5109693 0 512 -5109723 32 512 -5113979 DOWN 6 -5113979 0 512 -5113984 32 512 -5115574 DOWN 6 -5115574 0 512 -5119927 UP 10 -5119927 waslock = 0 -5119927 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5119957 512 16777728 -~~~ -5119972 DOWN 10 -5119971 0 16777728 -~~~ -~~~ -5119990 0 16779776 -~~~ -~~~ -5119992 0 16779264 -5119993 homeCount = 73 -5119994 waitCount = 36 -5119994 ripCount = 31 -5119995 locktype1 = 2 -5119995 locktype2 = 7 -5119996 locktype3 = 2 -5119996 goalCount = 7 -5119997 goalTotal = 27 -5119997 otherCount = 35 -~~~ -5120049 UP 10 -5120049 waslock = 0 -5120049 512 16779264 -~~~ -5120107 512 2048 -5123786 DOWN 10 -5123786 0 2048 -~~~ -~~~ -~~~ -~~~ -5123813 homeCount = 73 -5123813 waitCount = 36 -5123814 ripCount = 31 -5123814 locktype1 = 2 -5123814 locktype2 = 7 -5123815 locktype3 = 2 -5123815 goalCount = 7 -5123816 goalTotal = 27 -5123816 otherCount = 35 -~~~ -5125790 UP 12 -5125790 2048 2048 -5127598 DOWN 12 -5127598 0 2048 -5127629 UP 12 -5127629 2048 2048 -5129445 DOWN 12 -5129445 0 2048 -5129463 UP 12 -5129463 2048 2048 -5130858 DOWN 12 -5130858 0 2048 -5130864 UP 12 -5130864 2048 2048 -5133790 CLICK1 -5133790 CLICK2 -~~~ -~~~ -~~~ -5133813 2048 67110912 -~~~ -5133963 2048 2048 -5138931 DOWN 12 -5138931 0 2048 -5138937 UP 12 -5138937 2048 2048 -~~~ -~~~ -5138950 2048 0 -~~~ -~~~ -5138951 2048 1 -~~~ -~~~ -5138953 2048 3 -~~~ -~~~ -5138955 2048 7 -~~~ -~~~ -5138957 2048 15 -~~~ -~~~ -5138959 2048 31 -~~~ -~~~ -5138961 2048 63 -~~~ -~~~ -5138962 2048 127 -~~~ -~~~ -5138964 2048 255 -5138965 homeCount = 73 -5138966 waitCount = 37 -5138966 ripCount = 31 -5138967 locktype1 = 2 -5138987 locktype2 = 7 -5138988 locktype3 = 2 -5138988 goalCount = 7 -5138989 goalTotal = 27 -5138989 otherCount = 35 -~~~ -5138990 CURRENTGOAL IS [6] -~~~ -5138991 DOWN 12 -5138991 0 255 -5139007 UP 12 -5139007 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5139035 homeCount = 73 -5139035 waitCount = 37 -5139036 ripCount = 31 -5139036 locktype1 = 2 -5139037 locktype2 = 7 -5139037 locktype3 = 2 -5139038 goalCount = 7 -5139038 goalTotal = 27 -5139039 otherCount = 35 -~~~ -5139040 CURRENTGOAL IS [6] -~~~ -5141276 DOWN 12 -5141276 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5141318 homeCount = 73 -5141319 waitCount = 37 -5141319 ripCount = 31 -5141320 locktype1 = 2 -5141320 locktype2 = 7 -5141321 locktype3 = 2 -5141321 goalCount = 7 -5141322 goalTotal = 27 -5141322 otherCount = 35 -~~~ -5141323 CURRENTGOAL IS [6] -~~~ -5147743 UP 6 -5147743 32 255 -~~~ -~~~ -5147763 outer reward -~~~ -5147764 32 2097407 -~~~ -~~~ -5147993 DOWN 6 -5147993 0 2097407 -~~~ -~~~ -5148012 0 2097406 -~~~ -~~~ -5148014 0 2097404 -~~~ -~~~ -5148016 0 2097400 -~~~ -~~~ -5148018 0 2097392 -~~~ -~~~ -5148019 0 2097376 -~~~ -~~~ -5148021 0 2097344 -~~~ -~~~ -5148023 0 2097280 -~~~ -~~~ -5148025 0 2097152 -~~~ -~~~ -5148027 0 2097664 -5148028 homeCount = 73 -5148028 waitCount = 37 -5148029 ripCount = 31 -5148050 locktype1 = 2 -5148050 locktype2 = 7 -5148051 locktype3 = 2 -5148051 goalCount = 8 -5148052 goalTotal = 28 -5148052 otherCount = 35 -~~~ -5148068 32 2097664 -5148213 32 512 -5148335 DOWN 6 -5148335 0 512 -5148358 32 512 -5148457 DOWN 6 -5148457 0 512 -5148501 32 512 -5148589 DOWN 6 -5148589 0 512 -5148618 32 512 -5155375 DOWN 6 -5155374 0 512 -5159939 UP 10 -5159939 waslock = 0 -5159939 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5159964 512 16777728 -~~~ -5160114 512 512 -5160151 DOWN 10 -5160151 0 512 -5160165 UP 10 -5160165 waslock = 0 -5160165 512 512 -~~~ -~~~ -5160171 512 2560 -~~~ -~~~ -5160173 512 2048 -5160174 homeCount = 74 -5160175 waitCount = 37 -5160175 ripCount = 31 -5160176 locktype1 = 2 -5160176 locktype2 = 7 -5160177 locktype3 = 2 -5160177 goalCount = 8 -5160178 goalTotal = 28 -5160178 otherCount = 35 -~~~ -~~~ -5164052 DOWN 10 -5164052 0 2048 -~~~ -~~~ -~~~ -~~~ -5164072 homeCount = 74 -5164073 waitCount = 37 -5164073 ripCount = 31 -5164074 locktype1 = 2 -5164074 locktype2 = 7 -5164075 locktype3 = 2 -5164075 goalCount = 8 -5164076 goalTotal = 28 -5164076 otherCount = 35 -~~~ -5165621 UP 12 -5165621 2048 2048 -5172621 CLICK1 -5172621 CLICK2 -~~~ -~~~ -~~~ -5172641 2048 67110912 -~~~ -5172791 2048 2048 -5178708 DOWN 12 -5178708 0 2048 -5178727 UP 12 -5178727 2048 2048 -~~~ -~~~ -5178729 2048 0 -~~~ -~~~ -5178731 2048 1 -~~~ -~~~ -5178733 2048 3 -~~~ -~~~ -5178735 2048 7 -~~~ -~~~ -5178737 2048 15 -~~~ -~~~ -5178738 2048 31 -~~~ -~~~ -5178740 2048 63 -~~~ -~~~ -5178742 2048 127 -~~~ -~~~ -5178744 2048 255 -5178745 homeCount = 74 -5178745 waitCount = 38 -5178766 ripCount = 31 -5178767 locktype1 = 2 -5178767 locktype2 = 7 -5178768 locktype3 = 2 -5178768 goalCount = 8 -5178769 goalTotal = 28 -5178769 otherCount = 35 -~~~ -5178770 CURRENTGOAL IS [6] -~~~ -5178791 DOWN 12 -5178791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5178818 homeCount = 74 -5178819 waitCount = 38 -5178819 ripCount = 31 -5178820 locktype1 = 2 -5178820 locktype2 = 7 -5178821 locktype3 = 2 -5178821 goalCount = 8 -5178822 goalTotal = 28 -5178822 otherCount = 35 -~~~ -5178823 CURRENTGOAL IS [6] -~~~ -5178824 UP 12 -5178824 2048 255 -5178846 DOWN 12 -5178846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5178877 homeCount = 74 -5178877 waitCount = 38 -5178878 ripCount = 31 -5178878 locktype1 = 2 -5178879 locktype2 = 7 -5178879 locktype3 = 2 -5178880 goalCount = 8 -5178880 goalTotal = 28 -5178881 otherCount = 35 -~~~ -5178882 CURRENTGOAL IS [6] -~~~ -5179006 UP 12 -5179006 2048 255 -5180699 DOWN 12 -5180699 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5180741 homeCount = 74 -5180741 waitCount = 38 -5180742 ripCount = 31 -5180742 locktype1 = 2 -5180743 locktype2 = 7 -5180743 locktype3 = 2 -5180744 goalCount = 8 -5180744 goalTotal = 28 -5180744 otherCount = 35 -~~~ -5180746 CURRENTGOAL IS [6] -~~~ -5185076 UP 6 -5185076 32 255 -~~~ -~~~ -5185099 outer reward -~~~ -5185100 32 2097407 -~~~ -~~~ -5185320 DOWN 6 -5185320 0 2097407 -~~~ -~~~ -5185345 0 2097406 -~~~ -~~~ -5185347 0 2097404 -~~~ -~~~ -5185349 0 2097400 -~~~ -~~~ -5185351 0 2097392 -~~~ -~~~ -5185353 0 2097376 -~~~ -~~~ -5185355 0 2097344 -~~~ -~~~ -5185356 0 2097280 -~~~ -~~~ -5185358 0 2097152 -~~~ -~~~ -5185360 0 2097664 -5185361 homeCount = 74 -5185362 waitCount = 38 -5185362 ripCount = 31 -5185383 locktype1 = 2 -5185384 locktype2 = 7 -5185384 locktype3 = 2 -5185385 goalCount = 9 -5185385 goalTotal = 29 -5185386 otherCount = 35 -~~~ -5185386 32 2097664 -5185549 32 512 -5185758 DOWN 6 -5185757 0 512 -5185784 32 512 -5186141 DOWN 6 -5186141 0 512 -5186165 32 512 -5189858 DOWN 6 -5189857 0 512 -5189864 32 512 -5192101 DOWN 6 -5192101 0 512 -5202397 UP 10 -5202398 waslock = 0 -5202397 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5202424 512 16777728 -~~~ -5202574 512 512 -5202655 DOWN 10 -5202655 0 512 -~~~ -~~~ -5202677 0 1536 -~~~ -~~~ -5202679 0 1024 -5202680 homeCount = 75 -5202680 waitCount = 38 -5202681 ripCount = 31 -5202681 locktype1 = 2 -5202682 locktype2 = 7 -5202682 locktype3 = 2 -5202683 goalCount = 9 -5202683 goalTotal = 29 -5202684 otherCount = 35 -~~~ -5202757 UP 10 -5202758 waslock = 0 -5202757 512 1024 -~~~ -5207019 DOWN 10 -5207019 0 1024 -5207036 UP 10 -5207036 waslock = 0 -5207035 512 1024 -~~~ -~~~ -~~~ -~~~ -5207042 homeCount = 75 -5207042 waitCount = 38 -5207043 ripCount = 31 -5207043 locktype1 = 2 -5207044 locktype2 = 7 -5207044 locktype3 = 2 -5207045 goalCount = 9 -5207045 goalTotal = 29 -5207046 otherCount = 35 -~~~ -~~~ -5207117 DOWN 10 -5207117 0 1024 -~~~ -~~~ -~~~ -~~~ -5207144 homeCount = 75 -5207144 waitCount = 38 -5207145 ripCount = 31 -5207145 locktype1 = 2 -5207146 locktype2 = 7 -5207146 locktype3 = 2 -5207147 goalCount = 9 -5207147 goalTotal = 29 -5207148 otherCount = 35 -~~~ -5209520 UP 11 -5209520 1024 1024 -5211517 DOWN 11 -5211517 0 1024 -5211529 UP 11 -5211529 1024 1024 -5212520 BEEP1 -5212520 BEEP2 -~~~ -~~~ -~~~ -5212541 1024 33555456 -~~~ -5212691 1024 1024 -5217823 DOWN 11 -5217823 0 1024 -5217847 UP 11 -5217847 1024 1024 -~~~ -~~~ -5217850 1024 0 -~~~ -~~~ -5217852 1024 1 -~~~ -~~~ -5217854 1024 3 -~~~ -~~~ -5217856 1024 7 -~~~ -~~~ -5217857 1024 15 -~~~ -~~~ -5217859 1024 31 -~~~ -~~~ -5217861 1024 63 -~~~ -~~~ -5217863 1024 127 -~~~ -~~~ -5217865 1024 255 -5217866 homeCount = 75 -5217866 waitCount = 38 -5217867 ripCount = 32 -5217867 locktype1 = 2 -5217888 locktype2 = 7 -5217889 locktype3 = 2 -5217889 goalCount = 9 -5217889 goalTotal = 29 -5217890 otherCount = 35 -~~~ -5217891 CURRENTGOAL IS [6] -~~~ -5217891 DOWN 11 -5217891 0 255 -5217918 UP 11 -5217918 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5217949 homeCount = 75 -5217949 waitCount = 38 -5217950 ripCount = 32 -5217950 locktype1 = 2 -5217951 locktype2 = 7 -5217951 locktype3 = 2 -5217952 goalCount = 9 -5217952 goalTotal = 29 -5217953 otherCount = 35 -~~~ -5217954 CURRENTGOAL IS [6] -~~~ -5217954 DOWN 11 -5217954 0 255 -5217976 UP 11 -5217976 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5218014 homeCount = 75 -5218015 waitCount = 38 -5218016 ripCount = 32 -5218016 locktype1 = 2 -5218017 locktype2 = 7 -5218017 locktype3 = 2 -5218017 goalCount = 9 -5218018 goalTotal = 29 -5218018 otherCount = 35 -~~~ -5218019 CURRENTGOAL IS [6] -~~~ -5219962 DOWN 11 -5219962 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5219994 homeCount = 75 -5219995 waitCount = 38 -5219996 ripCount = 32 -5219996 locktype1 = 2 -5219997 locktype2 = 7 -5219997 locktype3 = 2 -5219997 goalCount = 9 -5219998 goalTotal = 29 -5219998 otherCount = 35 -~~~ -5219999 CURRENTGOAL IS [6] -~~~ -5220006 UP 11 -5220006 1024 255 -5220095 DOWN 11 -5220095 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5220135 homeCount = 75 -5220135 waitCount = 38 -5220136 ripCount = 32 -5220136 locktype1 = 2 -5220137 locktype2 = 7 -5220137 locktype3 = 2 -5220138 goalCount = 9 -5220138 goalTotal = 29 -5220139 otherCount = 35 -~~~ -5220140 CURRENTGOAL IS [6] -~~~ -5220369 UP 11 -5220369 1024 255 -5220384 DOWN 11 -5220384 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5220420 homeCount = 75 -5220421 waitCount = 38 -5220421 ripCount = 32 -5220422 locktype1 = 2 -5220422 locktype2 = 7 -5220423 locktype3 = 2 -5220423 goalCount = 9 -5220424 goalTotal = 29 -5220424 otherCount = 35 -~~~ -5220425 CURRENTGOAL IS [6] -~~~ -5220756 UP 11 -5220756 1024 255 -5222629 DOWN 11 -5222629 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222658 UP 11 -5222658 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222666 homeCount = 75 -5222666 waitCount = 38 -5222667 ripCount = 32 -5222667 locktype1 = 2 -5222668 locktype2 = 7 -5222668 locktype3 = 2 -5222669 goalCount = 9 -5222669 goalTotal = 29 -5222669 otherCount = 35 -~~~ -5222671 CURRENTGOAL IS [6] -~~~ -5222721 DOWN 11 -5222721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5222756 homeCount = 75 -5222757 waitCount = 38 -5222757 ripCount = 32 -5222758 locktype1 = 2 -5222758 locktype2 = 7 -5222759 locktype3 = 2 -5222759 goalCount = 9 -5222760 goalTotal = 29 -5222760 otherCount = 35 -~~~ -5222761 CURRENTGOAL IS [6] -~~~ -5225752 UP 6 -5225752 32 255 -~~~ -~~~ -5225775 outer reward -~~~ -5225775 32 2097407 -~~~ -~~~ -5225780 outerreps = 8 -~~~ -~~~ -5226029 DOWN 6 -5226029 0 2097407 -~~~ -~~~ -5226052 0 2097406 -~~~ -~~~ -5226053 0 2097404 -~~~ -~~~ -5226055 0 2097400 -~~~ -~~~ -5226057 0 2097392 -~~~ -~~~ -5226059 0 2097376 -~~~ -~~~ -5226061 0 2097344 -~~~ -~~~ -5226062 0 2097280 -~~~ -5226064 32 2097280 -~~~ -~~~ -5226066 32 2097152 -~~~ -5226067 32 2097664 -5226068 homeCount = 75 -5226068 waitCount = 38 -5226089 ripCount = 32 -5226090 locktype1 = 2 -5226090 locktype2 = 7 -5226091 locktype3 = 2 -5226091 goalCount = 0 -5226092 goalTotal = 30 -5226092 otherCount = 35 -~~~ -5226225 32 512 -5234212 DOWN 6 -5234212 0 512 -5234299 32 512 -5234328 DOWN 6 -5234328 0 512 -5238432 UP 10 -5238432 waslock = 0 -5238432 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5238461 512 16777728 -~~~ -5238611 512 512 -5238651 DOWN 10 -5238651 0 512 -5238675 UP 10 -5238675 waslock = 0 -5238675 512 512 -~~~ -~~~ -~~~ -5238678 512 1536 -~~~ -5238679 512 1024 -5238680 homeCount = 76 -5238680 waitCount = 38 -5238681 ripCount = 32 -5238681 locktype1 = 2 -5238682 locktype2 = 7 -5238682 locktype3 = 2 -5238683 goalCount = 0 -5238704 goalTotal = 30 -5238704 otherCount = 35 -~~~ -~~~ -5242681 DOWN 10 -5242681 0 1024 -~~~ -~~~ -5242707 UP 10 -5242707 waslock = 0 -5242707 512 1024 -~~~ -~~~ -5242710 homeCount = 76 -5242710 waitCount = 38 -5242711 ripCount = 32 -5242711 locktype1 = 2 -5242712 locktype2 = 7 -5242712 locktype3 = 2 -5242713 goalCount = 0 -5242713 goalTotal = 30 -5242714 otherCount = 35 -~~~ -~~~ -5242781 DOWN 10 -5242781 0 1024 -~~~ -~~~ -~~~ -~~~ -5242809 homeCount = 76 -5242809 waitCount = 38 -5242810 ripCount = 32 -5242810 locktype1 = 2 -5242811 locktype2 = 7 -5242811 locktype3 = 2 -5242812 goalCount = 0 -5242812 goalTotal = 30 -5242813 otherCount = 35 -~~~ -5244744 UP 11 -5244744 1024 1024 -5245062 DOWN 11 -5245062 0 1024 -5245263 LOCKOUT 3 -~~~ -5245287 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -5245291 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5245390 UP 11 -5245390 1024 0 -5247273 DOWN 11 -5247273 0 0 -5247303 UP 11 -5247303 1024 0 -5248048 DOWN 11 -5248048 0 0 -5248092 UP 11 -5248092 1024 0 -5249639 DOWN 11 -5249639 0 0 -5270287 LOCKEND -~~~ -~~~ -~~~ -5270306 0 512 -5281092 UP 10 -5281092 waslock = 0 -5281092 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5281122 512 16777728 -~~~ -5281134 DOWN 10 -5281134 0 16777728 -~~~ -~~~ -5281155 0 16778752 -~~~ -~~~ -5281157 0 16778240 -5281158 homeCount = 77 -5281159 waitCount = 38 -5281159 ripCount = 32 -5281160 locktype1 = 2 -5281160 locktype2 = 7 -5281161 locktype3 = 3 -5281161 goalCount = 0 -5281162 goalTotal = 30 -5281162 otherCount = 35 -~~~ -5281227 UP 10 -5281228 waslock = 0 -5281227 512 16778240 -~~~ -5281272 512 1024 -5281345 DOWN 10 -5281344 0 1024 -~~~ -~~~ -~~~ -~~~ -5281368 homeCount = 77 -5281369 waitCount = 38 -5281369 ripCount = 32 -5281370 locktype1 = 2 -5281370 locktype2 = 7 -5281371 locktype3 = 3 -5281371 goalCount = 0 -5281372 goalTotal = 30 -5281372 otherCount = 35 -~~~ -5281376 UP 10 -5281376 waslock = 0 -5281376 512 1024 -~~~ -5281500 DOWN 10 -5281500 0 1024 -5281522 UP 10 -5281522 waslock = 0 -5281522 512 1024 -~~~ -~~~ -~~~ -~~~ -5281529 homeCount = 77 -5281530 waitCount = 38 -5281530 ripCount = 32 -5281531 locktype1 = 2 -5281531 locktype2 = 7 -5281532 locktype3 = 3 -5281532 goalCount = 0 -5281533 goalTotal = 30 -5281533 otherCount = 35 -~~~ -~~~ -5281646 DOWN 10 -5281646 0 1024 -~~~ -~~~ -~~~ -~~~ -5281669 homeCount = 77 -5281669 waitCount = 38 -5281670 ripCount = 32 -5281670 locktype1 = 2 -5281671 locktype2 = 7 -5281671 locktype3 = 3 -5281672 goalCount = 0 -5281672 goalTotal = 30 -5281673 otherCount = 35 -~~~ -5281674 UP 10 -5281675 waslock = 0 -5281674 512 1024 -~~~ -5281809 DOWN 10 -5281809 0 1024 -5281818 UP 10 -5281818 waslock = 0 -5281818 512 1024 -~~~ -~~~ -~~~ -~~~ -5281840 homeCount = 77 -5281841 waitCount = 38 -5281841 ripCount = 32 -5281842 locktype1 = 2 -5281842 locktype2 = 7 -5281843 locktype3 = 3 -5281843 goalCount = 0 -5281844 goalTotal = 30 -5281844 otherCount = 35 -~~~ -~~~ -5285763 DOWN 10 -5285763 0 1024 -5285779 UP 10 -5285780 waslock = 0 -5285779 512 1024 -~~~ -~~~ -~~~ -~~~ -5285799 homeCount = 77 -5285800 waitCount = 38 -5285800 ripCount = 32 -5285801 locktype1 = 2 -5285801 locktype2 = 7 -5285802 locktype3 = 3 -5285802 goalCount = 0 -5285803 goalTotal = 30 -5285803 otherCount = 35 -~~~ -~~~ -5285874 DOWN 10 -5285874 0 1024 -~~~ -~~~ -~~~ -~~~ -5285900 homeCount = 77 -5285900 waitCount = 38 -5285901 ripCount = 32 -5285901 locktype1 = 2 -5285902 locktype2 = 7 -5285902 locktype3 = 3 -5285902 goalCount = 0 -5285903 goalTotal = 30 -5285903 otherCount = 35 -~~~ -5285920 UP 10 -5285920 waslock = 0 -5285920 512 1024 -~~~ -5285968 DOWN 10 -5285968 0 1024 -~~~ -~~~ -~~~ -~~~ -5285989 homeCount = 77 -5285990 waitCount = 38 -5285990 ripCount = 32 -5285991 locktype1 = 2 -5285991 locktype2 = 7 -5285992 locktype3 = 3 -5285992 goalCount = 0 -5285993 goalTotal = 30 -5285993 otherCount = 35 -~~~ -5287968 UP 11 -5287968 1024 1024 -5290407 DOWN 11 -5290407 0 1024 -5290421 UP 11 -5290421 1024 1024 -5290437 DOWN 11 -5290437 0 1024 -5290524 UP 11 -5290524 1024 1024 -5290968 BEEP1 -5290968 BEEP2 -~~~ -~~~ -~~~ -5290989 1024 33555456 -~~~ -5291139 1024 1024 -5296670 DOWN 11 -5296670 0 1024 -~~~ -~~~ -5296696 0 0 -~~~ -~~~ -5296698 0 1 -~~~ -~~~ -5296700 0 3 -~~~ -~~~ -5296702 0 7 -~~~ -~~~ -5296703 0 15 -~~~ -~~~ -5296705 0 31 -~~~ -~~~ -5296707 0 63 -~~~ -~~~ -5296709 0 127 -~~~ -~~~ -5296711 0 255 -5296712 homeCount = 77 -5296712 waitCount = 38 -5296713 ripCount = 33 -5296713 locktype1 = 2 -5296714 locktype2 = 7 -5296735 locktype3 = 3 -5296735 goalCount = 0 -5296736 goalTotal = 30 -5296736 otherCount = 35 -~~~ -5296737 CURRENTGOAL IS [3] -~~~ -5296738 UP 11 -5296738 1024 255 -5296936 DOWN 11 -5296936 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5296973 homeCount = 77 -5296973 waitCount = 38 -5296974 ripCount = 33 -5296974 locktype1 = 2 -5296975 locktype2 = 7 -5296975 locktype3 = 3 -5296976 goalCount = 0 -5296976 goalTotal = 30 -5296976 otherCount = 35 -~~~ -5296978 CURRENTGOAL IS [3] -~~~ -5296981 UP 11 -5296981 1024 255 -5300102 DOWN 11 -5300102 0 255 -5300120 UP 11 -5300120 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5300155 homeCount = 77 -5300156 waitCount = 38 -5300156 ripCount = 33 -5300157 locktype1 = 2 -5300157 locktype2 = 7 -5300158 locktype3 = 3 -5300158 goalCount = 0 -5300159 goalTotal = 30 -5300159 otherCount = 35 -~~~ -5300160 CURRENTGOAL IS [3] -~~~ -5302657 DOWN 11 -5302657 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5302699 homeCount = 77 -5302699 waitCount = 38 -5302700 ripCount = 33 -5302700 locktype1 = 2 -5302701 locktype2 = 7 -5302701 locktype3 = 3 -5302702 goalCount = 0 -5302702 goalTotal = 30 -5302703 otherCount = 35 -~~~ -5302704 CURRENTGOAL IS [3] -~~~ -5302808 UP 11 -5302808 1024 255 -5302848 DOWN 11 -5302848 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5302888 homeCount = 77 -5302889 waitCount = 38 -5302889 ripCount = 33 -5302890 locktype1 = 2 -5302890 locktype2 = 7 -5302891 locktype3 = 3 -5302891 goalCount = 0 -5302892 goalTotal = 30 -5302892 otherCount = 35 -~~~ -5302893 CURRENTGOAL IS [3] -~~~ -5306189 UP 8 -5306189 128 255 -~~~ -~~~ -5306730 DOWN 8 -5306730 0 255 -~~~ -~~~ -5306752 0 254 -~~~ -~~~ -5306754 0 252 -~~~ -~~~ -5306756 0 248 -~~~ -~~~ -5306757 0 240 -~~~ -~~~ -5306759 0 224 -~~~ -~~~ -5306761 0 192 -~~~ -~~~ -5306763 0 128 -~~~ -~~~ -5306765 0 0 -~~~ -~~~ -5306767 0 512 -5306768 homeCount = 77 -5306768 waitCount = 38 -5306769 ripCount = 33 -5306769 locktype1 = 2 -5306770 locktype2 = 7 -5306790 locktype3 = 3 -5306791 goalCount = 0 -5306791 goalTotal = 30 -5306792 otherCount = 36 -~~~ -5306792 128 512 -5307532 DOWN 8 -5307532 0 512 -5312695 UP 10 -5312695 waslock = 0 -5312695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5312721 512 16777728 -~~~ -5312871 512 512 -5319453 DOWN 10 -5319453 0 512 -~~~ -~~~ -5319475 0 1536 -~~~ -~~~ -5319477 0 1024 -5319478 homeCount = 78 -5319478 waitCount = 38 -5319479 ripCount = 33 -5319479 locktype1 = 2 -5319480 locktype2 = 7 -5319480 locktype3 = 3 -5319481 goalCount = 0 -5319481 goalTotal = 30 -5319482 otherCount = 36 -~~~ -5319509 UP 10 -5319509 waslock = 0 -5319509 512 1024 -5319535 DOWN 10 -5319535 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -5319565 homeCount = 78 -5319565 waitCount = 38 -5319566 ripCount = 33 -5319566 locktype1 = 2 -5319567 locktype2 = 7 -5319567 locktype3 = 3 -5319568 goalCount = 0 -5319568 goalTotal = 30 -5319569 otherCount = 36 -~~~ -5323431 UP 11 -5323431 1024 1024 -5327431 BEEP1 -5327431 BEEP2 -~~~ -~~~ -~~~ -5327453 1024 33555456 -~~~ -5327603 1024 1024 -5332677 DOWN 11 -5332677 0 1024 -5332695 UP 11 -5332695 1024 1024 -~~~ -~~~ -5332702 1024 0 -~~~ -~~~ -5332704 1024 1 -~~~ -~~~ -5332706 1024 3 -~~~ -~~~ -5332708 1024 7 -~~~ -~~~ -5332709 1024 15 -~~~ -~~~ -5332711 1024 31 -~~~ -~~~ -5332713 1024 63 -~~~ -~~~ -5332715 1024 127 -~~~ -~~~ -5332717 1024 255 -5332718 homeCount = 78 -5332718 waitCount = 38 -5332719 ripCount = 34 -5332719 locktype1 = 2 -5332740 locktype2 = 7 -5332741 locktype3 = 3 -5332741 goalCount = 0 -5332741 goalTotal = 30 -5332742 otherCount = 36 -~~~ -5332743 CURRENTGOAL IS [3] -~~~ -5332814 DOWN 11 -5332814 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5332843 UP 11 -5332842 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -5332848 homeCount = 78 -5332848 waitCount = 38 -5332849 ripCount = 34 -5332849 locktype1 = 2 -5332850 locktype2 = 7 -5332850 locktype3 = 3 -5332851 goalCount = 0 -5332851 goalTotal = 30 -5332852 otherCount = 36 -~~~ -5332853 CURRENTGOAL IS [3] -~~~ -5332941 DOWN 11 -5332941 0 255 -5332961 UP 11 -5332961 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5332978 homeCount = 78 -5332978 waitCount = 38 -5332979 ripCount = 34 -5332979 locktype1 = 2 -5332980 locktype2 = 7 -5332980 locktype3 = 3 -5332981 goalCount = 0 -5332981 goalTotal = 30 -5332982 otherCount = 36 -~~~ -5332983 CURRENTGOAL IS [3] -~~~ -5334881 DOWN 11 -5334881 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5334919 homeCount = 78 -5334919 waitCount = 38 -5334920 ripCount = 34 -5334920 locktype1 = 2 -5334921 locktype2 = 7 -5334921 locktype3 = 3 -5334922 goalCount = 0 -5334922 goalTotal = 30 -5334923 otherCount = 36 -~~~ -5334924 CURRENTGOAL IS [3] -~~~ -5340609 UP 5 -5340608 16 255 -~~~ -~~~ -5340874 DOWN 5 -5340874 0 255 -~~~ -~~~ -5340892 0 254 -~~~ -~~~ -5340894 0 252 -~~~ -~~~ -5340895 0 248 -~~~ -~~~ -5340897 0 240 -~~~ -~~~ -5340899 0 224 -~~~ -~~~ -5340901 0 192 -~~~ -~~~ -5340903 0 128 -~~~ -~~~ -5340904 0 0 -~~~ -~~~ -5340906 0 512 -5340907 homeCount = 78 -5340908 waitCount = 38 -5340908 ripCount = 34 -5340909 locktype1 = 2 -5340909 locktype2 = 7 -5340930 locktype3 = 3 -5340931 goalCount = 0 -5340931 goalTotal = 30 -5340932 otherCount = 37 -~~~ -5345212 UP 10 -5345212 waslock = 0 -5345212 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5345238 512 16777728 -~~~ -5345303 DOWN 10 -5345303 0 16777728 -~~~ -~~~ -5345330 0 16779776 -~~~ -~~~ -5345332 0 16779264 -5345333 homeCount = 79 -5345333 waitCount = 38 -5345334 ripCount = 34 -5345334 locktype1 = 2 -5345335 locktype2 = 7 -5345335 locktype3 = 3 -5345335 goalCount = 0 -5345336 goalTotal = 30 -5345336 otherCount = 37 -~~~ -5345388 0 2048 -5345395 UP 10 -5345395 waslock = 0 -5345395 512 2048 -~~~ -5345443 DOWN 10 -5345443 0 2048 -~~~ -~~~ -~~~ -~~~ -5345465 homeCount = 79 -5345466 waitCount = 38 -5345467 ripCount = 34 -5345467 locktype1 = 2 -5345467 locktype2 = 7 -5345468 locktype3 = 3 -5345468 goalCount = 0 -5345469 goalTotal = 30 -5345469 otherCount = 37 -~~~ -5345470 UP 10 -5345470 waslock = 0 -5345470 512 2048 -~~~ -5345649 DOWN 10 -5345649 0 2048 -~~~ -~~~ -~~~ -~~~ -5345675 homeCount = 79 -5345675 waitCount = 38 -5345676 ripCount = 34 -5345676 locktype1 = 2 -5345677 locktype2 = 7 -5345677 locktype3 = 3 -5345678 goalCount = 0 -5345678 goalTotal = 30 -5345679 otherCount = 37 -~~~ -5345679 UP 10 -5345679 waslock = 0 -5345679 512 2048 -~~~ -5345795 DOWN 10 -5345795 0 2048 -~~~ -~~~ -~~~ -~~~ -5345817 homeCount = 79 -5345818 waitCount = 38 -5345818 ripCount = 34 -5345819 locktype1 = 2 -5345819 locktype2 = 7 -5345819 locktype3 = 3 -5345820 goalCount = 0 -5345820 goalTotal = 30 -5345821 otherCount = 37 -~~~ -5345824 UP 10 -5345825 waslock = 0 -5345824 512 2048 -5345847 DOWN 10 -5345847 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5345864 homeCount = 79 -5345864 waitCount = 38 -5345865 ripCount = 34 -5345865 locktype1 = 2 -5345866 locktype2 = 7 -5345866 locktype3 = 3 -5345867 goalCount = 0 -5345867 goalTotal = 30 -5345868 otherCount = 37 -~~~ -5345956 UP 10 -5345956 waslock = 0 -5345956 512 2048 -5345982 DOWN 10 -5345982 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5346004 UP 10 -5346004 waslock = 0 -5346004 512 2048 -5346006 homeCount = 79 -5346006 waitCount = 38 -5346007 ripCount = 34 -5346007 locktype1 = 2 -5346008 locktype2 = 7 -5346008 locktype3 = 3 -5346009 goalCount = 0 -5346009 goalTotal = 30 -5346010 otherCount = 37 -~~~ -~~~ -5351222 DOWN 10 -5351222 0 2048 -~~~ -~~~ -~~~ -~~~ -5351245 homeCount = 79 -5351246 waitCount = 38 -5351246 ripCount = 34 -5351247 locktype1 = 2 -5351247 locktype2 = 7 -5351247 locktype3 = 3 -5351248 goalCount = 0 -5351248 goalTotal = 30 -5351249 otherCount = 37 -~~~ -5351281 UP 10 -5351281 waslock = 0 -5351281 512 2048 -~~~ -5351364 DOWN 10 -5351364 0 2048 -~~~ -~~~ -~~~ -~~~ -5351388 homeCount = 79 -5351389 waitCount = 38 -5351389 ripCount = 34 -5351390 locktype1 = 2 -5351390 locktype2 = 7 -5351391 locktype3 = 3 -5351391 goalCount = 0 -5351392 goalTotal = 30 -5351392 otherCount = 37 -~~~ -5353583 UP 12 -5353583 2048 2048 -5355776 DOWN 12 -5355776 0 2048 -5355802 UP 12 -5355802 2048 2048 -5355812 DOWN 12 -5355812 0 2048 -5355851 UP 12 -5355851 2048 2048 -5356583 CLICK1 -5356583 CLICK2 -5356595 DOWN 12 -5356595 0 2048 -~~~ -~~~ -~~~ -5356616 0 67110912 -~~~ -5356659 UP 12 -5356659 2048 67110912 -5356766 2048 2048 -~~~ -~~~ -5356769 2048 0 -~~~ -~~~ -5356771 2048 1 -~~~ -~~~ -5356773 2048 3 -~~~ -~~~ -5356774 2048 7 -~~~ -~~~ -5356776 2048 15 -~~~ -~~~ -5356778 2048 31 -~~~ -~~~ -5356780 2048 63 -~~~ -~~~ -5356782 2048 127 -~~~ -~~~ -5356784 2048 255 -5356785 homeCount = 79 -5356785 waitCount = 39 -5356786 ripCount = 34 -5356786 locktype1 = 2 -5356807 locktype2 = 7 -5356808 locktype3 = 3 -5356808 goalCount = 0 -5356809 goalTotal = 30 -5356809 otherCount = 37 -~~~ -5356810 CURRENTGOAL IS [3] -~~~ -5356916 DOWN 12 -5356916 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5356942 UP 12 -5356942 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5356950 homeCount = 79 -5356950 waitCount = 39 -5356951 ripCount = 34 -5356951 locktype1 = 2 -5356952 locktype2 = 7 -5356952 locktype3 = 3 -5356953 goalCount = 0 -5356953 goalTotal = 30 -5356954 otherCount = 37 -~~~ -5356955 CURRENTGOAL IS [3] -~~~ -5362292 DOWN 12 -5362292 0 255 -5362302 UP 12 -5362302 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5362333 homeCount = 79 -5362333 waitCount = 39 -5362334 ripCount = 34 -5362334 locktype1 = 2 -5362335 locktype2 = 7 -5362335 locktype3 = 3 -5362336 goalCount = 0 -5362336 goalTotal = 30 -5362337 otherCount = 37 -~~~ -5362338 CURRENTGOAL IS [3] -~~~ -5365136 DOWN 12 -5365136 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5365170 homeCount = 79 -5365170 waitCount = 39 -5365171 ripCount = 34 -5365171 locktype1 = 2 -5365172 locktype2 = 7 -5365172 locktype3 = 3 -5365173 goalCount = 0 -5365173 goalTotal = 30 -5365174 otherCount = 37 -~~~ -5365175 CURRENTGOAL IS [3] -~~~ -5369259 UP 6 -5369259 32 255 -~~~ -~~~ -5369588 DOWN 6 -5369587 0 255 -~~~ -~~~ -5369606 0 254 -~~~ -~~~ -5369607 0 252 -~~~ -~~~ -5369609 32 248 -~~~ -~~~ -5369611 32 240 -~~~ -~~~ -5369613 32 224 -~~~ -~~~ -5369615 32 192 -~~~ -~~~ -5369616 32 128 -~~~ -~~~ -5369618 32 0 -~~~ -~~~ -5369620 32 512 -5369621 homeCount = 79 -5369622 waitCount = 39 -5369622 ripCount = 34 -5369623 locktype1 = 2 -5369623 locktype2 = 7 -5369644 locktype3 = 3 -5369645 goalCount = 0 -5369645 goalTotal = 30 -5369646 otherCount = 38 -~~~ -5370768 DOWN 6 -5370768 0 512 -5374899 UP 10 -5374899 waslock = 0 -5374899 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5374926 512 16777728 -~~~ -5375076 512 512 -5375078 DOWN 10 -5375077 0 512 -~~~ -~~~ -5375101 0 2560 -~~~ -~~~ -5375103 0 2048 -5375104 homeCount = 80 -5375105 waitCount = 39 -5375105 ripCount = 34 -5375106 locktype1 = 2 -5375106 locktype2 = 7 -5375107 locktype3 = 3 -5375107 goalCount = 0 -5375108 goalTotal = 30 -5375108 otherCount = 38 -~~~ -5375122 UP 10 -5375122 waslock = 0 -5375122 512 2048 -~~~ -5379775 DOWN 10 -5379775 0 2048 -5379790 UP 10 -5379791 waslock = 0 -5379790 512 2048 -~~~ -~~~ -~~~ -~~~ -5379818 homeCount = 80 -5379818 waitCount = 39 -5379819 ripCount = 34 -5379819 locktype1 = 2 -5379820 locktype2 = 7 -5379820 locktype3 = 3 -5379821 goalCount = 0 -5379821 goalTotal = 30 -5379822 otherCount = 38 -~~~ -~~~ -5379874 DOWN 10 -5379874 0 2048 -~~~ -~~~ -~~~ -~~~ -5379897 homeCount = 80 -5379898 waitCount = 39 -5379898 ripCount = 34 -5379899 locktype1 = 2 -5379899 locktype2 = 7 -5379899 locktype3 = 3 -5379900 goalCount = 0 -5379900 goalTotal = 30 -5379901 otherCount = 38 -~~~ -5382027 UP 12 -5382026 2048 2048 -5383448 DOWN 12 -5383447 0 2048 -5383464 UP 12 -5383464 2048 2048 -5384242 DOWN 12 -5384242 0 2048 -5384443 LOCKOUT 3 -~~~ -5384462 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5384468 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5384556 UP 12 -5384556 2048 0 -5384693 DOWN 12 -5384693 0 0 -5384742 UP 12 -5384742 2048 0 -5384902 DOWN 12 -5384902 0 0 -5384936 UP 12 -5384936 2048 0 -5385183 DOWN 12 -5385183 0 0 -5409462 LOCKEND -~~~ -~~~ -~~~ -5409482 0 512 -5421059 UP 10 -5421059 waslock = 0 -5421059 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5421086 512 16777728 -~~~ -5421236 512 512 -5421325 DOWN 10 -5421325 0 512 -5421337 UP 10 -5421337 waslock = 0 -5421337 512 512 -~~~ -~~~ -5421350 512 1536 -~~~ -~~~ -5421352 512 1024 -5421353 homeCount = 81 -5421354 waitCount = 39 -5421354 ripCount = 34 -5421355 locktype1 = 2 -5421355 locktype2 = 7 -5421355 locktype3 = 4 -5421356 goalCount = 0 -5421356 goalTotal = 30 -5421357 otherCount = 38 -~~~ -~~~ -5421379 DOWN 10 -5421379 0 1024 -~~~ -~~~ -~~~ -~~~ -5421398 homeCount = 81 -5421398 waitCount = 39 -5421399 ripCount = 34 -5421399 locktype1 = 2 -5421400 locktype2 = 7 -5421400 locktype3 = 4 -5421401 goalCount = 0 -5421401 goalTotal = 30 -5421402 otherCount = 38 -~~~ -5421457 UP 10 -5421457 waslock = 0 -5421456 512 1024 -~~~ -5424643 DOWN 10 -5424643 0 1024 -~~~ -~~~ -~~~ -~~~ -5424663 homeCount = 81 -5424664 waitCount = 39 -5424664 ripCount = 34 -5424665 locktype1 = 2 -5424665 locktype2 = 7 -5424666 locktype3 = 4 -5424666 goalCount = 0 -5424667 goalTotal = 30 -5424667 otherCount = 38 -~~~ -5424697 UP 10 -5424698 waslock = 0 -5424697 512 1024 -~~~ -5426707 DOWN 10 -5426707 0 1024 -~~~ -~~~ -~~~ -~~~ -5426734 homeCount = 81 -5426734 waitCount = 39 -5426735 ripCount = 34 -5426735 locktype1 = 2 -5426736 locktype2 = 7 -5426736 locktype3 = 4 -5426737 goalCount = 0 -5426737 goalTotal = 30 -5426738 otherCount = 38 -~~~ -5426750 UP 10 -5426750 waslock = 0 -5426750 512 1024 -~~~ -5426812 DOWN 10 -5426812 0 1024 -~~~ -~~~ -~~~ -~~~ -5426833 homeCount = 81 -5426833 waitCount = 39 -5426834 ripCount = 34 -5426834 locktype1 = 2 -5426835 locktype2 = 7 -5426835 locktype3 = 4 -5426836 goalCount = 0 -5426836 goalTotal = 30 -5426837 otherCount = 38 -~~~ -5429056 UP 11 -5429056 1024 1024 -5429109 DOWN 11 -5429109 0 1024 -5429215 UP 11 -5429215 1024 1024 -5433057 BEEP1 -5433057 BEEP2 -~~~ -~~~ -~~~ -5433081 1024 33555456 -~~~ -5433231 1024 1024 -5433241 DOWN 11 -5433241 0 1024 -5433252 UP 11 -5433252 1024 1024 -~~~ -~~~ -5433732 1024 0 -~~~ -~~~ -5433734 1024 1 -~~~ -~~~ -5433736 1024 3 -~~~ -~~~ -5433737 1024 7 -~~~ -~~~ -5433739 1024 15 -~~~ -~~~ -5433741 1024 31 -~~~ -~~~ -5433743 1024 63 -~~~ -~~~ -5433745 1024 127 -~~~ -~~~ -5433746 1024 255 -5433747 homeCount = 81 -5433748 waitCount = 39 -5433749 ripCount = 35 -5433749 locktype1 = 2 -5433770 locktype2 = 7 -5433770 locktype3 = 4 -5433771 goalCount = 0 -5433771 goalTotal = 30 -5433772 otherCount = 38 -~~~ -5433773 CURRENTGOAL IS [3] -~~~ -5439996 DOWN 11 -5439996 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5440032 homeCount = 81 -5440032 waitCount = 39 -5440033 ripCount = 35 -5440033 locktype1 = 2 -5440034 locktype2 = 7 -5440034 locktype3 = 4 -5440035 goalCount = 0 -5440035 goalTotal = 30 -5440035 otherCount = 38 -~~~ -5440037 CURRENTGOAL IS [3] -~~~ -5448817 UP 6 -5448817 32 255 -~~~ -~~~ -5449550 DOWN 6 -5449550 0 255 -~~~ -~~~ -5449577 0 254 -~~~ -~~~ -5449579 0 252 -~~~ -~~~ -5449580 0 248 -~~~ -~~~ -5449582 0 240 -~~~ -~~~ -5449584 0 224 -~~~ -~~~ -5449586 0 192 -~~~ -~~~ -5449588 0 128 -~~~ -~~~ -5449589 0 0 -~~~ -~~~ -5449591 0 512 -5449592 homeCount = 81 -5449593 waitCount = 39 -5449593 ripCount = 35 -5449594 locktype1 = 2 -5449594 locktype2 = 7 -5449615 locktype3 = 4 -5449616 goalCount = 0 -5449616 goalTotal = 30 -5449617 otherCount = 39 -~~~ -5453833 UP 10 -5453833 waslock = 0 -5453833 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5453864 512 16777728 -~~~ -5454014 512 512 -5454054 DOWN 10 -5454054 0 512 -5454062 UP 10 -5454062 waslock = 0 -5454062 512 512 -~~~ -~~~ -5454080 512 2560 -~~~ -~~~ -5454082 512 2048 -5454083 homeCount = 82 -5454084 waitCount = 39 -5454084 ripCount = 35 -5454085 locktype1 = 2 -5454085 locktype2 = 7 -5454086 locktype3 = 4 -5454086 goalCount = 0 -5454087 goalTotal = 30 -5454087 otherCount = 39 -~~~ -~~~ -5454109 DOWN 10 -5454109 0 2048 -~~~ -~~~ -~~~ -~~~ -5454135 homeCount = 82 -5454135 waitCount = 39 -5454136 ripCount = 35 -5454136 locktype1 = 2 -5454137 locktype2 = 7 -5454137 locktype3 = 4 -5454138 goalCount = 0 -5454138 goalTotal = 30 -5454139 otherCount = 39 -~~~ -5454155 UP 10 -5454155 waslock = 0 -5454155 512 2048 -~~~ -5459304 DOWN 10 -5459304 0 2048 -~~~ -~~~ -~~~ -~~~ -5459331 homeCount = 82 -5459331 waitCount = 39 -5459332 ripCount = 35 -5459332 locktype1 = 2 -5459333 locktype2 = 7 -5459333 locktype3 = 4 -5459334 goalCount = 0 -5459334 goalTotal = 30 -5459335 otherCount = 39 -~~~ -5461800 UP 12 -5461800 2048 2048 -5464976 DOWN 12 -5464975 0 2048 -5464998 UP 12 -5464998 2048 2048 -5465058 DOWN 12 -5465058 0 2048 -5465105 UP 12 -5465105 2048 2048 -5465228 DOWN 12 -5465228 0 2048 -5465245 UP 12 -5465245 2048 2048 -5467049 DOWN 12 -5467049 0 2048 -5467092 UP 12 -5467092 2048 2048 -5467349 DOWN 12 -5467349 0 2048 -5467359 UP 12 -5467359 2048 2048 -5468800 CLICK1 -5468800 CLICK2 -~~~ -~~~ -~~~ -5468821 2048 67110912 -~~~ -5468971 2048 2048 -5477415 DOWN 12 -5477415 0 2048 -~~~ -~~~ -5477438 0 0 -~~~ -~~~ -5477440 0 1 -~~~ -~~~ -5477442 0 3 -~~~ -~~~ -5477444 0 7 -~~~ -~~~ -5477446 0 15 -~~~ -~~~ -5477447 0 31 -~~~ -~~~ -5477449 0 63 -~~~ -~~~ -5477451 0 127 -~~~ -~~~ -5477453 0 255 -5477454 homeCount = 82 -5477454 waitCount = 40 -5477455 ripCount = 35 -5477455 locktype1 = 2 -5477456 locktype2 = 7 -5477456 locktype3 = 4 -5477477 goalCount = 0 -5477478 goalTotal = 30 -5477478 otherCount = 39 -~~~ -5477479 CURRENTGOAL IS [3] -~~~ -5481136 UP 3 -5481136 4 255 -~~~ -~~~ -5481155 outer reward -~~~ -5481155 4 262399 -~~~ -~~~ -5481605 4 255 -5487589 DOWN 3 -5487589 0 255 -5487610 4 255 -~~~ -~~~ -5487626 4 254 -~~~ -~~~ -5487628 4 252 -~~~ -~~~ -5487630 4 248 -~~~ -~~~ -5487631 4 240 -~~~ -~~~ -5487633 4 224 -~~~ -~~~ -5487635 4 192 -~~~ -~~~ -5487637 4 128 -~~~ -~~~ -5487639 4 0 -~~~ -~~~ -5487641 4 512 -5487642 homeCount = 82 -5487642 waitCount = 40 -5487643 ripCount = 35 -5487643 locktype1 = 2 -5487644 locktype2 = 7 -5487665 locktype3 = 4 -5487665 goalCount = 1 -5487666 goalTotal = 31 -5487666 otherCount = 39 -~~~ -5487708 DOWN 3 -5487708 0 512 -5487767 4 512 -5487817 DOWN 3 -5487817 0 512 -5492910 UP 10 -5492910 waslock = 0 -5492910 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5492939 512 16777728 -~~~ -5493089 512 512 -5493153 DOWN 10 -5493153 0 512 -~~~ -~~~ -5493174 0 1536 -~~~ -~~~ -5493176 0 1024 -5493177 homeCount = 83 -5493178 waitCount = 40 -5493178 ripCount = 35 -5493179 locktype1 = 2 -5493179 locktype2 = 7 -5493180 locktype3 = 4 -5493180 goalCount = 1 -5493181 goalTotal = 31 -5493181 otherCount = 39 -~~~ -5493182 UP 10 -5493203 waslock = 0 -5493182 512 1024 -~~~ -5496843 DOWN 10 -5496843 0 1024 -~~~ -~~~ -~~~ -~~~ -5496867 homeCount = 83 -5496867 waitCount = 40 -5496868 ripCount = 35 -5496868 locktype1 = 2 -5496869 locktype2 = 7 -5496869 locktype3 = 4 -5496870 goalCount = 1 -5496870 goalTotal = 31 -5496870 otherCount = 39 -~~~ -5496907 UP 10 -5496907 waslock = 0 -5496907 512 1024 -~~~ -5496966 DOWN 10 -5496966 0 1024 -~~~ -~~~ -~~~ -~~~ -5496990 homeCount = 83 -5496990 waitCount = 40 -5496991 ripCount = 35 -5496991 locktype1 = 2 -5496992 locktype2 = 7 -5496992 locktype3 = 4 -5496993 goalCount = 1 -5496993 goalTotal = 31 -5496994 otherCount = 39 -~~~ -5499060 UP 11 -5499060 1024 1024 -5502861 DOWN 11 -5502861 0 1024 -5502900 UP 11 -5502900 1024 1024 -5503033 DOWN 11 -5503033 0 1024 -5503058 UP 11 -5503058 1024 1024 -5503803 DOWN 11 -5503803 0 1024 -5503839 UP 11 -5503839 1024 1024 -5504854 DOWN 11 -5504854 0 1024 -5504881 UP 11 -5504881 1024 1024 -5506061 BEEP1 -5506061 BEEP2 -~~~ -~~~ -~~~ -5506088 1024 33555456 -~~~ -5506238 1024 1024 -5512469 DOWN 11 -5512469 0 1024 -~~~ -~~~ -5512494 0 0 -~~~ -~~~ -5512496 0 1 -~~~ -~~~ -5512497 0 3 -~~~ -~~~ -5512499 0 7 -~~~ -~~~ -5512501 0 15 -~~~ -~~~ -5512503 0 31 -~~~ -~~~ -5512505 0 63 -~~~ -~~~ -5512507 0 127 -~~~ -~~~ -5512508 0 255 -5512509 homeCount = 83 -5512510 waitCount = 40 -5512510 ripCount = 36 -5512511 locktype1 = 2 -5512511 locktype2 = 7 -5512532 locktype3 = 4 -5512533 goalCount = 1 -5512533 goalTotal = 31 -5512534 otherCount = 39 -~~~ -5512535 CURRENTGOAL IS [3] -~~~ -5512585 UP 11 -5512585 1024 255 -5512624 DOWN 11 -5512624 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5512659 homeCount = 83 -5512660 waitCount = 40 -5512660 ripCount = 36 -5512661 locktype1 = 2 -5512661 locktype2 = 7 -5512662 locktype3 = 4 -5512662 goalCount = 1 -5512663 goalTotal = 31 -5512663 otherCount = 39 -~~~ -5512664 CURRENTGOAL IS [3] -~~~ -5512721 UP 11 -5512721 1024 255 -5512757 DOWN 11 -5512757 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5512790 homeCount = 83 -5512791 waitCount = 40 -5512791 ripCount = 36 -5512792 locktype1 = 2 -5512792 locktype2 = 7 -5512793 locktype3 = 4 -5512793 goalCount = 1 -5512794 goalTotal = 31 -5512794 otherCount = 39 -~~~ -5512795 CURRENTGOAL IS [3] -~~~ -5512798 UP 11 -5512798 1024 255 -5515026 DOWN 11 -5515026 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5515062 homeCount = 83 -5515062 waitCount = 40 -5515063 ripCount = 36 -5515063 locktype1 = 2 -5515064 locktype2 = 7 -5515064 locktype3 = 4 -5515065 goalCount = 1 -5515065 goalTotal = 31 -5515066 otherCount = 39 -~~~ -5515067 CURRENTGOAL IS [3] -~~~ -5515067 UP 11 -5515067 1024 255 -5515120 DOWN 11 -5515120 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5515163 homeCount = 83 -5515163 waitCount = 40 -5515164 ripCount = 36 -5515164 locktype1 = 2 -5515165 locktype2 = 7 -5515165 locktype3 = 4 -5515166 goalCount = 1 -5515166 goalTotal = 31 -5515167 otherCount = 39 -~~~ -5515168 CURRENTGOAL IS [3] -~~~ -5522004 UP 7 -5522004 64 255 -~~~ -~~~ -5523259 DOWN 7 -5523259 0 255 -~~~ -~~~ -5523277 0 254 -~~~ -~~~ -5523278 0 252 -~~~ -~~~ -5523280 0 248 -~~~ -~~~ -5523282 0 240 -~~~ -~~~ -5523284 0 224 -~~~ -~~~ -5523286 0 192 -~~~ -~~~ -5523288 0 128 -~~~ -~~~ -5523289 0 0 -~~~ -~~~ -5523291 0 512 -5523292 homeCount = 83 -5523293 waitCount = 40 -5523293 ripCount = 36 -5523294 locktype1 = 2 -5523294 locktype2 = 7 -5523315 locktype3 = 4 -5523316 goalCount = 1 -5523316 goalTotal = 31 -5523317 otherCount = 40 -~~~ -5529655 UP 10 -5529655 waslock = 0 -5529655 512 512 -~~~ -5529677 DOWN 10 -5529677 0 512 -~~~ -~~~ -~~~ -~~~ -5529683 0 16777728 -~~~ -5529696 UP 10 -5529697 waslock = 0 -5529696 512 16777728 -~~~ -~~~ -5529707 512 16779776 -~~~ -~~~ -5529709 512 16779264 -5529710 homeCount = 84 -5529710 waitCount = 40 -5529711 ripCount = 36 -5529711 locktype1 = 2 -5529712 locktype2 = 7 -5529712 locktype3 = 4 -5529713 goalCount = 1 -5529713 goalTotal = 31 -5529713 otherCount = 40 -~~~ -~~~ -5529833 512 2048 -5535219 DOWN 10 -5535219 0 2048 -~~~ -~~~ -~~~ -~~~ -5535242 homeCount = 84 -5535243 waitCount = 40 -5535243 ripCount = 36 -5535244 locktype1 = 2 -5535244 locktype2 = 7 -5535244 locktype3 = 4 -5535245 goalCount = 1 -5535245 goalTotal = 31 -5535246 otherCount = 40 -~~~ -5538565 UP 12 -5538565 2048 2048 -5544549 DOWN 12 -5544549 0 2048 -5544570 UP 12 -5544570 2048 2048 -5545566 CLICK1 -5545566 CLICK2 -~~~ -~~~ -~~~ -5545592 2048 67110912 -~~~ -5545742 2048 2048 -5550885 DOWN 12 -5550885 0 2048 -~~~ -~~~ -5550911 0 0 -~~~ -~~~ -5550912 0 1 -~~~ -~~~ -5550914 0 3 -~~~ -~~~ -5550916 0 7 -~~~ -~~~ -5550918 0 15 -~~~ -~~~ -5550920 0 31 -~~~ -~~~ -5550922 0 63 -~~~ -~~~ -5550923 0 127 -~~~ -~~~ -5550925 0 255 -5550926 homeCount = 84 -5550927 waitCount = 41 -5550927 ripCount = 36 -5550928 locktype1 = 2 -5550928 locktype2 = 7 -5550929 locktype3 = 4 -5550950 goalCount = 1 -5550950 goalTotal = 31 -5550951 otherCount = 40 -~~~ -5550952 CURRENTGOAL IS [3] -~~~ -5550952 UP 12 -5550952 2048 255 -5551037 DOWN 12 -5551037 0 255 -~~~ -~~~ -~~~ -5551057 UP 12 -5551057 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5551071 homeCount = 84 -5551072 waitCount = 41 -5551072 ripCount = 36 -5551073 locktype1 = 2 -5551073 locktype2 = 7 -5551074 locktype3 = 4 -5551074 goalCount = 1 -5551075 goalTotal = 31 -5551075 otherCount = 40 -~~~ -5551076 CURRENTGOAL IS [3] -~~~ -5551164 DOWN 12 -5551164 0 255 -5551176 UP 12 -5551176 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5551213 homeCount = 84 -5551214 waitCount = 41 -5551214 ripCount = 36 -5551215 locktype1 = 2 -5551215 locktype2 = 7 -5551216 locktype3 = 4 -5551216 goalCount = 1 -5551217 goalTotal = 31 -5551217 otherCount = 40 -~~~ -5551218 CURRENTGOAL IS [3] -~~~ -5554861 DOWN 12 -5554861 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5554903 homeCount = 84 -5554904 waitCount = 41 -5554904 ripCount = 36 -5554905 locktype1 = 2 -5554905 locktype2 = 7 -5554906 locktype3 = 4 -5554906 goalCount = 1 -5554907 goalTotal = 31 -5554907 otherCount = 40 -~~~ -5554908 CURRENTGOAL IS [3] -~~~ -5559663 UP 2 -5559663 2 255 -~~~ -~~~ -5561437 DOWN 2 -5561437 0 255 -~~~ -~~~ -5561457 0 254 -~~~ -~~~ -5561459 0 252 -~~~ -~~~ -5561460 0 248 -~~~ -~~~ -5561462 0 240 -~~~ -~~~ -5561464 0 224 -~~~ -~~~ -5561466 0 192 -~~~ -~~~ -5561468 0 128 -~~~ -~~~ -5561469 0 0 -~~~ -~~~ -5561471 0 512 -5561472 homeCount = 84 -5561473 waitCount = 41 -5561473 ripCount = 36 -5561474 locktype1 = 2 -5561474 locktype2 = 7 -5561495 locktype3 = 4 -5561496 goalCount = 1 -5561496 goalTotal = 31 -5561497 otherCount = 41 -~~~ -5564965 UP 10 -5564965 waslock = 0 -5564965 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5564994 512 16777728 -~~~ -5565007 DOWN 10 -5565007 0 16777728 -~~~ -~~~ -5565037 0 16778752 -~~~ -~~~ -5565039 0 16778240 -5565040 homeCount = 85 -5565040 waitCount = 41 -5565041 ripCount = 36 -5565041 locktype1 = 2 -5565042 locktype2 = 7 -5565042 locktype3 = 4 -5565043 goalCount = 1 -5565043 goalTotal = 31 -5565044 otherCount = 41 -~~~ -5565065 UP 10 -5565065 waslock = 0 -5565065 512 16778240 -~~~ -5565144 512 1024 -5565160 DOWN 10 -5565160 0 1024 -5565173 UP 10 -5565173 waslock = 0 -5565173 512 1024 -~~~ -~~~ -~~~ -~~~ -5565194 homeCount = 85 -5565194 waitCount = 41 -5565195 ripCount = 36 -5565195 locktype1 = 2 -5565196 locktype2 = 7 -5565196 locktype3 = 4 -5565196 goalCount = 1 -5565197 goalTotal = 31 -5565197 otherCount = 41 -~~~ -~~~ -5569406 DOWN 10 -5569406 0 1024 -~~~ -~~~ -~~~ -~~~ -5569433 homeCount = 85 -5569433 waitCount = 41 -5569434 ripCount = 36 -5569434 locktype1 = 2 -5569435 locktype2 = 7 -5569435 locktype3 = 4 -5569435 goalCount = 1 -5569436 goalTotal = 31 -5569436 otherCount = 41 -~~~ -5569465 UP 10 -5569466 waslock = 0 -5569465 512 1024 -5569491 DOWN 10 -5569491 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -5569518 homeCount = 85 -5569518 waitCount = 41 -5569519 ripCount = 36 -5569519 locktype1 = 2 -5569520 locktype2 = 7 -5569520 locktype3 = 4 -5569521 goalCount = 1 -5569521 goalTotal = 31 -5569522 otherCount = 41 -~~~ -5571097 UP 11 -5571097 1024 1024 -5574495 DOWN 11 -5574495 0 1024 -5574542 UP 11 -5574542 1024 1024 -5574781 DOWN 11 -5574781 0 1024 -5574802 UP 11 -5574802 1024 1024 -5576598 BEEP1 -5576598 BEEP2 -~~~ -~~~ -~~~ -5576622 1024 33555456 -~~~ -5576771 1024 1024 -5582951 DOWN 11 -5582951 0 1024 -~~~ -~~~ -5582969 0 0 -~~~ -~~~ -5582971 0 1 -~~~ -~~~ -5582973 0 3 -~~~ -~~~ -5582974 0 7 -~~~ -~~~ -5582976 0 15 -~~~ -~~~ -5582978 0 31 -~~~ -~~~ -5582980 0 63 -~~~ -~~~ -5582982 0 127 -~~~ -~~~ -5582984 0 255 -5582985 homeCount = 85 -5582985 waitCount = 41 -5582986 ripCount = 37 -5582986 locktype1 = 2 -5582987 locktype2 = 7 -5582987 locktype3 = 4 -5583008 goalCount = 1 -5583008 goalTotal = 31 -5583009 otherCount = 41 -~~~ -5583010 CURRENTGOAL IS [3] -~~~ -5583073 UP 11 -5583073 1024 255 -5583104 DOWN 11 -5583104 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5583138 homeCount = 85 -5583138 waitCount = 41 -5583139 ripCount = 37 -5583139 locktype1 = 2 -5583140 locktype2 = 7 -5583140 locktype3 = 4 -5583141 goalCount = 1 -5583141 goalTotal = 31 -5583142 otherCount = 41 -~~~ -5583143 CURRENTGOAL IS [3] -~~~ -5583208 UP 11 -5583208 1024 255 -5583225 DOWN 11 -5583225 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5583261 homeCount = 85 -5583262 waitCount = 41 -5583262 ripCount = 37 -5583263 locktype1 = 2 -5583263 locktype2 = 7 -5583264 locktype3 = 4 -5583264 goalCount = 1 -5583265 goalTotal = 31 -5583265 otherCount = 41 -~~~ -5583266 CURRENTGOAL IS [3] -~~~ -5583336 UP 11 -5583336 1024 255 -5585553 DOWN 11 -5585553 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5585591 homeCount = 85 -5585592 waitCount = 41 -5585592 ripCount = 37 -5585593 locktype1 = 2 -5585593 locktype2 = 7 -5585594 locktype3 = 4 -5585594 goalCount = 1 -5585595 goalTotal = 31 -5585595 otherCount = 41 -~~~ -5585596 CURRENTGOAL IS [3] -~~~ -5585606 UP 11 -5585606 1024 255 -5585621 DOWN 11 -5585621 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5585656 homeCount = 85 -5585656 waitCount = 41 -5585657 ripCount = 37 -5585657 locktype1 = 2 -5585658 locktype2 = 7 -5585658 locktype3 = 4 -5585659 goalCount = 1 -5585659 goalTotal = 31 -5585660 otherCount = 41 -~~~ -5585661 CURRENTGOAL IS [3] -~~~ -5589893 UP 4 -5589893 8 255 -~~~ -~~~ -5590508 DOWN 4 -5590508 0 255 -~~~ -~~~ -5590526 0 254 -~~~ -~~~ -5590528 0 252 -~~~ -~~~ -5590530 0 248 -~~~ -~~~ -5590532 0 240 -~~~ -~~~ -5590533 0 224 -~~~ -~~~ -5590535 0 192 -~~~ -~~~ -5590537 0 128 -~~~ -~~~ -5590539 0 0 -~~~ -~~~ -5590541 0 512 -5590542 homeCount = 85 -5590542 waitCount = 41 -5590543 ripCount = 37 -5590543 locktype1 = 2 -5590544 locktype2 = 7 -5590565 locktype3 = 4 -5590565 goalCount = 1 -5590566 goalTotal = 31 -5590566 otherCount = 42 -~~~ -5590567 8 512 -5590669 DOWN 4 -5590669 0 512 -5590754 8 512 -5590937 DOWN 4 -5590937 0 512 -5595749 UP 10 -5595749 waslock = 0 -5595749 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5595775 512 16777728 -~~~ -5595925 512 512 -5595965 DOWN 10 -5595965 0 512 -~~~ -~~~ -5595990 0 2560 -~~~ -5595992 UP 10 -5595992 waslock = 0 -5595992 512 2560 -~~~ -5595994 homeCount = 86 -5595994 waitCount = 41 -5595995 ripCount = 37 -5595995 locktype1 = 2 -5595996 locktype2 = 7 -5595996 locktype3 = 4 -5595997 goalCount = 1 -5595997 goalTotal = 31 -5596018 otherCount = 42 -~~~ -5596019 512 2048 -~~~ -5601517 DOWN 10 -5601517 0 2048 -~~~ -~~~ -~~~ -~~~ -5601544 homeCount = 86 -5601544 waitCount = 41 -5601545 ripCount = 37 -5601545 locktype1 = 2 -5601546 locktype2 = 7 -5601546 locktype3 = 4 -5601547 goalCount = 1 -5601547 goalTotal = 31 -5601548 otherCount = 42 -~~~ -5601560 UP 10 -5601560 waslock = 0 -5601560 512 2048 -~~~ -5601601 DOWN 10 -5601601 0 2048 -~~~ -~~~ -~~~ -~~~ -5601625 homeCount = 86 -5601625 waitCount = 41 -5601626 ripCount = 37 -5601626 locktype1 = 2 -5601627 locktype2 = 7 -5601627 locktype3 = 4 -5601628 goalCount = 1 -5601628 goalTotal = 31 -5601629 otherCount = 42 -~~~ -5603350 UP 12 -5603350 2048 2048 -5607351 CLICK1 -5607351 CLICK2 -~~~ -~~~ -~~~ -5607373 2048 67110912 -~~~ -5607523 2048 2048 -5613771 DOWN 12 -5613771 0 2048 -~~~ -~~~ -5613791 0 0 -~~~ -~~~ -5613793 0 1 -~~~ -~~~ -5613794 0 3 -~~~ -~~~ -5613796 0 7 -~~~ -~~~ -5613798 0 15 -~~~ -~~~ -5613800 0 31 -~~~ -~~~ -5613802 0 63 -~~~ -~~~ -5613803 0 127 -~~~ -~~~ -5613805 0 255 -5613806 homeCount = 86 -5613807 waitCount = 42 -5613807 ripCount = 37 -5613808 locktype1 = 2 -5613808 locktype2 = 7 -5613829 locktype3 = 4 -5613830 goalCount = 1 -5613830 goalTotal = 31 -5613831 otherCount = 42 -~~~ -5613832 CURRENTGOAL IS [3] -~~~ -5613832 UP 12 -5613832 2048 255 -5613856 DOWN 12 -5613856 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5613886 homeCount = 86 -5613886 waitCount = 42 -5613887 ripCount = 37 -5613887 locktype1 = 2 -5613888 locktype2 = 7 -5613888 locktype3 = 4 -5613889 goalCount = 1 -5613889 goalTotal = 31 -5613890 otherCount = 42 -~~~ -5613891 CURRENTGOAL IS [3] -~~~ -5613970 UP 12 -5613970 2048 255 -5613993 DOWN 12 -5613993 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5614033 homeCount = 86 -5614034 waitCount = 42 -5614034 ripCount = 37 -5614035 locktype1 = 2 -5614035 locktype2 = 7 -5614036 locktype3 = 4 -5614036 goalCount = 1 -5614037 goalTotal = 31 -5614037 otherCount = 42 -~~~ -5614038 CURRENTGOAL IS [3] -~~~ -5614039 UP 12 -5614039 2048 255 -5614423 DOWN 12 -5614423 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5614462 homeCount = 86 -5614463 waitCount = 42 -5614463 ripCount = 37 -5614464 locktype1 = 2 -5614464 locktype2 = 7 -5614465 locktype3 = 4 -5614465 goalCount = 1 -5614466 goalTotal = 31 -5614466 otherCount = 42 -~~~ -5614467 CURRENTGOAL IS [3] -~~~ -5617914 UP 1 -5617914 1 255 -~~~ -~~~ -5619242 DOWN 1 -5619242 0 255 -~~~ -~~~ -5619266 0 254 -~~~ -~~~ -5619268 0 252 -~~~ -~~~ -5619270 0 248 -~~~ -~~~ -5619271 0 240 -~~~ -~~~ -5619273 0 224 -~~~ -~~~ -5619275 0 192 -~~~ -~~~ -5619277 0 128 -~~~ -~~~ -5619279 0 0 -~~~ -~~~ -5619281 0 512 -5619282 homeCount = 86 -5619282 waitCount = 42 -5619282 ripCount = 37 -5619283 locktype1 = 2 -5619283 locktype2 = 7 -5619305 locktype3 = 4 -5619305 goalCount = 1 -5619305 goalTotal = 31 -5619306 otherCount = 43 -~~~ -5623329 UP 10 -5623329 waslock = 0 -5623329 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5623362 512 16777728 -~~~ -5623512 512 512 -5623523 DOWN 10 -5623523 0 512 -~~~ -~~~ -5623537 0 2560 -~~~ -~~~ -5623539 0 2048 -5623540 homeCount = 87 -5623540 waitCount = 42 -5623541 ripCount = 37 -5623541 locktype1 = 2 -5623542 locktype2 = 7 -5623542 locktype3 = 4 -5623543 goalCount = 1 -5623543 goalTotal = 31 -5623544 otherCount = 43 -~~~ -5623544 UP 10 -5623565 waslock = 0 -5623544 512 2048 -~~~ -5623698 DOWN 10 -5623698 0 2048 -5623712 UP 10 -5623712 waslock = 0 -5623712 512 2048 -~~~ -~~~ -~~~ -~~~ -5623721 homeCount = 87 -5623722 waitCount = 42 -5623722 ripCount = 37 -5623723 locktype1 = 2 -5623723 locktype2 = 7 -5623723 locktype3 = 4 -5623724 goalCount = 1 -5623724 goalTotal = 31 -5623725 otherCount = 43 -~~~ -~~~ -5627894 DOWN 10 -5627894 0 2048 -~~~ -~~~ -~~~ -~~~ -5627923 homeCount = 87 -5627923 waitCount = 42 -5627924 ripCount = 37 -5627924 locktype1 = 2 -5627925 locktype2 = 7 -5627925 locktype3 = 4 -5627926 goalCount = 1 -5627926 goalTotal = 31 -5627927 otherCount = 43 -~~~ -5629774 UP 12 -5629774 2048 2048 -5635275 CLICK1 -5635275 CLICK2 -~~~ -~~~ -~~~ -5635302 2048 67110912 -~~~ -5635452 2048 2048 -5641984 DOWN 12 -5641984 0 2048 -5642006 UP 12 -5642006 2048 2048 -~~~ -~~~ -5642011 2048 0 -~~~ -~~~ -5642013 2048 1 -~~~ -~~~ -5642015 2048 3 -~~~ -~~~ -5642016 2048 7 -~~~ -~~~ -5642018 2048 15 -~~~ -~~~ -5642020 2048 31 -~~~ -~~~ -5642022 2048 63 -~~~ -~~~ -5642024 2048 127 -~~~ -~~~ -5642026 2048 255 -5642027 homeCount = 87 -5642027 waitCount = 43 -5642028 ripCount = 37 -5642028 locktype1 = 2 -5642049 locktype2 = 7 -5642049 locktype3 = 4 -5642050 goalCount = 1 -5642050 goalTotal = 31 -5642051 otherCount = 43 -~~~ -5642052 CURRENTGOAL IS [3] -~~~ -5642075 DOWN 12 -5642075 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5642117 homeCount = 87 -5642117 waitCount = 43 -5642118 ripCount = 37 -5642118 locktype1 = 2 -5642119 locktype2 = 7 -5642119 locktype3 = 4 -5642120 goalCount = 1 -5642120 goalTotal = 31 -5642121 otherCount = 43 -~~~ -5642122 CURRENTGOAL IS [3] -~~~ -5647230 UP 2 -5647229 2 255 -~~~ -~~~ -5647953 DOWN 2 -5647953 0 255 -~~~ -~~~ -5647972 0 254 -~~~ -~~~ -5647974 0 252 -~~~ -~~~ -5647976 0 248 -~~~ -~~~ -5647977 0 240 -~~~ -~~~ -5647979 0 224 -~~~ -~~~ -5647981 0 192 -~~~ -~~~ -5647983 0 128 -~~~ -~~~ -5647985 0 0 -~~~ -~~~ -5647987 0 512 -5647988 homeCount = 87 -5647988 waitCount = 43 -5647989 ripCount = 37 -5647989 locktype1 = 2 -5647990 locktype2 = 7 -5648010 locktype3 = 4 -5648011 goalCount = 1 -5648011 goalTotal = 31 -5648012 otherCount = 44 -~~~ -5648216 2 512 -5648546 DOWN 2 -5648546 0 512 -5648670 2 512 -5648920 DOWN 2 -5648920 0 512 -5652561 UP 10 -5652561 waslock = 0 -5652561 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5652587 512 16777728 -~~~ -5652737 512 512 -5657217 DOWN 10 -5657217 0 512 -5657227 UP 10 -5657227 waslock = 0 -5657227 512 512 -~~~ -~~~ -5657243 512 2560 -~~~ -~~~ -5657245 512 2048 -5657246 homeCount = 88 -5657247 waitCount = 43 -5657247 ripCount = 37 -5657248 locktype1 = 2 -5657248 locktype2 = 7 -5657248 locktype3 = 4 -5657249 goalCount = 1 -5657249 goalTotal = 31 -5657250 otherCount = 44 -~~~ -~~~ -5657312 DOWN 10 -5657312 0 2048 -~~~ -~~~ -~~~ -~~~ -5657336 homeCount = 88 -5657336 waitCount = 43 -5657337 ripCount = 37 -5657337 locktype1 = 2 -5657338 locktype2 = 7 -5657338 locktype3 = 4 -5657339 goalCount = 1 -5657339 goalTotal = 31 -5657340 otherCount = 44 -~~~ -5659131 UP 12 -5659131 2048 2048 -5662533 DOWN 12 -5662533 0 2048 -5662574 UP 12 -5662574 2048 2048 -5662705 DOWN 12 -5662705 0 2048 -5662761 UP 12 -5662761 2048 2048 -5663131 CLICK1 -5663131 CLICK2 -~~~ -~~~ -~~~ -5663154 2048 67110912 -~~~ -5663304 2048 2048 -5670561 DOWN 12 -5670561 0 2048 -~~~ -~~~ -5670583 0 0 -~~~ -~~~ -5670585 0 1 -~~~ -~~~ -5670587 0 3 -~~~ -~~~ -5670589 0 7 -~~~ -~~~ -5670591 0 15 -~~~ -~~~ -5670592 0 31 -~~~ -~~~ -5670594 0 63 -~~~ -~~~ -5670596 0 127 -~~~ -~~~ -5670598 0 255 -5670599 homeCount = 88 -5670599 waitCount = 44 -5670600 ripCount = 37 -5670600 locktype1 = 2 -5670601 locktype2 = 7 -5670601 locktype3 = 4 -5670622 goalCount = 1 -5670623 goalTotal = 31 -5670623 otherCount = 44 -~~~ -5670624 CURRENTGOAL IS [3] -~~~ -5670625 UP 12 -5670625 2048 255 -5670656 DOWN 12 -5670656 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5670690 homeCount = 88 -5670691 waitCount = 44 -5670691 ripCount = 37 -5670692 locktype1 = 2 -5670692 locktype2 = 7 -5670693 locktype3 = 4 -5670693 goalCount = 1 -5670694 goalTotal = 31 -5670694 otherCount = 44 -~~~ -5670695 CURRENTGOAL IS [3] -~~~ -5677942 UP 2 -5677942 2 255 -~~~ -~~~ -5678387 DOWN 2 -5678387 0 255 -~~~ -~~~ -5678415 0 254 -~~~ -~~~ -5678417 0 252 -~~~ -~~~ -5678419 0 248 -~~~ -~~~ -5678420 0 240 -~~~ -~~~ -5678422 0 224 -~~~ -~~~ -5678424 0 192 -~~~ -~~~ -5678426 0 128 -~~~ -~~~ -5678428 0 0 -~~~ -~~~ -5678430 0 512 -5678431 homeCount = 88 -5678431 waitCount = 44 -5678432 ripCount = 37 -5678432 locktype1 = 2 -5678433 locktype2 = 7 -5678454 locktype3 = 4 -5678454 goalCount = 1 -5678455 goalTotal = 31 -5678455 otherCount = 45 -~~~ -5681630 UP 10 -5681630 waslock = 0 -5681630 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5681661 512 16777728 -~~~ -5681811 512 512 -5686735 DOWN 10 -5686735 0 512 -~~~ -~~~ -5686755 0 1536 -~~~ -~~~ -5686757 0 1024 -5686758 homeCount = 89 -5686759 waitCount = 44 -5686759 ripCount = 37 -5686760 locktype1 = 2 -5686760 locktype2 = 7 -5686761 locktype3 = 4 -5686761 goalCount = 1 -5686761 goalTotal = 31 -5686762 otherCount = 45 -~~~ -5688438 UP 11 -5688438 1024 1024 -5691438 BEEP1 -5691438 BEEP2 -~~~ -~~~ -~~~ -5691457 1024 33555456 -~~~ -5691544 DOWN 11 -5691544 0 33555456 -5691547 UP 11 -5691547 1024 33555456 -5691607 1024 1024 -~~~ -~~~ -5692129 1024 0 -~~~ -~~~ -5692131 1024 1 -~~~ -~~~ -5692133 1024 3 -~~~ -~~~ -5692134 1024 7 -~~~ -~~~ -5692136 1024 15 -~~~ -~~~ -5692138 1024 31 -~~~ -~~~ -5692140 1024 63 -~~~ -~~~ -5692142 1024 127 -~~~ -~~~ -5692144 1024 255 -5692145 homeCount = 89 -5692145 waitCount = 44 -5692146 ripCount = 38 -5692146 locktype1 = 2 -5692167 locktype2 = 7 -5692168 locktype3 = 4 -5692168 goalCount = 1 -5692169 goalTotal = 31 -5692169 otherCount = 45 -~~~ -5692170 CURRENTGOAL IS [3] -~~~ -5697547 DOWN 11 -5697547 0 255 -5697564 UP 11 -5697564 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697582 homeCount = 89 -5697583 waitCount = 44 -5697583 ripCount = 38 -5697584 locktype1 = 2 -5697584 locktype2 = 7 -5697585 locktype3 = 4 -5697585 goalCount = 1 -5697586 goalTotal = 31 -5697586 otherCount = 45 -~~~ -5697587 CURRENTGOAL IS [3] -~~~ -5697675 DOWN 11 -5697675 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697707 UP 11 -5697707 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -5697712 homeCount = 89 -5697713 waitCount = 44 -5697713 ripCount = 38 -5697714 locktype1 = 2 -5697714 locktype2 = 7 -5697715 locktype3 = 4 -5697715 goalCount = 1 -5697716 goalTotal = 31 -5697716 otherCount = 45 -~~~ -5697717 CURRENTGOAL IS [3] -~~~ -5697811 DOWN 11 -5697811 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5697843 UP 11 -5697843 1024 255 -~~~ -~~~ -~~~ -5697846 homeCount = 89 -5697847 waitCount = 44 -5697847 ripCount = 38 -5697848 locktype1 = 2 -5697848 locktype2 = 7 -5697849 locktype3 = 4 -5697849 goalCount = 1 -5697850 goalTotal = 31 -5697850 otherCount = 45 -~~~ -5697851 CURRENTGOAL IS [3] -~~~ -5700488 DOWN 11 -5700488 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5700525 homeCount = 89 -5700526 waitCount = 44 -5700526 ripCount = 38 -5700527 locktype1 = 2 -5700527 locktype2 = 7 -5700528 locktype3 = 4 -5700528 goalCount = 1 -5700528 goalTotal = 31 -5700529 otherCount = 45 -~~~ -5700530 CURRENTGOAL IS [3] -~~~ -5700536 UP 11 -5700536 1024 255 -5700622 DOWN 11 -5700622 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5700656 homeCount = 89 -5700656 waitCount = 44 -5700657 ripCount = 38 -5700657 locktype1 = 2 -5700658 locktype2 = 7 -5700658 locktype3 = 4 -5700659 goalCount = 1 -5700659 goalTotal = 31 -5700660 otherCount = 45 -~~~ -5700661 CURRENTGOAL IS [3] -~~~ -5701175 UP 11 -5701175 1024 255 -5701502 DOWN 11 -5701502 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5701545 homeCount = 89 -5701546 waitCount = 44 -5701547 ripCount = 38 -5701547 locktype1 = 2 -5701548 locktype2 = 7 -5701548 locktype3 = 4 -5701548 goalCount = 1 -5701549 goalTotal = 31 -5701549 otherCount = 45 -~~~ -5701551 CURRENTGOAL IS [3] -~~~ -5701590 UP 11 -5701590 1024 255 -5702159 DOWN 11 -5702159 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5702196 homeCount = 89 -5702196 waitCount = 44 -5702197 ripCount = 38 -5702197 locktype1 = 2 -5702198 locktype2 = 7 -5702198 locktype3 = 4 -5702199 goalCount = 1 -5702199 goalTotal = 31 -5702200 otherCount = 45 -~~~ -5702201 CURRENTGOAL IS [3] -~~~ -5702214 UP 11 -5702214 1024 255 -5703249 DOWN 11 -5703249 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5703287 homeCount = 89 -5703288 waitCount = 44 -5703288 ripCount = 38 -5703289 locktype1 = 2 -5703290 locktype2 = 7 -5703290 locktype3 = 4 -5703290 goalCount = 1 -5703291 goalTotal = 31 -5703291 otherCount = 45 -~~~ -5703292 CURRENTGOAL IS [3] -~~~ -5716846 UP 3 -5716846 4 255 -~~~ -~~~ -5716863 outer reward -~~~ -5716864 4 262399 -~~~ -~~~ -5716866 DOWN 3 -5716866 0 262399 -~~~ -~~~ -5716883 0 262398 -~~~ -~~~ -5716885 0 262396 -~~~ -~~~ -5716887 0 262392 -~~~ -5716888 4 262392 -~~~ -~~~ -5716890 4 262384 -~~~ -~~~ -5716891 4 262368 -~~~ -5716892 4 262336 -~~~ -~~~ -5716894 4 262272 -~~~ -~~~ -5716896 4 262144 -~~~ -~~~ -5716898 4 262656 -5716899 homeCount = 89 -5716899 waitCount = 44 -5716920 ripCount = 38 -5716921 locktype1 = 2 -5716921 locktype2 = 7 -5716922 locktype3 = 4 -5716922 goalCount = 2 -5716923 goalTotal = 32 -5716923 otherCount = 45 -~~~ -5717199 DOWN 3 -5717199 0 262656 -5717223 4 262656 -5717313 4 512 -5717605 DOWN 3 -5717605 0 512 -5717612 4 512 -5717719 DOWN 3 -5717719 0 512 -5717740 4 512 -5717840 DOWN 3 -5717840 0 512 -5717858 4 512 -5717966 DOWN 3 -5717966 0 512 -5717983 4 512 -5718090 DOWN 3 -5718090 0 512 -5718109 4 512 -5723871 DOWN 3 -5723871 0 512 -5723884 4 512 -5724350 DOWN 3 -5724350 0 512 -5724405 4 512 -5724458 DOWN 3 -5724458 0 512 -5728178 UP 10 -5728179 waslock = 0 -5728178 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5728208 512 16777728 -~~~ -5728358 512 512 -5734718 DOWN 10 -5734718 0 512 -5734740 UP 10 -5734740 waslock = 0 -5734740 512 512 -~~~ -~~~ -~~~ -5734743 512 1536 -~~~ -5734744 512 1024 -5734745 homeCount = 90 -5734745 waitCount = 44 -5734746 ripCount = 38 -5734746 locktype1 = 2 -5734747 locktype2 = 7 -5734747 locktype3 = 4 -5734748 goalCount = 2 -5734769 goalTotal = 32 -5734769 otherCount = 45 -~~~ -~~~ -5734818 DOWN 10 -5734818 0 1024 -~~~ -~~~ -~~~ -~~~ -5734839 homeCount = 90 -5734840 waitCount = 44 -5734840 ripCount = 38 -5734841 locktype1 = 2 -5734841 locktype2 = 7 -5734842 locktype3 = 4 -5734842 goalCount = 2 -5734843 goalTotal = 32 -5734843 otherCount = 45 -~~~ -5736341 UP 11 -5736341 1024 1024 -5739841 BEEP1 -5739841 BEEP2 -~~~ -~~~ -~~~ -5739868 1024 33555456 -~~~ -5740018 1024 1024 -5746448 DOWN 11 -5746448 0 1024 -5746457 UP 11 -5746456 1024 1024 -~~~ -~~~ -5746467 1024 0 -~~~ -~~~ -5746469 1024 1 -~~~ -~~~ -5746471 1024 3 -~~~ -~~~ -5746472 1024 7 -~~~ -~~~ -5746474 1024 15 -~~~ -~~~ -5746476 1024 31 -~~~ -~~~ -5746478 1024 63 -~~~ -~~~ -5746480 1024 127 -~~~ -~~~ -5746481 1024 255 -5746482 homeCount = 90 -5746483 waitCount = 44 -5746484 ripCount = 39 -5746484 locktype1 = 2 -5746505 locktype2 = 7 -5746505 locktype3 = 4 -5746506 goalCount = 2 -5746506 goalTotal = 32 -5746507 otherCount = 45 -~~~ -5746508 CURRENTGOAL IS [3] -~~~ -5750211 DOWN 11 -5750211 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5750252 homeCount = 90 -5750253 waitCount = 44 -5750253 ripCount = 39 -5750254 locktype1 = 2 -5750254 locktype2 = 7 -5750255 locktype3 = 4 -5750255 goalCount = 2 -5750256 goalTotal = 32 -5750256 otherCount = 45 -~~~ -5750257 CURRENTGOAL IS [3] -~~~ -5750278 UP 11 -5750278 1024 255 -5751976 DOWN 11 -5751976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5752013 homeCount = 90 -5752013 waitCount = 44 -5752014 ripCount = 39 -5752014 locktype1 = 2 -5752015 locktype2 = 7 -5752015 locktype3 = 4 -5752016 goalCount = 2 -5752016 goalTotal = 32 -5752016 otherCount = 45 -~~~ -5752018 CURRENTGOAL IS [3] -~~~ -5758629 UP 2 -5758629 2 255 -~~~ -~~~ -5759431 DOWN 2 -5759431 0 255 -~~~ -~~~ -5759455 0 254 -~~~ -~~~ -5759457 0 252 -~~~ -~~~ -5759459 0 248 -~~~ -~~~ -5759461 0 240 -~~~ -~~~ -5759463 0 224 -~~~ -~~~ -5759465 0 192 -~~~ -~~~ -5759466 0 128 -~~~ -~~~ -5759468 0 0 -~~~ -~~~ -5759470 0 512 -5759471 homeCount = 90 -5759472 waitCount = 44 -5759472 ripCount = 39 -5759473 locktype1 = 2 -5759473 locktype2 = 7 -5759494 locktype3 = 4 -5759495 goalCount = 2 -5759495 goalTotal = 32 -5759495 otherCount = 46 -~~~ -5759663 2 512 -5759777 DOWN 2 -5759777 0 512 -5765697 UP 10 -5765697 waslock = 0 -5765697 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5765722 512 16777728 -~~~ -5765872 512 512 -5765931 DOWN 10 -5765931 0 512 -5765938 UP 10 -5765938 waslock = 0 -5765938 512 512 -~~~ -~~~ -5765957 512 2560 -~~~ -~~~ -5765959 512 2048 -5765960 homeCount = 91 -5765961 waitCount = 44 -5765961 ripCount = 39 -5765962 locktype1 = 2 -5765962 locktype2 = 7 -5765962 locktype3 = 4 -5765963 goalCount = 2 -5765963 goalTotal = 32 -5765964 otherCount = 46 -~~~ -~~~ -5770516 DOWN 10 -5770516 0 2048 -5770527 UP 10 -5770527 waslock = 0 -5770527 512 2048 -~~~ -~~~ -~~~ -~~~ -5770552 homeCount = 91 -5770553 waitCount = 44 -5770553 ripCount = 39 -5770554 locktype1 = 2 -5770554 locktype2 = 7 -5770555 locktype3 = 4 -5770555 goalCount = 2 -5770556 goalTotal = 32 -5770556 otherCount = 46 -~~~ -~~~ -5770605 DOWN 10 -5770605 0 2048 -~~~ -~~~ -~~~ -~~~ -5770632 homeCount = 91 -5770632 waitCount = 44 -5770633 ripCount = 39 -5770633 locktype1 = 2 -5770634 locktype2 = 7 -5770634 locktype3 = 4 -5770635 goalCount = 2 -5770635 goalTotal = 32 -5770635 otherCount = 46 -~~~ -5772538 UP 12 -5772538 2048 2048 -5774762 DOWN 12 -5774762 0 2048 -5774792 UP 12 -5774792 2048 2048 -5774819 DOWN 12 -5774819 0 2048 -5774837 UP 12 -5774837 2048 2048 -5777111 DOWN 12 -5777111 0 2048 -5777126 UP 12 -5777126 2048 2048 -5780539 CLICK1 -5780539 CLICK2 -~~~ -~~~ -~~~ -5780558 2048 67110912 -~~~ -5780708 2048 2048 -5787618 DOWN 12 -5787618 0 2048 -~~~ -~~~ -5787637 0 0 -~~~ -~~~ -5787639 0 1 -~~~ -~~~ -5787640 0 3 -~~~ -~~~ -5787642 0 7 -~~~ -~~~ -5787644 0 15 -~~~ -~~~ -5787646 0 31 -~~~ -~~~ -5787648 0 63 -~~~ -~~~ -5787649 0 127 -~~~ -~~~ -5787651 0 255 -5787652 homeCount = 91 -5787653 waitCount = 45 -5787653 ripCount = 39 -5787654 locktype1 = 2 -5787654 locktype2 = 7 -5787675 locktype3 = 4 -5787675 goalCount = 2 -5787676 goalTotal = 32 -5787676 otherCount = 46 -~~~ -5787677 CURRENTGOAL IS [3] -~~~ -5787678 UP 12 -5787678 2048 255 -5787722 DOWN 12 -5787722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5787754 homeCount = 91 -5787755 waitCount = 45 -5787755 ripCount = 39 -5787756 locktype1 = 2 -5787756 locktype2 = 7 -5787757 locktype3 = 4 -5787757 goalCount = 2 -5787758 goalTotal = 32 -5787758 otherCount = 46 -~~~ -5787759 CURRENTGOAL IS [3] -~~~ -5795603 UP 7 -5795603 64 255 -~~~ -~~~ -5796010 DOWN 7 -5796010 0 255 -~~~ -~~~ -5796029 0 254 -~~~ -~~~ -5796031 0 252 -~~~ -~~~ -5796033 0 248 -~~~ -~~~ -5796034 0 240 -~~~ -~~~ -5796036 0 224 -~~~ -~~~ -5796038 0 192 -~~~ -~~~ -5796040 0 128 -~~~ -~~~ -5796042 0 0 -~~~ -~~~ -5796044 0 512 -5796045 homeCount = 91 -5796045 waitCount = 45 -5796046 ripCount = 39 -5796046 locktype1 = 2 -5796047 locktype2 = 7 -5796068 locktype3 = 4 -5796068 goalCount = 2 -5796069 goalTotal = 32 -5796069 otherCount = 47 -~~~ -5796070 64 512 -5796533 DOWN 7 -5796533 0 512 -5800125 UP 10 -5800125 waslock = 0 -5800125 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5800149 512 16777728 -~~~ -5800299 512 512 -5800329 DOWN 10 -5800329 0 512 -5800334 UP 10 -5800334 waslock = 0 -5800334 512 512 -~~~ -~~~ -5800353 512 1536 -~~~ -~~~ -5800355 512 1024 -5800356 homeCount = 92 -5800357 waitCount = 45 -5800357 ripCount = 39 -5800358 locktype1 = 2 -5800358 locktype2 = 7 -5800359 locktype3 = 4 -5800359 goalCount = 2 -5800359 goalTotal = 32 -5800360 otherCount = 47 -~~~ -~~~ -5805808 DOWN 10 -5805808 0 1024 -~~~ -~~~ -~~~ -~~~ -5805836 homeCount = 92 -5805836 waitCount = 45 -5805837 ripCount = 39 -5805837 locktype1 = 2 -5805838 locktype2 = 7 -5805838 locktype3 = 4 -5805839 goalCount = 2 -5805839 goalTotal = 32 -5805840 otherCount = 47 -~~~ -5807754 UP 11 -5807754 1024 1024 -5810234 DOWN 11 -5810234 0 1024 -5810278 UP 11 -5810278 1024 1024 -5810754 BEEP1 -5810754 BEEP2 -~~~ -~~~ -~~~ -5810775 1024 33555456 -~~~ -5810925 1024 1024 -5817367 DOWN 11 -5817367 0 1024 -5817376 UP 11 -5817376 1024 1024 -~~~ -~~~ -5817392 1024 0 -~~~ -~~~ -5817394 1024 1 -~~~ -~~~ -5817396 1024 3 -~~~ -~~~ -5817397 1024 7 -~~~ -~~~ -5817399 1024 15 -~~~ -~~~ -5817401 1024 31 -~~~ -~~~ -5817403 1024 63 -~~~ -~~~ -5817405 1024 127 -~~~ -~~~ -5817407 1024 255 -5817408 homeCount = 92 -5817408 waitCount = 45 -5817409 ripCount = 40 -5817409 locktype1 = 2 -5817430 locktype2 = 7 -5817431 locktype3 = 4 -5817431 goalCount = 2 -5817432 goalTotal = 32 -5817432 otherCount = 47 -~~~ -5817433 CURRENTGOAL IS [3] -~~~ -5820017 DOWN 11 -5820017 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5820058 homeCount = 92 -5820059 waitCount = 45 -5820059 ripCount = 40 -5820060 locktype1 = 2 -5820060 locktype2 = 7 -5820061 locktype3 = 4 -5820061 goalCount = 2 -5820061 goalTotal = 32 -5820062 otherCount = 47 -~~~ -5820063 CURRENTGOAL IS [3] -~~~ -5828153 UP 3 -5828153 4 255 -~~~ -~~~ -5828176 outer reward -~~~ -5828176 4 262399 -~~~ -~~~ -5828381 DOWN 3 -5828381 0 262399 -~~~ -~~~ -5828405 0 262398 -~~~ -~~~ -5828407 0 262396 -~~~ -~~~ -5828409 0 262392 -~~~ -~~~ -5828411 0 262384 -~~~ -~~~ -5828412 0 262368 -~~~ -~~~ -5828414 0 262336 -~~~ -5828416 4 262336 -~~~ -~~~ -5828417 4 262272 -~~~ -5828418 4 262144 -~~~ -~~~ -5828420 4 262656 -5828421 homeCount = 92 -5828421 waitCount = 45 -5828442 ripCount = 40 -5828443 locktype1 = 2 -5828443 locktype2 = 7 -5828444 locktype3 = 4 -5828444 goalCount = 3 -5828445 goalTotal = 33 -5828445 otherCount = 47 -~~~ -5828626 4 512 -5828783 DOWN 3 -5828783 0 512 -5828810 4 512 -5828903 DOWN 3 -5828903 0 512 -5828941 4 512 -5829030 DOWN 3 -5829030 0 512 -5829062 4 512 -5829159 DOWN 3 -5829159 0 512 -5829194 4 512 -5829292 DOWN 3 -5829292 0 512 -5829324 4 512 -5829422 DOWN 3 -5829422 0 512 -5829451 4 512 -5829559 DOWN 3 -5829559 0 512 -5829588 4 512 -5829697 DOWN 3 -5829697 0 512 -5829724 4 512 -5829837 DOWN 3 -5829837 0 512 -5829860 4 512 -5829982 DOWN 3 -5829982 0 512 -5830000 4 512 -5830129 DOWN 3 -5830129 0 512 -5830141 4 512 -5830435 DOWN 3 -5830435 0 512 -5830444 4 512 -5833394 DOWN 3 -5833394 0 512 -5833418 4 512 -5834560 DOWN 3 -5834560 0 512 -5834571 4 512 -5834740 DOWN 3 -5834740 0 512 -5834746 4 512 -5836809 DOWN 3 -5836809 0 512 -5836847 4 512 -5836894 DOWN 3 -5836894 0 512 -5840557 UP 10 -5840558 waslock = 0 -5840557 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5840584 512 16777728 -~~~ -5840734 512 512 -5844296 DOWN 10 -5844296 0 512 -~~~ -~~~ -5844316 0 2560 -~~~ -~~~ -5844318 0 2048 -5844319 homeCount = 93 -5844320 waitCount = 45 -5844320 ripCount = 40 -5844321 locktype1 = 2 -5844321 locktype2 = 7 -5844321 locktype3 = 4 -5844322 goalCount = 3 -5844322 goalTotal = 33 -5844323 otherCount = 47 -~~~ -5845949 UP 12 -5845949 2048 2048 -5849054 DOWN 12 -5849054 0 2048 -5849095 UP 12 -5849095 2048 2048 -5849949 CLICK1 -5849949 CLICK2 -~~~ -~~~ -~~~ -5849973 2048 67110912 -~~~ -5850123 2048 2048 -5856550 DOWN 12 -5856550 0 2048 -~~~ -~~~ -5856578 0 0 -~~~ -~~~ -5856580 0 1 -~~~ -~~~ -5856581 0 3 -~~~ -~~~ -5856583 0 7 -~~~ -~~~ -5856585 0 15 -~~~ -~~~ -5856587 0 31 -~~~ -~~~ -5856589 0 63 -~~~ -~~~ -5856590 0 127 -~~~ -~~~ -5856592 0 255 -5856593 homeCount = 93 -5856594 waitCount = 46 -5856594 ripCount = 40 -5856595 locktype1 = 2 -5856595 locktype2 = 7 -5856596 locktype3 = 4 -5856617 goalCount = 3 -5856618 goalTotal = 33 -5856618 otherCount = 47 -~~~ -5856619 CURRENTGOAL IS [3] -~~~ -5856644 UP 12 -5856644 2048 255 -5858693 DOWN 12 -5858693 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5858736 homeCount = 93 -5858736 waitCount = 46 -5858737 ripCount = 40 -5858737 locktype1 = 2 -5858738 locktype2 = 7 -5858738 locktype3 = 4 -5858739 goalCount = 3 -5858739 goalTotal = 33 -5858740 otherCount = 47 -~~~ -5858741 CURRENTGOAL IS [3] -~~~ -5862529 UP 3 -5862529 4 255 -~~~ -~~~ -5862552 outer reward -~~~ -5862552 4 262399 -~~~ -~~~ -5862752 DOWN 3 -5862752 0 262399 -~~~ -~~~ -5862770 0 262398 -~~~ -~~~ -5862772 0 262396 -~~~ -~~~ -5862774 0 262392 -~~~ -~~~ -5862776 0 262384 -~~~ -~~~ -5862777 0 262368 -~~~ -~~~ -5862779 0 262336 -~~~ -~~~ -5862781 0 262272 -~~~ -~~~ -5862783 0 262144 -~~~ -~~~ -5862785 0 262656 -5862786 homeCount = 93 -5862786 waitCount = 46 -5862787 ripCount = 40 -5862808 locktype1 = 2 -5862809 locktype2 = 7 -5862809 locktype3 = 4 -5862809 goalCount = 4 -5862810 goalTotal = 34 -5862810 otherCount = 47 -~~~ -5862811 4 262656 -5863002 4 512 -5863190 DOWN 3 -5863190 0 512 -5863214 4 512 -5863309 DOWN 3 -5863309 0 512 -5863346 4 512 -5863438 DOWN 3 -5863438 0 512 -5863466 4 512 -5863585 DOWN 3 -5863585 0 512 -5863605 4 512 -5863714 DOWN 3 -5863714 0 512 -5863740 4 512 -5863854 DOWN 3 -5863854 0 512 -5863877 4 512 -5863999 DOWN 3 -5863999 0 512 -5864018 4 512 -5864142 DOWN 3 -5864142 0 512 -5864162 4 512 -5864291 DOWN 3 -5864291 0 512 -5864306 4 512 -5864440 DOWN 3 -5864440 0 512 -5864456 4 512 -5870702 DOWN 3 -5870702 0 512 -5870792 4 512 -5870801 DOWN 3 -5870801 0 512 -5874682 UP 10 -5874682 waslock = 0 -5874682 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5874707 512 16777728 -~~~ -5874857 512 512 -5874917 DOWN 10 -5874917 0 512 -5874930 UP 10 -5874931 waslock = 0 -5874930 512 512 -~~~ -~~~ -5874941 512 2560 -~~~ -~~~ -5874943 512 2048 -5874944 homeCount = 94 -5874945 waitCount = 46 -5874945 ripCount = 40 -5874946 locktype1 = 2 -5874946 locktype2 = 7 -5874947 locktype3 = 4 -5874947 goalCount = 4 -5874947 goalTotal = 34 -5874948 otherCount = 47 -~~~ -~~~ -5879193 DOWN 10 -5879193 0 2048 -~~~ -~~~ -~~~ -~~~ -5879215 homeCount = 94 -5879216 waitCount = 46 -5879216 ripCount = 40 -5879217 locktype1 = 2 -5879217 locktype2 = 7 -5879218 locktype3 = 4 -5879218 goalCount = 4 -5879219 goalTotal = 34 -5879219 otherCount = 47 -~~~ -5880914 UP 12 -5880914 2048 2048 -5881174 DOWN 12 -5881174 0 2048 -5881272 UP 12 -5881272 2048 2048 -5881331 DOWN 12 -5881331 0 2048 -5881349 UP 12 -5881349 2048 2048 -5882641 DOWN 12 -5882641 0 2048 -5882721 UP 12 -5882721 2048 2048 -5883785 DOWN 12 -5883785 0 2048 -5883812 UP 12 -5883812 2048 2048 -5886414 CLICK1 -5886414 CLICK2 -~~~ -~~~ -~~~ -5886435 2048 67110912 -~~~ -5886585 2048 2048 -5892947 DOWN 12 -5892947 0 2048 -5892961 UP 12 -5892961 2048 2048 -~~~ -~~~ -5892972 2048 0 -~~~ -~~~ -5892974 2048 1 -~~~ -~~~ -5892976 2048 3 -~~~ -~~~ -5892978 2048 7 -~~~ -~~~ -5892979 2048 15 -~~~ -~~~ -5892981 2048 31 -~~~ -~~~ -5892983 2048 63 -~~~ -~~~ -5892985 2048 127 -~~~ -~~~ -5892987 2048 255 -5892988 homeCount = 94 -5892988 waitCount = 47 -5892989 ripCount = 40 -5892989 locktype1 = 2 -5893010 locktype2 = 7 -5893010 locktype3 = 4 -5893011 goalCount = 4 -5893011 goalTotal = 34 -5893012 otherCount = 47 -~~~ -5893013 CURRENTGOAL IS [3] -~~~ -5893066 DOWN 12 -5893066 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5893100 homeCount = 94 -5893101 waitCount = 47 -5893101 ripCount = 40 -5893102 locktype1 = 2 -5893102 locktype2 = 7 -5893103 locktype3 = 4 -5893103 goalCount = 4 -5893104 goalTotal = 34 -5893104 otherCount = 47 -~~~ -5893105 CURRENTGOAL IS [3] -~~~ -5893124 UP 12 -5893124 2048 255 -5894503 DOWN 12 -5894503 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5894542 homeCount = 94 -5894542 waitCount = 47 -5894543 ripCount = 40 -5894543 locktype1 = 2 -5894544 locktype2 = 7 -5894544 locktype3 = 4 -5894545 goalCount = 4 -5894545 goalTotal = 34 -5894546 otherCount = 47 -~~~ -5894547 CURRENTGOAL IS [3] -~~~ -5898051 UP 3 -5898051 4 255 -~~~ -~~~ -5898075 outer reward -~~~ -5898075 4 262399 -~~~ -~~~ -5898084 DOWN 3 -5898084 0 262399 -~~~ -~~~ -5898105 0 262398 -~~~ -~~~ -5898107 0 262396 -~~~ -~~~ -5898109 0 262392 -~~~ -~~~ -5898111 0 262384 -~~~ -~~~ -5898113 0 262368 -~~~ -~~~ -5898114 0 262336 -~~~ -~~~ -5898116 0 262272 -~~~ -~~~ -5898118 0 262144 -~~~ -5898119 4 262144 -~~~ -5898121 4 262656 -5898121 homeCount = 94 -5898122 waitCount = 47 -5898143 ripCount = 40 -5898143 locktype1 = 2 -5898143 locktype2 = 7 -5898144 locktype3 = 4 -5898144 goalCount = 5 -5898145 goalTotal = 35 -5898145 otherCount = 47 -~~~ -5898295 DOWN 3 -5898295 0 262656 -5898339 4 262656 -5898474 DOWN 3 -5898474 0 262656 -5898485 4 262656 -5898525 4 512 -5898613 DOWN 3 -5898613 0 512 -5898629 4 512 -5898725 DOWN 3 -5898725 0 512 -5898757 4 512 -5899023 DOWN 3 -5899023 0 512 -5899036 4 512 -5899150 DOWN 3 -5899150 0 512 -5899168 4 512 -5899278 DOWN 3 -5899278 0 512 -5899303 4 512 -5899418 DOWN 3 -5899418 0 512 -5899436 4 512 -5899556 DOWN 3 -5899556 0 512 -5899573 4 512 -5900710 DOWN 3 -5900710 0 512 -5900719 4 512 -5901495 DOWN 3 -5901495 0 512 -5901502 4 512 -5907977 DOWN 3 -5907977 0 512 -5907988 4 512 -5908474 DOWN 3 -5908474 0 512 -5908635 4 512 -5908689 DOWN 3 -5908689 0 512 -5913757 UP 10 -5913758 waslock = 0 -5913757 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5913783 512 16777728 -~~~ -5913933 512 512 -5917745 DOWN 10 -5917745 0 512 -~~~ -~~~ -5917767 0 2560 -~~~ -~~~ -5917769 0 2048 -5917770 homeCount = 95 -5917771 waitCount = 47 -5917771 ripCount = 40 -5917771 locktype1 = 2 -5917772 locktype2 = 7 -5917772 locktype3 = 4 -5917773 goalCount = 5 -5917773 goalTotal = 35 -5917774 otherCount = 47 -~~~ -5917777 UP 10 -5917778 waslock = 0 -5917777 512 2048 -5917816 DOWN 10 -5917816 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -5917844 homeCount = 95 -5917844 waitCount = 47 -5917845 ripCount = 40 -5917845 locktype1 = 2 -5917846 locktype2 = 7 -5917846 locktype3 = 4 -5917847 goalCount = 5 -5917847 goalTotal = 35 -5917848 otherCount = 47 -~~~ -5919813 UP 12 -5919813 2048 2048 -5920060 DOWN 12 -5920060 0 2048 -5920260 LOCKOUT 3 -~~~ -5920281 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5920287 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5920319 UP 12 -5920319 2048 0 -5921986 DOWN 12 -5921986 0 0 -5922031 UP 12 -5922031 2048 0 -5928322 DOWN 12 -5928322 0 0 -5928360 UP 12 -5928360 2048 0 -5928730 DOWN 12 -5928729 0 0 -5928859 UP 12 -5928859 2048 0 -5930252 DOWN 12 -5930252 0 0 -5942734 UP 8 -5942734 128 0 -5943812 DOWN 8 -5943812 0 0 -5944012 128 0 -5944110 DOWN 8 -5944110 0 0 -5945254 128 0 -5945281 LOCKEND -~~~ -~~~ -~~~ -5945306 128 512 -5945311 DOWN 8 -5945311 0 512 -5945821 128 512 -5947058 DOWN 8 -5947058 0 512 -5970247 UP 10 -5970248 waslock = 0 -5970247 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -5970272 512 16777728 -~~~ -5970422 512 512 -5972015 DOWN 10 -5972015 0 512 -5972026 UP 10 -5972026 waslock = 0 -5972026 512 512 -~~~ -~~~ -5972046 512 1536 -~~~ -~~~ -5972048 512 1024 -5972049 homeCount = 96 -5972050 waitCount = 47 -5972050 ripCount = 40 -5972051 locktype1 = 2 -5972051 locktype2 = 7 -5972052 locktype3 = 5 -5972052 goalCount = 5 -5972053 goalTotal = 35 -5972053 otherCount = 47 -~~~ -~~~ -5976454 DOWN 10 -5976454 0 1024 -~~~ -~~~ -~~~ -~~~ -5976477 homeCount = 96 -5976477 waitCount = 47 -5976478 ripCount = 40 -5976478 locktype1 = 2 -5976479 locktype2 = 7 -5976479 locktype3 = 5 -5976480 goalCount = 5 -5976480 goalTotal = 35 -5976481 otherCount = 47 -~~~ -5982820 UP 11 -5982820 1024 1024 -5983404 DOWN 11 -5983404 0 1024 -5983449 UP 11 -5983449 1024 1024 -5983553 DOWN 11 -5983553 0 1024 -5983643 UP 11 -5983643 1024 1024 -5984311 DOWN 11 -5984311 0 1024 -5984334 UP 11 -5984334 1024 1024 -5984358 DOWN 11 -5984358 0 1024 -5984404 UP 11 -5984404 1024 1024 -5984446 DOWN 11 -5984446 0 1024 -5984470 UP 11 -5984470 1024 1024 -5985787 DOWN 11 -5985787 0 1024 -5985812 UP 11 -5985812 1024 1024 -5987321 BEEP1 -5987321 BEEP2 -~~~ -~~~ -~~~ -5987346 1024 33555456 -~~~ -5987496 1024 1024 -5995025 DOWN 11 -5995025 0 1024 -~~~ -~~~ -5995044 0 0 -~~~ -~~~ -5995046 0 1 -~~~ -~~~ -5995048 0 3 -~~~ -~~~ -5995050 0 7 -~~~ -~~~ -5995052 0 15 -~~~ -~~~ -5995053 0 31 -~~~ -~~~ -5995055 0 63 -~~~ -~~~ -5995057 0 127 -~~~ -~~~ -5995059 0 255 -5995060 homeCount = 96 -5995060 waitCount = 47 -5995061 ripCount = 41 -5995061 locktype1 = 2 -5995062 locktype2 = 7 -5995062 locktype3 = 5 -5995083 goalCount = 5 -5995084 goalTotal = 35 -5995084 otherCount = 47 -~~~ -5995085 CURRENTGOAL IS [3] -~~~ -5995086 UP 11 -5995086 1024 255 -5995127 DOWN 11 -5995127 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -5995166 homeCount = 96 -5995166 waitCount = 47 -5995167 ripCount = 41 -5995167 locktype1 = 2 -5995168 locktype2 = 7 -5995168 locktype3 = 5 -5995169 goalCount = 5 -5995169 goalTotal = 35 -5995170 otherCount = 47 -~~~ -5995171 CURRENTGOAL IS [3] -~~~ -5998831 UP 6 -5998831 32 255 -~~~ -~~~ -5999406 DOWN 6 -5999406 0 255 -~~~ -~~~ -5999430 0 254 -~~~ -~~~ -5999432 0 252 -~~~ -~~~ -5999434 0 248 -~~~ -~~~ -5999435 0 240 -~~~ -~~~ -5999437 0 224 -~~~ -~~~ -5999439 0 192 -~~~ -~~~ -5999441 0 128 -~~~ -~~~ -5999443 0 0 -~~~ -~~~ -5999445 0 512 -5999446 homeCount = 96 -5999446 waitCount = 47 -5999446 ripCount = 41 -5999447 locktype1 = 2 -5999447 locktype2 = 7 -5999469 locktype3 = 5 -5999469 goalCount = 5 -5999470 goalTotal = 35 -5999470 otherCount = 48 -~~~ -6003715 UP 10 -6003715 waslock = 0 -6003715 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6003747 512 16777728 -~~~ -6003897 512 512 -6003918 DOWN 10 -6003918 0 512 -~~~ -~~~ -6003946 0 1536 -~~~ -6003948 UP 10 -6003948 waslock = 0 -6003948 512 1536 -~~~ -6003950 homeCount = 97 -6003950 waitCount = 47 -6003951 ripCount = 41 -6003951 locktype1 = 2 -6003952 locktype2 = 7 -6003952 locktype3 = 5 -6003953 goalCount = 5 -6003953 goalTotal = 35 -6003974 otherCount = 48 -~~~ -6003975 DOWN 10 -6003975 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6003999 homeCount = 97 -6004000 waitCount = 47 -6004000 ripCount = 41 -6004001 locktype1 = 2 -6004001 locktype2 = 7 -6004002 locktype3 = 5 -6004002 goalCount = 5 -6004003 goalTotal = 35 -6004003 otherCount = 48 -~~~ -6004012 UP 10 -6004013 waslock = 0 -6004012 512 1024 -~~~ -6009857 DOWN 10 -6009857 0 1024 -~~~ -~~~ -~~~ -~~~ -6009879 homeCount = 97 -6009879 waitCount = 47 -6009880 ripCount = 41 -6009880 locktype1 = 2 -6009881 locktype2 = 7 -6009881 locktype3 = 5 -6009882 goalCount = 5 -6009882 goalTotal = 35 -6009883 otherCount = 48 -~~~ -6009933 UP 10 -6009934 waslock = 0 -6009933 512 1024 -6009944 DOWN 10 -6009944 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6009963 homeCount = 97 -6009964 waitCount = 47 -6009964 ripCount = 41 -6009965 locktype1 = 2 -6009965 locktype2 = 7 -6009966 locktype3 = 5 -6009966 goalCount = 5 -6009967 goalTotal = 35 -6009967 otherCount = 48 -~~~ -6012452 UP 11 -6012452 1024 1024 -6015272 DOWN 11 -6015272 0 1024 -6015283 UP 11 -6015283 1024 1024 -6015352 DOWN 11 -6015352 0 1024 -6015388 UP 11 -6015388 1024 1024 -6017952 BEEP1 -6017952 BEEP2 -~~~ -~~~ -~~~ -6017977 1024 33555456 -~~~ -6018127 1024 1024 -6023478 DOWN 11 -6023478 0 1024 -6023492 UP 11 -6023492 1024 1024 -~~~ -~~~ -6023498 1024 0 -~~~ -~~~ -6023499 1024 1 -~~~ -~~~ -6023501 1024 3 -~~~ -~~~ -6023503 1024 7 -~~~ -~~~ -6023505 1024 15 -~~~ -~~~ -6023507 1024 31 -~~~ -~~~ -6023509 1024 63 -~~~ -~~~ -6023510 1024 127 -~~~ -~~~ -6023512 1024 255 -6023513 homeCount = 97 -6023514 waitCount = 47 -6023514 ripCount = 42 -6023515 locktype1 = 2 -6023536 locktype2 = 7 -6023536 locktype3 = 5 -6023537 goalCount = 5 -6023537 goalTotal = 35 -6023538 otherCount = 48 -~~~ -6023539 CURRENTGOAL IS [3] -~~~ -6023606 DOWN 11 -6023606 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023634 UP 11 -6023634 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023643 homeCount = 97 -6023643 waitCount = 47 -6023644 ripCount = 42 -6023644 locktype1 = 2 -6023645 locktype2 = 7 -6023645 locktype3 = 5 -6023646 goalCount = 5 -6023646 goalTotal = 35 -6023647 otherCount = 48 -~~~ -6023648 CURRENTGOAL IS [3] -~~~ -6023702 DOWN 11 -6023702 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023742 homeCount = 97 -6023743 waitCount = 47 -6023743 ripCount = 42 -6023744 locktype1 = 2 -6023744 locktype2 = 7 -6023745 locktype3 = 5 -6023745 goalCount = 5 -6023746 goalTotal = 35 -6023746 otherCount = 48 -~~~ -6023747 CURRENTGOAL IS [3] -~~~ -6023800 UP 11 -6023800 1024 255 -6023848 DOWN 11 -6023848 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6023883 UP 11 -6023883 1024 255 -6023884 homeCount = 97 -6023884 waitCount = 47 -6023885 ripCount = 42 -6023885 locktype1 = 2 -6023886 locktype2 = 7 -6023886 locktype3 = 5 -6023887 goalCount = 5 -6023887 goalTotal = 35 -6023888 otherCount = 48 -~~~ -6023889 CURRENTGOAL IS [3] -~~~ -6023989 DOWN 11 -6023989 0 255 -~~~ -~~~ -~~~ -~~~ -6024013 UP 11 -6024013 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6024026 homeCount = 97 -6024027 waitCount = 47 -6024027 ripCount = 42 -6024028 locktype1 = 2 -6024028 locktype2 = 7 -6024029 locktype3 = 5 -6024029 goalCount = 5 -6024030 goalTotal = 35 -6024030 otherCount = 48 -~~~ -6024031 CURRENTGOAL IS [3] -~~~ -6024163 DOWN 11 -6024163 0 255 -6024176 UP 11 -6024176 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6024197 homeCount = 97 -6024198 waitCount = 47 -6024198 ripCount = 42 -6024199 locktype1 = 2 -6024199 locktype2 = 7 -6024200 locktype3 = 5 -6024200 goalCount = 5 -6024201 goalTotal = 35 -6024201 otherCount = 48 -~~~ -6024202 CURRENTGOAL IS [3] -~~~ -6026519 DOWN 11 -6026519 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6026563 homeCount = 97 -6026563 waitCount = 47 -6026564 ripCount = 42 -6026564 locktype1 = 2 -6026565 locktype2 = 7 -6026565 locktype3 = 5 -6026566 goalCount = 5 -6026566 goalTotal = 35 -6026567 otherCount = 48 -~~~ -6026568 CURRENTGOAL IS [3] -~~~ -6032818 UP 8 -6032818 128 255 -~~~ -~~~ -6033239 DOWN 8 -6033239 0 255 -~~~ -~~~ -6033258 0 254 -~~~ -~~~ -6033259 0 252 -~~~ -~~~ -6033261 0 248 -~~~ -~~~ -6033263 0 240 -~~~ -~~~ -6033265 0 224 -~~~ -~~~ -6033267 0 192 -~~~ -~~~ -6033269 0 128 -~~~ -~~~ -6033270 0 0 -~~~ -~~~ -6033272 0 512 -6033273 homeCount = 97 -6033274 waitCount = 47 -6033274 ripCount = 42 -6033275 locktype1 = 2 -6033275 locktype2 = 7 -6033296 locktype3 = 5 -6033297 goalCount = 5 -6033297 goalTotal = 35 -6033298 otherCount = 49 -~~~ -6033317 128 512 -6033371 DOWN 8 -6033371 0 512 -6038368 UP 10 -6038368 waslock = 0 -6038368 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6038397 512 16777728 -~~~ -6038547 512 512 -6039272 DOWN 10 -6039272 0 512 -~~~ -~~~ -6039291 0 1536 -~~~ -~~~ -6039293 0 1024 -6039294 homeCount = 98 -6039294 waitCount = 47 -6039295 ripCount = 42 -6039295 locktype1 = 2 -6039296 locktype2 = 7 -6039296 locktype3 = 5 -6039297 goalCount = 5 -6039297 goalTotal = 35 -6039297 otherCount = 49 -~~~ -6039298 UP 10 -6039319 waslock = 0 -6039298 512 1024 -~~~ -6044381 DOWN 10 -6044381 0 1024 -~~~ -~~~ -~~~ -~~~ -6044402 homeCount = 98 -6044403 waitCount = 47 -6044403 ripCount = 42 -6044404 locktype1 = 2 -6044404 locktype2 = 7 -6044405 locktype3 = 5 -6044405 goalCount = 5 -6044406 goalTotal = 35 -6044406 otherCount = 49 -~~~ -6044424 UP 10 -6044424 waslock = 0 -6044424 512 1024 -~~~ -6044471 DOWN 10 -6044471 0 1024 -~~~ -~~~ -~~~ -~~~ -6044493 homeCount = 98 -6044493 waitCount = 47 -6044494 ripCount = 42 -6044494 locktype1 = 2 -6044495 locktype2 = 7 -6044495 locktype3 = 5 -6044496 goalCount = 5 -6044496 goalTotal = 35 -6044497 otherCount = 49 -~~~ -6046733 UP 11 -6046733 1024 1024 -6049202 DOWN 11 -6049202 0 1024 -6049248 UP 11 -6049248 1024 1024 -6050940 DOWN 11 -6050940 0 1024 -6050972 UP 11 -6050972 1024 1024 -6053734 BEEP1 -6053734 BEEP2 -~~~ -~~~ -~~~ -6053752 1024 33555456 -~~~ -6053902 1024 1024 -6059069 DOWN 11 -6059069 0 1024 -~~~ -~~~ -6059095 0 0 -~~~ -~~~ -6059097 0 1 -~~~ -6059098 UP 11 -6059098 1024 1 -~~~ -~~~ -6059100 1024 3 -~~~ -~~~ -6059102 1024 7 -~~~ -6059103 1024 15 -~~~ -~~~ -6059104 1024 31 -~~~ -~~~ -6059106 1024 63 -~~~ -~~~ -6059108 1024 127 -~~~ -~~~ -6059110 1024 255 -6059111 homeCount = 98 -6059111 waitCount = 47 -6059132 ripCount = 43 -6059133 locktype1 = 2 -6059133 locktype2 = 7 -6059134 locktype3 = 5 -6059134 goalCount = 5 -6059135 goalTotal = 35 -6059135 otherCount = 49 -~~~ -6059136 CURRENTGOAL IS [3] -~~~ -6059137 DOWN 11 -6059137 0 255 -6059158 UP 11 -6059158 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059192 DOWN 11 -6059192 0 255 -~~~ -6059193 homeCount = 98 -6059194 waitCount = 47 -6059194 ripCount = 43 -6059195 locktype1 = 2 -6059195 locktype2 = 7 -6059196 locktype3 = 5 -6059196 goalCount = 5 -6059197 goalTotal = 35 -6059197 otherCount = 49 -~~~ -6059198 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059242 homeCount = 98 -6059242 waitCount = 47 -6059243 ripCount = 43 -6059243 locktype1 = 2 -6059244 locktype2 = 7 -6059244 locktype3 = 5 -6059245 goalCount = 5 -6059245 goalTotal = 35 -6059246 otherCount = 49 -~~~ -6059247 CURRENTGOAL IS [3] -~~~ -6059274 UP 11 -6059274 1024 255 -6059335 DOWN 11 -6059335 0 255 -6059341 UP 11 -6059341 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6059378 homeCount = 98 -6059378 waitCount = 47 -6059379 ripCount = 43 -6059379 locktype1 = 2 -6059380 locktype2 = 7 -6059380 locktype3 = 5 -6059381 goalCount = 5 -6059381 goalTotal = 35 -6059381 otherCount = 49 -~~~ -6059383 CURRENTGOAL IS [3] -~~~ -6061599 DOWN 11 -6061599 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6061639 homeCount = 98 -6061639 waitCount = 47 -6061640 ripCount = 43 -6061640 locktype1 = 2 -6061641 locktype2 = 7 -6061641 locktype3 = 5 -6061642 goalCount = 5 -6061642 goalTotal = 35 -6061643 otherCount = 49 -~~~ -6061644 CURRENTGOAL IS [3] -~~~ -6061677 UP 11 -6061677 1024 255 -6061721 DOWN 11 -6061721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6061756 homeCount = 98 -6061757 waitCount = 47 -6061757 ripCount = 43 -6061758 locktype1 = 2 -6061758 locktype2 = 7 -6061759 locktype3 = 5 -6061759 goalCount = 5 -6061760 goalTotal = 35 -6061760 otherCount = 49 -~~~ -6061761 CURRENTGOAL IS [3] -~~~ -6067760 UP 6 -6067760 32 255 -~~~ -~~~ -6068412 DOWN 6 -6068412 0 255 -~~~ -~~~ -6068434 0 254 -~~~ -~~~ -6068436 0 252 -~~~ -~~~ -6068438 0 248 -~~~ -~~~ -6068440 0 240 -~~~ -~~~ -6068442 0 224 -~~~ -~~~ -6068443 0 192 -~~~ -~~~ -6068445 0 128 -~~~ -~~~ -6068447 0 0 -~~~ -~~~ -6068449 0 512 -6068450 homeCount = 98 -6068450 waitCount = 47 -6068451 ripCount = 43 -6068451 locktype1 = 2 -6068452 locktype2 = 7 -6068473 locktype3 = 5 -6068474 goalCount = 5 -6068474 goalTotal = 35 -6068474 otherCount = 50 -~~~ -6068505 32 512 -6068699 DOWN 6 -6068699 0 512 -6072218 UP 10 -6072218 waslock = 0 -6072218 512 512 -6072233 DOWN 10 -6072233 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6072251 0 16777728 -~~~ -~~~ -~~~ -6072254 0 16778752 -~~~ -~~~ -6072256 0 16778240 -6072257 homeCount = 99 -6072257 waitCount = 47 -6072258 ripCount = 43 -6072258 locktype1 = 2 -6072258 locktype2 = 7 -6072259 locktype3 = 5 -6072259 goalCount = 5 -6072260 goalTotal = 35 -6072260 otherCount = 50 -~~~ -6072286 UP 10 -6072286 waslock = 0 -6072286 512 16778240 -~~~ -6072401 512 1024 -6072436 DOWN 10 -6072436 0 1024 -~~~ -~~~ -~~~ -~~~ -6072460 homeCount = 99 -6072460 waitCount = 47 -6072461 ripCount = 43 -6072461 locktype1 = 2 -6072462 locktype2 = 7 -6072462 locktype3 = 5 -6072463 goalCount = 5 -6072463 goalTotal = 35 -6072464 otherCount = 50 -~~~ -6072496 UP 10 -6072496 waslock = 0 -6072496 512 1024 -~~~ -6077367 DOWN 10 -6077367 0 1024 -~~~ -~~~ -~~~ -~~~ -6077388 homeCount = 99 -6077388 waitCount = 47 -6077389 ripCount = 43 -6077389 locktype1 = 2 -6077390 locktype2 = 7 -6077390 locktype3 = 5 -6077391 goalCount = 5 -6077391 goalTotal = 35 -6077392 otherCount = 50 -~~~ -6080272 UP 11 -6080272 1024 1024 -6081281 DOWN 11 -6081281 0 1024 -6081297 UP 11 -6081297 1024 1024 -6086272 BEEP1 -6086272 BEEP2 -~~~ -~~~ -~~~ -6086296 1024 33555456 -~~~ -6086446 1024 1024 -6092798 DOWN 11 -6092798 0 1024 -~~~ -~~~ -6092824 0 0 -~~~ -~~~ -6092826 0 1 -~~~ -~~~ -6092828 0 3 -~~~ -~~~ -6092830 0 7 -~~~ -6092831 UP 11 -6092831 1024 7 -~~~ -~~~ -6092833 1024 15 -~~~ -~~~ -6092835 1024 31 -~~~ -~~~ -6092837 1024 63 -~~~ -6092838 1024 127 -~~~ -~~~ -6092839 1024 255 -6092840 homeCount = 99 -6092841 waitCount = 47 -6092862 ripCount = 44 -6092862 locktype1 = 2 -6092863 locktype2 = 7 -6092863 locktype3 = 5 -6092864 goalCount = 5 -6092864 goalTotal = 35 -6092865 otherCount = 50 -~~~ -6092866 CURRENTGOAL IS [3] -~~~ -6095570 DOWN 11 -6095570 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6095610 homeCount = 99 -6095610 waitCount = 47 -6095611 ripCount = 44 -6095611 locktype1 = 2 -6095612 locktype2 = 7 -6095612 locktype3 = 5 -6095613 goalCount = 5 -6095613 goalTotal = 35 -6095614 otherCount = 50 -~~~ -6095615 CURRENTGOAL IS [3] -~~~ -6095619 UP 11 -6095619 1024 255 -6095697 DOWN 11 -6095697 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6095730 homeCount = 99 -6095730 waitCount = 47 -6095731 ripCount = 44 -6095731 locktype1 = 2 -6095732 locktype2 = 7 -6095732 locktype3 = 5 -6095733 goalCount = 5 -6095733 goalTotal = 35 -6095734 otherCount = 50 -~~~ -6095735 CURRENTGOAL IS [3] -~~~ -6100784 UP 4 -6100784 8 255 -~~~ -~~~ -6101758 DOWN 4 -6101758 0 255 -~~~ -~~~ -6101784 0 254 -~~~ -~~~ -6101785 0 252 -~~~ -~~~ -6101787 0 248 -~~~ -~~~ -6101789 0 240 -~~~ -~~~ -6101791 0 224 -~~~ -~~~ -6101793 0 192 -~~~ -~~~ -6101794 0 128 -~~~ -~~~ -6101796 0 0 -~~~ -~~~ -6101798 0 512 -6101799 homeCount = 99 -6101800 waitCount = 47 -6101800 ripCount = 44 -6101801 locktype1 = 2 -6101801 locktype2 = 7 -6101822 locktype3 = 5 -6101823 goalCount = 5 -6101823 goalTotal = 35 -6101824 otherCount = 51 -~~~ -6101824 8 512 -6101854 DOWN 4 -6101854 0 512 -6106062 UP 10 -6106062 waslock = 0 -6106062 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6106095 512 16777728 -~~~ -6106238 DOWN 10 -6106238 0 16777728 -6106245 0 512 -~~~ -~~~ -6106259 0 2560 -~~~ -~~~ -6106261 0 2048 -6106261 homeCount = 100 -6106262 waitCount = 47 -6106262 ripCount = 44 -6106263 locktype1 = 2 -6106263 locktype2 = 7 -6106264 locktype3 = 5 -6106264 goalCount = 5 -6106265 goalTotal = 35 -6106265 otherCount = 51 -~~~ -6106278 UP 10 -6106279 waslock = 0 -6106278 512 2048 -~~~ -6111719 DOWN 10 -6111719 0 2048 -~~~ -~~~ -~~~ -~~~ -6111739 homeCount = 100 -6111739 waitCount = 47 -6111740 ripCount = 44 -6111740 locktype1 = 2 -6111741 locktype2 = 7 -6111741 locktype3 = 5 -6111742 goalCount = 5 -6111742 goalTotal = 35 -6111743 otherCount = 51 -~~~ -6113476 UP 12 -6113476 2048 2048 -6115635 DOWN 12 -6115635 0 2048 -6115646 UP 12 -6115646 2048 2048 -6116424 DOWN 12 -6116424 0 2048 -6116461 UP 12 -6116461 2048 2048 -6119477 CLICK1 -6119477 CLICK2 -~~~ -~~~ -~~~ -6119497 2048 67110912 -~~~ -6119647 2048 2048 -6127039 DOWN 12 -6127039 0 2048 -~~~ -~~~ -6127056 0 0 -~~~ -~~~ -6127058 0 1 -~~~ -~~~ -6127059 0 3 -~~~ -~~~ -6127061 0 7 -~~~ -~~~ -6127063 0 15 -~~~ -~~~ -6127065 0 31 -~~~ -~~~ -6127067 0 63 -~~~ -~~~ -6127069 0 127 -~~~ -~~~ -6127070 UP 12 -6127070 2048 255 -6127072 homeCount = 100 -6127072 waitCount = 48 -6127073 ripCount = 44 -6127073 locktype1 = 2 -6127074 locktype2 = 7 -6127095 locktype3 = 5 -6127096 goalCount = 5 -6127096 goalTotal = 35 -6127097 otherCount = 51 -~~~ -6127098 CURRENTGOAL IS [3] -~~~ -6127133 DOWN 12 -6127133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6127167 homeCount = 100 -6127167 waitCount = 48 -6127168 ripCount = 44 -6127168 locktype1 = 2 -6127169 locktype2 = 7 -6127169 locktype3 = 5 -6127170 goalCount = 5 -6127170 goalTotal = 35 -6127170 otherCount = 51 -~~~ -6127172 CURRENTGOAL IS [3] -~~~ -6131072 UP 3 -6131072 4 255 -~~~ -~~~ -6131101 outer reward -~~~ -6131102 4 262399 -~~~ -~~~ -6131384 DOWN 3 -6131384 0 262399 -~~~ -~~~ -6131407 0 262398 -~~~ -~~~ -6131409 0 262396 -~~~ -~~~ -6131411 0 262392 -~~~ -~~~ -6131413 0 262384 -~~~ -~~~ -6131415 0 262368 -~~~ -~~~ -6131416 0 262336 -~~~ -6131418 4 262336 -~~~ -~~~ -6131419 4 262272 -~~~ -6131420 4 262144 -~~~ -~~~ -6131422 4 262656 -6131423 homeCount = 100 -6131424 waitCount = 48 -6131445 ripCount = 44 -6131445 locktype1 = 2 -6131446 locktype2 = 7 -6131446 locktype3 = 5 -6131446 goalCount = 6 -6131447 goalTotal = 36 -6131447 otherCount = 51 -~~~ -6131551 4 512 -6131811 DOWN 3 -6131811 0 512 -6131828 4 512 -6131927 DOWN 3 -6131927 0 512 -6131955 4 512 -6132052 DOWN 3 -6132052 0 512 -6132082 4 512 -6132182 DOWN 3 -6132182 0 512 -6132209 4 512 -6132313 DOWN 3 -6132313 0 512 -6132339 4 512 -6132450 DOWN 3 -6132450 0 512 -6132471 4 512 -6132587 DOWN 3 -6132587 0 512 -6132610 4 512 -6132731 DOWN 3 -6132731 0 512 -6132748 4 512 -6133033 DOWN 3 -6133033 0 512 -6133043 4 512 -6138943 DOWN 3 -6138943 0 512 -6138970 4 512 -6139046 DOWN 3 -6139046 0 512 -6139128 4 512 -6139165 DOWN 3 -6139165 0 512 -6143292 UP 10 -6143293 waslock = 0 -6143292 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6143325 512 16777728 -~~~ -6143475 512 512 -6147475 DOWN 10 -6147475 0 512 -~~~ -~~~ -6147499 0 1536 -~~~ -~~~ -6147501 0 1024 -6147502 homeCount = 101 -6147502 waitCount = 48 -6147503 ripCount = 44 -6147503 locktype1 = 2 -6147504 locktype2 = 7 -6147504 locktype3 = 5 -6147505 goalCount = 6 -6147505 goalTotal = 36 -6147506 otherCount = 51 -~~~ -6147549 UP 10 -6147549 waslock = 0 -6147549 512 1024 -~~~ -6147584 DOWN 10 -6147584 0 1024 -~~~ -~~~ -~~~ -~~~ -6147612 homeCount = 101 -6147613 waitCount = 48 -6147613 ripCount = 44 -6147614 locktype1 = 2 -6147614 locktype2 = 7 -6147615 locktype3 = 5 -6147615 goalCount = 6 -6147615 goalTotal = 36 -6147616 otherCount = 51 -~~~ -6149443 UP 11 -6149443 1024 1024 -6151946 DOWN 11 -6151946 0 1024 -6152022 UP 11 -6152022 1024 1024 -6152046 DOWN 11 -6152046 0 1024 -6152082 UP 11 -6152082 1024 1024 -6153249 DOWN 11 -6153249 0 1024 -6153276 UP 11 -6153276 1024 1024 -6157443 BEEP1 -6157443 BEEP2 -~~~ -~~~ -~~~ -6157469 1024 33555456 -~~~ -6157619 1024 1024 -6163143 DOWN 11 -6163142 0 1024 -6163159 UP 11 -6163159 1024 1024 -~~~ -~~~ -6163178 1024 0 -~~~ -~~~ -6163180 1024 1 -~~~ -~~~ -6163182 1024 3 -~~~ -~~~ -6163184 1024 7 -~~~ -~~~ -6163185 1024 15 -~~~ -~~~ -6163187 1024 31 -~~~ -~~~ -6163189 1024 63 -~~~ -~~~ -6163191 1024 127 -~~~ -~~~ -6163193 1024 255 -6163194 homeCount = 101 -6163194 waitCount = 48 -6163195 ripCount = 45 -6163195 locktype1 = 2 -6163216 locktype2 = 7 -6163216 locktype3 = 5 -6163217 goalCount = 6 -6163217 goalTotal = 36 -6163218 otherCount = 51 -~~~ -6163219 CURRENTGOAL IS [3] -~~~ -6163273 DOWN 11 -6163273 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -6163305 UP 11 -6163304 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6163317 homeCount = 101 -6163317 waitCount = 48 -6163318 ripCount = 45 -6163318 locktype1 = 2 -6163319 locktype2 = 7 -6163319 locktype3 = 5 -6163320 goalCount = 6 -6163320 goalTotal = 36 -6163321 otherCount = 51 -~~~ -6163322 CURRENTGOAL IS [3] -~~~ -6167538 DOWN 11 -6167538 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6167575 homeCount = 101 -6167576 waitCount = 48 -6167576 ripCount = 45 -6167577 locktype1 = 2 -6167577 locktype2 = 7 -6167578 locktype3 = 5 -6167578 goalCount = 6 -6167579 goalTotal = 36 -6167579 otherCount = 51 -~~~ -6167580 CURRENTGOAL IS [3] -~~~ -6167605 UP 11 -6167605 1024 255 -6167660 DOWN 11 -6167660 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6167698 homeCount = 101 -6167699 waitCount = 48 -6167700 ripCount = 45 -6167700 locktype1 = 2 -6167701 locktype2 = 7 -6167701 locktype3 = 5 -6167701 goalCount = 6 -6167702 goalTotal = 36 -6167702 otherCount = 51 -~~~ -6167704 CURRENTGOAL IS [3] -~~~ -6174471 UP 2 -6174471 2 255 -~~~ -~~~ -6174897 DOWN 2 -6174897 0 255 -~~~ -~~~ -6174923 0 254 -~~~ -~~~ -6174924 0 252 -~~~ -~~~ -6174926 0 248 -~~~ -~~~ -6174928 0 240 -~~~ -~~~ -6174930 0 224 -~~~ -~~~ -6174932 0 192 -~~~ -~~~ -6174934 0 128 -~~~ -~~~ -6174935 0 0 -~~~ -~~~ -6174937 0 512 -6174938 homeCount = 101 -6174939 waitCount = 48 -6174939 ripCount = 45 -6174940 locktype1 = 2 -6174940 locktype2 = 7 -6174961 locktype3 = 5 -6174962 goalCount = 6 -6174962 goalTotal = 36 -6174963 otherCount = 52 -~~~ -6178638 UP 10 -6178638 waslock = 0 -6178638 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6178661 512 16777728 -~~~ -6178781 DOWN 10 -6178781 0 16777728 -6178796 UP 10 -6178797 waslock = 0 -6178796 512 16777728 -6178811 512 512 -~~~ -~~~ -6178815 512 1536 -~~~ -~~~ -6178817 512 1024 -6178818 homeCount = 102 -6178818 waitCount = 48 -6178819 ripCount = 45 -6178819 locktype1 = 2 -6178820 locktype2 = 7 -6178820 locktype3 = 5 -6178821 goalCount = 6 -6178821 goalTotal = 36 -6178822 otherCount = 52 -~~~ -~~~ -6183138 DOWN 10 -6183138 0 1024 -~~~ -~~~ -~~~ -~~~ -6183158 homeCount = 102 -6183159 waitCount = 48 -6183159 ripCount = 45 -6183160 locktype1 = 2 -6183160 locktype2 = 7 -6183161 locktype3 = 5 -6183161 goalCount = 6 -6183161 goalTotal = 36 -6183162 otherCount = 52 -~~~ -6184941 UP 11 -6184941 1024 1024 -6186798 DOWN 11 -6186798 0 1024 -6186827 UP 11 -6186827 1024 1024 -6187258 DOWN 11 -6187258 0 1024 -6187286 UP 11 -6187286 1024 1024 -6188348 DOWN 11 -6188348 0 1024 -6188360 UP 11 -6188360 1024 1024 -6189441 BEEP1 -6189441 BEEP2 -~~~ -~~~ -~~~ -6189469 1024 33555456 -~~~ -6189619 1024 1024 -6190398 DOWN 11 -6190398 0 1024 -6190417 UP 11 -6190417 1024 1024 -~~~ -~~~ -6190424 1024 0 -~~~ -~~~ -6190426 1024 1 -~~~ -~~~ -6190428 1024 3 -~~~ -~~~ -6190429 1024 7 -~~~ -~~~ -6190431 1024 15 -~~~ -~~~ -6190433 1024 31 -~~~ -~~~ -6190435 1024 63 -~~~ -~~~ -6190437 1024 127 -~~~ -~~~ -6190438 1024 255 -6190439 homeCount = 102 -6190440 waitCount = 48 -6190441 ripCount = 46 -6190441 locktype1 = 2 -6190462 locktype2 = 7 -6190462 locktype3 = 5 -6190463 goalCount = 6 -6190463 goalTotal = 36 -6190464 otherCount = 52 -~~~ -6190465 CURRENTGOAL IS [3] -~~~ -6190523 DOWN 11 -6190523 0 255 -6190528 UP 11 -6190528 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190560 homeCount = 102 -6190561 waitCount = 48 -6190561 ripCount = 46 -6190562 locktype1 = 2 -6190562 locktype2 = 7 -6190563 locktype3 = 5 -6190563 goalCount = 6 -6190564 goalTotal = 36 -6190564 otherCount = 52 -~~~ -6190565 CURRENTGOAL IS [3] -~~~ -6190622 DOWN 11 -6190622 0 255 -~~~ -~~~ -~~~ -6190646 UP 11 -6190646 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190660 homeCount = 102 -6190660 waitCount = 48 -6190661 ripCount = 46 -6190661 locktype1 = 2 -6190662 locktype2 = 7 -6190662 locktype3 = 5 -6190663 goalCount = 6 -6190663 goalTotal = 36 -6190664 otherCount = 52 -~~~ -6190665 CURRENTGOAL IS [3] -~~~ -6190698 DOWN 11 -6190698 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190740 homeCount = 102 -6190741 waitCount = 48 -6190741 ripCount = 46 -6190742 locktype1 = 2 -6190742 locktype2 = 7 -6190743 locktype3 = 5 -6190743 goalCount = 6 -6190744 goalTotal = 36 -6190744 otherCount = 52 -~~~ -6190745 CURRENTGOAL IS [3] -~~~ -6190756 UP 11 -6190756 1024 255 -6190794 DOWN 11 -6190794 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6190830 homeCount = 102 -6190830 waitCount = 48 -6190831 ripCount = 46 -6190831 locktype1 = 2 -6190832 locktype2 = 7 -6190832 locktype3 = 5 -6190833 goalCount = 6 -6190833 goalTotal = 36 -6190834 otherCount = 52 -~~~ -6190835 CURRENTGOAL IS [3] -~~~ -6190983 UP 11 -6190983 1024 255 -6191069 DOWN 11 -6191069 0 255 -6191089 UP 11 -6191089 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6191108 DOWN 11 -6191108 0 255 -~~~ -~~~ -6191110 homeCount = 102 -6191111 waitCount = 48 -6191111 ripCount = 46 -6191112 locktype1 = 2 -6191112 locktype2 = 7 -6191113 locktype3 = 5 -6191113 goalCount = 6 -6191114 goalTotal = 36 -6191114 otherCount = 52 -~~~ -6191115 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6191164 homeCount = 102 -6191165 waitCount = 48 -6191165 ripCount = 46 -6191166 locktype1 = 2 -6191166 locktype2 = 7 -6191167 locktype3 = 5 -6191167 goalCount = 6 -6191168 goalTotal = 36 -6191168 otherCount = 52 -~~~ -6191169 CURRENTGOAL IS [3] -~~~ -6191273 UP 11 -6191273 1024 255 -6198093 DOWN 11 -6198093 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6198130 homeCount = 102 -6198130 waitCount = 48 -6198131 ripCount = 46 -6198131 locktype1 = 2 -6198132 locktype2 = 7 -6198132 locktype3 = 5 -6198133 goalCount = 6 -6198133 goalTotal = 36 -6198134 otherCount = 52 -~~~ -6198135 CURRENTGOAL IS [3] -~~~ -6202523 UP 7 -6202523 64 255 -~~~ -~~~ -6203214 DOWN 7 -6203214 0 255 -~~~ -~~~ -6203234 0 254 -~~~ -~~~ -6203236 0 252 -~~~ -~~~ -6203237 0 248 -~~~ -~~~ -6203239 0 240 -~~~ -~~~ -6203241 0 224 -~~~ -~~~ -6203243 0 192 -~~~ -~~~ -6203245 0 128 -~~~ -~~~ -6203247 0 0 -~~~ -~~~ -6203248 0 512 -6203249 homeCount = 102 -6203250 waitCount = 48 -6203250 ripCount = 46 -6203251 locktype1 = 2 -6203251 locktype2 = 7 -6203273 locktype3 = 5 -6203273 goalCount = 6 -6203274 goalTotal = 36 -6203274 otherCount = 53 -~~~ -6207230 UP 10 -6207230 waslock = 0 -6207230 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6207261 512 16777728 -~~~ -6207411 512 512 -6207527 DOWN 10 -6207527 0 512 -~~~ -~~~ -6207550 0 2560 -~~~ -~~~ -6207551 0 2048 -6207552 homeCount = 103 -6207553 waitCount = 48 -6207553 ripCount = 46 -6207554 locktype1 = 2 -6207554 locktype2 = 7 -6207555 locktype3 = 5 -6207555 goalCount = 6 -6207556 goalTotal = 36 -6207556 otherCount = 53 -~~~ -6207598 UP 10 -6207598 waslock = 0 -6207598 512 2048 -~~~ -6212686 DOWN 10 -6212686 0 2048 -~~~ -~~~ -~~~ -~~~ -6212708 homeCount = 103 -6212709 waitCount = 48 -6212709 ripCount = 46 -6212710 locktype1 = 2 -6212710 locktype2 = 7 -6212711 locktype3 = 5 -6212711 goalCount = 6 -6212712 goalTotal = 36 -6212712 otherCount = 53 -~~~ -6212713 UP 10 -6212713 waslock = 0 -6212713 512 2048 -~~~ -6212776 DOWN 10 -6212775 0 2048 -~~~ -~~~ -~~~ -~~~ -6212795 homeCount = 103 -6212796 waitCount = 48 -6212796 ripCount = 46 -6212797 locktype1 = 2 -6212797 locktype2 = 7 -6212798 locktype3 = 5 -6212798 goalCount = 6 -6212799 goalTotal = 36 -6212799 otherCount = 53 -~~~ -6214555 UP 12 -6214555 2048 2048 -6217353 DOWN 12 -6217353 0 2048 -6217356 UP 12 -6217356 2048 2048 -6217399 DOWN 12 -6217398 0 2048 -6217438 UP 12 -6217438 2048 2048 -6217465 DOWN 12 -6217465 0 2048 -6217505 UP 12 -6217505 2048 2048 -6217817 DOWN 12 -6217817 0 2048 -6217832 UP 12 -6217831 2048 2048 -6219593 DOWN 12 -6219593 0 2048 -6219608 UP 12 -6219608 2048 2048 -6219625 DOWN 12 -6219625 0 2048 -6219676 UP 12 -6219676 2048 2048 -6219797 DOWN 12 -6219797 0 2048 -6219831 UP 12 -6219831 2048 2048 -6219937 DOWN 12 -6219937 0 2048 -6219953 UP 12 -6219953 2048 2048 -6221555 CLICK1 -6221555 CLICK2 -~~~ -~~~ -~~~ -6221572 2048 67110912 -~~~ -6221722 2048 2048 -6227526 DOWN 12 -6227526 0 2048 -~~~ -~~~ -6227551 0 0 -~~~ -6227552 UP 12 -6227552 2048 0 -~~~ -~~~ -6227554 2048 1 -~~~ -~~~ -6227556 2048 3 -~~~ -6227557 2048 7 -~~~ -~~~ -6227559 2048 15 -~~~ -~~~ -6227560 2048 31 -~~~ -~~~ -6227562 2048 63 -~~~ -~~~ -6227564 2048 127 -~~~ -~~~ -6227566 2048 255 -6227567 homeCount = 103 -6227588 waitCount = 49 -6227588 ripCount = 46 -6227589 locktype1 = 2 -6227589 locktype2 = 7 -6227590 locktype3 = 5 -6227590 goalCount = 6 -6227591 goalTotal = 36 -6227591 otherCount = 53 -~~~ -6227592 CURRENTGOAL IS [3] -~~~ -6227652 DOWN 12 -6227652 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227689 homeCount = 103 -6227689 waitCount = 49 -6227690 ripCount = 46 -6227690 locktype1 = 2 -6227691 locktype2 = 7 -6227691 locktype3 = 5 -6227692 goalCount = 6 -6227692 goalTotal = 36 -6227693 otherCount = 53 -~~~ -6227694 CURRENTGOAL IS [3] -~~~ -6227745 UP 12 -6227745 2048 255 -6227816 DOWN 12 -6227816 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227853 homeCount = 103 -6227853 waitCount = 49 -6227854 ripCount = 46 -6227854 locktype1 = 2 -6227855 locktype2 = 7 -6227855 locktype3 = 5 -6227856 goalCount = 6 -6227856 goalTotal = 36 -6227857 otherCount = 53 -~~~ -6227858 CURRENTGOAL IS [3] -~~~ -6227893 UP 12 -6227893 2048 255 -6227926 DOWN 12 -6227926 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6227964 homeCount = 103 -6227965 waitCount = 49 -6227966 ripCount = 46 -6227966 locktype1 = 2 -6227967 locktype2 = 7 -6227967 locktype3 = 5 -6227967 goalCount = 6 -6227968 goalTotal = 36 -6227968 otherCount = 53 -~~~ -6227970 CURRENTGOAL IS [3] -~~~ -6231199 UP 3 -6231199 4 255 -~~~ -~~~ -6231224 outer reward -~~~ -6231224 4 262399 -~~~ -~~~ -6231461 DOWN 3 -6231461 0 262399 -~~~ -~~~ -6231481 0 262398 -~~~ -~~~ -6231483 0 262396 -~~~ -~~~ -6231484 0 262392 -~~~ -~~~ -6231486 0 262384 -~~~ -~~~ -6231488 0 262368 -~~~ -~~~ -6231490 0 262336 -~~~ -~~~ -6231492 0 262272 -~~~ -~~~ -6231493 0 262144 -~~~ -~~~ -6231495 0 262656 -6231496 homeCount = 103 -6231497 waitCount = 49 -6231497 ripCount = 46 -6231498 locktype1 = 2 -6231519 locktype2 = 7 -6231519 locktype3 = 5 -6231520 goalCount = 7 -6231520 goalTotal = 37 -6231521 otherCount = 53 -~~~ -6231521 4 262656 -6231674 4 512 -6232282 DOWN 3 -6232282 0 512 -6232288 4 512 -6232415 DOWN 3 -6232415 0 512 -6232423 4 512 -6232682 DOWN 3 -6232682 0 512 -6232691 4 512 -6232821 DOWN 3 -6232821 0 512 -6232830 4 512 -6239654 DOWN 3 -6239654 0 512 -6239693 4 512 -6239759 DOWN 3 -6239759 0 512 -6243665 UP 10 -6243665 waslock = 0 -6243665 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6243697 512 16777728 -~~~ -6243847 512 512 -6247688 DOWN 10 -6247688 0 512 -~~~ -~~~ -6247711 0 2560 -~~~ -~~~ -6247713 0 2048 -6247714 homeCount = 104 -6247714 waitCount = 49 -6247715 ripCount = 46 -6247715 locktype1 = 2 -6247716 locktype2 = 7 -6247716 locktype3 = 5 -6247717 goalCount = 7 -6247717 goalTotal = 37 -6247718 otherCount = 53 -~~~ -6247723 UP 10 -6247723 waslock = 0 -6247723 512 2048 -~~~ -6247911 DOWN 10 -6247911 0 2048 -6247926 UP 10 -6247926 waslock = 0 -6247926 512 2048 -~~~ -~~~ -~~~ -~~~ -6247936 homeCount = 104 -6247937 waitCount = 49 -6247937 ripCount = 46 -6247938 locktype1 = 2 -6247938 locktype2 = 7 -6247939 locktype3 = 5 -6247939 goalCount = 7 -6247940 goalTotal = 37 -6247940 otherCount = 53 -~~~ -6247944 DOWN 10 -6247944 0 2048 -~~~ -6247985 UP 10 -6247986 waslock = 0 -6247985 512 2048 -~~~ -~~~ -~~~ -~~~ -6247991 homeCount = 104 -6247992 waitCount = 49 -6247992 ripCount = 46 -6247993 locktype1 = 2 -6247993 locktype2 = 7 -6247994 locktype3 = 5 -6247994 goalCount = 7 -6247995 goalTotal = 37 -6247995 otherCount = 53 -~~~ -~~~ -6248478 DOWN 10 -6248478 0 2048 -~~~ -~~~ -~~~ -~~~ -6248498 homeCount = 104 -6248498 waitCount = 49 -6248499 ripCount = 46 -6248499 locktype1 = 2 -6248499 locktype2 = 7 -6248500 locktype3 = 5 -6248500 goalCount = 7 -6248501 goalTotal = 37 -6248501 otherCount = 53 -~~~ -6250170 UP 12 -6250170 2048 2048 -6253007 DOWN 12 -6253007 0 2048 -6253018 UP 12 -6253018 2048 2048 -6253170 CLICK1 -6253170 CLICK2 -~~~ -~~~ -~~~ -6253198 2048 67110912 -~~~ -6253274 DOWN 12 -6253274 0 67110912 -6253295 UP 12 -6253295 2048 67110912 -6253348 2048 2048 -~~~ -~~~ -6253374 2048 0 -~~~ -~~~ -6253376 2048 1 -~~~ -~~~ -6253378 2048 3 -~~~ -~~~ -6253380 2048 7 -~~~ -~~~ -6253382 2048 15 -~~~ -~~~ -6253384 2048 31 -~~~ -~~~ -6253385 2048 63 -~~~ -~~~ -6253387 2048 127 -~~~ -~~~ -6253389 2048 255 -6253390 homeCount = 104 -6253390 waitCount = 50 -6253391 ripCount = 46 -6253392 locktype1 = 2 -6253412 locktype2 = 7 -6253413 locktype3 = 5 -6253413 goalCount = 7 -6253414 goalTotal = 37 -6253414 otherCount = 53 -~~~ -6253415 CURRENTGOAL IS [3] -~~~ -6253465 DOWN 12 -6253465 0 255 -6253469 UP 12 -6253469 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6253503 homeCount = 104 -6253504 waitCount = 50 -6253504 ripCount = 46 -6253505 locktype1 = 2 -6253505 locktype2 = 7 -6253506 locktype3 = 5 -6253506 goalCount = 7 -6253507 goalTotal = 37 -6253507 otherCount = 53 -~~~ -6253508 CURRENTGOAL IS [3] -~~~ -6259155 DOWN 12 -6259155 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259190 UP 12 -6259190 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -6259195 homeCount = 104 -6259196 waitCount = 50 -6259196 ripCount = 46 -6259197 locktype1 = 2 -6259197 locktype2 = 7 -6259198 locktype3 = 5 -6259198 goalCount = 7 -6259199 goalTotal = 37 -6259199 otherCount = 53 -~~~ -6259200 CURRENTGOAL IS [3] -~~~ -6259288 DOWN 12 -6259288 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259323 homeCount = 104 -6259324 waitCount = 50 -6259324 ripCount = 46 -6259325 locktype1 = 2 -6259325 locktype2 = 7 -6259326 locktype3 = 5 -6259326 goalCount = 7 -6259326 goalTotal = 37 -6259327 otherCount = 53 -~~~ -6259328 CURRENTGOAL IS [3] -~~~ -6259354 UP 12 -6259354 2048 255 -6259423 DOWN 12 -6259423 0 255 -6259433 UP 12 -6259433 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259464 homeCount = 104 -6259464 waitCount = 50 -6259465 ripCount = 46 -6259465 locktype1 = 2 -6259466 locktype2 = 7 -6259466 locktype3 = 5 -6259467 goalCount = 7 -6259467 goalTotal = 37 -6259468 otherCount = 53 -~~~ -6259469 CURRENTGOAL IS [3] -~~~ -6259556 DOWN 12 -6259556 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6259593 homeCount = 104 -6259593 waitCount = 50 -6259594 ripCount = 46 -6259594 locktype1 = 2 -6259595 locktype2 = 7 -6259595 locktype3 = 5 -6259596 goalCount = 7 -6259596 goalTotal = 37 -6259597 otherCount = 53 -~~~ -6259598 CURRENTGOAL IS [3] -~~~ -6259605 UP 12 -6259605 2048 255 -6262944 DOWN 12 -6262944 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6262983 homeCount = 104 -6262984 waitCount = 50 -6262984 ripCount = 46 -6262985 locktype1 = 2 -6262985 locktype2 = 7 -6262986 locktype3 = 5 -6262986 goalCount = 7 -6262987 goalTotal = 37 -6262987 otherCount = 53 -~~~ -6262988 CURRENTGOAL IS [3] -~~~ -6263015 UP 12 -6263015 2048 255 -6263063 DOWN 12 -6263063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6263105 homeCount = 104 -6263106 waitCount = 50 -6263106 ripCount = 46 -6263107 locktype1 = 2 -6263107 locktype2 = 7 -6263108 locktype3 = 5 -6263108 goalCount = 7 -6263109 goalTotal = 37 -6263109 otherCount = 53 -~~~ -6263110 CURRENTGOAL IS [3] -~~~ -6267639 UP 3 -6267639 4 255 -~~~ -~~~ -6267661 outer reward -~~~ -6267661 4 262399 -~~~ -~~~ -6267664 DOWN 3 -6267664 0 262399 -~~~ -~~~ -6267681 0 262398 -~~~ -~~~ -6267683 0 262396 -~~~ -~~~ -6267685 0 262392 -~~~ -~~~ -6267687 0 262384 -~~~ -~~~ -6267688 0 262368 -~~~ -~~~ -6267690 0 262336 -~~~ -~~~ -6267692 0 262272 -~~~ -~~~ -6267694 0 262144 -~~~ -~~~ -6267696 0 262656 -6267697 homeCount = 104 -6267697 waitCount = 50 -6267698 ripCount = 46 -6267719 locktype1 = 2 -6267719 locktype2 = 7 -6267720 locktype3 = 5 -6267720 goalCount = 8 -6267721 goalTotal = 38 -6267721 otherCount = 53 -~~~ -6267722 4 262656 -6267864 DOWN 3 -6267864 0 262656 -6267907 4 262656 -6268111 4 512 -6268292 DOWN 3 -6268292 0 512 -6268311 4 512 -6268414 DOWN 3 -6268414 0 512 -6268420 4 512 -6268533 DOWN 3 -6268533 0 512 -6268554 4 512 -6268660 DOWN 3 -6268660 0 512 -6268682 4 512 -6268788 DOWN 3 -6268788 0 512 -6268816 4 512 -6268915 DOWN 3 -6268915 0 512 -6268939 4 512 -6269056 DOWN 3 -6269056 0 512 -6269079 4 512 -6269201 DOWN 3 -6269201 0 512 -6269219 4 512 -6269342 DOWN 3 -6269342 0 512 -6269357 4 512 -6275261 DOWN 3 -6275261 0 512 -6275326 4 512 -6275364 DOWN 3 -6275364 0 512 -6279323 UP 10 -6279324 waslock = 0 -6279323 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6279349 512 16777728 -~~~ -6279499 512 512 -6279523 DOWN 10 -6279523 0 512 -~~~ -~~~ -6279540 0 2560 -~~~ -~~~ -6279542 0 2048 -6279543 homeCount = 105 -6279544 waitCount = 50 -6279544 ripCount = 46 -6279545 locktype1 = 2 -6279545 locktype2 = 7 -6279546 locktype3 = 5 -6279546 goalCount = 8 -6279547 goalTotal = 38 -6279547 otherCount = 53 -~~~ -6279555 UP 10 -6279556 waslock = 0 -6279555 512 2048 -~~~ -6284324 DOWN 10 -6284324 0 2048 -~~~ -~~~ -~~~ -~~~ -6284344 homeCount = 105 -6284345 waitCount = 50 -6284345 ripCount = 46 -6284346 locktype1 = 2 -6284346 locktype2 = 7 -6284346 locktype3 = 5 -6284347 goalCount = 8 -6284347 goalTotal = 38 -6284348 otherCount = 53 -~~~ -6286304 UP 12 -6286304 2048 2048 -6287753 DOWN 12 -6287753 0 2048 -6287762 UP 12 -6287762 2048 2048 -6288087 DOWN 12 -6288087 0 2048 -6288126 UP 12 -6288126 2048 2048 -6291804 CLICK1 -6291804 CLICK2 -~~~ -~~~ -~~~ -6291824 2048 67110912 -~~~ -6291974 2048 2048 -6292013 DOWN 12 -6292013 0 2048 -~~~ -6292031 UP 12 -6292031 2048 2048 -~~~ -~~~ -6292033 2048 0 -~~~ -~~~ -6292035 2048 1 -~~~ -6292036 2048 3 -~~~ -~~~ -6292037 2048 7 -~~~ -~~~ -6292039 2048 15 -~~~ -~~~ -6292041 2048 31 -~~~ -~~~ -6292043 2048 63 -~~~ -~~~ -6292044 2048 127 -~~~ -~~~ -6292046 2048 255 -6292047 homeCount = 105 -6292069 waitCount = 51 -6292069 ripCount = 46 -6292069 locktype1 = 2 -6292070 locktype2 = 7 -6292070 locktype3 = 5 -6292071 goalCount = 8 -6292071 goalTotal = 38 -6292072 otherCount = 53 -~~~ -6292073 CURRENTGOAL IS [3] -~~~ -6303041 DOWN 12 -6303041 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6303078 homeCount = 105 -6303078 waitCount = 51 -6303079 ripCount = 46 -6303079 locktype1 = 2 -6303080 locktype2 = 7 -6303080 locktype3 = 5 -6303081 goalCount = 8 -6303081 goalTotal = 38 -6303082 otherCount = 53 -~~~ -6303083 CURRENTGOAL IS [3] -~~~ -6315313 UP 3 -6315313 4 255 -~~~ -~~~ -6315334 outer reward -~~~ -6315334 4 262399 -~~~ -~~~ -6315575 DOWN 3 -6315575 0 262399 -~~~ -~~~ -6315601 0 262398 -~~~ -~~~ -6315603 0 262396 -~~~ -~~~ -6315605 0 262392 -~~~ -~~~ -6315607 0 262384 -~~~ -~~~ -6315609 0 262368 -~~~ -~~~ -6315610 0 262336 -~~~ -~~~ -6315612 0 262272 -~~~ -~~~ -6315614 0 262144 -~~~ -~~~ -6315616 0 262656 -6315617 homeCount = 105 -6315618 waitCount = 51 -6315618 ripCount = 46 -6315618 locktype1 = 2 -6315639 locktype2 = 7 -6315640 locktype3 = 5 -6315640 goalCount = 9 -6315641 goalTotal = 39 -6315641 otherCount = 53 -~~~ -6315642 4 262656 -6315784 4 512 -6316000 DOWN 3 -6316000 0 512 -6316026 4 512 -6316119 DOWN 3 -6316119 0 512 -6316154 4 512 -6316241 DOWN 3 -6316241 0 512 -6316280 4 512 -6316365 DOWN 3 -6316365 0 512 -6316407 4 512 -6316494 DOWN 3 -6316494 0 512 -6316535 4 512 -6316625 DOWN 3 -6316625 0 512 -6316661 4 512 -6316759 DOWN 3 -6316759 0 512 -6316793 4 512 -6316912 DOWN 3 -6316912 0 512 -6316933 4 512 -6317060 DOWN 3 -6317060 0 512 -6317083 4 512 -6317210 DOWN 3 -6317210 0 512 -6317225 4 512 -6317355 DOWN 3 -6317355 0 512 -6317371 4 512 -6320953 DOWN 3 -6320953 0 512 -6320959 4 512 -6323512 DOWN 3 -6323512 0 512 -6323580 4 512 -6323594 DOWN 3 -6323594 0 512 -6329005 UP 10 -6329005 waslock = 0 -6329005 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6329038 512 16777728 -~~~ -6329156 DOWN 10 -6329156 0 16777728 -~~~ -~~~ -6329185 0 16779776 -~~~ -~~~ -6329187 0 16779264 -6329188 homeCount = 106 -6329189 waitCount = 51 -6329189 ripCount = 46 -6329190 locktype1 = 2 -6329190 locktype2 = 7 -6329191 locktype3 = 5 -6329191 goalCount = 9 -6329192 goalTotal = 39 -6329192 otherCount = 53 -~~~ -6329213 UP 10 -6329214 waslock = 0 -6329213 512 2048 -~~~ -6333127 DOWN 10 -6333127 0 2048 -~~~ -~~~ -~~~ -~~~ -6333148 homeCount = 106 -6333149 waitCount = 51 -6333149 ripCount = 46 -6333150 locktype1 = 2 -6333150 locktype2 = 7 -6333151 locktype3 = 5 -6333151 goalCount = 9 -6333151 goalTotal = 39 -6333152 otherCount = 53 -~~~ -6334853 UP 12 -6334853 2048 2048 -6336358 DOWN 12 -6336358 0 2048 -6336394 UP 12 -6336394 2048 2048 -6336421 DOWN 12 -6336421 0 2048 -6336448 UP 12 -6336448 2048 2048 -6339836 DOWN 12 -6339836 0 2048 -6339849 UP 12 -6339849 2048 2048 -6340353 CLICK1 -6340353 CLICK2 -~~~ -~~~ -~~~ -6340372 2048 67110912 -~~~ -6340522 2048 2048 -6348413 DOWN 12 -6348413 0 2048 -~~~ -~~~ -6348439 0 0 -~~~ -~~~ -6348441 0 1 -~~~ -~~~ -6348442 0 3 -~~~ -~~~ -6348444 0 7 -~~~ -~~~ -6348446 0 15 -~~~ -~~~ -6348448 0 31 -~~~ -~~~ -6348450 0 63 -~~~ -~~~ -6348452 0 127 -~~~ -~~~ -6348453 0 255 -6348454 homeCount = 106 -6348455 waitCount = 52 -6348455 ripCount = 46 -6348456 locktype1 = 2 -6348456 locktype2 = 7 -6348478 locktype3 = 5 -6348478 goalCount = 9 -6348479 goalTotal = 39 -6348479 otherCount = 53 -~~~ -6348480 CURRENTGOAL IS [3] -~~~ -6348481 UP 12 -6348481 2048 255 -6348533 DOWN 12 -6348533 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6348567 homeCount = 106 -6348567 waitCount = 52 -6348568 ripCount = 46 -6348568 locktype1 = 2 -6348569 locktype2 = 7 -6348569 locktype3 = 5 -6348570 goalCount = 9 -6348570 goalTotal = 39 -6348571 otherCount = 53 -~~~ -6348572 CURRENTGOAL IS [3] -~~~ -6348593 UP 12 -6348593 2048 255 -6348632 DOWN 12 -6348631 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6348670 homeCount = 106 -6348671 waitCount = 52 -6348671 ripCount = 46 -6348672 locktype1 = 2 -6348672 locktype2 = 7 -6348673 locktype3 = 5 -6348673 goalCount = 9 -6348674 goalTotal = 39 -6348674 otherCount = 53 -~~~ -6348675 CURRENTGOAL IS [3] -~~~ -6348773 UP 12 -6348773 2048 255 -6349353 DOWN 12 -6349352 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6349389 homeCount = 106 -6349389 waitCount = 52 -6349390 ripCount = 46 -6349390 locktype1 = 2 -6349391 locktype2 = 7 -6349391 locktype3 = 5 -6349392 goalCount = 9 -6349392 goalTotal = 39 -6349393 otherCount = 53 -~~~ -6349394 CURRENTGOAL IS [3] -~~~ -6349471 UP 12 -6349471 2048 255 -6349488 DOWN 12 -6349488 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6349526 homeCount = 106 -6349527 waitCount = 52 -6349528 ripCount = 46 -6349528 locktype1 = 2 -6349529 locktype2 = 7 -6349529 locktype3 = 5 -6349529 goalCount = 9 -6349530 goalTotal = 39 -6349530 otherCount = 53 -~~~ -6349531 CURRENTGOAL IS [3] -~~~ -6352357 UP 3 -6352357 4 255 -6352373 DOWN 3 -6352373 0 255 -~~~ -~~~ -6352379 outer reward -~~~ -6352379 0 262399 -~~~ -~~~ -6352384 outerreps = 8 -~~~ -~~~ -~~~ -~~~ -6352397 0 262398 -~~~ -~~~ -6352399 0 262396 -~~~ -~~~ -6352401 0 262392 -~~~ -~~~ -6352403 0 262384 -~~~ -~~~ -6352404 0 262368 -~~~ -~~~ -6352406 0 262336 -~~~ -~~~ -6352408 0 262272 -~~~ -~~~ -6352410 0 262144 -~~~ -~~~ -6352412 0 262656 -6352413 homeCount = 106 -6352413 waitCount = 52 -6352414 ripCount = 46 -6352435 locktype1 = 2 -6352435 locktype2 = 7 -6352436 locktype3 = 5 -6352436 goalCount = 0 -6352437 goalTotal = 40 -6352437 otherCount = 53 -~~~ -6352438 4 262656 -6352613 DOWN 3 -6352613 0 262656 -6352654 4 262656 -6352829 4 512 -6353457 DOWN 3 -6353457 0 512 -6353469 4 512 -6353587 DOWN 3 -6353587 0 512 -6353600 4 512 -6353729 DOWN 3 -6353729 0 512 -6353735 4 512 -6353868 DOWN 3 -6353868 0 512 -6353873 4 512 -6360563 DOWN 3 -6360563 0 512 -6364715 UP 10 -6364715 waslock = 0 -6364715 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6364745 512 16777728 -~~~ -6364878 DOWN 10 -6364878 0 16777728 -6364892 UP 10 -6364892 waslock = 0 -6364891 512 16777728 -6364895 512 512 -~~~ -~~~ -6364910 512 2560 -~~~ -~~~ -6364912 512 2048 -6364913 homeCount = 107 -6364913 waitCount = 52 -6364914 ripCount = 46 -6364914 locktype1 = 2 -6364915 locktype2 = 7 -6364915 locktype3 = 5 -6364916 goalCount = 0 -6364916 goalTotal = 40 -6364917 otherCount = 53 -~~~ -~~~ -6367991 DOWN 10 -6367991 0 2048 -6368002 UP 10 -6368002 waslock = 0 -6368002 512 2048 -~~~ -~~~ -~~~ -~~~ -6368025 homeCount = 107 -6368026 waitCount = 52 -6368026 ripCount = 46 -6368027 locktype1 = 2 -6368027 locktype2 = 7 -6368028 locktype3 = 5 -6368028 goalCount = 0 -6368029 goalTotal = 40 -6368029 otherCount = 53 -~~~ -~~~ -6368090 DOWN 10 -6368090 0 2048 -~~~ -~~~ -~~~ -~~~ -6368115 homeCount = 107 -6368116 waitCount = 52 -6368116 ripCount = 46 -6368117 locktype1 = 2 -6368117 locktype2 = 7 -6368118 locktype3 = 5 -6368118 goalCount = 0 -6368119 goalTotal = 40 -6368119 otherCount = 53 -~~~ -6369955 UP 12 -6369955 2048 2048 -6370697 DOWN 12 -6370697 0 2048 -6370710 UP 12 -6370710 2048 2048 -6372380 DOWN 12 -6372380 0 2048 -6372417 UP 12 -6372417 2048 2048 -6372446 DOWN 12 -6372446 0 2048 -6372474 UP 12 -6372474 2048 2048 -6373955 CLICK1 -6373955 CLICK2 -~~~ -~~~ -~~~ -6373985 2048 67110912 -~~~ -6374135 2048 2048 -6381542 DOWN 12 -6381542 0 2048 -~~~ -~~~ -6381563 0 0 -~~~ -~~~ -6381564 0 1 -~~~ -~~~ -6381566 0 3 -~~~ -~~~ -6381568 0 7 -~~~ -~~~ -6381570 0 15 -~~~ -~~~ -6381572 0 31 -~~~ -~~~ -6381574 0 63 -~~~ -~~~ -6381575 0 127 -~~~ -~~~ -6381577 0 255 -6381578 homeCount = 107 -6381579 waitCount = 53 -6381579 ripCount = 46 -6381580 locktype1 = 2 -6381580 locktype2 = 7 -6381581 locktype3 = 5 -6381602 goalCount = 0 -6381602 goalTotal = 40 -6381603 otherCount = 53 -~~~ -6381604 CURRENTGOAL IS [7] -~~~ -6381604 UP 12 -6381604 2048 255 -6381673 DOWN 12 -6381673 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6381708 homeCount = 107 -6381709 waitCount = 53 -6381709 ripCount = 46 -6381710 locktype1 = 2 -6381710 locktype2 = 7 -6381711 locktype3 = 5 -6381711 goalCount = 0 -6381712 goalTotal = 40 -6381712 otherCount = 53 -~~~ -6381713 CURRENTGOAL IS [7] -~~~ -6381775 UP 12 -6381775 2048 255 -6383359 DOWN 12 -6383359 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6383398 homeCount = 107 -6383399 waitCount = 53 -6383399 ripCount = 46 -6383400 locktype1 = 2 -6383400 locktype2 = 7 -6383401 locktype3 = 5 -6383401 goalCount = 0 -6383402 goalTotal = 40 -6383402 otherCount = 53 -~~~ -6383403 CURRENTGOAL IS [7] -~~~ -6383439 UP 12 -6383439 2048 255 -6383453 DOWN 12 -6383453 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6383489 homeCount = 107 -6383490 waitCount = 53 -6383490 ripCount = 46 -6383491 locktype1 = 2 -6383491 locktype2 = 7 -6383492 locktype3 = 5 -6383492 goalCount = 0 -6383492 goalTotal = 40 -6383493 otherCount = 53 -~~~ -6383494 CURRENTGOAL IS [7] -~~~ -6386266 UP 3 -6386266 4 255 -~~~ -~~~ -6386457 DOWN 3 -6386457 0 255 -~~~ -~~~ -6386481 0 254 -~~~ -~~~ -6386483 0 252 -~~~ -~~~ -6386485 0 248 -~~~ -~~~ -6386486 0 240 -~~~ -~~~ -6386488 0 224 -~~~ -~~~ -6386490 0 192 -~~~ -~~~ -6386492 0 128 -~~~ -~~~ -6386494 0 0 -~~~ -~~~ -6386496 0 512 -6386497 homeCount = 107 -6386497 waitCount = 53 -6386498 ripCount = 46 -6386498 locktype1 = 2 -6386499 locktype2 = 7 -6386520 locktype3 = 5 -6386520 goalCount = 0 -6386521 goalTotal = 40 -6386521 otherCount = 54 -~~~ -6386522 4 512 -6387215 DOWN 3 -6387215 0 512 -6387280 4 512 -6387330 DOWN 3 -6387330 0 512 -6391562 UP 10 -6391563 waslock = 0 -6391562 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6391588 512 16777728 -~~~ -6391612 DOWN 10 -6391612 0 16777728 -~~~ -~~~ -6391632 0 16779776 -~~~ -~~~ -6391634 0 16779264 -6391635 homeCount = 108 -6391635 waitCount = 53 -6391636 ripCount = 46 -6391636 locktype1 = 2 -6391637 locktype2 = 7 -6391637 locktype3 = 5 -6391638 goalCount = 0 -6391638 goalTotal = 40 -6391639 otherCount = 54 -~~~ -6391738 0 2048 -6391756 UP 10 -6391757 waslock = 0 -6391756 512 2048 -~~~ -6396193 DOWN 10 -6396193 0 2048 -~~~ -~~~ -6396213 UP 10 -6396213 waslock = 0 -6396213 512 2048 -~~~ -~~~ -6396215 homeCount = 108 -6396216 waitCount = 53 -6396216 ripCount = 46 -6396217 locktype1 = 2 -6396217 locktype2 = 7 -6396218 locktype3 = 5 -6396218 goalCount = 0 -6396219 goalTotal = 40 -6396219 otherCount = 54 -~~~ -~~~ -6396293 DOWN 10 -6396293 0 2048 -~~~ -~~~ -~~~ -~~~ -6396321 homeCount = 108 -6396321 waitCount = 53 -6396322 ripCount = 46 -6396322 locktype1 = 2 -6396323 locktype2 = 7 -6396323 locktype3 = 5 -6396324 goalCount = 0 -6396324 goalTotal = 40 -6396325 otherCount = 54 -~~~ -6398084 UP 12 -6398084 2048 2048 -6400258 DOWN 12 -6400258 0 2048 -6400290 UP 12 -6400289 2048 2048 -6400802 DOWN 12 -6400802 0 2048 -6400821 UP 12 -6400821 2048 2048 -6403585 CLICK1 -6403585 CLICK2 -~~~ -~~~ -~~~ -6403609 2048 67110912 -~~~ -6403759 2048 2048 -6410651 DOWN 12 -6410651 0 2048 -~~~ -~~~ -6410669 0 0 -~~~ -~~~ -6410670 0 1 -~~~ -~~~ -6410672 0 3 -~~~ -~~~ -6410674 0 7 -~~~ -~~~ -6410676 0 15 -~~~ -~~~ -6410678 0 31 -~~~ -~~~ -6410680 0 63 -~~~ -~~~ -6410681 0 127 -~~~ -~~~ -6410683 0 255 -6410684 homeCount = 108 -6410685 waitCount = 54 -6410685 ripCount = 46 -6410686 locktype1 = 2 -6410686 locktype2 = 7 -6410707 locktype3 = 5 -6410708 goalCount = 0 -6410708 goalTotal = 40 -6410709 otherCount = 54 -~~~ -6410710 CURRENTGOAL IS [7] -~~~ -6410710 UP 12 -6410710 2048 255 -6410790 DOWN 12 -6410790 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6410827 homeCount = 108 -6410827 waitCount = 54 -6410828 ripCount = 46 -6410828 locktype1 = 2 -6410829 locktype2 = 7 -6410829 locktype3 = 5 -6410830 goalCount = 0 -6410830 goalTotal = 40 -6410831 otherCount = 54 -~~~ -6410832 CURRENTGOAL IS [7] -~~~ -6410869 UP 12 -6410869 2048 255 -6410882 DOWN 12 -6410882 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6410918 homeCount = 108 -6410919 waitCount = 54 -6410919 ripCount = 46 -6410920 locktype1 = 2 -6410920 locktype2 = 7 -6410921 locktype3 = 5 -6410921 goalCount = 0 -6410922 goalTotal = 40 -6410922 otherCount = 54 -~~~ -6410923 CURRENTGOAL IS [7] -~~~ -6411007 UP 12 -6411007 2048 255 -6412314 DOWN 12 -6412314 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412351 UP 12 -6412351 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412357 homeCount = 108 -6412358 waitCount = 54 -6412358 ripCount = 46 -6412359 locktype1 = 2 -6412359 locktype2 = 7 -6412360 locktype3 = 5 -6412360 goalCount = 0 -6412361 goalTotal = 40 -6412361 otherCount = 54 -~~~ -6412362 CURRENTGOAL IS [7] -~~~ -6412418 DOWN 12 -6412418 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6412457 homeCount = 108 -6412458 waitCount = 54 -6412458 ripCount = 46 -6412459 locktype1 = 2 -6412459 locktype2 = 7 -6412460 locktype3 = 5 -6412460 goalCount = 0 -6412461 goalTotal = 40 -6412461 otherCount = 54 -~~~ -6412462 CURRENTGOAL IS [7] -~~~ -6416338 UP 3 -6416338 4 255 -~~~ -~~~ -6417568 DOWN 3 -6417568 0 255 -~~~ -~~~ -6417592 0 254 -~~~ -~~~ -6417594 0 252 -~~~ -~~~ -6417596 0 248 -~~~ -~~~ -6417597 0 240 -~~~ -~~~ -6417599 0 224 -~~~ -~~~ -6417601 0 192 -~~~ -~~~ -6417603 0 128 -~~~ -~~~ -6417605 0 0 -~~~ -~~~ -6417607 0 512 -6417608 homeCount = 108 -6417608 waitCount = 54 -6417609 ripCount = 46 -6417609 locktype1 = 2 -6417610 locktype2 = 7 -6417631 locktype3 = 5 -6417631 goalCount = 0 -6417632 goalTotal = 40 -6417632 otherCount = 55 -~~~ -6417933 4 512 -6418142 DOWN 3 -6418142 0 512 -6421661 UP 10 -6421661 waslock = 0 -6421661 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6421689 512 16777728 -~~~ -6421839 512 512 -6425407 DOWN 10 -6425407 0 512 -~~~ -~~~ -6425434 0 2560 -~~~ -~~~ -6425436 0 2048 -6425437 homeCount = 109 -6425437 waitCount = 54 -6425438 ripCount = 46 -6425438 locktype1 = 2 -6425439 locktype2 = 7 -6425439 locktype3 = 5 -6425440 goalCount = 0 -6425440 goalTotal = 40 -6425441 otherCount = 55 -~~~ -6425446 UP 10 -6425446 waslock = 0 -6425446 512 2048 -~~~ -6425482 DOWN 10 -6425482 0 2048 -~~~ -~~~ -~~~ -~~~ -6425507 homeCount = 109 -6425508 waitCount = 54 -6425508 ripCount = 46 -6425509 locktype1 = 2 -6425509 locktype2 = 7 -6425510 locktype3 = 5 -6425510 goalCount = 0 -6425511 goalTotal = 40 -6425511 otherCount = 55 -~~~ -6427001 UP 12 -6427001 2048 2048 -6428272 DOWN 12 -6428272 0 2048 -6428389 UP 12 -6428389 2048 2048 -6429840 DOWN 12 -6429840 0 2048 -6429852 UP 12 -6429852 2048 2048 -6429884 DOWN 12 -6429884 0 2048 -6429912 UP 12 -6429912 2048 2048 -6430001 CLICK1 -6430001 CLICK2 -~~~ -~~~ -~~~ -6430025 2048 67110912 -~~~ -6430175 2048 2048 -6437146 DOWN 12 -6437145 0 2048 -~~~ -~~~ -6437173 0 0 -~~~ -~~~ -6437175 0 1 -~~~ -~~~ -6437176 0 3 -~~~ -~~~ -6437178 0 7 -~~~ -~~~ -6437180 0 15 -~~~ -~~~ -6437182 0 31 -~~~ -~~~ -6437184 0 63 -~~~ -~~~ -6437186 0 127 -~~~ -~~~ -6437187 0 255 -6437188 homeCount = 109 -6437189 waitCount = 55 -6437189 ripCount = 46 -6437190 locktype1 = 2 -6437190 locktype2 = 7 -6437191 locktype3 = 5 -6437212 goalCount = 0 -6437212 goalTotal = 40 -6437213 otherCount = 55 -~~~ -6437214 CURRENTGOAL IS [7] -~~~ -6448275 UP 1 -6448275 1 255 -~~~ -~~~ -6449347 DOWN 1 -6449347 0 255 -~~~ -~~~ -6449367 0 254 -~~~ -~~~ -6449369 0 252 -~~~ -~~~ -6449371 0 248 -~~~ -~~~ -6449373 0 240 -~~~ -~~~ -6449375 0 224 -~~~ -~~~ -6449376 0 192 -~~~ -~~~ -6449378 0 128 -~~~ -~~~ -6449380 0 0 -~~~ -~~~ -6449382 0 512 -6449383 homeCount = 109 -6449384 waitCount = 55 -6449384 ripCount = 46 -6449384 locktype1 = 2 -6449385 locktype2 = 7 -6449405 locktype3 = 5 -6449406 goalCount = 0 -6449406 goalTotal = 40 -6449407 otherCount = 56 -~~~ -6457553 UP 10 -6457553 waslock = 0 -6457553 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6457583 512 16777728 -~~~ -6457733 512 512 -6457762 DOWN 10 -6457762 0 512 -6457777 UP 10 -6457778 waslock = 0 -6457777 512 512 -~~~ -~~~ -6457799 512 2560 -~~~ -~~~ -6457801 512 2048 -6457802 homeCount = 110 -6457802 waitCount = 55 -6457803 ripCount = 46 -6457803 locktype1 = 2 -6457804 locktype2 = 7 -6457804 locktype3 = 5 -6457805 goalCount = 0 -6457805 goalTotal = 40 -6457806 otherCount = 56 -~~~ -~~~ -6463809 DOWN 10 -6463809 0 2048 -~~~ -~~~ -~~~ -~~~ -6463830 homeCount = 110 -6463831 waitCount = 55 -6463831 ripCount = 46 -6463832 locktype1 = 2 -6463832 locktype2 = 7 -6463833 locktype3 = 5 -6463833 goalCount = 0 -6463833 goalTotal = 40 -6463834 otherCount = 56 -~~~ -6463835 UP 10 -6463835 waslock = 0 -6463835 512 2048 -~~~ -6463903 DOWN 10 -6463903 0 2048 -~~~ -~~~ -~~~ -~~~ -6463930 homeCount = 110 -6463930 waitCount = 55 -6463931 ripCount = 46 -6463931 locktype1 = 2 -6463932 locktype2 = 7 -6463932 locktype3 = 5 -6463933 goalCount = 0 -6463933 goalTotal = 40 -6463934 otherCount = 56 -~~~ -6465881 UP 12 -6465881 2048 2048 -6467657 DOWN 12 -6467657 0 2048 -6467693 UP 12 -6467693 2048 2048 -6468741 DOWN 12 -6468741 0 2048 -6468762 UP 12 -6468762 2048 2048 -6468914 DOWN 12 -6468914 0 2048 -6468932 UP 12 -6468932 2048 2048 -6472795 DOWN 12 -6472795 0 2048 -6472832 UP 12 -6472832 2048 2048 -6472881 CLICK1 -6472881 CLICK2 -~~~ -~~~ -~~~ -6472910 2048 67110912 -~~~ -6473060 2048 2048 -6479548 DOWN 12 -6479548 0 2048 -~~~ -~~~ -6479568 0 0 -~~~ -~~~ -6479570 0 1 -~~~ -~~~ -6479572 0 3 -~~~ -~~~ -6479573 0 7 -~~~ -~~~ -6479575 0 15 -~~~ -~~~ -6479577 0 31 -~~~ -~~~ -6479579 0 63 -~~~ -~~~ -6479581 0 127 -~~~ -~~~ -6479583 0 255 -6479584 homeCount = 110 -6479584 waitCount = 56 -6479585 ripCount = 46 -6479585 locktype1 = 2 -6479586 locktype2 = 7 -6479586 locktype3 = 5 -6479607 goalCount = 0 -6479608 goalTotal = 40 -6479608 otherCount = 56 -~~~ -6479609 CURRENTGOAL IS [7] -~~~ -6479609 UP 12 -6479609 2048 255 -6479644 DOWN 12 -6479644 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6479684 homeCount = 110 -6479685 waitCount = 56 -6479685 ripCount = 46 -6479686 locktype1 = 2 -6479686 locktype2 = 7 -6479686 locktype3 = 5 -6479687 goalCount = 0 -6479687 goalTotal = 40 -6479688 otherCount = 56 -~~~ -6479689 CURRENTGOAL IS [7] -~~~ -6485355 UP 8 -6485355 128 255 -~~~ -~~~ -6486346 DOWN 8 -6486346 0 255 -~~~ -~~~ -6486369 0 254 -~~~ -~~~ -6486371 0 252 -~~~ -~~~ -6486372 0 248 -~~~ -~~~ -6486374 0 240 -~~~ -~~~ -6486376 0 224 -~~~ -~~~ -6486378 0 192 -~~~ -~~~ -6486380 0 128 -~~~ -~~~ -6486381 0 0 -~~~ -~~~ -6486383 0 512 -6486384 homeCount = 110 -6486385 waitCount = 56 -6486385 ripCount = 46 -6486386 locktype1 = 2 -6486386 locktype2 = 7 -6486407 locktype3 = 5 -6486408 goalCount = 0 -6486408 goalTotal = 40 -6486409 otherCount = 57 -~~~ -6491312 UP 10 -6491312 waslock = 0 -6491312 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6491343 512 16777728 -~~~ -6491493 512 512 -6497957 DOWN 10 -6497957 0 512 -~~~ -~~~ -6497977 0 1536 -~~~ -~~~ -6497979 0 1024 -6497980 homeCount = 111 -6497981 waitCount = 56 -6497981 ripCount = 46 -6497982 locktype1 = 2 -6497982 locktype2 = 7 -6497983 locktype3 = 5 -6497983 goalCount = 0 -6497984 goalTotal = 40 -6497984 otherCount = 57 -~~~ -6500268 UP 11 -6500268 1024 1024 -6501862 DOWN 11 -6501862 0 1024 -6501896 UP 11 -6501896 1024 1024 -6502555 DOWN 11 -6502555 0 1024 -6502573 UP 11 -6502573 1024 1024 -6502784 DOWN 11 -6502784 0 1024 -6502832 UP 11 -6502832 1024 1024 -6502852 DOWN 11 -6502852 0 1024 -6502873 UP 11 -6502873 1024 1024 -6502971 DOWN 11 -6502971 0 1024 -6502994 UP 11 -6502994 1024 1024 -6503021 DOWN 11 -6503021 0 1024 -6503040 UP 11 -6503040 1024 1024 -6503112 DOWN 11 -6503112 0 1024 -6503129 UP 11 -6503129 1024 1024 -6503268 BEEP1 -6503268 BEEP2 -~~~ -~~~ -~~~ -6503292 1024 33555456 -~~~ -6503442 1024 1024 -6503531 DOWN 11 -6503531 0 1024 -6503557 UP 11 -6503557 1024 1024 -~~~ -~~~ -6503943 1024 0 -~~~ -~~~ -6503945 1024 1 -~~~ -~~~ -6503947 1024 3 -~~~ -~~~ -6503949 1024 7 -~~~ -~~~ -6503950 1024 15 -~~~ -~~~ -6503952 1024 31 -~~~ -~~~ -6503954 1024 63 -~~~ -~~~ -6503956 1024 127 -~~~ -~~~ -6503958 1024 255 -6503959 homeCount = 111 -6503959 waitCount = 56 -6503960 ripCount = 47 -6503960 locktype1 = 2 -6503981 locktype2 = 7 -6503981 locktype3 = 5 -6503982 goalCount = 0 -6503982 goalTotal = 40 -6503983 otherCount = 57 -~~~ -6503984 CURRENTGOAL IS [7] -~~~ -6508798 DOWN 11 -6508798 0 255 -6508816 UP 11 -6508816 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6508838 homeCount = 111 -6508839 waitCount = 56 -6508839 ripCount = 47 -6508840 locktype1 = 2 -6508840 locktype2 = 7 -6508841 locktype3 = 5 -6508841 goalCount = 0 -6508842 goalTotal = 40 -6508842 otherCount = 57 -~~~ -6508843 CURRENTGOAL IS [7] -~~~ -6508920 DOWN 11 -6508920 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6508959 homeCount = 111 -6508959 waitCount = 56 -6508960 ripCount = 47 -6508960 locktype1 = 2 -6508961 locktype2 = 7 -6508961 locktype3 = 5 -6508962 goalCount = 0 -6508962 goalTotal = 40 -6508963 otherCount = 57 -~~~ -6508964 CURRENTGOAL IS [7] -~~~ -6508969 UP 11 -6508969 1024 255 -6511527 DOWN 11 -6511527 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6511571 homeCount = 111 -6511571 waitCount = 56 -6511572 ripCount = 47 -6511572 locktype1 = 2 -6511573 locktype2 = 7 -6511573 locktype3 = 5 -6511574 goalCount = 0 -6511574 goalTotal = 40 -6511574 otherCount = 57 -~~~ -6511576 CURRENTGOAL IS [7] -~~~ -6511576 UP 11 -6511576 1024 255 -6511638 DOWN 11 -6511638 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6511680 homeCount = 111 -6511680 waitCount = 56 -6511681 ripCount = 47 -6511681 locktype1 = 2 -6511682 locktype2 = 7 -6511682 locktype3 = 5 -6511683 goalCount = 0 -6511683 goalTotal = 40 -6511684 otherCount = 57 -~~~ -6511685 CURRENTGOAL IS [7] -~~~ -6512177 UP 11 -6512177 1024 255 -6513881 DOWN 11 -6513881 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6513921 homeCount = 111 -6513921 waitCount = 56 -6513922 ripCount = 47 -6513922 locktype1 = 2 -6513923 locktype2 = 7 -6513923 locktype3 = 5 -6513924 goalCount = 0 -6513924 goalTotal = 40 -6513925 otherCount = 57 -~~~ -6513926 CURRENTGOAL IS [7] -~~~ -6518545 UP 5 -6518545 16 255 -~~~ -~~~ -6518724 DOWN 5 -6518723 0 255 -~~~ -~~~ -6518744 0 254 -~~~ -~~~ -6518745 0 252 -~~~ -~~~ -6518747 0 248 -~~~ -~~~ -6518749 0 240 -~~~ -~~~ -6518751 0 224 -~~~ -~~~ -6518753 0 192 -~~~ -~~~ -6518754 0 128 -~~~ -~~~ -6518756 0 0 -~~~ -~~~ -6518758 0 512 -6518759 homeCount = 111 -6518760 waitCount = 56 -6518760 ripCount = 47 -6518761 locktype1 = 2 -6518761 locktype2 = 7 -6518782 locktype3 = 5 -6518783 goalCount = 0 -6518783 goalTotal = 40 -6518784 otherCount = 58 -~~~ -6518788 16 512 -6519650 DOWN 5 -6519650 0 512 -6524649 UP 10 -6524649 waslock = 0 -6524649 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6524681 512 16777728 -~~~ -6524831 512 512 -6529752 DOWN 10 -6529752 0 512 -~~~ -~~~ -6529776 0 2560 -~~~ -~~~ -6529778 0 2048 -6529779 homeCount = 112 -6529779 waitCount = 56 -6529780 ripCount = 47 -6529780 locktype1 = 2 -6529781 locktype2 = 7 -6529781 locktype3 = 5 -6529782 goalCount = 0 -6529782 goalTotal = 40 -6529783 otherCount = 58 -~~~ -6530785 UP 10 -6530786 waslock = 0 -6530785 512 2048 -~~~ -6531302 DOWN 10 -6531302 0 2048 -~~~ -~~~ -~~~ -~~~ -6531328 homeCount = 112 -6531329 waitCount = 56 -6531329 ripCount = 47 -6531330 locktype1 = 2 -6531330 locktype2 = 7 -6531331 locktype3 = 5 -6531331 goalCount = 0 -6531332 goalTotal = 40 -6531332 otherCount = 58 -~~~ -6533320 UP 12 -6533320 2048 2048 -6536249 DOWN 12 -6536249 0 2048 -6536449 LOCKOUT 3 -~~~ -6536465 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6536471 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6536576 UP 12 -6536576 2048 0 -6536890 DOWN 12 -6536890 0 0 -6561465 LOCKEND -~~~ -~~~ -~~~ -6561485 0 512 -6569294 UP 10 -6569295 waslock = 0 -6569294 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6569321 512 16777728 -~~~ -6569368 DOWN 10 -6569368 0 16777728 -6569397 UP 10 -6569397 waslock = 0 -6569397 512 16777728 -~~~ -~~~ -6569400 512 16778752 -~~~ -~~~ -6569402 512 16778240 -6569403 homeCount = 113 -6569404 waitCount = 56 -6569404 ripCount = 47 -6569405 locktype1 = 2 -6569405 locktype2 = 7 -6569405 locktype3 = 6 -6569406 goalCount = 0 -6569406 goalTotal = 40 -6569428 otherCount = 58 -~~~ -~~~ -6569470 512 1024 -6569498 DOWN 10 -6569498 0 1024 -~~~ -~~~ -~~~ -6569518 UP 10 -6569518 waslock = 0 -6569518 512 1024 -~~~ -6569520 homeCount = 113 -6569520 waitCount = 56 -6569521 ripCount = 47 -6569521 locktype1 = 2 -6569522 locktype2 = 7 -6569522 locktype3 = 6 -6569523 goalCount = 0 -6569523 goalTotal = 40 -6569524 otherCount = 58 -~~~ -~~~ -6569573 DOWN 10 -6569573 0 1024 -~~~ -~~~ -~~~ -~~~ -6569600 homeCount = 113 -6569601 waitCount = 56 -6569601 ripCount = 47 -6569602 locktype1 = 2 -6569602 locktype2 = 7 -6569603 locktype3 = 6 -6569603 goalCount = 0 -6569604 goalTotal = 40 -6569604 otherCount = 58 -~~~ -6569619 UP 10 -6569620 waslock = 0 -6569619 512 1024 -~~~ -6569711 DOWN 10 -6569711 0 1024 -~~~ -~~~ -~~~ -~~~ -6569740 homeCount = 113 -6569741 waitCount = 56 -6569741 ripCount = 47 -6569742 locktype1 = 2 -6569742 locktype2 = 7 -6569742 locktype3 = 6 -6569743 goalCount = 0 -6569743 goalTotal = 40 -6569744 otherCount = 58 -~~~ -6569744 UP 10 -6569745 waslock = 0 -6569744 512 1024 -~~~ -6570069 DOWN 10 -6570069 0 1024 -~~~ -~~~ -~~~ -~~~ -6570090 homeCount = 113 -6570090 waitCount = 56 -6570091 ripCount = 47 -6570091 locktype1 = 2 -6570092 locktype2 = 7 -6570092 locktype3 = 6 -6570093 goalCount = 0 -6570093 goalTotal = 40 -6570094 otherCount = 58 -~~~ -6570155 UP 10 -6570155 waslock = 0 -6570155 512 1024 -~~~ -6570216 DOWN 10 -6570216 0 1024 -~~~ -~~~ -~~~ -~~~ -6570241 homeCount = 113 -6570242 waitCount = 56 -6570242 ripCount = 47 -6570243 locktype1 = 2 -6570243 locktype2 = 7 -6570244 locktype3 = 6 -6570244 goalCount = 0 -6570245 goalTotal = 40 -6570245 otherCount = 58 -~~~ -6570297 UP 10 -6570297 waslock = 0 -6570297 512 1024 -~~~ -6570360 DOWN 10 -6570360 0 1024 -~~~ -~~~ -~~~ -~~~ -6570390 homeCount = 113 -6570390 waitCount = 56 -6570391 ripCount = 47 -6570391 locktype1 = 2 -6570392 locktype2 = 7 -6570392 locktype3 = 6 -6570393 goalCount = 0 -6570393 goalTotal = 40 -6570394 otherCount = 58 -~~~ -6570433 UP 10 -6570433 waslock = 0 -6570432 512 1024 -~~~ -6573876 DOWN 10 -6573876 0 1024 -~~~ -~~~ -~~~ -~~~ -6573901 homeCount = 113 -6573902 waitCount = 56 -6573902 ripCount = 47 -6573903 locktype1 = 2 -6573903 locktype2 = 7 -6573903 locktype3 = 6 -6573904 goalCount = 0 -6573904 goalTotal = 40 -6573905 otherCount = 58 -~~~ -6573934 UP 10 -6573935 waslock = 0 -6573934 512 1024 -~~~ -6573977 DOWN 10 -6573977 0 1024 -~~~ -~~~ -~~~ -~~~ -6574003 homeCount = 113 -6574004 waitCount = 56 -6574004 ripCount = 47 -6574005 locktype1 = 2 -6574005 locktype2 = 7 -6574006 locktype3 = 6 -6574006 goalCount = 0 -6574007 goalTotal = 40 -6574007 otherCount = 58 -~~~ -6575372 UP 11 -6575372 1024 1024 -6576446 DOWN 11 -6576446 0 1024 -6576491 UP 11 -6576491 1024 1024 -6577984 DOWN 11 -6577984 0 1024 -6577998 UP 11 -6577998 1024 1024 -6578373 BEEP1 -6578373 BEEP2 -~~~ -~~~ -~~~ -6578399 1024 33555456 -~~~ -6578549 1024 1024 -6578714 DOWN 11 -6578714 0 1024 -6578721 UP 11 -6578721 1024 1024 -6578866 DOWN 11 -6578866 0 1024 -6578903 UP 11 -6578903 1024 1024 -~~~ -~~~ -6579074 1024 0 -~~~ -~~~ -6579075 1024 1 -~~~ -~~~ -6579077 1024 3 -~~~ -~~~ -6579079 1024 7 -~~~ -~~~ -6579081 1024 15 -~~~ -~~~ -6579083 1024 31 -~~~ -~~~ -6579085 1024 63 -~~~ -~~~ -6579086 1024 127 -~~~ -~~~ -6579088 1024 255 -6579089 homeCount = 113 -6579090 waitCount = 56 -6579090 ripCount = 48 -6579091 locktype1 = 2 -6579112 locktype2 = 7 -6579112 locktype3 = 6 -6579113 goalCount = 0 -6579113 goalTotal = 40 -6579113 otherCount = 58 -~~~ -6579115 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6579142 homeCount = 113 -6579143 waitCount = 56 -6579143 ripCount = 48 -6579144 locktype1 = 2 -6579144 locktype2 = 7 -6579145 locktype3 = 6 -6579145 goalCount = 0 -6579146 goalTotal = 40 -6579146 otherCount = 58 -~~~ -6579147 CURRENTGOAL IS [7] -~~~ -6586385 DOWN 11 -6586385 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6586420 homeCount = 113 -6586421 waitCount = 56 -6586421 ripCount = 48 -6586422 locktype1 = 2 -6586422 locktype2 = 7 -6586422 locktype3 = 6 -6586423 goalCount = 0 -6586423 goalTotal = 40 -6586424 otherCount = 58 -~~~ -6586425 CURRENTGOAL IS [7] -~~~ -6590698 UP 7 -6590698 64 255 -6590720 DOWN 7 -6590720 0 255 -~~~ -~~~ -6590725 outer reward -~~~ -6590725 0 4194559 -~~~ -~~~ -~~~ -~~~ -6590745 0 4194558 -~~~ -~~~ -6590747 0 4194556 -~~~ -~~~ -6590749 0 4194552 -~~~ -~~~ -6590750 0 4194544 -~~~ -~~~ -6590752 0 4194528 -~~~ -~~~ -6590754 0 4194496 -~~~ -~~~ -6590756 0 4194432 -~~~ -~~~ -6590758 0 4194304 -~~~ -~~~ -6590760 0 4194816 -6590761 homeCount = 113 -6590761 waitCount = 56 -6590762 ripCount = 48 -6590782 locktype1 = 2 -6590783 locktype2 = 7 -6590783 locktype3 = 6 -6590784 goalCount = 1 -6590784 goalTotal = 41 -6590785 otherCount = 58 -~~~ -6590785 64 4194816 -6591175 64 512 -6599661 DOWN 7 -6599661 0 512 -6608285 UP 10 -6608286 waslock = 0 -6608285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6608312 512 16777728 -~~~ -6608462 512 512 -6608513 DOWN 10 -6608513 0 512 -~~~ -~~~ -6608534 0 2560 -~~~ -~~~ -6608535 0 2048 -6608536 homeCount = 114 -6608537 waitCount = 56 -6608537 ripCount = 48 -6608538 locktype1 = 2 -6608538 locktype2 = 7 -6608539 locktype3 = 6 -6608539 goalCount = 1 -6608540 goalTotal = 41 -6608540 otherCount = 58 -~~~ -6608630 UP 10 -6608630 waslock = 0 -6608630 512 2048 -~~~ -6613637 DOWN 10 -6613637 0 2048 -~~~ -~~~ -~~~ -~~~ -6613666 homeCount = 114 -6613667 waitCount = 56 -6613667 ripCount = 48 -6613668 locktype1 = 2 -6613668 locktype2 = 7 -6613669 locktype3 = 6 -6613669 goalCount = 1 -6613670 goalTotal = 41 -6613670 otherCount = 58 -~~~ -6616329 UP 12 -6616329 2048 2048 -6619830 CLICK1 -6619830 CLICK2 -~~~ -~~~ -~~~ -6619856 2048 67110912 -~~~ -6620006 2048 2048 -6628530 DOWN 12 -6628530 0 2048 -6628552 UP 12 -6628552 2048 2048 -~~~ -~~~ -6628554 2048 0 -~~~ -~~~ -6628556 2048 1 -~~~ -~~~ -6628557 2048 3 -~~~ -~~~ -6628559 2048 7 -~~~ -~~~ -6628561 2048 15 -~~~ -~~~ -6628563 2048 31 -~~~ -~~~ -6628565 2048 63 -~~~ -~~~ -6628566 2048 127 -~~~ -~~~ -6628568 2048 255 -6628569 homeCount = 114 -6628570 waitCount = 57 -6628591 ripCount = 48 -6628591 locktype1 = 2 -6628592 locktype2 = 7 -6628592 locktype3 = 6 -6628592 goalCount = 1 -6628593 goalTotal = 41 -6628593 otherCount = 58 -~~~ -6628595 CURRENTGOAL IS [7] -~~~ -6628616 DOWN 12 -6628616 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6628645 homeCount = 114 -6628646 waitCount = 57 -6628646 ripCount = 48 -6628647 locktype1 = 2 -6628647 locktype2 = 7 -6628648 locktype3 = 6 -6628648 goalCount = 1 -6628648 goalTotal = 41 -6628649 otherCount = 58 -~~~ -6628650 CURRENTGOAL IS [7] -~~~ -6632543 UP 4 -6632543 8 255 -~~~ -~~~ -6633261 DOWN 4 -6633261 0 255 -~~~ -~~~ -6633284 0 254 -~~~ -~~~ -6633286 0 252 -~~~ -~~~ -6633288 0 248 -~~~ -~~~ -6633289 0 240 -~~~ -~~~ -6633291 0 224 -~~~ -~~~ -6633293 0 192 -~~~ -~~~ -6633295 0 128 -~~~ -~~~ -6633297 0 0 -~~~ -~~~ -6633299 0 512 -6633300 homeCount = 114 -6633300 waitCount = 57 -6633301 ripCount = 48 -6633301 locktype1 = 2 -6633302 locktype2 = 7 -6633323 locktype3 = 6 -6633323 goalCount = 1 -6633324 goalTotal = 41 -6633324 otherCount = 59 -~~~ -6637699 UP 10 -6637699 waslock = 0 -6637699 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6637730 512 16777728 -~~~ -6637866 DOWN 10 -6637866 0 16777728 -6637880 0 512 -~~~ -~~~ -6637887 0 2560 -~~~ -~~~ -6637889 0 2048 -6637890 homeCount = 115 -6637890 waitCount = 57 -6637891 ripCount = 48 -6637891 locktype1 = 2 -6637892 locktype2 = 7 -6637892 locktype3 = 6 -6637893 goalCount = 1 -6637893 goalTotal = 41 -6637894 otherCount = 59 -~~~ -6637949 UP 10 -6637949 waslock = 0 -6637949 512 2048 -~~~ -6640995 DOWN 10 -6640995 0 2048 -~~~ -~~~ -~~~ -~~~ -6641017 homeCount = 115 -6641017 waitCount = 57 -6641018 ripCount = 48 -6641018 locktype1 = 2 -6641019 locktype2 = 7 -6641019 locktype3 = 6 -6641020 goalCount = 1 -6641020 goalTotal = 41 -6641021 otherCount = 59 -~~~ -6642706 UP 12 -6642706 2048 2048 -6645350 DOWN 12 -6645350 0 2048 -6645380 UP 12 -6645380 2048 2048 -6647206 CLICK1 -6647206 CLICK2 -~~~ -~~~ -~~~ -6647227 2048 67110912 -~~~ -6647377 2048 2048 -6657145 DOWN 12 -6657144 0 2048 -~~~ -~~~ -6657165 0 0 -~~~ -~~~ -6657167 0 1 -~~~ -~~~ -6657169 0 3 -~~~ -~~~ -6657170 0 7 -~~~ -~~~ -6657172 0 15 -~~~ -~~~ -6657174 0 31 -~~~ -~~~ -6657176 0 63 -~~~ -~~~ -6657178 0 127 -~~~ -~~~ -6657180 0 255 -6657181 homeCount = 115 -6657181 waitCount = 58 -6657182 ripCount = 48 -6657182 locktype1 = 2 -6657183 locktype2 = 7 -6657204 locktype3 = 6 -6657204 goalCount = 1 -6657205 goalTotal = 41 -6657205 otherCount = 59 -~~~ -6657206 CURRENTGOAL IS [7] -~~~ -6657218 UP 12 -6657218 2048 255 -6657280 DOWN 12 -6657280 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6657313 homeCount = 115 -6657314 waitCount = 58 -6657314 ripCount = 48 -6657315 locktype1 = 2 -6657315 locktype2 = 7 -6657316 locktype3 = 6 -6657316 goalCount = 1 -6657317 goalTotal = 41 -6657317 otherCount = 59 -~~~ -6657318 CURRENTGOAL IS [7] -~~~ -6661264 UP 3 -6661264 4 255 -~~~ -~~~ -6661872 DOWN 3 -6661872 0 255 -~~~ -~~~ -6661892 0 254 -~~~ -~~~ -6661894 0 252 -~~~ -~~~ -6661896 0 248 -~~~ -~~~ -6661898 0 240 -~~~ -~~~ -6661900 0 224 -~~~ -~~~ -6661901 0 192 -~~~ -~~~ -6661903 0 128 -~~~ -~~~ -6661905 0 0 -~~~ -~~~ -6661907 0 512 -6661908 homeCount = 115 -6661909 waitCount = 58 -6661909 ripCount = 48 -6661909 locktype1 = 2 -6661910 locktype2 = 7 -6661931 locktype3 = 6 -6661931 goalCount = 1 -6661932 goalTotal = 41 -6661932 otherCount = 60 -~~~ -6661933 4 512 -6662264 DOWN 3 -6662264 0 512 -6665814 UP 10 -6665814 waslock = 0 -6665814 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6665840 512 16777728 -~~~ -6665975 DOWN 10 -6665975 0 16777728 -6665990 0 512 -~~~ -~~~ -6665993 0 1536 -~~~ -~~~ -6665995 0 1024 -6665996 homeCount = 116 -6665997 waitCount = 58 -6665997 ripCount = 48 -6665998 locktype1 = 2 -6665998 locktype2 = 7 -6665999 locktype3 = 6 -6665999 goalCount = 1 -6666000 goalTotal = 41 -6666000 otherCount = 60 -~~~ -6666060 UP 10 -6666060 waslock = 0 -6666060 512 1024 -~~~ -6671137 DOWN 10 -6671137 0 1024 -~~~ -~~~ -~~~ -~~~ -6671163 homeCount = 116 -6671163 waitCount = 58 -6671164 ripCount = 48 -6671164 locktype1 = 2 -6671165 locktype2 = 7 -6671165 locktype3 = 6 -6671166 goalCount = 1 -6671166 goalTotal = 41 -6671167 otherCount = 60 -~~~ -6671175 UP 10 -6671175 waslock = 0 -6671175 512 1024 -6671210 DOWN 10 -6671210 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -6671233 homeCount = 116 -6671234 waitCount = 58 -6671234 ripCount = 48 -6671235 locktype1 = 2 -6671235 locktype2 = 7 -6671236 locktype3 = 6 -6671236 goalCount = 1 -6671237 goalTotal = 41 -6671237 otherCount = 60 -~~~ -6672888 UP 11 -6672888 1024 1024 -6675281 DOWN 11 -6675281 0 1024 -6675325 UP 11 -6675325 1024 1024 -6675888 BEEP1 -6675888 BEEP2 -~~~ -~~~ -~~~ -6675910 1024 33555456 -~~~ -6676060 1024 1024 -6683979 DOWN 11 -6683979 0 1024 -~~~ -~~~ -6683999 0 0 -~~~ -~~~ -6684001 0 1 -~~~ -~~~ -6684003 0 3 -~~~ -~~~ -6684004 0 7 -~~~ -~~~ -6684006 0 15 -~~~ -~~~ -6684008 0 31 -~~~ -~~~ -6684010 0 63 -~~~ -~~~ -6684012 0 127 -~~~ -~~~ -6684014 0 255 -6684015 homeCount = 116 -6684015 waitCount = 58 -6684016 ripCount = 49 -6684016 locktype1 = 2 -6684017 locktype2 = 7 -6684017 locktype3 = 6 -6684038 goalCount = 1 -6684039 goalTotal = 41 -6684039 otherCount = 60 -~~~ -6684040 CURRENTGOAL IS [7] -~~~ -6684055 UP 11 -6684055 1024 255 -6684116 DOWN 11 -6684116 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6684159 homeCount = 116 -6684159 waitCount = 58 -6684160 ripCount = 49 -6684160 locktype1 = 2 -6684161 locktype2 = 7 -6684161 locktype3 = 6 -6684162 goalCount = 1 -6684162 goalTotal = 41 -6684163 otherCount = 60 -~~~ -6684164 CURRENTGOAL IS [7] -~~~ -6684221 UP 11 -6684221 1024 255 -6684256 DOWN 11 -6684256 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6684297 homeCount = 116 -6684298 waitCount = 58 -6684298 ripCount = 49 -6684299 locktype1 = 2 -6684299 locktype2 = 7 -6684300 locktype3 = 6 -6684300 goalCount = 1 -6684301 goalTotal = 41 -6684301 otherCount = 60 -~~~ -6684302 CURRENTGOAL IS [7] -~~~ -6684474 UP 11 -6684474 1024 255 -6685220 DOWN 11 -6685220 0 255 -6685235 UP 11 -6685235 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685260 DOWN 11 -6685260 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685272 homeCount = 116 -6685272 waitCount = 58 -6685273 ripCount = 49 -6685273 locktype1 = 2 -6685274 locktype2 = 7 -6685274 locktype3 = 6 -6685275 goalCount = 1 -6685275 goalTotal = 41 -6685276 otherCount = 60 -~~~ -6685277 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685304 homeCount = 116 -6685304 waitCount = 58 -6685305 ripCount = 49 -6685305 locktype1 = 2 -6685306 locktype2 = 7 -6685306 locktype3 = 6 -6685307 goalCount = 1 -6685307 goalTotal = 41 -6685308 otherCount = 60 -~~~ -6685309 CURRENTGOAL IS [7] -~~~ -6685357 UP 11 -6685357 1024 255 -6685427 DOWN 11 -6685427 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6685466 homeCount = 116 -6685466 waitCount = 58 -6685467 ripCount = 49 -6685467 locktype1 = 2 -6685468 locktype2 = 7 -6685468 locktype3 = 6 -6685469 goalCount = 1 -6685469 goalTotal = 41 -6685470 otherCount = 60 -~~~ -6685471 CURRENTGOAL IS [7] -~~~ -6691250 UP 8 -6691250 128 255 -~~~ -~~~ -6691294 DOWN 8 -6691294 0 255 -~~~ -6691318 128 255 -~~~ -6691319 128 254 -~~~ -~~~ -6691320 128 252 -~~~ -~~~ -6691322 128 248 -~~~ -~~~ -6691324 128 240 -~~~ -~~~ -6691326 128 224 -~~~ -~~~ -6691328 128 192 -~~~ -~~~ -6691329 128 128 -~~~ -~~~ -6691331 128 0 -~~~ -~~~ -6691333 128 512 -6691334 homeCount = 116 -6691335 waitCount = 58 -6691356 ripCount = 49 -6691356 locktype1 = 2 -6691357 locktype2 = 7 -6691357 locktype3 = 6 -6691358 goalCount = 1 -6691358 goalTotal = 41 -6691359 otherCount = 61 -~~~ -6691705 DOWN 8 -6691705 0 512 -6692128 128 512 -6692970 DOWN 8 -6692969 0 512 -6693144 128 512 -6693170 DOWN 8 -6693170 0 512 -6693199 128 512 -6693388 DOWN 8 -6693388 0 512 -6693402 128 512 -6693443 DOWN 8 -6693443 0 512 -6693515 128 512 -6693538 DOWN 8 -6693538 0 512 -6693619 128 512 -6693648 DOWN 8 -6693648 0 512 -6694010 128 512 -6694839 DOWN 8 -6694838 0 512 -6701433 UP 10 -6701434 waslock = 0 -6701433 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6701465 512 16777728 -~~~ -6701615 512 512 -6701718 DOWN 10 -6701718 0 512 -~~~ -~~~ -6701739 0 1536 -~~~ -~~~ -6701741 0 1024 -6701742 homeCount = 117 -6701743 waitCount = 58 -6701743 ripCount = 49 -6701744 locktype1 = 2 -6701744 locktype2 = 7 -6701745 locktype3 = 6 -6701745 goalCount = 1 -6701746 goalTotal = 41 -6701746 otherCount = 61 -~~~ -6701748 UP 10 -6701748 waslock = 0 -6701748 512 1024 -~~~ -6705821 DOWN 10 -6705821 0 1024 -~~~ -~~~ -~~~ -~~~ -6705843 homeCount = 117 -6705843 waitCount = 58 -6705844 ripCount = 49 -6705844 locktype1 = 2 -6705845 locktype2 = 7 -6705845 locktype3 = 6 -6705846 goalCount = 1 -6705846 goalTotal = 41 -6705847 otherCount = 61 -~~~ -6705847 UP 10 -6705848 waslock = 0 -6705847 512 1024 -~~~ -6705920 DOWN 10 -6705920 0 1024 -~~~ -~~~ -~~~ -~~~ -6705943 homeCount = 117 -6705943 waitCount = 58 -6705944 ripCount = 49 -6705944 locktype1 = 2 -6705944 locktype2 = 7 -6705945 locktype3 = 6 -6705945 goalCount = 1 -6705946 goalTotal = 41 -6705946 otherCount = 61 -~~~ -6708068 UP 11 -6708068 1024 1024 -6708086 DOWN 11 -6708086 0 1024 -6708133 UP 11 -6708133 1024 1024 -6709911 DOWN 11 -6709911 0 1024 -6709920 UP 11 -6709920 1024 1024 -6711114 DOWN 11 -6711114 0 1024 -6711120 UP 11 -6711120 1024 1024 -6711125 DOWN 11 -6711125 0 1024 -6711144 UP 11 -6711144 1024 1024 -6711546 DOWN 11 -6711546 0 1024 -6711576 UP 11 -6711576 1024 1024 -6711611 DOWN 11 -6711611 0 1024 -6711618 UP 11 -6711618 1024 1024 -6715068 BEEP1 -6715068 BEEP2 -~~~ -~~~ -~~~ -6715093 1024 33555456 -~~~ -6715243 1024 1024 -6721928 DOWN 11 -6721928 0 1024 -~~~ -~~~ -6721951 UP 11 -6721951 1024 0 -~~~ -~~~ -6721953 1024 1 -~~~ -~~~ -6721955 1024 3 -~~~ -~~~ -6721956 1024 7 -~~~ -~~~ -6721958 1024 15 -~~~ -~~~ -6721960 1024 31 -~~~ -~~~ -6721962 1024 63 -~~~ -~~~ -6721964 1024 127 -~~~ -~~~ -6721966 1024 255 -6721967 homeCount = 117 -6721967 waitCount = 58 -6721968 ripCount = 50 -6721989 locktype1 = 2 -6721989 locktype2 = 7 -6721990 locktype3 = 6 -6721990 goalCount = 1 -6721991 goalTotal = 41 -6721991 otherCount = 61 -~~~ -6721992 CURRENTGOAL IS [7] -~~~ -6722015 DOWN 11 -6722015 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6722057 homeCount = 117 -6722057 waitCount = 58 -6722058 ripCount = 50 -6722058 locktype1 = 2 -6722059 locktype2 = 7 -6722059 locktype3 = 6 -6722060 goalCount = 1 -6722060 goalTotal = 41 -6722060 otherCount = 61 -~~~ -6722062 CURRENTGOAL IS [7] -~~~ -6725264 UP 6 -6725264 32 255 -~~~ -~~~ -6727484 DOWN 6 -6727484 0 255 -~~~ -~~~ -6727509 0 254 -~~~ -~~~ -6727510 0 252 -~~~ -~~~ -6727512 0 248 -~~~ -~~~ -6727514 0 240 -~~~ -~~~ -6727516 0 224 -~~~ -~~~ -6727518 0 192 -~~~ -~~~ -6727519 0 128 -~~~ -~~~ -6727521 0 0 -~~~ -~~~ -6727523 0 512 -6727524 homeCount = 117 -6727525 waitCount = 58 -6727525 ripCount = 50 -6727526 locktype1 = 2 -6727526 locktype2 = 7 -6727547 locktype3 = 6 -6727548 goalCount = 1 -6727548 goalTotal = 41 -6727549 otherCount = 62 -~~~ -6727577 32 512 -6727791 DOWN 6 -6727791 0 512 -6732072 UP 10 -6732072 waslock = 0 -6732072 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6732099 DOWN 10 -6732099 0 16777728 -~~~ -~~~ -~~~ -6732121 0 16779776 -~~~ -~~~ -6732123 0 16779264 -6732124 homeCount = 118 -6732124 waitCount = 58 -6732125 ripCount = 50 -6732125 locktype1 = 2 -6732126 locktype2 = 7 -6732126 locktype3 = 6 -6732127 goalCount = 1 -6732127 goalTotal = 41 -6732128 otherCount = 62 -~~~ -6732179 UP 10 -6732179 waslock = 0 -6732179 512 16779264 -~~~ -6732249 512 2048 -6732403 DOWN 10 -6732403 0 2048 -~~~ -~~~ -~~~ -~~~ -6732424 homeCount = 118 -6732425 waitCount = 58 -6732425 ripCount = 50 -6732426 locktype1 = 2 -6732426 locktype2 = 7 -6732427 locktype3 = 6 -6732427 goalCount = 1 -6732428 goalTotal = 41 -6732428 otherCount = 62 -~~~ -6732461 UP 10 -6732462 waslock = 0 -6732461 512 2048 -~~~ -6738947 DOWN 10 -6738947 0 2048 -~~~ -~~~ -~~~ -~~~ -6738973 homeCount = 118 -6738973 waitCount = 58 -6738974 ripCount = 50 -6738974 locktype1 = 2 -6738975 locktype2 = 7 -6738975 locktype3 = 6 -6738976 goalCount = 1 -6738976 goalTotal = 41 -6738976 otherCount = 62 -~~~ -6739010 UP 10 -6739010 waslock = 0 -6739010 512 2048 -~~~ -6739045 DOWN 10 -6739045 0 2048 -~~~ -~~~ -~~~ -~~~ -6739064 homeCount = 118 -6739064 waitCount = 58 -6739065 ripCount = 50 -6739065 locktype1 = 2 -6739066 locktype2 = 7 -6739066 locktype3 = 6 -6739067 goalCount = 1 -6739067 goalTotal = 41 -6739068 otherCount = 62 -~~~ -6741119 UP 12 -6741119 2048 2048 -6742871 DOWN 12 -6742871 0 2048 -6742901 UP 12 -6742901 2048 2048 -6744620 CLICK1 -6744620 CLICK2 -~~~ -~~~ -~~~ -6744642 2048 67110912 -~~~ -6744792 2048 2048 -6752291 DOWN 12 -6752291 0 2048 -~~~ -~~~ -6752311 0 0 -~~~ -~~~ -6752313 0 1 -~~~ -~~~ -6752315 0 3 -~~~ -~~~ -6752316 0 7 -~~~ -~~~ -6752318 0 15 -~~~ -~~~ -6752320 0 31 -~~~ -~~~ -6752322 0 63 -~~~ -~~~ -6752324 0 127 -~~~ -~~~ -6752325 0 255 -6752326 homeCount = 118 -6752327 waitCount = 59 -6752328 ripCount = 50 -6752328 locktype1 = 2 -6752329 locktype2 = 7 -6752329 locktype3 = 6 -6752350 goalCount = 1 -6752350 goalTotal = 41 -6752351 otherCount = 62 -~~~ -6752352 CURRENTGOAL IS [7] -~~~ -6752352 UP 12 -6752352 2048 255 -6752415 DOWN 12 -6752415 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6752456 homeCount = 118 -6752456 waitCount = 59 -6752457 ripCount = 50 -6752457 locktype1 = 2 -6752458 locktype2 = 7 -6752458 locktype3 = 6 -6752459 goalCount = 1 -6752459 goalTotal = 41 -6752460 otherCount = 62 -~~~ -6752461 CURRENTGOAL IS [7] -~~~ -6757646 UP 3 -6757646 4 255 -~~~ -~~~ -6758067 DOWN 3 -6758067 0 255 -~~~ -~~~ -6758091 0 254 -~~~ -~~~ -6758093 0 252 -~~~ -~~~ -6758094 0 248 -~~~ -~~~ -6758096 0 240 -~~~ -~~~ -6758098 0 224 -~~~ -~~~ -6758100 0 192 -~~~ -~~~ -6758102 0 128 -~~~ -~~~ -6758103 0 0 -~~~ -~~~ -6758105 0 512 -6758106 homeCount = 118 -6758107 waitCount = 59 -6758107 ripCount = 50 -6758108 locktype1 = 2 -6758108 locktype2 = 7 -6758129 locktype3 = 6 -6758130 goalCount = 1 -6758130 goalTotal = 41 -6758131 otherCount = 63 -~~~ -6761238 UP 10 -6761239 waslock = 0 -6761238 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6761268 512 16777728 -~~~ -6761417 512 512 -6761428 DOWN 10 -6761428 0 512 -~~~ -~~~ -6761445 0 2560 -~~~ -~~~ -6761446 0 2048 -6761447 homeCount = 119 -6761448 waitCount = 59 -6761448 ripCount = 50 -6761449 locktype1 = 2 -6761449 locktype2 = 7 -6761450 locktype3 = 6 -6761450 goalCount = 1 -6761451 goalTotal = 41 -6761451 otherCount = 63 -~~~ -6761468 UP 10 -6761468 waslock = 0 -6761468 512 2048 -~~~ -6768410 DOWN 10 -6768410 0 2048 -~~~ -~~~ -~~~ -~~~ -6768433 homeCount = 119 -6768433 waitCount = 59 -6768434 ripCount = 50 -6768434 locktype1 = 2 -6768434 locktype2 = 7 -6768435 locktype3 = 6 -6768435 goalCount = 1 -6768436 goalTotal = 41 -6768436 otherCount = 63 -~~~ -6770299 UP 12 -6770299 2048 2048 -6772302 DOWN 12 -6772302 0 2048 -6772362 UP 12 -6772362 2048 2048 -6773300 CLICK1 -6773300 CLICK2 -~~~ -~~~ -~~~ -6773325 2048 67110912 -~~~ -6773475 2048 2048 -6779649 DOWN 12 -6779649 0 2048 -~~~ -~~~ -6779670 0 0 -~~~ -~~~ -6779672 0 1 -~~~ -~~~ -6779674 0 3 -~~~ -~~~ -6779676 0 7 -~~~ -~~~ -6779678 0 15 -~~~ -~~~ -6779679 0 31 -~~~ -~~~ -6779681 0 63 -~~~ -~~~ -6779683 0 127 -~~~ -6779684 UP 12 -6779684 2048 127 -~~~ -6779686 homeCount = 119 -6779687 waitCount = 60 -6779687 ripCount = 50 -6779688 locktype1 = 2 -6779708 locktype2 = 7 -6779709 locktype3 = 6 -6779709 goalCount = 1 -6779710 goalTotal = 41 -6779710 otherCount = 63 -~~~ -6779711 CURRENTGOAL IS [7] -~~~ -6779712 2048 255 -6779786 DOWN 12 -6779786 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6779830 homeCount = 119 -6779831 waitCount = 60 -6779831 ripCount = 50 -6779832 locktype1 = 2 -6779832 locktype2 = 7 -6779833 locktype3 = 6 -6779833 goalCount = 1 -6779834 goalTotal = 41 -6779834 otherCount = 63 -~~~ -6779835 CURRENTGOAL IS [7] -~~~ -6779836 UP 12 -6779836 2048 255 -6779858 DOWN 12 -6779858 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6779888 homeCount = 119 -6779888 waitCount = 60 -6779889 ripCount = 50 -6779889 locktype1 = 2 -6779890 locktype2 = 7 -6779890 locktype3 = 6 -6779891 goalCount = 1 -6779891 goalTotal = 41 -6779892 otherCount = 63 -~~~ -6779893 CURRENTGOAL IS [7] -~~~ -6779906 UP 12 -6779906 2048 255 -6783028 DOWN 12 -6783028 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6783069 homeCount = 119 -6783070 waitCount = 60 -6783070 ripCount = 50 -6783071 locktype1 = 2 -6783071 locktype2 = 7 -6783072 locktype3 = 6 -6783072 goalCount = 1 -6783073 goalTotal = 41 -6783073 otherCount = 63 -~~~ -6783074 CURRENTGOAL IS [7] -~~~ -6792931 UP 6 -6792931 32 255 -~~~ -~~~ -6793358 DOWN 6 -6793358 0 255 -~~~ -~~~ -6793374 0 254 -~~~ -~~~ -6793376 0 252 -~~~ -~~~ -6793377 0 248 -~~~ -~~~ -6793379 0 240 -~~~ -~~~ -6793381 0 224 -~~~ -~~~ -6793383 0 192 -~~~ -~~~ -6793385 0 128 -~~~ -~~~ -6793387 0 0 -~~~ -~~~ -6793388 0 512 -6793389 homeCount = 119 -6793390 waitCount = 60 -6793390 ripCount = 50 -6793391 locktype1 = 2 -6793391 locktype2 = 7 -6793413 locktype3 = 6 -6793413 goalCount = 1 -6793414 goalTotal = 41 -6793414 otherCount = 64 -~~~ -6797527 UP 10 -6797527 waslock = 0 -6797527 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6797551 512 16777728 -~~~ -6797585 DOWN 10 -6797585 0 16777728 -~~~ -~~~ -6797604 0 16779776 -~~~ -~~~ -6797606 0 16779264 -6797607 homeCount = 120 -6797608 waitCount = 60 -6797608 ripCount = 50 -6797609 locktype1 = 2 -6797609 locktype2 = 7 -6797610 locktype3 = 6 -6797610 goalCount = 1 -6797611 goalTotal = 41 -6797611 otherCount = 64 -~~~ -6797632 UP 10 -6797633 waslock = 0 -6797632 512 16779264 -~~~ -6797700 DOWN 10 -6797700 0 16779264 -6797701 0 2048 -~~~ -~~~ -~~~ -~~~ -6797728 homeCount = 120 -6797728 waitCount = 60 -6797729 ripCount = 50 -6797729 locktype1 = 2 -6797730 locktype2 = 7 -6797730 locktype3 = 6 -6797731 goalCount = 1 -6797731 goalTotal = 41 -6797732 otherCount = 64 -~~~ -6797848 UP 10 -6797848 waslock = 0 -6797848 512 2048 -~~~ -6804936 DOWN 10 -6804936 0 2048 -~~~ -~~~ -~~~ -~~~ -6804957 homeCount = 120 -6804958 waitCount = 60 -6804958 ripCount = 50 -6804959 locktype1 = 2 -6804959 locktype2 = 7 -6804960 locktype3 = 6 -6804960 goalCount = 1 -6804961 goalTotal = 41 -6804961 otherCount = 64 -~~~ -6804962 UP 10 -6804962 waslock = 0 -6804962 512 2048 -~~~ -6805032 DOWN 10 -6805032 0 2048 -~~~ -~~~ -~~~ -~~~ -6805061 homeCount = 120 -6805061 waitCount = 60 -6805062 ripCount = 50 -6805062 locktype1 = 2 -6805063 locktype2 = 7 -6805063 locktype3 = 6 -6805064 goalCount = 1 -6805064 goalTotal = 41 -6805065 otherCount = 64 -~~~ -6807081 UP 12 -6807081 2048 2048 -6807157 DOWN 12 -6807157 0 2048 -6807196 UP 12 -6807196 2048 2048 -6808281 DOWN 12 -6808281 0 2048 -6808302 UP 12 -6808302 2048 2048 -6811278 DOWN 12 -6811278 0 2048 -6811347 UP 12 -6811347 2048 2048 -6814081 CLICK1 -6814081 CLICK2 -~~~ -~~~ -~~~ -6814107 2048 67110912 -~~~ -6814257 2048 2048 -6819298 DOWN 12 -6819298 0 2048 -~~~ -~~~ -6819318 0 0 -~~~ -~~~ -6819319 0 1 -~~~ -~~~ -6819321 0 3 -~~~ -~~~ -6819323 0 7 -~~~ -~~~ -6819325 0 15 -~~~ -~~~ -6819327 0 31 -~~~ -~~~ -6819329 0 63 -~~~ -~~~ -6819330 0 127 -~~~ -~~~ -6819332 0 255 -6819333 homeCount = 120 -6819334 waitCount = 61 -6819334 ripCount = 50 -6819335 locktype1 = 2 -6819335 locktype2 = 7 -6819336 locktype3 = 6 -6819357 goalCount = 1 -6819357 goalTotal = 41 -6819358 otherCount = 64 -~~~ -6819359 CURRENTGOAL IS [7] -~~~ -6819367 UP 12 -6819367 2048 255 -6819410 DOWN 12 -6819410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6819444 homeCount = 120 -6819444 waitCount = 61 -6819445 ripCount = 50 -6819445 locktype1 = 2 -6819446 locktype2 = 7 -6819446 locktype3 = 6 -6819447 goalCount = 1 -6819447 goalTotal = 41 -6819448 otherCount = 64 -~~~ -6819449 CURRENTGOAL IS [7] -~~~ -6819507 UP 12 -6819507 2048 255 -6819537 DOWN 12 -6819537 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6819574 homeCount = 120 -6819575 waitCount = 61 -6819575 ripCount = 50 -6819576 locktype1 = 2 -6819576 locktype2 = 7 -6819577 locktype3 = 6 -6819577 goalCount = 1 -6819578 goalTotal = 41 -6819578 otherCount = 64 -~~~ -6819579 CURRENTGOAL IS [7] -~~~ -6828002 UP 4 -6828002 8 255 -~~~ -~~~ -6828645 DOWN 4 -6828645 0 255 -~~~ -~~~ -6828668 0 254 -~~~ -~~~ -6828670 0 252 -~~~ -~~~ -6828672 0 248 -~~~ -~~~ -6828673 0 240 -~~~ -~~~ -6828675 0 224 -~~~ -~~~ -6828677 0 192 -~~~ -~~~ -6828679 0 128 -~~~ -~~~ -6828681 0 0 -~~~ -~~~ -6828683 0 512 -6828684 homeCount = 120 -6828684 waitCount = 61 -6828685 ripCount = 50 -6828685 locktype1 = 2 -6828686 locktype2 = 7 -6828707 locktype3 = 6 -6828707 goalCount = 1 -6828708 goalTotal = 41 -6828708 otherCount = 65 -~~~ -6832786 UP 10 -6832787 waslock = 0 -6832786 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6832816 512 16777728 -~~~ -6832958 DOWN 10 -6832958 0 16777728 -6832966 0 512 -~~~ -~~~ -6832983 0 2560 -~~~ -~~~ -6832985 0 2048 -6832986 homeCount = 121 -6832986 waitCount = 61 -6832987 ripCount = 50 -6832987 locktype1 = 2 -6832987 locktype2 = 7 -6832988 locktype3 = 6 -6832988 goalCount = 1 -6832989 goalTotal = 41 -6832989 otherCount = 65 -~~~ -6833089 UP 10 -6833089 waslock = 0 -6833088 512 2048 -~~~ -6833877 DOWN 10 -6833877 0 2048 -~~~ -~~~ -~~~ -~~~ -6833903 homeCount = 121 -6833904 waitCount = 61 -6833904 ripCount = 50 -6833905 locktype1 = 2 -6833905 locktype2 = 7 -6833906 locktype3 = 6 -6833906 goalCount = 1 -6833906 goalTotal = 41 -6833907 otherCount = 65 -~~~ -6833908 UP 10 -6833908 waslock = 0 -6833907 512 2048 -6833930 DOWN 10 -6833930 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -6833955 homeCount = 121 -6833956 waitCount = 61 -6833956 ripCount = 50 -6833957 locktype1 = 2 -6833957 locktype2 = 7 -6833958 locktype3 = 6 -6833958 goalCount = 1 -6833959 goalTotal = 41 -6833959 otherCount = 65 -~~~ -6833962 UP 10 -6833962 waslock = 0 -6833962 512 2048 -~~~ -6837947 DOWN 10 -6837947 0 2048 -~~~ -~~~ -~~~ -~~~ -6837972 homeCount = 121 -6837973 waitCount = 61 -6837973 ripCount = 50 -6837974 locktype1 = 2 -6837974 locktype2 = 7 -6837974 locktype3 = 6 -6837975 goalCount = 1 -6837975 goalTotal = 41 -6837976 otherCount = 65 -~~~ -6837999 UP 10 -6838000 waslock = 0 -6837999 512 2048 -6838018 DOWN 10 -6838018 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -6838043 homeCount = 121 -6838044 waitCount = 61 -6838044 ripCount = 50 -6838045 locktype1 = 2 -6838045 locktype2 = 7 -6838046 locktype3 = 6 -6838046 goalCount = 1 -6838046 goalTotal = 41 -6838047 otherCount = 65 -~~~ -6839502 UP 12 -6839502 2048 2048 -6842503 CLICK1 -6842503 CLICK2 -~~~ -~~~ -~~~ -6842522 2048 67110912 -~~~ -6842672 2048 2048 -6851012 DOWN 12 -6851012 0 2048 -~~~ -~~~ -6851029 0 0 -~~~ -~~~ -6851031 0 1 -~~~ -~~~ -6851033 0 3 -~~~ -~~~ -6851035 0 7 -~~~ -~~~ -6851036 0 15 -~~~ -~~~ -6851038 0 31 -~~~ -~~~ -6851040 0 63 -~~~ -~~~ -6851042 0 127 -~~~ -~~~ -6851044 0 255 -6851045 homeCount = 121 -6851045 waitCount = 62 -6851046 ripCount = 50 -6851046 locktype1 = 2 -6851047 locktype2 = 7 -6851047 locktype3 = 6 -6851068 goalCount = 1 -6851069 goalTotal = 41 -6851069 otherCount = 65 -~~~ -6851070 CURRENTGOAL IS [7] -~~~ -6867037 UP 6 -6867037 32 255 -~~~ -~~~ -6867390 DOWN 6 -6867390 0 255 -~~~ -~~~ -6867410 0 254 -~~~ -~~~ -6867412 0 252 -~~~ -~~~ -6867414 0 248 -~~~ -~~~ -6867416 0 240 -~~~ -~~~ -6867417 0 224 -~~~ -~~~ -6867419 0 192 -~~~ -~~~ -6867421 0 128 -~~~ -~~~ -6867423 0 0 -~~~ -~~~ -6867425 0 512 -6867426 homeCount = 121 -6867426 waitCount = 62 -6867427 ripCount = 50 -6867427 locktype1 = 2 -6867428 locktype2 = 7 -6867449 locktype3 = 6 -6867449 goalCount = 1 -6867450 goalTotal = 41 -6867450 otherCount = 66 -~~~ -6871554 UP 10 -6871554 waslock = 0 -6871553 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6871589 512 16777728 -~~~ -6871739 512 512 -6871848 DOWN 10 -6871848 0 512 -~~~ -~~~ -6871874 0 2560 -~~~ -~~~ -6871876 0 2048 -6871877 homeCount = 122 -6871877 waitCount = 62 -6871878 ripCount = 50 -6871878 locktype1 = 2 -6871879 locktype2 = 7 -6871879 locktype3 = 6 -6871880 goalCount = 1 -6871880 goalTotal = 41 -6871881 otherCount = 66 -~~~ -6871905 UP 10 -6871905 waslock = 0 -6871905 512 2048 -~~~ -6877839 DOWN 10 -6877839 0 2048 -~~~ -~~~ -~~~ -~~~ -6877866 homeCount = 122 -6877867 waitCount = 62 -6877867 ripCount = 50 -6877868 locktype1 = 2 -6877868 locktype2 = 7 -6877869 locktype3 = 6 -6877869 goalCount = 1 -6877869 goalTotal = 41 -6877870 otherCount = 66 -~~~ -6879791 UP 12 -6879791 2048 2048 -6881416 DOWN 12 -6881416 0 2048 -6881430 UP 12 -6881430 2048 2048 -6881961 DOWN 12 -6881961 0 2048 -6881975 UP 12 -6881975 2048 2048 -6883663 DOWN 12 -6883663 0 2048 -6883693 UP 12 -6883693 2048 2048 -6886792 CLICK1 -6886792 CLICK2 -~~~ -~~~ -~~~ -6886815 2048 67110912 -~~~ -6886965 2048 2048 -6893793 DOWN 12 -6893793 0 2048 -~~~ -~~~ -6893814 0 0 -~~~ -~~~ -6893816 0 1 -~~~ -~~~ -6893817 0 3 -~~~ -~~~ -6893819 0 7 -~~~ -~~~ -6893821 0 15 -~~~ -~~~ -6893823 0 31 -~~~ -~~~ -6893825 0 63 -~~~ -~~~ -6893826 0 127 -~~~ -~~~ -6893828 0 255 -6893829 homeCount = 122 -6893830 waitCount = 63 -6893830 ripCount = 50 -6893831 locktype1 = 2 -6893831 locktype2 = 7 -6893832 locktype3 = 6 -6893853 goalCount = 1 -6893853 goalTotal = 41 -6893854 otherCount = 66 -~~~ -6893855 CURRENTGOAL IS [7] -~~~ -6905937 UP 10 -6905938 waslock = 0 -6905937 512 255 -~~~ -6905957 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6905965 512 254 -~~~ -~~~ -6905966 512 252 -~~~ -~~~ -6905968 512 248 -~~~ -~~~ -6905970 512 240 -~~~ -~~~ -6905972 512 224 -~~~ -~~~ -6905974 512 192 -~~~ -~~~ -6905975 512 128 -~~~ -~~~ -6905977 512 0 -~~~ -~~~ -~~~ -6906246 0 0 -6930957 LOCKEND -~~~ -~~~ -~~~ -6930979 0 512 -6934646 UP 10 -6934646 waslock = 0 -6934646 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6934672 512 16777728 -~~~ -6934799 DOWN 10 -6934799 0 16777728 -~~~ -~~~ -6934819 0 16779776 -~~~ -~~~ -6934821 0 16779264 -6934822 homeCount = 123 -6934822 waitCount = 63 -6934823 ripCount = 50 -6934823 locktype1 = 2 -6934824 locktype2 = 8 -6934824 locktype3 = 6 -6934825 goalCount = 1 -6934825 goalTotal = 41 -6934826 otherCount = 66 -~~~ -6934847 0 2048 -6934867 UP 10 -6934867 waslock = 0 -6934867 512 2048 -~~~ -6934893 DOWN 10 -6934893 0 2048 -~~~ -~~~ -~~~ -~~~ -6934910 homeCount = 123 -6934911 waitCount = 63 -6934911 ripCount = 50 -6934912 locktype1 = 2 -6934912 locktype2 = 8 -6934913 locktype3 = 6 -6934913 goalCount = 1 -6934914 goalTotal = 41 -6934914 otherCount = 66 -~~~ -6935112 UP 10 -6935112 waslock = 0 -6935112 512 2048 -~~~ -6935617 DOWN 10 -6935616 0 2048 -~~~ -~~~ -~~~ -~~~ -6935639 homeCount = 123 -6935640 waitCount = 63 -6935640 ripCount = 50 -6935641 locktype1 = 2 -6935641 locktype2 = 8 -6935642 locktype3 = 6 -6935642 goalCount = 1 -6935643 goalTotal = 41 -6935643 otherCount = 66 -~~~ -6935681 UP 10 -6935682 waslock = 0 -6935681 512 2048 -~~~ -6935714 DOWN 10 -6935714 0 2048 -~~~ -~~~ -~~~ -~~~ -6935740 homeCount = 123 -6935741 waitCount = 63 -6935741 ripCount = 50 -6935742 locktype1 = 2 -6935742 locktype2 = 8 -6935743 locktype3 = 6 -6935743 goalCount = 1 -6935744 goalTotal = 41 -6935744 otherCount = 66 -~~~ -6935801 UP 10 -6935801 waslock = 0 -6935801 512 2048 -~~~ -6935843 DOWN 10 -6935843 0 2048 -~~~ -~~~ -~~~ -~~~ -6935871 homeCount = 123 -6935872 waitCount = 63 -6935872 ripCount = 50 -6935873 locktype1 = 2 -6935873 locktype2 = 8 -6935874 locktype3 = 6 -6935874 goalCount = 1 -6935875 goalTotal = 41 -6935875 otherCount = 66 -~~~ -6935918 UP 10 -6935918 waslock = 0 -6935918 512 2048 -~~~ -6935945 DOWN 10 -6935945 0 2048 -~~~ -~~~ -~~~ -~~~ -6935960 homeCount = 123 -6935960 waitCount = 63 -6935961 ripCount = 50 -6935961 locktype1 = 2 -6935962 locktype2 = 8 -6935962 locktype3 = 6 -6935963 goalCount = 1 -6935963 goalTotal = 41 -6935964 otherCount = 66 -~~~ -6936031 UP 10 -6936031 waslock = 0 -6936031 512 2048 -~~~ -6941357 DOWN 10 -6941357 0 2048 -6941366 UP 10 -6941366 waslock = 0 -6941366 512 2048 -~~~ -~~~ -~~~ -~~~ -6941394 homeCount = 123 -6941395 waitCount = 63 -6941395 ripCount = 50 -6941396 locktype1 = 2 -6941396 locktype2 = 8 -6941397 locktype3 = 6 -6941397 goalCount = 1 -6941398 goalTotal = 41 -6941398 otherCount = 66 -~~~ -~~~ -6941466 DOWN 10 -6941466 0 2048 -~~~ -~~~ -~~~ -~~~ -6941491 homeCount = 123 -6941492 waitCount = 63 -6941492 ripCount = 50 -6941493 locktype1 = 2 -6941493 locktype2 = 8 -6941493 locktype3 = 6 -6941494 goalCount = 1 -6941494 goalTotal = 41 -6941495 otherCount = 66 -~~~ -6941496 UP 10 -6941496 waslock = 0 -6941495 512 2048 -~~~ -6941566 DOWN 10 -6941566 0 2048 -~~~ -~~~ -~~~ -~~~ -6941591 homeCount = 123 -6941592 waitCount = 63 -6941592 ripCount = 50 -6941593 locktype1 = 2 -6941593 locktype2 = 8 -6941594 locktype3 = 6 -6941594 goalCount = 1 -6941595 goalTotal = 41 -6941595 otherCount = 66 -~~~ -6943531 UP 12 -6943531 2048 2048 -6945000 DOWN 12 -6945000 0 2048 -6945026 UP 12 -6945026 2048 2048 -6945349 DOWN 12 -6945349 0 2048 -6945363 UP 12 -6945363 2048 2048 -6945387 DOWN 12 -6945387 0 2048 -6945442 UP 12 -6945442 2048 2048 -6947532 CLICK1 -6947532 CLICK2 -~~~ -~~~ -~~~ -6947560 2048 67110912 -~~~ -6947710 2048 2048 -6953981 DOWN 12 -6953981 0 2048 -6953994 UP 12 -6953994 2048 2048 -~~~ -~~~ -6953999 2048 0 -~~~ -~~~ -6954001 2048 1 -~~~ -~~~ -6954002 2048 3 -~~~ -~~~ -6954004 2048 7 -~~~ -~~~ -6954006 2048 15 -~~~ -~~~ -6954008 2048 31 -~~~ -~~~ -6954010 2048 63 -~~~ -~~~ -6954012 2048 127 -~~~ -~~~ -6954013 2048 255 -6954014 homeCount = 123 -6954015 waitCount = 64 -6954015 ripCount = 50 -6954016 locktype1 = 2 -6954037 locktype2 = 8 -6954037 locktype3 = 6 -6954038 goalCount = 1 -6954038 goalTotal = 41 -6954039 otherCount = 66 -~~~ -6954040 CURRENTGOAL IS [7] -~~~ -6954190 DOWN 12 -6954190 0 255 -~~~ -~~~ -~~~ -~~~ -6954214 UP 12 -6954214 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6954227 homeCount = 123 -6954228 waitCount = 64 -6954228 ripCount = 50 -6954229 locktype1 = 2 -6954229 locktype2 = 8 -6954230 locktype3 = 6 -6954230 goalCount = 1 -6954231 goalTotal = 41 -6954231 otherCount = 66 -~~~ -6954232 CURRENTGOAL IS [7] -~~~ -6954328 DOWN 12 -6954328 0 255 -6954335 UP 12 -6954335 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6954367 homeCount = 123 -6954368 waitCount = 64 -6954368 ripCount = 50 -6954369 locktype1 = 2 -6954369 locktype2 = 8 -6954370 locktype3 = 6 -6954370 goalCount = 1 -6954371 goalTotal = 41 -6954371 otherCount = 66 -~~~ -6954372 CURRENTGOAL IS [7] -~~~ -6956456 DOWN 12 -6956456 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -6956490 homeCount = 123 -6956491 waitCount = 64 -6956491 ripCount = 50 -6956492 locktype1 = 2 -6956492 locktype2 = 8 -6956493 locktype3 = 6 -6956493 goalCount = 1 -6956494 goalTotal = 41 -6956494 otherCount = 66 -~~~ -6956495 CURRENTGOAL IS [7] -~~~ -6961679 UP 5 -6961679 16 255 -~~~ -~~~ -6961995 DOWN 5 -6961995 0 255 -~~~ -~~~ -6962013 0 254 -~~~ -~~~ -6962015 0 252 -~~~ -~~~ -6962017 0 248 -~~~ -~~~ -6962019 0 240 -~~~ -~~~ -6962021 0 224 -~~~ -~~~ -6962022 0 192 -~~~ -~~~ -6962024 0 128 -~~~ -~~~ -6962026 0 0 -~~~ -~~~ -6962028 0 512 -6962029 homeCount = 123 -6962030 waitCount = 64 -6962030 ripCount = 50 -6962030 locktype1 = 2 -6962031 locktype2 = 8 -6962052 locktype3 = 6 -6962053 goalCount = 1 -6962053 goalTotal = 41 -6962054 otherCount = 67 -~~~ -6962054 16 512 -6962809 DOWN 5 -6962809 0 512 -6967089 UP 10 -6967089 waslock = 0 -6967089 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -6967119 512 16777728 -~~~ -6967269 512 512 -6973816 DOWN 10 -6973816 0 512 -~~~ -~~~ -6973835 0 2560 -~~~ -~~~ -6973836 0 2048 -6973837 homeCount = 124 -6973838 waitCount = 64 -6973838 ripCount = 50 -6973839 locktype1 = 2 -6973839 locktype2 = 8 -6973840 locktype3 = 6 -6973840 goalCount = 1 -6973841 goalTotal = 41 -6973841 otherCount = 67 -~~~ -6973842 UP 10 -6973863 waslock = 0 -6973842 512 2048 -~~~ -6973904 DOWN 10 -6973904 0 2048 -~~~ -~~~ -~~~ -~~~ -6973929 homeCount = 124 -6973929 waitCount = 64 -6973930 ripCount = 50 -6973930 locktype1 = 2 -6973931 locktype2 = 8 -6973931 locktype3 = 6 -6973932 goalCount = 1 -6973932 goalTotal = 41 -6973933 otherCount = 67 -~~~ -6975942 UP 12 -6975942 2048 2048 -6978569 DOWN 12 -6978569 0 2048 -6978588 UP 12 -6978588 2048 2048 -6980629 DOWN 12 -6980629 0 2048 -6980662 UP 12 -6980662 2048 2048 -6981442 CLICK1 -6981442 CLICK2 -~~~ -~~~ -~~~ -6981468 2048 67110912 -~~~ -6981618 2048 2048 -6987168 DOWN 12 -6987168 0 2048 -~~~ -~~~ -6987185 0 0 -~~~ -~~~ -6987187 0 1 -~~~ -~~~ -6987188 0 3 -~~~ -~~~ -6987190 0 7 -~~~ -~~~ -6987192 0 15 -~~~ -~~~ -6987194 0 31 -~~~ -~~~ -6987196 0 63 -~~~ -~~~ -6987197 0 127 -~~~ -~~~ -6987199 0 255 -6987200 homeCount = 124 -6987201 waitCount = 65 -6987201 ripCount = 50 -6987202 locktype1 = 2 -6987202 locktype2 = 8 -6987203 locktype3 = 6 -6987224 goalCount = 1 -6987224 goalTotal = 41 -6987225 otherCount = 67 -~~~ -6987226 CURRENTGOAL IS [7] -~~~ -6995646 UP 5 -6995646 16 255 -~~~ -~~~ -6996817 DOWN 5 -6996817 0 255 -~~~ -~~~ -6996836 0 254 -~~~ -~~~ -6996838 0 252 -~~~ -~~~ -6996840 0 248 -~~~ -~~~ -6996841 0 240 -~~~ -~~~ -6996843 0 224 -~~~ -~~~ -6996845 0 192 -~~~ -~~~ -6996847 0 128 -~~~ -~~~ -6996849 0 0 -~~~ -~~~ -6996851 0 512 -6996852 homeCount = 124 -6996852 waitCount = 65 -6996853 ripCount = 50 -6996853 locktype1 = 2 -6996854 locktype2 = 8 -6996875 locktype3 = 6 -6996875 goalCount = 1 -6996876 goalTotal = 41 -6996876 otherCount = 68 -~~~ -6996877 16 512 -6996887 DOWN 5 -6996887 0 512 -6997103 16 512 -6997395 DOWN 5 -6997395 0 512 -6997437 16 512 -6997638 DOWN 5 -6997638 0 512 -7003045 UP 10 -7003046 waslock = 0 -7003045 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7003072 512 16777728 -~~~ -7003222 512 512 -7003296 DOWN 10 -7003296 0 512 -~~~ -~~~ -7003317 0 2560 -~~~ -~~~ -7003319 0 2048 -7003320 homeCount = 125 -7003320 waitCount = 65 -7003321 ripCount = 50 -7003321 locktype1 = 2 -7003322 locktype2 = 8 -7003322 locktype3 = 6 -7003323 goalCount = 1 -7003323 goalTotal = 41 -7003324 otherCount = 68 -~~~ -7003445 UP 10 -7003445 waslock = 0 -7003445 512 2048 -~~~ -7003799 DOWN 10 -7003799 0 2048 -~~~ -~~~ -~~~ -~~~ -7003820 homeCount = 125 -7003821 waitCount = 65 -7003821 ripCount = 50 -7003822 locktype1 = 2 -7003822 locktype2 = 8 -7003823 locktype3 = 6 -7003823 goalCount = 1 -7003824 goalTotal = 41 -7003824 otherCount = 68 -~~~ -7003825 UP 10 -7003825 waslock = 0 -7003825 512 2048 -7003847 DOWN 10 -7003847 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -7003870 homeCount = 125 -7003871 waitCount = 65 -7003871 ripCount = 50 -7003872 locktype1 = 2 -7003872 locktype2 = 8 -7003873 locktype3 = 6 -7003873 goalCount = 1 -7003874 goalTotal = 41 -7003874 otherCount = 68 -~~~ -7003892 UP 10 -7003893 waslock = 0 -7003892 512 2048 -~~~ -7008206 DOWN 10 -7008206 0 2048 -~~~ -~~~ -~~~ -~~~ -7008230 homeCount = 125 -7008230 waitCount = 65 -7008231 ripCount = 50 -7008231 locktype1 = 2 -7008232 locktype2 = 8 -7008232 locktype3 = 6 -7008233 goalCount = 1 -7008233 goalTotal = 41 -7008234 otherCount = 68 -~~~ -7008234 UP 10 -7008234 waslock = 0 -7008234 512 2048 -~~~ -7008328 DOWN 10 -7008328 0 2048 -~~~ -~~~ -~~~ -~~~ -7008353 homeCount = 125 -7008353 waitCount = 65 -7008354 ripCount = 50 -7008354 locktype1 = 2 -7008355 locktype2 = 8 -7008355 locktype3 = 6 -7008355 goalCount = 1 -7008356 goalTotal = 41 -7008356 otherCount = 68 -~~~ -7008384 UP 10 -7008385 waslock = 0 -7008384 512 2048 -~~~ -7008410 DOWN 10 -7008410 0 2048 -~~~ -~~~ -~~~ -~~~ -7008432 homeCount = 125 -7008433 waitCount = 65 -7008433 ripCount = 50 -7008434 locktype1 = 2 -7008434 locktype2 = 8 -7008435 locktype3 = 6 -7008435 goalCount = 1 -7008436 goalTotal = 41 -7008436 otherCount = 68 -~~~ -7010275 UP 12 -7010275 2048 2048 -7014339 DOWN 12 -7014339 0 2048 -7014351 UP 12 -7014351 2048 2048 -7015775 CLICK1 -7015775 CLICK2 -~~~ -~~~ -~~~ -7015800 2048 67110912 -~~~ -7015950 2048 2048 -7021725 DOWN 12 -7021725 0 2048 -~~~ -~~~ -7021748 0 0 -~~~ -~~~ -7021750 0 1 -~~~ -~~~ -7021751 0 3 -~~~ -~~~ -7021753 0 7 -~~~ -~~~ -7021755 0 15 -~~~ -~~~ -7021757 0 31 -~~~ -~~~ -7021759 0 63 -~~~ -~~~ -7021760 0 127 -~~~ -~~~ -7021762 0 255 -7021763 homeCount = 125 -7021764 waitCount = 66 -7021764 ripCount = 50 -7021765 locktype1 = 2 -7021765 locktype2 = 8 -7021766 locktype3 = 6 -7021787 goalCount = 1 -7021787 goalTotal = 41 -7021788 otherCount = 68 -~~~ -7021789 CURRENTGOAL IS [7] -~~~ -7029936 UP 11 -7029936 LOCKOUT 2 -7029935 1024 255 -~~~ -7029959 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7029967 1024 254 -~~~ -~~~ -7029969 1024 252 -~~~ -~~~ -7029970 1024 248 -~~~ -~~~ -7029972 1024 240 -~~~ -~~~ -7029974 1024 224 -~~~ -~~~ -7029976 1024 192 -~~~ -~~~ -7029978 1024 128 -~~~ -~~~ -7029980 1024 0 -~~~ -~~~ -7030046 DOWN 11 -7030046 0 0 -7038812 UP 1 -7038812 1 0 -7040163 DOWN 1 -7040163 0 0 -7044450 512 0 -7045274 0 0 -7045315 512 0 -7045409 0 0 -7045452 512 0 -7045487 0 0 -7045609 512 0 -7048059 0 0 -7048119 512 0 -7048160 0 0 -7054959 LOCKEND -~~~ -~~~ -~~~ -7054982 0 512 -7059549 UP 10 -7059549 waslock = 0 -7059549 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7059577 512 16777728 -~~~ -7059727 512 512 -7060080 DOWN 10 -7060080 0 512 -~~~ -~~~ -7060101 0 1536 -~~~ -~~~ -7060103 0 1024 -7060104 homeCount = 126 -7060104 waitCount = 66 -7060105 ripCount = 50 -7060105 locktype1 = 2 -7060106 locktype2 = 9 -7060106 locktype3 = 6 -7060107 goalCount = 1 -7060107 goalTotal = 41 -7060108 otherCount = 68 -~~~ -7060126 UP 10 -7060126 waslock = 0 -7060126 512 1024 -~~~ -7060201 DOWN 10 -7060201 0 1024 -~~~ -~~~ -~~~ -~~~ -7060230 homeCount = 126 -7060231 waitCount = 66 -7060231 ripCount = 50 -7060232 locktype1 = 2 -7060232 locktype2 = 9 -7060233 locktype3 = 6 -7060233 goalCount = 1 -7060234 goalTotal = 41 -7060234 otherCount = 68 -~~~ -7060239 UP 10 -7060240 waslock = 0 -7060239 512 1024 -~~~ -7065567 DOWN 10 -7065567 0 1024 -7065581 UP 10 -7065581 waslock = 0 -7065581 512 1024 -~~~ -~~~ -~~~ -~~~ -7065605 homeCount = 126 -7065605 waitCount = 66 -7065606 ripCount = 50 -7065606 locktype1 = 2 -7065607 locktype2 = 9 -7065607 locktype3 = 6 -7065608 goalCount = 1 -7065608 goalTotal = 41 -7065609 otherCount = 68 -~~~ -~~~ -7065644 DOWN 10 -7065644 0 1024 -~~~ -~~~ -~~~ -~~~ -7065673 homeCount = 126 -7065673 waitCount = 66 -7065674 ripCount = 50 -7065674 locktype1 = 2 -7065675 locktype2 = 9 -7065675 locktype3 = 6 -7065676 goalCount = 1 -7065676 goalTotal = 41 -7065677 otherCount = 68 -~~~ -7067367 UP 11 -7067367 1024 1024 -7069514 DOWN 11 -7069514 0 1024 -7069517 UP 11 -7069517 1024 1024 -7072868 BEEP1 -7072868 BEEP2 -~~~ -~~~ -~~~ -7072891 1024 33555456 -~~~ -7073041 1024 1024 -7079165 DOWN 11 -7079165 0 1024 -7079170 UP 11 -7079170 1024 1024 -~~~ -~~~ -7079193 1024 0 -~~~ -~~~ -7079195 1024 1 -~~~ -~~~ -7079197 1024 3 -~~~ -~~~ -7079199 1024 7 -~~~ -~~~ -7079200 1024 15 -~~~ -~~~ -7079202 1024 31 -~~~ -~~~ -7079204 1024 63 -~~~ -~~~ -7079206 1024 127 -~~~ -~~~ -7079208 1024 255 -7079209 homeCount = 126 -7079209 waitCount = 66 -7079210 ripCount = 51 -7079210 locktype1 = 2 -7079231 locktype2 = 9 -7079231 locktype3 = 6 -7079232 goalCount = 1 -7079232 goalTotal = 41 -7079233 otherCount = 68 -~~~ -7079234 CURRENTGOAL IS [7] -~~~ -7079287 DOWN 11 -7079287 0 255 -7079298 UP 11 -7079298 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7079327 homeCount = 126 -7079328 waitCount = 66 -7079328 ripCount = 51 -7079329 locktype1 = 2 -7079329 locktype2 = 9 -7079330 locktype3 = 6 -7079330 goalCount = 1 -7079331 goalTotal = 41 -7079331 otherCount = 68 -~~~ -7079332 CURRENTGOAL IS [7] -~~~ -7082284 DOWN 11 -7082284 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7082317 homeCount = 126 -7082318 waitCount = 66 -7082318 ripCount = 51 -7082319 locktype1 = 2 -7082319 locktype2 = 9 -7082320 locktype3 = 6 -7082320 goalCount = 1 -7082321 goalTotal = 41 -7082321 otherCount = 68 -~~~ -7082322 CURRENTGOAL IS [7] -~~~ -7085804 UP 7 -7085804 64 255 -~~~ -~~~ -7085824 outer reward -~~~ -7085824 64 4194559 -~~~ -~~~ -7085981 DOWN 7 -7085981 0 4194559 -~~~ -~~~ -7086003 0 4194558 -~~~ -~~~ -7086005 0 4194556 -~~~ -~~~ -7086007 0 4194552 -~~~ -~~~ -7086008 0 4194544 -~~~ -~~~ -7086010 0 4194528 -~~~ -~~~ -7086012 0 4194496 -~~~ -~~~ -7086014 0 4194432 -~~~ -~~~ -7086016 0 4194304 -~~~ -~~~ -7086018 0 4194816 -7086019 homeCount = 126 -7086019 waitCount = 66 -7086020 ripCount = 51 -7086041 locktype1 = 2 -7086041 locktype2 = 9 -7086042 locktype3 = 6 -7086042 goalCount = 2 -7086043 goalTotal = 42 -7086043 otherCount = 68 -~~~ -7086044 64 4194816 -7086274 64 512 -7094087 DOWN 7 -7094087 0 512 -7099767 UP 10 -7099767 waslock = 0 -7099767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7099800 512 16777728 -~~~ -7099950 512 512 -7104805 DOWN 10 -7104805 0 512 -~~~ -~~~ -7104824 0 2560 -~~~ -~~~ -7104826 0 2048 -7104827 homeCount = 127 -7104828 waitCount = 66 -7104828 ripCount = 51 -7104829 locktype1 = 2 -7104829 locktype2 = 9 -7104830 locktype3 = 6 -7104830 goalCount = 2 -7104831 goalTotal = 42 -7104831 otherCount = 68 -~~~ -7106451 UP 12 -7106451 2048 2048 -7108789 DOWN 12 -7108789 0 2048 -7108810 UP 12 -7108810 2048 2048 -7108872 DOWN 12 -7108872 0 2048 -7108884 UP 12 -7108884 2048 2048 -7111310 DOWN 12 -7111310 0 2048 -7111315 UP 12 -7111315 2048 2048 -7111952 CLICK1 -7111952 CLICK2 -~~~ -~~~ -~~~ -7111980 2048 67110912 -~~~ -7112130 2048 2048 -7119398 DOWN 12 -7119398 0 2048 -~~~ -~~~ -7119425 0 0 -~~~ -~~~ -7119426 0 1 -~~~ -~~~ -7119428 0 3 -~~~ -~~~ -7119430 0 7 -~~~ -~~~ -7119432 0 15 -~~~ -~~~ -7119434 0 31 -~~~ -~~~ -7119436 0 63 -~~~ -~~~ -7119437 0 127 -~~~ -7119439 UP 12 -7119439 2048 127 -~~~ -7119440 homeCount = 127 -7119441 waitCount = 67 -7119442 ripCount = 51 -7119442 locktype1 = 2 -7119463 locktype2 = 9 -7119464 locktype3 = 6 -7119464 goalCount = 2 -7119465 goalTotal = 42 -7119465 otherCount = 68 -~~~ -7119466 CURRENTGOAL IS [7] -~~~ -7119467 2048 255 -7121503 DOWN 12 -7121503 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7121544 homeCount = 127 -7121544 waitCount = 67 -7121545 ripCount = 51 -7121545 locktype1 = 2 -7121546 locktype2 = 9 -7121546 locktype3 = 6 -7121547 goalCount = 2 -7121547 goalTotal = 42 -7121548 otherCount = 68 -~~~ -7121549 CURRENTGOAL IS [7] -~~~ -7121574 UP 12 -7121574 2048 255 -7121609 DOWN 12 -7121609 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7121643 homeCount = 127 -7121643 waitCount = 67 -7121644 ripCount = 51 -7121644 locktype1 = 2 -7121645 locktype2 = 9 -7121645 locktype3 = 6 -7121646 goalCount = 2 -7121646 goalTotal = 42 -7121647 otherCount = 68 -~~~ -7121648 CURRENTGOAL IS [7] -~~~ -7126447 UP 7 -7126447 64 255 -~~~ -~~~ -7126469 outer reward -~~~ -7126469 64 4194559 -~~~ -~~~ -7126710 DOWN 7 -7126710 0 4194559 -~~~ -~~~ -7126737 0 4194558 -~~~ -~~~ -7126739 0 4194556 -~~~ -~~~ -7126740 0 4194552 -~~~ -~~~ -7126742 0 4194544 -~~~ -7126744 64 4194544 -~~~ -~~~ -7126745 64 4194528 -~~~ -~~~ -7126747 64 4194496 -~~~ -7126748 64 4194432 -~~~ -~~~ -7126750 64 4194304 -~~~ -~~~ -7126751 64 4194816 -7126752 homeCount = 127 -7126774 waitCount = 67 -7126774 ripCount = 51 -7126775 locktype1 = 2 -7126775 locktype2 = 9 -7126775 locktype3 = 6 -7126776 goalCount = 3 -7126776 goalTotal = 43 -7126777 otherCount = 68 -~~~ -7126919 64 512 -7127253 DOWN 7 -7127253 0 512 -7127273 64 512 -7127534 DOWN 7 -7127534 0 512 -7127543 64 512 -7127670 DOWN 7 -7127670 0 512 -7127680 64 512 -7136565 DOWN 7 -7136565 0 512 -7136647 64 512 -7136665 DOWN 7 -7136665 0 512 -7140698 UP 10 -7140698 waslock = 0 -7140698 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7140726 512 16777728 -~~~ -7140876 512 512 -7147055 DOWN 10 -7147055 0 512 -~~~ -~~~ -7147078 0 1536 -~~~ -~~~ -7147080 0 1024 -7147081 homeCount = 128 -7147081 waitCount = 67 -7147082 ripCount = 51 -7147082 locktype1 = 2 -7147083 locktype2 = 9 -7147083 locktype3 = 6 -7147084 goalCount = 3 -7147084 goalTotal = 43 -7147085 otherCount = 68 -~~~ -7148849 UP 11 -7148849 1024 1024 -7151745 DOWN 11 -7151745 0 1024 -7151771 UP 11 -7151771 1024 1024 -7151783 DOWN 11 -7151783 0 1024 -7151814 UP 11 -7151814 1024 1024 -7151849 BEEP1 -7151849 BEEP2 -~~~ -~~~ -~~~ -7151871 1024 33555456 -~~~ -7152020 1024 1024 -7158055 DOWN 11 -7158055 0 1024 -7158073 UP 11 -7158073 1024 1024 -~~~ -~~~ -7158091 1024 0 -~~~ -~~~ -7158093 1024 1 -~~~ -~~~ -7158095 1024 3 -~~~ -~~~ -7158097 1024 7 -~~~ -~~~ -7158098 1024 15 -~~~ -~~~ -7158100 1024 31 -~~~ -~~~ -7158102 1024 63 -~~~ -~~~ -7158104 1024 127 -~~~ -~~~ -7158106 1024 255 -7158107 homeCount = 128 -7158107 waitCount = 67 -7158108 ripCount = 52 -7158108 locktype1 = 2 -7158130 locktype2 = 9 -7158130 locktype3 = 6 -7158130 goalCount = 3 -7158131 goalTotal = 43 -7158131 otherCount = 68 -~~~ -7158132 CURRENTGOAL IS [7] -~~~ -7160244 DOWN 11 -7160244 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7160279 homeCount = 128 -7160280 waitCount = 67 -7160280 ripCount = 52 -7160281 locktype1 = 2 -7160281 locktype2 = 9 -7160282 locktype3 = 6 -7160282 goalCount = 3 -7160283 goalTotal = 43 -7160283 otherCount = 68 -~~~ -7160284 CURRENTGOAL IS [7] -~~~ -7160372 UP 11 -7160371 1024 255 -7160380 DOWN 11 -7160380 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7160417 homeCount = 128 -7160418 waitCount = 67 -7160418 ripCount = 52 -7160419 locktype1 = 2 -7160419 locktype2 = 9 -7160420 locktype3 = 6 -7160420 goalCount = 3 -7160421 goalTotal = 43 -7160421 otherCount = 68 -~~~ -7160422 CURRENTGOAL IS [7] -~~~ -7163197 UP 7 -7163197 64 255 -~~~ -~~~ -7163218 outer reward -~~~ -7163218 64 4194559 -~~~ -~~~ -7163445 DOWN 7 -7163445 0 4194559 -~~~ -~~~ -7163466 0 4194558 -~~~ -~~~ -7163468 0 4194556 -~~~ -~~~ -7163470 0 4194552 -~~~ -~~~ -7163472 0 4194544 -~~~ -~~~ -7163473 0 4194528 -~~~ -~~~ -7163475 0 4194496 -~~~ -~~~ -7163477 0 4194432 -~~~ -~~~ -7163479 0 4194304 -~~~ -~~~ -7163481 0 4194816 -7163482 homeCount = 128 -7163482 waitCount = 67 -7163483 ripCount = 52 -7163503 locktype1 = 2 -7163504 locktype2 = 9 -7163504 locktype3 = 6 -7163505 goalCount = 4 -7163505 goalTotal = 44 -7163506 otherCount = 68 -~~~ -7163506 64 4194816 -7163668 64 512 -7173399 DOWN 7 -7173399 0 512 -7173483 64 512 -7173516 DOWN 7 -7173516 0 512 -7177879 UP 10 -7177879 waslock = 0 -7177879 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7177905 512 16777728 -~~~ -7178055 512 512 -7185421 DOWN 10 -7185421 0 512 -~~~ -~~~ -7185440 0 1536 -~~~ -~~~ -7185441 0 1024 -7185442 homeCount = 129 -7185443 waitCount = 67 -7185443 ripCount = 52 -7185444 locktype1 = 2 -7185444 locktype2 = 9 -7185445 locktype3 = 6 -7185445 goalCount = 4 -7185446 goalTotal = 44 -7185446 otherCount = 68 -~~~ -7187609 UP 11 -7187609 1024 1024 -7189528 DOWN 11 -7189527 0 1024 -7189561 UP 11 -7189561 1024 1024 -7190448 DOWN 11 -7190448 0 1024 -7190455 UP 11 -7190455 1024 1024 -7190610 BEEP1 -7190610 BEEP2 -~~~ -~~~ -~~~ -7190633 1024 33555456 -~~~ -7190783 1024 1024 -7196165 DOWN 11 -7196165 0 1024 -~~~ -~~~ -7196190 0 0 -~~~ -~~~ -7196192 0 1 -~~~ -~~~ -7196194 0 3 -~~~ -~~~ -7196196 0 7 -~~~ -~~~ -7196198 0 15 -~~~ -~~~ -7196199 0 31 -~~~ -~~~ -7196201 0 63 -~~~ -~~~ -7196203 0 127 -~~~ -~~~ -7196205 0 255 -7196206 homeCount = 129 -7196206 waitCount = 67 -7196207 ripCount = 53 -7196207 locktype1 = 2 -7196208 locktype2 = 9 -7196208 locktype3 = 6 -7196229 goalCount = 4 -7196230 goalTotal = 44 -7196230 otherCount = 68 -~~~ -7196231 CURRENTGOAL IS [7] -~~~ -7196249 UP 11 -7196249 1024 255 -7196252 DOWN 11 -7196252 0 255 -7196254 UP 11 -7196254 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7196289 homeCount = 129 -7196290 waitCount = 67 -7196290 ripCount = 53 -7196291 locktype1 = 2 -7196291 locktype2 = 9 -7196291 locktype3 = 6 -7196292 goalCount = 4 -7196292 goalTotal = 44 -7196293 otherCount = 68 -~~~ -7196294 CURRENTGOAL IS [7] -~~~ -7196297 DOWN 11 -7196297 0 255 -7196324 UP 11 -7196324 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7196352 homeCount = 129 -7196352 waitCount = 67 -7196353 ripCount = 53 -7196353 locktype1 = 2 -7196354 locktype2 = 9 -7196354 locktype3 = 6 -7196355 goalCount = 4 -7196355 goalTotal = 44 -7196356 otherCount = 68 -~~~ -7196357 CURRENTGOAL IS [7] -~~~ -7198389 DOWN 11 -7198389 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198425 homeCount = 129 -7198426 waitCount = 67 -7198426 ripCount = 53 -7198427 locktype1 = 2 -7198428 locktype2 = 9 -7198428 locktype3 = 6 -7198428 goalCount = 4 -7198429 goalTotal = 44 -7198429 otherCount = 68 -~~~ -7198430 CURRENTGOAL IS [7] -~~~ -7198437 UP 11 -7198437 1024 255 -7198523 DOWN 11 -7198523 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198559 homeCount = 129 -7198560 waitCount = 67 -7198560 ripCount = 53 -7198561 locktype1 = 2 -7198561 locktype2 = 9 -7198562 locktype3 = 6 -7198562 goalCount = 4 -7198563 goalTotal = 44 -7198563 otherCount = 68 -~~~ -7198564 CURRENTGOAL IS [7] -~~~ -7198624 UP 11 -7198624 1024 255 -7198644 DOWN 11 -7198644 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198681 homeCount = 129 -7198682 waitCount = 67 -7198682 ripCount = 53 -7198683 locktype1 = 2 -7198683 locktype2 = 9 -7198684 locktype3 = 6 -7198684 goalCount = 4 -7198685 goalTotal = 44 -7198685 otherCount = 68 -~~~ -7198686 CURRENTGOAL IS [7] -~~~ -7198805 UP 11 -7198805 1024 255 -7198849 DOWN 11 -7198849 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7198882 homeCount = 129 -7198883 waitCount = 67 -7198883 ripCount = 53 -7198884 locktype1 = 2 -7198884 locktype2 = 9 -7198885 locktype3 = 6 -7198885 goalCount = 4 -7198885 goalTotal = 44 -7198886 otherCount = 68 -~~~ -7198887 CURRENTGOAL IS [7] -~~~ -7201380 UP 7 -7201380 64 255 -~~~ -~~~ -7201408 outer reward -~~~ -7201408 64 4194559 -~~~ -~~~ -7201633 DOWN 7 -7201633 0 4194559 -~~~ -~~~ -7201656 0 4194558 -~~~ -~~~ -7201657 0 4194556 -~~~ -~~~ -7201659 0 4194552 -~~~ -~~~ -7201661 0 4194544 -~~~ -~~~ -7201663 0 4194528 -~~~ -~~~ -7201665 0 4194496 -~~~ -~~~ -7201666 0 4194432 -~~~ -~~~ -7201668 0 4194304 -~~~ -~~~ -7201670 0 4194816 -7201671 homeCount = 129 -7201672 waitCount = 67 -7201672 ripCount = 53 -7201693 locktype1 = 2 -7201694 locktype2 = 9 -7201694 locktype3 = 6 -7201695 goalCount = 5 -7201695 goalTotal = 45 -7201696 otherCount = 68 -~~~ -7201696 64 4194816 -7201858 64 512 -7212005 DOWN 7 -7212005 0 512 -7212062 64 512 -7212101 DOWN 7 -7212101 0 512 -7216582 UP 10 -7216582 waslock = 0 -7216582 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7216613 512 16777728 -~~~ -7216763 512 512 -7216790 DOWN 10 -7216790 0 512 -~~~ -~~~ -7216807 0 2560 -~~~ -~~~ -7216809 0 2048 -7216810 homeCount = 130 -7216810 waitCount = 67 -7216811 ripCount = 53 -7216811 locktype1 = 2 -7216812 locktype2 = 9 -7216812 locktype3 = 6 -7216813 goalCount = 5 -7216813 goalTotal = 45 -7216813 otherCount = 68 -~~~ -7216851 UP 10 -7216851 waslock = 0 -7216851 512 2048 -~~~ -7222018 DOWN 10 -7222018 0 2048 -7222030 UP 10 -7222030 waslock = 0 -7222030 512 2048 -~~~ -~~~ -~~~ -~~~ -7222052 homeCount = 130 -7222052 waitCount = 67 -7222053 ripCount = 53 -7222053 locktype1 = 2 -7222054 locktype2 = 9 -7222054 locktype3 = 6 -7222054 goalCount = 5 -7222055 goalTotal = 45 -7222055 otherCount = 68 -~~~ -~~~ -7222139 DOWN 10 -7222139 0 2048 -~~~ -~~~ -~~~ -~~~ -7222164 homeCount = 130 -7222165 waitCount = 67 -7222165 ripCount = 53 -7222166 locktype1 = 2 -7222166 locktype2 = 9 -7222167 locktype3 = 6 -7222167 goalCount = 5 -7222167 goalTotal = 45 -7222168 otherCount = 68 -~~~ -7224209 UP 12 -7224208 2048 2048 -7226515 DOWN 12 -7226515 0 2048 -7226537 UP 12 -7226537 2048 2048 -7226794 DOWN 12 -7226794 0 2048 -7226874 UP 12 -7226874 2048 2048 -7227064 DOWN 12 -7227064 0 2048 -7227084 UP 12 -7227084 2048 2048 -7227343 DOWN 12 -7227343 0 2048 -7227375 UP 12 -7227375 2048 2048 -7227423 DOWN 12 -7227423 0 2048 -7227448 UP 12 -7227447 2048 2048 -7227489 DOWN 12 -7227489 0 2048 -7227575 UP 12 -7227575 2048 2048 -7227698 DOWN 12 -7227698 0 2048 -7227728 UP 12 -7227727 2048 2048 -7230295 DOWN 12 -7230295 0 2048 -7230303 UP 12 -7230303 2048 2048 -7230405 DOWN 12 -7230405 0 2048 -7230418 UP 12 -7230418 2048 2048 -7231209 CLICK1 -7231209 CLICK2 -~~~ -~~~ -~~~ -7231238 2048 67110912 -~~~ -7231388 2048 2048 -7238786 DOWN 12 -7238786 0 2048 -~~~ -~~~ -7238809 0 0 -~~~ -~~~ -7238810 0 1 -~~~ -~~~ -7238812 0 3 -~~~ -~~~ -7238814 0 7 -~~~ -~~~ -7238816 0 15 -~~~ -~~~ -7238818 0 31 -~~~ -~~~ -7238820 0 63 -~~~ -~~~ -7238821 0 127 -~~~ -~~~ -7238823 0 255 -7238824 homeCount = 130 -7238825 waitCount = 68 -7238825 ripCount = 53 -7238826 locktype1 = 2 -7238826 locktype2 = 9 -7238848 locktype3 = 6 -7238848 goalCount = 5 -7238848 goalTotal = 45 -7238849 otherCount = 68 -~~~ -7238850 CURRENTGOAL IS [7] -~~~ -7238850 UP 12 -7238850 2048 255 -7238885 DOWN 12 -7238885 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7238925 homeCount = 130 -7238926 waitCount = 68 -7238926 ripCount = 53 -7238927 locktype1 = 2 -7238927 locktype2 = 9 -7238928 locktype3 = 6 -7238928 goalCount = 5 -7238929 goalTotal = 45 -7238929 otherCount = 68 -~~~ -7238930 CURRENTGOAL IS [7] -~~~ -7239004 UP 12 -7239004 2048 255 -7241346 DOWN 12 -7241346 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7241387 homeCount = 130 -7241388 waitCount = 68 -7241388 ripCount = 53 -7241389 locktype1 = 2 -7241389 locktype2 = 9 -7241390 locktype3 = 6 -7241390 goalCount = 5 -7241391 goalTotal = 45 -7241391 otherCount = 68 -~~~ -7241392 CURRENTGOAL IS [7] -~~~ -7241393 UP 12 -7241393 2048 255 -7241448 DOWN 12 -7241448 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7241486 homeCount = 130 -7241487 waitCount = 68 -7241487 ripCount = 53 -7241488 locktype1 = 2 -7241488 locktype2 = 9 -7241489 locktype3 = 6 -7241489 goalCount = 5 -7241490 goalTotal = 45 -7241490 otherCount = 68 -~~~ -7241491 CURRENTGOAL IS [7] -~~~ -7246047 UP 7 -7246047 64 255 -~~~ -~~~ -7246073 outer reward -~~~ -7246073 64 4194559 -~~~ -~~~ -7246239 DOWN 7 -7246239 0 4194559 -~~~ -~~~ -7246263 0 4194558 -~~~ -~~~ -7246265 0 4194556 -~~~ -~~~ -7246267 0 4194552 -~~~ -~~~ -7246269 0 4194544 -~~~ -~~~ -7246271 0 4194528 -~~~ -~~~ -7246273 0 4194496 -~~~ -~~~ -7246274 0 4194432 -~~~ -~~~ -7246276 0 4194304 -~~~ -~~~ -7246278 0 4194816 -7246279 homeCount = 130 -7246280 waitCount = 68 -7246280 ripCount = 53 -7246301 locktype1 = 2 -7246302 locktype2 = 9 -7246302 locktype3 = 6 -7246303 goalCount = 6 -7246303 goalTotal = 46 -7246304 otherCount = 68 -~~~ -7246304 64 4194816 -7246523 64 512 -7246844 DOWN 7 -7246844 0 512 -7246865 64 512 -7246981 DOWN 7 -7246981 0 512 -7246989 64 512 -7247265 DOWN 7 -7247265 0 512 -7247273 64 512 -7253973 DOWN 7 -7253973 0 512 -7253988 64 512 -7255948 DOWN 7 -7255948 0 512 -7260197 UP 10 -7260197 waslock = 0 -7260197 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7260223 512 16777728 -~~~ -7260373 512 512 -7264997 DOWN 10 -7264997 0 512 -~~~ -~~~ -7265017 0 1536 -~~~ -~~~ -7265019 0 1024 -7265020 homeCount = 131 -7265021 waitCount = 68 -7265021 ripCount = 53 -7265022 locktype1 = 2 -7265022 locktype2 = 9 -7265023 locktype3 = 6 -7265023 goalCount = 6 -7265024 goalTotal = 46 -7265024 otherCount = 68 -~~~ -7267139 UP 11 -7267139 1024 1024 -7267176 DOWN 11 -7267176 0 1024 -7267210 UP 11 -7267210 1024 1024 -7267240 DOWN 11 -7267240 0 1024 -7267440 LOCKOUT 3 -~~~ -7267457 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -7267461 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7267592 UP 11 -7267592 1024 0 -7269771 DOWN 11 -7269771 0 0 -7269794 UP 11 -7269794 1024 0 -7271659 DOWN 11 -7271659 0 0 -7271674 UP 11 -7271674 1024 0 -7275691 DOWN 11 -7275691 0 0 -7282884 UP 8 -7282884 128 0 -7283366 DOWN 8 -7283366 0 0 -7292457 LOCKEND -~~~ -~~~ -~~~ -7292478 0 512 -7293423 UP 10 -7293423 waslock = 0 -7293423 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7293452 512 16777728 -~~~ -7293602 512 512 -7298559 DOWN 10 -7298559 0 512 -~~~ -~~~ -7298577 0 2560 -~~~ -~~~ -7298579 0 2048 -7298580 homeCount = 132 -7298580 waitCount = 68 -7298581 ripCount = 53 -7298581 locktype1 = 2 -7298582 locktype2 = 9 -7298582 locktype3 = 7 -7298583 goalCount = 6 -7298583 goalTotal = 46 -7298584 otherCount = 68 -~~~ -7298630 UP 10 -7298630 waslock = 0 -7298630 512 2048 -~~~ -7298656 DOWN 10 -7298656 0 2048 -~~~ -~~~ -~~~ -~~~ -7298670 homeCount = 132 -7298670 waitCount = 68 -7298671 ripCount = 53 -7298671 locktype1 = 2 -7298672 locktype2 = 9 -7298672 locktype3 = 7 -7298673 goalCount = 6 -7298673 goalTotal = 46 -7298674 otherCount = 68 -~~~ -7300525 UP 12 -7300525 2048 2048 -7303861 DOWN 12 -7303861 0 2048 -7303914 UP 12 -7303914 2048 2048 -7304045 DOWN 12 -7304045 0 2048 -7304061 UP 12 -7304061 2048 2048 -7308526 CLICK1 -7308526 CLICK2 -~~~ -~~~ -~~~ -7308548 2048 67110912 -~~~ -7308698 2048 2048 -7317748 DOWN 12 -7317748 0 2048 -~~~ -~~~ -7317770 0 0 -~~~ -~~~ -7317772 0 1 -~~~ -~~~ -7317774 0 3 -~~~ -~~~ -7317776 0 7 -~~~ -~~~ -7317777 0 15 -~~~ -~~~ -7317779 0 31 -~~~ -~~~ -7317781 0 63 -~~~ -~~~ -7317783 0 127 -~~~ -~~~ -7317785 0 255 -7317786 homeCount = 132 -7317786 waitCount = 69 -7317787 ripCount = 53 -7317787 locktype1 = 2 -7317788 locktype2 = 9 -7317809 locktype3 = 7 -7317809 goalCount = 6 -7317810 goalTotal = 46 -7317810 otherCount = 68 -~~~ -7317811 CURRENTGOAL IS [7] -~~~ -7326698 UP 7 -7326698 64 255 -~~~ -~~~ -7326722 outer reward -~~~ -7326722 64 4194559 -~~~ -~~~ -7327001 DOWN 7 -7327001 0 4194559 -~~~ -~~~ -7327021 0 4194558 -~~~ -~~~ -7327022 0 4194556 -~~~ -~~~ -7327024 0 4194552 -~~~ -~~~ -7327026 0 4194544 -~~~ -~~~ -7327028 0 4194528 -~~~ -~~~ -7327030 0 4194496 -~~~ -~~~ -7327032 0 4194432 -~~~ -~~~ -7327033 0 4194304 -~~~ -~~~ -7327035 0 4194816 -7327036 homeCount = 132 -7327037 waitCount = 69 -7327037 ripCount = 53 -7327058 locktype1 = 2 -7327059 locktype2 = 9 -7327059 locktype3 = 7 -7327059 goalCount = 7 -7327060 goalTotal = 47 -7327060 otherCount = 68 -~~~ -7327061 64 4194816 -7327172 64 512 -7327436 DOWN 7 -7327436 0 512 -7327444 64 512 -7335677 DOWN 7 -7335677 0 512 -7335702 64 512 -7335769 DOWN 7 -7335769 0 512 -7340817 UP 10 -7340817 waslock = 0 -7340817 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7340846 512 16777728 -~~~ -7340996 512 512 -7341059 DOWN 10 -7341059 0 512 -~~~ -~~~ -7341080 0 1536 -~~~ -~~~ -7341082 0 1024 -7341083 homeCount = 133 -7341084 waitCount = 69 -7341084 ripCount = 53 -7341085 locktype1 = 2 -7341085 locktype2 = 9 -7341086 locktype3 = 7 -7341086 goalCount = 7 -7341087 goalTotal = 47 -7341087 otherCount = 68 -~~~ -7341163 UP 10 -7341163 waslock = 0 -7341163 512 1024 -~~~ -7345850 DOWN 10 -7345850 0 1024 -7345862 UP 10 -7345862 waslock = 0 -7345862 512 1024 -~~~ -~~~ -~~~ -~~~ -7345873 homeCount = 133 -7345873 waitCount = 69 -7345874 ripCount = 53 -7345874 locktype1 = 2 -7345875 locktype2 = 9 -7345875 locktype3 = 7 -7345876 goalCount = 7 -7345876 goalTotal = 47 -7345876 otherCount = 68 -~~~ -~~~ -7345957 DOWN 10 -7345957 0 1024 -~~~ -~~~ -~~~ -~~~ -7345984 homeCount = 133 -7345985 waitCount = 69 -7345985 ripCount = 53 -7345986 locktype1 = 2 -7345986 locktype2 = 9 -7345987 locktype3 = 7 -7345987 goalCount = 7 -7345988 goalTotal = 47 -7345988 otherCount = 68 -~~~ -7346012 UP 10 -7346012 waslock = 0 -7346012 512 1024 -~~~ -7346063 DOWN 10 -7346063 0 1024 -~~~ -~~~ -~~~ -~~~ -7346083 homeCount = 133 -7346083 waitCount = 69 -7346084 ripCount = 53 -7346084 locktype1 = 2 -7346085 locktype2 = 9 -7346085 locktype3 = 7 -7346086 goalCount = 7 -7346086 goalTotal = 47 -7346087 otherCount = 68 -~~~ -7348564 UP 11 -7348564 1024 1024 -7348580 DOWN 11 -7348580 0 1024 -7348605 UP 11 -7348605 1024 1024 -7350658 DOWN 11 -7350658 0 1024 -7350674 UP 11 -7350674 1024 1024 -7351121 DOWN 11 -7351121 0 1024 -7351136 UP 11 -7351136 1024 1024 -7353064 BEEP1 -7353064 BEEP2 -~~~ -~~~ -~~~ -7353083 1024 33555456 -~~~ -7353233 1024 1024 -7360547 DOWN 11 -7360547 0 1024 -~~~ -~~~ -7360571 0 0 -~~~ -~~~ -7360573 0 1 -~~~ -~~~ -7360575 0 3 -~~~ -~~~ -7360577 0 7 -~~~ -~~~ -7360578 0 15 -~~~ -~~~ -7360580 0 31 -~~~ -~~~ -7360582 0 63 -~~~ -~~~ -7360584 0 127 -~~~ -~~~ -7360586 0 255 -7360587 homeCount = 133 -7360587 waitCount = 69 -7360588 ripCount = 54 -7360588 locktype1 = 2 -7360589 locktype2 = 9 -7360610 locktype3 = 7 -7360610 goalCount = 7 -7360611 goalTotal = 47 -7360611 otherCount = 68 -~~~ -7360612 CURRENTGOAL IS [7] -~~~ -7360641 UP 11 -7360641 1024 255 -7360672 DOWN 11 -7360672 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7360707 homeCount = 133 -7360708 waitCount = 69 -7360708 ripCount = 54 -7360709 locktype1 = 2 -7360709 locktype2 = 9 -7360710 locktype3 = 7 -7360710 goalCount = 7 -7360711 goalTotal = 47 -7360711 otherCount = 68 -~~~ -7360712 CURRENTGOAL IS [7] -~~~ -7360721 UP 11 -7360721 1024 255 -7362656 DOWN 11 -7362656 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7362697 homeCount = 133 -7362698 waitCount = 69 -7362698 ripCount = 54 -7362699 locktype1 = 2 -7362699 locktype2 = 9 -7362700 locktype3 = 7 -7362700 goalCount = 7 -7362701 goalTotal = 47 -7362701 otherCount = 68 -~~~ -7362702 CURRENTGOAL IS [7] -~~~ -7365352 UP 7 -7365352 64 255 -~~~ -~~~ -7365373 outer reward -~~~ -7365374 64 4194559 -~~~ -~~~ -7365536 DOWN 7 -7365536 0 4194559 -~~~ -~~~ -7365562 0 4194558 -~~~ -~~~ -7365563 0 4194556 -~~~ -~~~ -7365565 0 4194552 -~~~ -~~~ -7365567 0 4194544 -~~~ -~~~ -7365569 0 4194528 -~~~ -~~~ -7365571 0 4194496 -~~~ -~~~ -7365572 0 4194432 -~~~ -~~~ -7365574 0 4194304 -~~~ -~~~ -7365576 0 4194816 -7365577 homeCount = 133 -7365578 waitCount = 69 -7365578 ripCount = 54 -7365599 locktype1 = 2 -7365599 locktype2 = 9 -7365600 locktype3 = 7 -7365600 goalCount = 8 -7365601 goalTotal = 48 -7365601 otherCount = 68 -~~~ -7365605 64 4194816 -7365823 64 512 -7366174 DOWN 7 -7366174 0 512 -7366179 64 512 -7374623 DOWN 7 -7374623 0 512 -7379786 UP 10 -7379786 waslock = 0 -7379786 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7379809 512 16777728 -~~~ -7379959 512 512 -7384922 DOWN 10 -7384922 0 512 -~~~ -~~~ -7384944 0 1536 -~~~ -~~~ -7384946 0 1024 -7384947 homeCount = 134 -7384948 waitCount = 69 -7384948 ripCount = 54 -7384948 locktype1 = 2 -7384949 locktype2 = 9 -7384949 locktype3 = 7 -7384950 goalCount = 8 -7384950 goalTotal = 48 -7384951 otherCount = 68 -~~~ -7384996 UP 10 -7384996 waslock = 0 -7384996 512 1024 -7385026 DOWN 10 -7385026 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -7385048 homeCount = 134 -7385048 waitCount = 69 -7385049 ripCount = 54 -7385049 locktype1 = 2 -7385050 locktype2 = 9 -7385050 locktype3 = 7 -7385051 goalCount = 8 -7385051 goalTotal = 48 -7385052 otherCount = 68 -~~~ -7387275 UP 11 -7387275 1024 1024 -7389347 DOWN 11 -7389347 0 1024 -7389404 UP 11 -7389404 1024 1024 -7393276 BEEP1 -7393276 BEEP2 -~~~ -~~~ -~~~ -7393295 1024 33555456 -~~~ -7393445 1024 1024 -7402954 DOWN 11 -7402954 0 1024 -~~~ -~~~ -7402973 0 0 -~~~ -~~~ -7402975 0 1 -~~~ -~~~ -7402977 0 3 -~~~ -~~~ -7402979 0 7 -~~~ -~~~ -7402981 0 15 -~~~ -~~~ -7402982 0 31 -~~~ -~~~ -7402984 0 63 -~~~ -~~~ -7402986 0 127 -~~~ -~~~ -7402988 0 255 -7402989 homeCount = 134 -7402989 waitCount = 69 -7402990 ripCount = 55 -7402990 locktype1 = 2 -7402991 locktype2 = 9 -7403012 locktype3 = 7 -7403013 goalCount = 8 -7403013 goalTotal = 48 -7403013 otherCount = 68 -~~~ -7403015 CURRENTGOAL IS [7] -~~~ -7403015 UP 11 -7403015 1024 255 -7403061 DOWN 11 -7403061 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7403099 homeCount = 134 -7403100 waitCount = 69 -7403100 ripCount = 55 -7403101 locktype1 = 2 -7403101 locktype2 = 9 -7403102 locktype3 = 7 -7403102 goalCount = 8 -7403103 goalTotal = 48 -7403103 otherCount = 68 -~~~ -7403104 CURRENTGOAL IS [7] -~~~ -7406281 UP 7 -7406281 64 255 -~~~ -~~~ -7406307 outer reward -~~~ -7406307 64 4194559 -~~~ -~~~ -7406343 DOWN 7 -7406343 0 4194559 -~~~ -~~~ -7406364 0 4194558 -~~~ -~~~ -7406366 0 4194556 -~~~ -~~~ -7406368 0 4194552 -~~~ -7406369 64 4194552 -~~~ -~~~ -7406371 64 4194544 -~~~ -~~~ -7406373 64 4194528 -~~~ -7406374 64 4194496 -~~~ -~~~ -7406375 64 4194432 -~~~ -~~~ -7406377 64 4194304 -~~~ -~~~ -7406379 64 4194816 -7406380 homeCount = 134 -7406401 waitCount = 69 -7406402 ripCount = 55 -7406402 locktype1 = 2 -7406403 locktype2 = 9 -7406403 locktype3 = 7 -7406404 goalCount = 9 -7406404 goalTotal = 49 -7406405 otherCount = 68 -~~~ -7406561 DOWN 7 -7406561 0 4194816 -7406594 64 4194816 -7406757 64 512 -7415726 DOWN 7 -7415726 0 512 -7415737 64 512 -7417333 DOWN 7 -7417333 0 512 -7417337 64 512 -7417494 DOWN 7 -7417494 0 512 -7417522 64 512 -7417596 DOWN 7 -7417596 0 512 -7425090 UP 10 -7425090 waslock = 0 -7425090 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7425120 512 16777728 -~~~ -7425270 512 512 -7431156 DOWN 10 -7431156 0 512 -7431172 UP 10 -7431172 waslock = 0 -7431172 512 512 -~~~ -~~~ -7431176 512 1536 -~~~ -~~~ -7431178 512 1024 -7431179 homeCount = 135 -7431179 waitCount = 69 -7431180 ripCount = 55 -7431180 locktype1 = 2 -7431181 locktype2 = 9 -7431181 locktype3 = 7 -7431181 goalCount = 9 -7431182 goalTotal = 49 -7431182 otherCount = 68 -~~~ -~~~ -7431273 DOWN 10 -7431273 0 1024 -~~~ -~~~ -~~~ -~~~ -7431299 homeCount = 135 -7431300 waitCount = 69 -7431300 ripCount = 55 -7431301 locktype1 = 2 -7431301 locktype2 = 9 -7431302 locktype3 = 7 -7431302 goalCount = 9 -7431303 goalTotal = 49 -7431303 otherCount = 68 -~~~ -7431350 UP 10 -7431350 waslock = 0 -7431350 512 1024 -7431373 DOWN 10 -7431373 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -7431399 homeCount = 135 -7431399 waitCount = 69 -7431400 ripCount = 55 -7431400 locktype1 = 2 -7431401 locktype2 = 9 -7431401 locktype3 = 7 -7431402 goalCount = 9 -7431402 goalTotal = 49 -7431403 otherCount = 68 -~~~ -7433644 UP 11 -7433644 1024 1024 -7435685 DOWN 11 -7435685 0 1024 -7435694 UP 11 -7435694 1024 1024 -7435696 DOWN 11 -7435696 0 1024 -7435712 UP 11 -7435712 1024 1024 -7435877 DOWN 11 -7435877 0 1024 -7435902 UP 11 -7435902 1024 1024 -7436645 BEEP1 -7436645 BEEP2 -~~~ -~~~ -~~~ -7436666 1024 33555456 -~~~ -7436816 1024 1024 -7444254 DOWN 11 -7444254 0 1024 -~~~ -~~~ -7444275 0 0 -~~~ -~~~ -7444277 0 1 -~~~ -~~~ -7444279 0 3 -~~~ -~~~ -7444281 0 7 -~~~ -~~~ -7444283 0 15 -~~~ -~~~ -7444285 0 31 -~~~ -~~~ -7444286 0 63 -~~~ -~~~ -7444288 0 127 -~~~ -~~~ -7444290 0 255 -7444291 homeCount = 135 -7444292 waitCount = 69 -7444292 ripCount = 56 -7444293 locktype1 = 2 -7444293 locktype2 = 9 -7444294 locktype3 = 7 -7444315 goalCount = 9 -7444315 goalTotal = 49 -7444316 otherCount = 68 -~~~ -7444317 CURRENTGOAL IS [7] -~~~ -7444336 UP 11 -7444336 1024 255 -7446175 DOWN 11 -7446175 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7446211 homeCount = 135 -7446212 waitCount = 69 -7446212 ripCount = 56 -7446213 locktype1 = 2 -7446213 locktype2 = 9 -7446214 locktype3 = 7 -7446214 goalCount = 9 -7446215 goalTotal = 49 -7446215 otherCount = 68 -~~~ -7446216 CURRENTGOAL IS [7] -~~~ -7448886 UP 7 -7448886 64 255 -~~~ -~~~ -7448911 outer reward -~~~ -7448911 64 4194559 -~~~ -~~~ -7448916 outerreps = 8 -~~~ -~~~ -7449078 DOWN 7 -7449078 0 4194559 -~~~ -~~~ -7449097 0 4194558 -~~~ -~~~ -7449099 0 4194556 -~~~ -~~~ -7449100 0 4194552 -~~~ -~~~ -7449102 0 4194544 -~~~ -~~~ -7449104 0 4194528 -~~~ -~~~ -7449106 0 4194496 -~~~ -~~~ -7449108 0 4194432 -~~~ -~~~ -7449110 0 4194304 -~~~ -~~~ -7449111 0 4194816 -7449112 homeCount = 135 -7449113 waitCount = 69 -7449113 ripCount = 56 -7449134 locktype1 = 2 -7449135 locktype2 = 9 -7449135 locktype3 = 7 -7449136 goalCount = 0 -7449136 goalTotal = 50 -7449137 otherCount = 68 -~~~ -7449142 64 4194816 -7449361 64 512 -7449716 DOWN 7 -7449716 0 512 -7449737 64 512 -7450009 DOWN 7 -7450009 0 512 -7450016 64 512 -7460272 DOWN 7 -7460272 0 512 -7460347 64 512 -7460391 DOWN 7 -7460391 0 512 -7460925 64 512 -7460936 DOWN 7 -7460936 0 512 -7466038 UP 10 -7466038 waslock = 0 -7466038 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7466064 512 16777728 -~~~ -7466214 512 512 -7466234 DOWN 10 -7466234 0 512 -~~~ -~~~ -7466261 0 2560 -~~~ -~~~ -7466262 0 2048 -7466263 homeCount = 136 -7466264 waitCount = 69 -7466264 ripCount = 56 -7466265 locktype1 = 2 -7466265 locktype2 = 9 -7466266 locktype3 = 7 -7466266 goalCount = 0 -7466267 goalTotal = 50 -7466267 otherCount = 68 -~~~ -7466338 UP 10 -7466339 waslock = 0 -7466338 512 2048 -~~~ -7473072 DOWN 10 -7473072 0 2048 -~~~ -~~~ -~~~ -~~~ -7473098 homeCount = 136 -7473099 waitCount = 69 -7473099 ripCount = 56 -7473100 locktype1 = 2 -7473100 locktype2 = 9 -7473100 locktype3 = 7 -7473101 goalCount = 0 -7473101 goalTotal = 50 -7473102 otherCount = 68 -~~~ -7473122 UP 10 -7473122 waslock = 0 -7473122 512 2048 -~~~ -7473189 DOWN 10 -7473189 0 2048 -~~~ -~~~ -~~~ -~~~ -7473215 homeCount = 136 -7473216 waitCount = 69 -7473216 ripCount = 56 -7473217 locktype1 = 2 -7473217 locktype2 = 9 -7473218 locktype3 = 7 -7473218 goalCount = 0 -7473219 goalTotal = 50 -7473219 otherCount = 68 -~~~ -7473271 UP 10 -7473271 waslock = 0 -7473271 512 2048 -7473287 DOWN 10 -7473287 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -7473310 homeCount = 136 -7473310 waitCount = 69 -7473311 ripCount = 56 -7473311 locktype1 = 2 -7473312 locktype2 = 9 -7473312 locktype3 = 7 -7473313 goalCount = 0 -7473313 goalTotal = 50 -7473314 otherCount = 68 -~~~ -7475182 UP 12 -7475182 2048 2048 -7478357 DOWN 12 -7478357 0 2048 -7478404 UP 12 -7478404 2048 2048 -7478682 CLICK1 -7478682 CLICK2 -~~~ -~~~ -~~~ -7478704 2048 67110912 -~~~ -7478854 2048 2048 -7487545 DOWN 12 -7487545 0 2048 -~~~ -~~~ -7487563 0 0 -~~~ -~~~ -7487565 0 1 -~~~ -~~~ -7487567 0 3 -~~~ -~~~ -7487569 0 7 -~~~ -~~~ -7487571 0 15 -~~~ -~~~ -7487572 0 31 -~~~ -~~~ -7487574 0 63 -~~~ -~~~ -7487576 0 127 -~~~ -~~~ -7487578 0 255 -7487579 homeCount = 136 -7487579 waitCount = 70 -7487580 ripCount = 56 -7487580 locktype1 = 2 -7487581 locktype2 = 9 -7487581 locktype3 = 7 -7487602 goalCount = 0 -7487603 goalTotal = 50 -7487603 otherCount = 68 -~~~ -7487604 CURRENTGOAL IS [1] -~~~ -7487614 UP 12 -7487614 2048 255 -7487665 DOWN 12 -7487665 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7487702 homeCount = 136 -7487703 waitCount = 70 -7487703 ripCount = 56 -7487704 locktype1 = 2 -7487704 locktype2 = 9 -7487705 locktype3 = 7 -7487705 goalCount = 0 -7487706 goalTotal = 50 -7487706 otherCount = 68 -~~~ -7487707 CURRENTGOAL IS [1] -~~~ -7497495 UP 7 -7497495 64 255 -~~~ -~~~ -7497692 DOWN 7 -7497692 0 255 -~~~ -~~~ -7497716 0 254 -~~~ -~~~ -7497718 0 252 -~~~ -~~~ -7497719 0 248 -~~~ -~~~ -7497721 0 240 -~~~ -~~~ -7497723 0 224 -~~~ -~~~ -7497725 0 192 -~~~ -~~~ -7497727 0 128 -~~~ -~~~ -7497728 0 0 -~~~ -~~~ -7497730 0 512 -7497731 homeCount = 136 -7497732 waitCount = 70 -7497732 ripCount = 56 -7497733 locktype1 = 2 -7497733 locktype2 = 9 -7497754 locktype3 = 7 -7497754 goalCount = 0 -7497755 goalTotal = 50 -7497755 otherCount = 69 -~~~ -7497775 64 512 -7498876 DOWN 7 -7498876 0 512 -7498954 64 512 -7498988 DOWN 7 -7498988 0 512 -7503794 UP 10 -7503795 waslock = 0 -7503794 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7503825 512 16777728 -~~~ -7503975 512 512 -7504038 DOWN 10 -7504038 0 512 -~~~ -~~~ -7504058 0 2560 -~~~ -~~~ -7504060 0 2048 -7504061 homeCount = 137 -7504062 waitCount = 70 -7504062 ripCount = 56 -7504063 locktype1 = 2 -7504063 locktype2 = 9 -7504064 locktype3 = 7 -7504064 goalCount = 0 -7504065 goalTotal = 50 -7504065 otherCount = 69 -~~~ -7504073 UP 10 -7504073 waslock = 0 -7504073 512 2048 -~~~ -7509916 DOWN 10 -7509916 0 2048 -~~~ -~~~ -~~~ -~~~ -7509944 homeCount = 137 -7509945 waitCount = 70 -7509945 ripCount = 56 -7509946 locktype1 = 2 -7509946 locktype2 = 9 -7509947 locktype3 = 7 -7509947 goalCount = 0 -7509948 goalTotal = 50 -7509948 otherCount = 69 -~~~ -7509968 UP 10 -7509968 waslock = 0 -7509968 512 2048 -~~~ -7510017 DOWN 10 -7510017 0 2048 -~~~ -~~~ -~~~ -~~~ -7510044 homeCount = 137 -7510045 waitCount = 70 -7510045 ripCount = 56 -7510046 locktype1 = 2 -7510046 locktype2 = 9 -7510047 locktype3 = 7 -7510047 goalCount = 0 -7510048 goalTotal = 50 -7510048 otherCount = 69 -~~~ -7512207 UP 12 -7512207 2048 2048 -7515181 DOWN 12 -7515181 0 2048 -7515189 UP 12 -7515189 2048 2048 -7515191 DOWN 12 -7515191 0 2048 -7515212 UP 12 -7515212 2048 2048 -7518208 CLICK1 -7518208 CLICK2 -~~~ -~~~ -~~~ -7518231 2048 67110912 -~~~ -7518381 2048 2048 -7527917 DOWN 12 -7527917 0 2048 -~~~ -~~~ -7527940 0 0 -~~~ -~~~ -7527942 0 1 -~~~ -~~~ -7527944 0 3 -~~~ -~~~ -7527946 0 7 -~~~ -~~~ -7527948 0 15 -~~~ -~~~ -7527949 0 31 -~~~ -~~~ -7527951 0 63 -~~~ -~~~ -7527953 0 127 -~~~ -~~~ -7527955 0 255 -7527956 homeCount = 137 -7527956 waitCount = 71 -7527957 ripCount = 56 -7527957 locktype1 = 2 -7527958 locktype2 = 9 -7527958 locktype3 = 7 -7527979 goalCount = 0 -7527980 goalTotal = 50 -7527980 otherCount = 69 -~~~ -7527981 CURRENTGOAL IS [1] -~~~ -7535073 UP 7 -7535073 64 255 -~~~ -~~~ -7535887 DOWN 7 -7535887 0 255 -~~~ -~~~ -7535912 0 254 -~~~ -~~~ -7535914 0 252 -~~~ -~~~ -7535916 0 248 -~~~ -~~~ -7535917 0 240 -~~~ -~~~ -7535919 0 224 -~~~ -~~~ -7535921 0 192 -~~~ -~~~ -7535923 0 128 -~~~ -~~~ -7535925 0 0 -~~~ -~~~ -7535927 0 512 -7535928 homeCount = 137 -7535928 waitCount = 71 -7535929 ripCount = 56 -7535929 locktype1 = 2 -7535930 locktype2 = 9 -7535951 locktype3 = 7 -7535951 goalCount = 0 -7535952 goalTotal = 50 -7535952 otherCount = 70 -~~~ -7541930 UP 10 -7541931 waslock = 0 -7541930 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7541958 512 16777728 -~~~ -7542108 512 512 -7542121 DOWN 10 -7542121 0 512 -~~~ -~~~ -7542138 0 2560 -~~~ -~~~ -7542140 0 2048 -7542141 homeCount = 138 -7542142 waitCount = 71 -7542142 ripCount = 56 -7542143 locktype1 = 2 -7542143 locktype2 = 9 -7542144 locktype3 = 7 -7542144 goalCount = 0 -7542145 goalTotal = 50 -7542145 otherCount = 70 -~~~ -7542404 UP 10 -7542404 waslock = 0 -7542404 512 2048 -~~~ -7548488 DOWN 10 -7548488 0 2048 -~~~ -~~~ -~~~ -~~~ -7548516 homeCount = 138 -7548516 waitCount = 71 -7548517 ripCount = 56 -7548517 locktype1 = 2 -7548517 locktype2 = 9 -7548518 locktype3 = 7 -7548518 goalCount = 0 -7548519 goalTotal = 50 -7548519 otherCount = 70 -~~~ -7548548 UP 10 -7548549 waslock = 0 -7548548 512 2048 -~~~ -7548586 DOWN 10 -7548586 0 2048 -~~~ -~~~ -~~~ -~~~ -7548609 homeCount = 138 -7548609 waitCount = 71 -7548610 ripCount = 56 -7548610 locktype1 = 2 -7548611 locktype2 = 9 -7548611 locktype3 = 7 -7548612 goalCount = 0 -7548612 goalTotal = 50 -7548613 otherCount = 70 -~~~ -7550864 UP 12 -7550864 2048 2048 -7551269 DOWN 12 -7551269 0 2048 -7551469 LOCKOUT 3 -~~~ -7551491 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7551497 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7551703 UP 12 -7551703 2048 0 -7552563 DOWN 12 -7552563 0 0 -7556268 512 0 -7557015 0 0 -7557777 512 0 -7557804 0 0 -7570040 512 0 -7570455 0 0 -7570527 512 0 -7570550 0 0 -7576491 LOCKEND -~~~ -~~~ -~~~ -7576514 0 512 -7579140 UP 10 -7579140 waslock = 0 -7579140 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7579169 512 16777728 -~~~ -7579319 512 512 -7579898 DOWN 10 -7579898 0 512 -7579912 UP 10 -7579913 waslock = 0 -7579912 512 512 -~~~ -~~~ -7579932 512 1536 -~~~ -~~~ -7579934 512 1024 -7579935 homeCount = 139 -7579936 waitCount = 71 -7579936 ripCount = 56 -7579937 locktype1 = 2 -7579937 locktype2 = 9 -7579938 locktype3 = 8 -7579938 goalCount = 0 -7579939 goalTotal = 50 -7579939 otherCount = 70 -~~~ -~~~ -7589333 DOWN 10 -7589333 0 1024 -~~~ -~~~ -~~~ -~~~ -7589354 homeCount = 139 -7589354 waitCount = 71 -7589355 ripCount = 56 -7589355 locktype1 = 2 -7589356 locktype2 = 9 -7589356 locktype3 = 8 -7589357 goalCount = 0 -7589357 goalTotal = 50 -7589358 otherCount = 70 -~~~ -7589393 UP 10 -7589393 waslock = 0 -7589393 512 1024 -~~~ -7589430 DOWN 10 -7589430 0 1024 -~~~ -~~~ -~~~ -~~~ -7589457 homeCount = 139 -7589458 waitCount = 71 -7589458 ripCount = 56 -7589459 locktype1 = 2 -7589459 locktype2 = 9 -7589460 locktype3 = 8 -7589460 goalCount = 0 -7589461 goalTotal = 50 -7589461 otherCount = 70 -~~~ -7590928 UP 11 -7590928 1024 1024 -7592834 DOWN 11 -7592834 0 1024 -7592866 UP 11 -7592866 1024 1024 -7593816 DOWN 11 -7593816 0 1024 -7593925 UP 11 -7593925 1024 1024 -7593962 DOWN 11 -7593962 0 1024 -7594016 UP 11 -7594016 1024 1024 -7594027 DOWN 11 -7594027 0 1024 -7594053 UP 11 -7594053 1024 1024 -7596310 DOWN 11 -7596310 0 1024 -7596336 UP 11 -7596336 1024 1024 -7596428 BEEP1 -7596428 BEEP2 -~~~ -~~~ -~~~ -7596454 1024 33555456 -~~~ -7596604 1024 1024 -7604212 DOWN 11 -7604212 0 1024 -~~~ -~~~ -7604232 0 0 -~~~ -~~~ -7604234 0 1 -~~~ -~~~ -7604236 0 3 -~~~ -~~~ -7604238 0 7 -~~~ -~~~ -7604240 0 15 -~~~ -~~~ -7604241 0 31 -~~~ -~~~ -7604243 0 63 -~~~ -~~~ -7604245 0 127 -~~~ -7604246 UP 11 -7604246 1024 127 -~~~ -7604248 homeCount = 139 -7604249 waitCount = 71 -7604249 ripCount = 57 -7604250 locktype1 = 2 -7604250 locktype2 = 9 -7604271 locktype3 = 8 -7604272 goalCount = 0 -7604272 goalTotal = 50 -7604273 otherCount = 70 -~~~ -7604274 CURRENTGOAL IS [1] -~~~ -7604274 1024 255 -7607328 DOWN 11 -7607328 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7607363 homeCount = 139 -7607363 waitCount = 71 -7607364 ripCount = 57 -7607364 locktype1 = 2 -7607365 locktype2 = 9 -7607365 locktype3 = 8 -7607366 goalCount = 0 -7607366 goalTotal = 50 -7607367 otherCount = 70 -~~~ -7607368 CURRENTGOAL IS [1] -~~~ -7608096 UP 11 -7608096 1024 255 -7608235 DOWN 11 -7608235 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7608273 homeCount = 139 -7608273 waitCount = 71 -7608274 ripCount = 57 -7608274 locktype1 = 2 -7608275 locktype2 = 9 -7608275 locktype3 = 8 -7608276 goalCount = 0 -7608276 goalTotal = 50 -7608277 otherCount = 70 -~~~ -7608278 CURRENTGOAL IS [1] -~~~ -7613872 UP 5 -7613872 16 255 -~~~ -~~~ -7614090 DOWN 5 -7614090 0 255 -~~~ -~~~ -7614106 0 254 -~~~ -~~~ -7614108 0 252 -~~~ -~~~ -7614110 0 248 -~~~ -~~~ -7614112 0 240 -~~~ -~~~ -7614113 0 224 -~~~ -~~~ -7614115 0 192 -~~~ -~~~ -7614117 0 128 -~~~ -~~~ -7614119 0 0 -~~~ -~~~ -7614121 0 512 -7614122 homeCount = 139 -7614122 waitCount = 71 -7614123 ripCount = 57 -7614123 locktype1 = 2 -7614124 locktype2 = 9 -7614145 locktype3 = 8 -7614145 goalCount = 0 -7614146 goalTotal = 50 -7614146 otherCount = 71 -~~~ -7614151 16 512 -7614918 DOWN 5 -7614918 0 512 -7615042 16 512 -7615066 DOWN 5 -7615066 0 512 -7620314 UP 10 -7620314 waslock = 0 -7620314 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7620344 512 16777728 -~~~ -7620494 512 512 -7620617 DOWN 10 -7620617 0 512 -~~~ -~~~ -7620642 0 2560 -~~~ -~~~ -7620644 0 2048 -7620645 homeCount = 140 -7620646 waitCount = 71 -7620646 ripCount = 57 -7620647 locktype1 = 2 -7620647 locktype2 = 9 -7620648 locktype3 = 8 -7620648 goalCount = 0 -7620649 goalTotal = 50 -7620649 otherCount = 71 -~~~ -7620663 UP 10 -7620663 waslock = 0 -7620663 512 2048 -~~~ -7624814 DOWN 10 -7624814 0 2048 -~~~ -~~~ -~~~ -~~~ -7624833 homeCount = 140 -7624834 waitCount = 71 -7624834 ripCount = 57 -7624835 locktype1 = 2 -7624835 locktype2 = 9 -7624836 locktype3 = 8 -7624836 goalCount = 0 -7624837 goalTotal = 50 -7624837 otherCount = 71 -~~~ -7624849 UP 10 -7624849 waslock = 0 -7624849 512 2048 -~~~ -7624910 DOWN 10 -7624910 0 2048 -~~~ -~~~ -~~~ -~~~ -7624933 homeCount = 140 -7624934 waitCount = 71 -7624934 ripCount = 57 -7624935 locktype1 = 2 -7624935 locktype2 = 9 -7624936 locktype3 = 8 -7624936 goalCount = 0 -7624937 goalTotal = 50 -7624937 otherCount = 71 -~~~ -7627214 UP 12 -7627214 2048 2048 -7629405 DOWN 12 -7629405 0 2048 -7629414 UP 12 -7629414 2048 2048 -7630600 DOWN 12 -7630600 0 2048 -7630608 UP 12 -7630608 2048 2048 -7630610 DOWN 12 -7630610 0 2048 -7630629 UP 12 -7630629 2048 2048 -7631348 DOWN 12 -7631348 0 2048 -7631373 UP 12 -7631373 2048 2048 -7631500 DOWN 12 -7631500 0 2048 -7631549 UP 12 -7631549 2048 2048 -7632751 DOWN 12 -7632751 0 2048 -7632791 UP 12 -7632791 2048 2048 -7634214 CLICK1 -7634214 CLICK2 -~~~ -~~~ -~~~ -7634234 2048 67110912 -~~~ -7634384 2048 2048 -7641364 DOWN 12 -7641364 0 2048 -~~~ -~~~ -7641390 0 0 -~~~ -~~~ -7641392 0 1 -~~~ -~~~ -7641394 0 3 -~~~ -~~~ -7641396 0 7 -~~~ -~~~ -7641398 0 15 -~~~ -~~~ -7641400 0 31 -~~~ -~~~ -7641401 0 63 -~~~ -~~~ -7641403 UP 12 -7641403 2048 127 -~~~ -~~~ -7641405 2048 255 -7641406 homeCount = 140 -7641407 waitCount = 72 -7641407 ripCount = 57 -7641408 locktype1 = 2 -7641429 locktype2 = 9 -7641429 locktype3 = 8 -7641429 goalCount = 0 -7641430 goalTotal = 50 -7641430 otherCount = 71 -~~~ -7641432 CURRENTGOAL IS [1] -~~~ -7641495 DOWN 12 -7641495 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7641537 homeCount = 140 -7641537 waitCount = 72 -7641538 ripCount = 57 -7641538 locktype1 = 2 -7641539 locktype2 = 9 -7641539 locktype3 = 8 -7641540 goalCount = 0 -7641540 goalTotal = 50 -7641540 otherCount = 71 -~~~ -7641542 CURRENTGOAL IS [1] -~~~ -7646776 UP 2 -7646776 2 255 -~~~ -~~~ -7647342 DOWN 2 -7647342 0 255 -~~~ -~~~ -7647363 0 254 -~~~ -~~~ -7647365 0 252 -~~~ -~~~ -7647367 0 248 -~~~ -~~~ -7647368 0 240 -~~~ -~~~ -7647370 0 224 -~~~ -~~~ -7647372 0 192 -~~~ -~~~ -7647374 0 128 -~~~ -~~~ -7647376 0 0 -~~~ -~~~ -7647377 0 512 -7647378 homeCount = 140 -7647379 waitCount = 72 -7647379 ripCount = 57 -7647380 locktype1 = 2 -7647380 locktype2 = 9 -7647402 locktype3 = 8 -7647402 goalCount = 0 -7647403 goalTotal = 50 -7647403 otherCount = 72 -~~~ -7651568 UP 10 -7651569 waslock = 0 -7651568 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7651599 512 16777728 -~~~ -7651749 512 512 -7651776 DOWN 10 -7651776 0 512 -~~~ -~~~ -7651794 0 2560 -~~~ -~~~ -7651796 0 2048 -7651797 homeCount = 141 -7651797 waitCount = 72 -7651798 ripCount = 57 -7651798 locktype1 = 2 -7651799 locktype2 = 9 -7651799 locktype3 = 8 -7651800 goalCount = 0 -7651800 goalTotal = 50 -7651801 otherCount = 72 -~~~ -7651924 UP 10 -7651924 waslock = 0 -7651924 512 2048 -~~~ -7657794 DOWN 10 -7657794 0 2048 -~~~ -~~~ -~~~ -~~~ -7657816 homeCount = 141 -7657816 waitCount = 72 -7657817 ripCount = 57 -7657817 locktype1 = 2 -7657817 locktype2 = 9 -7657818 locktype3 = 8 -7657818 goalCount = 0 -7657819 goalTotal = 50 -7657819 otherCount = 72 -~~~ -7657839 UP 10 -7657839 waslock = 0 -7657839 512 2048 -~~~ -7657896 DOWN 10 -7657896 0 2048 -~~~ -~~~ -~~~ -~~~ -7657929 homeCount = 141 -7657929 waitCount = 72 -7657930 ripCount = 57 -7657930 locktype1 = 2 -7657931 locktype2 = 9 -7657931 locktype3 = 8 -7657932 goalCount = 0 -7657932 goalTotal = 50 -7657933 otherCount = 72 -~~~ -7657955 UP 10 -7657956 waslock = 0 -7657955 512 2048 -~~~ -7658197 DOWN 10 -7658197 0 2048 -~~~ -~~~ -~~~ -~~~ -7658232 homeCount = 141 -7658232 waitCount = 72 -7658233 ripCount = 57 -7658233 locktype1 = 2 -7658234 locktype2 = 9 -7658234 locktype3 = 8 -7658235 goalCount = 0 -7658235 goalTotal = 50 -7658235 otherCount = 72 -~~~ -7658246 UP 10 -7658246 waslock = 0 -7658246 512 2048 -~~~ -7659679 DOWN 10 -7659679 0 2048 -~~~ -~~~ -~~~ -~~~ -7659709 homeCount = 141 -7659710 waitCount = 72 -7659710 ripCount = 57 -7659711 locktype1 = 2 -7659711 locktype2 = 9 -7659712 locktype3 = 8 -7659712 goalCount = 0 -7659712 goalTotal = 50 -7659713 otherCount = 72 -~~~ -7661563 UP 12 -7661563 2048 2048 -7662992 DOWN 12 -7662992 0 2048 -7663010 UP 12 -7663010 2048 2048 -7665836 DOWN 12 -7665836 0 2048 -7665848 UP 12 -7665848 2048 2048 -7667063 CLICK1 -7667063 CLICK2 -~~~ -~~~ -~~~ -7667083 2048 67110912 -~~~ -7667233 2048 2048 -7673720 DOWN 12 -7673720 0 2048 -~~~ -~~~ -7673742 0 0 -~~~ -~~~ -7673744 0 1 -~~~ -~~~ -7673746 0 3 -~~~ -~~~ -7673747 0 7 -~~~ -~~~ -7673749 0 15 -~~~ -~~~ -7673751 0 31 -~~~ -~~~ -7673753 0 63 -~~~ -~~~ -7673755 0 127 -~~~ -~~~ -7673757 0 255 -7673758 homeCount = 141 -7673758 waitCount = 73 -7673759 ripCount = 57 -7673759 locktype1 = 2 -7673760 locktype2 = 9 -7673760 locktype3 = 8 -7673781 goalCount = 0 -7673782 goalTotal = 50 -7673782 otherCount = 72 -~~~ -7673783 CURRENTGOAL IS [1] -~~~ -7701490 UP 6 -7701490 32 255 -~~~ -~~~ -7702442 DOWN 6 -7702442 0 255 -~~~ -~~~ -7702466 0 254 -~~~ -~~~ -7702468 0 252 -~~~ -~~~ -7702470 0 248 -~~~ -~~~ -7702472 0 240 -~~~ -~~~ -7702474 0 224 -~~~ -~~~ -7702476 0 192 -~~~ -~~~ -7702477 0 128 -~~~ -~~~ -7702479 0 0 -~~~ -~~~ -7702481 0 512 -7702482 homeCount = 141 -7702483 waitCount = 73 -7702483 ripCount = 57 -7702484 locktype1 = 2 -7702484 locktype2 = 9 -7702505 locktype3 = 8 -7702506 goalCount = 0 -7702506 goalTotal = 50 -7702507 otherCount = 73 -~~~ -7702548 32 512 -7702742 DOWN 6 -7702742 0 512 -7707698 UP 10 -7707698 waslock = 0 -7707698 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7707722 512 16777728 -~~~ -7707872 512 512 -7707990 DOWN 10 -7707990 0 512 -~~~ -~~~ -7708015 0 1536 -~~~ -~~~ -7708016 0 1024 -7708017 homeCount = 142 -7708018 waitCount = 73 -7708018 ripCount = 57 -7708019 locktype1 = 2 -7708019 locktype2 = 9 -7708020 locktype3 = 8 -7708020 goalCount = 0 -7708021 goalTotal = 50 -7708021 otherCount = 73 -~~~ -7708107 UP 10 -7708107 waslock = 0 -7708107 512 1024 -~~~ -7712341 DOWN 10 -7712341 0 1024 -~~~ -~~~ -~~~ -~~~ -7712370 homeCount = 142 -7712371 waitCount = 73 -7712371 ripCount = 57 -7712372 locktype1 = 2 -7712372 locktype2 = 9 -7712373 locktype3 = 8 -7712373 goalCount = 0 -7712374 goalTotal = 50 -7712374 otherCount = 73 -~~~ -7714949 UP 11 -7714949 1024 1024 -7715014 DOWN 11 -7715014 0 1024 -7715081 UP 11 -7715081 1024 1024 -7717142 DOWN 11 -7717142 0 1024 -7717158 UP 11 -7717158 1024 1024 -7718192 DOWN 11 -7718192 0 1024 -7718202 UP 11 -7718202 1024 1024 -7720449 BEEP1 -7720449 BEEP2 -~~~ -~~~ -~~~ -7720468 1024 33555456 -~~~ -7720618 1024 1024 -7720992 DOWN 11 -7720992 0 1024 -7721019 UP 11 -7721019 1024 1024 -~~~ -~~~ -7721117 1024 0 -~~~ -~~~ -7721119 1024 1 -~~~ -~~~ -7721121 1024 3 -~~~ -~~~ -7721123 1024 7 -~~~ -~~~ -7721124 1024 15 -~~~ -~~~ -7721126 1024 31 -~~~ -~~~ -7721128 1024 63 -~~~ -~~~ -7721130 1024 127 -~~~ -~~~ -7721132 1024 255 -7721133 homeCount = 142 -7721133 waitCount = 73 -7721134 ripCount = 58 -7721134 locktype1 = 2 -7721155 locktype2 = 9 -7721155 locktype3 = 8 -7721156 goalCount = 0 -7721156 goalTotal = 50 -7721157 otherCount = 73 -~~~ -7721158 CURRENTGOAL IS [1] -~~~ -7721158 DOWN 11 -7721158 0 255 -7721177 UP 11 -7721177 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7721207 homeCount = 142 -7721208 waitCount = 73 -7721208 ripCount = 58 -7721209 locktype1 = 2 -7721209 locktype2 = 9 -7721210 locktype3 = 8 -7721210 goalCount = 0 -7721211 goalTotal = 50 -7721211 otherCount = 73 -~~~ -7721213 CURRENTGOAL IS [1] -~~~ -7728036 DOWN 11 -7728036 0 255 -7728055 UP 11 -7728055 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7728075 homeCount = 142 -7728076 waitCount = 73 -7728076 ripCount = 58 -7728077 locktype1 = 2 -7728077 locktype2 = 9 -7728078 locktype3 = 8 -7728078 goalCount = 0 -7728079 goalTotal = 50 -7728079 otherCount = 73 -~~~ -7728080 CURRENTGOAL IS [1] -~~~ -7728150 DOWN 11 -7728150 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7728188 homeCount = 142 -7728189 waitCount = 73 -7728189 ripCount = 58 -7728190 locktype1 = 2 -7728190 locktype2 = 9 -7728191 locktype3 = 8 -7728191 goalCount = 0 -7728192 goalTotal = 50 -7728192 otherCount = 73 -~~~ -7728193 CURRENTGOAL IS [1] -~~~ -7732180 UP 8 -7732180 128 255 -~~~ -~~~ -7732779 DOWN 8 -7732779 0 255 -~~~ -~~~ -7732803 0 254 -~~~ -~~~ -7732805 0 252 -~~~ -~~~ -7732807 0 248 -~~~ -~~~ -7732809 0 240 -~~~ -~~~ -7732811 0 224 -~~~ -~~~ -7732812 0 192 -~~~ -~~~ -7732814 0 128 -~~~ -~~~ -7732816 0 0 -~~~ -~~~ -7732818 0 512 -7732819 homeCount = 142 -7732819 waitCount = 73 -7732820 ripCount = 58 -7732820 locktype1 = 2 -7732821 locktype2 = 9 -7732842 locktype3 = 8 -7732842 goalCount = 0 -7732843 goalTotal = 50 -7732843 otherCount = 74 -~~~ -7738334 UP 10 -7738334 waslock = 0 -7738334 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7738360 512 16777728 -~~~ -7738509 512 512 -7743306 DOWN 10 -7743306 0 512 -~~~ -~~~ -7743322 0 1536 -~~~ -~~~ -7743324 0 1024 -7743325 homeCount = 143 -7743326 waitCount = 73 -7743326 ripCount = 58 -7743327 locktype1 = 2 -7743327 locktype2 = 9 -7743328 locktype3 = 8 -7743328 goalCount = 0 -7743329 goalTotal = 50 -7743329 otherCount = 74 -~~~ -7743362 UP 10 -7743363 waslock = 0 -7743362 512 1024 -~~~ -7743405 DOWN 10 -7743405 0 1024 -~~~ -~~~ -~~~ -~~~ -7743418 homeCount = 143 -7743418 waitCount = 73 -7743419 ripCount = 58 -7743419 locktype1 = 2 -7743419 locktype2 = 9 -7743420 locktype3 = 8 -7743420 goalCount = 0 -7743421 goalTotal = 50 -7743421 otherCount = 74 -~~~ -7745977 UP 11 -7745977 1024 1024 -7748173 DOWN 11 -7748173 0 1024 -7748196 UP 11 -7748196 1024 1024 -7748905 DOWN 11 -7748905 0 1024 -7748925 UP 11 -7748925 1024 1024 -7748966 DOWN 11 -7748966 0 1024 -7748995 UP 11 -7748995 1024 1024 -7749281 DOWN 11 -7749281 0 1024 -7749328 UP 11 -7749328 1024 1024 -7749977 BEEP1 -7749977 BEEP2 -~~~ -~~~ -~~~ -7750008 1024 33555456 -~~~ -7750158 1024 1024 -7750253 DOWN 11 -7750253 0 1024 -7750272 UP 11 -7750272 1024 1024 -7750402 DOWN 11 -7750402 0 1024 -7750430 UP 11 -7750430 1024 1024 -~~~ -~~~ -7750674 1024 0 -~~~ -~~~ -7750675 1024 1 -~~~ -~~~ -7750677 1024 3 -~~~ -~~~ -7750679 1024 7 -~~~ -~~~ -7750681 1024 15 -~~~ -~~~ -7750683 1024 31 -~~~ -~~~ -7750685 1024 63 -~~~ -~~~ -7750686 1024 127 -~~~ -~~~ -7750688 1024 255 -7750689 homeCount = 143 -7750690 waitCount = 73 -7750690 ripCount = 59 -7750691 locktype1 = 2 -7750711 locktype2 = 9 -7750712 locktype3 = 8 -7750712 goalCount = 0 -7750713 goalTotal = 50 -7750713 otherCount = 74 -~~~ -7750714 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7750742 homeCount = 143 -7750743 waitCount = 73 -7750743 ripCount = 59 -7750744 locktype1 = 2 -7750744 locktype2 = 9 -7750744 locktype3 = 8 -7750745 goalCount = 0 -7750745 goalTotal = 50 -7750746 otherCount = 74 -~~~ -7750747 CURRENTGOAL IS [1] -~~~ -7757155 DOWN 11 -7757155 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7757187 UP 11 -7757187 1024 255 -~~~ -~~~ -~~~ -7757191 homeCount = 143 -7757191 waitCount = 73 -7757192 ripCount = 59 -7757192 locktype1 = 2 -7757193 locktype2 = 9 -7757193 locktype3 = 8 -7757194 goalCount = 0 -7757194 goalTotal = 50 -7757195 otherCount = 74 -~~~ -7757196 CURRENTGOAL IS [1] -~~~ -7757216 DOWN 11 -7757216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7757258 homeCount = 143 -7757259 waitCount = 73 -7757259 ripCount = 59 -7757260 locktype1 = 2 -7757260 locktype2 = 9 -7757261 locktype3 = 8 -7757261 goalCount = 0 -7757262 goalTotal = 50 -7757262 otherCount = 74 -~~~ -7757263 CURRENTGOAL IS [1] -~~~ -7757290 UP 11 -7757290 1024 255 -7758580 DOWN 11 -7758580 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -7758604 UP 11 -7758604 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758616 homeCount = 143 -7758617 waitCount = 73 -7758617 ripCount = 59 -7758618 locktype1 = 2 -7758618 locktype2 = 9 -7758619 locktype3 = 8 -7758619 goalCount = 0 -7758620 goalTotal = 50 -7758620 otherCount = 74 -~~~ -7758621 CURRENTGOAL IS [1] -~~~ -7758633 DOWN 11 -7758633 0 255 -7758654 UP 11 -7758654 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758676 homeCount = 143 -7758677 waitCount = 73 -7758677 ripCount = 59 -7758678 locktype1 = 2 -7758678 locktype2 = 9 -7758679 locktype3 = 8 -7758679 goalCount = 0 -7758680 goalTotal = 50 -7758680 otherCount = 74 -~~~ -7758681 CURRENTGOAL IS [1] -~~~ -7758900 DOWN 11 -7758900 0 255 -7758918 UP 11 -7758918 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7758939 homeCount = 143 -7758939 waitCount = 73 -7758940 ripCount = 59 -7758940 locktype1 = 2 -7758941 locktype2 = 9 -7758941 locktype3 = 8 -7758942 goalCount = 0 -7758942 goalTotal = 50 -7758943 otherCount = 74 -~~~ -7758944 CURRENTGOAL IS [1] -~~~ -7758953 DOWN 11 -7758953 0 255 -7758981 UP 11 -7758981 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7759001 homeCount = 143 -7759001 waitCount = 73 -7759002 ripCount = 59 -7759002 locktype1 = 2 -7759003 locktype2 = 9 -7759003 locktype3 = 8 -7759004 goalCount = 0 -7759004 goalTotal = 50 -7759005 otherCount = 74 -~~~ -7759006 CURRENTGOAL IS [1] -~~~ -7760612 DOWN 11 -7760612 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7760649 homeCount = 143 -7760649 waitCount = 73 -7760650 ripCount = 59 -7760650 locktype1 = 2 -7760651 locktype2 = 9 -7760651 locktype3 = 8 -7760652 goalCount = 0 -7760652 goalTotal = 50 -7760653 otherCount = 74 -~~~ -7760654 CURRENTGOAL IS [1] -~~~ -7766970 UP 4 -7766970 8 255 -~~~ -~~~ -7767557 DOWN 4 -7767557 0 255 -~~~ -~~~ -7767576 0 254 -~~~ -~~~ -7767578 0 252 -~~~ -~~~ -7767579 0 248 -~~~ -~~~ -7767581 0 240 -~~~ -~~~ -7767583 0 224 -~~~ -~~~ -7767585 0 192 -~~~ -~~~ -7767587 0 128 -~~~ -~~~ -7767589 0 0 -~~~ -~~~ -7767591 0 512 -7767591 homeCount = 143 -7767592 waitCount = 73 -7767592 ripCount = 59 -7767593 locktype1 = 2 -7767593 locktype2 = 9 -7767615 locktype3 = 8 -7767615 goalCount = 0 -7767616 goalTotal = 50 -7767616 otherCount = 75 -~~~ -7772489 UP 10 -7772489 waslock = 0 -7772489 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7772523 512 16777728 -~~~ -7772673 512 512 -7772757 DOWN 10 -7772757 0 512 -~~~ -~~~ -7772776 0 1536 -~~~ -~~~ -7772778 0 1024 -7772779 homeCount = 144 -7772780 waitCount = 73 -7772780 ripCount = 59 -7772781 locktype1 = 2 -7772781 locktype2 = 9 -7772782 locktype3 = 8 -7772782 goalCount = 0 -7772783 goalTotal = 50 -7772783 otherCount = 75 -~~~ -7772786 UP 10 -7772786 waslock = 0 -7772786 512 1024 -~~~ -7776498 DOWN 10 -7776498 0 1024 -~~~ -~~~ -~~~ -~~~ -7776519 homeCount = 144 -7776520 waitCount = 73 -7776520 ripCount = 59 -7776521 locktype1 = 2 -7776521 locktype2 = 9 -7776522 locktype3 = 8 -7776522 goalCount = 0 -7776523 goalTotal = 50 -7776523 otherCount = 75 -~~~ -7778339 UP 11 -7778339 1024 1024 -7781339 BEEP1 -7781339 BEEP2 -~~~ -~~~ -~~~ -7781360 1024 33555456 -~~~ -7781510 1024 1024 -7790808 DOWN 11 -7790808 0 1024 -~~~ -~~~ -7790827 0 0 -~~~ -~~~ -7790829 0 1 -~~~ -~~~ -7790831 0 3 -~~~ -~~~ -7790833 0 7 -~~~ -~~~ -7790835 0 15 -~~~ -~~~ -7790836 0 31 -~~~ -~~~ -7790838 0 63 -~~~ -~~~ -7790840 0 127 -~~~ -~~~ -7790842 0 255 -7790843 homeCount = 144 -7790843 waitCount = 73 -7790844 ripCount = 60 -7790844 locktype1 = 2 -7790845 locktype2 = 9 -7790866 locktype3 = 8 -7790866 goalCount = 0 -7790867 goalTotal = 50 -7790867 otherCount = 75 -~~~ -7790868 CURRENTGOAL IS [1] -~~~ -7817653 UP 5 -7817653 16 255 -~~~ -~~~ -7817945 DOWN 5 -7817945 0 255 -~~~ -~~~ -7817966 0 254 -~~~ -~~~ -7817968 0 252 -~~~ -~~~ -7817970 0 248 -~~~ -~~~ -7817972 0 240 -~~~ -~~~ -7817974 0 224 -~~~ -~~~ -7817976 0 192 -~~~ -~~~ -7817977 0 128 -~~~ -~~~ -7817979 0 0 -~~~ -~~~ -7817981 0 512 -7817982 homeCount = 144 -7817983 waitCount = 73 -7817983 ripCount = 60 -7817984 locktype1 = 2 -7817984 locktype2 = 9 -7818005 locktype3 = 8 -7818005 goalCount = 0 -7818006 goalTotal = 50 -7818006 otherCount = 76 -~~~ -7818129 16 512 -7819084 DOWN 5 -7819084 0 512 -7819102 16 512 -7819229 DOWN 5 -7819229 0 512 -7819556 16 512 -7819594 DOWN 5 -7819594 0 512 -7824936 UP 10 -7824937 waslock = 0 -7824936 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7824966 512 16777728 -~~~ -7825116 512 512 -7825293 DOWN 10 -7825293 0 512 -~~~ -~~~ -7825317 0 1536 -~~~ -~~~ -7825319 0 1024 -7825320 homeCount = 145 -7825321 waitCount = 73 -7825321 ripCount = 60 -7825322 locktype1 = 2 -7825322 locktype2 = 9 -7825323 locktype3 = 8 -7825323 goalCount = 0 -7825324 goalTotal = 50 -7825324 otherCount = 76 -~~~ -7825341 UP 10 -7825341 waslock = 0 -7825341 512 1024 -~~~ -7829403 DOWN 10 -7829403 0 1024 -~~~ -~~~ -~~~ -~~~ -7829431 homeCount = 145 -7829431 waitCount = 73 -7829432 ripCount = 60 -7829432 locktype1 = 2 -7829433 locktype2 = 9 -7829433 locktype3 = 8 -7829434 goalCount = 0 -7829434 goalTotal = 50 -7829435 otherCount = 76 -~~~ -7829941 UP 10 -7829941 waslock = 0 -7829941 512 1024 -~~~ -7831848 DOWN 10 -7831848 0 1024 -~~~ -~~~ -~~~ -~~~ -7831870 homeCount = 145 -7831871 waitCount = 73 -7831871 ripCount = 60 -7831872 locktype1 = 2 -7831872 locktype2 = 9 -7831872 locktype3 = 8 -7831873 goalCount = 0 -7831873 goalTotal = 50 -7831874 otherCount = 76 -~~~ -7831894 UP 10 -7831894 waslock = 0 -7831894 512 1024 -~~~ -7831944 DOWN 10 -7831944 0 1024 -~~~ -~~~ -~~~ -~~~ -7831972 homeCount = 145 -7831972 waitCount = 73 -7831973 ripCount = 60 -7831973 locktype1 = 2 -7831974 locktype2 = 9 -7831974 locktype3 = 8 -7831975 goalCount = 0 -7831975 goalTotal = 50 -7831976 otherCount = 76 -~~~ -7835528 UP 11 -7835528 1024 1024 -7837151 DOWN 11 -7837151 0 1024 -7837163 UP 11 -7837163 1024 1024 -7837648 DOWN 11 -7837648 0 1024 -7837684 UP 11 -7837684 1024 1024 -7838242 DOWN 11 -7838242 0 1024 -7838271 UP 11 -7838271 1024 1024 -7840891 DOWN 11 -7840891 0 1024 -7840902 UP 11 -7840902 1024 1024 -7842529 BEEP1 -7842529 BEEP2 -~~~ -~~~ -~~~ -7842549 1024 33555456 -~~~ -7842699 1024 1024 -7849088 DOWN 11 -7849088 0 1024 -~~~ -~~~ -7849110 0 0 -~~~ -~~~ -7849112 0 1 -~~~ -~~~ -7849114 0 3 -~~~ -~~~ -7849116 0 7 -~~~ -~~~ -7849118 0 15 -~~~ -~~~ -7849119 0 31 -~~~ -~~~ -7849121 0 63 -~~~ -~~~ -7849123 0 127 -~~~ -~~~ -7849125 0 255 -7849126 homeCount = 145 -7849126 waitCount = 73 -7849127 ripCount = 61 -7849127 locktype1 = 2 -7849128 locktype2 = 9 -7849128 locktype3 = 8 -7849149 goalCount = 0 -7849150 goalTotal = 50 -7849150 otherCount = 76 -~~~ -7849151 CURRENTGOAL IS [1] -~~~ -7855904 UP 1 -7855904 1 255 -~~~ -~~~ -7855933 outer reward -~~~ -7855933 1 65791 -~~~ -~~~ -7856383 1 255 -7864549 DOWN 1 -7864549 0 255 -~~~ -~~~ -7864571 0 254 -~~~ -~~~ -7864573 0 252 -~~~ -~~~ -7864574 0 248 -~~~ -~~~ -7864576 0 240 -~~~ -~~~ -7864578 0 224 -~~~ -~~~ -7864580 0 192 -~~~ -~~~ -7864582 0 128 -~~~ -~~~ -7864583 0 0 -~~~ -~~~ -7864585 0 512 -7864586 homeCount = 145 -7864587 waitCount = 73 -7864587 ripCount = 61 -7864588 locktype1 = 2 -7864588 locktype2 = 9 -7864610 locktype3 = 8 -7864610 goalCount = 1 -7864610 goalTotal = 51 -7864611 otherCount = 76 -~~~ -7868827 UP 10 -7868828 waslock = 0 -7868827 512 512 -~~~ -~~~ -7868851 DOWN 10 -7868851 0 512 -~~~ -~~~ -~~~ -7868854 0 16777728 -~~~ -7868866 UP 10 -7868866 waslock = 0 -7868866 512 16777728 -~~~ -~~~ -7868870 512 16779776 -~~~ -~~~ -7868872 512 16779264 -7868873 homeCount = 146 -7868873 waitCount = 73 -7868874 ripCount = 61 -7868874 locktype1 = 2 -7868875 locktype2 = 9 -7868875 locktype3 = 8 -7868876 goalCount = 1 -7868876 goalTotal = 51 -7868897 otherCount = 76 -~~~ -~~~ -7869004 512 2048 -7872166 DOWN 10 -7872166 0 2048 -~~~ -~~~ -~~~ -7872190 UP 10 -7872191 waslock = 0 -7872190 512 2048 -~~~ -7872192 homeCount = 146 -7872193 waitCount = 73 -7872193 ripCount = 61 -7872194 locktype1 = 2 -7872194 locktype2 = 9 -7872195 locktype3 = 8 -7872195 goalCount = 1 -7872196 goalTotal = 51 -7872196 otherCount = 76 -~~~ -~~~ -7872268 DOWN 10 -7872268 0 2048 -~~~ -~~~ -~~~ -~~~ -7872293 homeCount = 146 -7872293 waitCount = 73 -7872294 ripCount = 61 -7872294 locktype1 = 2 -7872295 locktype2 = 9 -7872295 locktype3 = 8 -7872296 goalCount = 1 -7872296 goalTotal = 51 -7872297 otherCount = 76 -~~~ -7872341 UP 10 -7872341 waslock = 0 -7872341 512 2048 -~~~ -7872384 DOWN 10 -7872384 0 2048 -~~~ -~~~ -~~~ -~~~ -7872419 homeCount = 146 -7872419 waitCount = 73 -7872420 ripCount = 61 -7872420 locktype1 = 2 -7872421 locktype2 = 9 -7872421 locktype3 = 8 -7872421 goalCount = 1 -7872422 goalTotal = 51 -7872422 otherCount = 76 -~~~ -7874412 UP 12 -7874412 2048 2048 -7877331 DOWN 12 -7877331 0 2048 -7877347 UP 12 -7877347 2048 2048 -7877792 DOWN 12 -7877792 0 2048 -7877797 UP 12 -7877796 2048 2048 -7877912 CLICK1 -7877912 CLICK2 -~~~ -~~~ -~~~ -7877935 2048 67110912 -~~~ -7878085 2048 2048 -7885038 DOWN 12 -7885038 0 2048 -~~~ -~~~ -7885060 0 0 -~~~ -~~~ -7885062 0 1 -~~~ -~~~ -7885064 0 3 -~~~ -~~~ -7885065 0 7 -~~~ -~~~ -7885067 0 15 -~~~ -~~~ -7885069 0 31 -~~~ -~~~ -7885071 0 63 -~~~ -~~~ -7885073 0 127 -~~~ -~~~ -7885074 0 255 -7885075 homeCount = 146 -7885076 waitCount = 74 -7885077 ripCount = 61 -7885077 locktype1 = 2 -7885078 locktype2 = 9 -7885099 locktype3 = 8 -7885099 goalCount = 1 -7885100 goalTotal = 51 -7885100 otherCount = 76 -~~~ -7885101 CURRENTGOAL IS [1] -~~~ -7894917 UP 8 -7894917 128 255 -~~~ -~~~ -7895450 DOWN 8 -7895450 0 255 -~~~ -~~~ -7895471 0 254 -~~~ -~~~ -7895473 0 252 -~~~ -~~~ -7895474 0 248 -~~~ -~~~ -7895476 0 240 -~~~ -~~~ -7895478 0 224 -~~~ -~~~ -7895480 0 192 -~~~ -~~~ -7895482 0 128 -~~~ -~~~ -7895484 0 0 -~~~ -~~~ -7895485 0 512 -7895486 homeCount = 146 -7895487 waitCount = 74 -7895487 ripCount = 61 -7895488 locktype1 = 2 -7895488 locktype2 = 9 -7895510 locktype3 = 8 -7895510 goalCount = 1 -7895511 goalTotal = 51 -7895511 otherCount = 77 -~~~ -7895776 128 512 -7895968 DOWN 8 -7895968 0 512 -7896139 128 512 -7896189 DOWN 8 -7896189 0 512 -7900458 UP 10 -7900458 waslock = 0 -7900458 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7900487 512 16777728 -~~~ -7900637 512 512 -7900779 DOWN 10 -7900779 0 512 -~~~ -~~~ -7900802 0 2560 -~~~ -~~~ -7900804 0 2048 -7900805 homeCount = 147 -7900805 waitCount = 74 -7900806 ripCount = 61 -7900806 locktype1 = 2 -7900807 locktype2 = 9 -7900807 locktype3 = 8 -7900808 goalCount = 1 -7900808 goalTotal = 51 -7900809 otherCount = 77 -~~~ -7900813 UP 10 -7900814 waslock = 0 -7900813 512 2048 -~~~ -7906111 DOWN 10 -7906111 0 2048 -~~~ -~~~ -~~~ -~~~ -7906135 homeCount = 147 -7906135 waitCount = 74 -7906136 ripCount = 61 -7906136 locktype1 = 2 -7906137 locktype2 = 9 -7906137 locktype3 = 8 -7906137 goalCount = 1 -7906138 goalTotal = 51 -7906138 otherCount = 77 -~~~ -7906159 UP 10 -7906159 waslock = 0 -7906159 512 2048 -~~~ -7906195 DOWN 10 -7906195 0 2048 -~~~ -~~~ -~~~ -~~~ -7906236 homeCount = 147 -7906236 waitCount = 74 -7906237 ripCount = 61 -7906237 locktype1 = 2 -7906238 locktype2 = 9 -7906238 locktype3 = 8 -7906239 goalCount = 1 -7906239 goalTotal = 51 -7906240 otherCount = 77 -~~~ -7908017 UP 12 -7908017 2048 2048 -7911017 CLICK1 -7911017 CLICK2 -~~~ -~~~ -~~~ -7911043 2048 67110912 -~~~ -7911193 2048 2048 -7911194 DOWN 12 -7911194 0 2048 -7911200 UP 12 -7911200 2048 2048 -~~~ -~~~ -7911226 2048 0 -~~~ -~~~ -7911228 2048 1 -~~~ -~~~ -7911230 2048 3 -~~~ -~~~ -7911232 2048 7 -~~~ -~~~ -7911233 2048 15 -~~~ -~~~ -7911235 2048 31 -~~~ -~~~ -7911237 2048 63 -~~~ -~~~ -7911239 2048 127 -~~~ -~~~ -7911241 2048 255 -7911242 homeCount = 147 -7911242 waitCount = 75 -7911243 ripCount = 61 -7911243 locktype1 = 2 -7911264 locktype2 = 9 -7911265 locktype3 = 8 -7911265 goalCount = 1 -7911265 goalTotal = 51 -7911266 otherCount = 77 -~~~ -7911267 CURRENTGOAL IS [1] -~~~ -7911361 DOWN 12 -7911361 0 255 -7911380 UP 12 -7911380 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7911397 homeCount = 147 -7911398 waitCount = 75 -7911399 ripCount = 61 -7911399 locktype1 = 2 -7911400 locktype2 = 9 -7911400 locktype3 = 8 -7911400 goalCount = 1 -7911401 goalTotal = 51 -7911401 otherCount = 77 -~~~ -7911403 CURRENTGOAL IS [1] -~~~ -7919722 DOWN 12 -7919722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7919758 homeCount = 147 -7919759 waitCount = 75 -7919759 ripCount = 61 -7919760 locktype1 = 2 -7919760 locktype2 = 9 -7919761 locktype3 = 8 -7919761 goalCount = 1 -7919762 goalTotal = 51 -7919762 otherCount = 77 -~~~ -7919763 CURRENTGOAL IS [1] -~~~ -7919799 UP 12 -7919799 2048 255 -7919845 DOWN 12 -7919845 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7919877 homeCount = 147 -7919877 waitCount = 75 -7919878 ripCount = 61 -7919878 locktype1 = 2 -7919879 locktype2 = 9 -7919879 locktype3 = 8 -7919880 goalCount = 1 -7919880 goalTotal = 51 -7919881 otherCount = 77 -~~~ -7919882 CURRENTGOAL IS [1] -~~~ -7928018 UP 3 -7928018 4 255 -~~~ -~~~ -7928533 DOWN 3 -7928533 0 255 -~~~ -~~~ -7928553 0 254 -~~~ -~~~ -7928555 0 252 -~~~ -~~~ -7928557 0 248 -~~~ -~~~ -7928558 0 240 -~~~ -~~~ -7928560 0 224 -~~~ -~~~ -7928562 0 192 -~~~ -~~~ -7928564 0 128 -~~~ -~~~ -7928566 0 0 -~~~ -~~~ -7928568 0 512 -7928569 homeCount = 147 -7928569 waitCount = 75 -7928570 ripCount = 61 -7928570 locktype1 = 2 -7928570 locktype2 = 9 -7928592 locktype3 = 8 -7928592 goalCount = 1 -7928593 goalTotal = 51 -7928593 otherCount = 78 -~~~ -7932281 UP 10 -7932281 waslock = 0 -7932281 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7932304 512 16777728 -~~~ -7932453 512 512 -7932498 DOWN 10 -7932498 0 512 -~~~ -7932518 UP 10 -7932518 waslock = 0 -7932518 512 512 -~~~ -~~~ -~~~ -7932520 512 2048 -7932521 homeCount = 148 -7932522 waitCount = 75 -7932522 ripCount = 61 -7932523 locktype1 = 2 -7932523 locktype2 = 9 -7932524 locktype3 = 8 -7932524 goalCount = 1 -7932525 goalTotal = 51 -7932546 otherCount = 78 -~~~ -~~~ -7933232 DOWN 10 -7933232 0 2048 -~~~ -~~~ -~~~ -~~~ -7933254 homeCount = 148 -7933255 waitCount = 75 -7933255 ripCount = 61 -7933256 locktype1 = 2 -7933256 locktype2 = 9 -7933256 locktype3 = 8 -7933257 goalCount = 1 -7933257 goalTotal = 51 -7933258 otherCount = 78 -~~~ -7933259 UP 10 -7933259 waslock = 0 -7933258 512 2048 -~~~ -7936681 DOWN 10 -7936681 0 2048 -~~~ -~~~ -~~~ -~~~ -7936705 homeCount = 148 -7936705 waitCount = 75 -7936706 ripCount = 61 -7936706 locktype1 = 2 -7936706 locktype2 = 9 -7936707 locktype3 = 8 -7936707 goalCount = 1 -7936708 goalTotal = 51 -7936708 otherCount = 78 -~~~ -7938394 UP 12 -7938394 2048 2048 -7941781 DOWN 12 -7941781 0 2048 -7941837 UP 12 -7941837 2048 2048 -7941956 DOWN 12 -7941956 0 2048 -7941983 UP 12 -7941983 2048 2048 -7943894 CLICK1 -7943894 CLICK2 -~~~ -~~~ -~~~ -7943913 2048 67110912 -~~~ -7944063 2048 2048 -7950204 DOWN 12 -7950204 0 2048 -~~~ -~~~ -7950231 0 0 -~~~ -~~~ -7950233 0 1 -~~~ -~~~ -7950235 0 3 -~~~ -~~~ -7950237 0 7 -~~~ -~~~ -7950238 0 15 -~~~ -~~~ -7950240 0 31 -~~~ -~~~ -7950242 0 63 -~~~ -~~~ -7950244 0 127 -~~~ -~~~ -7950246 0 255 -7950247 homeCount = 148 -7950247 waitCount = 76 -7950248 ripCount = 61 -7950248 locktype1 = 2 -7950249 locktype2 = 9 -7950249 locktype3 = 8 -7950270 goalCount = 1 -7950271 goalTotal = 51 -7950271 otherCount = 78 -~~~ -7950272 CURRENTGOAL IS [1] -~~~ -7956075 UP 1 -7956075 1 255 -~~~ -~~~ -7956097 outer reward -~~~ -7956097 1 65791 -~~~ -~~~ -7956547 1 255 -7965194 DOWN 1 -7965194 0 255 -~~~ -~~~ -7965214 0 254 -~~~ -~~~ -7965216 0 252 -~~~ -~~~ -7965217 0 248 -~~~ -~~~ -7965219 0 240 -~~~ -~~~ -7965221 0 224 -~~~ -~~~ -7965223 0 192 -~~~ -~~~ -7965225 0 128 -~~~ -~~~ -7965226 0 0 -~~~ -~~~ -7965228 0 512 -7965229 homeCount = 148 -7965230 waitCount = 76 -7965230 ripCount = 61 -7965231 locktype1 = 2 -7965231 locktype2 = 9 -7965252 locktype3 = 8 -7965253 goalCount = 2 -7965253 goalTotal = 52 -7965254 otherCount = 78 -~~~ -7965254 1 512 -7965322 DOWN 1 -7965322 0 512 -7965364 1 512 -7969410 DOWN 1 -7969410 0 512 -7973544 UP 10 -7973544 waslock = 0 -7973543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -7973568 512 16777728 -~~~ -7973718 512 512 -7978713 DOWN 10 -7978713 0 512 -~~~ -~~~ -7978733 0 1536 -~~~ -~~~ -7978735 0 1024 -7978736 homeCount = 149 -7978736 waitCount = 76 -7978737 ripCount = 61 -7978737 locktype1 = 2 -7978738 locktype2 = 9 -7978738 locktype3 = 8 -7978739 goalCount = 2 -7978739 goalTotal = 52 -7978740 otherCount = 78 -~~~ -7978779 UP 10 -7978779 waslock = 0 -7978779 512 1024 -~~~ -7978830 DOWN 10 -7978830 0 1024 -~~~ -~~~ -~~~ -~~~ -7978858 homeCount = 149 -7978859 waitCount = 76 -7978859 ripCount = 61 -7978860 locktype1 = 2 -7978860 locktype2 = 9 -7978861 locktype3 = 8 -7978861 goalCount = 2 -7978862 goalTotal = 52 -7978862 otherCount = 78 -~~~ -7980517 UP 11 -7980517 1024 1024 -7983057 DOWN 11 -7983057 0 1024 -7983112 UP 11 -7983112 1024 1024 -7984017 BEEP1 -7984017 BEEP2 -~~~ -~~~ -~~~ -7984035 1024 33555456 -~~~ -7984185 1024 1024 -7992797 DOWN 11 -7992797 0 1024 -~~~ -~~~ -7992824 0 0 -~~~ -7992825 UP 11 -7992825 1024 0 -~~~ -~~~ -7992827 1024 1 -~~~ -~~~ -7992829 1024 3 -~~~ -7992830 1024 7 -~~~ -~~~ -7992831 1024 15 -~~~ -~~~ -7992833 1024 31 -~~~ -~~~ -7992835 1024 63 -~~~ -~~~ -7992837 1024 127 -~~~ -~~~ -7992838 1024 255 -7992840 homeCount = 149 -7992861 waitCount = 76 -7992861 ripCount = 62 -7992862 locktype1 = 2 -7992862 locktype2 = 9 -7992863 locktype3 = 8 -7992863 goalCount = 2 -7992864 goalTotal = 52 -7992864 otherCount = 78 -~~~ -7992865 CURRENTGOAL IS [1] -~~~ -7994733 DOWN 11 -7994733 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7994771 homeCount = 149 -7994772 waitCount = 76 -7994772 ripCount = 62 -7994773 locktype1 = 2 -7994773 locktype2 = 9 -7994774 locktype3 = 8 -7994774 goalCount = 2 -7994775 goalTotal = 52 -7994775 otherCount = 78 -~~~ -7994776 CURRENTGOAL IS [1] -~~~ -7994783 UP 11 -7994783 1024 255 -7994819 DOWN 11 -7994819 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -7994853 homeCount = 149 -7994853 waitCount = 76 -7994854 ripCount = 62 -7994854 locktype1 = 2 -7994855 locktype2 = 9 -7994855 locktype3 = 8 -7994856 goalCount = 2 -7994856 goalTotal = 52 -7994856 otherCount = 78 -~~~ -7994858 CURRENTGOAL IS [1] -~~~ -7999561 UP 1 -7999561 1 255 -~~~ -~~~ -7999580 outer reward -~~~ -7999581 1 65791 -~~~ -~~~ -7999876 DOWN 1 -7999876 0 65791 -7999895 1 65791 -~~~ -~~~ -7999897 1 65790 -~~~ -~~~ -7999899 1 65788 -~~~ -~~~ -7999901 1 65784 -~~~ -~~~ -7999903 1 65776 -~~~ -~~~ -7999905 1 65760 -~~~ -~~~ -7999907 1 65728 -~~~ -~~~ -7999908 1 65664 -~~~ -~~~ -7999910 1 65536 -~~~ -~~~ -7999912 1 66048 -7999913 homeCount = 149 -7999914 waitCount = 76 -7999914 ripCount = 62 -7999915 locktype1 = 2 -7999935 locktype2 = 9 -7999936 locktype3 = 8 -7999936 goalCount = 3 -7999937 goalTotal = 53 -7999937 otherCount = 78 -~~~ -8000030 1 512 -8010845 DOWN 1 -8010845 0 512 -8010907 1 512 -8010958 DOWN 1 -8010958 0 512 -8011043 1 512 -8011084 DOWN 1 -8011084 0 512 -8015421 UP 10 -8015421 waslock = 0 -8015421 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -8015455 512 16777728 -~~~ -8015605 512 512 -8018818 DOWN 10 -8018818 0 512 -~~~ -~~~ -8018839 0 2560 -~~~ -~~~ -8018841 0 2048 -8018842 homeCount = 150 -8018843 waitCount = 76 -8018843 ripCount = 62 -8018844 locktype1 = 2 -8018844 locktype2 = 9 -8018845 locktype3 = 8 -8018845 goalCount = 3 -8018846 goalTotal = 53 -8018846 otherCount = 78 -~~~ -8018847 UP 10 -8018867 waslock = 0 -8018847 512 2048 -~~~ -8018914 DOWN 10 -8018913 0 2048 -~~~ -~~~ -~~~ -~~~ -8018945 homeCount = 150 -8018945 waitCount = 76 -8018946 ripCount = 62 -8018946 locktype1 = 2 -8018946 locktype2 = 9 -8018947 locktype3 = 8 -8018947 goalCount = 3 -8018948 goalTotal = 53 -8018948 otherCount = 78 -~~~ -8020546 UP 12 -8020546 2048 2048 -8023546 CLICK1 -8023546 CLICK2 -~~~ -~~~ -~~~ -8023571 2048 67110912 -~~~ -8023721 2048 2048 -8031115 DOWN 12 -8031115 0 2048 -~~~ -~~~ -8031138 0 0 -~~~ -8031140 UP 12 -8031140 2048 0 -~~~ -~~~ -8031142 2048 1 -~~~ -~~~ -8031143 2048 3 -~~~ -8031144 2048 7 -~~~ -~~~ -8031146 2048 15 -~~~ -~~~ -8031148 2048 31 -~~~ -~~~ -8031149 2048 63 -~~~ -~~~ -8031151 2048 127 -~~~ -~~~ -8031153 2048 255 -8031154 homeCount = 150 -8031175 waitCount = 77 -8031176 ripCount = 62 -8031176 locktype1 = 2 -8031177 locktype2 = 9 -8031177 locktype3 = 8 -8031178 goalCount = 3 -8031178 goalTotal = 53 -8031179 otherCount = 78 -~~~ -8031180 CURRENTGOAL IS [1] -~~~ -8031198 DOWN 12 -8031198 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8031228 homeCount = 150 -8031228 waitCount = 77 -8031229 ripCount = 62 -8031229 locktype1 = 2 -8031230 locktype2 = 9 -8031230 locktype3 = 8 -8031231 goalCount = 3 -8031231 goalTotal = 53 -8031231 otherCount = 78 -~~~ -8031233 CURRENTGOAL IS [1] -~~~ -8031282 UP 12 -8031282 2048 255 -8032109 DOWN 12 -8032109 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8032146 homeCount = 150 -8032146 waitCount = 77 -8032147 ripCount = 62 -8032148 locktype1 = 2 -8032148 locktype2 = 9 -8032148 locktype3 = 8 -8032149 goalCount = 3 -8032149 goalTotal = 53 -8032150 otherCount = 78 -~~~ -8032151 CURRENTGOAL IS [1] -~~~ -8032154 UP 12 -8032154 2048 255 -8032202 DOWN 12 -8032202 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -8032236 homeCount = 150 -8032236 waitCount = 77 -8032237 ripCount = 62 -8032237 locktype1 = 2 -8032238 locktype2 = 9 -8032238 locktype3 = 8 -8032239 goalCount = 3 -8032239 goalTotal = 53 -8032240 otherCount = 78 -~~~ -8032241 CURRENTGOAL IS [1] -~~~ -8035149 UP 1 -8035149 1 255 -~~~ -~~~ -8035173 outer reward -~~~ -8035174 1 65791 -~~~ -~~~ -8035421 DOWN 1 -8035421 0 65791 -~~~ -~~~ -8035442 0 65790 -~~~ -~~~ -8035444 0 65788 -~~~ -~~~ -8035445 0 65784 -~~~ -~~~ -8035447 0 65776 -~~~ -~~~ -8035449 0 65760 -~~~ -~~~ -8035451 0 65728 -~~~ -~~~ -8035453 0 65664 -~~~ -8035454 1 65664 -~~~ -~~~ -8035456 1 65536 -~~~ -8035457 1 66048 -8035458 homeCount = 150 -8035458 waitCount = 77 -8035459 ripCount = 62 -8035480 locktype1 = 2 -8035481 locktype2 = 9 -8035481 locktype3 = 8 -8035481 goalCount = 4 -8035482 goalTotal = 54 -8035482 otherCount = 78 -~~~ -8035623 1 512 -8047000 DOWN 1 -8047000 0 512 -8047011 1 512 -8047114 DOWN 1 -8047114 0 512 -8047158 1 512 -8047251 DOWN 1 -8047251 0 512 -8047290 1 512 -8047390 DOWN 1 -8047390 0 512 -8047404 1 512 -8047629 DOWN 1 -8047629 0 512 -8051873 UP 10 -8051873 waslock = 0 -8051873 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -8051906 512 16777728 -~~~ -8052056 512 512 -8057856 DOWN 10 -8057856 0 512 -~~~ -~~~ -8057882 0 1536 -~~~ -~~~ -8057884 0 1024 -8057885 homeCount = 151 -8057886 waitCount = 77 -8057886 ripCount = 62 -8057887 locktype1 = 2 -8057887 locktype2 = 9 -8057888 locktype3 = 8 -8057888 goalCount = 4 -8057889 goalTotal = 54 -8057889 otherCount = 78 -~~~ -8057925 UP 10 -8057925 waslock = 0 -8057925 512 1024 -~~~ -8057961 DOWN 10 -8057961 0 1024 -~~~ -~~~ -~~~ -~~~ -8057985 homeCount = 151 -8057985 waitCount = 77 -8057986 ripCount = 62 -8057986 locktype1 = 2 -8057987 locktype2 = 9 -8057987 locktype3 = 8 -8057988 goalCount = 4 -8057988 goalTotal = 54 -8057989 otherCount = 78 -~~~ -8059817 UP 11 -8059817 1024 1024 -8063817 BEEP1 -8063817 BEEP2 -~~~ -~~~ -~~~ -8063842 1024 33555456 -~~~ -8063992 1024 1024 -8074007 DOWN 11 -8074007 0 1024 -~~~ -~~~ -8074031 0 0 -~~~ -~~~ -8074033 0 1 -~~~ -~~~ -8074035 0 3 -~~~ -~~~ -8074037 0 7 -~~~ -~~~ -8074039 0 15 -~~~ -~~~ -8074041 0 31 -~~~ -~~~ -8074042 0 63 -~~~ -~~~ -8074044 0 127 -~~~ -~~~ -8074046 0 255 -8074047 homeCount = 151 -8074048 waitCount = 77 -8074048 ripCount = 63 -8074049 locktype1 = 2 -8074049 locktype2 = 9 -8074070 locktype3 = 8 -8074071 goalCount = 4 -8074071 goalTotal = 54 -8074072 otherCount = 78 -~~~ -8074073 CURRENTGOAL IS [1] -~~~ - - description: Statescript log r1 - task_epochs: 2, -, Statescript2 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140511632191184 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -# -#import math -#import struct -#import re -#import time -#import random -#import numpy as np -#import pyaudio -#import wave -#from statistics import mean -## V8pre_forage -## visits to incorrect wells cause 5s lockout -## exception is repeat visit to prior well (is ok, no lockout) -## can go to any outer well, any number of times -## lockout from getting rip/wait wells wrong is also 5s -# -# -## decide what type of up trigger was just recieved; act accordingly -#def pokeIn(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# doHome() -# -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# doOuter(num) -# -## decide what type of down trigger was just recieved; act accordingly -#def pokeOut(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# global lastWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# endHome() -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# endWait() -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# endOuter() -# lastWell = currWell -# -##home poke: decide trial type and upcoming wait length; turn on lights accordingly -#def doHome(): -# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout -# global homePump -# global lastWell -# global currWell -# #global waitdist -# -# if trialtype == 0: -# opts = [1, 2] -# randnum = np.random.randint(0,2) #-1 -# trialtype = opts[randnum] -# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #randnum = np.random.randint(0,8) -# delaytime = chooseDelay() -# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") -# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime -# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC -# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") -# print("SCQTMESSAGE: trigger(1);\n") # deliver reward -# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: -# lockout([2,2]) -# -#def chooseDelay(): -# global trialtype -# global RWcount -# global waitdist -# global startwaitdist -# -# print(RWcount) -# -# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short -# return startwaitdist[RWcount[trialtype-1]] -# -# else: -# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist -# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) -# -# else: -# return int(np.random.choice(waitdist,1)) -# -# -#def endHome(): -# global trialtype -# global lastWell -# global homeWell -# global waitWells -# -# if trialtype == 1 or trialtype == 2: -# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -# -#def click(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# -# #generate_click() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC -# -#def beep(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# #generate_beep() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC -# -#def endWait(): -# global trialtype -# global goalWell -# global currWell -# global outerWells -# -# if trialtype == 3: # wait complete -# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): # turn on outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") -# -# -#def doOuter(val): -# global outerPumps -# global trialtype -# global allGoal -# global thisGoal -# global goalWell -# global outerReps -# global currWell -# global lastWell -# global homeWell -# global numgoals -# global validOuterWells -# global waslock -# -# if trialtype == 3: -# trialtype = 0 # outer satisfied, head home next -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# if currWell in goalWell : # repeated; reward -# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") -# print("SCQTMESSAGE: trigger(2);\n") # deliver reward -# allGoal+=1 -# thisGoal+=1 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC -# -# if thisGoal >= outerReps: #maxed repeats reached, time to switch -# print("time to choose new goalS!") -# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats -# chooseGoal() -# else: -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection -# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection -# print(goalWell) -# -# thisGoal = 0 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# -# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) -# goalWell = [currWell] -# -# else: # wrong well; add to forage record if newly visited -# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC -# -# elif trialtype < 3 and waslock<1: -# lockout([2,2]) -# -#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal -# global goalWell -# global oldGoals -# global numgoals -# global outerWells -# global forageNum -# #global outerReps -# -# oldGoals.append(goalWell) -# print(oldGoals) -# -# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms -# forageNum = 1 -# -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# if len(oldGoals)>7: # if all outers have been goal, reset -# print("resetting oldgoals") -# oldGoals = [None] -# -# while any(i in goalWell for i in oldGoals): #if any common elements -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# print(goalWell) -# -# outerReps = np.random.randint(4,13) -# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# print("new goal is "+str(goalWell)+"\n") -# -#def endOuter(): -# global trialtype -# global outerWells -# global homeWell -# global lastWell -# global currWell -# -# if trialtype == 0 and lastWell != currWell: # outer satisfied -# for num in range(len(outerWells)): # turn off outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -#def lockout(val): # turn off all lights for certain amount of time -# global waitWells -# global outerWells -# global lastWell -# global trialtype -# global waslock -# -# locktype = int(val[1]) -# trialtype = 4 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE -# #turn off all lights -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(waitWells)): #turn off all wait and outer well lights -# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# waslock=1 -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well -# if locktype == 1: -# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well -# if locktype == 2: -# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC -# if locktype == 3: -# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors -# -# -#def lockend(): -# global trialtype -# global homeWell -# -# trialtype = 0 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well -# print("SCQTMESSAGE: trigger(3);\n") -# -#def updateWaslock(val): -# global waslock -# -# waslock = int(val[1]) -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") -# -## Function: generate click sound -#def generate_click(): -# -# File='ZippoClick_short.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -## Function: generate cowbell sound -#def generate_beep(): -# -# File='Beep.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -#def makewhitenoise(): #play white noise for duration of lockout -# global locksoundlength -# -# soundlength = int(44100*locksoundlength/1000) -# p = pyaudio.PyAudio() -# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) -# whitenoise = np.random.randint(700,size = soundlength) -# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) -# stream.write(data) -# stream.close() -# p.terminate() -# -# -## This is the custom callback function. When events occur, addScQtEvent will -## call this function. This function MUST BE NAMED 'callback'!!!! -#def callback(line): -# -# global waslock -# -# if line.find("UP") >= 0: #input triggered -# pokeIn(re.findall(r'\d+',line)) -# if line.find("DOWN") >= 0: #input triggered -# pokeOut(re.findall(r'\d+',line)) -# if line.find("BEEP1") >= 0: # make a beep and deliver reward -# beep() -# if line.find("BEEP2") >= 0: # make a beep and deliver reward -# generate_beep() -# if line.find("CLICK1") >= 0: # make a click and deliver reward -# click() -# if line.find("CLICK2") >= 0: # make a click and deliver reward -# generate_click() -# if line.find("LOCKOUT") >= 0: # lockout procedure -# lockout(re.findall(r'\d+',line)) -# if line.find("LOCKEND") >= 0: # reset trialtype to 0 -# lockend() -# if line.find("WHITENOISE") >= 0: # make noise during lockout -# makewhitenoise() -# if line.find("waslock") >= 0: #update waslock value -# updateWaslock(re.findall(r'\d+',line)) -# -# -## define wells -#homeWell = 10 -#waitWells = [11,12] -#outerWells = [1,2,3,4,5,6,7,8] -##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num -## define pumps -#homePump = 25 -#waitPumps = [26, 27] -#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] -# -##global variables -#lastWell = -1 -#currWell = -1 -#trialtype = 0 -#outerReps = 10 -##outerReps = np.random.randint(4,13) #10 -#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# -#allGoal = 0 -#thisGoal = 0 -#numgoals = 1 # number of outer arms rewarded -#forageNum = 1 -#if numgoals == 1: -# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells -#else: -# goalWell = np.random.choice(outerWells,numgoals,replace=False) -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) -# -#oldGoals = [] #initialize with any wells to exclude from being goal -##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] -#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] -# -#startwaitdist = [1000, 1500, 2000] -# -#locksoundlength = 1000 -#print(goalWell) -#waslock=0 -#RWcount = [0,0 -# -17097908 UP 10 -17097909 waslock = 0 -17097908 512 512 -~~~ -~~~ -17097929 DOWN 10 -17097929 0 512 -~~~ -~~~ -~~~ -17097934 0 16777728 -~~~ -~~~ -~~~ -17097954 0 16779776 -~~~ -~~~ -17097956 0 16779264 -17097957 homeCount = 1 -17097957 waitCount = 0 -17097958 ripCount = 0 -17097958 locktype1 = 0 -17097959 locktype2 = 0 -17097959 locktype3 = 0 -17097960 goalCount = 0 -17097960 goalTotal = 0 -17097960 otherCount = 0 -~~~ -17098084 0 2048 -17098097 UP 10 -17098097 waslock = 0 -17098097 512 2048 -17098115 DOWN 10 -17098115 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098140 homeCount = 1 -17098140 waitCount = 0 -17098141 ripCount = 0 -17098141 locktype1 = 0 -17098142 locktype2 = 0 -17098142 locktype3 = 0 -17098143 goalCount = 0 -17098143 goalTotal = 0 -17098144 otherCount = 0 -~~~ -17098196 UP 10 -17098196 waslock = 0 -17098196 512 2048 -17098203 DOWN 10 -17098203 0 2048 -17098215 UP 10 -17098215 waslock = 0 -17098215 512 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098224 homeCount = 1 -17098224 waitCount = 0 -17098225 ripCount = 0 -17098225 locktype1 = 0 -17098226 locktype2 = 0 -17098226 locktype3 = 0 -17098227 goalCount = 0 -17098227 goalTotal = 0 -17098228 otherCount = 0 -~~~ -17098232 DOWN 10 -17098232 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098271 homeCount = 1 -17098271 waitCount = 0 -17098272 ripCount = 0 -17098272 locktype1 = 0 -17098273 locktype2 = 0 -17098273 locktype3 = 0 -17098274 goalCount = 0 -17098274 goalTotal = 0 -17098275 otherCount = 0 -~~~ -17098313 UP 10 -17098314 waslock = 0 -17098313 512 2048 -17098325 DOWN 10 -17098325 0 2048 -~~~ -~~~ -~~~ -17098341 UP 10 -17098341 waslock = 0 -17098340 512 2048 -~~~ -~~~ -17098343 homeCount = 1 -17098344 waitCount = 0 -17098344 ripCount = 0 -17098345 locktype1 = 0 -17098345 locktype2 = 0 -17098346 locktype3 = 0 -17098346 goalCount = 0 -17098347 goalTotal = 0 -17098368 otherCount = 0 -~~~ -17098368 DOWN 10 -17098368 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17098389 homeCount = 1 -17098389 waitCount = 0 -17098390 ripCount = 0 -17098390 locktype1 = 0 -17098391 locktype2 = 0 -17098391 locktype3 = 0 -17098392 goalCount = 0 -17098392 goalTotal = 0 -17098393 otherCount = 0 -~~~ -17098443 UP 10 -17098443 waslock = 0 -17098443 512 2048 -~~~ -17098479 DOWN 10 -17098479 0 2048 -~~~ -~~~ -~~~ -~~~ -17098504 homeCount = 1 -17098504 waitCount = 0 -17098505 ripCount = 0 -17098505 locktype1 = 0 -17098505 locktype2 = 0 -17098506 locktype3 = 0 -17098506 goalCount = 0 -17098507 goalTotal = 0 -17098507 otherCount = 0 -~~~ -17098562 UP 10 -17098562 waslock = 0 -17098562 512 2048 -~~~ -17098607 DOWN 10 -17098607 0 2048 -~~~ -~~~ -~~~ -~~~ -17098626 homeCount = 1 -17098627 waitCount = 0 -17098627 ripCount = 0 -17098628 locktype1 = 0 -17098628 locktype2 = 0 -17098629 locktype3 = 0 -17098629 goalCount = 0 -17098630 goalTotal = 0 -17098630 otherCount = 0 -~~~ -17098693 UP 10 -17098693 waslock = 0 -17098693 512 2048 -~~~ -17098737 DOWN 10 -17098737 0 2048 -~~~ -~~~ -~~~ -~~~ -17098764 homeCount = 1 -17098764 waitCount = 0 -17098765 ripCount = 0 -17098765 locktype1 = 0 -17098766 locktype2 = 0 -17098766 locktype3 = 0 -17098767 goalCount = 0 -17098767 goalTotal = 0 -17098768 otherCount = 0 -~~~ -17098821 UP 10 -17098822 waslock = 0 -17098821 512 2048 -~~~ -17098866 DOWN 10 -17098866 0 2048 -~~~ -~~~ -~~~ -~~~ -17098893 homeCount = 1 -17098894 waitCount = 0 -17098895 ripCount = 0 -17098895 locktype1 = 0 -17098895 locktype2 = 0 -17098896 locktype3 = 0 -17098896 goalCount = 0 -17098897 goalTotal = 0 -17098897 otherCount = 0 -~~~ -17098951 UP 10 -17098951 waslock = 0 -17098951 512 2048 -~~~ -17098997 DOWN 10 -17098997 0 2048 -~~~ -~~~ -~~~ -~~~ -17099024 homeCount = 1 -17099024 waitCount = 0 -17099025 ripCount = 0 -17099025 locktype1 = 0 -17099026 locktype2 = 0 -17099026 locktype3 = 0 -17099027 goalCount = 0 -17099027 goalTotal = 0 -17099028 otherCount = 0 -~~~ -17099078 UP 10 -17099078 waslock = 0 -17099078 512 2048 -~~~ -17099137 DOWN 10 -17099137 0 2048 -~~~ -~~~ -~~~ -~~~ -17099164 homeCount = 1 -17099164 waitCount = 0 -17099165 ripCount = 0 -17099165 locktype1 = 0 -17099166 locktype2 = 0 -17099166 locktype3 = 0 -17099167 goalCount = 0 -17099167 goalTotal = 0 -17099168 otherCount = 0 -~~~ -17099210 UP 10 -17099210 waslock = 0 -17099209 512 2048 -~~~ -17099274 DOWN 10 -17099274 0 2048 -~~~ -~~~ -~~~ -~~~ -17099295 homeCount = 1 -17099295 waitCount = 0 -17099296 ripCount = 0 -17099296 locktype1 = 0 -17099297 locktype2 = 0 -17099297 locktype3 = 0 -17099298 goalCount = 0 -17099298 goalTotal = 0 -17099299 otherCount = 0 -~~~ -17099341 UP 10 -17099342 waslock = 0 -17099341 512 2048 -~~~ -17099412 DOWN 10 -17099412 0 2048 -~~~ -~~~ -~~~ -~~~ -17099438 homeCount = 1 -17099438 waitCount = 0 -17099439 ripCount = 0 -17099439 locktype1 = 0 -17099440 locktype2 = 0 -17099440 locktype3 = 0 -17099441 goalCount = 0 -17099441 goalTotal = 0 -17099442 otherCount = 0 -~~~ -17099483 UP 10 -17099483 waslock = 0 -17099483 512 2048 -~~~ -17099557 DOWN 10 -17099557 0 2048 -17099566 UP 10 -17099566 waslock = 0 -17099566 512 2048 -~~~ -~~~ -~~~ -~~~ -17099587 homeCount = 1 -17099588 waitCount = 0 -17099588 ripCount = 0 -17099589 locktype1 = 0 -17099589 locktype2 = 0 -17099590 locktype3 = 0 -17099590 goalCount = 0 -17099591 goalTotal = 0 -17099591 otherCount = 0 -~~~ -~~~ -17099696 DOWN 10 -17099696 0 2048 -17099699 UP 10 -17099699 waslock = 0 -17099699 512 2048 -~~~ -~~~ -~~~ -~~~ -17099724 homeCount = 1 -17099724 waitCount = 0 -17099725 ripCount = 0 -17099725 locktype1 = 0 -17099726 locktype2 = 0 -17099726 locktype3 = 0 -17099727 goalCount = 0 -17099727 goalTotal = 0 -17099728 otherCount = 0 -~~~ -~~~ -17100772 DOWN 10 -17100772 0 2048 -17100789 UP 10 -17100789 waslock = 0 -17100789 512 2048 -~~~ -~~~ -~~~ -~~~ -17100795 homeCount = 1 -17100795 waitCount = 0 -17100796 ripCount = 0 -17100796 locktype1 = 0 -17100797 locktype2 = 0 -17100797 locktype3 = 0 -17100798 goalCount = 0 -17100798 goalTotal = 0 -17100799 otherCount = 0 -~~~ -~~~ -17100909 DOWN 10 -17100909 0 2048 -~~~ -~~~ -~~~ -~~~ -17100938 homeCount = 1 -17100938 waitCount = 0 -17100939 ripCount = 0 -17100939 locktype1 = 0 -17100940 locktype2 = 0 -17100940 locktype3 = 0 -17100941 goalCount = 0 -17100941 goalTotal = 0 -17100942 otherCount = 0 -~~~ -17100945 UP 10 -17100945 waslock = 0 -17100945 512 2048 -~~~ -17101065 DOWN 10 -17101065 0 2048 -~~~ -~~~ -~~~ -~~~ -17101093 homeCount = 1 -17101093 waitCount = 0 -17101094 ripCount = 0 -17101094 locktype1 = 0 -17101095 locktype2 = 0 -17101095 locktype3 = 0 -17101096 goalCount = 0 -17101096 goalTotal = 0 -17101097 otherCount = 0 -~~~ -17101099 UP 10 -17101100 waslock = 0 -17101099 512 2048 -~~~ -17101243 DOWN 10 -17101243 0 2048 -~~~ -~~~ -~~~ -~~~ -17101263 UP 10 -17101264 waslock = 0 -17101263 512 2048 -17101265 homeCount = 1 -17101266 waitCount = 0 -17101266 ripCount = 0 -17101267 locktype1 = 0 -17101267 locktype2 = 0 -17101268 locktype3 = 0 -17101268 goalCount = 0 -17101269 goalTotal = 0 -17101269 otherCount = 0 -~~~ -~~~ -17101399 DOWN 10 -17101399 0 2048 -17101416 UP 10 -17101416 waslock = 0 -17101416 512 2048 -~~~ -~~~ -~~~ -~~~ -17101424 homeCount = 1 -17101424 waitCount = 0 -17101425 ripCount = 0 -17101425 locktype1 = 0 -17101425 locktype2 = 0 -17101426 locktype3 = 0 -17101426 goalCount = 0 -17101427 goalTotal = 0 -17101427 otherCount = 0 -~~~ -~~~ -17101561 DOWN 10 -17101561 0 2048 -17101572 UP 10 -17101572 waslock = 0 -17101572 512 2048 -~~~ -~~~ -~~~ -~~~ -17101596 homeCount = 1 -17101596 waitCount = 0 -17101597 ripCount = 0 -17101597 locktype1 = 0 -17101598 locktype2 = 0 -17101598 locktype3 = 0 -17101599 goalCount = 0 -17101599 goalTotal = 0 -17101600 otherCount = 0 -~~~ -~~~ -17101896 DOWN 10 -17101896 0 2048 -17101911 UP 10 -17101911 waslock = 0 -17101911 512 2048 -~~~ -~~~ -~~~ -~~~ -17101939 homeCount = 1 -17101940 waitCount = 0 -17101940 ripCount = 0 -17101940 locktype1 = 0 -17101941 locktype2 = 0 -17101941 locktype3 = 0 -17101942 goalCount = 0 -17101942 goalTotal = 0 -17101943 otherCount = 0 -~~~ -~~~ -17102043 DOWN 10 -17102043 0 2048 -~~~ -~~~ -~~~ -~~~ -17102068 homeCount = 1 -17102069 waitCount = 0 -17102069 ripCount = 0 -17102070 locktype1 = 0 -17102070 locktype2 = 0 -17102071 locktype3 = 0 -17102071 goalCount = 0 -17102072 goalTotal = 0 -17102072 otherCount = 0 -~~~ -17102073 UP 10 -17102073 waslock = 0 -17102073 512 2048 -~~~ -17102213 DOWN 10 -17102213 0 2048 -~~~ -17102236 UP 10 -17102236 waslock = 0 -17102236 512 2048 -~~~ -~~~ -~~~ -17102240 homeCount = 1 -17102240 waitCount = 0 -17102241 ripCount = 0 -17102241 locktype1 = 0 -17102242 locktype2 = 0 -17102242 locktype3 = 0 -17102242 goalCount = 0 -17102243 goalTotal = 0 -17102243 otherCount = 0 -~~~ -~~~ -17102394 DOWN 10 -17102394 0 2048 -17102404 UP 10 -17102404 waslock = 0 -17102404 512 2048 -~~~ -~~~ -~~~ -~~~ -17102428 homeCount = 1 -17102429 waitCount = 0 -17102429 ripCount = 0 -17102430 locktype1 = 0 -17102430 locktype2 = 0 -17102431 locktype3 = 0 -17102431 goalCount = 0 -17102431 goalTotal = 0 -17102432 otherCount = 0 -~~~ -~~~ -17102533 DOWN 10 -17102532 0 2048 -~~~ -~~~ -~~~ -~~~ -17102555 homeCount = 1 -17102556 waitCount = 0 -17102556 ripCount = 0 -17102557 locktype1 = 0 -17102557 locktype2 = 0 -17102558 locktype3 = 0 -17102558 goalCount = 0 -17102559 goalTotal = 0 -17102559 otherCount = 0 -~~~ -17102568 UP 10 -17102568 waslock = 0 -17102568 512 2048 -~~~ -17105160 DOWN 10 -17105160 0 2048 -17105166 UP 10 -17105167 waslock = 0 -17105166 512 2048 -~~~ -~~~ -~~~ -~~~ -17105185 homeCount = 1 -17105186 waitCount = 0 -17105186 ripCount = 0 -17105187 locktype1 = 0 -17105187 locktype2 = 0 -17105188 locktype3 = 0 -17105188 goalCount = 0 -17105189 goalTotal = 0 -17105189 otherCount = 0 -~~~ -~~~ -17105317 DOWN 10 -17105317 0 2048 -17105343 UP 10 -17105343 waslock = 0 -17105343 512 2048 -~~~ -~~~ -~~~ -~~~ -17105348 homeCount = 1 -17105348 waitCount = 0 -17105349 ripCount = 0 -17105349 locktype1 = 0 -17105350 locktype2 = 0 -17105350 locktype3 = 0 -17105351 goalCount = 0 -17105351 goalTotal = 0 -17105352 otherCount = 0 -~~~ -~~~ -17105443 DOWN 10 -17105443 0 2048 -~~~ -~~~ -~~~ -~~~ -17105469 homeCount = 1 -17105469 waitCount = 0 -17105470 ripCount = 0 -17105470 locktype1 = 0 -17105471 locktype2 = 0 -17105471 locktype3 = 0 -17105472 goalCount = 0 -17105472 goalTotal = 0 -17105473 otherCount = 0 -~~~ -17105486 UP 10 -17105486 waslock = 0 -17105486 512 2048 -~~~ -17105600 DOWN 10 -17105600 0 2048 -~~~ -~~~ -~~~ -~~~ -17105628 homeCount = 1 -17105628 waitCount = 0 -17105629 ripCount = 0 -17105629 locktype1 = 0 -17105629 locktype2 = 0 -17105630 locktype3 = 0 -17105630 goalCount = 0 -17105631 goalTotal = 0 -17105631 otherCount = 0 -~~~ -17105636 UP 10 -17105636 waslock = 0 -17105636 512 2048 -~~~ -17105791 DOWN 10 -17105791 0 2048 -~~~ -17105814 UP 10 -17105814 waslock = 0 -17105814 512 2048 -~~~ -~~~ -~~~ -17105817 homeCount = 1 -17105818 waitCount = 0 -17105818 ripCount = 0 -17105819 locktype1 = 0 -17105819 locktype2 = 0 -17105820 locktype3 = 0 -17105820 goalCount = 0 -17105821 goalTotal = 0 -17105821 otherCount = 0 -~~~ -~~~ -17105974 DOWN 10 -17105974 0 2048 -17105987 UP 10 -17105988 waslock = 0 -17105987 512 2048 -~~~ -~~~ -~~~ -~~~ -17106001 homeCount = 1 -17106002 waitCount = 0 -17106002 ripCount = 0 -17106003 locktype1 = 0 -17106003 locktype2 = 0 -17106004 locktype3 = 0 -17106004 goalCount = 0 -17106005 goalTotal = 0 -17106005 otherCount = 0 -~~~ -~~~ -17106145 DOWN 10 -17106145 0 2048 -17106156 UP 10 -17106156 waslock = 0 -17106156 512 2048 -~~~ -~~~ -~~~ -~~~ -17106177 homeCount = 1 -17106177 waitCount = 0 -17106178 ripCount = 0 -17106178 locktype1 = 0 -17106179 locktype2 = 0 -17106179 locktype3 = 0 -17106180 goalCount = 0 -17106180 goalTotal = 0 -17106181 otherCount = 0 -~~~ -~~~ -17106662 DOWN 10 -17106662 0 2048 -17106678 UP 10 -17106679 waslock = 0 -17106678 512 2048 -~~~ -~~~ -~~~ -~~~ -17106686 homeCount = 1 -17106686 waitCount = 0 -17106687 ripCount = 0 -17106687 locktype1 = 0 -17106688 locktype2 = 0 -17106688 locktype3 = 0 -17106689 goalCount = 0 -17106689 goalTotal = 0 -17106689 otherCount = 0 -~~~ -~~~ -17107378 DOWN 10 -17107378 0 2048 -17107394 UP 10 -17107395 waslock = 0 -17107394 512 2048 -~~~ -~~~ -~~~ -~~~ -17107416 homeCount = 1 -17107416 waitCount = 0 -17107417 ripCount = 0 -17107417 locktype1 = 0 -17107418 locktype2 = 0 -17107418 locktype3 = 0 -17107419 goalCount = 0 -17107419 goalTotal = 0 -17107420 otherCount = 0 -~~~ -~~~ -17110357 DOWN 10 -17110357 0 2048 -17110367 UP 10 -17110368 waslock = 0 -17110367 512 2048 -~~~ -~~~ -~~~ -~~~ -17110384 homeCount = 1 -17110384 waitCount = 0 -17110385 ripCount = 0 -17110385 locktype1 = 0 -17110386 locktype2 = 0 -17110386 locktype3 = 0 -17110387 goalCount = 0 -17110387 goalTotal = 0 -17110388 otherCount = 0 -~~~ -~~~ -17111248 DOWN 10 -17111248 0 2048 -~~~ -~~~ -~~~ -~~~ -17111278 homeCount = 1 -17111278 waitCount = 0 -17111279 ripCount = 0 -17111279 locktype1 = 0 -17111280 locktype2 = 0 -17111280 locktype3 = 0 -17111281 goalCount = 0 -17111281 goalTotal = 0 -17111282 otherCount = 0 -~~~ -17112980 UP 12 -17112980 2048 2048 -17113019 DOWN 12 -17113019 0 2048 -17113078 UP 12 -17113078 2048 2048 -17113162 DOWN 12 -17113162 0 2048 -17113362 LOCKOUT 3 -~~~ -17113381 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17113387 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17115071 UP 12 -17115071 2048 0 -17115080 DOWN 12 -17115080 0 0 -17115215 UP 12 -17115215 2048 0 -17115221 DOWN 12 -17115221 0 0 -17115349 UP 12 -17115349 2048 0 -17115363 DOWN 12 -17115363 0 0 -17115440 UP 12 -17115440 2048 0 -17115466 DOWN 12 -17115466 0 0 -17115645 UP 12 -17115645 2048 0 -17115657 DOWN 12 -17115657 0 0 -17115667 UP 12 -17115666 2048 0 -17115675 DOWN 12 -17115675 0 0 -17115780 UP 12 -17115780 2048 0 -17115801 DOWN 12 -17115801 0 0 -17115810 UP 12 -17115810 2048 0 -17115816 DOWN 12 -17115816 0 0 -17115955 UP 12 -17115955 2048 0 -17115960 DOWN 12 -17115960 0 0 -17116066 UP 12 -17116066 2048 0 -17116100 DOWN 12 -17116100 0 0 -17116204 UP 12 -17116204 2048 0 -17116257 DOWN 12 -17116257 0 0 -17116327 UP 12 -17116326 2048 0 -17116902 DOWN 12 -17116902 0 0 -17116938 UP 12 -17116938 2048 0 -17117078 DOWN 12 -17117078 0 0 -17117106 UP 12 -17117106 2048 0 -17117247 DOWN 12 -17117247 0 0 -17117269 UP 12 -17117269 2048 0 -17117395 DOWN 12 -17117394 0 0 -17117444 UP 12 -17117443 2048 0 -17117560 DOWN 12 -17117560 0 0 -17117578 UP 12 -17117578 2048 0 -17120536 DOWN 12 -17120536 0 0 -17120564 UP 12 -17120564 2048 0 -17120692 DOWN 12 -17120692 0 0 -17120734 UP 12 -17120734 2048 0 -17122749 DOWN 12 -17122749 0 0 -17122862 UP 12 -17122862 2048 0 -17122925 DOWN 12 -17122925 0 0 -17122966 UP 12 -17122966 2048 0 -17122985 DOWN 12 -17122985 0 0 -17126115 UP 11 -17126115 1024 0 -17126590 DOWN 11 -17126590 0 0 -17126628 UP 11 -17126628 1024 0 -17126735 DOWN 11 -17126735 0 0 -17126767 UP 11 -17126767 1024 0 -17126848 DOWN 11 -17126848 0 0 -17126961 UP 11 -17126961 1024 0 -17127005 DOWN 11 -17127005 0 0 -17127070 UP 11 -17127070 1024 0 -17127268 DOWN 11 -17127268 0 0 -17127323 UP 11 -17127323 1024 0 -17127360 DOWN 11 -17127360 0 0 -17128371 UP 11 -17128371 1024 0 -17128378 DOWN 11 -17128378 0 0 -17128512 UP 11 -17128512 1024 0 -17128520 DOWN 11 -17128520 0 0 -17128657 UP 11 -17128657 1024 0 -17128664 DOWN 11 -17128664 0 0 -17128799 UP 11 -17128799 1024 0 -17128814 DOWN 11 -17128814 0 0 -17128924 UP 11 -17128924 1024 0 -17128955 DOWN 11 -17128955 0 0 -17129072 UP 11 -17129072 1024 0 -17129121 DOWN 11 -17129121 0 0 -17129193 UP 11 -17129193 1024 0 -17129199 DOWN 11 -17129199 0 0 -17129206 UP 11 -17129206 1024 0 -17129273 DOWN 11 -17129273 0 0 -17129339 UP 11 -17129339 1024 0 -17129427 DOWN 11 -17129427 0 0 -17129465 UP 11 -17129465 1024 0 -17129478 DOWN 11 -17129478 0 0 -17129493 UP 11 -17129493 1024 0 -17129584 DOWN 11 -17129584 0 0 -17129604 UP 11 -17129604 1024 0 -17129642 DOWN 11 -17129642 0 0 -17129647 UP 11 -17129647 1024 0 -17129741 DOWN 11 -17129741 0 0 -17129755 UP 11 -17129755 1024 0 -17129913 DOWN 11 -17129913 0 0 -17129916 UP 11 -17129916 1024 0 -17131282 DOWN 11 -17131282 0 0 -17131290 UP 11 -17131290 1024 0 -17131452 DOWN 11 -17131452 0 0 -17131471 UP 11 -17131471 1024 0 -17131613 DOWN 11 -17131613 0 0 -17131648 UP 11 -17131648 1024 0 -17134290 DOWN 11 -17134290 0 0 -17134769 UP 11 -17134769 1024 0 -17134823 DOWN 11 -17134823 0 0 -17138381 LOCKEND -~~~ -~~~ -~~~ -17138406 0 512 -17139837 UP 10 -17139837 waslock = 0 -17139837 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17139872 512 16777728 -~~~ -17139893 DOWN 10 -17139893 0 16777728 -~~~ -~~~ -17139915 0 16779776 -~~~ -~~~ -17139917 0 16779264 -17139918 homeCount = 2 -17139918 waitCount = 0 -17139919 ripCount = 0 -17139919 locktype1 = 0 -17139920 locktype2 = 0 -17139920 locktype3 = 1 -17139921 goalCount = 0 -17139921 goalTotal = 0 -17139922 otherCount = 0 -~~~ -17139950 UP 10 -17139950 waslock = 0 -17139950 512 16779264 -~~~ -17140022 512 2048 -17140065 DOWN 10 -17140065 0 2048 -~~~ -~~~ -~~~ -~~~ -17140088 homeCount = 2 -17140089 waitCount = 0 -17140089 ripCount = 0 -17140090 locktype1 = 0 -17140090 locktype2 = 0 -17140091 locktype3 = 1 -17140091 goalCount = 0 -17140092 goalTotal = 0 -17140092 otherCount = 0 -~~~ -17140101 UP 10 -17140101 waslock = 0 -17140101 512 2048 -~~~ -17140240 DOWN 10 -17140240 0 2048 -17140257 UP 10 -17140257 waslock = 0 -17140257 512 2048 -~~~ -~~~ -~~~ -~~~ -17140270 homeCount = 2 -17140270 waitCount = 0 -17140271 ripCount = 0 -17140271 locktype1 = 0 -17140272 locktype2 = 0 -17140272 locktype3 = 1 -17140273 goalCount = 0 -17140273 goalTotal = 0 -17140274 otherCount = 0 -~~~ -~~~ -17140410 DOWN 10 -17140410 0 2048 -17140426 UP 10 -17140427 waslock = 0 -17140426 512 2048 -~~~ -~~~ -~~~ -~~~ -17140449 homeCount = 2 -17140449 waitCount = 0 -17140450 ripCount = 0 -17140450 locktype1 = 0 -17140451 locktype2 = 0 -17140451 locktype3 = 1 -17140452 goalCount = 0 -17140452 goalTotal = 0 -17140453 otherCount = 0 -~~~ -~~~ -17140577 DOWN 10 -17140577 0 2048 -17140594 UP 10 -17140594 waslock = 0 -17140594 512 2048 -~~~ -~~~ -~~~ -~~~ -17140620 homeCount = 2 -17140621 waitCount = 0 -17140621 ripCount = 0 -17140622 locktype1 = 0 -17140622 locktype2 = 0 -17140623 locktype3 = 1 -17140623 goalCount = 0 -17140624 goalTotal = 0 -17140624 otherCount = 0 -~~~ -~~~ -17142212 DOWN 10 -17142212 0 2048 -17142228 UP 10 -17142229 waslock = 0 -17142228 512 2048 -~~~ -~~~ -~~~ -~~~ -17142249 homeCount = 2 -17142250 waitCount = 0 -17142250 ripCount = 0 -17142251 locktype1 = 0 -17142251 locktype2 = 0 -17142252 locktype3 = 1 -17142252 goalCount = 0 -17142253 goalTotal = 0 -17142253 otherCount = 0 -~~~ -~~~ -17142366 DOWN 10 -17142366 0 2048 -~~~ -~~~ -~~~ -~~~ -17142389 homeCount = 2 -17142389 waitCount = 0 -17142390 ripCount = 0 -17142390 locktype1 = 0 -17142391 locktype2 = 0 -17142391 locktype3 = 1 -17142391 goalCount = 0 -17142392 goalTotal = 0 -17142392 otherCount = 0 -~~~ -17142404 UP 10 -17142405 waslock = 0 -17142404 512 2048 -~~~ -17142467 DOWN 10 -17142467 0 2048 -~~~ -~~~ -~~~ -~~~ -17142488 homeCount = 2 -17142489 waitCount = 0 -17142489 ripCount = 0 -17142490 locktype1 = 0 -17142490 locktype2 = 0 -17142491 locktype3 = 1 -17142491 goalCount = 0 -17142492 goalTotal = 0 -17142492 otherCount = 0 -~~~ -17145618 UP 7 -17145618 64 2048 -~~~ -17145638 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17145644 64 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17145661 DOWN 7 -17145661 0 0 -~~~ -17145688 64 0 -17145936 DOWN 7 -17145935 0 0 -17145982 64 0 -17146406 DOWN 7 -17146406 0 0 -17146420 64 0 -17148954 DOWN 7 -17148954 0 0 -17148975 64 0 -17149053 DOWN 7 -17149053 0 0 -17156173 512 0 -17156617 0 0 -17156641 512 0 -17156974 0 0 -17156988 512 0 -17157127 0 0 -17157152 512 0 -17157306 0 0 -17157321 512 0 -17157477 0 0 -17157493 512 0 -17157661 0 0 -17157668 512 0 -17158019 0 0 -17158039 512 0 -17158176 0 0 -17158207 512 0 -17158364 0 0 -17158393 512 0 -17158518 0 0 -17160113 UP 12 -17160113 2048 0 -17160307 DOWN 12 -17160307 0 0 -17164258 UP 2 -17164258 2 0 -17164330 DOWN 2 -17164330 0 0 -17164364 2 0 -17164660 DOWN 2 -17164660 0 0 -17164694 2 0 -17165098 DOWN 2 -17165098 0 0 -17165116 2 0 -17165603 DOWN 2 -17165603 0 0 -17165620 2 0 -17165783 DOWN 2 -17165783 0 0 -17165803 2 0 -17165960 DOWN 2 -17165960 0 0 -17165976 2 0 -17166139 DOWN 2 -17166139 0 0 -17166149 2 0 -17167551 DOWN 2 -17167551 0 0 -17167564 2 0 -17167726 DOWN 2 -17167726 0 0 -17167754 2 0 -17167812 DOWN 2 -17167812 0 0 -17167901 2 0 -17168006 DOWN 2 -17168006 0 0 -17168074 2 0 -17168160 DOWN 2 -17168160 0 0 -17168269 2 0 -17168360 DOWN 2 -17168360 0 0 -17168390 2 0 -17168528 DOWN 2 -17168528 0 0 -17168554 2 0 -17168701 DOWN 2 -17168701 0 0 -17168770 2 0 -17168793 DOWN 2 -17168793 0 0 -17170638 LOCKEND -~~~ -~~~ -~~~ -17170656 0 512 -17173427 UP 10 -17173427 waslock = 0 -17173427 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17173450 512 16777728 -~~~ -17173481 DOWN 10 -17173481 0 16777728 -~~~ -~~~ -17173505 0 16778752 -~~~ -~~~ -17173507 0 16778240 -17173508 homeCount = 3 -17173509 waitCount = 0 -17173509 ripCount = 0 -17173510 locktype1 = 0 -17173510 locktype2 = 1 -17173511 locktype3 = 1 -17173511 goalCount = 0 -17173512 goalTotal = 0 -17173512 otherCount = 0 -~~~ -17173600 0 1024 -17173629 UP 10 -17173629 waslock = 0 -17173629 512 1024 -~~~ -17177285 DOWN 10 -17177285 0 1024 -17177297 UP 10 -17177298 waslock = 0 -17177297 512 1024 -~~~ -~~~ -~~~ -~~~ -17177320 homeCount = 3 -17177320 waitCount = 0 -17177321 ripCount = 0 -17177321 locktype1 = 0 -17177322 locktype2 = 1 -17177322 locktype3 = 1 -17177322 goalCount = 0 -17177323 goalTotal = 0 -17177323 otherCount = 0 -~~~ -~~~ -17177371 DOWN 10 -17177371 0 1024 -~~~ -~~~ -~~~ -~~~ -17177399 homeCount = 3 -17177399 waitCount = 0 -17177400 ripCount = 0 -17177400 locktype1 = 0 -17177401 locktype2 = 1 -17177401 locktype3 = 1 -17177402 goalCount = 0 -17177402 goalTotal = 0 -17177403 otherCount = 0 -~~~ -17178689 UP 11 -17178689 1024 1024 -17179443 DOWN 11 -17179443 0 1024 -17179507 UP 11 -17179507 1024 1024 -17179689 BEEP1 -17179689 BEEP2 -~~~ -~~~ -~~~ -17179722 1024 33555456 -~~~ -17179872 1024 1024 -17185130 DOWN 11 -17185130 0 1024 -~~~ -~~~ -17185149 0 0 -~~~ -~~~ -17185151 0 1 -~~~ -~~~ -17185153 0 3 -~~~ -~~~ -17185155 0 7 -~~~ -~~~ -17185157 0 15 -~~~ -~~~ -17185159 0 31 -~~~ -~~~ -17185160 0 63 -~~~ -~~~ -17185162 0 127 -~~~ -~~~ -17185164 0 255 -17185165 homeCount = 3 -17185166 waitCount = 0 -17185166 ripCount = 1 -17185167 locktype1 = 0 -17185167 locktype2 = 1 -17185188 locktype3 = 1 -17185189 goalCount = 0 -17185189 goalTotal = 0 -17185190 otherCount = 0 -~~~ -17185191 CURRENTGOAL IS [8] -~~~ -17185191 UP 11 -17185191 1024 255 -17185193 DOWN 11 -17185193 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17185237 homeCount = 3 -17185238 waitCount = 0 -17185238 ripCount = 1 -17185239 locktype1 = 0 -17185239 locktype2 = 1 -17185240 locktype3 = 1 -17185240 goalCount = 0 -17185241 goalTotal = 0 -17185241 otherCount = 0 -~~~ -17185242 CURRENTGOAL IS [8] -~~~ -17187525 UP 8 -17187525 128 255 -17187540 DOWN 8 -17187540 0 255 -17187549 128 255 -~~~ -~~~ -17187564 outer reward -~~~ -17187564 128 8388863 -~~~ -~~~ -~~~ -~~~ -17187568 128 8388862 -~~~ -~~~ -17187570 128 8388860 -~~~ -~~~ -17187572 128 8388856 -~~~ -~~~ -17187574 128 8388848 -~~~ -~~~ -17187575 128 8388832 -~~~ -~~~ -17187577 128 8388800 -~~~ -~~~ -17187579 128 8388736 -~~~ -~~~ -17187581 128 8388608 -~~~ -~~~ -17187583 128 8389120 -17187604 homeCount = 3 -17187605 waitCount = 0 -17187605 ripCount = 1 -17187606 locktype1 = 0 -17187606 locktype2 = 1 -17187607 locktype3 = 1 -17187607 goalCount = 1 -17187608 goalTotal = 1 -17187608 otherCount = 0 -~~~ -17188014 128 512 -17188249 DOWN 8 -17188248 0 512 -17188270 128 512 -17188380 DOWN 8 -17188380 0 512 -17188411 128 512 -17188512 DOWN 8 -17188512 0 512 -17188550 128 512 -17188649 DOWN 8 -17188649 0 512 -17188680 128 512 -17188804 DOWN 8 -17188804 0 512 -17188815 128 512 -17188947 DOWN 8 -17188947 0 512 -17188964 128 512 -17190940 DOWN 8 -17190940 0 512 -17190964 128 512 -17193457 DOWN 8 -17193457 0 512 -17193811 128 512 -17193844 DOWN 8 -17193844 0 512 -17199369 UP 10 -17199369 waslock = 0 -17199369 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17199397 512 16777728 -~~~ -17199547 512 512 -17199572 DOWN 10 -17199572 0 512 -~~~ -~~~ -17199595 0 2560 -~~~ -~~~ -17199596 0 2048 -17199597 homeCount = 4 -17199598 waitCount = 0 -17199598 ripCount = 1 -17199599 locktype1 = 0 -17199599 locktype2 = 1 -17199600 locktype3 = 1 -17199600 goalCount = 1 -17199601 goalTotal = 1 -17199601 otherCount = 0 -~~~ -17199646 UP 10 -17199646 waslock = 0 -17199645 512 2048 -~~~ -17199747 DOWN 10 -17199747 0 2048 -~~~ -~~~ -~~~ -~~~ -17199774 homeCount = 4 -17199775 waitCount = 0 -17199775 ripCount = 1 -17199776 locktype1 = 0 -17199776 locktype2 = 1 -17199777 locktype3 = 1 -17199777 goalCount = 1 -17199778 goalTotal = 1 -17199778 otherCount = 0 -~~~ -17199781 UP 10 -17199781 waslock = 0 -17199781 512 2048 -~~~ -17199882 DOWN 10 -17199882 0 2048 -~~~ -~~~ -~~~ -~~~ -17199908 homeCount = 4 -17199909 waitCount = 0 -17199909 ripCount = 1 -17199909 locktype1 = 0 -17199910 locktype2 = 1 -17199910 locktype3 = 1 -17199911 goalCount = 1 -17199911 goalTotal = 1 -17199912 otherCount = 0 -~~~ -17199918 UP 10 -17199919 waslock = 0 -17199918 512 2048 -~~~ -17200055 DOWN 10 -17200055 0 2048 -~~~ -~~~ -~~~ -~~~ -17200079 UP 10 -17200079 waslock = 0 -17200079 512 2048 -17200080 homeCount = 4 -17200081 waitCount = 0 -17200081 ripCount = 1 -17200082 locktype1 = 0 -17200082 locktype2 = 1 -17200083 locktype3 = 1 -17200083 goalCount = 1 -17200084 goalTotal = 1 -17200084 otherCount = 0 -~~~ -~~~ -17200203 DOWN 10 -17200203 0 2048 -~~~ -~~~ -~~~ -17200231 UP 10 -17200231 waslock = 0 -17200231 512 2048 -~~~ -17200233 homeCount = 4 -17200234 waitCount = 0 -17200234 ripCount = 1 -17200235 locktype1 = 0 -17200235 locktype2 = 1 -17200235 locktype3 = 1 -17200236 goalCount = 1 -17200236 goalTotal = 1 -17200258 otherCount = 0 -~~~ -~~~ -17200369 DOWN 10 -17200369 0 2048 -17200387 UP 10 -17200388 waslock = 0 -17200387 512 2048 -~~~ -~~~ -~~~ -~~~ -17200392 homeCount = 4 -17200393 waitCount = 0 -17200393 ripCount = 1 -17200394 locktype1 = 0 -17200394 locktype2 = 1 -17200395 locktype3 = 1 -17200395 goalCount = 1 -17200396 goalTotal = 1 -17200396 otherCount = 0 -~~~ -~~~ -17200549 DOWN 10 -17200549 0 2048 -17200555 UP 10 -17200555 waslock = 0 -17200555 512 2048 -~~~ -~~~ -~~~ -~~~ -17200573 homeCount = 4 -17200574 waitCount = 0 -17200574 ripCount = 1 -17200575 locktype1 = 0 -17200575 locktype2 = 1 -17200576 locktype3 = 1 -17200576 goalCount = 1 -17200577 goalTotal = 1 -17200577 otherCount = 0 -~~~ -~~~ -17201066 DOWN 10 -17201066 0 2048 -17201087 UP 10 -17201087 waslock = 0 -17201086 512 2048 -~~~ -~~~ -~~~ -~~~ -17201094 homeCount = 4 -17201095 waitCount = 0 -17201095 ripCount = 1 -17201096 locktype1 = 0 -17201096 locktype2 = 1 -17201097 locktype3 = 1 -17201097 goalCount = 1 -17201098 goalTotal = 1 -17201098 otherCount = 0 -~~~ -~~~ -17201975 DOWN 10 -17201975 0 2048 -~~~ -~~~ -~~~ -17202002 UP 10 -17202003 waslock = 0 -17202002 512 2048 -~~~ -17202005 homeCount = 4 -17202005 waitCount = 0 -17202005 ripCount = 1 -17202006 locktype1 = 0 -17202006 locktype2 = 1 -17202007 locktype3 = 1 -17202007 goalCount = 1 -17202008 goalTotal = 1 -17202029 otherCount = 0 -~~~ -~~~ -17202166 DOWN 10 -17202166 0 2048 -17202183 UP 10 -17202183 waslock = 0 -17202183 512 2048 -~~~ -~~~ -~~~ -~~~ -17202206 homeCount = 4 -17202207 waitCount = 0 -17202207 ripCount = 1 -17202208 locktype1 = 0 -17202208 locktype2 = 1 -17202209 locktype3 = 1 -17202209 goalCount = 1 -17202210 goalTotal = 1 -17202210 otherCount = 0 -~~~ -~~~ -17202352 DOWN 10 -17202352 0 2048 -~~~ -~~~ -~~~ -17202373 UP 10 -17202373 waslock = 0 -17202372 512 2048 -~~~ -17202375 homeCount = 4 -17202375 waitCount = 0 -17202376 ripCount = 1 -17202376 locktype1 = 0 -17202377 locktype2 = 1 -17202377 locktype3 = 1 -17202378 goalCount = 1 -17202378 goalTotal = 1 -17202378 otherCount = 0 -~~~ -~~~ -17202533 DOWN 10 -17202533 0 2048 -17202545 UP 10 -17202545 waslock = 0 -17202545 512 2048 -~~~ -~~~ -~~~ -~~~ -17202570 homeCount = 4 -17202570 waitCount = 0 -17202571 ripCount = 1 -17202571 locktype1 = 0 -17202572 locktype2 = 1 -17202572 locktype3 = 1 -17202572 goalCount = 1 -17202573 goalTotal = 1 -17202573 otherCount = 0 -~~~ -~~~ -17202723 DOWN 10 -17202723 0 2048 -17202740 UP 10 -17202740 waslock = 0 -17202740 512 2048 -~~~ -~~~ -~~~ -~~~ -17202747 homeCount = 4 -17202747 waitCount = 0 -17202748 ripCount = 1 -17202748 locktype1 = 0 -17202749 locktype2 = 1 -17202749 locktype3 = 1 -17202750 goalCount = 1 -17202750 goalTotal = 1 -17202751 otherCount = 0 -~~~ -~~~ -17202889 DOWN 10 -17202889 0 2048 -~~~ -~~~ -~~~ -~~~ -17202917 homeCount = 4 -17202918 waitCount = 0 -17202918 ripCount = 1 -17202919 locktype1 = 0 -17202919 locktype2 = 1 -17202920 locktype3 = 1 -17202920 goalCount = 1 -17202921 goalTotal = 1 -17202921 otherCount = 0 -~~~ -17202922 UP 10 -17202922 waslock = 0 -17202922 512 2048 -~~~ -17203082 DOWN 10 -17203082 0 2048 -~~~ -~~~ -~~~ -~~~ -17203107 homeCount = 4 -17203107 waitCount = 0 -17203108 ripCount = 1 -17203108 locktype1 = 0 -17203109 locktype2 = 1 -17203109 locktype3 = 1 -17203110 goalCount = 1 -17203110 goalTotal = 1 -17203111 otherCount = 0 -~~~ -17203111 UP 10 -17203112 waslock = 0 -17203111 512 2048 -~~~ -17203454 DOWN 10 -17203454 0 2048 -~~~ -~~~ -~~~ -~~~ -17203476 homeCount = 4 -17203476 waitCount = 0 -17203477 ripCount = 1 -17203477 locktype1 = 0 -17203478 locktype2 = 1 -17203478 locktype3 = 1 -17203479 goalCount = 1 -17203479 goalTotal = 1 -17203480 otherCount = 0 -~~~ -17203503 UP 10 -17203504 waslock = 0 -17203503 512 2048 -~~~ -17203529 DOWN 10 -17203529 0 2048 -~~~ -~~~ -~~~ -~~~ -17203551 homeCount = 4 -17203551 waitCount = 0 -17203552 ripCount = 1 -17203552 locktype1 = 0 -17203553 locktype2 = 1 -17203553 locktype3 = 1 -17203554 goalCount = 1 -17203554 goalTotal = 1 -17203555 otherCount = 0 -~~~ -17204874 UP 12 -17204874 2048 2048 -17205289 DOWN 12 -17205289 0 2048 -17205350 UP 12 -17205350 2048 2048 -17205874 CLICK1 -17205874 CLICK2 -~~~ -~~~ -~~~ -17205897 2048 67110912 -~~~ -17206047 2048 2048 -17209020 DOWN 12 -17209019 0 2048 -17209027 UP 12 -17209027 2048 2048 -~~~ -~~~ -17209045 2048 0 -~~~ -~~~ -17209047 2048 1 -~~~ -~~~ -17209049 2048 3 -~~~ -~~~ -17209051 2048 7 -~~~ -~~~ -17209053 2048 15 -~~~ -~~~ -17209054 2048 31 -~~~ -~~~ -17209056 2048 63 -~~~ -~~~ -17209058 2048 127 -~~~ -~~~ -17209060 2048 255 -17209061 homeCount = 4 -17209061 waitCount = 1 -17209062 ripCount = 1 -17209083 locktype1 = 0 -17209084 locktype2 = 1 -17209084 locktype3 = 1 -17209085 goalCount = 1 -17209085 goalTotal = 1 -17209086 otherCount = 0 -~~~ -17209087 CURRENTGOAL IS [8] -~~~ -17209208 DOWN 12 -17209207 0 255 -17209215 UP 12 -17209215 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209252 homeCount = 4 -17209253 waitCount = 1 -17209253 ripCount = 1 -17209254 locktype1 = 0 -17209254 locktype2 = 1 -17209255 locktype3 = 1 -17209255 goalCount = 1 -17209256 goalTotal = 1 -17209256 otherCount = 0 -~~~ -17209257 CURRENTGOAL IS [8] -~~~ -17209297 DOWN 12 -17209297 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209333 homeCount = 4 -17209333 waitCount = 1 -17209334 ripCount = 1 -17209334 locktype1 = 0 -17209335 locktype2 = 1 -17209335 locktype3 = 1 -17209336 goalCount = 1 -17209336 goalTotal = 1 -17209337 otherCount = 0 -~~~ -17209338 CURRENTGOAL IS [8] -~~~ -17209367 UP 12 -17209367 2048 255 -17209442 DOWN 12 -17209441 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209482 homeCount = 4 -17209482 waitCount = 1 -17209483 ripCount = 1 -17209483 locktype1 = 0 -17209484 locktype2 = 1 -17209484 locktype3 = 1 -17209485 goalCount = 1 -17209485 goalTotal = 1 -17209486 otherCount = 0 -~~~ -17209487 CURRENTGOAL IS [8] -~~~ -17209521 UP 12 -17209521 2048 255 -17209548 DOWN 12 -17209548 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17209584 homeCount = 4 -17209584 waitCount = 1 -17209585 ripCount = 1 -17209585 locktype1 = 0 -17209586 locktype2 = 1 -17209586 locktype3 = 1 -17209587 goalCount = 1 -17209587 goalTotal = 1 -17209588 otherCount = 0 -~~~ -17209589 CURRENTGOAL IS [8] -~~~ -17214096 UP 3 -17214096 4 255 -~~~ -~~~ -17214382 DOWN 3 -17214382 0 255 -~~~ -~~~ -17214406 0 254 -~~~ -~~~ -17214408 0 252 -~~~ -~~~ -17214410 0 248 -~~~ -~~~ -17214412 0 240 -~~~ -~~~ -17214413 0 224 -~~~ -~~~ -17214415 0 192 -~~~ -17214417 4 192 -~~~ -~~~ -17214418 4 128 -~~~ -17214419 4 0 -~~~ -~~~ -17214421 4 512 -17214422 homeCount = 4 -17214422 waitCount = 1 -17214423 ripCount = 1 -17214444 locktype1 = 0 -17214444 locktype2 = 1 -17214445 locktype3 = 1 -17214445 goalCount = 1 -17214446 goalTotal = 1 -17214446 otherCount = 1 -~~~ -17216429 DOWN 3 -17216429 0 512 -17221376 UP 5 -17221376 16 512 -~~~ -17221403 WHITENOISE -~~~ -~~~ -~~~ -17221405 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17221498 DOWN 5 -17221498 0 0 -17221556 16 0 -17221956 DOWN 5 -17221956 0 0 -17221991 16 0 -17222305 DOWN 5 -17222305 0 0 -17222315 16 0 -17224674 DOWN 5 -17224674 0 0 -17229229 512 0 -17229265 0 0 -17229285 512 0 -17229569 0 0 -17229641 512 0 -17230107 0 0 -17230128 512 0 -17230800 0 0 -17230861 512 0 -17230891 0 0 -17241365 UP 1 -17241365 1 0 -17243735 DOWN 1 -17243735 0 0 -17243748 1 0 -17243765 DOWN 1 -17243765 0 0 -17246403 LOCKEND -~~~ -~~~ -~~~ -17246427 0 512 -17248354 UP 10 -17248354 waslock = 0 -17248354 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17248382 512 16777728 -~~~ -17248431 DOWN 10 -17248431 0 16777728 -~~~ -~~~ -17248459 0 16778752 -~~~ -~~~ -17248461 0 16778240 -17248462 homeCount = 5 -17248462 waitCount = 1 -17248463 ripCount = 1 -17248463 locktype1 = 0 -17248464 locktype2 = 2 -17248464 locktype3 = 1 -17248465 goalCount = 1 -17248465 goalTotal = 1 -17248466 otherCount = 1 -~~~ -17248532 0 1024 -17248648 UP 10 -17248648 waslock = 0 -17248648 512 1024 -~~~ -17252377 DOWN 10 -17252377 0 1024 -~~~ -~~~ -~~~ -~~~ -17252397 homeCount = 5 -17252398 waitCount = 1 -17252399 ripCount = 1 -17252399 locktype1 = 0 -17252400 locktype2 = 2 -17252400 locktype3 = 1 -17252400 goalCount = 1 -17252401 goalTotal = 1 -17252401 otherCount = 1 -~~~ -17252421 UP 10 -17252421 waslock = 0 -17252421 512 1024 -~~~ -17252951 DOWN 10 -17252951 0 1024 -~~~ -~~~ -~~~ -~~~ -17252980 homeCount = 5 -17252980 waitCount = 1 -17252981 ripCount = 1 -17252981 locktype1 = 0 -17252981 locktype2 = 2 -17252982 locktype3 = 1 -17252982 goalCount = 1 -17252983 goalTotal = 1 -17252983 otherCount = 1 -~~~ -17254005 UP 11 -17254004 1024 1024 -17254582 DOWN 11 -17254582 0 1024 -17254724 UP 11 -17254724 1024 1024 -17255505 BEEP1 -17255505 BEEP2 -~~~ -~~~ -~~~ -17255528 1024 33555456 -~~~ -17255678 1024 1024 -17260300 DOWN 11 -17260300 0 1024 -~~~ -~~~ -17260324 0 0 -~~~ -~~~ -17260326 0 1 -~~~ -~~~ -17260328 0 3 -~~~ -~~~ -17260330 0 7 -~~~ -~~~ -17260331 0 15 -~~~ -~~~ -17260333 0 31 -~~~ -~~~ -17260335 0 63 -~~~ -~~~ -17260337 0 127 -~~~ -~~~ -17260339 0 255 -17260340 homeCount = 5 -17260340 waitCount = 1 -17260341 ripCount = 2 -17260341 locktype1 = 0 -17260342 locktype2 = 2 -17260363 locktype3 = 1 -17260363 goalCount = 1 -17260364 goalTotal = 1 -17260364 otherCount = 1 -~~~ -17260365 CURRENTGOAL IS [8] -~~~ -17260366 UP 11 -17260366 1024 255 -17260390 DOWN 11 -17260390 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17260428 homeCount = 5 -17260428 waitCount = 1 -17260429 ripCount = 2 -17260429 locktype1 = 0 -17260430 locktype2 = 2 -17260430 locktype3 = 1 -17260431 goalCount = 1 -17260431 goalTotal = 1 -17260432 otherCount = 1 -~~~ -17260433 CURRENTGOAL IS [8] -~~~ -17262731 UP 7 -17262731 64 255 -~~~ -~~~ -17262993 DOWN 7 -17262993 0 255 -~~~ -~~~ -17263010 0 254 -~~~ -~~~ -17263012 0 252 -~~~ -~~~ -17263013 0 248 -~~~ -~~~ -17263015 0 240 -~~~ -~~~ -17263017 0 224 -~~~ -~~~ -17263019 0 192 -~~~ -~~~ -17263021 0 128 -~~~ -~~~ -17263023 0 0 -~~~ -~~~ -17263024 0 512 -17263025 homeCount = 5 -17263026 waitCount = 1 -17263026 ripCount = 2 -17263027 locktype1 = 0 -17263047 locktype2 = 2 -17263048 locktype3 = 1 -17263048 goalCount = 1 -17263049 goalTotal = 1 -17263049 otherCount = 2 -~~~ -17263101 64 512 -17263724 DOWN 7 -17263724 0 512 -17267314 UP 10 -17267315 waslock = 0 -17267314 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17267339 512 16777728 -~~~ -17267489 512 512 -17267798 DOWN 10 -17267798 0 512 -~~~ -~~~ -17267824 0 1536 -~~~ -~~~ -17267826 0 1024 -17267827 homeCount = 6 -17267827 waitCount = 1 -17267828 ripCount = 2 -17267828 locktype1 = 0 -17267829 locktype2 = 2 -17267829 locktype3 = 1 -17267830 goalCount = 1 -17267830 goalTotal = 1 -17267831 otherCount = 2 -~~~ -17267852 UP 10 -17267852 waslock = 0 -17267852 512 1024 -~~~ -17271549 DOWN 10 -17271549 0 1024 -~~~ -~~~ -~~~ -~~~ -17271577 homeCount = 6 -17271577 waitCount = 1 -17271578 ripCount = 2 -17271578 locktype1 = 0 -17271579 locktype2 = 2 -17271579 locktype3 = 1 -17271580 goalCount = 1 -17271580 goalTotal = 1 -17271580 otherCount = 2 -~~~ -17273398 UP 11 -17273398 1024 1024 -17275399 BEEP1 -17275399 BEEP2 -~~~ -~~~ -~~~ -17275425 1024 33555456 -~~~ -17275575 1024 1024 -17280164 DOWN 11 -17280164 0 1024 -~~~ -~~~ -17280183 0 0 -~~~ -~~~ -17280185 0 1 -~~~ -~~~ -17280187 0 3 -~~~ -~~~ -17280189 0 7 -~~~ -~~~ -17280190 0 15 -~~~ -~~~ -17280192 0 31 -~~~ -~~~ -17280194 0 63 -~~~ -~~~ -17280196 0 127 -~~~ -~~~ -17280198 0 255 -17280199 homeCount = 6 -17280199 waitCount = 1 -17280200 ripCount = 3 -17280200 locktype1 = 0 -17280201 locktype2 = 2 -17280222 locktype3 = 1 -17280222 goalCount = 1 -17280223 goalTotal = 1 -17280223 otherCount = 2 -~~~ -17280224 CURRENTGOAL IS [8] -~~~ -17283276 UP 6 -17283276 32 255 -~~~ -~~~ -17287545 DOWN 6 -17287545 0 255 -~~~ -~~~ -17287566 0 254 -~~~ -~~~ -17287568 0 252 -~~~ -~~~ -17287570 0 248 -~~~ -~~~ -17287572 0 240 -~~~ -~~~ -17287574 0 224 -~~~ -~~~ -17287576 0 192 -~~~ -~~~ -17287577 0 128 -~~~ -~~~ -17287579 0 0 -~~~ -~~~ -17287581 0 512 -17287582 homeCount = 6 -17287583 waitCount = 1 -17287583 ripCount = 3 -17287584 locktype1 = 0 -17287584 locktype2 = 2 -17287605 locktype3 = 1 -17287606 goalCount = 1 -17287606 goalTotal = 1 -17287607 otherCount = 3 -~~~ -17292442 UP 10 -17292442 waslock = 0 -17292442 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17292474 512 16777728 -~~~ -17292624 512 512 -17292916 DOWN 10 -17292916 0 512 -~~~ -~~~ -17292940 0 2560 -~~~ -~~~ -17292942 0 2048 -17292943 homeCount = 7 -17292943 waitCount = 1 -17292944 ripCount = 3 -17292944 locktype1 = 0 -17292945 locktype2 = 2 -17292945 locktype3 = 1 -17292946 goalCount = 1 -17292946 goalTotal = 1 -17292947 otherCount = 3 -~~~ -17292968 UP 10 -17292968 waslock = 0 -17292968 512 2048 -~~~ -17295724 DOWN 10 -17295724 0 2048 -~~~ -~~~ -~~~ -~~~ -17295752 homeCount = 7 -17295753 waitCount = 1 -17295753 ripCount = 3 -17295754 locktype1 = 0 -17295754 locktype2 = 2 -17295755 locktype3 = 1 -17295755 goalCount = 1 -17295756 goalTotal = 1 -17295756 otherCount = 3 -~~~ -17297251 UP 12 -17297251 2048 2048 -17298067 DOWN 12 -17298067 0 2048 -17298091 UP 12 -17298090 2048 2048 -17298405 DOWN 12 -17298404 0 2048 -17298448 UP 12 -17298448 2048 2048 -17298503 DOWN 12 -17298503 0 2048 -17298517 UP 12 -17298517 2048 2048 -17298751 CLICK1 -17298751 CLICK2 -~~~ -~~~ -~~~ -17298774 2048 67110912 -~~~ -17298924 2048 2048 -17303723 DOWN 12 -17303723 0 2048 -~~~ -~~~ -17303749 0 0 -~~~ -~~~ -17303751 0 1 -~~~ -~~~ -17303753 0 3 -~~~ -~~~ -17303755 0 7 -~~~ -~~~ -17303757 0 15 -~~~ -~~~ -17303758 0 31 -~~~ -~~~ -17303760 0 63 -~~~ -~~~ -17303762 0 127 -~~~ -~~~ -17303764 0 255 -17303765 homeCount = 7 -17303765 waitCount = 2 -17303766 ripCount = 3 -17303766 locktype1 = 0 -17303767 locktype2 = 2 -17303788 locktype3 = 1 -17303789 goalCount = 1 -17303789 goalTotal = 1 -17303789 otherCount = 3 -~~~ -17303791 CURRENTGOAL IS [8] -~~~ -17306124 UP 3 -17306124 4 255 -~~~ -~~~ -17306596 DOWN 3 -17306596 0 255 -~~~ -~~~ -17306619 0 254 -~~~ -~~~ -17306621 0 252 -~~~ -~~~ -17306623 0 248 -~~~ -~~~ -17306625 0 240 -~~~ -~~~ -17306626 0 224 -~~~ -17306628 4 224 -~~~ -~~~ -17306630 4 192 -~~~ -~~~ -17306631 4 128 -~~~ -17306632 4 0 -~~~ -~~~ -17306634 4 512 -17306635 homeCount = 7 -17306635 waitCount = 2 -17306657 ripCount = 3 -17306657 locktype1 = 0 -17306657 locktype2 = 2 -17306658 locktype3 = 1 -17306658 goalCount = 1 -17306659 goalTotal = 1 -17306659 otherCount = 4 -~~~ -17306899 DOWN 3 -17306899 0 512 -17310805 UP 10 -17310806 waslock = 0 -17310805 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17310836 512 16777728 -~~~ -17310985 512 512 -17311009 DOWN 10 -17311009 0 512 -~~~ -~~~ -17311029 0 2560 -~~~ -~~~ -17311031 0 2048 -17311032 homeCount = 8 -17311033 waitCount = 2 -17311033 ripCount = 3 -17311034 locktype1 = 0 -17311034 locktype2 = 2 -17311034 locktype3 = 1 -17311035 goalCount = 1 -17311035 goalTotal = 1 -17311036 otherCount = 4 -~~~ -17311057 UP 10 -17311058 waslock = 0 -17311057 512 2048 -~~~ -17316712 DOWN 10 -17316712 0 2048 -~~~ -~~~ -~~~ -~~~ -17316732 homeCount = 8 -17316733 waitCount = 2 -17316733 ripCount = 3 -17316734 locktype1 = 0 -17316734 locktype2 = 2 -17316735 locktype3 = 1 -17316735 goalCount = 1 -17316736 goalTotal = 1 -17316736 otherCount = 4 -~~~ -17318338 UP 12 -17318338 2048 2048 -17319026 DOWN 12 -17319026 0 2048 -17319032 UP 12 -17319032 2048 2048 -17319678 DOWN 12 -17319678 0 2048 -17319738 UP 12 -17319738 2048 2048 -17320338 CLICK1 -17320338 CLICK2 -~~~ -~~~ -~~~ -17320363 2048 67110912 -~~~ -17320513 2048 2048 -17326725 DOWN 12 -17326725 0 2048 -~~~ -~~~ -17326751 0 0 -~~~ -~~~ -17326753 0 1 -~~~ -~~~ -17326755 0 3 -~~~ -~~~ -17326757 0 7 -~~~ -~~~ -17326758 0 15 -~~~ -~~~ -17326760 0 31 -~~~ -~~~ -17326762 0 63 -~~~ -~~~ -17326764 0 127 -~~~ -~~~ -17326766 0 255 -17326767 homeCount = 8 -17326767 waitCount = 3 -17326768 ripCount = 3 -17326768 locktype1 = 0 -17326769 locktype2 = 2 -17326790 locktype3 = 1 -17326790 goalCount = 1 -17326791 goalTotal = 1 -17326791 otherCount = 4 -~~~ -17326792 CURRENTGOAL IS [8] -~~~ -17329863 UP 8 -17329863 128 255 -~~~ -~~~ -17329893 outer reward -~~~ -17329893 128 8388863 -~~~ -~~~ -17330172 DOWN 8 -17330172 0 8388863 -~~~ -~~~ -17330190 0 8388862 -~~~ -~~~ -17330192 0 8388860 -~~~ -~~~ -17330194 0 8388856 -~~~ -17330195 128 8388856 -~~~ -~~~ -17330197 128 8388848 -~~~ -~~~ -17330198 128 8388832 -~~~ -~~~ -17330200 128 8388800 -~~~ -17330201 128 8388736 -~~~ -~~~ -17330203 128 8388608 -~~~ -~~~ -17330225 homeCount = 8 -17330226 waitCount = 3 -17330226 ripCount = 3 -17330227 locktype1 = 0 -17330227 locktype2 = 2 -17330228 locktype3 = 1 -17330228 goalCount = 2 -17330229 goalTotal = 2 -17330229 otherCount = 4 -~~~ -17330230 128 8389120 -17330343 128 512 -17330465 DOWN 8 -17330465 0 512 -17330476 128 512 -17330578 DOWN 8 -17330578 0 512 -17330607 128 512 -17330830 DOWN 8 -17330830 0 512 -17330847 128 512 -17330966 DOWN 8 -17330966 0 512 -17330984 128 512 -17331109 DOWN 8 -17331109 0 512 -17331117 128 512 -17333342 DOWN 8 -17333342 0 512 -17333351 128 512 -17333497 DOWN 8 -17333497 0 512 -17333526 128 512 -17336388 DOWN 8 -17336388 0 512 -17336425 128 512 -17336477 DOWN 8 -17336477 0 512 -17340374 UP 10 -17340375 waslock = 0 -17340374 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17340400 512 16777728 -~~~ -17340550 512 512 -17340693 DOWN 10 -17340693 0 512 -~~~ -~~~ -17340713 0 1536 -~~~ -~~~ -17340715 0 1024 -17340716 homeCount = 9 -17340716 waitCount = 3 -17340717 ripCount = 3 -17340717 locktype1 = 0 -17340718 locktype2 = 2 -17340718 locktype3 = 1 -17340719 goalCount = 2 -17340719 goalTotal = 2 -17340720 otherCount = 4 -~~~ -17340741 UP 10 -17340741 waslock = 0 -17340741 512 1024 -~~~ -17340763 DOWN 10 -17340763 0 1024 -~~~ -~~~ -~~~ -~~~ -17340794 homeCount = 9 -17340795 waitCount = 3 -17340795 ripCount = 3 -17340796 locktype1 = 0 -17340796 locktype2 = 2 -17340797 locktype3 = 1 -17340797 goalCount = 2 -17340798 goalTotal = 2 -17340798 otherCount = 4 -~~~ -17340826 UP 10 -17340826 waslock = 0 -17340826 512 1024 -~~~ -17341139 DOWN 10 -17341139 0 1024 -~~~ -17341164 UP 10 -17341164 waslock = 0 -17341164 512 1024 -~~~ -~~~ -~~~ -17341168 homeCount = 9 -17341168 waitCount = 3 -17341168 ripCount = 3 -17341169 locktype1 = 0 -17341169 locktype2 = 2 -17341170 locktype3 = 1 -17341170 goalCount = 2 -17341171 goalTotal = 2 -17341171 otherCount = 4 -~~~ -~~~ -17341287 DOWN 10 -17341287 0 1024 -~~~ -~~~ -~~~ -~~~ -17341311 homeCount = 9 -17341312 waitCount = 3 -17341312 ripCount = 3 -17341312 locktype1 = 0 -17341313 locktype2 = 2 -17341313 locktype3 = 1 -17341314 goalCount = 2 -17341314 goalTotal = 2 -17341315 otherCount = 4 -~~~ -17341319 UP 10 -17341319 waslock = 0 -17341319 512 1024 -~~~ -17345688 DOWN 10 -17345688 0 1024 -~~~ -~~~ -~~~ -~~~ -17345716 homeCount = 9 -17345716 waitCount = 3 -17345717 ripCount = 3 -17345717 locktype1 = 0 -17345718 locktype2 = 2 -17345718 locktype3 = 1 -17345719 goalCount = 2 -17345719 goalTotal = 2 -17345720 otherCount = 4 -~~~ -17345720 UP 10 -17345721 waslock = 0 -17345720 512 1024 -~~~ -17346020 DOWN 10 -17346020 0 1024 -~~~ -~~~ -~~~ -~~~ -17346050 homeCount = 9 -17346051 waitCount = 3 -17346051 ripCount = 3 -17346052 locktype1 = 0 -17346052 locktype2 = 2 -17346053 locktype3 = 1 -17346053 goalCount = 2 -17346054 goalTotal = 2 -17346054 otherCount = 4 -~~~ -17346061 UP 10 -17346061 waslock = 0 -17346061 512 1024 -~~~ -17346109 DOWN 10 -17346109 0 1024 -~~~ -~~~ -~~~ -~~~ -17346131 homeCount = 9 -17346132 waitCount = 3 -17346132 ripCount = 3 -17346133 locktype1 = 0 -17346133 locktype2 = 2 -17346134 locktype3 = 1 -17346134 goalCount = 2 -17346135 goalTotal = 2 -17346135 otherCount = 4 -~~~ -17348173 UP 11 -17348173 1024 1024 -17348892 DOWN 11 -17348892 0 1024 -17348931 UP 11 -17348931 1024 1024 -17349733 DOWN 11 -17349733 0 1024 -17349791 UP 11 -17349791 1024 1024 -17352368 DOWN 11 -17352368 0 1024 -17352424 UP 11 -17352424 1024 1024 -17353673 BEEP1 -17353673 BEEP2 -~~~ -~~~ -~~~ -17353696 1024 33555456 -~~~ -17353846 1024 1024 -17358269 DOWN 11 -17358269 0 1024 -~~~ -~~~ -17358285 0 0 -~~~ -~~~ -17358286 0 1 -~~~ -~~~ -17358288 0 3 -~~~ -~~~ -17358290 0 7 -~~~ -~~~ -17358292 0 15 -~~~ -~~~ -17358294 0 31 -~~~ -~~~ -17358295 0 63 -~~~ -~~~ -17358297 0 127 -~~~ -~~~ -17358299 0 255 -17358300 homeCount = 9 -17358301 waitCount = 3 -17358301 ripCount = 4 -17358302 locktype1 = 0 -17358302 locktype2 = 2 -17358323 locktype3 = 1 -17358323 goalCount = 2 -17358324 goalTotal = 2 -17358324 otherCount = 4 -~~~ -17358325 CURRENTGOAL IS [8] -~~~ -17365570 UP 5 -17365570 16 255 -~~~ -~~~ -17365592 DOWN 5 -17365592 0 255 -~~~ -~~~ -17365610 0 254 -~~~ -~~~ -17365612 0 252 -~~~ -~~~ -17365613 0 248 -~~~ -~~~ -17365615 0 240 -~~~ -~~~ -17365617 0 224 -~~~ -~~~ -17365619 0 192 -~~~ -~~~ -17365621 0 128 -~~~ -~~~ -17365623 0 0 -~~~ -~~~ -17365624 0 512 -17365625 homeCount = 9 -17365626 waitCount = 3 -17365626 ripCount = 4 -17365627 locktype1 = 0 -17365627 locktype2 = 2 -17365648 locktype3 = 1 -17365649 goalCount = 2 -17365649 goalTotal = 2 -17365650 otherCount = 5 -~~~ -17365781 16 512 -17365998 DOWN 5 -17365998 0 512 -17366057 16 512 -17366358 DOWN 5 -17366358 0 512 -17370017 UP 10 -17370017 waslock = 0 -17370016 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17370044 512 16777728 -~~~ -17370086 DOWN 10 -17370086 0 16777728 -17370102 UP 10 -17370102 waslock = 0 -17370102 512 16777728 -~~~ -~~~ -17370109 512 16779776 -~~~ -~~~ -17370110 512 16779264 -17370111 homeCount = 10 -17370112 waitCount = 3 -17370112 ripCount = 4 -17370113 locktype1 = 0 -17370113 locktype2 = 2 -17370114 locktype3 = 1 -17370114 goalCount = 2 -17370115 goalTotal = 2 -17370115 otherCount = 5 -~~~ -~~~ -17370194 512 2048 -17370314 DOWN 10 -17370314 0 2048 -~~~ -~~~ -~~~ -~~~ -17370342 homeCount = 10 -17370342 waitCount = 3 -17370343 ripCount = 4 -17370343 locktype1 = 0 -17370344 locktype2 = 2 -17370344 locktype3 = 1 -17370345 goalCount = 2 -17370345 goalTotal = 2 -17370346 otherCount = 5 -~~~ -17370349 UP 10 -17370350 waslock = 0 -17370349 512 2048 -~~~ -17375317 DOWN 10 -17375317 0 2048 -~~~ -~~~ -~~~ -~~~ -17375343 homeCount = 10 -17375343 waitCount = 3 -17375344 ripCount = 4 -17375344 locktype1 = 0 -17375345 locktype2 = 2 -17375345 locktype3 = 1 -17375346 goalCount = 2 -17375346 goalTotal = 2 -17375347 otherCount = 5 -~~~ -17376808 UP 12 -17376808 2048 2048 -17377545 DOWN 12 -17377545 0 2048 -17377568 UP 12 -17377568 2048 2048 -17377991 DOWN 12 -17377991 0 2048 -17378027 UP 12 -17378027 2048 2048 -17378035 DOWN 12 -17378035 0 2048 -17378077 UP 12 -17378077 2048 2048 -17379308 CLICK1 -17379308 CLICK2 -~~~ -~~~ -~~~ -17379331 2048 67110912 -~~~ -17379481 2048 2048 -17385850 DOWN 12 -17385850 0 2048 -~~~ -~~~ -17385870 0 0 -~~~ -~~~ -17385872 0 1 -~~~ -~~~ -17385874 0 3 -~~~ -~~~ -17385876 0 7 -~~~ -~~~ -17385878 0 15 -~~~ -~~~ -17385879 0 31 -~~~ -~~~ -17385881 0 63 -~~~ -~~~ -17385883 0 127 -~~~ -~~~ -17385885 0 255 -17385886 homeCount = 10 -17385886 waitCount = 4 -17385887 ripCount = 4 -17385887 locktype1 = 0 -17385888 locktype2 = 2 -17385909 locktype3 = 1 -17385910 goalCount = 2 -17385910 goalTotal = 2 -17385911 otherCount = 5 -~~~ -17385912 CURRENTGOAL IS [8] -~~~ -17388562 UP 4 -17388562 8 255 -~~~ -~~~ -17388885 DOWN 4 -17388885 0 255 -~~~ -~~~ -17388905 0 254 -~~~ -~~~ -17388907 0 252 -~~~ -~~~ -17388909 0 248 -~~~ -~~~ -17388911 0 240 -~~~ -~~~ -17388913 0 224 -~~~ -~~~ -17388915 0 192 -~~~ -~~~ -17388916 0 128 -~~~ -~~~ -17388918 0 0 -~~~ -~~~ -17388920 0 512 -17388921 homeCount = 10 -17388922 waitCount = 4 -17388922 ripCount = 4 -17388923 locktype1 = 0 -17388923 locktype2 = 2 -17388944 locktype3 = 1 -17388945 goalCount = 2 -17388945 goalTotal = 2 -17388946 otherCount = 6 -~~~ -17388946 8 512 -17390803 DOWN 4 -17390803 0 512 -17390805 8 512 -17390813 DOWN 4 -17390813 0 512 -17390818 8 512 -17392370 DOWN 4 -17392370 0 512 -17392384 8 512 -17392555 DOWN 4 -17392555 0 512 -17392566 8 512 -17392739 DOWN 4 -17392739 0 512 -17392749 8 512 -17393053 DOWN 4 -17393053 0 512 -17397905 UP 10 -17397905 waslock = 0 -17397905 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17397935 512 16777728 -~~~ -17397959 DOWN 10 -17397959 0 16777728 -~~~ -~~~ -17397988 0 16778752 -~~~ -~~~ -17397989 0 16778240 -17397990 homeCount = 11 -17397991 waitCount = 4 -17397991 ripCount = 4 -17397992 locktype1 = 0 -17397992 locktype2 = 2 -17397993 locktype3 = 1 -17397993 goalCount = 2 -17397994 goalTotal = 2 -17397994 otherCount = 6 -~~~ -17398015 UP 10 -17398015 waslock = 0 -17398015 512 16778240 -~~~ -17398085 512 1024 -17398135 DOWN 10 -17398135 0 1024 -~~~ -~~~ -~~~ -~~~ -17398161 homeCount = 11 -17398161 waitCount = 4 -17398162 ripCount = 4 -17398162 locktype1 = 0 -17398163 locktype2 = 2 -17398163 locktype3 = 1 -17398164 goalCount = 2 -17398164 goalTotal = 2 -17398165 otherCount = 6 -~~~ -17398199 UP 10 -17398200 waslock = 0 -17398199 512 1024 -~~~ -17401566 DOWN 10 -17401566 0 1024 -~~~ -~~~ -~~~ -~~~ -17401591 homeCount = 11 -17401591 waitCount = 4 -17401592 ripCount = 4 -17401592 locktype1 = 0 -17401593 locktype2 = 2 -17401593 locktype3 = 1 -17401594 goalCount = 2 -17401594 goalTotal = 2 -17401595 otherCount = 6 -~~~ -17401630 UP 10 -17401630 waslock = 0 -17401630 512 1024 -17401646 DOWN 10 -17401646 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -17401673 homeCount = 11 -17401673 waitCount = 4 -17401674 ripCount = 4 -17401674 locktype1 = 0 -17401674 locktype2 = 2 -17401675 locktype3 = 1 -17401675 goalCount = 2 -17401676 goalTotal = 2 -17401676 otherCount = 6 -~~~ -17403114 UP 11 -17403114 1024 1024 -17403966 DOWN 11 -17403966 0 1024 -17404015 UP 11 -17404015 1024 1024 -17404028 DOWN 11 -17404028 0 1024 -17404049 UP 11 -17404049 1024 1024 -17405538 DOWN 11 -17405538 0 1024 -17405561 UP 11 -17405561 1024 1024 -17407114 BEEP1 -17407114 BEEP2 -~~~ -~~~ -~~~ -17407139 1024 33555456 -~~~ -17407289 1024 1024 -17411324 DOWN 11 -17411324 0 1024 -17411329 UP 11 -17411329 1024 1024 -~~~ -~~~ -17411346 1024 0 -~~~ -~~~ -17411348 1024 1 -~~~ -~~~ -17411350 1024 3 -~~~ -~~~ -17411352 1024 7 -~~~ -~~~ -17411353 1024 15 -~~~ -~~~ -17411355 1024 31 -~~~ -~~~ -17411357 1024 63 -~~~ -~~~ -17411359 1024 127 -~~~ -~~~ -17411361 1024 255 -17411362 homeCount = 11 -17411362 waitCount = 4 -17411363 ripCount = 5 -17411384 locktype1 = 0 -17411384 locktype2 = 2 -17411385 locktype3 = 1 -17411385 goalCount = 2 -17411386 goalTotal = 2 -17411386 otherCount = 6 -~~~ -17411387 CURRENTGOAL IS [8] -~~~ -17411388 DOWN 11 -17411388 0 255 -17411400 UP 11 -17411400 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411443 homeCount = 11 -17411444 waitCount = 4 -17411444 ripCount = 5 -17411445 locktype1 = 0 -17411445 locktype2 = 2 -17411446 locktype3 = 1 -17411446 goalCount = 2 -17411447 goalTotal = 2 -17411447 otherCount = 6 -~~~ -17411448 CURRENTGOAL IS [8] -~~~ -17411594 DOWN 11 -17411594 0 255 -17411605 UP 11 -17411605 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411634 homeCount = 11 -17411635 waitCount = 4 -17411636 ripCount = 5 -17411636 locktype1 = 0 -17411637 locktype2 = 2 -17411637 locktype3 = 1 -17411638 goalCount = 2 -17411638 goalTotal = 2 -17411638 otherCount = 6 -~~~ -17411640 CURRENTGOAL IS [8] -~~~ -17411643 DOWN 11 -17411643 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411684 UP 11 -17411684 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411695 homeCount = 11 -17411696 waitCount = 4 -17411696 ripCount = 5 -17411697 locktype1 = 0 -17411697 locktype2 = 2 -17411698 locktype3 = 1 -17411698 goalCount = 2 -17411699 goalTotal = 2 -17411699 otherCount = 6 -~~~ -17411700 CURRENTGOAL IS [8] -~~~ -17411725 DOWN 11 -17411725 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17411763 homeCount = 11 -17411764 waitCount = 4 -17411765 ripCount = 5 -17411765 locktype1 = 0 -17411766 locktype2 = 2 -17411766 locktype3 = 1 -17411766 goalCount = 2 -17411767 goalTotal = 2 -17411767 otherCount = 6 -~~~ -17411769 CURRENTGOAL IS [8] -~~~ -17414174 UP 8 -17414174 128 255 -~~~ -~~~ -17414201 outer reward -~~~ -17414202 128 8388863 -~~~ -~~~ -17414479 DOWN 8 -17414479 0 8388863 -17414498 128 8388863 -~~~ -~~~ -17414500 128 8388862 -~~~ -~~~ -17414502 128 8388860 -~~~ -~~~ -17414503 128 8388856 -~~~ -~~~ -17414505 128 8388848 -~~~ -~~~ -17414507 128 8388832 -~~~ -~~~ -17414509 128 8388800 -~~~ -~~~ -17414511 128 8388736 -~~~ -~~~ -17414513 128 8388608 -~~~ -~~~ -17414514 128 8389120 -17414536 homeCount = 11 -17414537 waitCount = 4 -17414537 ripCount = 5 -17414537 locktype1 = 0 -17414538 locktype2 = 2 -17414538 locktype3 = 1 -17414539 goalCount = 3 -17414539 goalTotal = 3 -17414540 otherCount = 6 -~~~ -17414651 128 512 -17414876 DOWN 8 -17414876 0 512 -17414889 128 512 -17421666 DOWN 8 -17421666 0 512 -17426251 UP 10 -17426251 waslock = 0 -17426251 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17426278 512 16777728 -~~~ -17426428 512 512 -17426438 DOWN 10 -17426438 0 512 -~~~ -~~~ -17426454 0 1536 -~~~ -~~~ -17426456 0 1024 -17426457 homeCount = 12 -17426458 waitCount = 4 -17426458 ripCount = 5 -17426459 locktype1 = 0 -17426459 locktype2 = 2 -17426460 locktype3 = 1 -17426460 goalCount = 3 -17426461 goalTotal = 3 -17426461 otherCount = 6 -~~~ -17426536 UP 10 -17426537 waslock = 0 -17426536 512 1024 -~~~ -17430663 DOWN 10 -17430663 0 1024 -~~~ -~~~ -~~~ -~~~ -17430685 homeCount = 12 -17430685 waitCount = 4 -17430686 ripCount = 5 -17430686 locktype1 = 0 -17430687 locktype2 = 2 -17430687 locktype3 = 1 -17430688 goalCount = 3 -17430688 goalTotal = 3 -17430689 otherCount = 6 -~~~ -17432753 UP 11 -17432753 1024 1024 -17433614 DOWN 11 -17433614 0 1024 -17433672 UP 11 -17433672 1024 1024 -17434770 DOWN 11 -17434770 0 1024 -17434790 UP 11 -17434790 1024 1024 -17437253 DOWN 11 -17437253 0 1024 -17437320 UP 11 -17437320 1024 1024 -17437753 BEEP1 -17437753 BEEP2 -~~~ -~~~ -~~~ -17437773 1024 33555456 -~~~ -17437923 1024 1024 -17443197 DOWN 11 -17443197 0 1024 -~~~ -~~~ -17443221 0 0 -~~~ -~~~ -17443222 0 1 -~~~ -~~~ -17443224 0 3 -~~~ -~~~ -17443226 0 7 -~~~ -~~~ -17443228 0 15 -~~~ -~~~ -17443230 0 31 -~~~ -~~~ -17443232 0 63 -~~~ -~~~ -17443233 0 127 -~~~ -17443235 UP 11 -17443235 1024 127 -~~~ -17443236 homeCount = 12 -17443237 waitCount = 4 -17443237 ripCount = 6 -17443238 locktype1 = 0 -17443259 locktype2 = 2 -17443259 locktype3 = 1 -17443260 goalCount = 3 -17443260 goalTotal = 3 -17443261 otherCount = 6 -~~~ -17443262 CURRENTGOAL IS [8] -~~~ -17443262 1024 255 -17443287 DOWN 11 -17443287 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17443317 homeCount = 12 -17443318 waitCount = 4 -17443318 ripCount = 6 -17443319 locktype1 = 0 -17443319 locktype2 = 2 -17443320 locktype3 = 1 -17443320 goalCount = 3 -17443320 goalTotal = 3 -17443321 otherCount = 6 -~~~ -17443322 CURRENTGOAL IS [8] -~~~ -17443352 UP 11 -17443352 1024 255 -17443995 DOWN 11 -17443995 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444028 homeCount = 12 -17444028 waitCount = 4 -17444029 ripCount = 6 -17444029 locktype1 = 0 -17444030 locktype2 = 2 -17444030 locktype3 = 1 -17444031 goalCount = 3 -17444031 goalTotal = 3 -17444032 otherCount = 6 -~~~ -17444033 CURRENTGOAL IS [8] -~~~ -17444354 UP 11 -17444354 1024 255 -17444599 DOWN 11 -17444599 0 255 -17444616 UP 11 -17444616 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444637 homeCount = 12 -17444637 waitCount = 4 -17444638 ripCount = 6 -17444638 locktype1 = 0 -17444639 locktype2 = 2 -17444639 locktype3 = 1 -17444640 goalCount = 3 -17444640 goalTotal = 3 -17444641 otherCount = 6 -~~~ -17444642 CURRENTGOAL IS [8] -~~~ -17444645 DOWN 11 -17444645 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17444702 homeCount = 12 -17444702 waitCount = 4 -17444703 ripCount = 6 -17444703 locktype1 = 0 -17444704 locktype2 = 2 -17444704 locktype3 = 1 -17444705 goalCount = 3 -17444705 goalTotal = 3 -17444706 otherCount = 6 -~~~ -17444707 CURRENTGOAL IS [8] -~~~ -17448341 UP 8 -17448341 128 255 -~~~ -~~~ -17448364 outer reward -~~~ -17448364 128 8388863 -~~~ -~~~ -17448537 DOWN 8 -17448537 0 8388863 -~~~ -~~~ -17448561 0 8388862 -~~~ -~~~ -17448563 0 8388860 -~~~ -~~~ -17448564 0 8388856 -~~~ -~~~ -17448566 0 8388848 -~~~ -~~~ -17448568 0 8388832 -~~~ -~~~ -17448570 0 8388800 -~~~ -~~~ -17448572 0 8388736 -~~~ -~~~ -17448573 0 8388608 -~~~ -~~~ -17448575 0 8389120 -17448576 homeCount = 12 -17448577 waitCount = 4 -17448598 ripCount = 6 -17448598 locktype1 = 0 -17448599 locktype2 = 2 -17448599 locktype3 = 1 -17448600 goalCount = 4 -17448600 goalTotal = 4 -17448601 otherCount = 6 -~~~ -17448601 128 8389120 -17448814 128 512 -17448949 DOWN 8 -17448949 0 512 -17448983 128 512 -17449076 DOWN 8 -17449076 0 512 -17449099 128 512 -17449201 DOWN 8 -17449201 0 512 -17449231 128 512 -17449326 DOWN 8 -17449326 0 512 -17449363 128 512 -17449462 DOWN 8 -17449462 0 512 -17449484 128 512 -17454977 DOWN 8 -17454977 0 512 -17461792 UP 10 -17461793 waslock = 0 -17461792 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17461817 512 16777728 -~~~ -17461948 DOWN 10 -17461948 0 16777728 -17461967 0 512 -~~~ -~~~ -17461972 0 2560 -~~~ -~~~ -17461974 0 2048 -17461975 homeCount = 13 -17461975 waitCount = 4 -17461976 ripCount = 6 -17461976 locktype1 = 0 -17461977 locktype2 = 2 -17461977 locktype3 = 1 -17461978 goalCount = 4 -17461978 goalTotal = 4 -17461979 otherCount = 6 -~~~ -17462000 UP 10 -17462000 waslock = 0 -17462000 512 2048 -~~~ -17465243 DOWN 10 -17465243 0 2048 -~~~ -~~~ -~~~ -~~~ -17465265 homeCount = 13 -17465266 waitCount = 4 -17465266 ripCount = 6 -17465267 locktype1 = 0 -17465267 locktype2 = 2 -17465268 locktype3 = 1 -17465268 goalCount = 4 -17465269 goalTotal = 4 -17465269 otherCount = 6 -~~~ -17465307 UP 10 -17465308 waslock = 0 -17465307 512 2048 -17465331 DOWN 10 -17465331 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -17465361 homeCount = 13 -17465362 waitCount = 4 -17465362 ripCount = 6 -17465362 locktype1 = 0 -17465363 locktype2 = 2 -17465363 locktype3 = 1 -17465364 goalCount = 4 -17465364 goalTotal = 4 -17465365 otherCount = 6 -~~~ -17466887 UP 12 -17466887 2048 2048 -17466953 DOWN 12 -17466953 0 2048 -17466965 UP 12 -17466965 2048 2048 -17467866 DOWN 12 -17467866 0 2048 -17467881 UP 12 -17467881 2048 2048 -17468821 DOWN 12 -17468821 0 2048 -17468850 UP 12 -17468850 2048 2048 -17470138 CLICK1 -17470138 CLICK2 -~~~ -~~~ -~~~ -17470157 2048 67110912 -~~~ -17470307 2048 2048 -17478019 DOWN 12 -17478019 0 2048 -~~~ -~~~ -17478045 0 0 -~~~ -~~~ -17478047 0 1 -~~~ -~~~ -17478049 0 3 -~~~ -~~~ -17478051 0 7 -~~~ -~~~ -17478052 0 15 -~~~ -~~~ -17478054 0 31 -~~~ -~~~ -17478056 0 63 -~~~ -~~~ -17478058 0 127 -~~~ -~~~ -17478060 0 255 -17478061 homeCount = 13 -17478061 waitCount = 5 -17478062 ripCount = 6 -17478062 locktype1 = 0 -17478063 locktype2 = 2 -17478084 locktype3 = 1 -17478084 goalCount = 4 -17478085 goalTotal = 4 -17478085 otherCount = 6 -~~~ -17478086 CURRENTGOAL IS [8] -~~~ -17483323 UP 8 -17483323 128 255 -~~~ -~~~ -17483350 outer reward -~~~ -17483351 128 8388863 -~~~ -~~~ -17483557 DOWN 8 -17483557 0 8388863 -~~~ -~~~ -17483578 0 8388862 -~~~ -~~~ -17483580 0 8388860 -~~~ -~~~ -17483582 0 8388856 -~~~ -~~~ -17483584 0 8388848 -~~~ -~~~ -17483585 0 8388832 -~~~ -~~~ -17483587 0 8388800 -~~~ -~~~ -17483589 0 8388736 -~~~ -~~~ -17483591 0 8388608 -~~~ -~~~ -17483593 0 8389120 -17483594 homeCount = 13 -17483594 waitCount = 5 -17483616 ripCount = 6 -17483616 locktype1 = 0 -17483616 locktype2 = 2 -17483617 locktype3 = 1 -17483617 goalCount = 5 -17483618 goalTotal = 5 -17483618 otherCount = 6 -~~~ -17483619 128 8389120 -17483800 128 512 -17483845 DOWN 8 -17483845 0 512 -17483863 128 512 -17483965 DOWN 8 -17483965 0 512 -17483990 128 512 -17484079 DOWN 8 -17484079 0 512 -17484114 128 512 -17484192 DOWN 8 -17484192 0 512 -17484238 128 512 -17484318 DOWN 8 -17484318 0 512 -17484367 128 512 -17484450 DOWN 8 -17484450 0 512 -17484491 128 512 -17486711 DOWN 8 -17486711 0 512 -17486727 128 512 -17489526 DOWN 8 -17489526 0 512 -17489546 128 512 -17489608 DOWN 8 -17489608 0 512 -17493929 UP 10 -17493929 waslock = 0 -17493929 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17493954 512 16777728 -~~~ -17494104 512 512 -17494144 DOWN 10 -17494144 0 512 -17494153 UP 10 -17494153 waslock = 0 -17494153 512 512 -~~~ -~~~ -17494169 512 1536 -~~~ -~~~ -17494171 512 1024 -17494172 homeCount = 14 -17494172 waitCount = 5 -17494173 ripCount = 6 -17494173 locktype1 = 0 -17494174 locktype2 = 2 -17494174 locktype3 = 1 -17494175 goalCount = 5 -17494175 goalTotal = 5 -17494176 otherCount = 6 -~~~ -~~~ -17497685 DOWN 10 -17497685 0 1024 -~~~ -~~~ -~~~ -~~~ -17497711 homeCount = 14 -17497712 waitCount = 5 -17497712 ripCount = 6 -17497713 locktype1 = 0 -17497713 locktype2 = 2 -17497714 locktype3 = 1 -17497714 goalCount = 5 -17497715 goalTotal = 5 -17497715 otherCount = 6 -~~~ -17497748 UP 10 -17497748 waslock = 0 -17497748 512 1024 -17497761 DOWN 10 -17497761 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -17497787 homeCount = 14 -17497788 waitCount = 5 -17497788 ripCount = 6 -17497789 locktype1 = 0 -17497789 locktype2 = 2 -17497790 locktype3 = 1 -17497790 goalCount = 5 -17497790 goalTotal = 5 -17497791 otherCount = 6 -~~~ -17499720 UP 11 -17499720 1024 1024 -17501721 BEEP1 -17501721 BEEP2 -~~~ -~~~ -~~~ -17501741 1024 33555456 -~~~ -17501890 1024 1024 -17506486 DOWN 11 -17506486 0 1024 -17506499 UP 11 -17506499 1024 1024 -~~~ -~~~ -17506521 1024 0 -~~~ -~~~ -17506523 1024 1 -~~~ -~~~ -17506525 1024 3 -~~~ -~~~ -17506527 1024 7 -~~~ -~~~ -17506529 1024 15 -~~~ -~~~ -17506530 1024 31 -~~~ -~~~ -17506532 1024 63 -~~~ -~~~ -17506534 1024 127 -~~~ -~~~ -17506536 1024 255 -17506537 homeCount = 14 -17506537 waitCount = 5 -17506538 ripCount = 7 -17506559 locktype1 = 0 -17506560 locktype2 = 2 -17506560 locktype3 = 1 -17506561 goalCount = 5 -17506561 goalTotal = 5 -17506561 otherCount = 6 -~~~ -17506563 CURRENTGOAL IS [8] -~~~ -17506564 DOWN 11 -17506564 0 255 -17506596 UP 11 -17506596 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17506617 homeCount = 14 -17506617 waitCount = 5 -17506618 ripCount = 7 -17506618 locktype1 = 0 -17506619 locktype2 = 2 -17506619 locktype3 = 1 -17506620 goalCount = 5 -17506620 goalTotal = 5 -17506621 otherCount = 6 -~~~ -17506622 CURRENTGOAL IS [8] -~~~ -17509072 DOWN 11 -17509072 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17509109 homeCount = 14 -17509110 waitCount = 5 -17509110 ripCount = 7 -17509111 locktype1 = 0 -17509111 locktype2 = 2 -17509112 locktype3 = 1 -17509112 goalCount = 5 -17509113 goalTotal = 5 -17509113 otherCount = 6 -~~~ -17509114 CURRENTGOAL IS [8] -~~~ -17512927 UP 8 -17512927 128 255 -~~~ -~~~ -17512955 outer reward -~~~ -17512955 128 8388863 -~~~ -~~~ -17513181 DOWN 8 -17513181 0 8388863 -~~~ -~~~ -17513203 0 8388862 -~~~ -~~~ -17513205 0 8388860 -~~~ -~~~ -17513207 0 8388856 -~~~ -~~~ -17513209 0 8388848 -~~~ -~~~ -17513211 0 8388832 -~~~ -~~~ -17513213 0 8388800 -~~~ -~~~ -17513214 0 8388736 -~~~ -~~~ -17513216 0 8388608 -~~~ -~~~ -17513218 0 8389120 -17513219 homeCount = 14 -17513220 waitCount = 5 -17513240 ripCount = 7 -17513241 locktype1 = 0 -17513241 locktype2 = 2 -17513242 locktype3 = 1 -17513242 goalCount = 6 -17513243 goalTotal = 6 -17513243 otherCount = 6 -~~~ -17513244 128 8389120 -17513405 128 512 -17513479 DOWN 8 -17513479 0 512 -17513494 128 512 -17513590 DOWN 8 -17513590 0 512 -17513629 128 512 -17513711 DOWN 8 -17513711 0 512 -17513756 128 512 -17513838 DOWN 8 -17513838 0 512 -17513885 128 512 -17513986 DOWN 8 -17513986 0 512 -17514007 128 512 -17514134 DOWN 8 -17514134 0 512 -17514141 128 512 -17514281 DOWN 8 -17514281 0 512 -17514290 128 512 -17514893 DOWN 8 -17514893 0 512 -17514904 128 512 -17518932 DOWN 8 -17518932 0 512 -17518938 128 512 -17519269 DOWN 8 -17519269 0 512 -17519335 128 512 -17519347 DOWN 8 -17519347 0 512 -17524157 UP 10 -17524157 waslock = 0 -17524157 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17524183 512 16777728 -~~~ -17524333 512 512 -17529362 DOWN 10 -17529362 0 512 -~~~ -~~~ -17529386 0 2560 -~~~ -~~~ -17529388 0 2048 -17529389 homeCount = 15 -17529390 waitCount = 5 -17529390 ripCount = 7 -17529391 locktype1 = 0 -17529391 locktype2 = 2 -17529392 locktype3 = 1 -17529392 goalCount = 6 -17529393 goalTotal = 6 -17529393 otherCount = 6 -~~~ -17530797 UP 12 -17530797 2048 2048 -17532183 DOWN 12 -17532183 0 2048 -17532260 UP 12 -17532260 2048 2048 -17533139 DOWN 12 -17533139 0 2048 -17533154 UP 12 -17533154 2048 2048 -17533246 DOWN 12 -17533246 0 2048 -17533274 UP 12 -17533274 2048 2048 -17534047 CLICK1 -17534047 CLICK2 -~~~ -~~~ -~~~ -17534071 2048 67110912 -~~~ -17534221 2048 2048 -17540436 DOWN 12 -17540436 0 2048 -~~~ -~~~ -17540456 0 0 -~~~ -~~~ -17540458 0 1 -~~~ -~~~ -17540460 UP 12 -17540460 2048 3 -~~~ -~~~ -17540462 2048 7 -~~~ -~~~ -17540463 2048 15 -~~~ -~~~ -17540465 2048 31 -~~~ -~~~ -17540467 2048 63 -~~~ -~~~ -17540469 2048 127 -~~~ -~~~ -17540471 2048 255 -17540472 homeCount = 15 -17540472 waitCount = 6 -17540494 ripCount = 7 -17540494 locktype1 = 0 -17540494 locktype2 = 2 -17540495 locktype3 = 1 -17540495 goalCount = 6 -17540496 goalTotal = 6 -17540496 otherCount = 6 -~~~ -17540497 CURRENTGOAL IS [8] -~~~ -17541587 DOWN 12 -17541587 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17541625 homeCount = 15 -17541625 waitCount = 6 -17541626 ripCount = 7 -17541626 locktype1 = 0 -17541627 locktype2 = 2 -17541627 locktype3 = 1 -17541628 goalCount = 6 -17541628 goalTotal = 6 -17541629 otherCount = 6 -~~~ -17541630 CURRENTGOAL IS [8] -~~~ -17541658 UP 12 -17541658 2048 255 -17541921 DOWN 12 -17541921 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17541955 homeCount = 15 -17541956 waitCount = 6 -17541956 ripCount = 7 -17541957 locktype1 = 0 -17541957 locktype2 = 2 -17541958 locktype3 = 1 -17541958 goalCount = 6 -17541959 goalTotal = 6 -17541959 otherCount = 6 -~~~ -17541960 CURRENTGOAL IS [8] -~~~ -17545684 UP 8 -17545684 128 255 -~~~ -~~~ -17545712 outer reward -~~~ -17545712 128 8388863 -~~~ -~~~ -17545903 DOWN 8 -17545903 0 8388863 -~~~ -~~~ -17545920 0 8388862 -~~~ -~~~ -17545921 0 8388860 -~~~ -~~~ -17545923 0 8388856 -~~~ -~~~ -17545925 0 8388848 -~~~ -~~~ -17545927 0 8388832 -~~~ -~~~ -17545929 0 8388800 -~~~ -~~~ -17545930 0 8388736 -~~~ -~~~ -17545932 0 8388608 -~~~ -~~~ -17545934 0 8389120 -17545935 homeCount = 15 -17545936 waitCount = 6 -17545957 ripCount = 7 -17545957 locktype1 = 0 -17545958 locktype2 = 2 -17545958 locktype3 = 1 -17545959 goalCount = 7 -17545959 goalTotal = 7 -17545960 otherCount = 6 -~~~ -17545973 128 8389120 -17546162 128 512 -17546357 DOWN 8 -17546357 0 512 -17546382 128 512 -17546476 DOWN 8 -17546476 0 512 -17546510 128 512 -17546604 DOWN 8 -17546604 0 512 -17546636 128 512 -17546732 DOWN 8 -17546732 0 512 -17546771 128 512 -17546862 DOWN 8 -17546862 0 512 -17546900 128 512 -17547009 DOWN 8 -17547009 0 512 -17547028 128 512 -17549002 DOWN 8 -17549002 0 512 -17549012 128 512 -17551604 DOWN 8 -17551604 0 512 -17551642 128 512 -17551692 DOWN 8 -17551692 0 512 -17555613 UP 10 -17555614 waslock = 0 -17555613 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17555639 512 16777728 -~~~ -17555789 512 512 -17555789 DOWN 10 -17555789 0 512 -~~~ -~~~ -17555815 0 2560 -~~~ -~~~ -17555817 0 2048 -17555818 homeCount = 16 -17555819 waitCount = 6 -17555819 ripCount = 7 -17555820 locktype1 = 0 -17555820 locktype2 = 2 -17555821 locktype3 = 1 -17555821 goalCount = 7 -17555822 goalTotal = 7 -17555822 otherCount = 6 -~~~ -17555873 UP 10 -17555874 waslock = 0 -17555873 512 2048 -~~~ -17560044 DOWN 10 -17560044 0 2048 -~~~ -~~~ -~~~ -~~~ -17560066 homeCount = 16 -17560066 waitCount = 6 -17560067 ripCount = 7 -17560067 locktype1 = 0 -17560068 locktype2 = 2 -17560068 locktype3 = 1 -17560069 goalCount = 7 -17560069 goalTotal = 7 -17560070 otherCount = 6 -~~~ -17561628 UP 12 -17561628 2048 2048 -17563348 DOWN 12 -17563348 0 2048 -17563378 UP 12 -17563378 2048 2048 -17563628 CLICK1 -17563628 CLICK2 -~~~ -~~~ -~~~ -17563654 2048 67110912 -~~~ -17563804 2048 2048 -17569146 DOWN 12 -17569146 0 2048 -~~~ -~~~ -17569173 0 0 -~~~ -~~~ -17569175 0 1 -~~~ -~~~ -17569177 0 3 -~~~ -~~~ -17569179 0 7 -~~~ -~~~ -17569180 0 15 -~~~ -~~~ -17569182 0 31 -~~~ -~~~ -17569184 0 63 -~~~ -~~~ -17569186 0 127 -~~~ -17569187 UP 12 -17569187 2048 127 -~~~ -17569189 homeCount = 16 -17569189 waitCount = 7 -17569190 ripCount = 7 -17569190 locktype1 = 0 -17569211 locktype2 = 2 -17569212 locktype3 = 1 -17569212 goalCount = 7 -17569212 goalTotal = 7 -17569213 otherCount = 6 -~~~ -17569214 CURRENTGOAL IS [8] -~~~ -17569214 DOWN 12 -17569214 0 255 -17569225 UP 12 -17569225 2048 255 -17569227 DOWN 12 -17569226 0 255 -17569253 UP 12 -17569253 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17569271 homeCount = 16 -17569271 waitCount = 7 -17569272 ripCount = 7 -17569272 locktype1 = 0 -17569273 locktype2 = 2 -17569273 locktype3 = 1 -17569274 goalCount = 7 -17569274 goalTotal = 7 -17569275 otherCount = 6 -~~~ -17569276 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17569304 homeCount = 16 -17569304 waitCount = 7 -17569305 ripCount = 7 -17569305 locktype1 = 0 -17569306 locktype2 = 2 -17569306 locktype3 = 1 -17569307 goalCount = 7 -17569328 goalTotal = 7 -17569328 otherCount = 6 -~~~ -17569329 CURRENTGOAL IS [8] -~~~ -17570621 DOWN 12 -17570621 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17570647 UP 12 -17570647 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17570656 homeCount = 16 -17570656 waitCount = 7 -17570657 ripCount = 7 -17570657 locktype1 = 0 -17570658 locktype2 = 2 -17570658 locktype3 = 1 -17570659 goalCount = 7 -17570659 goalTotal = 7 -17570660 otherCount = 6 -~~~ -17570661 CURRENTGOAL IS [8] -~~~ -17572075 DOWN 12 -17572075 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17572108 homeCount = 16 -17572109 waitCount = 7 -17572109 ripCount = 7 -17572110 locktype1 = 0 -17572110 locktype2 = 2 -17572111 locktype3 = 1 -17572111 goalCount = 7 -17572112 goalTotal = 7 -17572112 otherCount = 6 -~~~ -17572113 CURRENTGOAL IS [8] -~~~ -17576141 UP 8 -17576141 128 255 -~~~ -~~~ -17576167 outer reward -~~~ -17576167 128 8388863 -~~~ -~~~ -17576274 DOWN 8 -17576274 0 8388863 -~~~ -~~~ -17576295 0 8388862 -~~~ -~~~ -17576297 0 8388860 -~~~ -~~~ -17576299 0 8388856 -~~~ -~~~ -17576301 0 8388848 -~~~ -~~~ -17576303 0 8388832 -~~~ -~~~ -17576304 0 8388800 -~~~ -~~~ -17576306 0 8388736 -~~~ -~~~ -17576308 0 8388608 -~~~ -~~~ -17576310 0 8389120 -17576311 homeCount = 16 -17576311 waitCount = 7 -17576333 ripCount = 7 -17576333 locktype1 = 0 -17576334 locktype2 = 2 -17576334 locktype3 = 1 -17576335 goalCount = 8 -17576335 goalTotal = 8 -17576336 otherCount = 6 -~~~ -17576336 128 8389120 -17576457 DOWN 8 -17576457 0 8389120 -17576472 128 8389120 -17576617 128 512 -17576727 DOWN 8 -17576727 0 512 -17576733 128 512 -17576842 DOWN 8 -17576842 0 512 -17576862 128 512 -17576969 DOWN 8 -17576969 0 512 -17576981 128 512 -17577099 DOWN 8 -17577099 0 512 -17577112 128 512 -17577236 DOWN 8 -17577236 0 512 -17577241 128 512 -17582498 DOWN 8 -17582498 0 512 -17586638 UP 10 -17586638 waslock = 0 -17586638 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17586667 512 16777728 -~~~ -17586817 512 512 -17586841 DOWN 10 -17586841 0 512 -~~~ -~~~ -17586860 0 1536 -~~~ -~~~ -17586862 0 1024 -17586863 homeCount = 17 -17586863 waitCount = 7 -17586864 ripCount = 7 -17586864 locktype1 = 0 -17586865 locktype2 = 2 -17586865 locktype3 = 1 -17586866 goalCount = 8 -17586866 goalTotal = 8 -17586867 otherCount = 6 -~~~ -17586888 UP 10 -17586888 waslock = 0 -17586888 512 1024 -~~~ -17591203 DOWN 10 -17591203 0 1024 -~~~ -~~~ -~~~ -~~~ -17591232 homeCount = 17 -17591233 waitCount = 7 -17591233 ripCount = 7 -17591234 locktype1 = 0 -17591234 locktype2 = 2 -17591235 locktype3 = 1 -17591235 goalCount = 8 -17591236 goalTotal = 8 -17591236 otherCount = 6 -~~~ -17591254 UP 10 -17591255 waslock = 0 -17591254 512 1024 -~~~ -17591283 DOWN 10 -17591283 0 1024 -~~~ -~~~ -~~~ -~~~ -17591304 homeCount = 17 -17591305 waitCount = 7 -17591305 ripCount = 7 -17591306 locktype1 = 0 -17591306 locktype2 = 2 -17591307 locktype3 = 1 -17591307 goalCount = 8 -17591308 goalTotal = 8 -17591308 otherCount = 6 -~~~ -17593343 UP 11 -17593343 1024 1024 -17594782 DOWN 11 -17594782 0 1024 -17594806 UP 11 -17594806 1024 1024 -17596343 BEEP1 -17596343 BEEP2 -~~~ -~~~ -~~~ -17596371 1024 33555456 -~~~ -17596521 1024 1024 -17602296 DOWN 11 -17602296 0 1024 -~~~ -~~~ -17602317 0 0 -~~~ -~~~ -17602319 0 1 -~~~ -~~~ -17602321 0 3 -~~~ -~~~ -17602323 0 7 -~~~ -~~~ -17602324 0 15 -~~~ -~~~ -17602326 0 31 -~~~ -~~~ -17602328 0 63 -~~~ -~~~ -17602330 0 127 -~~~ -17602331 UP 11 -17602331 1024 127 -~~~ -17602333 homeCount = 17 -17602333 waitCount = 7 -17602334 ripCount = 8 -17602334 locktype1 = 0 -17602355 locktype2 = 2 -17602356 locktype3 = 1 -17602356 goalCount = 8 -17602357 goalTotal = 8 -17602357 otherCount = 6 -~~~ -17602358 CURRENTGOAL IS [8] -~~~ -17602358 1024 255 -17602389 DOWN 11 -17602389 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17602424 homeCount = 17 -17602424 waitCount = 7 -17602425 ripCount = 8 -17602425 locktype1 = 0 -17602426 locktype2 = 2 -17602426 locktype3 = 1 -17602427 goalCount = 8 -17602427 goalTotal = 8 -17602428 otherCount = 6 -~~~ -17602429 CURRENTGOAL IS [8] -~~~ -17605378 UP 8 -17605378 128 255 -~~~ -~~~ -17605400 outer reward -~~~ -17605401 128 8388863 -~~~ -~~~ -17605620 DOWN 8 -17605620 0 8388863 -~~~ -~~~ -17605639 0 8388862 -~~~ -~~~ -17605641 0 8388860 -~~~ -~~~ -17605643 0 8388856 -~~~ -~~~ -17605644 0 8388848 -~~~ -~~~ -17605646 0 8388832 -~~~ -~~~ -17605648 0 8388800 -~~~ -~~~ -17605650 0 8388736 -~~~ -~~~ -17605652 0 8388608 -~~~ -~~~ -17605654 0 8389120 -17605655 homeCount = 17 -17605655 waitCount = 7 -17605676 ripCount = 8 -17605677 locktype1 = 0 -17605677 locktype2 = 2 -17605678 locktype3 = 1 -17605678 goalCount = 9 -17605679 goalTotal = 9 -17605679 otherCount = 6 -~~~ -17605680 128 8389120 -17605850 128 512 -17606053 DOWN 8 -17606053 0 512 -17606073 128 512 -17606178 DOWN 8 -17606178 0 512 -17606191 128 512 -17606307 DOWN 8 -17606307 0 512 -17606321 128 512 -17606437 DOWN 8 -17606437 0 512 -17606454 128 512 -17606881 DOWN 8 -17606881 0 512 -17606887 128 512 -17611622 DOWN 8 -17611622 0 512 -17611648 128 512 -17611713 DOWN 8 -17611713 0 512 -17616088 UP 10 -17616088 waslock = 0 -17616088 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17616116 512 16777728 -~~~ -17616256 DOWN 10 -17616256 0 16777728 -17616266 0 512 -~~~ -~~~ -17616281 0 1536 -~~~ -~~~ -17616283 0 1024 -17616284 homeCount = 18 -17616285 waitCount = 7 -17616285 ripCount = 8 -17616286 locktype1 = 0 -17616286 locktype2 = 2 -17616286 locktype3 = 1 -17616287 goalCount = 9 -17616287 goalTotal = 9 -17616288 otherCount = 6 -~~~ -17616317 UP 10 -17616318 waslock = 0 -17616317 512 1024 -~~~ -17619930 DOWN 10 -17619930 0 1024 -~~~ -~~~ -~~~ -~~~ -17619958 homeCount = 18 -17619958 waitCount = 7 -17619959 ripCount = 8 -17619959 locktype1 = 0 -17619960 locktype2 = 2 -17619960 locktype3 = 1 -17619961 goalCount = 9 -17619961 goalTotal = 9 -17619962 otherCount = 6 -~~~ -17619966 UP 10 -17619966 waslock = 0 -17619966 512 1024 -~~~ -17620023 DOWN 10 -17620022 0 1024 -~~~ -~~~ -~~~ -~~~ -17620051 homeCount = 18 -17620051 waitCount = 7 -17620052 ripCount = 8 -17620052 locktype1 = 0 -17620053 locktype2 = 2 -17620053 locktype3 = 1 -17620054 goalCount = 9 -17620054 goalTotal = 9 -17620055 otherCount = 6 -~~~ -17622132 UP 11 -17622132 1024 1024 -17623222 DOWN 11 -17623222 0 1024 -17623251 UP 11 -17623251 1024 1024 -17624459 DOWN 11 -17624459 0 1024 -17624483 UP 11 -17624483 1024 1024 -17624883 BEEP1 -17624883 BEEP2 -~~~ -~~~ -~~~ -17624910 1024 33555456 -~~~ -17625060 1024 1024 -17629415 DOWN 11 -17629415 0 1024 -~~~ -~~~ -17629435 0 0 -~~~ -~~~ -17629437 0 1 -~~~ -~~~ -17629439 0 3 -~~~ -~~~ -17629440 0 7 -~~~ -~~~ -17629442 0 15 -~~~ -~~~ -17629444 UP 11 -17629444 1024 31 -~~~ -~~~ -17629446 1024 63 -~~~ -~~~ -17629448 1024 127 -~~~ -~~~ -17629450 1024 255 -17629451 homeCount = 18 -17629451 waitCount = 7 -17629452 ripCount = 9 -17629473 locktype1 = 0 -17629473 locktype2 = 2 -17629474 locktype3 = 1 -17629474 goalCount = 9 -17629475 goalTotal = 9 -17629475 otherCount = 6 -~~~ -17629476 CURRENTGOAL IS [8] -~~~ -17629477 DOWN 11 -17629477 0 255 -17629481 UP 11 -17629481 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17629533 homeCount = 18 -17629533 waitCount = 7 -17629534 ripCount = 9 -17629534 locktype1 = 0 -17629535 locktype2 = 2 -17629535 locktype3 = 1 -17629536 goalCount = 9 -17629536 goalTotal = 9 -17629537 otherCount = 6 -~~~ -17629538 CURRENTGOAL IS [8] -~~~ -17631515 DOWN 11 -17631515 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17631553 homeCount = 18 -17631553 waitCount = 7 -17631554 ripCount = 9 -17631554 locktype1 = 0 -17631555 locktype2 = 2 -17631556 locktype3 = 1 -17631556 goalCount = 9 -17631556 goalTotal = 9 -17631557 otherCount = 6 -~~~ -17631558 CURRENTGOAL IS [8] -~~~ -17634612 UP 8 -17634612 128 255 -~~~ -~~~ -17634638 outer reward -~~~ -17634638 128 8388863 -~~~ -~~~ -17634643 outerreps = 8 -~~~ -~~~ -17634881 DOWN 8 -17634881 0 8388863 -~~~ -~~~ -17634905 0 8388862 -~~~ -~~~ -17634907 0 8388860 -~~~ -~~~ -17634909 0 8388856 -~~~ -~~~ -17634911 0 8388848 -~~~ -~~~ -17634913 0 8388832 -~~~ -~~~ -17634914 0 8388800 -~~~ -~~~ -17634916 0 8388736 -~~~ -~~~ -17634918 0 8388608 -~~~ -~~~ -17634920 0 8389120 -17634921 homeCount = 18 -17634922 waitCount = 7 -17634942 ripCount = 9 -17634943 locktype1 = 0 -17634943 locktype2 = 2 -17634944 locktype3 = 1 -17634944 goalCount = 0 -17634945 goalTotal = 10 -17634945 otherCount = 6 -~~~ -17634946 128 8389120 -17635088 128 512 -17635186 DOWN 8 -17635186 0 512 -17635204 128 512 -17635303 DOWN 8 -17635303 0 512 -17635337 128 512 -17635422 DOWN 8 -17635422 0 512 -17635469 128 512 -17635548 DOWN 8 -17635548 0 512 -17635588 128 512 -17635675 DOWN 8 -17635675 0 512 -17635720 128 512 -17635815 DOWN 8 -17635815 0 512 -17635847 128 512 -17635966 DOWN 8 -17635966 0 512 -17635980 128 512 -17641244 DOWN 8 -17641243 0 512 -17646112 UP 10 -17646112 waslock = 0 -17646112 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17646140 512 16777728 -~~~ -17646290 512 512 -17646421 DOWN 10 -17646421 0 512 -~~~ -~~~ -17646445 0 2560 -~~~ -~~~ -17646447 0 2048 -17646448 homeCount = 19 -17646449 waitCount = 7 -17646449 ripCount = 9 -17646450 locktype1 = 0 -17646450 locktype2 = 2 -17646451 locktype3 = 1 -17646451 goalCount = 0 -17646452 goalTotal = 10 -17646452 otherCount = 6 -~~~ -17646474 UP 10 -17646474 waslock = 0 -17646474 512 2048 -~~~ -17650594 DOWN 10 -17650594 0 2048 -~~~ -~~~ -~~~ -~~~ -17650618 homeCount = 19 -17650619 waitCount = 7 -17650619 ripCount = 9 -17650620 locktype1 = 0 -17650620 locktype2 = 2 -17650621 locktype3 = 1 -17650621 goalCount = 0 -17650621 goalTotal = 10 -17650622 otherCount = 6 -~~~ -17650651 UP 10 -17650651 waslock = 0 -17650651 512 2048 -~~~ -17650683 DOWN 10 -17650683 0 2048 -~~~ -~~~ -~~~ -~~~ -17650701 homeCount = 19 -17650702 waitCount = 7 -17650702 ripCount = 9 -17650703 locktype1 = 0 -17650703 locktype2 = 2 -17650704 locktype3 = 1 -17650704 goalCount = 0 -17650705 goalTotal = 10 -17650705 otherCount = 6 -~~~ -17652063 UP 12 -17652063 2048 2048 -17654813 CLICK1 -17654813 CLICK2 -~~~ -~~~ -~~~ -17654838 2048 67110912 -~~~ -17654988 2048 2048 -17661976 DOWN 12 -17661976 0 2048 -~~~ -~~~ -17661996 0 0 -~~~ -~~~ -17661998 0 1 -~~~ -~~~ -17662000 0 3 -~~~ -~~~ -17662002 0 7 -~~~ -~~~ -17662004 0 15 -~~~ -~~~ -17662005 0 31 -~~~ -~~~ -17662007 0 63 -~~~ -~~~ -17662009 0 127 -~~~ -~~~ -17662011 0 255 -17662012 homeCount = 19 -17662012 waitCount = 8 -17662013 ripCount = 9 -17662014 locktype1 = 0 -17662014 locktype2 = 2 -17662035 locktype3 = 1 -17662035 goalCount = 0 -17662036 goalTotal = 10 -17662036 otherCount = 6 -~~~ -17662037 CURRENTGOAL IS [2] -~~~ -17662039 UP 12 -17662039 2048 255 -17662076 DOWN 12 -17662076 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17662113 homeCount = 19 -17662113 waitCount = 8 -17662114 ripCount = 9 -17662114 locktype1 = 0 -17662115 locktype2 = 2 -17662115 locktype3 = 1 -17662116 goalCount = 0 -17662116 goalTotal = 10 -17662117 otherCount = 6 -~~~ -17662118 CURRENTGOAL IS [2] -~~~ -17666107 UP 8 -17666107 128 255 -~~~ -~~~ -17666295 DOWN 8 -17666295 0 255 -~~~ -~~~ -17666317 0 254 -~~~ -~~~ -17666319 0 252 -~~~ -~~~ -17666321 0 248 -~~~ -~~~ -17666323 0 240 -~~~ -~~~ -17666324 0 224 -~~~ -~~~ -17666326 0 192 -~~~ -~~~ -17666328 0 128 -~~~ -~~~ -17666330 0 0 -~~~ -~~~ -17666332 0 512 -17666333 homeCount = 19 -17666333 waitCount = 8 -17666334 ripCount = 9 -17666334 locktype1 = 0 -17666355 locktype2 = 2 -17666356 locktype3 = 1 -17666356 goalCount = 0 -17666357 goalTotal = 10 -17666357 otherCount = 7 -~~~ -17666359 128 512 -17666796 DOWN 8 -17666796 0 512 -17671204 UP 10 -17671204 waslock = 0 -17671204 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17671234 512 16777728 -~~~ -17671353 DOWN 10 -17671353 0 16777728 -~~~ -~~~ -17671381 0 16779776 -~~~ -~~~ -17671382 0 16779264 -17671383 homeCount = 20 -17671384 waitCount = 8 -17671384 ripCount = 9 -17671385 locktype1 = 0 -17671385 locktype2 = 2 -17671386 locktype3 = 1 -17671386 goalCount = 0 -17671387 goalTotal = 10 -17671387 otherCount = 7 -~~~ -17671408 0 2048 -17671450 UP 10 -17671450 waslock = 0 -17671450 512 2048 -~~~ -17674585 DOWN 10 -17674585 0 2048 -~~~ -~~~ -~~~ -~~~ -17674611 homeCount = 20 -17674611 waitCount = 8 -17674612 ripCount = 9 -17674612 locktype1 = 0 -17674613 locktype2 = 2 -17674613 locktype3 = 1 -17674614 goalCount = 0 -17674614 goalTotal = 10 -17674615 otherCount = 7 -~~~ -17676314 UP 12 -17676314 2048 2048 -17676340 DOWN 12 -17676340 0 2048 -17676358 UP 12 -17676358 2048 2048 -17678656 DOWN 12 -17678656 0 2048 -17678662 UP 12 -17678662 2048 2048 -17681064 CLICK1 -17681064 CLICK2 -~~~ -~~~ -~~~ -17681098 2048 67110912 -~~~ -17681199 DOWN 12 -17681199 0 67110912 -17681207 UP 12 -17681207 2048 67110912 -17681248 2048 2048 -~~~ -~~~ -17681272 2048 0 -~~~ -~~~ -17681273 2048 1 -~~~ -~~~ -17681275 2048 3 -~~~ -~~~ -17681277 2048 7 -~~~ -~~~ -17681279 2048 15 -~~~ -~~~ -17681281 2048 31 -~~~ -~~~ -17681282 2048 63 -~~~ -~~~ -17681284 2048 127 -~~~ -~~~ -17681286 2048 255 -17681287 homeCount = 20 -17681288 waitCount = 9 -17681288 ripCount = 9 -17681309 locktype1 = 0 -17681309 locktype2 = 2 -17681310 locktype3 = 1 -17681310 goalCount = 0 -17681311 goalTotal = 10 -17681311 otherCount = 7 -~~~ -17681313 CURRENTGOAL IS [2] -~~~ -17687455 DOWN 12 -17687455 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17687496 homeCount = 20 -17687497 waitCount = 9 -17687497 ripCount = 9 -17687498 locktype1 = 0 -17687498 locktype2 = 2 -17687499 locktype3 = 1 -17687499 goalCount = 0 -17687500 goalTotal = 10 -17687500 otherCount = 7 -~~~ -17687501 CURRENTGOAL IS [2] -~~~ -17693473 UP 2 -17693473 2 255 -~~~ -~~~ -17693497 outer reward -~~~ -17693498 2 131327 -~~~ -~~~ -17693506 DOWN 2 -17693506 0 131327 -~~~ -~~~ -17693527 0 131326 -~~~ -~~~ -17693529 0 131324 -~~~ -~~~ -17693531 0 131320 -~~~ -~~~ -17693532 0 131312 -~~~ -~~~ -17693534 0 131296 -~~~ -~~~ -17693536 0 131264 -~~~ -~~~ -17693538 0 131200 -~~~ -~~~ -17693540 0 131072 -~~~ -~~~ -17693542 0 131584 -17693543 homeCount = 20 -17693543 waitCount = 9 -17693544 ripCount = 9 -17693565 locktype1 = 0 -17693565 locktype2 = 2 -17693566 locktype3 = 1 -17693566 goalCount = 1 -17693567 goalTotal = 11 -17693567 otherCount = 7 -~~~ -17693568 2 131584 -17693947 2 512 -17699688 DOWN 2 -17699687 0 512 -17699753 2 512 -17699799 DOWN 2 -17699799 0 512 -17705120 UP 10 -17705121 waslock = 0 -17705120 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17705153 512 16777728 -~~~ -17705303 512 512 -17708019 DOWN 10 -17708019 0 512 -~~~ -~~~ -17708036 0 2560 -~~~ -~~~ -17708038 0 2048 -17708039 homeCount = 21 -17708039 waitCount = 9 -17708040 ripCount = 9 -17708040 locktype1 = 0 -17708041 locktype2 = 2 -17708041 locktype3 = 1 -17708042 goalCount = 1 -17708042 goalTotal = 11 -17708043 otherCount = 7 -~~~ -17708064 UP 10 -17708064 waslock = 0 -17708064 512 2048 -~~~ -17708128 DOWN 10 -17708128 0 2048 -~~~ -~~~ -~~~ -~~~ -17708149 homeCount = 21 -17708150 waitCount = 9 -17708150 ripCount = 9 -17708151 locktype1 = 0 -17708151 locktype2 = 2 -17708152 locktype3 = 1 -17708152 goalCount = 1 -17708153 goalTotal = 11 -17708153 otherCount = 7 -~~~ -17710005 UP 12 -17710005 2048 2048 -17710933 DOWN 12 -17710933 0 2048 -17710973 UP 12 -17710973 2048 2048 -17711488 DOWN 12 -17711488 0 2048 -17711505 UP 12 -17711505 2048 2048 -17713006 CLICK1 -17713006 CLICK2 -~~~ -~~~ -~~~ -17713029 2048 67110912 -~~~ -17713179 2048 2048 -17718698 DOWN 12 -17718698 0 2048 -17718711 UP 12 -17718711 2048 2048 -~~~ -~~~ -17718718 2048 0 -~~~ -~~~ -17718719 2048 1 -~~~ -~~~ -17718721 2048 3 -~~~ -~~~ -17718723 2048 7 -~~~ -~~~ -17718725 2048 15 -~~~ -~~~ -17718727 2048 31 -~~~ -~~~ -17718728 2048 63 -~~~ -~~~ -17718730 2048 127 -~~~ -~~~ -17718732 2048 255 -17718733 homeCount = 21 -17718734 waitCount = 10 -17718734 ripCount = 9 -17718755 locktype1 = 0 -17718756 locktype2 = 2 -17718756 locktype3 = 1 -17718757 goalCount = 1 -17718757 goalTotal = 11 -17718758 otherCount = 7 -~~~ -17718759 CURRENTGOAL IS [2] -~~~ -17718770 DOWN 12 -17718770 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17718805 homeCount = 21 -17718805 waitCount = 10 -17718806 ripCount = 9 -17718806 locktype1 = 0 -17718807 locktype2 = 2 -17718807 locktype3 = 1 -17718808 goalCount = 1 -17718808 goalTotal = 11 -17718809 otherCount = 7 -~~~ -17718810 CURRENTGOAL IS [2] -~~~ -17718839 UP 12 -17718839 2048 255 -17719213 DOWN 12 -17719213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17719257 homeCount = 21 -17719258 waitCount = 10 -17719258 ripCount = 9 -17719259 locktype1 = 0 -17719259 locktype2 = 2 -17719260 locktype3 = 1 -17719260 goalCount = 1 -17719261 goalTotal = 11 -17719261 otherCount = 7 -~~~ -17719262 CURRENTGOAL IS [2] -~~~ -17719283 UP 12 -17719283 2048 255 -17719362 DOWN 12 -17719362 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17719398 homeCount = 21 -17719399 waitCount = 10 -17719399 ripCount = 9 -17719400 locktype1 = 0 -17719400 locktype2 = 2 -17719401 locktype3 = 1 -17719401 goalCount = 1 -17719402 goalTotal = 11 -17719402 otherCount = 7 -~~~ -17719403 CURRENTGOAL IS [2] -~~~ -17726146 UP 8 -17726146 128 255 -~~~ -~~~ -17726549 DOWN 8 -17726549 0 255 -~~~ -~~~ -17726574 0 254 -~~~ -~~~ -17726576 0 252 -~~~ -~~~ -17726578 0 248 -~~~ -~~~ -17726580 0 240 -~~~ -~~~ -17726582 0 224 -~~~ -~~~ -17726584 0 192 -~~~ -~~~ -17726585 0 128 -~~~ -~~~ -17726587 0 0 -~~~ -~~~ -17726589 0 512 -17726590 homeCount = 21 -17726591 waitCount = 10 -17726591 ripCount = 9 -17726592 locktype1 = 0 -17726592 locktype2 = 2 -17726613 locktype3 = 1 -17726614 goalCount = 1 -17726614 goalTotal = 11 -17726615 otherCount = 8 -~~~ -17729916 UP 10 -17729917 waslock = 0 -17729916 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17729943 512 16777728 -~~~ -17730093 512 512 -17733254 DOWN 10 -17733254 0 512 -~~~ -~~~ -17733279 0 1536 -~~~ -~~~ -17733281 0 1024 -17733282 homeCount = 22 -17733282 waitCount = 10 -17733283 ripCount = 9 -17733283 locktype1 = 0 -17733284 locktype2 = 2 -17733284 locktype3 = 1 -17733284 goalCount = 1 -17733285 goalTotal = 11 -17733285 otherCount = 8 -~~~ -17733307 UP 10 -17733307 waslock = 0 -17733307 512 1024 -~~~ -17733339 DOWN 10 -17733339 0 1024 -~~~ -~~~ -~~~ -~~~ -17733373 homeCount = 22 -17733373 waitCount = 10 -17733374 ripCount = 9 -17733374 locktype1 = 0 -17733375 locktype2 = 2 -17733375 locktype3 = 1 -17733376 goalCount = 1 -17733376 goalTotal = 11 -17733377 otherCount = 8 -~~~ -17735628 UP 11 -17735628 1024 1024 -17736890 DOWN 11 -17736890 0 1024 -17736924 UP 11 -17736924 1024 1024 -17736932 DOWN 11 -17736931 0 1024 -17736962 UP 11 -17736962 1024 1024 -17739879 BEEP1 -17739879 BEEP2 -~~~ -~~~ -~~~ -17739899 1024 33555456 -~~~ -17740049 1024 1024 -17746662 DOWN 11 -17746662 0 1024 -~~~ -~~~ -17746687 0 0 -~~~ -~~~ -17746689 0 1 -~~~ -~~~ -17746691 0 3 -~~~ -~~~ -17746692 0 7 -~~~ -~~~ -17746694 0 15 -~~~ -~~~ -17746696 0 31 -~~~ -~~~ -17746698 0 63 -~~~ -~~~ -17746700 0 127 -~~~ -~~~ -17746701 0 255 -17746703 homeCount = 22 -17746703 waitCount = 10 -17746704 ripCount = 10 -17746704 locktype1 = 0 -17746705 locktype2 = 2 -17746726 locktype3 = 1 -17746726 goalCount = 1 -17746727 goalTotal = 11 -17746727 otherCount = 8 -~~~ -17746728 CURRENTGOAL IS [2] -~~~ -17751159 UP 6 -17751159 32 255 -~~~ -~~~ -17752137 DOWN 6 -17752137 0 255 -~~~ -~~~ -17752159 0 254 -~~~ -~~~ -17752160 0 252 -~~~ -~~~ -17752162 0 248 -~~~ -~~~ -17752164 0 240 -~~~ -~~~ -17752166 0 224 -~~~ -~~~ -17752168 0 192 -~~~ -~~~ -17752169 0 128 -~~~ -~~~ -17752171 0 0 -~~~ -~~~ -17752173 0 512 -17752174 homeCount = 22 -17752175 waitCount = 10 -17752175 ripCount = 10 -17752176 locktype1 = 0 -17752197 locktype2 = 2 -17752197 locktype3 = 1 -17752198 goalCount = 1 -17752198 goalTotal = 11 -17752199 otherCount = 9 -~~~ -17755821 UP 10 -17755821 waslock = 0 -17755821 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17755853 512 16777728 -~~~ -17756003 512 512 -17756059 DOWN 10 -17756059 0 512 -~~~ -~~~ -17756076 UP 10 -17756076 waslock = 0 -17756076 512 2560 -~~~ -~~~ -17756078 512 2048 -17756079 homeCount = 23 -17756080 waitCount = 10 -17756080 ripCount = 10 -17756081 locktype1 = 0 -17756081 locktype2 = 2 -17756082 locktype3 = 1 -17756082 goalCount = 1 -17756104 goalTotal = 11 -17756104 otherCount = 9 -~~~ -~~~ -17759339 DOWN 10 -17759339 0 2048 -~~~ -~~~ -~~~ -~~~ -17759360 homeCount = 23 -17759361 waitCount = 10 -17759361 ripCount = 10 -17759362 locktype1 = 0 -17759362 locktype2 = 2 -17759363 locktype3 = 1 -17759363 goalCount = 1 -17759364 goalTotal = 11 -17759364 otherCount = 9 -~~~ -17761118 UP 12 -17761118 2048 2048 -17762724 DOWN 12 -17762724 0 2048 -17762734 UP 12 -17762734 2048 2048 -17762739 DOWN 12 -17762739 0 2048 -17762757 UP 12 -17762757 2048 2048 -17763369 CLICK1 -17763369 CLICK2 -~~~ -~~~ -~~~ -17763395 2048 67110912 -~~~ -17763545 2048 2048 -17768970 DOWN 12 -17768970 0 2048 -~~~ -~~~ -17768992 0 0 -~~~ -~~~ -17768994 0 1 -~~~ -~~~ -17768996 0 3 -~~~ -~~~ -17768997 0 7 -~~~ -~~~ -17768999 0 15 -~~~ -~~~ -17769001 0 31 -~~~ -~~~ -17769003 0 63 -~~~ -~~~ -17769005 0 127 -~~~ -~~~ -17769006 0 255 -17769008 homeCount = 23 -17769008 waitCount = 11 -17769009 ripCount = 10 -17769009 locktype1 = 0 -17769010 locktype2 = 2 -17769030 locktype3 = 1 -17769031 goalCount = 1 -17769031 goalTotal = 11 -17769032 otherCount = 9 -~~~ -17769033 CURRENTGOAL IS [2] -~~~ -17772566 UP 1 -17772566 1 255 -~~~ -~~~ -17774132 DOWN 1 -17774132 0 255 -~~~ -~~~ -17774151 0 254 -~~~ -~~~ -17774153 0 252 -~~~ -~~~ -17774155 0 248 -~~~ -~~~ -17774157 0 240 -~~~ -~~~ -17774159 0 224 -~~~ -~~~ -17774161 0 192 -~~~ -~~~ -17774162 0 128 -~~~ -~~~ -17774164 0 0 -~~~ -~~~ -17774166 0 512 -17774167 homeCount = 23 -17774168 waitCount = 11 -17774168 ripCount = 10 -17774169 locktype1 = 0 -17774190 locktype2 = 2 -17774190 locktype3 = 1 -17774191 goalCount = 1 -17774191 goalTotal = 11 -17774192 otherCount = 10 -~~~ -17777742 UP 10 -17777742 waslock = 0 -17777742 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17777769 512 16777728 -~~~ -17777919 512 512 -17777993 DOWN 10 -17777993 0 512 -~~~ -~~~ -17778017 0 1536 -~~~ -~~~ -17778019 0 1024 -17778020 homeCount = 24 -17778020 waitCount = 11 -17778021 ripCount = 10 -17778021 locktype1 = 0 -17778022 locktype2 = 2 -17778022 locktype3 = 1 -17778023 goalCount = 1 -17778023 goalTotal = 11 -17778024 otherCount = 10 -~~~ -17778045 UP 10 -17778045 waslock = 0 -17778045 512 1024 -~~~ -17781684 DOWN 10 -17781684 0 1024 -~~~ -~~~ -~~~ -~~~ -17781705 homeCount = 24 -17781706 waitCount = 11 -17781706 ripCount = 10 -17781707 locktype1 = 0 -17781707 locktype2 = 2 -17781707 locktype3 = 1 -17781708 goalCount = 1 -17781708 goalTotal = 11 -17781709 otherCount = 10 -~~~ -17781741 UP 10 -17781741 waslock = 0 -17781741 512 1024 -~~~ -17781763 DOWN 10 -17781763 0 1024 -~~~ -~~~ -~~~ -~~~ -17781788 homeCount = 24 -17781788 waitCount = 11 -17781789 ripCount = 10 -17781789 locktype1 = 0 -17781790 locktype2 = 2 -17781790 locktype3 = 1 -17781791 goalCount = 1 -17781791 goalTotal = 11 -17781792 otherCount = 10 -~~~ -17783131 UP 11 -17783131 1024 1024 -17786131 BEEP1 -17786131 BEEP2 -~~~ -~~~ -~~~ -17786156 1024 33555456 -~~~ -17786306 1024 1024 -17793507 DOWN 11 -17793507 0 1024 -~~~ -~~~ -17793532 0 0 -~~~ -~~~ -17793534 0 1 -~~~ -~~~ -17793536 0 3 -~~~ -~~~ -17793538 0 7 -~~~ -~~~ -17793540 0 15 -~~~ -~~~ -17793541 0 31 -~~~ -~~~ -17793543 0 63 -~~~ -~~~ -17793545 0 127 -~~~ -~~~ -17793547 0 255 -17793548 homeCount = 24 -17793548 waitCount = 11 -17793549 ripCount = 11 -17793549 locktype1 = 0 -17793550 locktype2 = 2 -17793571 locktype3 = 1 -17793571 goalCount = 1 -17793572 goalTotal = 11 -17793572 otherCount = 10 -~~~ -17793573 CURRENTGOAL IS [2] -~~~ -17799331 UP 7 -17799331 64 255 -~~~ -~~~ -17799555 DOWN 7 -17799555 0 255 -~~~ -~~~ -17799574 0 254 -~~~ -~~~ -17799576 0 252 -~~~ -~~~ -17799578 0 248 -~~~ -~~~ -17799579 0 240 -~~~ -~~~ -17799581 0 224 -~~~ -~~~ -17799583 0 192 -~~~ -~~~ -17799585 0 128 -~~~ -~~~ -17799587 0 0 -~~~ -~~~ -17799588 0 512 -17799589 homeCount = 24 -17799590 waitCount = 11 -17799591 ripCount = 11 -17799591 locktype1 = 0 -17799612 locktype2 = 2 -17799612 locktype3 = 1 -17799613 goalCount = 1 -17799613 goalTotal = 11 -17799614 otherCount = 11 -~~~ -17799621 64 512 -17800053 DOWN 7 -17800053 0 512 -17804037 UP 10 -17804037 waslock = 0 -17804037 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17804064 512 16777728 -~~~ -17804214 512 512 -17804372 DOWN 10 -17804372 0 512 -17804384 UP 10 -17804385 waslock = 0 -17804384 512 512 -~~~ -~~~ -17804404 512 2560 -~~~ -~~~ -17804406 512 2048 -17804407 homeCount = 25 -17804408 waitCount = 11 -17804408 ripCount = 11 -17804409 locktype1 = 0 -17804409 locktype2 = 2 -17804410 locktype3 = 1 -17804410 goalCount = 1 -17804411 goalTotal = 11 -17804411 otherCount = 11 -~~~ -~~~ -17808182 DOWN 10 -17808182 0 2048 -~~~ -~~~ -~~~ -~~~ -17808210 homeCount = 25 -17808211 waitCount = 11 -17808211 ripCount = 11 -17808212 locktype1 = 0 -17808212 locktype2 = 2 -17808213 locktype3 = 1 -17808213 goalCount = 1 -17808214 goalTotal = 11 -17808214 otherCount = 11 -~~~ -17809982 UP 12 -17809982 2048 2048 -17811792 DOWN 12 -17811792 0 2048 -17811817 UP 12 -17811817 2048 2048 -17813483 CLICK1 -17813483 CLICK2 -~~~ -~~~ -~~~ -17813510 2048 67110912 -~~~ -17813658 DOWN 12 -17813658 0 67110912 -17813660 0 2048 -17813687 UP 12 -17813687 2048 2048 -~~~ -~~~ -17813690 2048 0 -~~~ -~~~ -17813692 2048 1 -~~~ -~~~ -17813693 2048 3 -~~~ -~~~ -17813695 2048 7 -~~~ -~~~ -17813697 2048 15 -~~~ -~~~ -17813699 2048 31 -~~~ -~~~ -17813701 2048 63 -~~~ -~~~ -17813703 2048 127 -~~~ -~~~ -17813704 2048 255 -17813706 homeCount = 25 -17813706 waitCount = 12 -17813727 ripCount = 11 -17813727 locktype1 = 0 -17813728 locktype2 = 2 -17813728 locktype3 = 1 -17813729 goalCount = 1 -17813729 goalTotal = 11 -17813730 otherCount = 11 -~~~ -17813731 CURRENTGOAL IS [2] -~~~ -17818291 DOWN 12 -17818291 0 255 -17818296 UP 12 -17818296 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17818326 homeCount = 25 -17818327 waitCount = 12 -17818327 ripCount = 11 -17818328 locktype1 = 0 -17818328 locktype2 = 2 -17818329 locktype3 = 1 -17818329 goalCount = 1 -17818330 goalTotal = 11 -17818330 otherCount = 11 -~~~ -17818331 CURRENTGOAL IS [2] -~~~ -17818368 DOWN 12 -17818368 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17818405 homeCount = 25 -17818406 waitCount = 12 -17818406 ripCount = 11 -17818407 locktype1 = 0 -17818407 locktype2 = 2 -17818408 locktype3 = 1 -17818408 goalCount = 1 -17818409 goalTotal = 11 -17818409 otherCount = 11 -~~~ -17818410 CURRENTGOAL IS [2] -~~~ -17823832 UP 2 -17823832 2 255 -~~~ -~~~ -17823852 outer reward -~~~ -17823852 2 131327 -~~~ -~~~ -17824185 DOWN 2 -17824185 0 131327 -~~~ -17824208 2 131327 -~~~ -17824210 2 131326 -~~~ -~~~ -17824211 2 131324 -~~~ -~~~ -17824213 2 131320 -~~~ -~~~ -17824215 2 131312 -~~~ -~~~ -17824216 2 131296 -~~~ -~~~ -17824218 2 131264 -~~~ -~~~ -17824220 2 131200 -~~~ -~~~ -17824222 2 131072 -~~~ -~~~ -17824224 2 131584 -17824225 homeCount = 25 -17824225 waitCount = 12 -17824247 ripCount = 11 -17824247 locktype1 = 0 -17824248 locktype2 = 2 -17824248 locktype3 = 1 -17824249 goalCount = 2 -17824249 goalTotal = 12 -17824250 otherCount = 11 -~~~ -17824302 2 512 -17824581 DOWN 2 -17824581 0 512 -17824598 2 512 -17824700 DOWN 2 -17824700 0 512 -17824721 2 512 -17824823 DOWN 2 -17824823 0 512 -17824846 2 512 -17824949 DOWN 2 -17824949 0 512 -17824965 2 512 -17829925 DOWN 2 -17829925 0 512 -17829977 2 512 -17830030 DOWN 2 -17830030 0 512 -17830113 2 512 -17830135 DOWN 2 -17830135 0 512 -17835168 UP 10 -17835169 waslock = 0 -17835168 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17835195 512 16777728 -~~~ -17835345 512 512 -17835401 DOWN 10 -17835401 0 512 -~~~ -~~~ -17835421 0 2560 -~~~ -17835422 UP 10 -17835423 waslock = 0 -17835422 512 2560 -~~~ -17835424 homeCount = 26 -17835425 waitCount = 12 -17835425 ripCount = 11 -17835426 locktype1 = 0 -17835426 locktype2 = 2 -17835427 locktype3 = 1 -17835427 goalCount = 2 -17835448 goalTotal = 12 -17835449 otherCount = 11 -~~~ -~~~ -17835450 512 2048 -17839165 DOWN 10 -17839165 0 2048 -~~~ -~~~ -~~~ -~~~ -17839192 homeCount = 26 -17839192 waitCount = 12 -17839193 ripCount = 11 -17839193 locktype1 = 0 -17839194 locktype2 = 2 -17839194 locktype3 = 1 -17839195 goalCount = 2 -17839195 goalTotal = 12 -17839196 otherCount = 11 -~~~ -17839209 UP 10 -17839210 waslock = 0 -17839209 512 2048 -~~~ -17839245 DOWN 10 -17839245 0 2048 -~~~ -~~~ -~~~ -~~~ -17839268 homeCount = 26 -17839268 waitCount = 12 -17839269 ripCount = 11 -17839269 locktype1 = 0 -17839270 locktype2 = 2 -17839270 locktype3 = 1 -17839271 goalCount = 2 -17839271 goalTotal = 12 -17839272 otherCount = 11 -~~~ -17840917 UP 12 -17840917 2048 2048 -17843738 DOWN 12 -17843738 0 2048 -17843774 UP 12 -17843774 2048 2048 -17844418 CLICK1 -17844418 CLICK2 -~~~ -~~~ -~~~ -17844442 2048 67110912 -~~~ -17844592 2048 2048 -17849626 DOWN 12 -17849626 0 2048 -~~~ -~~~ -17849650 0 0 -~~~ -~~~ -17849652 0 1 -~~~ -~~~ -17849653 0 3 -~~~ -~~~ -17849655 0 7 -~~~ -~~~ -17849657 0 15 -~~~ -~~~ -17849659 0 31 -~~~ -~~~ -17849661 0 63 -~~~ -~~~ -17849663 0 127 -~~~ -~~~ -17849664 0 255 -17849665 homeCount = 26 -17849666 waitCount = 13 -17849666 ripCount = 11 -17849667 locktype1 = 0 -17849667 locktype2 = 2 -17849688 locktype3 = 1 -17849689 goalCount = 2 -17849689 goalTotal = 12 -17849690 otherCount = 11 -~~~ -17849691 CURRENTGOAL IS [2] -~~~ -17849708 UP 12 -17849708 2048 255 -17849722 DOWN 12 -17849722 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17849759 homeCount = 26 -17849760 waitCount = 13 -17849760 ripCount = 11 -17849761 locktype1 = 0 -17849761 locktype2 = 2 -17849762 locktype3 = 1 -17849762 goalCount = 2 -17849763 goalTotal = 12 -17849763 otherCount = 11 -~~~ -17849764 CURRENTGOAL IS [2] -~~~ -17853717 UP 2 -17853717 2 255 -~~~ -~~~ -17853745 outer reward -~~~ -17853745 2 131327 -~~~ -~~~ -17853940 DOWN 2 -17853940 0 131327 -~~~ -~~~ -17853964 0 131326 -~~~ -~~~ -17853966 0 131324 -~~~ -~~~ -17853967 0 131320 -~~~ -~~~ -17853969 0 131312 -~~~ -~~~ -17853971 0 131296 -~~~ -~~~ -17853973 0 131264 -~~~ -~~~ -17853975 0 131200 -~~~ -~~~ -17853977 0 131072 -~~~ -~~~ -17853978 0 131584 -17853979 homeCount = 26 -17853980 waitCount = 13 -17853981 ripCount = 11 -17854002 locktype1 = 0 -17854002 locktype2 = 2 -17854003 locktype3 = 1 -17854003 goalCount = 3 -17854004 goalTotal = 13 -17854004 otherCount = 11 -~~~ -17854005 2 131584 -17854195 2 512 -17854610 DOWN 2 -17854610 0 512 -17854627 2 512 -17854734 DOWN 2 -17854734 0 512 -17854760 2 512 -17854858 DOWN 2 -17854858 0 512 -17854884 2 512 -17854994 DOWN 2 -17854994 0 512 -17855017 2 512 -17855122 DOWN 2 -17855122 0 512 -17855152 2 512 -17855268 DOWN 2 -17855268 0 512 -17855283 2 512 -17861087 DOWN 2 -17861087 0 512 -17866371 UP 10 -17866371 waslock = 0 -17866371 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17866401 512 16777728 -~~~ -17866500 DOWN 10 -17866500 0 16777728 -17866522 UP 10 -17866522 waslock = 0 -17866522 512 16777728 -~~~ -~~~ -17866529 512 16778752 -~~~ -~~~ -17866531 512 16778240 -17866532 homeCount = 27 -17866532 waitCount = 13 -17866533 ripCount = 11 -17866533 locktype1 = 0 -17866534 locktype2 = 2 -17866534 locktype3 = 1 -17866535 goalCount = 3 -17866535 goalTotal = 13 -17866536 otherCount = 11 -~~~ -17866557 512 1024 -~~~ -17871309 DOWN 10 -17871309 0 1024 -~~~ -~~~ -~~~ -~~~ -17871338 homeCount = 27 -17871338 waitCount = 13 -17871339 ripCount = 11 -17871339 locktype1 = 0 -17871340 locktype2 = 2 -17871340 locktype3 = 1 -17871341 goalCount = 3 -17871341 goalTotal = 13 -17871342 otherCount = 11 -~~~ -17872797 UP 11 -17872797 1024 1024 -17876092 DOWN 11 -17876092 0 1024 -17876102 UP 11 -17876102 1024 1024 -17880683 DOWN 11 -17880683 0 1024 -17880710 UP 11 -17880710 1024 1024 -17880798 BEEP1 -17880798 BEEP2 -~~~ -~~~ -~~~ -17880819 1024 33555456 -~~~ -17880968 1024 1024 -17885726 DOWN 11 -17885726 0 1024 -~~~ -~~~ -17885745 0 0 -~~~ -~~~ -17885747 0 1 -~~~ -~~~ -17885748 0 3 -~~~ -~~~ -17885750 0 7 -~~~ -~~~ -17885752 0 15 -~~~ -~~~ -17885754 0 31 -~~~ -~~~ -17885756 0 63 -~~~ -~~~ -17885757 0 127 -~~~ -~~~ -17885759 0 255 -17885760 homeCount = 27 -17885761 waitCount = 13 -17885761 ripCount = 12 -17885762 locktype1 = 0 -17885783 locktype2 = 2 -17885784 locktype3 = 1 -17885784 goalCount = 3 -17885785 goalTotal = 13 -17885785 otherCount = 11 -~~~ -17885786 CURRENTGOAL IS [2] -~~~ -17885798 UP 11 -17885798 1024 255 -17887457 DOWN 11 -17887457 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887486 UP 11 -17887486 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887492 homeCount = 27 -17887493 waitCount = 13 -17887493 ripCount = 12 -17887494 locktype1 = 0 -17887494 locktype2 = 2 -17887495 locktype3 = 1 -17887495 goalCount = 3 -17887496 goalTotal = 13 -17887496 otherCount = 11 -~~~ -17887497 CURRENTGOAL IS [2] -~~~ -17887540 DOWN 11 -17887540 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17887582 homeCount = 27 -17887583 waitCount = 13 -17887583 ripCount = 12 -17887584 locktype1 = 0 -17887584 locktype2 = 2 -17887585 locktype3 = 1 -17887585 goalCount = 3 -17887586 goalTotal = 13 -17887586 otherCount = 11 -~~~ -17887587 CURRENTGOAL IS [2] -~~~ -17891303 UP 2 -17891303 2 255 -~~~ -~~~ -17891329 outer reward -~~~ -17891329 2 131327 -~~~ -~~~ -17891504 DOWN 2 -17891504 0 131327 -~~~ -~~~ -17891528 0 131326 -~~~ -~~~ -17891530 0 131324 -~~~ -~~~ -17891531 0 131320 -~~~ -~~~ -17891533 0 131312 -~~~ -~~~ -17891535 0 131296 -~~~ -~~~ -17891537 0 131264 -~~~ -~~~ -17891539 0 131200 -~~~ -~~~ -17891540 0 131072 -~~~ -~~~ -17891542 0 131584 -17891543 homeCount = 27 -17891544 waitCount = 13 -17891544 ripCount = 12 -17891566 locktype1 = 0 -17891566 locktype2 = 2 -17891567 locktype3 = 1 -17891567 goalCount = 4 -17891568 goalTotal = 14 -17891568 otherCount = 11 -~~~ -17891569 2 131584 -17891779 2 512 -17892060 DOWN 2 -17892060 0 512 -17892075 2 512 -17892185 DOWN 2 -17892185 0 512 -17892200 2 512 -17898873 DOWN 2 -17898873 0 512 -17898936 2 512 -17898969 DOWN 2 -17898969 0 512 -17903622 UP 10 -17903623 waslock = 0 -17903622 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17903655 512 16777728 -~~~ -17903805 512 512 -17907190 DOWN 10 -17907190 0 512 -~~~ -~~~ -17907209 0 1536 -~~~ -~~~ -17907211 0 1024 -17907212 homeCount = 28 -17907212 waitCount = 13 -17907213 ripCount = 12 -17907213 locktype1 = 0 -17907214 locktype2 = 2 -17907214 locktype3 = 1 -17907215 goalCount = 4 -17907215 goalTotal = 14 -17907216 otherCount = 11 -~~~ -17907245 UP 10 -17907245 waslock = 0 -17907245 512 1024 -~~~ -17907292 DOWN 10 -17907292 0 1024 -~~~ -~~~ -~~~ -~~~ -17907315 homeCount = 28 -17907316 waitCount = 13 -17907316 ripCount = 12 -17907317 locktype1 = 0 -17907317 locktype2 = 2 -17907318 locktype3 = 1 -17907318 goalCount = 4 -17907319 goalTotal = 14 -17907319 otherCount = 11 -~~~ -17908743 UP 11 -17908743 1024 1024 -17911424 DOWN 11 -17911424 0 1024 -17911439 UP 11 -17911439 1024 1024 -17914044 DOWN 11 -17914044 0 1024 -17914054 UP 11 -17914054 1024 1024 -17914744 BEEP1 -17914744 BEEP2 -~~~ -~~~ -~~~ -17914764 1024 33555456 -~~~ -17914914 1024 1024 -17920379 DOWN 11 -17920379 0 1024 -17920399 UP 11 -17920399 1024 1024 -~~~ -~~~ -17920402 1024 0 -~~~ -~~~ -17920404 1024 1 -~~~ -~~~ -17920406 1024 3 -~~~ -~~~ -17920408 1024 7 -~~~ -~~~ -17920409 1024 15 -~~~ -~~~ -17920411 1024 31 -~~~ -~~~ -17920413 1024 63 -~~~ -~~~ -17920415 1024 127 -~~~ -~~~ -17920417 1024 255 -17920418 homeCount = 28 -17920418 waitCount = 13 -17920439 ripCount = 13 -17920440 locktype1 = 0 -17920440 locktype2 = 2 -17920441 locktype3 = 1 -17920441 goalCount = 4 -17920442 goalTotal = 14 -17920442 otherCount = 11 -~~~ -17920443 CURRENTGOAL IS [2] -~~~ -17920510 DOWN 11 -17920510 0 255 -17920518 UP 11 -17920517 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17920542 homeCount = 28 -17920543 waitCount = 13 -17920543 ripCount = 13 -17920544 locktype1 = 0 -17920544 locktype2 = 2 -17920545 locktype3 = 1 -17920545 goalCount = 4 -17920546 goalTotal = 14 -17920546 otherCount = 11 -~~~ -17920547 CURRENTGOAL IS [2] -~~~ -17922012 DOWN 11 -17922012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17922052 homeCount = 28 -17922053 waitCount = 13 -17922054 ripCount = 13 -17922054 locktype1 = 0 -17922055 locktype2 = 2 -17922055 locktype3 = 1 -17922055 goalCount = 4 -17922056 goalTotal = 14 -17922056 otherCount = 11 -~~~ -17922058 CURRENTGOAL IS [2] -~~~ -17925749 UP 2 -17925749 2 255 -~~~ -~~~ -17925768 outer reward -~~~ -17925768 2 131327 -~~~ -~~~ -17925771 DOWN 2 -17925771 0 131327 -~~~ -~~~ -17925792 0 131326 -~~~ -~~~ -17925794 0 131324 -~~~ -~~~ -17925796 0 131320 -~~~ -~~~ -17925797 0 131312 -~~~ -~~~ -17925799 0 131296 -~~~ -~~~ -17925801 0 131264 -~~~ -~~~ -17925803 0 131200 -~~~ -17925804 2 131200 -~~~ -~~~ -17925806 2 131072 -~~~ -17925807 2 131584 -17925808 homeCount = 28 -17925809 waitCount = 13 -17925830 ripCount = 13 -17925830 locktype1 = 0 -17925831 locktype2 = 2 -17925831 locktype3 = 1 -17925832 goalCount = 5 -17925832 goalTotal = 15 -17925833 otherCount = 11 -~~~ -17926043 DOWN 2 -17926043 0 131584 -17926080 2 131584 -17926218 2 512 -17926346 DOWN 2 -17926346 0 512 -17926352 2 512 -17926453 DOWN 2 -17926453 0 512 -17926478 2 512 -17926574 DOWN 2 -17926574 0 512 -17926610 2 512 -17926695 DOWN 2 -17926695 0 512 -17926739 2 512 -17926820 DOWN 2 -17926820 0 512 -17926863 2 512 -17926961 DOWN 2 -17926961 0 512 -17926990 2 512 -17927108 DOWN 2 -17927108 0 512 -17927126 2 512 -17932908 DOWN 2 -17932908 0 512 -17937014 UP 10 -17937014 waslock = 0 -17937014 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17937042 512 16777728 -~~~ -17937192 512 512 -17941745 DOWN 10 -17941745 0 512 -~~~ -~~~ -17941767 0 2560 -~~~ -~~~ -17941769 0 2048 -17941770 homeCount = 29 -17941771 waitCount = 13 -17941771 ripCount = 13 -17941772 locktype1 = 0 -17941772 locktype2 = 2 -17941772 locktype3 = 1 -17941773 goalCount = 5 -17941773 goalTotal = 15 -17941774 otherCount = 11 -~~~ -17943411 UP 12 -17943411 2048 2048 -17945337 DOWN 12 -17945337 0 2048 -17945386 UP 12 -17945386 2048 2048 -17951411 CLICK1 -17951411 CLICK2 -~~~ -~~~ -~~~ -17951429 2048 67110912 -~~~ -17951579 2048 2048 -17957761 DOWN 12 -17957761 0 2048 -~~~ -~~~ -17957779 0 0 -~~~ -~~~ -17957781 0 1 -~~~ -~~~ -17957783 0 3 -~~~ -~~~ -17957784 0 7 -~~~ -~~~ -17957786 0 15 -~~~ -~~~ -17957788 0 31 -~~~ -~~~ -17957790 0 63 -~~~ -~~~ -17957792 0 127 -~~~ -~~~ -17957794 0 255 -17957795 homeCount = 29 -17957795 waitCount = 14 -17957796 ripCount = 13 -17957796 locktype1 = 0 -17957797 locktype2 = 2 -17957817 locktype3 = 1 -17957818 goalCount = 5 -17957818 goalTotal = 15 -17957819 otherCount = 11 -~~~ -17957820 CURRENTGOAL IS [2] -~~~ -17957820 UP 12 -17957820 2048 255 -17957860 DOWN 12 -17957860 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -17957900 homeCount = 29 -17957900 waitCount = 14 -17957901 ripCount = 13 -17957902 locktype1 = 0 -17957902 locktype2 = 2 -17957903 locktype3 = 1 -17957903 goalCount = 5 -17957903 goalTotal = 15 -17957904 otherCount = 11 -~~~ -17957905 CURRENTGOAL IS [2] -~~~ -17960837 UP 2 -17960837 2 255 -~~~ -~~~ -17960865 outer reward -~~~ -17960866 2 131327 -~~~ -~~~ -17960983 DOWN 2 -17960983 0 131327 -~~~ -~~~ -17961004 0 131326 -~~~ -~~~ -17961006 0 131324 -~~~ -~~~ -17961008 0 131320 -~~~ -~~~ -17961009 0 131312 -~~~ -~~~ -17961011 0 131296 -~~~ -~~~ -17961013 0 131264 -~~~ -~~~ -17961015 0 131200 -~~~ -~~~ -17961017 0 131072 -~~~ -~~~ -17961019 0 131584 -17961020 homeCount = 29 -17961020 waitCount = 14 -17961021 ripCount = 13 -17961042 locktype1 = 0 -17961042 locktype2 = 2 -17961043 locktype3 = 1 -17961043 goalCount = 6 -17961044 goalTotal = 16 -17961044 otherCount = 11 -~~~ -17961051 2 131584 -17961315 2 512 -17961832 DOWN 2 -17961832 0 512 -17961853 2 512 -17961968 DOWN 2 -17961968 0 512 -17961983 2 512 -17962107 DOWN 2 -17962107 0 512 -17962114 2 512 -17962230 DOWN 2 -17962230 0 512 -17962255 2 512 -17969076 DOWN 2 -17969076 0 512 -17969149 2 512 -17969179 DOWN 2 -17969179 0 512 -17973719 UP 10 -17973719 waslock = 0 -17973719 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -17973748 512 16777728 -~~~ -17973898 512 512 -17978571 DOWN 10 -17978571 0 512 -~~~ -~~~ -17978594 0 1536 -~~~ -~~~ -17978596 0 1024 -17978597 homeCount = 30 -17978597 waitCount = 14 -17978598 ripCount = 13 -17978598 locktype1 = 0 -17978599 locktype2 = 2 -17978599 locktype3 = 1 -17978600 goalCount = 6 -17978600 goalTotal = 16 -17978601 otherCount = 11 -~~~ -17978622 UP 10 -17978622 waslock = 0 -17978622 512 1024 -~~~ -17978673 DOWN 10 -17978673 0 1024 -~~~ -~~~ -~~~ -~~~ -17978698 homeCount = 30 -17978699 waitCount = 14 -17978699 ripCount = 13 -17978700 locktype1 = 0 -17978700 locktype2 = 2 -17978701 locktype3 = 1 -17978701 goalCount = 6 -17978702 goalTotal = 16 -17978702 otherCount = 11 -~~~ -17980140 UP 11 -17980140 1024 1024 -17982129 DOWN 11 -17982129 0 1024 -17982145 UP 11 -17982145 1024 1024 -17987640 BEEP1 -17987640 BEEP2 -~~~ -~~~ -~~~ -17987665 1024 33555456 -~~~ -17987815 1024 1024 -17995055 DOWN 11 -17995055 0 1024 -~~~ -~~~ -17995073 0 0 -~~~ -~~~ -17995075 0 1 -~~~ -~~~ -17995077 0 3 -~~~ -~~~ -17995079 0 7 -~~~ -~~~ -17995081 0 15 -~~~ -~~~ -17995083 0 31 -~~~ -~~~ -17995084 0 63 -~~~ -~~~ -17995086 0 127 -~~~ -~~~ -17995088 0 255 -17995089 homeCount = 30 -17995090 waitCount = 14 -17995090 ripCount = 14 -17995091 locktype1 = 0 -17995112 locktype2 = 2 -17995112 locktype3 = 1 -17995113 goalCount = 6 -17995113 goalTotal = 16 -17995114 otherCount = 11 -~~~ -17995115 CURRENTGOAL IS [2] -~~~ -17999238 UP 2 -17999238 2 255 -~~~ -~~~ -17999256 outer reward -~~~ -17999256 2 131327 -~~~ -~~~ -17999414 DOWN 2 -17999414 0 131327 -~~~ -~~~ -17999435 0 131326 -~~~ -~~~ -17999437 0 131324 -~~~ -~~~ -17999438 0 131320 -~~~ -~~~ -17999440 0 131312 -~~~ -~~~ -17999442 0 131296 -~~~ -~~~ -17999444 0 131264 -~~~ -~~~ -17999446 0 131200 -~~~ -~~~ -17999448 0 131072 -~~~ -~~~ -17999449 0 131584 -17999451 homeCount = 30 -17999451 waitCount = 14 -17999452 ripCount = 14 -17999472 locktype1 = 0 -17999473 locktype2 = 2 -17999473 locktype3 = 1 -17999474 goalCount = 7 -17999474 goalTotal = 17 -17999475 otherCount = 11 -~~~ -17999475 2 131584 -17999706 2 512 -17999969 DOWN 2 -17999969 0 512 -17999988 2 512 -18000082 DOWN 2 -18000082 0 512 -18000121 2 512 -18000212 DOWN 2 -18000212 0 512 -18000243 2 512 -18000338 DOWN 2 -18000338 0 512 -18000379 2 512 -18000475 DOWN 2 -18000475 0 512 -18000502 2 512 -18001062 DOWN 2 -18001062 0 512 -18001075 2 512 -18006367 DOWN 2 -18006367 0 512 -18006392 2 512 -18006463 DOWN 2 -18006463 0 512 -18011267 UP 10 -18011267 waslock = 0 -18011267 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18011300 512 16777728 -~~~ -18011450 512 512 -18011639 DOWN 10 -18011639 0 512 -18011656 UP 10 -18011656 waslock = 0 -18011656 512 512 -~~~ -~~~ -18011664 512 1536 -~~~ -~~~ -18011666 512 1024 -18011667 homeCount = 31 -18011668 waitCount = 14 -18011668 ripCount = 14 -18011669 locktype1 = 0 -18011669 locktype2 = 2 -18011670 locktype3 = 1 -18011670 goalCount = 7 -18011671 goalTotal = 17 -18011671 otherCount = 11 -~~~ -~~~ -18014768 DOWN 10 -18014768 0 1024 -~~~ -~~~ -~~~ -~~~ -18014787 homeCount = 31 -18014788 waitCount = 14 -18014788 ripCount = 14 -18014789 locktype1 = 0 -18014789 locktype2 = 2 -18014789 locktype3 = 1 -18014790 goalCount = 7 -18014790 goalTotal = 17 -18014791 otherCount = 11 -~~~ -18014805 UP 10 -18014805 waslock = 0 -18014804 512 1024 -~~~ -18014873 DOWN 10 -18014873 0 1024 -~~~ -~~~ -~~~ -~~~ -18014898 homeCount = 31 -18014899 waitCount = 14 -18014899 ripCount = 14 -18014900 locktype1 = 0 -18014900 locktype2 = 2 -18014901 locktype3 = 1 -18014901 goalCount = 7 -18014902 goalTotal = 17 -18014902 otherCount = 11 -~~~ -18016371 UP 11 -18016371 1024 1024 -18019466 DOWN 11 -18019466 0 1024 -18019477 UP 11 -18019477 1024 1024 -18020371 BEEP1 -18020371 BEEP2 -~~~ -~~~ -~~~ -18020397 1024 33555456 -~~~ -18020547 1024 1024 -18025455 DOWN 11 -18025454 0 1024 -18025472 UP 11 -18025472 1024 1024 -~~~ -~~~ -18025475 1024 0 -~~~ -~~~ -18025477 1024 1 -~~~ -~~~ -18025479 1024 3 -~~~ -~~~ -18025480 1024 7 -~~~ -~~~ -18025482 1024 15 -~~~ -~~~ -18025484 1024 31 -~~~ -~~~ -18025486 1024 63 -~~~ -~~~ -18025488 1024 127 -~~~ -~~~ -18025490 1024 255 -18025491 homeCount = 31 -18025491 waitCount = 14 -18025492 ripCount = 15 -18025513 locktype1 = 0 -18025513 locktype2 = 2 -18025514 locktype3 = 1 -18025514 goalCount = 7 -18025514 goalTotal = 17 -18025515 otherCount = 11 -~~~ -18025516 CURRENTGOAL IS [2] -~~~ -18025534 DOWN 11 -18025534 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18025574 homeCount = 31 -18025574 waitCount = 14 -18025575 ripCount = 15 -18025575 locktype1 = 0 -18025576 locktype2 = 2 -18025576 locktype3 = 1 -18025577 goalCount = 7 -18025577 goalTotal = 17 -18025578 otherCount = 11 -~~~ -18025579 CURRENTGOAL IS [2] -~~~ -18025617 UP 11 -18025617 1024 255 -18028361 DOWN 11 -18028361 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18028404 homeCount = 31 -18028404 waitCount = 14 -18028405 ripCount = 15 -18028405 locktype1 = 0 -18028406 locktype2 = 2 -18028406 locktype3 = 1 -18028407 goalCount = 7 -18028407 goalTotal = 17 -18028408 otherCount = 11 -~~~ -18028409 CURRENTGOAL IS [2] -~~~ -18028430 UP 11 -18028430 1024 255 -18028451 DOWN 11 -18028451 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18028494 homeCount = 31 -18028494 waitCount = 14 -18028495 ripCount = 15 -18028495 locktype1 = 0 -18028496 locktype2 = 2 -18028496 locktype3 = 1 -18028497 goalCount = 7 -18028497 goalTotal = 17 -18028498 otherCount = 11 -~~~ -18028499 CURRENTGOAL IS [2] -~~~ -18032808 UP 2 -18032808 2 255 -~~~ -~~~ -18032831 outer reward -~~~ -18032831 2 131327 -~~~ -~~~ -18033013 DOWN 2 -18033013 0 131327 -~~~ -~~~ -18033039 0 131326 -~~~ -~~~ -18033040 0 131324 -~~~ -~~~ -18033042 0 131320 -~~~ -~~~ -18033044 0 131312 -~~~ -~~~ -18033046 0 131296 -~~~ -~~~ -18033048 0 131264 -~~~ -~~~ -18033050 0 131200 -~~~ -~~~ -18033051 0 131072 -~~~ -~~~ -18033053 0 131584 -18033054 homeCount = 31 -18033055 waitCount = 14 -18033055 ripCount = 15 -18033076 locktype1 = 0 -18033077 locktype2 = 2 -18033077 locktype3 = 1 -18033078 goalCount = 8 -18033078 goalTotal = 18 -18033079 otherCount = 11 -~~~ -18033079 2 131584 -18033281 2 512 -18033570 DOWN 2 -18033570 0 512 -18033590 2 512 -18033697 DOWN 2 -18033697 0 512 -18033720 2 512 -18033834 DOWN 2 -18033834 0 512 -18033851 2 512 -18033956 DOWN 2 -18033956 0 512 -18033979 2 512 -18034089 DOWN 2 -18034089 0 512 -18034108 2 512 -18034220 DOWN 2 -18034220 0 512 -18034238 2 512 -18034509 DOWN 2 -18034509 0 512 -18034533 2 512 -18043258 DOWN 2 -18043258 0 512 -18057543 UP 10 -18057543 waslock = 0 -18057543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18057574 512 16777728 -~~~ -18057724 512 512 -18062627 DOWN 10 -18062627 0 512 -~~~ -~~~ -18062649 0 2560 -~~~ -~~~ -18062651 0 2048 -18062652 homeCount = 32 -18062653 waitCount = 14 -18062653 ripCount = 15 -18062654 locktype1 = 0 -18062654 locktype2 = 2 -18062655 locktype3 = 1 -18062655 goalCount = 8 -18062656 goalTotal = 18 -18062656 otherCount = 11 -~~~ -18064275 UP 12 -18064275 2048 2048 -18065776 DOWN 12 -18065776 0 2048 -18065788 UP 12 -18065788 2048 2048 -18066962 DOWN 12 -18066962 0 2048 -18066982 UP 12 -18066982 2048 2048 -18069995 DOWN 12 -18069995 0 2048 -18070016 UP 12 -18070016 2048 2048 -18070275 CLICK1 -18070275 CLICK2 -~~~ -~~~ -~~~ -18070302 2048 67110912 -~~~ -18070452 2048 2048 -18076097 DOWN 12 -18076097 0 2048 -~~~ -~~~ -18076120 0 0 -~~~ -~~~ -18076122 0 1 -~~~ -18076123 UP 12 -18076123 2048 1 -~~~ -~~~ -18076125 2048 3 -~~~ -~~~ -18076127 2048 7 -~~~ -~~~ -18076128 2048 15 -~~~ -18076129 2048 31 -~~~ -~~~ -18076131 2048 63 -~~~ -~~~ -18076132 2048 127 -~~~ -~~~ -18076134 2048 255 -18076135 homeCount = 32 -18076156 waitCount = 15 -18076157 ripCount = 15 -18076157 locktype1 = 0 -18076158 locktype2 = 2 -18076158 locktype3 = 1 -18076159 goalCount = 8 -18076159 goalTotal = 18 -18076160 otherCount = 11 -~~~ -18076161 CURRENTGOAL IS [2] -~~~ -18076417 DOWN 12 -18076417 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076446 UP 12 -18076446 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076455 homeCount = 32 -18076456 waitCount = 15 -18076456 ripCount = 15 -18076457 locktype1 = 0 -18076457 locktype2 = 2 -18076458 locktype3 = 1 -18076458 goalCount = 8 -18076459 goalTotal = 18 -18076459 otherCount = 11 -~~~ -18076460 CURRENTGOAL IS [2] -~~~ -18076482 DOWN 12 -18076481 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18076512 homeCount = 32 -18076512 waitCount = 15 -18076513 ripCount = 15 -18076513 locktype1 = 0 -18076514 locktype2 = 2 -18076514 locktype3 = 1 -18076515 goalCount = 8 -18076515 goalTotal = 18 -18076516 otherCount = 11 -~~~ -18076517 CURRENTGOAL IS [2] -~~~ -18076538 UP 12 -18076538 2048 255 -18078783 DOWN 12 -18078783 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078807 UP 12 -18078807 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078818 homeCount = 32 -18078818 waitCount = 15 -18078819 ripCount = 15 -18078819 locktype1 = 0 -18078820 locktype2 = 2 -18078820 locktype3 = 1 -18078821 goalCount = 8 -18078821 goalTotal = 18 -18078822 otherCount = 11 -~~~ -18078823 CURRENTGOAL IS [2] -~~~ -18078844 DOWN 12 -18078844 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18078877 homeCount = 32 -18078878 waitCount = 15 -18078878 ripCount = 15 -18078879 locktype1 = 0 -18078879 locktype2 = 2 -18078880 locktype3 = 1 -18078880 goalCount = 8 -18078881 goalTotal = 18 -18078881 otherCount = 11 -~~~ -18078882 CURRENTGOAL IS [2] -~~~ -18082583 UP 2 -18082583 2 255 -~~~ -~~~ -18082608 outer reward -~~~ -18082608 2 131327 -~~~ -~~~ -18082618 DOWN 2 -18082618 0 131327 -~~~ -~~~ -18082642 0 131326 -~~~ -~~~ -18082644 0 131324 -~~~ -~~~ -18082646 0 131320 -~~~ -~~~ -18082647 0 131312 -~~~ -~~~ -18082649 0 131296 -~~~ -~~~ -18082651 0 131264 -~~~ -~~~ -18082653 0 131200 -~~~ -~~~ -18082655 0 131072 -~~~ -~~~ -18082657 0 131584 -18082658 homeCount = 32 -18082658 waitCount = 15 -18082659 ripCount = 15 -18082679 locktype1 = 0 -18082680 locktype2 = 2 -18082680 locktype3 = 1 -18082681 goalCount = 9 -18082681 goalTotal = 19 -18082682 otherCount = 11 -~~~ -18082682 2 131584 -18082895 DOWN 2 -18082895 0 131584 -18082932 2 131584 -18083058 2 512 -18083217 DOWN 2 -18083217 0 512 -18083238 2 512 -18083329 DOWN 2 -18083329 0 512 -18083357 2 512 -18083584 DOWN 2 -18083584 0 512 -18083594 2 512 -18083695 DOWN 2 -18083695 0 512 -18083729 2 512 -18083842 DOWN 2 -18083842 0 512 -18083852 2 512 -18089144 DOWN 2 -18089144 0 512 -18089198 2 512 -18089250 DOWN 2 -18089250 0 512 -18095222 UP 10 -18095222 waslock = 0 -18095222 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18095251 512 16777728 -~~~ -18095401 512 512 -18095403 DOWN 10 -18095403 0 512 -~~~ -~~~ -18095434 0 1536 -~~~ -~~~ -18095436 0 1024 -18095437 homeCount = 33 -18095437 waitCount = 15 -18095438 ripCount = 15 -18095438 locktype1 = 0 -18095439 locktype2 = 2 -18095439 locktype3 = 1 -18095440 goalCount = 9 -18095440 goalTotal = 19 -18095441 otherCount = 11 -~~~ -18095462 UP 10 -18095462 waslock = 0 -18095462 512 1024 -~~~ -18098815 DOWN 10 -18098815 0 1024 -~~~ -~~~ -~~~ -~~~ -18098837 homeCount = 33 -18098837 waitCount = 15 -18098838 ripCount = 15 -18098838 locktype1 = 0 -18098839 locktype2 = 2 -18098839 locktype3 = 1 -18098840 goalCount = 9 -18098840 goalTotal = 19 -18098841 otherCount = 11 -~~~ -18098841 UP 10 -18098842 waslock = 0 -18098841 512 1024 -~~~ -18098941 DOWN 10 -18098941 0 1024 -~~~ -~~~ -~~~ -~~~ -18098969 homeCount = 33 -18098969 waitCount = 15 -18098970 ripCount = 15 -18098970 locktype1 = 0 -18098971 locktype2 = 2 -18098971 locktype3 = 1 -18098972 goalCount = 9 -18098972 goalTotal = 19 -18098973 otherCount = 11 -~~~ -18100646 UP 11 -18100646 1024 1024 -18102966 DOWN 11 -18102966 0 1024 -18102978 UP 11 -18102978 1024 1024 -18104195 DOWN 11 -18104195 0 1024 -18104215 UP 11 -18104215 1024 1024 -18106646 BEEP1 -18106646 BEEP2 -~~~ -~~~ -~~~ -18106667 1024 33555456 -~~~ -18106817 1024 1024 -18106960 DOWN 11 -18106959 0 1024 -18107054 UP 11 -18107054 1024 1024 -~~~ -~~~ -18107351 1024 0 -~~~ -~~~ -18107353 1024 1 -~~~ -~~~ -18107355 1024 3 -~~~ -~~~ -18107357 1024 7 -~~~ -~~~ -18107359 1024 15 -~~~ -~~~ -18107361 1024 31 -~~~ -~~~ -18107362 1024 63 -~~~ -~~~ -18107364 1024 127 -~~~ -~~~ -18107366 1024 255 -18107367 homeCount = 33 -18107368 waitCount = 15 -18107368 ripCount = 16 -18107389 locktype1 = 0 -18107390 locktype2 = 2 -18107390 locktype3 = 1 -18107391 goalCount = 9 -18107391 goalTotal = 19 -18107392 otherCount = 11 -~~~ -18107393 CURRENTGOAL IS [2] -~~~ -18113951 DOWN 11 -18113951 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18113992 homeCount = 33 -18113993 waitCount = 15 -18113993 ripCount = 16 -18113994 locktype1 = 0 -18113994 locktype2 = 2 -18113995 locktype3 = 1 -18113995 goalCount = 9 -18113996 goalTotal = 19 -18113996 otherCount = 11 -~~~ -18113997 CURRENTGOAL IS [2] -~~~ -18114018 UP 11 -18114018 1024 255 -18114037 DOWN 11 -18114037 0 255 -18114051 UP 11 -18114051 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18114071 homeCount = 33 -18114072 waitCount = 15 -18114072 ripCount = 16 -18114073 locktype1 = 0 -18114073 locktype2 = 2 -18114074 locktype3 = 1 -18114074 goalCount = 9 -18114075 goalTotal = 19 -18114075 otherCount = 11 -~~~ -18114076 CURRENTGOAL IS [2] -~~~ -18115869 DOWN 11 -18115869 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18115903 homeCount = 33 -18115904 waitCount = 15 -18115904 ripCount = 16 -18115905 locktype1 = 0 -18115905 locktype2 = 2 -18115906 locktype3 = 1 -18115906 goalCount = 9 -18115907 goalTotal = 19 -18115907 otherCount = 11 -~~~ -18115908 CURRENTGOAL IS [2] -~~~ -18115930 UP 11 -18115929 1024 255 -18115962 DOWN 11 -18115962 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18116001 homeCount = 33 -18116002 waitCount = 15 -18116003 ripCount = 16 -18116003 locktype1 = 0 -18116004 locktype2 = 2 -18116004 locktype3 = 1 -18116005 goalCount = 9 -18116005 goalTotal = 19 -18116005 otherCount = 11 -~~~ -18116007 CURRENTGOAL IS [2] -~~~ -18119662 UP 2 -18119662 2 255 -~~~ -~~~ -18119689 outer reward -~~~ -18119690 2 131327 -~~~ -~~~ -18119694 outerreps = 6 -~~~ -~~~ -18119938 DOWN 2 -18119938 0 131327 -~~~ -~~~ -18119956 0 131326 -~~~ -~~~ -18119958 0 131324 -~~~ -~~~ -18119960 0 131320 -~~~ -~~~ -18119962 0 131312 -~~~ -~~~ -18119964 0 131296 -~~~ -~~~ -18119965 0 131264 -~~~ -~~~ -18119967 0 131200 -~~~ -~~~ -18119969 0 131072 -~~~ -~~~ -18119971 0 131584 -18119972 homeCount = 33 -18119972 waitCount = 15 -18119973 ripCount = 16 -18119994 locktype1 = 0 -18119995 locktype2 = 2 -18119995 locktype3 = 1 -18119996 goalCount = 0 -18119996 goalTotal = 20 -18119997 otherCount = 11 -~~~ -18119997 2 131584 -18120139 2 512 -18120369 DOWN 2 -18120369 0 512 -18120413 2 512 -18120500 DOWN 2 -18120500 0 512 -18120526 2 512 -18120623 DOWN 2 -18120623 0 512 -18120657 2 512 -18120748 DOWN 2 -18120748 0 512 -18120794 2 512 -18120885 DOWN 2 -18120885 0 512 -18120911 2 512 -18121020 DOWN 2 -18121020 0 512 -18121047 2 512 -18121152 DOWN 2 -18121152 0 512 -18121183 2 512 -18122677 DOWN 2 -18122677 0 512 -18122709 2 512 -18125125 DOWN 2 -18125125 0 512 -18125302 2 512 -18125328 DOWN 2 -18125328 0 512 -18125357 2 512 -18128345 DOWN 2 -18128345 0 512 -18128359 2 512 -18128526 DOWN 2 -18128525 0 512 -18128539 2 512 -18128866 DOWN 2 -18128866 0 512 -18133826 UP 10 -18133826 waslock = 0 -18133826 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18133854 512 16777728 -~~~ -18134004 512 512 -18139345 DOWN 10 -18139345 0 512 -~~~ -~~~ -18139368 0 2560 -~~~ -~~~ -18139370 0 2048 -18139371 homeCount = 34 -18139371 waitCount = 15 -18139372 ripCount = 16 -18139372 locktype1 = 0 -18139373 locktype2 = 2 -18139373 locktype3 = 1 -18139374 goalCount = 0 -18139374 goalTotal = 20 -18139375 otherCount = 11 -~~~ -18139396 UP 10 -18139396 waslock = 0 -18139396 512 2048 -~~~ -18139449 DOWN 10 -18139449 0 2048 -~~~ -~~~ -~~~ -~~~ -18139471 homeCount = 34 -18139471 waitCount = 15 -18139472 ripCount = 16 -18139472 locktype1 = 0 -18139473 locktype2 = 2 -18139473 locktype3 = 1 -18139474 goalCount = 0 -18139474 goalTotal = 20 -18139475 otherCount = 11 -~~~ -18141355 UP 12 -18141355 2048 2048 -18143540 DOWN 12 -18143540 0 2048 -18143589 UP 12 -18143589 2048 2048 -18144355 CLICK1 -18144355 CLICK2 -~~~ -~~~ -~~~ -18144383 2048 67110912 -~~~ -18144533 2048 2048 -18149565 DOWN 12 -18149565 0 2048 -18149572 UP 12 -18149572 2048 2048 -~~~ -~~~ -18149589 2048 0 -~~~ -~~~ -18149591 2048 1 -~~~ -~~~ -18149593 2048 3 -~~~ -~~~ -18149595 2048 7 -~~~ -~~~ -18149596 2048 15 -~~~ -~~~ -18149598 2048 31 -~~~ -~~~ -18149600 2048 63 -~~~ -~~~ -18149602 2048 127 -~~~ -~~~ -18149604 2048 255 -18149605 homeCount = 34 -18149605 waitCount = 16 -18149606 ripCount = 16 -18149627 locktype1 = 0 -18149627 locktype2 = 2 -18149628 locktype3 = 1 -18149628 goalCount = 0 -18149629 goalTotal = 20 -18149629 otherCount = 11 -~~~ -18149630 CURRENTGOAL IS [3] -~~~ -18149645 DOWN 12 -18149645 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18149687 homeCount = 34 -18149688 waitCount = 16 -18149688 ripCount = 16 -18149689 locktype1 = 0 -18149689 locktype2 = 2 -18149690 locktype3 = 1 -18149690 goalCount = 0 -18149691 goalTotal = 20 -18149691 otherCount = 11 -~~~ -18149692 CURRENTGOAL IS [3] -~~~ -18149746 UP 12 -18149746 2048 255 -18153121 DOWN 12 -18153121 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18153157 homeCount = 34 -18153158 waitCount = 16 -18153158 ripCount = 16 -18153159 locktype1 = 0 -18153159 locktype2 = 2 -18153160 locktype3 = 1 -18153160 goalCount = 0 -18153161 goalTotal = 20 -18153161 otherCount = 11 -~~~ -18153162 CURRENTGOAL IS [3] -~~~ -18155871 UP 2 -18155871 2 255 -~~~ -~~~ -18156143 DOWN 2 -18156143 0 255 -~~~ -~~~ -18156160 0 254 -~~~ -~~~ -18156162 0 252 -~~~ -~~~ -18156163 0 248 -~~~ -~~~ -18156165 0 240 -~~~ -~~~ -18156167 0 224 -~~~ -~~~ -18156169 0 192 -~~~ -~~~ -18156171 0 128 -~~~ -~~~ -18156172 0 0 -~~~ -~~~ -18156174 0 512 -18156175 homeCount = 34 -18156176 waitCount = 16 -18156176 ripCount = 16 -18156177 locktype1 = 0 -18156198 locktype2 = 2 -18156199 locktype3 = 1 -18156199 goalCount = 0 -18156200 goalTotal = 20 -18156200 otherCount = 12 -~~~ -18156201 2 512 -18156901 DOWN 2 -18156901 0 512 -18163599 UP 10 -18163599 waslock = 0 -18163599 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18163626 512 16777728 -18163628 DOWN 10 -18163628 0 16777728 -~~~ -~~~ -18163651 UP 10 -18163651 waslock = 0 -18163651 512 16777728 -~~~ -~~~ -~~~ -18163654 512 16778240 -18163655 homeCount = 35 -18163655 waitCount = 16 -18163656 ripCount = 16 -18163656 locktype1 = 0 -18163657 locktype2 = 2 -18163657 locktype3 = 1 -18163658 goalCount = 0 -18163679 goalTotal = 20 -18163679 otherCount = 12 -~~~ -~~~ -18163776 512 1024 -18168791 DOWN 10 -18168791 0 1024 -~~~ -~~~ -~~~ -~~~ -18168813 homeCount = 35 -18168814 waitCount = 16 -18168814 ripCount = 16 -18168815 locktype1 = 0 -18168815 locktype2 = 2 -18168816 locktype3 = 1 -18168816 goalCount = 0 -18168817 goalTotal = 20 -18168817 otherCount = 12 -~~~ -18170139 UP 11 -18170139 1024 1024 -18172433 DOWN 11 -18172433 0 1024 -18172442 UP 11 -18172442 1024 1024 -18174140 BEEP1 -18174140 BEEP2 -~~~ -~~~ -~~~ -18174161 1024 33555456 -~~~ -18174311 1024 1024 -18174484 DOWN 11 -18174484 0 1024 -18174503 UP 11 -18174503 1024 1024 -~~~ -~~~ -18174835 1024 0 -~~~ -~~~ -18174837 1024 1 -~~~ -~~~ -18174839 1024 3 -~~~ -~~~ -18174841 1024 7 -~~~ -~~~ -18174842 1024 15 -~~~ -~~~ -18174844 1024 31 -~~~ -~~~ -18174846 1024 63 -~~~ -~~~ -18174848 1024 127 -~~~ -~~~ -18174850 1024 255 -18174851 homeCount = 35 -18174851 waitCount = 16 -18174852 ripCount = 17 -18174873 locktype1 = 0 -18174873 locktype2 = 2 -18174874 locktype3 = 1 -18174874 goalCount = 0 -18174875 goalTotal = 20 -18174875 otherCount = 12 -~~~ -18174876 CURRENTGOAL IS [3] -~~~ -18179712 DOWN 11 -18179712 0 255 -18179726 UP 11 -18179726 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18179746 homeCount = 35 -18179747 waitCount = 16 -18179747 ripCount = 17 -18179748 locktype1 = 0 -18179748 locktype2 = 2 -18179749 locktype3 = 1 -18179749 goalCount = 0 -18179750 goalTotal = 20 -18179750 otherCount = 12 -~~~ -18179751 CURRENTGOAL IS [3] -~~~ -18179980 DOWN 11 -18179980 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18180007 UP 11 -18180007 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18180016 homeCount = 35 -18180017 waitCount = 16 -18180017 ripCount = 17 -18180018 locktype1 = 0 -18180018 locktype2 = 2 -18180019 locktype3 = 1 -18180019 goalCount = 0 -18180020 goalTotal = 20 -18180020 otherCount = 12 -~~~ -18180021 CURRENTGOAL IS [3] -~~~ -18182924 DOWN 11 -18182924 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18182966 homeCount = 35 -18182966 waitCount = 16 -18182967 ripCount = 17 -18182967 locktype1 = 0 -18182968 locktype2 = 2 -18182968 locktype3 = 1 -18182969 goalCount = 0 -18182969 goalTotal = 20 -18182970 otherCount = 12 -~~~ -18182971 CURRENTGOAL IS [3] -~~~ -18185764 UP 8 -18185764 128 255 -~~~ -~~~ -18185790 DOWN 8 -18185790 0 255 -~~~ -~~~ -18185804 0 254 -~~~ -~~~ -18185806 0 252 -~~~ -~~~ -18185808 0 248 -~~~ -~~~ -18185809 0 240 -~~~ -~~~ -18185811 0 224 -~~~ -~~~ -18185813 0 192 -~~~ -~~~ -18185815 0 128 -~~~ -~~~ -18185817 0 0 -~~~ -~~~ -18185819 0 512 -18185820 homeCount = 35 -18185820 waitCount = 16 -18185821 ripCount = 17 -18185821 locktype1 = 0 -18185842 locktype2 = 2 -18185843 locktype3 = 1 -18185843 goalCount = 0 -18185844 goalTotal = 20 -18185844 otherCount = 13 -~~~ -18185900 128 512 -18186287 DOWN 8 -18186287 0 512 -18186568 128 512 -18186592 DOWN 8 -18186592 0 512 -18196202 UP 10 -18196202 waslock = 0 -18196202 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18196229 512 16777728 -~~~ -18196378 512 512 -18200273 DOWN 10 -18200273 0 512 -~~~ -~~~ -18200292 0 1536 -~~~ -~~~ -18200294 0 1024 -18200295 homeCount = 36 -18200296 waitCount = 16 -18200296 ripCount = 17 -18200297 locktype1 = 0 -18200297 locktype2 = 2 -18200298 locktype3 = 1 -18200298 goalCount = 0 -18200299 goalTotal = 20 -18200299 otherCount = 13 -~~~ -18208210 UP 11 -18208210 1024 1024 -18208226 DOWN 11 -18208226 0 1024 -18208284 UP 11 -18208284 1024 1024 -18209774 DOWN 11 -18209774 0 1024 -18209820 UP 11 -18209820 1024 1024 -18210790 DOWN 11 -18210790 0 1024 -18210798 UP 11 -18210798 1024 1024 -18216211 BEEP1 -18216211 BEEP2 -~~~ -~~~ -~~~ -18216234 1024 33555456 -~~~ -18216384 1024 1024 -18223775 DOWN 11 -18223775 0 1024 -~~~ -~~~ -18223793 0 0 -~~~ -~~~ -18223795 0 1 -~~~ -~~~ -18223797 0 3 -~~~ -~~~ -18223798 0 7 -~~~ -~~~ -18223800 0 15 -~~~ -~~~ -18223802 0 31 -~~~ -~~~ -18223804 0 63 -~~~ -~~~ -18223806 0 127 -~~~ -~~~ -18223807 0 255 -18223808 homeCount = 36 -18223809 waitCount = 16 -18223810 ripCount = 18 -18223810 locktype1 = 0 -18223811 locktype2 = 2 -18223831 locktype3 = 1 -18223832 goalCount = 0 -18223832 goalTotal = 20 -18223833 otherCount = 13 -~~~ -18223834 CURRENTGOAL IS [3] -~~~ -18227228 UP 5 -18227228 16 255 -~~~ -18227252 DOWN 5 -18227252 0 255 -~~~ -~~~ -~~~ -18227283 0 254 -~~~ -~~~ -18227284 0 252 -~~~ -~~~ -18227286 0 248 -~~~ -~~~ -18227288 0 240 -~~~ -~~~ -18227290 0 224 -~~~ -~~~ -18227292 0 192 -~~~ -~~~ -18227294 0 128 -~~~ -~~~ -18227295 0 0 -~~~ -~~~ -18227297 0 512 -18227298 homeCount = 36 -18227299 waitCount = 16 -18227299 ripCount = 18 -18227300 locktype1 = 0 -18227321 locktype2 = 2 -18227321 locktype3 = 1 -18227322 goalCount = 0 -18227322 goalTotal = 20 -18227323 otherCount = 14 -~~~ -18227714 16 512 -18228137 DOWN 5 -18228137 0 512 -18235161 UP 10 -18235161 waslock = 0 -18235161 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18235189 512 16777728 -~~~ -18235339 512 512 -18235410 DOWN 10 -18235410 0 512 -18235431 UP 10 -18235431 waslock = 0 -18235431 512 512 -~~~ -~~~ -~~~ -18235434 512 1536 -~~~ -18235435 512 1024 -18235436 homeCount = 37 -18235436 waitCount = 16 -18235437 ripCount = 18 -18235437 locktype1 = 0 -18235438 locktype2 = 2 -18235438 locktype3 = 1 -18235460 goalCount = 0 -18235460 goalTotal = 20 -18235460 otherCount = 14 -~~~ -~~~ -18235511 DOWN 10 -18235511 0 1024 -~~~ -~~~ -~~~ -~~~ -18235536 homeCount = 37 -18235537 waitCount = 16 -18235537 ripCount = 18 -18235538 locktype1 = 0 -18235538 locktype2 = 2 -18235539 locktype3 = 1 -18235539 goalCount = 0 -18235540 goalTotal = 20 -18235540 otherCount = 14 -~~~ -18235607 UP 10 -18235607 waslock = 0 -18235607 512 1024 -~~~ -18239208 DOWN 10 -18239208 0 1024 -18239219 UP 10 -18239220 waslock = 0 -18239219 512 1024 -~~~ -~~~ -~~~ -~~~ -18239239 homeCount = 37 -18239239 waitCount = 16 -18239240 ripCount = 18 -18239240 locktype1 = 0 -18239241 locktype2 = 2 -18239241 locktype3 = 1 -18239242 goalCount = 0 -18239242 goalTotal = 20 -18239243 otherCount = 14 -~~~ -~~~ -18239327 DOWN 10 -18239327 0 1024 -~~~ -~~~ -~~~ -~~~ -18239348 homeCount = 37 -18239348 waitCount = 16 -18239349 ripCount = 18 -18239349 locktype1 = 0 -18239350 locktype2 = 2 -18239350 locktype3 = 1 -18239351 goalCount = 0 -18239351 goalTotal = 20 -18239352 otherCount = 14 -~~~ -18239392 UP 10 -18239393 waslock = 0 -18239392 512 1024 -18239414 DOWN 10 -18239414 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -18239439 homeCount = 37 -18239439 waitCount = 16 -18239440 ripCount = 18 -18239440 locktype1 = 0 -18239441 locktype2 = 2 -18239441 locktype3 = 1 -18239442 goalCount = 0 -18239442 goalTotal = 20 -18239443 otherCount = 14 -~~~ -18242195 UP 11 -18242195 1024 1024 -18242247 DOWN 11 -18242247 0 1024 -18242425 UP 11 -18242425 1024 1024 -18242444 DOWN 11 -18242444 0 1024 -18242544 UP 11 -18242544 1024 1024 -18245225 DOWN 11 -18245225 0 1024 -18245246 UP 11 -18245246 1024 1024 -18246696 BEEP1 -18246696 BEEP2 -~~~ -~~~ -~~~ -18246717 1024 33555456 -~~~ -18246867 1024 1024 -18252109 DOWN 11 -18252109 0 1024 -18252130 UP 11 -18252130 1024 1024 -~~~ -~~~ -18252136 1024 0 -~~~ -~~~ -18252138 1024 1 -~~~ -~~~ -18252140 1024 3 -~~~ -~~~ -18252142 1024 7 -~~~ -~~~ -18252144 1024 15 -~~~ -~~~ -18252145 1024 31 -~~~ -~~~ -18252147 1024 63 -~~~ -~~~ -18252149 1024 127 -~~~ -~~~ -18252151 1024 255 -18252152 homeCount = 37 -18252153 waitCount = 16 -18252153 ripCount = 19 -18252174 locktype1 = 0 -18252175 locktype2 = 2 -18252175 locktype3 = 1 -18252176 goalCount = 0 -18252176 goalTotal = 20 -18252177 otherCount = 14 -~~~ -18252178 CURRENTGOAL IS [3] -~~~ -18254872 DOWN 11 -18254872 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18254913 homeCount = 37 -18254913 waitCount = 16 -18254914 ripCount = 19 -18254914 locktype1 = 0 -18254915 locktype2 = 2 -18254915 locktype3 = 1 -18254916 goalCount = 0 -18254916 goalTotal = 20 -18254917 otherCount = 14 -~~~ -18254918 CURRENTGOAL IS [3] -~~~ -18258249 UP 4 -18258249 8 255 -~~~ -~~~ -18258276 DOWN 4 -18258276 0 255 -~~~ -~~~ -18258294 0 254 -~~~ -~~~ -18258296 0 252 -~~~ -~~~ -18258298 0 248 -~~~ -~~~ -18258300 0 240 -~~~ -~~~ -18258301 0 224 -~~~ -~~~ -18258303 0 192 -~~~ -~~~ -18258305 0 128 -~~~ -~~~ -18258307 0 0 -~~~ -~~~ -18258309 0 512 -18258310 homeCount = 37 -18258310 waitCount = 16 -18258311 ripCount = 19 -18258311 locktype1 = 0 -18258333 locktype2 = 2 -18258333 locktype3 = 1 -18258333 goalCount = 0 -18258334 goalTotal = 20 -18258334 otherCount = 15 -~~~ -18258335 8 512 -18259587 DOWN 4 -18259587 0 512 -18266478 UP 10 -18266478 waslock = 0 -18266477 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18266509 512 16777728 -~~~ -18266659 512 512 -18266771 DOWN 10 -18266771 0 512 -~~~ -~~~ -18266793 0 2560 -~~~ -~~~ -18266795 0 2048 -18266796 homeCount = 38 -18266796 waitCount = 16 -18266797 ripCount = 19 -18266797 locktype1 = 0 -18266798 locktype2 = 2 -18266798 locktype3 = 1 -18266799 goalCount = 0 -18266799 goalTotal = 20 -18266800 otherCount = 15 -~~~ -18266821 UP 10 -18266821 waslock = 0 -18266821 512 2048 -~~~ -18272909 DOWN 10 -18272909 0 2048 -~~~ -~~~ -~~~ -~~~ -18272936 homeCount = 38 -18272936 waitCount = 16 -18272937 ripCount = 19 -18272937 locktype1 = 0 -18272938 locktype2 = 2 -18272938 locktype3 = 1 -18272939 goalCount = 0 -18272939 goalTotal = 20 -18272940 otherCount = 15 -~~~ -18274852 UP 12 -18274852 2048 2048 -18278279 DOWN 12 -18278279 0 2048 -18278286 UP 12 -18278286 2048 2048 -18278290 DOWN 12 -18278290 0 2048 -18278305 UP 12 -18278305 2048 2048 -18281568 DOWN 12 -18281568 0 2048 -18281603 UP 12 -18281603 2048 2048 -18282352 CLICK1 -18282352 CLICK2 -~~~ -~~~ -~~~ -18282379 2048 67110912 -~~~ -18282529 2048 2048 -18288085 DOWN 12 -18288085 0 2048 -~~~ -~~~ -18288103 0 0 -~~~ -~~~ -18288105 0 1 -~~~ -18288106 UP 12 -18288106 2048 1 -~~~ -~~~ -~~~ -18288109 2048 7 -~~~ -~~~ -18288110 2048 15 -~~~ -~~~ -18288112 2048 31 -~~~ -~~~ -18288114 2048 63 -~~~ -~~~ -18288116 2048 127 -~~~ -~~~ -18288118 2048 255 -18288119 homeCount = 38 -18288119 waitCount = 17 -18288140 ripCount = 19 -18288140 locktype1 = 0 -18288141 locktype2 = 2 -18288141 locktype3 = 1 -18288142 goalCount = 0 -18288142 goalTotal = 20 -18288143 otherCount = 15 -~~~ -18288144 CURRENTGOAL IS [3] -~~~ -18288166 DOWN 12 -18288166 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18288203 homeCount = 38 -18288203 waitCount = 17 -18288204 ripCount = 19 -18288204 locktype1 = 0 -18288205 locktype2 = 2 -18288205 locktype3 = 1 -18288206 goalCount = 0 -18288206 goalTotal = 20 -18288207 otherCount = 15 -~~~ -18288208 CURRENTGOAL IS [3] -~~~ -18292311 UP 3 -18292311 4 255 -~~~ -~~~ -18292337 outer reward -~~~ -18292338 4 262399 -~~~ -~~~ -18292624 DOWN 3 -18292624 0 262399 -~~~ -~~~ -18292648 0 262398 -~~~ -~~~ -18292650 0 262396 -~~~ -~~~ -18292651 0 262392 -~~~ -~~~ -18292653 0 262384 -~~~ -~~~ -18292655 0 262368 -~~~ -18292656 4 262368 -~~~ -~~~ -18292658 4 262336 -~~~ -~~~ -18292660 4 262272 -~~~ -18292661 4 262144 -~~~ -~~~ -18292662 4 262656 -18292663 homeCount = 38 -18292684 waitCount = 17 -18292685 ripCount = 19 -18292685 locktype1 = 0 -18292686 locktype2 = 2 -18292686 locktype3 = 1 -18292687 goalCount = 1 -18292687 goalTotal = 21 -18292688 otherCount = 15 -~~~ -18292787 4 512 -18293056 DOWN 3 -18293056 0 512 -18293081 4 512 -18293179 DOWN 3 -18293179 0 512 -18293201 4 512 -18293306 DOWN 3 -18293306 0 512 -18293327 4 512 -18293431 DOWN 3 -18293431 0 512 -18293456 4 512 -18293561 DOWN 3 -18293561 0 512 -18293585 4 512 -18293698 DOWN 3 -18293698 0 512 -18293718 4 512 -18293833 DOWN 3 -18293833 0 512 -18293855 4 512 -18293976 DOWN 3 -18293976 0 512 -18293991 4 512 -18294119 DOWN 3 -18294119 0 512 -18294131 4 512 -18299516 DOWN 3 -18299516 0 512 -18299584 4 512 -18299611 DOWN 3 -18299611 0 512 -18305797 UP 10 -18305797 waslock = 0 -18305797 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18305825 512 16777728 -~~~ -18305975 512 512 -18311404 DOWN 10 -18311404 0 512 -~~~ -~~~ -18311429 0 1536 -~~~ -~~~ -18311431 0 1024 -18311432 homeCount = 39 -18311432 waitCount = 17 -18311433 ripCount = 19 -18311433 locktype1 = 0 -18311434 locktype2 = 2 -18311434 locktype3 = 1 -18311435 goalCount = 1 -18311435 goalTotal = 21 -18311436 otherCount = 15 -~~~ -18311457 UP 10 -18311457 waslock = 0 -18311457 512 1024 -~~~ -18311489 DOWN 10 -18311489 0 1024 -~~~ -~~~ -~~~ -~~~ -18311503 homeCount = 39 -18311503 waitCount = 17 -18311504 ripCount = 19 -18311504 locktype1 = 0 -18311505 locktype2 = 2 -18311505 locktype3 = 1 -18311506 goalCount = 1 -18311506 goalTotal = 21 -18311507 otherCount = 15 -~~~ -18313122 UP 11 -18313122 1024 1024 -18322122 BEEP1 -18322122 BEEP2 -~~~ -~~~ -~~~ -18322144 1024 33555456 -~~~ -18322294 1024 1024 -18326944 DOWN 11 -18326944 0 1024 -18326951 UP 11 -18326951 1024 1024 -~~~ -~~~ -18326969 1024 0 -~~~ -~~~ -18326971 1024 1 -~~~ -~~~ -18326973 1024 3 -~~~ -~~~ -18326975 1024 7 -~~~ -~~~ -18326976 1024 15 -~~~ -~~~ -18326978 1024 31 -~~~ -~~~ -18326980 1024 63 -~~~ -~~~ -18326982 1024 127 -~~~ -~~~ -18326984 1024 255 -18326985 homeCount = 39 -18326985 waitCount = 17 -18326986 ripCount = 20 -18327007 locktype1 = 0 -18327007 locktype2 = 2 -18327008 locktype3 = 1 -18327008 goalCount = 1 -18327009 goalTotal = 21 -18327009 otherCount = 15 -~~~ -18327010 CURRENTGOAL IS [3] -~~~ -18327218 DOWN 11 -18327218 0 255 -~~~ -~~~ -~~~ -18327242 UP 11 -18327242 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18327257 homeCount = 39 -18327257 waitCount = 17 -18327258 ripCount = 20 -18327258 locktype1 = 0 -18327259 locktype2 = 2 -18327259 locktype3 = 1 -18327260 goalCount = 1 -18327260 goalTotal = 21 -18327261 otherCount = 15 -~~~ -18327262 CURRENTGOAL IS [3] -~~~ -18330417 DOWN 11 -18330417 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18330460 homeCount = 39 -18330461 waitCount = 17 -18330461 ripCount = 20 -18330462 locktype1 = 0 -18330462 locktype2 = 2 -18330463 locktype3 = 1 -18330463 goalCount = 1 -18330464 goalTotal = 21 -18330464 otherCount = 15 -~~~ -18330465 CURRENTGOAL IS [3] -~~~ -18335296 UP 2 -18335296 2 255 -~~~ -~~~ -18335330 DOWN 2 -18335330 0 255 -~~~ -18335345 2 255 -~~~ -~~~ -18335347 2 254 -~~~ -~~~ -18335348 2 252 -~~~ -18335350 2 248 -~~~ -~~~ -18335351 2 240 -~~~ -~~~ -18335353 2 224 -~~~ -~~~ -18335355 2 192 -~~~ -~~~ -18335357 2 128 -~~~ -~~~ -18335358 2 0 -~~~ -~~~ -18335360 2 512 -18335361 homeCount = 39 -18335362 waitCount = 17 -18335362 ripCount = 20 -18335384 locktype1 = 0 -18335384 locktype2 = 2 -18335385 locktype3 = 1 -18335385 goalCount = 1 -18335385 goalTotal = 21 -18335386 otherCount = 16 -~~~ -18335768 DOWN 2 -18335768 0 512 -18335780 2 512 -18336120 DOWN 2 -18336120 0 512 -18336346 2 512 -18336362 DOWN 2 -18336362 0 512 -18336949 2 512 -18337029 DOWN 2 -18337029 0 512 -18340544 UP 10 -18340544 waslock = 0 -18340544 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18340570 512 16777728 -~~~ -18340720 512 512 -18344340 DOWN 10 -18344340 0 512 -~~~ -~~~ -18344365 0 2560 -~~~ -~~~ -18344367 0 2048 -18344368 homeCount = 40 -18344368 waitCount = 17 -18344369 ripCount = 20 -18344369 locktype1 = 0 -18344370 locktype2 = 2 -18344370 locktype3 = 1 -18344371 goalCount = 1 -18344371 goalTotal = 21 -18344372 otherCount = 16 -~~~ -18344393 UP 10 -18344393 waslock = 0 -18344393 512 2048 -~~~ -18344426 DOWN 10 -18344426 0 2048 -~~~ -~~~ -~~~ -~~~ -18344451 homeCount = 40 -18344451 waitCount = 17 -18344452 ripCount = 20 -18344452 locktype1 = 0 -18344453 locktype2 = 2 -18344453 locktype3 = 1 -18344454 goalCount = 1 -18344454 goalTotal = 21 -18344455 otherCount = 16 -~~~ -18346034 UP 12 -18346034 2048 2048 -18353034 CLICK1 -18353034 CLICK2 -~~~ -~~~ -~~~ -18353058 2048 67110912 -~~~ -18353208 2048 2048 -18353356 DOWN 12 -18353356 0 2048 -~~~ -~~~ -18353377 0 0 -~~~ -~~~ -18353379 0 1 -~~~ -~~~ -18353381 0 3 -~~~ -~~~ -18353383 0 7 -~~~ -~~~ -18353385 0 15 -~~~ -~~~ -18353387 0 31 -~~~ -~~~ -18353388 0 63 -~~~ -~~~ -18353390 0 127 -~~~ -~~~ -18353392 0 255 -18353393 homeCount = 40 -18353394 waitCount = 18 -18353394 ripCount = 20 -18353395 locktype1 = 0 -18353395 locktype2 = 2 -18353416 locktype3 = 1 -18353417 goalCount = 1 -18353417 goalTotal = 21 -18353418 otherCount = 16 -~~~ -18353419 CURRENTGOAL IS [3] -~~~ -18353419 UP 12 -18353419 2048 255 -18359231 DOWN 12 -18359231 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18359273 homeCount = 40 -18359274 waitCount = 18 -18359274 ripCount = 20 -18359275 locktype1 = 0 -18359276 locktype2 = 2 -18359276 locktype3 = 1 -18359276 goalCount = 1 -18359277 goalTotal = 21 -18359277 otherCount = 16 -~~~ -18359279 CURRENTGOAL IS [3] -~~~ -18359318 UP 12 -18359318 2048 255 -18359326 DOWN 12 -18359326 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18359353 homeCount = 40 -18359354 waitCount = 18 -18359354 ripCount = 20 -18359355 locktype1 = 0 -18359355 locktype2 = 2 -18359356 locktype3 = 1 -18359356 goalCount = 1 -18359357 goalTotal = 21 -18359357 otherCount = 16 -~~~ -18359358 CURRENTGOAL IS [3] -~~~ -18367152 UP 10 -18367152 waslock = 0 -18367152 512 255 -~~~ -18367170 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18367178 512 254 -~~~ -~~~ -18367180 512 252 -~~~ -~~~ -18367181 512 248 -~~~ -~~~ -18367183 512 240 -~~~ -~~~ -18367185 512 224 -~~~ -~~~ -18367187 512 192 -~~~ -~~~ -18367189 512 128 -~~~ -~~~ -18367191 512 0 -~~~ -~~~ -~~~ -18367431 0 0 -18367494 512 0 -18368467 0 0 -18370070 512 0 -18370115 0 0 -18390750 512 0 -18390835 0 0 -18390853 512 0 -18391792 0 0 -18391867 512 0 -18392170 LOCKEND -~~~ -~~~ -~~~ -18392191 512 512 -18392406 DOWN 10 -18392406 0 512 -18392474 UP 10 -18392474 waslock = 0 -18392474 512 512 -18392493 DOWN 10 -18392493 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18392519 0 16777728 -~~~ -~~~ -~~~ -18392522 0 16778752 -~~~ -~~~ -18392524 0 16778240 -18392525 homeCount = 41 -18392525 waitCount = 18 -18392526 ripCount = 20 -18392526 locktype1 = 0 -18392527 locktype2 = 3 -18392527 locktype3 = 1 -18392528 goalCount = 1 -18392528 goalTotal = 21 -18392529 otherCount = 16 -~~~ -18392654 UP 10 -18392654 waslock = 0 -18392654 512 16778240 -18392669 512 1024 -~~~ -18392693 DOWN 10 -18392693 0 1024 -~~~ -~~~ -~~~ -~~~ -18392714 homeCount = 41 -18392715 waitCount = 18 -18392715 ripCount = 20 -18392716 locktype1 = 0 -18392716 locktype2 = 3 -18392717 locktype3 = 1 -18392717 goalCount = 1 -18392718 goalTotal = 21 -18392718 otherCount = 16 -~~~ -18392893 UP 10 -18392894 waslock = 0 -18392893 512 1024 -~~~ -18399200 DOWN 10 -18399200 0 1024 -~~~ -~~~ -~~~ -~~~ -18399223 homeCount = 41 -18399224 waitCount = 18 -18399224 ripCount = 20 -18399225 locktype1 = 0 -18399225 locktype2 = 3 -18399226 locktype3 = 1 -18399226 goalCount = 1 -18399227 goalTotal = 21 -18399227 otherCount = 16 -~~~ -18399231 UP 10 -18399231 waslock = 0 -18399231 512 1024 -~~~ -18399278 DOWN 10 -18399278 0 1024 -~~~ -~~~ -~~~ -~~~ -18399297 homeCount = 41 -18399297 waitCount = 18 -18399298 ripCount = 20 -18399298 locktype1 = 0 -18399299 locktype2 = 3 -18399299 locktype3 = 1 -18399300 goalCount = 1 -18399300 goalTotal = 21 -18399301 otherCount = 16 -~~~ -18402849 UP 11 -18402849 1024 1024 -18403841 DOWN 11 -18403841 0 1024 -18403876 UP 11 -18403876 1024 1024 -18404665 DOWN 11 -18404665 0 1024 -18404719 UP 11 -18404719 1024 1024 -18405850 BEEP1 -18405850 BEEP2 -~~~ -~~~ -~~~ -18405873 1024 33555456 -~~~ -18406023 1024 1024 -18411287 DOWN 11 -18411286 0 1024 -~~~ -~~~ -18411311 0 0 -~~~ -~~~ -18411313 0 1 -~~~ -~~~ -18411315 0 3 -~~~ -~~~ -18411317 UP 11 -18411317 1024 7 -~~~ -~~~ -18411319 1024 15 -~~~ -~~~ -18411320 1024 31 -~~~ -~~~ -18411322 1024 63 -~~~ -~~~ -18411324 1024 127 -~~~ -~~~ -18411326 1024 255 -18411327 homeCount = 41 -18411327 waitCount = 18 -18411349 ripCount = 21 -18411349 locktype1 = 0 -18411349 locktype2 = 3 -18411350 locktype3 = 1 -18411350 goalCount = 1 -18411351 goalTotal = 21 -18411352 otherCount = 16 -~~~ -18411353 CURRENTGOAL IS [3] -~~~ -18411418 DOWN 11 -18411418 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18411461 homeCount = 41 -18411461 waitCount = 18 -18411462 ripCount = 21 -18411462 locktype1 = 0 -18411463 locktype2 = 3 -18411463 locktype3 = 1 -18411464 goalCount = 1 -18411464 goalTotal = 21 -18411465 otherCount = 16 -~~~ -18411466 CURRENTGOAL IS [3] -~~~ -18411487 UP 11 -18411487 1024 255 -18411552 DOWN 11 -18411552 0 255 -18411570 UP 11 -18411570 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18411606 homeCount = 41 -18411606 waitCount = 18 -18411607 ripCount = 21 -18411607 locktype1 = 0 -18411608 locktype2 = 3 -18411608 locktype3 = 1 -18411609 goalCount = 1 -18411609 goalTotal = 21 -18411610 otherCount = 16 -~~~ -18411611 CURRENTGOAL IS [3] -~~~ -18413548 DOWN 11 -18413548 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18413589 homeCount = 41 -18413590 waitCount = 18 -18413590 ripCount = 21 -18413591 locktype1 = 0 -18413591 locktype2 = 3 -18413592 locktype3 = 1 -18413592 goalCount = 1 -18413593 goalTotal = 21 -18413593 otherCount = 16 -~~~ -18413594 CURRENTGOAL IS [3] -~~~ -18413618 UP 11 -18413618 1024 255 -18413653 DOWN 11 -18413653 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18413689 homeCount = 41 -18413690 waitCount = 18 -18413691 ripCount = 21 -18413691 locktype1 = 0 -18413692 locktype2 = 3 -18413692 locktype3 = 1 -18413693 goalCount = 1 -18413693 goalTotal = 21 -18413694 otherCount = 16 -~~~ -18413695 CURRENTGOAL IS [3] -~~~ -18427752 UP 3 -18427752 4 255 -~~~ -~~~ -18427780 outer reward -~~~ -18427781 4 262399 -~~~ -~~~ -18428037 DOWN 3 -18428037 0 262399 -~~~ -~~~ -18428056 0 262398 -~~~ -~~~ -18428057 0 262396 -~~~ -~~~ -18428059 0 262392 -~~~ -~~~ -18428061 0 262384 -~~~ -~~~ -18428063 0 262368 -~~~ -~~~ -18428065 0 262336 -~~~ -~~~ -18428067 0 262272 -~~~ -~~~ -18428068 0 262144 -~~~ -~~~ -18428070 0 262656 -18428071 homeCount = 41 -18428072 waitCount = 18 -18428072 ripCount = 21 -18428093 locktype1 = 0 -18428094 locktype2 = 3 -18428094 locktype3 = 1 -18428095 goalCount = 2 -18428095 goalTotal = 22 -18428096 otherCount = 16 -~~~ -18428096 4 262656 -18428230 4 512 -18428443 DOWN 3 -18428443 0 512 -18428476 4 512 -18428561 DOWN 3 -18428561 0 512 -18428599 4 512 -18428685 DOWN 3 -18428685 0 512 -18428724 4 512 -18428808 DOWN 3 -18428808 0 512 -18428850 4 512 -18428934 DOWN 3 -18428934 0 512 -18428970 4 512 -18429072 DOWN 3 -18429072 0 512 -18429100 4 512 -18429211 DOWN 3 -18429211 0 512 -18429239 4 512 -18429351 DOWN 3 -18429351 0 512 -18429374 4 512 -18429495 DOWN 3 -18429495 0 512 -18429514 4 512 -18429638 DOWN 3 -18429638 0 512 -18429655 4 512 -18435540 DOWN 3 -18435540 0 512 -18435579 4 512 -18435628 DOWN 3 -18435628 0 512 -18441200 UP 10 -18441200 waslock = 0 -18441200 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18441225 512 16777728 -~~~ -18441375 512 512 -18446646 DOWN 10 -18446646 0 512 -18446663 UP 10 -18446663 waslock = 0 -18446663 512 512 -~~~ -~~~ -18446669 512 1536 -~~~ -~~~ -18446671 512 1024 -18446672 homeCount = 42 -18446673 waitCount = 18 -18446673 ripCount = 21 -18446674 locktype1 = 0 -18446674 locktype2 = 3 -18446675 locktype3 = 1 -18446675 goalCount = 2 -18446676 goalTotal = 22 -18446676 otherCount = 16 -~~~ -~~~ -18446731 DOWN 10 -18446731 0 1024 -~~~ -~~~ -~~~ -~~~ -18446752 homeCount = 42 -18446752 waitCount = 18 -18446753 ripCount = 21 -18446753 locktype1 = 0 -18446754 locktype2 = 3 -18446754 locktype3 = 1 -18446755 goalCount = 2 -18446755 goalTotal = 22 -18446756 otherCount = 16 -~~~ -18449519 UP 11 -18449519 1024 1024 -18449878 DOWN 11 -18449878 0 1024 -18450078 LOCKOUT 3 -~~~ -18450101 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -18450105 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18463180 UP 1 -18463180 1 0 -18465562 DOWN 1 -18465562 0 0 -18465583 1 0 -18465670 DOWN 1 -18465670 0 0 -18465744 1 0 -18465767 DOWN 1 -18465767 0 0 -18475101 LOCKEND -~~~ -~~~ -~~~ -18475120 0 512 -18476607 UP 10 -18476608 waslock = 0 -18476607 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18476638 512 16777728 -~~~ -18476788 512 512 -18476832 DOWN 10 -18476832 0 512 -18476847 UP 10 -18476848 waslock = 0 -18476847 512 512 -~~~ -~~~ -18476852 512 2560 -~~~ -~~~ -18476854 512 2048 -18476855 homeCount = 43 -18476855 waitCount = 18 -18476856 ripCount = 21 -18476856 locktype1 = 0 -18476857 locktype2 = 3 -18476857 locktype3 = 2 -18476858 goalCount = 2 -18476858 goalTotal = 22 -18476859 otherCount = 16 -~~~ -~~~ -18477271 DOWN 10 -18477271 0 2048 -~~~ -~~~ -~~~ -~~~ -18477297 homeCount = 43 -18477297 waitCount = 18 -18477298 ripCount = 21 -18477298 locktype1 = 0 -18477299 locktype2 = 3 -18477299 locktype3 = 2 -18477299 goalCount = 2 -18477300 goalTotal = 22 -18477300 otherCount = 16 -~~~ -18477304 UP 10 -18477305 waslock = 0 -18477304 512 2048 -~~~ -18480504 DOWN 10 -18480503 0 2048 -~~~ -~~~ -~~~ -~~~ -18480533 homeCount = 43 -18480533 waitCount = 18 -18480534 ripCount = 21 -18480534 locktype1 = 0 -18480535 locktype2 = 3 -18480535 locktype3 = 2 -18480535 goalCount = 2 -18480536 goalTotal = 22 -18480536 otherCount = 16 -~~~ -18486382 UP 12 -18486382 2048 2048 -18489050 DOWN 12 -18489050 0 2048 -18489054 UP 12 -18489054 2048 2048 -18489417 DOWN 12 -18489417 0 2048 -18489429 UP 12 -18489429 2048 2048 -18492382 CLICK1 -18492382 CLICK2 -~~~ -~~~ -~~~ -18492402 2048 67110912 -~~~ -18492552 2048 2048 -18499697 DOWN 12 -18499697 0 2048 -~~~ -~~~ -18499721 0 0 -~~~ -~~~ -18499722 0 1 -~~~ -~~~ -18499724 0 3 -~~~ -~~~ -18499726 0 7 -~~~ -~~~ -18499728 0 15 -~~~ -~~~ -18499730 0 31 -~~~ -~~~ -18499731 0 63 -~~~ -~~~ -18499733 0 127 -~~~ -~~~ -18499735 0 255 -18499736 homeCount = 43 -18499737 waitCount = 19 -18499737 ripCount = 21 -18499738 locktype1 = 0 -18499738 locktype2 = 3 -18499759 locktype3 = 2 -18499759 goalCount = 2 -18499760 goalTotal = 22 -18499760 otherCount = 16 -~~~ -18499761 CURRENTGOAL IS [3] -~~~ -18499762 UP 12 -18499762 2048 255 -18499791 DOWN 12 -18499791 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18499824 homeCount = 43 -18499824 waitCount = 19 -18499825 ripCount = 21 -18499825 locktype1 = 0 -18499826 locktype2 = 3 -18499826 locktype3 = 2 -18499827 goalCount = 2 -18499827 goalTotal = 22 -18499828 otherCount = 16 -~~~ -18499829 CURRENTGOAL IS [3] -~~~ -18503006 UP 3 -18503006 4 255 -~~~ -~~~ -18503026 outer reward -~~~ -18503026 4 262399 -~~~ -~~~ -18503213 DOWN 3 -18503213 0 262399 -~~~ -~~~ -18503234 0 262398 -~~~ -~~~ -18503236 0 262396 -~~~ -~~~ -18503238 0 262392 -~~~ -~~~ -18503240 0 262384 -~~~ -~~~ -18503242 0 262368 -~~~ -~~~ -18503243 0 262336 -~~~ -~~~ -18503245 0 262272 -~~~ -~~~ -18503247 0 262144 -~~~ -~~~ -18503249 0 262656 -18503250 homeCount = 43 -18503250 waitCount = 19 -18503251 ripCount = 21 -18503272 locktype1 = 0 -18503273 locktype2 = 3 -18503273 locktype3 = 2 -18503274 goalCount = 3 -18503274 goalTotal = 23 -18503275 otherCount = 16 -~~~ -18503279 4 262656 -18503402 DOWN 3 -18503402 0 262656 -18503448 4 262656 -18503476 4 512 -18503554 DOWN 3 -18503554 0 512 -18503589 4 512 -18504212 DOWN 3 -18504212 0 512 -18504219 4 512 -18504339 DOWN 3 -18504339 0 512 -18504353 4 512 -18504473 DOWN 3 -18504473 0 512 -18504487 4 512 -18504613 DOWN 3 -18504613 0 512 -18504623 4 512 -18511674 DOWN 3 -18511674 0 512 -18516945 UP 10 -18516945 waslock = 0 -18516944 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18516972 512 16777728 -~~~ -18517021 DOWN 10 -18517021 0 16777728 -~~~ -~~~ -18517045 0 16779776 -~~~ -~~~ -18517047 0 16779264 -18517048 homeCount = 44 -18517049 waitCount = 19 -18517049 ripCount = 21 -18517050 locktype1 = 0 -18517050 locktype2 = 3 -18517051 locktype3 = 2 -18517051 goalCount = 3 -18517052 goalTotal = 23 -18517052 otherCount = 16 -~~~ -18517073 UP 10 -18517073 waslock = 0 -18517073 512 16779264 -~~~ -18517122 512 2048 -18517244 DOWN 10 -18517244 0 2048 -~~~ -~~~ -~~~ -~~~ -18517267 homeCount = 44 -18517268 waitCount = 19 -18517268 ripCount = 21 -18517269 locktype1 = 0 -18517269 locktype2 = 3 -18517270 locktype3 = 2 -18517270 goalCount = 3 -18517271 goalTotal = 23 -18517271 otherCount = 16 -~~~ -18517332 UP 10 -18517332 waslock = 0 -18517332 512 2048 -~~~ -18523840 DOWN 10 -18523840 0 2048 -~~~ -~~~ -~~~ -~~~ -18523866 homeCount = 44 -18523867 waitCount = 19 -18523867 ripCount = 21 -18523868 locktype1 = 0 -18523868 locktype2 = 3 -18523869 locktype3 = 2 -18523869 goalCount = 3 -18523870 goalTotal = 23 -18523870 otherCount = 16 -~~~ -18523918 UP 10 -18523918 waslock = 0 -18523918 512 2048 -~~~ -18523968 DOWN 10 -18523968 0 2048 -~~~ -~~~ -~~~ -~~~ -18524000 homeCount = 44 -18524000 waitCount = 19 -18524001 ripCount = 21 -18524001 locktype1 = 0 -18524002 locktype2 = 3 -18524002 locktype3 = 2 -18524003 goalCount = 3 -18524003 goalTotal = 23 -18524004 otherCount = 16 -~~~ -18526588 UP 12 -18526588 2048 2048 -18528844 DOWN 12 -18528844 0 2048 -18528979 UP 12 -18528979 2048 2048 -18530361 DOWN 12 -18530361 0 2048 -18530370 UP 12 -18530370 2048 2048 -18533589 CLICK1 -18533589 CLICK2 -~~~ -~~~ -~~~ -18533616 2048 67110912 -~~~ -18533766 2048 2048 -18539900 DOWN 12 -18539900 0 2048 -18539915 UP 12 -18539915 2048 2048 -~~~ -~~~ -18539936 2048 0 -~~~ -~~~ -18539938 2048 1 -~~~ -~~~ -18539940 2048 3 -~~~ -~~~ -18539942 2048 7 -~~~ -~~~ -18539944 2048 15 -~~~ -~~~ -18539945 2048 31 -~~~ -~~~ -18539947 2048 63 -~~~ -~~~ -18539949 2048 127 -~~~ -~~~ -18539951 2048 255 -18539952 homeCount = 44 -18539952 waitCount = 20 -18539953 ripCount = 21 -18539974 locktype1 = 0 -18539974 locktype2 = 3 -18539975 locktype3 = 2 -18539975 goalCount = 3 -18539976 goalTotal = 23 -18539976 otherCount = 16 -~~~ -18539978 CURRENTGOAL IS [3] -~~~ -18539978 DOWN 12 -18539978 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18540031 homeCount = 44 -18540031 waitCount = 20 -18540032 ripCount = 21 -18540032 locktype1 = 0 -18540033 locktype2 = 3 -18540033 locktype3 = 2 -18540034 goalCount = 3 -18540034 goalTotal = 23 -18540035 otherCount = 16 -~~~ -18540036 CURRENTGOAL IS [3] -~~~ -18540070 UP 12 -18540070 2048 255 -18541775 DOWN 12 -18541775 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18541811 homeCount = 44 -18541811 waitCount = 20 -18541812 ripCount = 21 -18541812 locktype1 = 0 -18541813 locktype2 = 3 -18541813 locktype3 = 2 -18541814 goalCount = 3 -18541814 goalTotal = 23 -18541815 otherCount = 16 -~~~ -18541816 CURRENTGOAL IS [3] -~~~ -18546659 UP 3 -18546659 4 255 -18546682 DOWN 3 -18546682 0 255 -~~~ -~~~ -18546687 outer reward -~~~ -18546687 0 262399 -~~~ -~~~ -~~~ -~~~ -18546705 0 262398 -~~~ -~~~ -18546707 0 262396 -~~~ -~~~ -18546708 0 262392 -~~~ -~~~ -18546710 0 262384 -~~~ -~~~ -18546712 0 262368 -~~~ -~~~ -18546714 0 262336 -~~~ -~~~ -18546716 0 262272 -~~~ -~~~ -18546718 0 262144 -~~~ -~~~ -18546720 0 262656 -18546721 homeCount = 44 -18546721 waitCount = 20 -18546722 ripCount = 21 -18546743 locktype1 = 0 -18546743 locktype2 = 3 -18546744 locktype3 = 2 -18546744 goalCount = 4 -18546745 goalTotal = 24 -18546745 otherCount = 16 -~~~ -18546749 4 262656 -18546765 DOWN 3 -18546765 0 262656 -18546772 4 262656 -18547009 DOWN 3 -18547009 0 262656 -18547054 4 262656 -18547137 4 512 -18547322 DOWN 3 -18547322 0 512 -18547332 4 512 -18547439 DOWN 3 -18547439 0 512 -18547461 4 512 -18547566 DOWN 3 -18547566 0 512 -18547594 4 512 -18547707 DOWN 3 -18547707 0 512 -18547728 4 512 -18547850 DOWN 3 -18547850 0 512 -18547867 4 512 -18547995 DOWN 3 -18547995 0 512 -18548006 4 512 -18548140 DOWN 3 -18548140 0 512 -18548148 4 512 -18554299 DOWN 3 -18554299 0 512 -18554342 4 512 -18554410 DOWN 3 -18554410 0 512 -18559726 UP 10 -18559727 waslock = 0 -18559726 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18559752 512 16777728 -~~~ -18559902 512 512 -18559951 DOWN 10 -18559951 0 512 -18559967 UP 10 -18559967 waslock = 0 -18559967 512 512 -~~~ -~~~ -18559990 512 2560 -~~~ -~~~ -18559992 512 2048 -18559993 homeCount = 45 -18559994 waitCount = 20 -18559994 ripCount = 21 -18559995 locktype1 = 0 -18559995 locktype2 = 3 -18559996 locktype3 = 2 -18559996 goalCount = 4 -18559997 goalTotal = 24 -18559997 otherCount = 16 -~~~ -~~~ -18564270 DOWN 10 -18564270 0 2048 -~~~ -~~~ -~~~ -~~~ -18564299 homeCount = 45 -18564299 waitCount = 20 -18564300 ripCount = 21 -18564300 locktype1 = 0 -18564301 locktype2 = 3 -18564301 locktype3 = 2 -18564302 goalCount = 4 -18564302 goalTotal = 24 -18564303 otherCount = 16 -~~~ -18564342 UP 10 -18564343 waslock = 0 -18564342 512 2048 -18564366 DOWN 10 -18564366 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -18564389 homeCount = 45 -18564389 waitCount = 20 -18564390 ripCount = 21 -18564390 locktype1 = 0 -18564391 locktype2 = 3 -18564391 locktype3 = 2 -18564392 goalCount = 4 -18564392 goalTotal = 24 -18564393 otherCount = 16 -~~~ -18567704 UP 12 -18567704 2048 2048 -18569618 DOWN 12 -18569618 0 2048 -18569670 UP 12 -18569670 2048 2048 -18570808 DOWN 12 -18570808 0 2048 -18570818 UP 12 -18570818 2048 2048 -18572697 DOWN 12 -18572697 0 2048 -18572719 UP 12 -18572719 2048 2048 -18576704 CLICK1 -18576704 CLICK2 -~~~ -~~~ -~~~ -18576729 2048 67110912 -~~~ -18576879 2048 2048 -18583757 DOWN 12 -18583757 0 2048 -~~~ -~~~ -18583777 0 0 -~~~ -~~~ -18583779 0 1 -~~~ -~~~ -18583781 0 3 -~~~ -~~~ -18583783 0 7 -~~~ -~~~ -18583785 0 15 -~~~ -~~~ -18583786 0 31 -~~~ -~~~ -18583788 0 63 -~~~ -~~~ -18583790 0 127 -~~~ -~~~ -18583792 0 255 -18583793 homeCount = 45 -18583793 waitCount = 21 -18583794 ripCount = 21 -18583794 locktype1 = 0 -18583815 locktype2 = 3 -18583816 locktype3 = 2 -18583816 goalCount = 4 -18583817 goalTotal = 24 -18583817 otherCount = 16 -~~~ -18583819 CURRENTGOAL IS [3] -~~~ -18587416 UP 3 -18587416 4 255 -~~~ -~~~ -18587438 outer reward -~~~ -18587438 4 262399 -~~~ -~~~ -18587710 DOWN 3 -18587710 0 262399 -~~~ -~~~ -18587736 0 262398 -~~~ -~~~ -18587738 0 262396 -~~~ -~~~ -18587739 0 262392 -~~~ -~~~ -18587741 0 262384 -~~~ -~~~ -18587743 0 262368 -~~~ -~~~ -18587745 0 262336 -~~~ -~~~ -18587747 0 262272 -~~~ -~~~ -18587748 0 262144 -~~~ -~~~ -18587750 0 262656 -18587752 homeCount = 45 -18587752 waitCount = 21 -18587753 ripCount = 21 -18587774 locktype1 = 0 -18587774 locktype2 = 3 -18587775 locktype3 = 2 -18587775 goalCount = 5 -18587776 goalTotal = 25 -18587776 otherCount = 16 -~~~ -18587777 4 262656 -18587888 4 512 -18588129 DOWN 3 -18588129 0 512 -18588142 4 512 -18588388 DOWN 3 -18588388 0 512 -18588399 4 512 -18588514 DOWN 3 -18588514 0 512 -18588530 4 512 -18588647 DOWN 3 -18588647 0 512 -18588665 4 512 -18588781 DOWN 3 -18588781 0 512 -18588798 4 512 -18593276 DOWN 3 -18593276 0 512 -18593288 4 512 -18596652 DOWN 3 -18596652 0 512 -18602809 UP 10 -18602809 waslock = 0 -18602809 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18602835 512 16777728 -~~~ -18602985 512 512 -18606263 DOWN 10 -18606263 0 512 -~~~ -~~~ -18606286 0 2560 -~~~ -~~~ -18606288 0 2048 -18606289 homeCount = 46 -18606290 waitCount = 21 -18606290 ripCount = 21 -18606291 locktype1 = 0 -18606291 locktype2 = 3 -18606292 locktype3 = 2 -18606292 goalCount = 5 -18606293 goalTotal = 25 -18606293 otherCount = 16 -~~~ -18608915 UP 12 -18608915 2048 2048 -18610847 DOWN 12 -18610847 0 2048 -18610865 UP 12 -18610865 2048 2048 -18616415 CLICK1 -18616415 CLICK2 -~~~ -~~~ -~~~ -18616441 2048 67110912 -~~~ -18616590 2048 2048 -18621494 DOWN 12 -18621494 0 2048 -~~~ -~~~ -18621517 0 0 -~~~ -~~~ -18621519 0 1 -~~~ -~~~ -18621521 0 3 -~~~ -~~~ -18621522 0 7 -~~~ -~~~ -18621524 0 15 -~~~ -~~~ -18621526 0 31 -~~~ -~~~ -18621528 0 63 -~~~ -~~~ -18621530 0 127 -~~~ -~~~ -18621532 0 255 -18621533 homeCount = 46 -18621533 waitCount = 22 -18621534 ripCount = 21 -18621534 locktype1 = 0 -18621535 locktype2 = 3 -18621556 locktype3 = 2 -18621556 goalCount = 5 -18621557 goalTotal = 25 -18621557 otherCount = 16 -~~~ -18621558 CURRENTGOAL IS [3] -~~~ -18621560 UP 12 -18621560 2048 255 -18621597 DOWN 12 -18621597 0 255 -18621612 UP 12 -18621612 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18621629 DOWN 12 -18621629 0 255 -~~~ -~~~ -18621631 homeCount = 46 -18621632 waitCount = 22 -18621632 ripCount = 21 -18621633 locktype1 = 0 -18621633 locktype2 = 3 -18621634 locktype3 = 2 -18621634 goalCount = 5 -18621635 goalTotal = 25 -18621635 otherCount = 16 -~~~ -18621657 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18621682 homeCount = 46 -18621682 waitCount = 22 -18621683 ripCount = 21 -18621683 locktype1 = 0 -18621684 locktype2 = 3 -18621684 locktype3 = 2 -18621685 goalCount = 5 -18621685 goalTotal = 25 -18621686 otherCount = 16 -~~~ -18621687 CURRENTGOAL IS [3] -~~~ -18624994 UP 3 -18624994 4 255 -~~~ -~~~ -18625017 outer reward -~~~ -18625018 4 262399 -~~~ -~~~ -18625215 DOWN 3 -18625215 0 262399 -~~~ -~~~ -18625239 0 262398 -~~~ -~~~ -18625241 0 262396 -~~~ -~~~ -18625243 0 262392 -~~~ -~~~ -18625244 0 262384 -~~~ -~~~ -18625246 0 262368 -~~~ -~~~ -18625248 0 262336 -~~~ -~~~ -18625250 0 262272 -~~~ -~~~ -18625252 0 262144 -~~~ -~~~ -18625254 0 262656 -18625255 homeCount = 46 -18625255 waitCount = 22 -18625256 ripCount = 21 -18625277 locktype1 = 0 -18625277 locktype2 = 3 -18625278 locktype3 = 2 -18625278 goalCount = 6 -18625279 goalTotal = 26 -18625279 otherCount = 16 -~~~ -18625280 4 262656 -18625467 4 512 -18625771 DOWN 3 -18625771 0 512 -18625792 4 512 -18625894 DOWN 3 -18625894 0 512 -18625916 4 512 -18626018 DOWN 3 -18626018 0 512 -18626045 4 512 -18626149 DOWN 3 -18626149 0 512 -18626175 4 512 -18626293 DOWN 3 -18626293 0 512 -18626309 4 512 -18626446 DOWN 3 -18626446 0 512 -18626455 4 512 -18626598 DOWN 3 -18626598 0 512 -18626604 4 512 -18628358 DOWN 3 -18628358 0 512 -18628374 4 512 -18633219 DOWN 3 -18633219 0 512 -18633229 4 512 -18633558 DOWN 3 -18633558 0 512 -18640894 UP 10 -18640895 waslock = 0 -18640894 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18640921 512 16777728 -~~~ -18641071 512 512 -18641125 DOWN 10 -18641125 0 512 -~~~ -~~~ -18641147 0 1536 -~~~ -~~~ -18641149 0 1024 -18641150 homeCount = 47 -18641151 waitCount = 22 -18641151 ripCount = 21 -18641152 locktype1 = 0 -18641152 locktype2 = 3 -18641152 locktype3 = 2 -18641153 goalCount = 6 -18641153 goalTotal = 26 -18641154 otherCount = 16 -~~~ -18641175 UP 10 -18641175 waslock = 0 -18641175 512 1024 -~~~ -18644766 DOWN 10 -18644766 0 1024 -~~~ -~~~ -~~~ -~~~ -18644789 homeCount = 47 -18644790 waitCount = 22 -18644790 ripCount = 21 -18644791 locktype1 = 0 -18644791 locktype2 = 3 -18644792 locktype3 = 2 -18644792 goalCount = 6 -18644793 goalTotal = 26 -18644793 otherCount = 16 -~~~ -18644817 UP 10 -18644817 waslock = 0 -18644817 512 1024 -~~~ -18644873 DOWN 10 -18644873 0 1024 -~~~ -~~~ -~~~ -~~~ -18644899 homeCount = 47 -18644900 waitCount = 22 -18644900 ripCount = 21 -18644901 locktype1 = 0 -18644901 locktype2 = 3 -18644902 locktype3 = 2 -18644902 goalCount = 6 -18644903 goalTotal = 26 -18644903 otherCount = 16 -~~~ -18647367 UP 11 -18647367 1024 1024 -18647805 DOWN 11 -18647805 0 1024 -18647964 UP 11 -18647964 1024 1024 -18648007 DOWN 11 -18648007 0 1024 -18648039 UP 11 -18648039 1024 1024 -18649073 DOWN 11 -18649073 0 1024 -18649104 UP 11 -18649104 1024 1024 -18650368 BEEP1 -18650368 BEEP2 -~~~ -~~~ -~~~ -18650388 1024 33555456 -~~~ -18650538 1024 1024 -18658120 DOWN 11 -18658120 0 1024 -~~~ -~~~ -18658145 0 0 -~~~ -~~~ -18658147 0 1 -~~~ -~~~ -18658149 0 3 -~~~ -~~~ -18658150 0 7 -~~~ -~~~ -18658152 0 15 -~~~ -~~~ -18658154 0 31 -~~~ -18658155 UP 11 -18658155 1024 31 -~~~ -~~~ -18658157 1024 63 -~~~ -~~~ -18658159 1024 127 -~~~ -18658160 1024 255 -18658161 homeCount = 47 -18658162 waitCount = 22 -18658183 ripCount = 22 -18658183 locktype1 = 0 -18658184 locktype2 = 3 -18658184 locktype3 = 2 -18658185 goalCount = 6 -18658185 goalTotal = 26 -18658186 otherCount = 16 -~~~ -18658187 CURRENTGOAL IS [3] -~~~ -18658213 DOWN 11 -18658213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -18658239 UP 11 -18658239 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18658251 DOWN 11 -18658250 0 255 -18658252 homeCount = 47 -18658252 waitCount = 22 -18658253 ripCount = 22 -18658253 locktype1 = 0 -18658254 locktype2 = 3 -18658254 locktype3 = 2 -18658255 goalCount = 6 -18658255 goalTotal = 26 -18658256 otherCount = 16 -~~~ -18658278 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18658306 homeCount = 47 -18658307 waitCount = 22 -18658307 ripCount = 22 -18658308 locktype1 = 0 -18658308 locktype2 = 3 -18658309 locktype3 = 2 -18658309 goalCount = 6 -18658310 goalTotal = 26 -18658310 otherCount = 16 -~~~ -18658311 CURRENTGOAL IS [3] -~~~ -18658333 UP 11 -18658332 1024 255 -18660179 DOWN 11 -18660179 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18660213 homeCount = 47 -18660214 waitCount = 22 -18660214 ripCount = 22 -18660215 locktype1 = 0 -18660215 locktype2 = 3 -18660216 locktype3 = 2 -18660216 goalCount = 6 -18660217 goalTotal = 26 -18660217 otherCount = 16 -~~~ -18660218 CURRENTGOAL IS [3] -~~~ -18669161 UP 4 -18669161 8 255 -~~~ -~~~ -18669847 DOWN 4 -18669847 0 255 -~~~ -~~~ -18669867 0 254 -~~~ -~~~ -18669869 0 252 -~~~ -~~~ -18669871 0 248 -~~~ -~~~ -18669873 0 240 -~~~ -~~~ -18669874 0 224 -~~~ -~~~ -18669876 0 192 -~~~ -~~~ -18669878 0 128 -~~~ -~~~ -18669880 0 0 -~~~ -~~~ -18669882 0 512 -18669883 homeCount = 47 -18669883 waitCount = 22 -18669884 ripCount = 22 -18669884 locktype1 = 0 -18669906 locktype2 = 3 -18669906 locktype3 = 2 -18669907 goalCount = 6 -18669907 goalTotal = 26 -18669907 otherCount = 17 -~~~ -18675216 UP 10 -18675217 waslock = 0 -18675216 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18675244 512 16777728 -~~~ -18675394 512 512 -18675464 DOWN 10 -18675464 0 512 -~~~ -~~~ -18675487 0 1536 -~~~ -~~~ -18675489 0 1024 -18675490 homeCount = 48 -18675491 waitCount = 22 -18675491 ripCount = 22 -18675492 locktype1 = 0 -18675492 locktype2 = 3 -18675493 locktype3 = 2 -18675493 goalCount = 6 -18675494 goalTotal = 26 -18675494 otherCount = 17 -~~~ -18675516 UP 10 -18675516 waslock = 0 -18675516 512 1024 -~~~ -18678929 DOWN 10 -18678929 0 1024 -~~~ -~~~ -~~~ -~~~ -18678952 homeCount = 48 -18678953 waitCount = 22 -18678953 ripCount = 22 -18678954 locktype1 = 0 -18678954 locktype2 = 3 -18678955 locktype3 = 2 -18678955 goalCount = 6 -18678956 goalTotal = 26 -18678956 otherCount = 17 -~~~ -18680811 UP 11 -18680810 1024 1024 -18683346 DOWN 11 -18683346 0 1024 -18683354 UP 11 -18683354 1024 1024 -18683811 BEEP1 -18683811 BEEP2 -~~~ -~~~ -~~~ -18683831 1024 33555456 -~~~ -18683981 1024 1024 -18690848 DOWN 11 -18690848 0 1024 -~~~ -~~~ -18690870 0 0 -~~~ -~~~ -18690872 0 1 -~~~ -~~~ -18690874 0 3 -~~~ -~~~ -18690876 0 7 -~~~ -~~~ -18690878 0 15 -~~~ -~~~ -18690879 0 31 -~~~ -~~~ -18690881 0 63 -~~~ -~~~ -18690883 0 127 -~~~ -~~~ -18690885 0 255 -18690886 homeCount = 48 -18690886 waitCount = 22 -18690887 ripCount = 23 -18690888 locktype1 = 0 -18690888 locktype2 = 3 -18690909 locktype3 = 2 -18690909 goalCount = 6 -18690910 goalTotal = 26 -18690910 otherCount = 17 -~~~ -18690911 CURRENTGOAL IS [3] -~~~ -18690912 UP 11 -18690912 1024 255 -18690951 DOWN 11 -18690951 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18690988 homeCount = 48 -18690989 waitCount = 22 -18690989 ripCount = 23 -18690990 locktype1 = 0 -18690990 locktype2 = 3 -18690991 locktype3 = 2 -18690991 goalCount = 6 -18690992 goalTotal = 26 -18690992 otherCount = 17 -~~~ -18690993 CURRENTGOAL IS [3] -~~~ -18691033 UP 11 -18691033 1024 255 -18693082 DOWN 11 -18693082 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18693117 homeCount = 48 -18693118 waitCount = 22 -18693118 ripCount = 23 -18693119 locktype1 = 0 -18693119 locktype2 = 3 -18693120 locktype3 = 2 -18693120 goalCount = 6 -18693121 goalTotal = 26 -18693121 otherCount = 17 -~~~ -18693123 CURRENTGOAL IS [3] -~~~ -18698599 UP 2 -18698599 2 255 -~~~ -~~~ -18699845 DOWN 2 -18699845 0 255 -~~~ -~~~ -18699870 0 254 -~~~ -~~~ -18699872 0 252 -~~~ -~~~ -18699874 0 248 -~~~ -~~~ -18699876 0 240 -~~~ -~~~ -18699877 0 224 -~~~ -~~~ -18699879 0 192 -~~~ -~~~ -18699881 0 128 -~~~ -~~~ -18699883 0 0 -~~~ -~~~ -18699885 0 512 -18699886 homeCount = 48 -18699886 waitCount = 22 -18699887 ripCount = 23 -18699887 locktype1 = 0 -18699908 locktype2 = 3 -18699908 locktype3 = 2 -18699909 goalCount = 6 -18699909 goalTotal = 26 -18699910 otherCount = 18 -~~~ -18699963 2 512 -18700182 DOWN 2 -18700182 0 512 -18700384 2 512 -18700951 DOWN 2 -18700951 0 512 -18704490 UP 10 -18704491 waslock = 0 -18704490 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18704517 512 16777728 -~~~ -18704667 512 512 -18704708 DOWN 10 -18704708 0 512 -~~~ -~~~ -18704735 0 2560 -~~~ -~~~ -18704737 0 2048 -18704738 homeCount = 49 -18704738 waitCount = 22 -18704739 ripCount = 23 -18704739 locktype1 = 0 -18704740 locktype2 = 3 -18704740 locktype3 = 2 -18704741 goalCount = 6 -18704741 goalTotal = 26 -18704741 otherCount = 18 -~~~ -18704814 UP 10 -18704814 waslock = 0 -18704814 512 2048 -~~~ -18710733 DOWN 10 -18710733 0 2048 -18710750 UP 10 -18710750 waslock = 0 -18710750 512 2048 -~~~ -~~~ -~~~ -~~~ -18710758 homeCount = 49 -18710759 waitCount = 22 -18710759 ripCount = 23 -18710760 locktype1 = 0 -18710760 locktype2 = 3 -18710761 locktype3 = 2 -18710761 goalCount = 6 -18710762 goalTotal = 26 -18710762 otherCount = 18 -~~~ -~~~ -18710824 DOWN 10 -18710824 0 2048 -~~~ -~~~ -~~~ -~~~ -18710848 homeCount = 49 -18710848 waitCount = 22 -18710849 ripCount = 23 -18710849 locktype1 = 0 -18710850 locktype2 = 3 -18710850 locktype3 = 2 -18710851 goalCount = 6 -18710851 goalTotal = 26 -18710852 otherCount = 18 -~~~ -18712891 UP 12 -18712891 2048 2048 -18714448 DOWN 12 -18714448 0 2048 -18714495 UP 12 -18714495 2048 2048 -18719953 DOWN 12 -18719953 0 2048 -18719966 UP 12 -18719966 2048 2048 -18721892 CLICK1 -18721892 CLICK2 -~~~ -~~~ -~~~ -18721916 2048 67110912 -~~~ -18722066 2048 2048 -18727895 DOWN 12 -18727895 0 2048 -~~~ -~~~ -18727917 0 0 -~~~ -~~~ -18727919 0 1 -~~~ -~~~ -18727921 0 3 -~~~ -~~~ -18727923 0 7 -~~~ -~~~ -18727925 0 15 -~~~ -~~~ -18727926 0 31 -~~~ -~~~ -18727928 0 63 -~~~ -~~~ -18727930 0 127 -~~~ -~~~ -18727932 0 255 -18727933 homeCount = 49 -18727933 waitCount = 23 -18727934 ripCount = 23 -18727934 locktype1 = 0 -18727935 locktype2 = 3 -18727956 locktype3 = 2 -18727956 goalCount = 6 -18727957 goalTotal = 26 -18727957 otherCount = 18 -~~~ -18727958 CURRENTGOAL IS [3] -~~~ -18727959 UP 12 -18727959 2048 255 -18727992 DOWN 12 -18727992 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18728034 homeCount = 49 -18728035 waitCount = 23 -18728035 ripCount = 23 -18728036 locktype1 = 0 -18728036 locktype2 = 3 -18728037 locktype3 = 2 -18728037 goalCount = 6 -18728038 goalTotal = 26 -18728038 otherCount = 18 -~~~ -18728039 CURRENTGOAL IS [3] -~~~ -18755525 UP 10 -18755525 waslock = 0 -18755525 512 255 -~~~ -18755550 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18755557 512 254 -~~~ -~~~ -18755559 512 252 -~~~ -~~~ -18755561 512 248 -~~~ -~~~ -18755563 512 240 -~~~ -~~~ -18755565 512 224 -~~~ -~~~ -18755566 512 192 -~~~ -~~~ -18755568 512 128 -~~~ -~~~ -18755570 512 0 -~~~ -~~~ -~~~ -18755790 0 0 -18755827 512 0 -18756881 0 0 -18756920 512 0 -18756992 0 0 -18757067 512 0 -18757128 0 0 -18757165 512 0 -18757749 0 0 -18757778 512 0 -18757848 0 0 -18779443 UP 2 -18779443 2 0 -18779457 DOWN 2 -18779457 0 0 -18779539 2 0 -18779749 DOWN 2 -18779749 0 0 -18780550 LOCKEND -~~~ -~~~ -~~~ -18780570 0 512 -18787322 UP 10 -18787322 waslock = 0 -18787322 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18787355 512 16777728 -~~~ -18787505 512 512 -18787570 DOWN 10 -18787570 0 512 -~~~ -~~~ -18787590 0 2560 -~~~ -~~~ -18787592 0 2048 -18787593 homeCount = 50 -18787593 waitCount = 23 -18787594 ripCount = 23 -18787594 locktype1 = 0 -18787595 locktype2 = 4 -18787595 locktype3 = 2 -18787596 goalCount = 6 -18787596 goalTotal = 26 -18787597 otherCount = 18 -~~~ -18787721 UP 10 -18787721 waslock = 0 -18787721 512 2048 -~~~ -18788131 DOWN 10 -18788130 0 2048 -~~~ -~~~ -~~~ -~~~ -18788152 homeCount = 50 -18788153 waitCount = 23 -18788153 ripCount = 23 -18788154 locktype1 = 0 -18788155 locktype2 = 4 -18788155 locktype3 = 2 -18788156 goalCount = 6 -18788156 goalTotal = 26 -18788156 otherCount = 18 -~~~ -18788200 UP 10 -18788200 waslock = 0 -18788200 512 2048 -~~~ -18788239 DOWN 10 -18788239 0 2048 -~~~ -~~~ -~~~ -~~~ -18788265 homeCount = 50 -18788265 waitCount = 23 -18788266 ripCount = 23 -18788266 locktype1 = 0 -18788267 locktype2 = 4 -18788267 locktype3 = 2 -18788268 goalCount = 6 -18788268 goalTotal = 26 -18788269 otherCount = 18 -~~~ -18788360 UP 10 -18788360 waslock = 0 -18788360 512 2048 -~~~ -18788394 DOWN 10 -18788394 0 2048 -~~~ -~~~ -~~~ -~~~ -18788420 homeCount = 50 -18788420 waitCount = 23 -18788421 ripCount = 23 -18788421 locktype1 = 0 -18788422 locktype2 = 4 -18788422 locktype3 = 2 -18788423 goalCount = 6 -18788423 goalTotal = 26 -18788424 otherCount = 18 -~~~ -18788497 UP 10 -18788497 waslock = 0 -18788497 512 2048 -~~~ -18792370 DOWN 10 -18792370 0 2048 -~~~ -~~~ -~~~ -~~~ -18792392 homeCount = 50 -18792393 waitCount = 23 -18792393 ripCount = 23 -18792394 locktype1 = 0 -18792394 locktype2 = 4 -18792395 locktype3 = 2 -18792395 goalCount = 6 -18792396 goalTotal = 26 -18792396 otherCount = 18 -~~~ -18794314 UP 12 -18794314 2048 2048 -18798314 CLICK1 -18798314 CLICK2 -~~~ -~~~ -~~~ -18798335 2048 67110912 -~~~ -18798485 2048 2048 -18798830 DOWN 12 -18798830 0 2048 -~~~ -~~~ -18798852 0 0 -~~~ -~~~ -18798854 0 1 -~~~ -~~~ -18798856 0 3 -~~~ -~~~ -18798858 0 7 -~~~ -~~~ -18798860 0 15 -~~~ -~~~ -18798861 0 31 -~~~ -~~~ -18798863 0 63 -~~~ -~~~ -18798865 0 127 -~~~ -~~~ -18798867 0 255 -18798868 homeCount = 50 -18798868 waitCount = 24 -18798869 ripCount = 23 -18798869 locktype1 = 0 -18798870 locktype2 = 4 -18798891 locktype3 = 2 -18798891 goalCount = 6 -18798892 goalTotal = 26 -18798892 otherCount = 18 -~~~ -18798893 CURRENTGOAL IS [3] -~~~ -18799141 UP 12 -18799141 2048 255 -18805238 DOWN 12 -18805238 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18805280 homeCount = 50 -18805281 waitCount = 24 -18805281 ripCount = 23 -18805282 locktype1 = 0 -18805282 locktype2 = 4 -18805283 locktype3 = 2 -18805283 goalCount = 6 -18805284 goalTotal = 26 -18805284 otherCount = 18 -~~~ -18805285 CURRENTGOAL IS [3] -~~~ -18816138 UP 3 -18816138 4 255 -~~~ -~~~ -18816163 outer reward -~~~ -18816164 4 262399 -~~~ -~~~ -18816446 DOWN 3 -18816446 0 262399 -~~~ -~~~ -18816472 0 262398 -~~~ -~~~ -18816474 0 262396 -~~~ -~~~ -18816476 0 262392 -~~~ -~~~ -18816477 0 262384 -~~~ -~~~ -18816479 0 262368 -~~~ -~~~ -18816481 0 262336 -~~~ -~~~ -18816483 0 262272 -~~~ -~~~ -18816485 0 262144 -~~~ -~~~ -18816487 0 262656 -18816488 homeCount = 50 -18816488 waitCount = 24 -18816489 ripCount = 23 -18816510 locktype1 = 0 -18816510 locktype2 = 4 -18816511 locktype3 = 2 -18816511 goalCount = 7 -18816512 goalTotal = 27 -18816512 otherCount = 18 -~~~ -18816513 4 262656 -18816613 4 512 -18816865 DOWN 3 -18816865 0 512 -18816894 4 512 -18816982 DOWN 3 -18816982 0 512 -18817017 4 512 -18817107 DOWN 3 -18817107 0 512 -18817140 4 512 -18817244 DOWN 3 -18817244 0 512 -18817270 4 512 -18817376 DOWN 3 -18817376 0 512 -18817404 4 512 -18817518 DOWN 3 -18817518 0 512 -18817544 4 512 -18817665 DOWN 3 -18817665 0 512 -18817685 4 512 -18817810 DOWN 3 -18817810 0 512 -18817828 4 512 -18817959 DOWN 3 -18817959 0 512 -18817972 4 512 -18818112 DOWN 3 -18818112 0 512 -18818118 4 512 -18824909 DOWN 3 -18824909 0 512 -18824934 4 512 -18825030 DOWN 3 -18825030 0 512 -18825078 4 512 -18825125 DOWN 3 -18825125 0 512 -18830803 UP 10 -18830803 waslock = 0 -18830803 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18830828 512 16777728 -~~~ -18830978 512 512 -18831044 DOWN 10 -18831044 0 512 -~~~ -~~~ -18831064 0 1536 -~~~ -~~~ -18831066 0 1024 -18831067 homeCount = 51 -18831068 waitCount = 24 -18831068 ripCount = 23 -18831069 locktype1 = 0 -18831069 locktype2 = 4 -18831070 locktype3 = 2 -18831070 goalCount = 7 -18831071 goalTotal = 27 -18831071 otherCount = 18 -~~~ -18831092 UP 10 -18831093 waslock = 0 -18831092 512 1024 -~~~ -18838139 DOWN 10 -18838139 0 1024 -~~~ -~~~ -~~~ -~~~ -18838168 homeCount = 51 -18838169 waitCount = 24 -18838169 ripCount = 23 -18838170 locktype1 = 0 -18838170 locktype2 = 4 -18838171 locktype3 = 2 -18838171 goalCount = 7 -18838172 goalTotal = 27 -18838172 otherCount = 18 -~~~ -18840028 UP 11 -18840028 1024 1024 -18843430 DOWN 11 -18843430 0 1024 -18843441 UP 11 -18843441 1024 1024 -18844015 DOWN 11 -18844015 0 1024 -18844035 UP 11 -18844035 1024 1024 -18844730 DOWN 11 -18844730 0 1024 -18844737 UP 11 -18844737 1024 1024 -18844739 DOWN 11 -18844739 0 1024 -18844762 UP 11 -18844762 1024 1024 -18846028 BEEP1 -18846028 BEEP2 -~~~ -~~~ -~~~ -18846047 1024 33555456 -~~~ -18846197 1024 1024 -18851283 DOWN 11 -18851283 0 1024 -~~~ -~~~ -18851304 0 0 -~~~ -18851305 UP 11 -18851305 1024 0 -~~~ -~~~ -18851307 1024 1 -~~~ -~~~ -18851308 1024 3 -~~~ -~~~ -18851310 1024 7 -~~~ -18851311 1024 15 -~~~ -~~~ -18851313 1024 31 -~~~ -~~~ -18851314 1024 63 -~~~ -~~~ -18851316 1024 127 -~~~ -~~~ -18851318 1024 255 -18851319 homeCount = 51 -18851340 waitCount = 24 -18851341 ripCount = 24 -18851341 locktype1 = 0 -18851342 locktype2 = 4 -18851342 locktype3 = 2 -18851342 goalCount = 7 -18851343 goalTotal = 27 -18851343 otherCount = 18 -~~~ -18851345 CURRENTGOAL IS [3] -~~~ -18851424 DOWN 11 -18851424 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851453 UP 11 -18851453 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851460 homeCount = 51 -18851460 waitCount = 24 -18851461 ripCount = 24 -18851461 locktype1 = 0 -18851462 locktype2 = 4 -18851462 locktype3 = 2 -18851463 goalCount = 7 -18851463 goalTotal = 27 -18851464 otherCount = 18 -~~~ -18851465 CURRENTGOAL IS [3] -~~~ -18851571 DOWN 11 -18851571 0 255 -18851591 UP 11 -18851591 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18851623 homeCount = 51 -18851624 waitCount = 24 -18851624 ripCount = 24 -18851625 locktype1 = 0 -18851625 locktype2 = 4 -18851626 locktype3 = 2 -18851626 goalCount = 7 -18851627 goalTotal = 27 -18851627 otherCount = 18 -~~~ -18851628 CURRENTGOAL IS [3] -~~~ -18854817 DOWN 11 -18854817 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18854855 homeCount = 51 -18854856 waitCount = 24 -18854856 ripCount = 24 -18854857 locktype1 = 0 -18854857 locktype2 = 4 -18854858 locktype3 = 2 -18854858 goalCount = 7 -18854859 goalTotal = 27 -18854859 otherCount = 18 -~~~ -18854860 CURRENTGOAL IS [3] -~~~ -18859075 UP 7 -18859075 64 255 -~~~ -~~~ -18860364 DOWN 7 -18860364 0 255 -~~~ -~~~ -18860388 0 254 -~~~ -~~~ -18860390 0 252 -~~~ -~~~ -18860392 0 248 -~~~ -~~~ -18860394 0 240 -~~~ -~~~ -18860396 0 224 -~~~ -~~~ -18860397 0 192 -~~~ -~~~ -18860399 0 128 -~~~ -~~~ -18860401 0 0 -~~~ -~~~ -18860403 0 512 -18860404 homeCount = 51 -18860404 waitCount = 24 -18860405 ripCount = 24 -18860405 locktype1 = 0 -18860426 locktype2 = 4 -18860426 locktype3 = 2 -18860427 goalCount = 7 -18860427 goalTotal = 27 -18860428 otherCount = 19 -~~~ -18866353 UP 10 -18866353 waslock = 0 -18866353 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18866384 512 16777728 -~~~ -18866534 512 512 -18866683 DOWN 10 -18866683 0 512 -18866707 UP 10 -18866707 waslock = 0 -18866707 512 512 -~~~ -~~~ -18866712 512 1536 -~~~ -~~~ -18866713 512 1024 -18866715 homeCount = 52 -18866715 waitCount = 24 -18866716 ripCount = 24 -18866716 locktype1 = 0 -18866716 locktype2 = 4 -18866717 locktype3 = 2 -18866717 goalCount = 7 -18866718 goalTotal = 27 -18866718 otherCount = 19 -~~~ -~~~ -18872118 DOWN 10 -18872118 0 1024 -18872136 UP 10 -18872136 waslock = 0 -18872136 512 1024 -~~~ -~~~ -~~~ -~~~ -18872142 homeCount = 52 -18872143 waitCount = 24 -18872143 ripCount = 24 -18872144 locktype1 = 0 -18872144 locktype2 = 4 -18872145 locktype3 = 2 -18872145 goalCount = 7 -18872146 goalTotal = 27 -18872146 otherCount = 19 -~~~ -~~~ -18872215 DOWN 10 -18872215 0 1024 -~~~ -~~~ -~~~ -~~~ -18872244 homeCount = 52 -18872245 waitCount = 24 -18872245 ripCount = 24 -18872246 locktype1 = 0 -18872246 locktype2 = 4 -18872247 locktype3 = 2 -18872247 goalCount = 7 -18872248 goalTotal = 27 -18872248 otherCount = 19 -~~~ -18876242 UP 11 -18876242 1024 1024 -18880510 DOWN 11 -18880510 0 1024 -18880546 UP 11 -18880546 1024 1024 -18883742 BEEP1 -18883742 BEEP2 -~~~ -~~~ -~~~ -18883760 1024 33555456 -~~~ -18883910 1024 1024 -18890371 DOWN 11 -18890371 0 1024 -~~~ -~~~ -18890388 0 0 -~~~ -~~~ -18890390 0 1 -~~~ -~~~ -18890392 0 3 -~~~ -~~~ -18890394 0 7 -~~~ -~~~ -18890396 0 15 -~~~ -~~~ -18890397 0 31 -~~~ -~~~ -18890399 0 63 -~~~ -~~~ -18890401 0 127 -~~~ -~~~ -18890403 0 255 -18890404 homeCount = 52 -18890404 waitCount = 24 -18890405 ripCount = 25 -18890405 locktype1 = 0 -18890427 locktype2 = 4 -18890427 locktype3 = 2 -18890428 goalCount = 7 -18890428 goalTotal = 27 -18890429 otherCount = 19 -~~~ -18890430 CURRENTGOAL IS [3] -~~~ -18890451 UP 11 -18890451 1024 255 -18893254 DOWN 11 -18893254 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18893297 homeCount = 52 -18893297 waitCount = 24 -18893298 ripCount = 25 -18893298 locktype1 = 0 -18893299 locktype2 = 4 -18893299 locktype3 = 2 -18893300 goalCount = 7 -18893300 goalTotal = 27 -18893301 otherCount = 19 -~~~ -18893302 CURRENTGOAL IS [3] -~~~ -18900482 UP 3 -18900482 4 255 -~~~ -~~~ -18900502 outer reward -~~~ -18900502 4 262399 -~~~ -~~~ -18900730 DOWN 3 -18900730 0 262399 -~~~ -~~~ -18900753 0 262398 -~~~ -~~~ -18900755 0 262396 -~~~ -~~~ -18900756 0 262392 -~~~ -~~~ -18900758 0 262384 -~~~ -~~~ -18900760 0 262368 -~~~ -~~~ -18900762 0 262336 -~~~ -~~~ -18900764 0 262272 -~~~ -~~~ -18900765 0 262144 -~~~ -~~~ -18900767 0 262656 -18900768 homeCount = 52 -18900769 waitCount = 24 -18900769 ripCount = 25 -18900791 locktype1 = 0 -18900791 locktype2 = 4 -18900792 locktype3 = 2 -18900792 goalCount = 8 -18900793 goalTotal = 28 -18900793 otherCount = 19 -~~~ -18900794 4 262656 -18900903 DOWN 3 -18900903 0 262656 -18900920 4 262656 -18900952 4 512 -18901039 DOWN 3 -18901039 0 512 -18901060 4 512 -18901156 DOWN 3 -18901156 0 512 -18901187 4 512 -18901292 DOWN 3 -18901292 0 512 -18901310 4 512 -18901420 DOWN 3 -18901420 0 512 -18901440 4 512 -18901546 DOWN 3 -18901546 0 512 -18901573 4 512 -18901676 DOWN 3 -18901676 0 512 -18901702 4 512 -18901804 DOWN 3 -18901804 0 512 -18901832 4 512 -18901936 DOWN 3 -18901936 0 512 -18901964 4 512 -18902072 DOWN 3 -18902072 0 512 -18902098 4 512 -18902211 DOWN 3 -18902211 0 512 -18902233 4 512 -18902355 DOWN 3 -18902355 0 512 -18902378 4 512 -18909942 DOWN 3 -18909942 0 512 -18922266 UP 10 -18922267 waslock = 0 -18922266 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -18922297 512 16777728 -~~~ -18922447 512 512 -18929052 DOWN 10 -18929052 0 512 -~~~ -~~~ -18929069 0 1536 -~~~ -~~~ -18929071 0 1024 -18929072 homeCount = 53 -18929073 waitCount = 24 -18929073 ripCount = 25 -18929074 locktype1 = 0 -18929074 locktype2 = 4 -18929075 locktype3 = 2 -18929075 goalCount = 8 -18929076 goalTotal = 28 -18929076 otherCount = 19 -~~~ -18929098 UP 10 -18929098 waslock = 0 -18929097 512 1024 -~~~ -18929166 DOWN 10 -18929166 0 1024 -~~~ -~~~ -~~~ -~~~ -18929193 homeCount = 53 -18929194 waitCount = 24 -18929194 ripCount = 25 -18929194 locktype1 = 0 -18929195 locktype2 = 4 -18929195 locktype3 = 2 -18929196 goalCount = 8 -18929196 goalTotal = 28 -18929197 otherCount = 19 -~~~ -18934312 UP 11 -18934312 1024 1024 -18935944 DOWN 11 -18935944 0 1024 -18935995 UP 11 -18935995 1024 1024 -18937812 BEEP1 -18937812 BEEP2 -~~~ -~~~ -~~~ -18937832 1024 33555456 -~~~ -18937982 1024 1024 -18944487 DOWN 11 -18944487 0 1024 -18944496 UP 11 -18944496 1024 1024 -~~~ -~~~ -18944510 1024 0 -~~~ -~~~ -18944512 1024 1 -~~~ -~~~ -18944513 1024 3 -~~~ -~~~ -18944515 1024 7 -~~~ -~~~ -18944517 1024 15 -~~~ -~~~ -18944519 1024 31 -~~~ -~~~ -18944521 1024 63 -~~~ -~~~ -18944523 1024 127 -~~~ -~~~ -18944524 1024 255 -18944525 homeCount = 53 -18944526 waitCount = 24 -18944526 ripCount = 26 -18944548 locktype1 = 0 -18944548 locktype2 = 4 -18944548 locktype3 = 2 -18944549 goalCount = 8 -18944549 goalTotal = 28 -18944550 otherCount = 19 -~~~ -18944551 CURRENTGOAL IS [3] -~~~ -18944560 DOWN 11 -18944560 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18944597 UP 11 -18944597 1024 255 -18944599 homeCount = 53 -18944599 waitCount = 24 -18944600 ripCount = 26 -18944600 locktype1 = 0 -18944601 locktype2 = 4 -18944601 locktype3 = 2 -18944602 goalCount = 8 -18944602 goalTotal = 28 -18944603 otherCount = 19 -~~~ -18944625 CURRENTGOAL IS [3] -~~~ -18947334 DOWN 11 -18947334 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -18947369 homeCount = 53 -18947369 waitCount = 24 -18947370 ripCount = 26 -18947370 locktype1 = 0 -18947371 locktype2 = 4 -18947371 locktype3 = 2 -18947372 goalCount = 8 -18947372 goalTotal = 28 -18947373 otherCount = 19 -~~~ -18947374 CURRENTGOAL IS [3] -~~~ -18958627 UP 3 -18958627 4 255 -~~~ -~~~ -18958649 outer reward -~~~ -18958650 4 262399 -~~~ -~~~ -18958918 DOWN 3 -18958918 0 262399 -~~~ -~~~ -18958945 0 262398 -~~~ -~~~ -18958947 0 262396 -~~~ -~~~ -18958948 0 262392 -~~~ -~~~ -18958950 0 262384 -~~~ -~~~ -18958952 0 262368 -~~~ -~~~ -18958954 0 262336 -~~~ -~~~ -18958956 0 262272 -~~~ -~~~ -18958958 0 262144 -~~~ -~~~ -18958959 0 262656 -18958960 homeCount = 53 -18958961 waitCount = 24 -18958961 ripCount = 26 -18958983 locktype1 = 0 -18958983 locktype2 = 4 -18958984 locktype3 = 2 -18958984 goalCount = 9 -18958985 goalTotal = 29 -18958985 otherCount = 19 -~~~ -18958986 4 262656 -18959099 4 512 -18959236 DOWN 3 -18959236 0 512 -18959257 4 512 -18959354 DOWN 3 -18959354 0 512 -18959373 4 512 -18959476 DOWN 3 -18959476 0 512 -18959502 4 512 -18959605 DOWN 3 -18959605 0 512 -18959631 4 512 -18959734 DOWN 3 -18959734 0 512 -18959764 4 512 -18959869 DOWN 3 -18959869 0 512 -18959901 4 512 -18960009 DOWN 3 -18960009 0 512 -18960036 4 512 -18960155 DOWN 3 -18960155 0 512 -18960176 4 512 -18960303 DOWN 3 -18960303 0 512 -18960314 4 512 -18964481 DOWN 3 -18964481 0 512 -18964498 4 512 -18967799 DOWN 3 -18967799 0 512 -18967877 4 512 -18967898 DOWN 3 -18967898 0 512 - - description: Statescript log r2 - task_epochs: 4, -, Statescript3 ndx_franklab_novela.associated_files.AssociatedFiles at 0x140511632188176 -Fields: - content: # -#% PROGRAM NAME: V8pre_goal_nowait -#% AUTHOR: AKG -#% DESCRIPTION: pretraining regime -# -#% constants -#int deliverPeriodBox= 150 % how long to deliver the reward at home/rip/wait -#int deliverPeriodOuter= 450 % how long to deliver the reward at outer wells -#int lockoutPeriod= 25000 % length of lockout, 10sec -#int proxTime = 200 % amount of time allowed to be away from nose poke -#% variables -#int rewardWell = 0 -#int currWell = 0 -#int lastWell = 0 -#int dio = 0 -#int homeCount = 0 % number of times rewarded at home -#int waitCount = 0 % number of times rewarded at wait well -#int ripCount = 0 %number of times rewarded at rip well -#int locktype1 = 0 % number of times locked out by choosing wrong rip/wait well -#int locktype2 = 0 % number of times lockout out by making other order error -#int locktype3 = 0 % number of times lockout from not holding in rip or wait -#int trialtype = 0 -#int goalCount = 0 % cumulative num outer visits -#int goalTotal = 0 -#int otherCount = 0 -#int waittime = 0 -#int proximity = 0 -#int waslock = 0 -# -#int outerreps = 0 -# -#% initialize -#portout[1] = 0 -#portout[2] = 0 -#portout[3] = 0 -#portout[4] = 0 -#portout[5] = 0 -#portout[6] = 0 -#portout[7] = 0 -#portout[8] = 0 -#portout[10] = 1 -#portout[11] = 0 -#portout[12] = 0 -#; -# -#% function to deliver reward to box wells -#function 1 -# portout[rewardWell]=1 % reward -# do in deliverPeriodBox -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% function to deliver reward to outer wells -#function 2 -# disp('outer reward') -# portout[rewardWell]=1 % reward -# do in deliverPeriodOuter -# portout[rewardWell]=0 % reset reward -# end -#end; -# -#% Function to turn on output -#function 3 -# portout[dio]=1 -#end; -# -#% function to turn off output -#function 4 -# portout[dio]=0 -#end; -# -#%display status -#function 5 -# disp(homeCount) -# disp(waitCount) -# disp(ripCount) -# disp(locktype1) -# disp(locktype2) -# disp(locktype3) -# disp(goalCount) -# disp(goalTotal) -# disp(otherCount) -#end; -# -#function 6 % end lockout and reactivate home -# disp('WHITENOISE') -# do in lockoutPeriod -# disp('LOCKEND') -# end -#end; -# -# -#% CALLBACKS -- EVENT-DRIVEN TRIGGERS -#callback portin[10] up -# if trialtype != 4 do -# currWell = 10 -# disp('UP 10') -# waslock = 0 -# disp(waslock) -# end -#end; -# -#callback portin[10] down -# if trialtype != 4 do -# lastWell = 10 -# disp('DOWN 10') -# end -#end; -# -#callback portin[11] up % Rip well -# currWell = 11 % well currently active -# disp('UP 11') -# -# if trialtype == 1 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('BEEP1') -# disp('BEEP2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 2 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -# -#end; -# -#callback portin[11] down -# lastWell=11 % well left, now last well -# disp('DOWN 11') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[12] up % wait well -# currWell = 12 % well currently active -# disp('UP 12') -# if trialtype == 2 do -# if lastWell != currWell do -# proximity = 1 -# do in waittime -# if proximity > 0 do -# proximity = 0 -# trialtype = 3 -# disp('CLICK1') -# disp('CLICK2') -# end -# end -# else do -# proximity=proximity+1 -# end -# else do -# if (trialtype != 4 && currWell != lastWell && waslock != 1) do -# if trialtype == 1 do -# disp('LOCKOUT 1') -# else do -# disp('LOCKOUT 2') -# end -# end -# end -#end; -# -#callback portin[12] down -# lastWell=12 % well left, now last well -# disp('DOWN 12') -# if proximity>0 do -# do in proxTime -# proximity=proximity-1 -# if (proximity <1 && trialtype <3) do -# disp('LOCKOUT 3') -# end -# end -# end -#end; -# -#callback portin[1] up -# currWell = 1 -# if currWell != lastWell do -# disp('UP 1') -# end -#end; -# -#callback portin[1] down -# lastWell = 1 -# disp('DOWN 1') -#end; -# -#callback portin[2] up -# currWell = 2 -# if currWell != lastWell do -# disp('UP 2') -# end -#end; -# -#callback portin[2] down -# lastWell = 2 -# disp('DOWN 2') -#end; -# -#callback portin[3] up -# currWell = 3 -# if currWell != lastWell do -# disp('UP 3') -# end -#end; -# -#callback portin[3] down -# lastWell = 3 -# disp('DOWN 3') -#end; -# -#callback portin[4] up -# currWell = 4 -# if currWell != lastWell do -# disp('UP 4') -# end -#end; -# -#callback portin[4] down -# lastWell = 4 -# -# disp('DOWN 4') -#end; -# -#callback portin[5] up -# currWell = 5 -# if currWell != lastWell do -# disp('UP 5') -# end -#end; -# -#callback portin[5] down -# lastWell = 5 -# disp('DOWN 5') -#end; -# -#callback portin[6] up -# currWell = 6 -# if currWell != lastWell do -# disp('UP 6') -# end -#end; -# -#callback portin[6] down -# lastWell = 6 -# disp('DOWN 6') -#end; -# -#callback portin[7] up -# currWell = 7 -# if currWell != lastWell do -# disp('UP 7') -# end -#end; -# -#callback portin[7] down -# lastWell = 7 -# disp('DOWN 7') -#end; -# -#callback portin[8] up -# currWell = 8 -# if currWell != lastWell do -# disp('UP 8') -# end -#end; -# -#callback portin[8] down -# lastWell = 8 -# disp('DOWN 8') -#end; -# -# -#import math -#import struct -#import re -#import time -#import random -#import numpy as np -#import pyaudio -#import wave -#from statistics import mean -## V8pre_forage -## visits to incorrect wells cause 5s lockout -## exception is repeat visit to prior well (is ok, no lockout) -## can go to any outer well, any number of times -## lockout from getting rip/wait wells wrong is also 5s -# -# -## decide what type of up trigger was just recieved; act accordingly -#def pokeIn(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# doHome() -# -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# doOuter(num) -# -## decide what type of down trigger was just recieved; act accordingly -#def pokeOut(dio): -# global homeWell -# global waitWells -# global outerWells -# global currWell -# global lastWell -# -# currWell = int(dio[1]) -# if currWell == homeWell: -# endHome() -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# endWait() -# for num in range(len(outerWells)): -# if currWell == outerWells[num]: -# endOuter() -# lastWell = currWell -# -##home poke: decide trial type and upcoming wait length; turn on lights accordingly -#def doHome(): -# global trialtype # 0 home,1 waitR, 2 waitL, 3 lockout -# global homePump -# global lastWell -# global currWell -# #global waitdist -# -# if trialtype == 0: -# opts = [1, 2] -# randnum = np.random.randint(0,2) #-1 -# trialtype = opts[randnum] -# #trialtype = np.random.randint(1,3) #set upcoming trialtype to 1 or 2 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #randnum = np.random.randint(0,8) -# delaytime = chooseDelay() -# print("SCQTMESSAGE: waittime = "+str(delaytime)+";\n") -# #print("SCQTMESSAGE: waittime = "+str(waitdist[randnum])+";\n") # set upcoming waittime -# print("SCQTMESSAGE: homeCount = homeCount + 1;\n") # update homecount in SC -# print("SCQTMESSAGE: rewardWell = "+str(homePump)+";\n") -# print("SCQTMESSAGE: trigger(1);\n") # deliver reward -# elif trialtype > 0 and trialtype < 4 and lastWell != currWell: -# lockout([2,2]) -# -#def chooseDelay(): -# global trialtype -# global RWcount -# global waitdist -# global startwaitdist -# -# print(RWcount) -# -# if RWcount[trialtype-1]<3: #first 3 trials of of each type should be short -# return startwaitdist[RWcount[trialtype-1]] -# -# else: -# if RWcount[trialtype-1]<=10: #trials 4-10 of each type will be avg of startwaitdist and normal waitdist -# return round(mean([int(np.random.choice(startwaitdist,1)), int(np.random.choice(waitdist,1))])) -# -# else: -# return int(np.random.choice(waitdist,1)) -# -# -#def endHome(): -# global trialtype -# global lastWell -# global homeWell -# global waitWells -# -# if trialtype == 1 or trialtype == 2: -# print("SCQTMESSAGE: dio = "+str(waitWells[trialtype-1])+";\n") # turn on the correct wait well -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -# -#def click(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# -# #generate_click() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: waitCount = waitCount+1;\n") # update waitcount in SC -# -#def beep(): -# global waitPumps -# global waitWells -# global trialtype -# global currWell -# global RWcount -# -# RWcount[trialtype-1]+=1 -# #generate_beep() -# trialtype = 3 # ready for outer visit -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# #deliver reward -# for num in range(len(waitWells)): -# if currWell == waitWells[num]: -# print("SCQTMESSAGE: rewardWell = "+str(waitPumps[num])+";\n") -# print("SCQTMESSAGE: trigger(1);\n") -# print("SCQTMESSAGE: ripCount = ripCount + 1;\n") # update ripcount in SC -# -#def endWait(): -# global trialtype -# global goalWell -# global currWell -# global outerWells -# -# if trialtype == 3: # wait complete -# print("SCQTMESSAGE: dio = "+str(currWell)+";\n") # turn off rip light -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): # turn on outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# print("SCQTMESSAGE: disp('CURRENTGOAL IS "+str(goalWell)+"');\n") -# -# -#def doOuter(val): -# global outerPumps -# global trialtype -# global allGoal -# global thisGoal -# global goalWell -# global outerReps -# global currWell -# global lastWell -# global homeWell -# global numgoals -# global validOuterWells -# global waslock -# -# if trialtype == 3: -# trialtype = 0 # outer satisfied, head home next -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# if currWell in goalWell : # repeated; reward -# print("SCQTMESSAGE: rewardWell = "+str(outerPumps[val])+";\n") -# print("SCQTMESSAGE: trigger(2);\n") # deliver reward -# allGoal+=1 -# thisGoal+=1 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# print("SCQTMESSAGE: goalTotal = "+str(allGoal)+";\n") # update goaltotal in SC -# -# if thisGoal >= outerReps: #maxed repeats reached, time to switch -# print("time to choose new goalS!") -# if numgoals < 2: # if 1 goal only, use chooseGoal function to enforce no repeats -# chooseGoal() -# else: -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) #choose a different selection -# goalWell = np.random.choice(outerWells,numgoals,replace=False) #choose a different selection -# print(goalWell) -# -# thisGoal = 0 -# print("SCQTMESSAGE: goalCount = "+str(thisGoal)+";\n") # update goalcount in SC -# -# if numgoals == 1 and thisGoal == 1: # set the goal as the one he found (part of forage assist) -# goalWell = [currWell] -# -# else: # wrong well; add to forage record if newly visited -# print("SCQTMESSAGE: otherCount = otherCount + 1;\n") # update othercount in SC -# -# elif trialtype < 3 and waslock<1: -# lockout([2,2]) -# -#def chooseGoal(): # this is only called when numgoals ==1. to assist forage, choose 2 goals; first encountered will turn into only goal -# global goalWell -# global oldGoals -# global numgoals -# global outerWells -# global forageNum -# #global outerReps -# -# oldGoals.append(goalWell) -# print(oldGoals) -# -# if len(oldGoals)> (8-forageNum): # make sure that forageassist doesnt run out of new arms -# forageNum = 1 -# -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# if len(oldGoals)>7: # if all outers have been goal, reset -# print("resetting oldgoals") -# oldGoals = [None] -# -# while any(i in goalWell for i in oldGoals): #if any common elements -# goalWell = np.random.choice(outerWells,forageNum,replace=False) -# print(goalWell) -# -# outerReps = np.random.randint(4,13) -# print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# print("new goal is "+str(goalWell)+"\n") -# -#def endOuter(): -# global trialtype -# global outerWells -# global homeWell -# global lastWell -# global currWell -# -# if trialtype == 0 and lastWell != currWell: # outer satisfied -# for num in range(len(outerWells)): # turn off outer lights -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn homewell on -# print("SCQTMESSAGE: trigger(3);\n") -# print("SCQTMESSAGE: trigger(5);\n") # display stats -# -#def lockout(val): # turn off all lights for certain amount of time -# global waitWells -# global outerWells -# global lastWell -# global trialtype -# global waslock -# -# locktype = int(val[1]) -# trialtype = 4 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: trigger(6);\n") # start lockout timer in SCQTMESSAGE -# #turn off all lights -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn off home well -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(waitWells)): #turn off all wait and outer well lights -# print("SCQTMESSAGE: dio = "+str(waitWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# for num in range(len(outerWells)): -# print("SCQTMESSAGE: dio = "+str(outerWells[num])+";\n") -# print("SCQTMESSAGE: trigger(4);\n") -# waslock=1 -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") # turn off home well -# if locktype == 1: -# print("SCQTMESSAGE: locktype1 = locktype1 + 1;\n") # type 1 = wrong rip/wait well -# if locktype == 2: -# print("SCQTMESSAGE: locktype2 = locktype2 + 1;\n") # update lockcount in SC -# if locktype == 3: -# print("SCQTMESSAGE: locktype3 = locktype3 + 1;\n") # update rip/wait hold errors -# -# -#def lockend(): -# global trialtype -# global homeWell -# -# trialtype = 0 -# print("SCQTMESSAGE: trialtype = "+str(trialtype)+";\n") -# print("SCQTMESSAGE: dio = "+str(homeWell)+";\n") # turn on home well -# print("SCQTMESSAGE: trigger(3);\n") -# -#def updateWaslock(val): -# global waslock -# -# waslock = int(val[1]) -# print("SCQTMESSAGE: waslock = "+str(waslock)+";\n") -# -## Function: generate click sound -#def generate_click(): -# -# File='ZippoClick_short.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -## Function: generate cowbell sound -#def generate_beep(): -# -# File='Beep.wav' -# spf = wave.open(File, 'rb') -# signal = spf.readframes(-1) -# signal = np.fromstring(signal, 'Int16') -# p = pyaudio.PyAudio() -# stream = p.open(format = -# p.get_format_from_width(spf.getsampwidth()), -# channels = 1, -# rate = spf.getframerate(), -# output = True) -# #play -# data = struct.pack("%dh"%(len(signal)), *list(signal)) -# stream.write(data) -# stream.close() -# p.terminate() -# -#def makewhitenoise(): #play white noise for duration of lockout -# global locksoundlength -# -# soundlength = int(44100*locksoundlength/1000) -# p = pyaudio.PyAudio() -# stream = p.open(format = 8, channels = 1, rate = 44100, output = True) -# whitenoise = np.random.randint(700,size = soundlength) -# data = struct.pack("%dh"%(len(whitenoise)), *list(whitenoise)) -# stream.write(data) -# stream.close() -# p.terminate() -# -# -## This is the custom callback function. When events occur, addScQtEvent will -## call this function. This function MUST BE NAMED 'callback'!!!! -#def callback(line): -# -# global waslock -# -# if line.find("UP") >= 0: #input triggered -# pokeIn(re.findall(r'\d+',line)) -# if line.find("DOWN") >= 0: #input triggered -# pokeOut(re.findall(r'\d+',line)) -# if line.find("BEEP1") >= 0: # make a beep and deliver reward -# beep() -# if line.find("BEEP2") >= 0: # make a beep and deliver reward -# generate_beep() -# if line.find("CLICK1") >= 0: # make a click and deliver reward -# click() -# if line.find("CLICK2") >= 0: # make a click and deliver reward -# generate_click() -# if line.find("LOCKOUT") >= 0: # lockout procedure -# lockout(re.findall(r'\d+',line)) -# if line.find("LOCKEND") >= 0: # reset trialtype to 0 -# lockend() -# if line.find("WHITENOISE") >= 0: # make noise during lockout -# makewhitenoise() -# if line.find("waslock") >= 0: #update waslock value -# updateWaslock(re.findall(r'\d+',line)) -# -# -## define wells -#homeWell = 10 -#waitWells = [11,12] -#outerWells = [1,2,3,4,5,6,7,8] -##validOuterWells = [8,11,12,14,15] # for excluding their bias goals when reducing arm num -## define pumps -#homePump = 25 -#waitPumps = [26, 27] -#outerPumps = [17, 18, 19, 20, 21, 22, 23, 24] -# -##global variables -#lastWell = -1 -#currWell = -1 -#trialtype = 0 -#outerReps = 10 -##outerReps = np.random.randint(4,13) #10 -#print("SCQTMESSAGE: disp('outerreps = "+str(outerReps)+"');\n") -# -#allGoal = 0 -#thisGoal = 0 -#numgoals = 1 # number of outer arms rewarded -#forageNum = 1 -#if numgoals == 1: -# goalWell = np.random.choice(outerWells,forageNum,replace=False) #initialize to 4 wells -#else: -# goalWell = np.random.choice(outerWells,numgoals,replace=False) -# #goalWell = np.random.choice(validOuterWells,numgoals,replace=False) -# -#oldGoals = [] #initialize with any wells to exclude from being goal -##waitdist = [4000, 3500, 3500, 4500, 6000, 5500, 7500, 9500, 6000, 8500, 9500, 8000, 10000, 10000] -#waitdist = [3000, 3000, 3500, 4000, 4500, 7500, 6000, 7000, 8000, 9000] -# -#startwaitdist = [1000, 1500, 2000] -# -#locksoundlength = 1000 -#print(goalWell) -#waslock=0 -#RWcount = [0,0 -# -24056604 UP 10 -24056604 waslock = 0 -24056604 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24056628 512 16777728 -~~~ -24056778 512 512 -24056821 DOWN 10 -24056821 0 512 -~~~ -~~~ -24056843 0 1536 -~~~ -~~~ -24056845 0 1024 -24056846 homeCount = 1 -24056846 waitCount = 0 -24056847 ripCount = 0 -24056847 locktype1 = 0 -24056848 locktype2 = 0 -24056848 locktype3 = 0 -24056849 goalCount = 0 -24056849 goalTotal = 0 -24056850 otherCount = 0 -~~~ -24057124 UP 10 -24057124 waslock = 0 -24057124 512 1024 -24057128 DOWN 10 -24057128 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057147 homeCount = 1 -24057147 waitCount = 0 -24057148 ripCount = 0 -24057148 locktype1 = 0 -24057149 locktype2 = 0 -24057149 locktype3 = 0 -24057150 goalCount = 0 -24057150 goalTotal = 0 -24057151 otherCount = 0 -~~~ -24057247 UP 10 -24057247 waslock = 0 -24057247 512 1024 -24057257 DOWN 10 -24057256 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057278 homeCount = 1 -24057279 waitCount = 0 -24057280 ripCount = 0 -24057280 locktype1 = 0 -24057281 locktype2 = 0 -24057281 locktype3 = 0 -24057281 goalCount = 0 -24057282 goalTotal = 0 -24057282 otherCount = 0 -~~~ -24057380 UP 10 -24057380 waslock = 0 -24057379 512 1024 -24057390 DOWN 10 -24057390 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057406 homeCount = 1 -24057407 waitCount = 0 -24057407 ripCount = 0 -24057408 locktype1 = 0 -24057408 locktype2 = 0 -24057409 locktype3 = 0 -24057409 goalCount = 0 -24057410 goalTotal = 0 -24057410 otherCount = 0 -~~~ -24057508 UP 10 -24057508 waslock = 0 -24057508 512 1024 -24057525 DOWN 10 -24057525 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24057549 homeCount = 1 -24057549 waitCount = 0 -24057550 ripCount = 0 -24057550 locktype1 = 0 -24057551 locktype2 = 0 -24057551 locktype3 = 0 -24057552 goalCount = 0 -24057552 goalTotal = 0 -24057553 otherCount = 0 -~~~ -24057634 UP 10 -24057634 waslock = 0 -24057634 512 1024 -~~~ -24057659 DOWN 10 -24057659 0 1024 -~~~ -~~~ -~~~ -~~~ -24057678 homeCount = 1 -24057679 waitCount = 0 -24057679 ripCount = 0 -24057680 locktype1 = 0 -24057680 locktype2 = 0 -24057681 locktype3 = 0 -24057681 goalCount = 0 -24057682 goalTotal = 0 -24057682 otherCount = 0 -~~~ -24057752 UP 10 -24057752 waslock = 0 -24057752 512 1024 -~~~ -24057792 DOWN 10 -24057792 0 1024 -~~~ -~~~ -~~~ -~~~ -24057817 homeCount = 1 -24057818 waitCount = 0 -24057818 ripCount = 0 -24057819 locktype1 = 0 -24057819 locktype2 = 0 -24057820 locktype3 = 0 -24057820 goalCount = 0 -24057821 goalTotal = 0 -24057821 otherCount = 0 -~~~ -24057884 UP 10 -24057884 waslock = 0 -24057884 512 1024 -~~~ -24057931 DOWN 10 -24057931 0 1024 -~~~ -~~~ -~~~ -~~~ -24057955 homeCount = 1 -24057956 waitCount = 0 -24057956 ripCount = 0 -24057957 locktype1 = 0 -24057957 locktype2 = 0 -24057958 locktype3 = 0 -24057958 goalCount = 0 -24057959 goalTotal = 0 -24057959 otherCount = 0 -~~~ -24058025 UP 10 -24058025 waslock = 0 -24058025 512 1024 -~~~ -24058092 DOWN 10 -24058092 0 1024 -~~~ -~~~ -~~~ -~~~ -24058115 homeCount = 1 -24058115 waitCount = 0 -24058116 ripCount = 0 -24058116 locktype1 = 0 -24058117 locktype2 = 0 -24058117 locktype3 = 0 -24058118 goalCount = 0 -24058118 goalTotal = 0 -24058119 otherCount = 0 -~~~ -24058171 UP 10 -24058172 waslock = 0 -24058171 512 1024 -~~~ -24058243 DOWN 10 -24058243 0 1024 -24058250 UP 10 -24058251 waslock = 0 -24058250 512 1024 -24058271 DOWN 10 -24058271 0 1024 -~~~ -~~~ -~~~ -~~~ -24058277 homeCount = 1 -24058278 waitCount = 0 -24058278 ripCount = 0 -24058279 locktype1 = 0 -24058279 locktype2 = 0 -24058280 locktype3 = 0 -24058280 goalCount = 0 -24058281 goalTotal = 0 -24058281 otherCount = 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24058307 homeCount = 1 -24058307 waitCount = 0 -24058308 ripCount = 0 -24058308 locktype1 = 0 -24058309 locktype2 = 0 -24058309 locktype3 = 0 -24058310 goalCount = 0 -24058310 goalTotal = 0 -24058311 otherCount = 0 -~~~ -24058325 UP 10 -24058325 waslock = 0 -24058325 512 1024 -~~~ -24058429 DOWN 10 -24058429 0 1024 -24058443 UP 10 -24058443 waslock = 0 -24058443 512 1024 -~~~ -~~~ -~~~ -~~~ -24058462 homeCount = 1 -24058463 waitCount = 0 -24058463 ripCount = 0 -24058464 locktype1 = 0 -24058464 locktype2 = 0 -24058465 locktype3 = 0 -24058465 goalCount = 0 -24058466 goalTotal = 0 -24058466 otherCount = 0 -~~~ -~~~ -24058585 DOWN 10 -24058585 0 1024 -24058597 UP 10 -24058597 waslock = 0 -24058597 512 1024 -~~~ -~~~ -~~~ -~~~ -24058624 homeCount = 1 -24058625 waitCount = 0 -24058625 ripCount = 0 -24058626 locktype1 = 0 -24058626 locktype2 = 0 -24058627 locktype3 = 0 -24058627 goalCount = 0 -24058628 goalTotal = 0 -24058628 otherCount = 0 -~~~ -~~~ -24058732 DOWN 10 -24058732 0 1024 -24058752 UP 10 -24058752 waslock = 0 -24058752 512 1024 -~~~ -~~~ -~~~ -~~~ -24058759 homeCount = 1 -24058759 waitCount = 0 -24058760 ripCount = 0 -24058760 locktype1 = 0 -24058761 locktype2 = 0 -24058761 locktype3 = 0 -24058762 goalCount = 0 -24058762 goalTotal = 0 -24058763 otherCount = 0 -~~~ -~~~ -24059043 DOWN 10 -24059043 0 1024 -~~~ -24059062 UP 10 -24059063 waslock = 0 -24059062 512 1024 -~~~ -~~~ -~~~ -24059066 homeCount = 1 -24059067 waitCount = 0 -24059067 ripCount = 0 -24059068 locktype1 = 0 -24059068 locktype2 = 0 -24059069 locktype3 = 0 -24059069 goalCount = 0 -24059070 goalTotal = 0 -24059070 otherCount = 0 -~~~ -~~~ -24059196 DOWN 10 -24059196 0 1024 -~~~ -~~~ -~~~ -~~~ -24059218 homeCount = 1 -24059218 waitCount = 0 -24059219 ripCount = 0 -24059219 locktype1 = 0 -24059220 locktype2 = 0 -24059220 locktype3 = 0 -24059221 goalCount = 0 -24059221 goalTotal = 0 -24059222 otherCount = 0 -~~~ -24059223 UP 10 -24059223 waslock = 0 -24059223 512 1024 -~~~ -24059360 DOWN 10 -24059360 0 1024 -24059385 UP 10 -24059385 waslock = 0 -24059385 512 1024 -~~~ -~~~ -~~~ -~~~ -24059399 homeCount = 1 -24059399 waitCount = 0 -24059400 ripCount = 0 -24059400 locktype1 = 0 -24059401 locktype2 = 0 -24059401 locktype3 = 0 -24059402 goalCount = 0 -24059402 goalTotal = 0 -24059403 otherCount = 0 -~~~ -~~~ -24059519 DOWN 10 -24059519 0 1024 -~~~ -~~~ -~~~ -~~~ -24059539 homeCount = 1 -24059539 waitCount = 0 -24059540 ripCount = 0 -24059540 locktype1 = 0 -24059541 locktype2 = 0 -24059541 locktype3 = 0 -24059542 goalCount = 0 -24059542 goalTotal = 0 -24059543 otherCount = 0 -~~~ -24059548 UP 10 -24059548 waslock = 0 -24059547 512 1024 -~~~ -24059681 DOWN 10 -24059681 0 1024 -~~~ -~~~ -~~~ -~~~ -24059713 homeCount = 1 -24059713 waitCount = 0 -24059714 ripCount = 0 -24059714 locktype1 = 0 -24059715 locktype2 = 0 -24059715 locktype3 = 0 -24059716 goalCount = 0 -24059716 goalTotal = 0 -24059717 otherCount = 0 -~~~ -24059717 UP 10 -24059718 waslock = 0 -24059717 512 1024 -~~~ -24059856 DOWN 10 -24059856 0 1024 -~~~ -~~~ -~~~ -~~~ -24059881 homeCount = 1 -24059882 waitCount = 0 -24059882 ripCount = 0 -24059883 locktype1 = 0 -24059883 locktype2 = 0 -24059884 locktype3 = 0 -24059884 goalCount = 0 -24059885 goalTotal = 0 -24059885 otherCount = 0 -~~~ -24059888 UP 10 -24059889 waslock = 0 -24059888 512 1024 -~~~ -24060002 DOWN 10 -24060002 0 1024 -~~~ -~~~ -~~~ -~~~ -24060036 homeCount = 1 -24060037 waitCount = 0 -24060037 ripCount = 0 -24060038 locktype1 = 0 -24060038 locktype2 = 0 -24060039 locktype3 = 0 -24060039 goalCount = 0 -24060040 goalTotal = 0 -24060040 otherCount = 0 -~~~ -24060057 UP 10 -24060058 waslock = 0 -24060057 512 1024 -~~~ -24060155 DOWN 10 -24060155 0 1024 -~~~ -~~~ -~~~ -~~~ -24060183 homeCount = 1 -24060184 waitCount = 0 -24060184 ripCount = 0 -24060185 locktype1 = 0 -24060185 locktype2 = 0 -24060186 locktype3 = 0 -24060186 goalCount = 0 -24060187 goalTotal = 0 -24060187 otherCount = 0 -~~~ -24060218 UP 10 -24060219 waslock = 0 -24060218 512 1024 -~~~ -24060311 DOWN 10 -24060311 0 1024 -~~~ -~~~ -~~~ -~~~ -24060333 homeCount = 1 -24060333 waitCount = 0 -24060334 ripCount = 0 -24060334 locktype1 = 0 -24060335 locktype2 = 0 -24060335 locktype3 = 0 -24060336 goalCount = 0 -24060336 goalTotal = 0 -24060337 otherCount = 0 -~~~ -24060384 UP 10 -24060384 waslock = 0 -24060383 512 1024 -~~~ -24060470 DOWN 10 -24060470 0 1024 -~~~ -~~~ -~~~ -~~~ -24060494 homeCount = 1 -24060494 waitCount = 0 -24060495 ripCount = 0 -24060495 locktype1 = 0 -24060496 locktype2 = 0 -24060496 locktype3 = 0 -24060497 goalCount = 0 -24060497 goalTotal = 0 -24060498 otherCount = 0 -~~~ -24060541 UP 10 -24060542 waslock = 0 -24060541 512 1024 -~~~ -24060656 DOWN 10 -24060656 0 1024 -~~~ -~~~ -~~~ -~~~ -24060683 homeCount = 1 -24060683 waitCount = 0 -24060684 ripCount = 0 -24060684 locktype1 = 0 -24060685 locktype2 = 0 -24060685 locktype3 = 0 -24060686 goalCount = 0 -24060686 goalTotal = 0 -24060687 otherCount = 0 -~~~ -24060718 UP 10 -24060718 waslock = 0 -24060718 512 1024 -~~~ -24060821 DOWN 10 -24060821 0 1024 -~~~ -~~~ -~~~ -~~~ -24060844 homeCount = 1 -24060844 waitCount = 0 -24060845 ripCount = 0 -24060845 locktype1 = 0 -24060846 locktype2 = 0 -24060846 locktype3 = 0 -24060847 goalCount = 0 -24060847 goalTotal = 0 -24060848 otherCount = 0 -~~~ -24060875 UP 10 -24060875 waslock = 0 -24060875 512 1024 -~~~ -24061011 DOWN 10 -24061011 0 1024 -~~~ -~~~ -~~~ -~~~ -24061035 homeCount = 1 -24061035 waitCount = 0 -24061036 ripCount = 0 -24061036 locktype1 = 0 -24061037 locktype2 = 0 -24061037 locktype3 = 0 -24061038 goalCount = 0 -24061038 goalTotal = 0 -24061039 otherCount = 0 -~~~ -24061064 UP 10 -24061065 waslock = 0 -24061064 512 1024 -~~~ -24061209 DOWN 10 -24061209 0 1024 -24061222 UP 10 -24061223 waslock = 0 -24061222 512 1024 -~~~ -~~~ -~~~ -~~~ -24061246 homeCount = 1 -24061247 waitCount = 0 -24061247 ripCount = 0 -24061248 locktype1 = 0 -24061248 locktype2 = 0 -24061249 locktype3 = 0 -24061249 goalCount = 0 -24061250 goalTotal = 0 -24061250 otherCount = 0 -~~~ -~~~ -24061545 DOWN 10 -24061545 0 1024 -24061560 UP 10 -24061560 waslock = 0 -24061560 512 1024 -~~~ -~~~ -~~~ -~~~ -24061597 homeCount = 1 -24061598 waitCount = 0 -24061598 ripCount = 0 -24061599 locktype1 = 0 -24061599 locktype2 = 0 -24061600 locktype3 = 0 -24061600 goalCount = 0 -24061601 goalTotal = 0 -24061601 otherCount = 0 -~~~ -~~~ -24063988 DOWN 10 -24063988 0 1024 -24064005 UP 10 -24064006 waslock = 0 -24064005 512 1024 -~~~ -~~~ -~~~ -~~~ -24064014 homeCount = 1 -24064014 waitCount = 0 -24064015 ripCount = 0 -24064015 locktype1 = 0 -24064016 locktype2 = 0 -24064016 locktype3 = 0 -24064017 goalCount = 0 -24064017 goalTotal = 0 -24064018 otherCount = 0 -~~~ -~~~ -24064723 DOWN 10 -24064723 0 1024 -~~~ -~~~ -24064751 UP 10 -24064751 waslock = 0 -24064751 512 1024 -~~~ -~~~ -24064754 homeCount = 1 -24064754 waitCount = 0 -24064755 ripCount = 0 -24064755 locktype1 = 0 -24064756 locktype2 = 0 -24064756 locktype3 = 0 -24064757 goalCount = 0 -24064757 goalTotal = 0 -24064778 otherCount = 0 -~~~ -~~~ -24065124 DOWN 10 -24065124 0 1024 -24065130 UP 10 -24065130 waslock = 0 -24065130 512 1024 -~~~ -~~~ -~~~ -~~~ -24065153 homeCount = 1 -24065153 waitCount = 0 -24065154 ripCount = 0 -24065154 locktype1 = 0 -24065155 locktype2 = 0 -24065155 locktype3 = 0 -24065156 goalCount = 0 -24065156 goalTotal = 0 -24065157 otherCount = 0 -~~~ -~~~ -24065460 DOWN 10 -24065460 0 1024 -~~~ -~~~ -~~~ -~~~ -24065484 homeCount = 1 -24065484 waitCount = 0 -24065485 ripCount = 0 -24065485 locktype1 = 0 -24065486 locktype2 = 0 -24065486 locktype3 = 0 -24065487 goalCount = 0 -24065487 goalTotal = 0 -24065488 otherCount = 0 -~~~ -24065532 UP 10 -24065532 waslock = 0 -24065531 512 1024 -~~~ -24065573 DOWN 10 -24065573 0 1024 -~~~ -~~~ -~~~ -~~~ -24065598 homeCount = 1 -24065598 waitCount = 0 -24065599 ripCount = 0 -24065599 locktype1 = 0 -24065600 locktype2 = 0 -24065600 locktype3 = 0 -24065601 goalCount = 0 -24065601 goalTotal = 0 -24065602 otherCount = 0 -~~~ -24065685 UP 10 -24065685 waslock = 0 -24065685 512 1024 -24065713 DOWN 10 -24065713 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24065736 homeCount = 1 -24065737 waitCount = 0 -24065737 ripCount = 0 -24065738 locktype1 = 0 -24065738 locktype2 = 0 -24065739 locktype3 = 0 -24065739 goalCount = 0 -24065740 goalTotal = 0 -24065740 otherCount = 0 -~~~ -24067490 UP 12 -24067490 LOCKOUT 1 -24067490 2048 1024 -~~~ -24067512 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -24067516 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24067665 DOWN 12 -24067665 0 0 -24067738 UP 12 -24067738 2048 0 -24067825 DOWN 12 -24067825 0 0 -24067873 UP 12 -24067873 2048 0 -24067961 DOWN 12 -24067961 0 0 -24068038 UP 12 -24068038 2048 0 -24068088 DOWN 12 -24068088 0 0 -24068334 UP 12 -24068334 2048 0 -24068564 DOWN 12 -24068564 0 0 -24068910 UP 12 -24068910 2048 0 -24068985 DOWN 12 -24068985 0 0 -24069745 UP 12 -24069745 2048 0 -24069769 DOWN 12 -24069769 0 0 -24070207 UP 12 -24070207 2048 0 -24070211 DOWN 12 -24070211 0 0 -24070465 UP 12 -24070465 2048 0 -24070485 DOWN 12 -24070485 0 0 -24070493 UP 12 -24070493 2048 0 -24070500 DOWN 12 -24070500 0 0 -24070608 UP 12 -24070608 2048 0 -24070632 DOWN 12 -24070632 0 0 -24070641 UP 12 -24070641 2048 0 -24070650 DOWN 12 -24070650 0 0 -24070709 UP 12 -24070709 2048 0 -24070737 DOWN 12 -24070737 0 0 -24070752 UP 12 -24070752 2048 0 -24070796 DOWN 12 -24070796 0 0 -24070859 UP 12 -24070859 2048 0 -24070876 DOWN 12 -24070876 0 0 -24070898 UP 12 -24070898 2048 0 -24070949 DOWN 12 -24070949 0 0 -24071006 UP 12 -24071006 2048 0 -24071024 DOWN 12 -24071024 0 0 -24071048 UP 12 -24071048 2048 0 -24071100 DOWN 12 -24071100 0 0 -24071199 UP 12 -24071199 2048 0 -24071254 DOWN 12 -24071254 0 0 -24071325 UP 12 -24071325 2048 0 -24071406 DOWN 12 -24071406 0 0 -24071413 UP 12 -24071413 2048 0 -24071565 DOWN 12 -24071565 0 0 -24071569 UP 12 -24071569 2048 0 -24072422 DOWN 12 -24072422 0 0 -24072431 UP 12 -24072430 2048 0 -24072582 DOWN 12 -24072582 0 0 -24072603 UP 12 -24072603 2048 0 -24072753 DOWN 12 -24072753 0 0 -24072770 UP 12 -24072770 2048 0 -24072935 DOWN 12 -24072935 0 0 -24072956 UP 12 -24072956 2048 0 -24073295 DOWN 12 -24073295 0 0 -24073309 UP 12 -24073309 2048 0 -24073471 DOWN 12 -24073471 0 0 -24073494 UP 12 -24073494 2048 0 -24073657 DOWN 12 -24073657 0 0 -24073677 UP 12 -24073677 2048 0 -24073837 DOWN 12 -24073837 0 0 -24073859 UP 12 -24073859 2048 0 -24076260 DOWN 12 -24076260 0 0 -24076298 UP 12 -24076298 2048 0 -24076357 DOWN 12 -24076357 0 0 -24078484 UP 11 -24078484 1024 0 -24078510 DOWN 11 -24078510 0 0 -24078583 UP 11 -24078583 1024 0 -24078838 DOWN 11 -24078838 0 0 -24078872 UP 11 -24078872 1024 0 -24078960 DOWN 11 -24078960 0 0 -24081253 UP 11 -24081253 1024 0 -24081256 DOWN 11 -24081256 0 0 -24081403 UP 11 -24081403 1024 0 -24081408 DOWN 11 -24081408 0 0 -24081555 UP 11 -24081555 1024 0 -24081559 DOWN 11 -24081559 0 0 -24081780 UP 11 -24081780 1024 0 -24081797 DOWN 11 -24081797 0 0 -24081990 UP 11 -24081990 1024 0 -24081998 DOWN 11 -24081998 0 0 -24082137 UP 11 -24082137 1024 0 -24082165 DOWN 11 -24082165 0 0 -24082275 UP 11 -24082275 1024 0 -24082334 DOWN 11 -24082334 0 0 -24082411 UP 11 -24082411 1024 0 -24082495 DOWN 11 -24082495 0 0 -24082530 UP 11 -24082530 1024 0 -24082553 DOWN 11 -24082553 0 0 -24082562 UP 11 -24082562 1024 0 -24082667 DOWN 11 -24082667 0 0 -24082693 UP 11 -24082693 1024 0 -24082844 DOWN 11 -24082844 0 0 -24082860 UP 11 -24082860 1024 0 -24083018 DOWN 11 -24083018 0 0 -24083043 UP 11 -24083043 1024 0 -24083092 DOWN 11 -24083092 0 0 -24083101 UP 11 -24083101 1024 0 -24083201 DOWN 11 -24083201 0 0 -24083211 UP 11 -24083211 1024 0 -24083378 DOWN 11 -24083378 0 0 -24083382 UP 11 -24083382 1024 0 -24083552 DOWN 11 -24083552 0 0 -24083557 UP 11 -24083557 1024 0 -24083729 DOWN 11 -24083729 0 0 -24083743 UP 11 -24083743 1024 0 -24083912 DOWN 11 -24083912 0 0 -24083936 UP 11 -24083936 1024 0 -24084098 DOWN 11 -24084098 0 0 -24084109 UP 11 -24084108 1024 0 -24086825 DOWN 11 -24086825 0 0 -24086849 UP 11 -24086849 1024 0 -24086884 DOWN 11 -24086884 0 0 -24086917 UP 11 -24086917 1024 0 -24086937 DOWN 11 -24086937 0 0 -24086949 UP 11 -24086949 1024 0 -24087030 DOWN 11 -24087030 0 0 -24087064 UP 11 -24087064 1024 0 -24087088 DOWN 11 -24087088 0 0 -24087108 UP 11 -24087108 1024 0 -24087213 DOWN 11 -24087213 0 0 -24087245 UP 11 -24087245 1024 0 -24087271 DOWN 11 -24087271 0 0 -24087277 UP 11 -24087277 1024 0 -24087389 DOWN 11 -24087389 0 0 -24087403 UP 11 -24087403 1024 0 -24087574 DOWN 11 -24087574 0 0 -24087584 UP 11 -24087584 1024 0 -24088308 DOWN 11 -24088308 0 0 -24088330 UP 11 -24088330 1024 0 -24088411 DOWN 11 -24088411 0 0 -24088480 UP 11 -24088480 1024 0 -24088557 DOWN 11 -24088557 0 0 -24088788 UP 11 -24088788 1024 0 -24089081 DOWN 11 -24089081 0 0 -24092512 LOCKEND -~~~ -~~~ -~~~ -24092533 0 512 -24094091 UP 7 -24094091 64 512 -24094400 DOWN 7 -24094399 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24094430 64 512 -~~~ -~~~ -~~~ -24094434 homeCount = 1 -24094434 waitCount = 0 -24094435 ripCount = 0 -24094435 locktype1 = 1 -24094436 locktype2 = 0 -24094436 locktype3 = 0 -24094437 goalCount = 0 -24094437 goalTotal = 0 -24094438 otherCount = 0 -~~~ -24095843 DOWN 7 -24095843 0 512 -24100125 UP 10 -24100125 waslock = 0 -24100125 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24100155 512 16777728 -~~~ -24100304 512 512 -24100517 DOWN 10 -24100517 0 512 -~~~ -~~~ -24100541 0 2560 -~~~ -~~~ -24100543 0 2048 -24100544 homeCount = 2 -24100545 waitCount = 0 -24100545 ripCount = 0 -24100546 locktype1 = 1 -24100546 locktype2 = 0 -24100547 locktype3 = 0 -24100547 goalCount = 0 -24100548 goalTotal = 0 -24100548 otherCount = 0 -~~~ -24100569 UP 10 -24100570 waslock = 0 -24100569 512 2048 -~~~ -24100616 DOWN 10 -24100616 0 2048 -~~~ -~~~ -~~~ -~~~ -24100646 homeCount = 2 -24100646 waitCount = 0 -24100647 ripCount = 0 -24100647 locktype1 = 1 -24100648 locktype2 = 0 -24100648 locktype3 = 0 -24100649 goalCount = 0 -24100649 goalTotal = 0 -24100650 otherCount = 0 -~~~ -24100783 UP 10 -24100783 waslock = 0 -24100783 512 2048 -~~~ -24100815 DOWN 10 -24100815 0 2048 -~~~ -~~~ -~~~ -~~~ -24100843 homeCount = 2 -24100843 waitCount = 0 -24100844 ripCount = 0 -24100844 locktype1 = 1 -24100845 locktype2 = 0 -24100845 locktype3 = 0 -24100846 goalCount = 0 -24100846 goalTotal = 0 -24100847 otherCount = 0 -~~~ -24100909 UP 10 -24100909 waslock = 0 -24100909 512 2048 -~~~ -24100989 DOWN 10 -24100989 0 2048 -~~~ -~~~ -~~~ -~~~ -24101013 homeCount = 2 -24101013 waitCount = 0 -24101014 ripCount = 0 -24101014 locktype1 = 1 -24101015 locktype2 = 0 -24101015 locktype3 = 0 -24101016 goalCount = 0 -24101016 goalTotal = 0 -24101017 otherCount = 0 -~~~ -24101018 UP 10 -24101018 waslock = 0 -24101018 512 2048 -~~~ -24101542 DOWN 10 -24101542 0 2048 -24101568 UP 10 -24101569 waslock = 0 -24101568 512 2048 -~~~ -~~~ -~~~ -~~~ -24101575 homeCount = 2 -24101575 waitCount = 0 -24101576 ripCount = 0 -24101576 locktype1 = 1 -24101577 locktype2 = 0 -24101577 locktype3 = 0 -24101578 goalCount = 0 -24101578 goalTotal = 0 -24101579 otherCount = 0 -~~~ -~~~ -24101712 DOWN 10 -24101712 0 2048 -~~~ -24101739 UP 10 -24101739 waslock = 0 -24101739 512 2048 -~~~ -~~~ -~~~ -24101742 homeCount = 2 -24101743 waitCount = 0 -24101743 ripCount = 0 -24101744 locktype1 = 1 -24101744 locktype2 = 0 -24101745 locktype3 = 0 -24101745 goalCount = 0 -24101746 goalTotal = 0 -24101746 otherCount = 0 -~~~ -~~~ -24101900 DOWN 10 -24101900 0 2048 -24101911 UP 10 -24101911 waslock = 0 -24101911 512 2048 -~~~ -~~~ -~~~ -~~~ -24101935 homeCount = 2 -24101935 waitCount = 0 -24101936 ripCount = 0 -24101936 locktype1 = 1 -24101937 locktype2 = 0 -24101937 locktype3 = 0 -24101938 goalCount = 0 -24101938 goalTotal = 0 -24101939 otherCount = 0 -~~~ -~~~ -24102072 DOWN 10 -24102071 0 2048 -24102086 UP 10 -24102086 waslock = 0 -24102086 512 2048 -~~~ -~~~ -~~~ -~~~ -24102094 homeCount = 2 -24102095 waitCount = 0 -24102095 ripCount = 0 -24102096 locktype1 = 1 -24102096 locktype2 = 0 -24102097 locktype3 = 0 -24102097 goalCount = 0 -24102098 goalTotal = 0 -24102098 otherCount = 0 -~~~ -~~~ -24103807 DOWN 10 -24103807 0 2048 -24103823 UP 10 -24103823 waslock = 0 -24103823 512 2048 -~~~ -~~~ -~~~ -~~~ -24103831 homeCount = 2 -24103831 waitCount = 0 -24103832 ripCount = 0 -24103832 locktype1 = 1 -24103833 locktype2 = 0 -24103833 locktype3 = 0 -24103834 goalCount = 0 -24103834 goalTotal = 0 -24103835 otherCount = 0 -~~~ -~~~ -24103981 DOWN 10 -24103981 0 2048 -~~~ -~~~ -~~~ -~~~ -24104009 homeCount = 2 -24104010 waitCount = 0 -24104010 ripCount = 0 -24104011 locktype1 = 1 -24104011 locktype2 = 0 -24104012 locktype3 = 0 -24104012 goalCount = 0 -24104013 goalTotal = 0 -24104013 otherCount = 0 -~~~ -24104014 UP 10 -24104014 waslock = 0 -24104014 512 2048 -~~~ -24104173 DOWN 10 -24104173 0 2048 -~~~ -~~~ -~~~ -~~~ -24104198 homeCount = 2 -24104199 waitCount = 0 -24104199 ripCount = 0 -24104200 locktype1 = 1 -24104200 locktype2 = 0 -24104201 locktype3 = 0 -24104201 goalCount = 0 -24104202 goalTotal = 0 -24104202 otherCount = 0 -~~~ -24116229 UP 12 -24116229 2048 2048 -24116292 DOWN 12 -24116292 0 2048 -24116492 LOCKOUT 3 -~~~ -24116519 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24116525 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24116631 UP 12 -24116631 2048 0 -24116733 DOWN 12 -24116732 0 0 -24116782 UP 12 -24116782 2048 0 -24116880 DOWN 12 -24116880 0 0 -24116947 UP 12 -24116947 2048 0 -24117083 DOWN 12 -24117083 0 0 -24117145 UP 12 -24117145 2048 0 -24117245 DOWN 12 -24117245 0 0 -24120977 UP 3 -24120976 4 0 -24121186 DOWN 3 -24121186 0 0 -24121258 4 0 -24121715 DOWN 3 -24121715 0 0 -24121728 4 0 -24121872 DOWN 3 -24121872 0 0 -24121886 4 0 -24122597 DOWN 3 -24122597 0 0 -24122606 4 0 -24123130 DOWN 3 -24123130 0 0 -24123149 4 0 -24124151 DOWN 3 -24124151 0 0 -24124156 4 0 -24124181 DOWN 3 -24124181 0 0 -24133999 512 0 -24134020 0 0 -24134058 512 0 -24134337 0 0 -24134372 512 0 -24134413 0 0 -24134490 512 0 -24134977 0 0 -24134997 512 0 -24135340 0 0 -24135350 512 0 -24135514 0 0 -24135570 512 0 -24135615 0 0 -24139773 UP 8 -24139773 128 0 -24139806 DOWN 8 -24139806 0 0 -24139876 128 0 -24140057 DOWN 8 -24140057 0 0 -24140110 128 0 -24140388 DOWN 8 -24140388 0 0 -24140409 128 0 -24140533 DOWN 8 -24140533 0 0 -24140560 128 0 -24140693 DOWN 8 -24140693 0 0 -24140720 128 0 -24140869 DOWN 8 -24140869 0 0 -24140886 128 0 -24141045 DOWN 8 -24141045 0 0 -24141064 128 0 -24141211 DOWN 8 -24141211 0 0 -24141242 128 0 -24141397 DOWN 8 -24141397 0 0 -24141423 128 0 -24141519 LOCKEND -~~~ -~~~ -~~~ -24141542 128 512 -24141565 DOWN 8 -24141565 0 512 -24141596 128 512 -24141750 DOWN 8 -24141750 0 512 -24141766 128 512 -24142090 DOWN 8 -24142090 0 512 -24142106 128 512 -24143455 DOWN 8 -24143455 0 512 -24149708 UP 10 -24149708 waslock = 0 -24149708 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24149735 512 16777728 -~~~ -24149823 DOWN 10 -24149823 0 16777728 -24149841 UP 10 -24149842 waslock = 0 -24149841 512 16777728 -~~~ -~~~ -24149848 512 16779776 -~~~ -~~~ -24149850 512 16779264 -24149851 homeCount = 3 -24149852 waitCount = 0 -24149852 ripCount = 0 -24149853 locktype1 = 1 -24149853 locktype2 = 0 -24149854 locktype3 = 1 -24149854 goalCount = 0 -24149855 goalTotal = 0 -24149855 otherCount = 0 -~~~ -~~~ -24149885 512 2048 -24150195 DOWN 10 -24150195 0 2048 -~~~ -~~~ -~~~ -~~~ -24150224 homeCount = 3 -24150224 waitCount = 0 -24150225 ripCount = 0 -24150225 locktype1 = 1 -24150226 locktype2 = 0 -24150226 locktype3 = 1 -24150227 goalCount = 0 -24150227 goalTotal = 0 -24150228 otherCount = 0 -~~~ -24150237 UP 10 -24150237 waslock = 0 -24150236 512 2048 -~~~ -24150377 DOWN 10 -24150377 0 2048 -~~~ -~~~ -~~~ -~~~ -24150405 homeCount = 3 -24150405 waitCount = 0 -24150406 ripCount = 0 -24150406 locktype1 = 1 -24150407 locktype2 = 0 -24150407 locktype3 = 1 -24150408 goalCount = 0 -24150408 goalTotal = 0 -24150409 otherCount = 0 -~~~ -24150410 UP 10 -24150410 waslock = 0 -24150410 512 2048 -~~~ -24150548 DOWN 10 -24150547 0 2048 -~~~ -~~~ -~~~ -~~~ -24150574 homeCount = 3 -24150574 waitCount = 0 -24150575 ripCount = 0 -24150575 locktype1 = 1 -24150576 locktype2 = 0 -24150576 locktype3 = 1 -24150577 goalCount = 0 -24150577 goalTotal = 0 -24150578 otherCount = 0 -~~~ -24150582 UP 10 -24150582 waslock = 0 -24150582 512 2048 -~~~ -24150712 DOWN 10 -24150712 0 2048 -~~~ -~~~ -~~~ -~~~ -24150732 homeCount = 3 -24150732 waitCount = 0 -24150733 ripCount = 0 -24150733 locktype1 = 1 -24150734 locktype2 = 0 -24150734 locktype3 = 1 -24150735 goalCount = 0 -24150735 goalTotal = 0 -24150736 otherCount = 0 -~~~ -24150746 UP 10 -24150747 waslock = 0 -24150746 512 2048 -~~~ -24150885 DOWN 10 -24150885 0 2048 -~~~ -~~~ -~~~ -~~~ -24150911 homeCount = 3 -24150912 waitCount = 0 -24150912 ripCount = 0 -24150913 locktype1 = 1 -24150913 locktype2 = 0 -24150914 locktype3 = 1 -24150914 goalCount = 0 -24150915 goalTotal = 0 -24150915 otherCount = 0 -~~~ -24150922 UP 10 -24150922 waslock = 0 -24150922 512 2048 -~~~ -24151063 DOWN 10 -24151063 0 2048 -~~~ -~~~ -~~~ -~~~ -24151091 homeCount = 3 -24151092 waitCount = 0 -24151092 ripCount = 0 -24151093 locktype1 = 1 -24151093 locktype2 = 0 -24151094 locktype3 = 1 -24151094 goalCount = 0 -24151095 goalTotal = 0 -24151095 otherCount = 0 -~~~ -24151096 UP 10 -24151096 waslock = 0 -24151096 512 2048 -~~~ -24151239 DOWN 10 -24151239 0 2048 -~~~ -~~~ -~~~ -~~~ -24151264 homeCount = 3 -24151264 waitCount = 0 -24151265 ripCount = 0 -24151265 locktype1 = 1 -24151266 locktype2 = 0 -24151266 locktype3 = 1 -24151267 goalCount = 0 -24151267 goalTotal = 0 -24151268 otherCount = 0 -~~~ -24151272 UP 10 -24151273 waslock = 0 -24151272 512 2048 -~~~ -24151430 DOWN 10 -24151430 0 2048 -~~~ -~~~ -~~~ -~~~ -24151453 homeCount = 3 -24151454 waitCount = 0 -24151454 ripCount = 0 -24151455 locktype1 = 1 -24151455 locktype2 = 0 -24151456 locktype3 = 1 -24151456 goalCount = 0 -24151457 goalTotal = 0 -24151457 otherCount = 0 -~~~ -24151458 UP 10 -24151458 waslock = 0 -24151458 512 2048 -~~~ -24151611 DOWN 10 -24151610 0 2048 -~~~ -~~~ -~~~ -~~~ -24151634 homeCount = 3 -24151635 waitCount = 0 -24151635 ripCount = 0 -24151636 locktype1 = 1 -24151636 locktype2 = 0 -24151637 locktype3 = 1 -24151637 goalCount = 0 -24151638 goalTotal = 0 -24151638 otherCount = 0 -~~~ -24151641 UP 10 -24151642 waslock = 0 -24151641 512 2048 -~~~ -24151782 DOWN 10 -24151782 0 2048 -~~~ -~~~ -~~~ -~~~ -24151805 homeCount = 3 -24151805 waitCount = 0 -24151806 ripCount = 0 -24151806 locktype1 = 1 -24151807 locktype2 = 0 -24151807 locktype3 = 1 -24151808 goalCount = 0 -24151808 goalTotal = 0 -24151809 otherCount = 0 -~~~ -24151823 UP 10 -24151824 waslock = 0 -24151823 512 2048 -~~~ -24151978 DOWN 10 -24151978 0 2048 -24152002 UP 10 -24152003 waslock = 0 -24152002 512 2048 -~~~ -~~~ -~~~ -~~~ -24152007 homeCount = 3 -24152007 waitCount = 0 -24152008 ripCount = 0 -24152008 locktype1 = 1 -24152009 locktype2 = 0 -24152009 locktype3 = 1 -24152010 goalCount = 0 -24152010 goalTotal = 0 -24152011 otherCount = 0 -~~~ -~~~ -24152184 DOWN 10 -24152184 0 2048 -24152194 UP 10 -24152195 waslock = 0 -24152194 512 2048 -~~~ -~~~ -~~~ -~~~ -24152213 homeCount = 3 -24152213 waitCount = 0 -24152214 ripCount = 0 -24152214 locktype1 = 1 -24152215 locktype2 = 0 -24152215 locktype3 = 1 -24152216 goalCount = 0 -24152216 goalTotal = 0 -24152217 otherCount = 0 -~~~ -~~~ -24152367 DOWN 10 -24152367 0 2048 -~~~ -~~~ -~~~ -~~~ -24152395 homeCount = 3 -24152395 waitCount = 0 -24152396 ripCount = 0 -24152396 locktype1 = 1 -24152397 locktype2 = 0 -24152397 locktype3 = 1 -24152398 goalCount = 0 -24152398 goalTotal = 0 -24152399 otherCount = 0 -~~~ -24152402 UP 10 -24152403 waslock = 0 -24152402 512 2048 -~~~ -24152539 DOWN 10 -24152539 0 2048 -~~~ -~~~ -~~~ -~~~ -24152564 homeCount = 3 -24152564 waitCount = 0 -24152565 ripCount = 0 -24152565 locktype1 = 1 -24152566 locktype2 = 0 -24152566 locktype3 = 1 -24152567 goalCount = 0 -24152567 goalTotal = 0 -24152568 otherCount = 0 -~~~ -24152572 UP 10 -24152573 waslock = 0 -24152572 512 2048 -~~~ -24152741 DOWN 10 -24152741 0 2048 -24152759 UP 10 -24152760 waslock = 0 -24152759 512 2048 -~~~ -~~~ -~~~ -~~~ -24152763 homeCount = 3 -24152764 waitCount = 0 -24152764 ripCount = 0 -24152765 locktype1 = 1 -24152765 locktype2 = 0 -24152766 locktype3 = 1 -24152766 goalCount = 0 -24152767 goalTotal = 0 -24152767 otherCount = 0 -~~~ -~~~ -24153497 DOWN 10 -24153497 0 2048 -~~~ -~~~ -~~~ -~~~ -24153532 homeCount = 3 -24153532 waitCount = 0 -24153533 ripCount = 0 -24153533 locktype1 = 1 -24153534 locktype2 = 0 -24153534 locktype3 = 1 -24153535 goalCount = 0 -24153535 goalTotal = 0 -24153536 otherCount = 0 -~~~ -24153539 UP 10 -24153539 waslock = 0 -24153539 512 2048 -~~~ -24153665 DOWN 10 -24153665 0 2048 -~~~ -~~~ -24153684 UP 10 -24153684 waslock = 0 -24153684 512 2048 -~~~ -~~~ -24153686 homeCount = 3 -24153687 waitCount = 0 -24153687 ripCount = 0 -24153688 locktype1 = 1 -24153688 locktype2 = 0 -24153689 locktype3 = 1 -24153689 goalCount = 0 -24153690 goalTotal = 0 -24153711 otherCount = 0 -~~~ -~~~ -24153879 DOWN 10 -24153879 0 2048 -~~~ -~~~ -~~~ -~~~ -24153906 UP 10 -24153906 waslock = 0 -24153906 512 2048 -24153907 homeCount = 3 -24153908 waitCount = 0 -24153908 ripCount = 0 -24153909 locktype1 = 1 -24153909 locktype2 = 0 -24153910 locktype3 = 1 -24153910 goalCount = 0 -24153911 goalTotal = 0 -24153911 otherCount = 0 -~~~ -~~~ -24154063 DOWN 10 -24154063 0 2048 -~~~ -~~~ -24154084 UP 10 -24154084 waslock = 0 -24154084 512 2048 -~~~ -~~~ -24154087 homeCount = 3 -24154087 waitCount = 0 -24154088 ripCount = 0 -24154088 locktype1 = 1 -24154089 locktype2 = 0 -24154089 locktype3 = 1 -24154090 goalCount = 0 -24154090 goalTotal = 0 -24154111 otherCount = 0 -~~~ -~~~ -24154734 DOWN 10 -24154734 0 2048 -~~~ -24154753 UP 10 -24154753 waslock = 0 -24154753 512 2048 -~~~ -~~~ -~~~ -24154757 homeCount = 3 -24154757 waitCount = 0 -24154758 ripCount = 0 -24154758 locktype1 = 1 -24154759 locktype2 = 0 -24154759 locktype3 = 1 -24154760 goalCount = 0 -24154760 goalTotal = 0 -24154761 otherCount = 0 -~~~ -~~~ -24155139 DOWN 10 -24155139 0 2048 -24155152 UP 10 -24155152 waslock = 0 -24155152 512 2048 -~~~ -~~~ -~~~ -~~~ -24155162 homeCount = 3 -24155163 waitCount = 0 -24155163 ripCount = 0 -24155163 locktype1 = 1 -24155164 locktype2 = 0 -24155164 locktype3 = 1 -24155165 goalCount = 0 -24155165 goalTotal = 0 -24155166 otherCount = 0 -~~~ -~~~ -24155249 DOWN 10 -24155249 0 2048 -~~~ -~~~ -~~~ -~~~ -24155276 homeCount = 3 -24155276 waitCount = 0 -24155277 ripCount = 0 -24155277 locktype1 = 1 -24155278 locktype2 = 0 -24155278 locktype3 = 1 -24155279 goalCount = 0 -24155279 goalTotal = 0 -24155280 otherCount = 0 -~~~ -24155317 UP 10 -24155317 waslock = 0 -24155317 512 2048 -~~~ -24155370 DOWN 10 -24155370 0 2048 -~~~ -~~~ -~~~ -~~~ -24155391 homeCount = 3 -24155392 waitCount = 0 -24155392 ripCount = 0 -24155393 locktype1 = 1 -24155393 locktype2 = 0 -24155394 locktype3 = 1 -24155394 goalCount = 0 -24155395 goalTotal = 0 -24155395 otherCount = 0 -~~~ -24157118 UP 12 -24157118 2048 2048 -24158118 CLICK1 -24158118 CLICK2 -~~~ -~~~ -~~~ -24158143 2048 67110912 -~~~ -24158293 2048 2048 -24162037 DOWN 12 -24162037 0 2048 -24162046 UP 12 -24162046 2048 2048 -~~~ -~~~ -24162059 2048 0 -~~~ -~~~ -24162061 2048 1 -~~~ -~~~ -24162063 2048 3 -~~~ -~~~ -24162065 2048 7 -~~~ -~~~ -24162066 2048 15 -~~~ -~~~ -24162068 2048 31 -~~~ -~~~ -24162070 2048 63 -~~~ -~~~ -24162072 2048 127 -~~~ -~~~ -24162074 2048 255 -24162075 homeCount = 3 -24162075 waitCount = 1 -24162076 ripCount = 0 -24162076 locktype1 = 1 -24162097 locktype2 = 0 -24162098 locktype3 = 1 -24162098 goalCount = 0 -24162099 goalTotal = 0 -24162099 otherCount = 0 -~~~ -24162100 CURRENTGOAL IS [2] -~~~ -24164104 DOWN 12 -24164104 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24164146 homeCount = 3 -24164147 waitCount = 1 -24164147 ripCount = 0 -24164148 locktype1 = 1 -24164148 locktype2 = 0 -24164149 locktype3 = 1 -24164149 goalCount = 0 -24164150 goalTotal = 0 -24164150 otherCount = 0 -~~~ -24164151 CURRENTGOAL IS [2] -~~~ -24166882 UP 3 -24166882 4 255 -~~~ -~~~ -24167174 DOWN 3 -24167174 0 255 -~~~ -~~~ -24167201 0 254 -~~~ -~~~ -24167203 0 252 -~~~ -~~~ -24167205 0 248 -~~~ -~~~ -24167207 0 240 -~~~ -~~~ -24167209 0 224 -~~~ -~~~ -24167211 0 192 -~~~ -~~~ -24167212 0 128 -~~~ -~~~ -24167214 0 0 -~~~ -~~~ -24167216 0 512 -24167217 homeCount = 3 -24167218 waitCount = 1 -24167218 ripCount = 0 -24167219 locktype1 = 1 -24167219 locktype2 = 0 -24167240 locktype3 = 1 -24167240 goalCount = 0 -24167241 goalTotal = 0 -24167241 otherCount = 1 -~~~ -24167242 4 512 -24167909 DOWN 3 -24167909 0 512 -24167987 4 512 -24167998 DOWN 3 -24167998 0 512 -24171196 UP 10 -24171196 waslock = 0 -24171196 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24171228 512 16777728 -~~~ -24171232 DOWN 10 -24171232 0 16777728 -~~~ -~~~ -24171244 0 16778752 -~~~ -~~~ -24171246 0 16778240 -24171247 homeCount = 4 -24171247 waitCount = 1 -24171248 ripCount = 0 -24171248 locktype1 = 1 -24171249 locktype2 = 0 -24171249 locktype3 = 1 -24171250 goalCount = 0 -24171250 goalTotal = 0 -24171251 otherCount = 1 -~~~ -24171296 UP 10 -24171296 waslock = 0 -24171296 512 16778240 -~~~ -24171323 DOWN 10 -24171323 0 16778240 -~~~ -~~~ -~~~ -~~~ -24171346 homeCount = 4 -24171346 waitCount = 1 -24171347 ripCount = 0 -24171347 locktype1 = 1 -24171348 locktype2 = 0 -24171348 locktype3 = 1 -24171349 goalCount = 0 -24171349 goalTotal = 0 -24171350 otherCount = 1 -~~~ -24171378 0 1024 -24171850 UP 10 -24171850 waslock = 0 -24171850 512 1024 -~~~ -24172122 DOWN 10 -24172122 0 1024 -~~~ -~~~ -~~~ -~~~ -24172155 homeCount = 4 -24172156 waitCount = 1 -24172156 ripCount = 0 -24172157 locktype1 = 1 -24172157 locktype2 = 0 -24172158 locktype3 = 1 -24172158 goalCount = 0 -24172159 goalTotal = 0 -24172159 otherCount = 1 -~~~ -24172177 UP 10 -24172177 waslock = 0 -24172177 512 1024 -24172206 DOWN 10 -24172206 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24172253 homeCount = 4 -24172254 waitCount = 1 -24172254 ripCount = 0 -24172255 locktype1 = 1 -24172255 locktype2 = 0 -24172256 locktype3 = 1 -24172256 goalCount = 0 -24172257 goalTotal = 0 -24172257 otherCount = 1 -~~~ -24172303 UP 10 -24172303 waslock = 0 -24172303 512 1024 -~~~ -24172431 DOWN 10 -24172431 0 1024 -24172454 UP 10 -24172454 waslock = 0 -24172454 512 1024 -~~~ -~~~ -~~~ -~~~ -24172460 homeCount = 4 -24172461 waitCount = 1 -24172461 ripCount = 0 -24172462 locktype1 = 1 -24172462 locktype2 = 0 -24172463 locktype3 = 1 -24172463 goalCount = 0 -24172464 goalTotal = 0 -24172464 otherCount = 1 -~~~ -~~~ -24176002 DOWN 10 -24176002 0 1024 -~~~ -~~~ -~~~ -~~~ -24176021 homeCount = 4 -24176022 waitCount = 1 -24176022 ripCount = 0 -24176023 locktype1 = 1 -24176023 locktype2 = 0 -24176024 locktype3 = 1 -24176024 goalCount = 0 -24176025 goalTotal = 0 -24176025 otherCount = 1 -~~~ -24176057 UP 10 -24176057 waslock = 0 -24176057 512 1024 -~~~ -24176101 DOWN 10 -24176101 0 1024 -~~~ -~~~ -~~~ -~~~ -24176131 homeCount = 4 -24176131 waitCount = 1 -24176132 ripCount = 0 -24176132 locktype1 = 1 -24176133 locktype2 = 0 -24176133 locktype3 = 1 -24176134 goalCount = 0 -24176134 goalTotal = 0 -24176135 otherCount = 1 -~~~ -24177410 UP 11 -24177410 1024 1024 -24177464 DOWN 11 -24177464 0 1024 -24177493 UP 11 -24177493 1024 1024 -24178180 DOWN 11 -24178180 0 1024 -24178233 UP 11 -24178233 1024 1024 -24178411 BEEP1 -24178411 BEEP2 -~~~ -~~~ -~~~ -24178442 1024 33555456 -~~~ -24178528 DOWN 11 -24178528 0 33555456 -24178550 UP 11 -24178550 1024 33555456 -24178592 1024 1024 -~~~ -~~~ -24179111 1024 0 -~~~ -~~~ -24179113 1024 1 -~~~ -~~~ -24179115 1024 3 -~~~ -~~~ -24179116 1024 7 -~~~ -~~~ -24179118 1024 15 -~~~ -~~~ -24179120 1024 31 -~~~ -24179121 DOWN 11 -24179121 0 31 -~~~ -~~~ -24179123 0 63 -~~~ -~~~ -24179125 0 127 -~~~ -24179126 0 255 -24179127 homeCount = 4 -24179128 waitCount = 1 -24179149 ripCount = 1 -24179149 locktype1 = 1 -24179150 locktype2 = 0 -24179150 locktype3 = 1 -24179151 goalCount = 0 -24179151 goalTotal = 0 -24179152 otherCount = 1 -~~~ -24179153 CURRENTGOAL IS [2] -~~~ -24179153 UP 11 -24179153 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24179182 homeCount = 4 -24179183 waitCount = 1 -24179183 ripCount = 1 -24179184 locktype1 = 1 -24179184 locktype2 = 0 -24179185 locktype3 = 1 -24179185 goalCount = 0 -24179206 goalTotal = 0 -24179207 otherCount = 1 -~~~ -24179208 CURRENTGOAL IS [2] -~~~ -24183586 DOWN 11 -24183586 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24183630 homeCount = 4 -24183630 waitCount = 1 -24183631 ripCount = 1 -24183631 locktype1 = 1 -24183632 locktype2 = 0 -24183632 locktype3 = 1 -24183633 goalCount = 0 -24183633 goalTotal = 0 -24183634 otherCount = 1 -~~~ -24183635 CURRENTGOAL IS [2] -~~~ -24186519 UP 7 -24186519 64 255 -24186539 DOWN 7 -24186539 0 255 -~~~ -~~~ -~~~ -~~~ -24186563 0 254 -~~~ -~~~ -24186565 0 252 -~~~ -~~~ -24186567 0 248 -~~~ -~~~ -24186569 0 240 -~~~ -~~~ -24186571 0 224 -~~~ -~~~ -24186573 0 192 -~~~ -~~~ -24186574 0 128 -~~~ -~~~ -24186576 0 0 -~~~ -~~~ -24186578 0 512 -24186579 homeCount = 4 -24186580 waitCount = 1 -24186580 ripCount = 1 -24186581 locktype1 = 1 -24186581 locktype2 = 0 -24186602 locktype3 = 1 -24186602 goalCount = 0 -24186603 goalTotal = 0 -24186603 otherCount = 2 -~~~ -24186624 64 512 -24186990 DOWN 7 -24186990 0 512 -24187012 64 512 -24189589 DOWN 7 -24189589 0 512 -24189637 64 512 -24189704 DOWN 7 -24189704 0 512 -24196352 UP 10 -24196352 waslock = 0 -24196352 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24196378 512 16777728 -~~~ -24196528 512 512 -24196681 DOWN 10 -24196680 0 512 -~~~ -~~~ -24196702 0 1536 -~~~ -~~~ -24196704 0 1024 -24196705 homeCount = 5 -24196706 waitCount = 1 -24196706 ripCount = 1 -24196707 locktype1 = 1 -24196707 locktype2 = 0 -24196708 locktype3 = 1 -24196708 goalCount = 0 -24196709 goalTotal = 0 -24196709 otherCount = 2 -~~~ -24196730 UP 10 -24196731 waslock = 0 -24196730 512 1024 -~~~ -24200930 DOWN 10 -24200930 0 1024 -~~~ -~~~ -~~~ -~~~ -24200956 homeCount = 5 -24200957 waitCount = 1 -24200957 ripCount = 1 -24200958 locktype1 = 1 -24200958 locktype2 = 0 -24200959 locktype3 = 1 -24200960 goalCount = 0 -24200960 goalTotal = 0 -24200960 otherCount = 2 -~~~ -24200961 UP 10 -24200961 waslock = 0 -24200961 512 1024 -~~~ -24201037 DOWN 10 -24201037 0 1024 -~~~ -~~~ -~~~ -~~~ -24201065 homeCount = 5 -24201065 waitCount = 1 -24201066 ripCount = 1 -24201066 locktype1 = 1 -24201067 locktype2 = 0 -24201067 locktype3 = 1 -24201068 goalCount = 0 -24201068 goalTotal = 0 -24201069 otherCount = 2 -~~~ -24203157 UP 11 -24203157 1024 1024 -24203186 DOWN 11 -24203186 0 1024 -24203242 UP 11 -24203242 1024 1024 -24204343 DOWN 11 -24204343 0 1024 -24204378 UP 11 -24204378 1024 1024 -24204450 DOWN 11 -24204450 0 1024 -24204510 UP 11 -24204510 1024 1024 -24204657 BEEP1 -24204657 BEEP2 -~~~ -~~~ -~~~ -24204685 1024 33555456 -~~~ -24204835 1024 1024 -24208431 DOWN 11 -24208431 0 1024 -24208433 UP 11 -24208433 1024 1024 -~~~ -~~~ -24208455 1024 0 -~~~ -~~~ -24208457 1024 1 -~~~ -~~~ -24208459 1024 3 -~~~ -~~~ -24208460 1024 7 -~~~ -~~~ -24208462 1024 15 -~~~ -~~~ -24208464 1024 31 -~~~ -~~~ -24208466 1024 63 -~~~ -~~~ -24208468 1024 127 -~~~ -~~~ -24208469 1024 255 -24208470 homeCount = 5 -24208471 waitCount = 1 -24208472 ripCount = 2 -24208472 locktype1 = 1 -24208493 locktype2 = 0 -24208493 locktype3 = 1 -24208494 goalCount = 0 -24208494 goalTotal = 0 -24208495 otherCount = 2 -~~~ -24208496 CURRENTGOAL IS [2] -~~~ -24208558 DOWN 11 -24208558 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208599 UP 11 -24208599 1024 255 -24208600 homeCount = 5 -24208601 waitCount = 1 -24208601 ripCount = 2 -24208602 locktype1 = 1 -24208602 locktype2 = 0 -24208603 locktype3 = 1 -24208603 goalCount = 0 -24208604 goalTotal = 0 -24208604 otherCount = 2 -~~~ -24208626 CURRENTGOAL IS [2] -~~~ -24208626 DOWN 11 -24208626 0 255 -24208640 UP 11 -24208640 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208681 homeCount = 5 -24208682 waitCount = 1 -24208682 ripCount = 2 -24208683 locktype1 = 1 -24208684 locktype2 = 0 -24208684 locktype3 = 1 -24208685 goalCount = 0 -24208685 goalTotal = 0 -24208686 otherCount = 2 -~~~ -24208687 CURRENTGOAL IS [2] -~~~ -24208711 DOWN 11 -24208711 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208740 homeCount = 5 -24208741 waitCount = 1 -24208741 ripCount = 2 -24208742 locktype1 = 1 -24208742 locktype2 = 0 -24208743 locktype3 = 1 -24208743 goalCount = 0 -24208744 goalTotal = 0 -24208744 otherCount = 2 -~~~ -24208745 CURRENTGOAL IS [2] -~~~ -24208812 UP 11 -24208812 1024 255 -24208850 DOWN 11 -24208850 0 255 -24208860 UP 11 -24208860 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24208893 homeCount = 5 -24208893 waitCount = 1 -24208894 ripCount = 2 -24208894 locktype1 = 1 -24208895 locktype2 = 0 -24208895 locktype3 = 1 -24208896 goalCount = 0 -24208896 goalTotal = 0 -24208897 otherCount = 2 -~~~ -24208898 CURRENTGOAL IS [2] -~~~ -24209074 DOWN 11 -24209074 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209106 UP 11 -24209106 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -24209112 homeCount = 5 -24209112 waitCount = 1 -24209113 ripCount = 2 -24209113 locktype1 = 1 -24209114 locktype2 = 0 -24209114 locktype3 = 1 -24209115 goalCount = 0 -24209115 goalTotal = 0 -24209116 otherCount = 2 -~~~ -24209117 CURRENTGOAL IS [2] -~~~ -24209145 DOWN 11 -24209145 0 255 -24209163 UP 11 -24209163 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209187 homeCount = 5 -24209188 waitCount = 1 -24209188 ripCount = 2 -24209189 locktype1 = 1 -24209189 locktype2 = 0 -24209190 locktype3 = 1 -24209190 goalCount = 0 -24209191 goalTotal = 0 -24209191 otherCount = 2 -~~~ -24209192 CURRENTGOAL IS [2] -~~~ -24209289 DOWN 11 -24209289 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24209331 homeCount = 5 -24209332 waitCount = 1 -24209332 ripCount = 2 -24209333 locktype1 = 1 -24209333 locktype2 = 0 -24209334 locktype3 = 1 -24209334 goalCount = 0 -24209335 goalTotal = 0 -24209335 otherCount = 2 -~~~ -24209337 CURRENTGOAL IS [2] -~~~ -24212126 UP 5 -24212126 16 255 -~~~ -24212146 DOWN 5 -24212146 0 255 -~~~ -~~~ -~~~ -24212177 0 254 -~~~ -~~~ -24212178 0 252 -~~~ -~~~ -24212180 0 248 -~~~ -~~~ -24212182 0 240 -~~~ -~~~ -24212184 0 224 -~~~ -~~~ -24212186 0 192 -~~~ -~~~ -24212187 0 128 -~~~ -~~~ -24212189 0 0 -~~~ -~~~ -24212191 0 512 -24212192 homeCount = 5 -24212193 waitCount = 1 -24212193 ripCount = 2 -24212194 locktype1 = 1 -24212194 locktype2 = 0 -24212215 locktype3 = 1 -24212215 goalCount = 0 -24212216 goalTotal = 0 -24212216 otherCount = 3 -~~~ -24212469 16 512 -24212756 DOWN 5 -24212756 0 512 -24212762 16 512 -24213578 DOWN 5 -24213578 0 512 -24213590 16 512 -24213754 DOWN 5 -24213754 0 512 -24213774 16 512 -24214290 DOWN 5 -24214290 0 512 -24214316 16 512 -24214469 DOWN 5 -24214469 0 512 -24214501 16 512 -24214663 DOWN 5 -24214663 0 512 -24214680 16 512 -24214843 DOWN 5 -24214843 0 512 -24214884 16 512 -24215375 DOWN 5 -24215375 0 512 -24215398 16 512 -24215554 DOWN 5 -24215554 0 512 -24215575 16 512 -24216148 DOWN 5 -24216148 0 512 -24216172 16 512 -24216867 DOWN 5 -24216867 0 512 -24216888 16 512 -24216954 DOWN 5 -24216954 0 512 -24216960 16 512 -24217048 DOWN 5 -24217048 0 512 -24217080 16 512 -24217982 DOWN 5 -24217982 0 512 -24218106 16 512 -24218201 DOWN 5 -24218201 0 512 -24218225 16 512 -24218393 DOWN 5 -24218393 0 512 -24218402 16 512 -24218595 DOWN 5 -24218595 0 512 -24218607 16 512 -24218777 DOWN 5 -24218777 0 512 -24218799 16 512 -24218818 DOWN 5 -24218818 0 512 -24218852 16 512 -24218964 DOWN 5 -24218964 0 512 -24218986 16 512 -24219001 DOWN 5 -24219001 0 512 -24219056 16 512 -24219074 DOWN 5 -24219074 0 512 -24233913 UP 10 -24233913 waslock = 0 -24233913 512 512 -24233926 DOWN 10 -24233926 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24233953 0 16777728 -~~~ -~~~ -~~~ -24233956 0 16779776 -~~~ -~~~ -24233958 0 16779264 -24233959 homeCount = 6 -24233959 waitCount = 1 -24233960 ripCount = 2 -24233960 locktype1 = 1 -24233961 locktype2 = 0 -24233961 locktype3 = 1 -24233962 goalCount = 0 -24233962 goalTotal = 0 -24233963 otherCount = 3 -~~~ -24234035 UP 10 -24234035 waslock = 0 -24234035 512 16779264 -~~~ -24234103 512 2048 -24234151 DOWN 10 -24234151 0 2048 -~~~ -~~~ -~~~ -~~~ -24234174 homeCount = 6 -24234175 waitCount = 1 -24234175 ripCount = 2 -24234176 locktype1 = 1 -24234176 locktype2 = 0 -24234177 locktype3 = 1 -24234177 goalCount = 0 -24234178 goalTotal = 0 -24234178 otherCount = 3 -~~~ -24234246 UP 10 -24234246 waslock = 0 -24234246 512 2048 -~~~ -24234719 DOWN 10 -24234719 0 2048 -24234733 UP 10 -24234733 waslock = 0 -24234733 512 2048 -~~~ -~~~ -~~~ -~~~ -24234756 homeCount = 6 -24234757 waitCount = 1 -24234757 ripCount = 2 -24234758 locktype1 = 1 -24234758 locktype2 = 0 -24234759 locktype3 = 1 -24234759 goalCount = 0 -24234760 goalTotal = 0 -24234760 otherCount = 3 -~~~ -~~~ -24234879 DOWN 10 -24234879 0 2048 -24234898 UP 10 -24234899 waslock = 0 -24234898 512 2048 -~~~ -~~~ -~~~ -~~~ -24234904 homeCount = 6 -24234904 waitCount = 1 -24234905 ripCount = 2 -24234905 locktype1 = 1 -24234906 locktype2 = 0 -24234906 locktype3 = 1 -24234907 goalCount = 0 -24234907 goalTotal = 0 -24234908 otherCount = 3 -~~~ -~~~ -24235038 DOWN 10 -24235038 0 2048 -24235063 UP 10 -24235064 waslock = 0 -24235063 512 2048 -~~~ -~~~ -~~~ -~~~ -24235074 homeCount = 6 -24235074 waitCount = 1 -24235075 ripCount = 2 -24235075 locktype1 = 1 -24235076 locktype2 = 0 -24235076 locktype3 = 1 -24235077 goalCount = 0 -24235077 goalTotal = 0 -24235078 otherCount = 3 -~~~ -~~~ -24238546 DOWN 10 -24238546 0 2048 -24238564 UP 10 -24238564 waslock = 0 -24238564 512 2048 -~~~ -~~~ -~~~ -~~~ -24238587 homeCount = 6 -24238588 waitCount = 1 -24238588 ripCount = 2 -24238589 locktype1 = 1 -24238589 locktype2 = 0 -24238590 locktype3 = 1 -24238590 goalCount = 0 -24238591 goalTotal = 0 -24238591 otherCount = 3 -~~~ -~~~ -24238665 DOWN 10 -24238665 0 2048 -~~~ -~~~ -~~~ -~~~ -24238694 homeCount = 6 -24238694 waitCount = 1 -24238695 ripCount = 2 -24238695 locktype1 = 1 -24238696 locktype2 = 0 -24238696 locktype3 = 1 -24238697 goalCount = 0 -24238697 goalTotal = 0 -24238698 otherCount = 3 -~~~ -24238715 UP 10 -24238715 waslock = 0 -24238715 512 2048 -~~~ -24238760 DOWN 10 -24238760 0 2048 -~~~ -~~~ -~~~ -~~~ -24238786 homeCount = 6 -24238787 waitCount = 1 -24238787 ripCount = 2 -24238788 locktype1 = 1 -24238788 locktype2 = 0 -24238789 locktype3 = 1 -24238789 goalCount = 0 -24238790 goalTotal = 0 -24238790 otherCount = 3 -~~~ -24240420 UP 12 -24240420 2048 2048 -24241195 DOWN 12 -24241195 0 2048 -24241237 UP 12 -24241237 2048 2048 -24241466 DOWN 12 -24241466 0 2048 -24241603 UP 12 -24241603 2048 2048 -24241920 CLICK1 -24241920 CLICK2 -~~~ -~~~ -~~~ -24241942 2048 67110912 -~~~ -24242092 2048 2048 -24248498 DOWN 12 -24248498 0 2048 -~~~ -~~~ -24248521 0 0 -~~~ -~~~ -24248523 UP 12 -24248523 2048 1 -~~~ -~~~ -24248525 2048 3 -~~~ -~~~ -24248526 2048 7 -~~~ -~~~ -24248528 2048 15 -~~~ -~~~ -24248530 2048 31 -~~~ -~~~ -24248532 2048 63 -~~~ -~~~ -24248533 2048 127 -~~~ -~~~ -24248535 2048 255 -24248536 homeCount = 6 -24248537 waitCount = 2 -24248537 ripCount = 2 -24248559 locktype1 = 1 -24248559 locktype2 = 0 -24248560 locktype3 = 1 -24248560 goalCount = 0 -24248561 goalTotal = 0 -24248561 otherCount = 3 -~~~ -24248562 CURRENTGOAL IS [2] -~~~ -24248563 DOWN 12 -24248563 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24248619 homeCount = 6 -24248619 waitCount = 2 -24248620 ripCount = 2 -24248620 locktype1 = 1 -24248621 locktype2 = 0 -24248621 locktype3 = 1 -24248622 goalCount = 0 -24248622 goalTotal = 0 -24248623 otherCount = 3 -~~~ -24248624 CURRENTGOAL IS [2] -~~~ -24251525 UP 1 -24251524 1 255 -~~~ -~~~ -24252734 DOWN 1 -24252734 0 255 -24252741 1 255 -~~~ -~~~ -24252757 1 254 -~~~ -~~~ -24252759 1 252 -~~~ -~~~ -24252760 1 248 -~~~ -~~~ -24252762 1 240 -~~~ -~~~ -24252764 1 224 -~~~ -~~~ -24252766 1 192 -~~~ -~~~ -24252768 1 128 -~~~ -~~~ -24252769 1 0 -~~~ -~~~ -24252771 1 512 -24252772 homeCount = 6 -24252773 waitCount = 2 -24252773 ripCount = 2 -24252774 locktype1 = 1 -24252774 locktype2 = 0 -24252795 locktype3 = 1 -24252796 goalCount = 0 -24252796 goalTotal = 0 -24252797 otherCount = 4 -~~~ -24253082 DOWN 1 -24253082 0 512 -24253096 1 512 -24253270 DOWN 1 -24253270 0 512 -24253278 1 512 -24253999 DOWN 1 -24253999 0 512 -24254012 1 512 -24254185 DOWN 1 -24254185 0 512 -24254197 1 512 -24254296 DOWN 1 -24254296 0 512 -24254647 1 512 -24254672 DOWN 1 -24254672 0 512 -24262772 UP 10 -24262773 waslock = 0 -24262772 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24262798 512 16777728 -~~~ -24262832 DOWN 10 -24262832 0 16777728 -~~~ -~~~ -24262851 0 16778752 -~~~ -~~~ -24262853 0 16778240 -24262854 homeCount = 7 -24262855 waitCount = 2 -24262855 ripCount = 2 -24262856 locktype1 = 1 -24262856 locktype2 = 0 -24262857 locktype3 = 1 -24262857 goalCount = 0 -24262858 goalTotal = 0 -24262858 otherCount = 4 -~~~ -24262879 UP 10 -24262879 waslock = 0 -24262879 512 16778240 -~~~ -24262948 512 1024 -24262970 DOWN 10 -24262970 0 1024 -~~~ -~~~ -~~~ -~~~ -24262994 homeCount = 7 -24262995 waitCount = 2 -24262995 ripCount = 2 -24262996 locktype1 = 1 -24262996 locktype2 = 0 -24262997 locktype3 = 1 -24262997 goalCount = 0 -24262998 goalTotal = 0 -24262998 otherCount = 4 -~~~ -24263099 UP 10 -24263099 waslock = 0 -24263099 512 1024 -~~~ -24263849 DOWN 10 -24263849 0 1024 -24263863 UP 10 -24263863 waslock = 0 -24263863 512 1024 -~~~ -~~~ -~~~ -~~~ -24263874 homeCount = 7 -24263874 waitCount = 2 -24263875 ripCount = 2 -24263875 locktype1 = 1 -24263876 locktype2 = 0 -24263876 locktype3 = 1 -24263877 goalCount = 0 -24263877 goalTotal = 0 -24263878 otherCount = 4 -~~~ -~~~ -24266888 DOWN 10 -24266888 0 1024 -~~~ -~~~ -~~~ -~~~ -24266911 homeCount = 7 -24266912 waitCount = 2 -24266912 ripCount = 2 -24266913 locktype1 = 1 -24266913 locktype2 = 0 -24266914 locktype3 = 1 -24266914 goalCount = 0 -24266915 goalTotal = 0 -24266915 otherCount = 4 -~~~ -24266933 UP 10 -24266933 waslock = 0 -24266933 512 1024 -~~~ -24266988 DOWN 10 -24266988 0 1024 -~~~ -~~~ -~~~ -~~~ -24267015 homeCount = 7 -24267016 waitCount = 2 -24267016 ripCount = 2 -24267017 locktype1 = 1 -24267017 locktype2 = 0 -24267018 locktype3 = 1 -24267018 goalCount = 0 -24267019 goalTotal = 0 -24267019 otherCount = 4 -~~~ -24271770 UP 11 -24271770 1024 1024 -24273771 BEEP1 -24273771 BEEP2 -~~~ -~~~ -~~~ -24273793 1024 33555456 -~~~ -24273943 1024 1024 -24277448 DOWN 11 -24277448 0 1024 -~~~ -~~~ -24277475 0 0 -~~~ -~~~ -24277476 0 1 -~~~ -~~~ -24277478 0 3 -~~~ -~~~ -24277480 0 7 -~~~ -~~~ -24277482 0 15 -~~~ -~~~ -24277484 0 31 -~~~ -24277485 UP 11 -24277485 1024 31 -~~~ -~~~ -24277487 1024 63 -~~~ -~~~ -24277489 1024 127 -~~~ -24277490 1024 255 -24277491 homeCount = 7 -24277491 waitCount = 2 -24277512 ripCount = 3 -24277513 locktype1 = 1 -24277513 locktype2 = 0 -24277514 locktype3 = 1 -24277514 goalCount = 0 -24277515 goalTotal = 0 -24277515 otherCount = 4 -~~~ -24277517 CURRENTGOAL IS [2] -~~~ -24277552 DOWN 11 -24277552 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24277592 homeCount = 7 -24277593 waitCount = 2 -24277593 ripCount = 3 -24277594 locktype1 = 1 -24277594 locktype2 = 0 -24277595 locktype3 = 1 -24277596 goalCount = 0 -24277596 goalTotal = 0 -24277597 otherCount = 4 -~~~ -24277598 CURRENTGOAL IS [2] -~~~ -24281549 UP 8 -24281549 128 255 -~~~ -~~~ -24281853 DOWN 8 -24281853 0 255 -~~~ -~~~ -24281878 0 254 -~~~ -~~~ -24281880 0 252 -~~~ -~~~ -24281882 0 248 -~~~ -~~~ -24281883 0 240 -~~~ -~~~ -24281885 0 224 -~~~ -~~~ -24281887 0 192 -~~~ -~~~ -24281889 0 128 -~~~ -~~~ -24281891 0 0 -~~~ -~~~ -24281893 0 512 -24281893 homeCount = 7 -24281894 waitCount = 2 -24281895 ripCount = 3 -24281895 locktype1 = 1 -24281895 locktype2 = 0 -24281916 locktype3 = 1 -24281917 goalCount = 0 -24281917 goalTotal = 0 -24281918 otherCount = 5 -~~~ -24281918 128 512 -24282421 DOWN 8 -24282421 0 512 -24286521 UP 10 -24286521 waslock = 0 -24286521 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24286555 512 16777728 -~~~ -24286705 512 512 -24286795 DOWN 10 -24286795 0 512 -~~~ -~~~ -24286820 0 2560 -~~~ -~~~ -24286822 0 2048 -24286823 homeCount = 8 -24286823 waitCount = 2 -24286824 ripCount = 3 -24286824 locktype1 = 1 -24286825 locktype2 = 0 -24286825 locktype3 = 1 -24286826 goalCount = 0 -24286826 goalTotal = 0 -24286827 otherCount = 5 -~~~ -24286920 UP 10 -24286920 waslock = 0 -24286920 512 2048 -~~~ -24287572 DOWN 10 -24287572 0 2048 -24287592 UP 10 -24287592 waslock = 0 -24287592 512 2048 -~~~ -~~~ -~~~ -~~~ -24287596 homeCount = 8 -24287597 waitCount = 2 -24287597 ripCount = 3 -24287598 locktype1 = 1 -24287598 locktype2 = 0 -24287599 locktype3 = 1 -24287599 goalCount = 0 -24287600 goalTotal = 0 -24287600 otherCount = 5 -~~~ -~~~ -24291624 DOWN 10 -24291624 0 2048 -~~~ -~~~ -~~~ -~~~ -24291653 homeCount = 8 -24291653 waitCount = 2 -24291654 ripCount = 3 -24291654 locktype1 = 1 -24291655 locktype2 = 0 -24291655 locktype3 = 1 -24291656 goalCount = 0 -24291656 goalTotal = 0 -24291657 otherCount = 5 -~~~ -24291697 UP 10 -24291698 waslock = 0 -24291697 512 2048 -24291715 DOWN 10 -24291715 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -24291743 homeCount = 8 -24291743 waitCount = 2 -24291744 ripCount = 3 -24291744 locktype1 = 1 -24291745 locktype2 = 0 -24291745 locktype3 = 1 -24291746 goalCount = 0 -24291746 goalTotal = 0 -24291746 otherCount = 5 -~~~ -24293130 UP 12 -24293130 2048 2048 -24293155 DOWN 12 -24293155 0 2048 -24293209 UP 12 -24293209 2048 2048 -24294378 DOWN 12 -24294378 0 2048 -24294428 UP 12 -24294428 2048 2048 -24295131 CLICK1 -24295131 CLICK2 -~~~ -~~~ -~~~ -24295153 2048 67110912 -~~~ -24295303 2048 2048 -24300097 DOWN 12 -24300097 0 2048 -~~~ -~~~ -24300119 0 0 -~~~ -~~~ -24300121 0 1 -~~~ -~~~ -24300123 0 3 -~~~ -~~~ -24300125 0 7 -~~~ -~~~ -24300127 0 15 -~~~ -~~~ -24300129 0 31 -~~~ -~~~ -24300130 0 63 -~~~ -~~~ -24300132 0 127 -~~~ -~~~ -24300134 0 255 -24300135 homeCount = 8 -24300136 waitCount = 3 -24300136 ripCount = 3 -24300137 locktype1 = 1 -24300137 locktype2 = 0 -24300158 locktype3 = 1 -24300158 goalCount = 0 -24300159 goalTotal = 0 -24300159 otherCount = 5 -~~~ -24300160 CURRENTGOAL IS [2] -~~~ -24303861 UP 3 -24303861 4 255 -~~~ -~~~ -24304128 DOWN 3 -24304128 0 255 -~~~ -~~~ -24304149 0 254 -~~~ -~~~ -24304151 0 252 -~~~ -~~~ -24304153 0 248 -~~~ -~~~ -24304155 0 240 -~~~ -~~~ -24304157 0 224 -~~~ -~~~ -24304158 0 192 -~~~ -~~~ -24304160 0 128 -~~~ -~~~ -24304162 0 0 -~~~ -~~~ -24304164 0 512 -24304165 homeCount = 8 -24304165 waitCount = 3 -24304166 ripCount = 3 -24304166 locktype1 = 1 -24304188 locktype2 = 0 -24304188 locktype3 = 1 -24304189 goalCount = 0 -24304189 goalTotal = 0 -24304190 otherCount = 6 -~~~ -24305317 4 512 -24305742 DOWN 3 -24305742 0 512 -24309794 UP 10 -24309795 waslock = 0 -24309794 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24309826 512 16777728 -~~~ -24309976 512 512 -24310016 DOWN 10 -24310016 0 512 -~~~ -~~~ -24310043 0 1536 -~~~ -~~~ -24310045 0 1024 -24310046 homeCount = 9 -24310047 waitCount = 3 -24310047 ripCount = 3 -24310048 locktype1 = 1 -24310048 locktype2 = 0 -24310049 locktype3 = 1 -24310049 goalCount = 0 -24310050 goalTotal = 0 -24310050 otherCount = 6 -~~~ -24310071 UP 10 -24310072 waslock = 0 -24310071 512 1024 -~~~ -24316271 DOWN 10 -24316271 0 1024 -~~~ -~~~ -~~~ -~~~ -24316293 homeCount = 9 -24316294 waitCount = 3 -24316294 ripCount = 3 -24316295 locktype1 = 1 -24316295 locktype2 = 0 -24316296 locktype3 = 1 -24316296 goalCount = 0 -24316297 goalTotal = 0 -24316297 otherCount = 6 -~~~ -24316327 UP 10 -24316327 waslock = 0 -24316327 512 1024 -~~~ -24316347 DOWN 10 -24316347 0 1024 -~~~ -~~~ -~~~ -~~~ -24316382 homeCount = 9 -24316383 waitCount = 3 -24316383 ripCount = 3 -24316384 locktype1 = 1 -24316384 locktype2 = 0 -24316385 locktype3 = 1 -24316385 goalCount = 0 -24316386 goalTotal = 0 -24316386 otherCount = 6 -~~~ -24317934 UP 11 -24317934 1024 1024 -24319937 DOWN 11 -24319937 0 1024 -24319996 UP 11 -24319996 1024 1024 -24321434 BEEP1 -24321434 BEEP2 -~~~ -~~~ -~~~ -24321456 1024 33555456 -~~~ -24321606 1024 1024 -24325737 DOWN 11 -24325737 0 1024 -~~~ -~~~ -24325761 0 0 -~~~ -~~~ -24325762 0 1 -~~~ -~~~ -24325764 0 3 -~~~ -~~~ -24325766 0 7 -~~~ -24325767 UP 11 -24325767 1024 7 -~~~ -~~~ -24325769 1024 15 -~~~ -~~~ -24325771 1024 31 -~~~ -~~~ -24325773 1024 63 -~~~ -24325774 1024 127 -~~~ -~~~ -24325775 1024 255 -24325776 homeCount = 9 -24325777 waitCount = 3 -24325798 ripCount = 4 -24325799 locktype1 = 1 -24325799 locktype2 = 0 -24325800 locktype3 = 1 -24325800 goalCount = 0 -24325801 goalTotal = 0 -24325801 otherCount = 6 -~~~ -24325802 CURRENTGOAL IS [2] -~~~ -24325834 DOWN 11 -24325834 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24325867 homeCount = 9 -24325867 waitCount = 3 -24325868 ripCount = 4 -24325868 locktype1 = 1 -24325869 locktype2 = 0 -24325870 locktype3 = 1 -24325870 goalCount = 0 -24325871 goalTotal = 0 -24325871 otherCount = 6 -~~~ -24325872 CURRENTGOAL IS [2] -~~~ -24328994 UP 7 -24328994 64 255 -~~~ -~~~ -24329409 DOWN 7 -24329409 0 255 -~~~ -~~~ -24329431 0 254 -~~~ -~~~ -24329433 0 252 -~~~ -~~~ -24329434 0 248 -~~~ -~~~ -24329436 0 240 -~~~ -~~~ -24329438 0 224 -~~~ -~~~ -24329440 0 192 -~~~ -~~~ -24329442 0 128 -~~~ -~~~ -24329444 0 0 -~~~ -~~~ -24329445 0 512 -24329446 homeCount = 9 -24329447 waitCount = 3 -24329447 ripCount = 4 -24329448 locktype1 = 1 -24329448 locktype2 = 0 -24329470 locktype3 = 1 -24329470 goalCount = 0 -24329471 goalTotal = 0 -24329471 otherCount = 7 -~~~ -24329556 64 512 -24330105 DOWN 7 -24330105 0 512 -24330111 64 512 -24330227 DOWN 7 -24330227 0 512 -24330263 64 512 -24330369 DOWN 7 -24330369 0 512 -24334809 UP 10 -24334810 waslock = 0 -24334809 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24334837 512 16777728 -~~~ -24334987 512 512 -24335207 DOWN 10 -24335207 0 512 -~~~ -~~~ -24335235 0 2560 -~~~ -~~~ -24335237 0 2048 -24335238 homeCount = 10 -24335238 waitCount = 3 -24335239 ripCount = 4 -24335239 locktype1 = 1 -24335240 locktype2 = 0 -24335240 locktype3 = 1 -24335241 goalCount = 0 -24335241 goalTotal = 0 -24335242 otherCount = 7 -~~~ -24335265 UP 10 -24335265 waslock = 0 -24335265 512 2048 -~~~ -24338650 DOWN 10 -24338650 0 2048 -~~~ -~~~ -~~~ -~~~ -24338675 homeCount = 10 -24338675 waitCount = 3 -24338676 ripCount = 4 -24338676 locktype1 = 1 -24338677 locktype2 = 0 -24338677 locktype3 = 1 -24338678 goalCount = 0 -24338678 goalTotal = 0 -24338679 otherCount = 7 -~~~ -24340261 UP 12 -24340261 2048 2048 -24342412 DOWN 12 -24342411 0 2048 -24342434 UP 12 -24342434 2048 2048 -24343011 CLICK1 -24343011 CLICK2 -~~~ -~~~ -~~~ -24343038 2048 67110912 -~~~ -24343188 2048 2048 -24349505 DOWN 12 -24349505 0 2048 -~~~ -~~~ -24349532 0 0 -~~~ -~~~ -24349534 0 1 -~~~ -~~~ -24349536 0 3 -~~~ -~~~ -24349538 0 7 -~~~ -~~~ -24349540 0 15 -~~~ -~~~ -24349541 0 31 -~~~ -~~~ -24349543 0 63 -~~~ -~~~ -24349545 0 127 -~~~ -~~~ -24349547 0 255 -24349548 homeCount = 10 -24349548 waitCount = 4 -24349549 ripCount = 4 -24349549 locktype1 = 1 -24349550 locktype2 = 0 -24349571 locktype3 = 1 -24349571 goalCount = 0 -24349572 goalTotal = 0 -24349572 otherCount = 7 -~~~ -24349573 CURRENTGOAL IS [2] -~~~ -24349574 UP 12 -24349574 2048 255 -24349612 DOWN 12 -24349612 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24349653 homeCount = 10 -24349653 waitCount = 4 -24349654 ripCount = 4 -24349654 locktype1 = 1 -24349655 locktype2 = 0 -24349655 locktype3 = 1 -24349656 goalCount = 0 -24349656 goalTotal = 0 -24349657 otherCount = 7 -~~~ -24349658 CURRENTGOAL IS [2] -~~~ -24357745 UP 4 -24357745 8 255 -~~~ -~~~ -24358074 DOWN 4 -24358074 0 255 -~~~ -~~~ -24358096 0 254 -~~~ -~~~ -24358098 0 252 -~~~ -24358099 8 252 -~~~ -~~~ -24358101 8 248 -~~~ -24358102 8 240 -~~~ -~~~ -24358104 8 224 -~~~ -~~~ -24358105 8 192 -~~~ -~~~ -24358107 8 128 -~~~ -~~~ -24358109 8 0 -~~~ -~~~ -24358111 8 512 -24358112 homeCount = 10 -24358112 waitCount = 4 -24358113 ripCount = 4 -24358134 locktype1 = 1 -24358135 locktype2 = 0 -24358135 locktype3 = 1 -24358136 goalCount = 0 -24358136 goalTotal = 0 -24358137 otherCount = 8 -~~~ -24361306 DOWN 4 -24361306 0 512 -24361341 8 512 -24361402 DOWN 4 -24361402 0 512 -24368998 UP 10 -24368998 waslock = 0 -24368998 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24369024 512 16777728 -~~~ -24369174 512 512 -24369202 DOWN 10 -24369202 0 512 -~~~ -~~~ -24369219 0 2560 -~~~ -~~~ -24369221 0 2048 -24369222 homeCount = 11 -24369222 waitCount = 4 -24369223 ripCount = 4 -24369223 locktype1 = 1 -24369224 locktype2 = 0 -24369224 locktype3 = 1 -24369225 goalCount = 0 -24369225 goalTotal = 0 -24369226 otherCount = 8 -~~~ -24369297 UP 10 -24369297 waslock = 0 -24369297 512 2048 -~~~ -24369593 DOWN 10 -24369593 0 2048 -24369603 UP 10 -24369604 waslock = 0 -24369603 512 2048 -~~~ -~~~ -~~~ -~~~ -24369622 homeCount = 11 -24369622 waitCount = 4 -24369623 ripCount = 4 -24369623 locktype1 = 1 -24369624 locktype2 = 0 -24369624 locktype3 = 1 -24369625 goalCount = 0 -24369625 goalTotal = 0 -24369626 otherCount = 8 -~~~ -~~~ -24373779 DOWN 10 -24373779 0 2048 -24373792 UP 10 -24373793 waslock = 0 -24373792 512 2048 -~~~ -~~~ -~~~ -~~~ -24373815 homeCount = 11 -24373816 waitCount = 4 -24373816 ripCount = 4 -24373817 locktype1 = 1 -24373817 locktype2 = 0 -24373818 locktype3 = 1 -24373818 goalCount = 0 -24373819 goalTotal = 0 -24373819 otherCount = 8 -~~~ -~~~ -24373870 DOWN 10 -24373870 0 2048 -~~~ -~~~ -~~~ -~~~ -24373899 homeCount = 11 -24373899 waitCount = 4 -24373900 ripCount = 4 -24373900 locktype1 = 1 -24373901 locktype2 = 0 -24373901 locktype3 = 1 -24373902 goalCount = 0 -24373902 goalTotal = 0 -24373903 otherCount = 8 -~~~ -24375836 UP 12 -24375835 2048 2048 -24378836 CLICK1 -24378836 CLICK2 -~~~ -~~~ -~~~ -24378857 2048 67110912 -~~~ -24379007 2048 2048 -24384231 DOWN 12 -24384231 0 2048 -~~~ -~~~ -24384256 0 0 -~~~ -~~~ -24384258 0 1 -~~~ -~~~ -24384260 0 3 -~~~ -~~~ -24384262 0 7 -~~~ -~~~ -24384263 0 15 -~~~ -~~~ -24384265 0 31 -~~~ -~~~ -24384267 0 63 -~~~ -~~~ -24384269 0 127 -~~~ -~~~ -24384271 0 255 -24384272 homeCount = 11 -24384272 waitCount = 5 -24384273 ripCount = 4 -24384273 locktype1 = 1 -24384274 locktype2 = 0 -24384295 locktype3 = 1 -24384296 goalCount = 0 -24384296 goalTotal = 0 -24384297 otherCount = 8 -~~~ -24384298 CURRENTGOAL IS [2] -~~~ -24384298 UP 12 -24384298 2048 255 -24384325 DOWN 12 -24384325 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24384360 homeCount = 11 -24384361 waitCount = 5 -24384361 ripCount = 4 -24384362 locktype1 = 1 -24384362 locktype2 = 0 -24384363 locktype3 = 1 -24384363 goalCount = 0 -24384364 goalTotal = 0 -24384364 otherCount = 8 -~~~ -24384365 CURRENTGOAL IS [2] -~~~ -24389237 UP 6 -24389236 32 255 -~~~ -~~~ -24389519 DOWN 6 -24389519 0 255 -24389542 32 255 -~~~ -~~~ -24389544 32 254 -~~~ -~~~ -24389546 32 252 -~~~ -~~~ -24389548 32 248 -~~~ -~~~ -24389549 32 240 -~~~ -~~~ -24389551 32 224 -~~~ -~~~ -24389553 32 192 -~~~ -~~~ -24389555 32 128 -~~~ -~~~ -24389557 32 0 -~~~ -~~~ -24389559 32 512 -24389560 homeCount = 11 -24389560 waitCount = 5 -24389561 ripCount = 4 -24389582 locktype1 = 1 -24389582 locktype2 = 0 -24389583 locktype3 = 1 -24389583 goalCount = 0 -24389584 goalTotal = 0 -24389584 otherCount = 9 -~~~ -24392219 DOWN 6 -24392219 0 512 -24392230 32 512 -24393458 DOWN 6 -24393458 0 512 -24393466 32 512 -24393642 DOWN 6 -24393642 0 512 -24393651 32 512 -24393817 DOWN 6 -24393817 0 512 -24393821 32 512 -24393825 DOWN 6 -24393825 0 512 -24393836 32 512 -24394208 DOWN 6 -24394207 0 512 -24394217 32 512 -24394415 DOWN 6 -24394415 0 512 -24394427 32 512 -24394798 DOWN 6 -24394798 0 512 -24394811 32 512 -24394998 DOWN 6 -24394998 0 512 -24395017 32 512 -24395073 DOWN 6 -24395073 0 512 -24395092 32 512 -24395192 DOWN 6 -24395192 0 512 -24395196 32 512 -24395200 DOWN 6 -24395200 0 512 -24395237 32 512 -24395252 DOWN 6 -24395252 0 512 -24395263 32 512 -24395284 DOWN 6 -24395284 0 512 -24395295 32 512 -24395361 DOWN 6 -24395361 0 512 -24395449 32 512 -24395489 DOWN 6 -24395489 0 512 -24402448 UP 10 -24402449 waslock = 0 -24402448 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24402483 512 16777728 -~~~ -24402602 DOWN 10 -24402602 0 16777728 -~~~ -~~~ -24402626 0 16778752 -~~~ -~~~ -24402628 0 16778240 -24402629 homeCount = 12 -24402630 waitCount = 5 -24402630 ripCount = 4 -24402631 locktype1 = 1 -24402631 locktype2 = 0 -24402632 locktype3 = 1 -24402632 goalCount = 0 -24402633 goalTotal = 0 -24402633 otherCount = 9 -~~~ -24402654 0 1024 -24402740 UP 10 -24402740 waslock = 0 -24402740 512 1024 -~~~ -24408234 DOWN 10 -24408234 0 1024 -~~~ -~~~ -~~~ -~~~ -24408258 homeCount = 12 -24408259 waitCount = 5 -24408259 ripCount = 4 -24408260 locktype1 = 1 -24408260 locktype2 = 0 -24408261 locktype3 = 1 -24408261 goalCount = 0 -24408262 goalTotal = 0 -24408262 otherCount = 9 -~~~ -24408263 UP 10 -24408263 waslock = 0 -24408263 512 1024 -~~~ -24408328 DOWN 10 -24408328 0 1024 -~~~ -~~~ -~~~ -~~~ -24408348 homeCount = 12 -24408349 waitCount = 5 -24408349 ripCount = 4 -24408350 locktype1 = 1 -24408350 locktype2 = 0 -24408351 locktype3 = 1 -24408351 goalCount = 0 -24408352 goalTotal = 0 -24408352 otherCount = 9 -~~~ -24410668 UP 11 -24410668 1024 1024 -24411491 DOWN 11 -24411491 0 1024 -24411562 UP 11 -24411562 1024 1024 -24412763 DOWN 11 -24412763 0 1024 -24412794 UP 11 -24412794 1024 1024 -24415418 BEEP1 -24415418 BEEP2 -~~~ -~~~ -~~~ -24415438 1024 33555456 -~~~ -24415588 1024 1024 -24420194 DOWN 11 -24420194 0 1024 -~~~ -~~~ -24420218 0 0 -~~~ -~~~ -24420220 0 1 -~~~ -~~~ -24420222 0 3 -~~~ -~~~ -24420223 0 7 -~~~ -~~~ -24420225 0 15 -~~~ -24420227 UP 11 -24420227 1024 15 -~~~ -~~~ -24420229 1024 31 -~~~ -~~~ -24420230 1024 63 -~~~ -~~~ -24420232 1024 127 -~~~ -24420233 1024 255 -24420234 homeCount = 12 -24420235 waitCount = 5 -24420256 ripCount = 5 -24420256 locktype1 = 1 -24420257 locktype2 = 0 -24420257 locktype3 = 1 -24420258 goalCount = 0 -24420258 goalTotal = 0 -24420259 otherCount = 9 -~~~ -24420260 CURRENTGOAL IS [2] -~~~ -24420296 DOWN 11 -24420296 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24420332 homeCount = 12 -24420332 waitCount = 5 -24420333 ripCount = 5 -24420333 locktype1 = 1 -24420334 locktype2 = 0 -24420334 locktype3 = 1 -24420335 goalCount = 0 -24420335 goalTotal = 0 -24420336 otherCount = 9 -~~~ -24420337 CURRENTGOAL IS [2] -~~~ -24426866 UP 5 -24426866 16 255 -~~~ -~~~ -24426890 DOWN 5 -24426890 0 255 -~~~ -~~~ -24426907 0 254 -~~~ -~~~ -24426909 0 252 -~~~ -~~~ -24426911 0 248 -~~~ -~~~ -24426913 0 240 -~~~ -~~~ -24426915 0 224 -~~~ -~~~ -24426917 0 192 -~~~ -~~~ -24426918 0 128 -~~~ -~~~ -24426920 0 0 -~~~ -~~~ -24426922 0 512 -24426923 homeCount = 12 -24426924 waitCount = 5 -24426924 ripCount = 5 -24426925 locktype1 = 1 -24426925 locktype2 = 0 -24426946 locktype3 = 1 -24426946 goalCount = 0 -24426947 goalTotal = 0 -24426947 otherCount = 10 -~~~ -24426979 16 512 -24427073 DOWN 5 -24427072 0 512 -24427218 16 512 -24429575 DOWN 5 -24429575 0 512 -24434372 UP 10 -24434372 waslock = 0 -24434372 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24434403 512 16777728 -~~~ -24434419 DOWN 10 -24434419 0 16777728 -~~~ -~~~ -24434438 0 16778752 -~~~ -~~~ -24434440 0 16778240 -24434441 homeCount = 13 -24434441 waitCount = 5 -24434442 ripCount = 5 -24434442 locktype1 = 1 -24434443 locktype2 = 0 -24434443 locktype3 = 1 -24434444 goalCount = 0 -24434444 goalTotal = 0 -24434445 otherCount = 10 -~~~ -24434477 UP 10 -24434477 waslock = 0 -24434477 512 16778240 -~~~ -24434553 512 1024 -24434651 DOWN 10 -24434651 0 1024 -~~~ -~~~ -~~~ -~~~ -24434677 homeCount = 13 -24434677 waitCount = 5 -24434678 ripCount = 5 -24434678 locktype1 = 1 -24434679 locktype2 = 0 -24434679 locktype3 = 1 -24434680 goalCount = 0 -24434680 goalTotal = 0 -24434681 otherCount = 10 -~~~ -24434692 UP 10 -24434692 waslock = 0 -24434692 512 1024 -~~~ -24438070 DOWN 10 -24438070 0 1024 -~~~ -~~~ -~~~ -~~~ -24438094 homeCount = 13 -24438095 waitCount = 5 -24438096 ripCount = 5 -24438096 locktype1 = 1 -24438096 locktype2 = 0 -24438097 locktype3 = 1 -24438097 goalCount = 0 -24438098 goalTotal = 0 -24438098 otherCount = 10 -~~~ -24438103 UP 10 -24438103 waslock = 0 -24438103 512 1024 -~~~ -24438161 DOWN 10 -24438161 0 1024 -~~~ -~~~ -~~~ -~~~ -24438185 homeCount = 13 -24438186 waitCount = 5 -24438186 ripCount = 5 -24438187 locktype1 = 1 -24438187 locktype2 = 0 -24438188 locktype3 = 1 -24438188 goalCount = 0 -24438189 goalTotal = 0 -24438189 otherCount = 10 -~~~ -24440662 UP 11 -24440662 1024 1024 -24442855 DOWN 11 -24442855 0 1024 -24442904 UP 11 -24442904 1024 1024 -24443662 BEEP1 -24443662 BEEP2 -~~~ -~~~ -~~~ -24443685 1024 33555456 -~~~ -24443834 1024 1024 -24451080 DOWN 11 -24451079 0 1024 -~~~ -~~~ -24451102 0 0 -~~~ -~~~ -24451104 0 1 -~~~ -~~~ -24451106 0 3 -~~~ -~~~ -24451108 0 7 -~~~ -~~~ -24451109 0 15 -~~~ -~~~ -24451111 0 31 -~~~ -~~~ -24451113 0 63 -~~~ -~~~ -24451115 0 127 -~~~ -~~~ -24451117 0 255 -24451118 homeCount = 13 -24451118 waitCount = 5 -24451119 ripCount = 6 -24451119 locktype1 = 1 -24451120 locktype2 = 0 -24451141 locktype3 = 1 -24451141 goalCount = 0 -24451142 goalTotal = 0 -24451142 otherCount = 10 -~~~ -24451143 CURRENTGOAL IS [2] -~~~ -24460605 UP 3 -24460605 4 255 -~~~ -~~~ -24461083 DOWN 3 -24461083 0 255 -~~~ -~~~ -24461101 0 254 -~~~ -~~~ -24461102 0 252 -~~~ -~~~ -24461104 0 248 -~~~ -~~~ -24461106 0 240 -~~~ -~~~ -24461108 0 224 -~~~ -~~~ -24461110 0 192 -~~~ -~~~ -24461112 0 128 -~~~ -~~~ -24461113 0 0 -~~~ -~~~ -24461115 0 512 -24461116 homeCount = 13 -24461117 waitCount = 5 -24461117 ripCount = 6 -24461118 locktype1 = 1 -24461118 locktype2 = 0 -24461139 locktype3 = 1 -24461139 goalCount = 0 -24461140 goalTotal = 0 -24461140 otherCount = 11 -~~~ -24470566 UP 10 -24470566 waslock = 0 -24470566 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24470600 512 16777728 -~~~ -24470618 DOWN 10 -24470618 0 16777728 -~~~ -~~~ -24470642 0 16779776 -~~~ -~~~ -24470644 0 16779264 -24470645 homeCount = 14 -24470646 waitCount = 5 -24470646 ripCount = 6 -24470647 locktype1 = 1 -24470647 locktype2 = 0 -24470648 locktype3 = 1 -24470648 goalCount = 0 -24470649 goalTotal = 0 -24470649 otherCount = 11 -~~~ -24470750 0 2048 -24470776 UP 10 -24470777 waslock = 0 -24470776 512 2048 -~~~ -24471246 DOWN 10 -24471246 0 2048 -~~~ -~~~ -~~~ -~~~ -24471267 homeCount = 14 -24471268 waitCount = 5 -24471268 ripCount = 6 -24471269 locktype1 = 1 -24471269 locktype2 = 0 -24471270 locktype3 = 1 -24471270 goalCount = 0 -24471271 goalTotal = 0 -24471271 otherCount = 11 -~~~ -24471304 UP 10 -24471304 waslock = 0 -24471304 512 2048 -~~~ -24474135 DOWN 10 -24474135 0 2048 -~~~ -~~~ -~~~ -~~~ -24474157 homeCount = 14 -24474158 waitCount = 5 -24474158 ripCount = 6 -24474159 locktype1 = 1 -24474159 locktype2 = 0 -24474160 locktype3 = 1 -24474160 goalCount = 0 -24474161 goalTotal = 0 -24474161 otherCount = 11 -~~~ -24474162 UP 10 -24474162 waslock = 0 -24474162 512 2048 -~~~ -24474229 DOWN 10 -24474229 0 2048 -~~~ -~~~ -~~~ -~~~ -24474257 homeCount = 14 -24474257 waitCount = 5 -24474258 ripCount = 6 -24474258 locktype1 = 1 -24474259 locktype2 = 0 -24474259 locktype3 = 1 -24474260 goalCount = 0 -24474260 goalTotal = 0 -24474261 otherCount = 11 -~~~ -24476866 UP 12 -24476866 2048 2048 -24478171 DOWN 12 -24478171 0 2048 -24478314 UP 12 -24478314 2048 2048 -24478478 DOWN 12 -24478478 0 2048 -24478534 UP 12 -24478534 2048 2048 -24479866 CLICK1 -24479866 CLICK2 -~~~ -~~~ -~~~ -24479885 2048 67110912 -~~~ -24480035 2048 2048 -24480170 DOWN 12 -24480169 0 2048 -24480191 UP 12 -24480191 2048 2048 -~~~ -~~~ -24480194 2048 0 -~~~ -~~~ -24480196 2048 1 -~~~ -~~~ -24480198 2048 3 -~~~ -~~~ -24480200 2048 7 -~~~ -~~~ -24480201 2048 15 -~~~ -~~~ -24480203 2048 31 -~~~ -~~~ -24480205 2048 63 -~~~ -~~~ -24480207 2048 127 -~~~ -~~~ -24480209 2048 255 -24480210 homeCount = 14 -24480210 waitCount = 6 -24480211 ripCount = 6 -24480211 locktype1 = 1 -24480232 locktype2 = 0 -24480233 locktype3 = 1 -24480233 goalCount = 0 -24480234 goalTotal = 0 -24480234 otherCount = 11 -~~~ -24480235 CURRENTGOAL IS [2] -~~~ -24480236 DOWN 12 -24480236 0 255 -24480241 UP 12 -24480241 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24480291 homeCount = 14 -24480292 waitCount = 6 -24480292 ripCount = 6 -24480293 locktype1 = 1 -24480293 locktype2 = 0 -24480294 locktype3 = 1 -24480294 goalCount = 0 -24480295 goalTotal = 0 -24480295 otherCount = 11 -~~~ -24480296 CURRENTGOAL IS [2] -~~~ -24486384 DOWN 12 -24486384 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24486422 homeCount = 14 -24486423 waitCount = 6 -24486423 ripCount = 6 -24486424 locktype1 = 1 -24486424 locktype2 = 0 -24486425 locktype3 = 1 -24486425 goalCount = 0 -24486426 goalTotal = 0 -24486426 otherCount = 11 -~~~ -24486427 CURRENTGOAL IS [2] -~~~ -24486451 UP 12 -24486451 2048 255 -24486485 DOWN 12 -24486485 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24486522 homeCount = 14 -24486523 waitCount = 6 -24486523 ripCount = 6 -24486524 locktype1 = 1 -24486524 locktype2 = 0 -24486525 locktype3 = 1 -24486525 goalCount = 0 -24486526 goalTotal = 0 -24486526 otherCount = 11 -~~~ -24486528 CURRENTGOAL IS [2] -~~~ -24495698 UP 10 -24495698 waslock = 0 -24495698 512 255 -~~~ -24495716 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24495724 512 254 -~~~ -~~~ -24495726 512 252 -~~~ -~~~ -24495728 512 248 -~~~ -~~~ -24495730 512 240 -~~~ -~~~ -24495731 512 224 -~~~ -~~~ -24495733 512 192 -~~~ -~~~ -24495735 512 128 -~~~ -~~~ -24495737 512 0 -~~~ -~~~ -~~~ -24495945 0 0 -24495963 512 0 -24496559 0 0 -24506369 UP 4 -24506369 8 0 -24506413 DOWN 4 -24506413 0 0 -24506422 8 0 -24506707 DOWN 4 -24506707 0 0 -24506736 8 0 -24507337 DOWN 4 -24507337 0 0 -24507431 8 0 -24507448 DOWN 4 -24507448 0 0 -24516898 512 0 -24517038 0 0 -24517058 512 0 -24517301 0 0 -24517347 512 0 -24517934 0 0 -24518002 512 0 -24518042 0 0 -24518118 512 0 -24518339 0 0 -24518366 512 0 -24518604 0 0 -24520716 LOCKEND -~~~ -~~~ -~~~ -24520736 0 512 -24521787 UP 10 -24521788 waslock = 0 -24521787 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24521813 512 16777728 -~~~ -24521815 DOWN 10 -24521815 0 16777728 -~~~ -~~~ -24521838 0 16778752 -~~~ -~~~ -24521840 0 16778240 -24521841 homeCount = 15 -24521842 waitCount = 6 -24521842 ripCount = 6 -24521843 locktype1 = 1 -24521843 locktype2 = 1 -24521844 locktype3 = 1 -24521844 goalCount = 0 -24521845 goalTotal = 0 -24521845 otherCount = 11 -~~~ -24521869 UP 10 -24521869 waslock = 0 -24521869 512 16778240 -~~~ -24521963 512 1024 -24521981 DOWN 10 -24521981 0 1024 -~~~ -24522000 UP 10 -24522000 waslock = 0 -24522000 512 1024 -~~~ -~~~ -~~~ -24522004 homeCount = 15 -24522004 waitCount = 6 -24522005 ripCount = 6 -24522005 locktype1 = 1 -24522006 locktype2 = 1 -24522006 locktype3 = 1 -24522007 goalCount = 0 -24522007 goalTotal = 0 -24522008 otherCount = 11 -~~~ -~~~ -24522130 DOWN 10 -24522130 0 1024 -24522156 UP 10 -24522156 waslock = 0 -24522156 512 1024 -~~~ -~~~ -~~~ -~~~ -24522160 homeCount = 15 -24522161 waitCount = 6 -24522161 ripCount = 6 -24522162 locktype1 = 1 -24522162 locktype2 = 1 -24522163 locktype3 = 1 -24522163 goalCount = 0 -24522164 goalTotal = 0 -24522164 otherCount = 11 -~~~ -~~~ -24522270 DOWN 10 -24522270 0 1024 -24522292 UP 10 -24522292 waslock = 0 -24522292 512 1024 -~~~ -~~~ -~~~ -~~~ -24522296 homeCount = 15 -24522297 waitCount = 6 -24522298 ripCount = 6 -24522298 locktype1 = 1 -24522299 locktype2 = 1 -24522299 locktype3 = 1 -24522300 goalCount = 0 -24522300 goalTotal = 0 -24522301 otherCount = 11 -~~~ -~~~ -24526070 DOWN 10 -24526069 0 1024 -~~~ -~~~ -~~~ -~~~ -24526094 homeCount = 15 -24526094 waitCount = 6 -24526095 ripCount = 6 -24526095 locktype1 = 1 -24526096 locktype2 = 1 -24526096 locktype3 = 1 -24526097 goalCount = 0 -24526097 goalTotal = 0 -24526098 otherCount = 11 -~~~ -24526110 UP 10 -24526110 waslock = 0 -24526110 512 1024 -~~~ -24526164 DOWN 10 -24526164 0 1024 -~~~ -~~~ -~~~ -~~~ -24526194 homeCount = 15 -24526194 waitCount = 6 -24526195 ripCount = 6 -24526195 locktype1 = 1 -24526196 locktype2 = 1 -24526196 locktype3 = 1 -24526197 goalCount = 0 -24526197 goalTotal = 0 -24526198 otherCount = 11 -~~~ -24528059 UP 11 -24528059 1024 1024 -24529285 DOWN 11 -24529285 0 1024 -24529326 UP 11 -24529326 1024 1024 -24530226 DOWN 11 -24530226 0 1024 -24530258 UP 11 -24530258 1024 1024 -24530559 BEEP1 -24530559 BEEP2 -~~~ -~~~ -~~~ -24530584 1024 33555456 -~~~ -24530734 1024 1024 -24535727 DOWN 11 -24535727 0 1024 -~~~ -~~~ -24535750 0 0 -~~~ -~~~ -24535752 0 1 -~~~ -~~~ -24535754 0 3 -~~~ -~~~ -24535756 0 7 -~~~ -~~~ -24535757 0 15 -~~~ -~~~ -24535759 0 31 -~~~ -~~~ -24535761 0 63 -~~~ -~~~ -24535763 0 127 -~~~ -~~~ -24535765 0 255 -24535766 homeCount = 15 -24535766 waitCount = 6 -24535767 ripCount = 7 -24535767 locktype1 = 1 -24535768 locktype2 = 1 -24535789 locktype3 = 1 -24535789 goalCount = 0 -24535790 goalTotal = 0 -24535790 otherCount = 11 -~~~ -24535791 CURRENTGOAL IS [2] -~~~ -24535792 UP 11 -24535792 1024 255 -24535865 DOWN 11 -24535865 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24535907 homeCount = 15 -24535907 waitCount = 6 -24535908 ripCount = 7 -24535909 locktype1 = 1 -24535909 locktype2 = 1 -24535910 locktype3 = 1 -24535910 goalCount = 0 -24535911 goalTotal = 0 -24535911 otherCount = 11 -~~~ -24535912 CURRENTGOAL IS [2] -~~~ -24535936 UP 11 -24535936 1024 255 -24535954 DOWN 11 -24535954 0 255 -24535969 UP 11 -24535969 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24535990 homeCount = 15 -24535990 waitCount = 6 -24535991 ripCount = 7 -24535991 locktype1 = 1 -24535992 locktype2 = 1 -24535992 locktype3 = 1 -24535993 goalCount = 0 -24535993 goalTotal = 0 -24535994 otherCount = 11 -~~~ -24535995 CURRENTGOAL IS [2] -~~~ -24536278 DOWN 11 -24536278 0 255 -24536289 UP 11 -24536289 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24536318 homeCount = 15 -24536318 waitCount = 6 -24536319 ripCount = 7 -24536319 locktype1 = 1 -24536320 locktype2 = 1 -24536320 locktype3 = 1 -24536321 goalCount = 0 -24536321 goalTotal = 0 -24536322 otherCount = 11 -~~~ -24536323 CURRENTGOAL IS [2] -~~~ -24536680 DOWN 11 -24536680 0 255 -24536699 UP 11 -24536699 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24536718 homeCount = 15 -24536718 waitCount = 6 -24536719 ripCount = 7 -24536719 locktype1 = 1 -24536720 locktype2 = 1 -24536720 locktype3 = 1 -24536721 goalCount = 0 -24536721 goalTotal = 0 -24536722 otherCount = 11 -~~~ -24536723 CURRENTGOAL IS [2] -~~~ -24539066 DOWN 11 -24539066 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24539109 homeCount = 15 -24539110 waitCount = 6 -24539110 ripCount = 7 -24539111 locktype1 = 1 -24539111 locktype2 = 1 -24539112 locktype3 = 1 -24539112 goalCount = 0 -24539113 goalTotal = 0 -24539113 otherCount = 11 -~~~ -24539114 CURRENTGOAL IS [2] -~~~ -24545155 UP 8 -24545155 128 255 -~~~ -~~~ -24545193 DOWN 8 -24545193 0 255 -~~~ -~~~ -24545213 0 254 -~~~ -~~~ -24545215 0 252 -~~~ -~~~ -24545217 0 248 -~~~ -~~~ -24545219 0 240 -~~~ -~~~ -24545220 0 224 -~~~ -~~~ -24545222 0 192 -~~~ -~~~ -24545224 0 128 -~~~ -~~~ -24545226 0 0 -~~~ -~~~ -24545228 0 512 -24545229 homeCount = 15 -24545229 waitCount = 6 -24545230 ripCount = 7 -24545230 locktype1 = 1 -24545231 locktype2 = 1 -24545252 locktype3 = 1 -24545252 goalCount = 0 -24545253 goalTotal = 0 -24545253 otherCount = 12 -~~~ -24545254 128 512 -24545775 DOWN 8 -24545775 0 512 -24549428 UP 10 -24549428 waslock = 0 -24549428 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24549451 512 16777728 -~~~ -24549601 512 512 -24549640 DOWN 10 -24549640 0 512 -~~~ -~~~ -24549668 0 2560 -~~~ -~~~ -24549670 0 2048 -24549671 homeCount = 16 -24549672 waitCount = 6 -24549672 ripCount = 7 -24549673 locktype1 = 1 -24549673 locktype2 = 1 -24549674 locktype3 = 1 -24549674 goalCount = 0 -24549675 goalTotal = 0 -24549675 otherCount = 12 -~~~ -24549810 UP 10 -24549810 waslock = 0 -24549810 512 2048 -~~~ -24553189 DOWN 10 -24553189 0 2048 -~~~ -~~~ -~~~ -~~~ -24553217 homeCount = 16 -24553218 waitCount = 6 -24553218 ripCount = 7 -24553219 locktype1 = 1 -24553219 locktype2 = 1 -24553220 locktype3 = 1 -24553220 goalCount = 0 -24553221 goalTotal = 0 -24553221 otherCount = 12 -~~~ -24553222 UP 10 -24553222 waslock = 0 -24553222 512 2048 -~~~ -24553263 DOWN 10 -24553263 0 2048 -~~~ -~~~ -~~~ -~~~ -24553290 homeCount = 16 -24553291 waitCount = 6 -24553291 ripCount = 7 -24553292 locktype1 = 1 -24553292 locktype2 = 1 -24553293 locktype3 = 1 -24553293 goalCount = 0 -24553294 goalTotal = 0 -24553294 otherCount = 12 -~~~ -24561352 UP 12 -24561352 2048 2048 -24562969 DOWN 12 -24562969 0 2048 -24563044 UP 12 -24563044 2048 2048 -24565353 CLICK1 -24565353 CLICK2 -~~~ -~~~ -~~~ -24565378 2048 67110912 -~~~ -24565527 2048 2048 -24569179 DOWN 12 -24569179 0 2048 -~~~ -~~~ -24569206 0 0 -~~~ -~~~ -24569208 0 1 -~~~ -~~~ -24569210 0 3 -~~~ -~~~ -24569212 0 7 -~~~ -~~~ -24569214 0 15 -~~~ -~~~ -24569215 0 31 -~~~ -~~~ -24569217 0 63 -~~~ -~~~ -24569219 0 127 -~~~ -24569220 UP 12 -24569220 2048 127 -~~~ -24569222 homeCount = 16 -24569223 waitCount = 7 -24569223 ripCount = 7 -24569224 locktype1 = 1 -24569245 locktype2 = 1 -24569245 locktype3 = 1 -24569246 goalCount = 0 -24569246 goalTotal = 0 -24569247 otherCount = 12 -~~~ -24569248 CURRENTGOAL IS [2] -~~~ -24569248 DOWN 12 -24569248 0 255 -24569257 UP 12 -24569256 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569303 homeCount = 16 -24569304 waitCount = 7 -24569304 ripCount = 7 -24569305 locktype1 = 1 -24569305 locktype2 = 1 -24569306 locktype3 = 1 -24569306 goalCount = 0 -24569307 goalTotal = 0 -24569307 otherCount = 12 -~~~ -24569308 CURRENTGOAL IS [2] -~~~ -24569329 DOWN 12 -24569329 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569365 homeCount = 16 -24569366 waitCount = 7 -24569366 ripCount = 7 -24569367 locktype1 = 1 -24569367 locktype2 = 1 -24569368 locktype3 = 1 -24569368 goalCount = 0 -24569369 goalTotal = 0 -24569369 otherCount = 12 -~~~ -24569370 CURRENTGOAL IS [2] -~~~ -24569392 UP 12 -24569392 2048 255 -24569399 DOWN 12 -24569399 0 255 -24569404 UP 12 -24569404 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569430 DOWN 12 -24569430 0 255 -~~~ -~~~ -~~~ -24569434 homeCount = 16 -24569434 waitCount = 7 -24569435 ripCount = 7 -24569435 locktype1 = 1 -24569436 locktype2 = 1 -24569436 locktype3 = 1 -24569437 goalCount = 0 -24569437 goalTotal = 0 -24569438 otherCount = 12 -~~~ -24569439 CURRENTGOAL IS [2] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569466 homeCount = 16 -24569467 waitCount = 7 -24569467 ripCount = 7 -24569468 locktype1 = 1 -24569468 locktype2 = 1 -24569469 locktype3 = 1 -24569490 goalCount = 0 -24569491 goalTotal = 0 -24569491 otherCount = 12 -~~~ -24569492 CURRENTGOAL IS [2] -~~~ -24569541 UP 12 -24569541 2048 255 -24569575 DOWN 12 -24569575 0 255 -24569590 UP 12 -24569590 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569628 homeCount = 16 -24569629 waitCount = 7 -24569630 ripCount = 7 -24569630 locktype1 = 1 -24569631 locktype2 = 1 -24569631 locktype3 = 1 -24569632 goalCount = 0 -24569632 goalTotal = 0 -24569633 otherCount = 12 -~~~ -24569634 CURRENTGOAL IS [2] -~~~ -24569745 DOWN 12 -24569745 0 255 -24569762 UP 12 -24569762 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24569779 homeCount = 16 -24569780 waitCount = 7 -24569781 ripCount = 7 -24569781 locktype1 = 1 -24569782 locktype2 = 1 -24569782 locktype3 = 1 -24569783 goalCount = 0 -24569783 goalTotal = 0 -24569784 otherCount = 12 -~~~ -24569785 CURRENTGOAL IS [2] -~~~ -24571050 DOWN 12 -24571050 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24571089 homeCount = 16 -24571090 waitCount = 7 -24571091 ripCount = 7 -24571091 locktype1 = 1 -24571092 locktype2 = 1 -24571092 locktype3 = 1 -24571093 goalCount = 0 -24571093 goalTotal = 0 -24571094 otherCount = 12 -~~~ -24571095 CURRENTGOAL IS [2] -~~~ -24581925 UP 5 -24581925 16 255 -~~~ -~~~ -24582431 DOWN 5 -24582431 0 255 -~~~ -~~~ -24582453 0 254 -~~~ -~~~ -24582454 0 252 -~~~ -~~~ -24582456 0 248 -~~~ -~~~ -24582458 0 240 -~~~ -~~~ -24582460 0 224 -~~~ -~~~ -24582462 0 192 -~~~ -~~~ -24582463 0 128 -~~~ -~~~ -24582465 0 0 -~~~ -~~~ -24582467 0 512 -24582468 homeCount = 16 -24582469 waitCount = 7 -24582469 ripCount = 7 -24582470 locktype1 = 1 -24582491 locktype2 = 1 -24582491 locktype3 = 1 -24582492 goalCount = 0 -24582492 goalTotal = 0 -24582493 otherCount = 13 -~~~ -24587390 UP 10 -24587390 waslock = 0 -24587390 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24587414 512 16777728 -~~~ -24587539 DOWN 10 -24587539 0 16777728 -24587564 0 512 -~~~ -~~~ -24587570 0 2560 -~~~ -~~~ -24587572 0 2048 -24587573 homeCount = 17 -24587574 waitCount = 7 -24587574 ripCount = 7 -24587575 locktype1 = 1 -24587575 locktype2 = 1 -24587576 locktype3 = 1 -24587576 goalCount = 0 -24587577 goalTotal = 0 -24587577 otherCount = 13 -~~~ -24587616 UP 10 -24587617 waslock = 0 -24587616 512 2048 -~~~ -24592258 DOWN 10 -24592258 0 2048 -24592272 UP 10 -24592273 waslock = 0 -24592272 512 2048 -~~~ -~~~ -~~~ -~~~ -24592280 homeCount = 17 -24592280 waitCount = 7 -24592281 ripCount = 7 -24592281 locktype1 = 1 -24592282 locktype2 = 1 -24592282 locktype3 = 1 -24592283 goalCount = 0 -24592283 goalTotal = 0 -24592284 otherCount = 13 -~~~ -~~~ -24592358 DOWN 10 -24592358 0 2048 -~~~ -~~~ -~~~ -~~~ -24592383 homeCount = 17 -24592383 waitCount = 7 -24592384 ripCount = 7 -24592384 locktype1 = 1 -24592385 locktype2 = 1 -24592385 locktype3 = 1 -24592386 goalCount = 0 -24592386 goalTotal = 0 -24592387 otherCount = 13 -~~~ -24616551 UP 12 -24616551 2048 2048 -24617583 DOWN 12 -24617583 0 2048 -24617639 UP 12 -24617639 2048 2048 -24617756 DOWN 12 -24617756 0 2048 -24617784 UP 12 -24617784 2048 2048 -24618319 DOWN 12 -24618319 0 2048 -24618357 UP 12 -24618357 2048 2048 -24618387 DOWN 12 -24618386 0 2048 -24618449 UP 12 -24618449 2048 2048 -24620577 DOWN 12 -24620577 0 2048 -24620632 UP 12 -24620632 2048 2048 -24621302 CLICK1 -24621302 CLICK2 -~~~ -~~~ -~~~ -24621333 2048 67110912 -~~~ -24621483 2048 2048 -24625570 DOWN 12 -24625570 0 2048 -~~~ -~~~ -24625587 0 0 -~~~ -~~~ -24625589 0 1 -~~~ -~~~ -24625591 0 3 -~~~ -~~~ -24625593 0 7 -~~~ -~~~ -24625595 0 15 -~~~ -~~~ -24625596 0 31 -~~~ -~~~ -24625598 0 63 -~~~ -~~~ -24625600 0 127 -~~~ -~~~ -24625602 0 255 -24625603 homeCount = 17 -24625603 waitCount = 8 -24625604 ripCount = 7 -24625604 locktype1 = 1 -24625605 locktype2 = 1 -24625626 locktype3 = 1 -24625627 goalCount = 0 -24625627 goalTotal = 0 -24625628 otherCount = 13 -~~~ -24625629 CURRENTGOAL IS [2] -~~~ -24625629 UP 12 -24625629 2048 255 -24625651 DOWN 12 -24625651 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24625689 homeCount = 17 -24625689 waitCount = 8 -24625690 ripCount = 7 -24625690 locktype1 = 1 -24625691 locktype2 = 1 -24625691 locktype3 = 1 -24625692 goalCount = 0 -24625692 goalTotal = 0 -24625693 otherCount = 13 -~~~ -24625694 CURRENTGOAL IS [2] -~~~ -24642952 UP 1 -24642952 1 255 -~~~ -~~~ -24645925 DOWN 1 -24645925 0 255 -~~~ -~~~ -24645946 0 254 -~~~ -~~~ -24645948 0 252 -~~~ -~~~ -24645949 0 248 -~~~ -~~~ -24645951 0 240 -~~~ -~~~ -24645953 0 224 -~~~ -~~~ -24645955 0 192 -~~~ -~~~ -24645957 0 128 -~~~ -~~~ -24645959 0 0 -~~~ -~~~ -24645960 0 512 -24645961 homeCount = 17 -24645962 waitCount = 8 -24645963 ripCount = 7 -24645963 locktype1 = 1 -24645964 locktype2 = 1 -24645984 locktype3 = 1 -24645985 goalCount = 0 -24645985 goalTotal = 0 -24645986 otherCount = 14 -~~~ -24651763 UP 10 -24651763 waslock = 0 -24651763 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24651793 512 16777728 -~~~ -24651860 DOWN 10 -24651860 0 16777728 -~~~ -~~~ -24651887 0 16778752 -~~~ -~~~ -24651889 0 16778240 -24651890 homeCount = 18 -24651890 waitCount = 8 -24651891 ripCount = 7 -24651891 locktype1 = 1 -24651892 locktype2 = 1 -24651892 locktype3 = 1 -24651893 goalCount = 0 -24651893 goalTotal = 0 -24651894 otherCount = 14 -~~~ -24651915 UP 10 -24651915 waslock = 0 -24651915 512 16778240 -~~~ -24651942 512 1024 -24652117 DOWN 10 -24652117 0 1024 -~~~ -~~~ -~~~ -~~~ -24652140 homeCount = 18 -24652141 waitCount = 8 -24652141 ripCount = 7 -24652142 locktype1 = 1 -24652142 locktype2 = 1 -24652143 locktype3 = 1 -24652143 goalCount = 0 -24652144 goalTotal = 0 -24652144 otherCount = 14 -~~~ -24652150 UP 10 -24652150 waslock = 0 -24652150 512 1024 -~~~ -24655008 DOWN 10 -24655008 0 1024 -~~~ -~~~ -~~~ -~~~ -24655031 homeCount = 18 -24655032 waitCount = 8 -24655032 ripCount = 7 -24655033 locktype1 = 1 -24655033 locktype2 = 1 -24655034 locktype3 = 1 -24655034 goalCount = 0 -24655035 goalTotal = 0 -24655035 otherCount = 14 -~~~ -24655066 UP 10 -24655066 waslock = 0 -24655066 512 1024 -~~~ -24655104 DOWN 10 -24655104 0 1024 -~~~ -~~~ -~~~ -~~~ -24655122 homeCount = 18 -24655122 waitCount = 8 -24655123 ripCount = 7 -24655123 locktype1 = 1 -24655124 locktype2 = 1 -24655124 locktype3 = 1 -24655125 goalCount = 0 -24655125 goalTotal = 0 -24655126 otherCount = 14 -~~~ -24657381 UP 11 -24657381 1024 1024 -24658427 DOWN 11 -24658427 0 1024 -24658437 UP 11 -24658437 1024 1024 -24661881 BEEP1 -24661881 BEEP2 -~~~ -~~~ -~~~ -24661900 1024 33555456 -~~~ -24662050 1024 1024 -24667500 DOWN 11 -24667500 0 1024 -~~~ -~~~ -24667519 0 0 -~~~ -~~~ -24667520 0 1 -~~~ -~~~ -24667522 0 3 -~~~ -~~~ -24667524 0 7 -~~~ -~~~ -24667526 0 15 -~~~ -~~~ -24667528 0 31 -~~~ -~~~ -24667529 0 63 -~~~ -~~~ -24667531 0 127 -~~~ -~~~ -24667533 0 255 -24667534 homeCount = 18 -24667535 waitCount = 8 -24667535 ripCount = 8 -24667536 locktype1 = 1 -24667536 locktype2 = 1 -24667557 locktype3 = 1 -24667557 goalCount = 0 -24667558 goalTotal = 0 -24667558 otherCount = 14 -~~~ -24667559 CURRENTGOAL IS [2] -~~~ -24731227 UP 11 -24731227 1024 255 -24732218 DOWN 11 -24732218 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24732257 homeCount = 18 -24732258 waitCount = 8 -24732258 ripCount = 8 -24732259 locktype1 = 1 -24732259 locktype2 = 1 -24732260 locktype3 = 1 -24732260 goalCount = 0 -24732261 goalTotal = 0 -24732261 otherCount = 14 -~~~ -24732262 CURRENTGOAL IS [2] -~~~ -24744749 UP 4 -24744749 8 255 -~~~ -~~~ -24745153 DOWN 4 -24745153 0 255 -~~~ -~~~ -24745173 0 254 -~~~ -~~~ -24745175 0 252 -~~~ -~~~ -24745177 0 248 -~~~ -~~~ -24745178 0 240 -~~~ -~~~ -24745180 0 224 -~~~ -~~~ -24745182 0 192 -~~~ -24745183 8 192 -~~~ -~~~ -24745185 8 128 -~~~ -24745186 8 0 -~~~ -~~~ -24745188 8 512 -24745189 homeCount = 18 -24745189 waitCount = 8 -24745190 ripCount = 8 -24745211 locktype1 = 1 -24745211 locktype2 = 1 -24745212 locktype3 = 1 -24745212 goalCount = 0 -24745213 goalTotal = 0 -24745213 otherCount = 15 -~~~ -24746821 DOWN 4 -24746821 0 512 -24746860 8 512 -24746902 DOWN 4 -24746901 0 512 -24752241 UP 10 -24752241 waslock = 0 -24752241 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24752270 512 16777728 -~~~ -24752379 DOWN 10 -24752379 0 16777728 -~~~ -~~~ -24752404 0 16779776 -~~~ -~~~ -24752406 0 16779264 -24752407 homeCount = 19 -24752407 waitCount = 8 -24752408 ripCount = 8 -24752408 locktype1 = 1 -24752409 locktype2 = 1 -24752409 locktype3 = 1 -24752410 goalCount = 0 -24752410 goalTotal = 0 -24752411 otherCount = 15 -~~~ -24752431 0 2048 -24752545 UP 10 -24752545 waslock = 0 -24752545 512 2048 -~~~ -24753086 DOWN 10 -24753086 0 2048 -24753096 UP 10 -24753096 waslock = 0 -24753096 512 2048 -~~~ -~~~ -~~~ -~~~ -24753119 homeCount = 19 -24753119 waitCount = 8 -24753120 ripCount = 8 -24753120 locktype1 = 1 -24753121 locktype2 = 1 -24753121 locktype3 = 1 -24753122 goalCount = 0 -24753122 goalTotal = 0 -24753123 otherCount = 15 -~~~ -~~~ -24758163 DOWN 10 -24758163 0 2048 -~~~ -~~~ -~~~ -~~~ -24758187 homeCount = 19 -24758187 waitCount = 8 -24758188 ripCount = 8 -24758188 locktype1 = 1 -24758189 locktype2 = 1 -24758189 locktype3 = 1 -24758190 goalCount = 0 -24758190 goalTotal = 0 -24758191 otherCount = 15 -~~~ -24760831 UP 12 -24760831 2048 2048 -24761455 DOWN 12 -24761455 0 2048 -24761656 LOCKOUT 3 -~~~ -24761677 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24761683 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24762044 UP 12 -24762044 2048 0 -24762069 DOWN 12 -24762069 0 0 -24762110 UP 12 -24762110 2048 0 -24762804 DOWN 12 -24762804 0 0 -24786677 LOCKEND -~~~ -~~~ -~~~ -24786697 0 512 -24787613 UP 10 -24787613 waslock = 0 -24787613 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24787645 512 16777728 -~~~ -24787699 DOWN 10 -24787699 0 16777728 -24787723 UP 10 -24787723 waslock = 0 -24787723 512 16777728 -~~~ -~~~ -24787726 512 16779776 -~~~ -~~~ -24787728 512 16779264 -24787729 homeCount = 20 -24787730 waitCount = 8 -24787730 ripCount = 8 -24787731 locktype1 = 1 -24787731 locktype2 = 1 -24787732 locktype3 = 2 -24787732 goalCount = 0 -24787733 goalTotal = 0 -24787754 otherCount = 15 -~~~ -~~~ -24787795 512 2048 -24788471 DOWN 10 -24788471 0 2048 -~~~ -~~~ -~~~ -~~~ -24788500 homeCount = 20 -24788500 waitCount = 8 -24788501 ripCount = 8 -24788501 locktype1 = 1 -24788502 locktype2 = 1 -24788502 locktype3 = 2 -24788503 goalCount = 0 -24788503 goalTotal = 0 -24788504 otherCount = 15 -~~~ -24788523 UP 10 -24788523 waslock = 0 -24788523 512 2048 -~~~ -24793994 DOWN 10 -24793994 0 2048 -~~~ -~~~ -~~~ -~~~ -24794018 homeCount = 20 -24794019 waitCount = 8 -24794019 ripCount = 8 -24794020 locktype1 = 1 -24794020 locktype2 = 1 -24794021 locktype3 = 2 -24794021 goalCount = 0 -24794022 goalTotal = 0 -24794022 otherCount = 15 -~~~ -24833942 UP 12 -24833942 2048 2048 -24834649 DOWN 12 -24834649 0 2048 -24834690 UP 12 -24834690 2048 2048 -24835479 DOWN 12 -24835479 0 2048 -24835513 UP 12 -24835513 2048 2048 -24835759 DOWN 12 -24835759 0 2048 -24835877 UP 12 -24835877 2048 2048 -24835927 DOWN 12 -24835927 0 2048 -24835951 UP 12 -24835951 2048 2048 -24836281 DOWN 12 -24836281 0 2048 -24836323 UP 12 -24836323 2048 2048 -24836439 DOWN 12 -24836439 0 2048 -24836452 UP 12 -24836452 2048 2048 -24836649 DOWN 12 -24836649 0 2048 -24836676 UP 12 -24836676 2048 2048 -24836942 CLICK1 -24836942 CLICK2 -~~~ -~~~ -~~~ -24836972 2048 67110912 -~~~ -24837059 DOWN 12 -24837059 0 67110912 -24837122 0 2048 -24837133 UP 12 -24837133 2048 2048 -~~~ -~~~ -24837144 2048 0 -~~~ -~~~ -24837146 2048 1 -~~~ -~~~ -24837148 2048 3 -~~~ -~~~ -24837150 2048 7 -~~~ -~~~ -24837152 2048 15 -~~~ -~~~ -24837153 2048 31 -~~~ -~~~ -24837155 2048 63 -~~~ -~~~ -24837157 2048 127 -~~~ -~~~ -24837159 2048 255 -24837160 homeCount = 20 -24837160 waitCount = 9 -24837161 ripCount = 8 -24837182 locktype1 = 1 -24837183 locktype2 = 1 -24837183 locktype3 = 2 -24837184 goalCount = 0 -24837184 goalTotal = 0 -24837185 otherCount = 15 -~~~ -24837186 CURRENTGOAL IS [2] -~~~ -24837229 DOWN 12 -24837229 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24837272 homeCount = 20 -24837272 waitCount = 9 -24837273 ripCount = 8 -24837273 locktype1 = 1 -24837274 locktype2 = 1 -24837274 locktype3 = 2 -24837275 goalCount = 0 -24837275 goalTotal = 0 -24837276 otherCount = 15 -~~~ -24837277 CURRENTGOAL IS [2] -~~~ -24837298 UP 12 -24837298 2048 255 -24842976 DOWN 12 -24842976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24843011 homeCount = 20 -24843011 waitCount = 9 -24843012 ripCount = 8 -24843012 locktype1 = 1 -24843013 locktype2 = 1 -24843013 locktype3 = 2 -24843014 goalCount = 0 -24843014 goalTotal = 0 -24843015 otherCount = 15 -~~~ -24843016 CURRENTGOAL IS [2] -~~~ -24848553 UP 4 -24848553 8 255 -~~~ -~~~ -24848589 DOWN 4 -24848589 0 255 -~~~ -~~~ -24848608 0 254 -~~~ -~~~ -24848610 0 252 -~~~ -~~~ -24848612 0 248 -~~~ -~~~ -24848613 0 240 -~~~ -~~~ -24848615 0 224 -~~~ -~~~ -24848617 0 192 -~~~ -~~~ -24848619 0 128 -~~~ -~~~ -24848621 0 0 -~~~ -~~~ -24848623 0 512 -24848624 homeCount = 20 -24848624 waitCount = 9 -24848625 ripCount = 8 -24848625 locktype1 = 1 -24848646 locktype2 = 1 -24848647 locktype3 = 2 -24848647 goalCount = 0 -24848648 goalTotal = 0 -24848648 otherCount = 16 -~~~ -24848649 8 512 -24848856 DOWN 4 -24848856 0 512 -24857480 UP 10 -24857481 waslock = 0 -24857480 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24857509 512 16777728 -~~~ -24857659 512 512 -24858225 DOWN 10 -24858225 0 512 -~~~ -24858250 UP 10 -24858251 waslock = 0 -24858250 512 512 -~~~ -~~~ -~~~ -24858253 512 2048 -24858254 homeCount = 21 -24858255 waitCount = 9 -24858255 ripCount = 8 -24858256 locktype1 = 1 -24858256 locktype2 = 1 -24858257 locktype3 = 2 -24858257 goalCount = 0 -24858278 goalTotal = 0 -24858279 otherCount = 16 -~~~ -~~~ -24862400 DOWN 10 -24862400 0 2048 -24862418 UP 10 -24862419 waslock = 0 -24862418 512 2048 -~~~ -~~~ -~~~ -~~~ -24862426 homeCount = 21 -24862426 waitCount = 9 -24862427 ripCount = 8 -24862427 locktype1 = 1 -24862428 locktype2 = 1 -24862428 locktype3 = 2 -24862429 goalCount = 0 -24862429 goalTotal = 0 -24862430 otherCount = 16 -~~~ -~~~ -24862493 DOWN 10 -24862493 0 2048 -~~~ -~~~ -~~~ -~~~ -24862522 homeCount = 21 -24862523 waitCount = 9 -24862523 ripCount = 8 -24862524 locktype1 = 1 -24862524 locktype2 = 1 -24862525 locktype3 = 2 -24862525 goalCount = 0 -24862526 goalTotal = 0 -24862526 otherCount = 16 -~~~ -24930514 UP 10 -24930515 waslock = 0 -24930514 512 2048 -~~~ -24930785 DOWN 10 -24930785 0 2048 -~~~ -~~~ -~~~ -~~~ -24930806 homeCount = 21 -24930806 waitCount = 9 -24930807 ripCount = 8 -24930807 locktype1 = 1 -24930808 locktype2 = 1 -24930808 locktype3 = 2 -24930809 goalCount = 0 -24930809 goalTotal = 0 -24930810 otherCount = 16 -~~~ -24930873 UP 10 -24930874 waslock = 0 -24930873 512 2048 -~~~ -24931398 DOWN 10 -24931398 0 2048 -~~~ -~~~ -~~~ -~~~ -24931425 homeCount = 21 -24931426 waitCount = 9 -24931426 ripCount = 8 -24931427 locktype1 = 1 -24931427 locktype2 = 1 -24931428 locktype3 = 2 -24931428 goalCount = 0 -24931429 goalTotal = 0 -24931429 otherCount = 16 -~~~ -24931444 UP 10 -24931445 waslock = 0 -24931444 512 2048 -~~~ -24932304 DOWN 10 -24932304 0 2048 -24932319 UP 10 -24932320 waslock = 0 -24932319 512 2048 -~~~ -~~~ -~~~ -~~~ -24932326 homeCount = 21 -24932327 waitCount = 9 -24932327 ripCount = 8 -24932328 locktype1 = 1 -24932328 locktype2 = 1 -24932329 locktype3 = 2 -24932329 goalCount = 0 -24932330 goalTotal = 0 -24932330 otherCount = 16 -~~~ -~~~ -24933504 DOWN 10 -24933504 0 2048 -~~~ -~~~ -~~~ -~~~ -24933528 homeCount = 21 -24933529 waitCount = 9 -24933529 ripCount = 8 -24933530 locktype1 = 1 -24933530 locktype2 = 1 -24933531 locktype3 = 2 -24933531 goalCount = 0 -24933532 goalTotal = 0 -24933532 otherCount = 16 -~~~ -24933557 UP 10 -24933558 waslock = 0 -24933557 512 2048 -~~~ -24933598 DOWN 10 -24933598 0 2048 -~~~ -~~~ -~~~ -~~~ -24933626 homeCount = 21 -24933627 waitCount = 9 -24933627 ripCount = 8 -24933628 locktype1 = 1 -24933628 locktype2 = 1 -24933629 locktype3 = 2 -24933629 goalCount = 0 -24933630 goalTotal = 0 -24933630 otherCount = 16 -~~~ -24937095 UP 12 -24937095 2048 2048 -24939013 DOWN 12 -24939013 0 2048 -24939059 UP 12 -24939059 2048 2048 -24940772 DOWN 12 -24940772 0 2048 -24940815 UP 12 -24940815 2048 2048 -24940959 DOWN 12 -24940959 0 2048 -24940980 UP 12 -24940980 2048 2048 -24941345 CLICK1 -24941345 CLICK2 -~~~ -~~~ -~~~ -24941365 2048 67110912 -~~~ -24941515 2048 2048 -24946106 DOWN 12 -24946105 0 2048 -~~~ -~~~ -24946124 0 0 -~~~ -~~~ -24946126 0 1 -~~~ -~~~ -24946128 0 3 -~~~ -~~~ -24946130 0 7 -~~~ -~~~ -24946132 0 15 -~~~ -~~~ -24946133 0 31 -~~~ -~~~ -24946135 0 63 -~~~ -~~~ -24946137 0 127 -~~~ -~~~ -24946139 0 255 -24946140 homeCount = 21 -24946140 waitCount = 10 -24946141 ripCount = 8 -24946141 locktype1 = 1 -24946142 locktype2 = 1 -24946163 locktype3 = 2 -24946163 goalCount = 0 -24946164 goalTotal = 0 -24946164 otherCount = 16 -~~~ -24946165 CURRENTGOAL IS [2] -~~~ -24946181 UP 12 -24946181 2048 255 -24946208 DOWN 12 -24946208 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24946241 homeCount = 21 -24946241 waitCount = 10 -24946242 ripCount = 8 -24946242 locktype1 = 1 -24946243 locktype2 = 1 -24946243 locktype3 = 2 -24946244 goalCount = 0 -24946244 goalTotal = 0 -24946245 otherCount = 16 -~~~ -24946246 CURRENTGOAL IS [2] -~~~ -24950351 UP 1 -24950351 1 255 -~~~ -~~~ -24951379 DOWN 1 -24951379 0 255 -~~~ -~~~ -24951405 0 254 -~~~ -~~~ -24951406 0 252 -~~~ -~~~ -24951408 0 248 -~~~ -~~~ -24951410 0 240 -~~~ -~~~ -24951412 0 224 -~~~ -~~~ -24951414 0 192 -~~~ -~~~ -24951415 0 128 -~~~ -~~~ -24951417 0 0 -~~~ -~~~ -24951419 0 512 -24951420 homeCount = 21 -24951421 waitCount = 10 -24951421 ripCount = 8 -24951422 locktype1 = 1 -24951422 locktype2 = 1 -24951443 locktype3 = 2 -24951443 goalCount = 0 -24951444 goalTotal = 0 -24951444 otherCount = 17 -~~~ -24955122 UP 10 -24955122 waslock = 0 -24955122 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24955153 512 16777728 -~~~ -24955284 DOWN 10 -24955284 0 16777728 -24955303 0 512 -24955318 UP 10 -24955319 waslock = 0 -24955318 512 512 -~~~ -~~~ -24955321 512 1536 -~~~ -~~~ -24955323 512 1024 -24955324 homeCount = 22 -24955324 waitCount = 10 -24955325 ripCount = 8 -24955325 locktype1 = 1 -24955326 locktype2 = 1 -24955326 locktype3 = 2 -24955327 goalCount = 0 -24955348 goalTotal = 0 -24955348 otherCount = 17 -~~~ -~~~ -24955745 DOWN 10 -24955745 0 1024 -~~~ -~~~ -~~~ -24955771 UP 10 -24955771 waslock = 0 -24955771 512 1024 -~~~ -24955773 homeCount = 22 -24955774 waitCount = 10 -24955774 ripCount = 8 -24955775 locktype1 = 1 -24955775 locktype2 = 1 -24955776 locktype3 = 2 -24955776 goalCount = 0 -24955777 goalTotal = 0 -24955798 otherCount = 17 -~~~ -~~~ -24958679 DOWN 10 -24958679 0 1024 -~~~ -~~~ -~~~ -~~~ -24958701 homeCount = 22 -24958702 waitCount = 10 -24958702 ripCount = 8 -24958703 locktype1 = 1 -24958703 locktype2 = 1 -24958704 locktype3 = 2 -24958704 goalCount = 0 -24958705 goalTotal = 0 -24958705 otherCount = 17 -~~~ -24958730 UP 10 -24958730 waslock = 0 -24958730 512 1024 -24958749 DOWN 10 -24958749 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -24958773 homeCount = 22 -24958773 waitCount = 10 -24958774 ripCount = 8 -24958774 locktype1 = 1 -24958775 locktype2 = 1 -24958775 locktype3 = 2 -24958776 goalCount = 0 -24958776 goalTotal = 0 -24958777 otherCount = 17 -~~~ -24960062 UP 11 -24960062 1024 1024 -24961852 DOWN 11 -24961852 0 1024 -24961864 UP 11 -24961864 1024 1024 -24962813 BEEP1 -24962813 BEEP2 -~~~ -~~~ -~~~ -24962837 1024 33555456 -~~~ -24962987 1024 1024 -24963064 DOWN 11 -24963064 0 1024 -24963077 UP 11 -24963077 1024 1024 -~~~ -~~~ -24963504 1024 0 -~~~ -~~~ -24963505 1024 1 -~~~ -~~~ -24963507 1024 3 -~~~ -~~~ -24963509 1024 7 -~~~ -~~~ -24963511 1024 15 -~~~ -~~~ -24963513 1024 31 -~~~ -~~~ -24963514 1024 63 -~~~ -~~~ -24963516 1024 127 -~~~ -~~~ -24963518 1024 255 -24963519 homeCount = 22 -24963520 waitCount = 10 -24963520 ripCount = 9 -24963521 locktype1 = 1 -24963542 locktype2 = 1 -24963542 locktype3 = 2 -24963543 goalCount = 0 -24963543 goalTotal = 0 -24963544 otherCount = 17 -~~~ -24963545 CURRENTGOAL IS [2] -~~~ -24968316 DOWN 11 -24968316 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24968356 homeCount = 22 -24968357 waitCount = 10 -24968357 ripCount = 9 -24968358 locktype1 = 1 -24968358 locktype2 = 1 -24968359 locktype3 = 2 -24968359 goalCount = 0 -24968360 goalTotal = 0 -24968360 otherCount = 17 -~~~ -24968361 CURRENTGOAL IS [2] -~~~ -24968382 UP 11 -24968382 1024 255 -24968404 DOWN 11 -24968404 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -24968438 homeCount = 22 -24968439 waitCount = 10 -24968439 ripCount = 9 -24968440 locktype1 = 1 -24968441 locktype2 = 1 -24968441 locktype3 = 2 -24968442 goalCount = 0 -24968442 goalTotal = 0 -24968443 otherCount = 17 -~~~ -24968444 CURRENTGOAL IS [2] -~~~ -24971124 UP 7 -24971124 64 255 -~~~ -~~~ -24971481 DOWN 7 -24971481 0 255 -~~~ -~~~ -24971503 0 254 -~~~ -~~~ -24971505 0 252 -~~~ -~~~ -24971506 0 248 -~~~ -~~~ -24971508 0 240 -~~~ -~~~ -24971510 0 224 -~~~ -~~~ -24971512 0 192 -~~~ -~~~ -24971514 64 128 -~~~ -~~~ -24971515 64 0 -~~~ -~~~ -24971517 64 512 -24971518 homeCount = 22 -24971519 waitCount = 10 -24971519 ripCount = 9 -24971520 locktype1 = 1 -24971541 locktype2 = 1 -24971542 locktype3 = 2 -24971542 goalCount = 0 -24971543 goalTotal = 0 -24971543 otherCount = 18 -~~~ -24972028 DOWN 7 -24972028 0 512 -24972049 64 512 -24972113 DOWN 7 -24972113 0 512 -24978577 UP 10 -24978578 waslock = 0 -24978577 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -24978604 512 16777728 -~~~ -24978753 512 512 -24978766 DOWN 10 -24978766 0 512 -~~~ -~~~ -24978786 0 1536 -~~~ -~~~ -24978788 0 1024 -24978789 homeCount = 23 -24978789 waitCount = 10 -24978790 ripCount = 9 -24978790 locktype1 = 1 -24978791 locktype2 = 1 -24978791 locktype3 = 2 -24978792 goalCount = 0 -24978792 goalTotal = 0 -24978793 otherCount = 18 -~~~ -24978850 UP 10 -24978851 waslock = 0 -24978850 512 1024 -~~~ -24978958 DOWN 10 -24978958 0 1024 -24978966 UP 10 -24978966 waslock = 0 -24978966 512 1024 -~~~ -~~~ -~~~ -~~~ -24978988 homeCount = 23 -24978989 waitCount = 10 -24978989 ripCount = 9 -24978990 locktype1 = 1 -24978990 locktype2 = 1 -24978991 locktype3 = 2 -24978991 goalCount = 0 -24978992 goalTotal = 0 -24978992 otherCount = 18 -~~~ -~~~ -24978997 DOWN 10 -24978997 0 1024 -~~~ -~~~ -~~~ -~~~ -24979033 homeCount = 23 -24979034 waitCount = 10 -24979034 ripCount = 9 -24979035 locktype1 = 1 -24979035 locktype2 = 1 -24979036 locktype3 = 2 -24979036 goalCount = 0 -24979037 goalTotal = 0 -24979037 otherCount = 18 -~~~ -24979055 UP 10 -24979055 waslock = 0 -24979055 512 1024 -~~~ -24983166 DOWN 10 -24983166 0 1024 -~~~ -~~~ -~~~ -~~~ -24983190 homeCount = 23 -24983190 waitCount = 10 -24983191 ripCount = 9 -24983191 locktype1 = 1 -24983192 locktype2 = 1 -24983192 locktype3 = 2 -24983193 goalCount = 0 -24983193 goalTotal = 0 -24983194 otherCount = 18 -~~~ -24983202 UP 10 -24983202 waslock = 0 -24983202 512 1024 -~~~ -24983259 DOWN 10 -24983259 0 1024 -~~~ -~~~ -~~~ -~~~ -24983280 homeCount = 23 -24983281 waitCount = 10 -24983281 ripCount = 9 -24983282 locktype1 = 1 -24983282 locktype2 = 1 -24983283 locktype3 = 2 -24983283 goalCount = 0 -24983284 goalTotal = 0 -24983284 otherCount = 18 -~~~ -24992949 UP 10 -24992949 waslock = 0 -24992948 512 1024 -~~~ -24993619 DOWN 10 -24993619 0 1024 -~~~ -~~~ -~~~ -~~~ -24993640 homeCount = 23 -24993641 waitCount = 10 -24993641 ripCount = 9 -24993642 locktype1 = 1 -24993642 locktype2 = 1 -24993643 locktype3 = 2 -24993643 goalCount = 0 -24993644 goalTotal = 0 -24993644 otherCount = 18 -~~~ -24993658 UP 10 -24993658 waslock = 0 -24993658 512 1024 -~~~ -24993819 DOWN 10 -24993819 0 1024 -~~~ -~~~ -~~~ -~~~ -24993845 homeCount = 23 -24993845 waitCount = 10 -24993846 ripCount = 9 -24993846 locktype1 = 1 -24993847 locktype2 = 1 -24993847 locktype3 = 2 -24993848 goalCount = 0 -24993848 goalTotal = 0 -24993849 otherCount = 18 -~~~ -24993855 UP 10 -24993855 waslock = 0 -24993855 512 1024 -~~~ -24994083 DOWN 10 -24994083 0 1024 -~~~ -~~~ -~~~ -~~~ -24994116 homeCount = 23 -24994117 waitCount = 10 -24994117 ripCount = 9 -24994118 locktype1 = 1 -24994118 locktype2 = 1 -24994119 locktype3 = 2 -24994119 goalCount = 0 -24994120 goalTotal = 0 -24994120 otherCount = 18 -~~~ -25014055 UP 10 -25014055 waslock = 0 -25014055 512 1024 -~~~ -25014332 DOWN 10 -25014332 0 1024 -~~~ -~~~ -~~~ -~~~ -25014361 homeCount = 23 -25014361 waitCount = 10 -25014362 ripCount = 9 -25014362 locktype1 = 1 -25014363 locktype2 = 1 -25014363 locktype3 = 2 -25014364 goalCount = 0 -25014364 goalTotal = 0 -25014365 otherCount = 18 -~~~ -25014825 UP 10 -25014825 waslock = 0 -25014825 512 1024 -~~~ -25015812 DOWN 10 -25015812 0 1024 -~~~ -~~~ -~~~ -~~~ -25015841 homeCount = 23 -25015841 waitCount = 10 -25015842 ripCount = 9 -25015842 locktype1 = 1 -25015843 locktype2 = 1 -25015843 locktype3 = 2 -25015844 goalCount = 0 -25015844 goalTotal = 0 -25015845 otherCount = 18 -~~~ -25015866 UP 10 -25015866 waslock = 0 -25015866 512 1024 -~~~ -25015908 DOWN 10 -25015908 0 1024 -~~~ -~~~ -~~~ -~~~ -25015937 homeCount = 23 -25015938 waitCount = 10 -25015938 ripCount = 9 -25015939 locktype1 = 1 -25015940 locktype2 = 1 -25015940 locktype3 = 2 -25015941 goalCount = 0 -25015941 goalTotal = 0 -25015942 otherCount = 18 -~~~ -25026289 UP 11 -25026289 1024 1024 -25027542 DOWN 11 -25027542 0 1024 -25027560 UP 11 -25027560 1024 1024 -25027600 DOWN 11 -25027600 0 1024 -25027621 UP 11 -25027621 1024 1024 -25028239 DOWN 11 -25028239 0 1024 -25028248 UP 11 -25028248 1024 1024 -25028279 DOWN 11 -25028279 0 1024 -25028295 UP 11 -25028295 1024 1024 -25029519 DOWN 11 -25029519 0 1024 -25029539 UP 11 -25029539 1024 1024 -25031039 BEEP1 -25031039 BEEP2 -~~~ -~~~ -~~~ -25031065 1024 33555456 -~~~ -25031215 1024 1024 -25034863 DOWN 11 -25034863 0 1024 -~~~ -~~~ -25034883 0 0 -~~~ -~~~ -25034884 0 1 -~~~ -~~~ -25034886 0 3 -~~~ -~~~ -25034888 0 7 -~~~ -~~~ -25034890 0 15 -~~~ -~~~ -25034892 0 31 -~~~ -~~~ -25034893 0 63 -~~~ -~~~ -25034895 0 127 -~~~ -~~~ -25034897 0 255 -25034898 homeCount = 23 -25034899 waitCount = 10 -25034899 ripCount = 10 -25034900 locktype1 = 1 -25034900 locktype2 = 1 -25034921 locktype3 = 2 -25034922 goalCount = 0 -25034922 goalTotal = 0 -25034923 otherCount = 18 -~~~ -25034924 CURRENTGOAL IS [2] -~~~ -25034924 UP 11 -25034924 1024 255 -25034974 DOWN 11 -25034974 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25035007 homeCount = 23 -25035008 waitCount = 10 -25035008 ripCount = 10 -25035009 locktype1 = 1 -25035010 locktype2 = 1 -25035010 locktype3 = 2 -25035011 goalCount = 0 -25035011 goalTotal = 0 -25035012 otherCount = 18 -~~~ -25035013 CURRENTGOAL IS [2] -~~~ -25037912 UP 8 -25037912 128 255 -~~~ -~~~ -25038494 DOWN 8 -25038494 0 255 -~~~ -~~~ -25038511 0 254 -~~~ -~~~ -25038513 0 252 -~~~ -~~~ -25038514 0 248 -~~~ -~~~ -25038516 0 240 -~~~ -~~~ -25038518 0 224 -~~~ -~~~ -25038520 0 192 -~~~ -~~~ -25038522 0 128 -~~~ -~~~ -25038524 0 0 -~~~ -~~~ -25038525 0 512 -25038526 homeCount = 23 -25038527 waitCount = 10 -25038527 ripCount = 10 -25038528 locktype1 = 1 -25038528 locktype2 = 1 -25038549 locktype3 = 2 -25038550 goalCount = 0 -25038550 goalTotal = 0 -25038551 otherCount = 19 -~~~ -25043144 UP 10 -25043144 waslock = 0 -25043144 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25043167 512 16777728 -~~~ -25043317 512 512 -25043535 DOWN 10 -25043535 0 512 -~~~ -~~~ -25043565 0 2560 -~~~ -~~~ -25043567 0 2048 -25043568 homeCount = 24 -25043568 waitCount = 10 -25043569 ripCount = 10 -25043569 locktype1 = 1 -25043570 locktype2 = 1 -25043570 locktype3 = 2 -25043571 goalCount = 0 -25043571 goalTotal = 0 -25043572 otherCount = 19 -~~~ -25043738 UP 10 -25043738 waslock = 0 -25043738 512 2048 -~~~ -25047500 DOWN 10 -25047500 0 2048 -~~~ -~~~ -25047525 UP 10 -25047526 waslock = 0 -25047525 512 2048 -~~~ -~~~ -25047528 homeCount = 24 -25047528 waitCount = 10 -25047529 ripCount = 10 -25047529 locktype1 = 1 -25047530 locktype2 = 1 -25047530 locktype3 = 2 -25047531 goalCount = 0 -25047531 goalTotal = 0 -25047552 otherCount = 19 -~~~ -~~~ -25047584 DOWN 10 -25047584 0 2048 -~~~ -~~~ -~~~ -~~~ -25047608 homeCount = 24 -25047608 waitCount = 10 -25047609 ripCount = 10 -25047609 locktype1 = 1 -25047610 locktype2 = 1 -25047610 locktype3 = 2 -25047611 goalCount = 0 -25047611 goalTotal = 0 -25047612 otherCount = 19 -~~~ -25052125 UP 12 -25052125 2048 2048 -25054402 DOWN 12 -25054401 0 2048 -25054425 UP 12 -25054425 2048 2048 -25054523 DOWN 12 -25054523 0 2048 -25054564 UP 12 -25054564 2048 2048 -25054625 CLICK1 -25054625 CLICK2 -~~~ -~~~ -~~~ -25054647 2048 67110912 -~~~ -25054797 2048 2048 -25060172 DOWN 12 -25060172 0 2048 -25060192 UP 12 -25060192 2048 2048 -~~~ -~~~ -25060196 2048 0 -~~~ -~~~ -25060198 2048 1 -~~~ -~~~ -25060199 2048 3 -~~~ -~~~ -25060201 2048 7 -~~~ -~~~ -25060203 2048 15 -~~~ -~~~ -25060205 2048 31 -~~~ -~~~ -25060207 2048 63 -~~~ -~~~ -25060209 2048 127 -~~~ -~~~ -25060210 2048 255 -25060211 homeCount = 24 -25060212 waitCount = 11 -25060213 ripCount = 10 -25060213 locktype1 = 1 -25060234 locktype2 = 1 -25060235 locktype3 = 2 -25060235 goalCount = 0 -25060236 goalTotal = 0 -25060236 otherCount = 19 -~~~ -25060237 CURRENTGOAL IS [2] -~~~ -25060249 DOWN 12 -25060249 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25060289 homeCount = 24 -25060289 waitCount = 11 -25060290 ripCount = 10 -25060290 locktype1 = 1 -25060291 locktype2 = 1 -25060291 locktype3 = 2 -25060292 goalCount = 0 -25060292 goalTotal = 0 -25060293 otherCount = 19 -~~~ -25060294 CURRENTGOAL IS [2] -~~~ -25063141 UP 3 -25063141 4 255 -~~~ -~~~ -25063547 DOWN 3 -25063547 0 255 -~~~ -~~~ -25063565 0 254 -~~~ -~~~ -25063567 0 252 -~~~ -~~~ -25063569 0 248 -~~~ -~~~ -25063570 0 240 -~~~ -~~~ -25063572 0 224 -~~~ -~~~ -25063574 0 192 -~~~ -~~~ -25063576 0 128 -~~~ -~~~ -25063578 0 0 -~~~ -~~~ -25063580 0 512 -25063581 homeCount = 24 -25063581 waitCount = 11 -25063582 ripCount = 10 -25063582 locktype1 = 1 -25063603 locktype2 = 1 -25063604 locktype3 = 2 -25063604 goalCount = 0 -25063605 goalTotal = 0 -25063605 otherCount = 20 -~~~ -25067425 UP 10 -25067425 waslock = 0 -25067425 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25067452 512 16777728 -~~~ -25067602 512 512 -25067687 DOWN 10 -25067687 0 512 -~~~ -~~~ -25067706 0 1536 -~~~ -~~~ -25067708 0 1024 -25067709 homeCount = 25 -25067710 waitCount = 11 -25067710 ripCount = 10 -25067711 locktype1 = 1 -25067711 locktype2 = 1 -25067712 locktype3 = 2 -25067712 goalCount = 0 -25067713 goalTotal = 0 -25067713 otherCount = 20 -~~~ -25067735 UP 10 -25067735 waslock = 0 -25067735 512 1024 -~~~ -25071823 DOWN 10 -25071823 0 1024 -~~~ -~~~ -~~~ -~~~ -25071852 homeCount = 25 -25071853 waitCount = 11 -25071853 ripCount = 10 -25071854 locktype1 = 1 -25071854 locktype2 = 1 -25071855 locktype3 = 2 -25071855 goalCount = 0 -25071856 goalTotal = 0 -25071856 otherCount = 20 -~~~ -25073297 UP 11 -25073297 1024 1024 -25075903 DOWN 11 -25075903 0 1024 -25075949 UP 11 -25075949 1024 1024 -25076047 BEEP1 -25076047 BEEP2 -~~~ -~~~ -~~~ -25076076 1024 33555456 -~~~ -25076226 1024 1024 -25080864 DOWN 11 -25080864 0 1024 -25080887 UP 11 -25080887 1024 1024 -~~~ -~~~ -25080891 1024 0 -~~~ -~~~ -25080892 1024 1 -~~~ -~~~ -25080894 1024 3 -~~~ -~~~ -25080896 1024 7 -~~~ -~~~ -25080898 1024 15 -~~~ -~~~ -25080900 1024 31 -~~~ -~~~ -25080901 1024 63 -~~~ -~~~ -25080903 1024 127 -~~~ -~~~ -25080905 1024 255 -25080906 homeCount = 25 -25080907 waitCount = 11 -25080907 ripCount = 11 -25080928 locktype1 = 1 -25080929 locktype2 = 1 -25080929 locktype3 = 2 -25080930 goalCount = 0 -25080930 goalTotal = 0 -25080931 otherCount = 20 -~~~ -25080932 CURRENTGOAL IS [2] -~~~ -25080976 DOWN 11 -25080976 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25081015 homeCount = 25 -25081015 waitCount = 11 -25081016 ripCount = 11 -25081016 locktype1 = 1 -25081017 locktype2 = 1 -25081018 locktype3 = 2 -25081018 goalCount = 0 -25081018 goalTotal = 0 -25081019 otherCount = 20 -~~~ -25081020 CURRENTGOAL IS [2] -~~~ -25084278 UP 6 -25084278 32 255 -~~~ -~~~ -25085001 DOWN 6 -25085001 0 255 -25085013 32 255 -~~~ -~~~ -25085032 32 254 -~~~ -~~~ -25085034 32 252 -~~~ -~~~ -25085036 32 248 -~~~ -~~~ -25085037 32 240 -~~~ -~~~ -25085039 32 224 -~~~ -~~~ -25085041 32 192 -~~~ -~~~ -25085043 32 128 -~~~ -~~~ -25085045 32 0 -~~~ -~~~ -25085047 32 512 -25085048 homeCount = 25 -25085048 waitCount = 11 -25085049 ripCount = 11 -25085049 locktype1 = 1 -25085070 locktype2 = 1 -25085070 locktype3 = 2 -25085071 goalCount = 0 -25085071 goalTotal = 0 -25085072 otherCount = 21 -~~~ -25085490 DOWN 6 -25085490 0 512 -25089559 UP 10 -25089560 waslock = 0 -25089559 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25089592 512 16777728 -~~~ -25089594 DOWN 10 -25089594 0 16777728 -~~~ -~~~ -25089613 0 16779776 -~~~ -~~~ -25089615 0 16779264 -25089616 homeCount = 26 -25089616 waitCount = 11 -25089617 ripCount = 11 -25089617 locktype1 = 1 -25089618 locktype2 = 1 -25089618 locktype3 = 2 -25089619 goalCount = 0 -25089619 goalTotal = 0 -25089620 otherCount = 21 -~~~ -25089742 0 2048 -25089753 UP 10 -25089753 waslock = 0 -25089753 512 2048 -~~~ -25090106 DOWN 10 -25090106 0 2048 -~~~ -~~~ -~~~ -~~~ -25090129 homeCount = 26 -25090129 waitCount = 11 -25090130 ripCount = 11 -25090130 locktype1 = 1 -25090131 locktype2 = 1 -25090131 locktype3 = 2 -25090132 goalCount = 0 -25090132 goalTotal = 0 -25090133 otherCount = 21 -~~~ -25090343 UP 10 -25090344 waslock = 0 -25090343 512 2048 -~~~ -25093735 DOWN 10 -25093735 0 2048 -~~~ -~~~ -~~~ -25093757 UP 10 -25093757 waslock = 0 -25093757 512 2048 -~~~ -25093759 homeCount = 26 -25093759 waitCount = 11 -25093760 ripCount = 11 -25093760 locktype1 = 1 -25093761 locktype2 = 1 -25093761 locktype3 = 2 -25093762 goalCount = 0 -25093762 goalTotal = 0 -25093763 otherCount = 21 -~~~ -~~~ -25093831 DOWN 10 -25093831 0 2048 -~~~ -~~~ -~~~ -~~~ -25093859 homeCount = 26 -25093859 waitCount = 11 -25093860 ripCount = 11 -25093860 locktype1 = 1 -25093861 locktype2 = 1 -25093861 locktype3 = 2 -25093862 goalCount = 0 -25093862 goalTotal = 0 -25093863 otherCount = 21 -~~~ -25095923 UP 12 -25095923 2048 2048 -25099423 CLICK1 -25099423 CLICK2 -~~~ -~~~ -~~~ -25099447 2048 67110912 -~~~ -25099548 DOWN 12 -25099548 0 67110912 -25099570 UP 12 -25099570 2048 67110912 -25099596 2048 2048 -~~~ -~~~ -25099615 2048 0 -~~~ -~~~ -25099616 2048 1 -~~~ -~~~ -25099618 2048 3 -~~~ -~~~ -25099620 2048 7 -~~~ -~~~ -25099622 2048 15 -~~~ -~~~ -25099624 2048 31 -~~~ -~~~ -25099625 2048 63 -~~~ -~~~ -25099627 2048 127 -~~~ -~~~ -25099629 2048 255 -25099630 homeCount = 26 -25099631 waitCount = 12 -25099631 ripCount = 11 -25099652 locktype1 = 1 -25099653 locktype2 = 1 -25099653 locktype3 = 2 -25099654 goalCount = 0 -25099654 goalTotal = 0 -25099655 otherCount = 21 -~~~ -25099656 CURRENTGOAL IS [2] -~~~ -25103441 DOWN 12 -25103441 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25103483 homeCount = 26 -25103484 waitCount = 12 -25103484 ripCount = 11 -25103485 locktype1 = 1 -25103485 locktype2 = 1 -25103486 locktype3 = 2 -25103486 goalCount = 0 -25103487 goalTotal = 0 -25103487 otherCount = 21 -~~~ -25103488 CURRENTGOAL IS [2] -~~~ -25107617 UP 2 -25107617 2 255 -~~~ -~~~ -25107640 outer reward -~~~ -25107640 2 131327 -~~~ -~~~ -25108090 2 255 -25108090 DOWN 2 -25108090 0 255 -~~~ -~~~ -25108124 0 254 -~~~ -~~~ -25108126 0 252 -~~~ -~~~ -25108128 0 248 -~~~ -~~~ -25108129 0 240 -~~~ -~~~ -25108131 0 224 -~~~ -~~~ -25108133 0 192 -~~~ -~~~ -25108135 0 128 -~~~ -~~~ -25108137 0 0 -~~~ -~~~ -25108139 0 512 -25108139 homeCount = 26 -25108140 waitCount = 12 -25108141 ripCount = 11 -25108141 locktype1 = 1 -25108162 locktype2 = 1 -25108163 locktype3 = 2 -25108163 goalCount = 1 -25108164 goalTotal = 1 -25108164 otherCount = 21 -~~~ -25108165 2 512 -25108303 DOWN 2 -25108303 0 512 -25108337 2 512 -25108404 DOWN 2 -25108404 0 512 -25108444 2 512 -25108534 DOWN 2 -25108534 0 512 -25108561 2 512 -25108675 DOWN 2 -25108675 0 512 -25108681 2 512 -25108797 DOWN 2 -25108797 0 512 -25108808 2 512 -25108923 DOWN 2 -25108923 0 512 -25108940 2 512 -25109063 DOWN 2 -25109063 0 512 -25109079 2 512 -25109213 DOWN 2 -25109213 0 512 -25109221 2 512 -25111989 DOWN 2 -25111989 0 512 -25111997 2 512 -25112095 DOWN 2 -25112095 0 512 -25112143 2 512 -25112170 DOWN 2 -25112170 0 512 -25112175 2 512 -25112334 DOWN 2 -25112334 0 512 -25112350 2 512 -25112437 DOWN 2 -25112437 0 512 -25112458 2 512 -25112510 DOWN 2 -25112510 0 512 -25112516 2 512 -25112519 DOWN 2 -25112519 0 512 -25112525 2 512 -25112616 DOWN 2 -25112616 0 512 -25112644 2 512 -25112863 DOWN 2 -25112863 0 512 -25112875 2 512 -25112908 DOWN 2 -25112908 0 512 -25112924 2 512 -25112973 DOWN 2 -25112973 0 512 -25112985 2 512 -25113064 DOWN 2 -25113064 0 512 -25113068 2 512 -25113165 DOWN 2 -25113165 0 512 -25113182 2 512 -25113240 DOWN 2 -25113240 0 512 -25113268 2 512 -25113362 DOWN 2 -25113362 0 512 -25113405 2 512 -25113427 DOWN 2 -25113427 0 512 -25113453 2 512 -25113486 DOWN 2 -25113486 0 512 -25113492 2 512 -25113607 DOWN 2 -25113607 0 512 -25113626 2 512 -25114161 DOWN 2 -25114161 0 512 -25114185 2 512 -25114363 DOWN 2 -25114363 0 512 -25114372 2 512 -25114757 DOWN 2 -25114757 0 512 -25114769 2 512 -25114897 DOWN 2 -25114897 0 512 -25114923 2 512 -25115469 DOWN 2 -25115469 0 512 -25115493 2 512 -25115664 DOWN 2 -25115664 0 512 -25115679 2 512 -25118445 DOWN 2 -25118445 0 512 -25118505 2 512 -25118523 DOWN 2 -25118523 0 512 -25123502 UP 10 -25123502 waslock = 0 -25123502 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25123535 512 16777728 -~~~ -25123685 512 512 -25123787 DOWN 10 -25123787 0 512 -~~~ -~~~ -25123809 0 2560 -~~~ -~~~ -25123811 0 2048 -25123812 homeCount = 27 -25123812 waitCount = 12 -25123813 ripCount = 11 -25123813 locktype1 = 1 -25123814 locktype2 = 1 -25123814 locktype3 = 2 -25123815 goalCount = 1 -25123815 goalTotal = 1 -25123816 otherCount = 21 -~~~ -25123946 UP 10 -25123946 waslock = 0 -25123946 512 2048 -~~~ -25128830 DOWN 10 -25128830 0 2048 -~~~ -~~~ -~~~ -~~~ -25128851 homeCount = 27 -25128852 waitCount = 12 -25128852 ripCount = 11 -25128853 locktype1 = 1 -25128853 locktype2 = 1 -25128854 locktype3 = 2 -25128854 goalCount = 1 -25128855 goalTotal = 1 -25128855 otherCount = 21 -~~~ -25130706 UP 12 -25130706 2048 2048 -25132114 DOWN 12 -25132114 0 2048 -25132126 UP 12 -25132126 2048 2048 -25133707 CLICK1 -25133707 CLICK2 -~~~ -~~~ -~~~ -25133732 2048 67110912 -~~~ -25133881 2048 2048 -25138417 DOWN 12 -25138417 0 2048 -~~~ -~~~ -25138438 0 0 -~~~ -~~~ -25138440 0 1 -~~~ -~~~ -25138441 0 3 -~~~ -~~~ -25138443 0 7 -~~~ -~~~ -25138445 0 15 -~~~ -~~~ -25138447 0 31 -~~~ -~~~ -25138449 0 63 -~~~ -~~~ -25138451 0 127 -~~~ -~~~ -25138452 0 255 -25138453 homeCount = 27 -25138454 waitCount = 13 -25138454 ripCount = 11 -25138455 locktype1 = 1 -25138456 locktype2 = 1 -25138476 locktype3 = 2 -25138477 goalCount = 1 -25138477 goalTotal = 1 -25138478 otherCount = 21 -~~~ -25138479 CURRENTGOAL IS [2] -~~~ -25138480 UP 12 -25138479 2048 255 -25138526 DOWN 12 -25138526 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25138567 homeCount = 27 -25138567 waitCount = 13 -25138568 ripCount = 11 -25138568 locktype1 = 1 -25138569 locktype2 = 1 -25138569 locktype3 = 2 -25138570 goalCount = 1 -25138570 goalTotal = 1 -25138571 otherCount = 21 -~~~ -25138572 CURRENTGOAL IS [2] -~~~ -25142186 UP 2 -25142186 2 255 -~~~ -~~~ -25142212 outer reward -~~~ -25142212 2 131327 -~~~ -~~~ -25142409 DOWN 2 -25142409 0 131327 -~~~ -~~~ -25142429 0 131326 -~~~ -~~~ -25142431 0 131324 -~~~ -~~~ -25142433 0 131320 -~~~ -~~~ -25142435 0 131312 -~~~ -~~~ -25142437 0 131296 -~~~ -~~~ -25142438 0 131264 -~~~ -~~~ -25142440 0 131200 -~~~ -~~~ -25142442 0 131072 -~~~ -~~~ -25142444 0 131584 -25142445 homeCount = 27 -25142445 waitCount = 13 -25142446 ripCount = 11 -25142467 locktype1 = 1 -25142467 locktype2 = 1 -25142468 locktype3 = 2 -25142468 goalCount = 2 -25142469 goalTotal = 2 -25142469 otherCount = 21 -~~~ -25142514 2 131584 -25142662 2 512 -25142890 DOWN 2 -25142890 0 512 -25142916 2 512 -25143005 DOWN 2 -25143005 0 512 -25143054 2 512 -25143131 DOWN 2 -25143131 0 512 -25143167 2 512 -25143275 DOWN 2 -25143275 0 512 -25143289 2 512 -25143415 DOWN 2 -25143415 0 512 -25143426 2 512 -25143556 DOWN 2 -25143556 0 512 -25143574 2 512 -25143700 DOWN 2 -25143700 0 512 -25143717 2 512 -25143855 DOWN 2 -25143855 0 512 -25143873 2 512 -25145835 DOWN 2 -25145835 0 512 -25145862 2 512 -25146013 DOWN 2 -25146013 0 512 -25146025 2 512 -25146180 DOWN 2 -25146180 0 512 -25146196 2 512 -25146245 DOWN 2 -25146245 0 512 -25146262 2 512 -25146416 DOWN 2 -25146416 0 512 -25146444 2 512 -25146594 DOWN 2 -25146594 0 512 -25146604 2 512 -25146772 DOWN 2 -25146772 0 512 -25146776 2 512 -25146903 DOWN 2 -25146903 0 512 -25146914 2 512 -25147108 DOWN 2 -25147108 0 512 -25147157 2 512 -25147264 DOWN 2 -25147264 0 512 -25147283 2 512 -25147322 DOWN 2 -25147322 0 512 -25147326 2 512 -25147510 DOWN 2 -25147510 0 512 -25147517 2 512 -25149784 DOWN 2 -25149784 0 512 -25149798 2 512 -25149902 DOWN 2 -25149902 0 512 -25154660 UP 10 -25154660 waslock = 0 -25154660 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25154687 512 16777728 -~~~ -25154837 512 512 -25154873 DOWN 10 -25154873 0 512 -~~~ -~~~ -25154890 0 1536 -~~~ -~~~ -25154892 0 1024 -25154893 homeCount = 28 -25154893 waitCount = 13 -25154894 ripCount = 11 -25154894 locktype1 = 1 -25154895 locktype2 = 1 -25154895 locktype3 = 2 -25154896 goalCount = 2 -25154896 goalTotal = 2 -25154897 otherCount = 21 -~~~ -25154918 UP 10 -25154919 waslock = 0 -25154918 512 1024 -~~~ -25159969 DOWN 10 -25159969 0 1024 -~~~ -~~~ -~~~ -~~~ -25159992 homeCount = 28 -25159992 waitCount = 13 -25159993 ripCount = 11 -25159993 locktype1 = 1 -25159994 locktype2 = 1 -25159994 locktype3 = 2 -25159995 goalCount = 2 -25159995 goalTotal = 2 -25159996 otherCount = 21 -~~~ -25161799 UP 11 -25161799 1024 1024 -25164091 DOWN 11 -25164091 0 1024 -25164144 UP 11 -25164144 1024 1024 -25164160 DOWN 11 -25164160 0 1024 -25164179 UP 11 -25164179 1024 1024 -25164800 BEEP1 -25164800 BEEP2 -~~~ -~~~ -~~~ -25164824 1024 33555456 -~~~ -25164974 1024 1024 -25169371 DOWN 11 -25169371 0 1024 -~~~ -~~~ -25169390 0 0 -~~~ -~~~ -25169392 0 1 -~~~ -~~~ -25169394 0 3 -~~~ -~~~ -25169396 0 7 -~~~ -~~~ -25169398 0 15 -~~~ -~~~ -25169400 0 31 -~~~ -~~~ -25169401 0 63 -~~~ -~~~ -25169403 0 127 -~~~ -~~~ -25169405 0 255 -25169406 homeCount = 28 -25169407 waitCount = 13 -25169407 ripCount = 12 -25169408 locktype1 = 1 -25169408 locktype2 = 1 -25169429 locktype3 = 2 -25169430 goalCount = 2 -25169430 goalTotal = 2 -25169431 otherCount = 21 -~~~ -25169432 CURRENTGOAL IS [2] -~~~ -25169432 UP 11 -25169432 1024 255 -25171560 DOWN 11 -25171560 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25171599 homeCount = 28 -25171599 waitCount = 13 -25171600 ripCount = 12 -25171600 locktype1 = 1 -25171601 locktype2 = 1 -25171601 locktype3 = 2 -25171602 goalCount = 2 -25171602 goalTotal = 2 -25171603 otherCount = 21 -~~~ -25171604 CURRENTGOAL IS [2] -~~~ -25175596 UP 2 -25175596 2 255 -~~~ -~~~ -25175623 outer reward -~~~ -25175624 2 131327 -~~~ -~~~ -25175843 DOWN 2 -25175843 0 131327 -~~~ -~~~ -25175862 0 131326 -~~~ -~~~ -25175863 0 131324 -~~~ -~~~ -25175865 0 131320 -~~~ -~~~ -25175867 0 131312 -~~~ -~~~ -25175869 0 131296 -~~~ -~~~ -25175871 0 131264 -~~~ -~~~ -25175872 0 131200 -~~~ -~~~ -25175874 0 131072 -~~~ -~~~ -25175876 0 131584 -25175877 homeCount = 28 -25175878 waitCount = 13 -25175878 ripCount = 12 -25175899 locktype1 = 1 -25175899 locktype2 = 1 -25175900 locktype3 = 2 -25175900 goalCount = 3 -25175901 goalTotal = 3 -25175901 otherCount = 21 -~~~ -25175912 2 131584 -25176073 2 512 -25176303 DOWN 2 -25176303 0 512 -25176332 2 512 -25176429 DOWN 2 -25176428 0 512 -25176458 2 512 -25176562 DOWN 2 -25176562 0 512 -25176589 2 512 -25176708 DOWN 2 -25176707 0 512 -25176725 2 512 -25176848 DOWN 2 -25176848 0 512 -25176866 2 512 -25176998 DOWN 2 -25176998 0 512 -25177012 2 512 -25177155 DOWN 2 -25177155 0 512 -25177160 2 512 -25179505 DOWN 2 -25179505 0 512 -25179517 2 512 -25179928 DOWN 2 -25179928 0 512 -25179960 2 512 -25180105 DOWN 2 -25180105 0 512 -25180114 2 512 -25180168 DOWN 2 -25180168 0 512 -25180175 2 512 -25180180 DOWN 2 -25180180 0 512 -25180183 2 512 -25180269 DOWN 2 -25180269 0 512 -25180276 2 512 -25180707 DOWN 2 -25180707 0 512 -25180712 2 512 -25180718 DOWN 2 -25180718 0 512 -25180730 2 512 -25180907 DOWN 2 -25180907 0 512 -25180911 2 512 -25180916 DOWN 2 -25180916 0 512 -25180927 2 512 -25181086 DOWN 2 -25181086 0 512 -25181088 2 512 -25181094 DOWN 2 -25181094 0 512 -25181102 2 512 -25182687 DOWN 2 -25182687 0 512 -25182694 2 512 -25182785 DOWN 2 -25182785 0 512 -25188753 UP 10 -25188754 waslock = 0 -25188753 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25188782 512 16777728 -~~~ -25188784 DOWN 10 -25188784 0 16777728 -~~~ -~~~ -25188799 0 16779776 -~~~ -~~~ -25188801 0 16779264 -25188802 homeCount = 29 -25188803 waitCount = 13 -25188803 ripCount = 12 -25188804 locktype1 = 1 -25188804 locktype2 = 1 -25188805 locktype3 = 2 -25188805 goalCount = 3 -25188806 goalTotal = 3 -25188806 otherCount = 21 -~~~ -25188827 UP 10 -25188827 waslock = 0 -25188827 512 16779264 -~~~ -25188932 512 2048 -25188960 DOWN 10 -25188960 0 2048 -25188979 UP 10 -25188980 waslock = 0 -25188979 512 2048 -~~~ -~~~ -~~~ -~~~ -25188986 homeCount = 29 -25188987 waitCount = 13 -25188987 ripCount = 12 -25188988 locktype1 = 1 -25188988 locktype2 = 1 -25188989 locktype3 = 2 -25188989 goalCount = 3 -25188990 goalTotal = 3 -25188990 otherCount = 21 -~~~ -~~~ -25193421 DOWN 10 -25193421 0 2048 -~~~ -~~~ -~~~ -~~~ -25193442 homeCount = 29 -25193442 waitCount = 13 -25193443 ripCount = 12 -25193443 locktype1 = 1 -25193444 locktype2 = 1 -25193444 locktype3 = 2 -25193445 goalCount = 3 -25193445 goalTotal = 3 -25193446 otherCount = 21 -~~~ -25195698 UP 12 -25195698 2048 2048 -25198392 DOWN 12 -25198392 0 2048 -25198421 UP 12 -25198421 2048 2048 -25198445 DOWN 12 -25198445 0 2048 -25198456 UP 12 -25198456 2048 2048 -25198532 DOWN 12 -25198532 0 2048 -25198548 UP 12 -25198548 2048 2048 -25201743 DOWN 12 -25201743 0 2048 -25201782 UP 12 -25201782 2048 2048 -25203699 CLICK1 -25203699 CLICK2 -~~~ -~~~ -~~~ -25203727 2048 67110912 -~~~ -25203877 2048 2048 -25209218 DOWN 12 -25209218 0 2048 -~~~ -~~~ -25209234 0 0 -~~~ -~~~ -25209236 0 1 -~~~ -~~~ -25209238 0 3 -~~~ -~~~ -25209240 0 7 -~~~ -~~~ -25209241 0 15 -~~~ -~~~ -25209243 0 31 -~~~ -~~~ -25209245 0 63 -~~~ -~~~ -25209247 0 127 -~~~ -~~~ -25209249 0 255 -25209250 homeCount = 29 -25209250 waitCount = 14 -25209251 ripCount = 12 -25209251 locktype1 = 1 -25209252 locktype2 = 1 -25209273 locktype3 = 2 -25209273 goalCount = 3 -25209274 goalTotal = 3 -25209274 otherCount = 21 -~~~ -25209275 CURRENTGOAL IS [2] -~~~ -25209277 UP 12 -25209277 2048 255 -25209310 DOWN 12 -25209310 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25209342 homeCount = 29 -25209342 waitCount = 14 -25209343 ripCount = 12 -25209343 locktype1 = 1 -25209344 locktype2 = 1 -25209344 locktype3 = 2 -25209345 goalCount = 3 -25209345 goalTotal = 3 -25209346 otherCount = 21 -~~~ -25209347 CURRENTGOAL IS [2] -~~~ -25224023 UP 2 -25224023 2 255 -~~~ -~~~ -25224050 outer reward -~~~ -25224051 2 131327 -~~~ -~~~ -25224076 DOWN 2 -25224076 0 131327 -~~~ -~~~ -25224097 0 131326 -~~~ -~~~ -25224098 0 131324 -~~~ -~~~ -25224100 0 131320 -~~~ -~~~ -25224102 0 131312 -~~~ -~~~ -25224104 0 131296 -~~~ -~~~ -25224106 0 131264 -~~~ -~~~ -25224107 0 131200 -~~~ -~~~ -25224109 0 131072 -~~~ -~~~ -25224111 0 131584 -25224112 homeCount = 29 -25224113 waitCount = 14 -25224113 ripCount = 12 -25224134 locktype1 = 1 -25224134 locktype2 = 1 -25224135 locktype3 = 2 -25224135 goalCount = 4 -25224136 goalTotal = 4 -25224136 otherCount = 21 -~~~ -25224137 2 131584 -25224348 DOWN 2 -25224348 0 131584 -25224404 2 131584 -25224500 2 512 -25224662 DOWN 2 -25224662 0 512 -25224678 2 512 -25224773 DOWN 2 -25224773 0 512 -25224805 2 512 -25224898 DOWN 2 -25224898 0 512 -25224928 2 512 -25225017 DOWN 2 -25225017 0 512 -25225059 2 512 -25225149 DOWN 2 -25225149 0 512 -25225185 2 512 -25225285 DOWN 2 -25225285 0 512 -25225318 2 512 -25225427 DOWN 2 -25225427 0 512 -25225455 2 512 -25225579 DOWN 2 -25225579 0 512 -25225598 2 512 -25225730 DOWN 2 -25225730 0 512 -25225749 2 512 -25226040 DOWN 2 -25226040 0 512 -25226046 2 512 -25228169 DOWN 2 -25228169 0 512 -25228174 2 512 -25228345 DOWN 2 -25228345 0 512 -25228356 2 512 -25228509 DOWN 2 -25228509 0 512 -25228532 2 512 -25230264 DOWN 2 -25230264 0 512 -25230289 2 512 -25230334 DOWN 2 -25230334 0 512 -25234295 UP 10 -25234295 waslock = 0 -25234295 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25234324 512 16777728 -~~~ -25234474 512 512 -25234489 DOWN 10 -25234488 0 512 -25234502 UP 10 -25234503 waslock = 0 -25234502 512 512 -~~~ -~~~ -25234510 512 2560 -~~~ -~~~ -25234511 512 2048 -25234512 homeCount = 30 -25234513 waitCount = 14 -25234514 ripCount = 12 -25234514 locktype1 = 1 -25234515 locktype2 = 1 -25234515 locktype3 = 2 -25234516 goalCount = 4 -25234516 goalTotal = 4 -25234517 otherCount = 21 -~~~ -~~~ -25238280 DOWN 10 -25238280 0 2048 -~~~ -~~~ -~~~ -~~~ -25238301 homeCount = 30 -25238301 waitCount = 14 -25238302 ripCount = 12 -25238302 locktype1 = 1 -25238303 locktype2 = 1 -25238303 locktype3 = 2 -25238304 goalCount = 4 -25238304 goalTotal = 4 -25238305 otherCount = 21 -~~~ -25239988 UP 12 -25239988 2048 2048 -25248189 DOWN 12 -25248189 0 2048 -25248207 UP 12 -25248207 2048 2048 -25248906 DOWN 12 -25248906 0 2048 -25248913 UP 12 -25248913 2048 2048 -25248988 CLICK1 -25248988 CLICK2 -~~~ -~~~ -~~~ -25249009 2048 67110912 -~~~ -25249159 2048 2048 -25254041 DOWN 12 -25254041 0 2048 -~~~ -~~~ -25254067 0 0 -~~~ -~~~ -25254068 0 1 -~~~ -~~~ -25254070 0 3 -~~~ -~~~ -25254072 0 7 -~~~ -~~~ -25254074 0 15 -~~~ -~~~ -25254076 0 31 -~~~ -~~~ -25254077 0 63 -~~~ -~~~ -25254079 0 127 -~~~ -~~~ -25254081 0 255 -25254082 homeCount = 30 -25254083 waitCount = 15 -25254083 ripCount = 12 -25254084 locktype1 = 1 -25254084 locktype2 = 1 -25254105 locktype3 = 2 -25254106 goalCount = 4 -25254106 goalTotal = 4 -25254107 otherCount = 21 -~~~ -25254108 CURRENTGOAL IS [2] -~~~ -25254108 UP 12 -25254108 2048 255 -25254169 DOWN 12 -25254169 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25254205 homeCount = 30 -25254206 waitCount = 15 -25254206 ripCount = 12 -25254207 locktype1 = 1 -25254207 locktype2 = 1 -25254208 locktype3 = 2 -25254208 goalCount = 4 -25254209 goalTotal = 4 -25254209 otherCount = 21 -~~~ -25254211 CURRENTGOAL IS [2] -~~~ -25258239 UP 2 -25258239 2 255 -~~~ -~~~ -25258262 outer reward -~~~ -25258263 2 131327 -~~~ -~~~ -25258296 DOWN 2 -25258296 0 131327 -~~~ -~~~ -25258319 0 131326 -~~~ -~~~ -25258321 0 131324 -~~~ -~~~ -25258323 0 131320 -~~~ -~~~ -25258325 0 131312 -~~~ -~~~ -25258326 0 131296 -~~~ -~~~ -25258328 0 131264 -~~~ -~~~ -25258330 2 131200 -~~~ -~~~ -25258332 2 131072 -~~~ -~~~ -25258334 2 131584 -25258335 homeCount = 30 -25258335 waitCount = 15 -25258336 ripCount = 12 -25258357 locktype1 = 1 -25258357 locktype2 = 1 -25258358 locktype3 = 2 -25258358 goalCount = 5 -25258359 goalTotal = 5 -25258359 otherCount = 21 -~~~ -25258494 DOWN 2 -25258494 0 131584 -25258540 2 131584 -25258712 2 512 -25258902 DOWN 2 -25258902 0 512 -25258920 2 512 -25259017 DOWN 2 -25259017 0 512 -25259045 2 512 -25259135 DOWN 2 -25259135 0 512 -25259172 2 512 -25259262 DOWN 2 -25259262 0 512 -25259297 2 512 -25259389 DOWN 2 -25259389 0 512 -25259433 2 512 -25259522 DOWN 2 -25259522 0 512 -25259562 2 512 -25259655 DOWN 2 -25259655 0 512 -25259693 2 512 -25259792 DOWN 2 -25259792 0 512 -25259825 2 512 -25259938 DOWN 2 -25259938 0 512 -25259963 2 512 -25260096 DOWN 2 -25260096 0 512 -25260109 2 512 -25260255 DOWN 2 -25260255 0 512 -25260267 2 512 -25260407 DOWN 2 -25260407 0 512 -25260417 2 512 -25260562 DOWN 2 -25260562 0 512 -25260572 2 512 -25264430 DOWN 2 -25264430 0 512 -25264465 2 512 -25264520 DOWN 2 -25264520 0 512 -25268595 UP 10 -25268595 waslock = 0 -25268595 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25268618 512 16777728 -~~~ -25268768 512 512 -25268819 DOWN 10 -25268819 0 512 -25268840 UP 10 -25268840 waslock = 0 -25268839 512 512 -~~~ -~~~ -25268846 512 1536 -~~~ -~~~ -25268848 512 1024 -25268849 homeCount = 31 -25268850 waitCount = 15 -25268850 ripCount = 12 -25268851 locktype1 = 1 -25268851 locktype2 = 1 -25268852 locktype3 = 2 -25268852 goalCount = 5 -25268853 goalTotal = 5 -25268853 otherCount = 21 -~~~ -~~~ -25271996 DOWN 10 -25271996 0 1024 -~~~ -~~~ -~~~ -~~~ -25272015 homeCount = 31 -25272015 waitCount = 15 -25272016 ripCount = 12 -25272016 locktype1 = 1 -25272017 locktype2 = 1 -25272017 locktype3 = 2 -25272018 goalCount = 5 -25272018 goalTotal = 5 -25272019 otherCount = 21 -~~~ -25273511 UP 11 -25273511 1024 1024 -25275924 DOWN 11 -25275924 0 1024 -25275938 UP 11 -25275938 1024 1024 -25277719 DOWN 11 -25277719 0 1024 -25277728 UP 11 -25277728 1024 1024 -25280511 BEEP1 -25280511 BEEP2 -~~~ -~~~ -~~~ -25280536 1024 33555456 -~~~ -25280686 1024 1024 -25285951 DOWN 11 -25285951 0 1024 -~~~ -~~~ -25285973 0 0 -~~~ -~~~ -25285975 0 1 -~~~ -~~~ -25285976 0 3 -~~~ -~~~ -25285978 0 7 -~~~ -~~~ -25285980 0 15 -~~~ -~~~ -25285982 0 31 -~~~ -~~~ -25285984 0 63 -~~~ -~~~ -25285986 0 127 -~~~ -~~~ -25285987 0 255 -25285988 homeCount = 31 -25285989 waitCount = 15 -25285990 ripCount = 13 -25285990 locktype1 = 1 -25285991 locktype2 = 1 -25286011 locktype3 = 2 -25286012 goalCount = 5 -25286012 goalTotal = 5 -25286013 otherCount = 21 -~~~ -25286014 CURRENTGOAL IS [2] -~~~ -25286014 UP 11 -25286014 1024 255 -25288352 DOWN 11 -25288352 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288383 UP 11 -25288383 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288393 homeCount = 31 -25288394 waitCount = 15 -25288394 ripCount = 13 -25288395 locktype1 = 1 -25288395 locktype2 = 1 -25288396 locktype3 = 2 -25288396 goalCount = 5 -25288397 goalTotal = 5 -25288397 otherCount = 21 -~~~ -25288398 CURRENTGOAL IS [2] -~~~ -25288446 DOWN 11 -25288446 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25288484 homeCount = 31 -25288485 waitCount = 15 -25288485 ripCount = 13 -25288486 locktype1 = 1 -25288486 locktype2 = 1 -25288487 locktype3 = 2 -25288487 goalCount = 5 -25288488 goalTotal = 5 -25288488 otherCount = 21 -~~~ -25288489 CURRENTGOAL IS [2] -~~~ -25292276 UP 2 -25292276 2 255 -~~~ -~~~ -25292299 outer reward -~~~ -25292300 2 131327 -~~~ -~~~ -25292481 DOWN 2 -25292481 0 131327 -~~~ -~~~ -25292508 0 131326 -~~~ -~~~ -25292510 0 131324 -~~~ -~~~ -25292511 0 131320 -~~~ -~~~ -25292513 0 131312 -~~~ -~~~ -25292515 0 131296 -~~~ -~~~ -25292517 0 131264 -~~~ -~~~ -25292519 0 131200 -~~~ -~~~ -25292521 0 131072 -~~~ -~~~ -25292522 0 131584 -25292523 homeCount = 31 -25292524 waitCount = 15 -25292525 ripCount = 13 -25292545 locktype1 = 1 -25292546 locktype2 = 1 -25292546 locktype3 = 2 -25292547 goalCount = 6 -25292547 goalTotal = 6 -25292548 otherCount = 21 -~~~ -25292548 2 131584 -25292749 2 512 -25292894 DOWN 2 -25292894 0 512 -25292922 2 512 -25293016 DOWN 2 -25293016 0 512 -25293052 2 512 -25293153 DOWN 2 -25293153 0 512 -25293173 2 512 -25294024 DOWN 2 -25294024 0 512 -25294050 2 512 -25299590 DOWN 2 -25299590 0 512 -25303635 UP 10 -25303636 waslock = 0 -25303635 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25303667 512 16777728 -~~~ -25303817 512 512 -25307585 DOWN 10 -25307585 0 512 -~~~ -~~~ -25307608 0 1536 -~~~ -~~~ -25307610 0 1024 -25307611 homeCount = 32 -25307611 waitCount = 15 -25307612 ripCount = 13 -25307613 locktype1 = 1 -25307613 locktype2 = 1 -25307614 locktype3 = 2 -25307614 goalCount = 6 -25307615 goalTotal = 6 -25307615 otherCount = 21 -~~~ -25309251 UP 11 -25309251 1024 1024 -25311815 DOWN 11 -25311815 0 1024 -25311837 UP 11 -25311837 1024 1024 -25313752 BEEP1 -25313752 BEEP2 -~~~ -~~~ -~~~ -25313771 1024 33555456 -~~~ -25313921 1024 1024 -25318968 DOWN 11 -25318968 0 1024 -~~~ -~~~ -25318989 0 0 -~~~ -~~~ -25318991 0 1 -~~~ -~~~ -25318993 0 3 -~~~ -~~~ -25318995 0 7 -~~~ -~~~ -25318997 0 15 -~~~ -~~~ -25318998 0 31 -~~~ -~~~ -25319000 0 63 -~~~ -~~~ -25319002 0 127 -~~~ -~~~ -25319004 0 255 -25319005 homeCount = 32 -25319005 waitCount = 15 -25319006 ripCount = 14 -25319007 locktype1 = 1 -25319007 locktype2 = 1 -25319028 locktype3 = 2 -25319028 goalCount = 6 -25319029 goalTotal = 6 -25319029 otherCount = 21 -~~~ -25319031 CURRENTGOAL IS [2] -~~~ -25319045 UP 11 -25319045 1024 255 -25319211 DOWN 11 -25319211 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25319245 homeCount = 32 -25319246 waitCount = 15 -25319246 ripCount = 14 -25319247 locktype1 = 1 -25319247 locktype2 = 1 -25319248 locktype3 = 2 -25319248 goalCount = 6 -25319249 goalTotal = 6 -25319249 otherCount = 21 -~~~ -25319251 CURRENTGOAL IS [2] -~~~ -25319272 UP 11 -25319272 1024 255 -25321213 DOWN 11 -25321213 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25321245 homeCount = 32 -25321246 waitCount = 15 -25321246 ripCount = 14 -25321247 locktype1 = 1 -25321247 locktype2 = 1 -25321248 locktype3 = 2 -25321248 goalCount = 6 -25321249 goalTotal = 6 -25321249 otherCount = 21 -~~~ -25321250 CURRENTGOAL IS [2] -~~~ -25324835 UP 2 -25324835 2 255 -~~~ -~~~ -25324860 outer reward -~~~ -25324861 2 131327 -~~~ -~~~ -25325077 DOWN 2 -25325077 0 131327 -~~~ -~~~ -25325099 0 131326 -~~~ -~~~ -25325101 0 131324 -~~~ -~~~ -25325103 0 131320 -~~~ -~~~ -25325105 0 131312 -~~~ -~~~ -25325106 0 131296 -~~~ -~~~ -25325108 0 131264 -~~~ -~~~ -25325110 0 131200 -~~~ -~~~ -25325112 0 131072 -~~~ -~~~ -25325114 0 131584 -25325115 homeCount = 32 -25325115 waitCount = 15 -25325116 ripCount = 14 -25325136 locktype1 = 1 -25325137 locktype2 = 1 -25325137 locktype3 = 2 -25325138 goalCount = 7 -25325138 goalTotal = 7 -25325139 otherCount = 21 -~~~ -25325141 2 131584 -25325310 2 512 -25325492 DOWN 2 -25325492 0 512 -25325540 2 512 -25325616 DOWN 2 -25325616 0 512 -25325662 2 512 -25325755 DOWN 2 -25325754 0 512 -25325776 2 512 -25326611 DOWN 2 -25326611 0 512 -25326629 2 512 -25329406 DOWN 2 -25329406 0 512 -25329419 2 512 -25329757 DOWN 2 -25329757 0 512 -25329760 2 512 -25329762 DOWN 2 -25329762 0 512 -25329781 2 512 -25329935 DOWN 2 -25329935 0 512 -25329937 2 512 -25329945 DOWN 2 -25329945 0 512 -25329953 2 512 -25331774 DOWN 2 -25331774 0 512 -25331786 2 512 -25331865 DOWN 2 -25331865 0 512 -25335687 UP 10 -25335687 waslock = 0 -25335687 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25335716 512 16777728 -~~~ -25335866 512 512 -25339372 DOWN 10 -25339372 0 512 -~~~ -~~~ -25339390 0 1536 -~~~ -~~~ -25339392 0 1024 -25339393 homeCount = 33 -25339394 waitCount = 15 -25339394 ripCount = 14 -25339395 locktype1 = 1 -25339395 locktype2 = 1 -25339396 locktype3 = 2 -25339396 goalCount = 7 -25339397 goalTotal = 7 -25339397 otherCount = 21 -~~~ -25339425 UP 10 -25339425 waslock = 0 -25339425 512 1024 -25339438 DOWN 10 -25339438 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25339466 homeCount = 33 -25339466 waitCount = 15 -25339467 ripCount = 14 -25339467 locktype1 = 1 -25339468 locktype2 = 1 -25339468 locktype3 = 2 -25339469 goalCount = 7 -25339469 goalTotal = 7 -25339470 otherCount = 21 -~~~ -25341420 UP 11 -25341420 1024 1024 -25341496 DOWN 11 -25341496 0 1024 -25341560 UP 11 -25341560 1024 1024 -25343328 DOWN 11 -25343328 0 1024 -25343349 UP 11 -25343349 1024 1024 -25349420 BEEP1 -25349420 BEEP2 -~~~ -~~~ -~~~ -25349444 1024 33555456 -~~~ -25349594 1024 1024 -25355080 DOWN 11 -25355080 0 1024 -~~~ -~~~ -25355104 0 0 -~~~ -~~~ -25355105 0 1 -~~~ -~~~ -25355107 0 3 -~~~ -25355109 UP 11 -25355108 1024 3 -~~~ -~~~ -25355110 1024 7 -~~~ -~~~ -25355112 1024 15 -~~~ -~~~ -25355114 1024 31 -~~~ -25355115 1024 63 -~~~ -~~~ -25355116 1024 127 -~~~ -~~~ -25355118 1024 255 -25355119 homeCount = 33 -25355140 waitCount = 15 -25355141 ripCount = 15 -25355141 locktype1 = 1 -25355142 locktype2 = 1 -25355142 locktype3 = 2 -25355143 goalCount = 7 -25355143 goalTotal = 7 -25355144 otherCount = 21 -~~~ -25355145 CURRENTGOAL IS [2] -~~~ -25357469 DOWN 11 -25357469 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25357509 homeCount = 33 -25357510 waitCount = 15 -25357510 ripCount = 15 -25357511 locktype1 = 1 -25357511 locktype2 = 1 -25357512 locktype3 = 2 -25357512 goalCount = 7 -25357513 goalTotal = 7 -25357513 otherCount = 21 -~~~ -25357514 CURRENTGOAL IS [2] -~~~ -25361464 UP 2 -25361464 2 255 -~~~ -~~~ -25361487 outer reward -~~~ -25361487 2 131327 -~~~ -~~~ -25361745 DOWN 2 -25361745 0 131327 -~~~ -~~~ -25361763 0 131326 -~~~ -~~~ -25361765 0 131324 -~~~ -~~~ -25361766 0 131320 -~~~ -~~~ -25361768 0 131312 -~~~ -~~~ -25361770 0 131296 -~~~ -~~~ -25361772 0 131264 -~~~ -~~~ -25361774 0 131200 -~~~ -~~~ -25361776 0 131072 -~~~ -~~~ -25361778 0 131584 -25361779 homeCount = 33 -25361779 waitCount = 15 -25361780 ripCount = 15 -25361800 locktype1 = 1 -25361801 locktype2 = 1 -25361801 locktype3 = 2 -25361802 goalCount = 8 -25361802 goalTotal = 8 -25361803 otherCount = 21 -~~~ -25361803 2 131584 -25361937 2 512 -25362139 DOWN 2 -25362139 0 512 -25362176 2 512 -25362263 DOWN 2 -25362263 0 512 -25362291 2 512 -25362386 DOWN 2 -25362386 0 512 -25362422 2 512 -25362510 DOWN 2 -25362510 0 512 -25362553 2 512 -25362641 DOWN 2 -25362641 0 512 -25362682 2 512 -25362795 DOWN 2 -25362795 0 512 -25362813 2 512 -25362939 DOWN 2 -25362939 0 512 -25362959 2 512 -25363093 DOWN 2 -25363093 0 512 -25363099 2 512 -25363241 DOWN 2 -25363241 0 512 -25363246 2 512 -25363391 DOWN 2 -25363391 0 512 -25363399 2 512 -25366031 DOWN 2 -25366031 0 512 -25366037 2 512 -25366210 DOWN 2 -25366210 0 512 -25366218 2 512 -25368328 DOWN 2 -25368328 0 512 -25368391 2 512 -25368427 DOWN 2 -25368427 0 512 -25371877 UP 10 -25371877 waslock = 0 -25371877 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25371903 512 16777728 -~~~ -25372053 512 512 -25379887 DOWN 10 -25379887 0 512 -~~~ -~~~ -25379906 0 1536 -~~~ -~~~ -25379908 0 1024 -25379909 homeCount = 34 -25379909 waitCount = 15 -25379910 ripCount = 15 -25379910 locktype1 = 1 -25379911 locktype2 = 1 -25379911 locktype3 = 2 -25379912 goalCount = 8 -25379912 goalTotal = 8 -25379913 otherCount = 21 -~~~ -25379964 UP 10 -25379964 waslock = 0 -25379964 512 1024 -~~~ -25380013 DOWN 10 -25380013 0 1024 -~~~ -~~~ -~~~ -~~~ -25380044 homeCount = 34 -25380044 waitCount = 15 -25380045 ripCount = 15 -25380045 locktype1 = 1 -25380046 locktype2 = 1 -25380046 locktype3 = 2 -25380047 goalCount = 8 -25380047 goalTotal = 8 -25380048 otherCount = 21 -~~~ -25381643 UP 10 -25381644 waslock = 0 -25381643 512 1024 -25381658 DOWN 10 -25381658 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25381684 homeCount = 34 -25381685 waitCount = 15 -25381685 ripCount = 15 -25381686 locktype1 = 1 -25381686 locktype2 = 1 -25381687 locktype3 = 2 -25381687 goalCount = 8 -25381688 goalTotal = 8 -25381688 otherCount = 21 -~~~ -25383621 UP 11 -25383621 1024 1024 -25388121 BEEP1 -25388121 BEEP2 -~~~ -~~~ -~~~ -25388149 1024 33555456 -~~~ -25388299 1024 1024 -25394043 DOWN 11 -25394043 0 1024 -~~~ -~~~ -25394066 0 0 -~~~ -~~~ -25394068 0 1 -~~~ -~~~ -25394070 0 3 -~~~ -~~~ -25394072 0 7 -~~~ -~~~ -25394074 UP 11 -25394073 1024 15 -~~~ -~~~ -25394076 1024 31 -~~~ -~~~ -25394077 1024 63 -~~~ -~~~ -25394079 1024 127 -~~~ -~~~ -25394081 1024 255 -25394082 homeCount = 34 -25394082 waitCount = 15 -25394083 ripCount = 16 -25394104 locktype1 = 1 -25394104 locktype2 = 1 -25394105 locktype3 = 2 -25394105 goalCount = 8 -25394106 goalTotal = 8 -25394106 otherCount = 21 -~~~ -25394108 CURRENTGOAL IS [2] -~~~ -25394133 DOWN 11 -25394133 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25394169 homeCount = 34 -25394170 waitCount = 15 -25394170 ripCount = 16 -25394171 locktype1 = 1 -25394171 locktype2 = 1 -25394172 locktype3 = 2 -25394172 goalCount = 8 -25394173 goalTotal = 8 -25394173 otherCount = 21 -~~~ -25394174 CURRENTGOAL IS [2] -~~~ -25394253 UP 11 -25394253 1024 255 -25394289 DOWN 11 -25394289 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25394325 homeCount = 34 -25394325 waitCount = 15 -25394326 ripCount = 16 -25394326 locktype1 = 1 -25394327 locktype2 = 1 -25394327 locktype3 = 2 -25394328 goalCount = 8 -25394328 goalTotal = 8 -25394329 otherCount = 21 -~~~ -25394330 CURRENTGOAL IS [2] -~~~ -25394940 UP 11 -25394940 1024 255 -25394971 DOWN 11 -25394971 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25395007 UP 11 -25395007 1024 255 -25395008 homeCount = 34 -25395009 waitCount = 15 -25395009 ripCount = 16 -25395010 locktype1 = 1 -25395010 locktype2 = 1 -25395011 locktype3 = 2 -25395011 goalCount = 8 -25395012 goalTotal = 8 -25395012 otherCount = 21 -~~~ -25395034 CURRENTGOAL IS [2] -~~~ -25398455 DOWN 11 -25398455 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25398496 homeCount = 34 -25398496 waitCount = 15 -25398497 ripCount = 16 -25398497 locktype1 = 1 -25398498 locktype2 = 1 -25398498 locktype3 = 2 -25398499 goalCount = 8 -25398499 goalTotal = 8 -25398500 otherCount = 21 -~~~ -25398501 CURRENTGOAL IS [2] -~~~ -25411077 UP 8 -25411077 128 255 -~~~ -~~~ -25411117 DOWN 8 -25411117 0 255 -~~~ -~~~ -25411143 0 254 -~~~ -~~~ -25411145 0 252 -~~~ -~~~ -25411147 0 248 -~~~ -~~~ -25411149 0 240 -~~~ -~~~ -25411151 0 224 -~~~ -~~~ -25411152 0 192 -~~~ -~~~ -25411154 0 128 -~~~ -~~~ -25411156 0 0 -~~~ -~~~ -25411158 0 512 -25411159 homeCount = 34 -25411160 waitCount = 15 -25411160 ripCount = 16 -25411161 locktype1 = 1 -25411161 locktype2 = 1 -25411182 locktype3 = 2 -25411182 goalCount = 8 -25411183 goalTotal = 8 -25411183 otherCount = 22 -~~~ -25411186 128 512 -25411487 DOWN 8 -25411487 0 512 -25415389 UP 10 -25415390 waslock = 0 -25415389 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25415415 512 16777728 -~~~ -25415564 DOWN 10 -25415564 0 16777728 -25415565 0 512 -~~~ -~~~ -25415591 0 1536 -~~~ -~~~ -25415593 0 1024 -25415594 homeCount = 35 -25415595 waitCount = 15 -25415595 ripCount = 16 -25415596 locktype1 = 1 -25415596 locktype2 = 1 -25415597 locktype3 = 2 -25415597 goalCount = 8 -25415598 goalTotal = 8 -25415598 otherCount = 22 -~~~ -25415732 UP 10 -25415732 waslock = 0 -25415732 512 1024 -~~~ -25421067 DOWN 10 -25421067 0 1024 -~~~ -~~~ -~~~ -~~~ -25421092 homeCount = 35 -25421093 waitCount = 15 -25421093 ripCount = 16 -25421094 locktype1 = 1 -25421094 locktype2 = 1 -25421095 locktype3 = 2 -25421095 goalCount = 8 -25421096 goalTotal = 8 -25421096 otherCount = 22 -~~~ -25421137 UP 10 -25421137 waslock = 0 -25421137 512 1024 -25421143 DOWN 10 -25421143 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -25421169 homeCount = 35 -25421169 waitCount = 15 -25421170 ripCount = 16 -25421170 locktype1 = 1 -25421171 locktype2 = 1 -25421171 locktype3 = 2 -25421172 goalCount = 8 -25421172 goalTotal = 8 -25421173 otherCount = 22 -~~~ -25424199 UP 11 -25424199 1024 1024 -25431199 BEEP1 -25431199 BEEP2 -~~~ -~~~ -~~~ -25431220 1024 33555456 -~~~ -25431370 1024 1024 -25436615 DOWN 11 -25436615 0 1024 -~~~ -~~~ -25436639 0 0 -~~~ -~~~ -25436641 0 1 -~~~ -~~~ -25436643 0 3 -~~~ -~~~ -25436645 0 7 -~~~ -~~~ -25436646 0 15 -~~~ -25436648 UP 11 -25436648 1024 15 -~~~ -~~~ -25436650 1024 31 -~~~ -~~~ -25436651 1024 63 -~~~ -~~~ -25436653 1024 127 -~~~ -25436654 1024 255 -25436655 homeCount = 35 -25436656 waitCount = 15 -25436677 ripCount = 17 -25436677 locktype1 = 1 -25436678 locktype2 = 1 -25436678 locktype3 = 2 -25436679 goalCount = 8 -25436679 goalTotal = 8 -25436680 otherCount = 22 -~~~ -25436681 CURRENTGOAL IS [2] -~~~ -25436836 DOWN 11 -25436836 0 255 -25436857 UP 11 -25436857 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25436874 homeCount = 35 -25436875 waitCount = 15 -25436875 ripCount = 17 -25436876 locktype1 = 1 -25436876 locktype2 = 1 -25436877 locktype3 = 2 -25436877 goalCount = 8 -25436878 goalTotal = 8 -25436878 otherCount = 22 -~~~ -25436880 CURRENTGOAL IS [2] -~~~ -25436901 DOWN 11 -25436901 0 255 -25436910 UP 11 -25436910 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25436946 homeCount = 35 -25436947 waitCount = 15 -25436947 ripCount = 17 -25436948 locktype1 = 1 -25436948 locktype2 = 1 -25436949 locktype3 = 2 -25436949 goalCount = 8 -25436950 goalTotal = 8 -25436950 otherCount = 22 -~~~ -25436951 CURRENTGOAL IS [2] -~~~ -25438811 DOWN 11 -25438811 0 255 -25438829 UP 11 -25438829 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25438864 homeCount = 35 -25438864 waitCount = 15 -25438865 ripCount = 17 -25438866 locktype1 = 1 -25438866 locktype2 = 1 -25438867 locktype3 = 2 -25438867 goalCount = 8 -25438868 goalTotal = 8 -25438868 otherCount = 22 -~~~ -25438869 CURRENTGOAL IS [2] -~~~ -25438892 DOWN 11 -25438892 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25438927 homeCount = 35 -25438927 waitCount = 15 -25438928 ripCount = 17 -25438928 locktype1 = 1 -25438929 locktype2 = 1 -25438929 locktype3 = 2 -25438930 goalCount = 8 -25438930 goalTotal = 8 -25438931 otherCount = 22 -~~~ -25438932 CURRENTGOAL IS [2] -~~~ -25443046 UP 2 -25443046 2 255 -~~~ -~~~ -25443074 outer reward -~~~ -25443075 2 131327 -~~~ -~~~ -25443261 DOWN 2 -25443261 0 131327 -~~~ -~~~ -25443281 0 131326 -~~~ -~~~ -25443283 0 131324 -~~~ -~~~ -25443285 0 131320 -~~~ -~~~ -25443287 0 131312 -~~~ -~~~ -25443288 0 131296 -~~~ -~~~ -25443290 0 131264 -~~~ -~~~ -25443292 0 131200 -~~~ -~~~ -25443294 0 131072 -~~~ -~~~ -25443296 0 131584 -25443297 homeCount = 35 -25443297 waitCount = 15 -25443298 ripCount = 17 -25443319 locktype1 = 1 -25443319 locktype2 = 1 -25443320 locktype3 = 2 -25443320 goalCount = 9 -25443321 goalTotal = 9 -25443321 otherCount = 22 -~~~ -25443322 2 131584 -25443524 2 512 -25443802 DOWN 2 -25443802 0 512 -25443828 2 512 -25443922 DOWN 2 -25443922 0 512 -25443955 2 512 -25444050 DOWN 2 -25444050 0 512 -25444072 2 512 -25444174 DOWN 2 -25444174 0 512 -25444198 2 512 -25444307 DOWN 2 -25444307 0 512 -25444329 2 512 -25444444 DOWN 2 -25444444 0 512 -25444465 2 512 -25444596 DOWN 2 -25444596 0 512 -25444605 2 512 -25445036 DOWN 2 -25445036 0 512 -25445047 2 512 -25448195 DOWN 2 -25448195 0 512 -25448235 2 512 -25450273 DOWN 2 -25450273 0 512 -25450339 2 512 -25450371 DOWN 2 -25450371 0 512 -25454316 UP 10 -25454317 waslock = 0 -25454316 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25454349 512 16777728 -~~~ -25454499 512 512 -25457148 DOWN 10 -25457148 0 512 -~~~ -~~~ -25457174 0 2560 -~~~ -~~~ -25457176 0 2048 -25457177 homeCount = 36 -25457178 waitCount = 15 -25457178 ripCount = 17 -25457179 locktype1 = 1 -25457179 locktype2 = 1 -25457180 locktype3 = 2 -25457180 goalCount = 9 -25457181 goalTotal = 9 -25457181 otherCount = 22 -~~~ -25459795 UP 12 -25459795 2048 2048 -25463795 CLICK1 -25463795 CLICK2 -~~~ -~~~ -~~~ -25463815 2048 67110912 -~~~ -25463965 2048 2048 -25469814 DOWN 12 -25469814 0 2048 -~~~ -~~~ -25469833 0 0 -~~~ -~~~ -25469835 0 1 -~~~ -~~~ -25469837 0 3 -~~~ -~~~ -25469838 0 7 -~~~ -~~~ -25469840 0 15 -~~~ -~~~ -25469842 0 31 -~~~ -~~~ -25469844 0 63 -~~~ -~~~ -25469846 0 127 -~~~ -~~~ -25469848 0 255 -25469849 homeCount = 36 -25469849 waitCount = 16 -25469850 ripCount = 17 -25469850 locktype1 = 1 -25469851 locktype2 = 1 -25469872 locktype3 = 2 -25469872 goalCount = 9 -25469873 goalTotal = 9 -25469873 otherCount = 22 -~~~ -25469874 CURRENTGOAL IS [2] -~~~ -25469921 UP 12 -25469921 2048 255 -25469955 DOWN 12 -25469955 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25469988 homeCount = 36 -25469989 waitCount = 16 -25469990 ripCount = 17 -25469990 locktype1 = 1 -25469991 locktype2 = 1 -25469991 locktype3 = 2 -25469992 goalCount = 9 -25469992 goalTotal = 9 -25469993 otherCount = 22 -~~~ -25469994 CURRENTGOAL IS [2] -~~~ -25470055 UP 12 -25470055 2048 255 -25471638 DOWN 12 -25471638 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25471678 homeCount = 36 -25471679 waitCount = 16 -25471680 ripCount = 17 -25471680 locktype1 = 1 -25471681 locktype2 = 1 -25471681 locktype3 = 2 -25471682 goalCount = 9 -25471682 goalTotal = 9 -25471683 otherCount = 22 -~~~ -25471684 CURRENTGOAL IS [2] -~~~ -25474558 UP 2 -25474558 2 255 -~~~ -~~~ -25474587 outer reward -~~~ -25474588 2 131327 -~~~ -~~~ -25474593 outerreps = 7 -~~~ -~~~ -25474839 DOWN 2 -25474839 0 131327 -~~~ -~~~ -25474864 0 131326 -~~~ -~~~ -25474866 0 131324 -~~~ -~~~ -25474868 0 131320 -~~~ -~~~ -25474869 0 131312 -~~~ -~~~ -25474871 0 131296 -~~~ -~~~ -25474873 0 131264 -~~~ -~~~ -25474875 0 131200 -~~~ -~~~ -25474877 0 131072 -~~~ -~~~ -25474879 0 131584 -25474880 homeCount = 36 -25474880 waitCount = 16 -25474881 ripCount = 17 -25474901 locktype1 = 1 -25474902 locktype2 = 1 -25474902 locktype3 = 2 -25474903 goalCount = 0 -25474903 goalTotal = 10 -25474904 otherCount = 22 -~~~ -25474904 2 131584 -25475037 2 512 -25475141 DOWN 2 -25475141 0 512 -25475149 2 512 -25475254 DOWN 2 -25475254 0 512 -25475276 2 512 -25475378 DOWN 2 -25475378 0 512 -25475399 2 512 -25475501 DOWN 2 -25475501 0 512 -25475524 2 512 -25475623 DOWN 2 -25475623 0 512 -25475660 2 512 -25480617 DOWN 2 -25480617 0 512 -25480646 2 512 -25480707 DOWN 2 -25480707 0 512 -25484920 UP 10 -25484920 waslock = 0 -25484920 512 512 -~~~ -~~~ -~~~ -25484949 DOWN 10 -25484949 0 512 -~~~ -~~~ -25484951 0 16777728 -~~~ -~~~ -~~~ -25484971 0 16779776 -~~~ -~~~ -25484973 0 16779264 -25484974 homeCount = 37 -25484974 waitCount = 16 -25484975 ripCount = 17 -25484975 locktype1 = 1 -25484976 locktype2 = 1 -25484976 locktype3 = 2 -25484977 goalCount = 0 -25484977 goalTotal = 10 -25484978 otherCount = 22 -~~~ -25484999 UP 10 -25484999 waslock = 0 -25484999 512 16779264 -~~~ -25485101 DOWN 10 -25485101 0 16779264 -25485102 0 2048 -~~~ -~~~ -~~~ -25485124 UP 10 -25485125 waslock = 0 -25485124 512 2048 -~~~ -25485126 homeCount = 37 -25485127 waitCount = 16 -25485127 ripCount = 17 -25485128 locktype1 = 1 -25485128 locktype2 = 1 -25485129 locktype3 = 2 -25485129 goalCount = 0 -25485130 goalTotal = 10 -25485151 otherCount = 22 -~~~ -~~~ -25490231 DOWN 10 -25490231 0 2048 -~~~ -~~~ -~~~ -~~~ -25490257 homeCount = 37 -25490257 waitCount = 16 -25490258 ripCount = 17 -25490258 locktype1 = 1 -25490259 locktype2 = 1 -25490259 locktype3 = 2 -25490260 goalCount = 0 -25490260 goalTotal = 10 -25490261 otherCount = 22 -~~~ -25492166 UP 12 -25492166 2048 2048 -25496488 DOWN 12 -25496488 0 2048 -25496519 UP 12 -25496519 2048 2048 -25498167 CLICK1 -25498167 CLICK2 -~~~ -~~~ -~~~ -25498195 2048 67110912 -~~~ -25498345 2048 2048 -25504762 DOWN 12 -25504762 0 2048 -~~~ -~~~ -25504784 0 0 -~~~ -~~~ -25504786 0 1 -~~~ -~~~ -25504788 0 3 -~~~ -~~~ -25504790 0 7 -~~~ -~~~ -25504791 0 15 -~~~ -~~~ -25504793 0 31 -~~~ -~~~ -25504795 0 63 -~~~ -~~~ -25504797 0 127 -~~~ -~~~ -25504799 0 255 -25504800 homeCount = 37 -25504800 waitCount = 17 -25504801 ripCount = 17 -25504801 locktype1 = 1 -25504802 locktype2 = 1 -25504823 locktype3 = 2 -25504823 goalCount = 0 -25504824 goalTotal = 10 -25504824 otherCount = 22 -~~~ -25504825 CURRENTGOAL IS [3] -~~~ -25504829 UP 12 -25504829 2048 255 -25504904 DOWN 12 -25504904 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25504941 homeCount = 37 -25504941 waitCount = 17 -25504942 ripCount = 17 -25504942 locktype1 = 1 -25504943 locktype2 = 1 -25504943 locktype3 = 2 -25504944 goalCount = 0 -25504944 goalTotal = 10 -25504945 otherCount = 22 -~~~ -25504946 CURRENTGOAL IS [3] -~~~ -25504979 UP 12 -25504979 2048 255 -25505014 DOWN 12 -25505014 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25505051 homeCount = 37 -25505051 waitCount = 17 -25505052 ripCount = 17 -25505052 locktype1 = 1 -25505053 locktype2 = 1 -25505053 locktype3 = 2 -25505054 goalCount = 0 -25505054 goalTotal = 10 -25505055 otherCount = 22 -~~~ -25505056 CURRENTGOAL IS [3] -~~~ -25505126 UP 12 -25505126 2048 255 -25505144 DOWN 12 -25505144 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25505183 homeCount = 37 -25505184 waitCount = 17 -25505184 ripCount = 17 -25505185 locktype1 = 1 -25505186 locktype2 = 1 -25505186 locktype3 = 2 -25505187 goalCount = 0 -25505187 goalTotal = 10 -25505188 otherCount = 22 -~~~ -25505189 CURRENTGOAL IS [3] -~~~ -25505306 UP 12 -25505306 2048 255 -25506646 DOWN 12 -25506646 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25506682 homeCount = 37 -25506683 waitCount = 17 -25506683 ripCount = 17 -25506684 locktype1 = 1 -25506684 locktype2 = 1 -25506685 locktype3 = 2 -25506685 goalCount = 0 -25506686 goalTotal = 10 -25506686 otherCount = 22 -~~~ -25506687 CURRENTGOAL IS [3] -~~~ -25509308 UP 2 -25509308 2 255 -25509319 DOWN 2 -25509319 0 255 -~~~ -~~~ -~~~ -~~~ -25509347 0 254 -~~~ -~~~ -25509349 0 252 -~~~ -~~~ -25509351 0 248 -~~~ -~~~ -25509353 0 240 -~~~ -~~~ -25509354 0 224 -~~~ -~~~ -25509356 0 192 -~~~ -~~~ -25509358 0 128 -~~~ -~~~ -25509360 0 0 -~~~ -~~~ -25509362 0 512 -25509363 homeCount = 37 -25509363 waitCount = 17 -25509364 ripCount = 17 -25509364 locktype1 = 1 -25509386 locktype2 = 1 -25509386 locktype3 = 2 -25509387 goalCount = 0 -25509387 goalTotal = 10 -25509388 otherCount = 23 -~~~ -25509398 2 512 -25509552 DOWN 2 -25509552 0 512 -25509607 2 512 -25510174 DOWN 2 -25510174 0 512 -25513834 UP 10 -25513835 waslock = 0 -25513834 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25513865 512 16777728 -~~~ -25514015 512 512 -25517951 DOWN 10 -25517951 0 512 -~~~ -~~~ -25517967 0 1536 -~~~ -~~~ -25517969 0 1024 -25517970 homeCount = 38 -25517971 waitCount = 17 -25517971 ripCount = 17 -25517972 locktype1 = 1 -25517972 locktype2 = 1 -25517973 locktype3 = 2 -25517973 goalCount = 0 -25517974 goalTotal = 10 -25517974 otherCount = 23 -~~~ -25520064 UP 11 -25520064 1024 1024 -25521046 DOWN 11 -25521046 0 1024 -25521134 UP 11 -25521134 1024 1024 -25521986 DOWN 11 -25521986 0 1024 -25522013 UP 11 -25522013 1024 1024 -25527064 BEEP1 -25527064 BEEP2 -~~~ -~~~ -~~~ -25527092 1024 33555456 -~~~ -25527242 1024 1024 -25534001 DOWN 11 -25534001 0 1024 -~~~ -~~~ -25534020 0 0 -~~~ -~~~ -25534021 0 1 -~~~ -~~~ -25534023 0 3 -~~~ -~~~ -25534025 0 7 -~~~ -~~~ -25534027 0 15 -~~~ -~~~ -25534029 0 31 -~~~ -~~~ -25534030 0 63 -~~~ -~~~ -25534032 0 127 -~~~ -~~~ -25534034 0 255 -25534035 homeCount = 38 -25534036 waitCount = 17 -25534036 ripCount = 18 -25534037 locktype1 = 1 -25534037 locktype2 = 1 -25534058 locktype3 = 2 -25534059 goalCount = 0 -25534059 goalTotal = 10 -25534060 otherCount = 23 -~~~ -25534061 CURRENTGOAL IS [3] -~~~ -25536586 UP 6 -25536586 32 255 -~~~ -~~~ -25537282 DOWN 6 -25537282 0 255 -~~~ -~~~ -25537299 0 254 -~~~ -~~~ -25537301 0 252 -~~~ -~~~ -25537303 0 248 -~~~ -~~~ -25537305 0 240 -~~~ -~~~ -25537307 0 224 -~~~ -~~~ -25537308 0 192 -~~~ -~~~ -25537310 0 128 -~~~ -~~~ -25537312 0 0 -~~~ -~~~ -25537314 0 512 -25537315 homeCount = 38 -25537316 waitCount = 17 -25537316 ripCount = 18 -25537317 locktype1 = 1 -25537338 locktype2 = 1 -25537338 locktype3 = 2 -25537339 goalCount = 0 -25537339 goalTotal = 10 -25537340 otherCount = 24 -~~~ -25542032 UP 10 -25542033 waslock = 0 -25542032 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25542057 512 16777728 -~~~ -25542207 512 512 -25542256 DOWN 10 -25542256 0 512 -25542264 UP 10 -25542265 waslock = 0 -25542264 512 512 -~~~ -~~~ -25542284 512 1536 -~~~ -~~~ -25542286 512 1024 -25542287 homeCount = 39 -25542287 waitCount = 17 -25542288 ripCount = 18 -25542288 locktype1 = 1 -25542289 locktype2 = 1 -25542289 locktype3 = 2 -25542290 goalCount = 0 -25542290 goalTotal = 10 -25542291 otherCount = 24 -~~~ -~~~ -25545602 DOWN 10 -25545602 0 1024 -~~~ -~~~ -~~~ -~~~ -25545626 homeCount = 39 -25545626 waitCount = 17 -25545627 ripCount = 18 -25545627 locktype1 = 1 -25545628 locktype2 = 1 -25545628 locktype3 = 2 -25545629 goalCount = 0 -25545629 goalTotal = 10 -25545630 otherCount = 24 -~~~ -25545632 UP 10 -25545632 waslock = 0 -25545632 512 1024 -~~~ -25545696 DOWN 10 -25545696 0 1024 -~~~ -~~~ -~~~ -~~~ -25545720 homeCount = 39 -25545721 waitCount = 17 -25545721 ripCount = 18 -25545722 locktype1 = 1 -25545722 locktype2 = 1 -25545723 locktype3 = 2 -25545723 goalCount = 0 -25545724 goalTotal = 10 -25545724 otherCount = 24 -~~~ -25549079 UP 11 -25549079 1024 1024 -25549392 DOWN 11 -25549392 0 1024 -25549592 LOCKOUT 3 -~~~ -25549617 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -25549620 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25549678 UP 11 -25549678 1024 0 -25549870 DOWN 11 -25549870 0 0 -25557733 UP 1 -25557733 1 0 -25558031 DOWN 1 -25558031 0 0 -25560934 1 0 -25560938 DOWN 1 -25560938 0 0 -25569322 512 0 -25569441 0 0 -25571157 512 0 -25571190 0 0 -25574617 LOCKEND -~~~ -~~~ -~~~ -25574638 0 512 -25577445 UP 3 -25577445 4 512 -25577923 DOWN 3 -25577923 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25577963 homeCount = 39 -25577963 waitCount = 17 -25577964 ripCount = 18 -25577964 locktype1 = 1 -25577965 locktype2 = 1 -25577965 locktype3 = 3 -25577966 goalCount = 0 -25577966 goalTotal = 10 -25577967 otherCount = 24 -~~~ -25578067 4 512 -25578092 DOWN 3 -25578092 0 512 -25585413 UP 10 -25585413 waslock = 0 -25585413 512 512 -~~~ -~~~ -25585438 DOWN 10 -25585438 0 512 -~~~ -~~~ -~~~ -25585443 0 16777728 -~~~ -~~~ -~~~ -25585465 0 16778752 -~~~ -~~~ -25585467 0 16778240 -25585468 homeCount = 40 -25585468 waitCount = 17 -25585469 ripCount = 18 -25585469 locktype1 = 1 -25585470 locktype2 = 1 -25585470 locktype3 = 3 -25585471 goalCount = 0 -25585471 goalTotal = 10 -25585472 otherCount = 24 -~~~ -25585592 0 1024 -25585685 UP 10 -25585686 waslock = 0 -25585685 512 1024 -~~~ -25590182 DOWN 10 -25590182 0 1024 -~~~ -~~~ -~~~ -~~~ -25590209 homeCount = 40 -25590210 waitCount = 17 -25590210 ripCount = 18 -25590211 locktype1 = 1 -25590211 locktype2 = 1 -25590212 locktype3 = 3 -25590212 goalCount = 0 -25590213 goalTotal = 10 -25590213 otherCount = 24 -~~~ -25609245 UP 8 -25609245 128 1024 -25609250 DOWN 8 -25609250 0 1024 -~~~ -25609266 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -25609270 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25615729 128 0 -25617512 DOWN 8 -25617512 0 0 -25618844 128 0 -25619296 DOWN 8 -25619296 0 0 -25625955 512 0 -25626331 0 0 -25626436 512 0 -25626571 0 0 -25626586 512 0 -25626882 0 0 -25627022 512 0 -25627063 0 0 -25627287 512 0 -25627295 0 0 -25627379 512 0 -25627437 0 0 -25630940 512 0 -25631248 0 0 -25634266 LOCKEND -~~~ -~~~ -~~~ -25634286 0 512 -25659806 UP 10 -25659806 waslock = 0 -25659806 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25659833 512 16777728 -~~~ -25659979 DOWN 10 -25659979 0 16777728 -25659983 0 512 -~~~ -~~~ -25660007 0 2560 -~~~ -~~~ -25660009 0 2048 -25660010 homeCount = 41 -25660010 waitCount = 17 -25660011 ripCount = 18 -25660011 locktype1 = 1 -25660012 locktype2 = 2 -25660012 locktype3 = 3 -25660013 goalCount = 0 -25660013 goalTotal = 10 -25660014 otherCount = 24 -~~~ -25660095 UP 10 -25660096 waslock = 0 -25660095 512 2048 -~~~ -25660160 DOWN 10 -25660160 0 2048 -~~~ -~~~ -~~~ -~~~ -25660189 homeCount = 41 -25660190 waitCount = 17 -25660190 ripCount = 18 -25660191 locktype1 = 1 -25660191 locktype2 = 2 -25660192 locktype3 = 3 -25660192 goalCount = 0 -25660193 goalTotal = 10 -25660193 otherCount = 24 -~~~ -25660261 UP 10 -25660261 waslock = 0 -25660261 512 2048 -~~~ -25660934 DOWN 10 -25660934 0 2048 -25660947 UP 10 -25660947 waslock = 0 -25660947 512 2048 -~~~ -~~~ -~~~ -~~~ -25660969 homeCount = 41 -25660970 waitCount = 17 -25660970 ripCount = 18 -25660971 locktype1 = 1 -25660971 locktype2 = 2 -25660972 locktype3 = 3 -25660972 goalCount = 0 -25660973 goalTotal = 10 -25660973 otherCount = 24 -~~~ -~~~ -25666236 DOWN 10 -25666236 0 2048 -~~~ -~~~ -~~~ -~~~ -25666259 homeCount = 41 -25666259 waitCount = 17 -25666260 ripCount = 18 -25666260 locktype1 = 1 -25666261 locktype2 = 2 -25666261 locktype3 = 3 -25666262 goalCount = 0 -25666262 goalTotal = 10 -25666263 otherCount = 24 -~~~ -25666276 UP 10 -25666277 waslock = 0 -25666276 512 2048 -~~~ -25666339 DOWN 10 -25666339 0 2048 -~~~ -~~~ -~~~ -~~~ -25666369 homeCount = 41 -25666370 waitCount = 17 -25666370 ripCount = 18 -25666371 locktype1 = 1 -25666371 locktype2 = 2 -25666372 locktype3 = 3 -25666372 goalCount = 0 -25666373 goalTotal = 10 -25666373 otherCount = 24 -~~~ -25685376 UP 12 -25685376 2048 2048 -25686651 DOWN 12 -25686651 0 2048 -25686705 UP 12 -25686705 2048 2048 -25686732 DOWN 12 -25686732 0 2048 -25686786 UP 12 -25686786 2048 2048 -25688376 CLICK1 -25688376 CLICK2 -~~~ -~~~ -~~~ -25688399 2048 67110912 -~~~ -25688549 2048 2048 -25694671 DOWN 12 -25694671 0 2048 -~~~ -~~~ -25694697 0 0 -~~~ -~~~ -25694699 0 1 -~~~ -~~~ -25694701 0 3 -~~~ -~~~ -25694703 0 7 -~~~ -~~~ -25694705 0 15 -~~~ -~~~ -25694706 0 31 -~~~ -~~~ -25694708 0 63 -~~~ -~~~ -25694710 0 127 -~~~ -~~~ -25694712 0 255 -25694713 homeCount = 41 -25694713 waitCount = 18 -25694714 ripCount = 18 -25694714 locktype1 = 1 -25694715 locktype2 = 2 -25694736 locktype3 = 3 -25694736 goalCount = 0 -25694737 goalTotal = 10 -25694737 otherCount = 24 -~~~ -25694738 CURRENTGOAL IS [3] -~~~ -25698435 UP 2 -25698435 2 255 -~~~ -~~~ -25698854 DOWN 2 -25698854 0 255 -~~~ -~~~ -25698879 0 254 -~~~ -~~~ -25698881 0 252 -~~~ -~~~ -25698882 0 248 -~~~ -~~~ -25698884 0 240 -~~~ -~~~ -25698886 0 224 -~~~ -~~~ -25698888 0 192 -~~~ -~~~ -25698890 0 128 -~~~ -~~~ -25698891 0 0 -~~~ -~~~ -25698893 0 512 -25698894 homeCount = 41 -25698895 waitCount = 18 -25698895 ripCount = 18 -25698896 locktype1 = 1 -25698917 locktype2 = 2 -25698918 locktype3 = 3 -25698918 goalCount = 0 -25698919 goalTotal = 10 -25698919 otherCount = 25 -~~~ -25698948 2 512 -25699154 DOWN 2 -25699154 0 512 -25703394 UP 10 -25703394 waslock = 0 -25703394 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25703424 512 16777728 -~~~ -25703574 512 512 -25708617 DOWN 10 -25708617 0 512 -~~~ -~~~ -25708639 0 2560 -~~~ -~~~ -25708641 0 2048 -25708642 homeCount = 42 -25708642 waitCount = 18 -25708643 ripCount = 18 -25708643 locktype1 = 1 -25708644 locktype2 = 2 -25708644 locktype3 = 3 -25708645 goalCount = 0 -25708645 goalTotal = 10 -25708646 otherCount = 25 -~~~ -25708690 UP 10 -25708690 waslock = 0 -25708690 512 2048 -25708696 DOWN 10 -25708696 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -25708728 homeCount = 42 -25708728 waitCount = 18 -25708729 ripCount = 18 -25708729 locktype1 = 1 -25708730 locktype2 = 2 -25708730 locktype3 = 3 -25708731 goalCount = 0 -25708731 goalTotal = 10 -25708732 otherCount = 25 -~~~ -25711186 UP 12 -25711186 2048 2048 -25712394 DOWN 12 -25712394 0 2048 -25712398 UP 12 -25712398 2048 2048 -25713214 DOWN 12 -25713214 0 2048 -25713244 UP 12 -25713244 2048 2048 -25715186 CLICK1 -25715186 CLICK2 -~~~ -~~~ -~~~ -25715209 2048 67110912 -~~~ -25715359 2048 2048 -25721807 DOWN 12 -25721807 0 2048 -~~~ -~~~ -25721829 0 0 -~~~ -~~~ -25721830 0 1 -~~~ -~~~ -25721832 0 3 -~~~ -~~~ -25721834 0 7 -~~~ -~~~ -25721836 0 15 -~~~ -~~~ -25721838 0 31 -~~~ -~~~ -25721840 0 63 -~~~ -~~~ -25721841 0 127 -~~~ -~~~ -25721843 0 255 -25721844 homeCount = 42 -25721845 waitCount = 19 -25721845 ripCount = 18 -25721846 locktype1 = 1 -25721846 locktype2 = 2 -25721867 locktype3 = 3 -25721868 goalCount = 0 -25721868 goalTotal = 10 -25721869 otherCount = 25 -~~~ -25721870 CURRENTGOAL IS [3] -~~~ -25726763 UP 3 -25726762 4 255 -~~~ -~~~ -25726783 outer reward -~~~ -25726783 4 262399 -~~~ -~~~ -25727233 4 255 -25734068 DOWN 3 -25734068 0 255 -~~~ -~~~ -25734091 0 254 -~~~ -~~~ -25734093 0 252 -~~~ -~~~ -25734094 0 248 -~~~ -~~~ -25734096 0 240 -~~~ -~~~ -25734098 0 224 -~~~ -~~~ -25734100 0 192 -~~~ -~~~ -25734102 0 128 -~~~ -~~~ -25734104 0 0 -~~~ -~~~ -25734105 0 512 -25734106 homeCount = 42 -25734107 waitCount = 19 -25734107 ripCount = 18 -25734108 locktype1 = 1 -25734108 locktype2 = 2 -25734129 locktype3 = 3 -25734130 goalCount = 1 -25734130 goalTotal = 11 -25734131 otherCount = 25 -~~~ -25738531 UP 10 -25738531 waslock = 0 -25738531 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25738557 512 16777728 -~~~ -25738707 512 512 -25738767 DOWN 10 -25738767 0 512 -25738784 UP 10 -25738784 waslock = 0 -25738784 512 512 -~~~ -~~~ -25738803 512 1536 -~~~ -~~~ -25738805 512 1024 -25738806 homeCount = 43 -25738806 waitCount = 19 -25738807 ripCount = 18 -25738807 locktype1 = 1 -25738808 locktype2 = 2 -25738808 locktype3 = 3 -25738809 goalCount = 1 -25738809 goalTotal = 11 -25738810 otherCount = 25 -~~~ -~~~ -25742304 DOWN 10 -25742304 0 1024 -~~~ -~~~ -~~~ -~~~ -25742326 homeCount = 43 -25742327 waitCount = 19 -25742327 ripCount = 18 -25742328 locktype1 = 1 -25742328 locktype2 = 2 -25742329 locktype3 = 3 -25742329 goalCount = 1 -25742330 goalTotal = 11 -25742330 otherCount = 25 -~~~ -25744264 UP 11 -25744264 1024 1024 -25746728 DOWN 11 -25746728 0 1024 -25746745 UP 11 -25746745 1024 1024 -25748072 DOWN 11 -25748072 0 1024 -25748099 UP 11 -25748099 1024 1024 -25748764 BEEP1 -25748764 BEEP2 -~~~ -~~~ -~~~ -25748784 1024 33555456 -~~~ -25748934 1024 1024 -25755625 DOWN 11 -25755625 0 1024 -~~~ -~~~ -25755651 0 0 -~~~ -~~~ -25755653 0 1 -~~~ -25755654 UP 11 -25755654 1024 1 -~~~ -~~~ -25755656 1024 3 -~~~ -~~~ -25755657 1024 7 -~~~ -25755658 1024 15 -~~~ -~~~ -25755660 1024 31 -~~~ -~~~ -25755662 1024 63 -~~~ -~~~ -25755663 1024 127 -~~~ -~~~ -25755665 1024 255 -25755666 homeCount = 43 -25755688 waitCount = 19 -25755688 ripCount = 19 -25755689 locktype1 = 1 -25755689 locktype2 = 2 -25755690 locktype3 = 3 -25755690 goalCount = 1 -25755691 goalTotal = 11 -25755691 otherCount = 25 -~~~ -25755692 CURRENTGOAL IS [3] -~~~ -25755708 DOWN 11 -25755708 0 255 -25755722 UP 11 -25755722 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25755751 homeCount = 43 -25755751 waitCount = 19 -25755752 ripCount = 19 -25755753 locktype1 = 1 -25755753 locktype2 = 2 -25755754 locktype3 = 3 -25755754 goalCount = 1 -25755755 goalTotal = 11 -25755755 otherCount = 25 -~~~ -25755756 CURRENTGOAL IS [3] -~~~ -25758703 DOWN 11 -25758703 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25758737 homeCount = 43 -25758737 waitCount = 19 -25758738 ripCount = 19 -25758738 locktype1 = 1 -25758739 locktype2 = 2 -25758739 locktype3 = 3 -25758740 goalCount = 1 -25758740 goalTotal = 11 -25758741 otherCount = 25 -~~~ -25758742 CURRENTGOAL IS [3] -~~~ -25762427 UP 2 -25762427 2 255 -~~~ -~~~ -25763276 DOWN 2 -25763276 0 255 -~~~ -~~~ -25763302 0 254 -~~~ -~~~ -25763304 0 252 -~~~ -~~~ -25763306 0 248 -~~~ -~~~ -25763307 0 240 -~~~ -~~~ -25763309 0 224 -~~~ -~~~ -25763311 0 192 -~~~ -~~~ -25763313 0 128 -~~~ -~~~ -25763315 0 0 -~~~ -~~~ -25763317 0 512 -25763318 homeCount = 43 -25763318 waitCount = 19 -25763319 ripCount = 19 -25763319 locktype1 = 1 -25763320 locktype2 = 2 -25763341 locktype3 = 3 -25763341 goalCount = 1 -25763342 goalTotal = 11 -25763342 otherCount = 26 -~~~ -25763466 2 512 -25763664 DOWN 2 -25763664 0 512 -25768061 UP 10 -25768061 waslock = 0 -25768061 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25768092 512 16777728 -~~~ -25768220 DOWN 10 -25768220 0 16777728 -~~~ -25768242 0 512 -~~~ -25768243 0 1536 -~~~ -~~~ -25768244 0 1024 -25768245 homeCount = 44 -25768246 waitCount = 19 -25768246 ripCount = 19 -25768247 locktype1 = 1 -25768247 locktype2 = 2 -25768248 locktype3 = 3 -25768248 goalCount = 1 -25768249 goalTotal = 11 -25768270 otherCount = 26 -~~~ -25768271 UP 10 -25768271 waslock = 0 -25768271 512 1024 -~~~ -25771738 DOWN 10 -25771738 0 1024 -~~~ -~~~ -~~~ -~~~ -25771767 homeCount = 44 -25771768 waitCount = 19 -25771768 ripCount = 19 -25771769 locktype1 = 1 -25771769 locktype2 = 2 -25771770 locktype3 = 3 -25771770 goalCount = 1 -25771771 goalTotal = 11 -25771771 otherCount = 26 -~~~ -25773584 UP 11 -25773584 1024 1024 -25778369 DOWN 11 -25778369 0 1024 -25778378 UP 11 -25778378 1024 1024 -25781584 BEEP1 -25781584 BEEP2 -~~~ -~~~ -~~~ -25781606 1024 33555456 -~~~ -25781756 1024 1024 -25787347 DOWN 11 -25787347 0 1024 -~~~ -~~~ -25787363 0 0 -~~~ -~~~ -25787365 0 1 -~~~ -~~~ -25787367 0 3 -~~~ -~~~ -25787369 0 7 -~~~ -~~~ -25787370 0 15 -~~~ -~~~ -25787372 0 31 -~~~ -~~~ -25787374 0 63 -~~~ -~~~ -25787376 0 127 -~~~ -~~~ -25787378 0 255 -25787379 homeCount = 44 -25787379 waitCount = 19 -25787380 ripCount = 20 -25787380 locktype1 = 1 -25787381 locktype2 = 2 -25787402 locktype3 = 3 -25787402 goalCount = 1 -25787403 goalTotal = 11 -25787403 otherCount = 26 -~~~ -25787404 CURRENTGOAL IS [3] -~~~ -25790514 UP 6 -25790514 32 255 -~~~ -~~~ -25791449 DOWN 6 -25791449 0 255 -~~~ -~~~ -25791474 0 254 -~~~ -~~~ -25791476 0 252 -~~~ -~~~ -25791477 0 248 -~~~ -~~~ -25791479 0 240 -~~~ -~~~ -25791481 0 224 -~~~ -~~~ -25791483 0 192 -~~~ -~~~ -25791485 0 128 -~~~ -~~~ -25791486 0 0 -~~~ -~~~ -25791488 0 512 -25791489 homeCount = 44 -25791490 waitCount = 19 -25791490 ripCount = 20 -25791491 locktype1 = 1 -25791491 locktype2 = 2 -25791512 locktype3 = 3 -25791513 goalCount = 1 -25791513 goalTotal = 11 -25791514 otherCount = 27 -~~~ -25795603 UP 10 -25795603 waslock = 0 -25795603 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25795630 512 16777728 -~~~ -25795780 512 512 -25795823 DOWN 10 -25795823 0 512 -~~~ -~~~ -25795843 0 2560 -~~~ -~~~ -25795845 0 2048 -25795846 homeCount = 45 -25795846 waitCount = 19 -25795847 ripCount = 20 -25795847 locktype1 = 1 -25795848 locktype2 = 2 -25795848 locktype3 = 3 -25795849 goalCount = 1 -25795849 goalTotal = 11 -25795850 otherCount = 27 -~~~ -25796003 UP 10 -25796003 waslock = 0 -25796003 512 2048 -~~~ -25801292 DOWN 10 -25801292 0 2048 -~~~ -~~~ -~~~ -~~~ -25801318 homeCount = 45 -25801318 waitCount = 19 -25801319 ripCount = 20 -25801319 locktype1 = 1 -25801320 locktype2 = 2 -25801320 locktype3 = 3 -25801321 goalCount = 1 -25801321 goalTotal = 11 -25801322 otherCount = 27 -~~~ -25803540 UP 12 -25803540 2048 2048 -25805479 DOWN 12 -25805479 0 2048 -25805510 UP 12 -25805510 2048 2048 -25805675 DOWN 12 -25805675 0 2048 -25805730 UP 12 -25805730 2048 2048 -25806962 DOWN 12 -25806962 0 2048 -25806974 UP 12 -25806974 2048 2048 -25807043 DOWN 12 -25807043 0 2048 -25807214 UP 12 -25807214 2048 2048 -25807283 DOWN 12 -25807283 0 2048 -25807346 UP 12 -25807346 2048 2048 -25809540 CLICK1 -25809540 CLICK2 -~~~ -~~~ -~~~ -25809566 2048 67110912 -~~~ -25809716 2048 2048 -25815767 DOWN 12 -25815767 0 2048 -~~~ -~~~ -25815784 0 0 -~~~ -~~~ -25815786 0 1 -~~~ -~~~ -25815788 0 3 -~~~ -~~~ -25815789 0 7 -~~~ -25815791 UP 12 -25815791 2048 7 -~~~ -~~~ -25815793 2048 15 -~~~ -~~~ -25815794 2048 31 -~~~ -25815795 2048 63 -~~~ -~~~ -25815797 2048 127 -~~~ -~~~ -25815798 2048 255 -25815800 homeCount = 45 -25815821 waitCount = 20 -25815821 ripCount = 20 -25815822 locktype1 = 1 -25815822 locktype2 = 2 -25815823 locktype3 = 3 -25815823 goalCount = 1 -25815824 goalTotal = 11 -25815824 otherCount = 27 -~~~ -25815825 CURRENTGOAL IS [3] -~~~ -25815864 DOWN 12 -25815864 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25815903 homeCount = 45 -25815903 waitCount = 20 -25815904 ripCount = 20 -25815904 locktype1 = 1 -25815905 locktype2 = 2 -25815905 locktype3 = 3 -25815906 goalCount = 1 -25815906 goalTotal = 11 -25815907 otherCount = 27 -~~~ -25815908 CURRENTGOAL IS [3] -~~~ -25819190 UP 2 -25819190 2 255 -~~~ -~~~ -25820057 DOWN 2 -25820057 0 255 -~~~ -~~~ -25820079 0 254 -~~~ -~~~ -25820081 0 252 -~~~ -~~~ -25820083 0 248 -~~~ -~~~ -25820084 0 240 -~~~ -~~~ -25820086 0 224 -~~~ -~~~ -25820088 0 192 -~~~ -~~~ -25820090 0 128 -~~~ -~~~ -25820092 0 0 -~~~ -~~~ -25820094 0 512 -25820095 homeCount = 45 -25820095 waitCount = 20 -25820096 ripCount = 20 -25820096 locktype1 = 1 -25820097 locktype2 = 2 -25820118 locktype3 = 3 -25820118 goalCount = 1 -25820119 goalTotal = 11 -25820119 otherCount = 28 -~~~ -25820242 2 512 -25820365 DOWN 2 -25820365 0 512 -25823770 UP 10 -25823770 waslock = 0 -25823769 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25823798 512 16777728 -~~~ -25823948 512 512 -25823994 DOWN 10 -25823994 0 512 -~~~ -~~~ -25824011 0 2560 -~~~ -~~~ -25824013 0 2048 -25824014 homeCount = 46 -25824015 waitCount = 20 -25824015 ripCount = 20 -25824016 locktype1 = 1 -25824016 locktype2 = 2 -25824017 locktype3 = 3 -25824017 goalCount = 1 -25824018 goalTotal = 11 -25824018 otherCount = 28 -~~~ -25824040 UP 10 -25824040 waslock = 0 -25824040 512 2048 -~~~ -25829907 DOWN 10 -25829907 0 2048 -~~~ -~~~ -~~~ -~~~ -25829936 homeCount = 46 -25829936 waitCount = 20 -25829937 ripCount = 20 -25829937 locktype1 = 1 -25829938 locktype2 = 2 -25829938 locktype3 = 3 -25829939 goalCount = 1 -25829939 goalTotal = 11 -25829940 otherCount = 28 -~~~ -25831818 UP 12 -25831818 2048 2048 -25834819 CLICK1 -25834819 CLICK2 -~~~ -~~~ -~~~ -25834844 2048 67110912 -~~~ -25834994 2048 2048 -25840649 DOWN 12 -25840649 0 2048 -~~~ -~~~ -25840671 0 0 -~~~ -~~~ -25840673 0 1 -~~~ -~~~ -25840675 0 3 -~~~ -~~~ -25840677 0 7 -~~~ -~~~ -25840678 0 15 -~~~ -~~~ -25840680 0 31 -~~~ -~~~ -25840682 0 63 -~~~ -~~~ -25840684 0 127 -~~~ -~~~ -25840686 0 255 -25840687 homeCount = 46 -25840687 waitCount = 21 -25840688 ripCount = 20 -25840688 locktype1 = 1 -25840689 locktype2 = 2 -25840709 locktype3 = 3 -25840710 goalCount = 1 -25840710 goalTotal = 11 -25840711 otherCount = 28 -~~~ -25840712 CURRENTGOAL IS [3] -~~~ -25840713 UP 12 -25840712 2048 255 -25840753 DOWN 12 -25840753 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25840790 homeCount = 46 -25840791 waitCount = 21 -25840791 ripCount = 20 -25840792 locktype1 = 1 -25840792 locktype2 = 2 -25840793 locktype3 = 3 -25840793 goalCount = 1 -25840794 goalTotal = 11 -25840794 otherCount = 28 -~~~ -25840795 CURRENTGOAL IS [3] -~~~ -25846229 UP 3 -25846229 4 255 -~~~ -~~~ -25846247 outer reward -~~~ -25846248 4 262399 -~~~ -~~~ -25846289 DOWN 3 -25846289 0 262399 -25846303 4 262399 -~~~ -~~~ -25846306 4 262398 -~~~ -~~~ -25846308 4 262396 -~~~ -~~~ -25846310 4 262392 -~~~ -~~~ -25846311 4 262384 -~~~ -~~~ -25846313 4 262368 -~~~ -~~~ -25846315 4 262336 -~~~ -~~~ -25846317 4 262272 -~~~ -~~~ -25846319 4 262144 -~~~ -~~~ -25846321 4 262656 -25846322 homeCount = 46 -25846322 waitCount = 21 -25846323 ripCount = 20 -25846343 locktype1 = 1 -25846344 locktype2 = 2 -25846344 locktype3 = 3 -25846345 goalCount = 2 -25846345 goalTotal = 12 -25846346 otherCount = 28 -~~~ -25846482 DOWN 3 -25846482 0 262656 -25846517 4 262656 -25846697 4 512 -25846875 DOWN 3 -25846875 0 512 -25846903 4 512 -25846998 DOWN 3 -25846998 0 512 -25847030 4 512 -25847129 DOWN 3 -25847129 0 512 -25847156 4 512 -25847253 DOWN 3 -25847253 0 512 -25847287 4 512 -25847385 DOWN 3 -25847385 0 512 -25847417 4 512 -25847522 DOWN 3 -25847522 0 512 -25847548 4 512 -25847656 DOWN 3 -25847656 0 512 -25847682 4 512 -25847794 DOWN 3 -25847794 0 512 -25847816 4 512 -25847942 DOWN 3 -25847942 0 512 -25847958 4 512 -25848087 DOWN 3 -25848087 0 512 -25848099 4 512 -25853342 DOWN 3 -25853342 0 512 -25853409 4 512 -25853445 DOWN 3 -25853445 0 512 -25911695 UP 10 -25911695 waslock = 0 -25911695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -25911722 512 16777728 -~~~ -25911797 DOWN 10 -25911797 0 16777728 -~~~ -~~~ -25911816 0 16779776 -~~~ -~~~ -25911818 0 16779264 -25911819 homeCount = 47 -25911820 waitCount = 21 -25911820 ripCount = 20 -25911821 locktype1 = 1 -25911821 locktype2 = 2 -25911822 locktype3 = 3 -25911822 goalCount = 2 -25911823 goalTotal = 12 -25911823 otherCount = 28 -~~~ -25911872 0 2048 -25911895 UP 10 -25911895 waslock = 0 -25911895 512 2048 -~~~ -25915776 DOWN 10 -25915776 0 2048 -~~~ -~~~ -~~~ -~~~ -25915802 homeCount = 47 -25915802 waitCount = 21 -25915803 ripCount = 20 -25915803 locktype1 = 1 -25915804 locktype2 = 2 -25915804 locktype3 = 3 -25915805 goalCount = 2 -25915805 goalTotal = 12 -25915806 otherCount = 28 -~~~ -25915830 UP 10 -25915830 waslock = 0 -25915830 512 2048 -25915843 DOWN 10 -25915843 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -25915863 homeCount = 47 -25915864 waitCount = 21 -25915864 ripCount = 20 -25915865 locktype1 = 1 -25915865 locktype2 = 2 -25915866 locktype3 = 3 -25915866 goalCount = 2 -25915867 goalTotal = 12 -25915867 otherCount = 28 -~~~ -25917690 UP 12 -25917690 2048 2048 -25918023 DOWN 12 -25918023 0 2048 -25918224 LOCKOUT 3 -~~~ -25918241 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25918247 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -25929828 UP 3 -25929828 4 0 -25930022 DOWN 3 -25930022 0 0 -25930052 4 0 -25930295 DOWN 3 -25930295 0 0 -25930361 4 0 -25930673 DOWN 3 -25930673 0 0 -25930706 4 0 -25930744 DOWN 3 -25930744 0 0 -25942332 UP 5 -25942332 16 0 -25942648 DOWN 5 -25942648 0 0 -25942755 16 0 -25943167 DOWN 5 -25943166 0 0 -25943232 16 0 -25943241 LOCKEND -25943251 DOWN 5 -25943251 0 0 -~~~ -~~~ -~~~ -25943255 0 512 -26002769 UP 10 -26002770 waslock = 0 -26002769 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26002799 512 16777728 -~~~ -26002899 DOWN 10 -26002899 0 16777728 -26002914 UP 10 -26002914 waslock = 0 -26002914 512 16777728 -~~~ -~~~ -26002925 512 16778752 -~~~ -~~~ -26002927 512 16778240 -26002928 homeCount = 48 -26002928 waitCount = 21 -26002929 ripCount = 20 -26002929 locktype1 = 1 -26002930 locktype2 = 2 -26002930 locktype3 = 4 -26002931 goalCount = 2 -26002931 goalTotal = 12 -26002932 otherCount = 28 -~~~ -~~~ -26002954 512 1024 -26003187 DOWN 10 -26003187 0 1024 -~~~ -~~~ -~~~ -~~~ -26003216 homeCount = 48 -26003216 waitCount = 21 -26003217 ripCount = 20 -26003217 locktype1 = 1 -26003218 locktype2 = 2 -26003218 locktype3 = 4 -26003219 goalCount = 2 -26003219 goalTotal = 12 -26003220 otherCount = 28 -~~~ -26003230 UP 10 -26003230 waslock = 0 -26003230 512 1024 -~~~ -26003679 DOWN 10 -26003679 0 1024 -26003691 UP 10 -26003691 waslock = 0 -26003691 512 1024 -~~~ -~~~ -~~~ -~~~ -26003719 homeCount = 48 -26003719 waitCount = 21 -26003720 ripCount = 20 -26003721 locktype1 = 1 -26003721 locktype2 = 2 -26003722 locktype3 = 4 -26003722 goalCount = 2 -26003723 goalTotal = 12 -26003723 otherCount = 28 -~~~ -~~~ -26003834 DOWN 10 -26003834 0 1024 -26003848 UP 10 -26003848 waslock = 0 -26003848 512 1024 -~~~ -~~~ -~~~ -~~~ -26003862 homeCount = 48 -26003863 waitCount = 21 -26003863 ripCount = 20 -26003864 locktype1 = 1 -26003864 locktype2 = 2 -26003865 locktype3 = 4 -26003865 goalCount = 2 -26003866 goalTotal = 12 -26003866 otherCount = 28 -~~~ -~~~ -26003992 DOWN 10 -26003992 0 1024 -26004002 UP 10 -26004003 waslock = 0 -26004002 512 1024 -~~~ -~~~ -~~~ -~~~ -26004018 homeCount = 48 -26004018 waitCount = 21 -26004019 ripCount = 20 -26004020 locktype1 = 1 -26004020 locktype2 = 2 -26004021 locktype3 = 4 -26004021 goalCount = 2 -26004022 goalTotal = 12 -26004022 otherCount = 28 -~~~ -~~~ -26007545 DOWN 10 -26007545 0 1024 -26007568 UP 10 -26007568 waslock = 0 -26007568 512 1024 -~~~ -~~~ -~~~ -~~~ -26007576 homeCount = 48 -26007576 waitCount = 21 -26007577 ripCount = 20 -26007577 locktype1 = 1 -26007578 locktype2 = 2 -26007578 locktype3 = 4 -26007579 goalCount = 2 -26007579 goalTotal = 12 -26007580 otherCount = 28 -~~~ -~~~ -26007655 DOWN 10 -26007655 0 1024 -~~~ -~~~ -~~~ -~~~ -26007677 homeCount = 48 -26007677 waitCount = 21 -26007678 ripCount = 20 -26007679 locktype1 = 1 -26007679 locktype2 = 2 -26007680 locktype3 = 4 -26007680 goalCount = 2 -26007681 goalTotal = 12 -26007681 otherCount = 28 -~~~ -26043997 UP 10 -26043997 waslock = 0 -26043997 512 1024 -~~~ -26044753 DOWN 10 -26044753 0 1024 -~~~ -~~~ -~~~ -~~~ -26044775 homeCount = 48 -26044776 waitCount = 21 -26044776 ripCount = 20 -26044777 locktype1 = 1 -26044777 locktype2 = 2 -26044778 locktype3 = 4 -26044778 goalCount = 2 -26044779 goalTotal = 12 -26044779 otherCount = 28 -~~~ -26046836 UP 11 -26046836 1024 1024 -26047796 DOWN 11 -26047796 0 1024 -26047996 LOCKOUT 3 -~~~ -26048015 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26048019 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26048033 UP 11 -26048033 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -26048065 DOWN 11 -26048065 0 0 -26048110 UP 11 -26048110 1024 0 -26048521 DOWN 11 -26048521 0 0 -26048580 UP 11 -26048580 1024 0 -26050905 DOWN 11 -26050905 0 0 -26050915 UP 11 -26050915 1024 0 -26054064 DOWN 11 -26054064 0 0 -26054111 UP 11 -26054111 1024 0 -26055170 DOWN 11 -26055170 0 0 -26055174 UP 11 -26055174 1024 0 -26060757 DOWN 11 -26060757 0 0 -26065042 UP 8 -26065042 128 0 -26065099 DOWN 8 -26065099 0 0 -26065152 128 0 -26065553 DOWN 8 -26065553 0 0 -26073015 LOCKEND -~~~ -~~~ -~~~ -26073040 0 512 -26074095 UP 10 -26074095 waslock = 0 -26074095 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26074124 512 16777728 -~~~ -26074274 512 512 -26074286 DOWN 10 -26074286 0 512 -~~~ -~~~ -26074307 0 1536 -~~~ -~~~ -26074309 0 1024 -26074310 homeCount = 49 -26074311 waitCount = 21 -26074311 ripCount = 20 -26074312 locktype1 = 1 -26074312 locktype2 = 2 -26074313 locktype3 = 5 -26074313 goalCount = 2 -26074314 goalTotal = 12 -26074314 otherCount = 28 -~~~ -26074335 UP 10 -26074336 waslock = 0 -26074335 512 1024 -~~~ -26079241 DOWN 10 -26079241 0 1024 -26079255 UP 10 -26079255 waslock = 0 -26079255 512 1024 -~~~ -~~~ -~~~ -~~~ -26079262 homeCount = 49 -26079262 waitCount = 21 -26079263 ripCount = 20 -26079263 locktype1 = 1 -26079264 locktype2 = 2 -26079264 locktype3 = 5 -26079265 goalCount = 2 -26079265 goalTotal = 12 -26079266 otherCount = 28 -~~~ -~~~ -26079356 DOWN 10 -26079356 0 1024 -~~~ -~~~ -~~~ -~~~ -26079382 homeCount = 49 -26079382 waitCount = 21 -26079383 ripCount = 20 -26079383 locktype1 = 1 -26079384 locktype2 = 2 -26079384 locktype3 = 5 -26079385 goalCount = 2 -26079385 goalTotal = 12 -26079386 otherCount = 28 -~~~ -26079397 UP 10 -26079398 waslock = 0 -26079397 512 1024 -~~~ -26079458 DOWN 10 -26079458 0 1024 -~~~ -~~~ -~~~ -~~~ -26079482 homeCount = 49 -26079482 waitCount = 21 -26079483 ripCount = 20 -26079483 locktype1 = 1 -26079484 locktype2 = 2 -26079484 locktype3 = 5 -26079485 goalCount = 2 -26079485 goalTotal = 12 -26079486 otherCount = 28 -~~~ -26082385 UP 11 -26082384 1024 1024 -26086385 BEEP1 -26086385 BEEP2 -~~~ -~~~ -~~~ -26086410 1024 33555456 -~~~ -26086560 1024 1024 -26093563 DOWN 11 -26093563 0 1024 -~~~ -~~~ -26093584 0 0 -~~~ -~~~ -26093585 0 1 -~~~ -~~~ -26093587 0 3 -~~~ -~~~ -26093589 0 7 -~~~ -~~~ -26093591 0 15 -~~~ -~~~ -26093593 0 31 -~~~ -26093594 UP 11 -26093594 1024 31 -~~~ -~~~ -26093596 1024 63 -~~~ -~~~ -26093598 1024 127 -~~~ -26093599 1024 255 -26093600 homeCount = 49 -26093600 waitCount = 21 -26093622 ripCount = 21 -26093622 locktype1 = 1 -26093623 locktype2 = 2 -26093623 locktype3 = 5 -26093624 goalCount = 2 -26093624 goalTotal = 12 -26093625 otherCount = 28 -~~~ -26093626 CURRENTGOAL IS [3] -~~~ -26093680 DOWN 11 -26093680 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26093719 homeCount = 49 -26093720 waitCount = 21 -26093721 ripCount = 21 -26093721 locktype1 = 1 -26093722 locktype2 = 2 -26093722 locktype3 = 5 -26093723 goalCount = 2 -26093723 goalTotal = 12 -26093724 otherCount = 28 -~~~ -26093725 CURRENTGOAL IS [3] -~~~ -26093746 UP 11 -26093746 1024 255 -26093773 DOWN 11 -26093773 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26093808 homeCount = 49 -26093808 waitCount = 21 -26093809 ripCount = 21 -26093809 locktype1 = 1 -26093810 locktype2 = 2 -26093810 locktype3 = 5 -26093811 goalCount = 2 -26093811 goalTotal = 12 -26093812 otherCount = 28 -~~~ -26093813 CURRENTGOAL IS [3] -~~~ -26096717 UP 6 -26096717 32 255 -~~~ -~~~ -26097351 DOWN 6 -26097351 0 255 -~~~ -~~~ -26097373 0 254 -~~~ -~~~ -26097375 0 252 -~~~ -~~~ -26097377 0 248 -~~~ -~~~ -26097379 0 240 -~~~ -~~~ -26097380 0 224 -~~~ -~~~ -26097382 0 192 -~~~ -~~~ -26097384 0 128 -~~~ -~~~ -26097386 0 0 -~~~ -~~~ -26097388 0 512 -26097389 homeCount = 49 -26097389 waitCount = 21 -26097390 ripCount = 21 -26097390 locktype1 = 1 -26097391 locktype2 = 2 -26097412 locktype3 = 5 -26097412 goalCount = 2 -26097413 goalTotal = 12 -26097413 otherCount = 29 -~~~ -26104495 UP 10 -26104495 waslock = 0 -26104495 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26104524 512 16777728 -~~~ -26104673 512 512 -26104700 DOWN 10 -26104700 0 512 -~~~ -~~~ -26104727 0 2560 -~~~ -~~~ -26104729 0 2048 -26104730 homeCount = 50 -26104730 waitCount = 21 -26104731 ripCount = 21 -26104731 locktype1 = 1 -26104732 locktype2 = 2 -26104732 locktype3 = 5 -26104733 goalCount = 2 -26104733 goalTotal = 12 -26104734 otherCount = 29 -~~~ -26104857 UP 10 -26104858 waslock = 0 -26104857 512 2048 -~~~ -26109785 DOWN 10 -26109785 0 2048 -~~~ -~~~ -~~~ -~~~ -26109809 homeCount = 50 -26109809 waitCount = 21 -26109810 ripCount = 21 -26109810 locktype1 = 1 -26109811 locktype2 = 2 -26109811 locktype3 = 5 -26109812 goalCount = 2 -26109812 goalTotal = 12 -26109813 otherCount = 29 -~~~ -26109830 UP 10 -26109830 waslock = 0 -26109830 512 2048 -~~~ -26109886 DOWN 10 -26109886 0 2048 -~~~ -~~~ -~~~ -~~~ -26109910 homeCount = 50 -26109910 waitCount = 21 -26109911 ripCount = 21 -26109911 locktype1 = 1 -26109912 locktype2 = 2 -26109912 locktype3 = 5 -26109913 goalCount = 2 -26109913 goalTotal = 12 -26109914 otherCount = 29 -~~~ -26112362 UP 12 -26112362 2048 2048 -26113374 DOWN 12 -26113374 0 2048 -26113418 UP 12 -26113418 2048 2048 -26113943 DOWN 12 -26113943 0 2048 -26114024 UP 12 -26114024 2048 2048 -26115863 CLICK1 -26115863 CLICK2 -~~~ -~~~ -~~~ -26115889 2048 67110912 -~~~ -26116039 2048 2048 -26122109 DOWN 12 -26122109 0 2048 -~~~ -~~~ -26122129 0 0 -~~~ -~~~ -26122131 0 1 -~~~ -~~~ -26122132 0 3 -~~~ -~~~ -26122134 0 7 -~~~ -~~~ -26122136 0 15 -~~~ -~~~ -26122138 0 31 -~~~ -~~~ -26122140 0 63 -~~~ -~~~ -26122142 0 127 -~~~ -~~~ -26122143 0 255 -26122145 homeCount = 50 -26122145 waitCount = 22 -26122146 ripCount = 21 -26122146 locktype1 = 1 -26122147 locktype2 = 2 -26122167 locktype3 = 5 -26122168 goalCount = 2 -26122168 goalTotal = 12 -26122169 otherCount = 29 -~~~ -26122170 CURRENTGOAL IS [3] -~~~ -26126211 UP 3 -26126210 4 255 -26126231 DOWN 3 -26126231 0 255 -~~~ -~~~ -26126237 outer reward -~~~ -26126238 0 262399 -~~~ -~~~ -26126244 4 262399 -~~~ -~~~ -26126256 4 262398 -~~~ -~~~ -26126257 4 262396 -~~~ -~~~ -26126259 4 262392 -~~~ -~~~ -26126261 4 262384 -~~~ -~~~ -26126263 4 262368 -~~~ -~~~ -26126265 4 262336 -~~~ -~~~ -26126267 4 262272 -~~~ -~~~ -26126268 4 262144 -~~~ -~~~ -26126270 4 262656 -26126271 homeCount = 50 -26126272 waitCount = 22 -26126272 ripCount = 21 -26126293 locktype1 = 1 -26126294 locktype2 = 2 -26126294 locktype3 = 5 -26126295 goalCount = 3 -26126295 goalTotal = 13 -26126296 otherCount = 29 -~~~ -26126454 DOWN 3 -26126453 0 262656 -26126503 4 262656 -26126687 4 512 -26126888 DOWN 3 -26126888 0 512 -26126906 4 512 -26127010 DOWN 3 -26127010 0 512 -26127033 4 512 -26127136 DOWN 3 -26127136 0 512 -26127161 4 512 -26127269 DOWN 3 -26127269 0 512 -26127292 4 512 -26127399 DOWN 3 -26127399 0 512 -26127422 4 512 -26127527 DOWN 3 -26127527 0 512 -26127551 4 512 -26127663 DOWN 3 -26127662 0 512 -26127684 4 512 -26127810 DOWN 3 -26127810 0 512 -26127825 4 512 -26127960 DOWN 3 -26127960 0 512 -26127966 4 512 -26132825 DOWN 3 -26132825 0 512 -26132840 4 512 -26132983 DOWN 3 -26132983 0 512 -26132987 4 512 -26133827 DOWN 3 -26133827 0 512 -26133837 4 512 -26134015 DOWN 3 -26134015 0 512 -26134023 4 512 -26135949 DOWN 3 -26135949 0 512 -26140435 UP 10 -26140435 waslock = 0 -26140435 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26140463 512 16777728 -~~~ -26140613 512 512 -26140699 DOWN 10 -26140698 0 512 -~~~ -~~~ -26140719 0 1536 -~~~ -~~~ -26140720 0 1024 -26140722 homeCount = 51 -26140722 waitCount = 22 -26140723 ripCount = 21 -26140723 locktype1 = 1 -26140724 locktype2 = 2 -26140724 locktype3 = 5 -26140725 goalCount = 3 -26140725 goalTotal = 13 -26140726 otherCount = 29 -~~~ -26140747 UP 10 -26140747 waslock = 0 -26140747 512 1024 -~~~ -26144504 DOWN 10 -26144504 0 1024 -~~~ -~~~ -~~~ -~~~ -26144530 homeCount = 51 -26144531 waitCount = 22 -26144531 ripCount = 21 -26144532 locktype1 = 1 -26144532 locktype2 = 2 -26144533 locktype3 = 5 -26144533 goalCount = 3 -26144534 goalTotal = 13 -26144534 otherCount = 29 -~~~ -26144553 UP 10 -26144553 waslock = 0 -26144552 512 1024 -~~~ -26144607 DOWN 10 -26144607 0 1024 -~~~ -~~~ -~~~ -~~~ -26144630 homeCount = 51 -26144631 waitCount = 22 -26144631 ripCount = 21 -26144632 locktype1 = 1 -26144632 locktype2 = 2 -26144633 locktype3 = 5 -26144633 goalCount = 3 -26144634 goalTotal = 13 -26144634 otherCount = 29 -~~~ -26146769 UP 11 -26146769 1024 1024 -26151953 DOWN 11 -26151953 0 1024 -26151979 UP 11 -26151979 1024 1024 -26154269 BEEP1 -26154269 BEEP2 -~~~ -~~~ -~~~ -26154291 1024 33555456 -~~~ -26154441 1024 1024 -26160782 DOWN 11 -26160782 0 1024 -26160794 UP 11 -26160794 1024 1024 -~~~ -~~~ -26160806 1024 0 -~~~ -~~~ -26160808 1024 1 -~~~ -~~~ -26160810 1024 3 -~~~ -~~~ -26160812 1024 7 -~~~ -~~~ -26160814 1024 15 -~~~ -~~~ -26160815 1024 31 -~~~ -~~~ -26160817 1024 63 -~~~ -~~~ -26160819 1024 127 -~~~ -~~~ -26160821 1024 255 -26160822 homeCount = 51 -26160822 waitCount = 22 -26160823 ripCount = 22 -26160844 locktype1 = 1 -26160845 locktype2 = 2 -26160845 locktype3 = 5 -26160846 goalCount = 3 -26160846 goalTotal = 13 -26160847 otherCount = 29 -~~~ -26160848 CURRENTGOAL IS [3] -~~~ -26160904 DOWN 11 -26160904 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26160942 homeCount = 51 -26160943 waitCount = 22 -26160943 ripCount = 22 -26160944 locktype1 = 1 -26160945 locktype2 = 2 -26160945 locktype3 = 5 -26160946 goalCount = 3 -26160946 goalTotal = 13 -26160947 otherCount = 29 -~~~ -26160948 CURRENTGOAL IS [3] -~~~ -26160969 UP 11 -26160969 1024 255 -26160984 DOWN 11 -26160984 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26161023 homeCount = 51 -26161023 waitCount = 22 -26161024 ripCount = 22 -26161024 locktype1 = 1 -26161025 locktype2 = 2 -26161025 locktype3 = 5 -26161026 goalCount = 3 -26161026 goalTotal = 13 -26161027 otherCount = 29 -~~~ -26161028 CURRENTGOAL IS [3] -~~~ -26161049 UP 11 -26161049 1024 255 -26163216 DOWN 11 -26163216 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26163255 homeCount = 51 -26163255 waitCount = 22 -26163256 ripCount = 22 -26163256 locktype1 = 1 -26163257 locktype2 = 2 -26163257 locktype3 = 5 -26163258 goalCount = 3 -26163258 goalTotal = 13 -26163259 otherCount = 29 -~~~ -26163260 CURRENTGOAL IS [3] -~~~ -26176641 UP 4 -26176641 8 255 -~~~ -~~~ -26177975 DOWN 4 -26177975 0 255 -~~~ -~~~ -26178001 0 254 -~~~ -~~~ -26178003 0 252 -~~~ -~~~ -26178005 0 248 -~~~ -~~~ -26178006 0 240 -~~~ -~~~ -26178008 0 224 -~~~ -~~~ -26178010 0 192 -~~~ -~~~ -26178012 0 128 -~~~ -~~~ -26178014 0 0 -~~~ -~~~ -26178016 0 512 -26178017 homeCount = 51 -26178017 waitCount = 22 -26178018 ripCount = 22 -26178018 locktype1 = 1 -26178019 locktype2 = 2 -26178040 locktype3 = 5 -26178040 goalCount = 3 -26178041 goalTotal = 13 -26178041 otherCount = 30 -~~~ -26183987 UP 10 -26183987 waslock = 0 -26183986 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26184016 512 16777728 -~~~ -26184166 512 512 -26184227 DOWN 10 -26184227 0 512 -~~~ -26184253 UP 10 -26184253 waslock = 0 -26184253 512 512 -~~~ -~~~ -~~~ -26184256 512 2048 -26184257 homeCount = 52 -26184257 waitCount = 22 -26184258 ripCount = 22 -26184258 locktype1 = 1 -26184259 locktype2 = 2 -26184259 locktype3 = 5 -26184260 goalCount = 3 -26184280 goalTotal = 13 -26184281 otherCount = 30 -~~~ -~~~ -26190484 DOWN 10 -26190484 0 2048 -26190501 UP 10 -26190501 waslock = 0 -26190501 512 2048 -~~~ -~~~ -~~~ -~~~ -26190525 homeCount = 52 -26190525 waitCount = 22 -26190526 ripCount = 22 -26190526 locktype1 = 1 -26190527 locktype2 = 2 -26190527 locktype3 = 5 -26190528 goalCount = 3 -26190528 goalTotal = 13 -26190529 otherCount = 30 -~~~ -~~~ -26190590 DOWN 10 -26190590 0 2048 -~~~ -~~~ -~~~ -~~~ -26190618 homeCount = 52 -26190619 waitCount = 22 -26190619 ripCount = 22 -26190620 locktype1 = 1 -26190620 locktype2 = 2 -26190621 locktype3 = 5 -26190621 goalCount = 3 -26190622 goalTotal = 13 -26190622 otherCount = 30 -~~~ -26192739 UP 12 -26192739 2048 2048 -26197344 DOWN 12 -26197344 0 2048 -26197364 UP 12 -26197364 2048 2048 -26200239 CLICK1 -26200239 CLICK2 -~~~ -~~~ -~~~ -26200261 2048 67110912 -~~~ -26200411 2048 2048 -26205923 DOWN 12 -26205923 0 2048 -~~~ -~~~ -26205949 0 0 -~~~ -~~~ -26205951 0 1 -~~~ -~~~ -26205953 0 3 -~~~ -~~~ -26205955 0 7 -~~~ -~~~ -26205957 0 15 -~~~ -~~~ -26205959 0 31 -~~~ -~~~ -26205960 0 63 -~~~ -~~~ -26205962 0 127 -~~~ -~~~ -26205964 0 255 -26205965 homeCount = 52 -26205966 waitCount = 23 -26205966 ripCount = 22 -26205967 locktype1 = 1 -26205967 locktype2 = 2 -26205988 locktype3 = 5 -26205989 goalCount = 3 -26205989 goalTotal = 13 -26205990 otherCount = 30 -~~~ -26205991 CURRENTGOAL IS [3] -~~~ -26205991 UP 12 -26205991 2048 255 -26206044 DOWN 12 -26206044 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26206086 homeCount = 52 -26206087 waitCount = 23 -26206088 ripCount = 22 -26206088 locktype1 = 1 -26206089 locktype2 = 2 -26206089 locktype3 = 5 -26206090 goalCount = 3 -26206090 goalTotal = 13 -26206091 otherCount = 30 -~~~ -26206092 CURRENTGOAL IS [3] -~~~ -26211547 UP 3 -26211547 4 255 -~~~ -~~~ -26211574 outer reward -~~~ -26211574 4 262399 -~~~ -~~~ -26211584 DOWN 3 -26211584 0 262399 -26211594 4 262399 -~~~ -~~~ -26211604 4 262398 -~~~ -~~~ -26211605 4 262396 -~~~ -~~~ -26211607 4 262392 -~~~ -~~~ -26211609 4 262384 -~~~ -~~~ -26211611 4 262368 -~~~ -~~~ -26211613 4 262336 -~~~ -~~~ -26211614 4 262272 -~~~ -~~~ -26211616 4 262144 -~~~ -~~~ -26211618 4 262656 -26211619 homeCount = 52 -26211620 waitCount = 23 -26211620 ripCount = 22 -26211641 locktype1 = 1 -26211641 locktype2 = 2 -26211642 locktype3 = 5 -26211642 goalCount = 4 -26211643 goalTotal = 14 -26211643 otherCount = 30 -~~~ -26211753 DOWN 3 -26211753 0 262656 -26211803 4 262656 -26212024 4 512 -26212186 DOWN 3 -26212186 0 512 -26212197 4 512 -26212288 DOWN 3 -26212288 0 512 -26212324 4 512 -26212415 DOWN 3 -26212415 0 512 -26212448 4 512 -26212545 DOWN 3 -26212545 0 512 -26212578 4 512 -26212679 DOWN 3 -26212679 0 512 -26212713 4 512 -26212817 DOWN 3 -26212817 0 512 -26212848 4 512 -26212954 DOWN 3 -26212954 0 512 -26212985 4 512 -26213104 DOWN 3 -26213103 0 512 -26213127 4 512 -26213255 DOWN 3 -26213255 0 512 -26213277 4 512 -26213411 DOWN 3 -26213411 0 512 -26213421 4 512 -26213565 DOWN 3 -26213565 0 512 -26213573 4 512 -26213710 DOWN 3 -26213710 0 512 -26213718 4 512 -26219060 DOWN 3 -26219060 0 512 -26219068 4 512 -26221652 DOWN 3 -26221652 0 512 -26229831 UP 10 -26229831 waslock = 0 -26229831 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26229859 512 16777728 -~~~ -26229926 DOWN 10 -26229926 0 16777728 -26229942 UP 10 -26229942 waslock = 0 -26229942 512 16777728 -~~~ -~~~ -26229952 512 16778752 -~~~ -~~~ -26229954 512 16778240 -26229955 homeCount = 53 -26229956 waitCount = 23 -26229957 ripCount = 22 -26229957 locktype1 = 1 -26229958 locktype2 = 2 -26229958 locktype3 = 5 -26229959 goalCount = 4 -26229959 goalTotal = 14 -26229960 otherCount = 30 -~~~ -~~~ -26230009 512 1024 -26230077 DOWN 10 -26230077 0 1024 -~~~ -~~~ -~~~ -~~~ -26230108 homeCount = 53 -26230109 waitCount = 23 -26230109 ripCount = 22 -26230110 locktype1 = 1 -26230110 locktype2 = 2 -26230111 locktype3 = 5 -26230111 goalCount = 4 -26230112 goalTotal = 14 -26230112 otherCount = 30 -~~~ -26230121 UP 10 -26230122 waslock = 0 -26230121 512 1024 -~~~ -26233087 DOWN 10 -26233087 0 1024 -~~~ -~~~ -~~~ -~~~ -26233108 homeCount = 53 -26233108 waitCount = 23 -26233109 ripCount = 22 -26233109 locktype1 = 1 -26233110 locktype2 = 2 -26233110 locktype3 = 5 -26233111 goalCount = 4 -26233111 goalTotal = 14 -26233112 otherCount = 30 -~~~ -26233148 UP 10 -26233148 waslock = 0 -26233148 512 1024 -26233177 DOWN 10 -26233177 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -26233199 homeCount = 53 -26233200 waitCount = 23 -26233200 ripCount = 22 -26233201 locktype1 = 1 -26233201 locktype2 = 2 -26233202 locktype3 = 5 -26233202 goalCount = 4 -26233203 goalTotal = 14 -26233203 otherCount = 30 -~~~ -26247738 UP 11 -26247738 1024 1024 -26248518 DOWN 11 -26248518 0 1024 -26248528 UP 11 -26248528 1024 1024 -26248828 DOWN 11 -26248828 0 1024 -26248837 UP 11 -26248837 1024 1024 -26255739 BEEP1 -26255739 BEEP2 -~~~ -~~~ -~~~ -26255767 1024 33555456 -~~~ -26255917 1024 1024 -26262091 DOWN 11 -26262091 0 1024 -~~~ -~~~ -26262114 0 0 -~~~ -~~~ -26262116 0 1 -~~~ -~~~ -26262118 0 3 -~~~ -~~~ -26262120 0 7 -~~~ -~~~ -26262122 0 15 -~~~ -~~~ -26262123 0 31 -~~~ -~~~ -26262125 0 63 -~~~ -~~~ -26262127 0 127 -~~~ -~~~ -26262129 0 255 -26262130 homeCount = 53 -26262130 waitCount = 23 -26262131 ripCount = 23 -26262131 locktype1 = 1 -26262132 locktype2 = 2 -26262153 locktype3 = 5 -26262153 goalCount = 4 -26262154 goalTotal = 14 -26262154 otherCount = 30 -~~~ -26262156 CURRENTGOAL IS [3] -~~~ -26266855 UP 2 -26266855 2 255 -~~~ -~~~ -26267703 DOWN 2 -26267703 0 255 -~~~ -~~~ -26267724 0 254 -~~~ -~~~ -26267726 0 252 -~~~ -~~~ -26267727 0 248 -~~~ -~~~ -26267729 0 240 -~~~ -~~~ -26267731 0 224 -~~~ -~~~ -26267733 0 192 -~~~ -~~~ -26267735 0 128 -~~~ -~~~ -26267737 0 0 -~~~ -~~~ -26267738 0 512 -26267739 homeCount = 53 -26267740 waitCount = 23 -26267740 ripCount = 23 -26267741 locktype1 = 1 -26267742 locktype2 = 2 -26267762 locktype3 = 5 -26267763 goalCount = 4 -26267763 goalTotal = 14 -26267764 otherCount = 31 -~~~ -26271543 UP 10 -26271543 waslock = 0 -26271543 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26271574 512 16777728 -~~~ -26271724 512 512 -26271742 DOWN 10 -26271742 0 512 -~~~ -26271766 UP 10 -26271767 waslock = 0 -26271766 512 512 -~~~ -~~~ -~~~ -26271769 512 1024 -26271770 homeCount = 54 -26271770 waitCount = 23 -26271771 ripCount = 23 -26271771 locktype1 = 1 -26271772 locktype2 = 2 -26271772 locktype3 = 5 -26271773 goalCount = 4 -26271794 goalTotal = 14 -26271794 otherCount = 31 -~~~ -~~~ -26276322 DOWN 10 -26276322 0 1024 -~~~ -~~~ -~~~ -26276348 UP 10 -26276348 waslock = 0 -26276348 512 1024 -~~~ -26276350 homeCount = 54 -26276351 waitCount = 23 -26276351 ripCount = 23 -26276352 locktype1 = 1 -26276352 locktype2 = 2 -26276353 locktype3 = 5 -26276353 goalCount = 4 -26276354 goalTotal = 14 -26276354 otherCount = 31 -~~~ -~~~ -26276422 DOWN 10 -26276422 0 1024 -~~~ -~~~ -~~~ -~~~ -26276450 homeCount = 54 -26276451 waitCount = 23 -26276451 ripCount = 23 -26276452 locktype1 = 1 -26276452 locktype2 = 2 -26276453 locktype3 = 5 -26276453 goalCount = 4 -26276454 goalTotal = 14 -26276454 otherCount = 31 -~~~ -26278218 UP 11 -26278218 1024 1024 -26278776 DOWN 11 -26278776 0 1024 -26278976 LOCKOUT 3 -~~~ -26278999 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26279003 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26279119 UP 11 -26279119 1024 0 -26280486 DOWN 11 -26280486 0 0 -26280724 UP 11 -26280724 1024 0 -26281454 DOWN 11 -26281454 0 0 -26281479 UP 11 -26281479 1024 0 -26283087 DOWN 11 -26283087 0 0 -26287949 UP 7 -26287949 64 0 -26288421 DOWN 7 -26288421 0 0 -26288485 64 0 -26289335 DOWN 7 -26289335 0 0 -26299747 512 0 -26300083 0 0 -26303999 LOCKEND -~~~ -~~~ -~~~ -26304019 0 512 -26306470 UP 10 -26306471 waslock = 0 -26306470 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26306503 512 16777728 -~~~ -26306653 512 512 -26306805 DOWN 10 -26306805 0 512 -~~~ -~~~ -26306827 0 1536 -~~~ -~~~ -26306829 0 1024 -26306830 homeCount = 55 -26306831 waitCount = 23 -26306831 ripCount = 23 -26306832 locktype1 = 1 -26306832 locktype2 = 2 -26306833 locktype3 = 6 -26306833 goalCount = 4 -26306834 goalTotal = 14 -26306834 otherCount = 31 -~~~ -26307269 UP 10 -26307269 waslock = 0 -26307269 512 1024 -~~~ -26311394 DOWN 10 -26311394 0 1024 -~~~ -~~~ -~~~ -~~~ -26311414 homeCount = 55 -26311415 waitCount = 23 -26311415 ripCount = 23 -26311416 locktype1 = 1 -26311416 locktype2 = 2 -26311417 locktype3 = 6 -26311417 goalCount = 4 -26311418 goalTotal = 14 -26311418 otherCount = 31 -~~~ -26351737 UP 10 -26351737 waslock = 0 -26351737 512 1024 -26351742 DOWN 10 -26351742 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -26351768 homeCount = 55 -26351768 waitCount = 23 -26351769 ripCount = 23 -26351769 locktype1 = 1 -26351770 locktype2 = 2 -26351770 locktype3 = 6 -26351771 goalCount = 4 -26351771 goalTotal = 14 -26351772 otherCount = 31 -~~~ -26372865 UP 1 -26372865 1 1024 -~~~ -26372883 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26372886 1 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26375957 DOWN 1 -26375957 0 0 -26385649 512 0 -26385845 0 0 -26386178 512 0 -26386431 0 0 -26386459 512 0 -26386675 0 0 -26386743 512 0 -26386792 0 0 -26386863 512 0 -26386871 0 0 -26392652 UP 12 -26392652 2048 0 -26393059 DOWN 12 -26393059 0 0 -26397883 LOCKEND -~~~ -~~~ -~~~ -26397903 0 512 -26399587 UP 12 -26399587 2048 512 -26399913 DOWN 12 -26399913 0 512 -26400043 UP 12 -26400043 2048 512 -26400088 DOWN 12 -26400088 0 512 -26400350 UP 12 -26400350 2048 512 -26400466 DOWN 12 -26400466 0 512 -26400557 UP 12 -26400557 2048 512 -26401146 DOWN 12 -26401146 0 512 -26401657 UP 12 -26401657 2048 512 -26401745 DOWN 12 -26401745 0 512 -26401786 UP 12 -26401785 2048 512 -26402161 DOWN 12 -26402161 0 512 -26412119 UP 10 -26412120 waslock = 0 -26412119 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26412148 512 16777728 -~~~ -26412157 DOWN 10 -26412157 0 16777728 -~~~ -~~~ -26412181 0 16778752 -~~~ -~~~ -26412183 0 16778240 -26412184 homeCount = 56 -26412185 waitCount = 23 -26412185 ripCount = 23 -26412186 locktype1 = 1 -26412186 locktype2 = 3 -26412187 locktype3 = 6 -26412187 goalCount = 4 -26412188 goalTotal = 14 -26412188 otherCount = 31 -~~~ -26412209 UP 10 -26412209 waslock = 0 -26412209 512 16778240 -~~~ -26412298 512 1024 -26412306 DOWN 10 -26412306 0 1024 -~~~ -~~~ -~~~ -~~~ -26412325 homeCount = 56 -26412326 waitCount = 23 -26412326 ripCount = 23 -26412327 locktype1 = 1 -26412327 locktype2 = 3 -26412328 locktype3 = 6 -26412328 goalCount = 4 -26412329 goalTotal = 14 -26412329 otherCount = 31 -~~~ -26412346 UP 10 -26412346 waslock = 0 -26412346 512 1024 -~~~ -26412417 DOWN 10 -26412417 0 1024 -~~~ -~~~ -~~~ -~~~ -26412448 homeCount = 56 -26412448 waitCount = 23 -26412449 ripCount = 23 -26412449 locktype1 = 1 -26412450 locktype2 = 3 -26412450 locktype3 = 6 -26412451 goalCount = 4 -26412451 goalTotal = 14 -26412452 otherCount = 31 -~~~ -26412489 UP 10 -26412489 waslock = 0 -26412489 512 1024 -~~~ -26412539 DOWN 10 -26412539 0 1024 -~~~ -~~~ -~~~ -~~~ -26412565 homeCount = 56 -26412566 waitCount = 23 -26412566 ripCount = 23 -26412567 locktype1 = 1 -26412567 locktype2 = 3 -26412568 locktype3 = 6 -26412568 goalCount = 4 -26412569 goalTotal = 14 -26412569 otherCount = 31 -~~~ -26412617 UP 10 -26412618 waslock = 0 -26412617 512 1024 -~~~ -26418530 DOWN 10 -26418530 0 1024 -~~~ -~~~ -~~~ -~~~ -26418559 homeCount = 56 -26418559 waitCount = 23 -26418560 ripCount = 23 -26418560 locktype1 = 1 -26418561 locktype2 = 3 -26418561 locktype3 = 6 -26418562 goalCount = 4 -26418562 goalTotal = 14 -26418563 otherCount = 31 -~~~ -26430877 UP 2 -26430877 2 1024 -~~~ -26430896 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26430900 2 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26431379 DOWN 2 -26431379 0 0 -26445486 512 0 -26445500 0 0 -26446355 512 0 -26446424 0 0 -26446456 512 0 -26446528 0 0 -26451352 UP 1 -26451352 1 0 -26451385 DOWN 1 -26451385 0 0 -26451422 1 0 -26452043 DOWN 1 -26452043 0 0 -26452263 1 0 -26452275 DOWN 1 -26452275 0 0 -26455896 LOCKEND -~~~ -~~~ -~~~ -26455917 0 512 -26474835 UP 10 -26474835 waslock = 0 -26474835 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26474862 512 16777728 -~~~ -26474896 DOWN 10 -26474896 0 16777728 -~~~ -~~~ -26474916 0 16778752 -~~~ -~~~ -26474918 0 16778240 -26474919 homeCount = 57 -26474920 waitCount = 23 -26474920 ripCount = 23 -26474921 locktype1 = 1 -26474921 locktype2 = 4 -26474922 locktype3 = 6 -26474922 goalCount = 4 -26474923 goalTotal = 14 -26474923 otherCount = 31 -~~~ -26474944 UP 10 -26474944 waslock = 0 -26474944 512 16778240 -~~~ -26475012 512 1024 -26475064 DOWN 10 -26475064 0 1024 -~~~ -~~~ -~~~ -~~~ -26475094 homeCount = 57 -26475095 waitCount = 23 -26475095 ripCount = 23 -26475096 locktype1 = 1 -26475096 locktype2 = 4 -26475097 locktype3 = 6 -26475097 goalCount = 4 -26475098 goalTotal = 14 -26475098 otherCount = 31 -~~~ -26475180 UP 10 -26475180 waslock = 0 -26475180 512 1024 -~~~ -26475308 DOWN 10 -26475308 0 1024 -~~~ -~~~ -~~~ -~~~ -26475331 homeCount = 57 -26475331 waitCount = 23 -26475332 ripCount = 23 -26475332 locktype1 = 1 -26475333 locktype2 = 4 -26475333 locktype3 = 6 -26475334 goalCount = 4 -26475334 goalTotal = 14 -26475335 otherCount = 31 -~~~ -26475336 UP 10 -26475336 waslock = 0 -26475335 512 1024 -~~~ -26480573 DOWN 10 -26480573 0 1024 -~~~ -~~~ -~~~ -~~~ -26480600 homeCount = 57 -26480600 waitCount = 23 -26480601 ripCount = 23 -26480601 locktype1 = 1 -26480602 locktype2 = 4 -26480602 locktype3 = 6 -26480603 goalCount = 4 -26480603 goalTotal = 14 -26480604 otherCount = 31 -~~~ -26482063 UP 11 -26482063 1024 1024 -26482260 DOWN 11 -26482260 0 1024 -26482460 LOCKOUT 3 -~~~ -26482478 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26482482 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26486116 UP 7 -26486116 64 0 -26486575 DOWN 7 -26486575 0 0 -26502358 512 0 -26502527 0 0 -26507478 LOCKEND -~~~ -~~~ -~~~ -26507497 0 512 -26610111 UP 10 -26610111 waslock = 0 -26610111 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26610142 512 16777728 -~~~ -26610292 512 512 -26610742 DOWN 10 -26610742 0 512 -~~~ -~~~ -26610767 0 1536 -~~~ -~~~ -26610769 0 1024 -26610770 homeCount = 58 -26610771 waitCount = 23 -26610771 ripCount = 23 -26610772 locktype1 = 1 -26610772 locktype2 = 4 -26610773 locktype3 = 7 -26610773 goalCount = 4 -26610774 goalTotal = 14 -26610774 otherCount = 31 -~~~ -26610795 UP 10 -26610796 waslock = 0 -26610795 512 1024 -~~~ -26611050 DOWN 10 -26611050 0 1024 -26611074 UP 10 -26611075 waslock = 0 -26611074 512 1024 -~~~ -~~~ -~~~ -~~~ -26611083 homeCount = 58 -26611083 waitCount = 23 -26611084 ripCount = 23 -26611084 locktype1 = 1 -26611085 locktype2 = 4 -26611085 locktype3 = 7 -26611086 goalCount = 4 -26611086 goalTotal = 14 -26611087 otherCount = 31 -~~~ -~~~ -26611219 DOWN 10 -26611219 0 1024 -~~~ -~~~ -~~~ -~~~ -26611240 homeCount = 58 -26611240 waitCount = 23 -26611241 ripCount = 23 -26611241 locktype1 = 1 -26611242 locktype2 = 4 -26611242 locktype3 = 7 -26611243 goalCount = 4 -26611243 goalTotal = 14 -26611244 otherCount = 31 -~~~ -26611244 UP 10 -26611245 waslock = 0 -26611244 512 1024 -~~~ -26611380 DOWN 10 -26611380 0 1024 -~~~ -26611412 UP 10 -26611412 waslock = 0 -26611412 512 1024 -~~~ -~~~ -~~~ -26611415 homeCount = 58 -26611416 waitCount = 23 -26611416 ripCount = 23 -26611417 locktype1 = 1 -26611417 locktype2 = 4 -26611418 locktype3 = 7 -26611418 goalCount = 4 -26611419 goalTotal = 14 -26611419 otherCount = 31 -~~~ -~~~ -26611544 DOWN 10 -26611544 0 1024 -26611573 UP 10 -26611573 waslock = 0 -26611573 512 1024 -~~~ -~~~ -~~~ -~~~ -26611579 homeCount = 58 -26611579 waitCount = 23 -26611580 ripCount = 23 -26611580 locktype1 = 1 -26611581 locktype2 = 4 -26611581 locktype3 = 7 -26611582 goalCount = 4 -26611582 goalTotal = 14 -26611583 otherCount = 31 -~~~ -~~~ -26611731 DOWN 10 -26611731 0 1024 -~~~ -~~~ -~~~ -~~~ -26611755 homeCount = 58 -26611756 waitCount = 23 -26611756 ripCount = 23 -26611757 locktype1 = 1 -26611757 locktype2 = 4 -26611758 locktype3 = 7 -26611758 goalCount = 4 -26611759 goalTotal = 14 -26611759 otherCount = 31 -~~~ -26611760 UP 10 -26611760 waslock = 0 -26611760 512 1024 -~~~ -26611907 DOWN 10 -26611907 0 1024 -~~~ -~~~ -~~~ -~~~ -26611935 homeCount = 58 -26611935 waitCount = 23 -26611936 ripCount = 23 -26611936 locktype1 = 1 -26611937 locktype2 = 4 -26611937 locktype3 = 7 -26611938 goalCount = 4 -26611938 goalTotal = 14 -26611939 otherCount = 31 -~~~ -26611943 UP 10 -26611943 waslock = 0 -26611943 512 1024 -~~~ -26612078 DOWN 10 -26612078 0 1024 -26612098 UP 10 -26612098 waslock = 0 -26612098 512 1024 -~~~ -~~~ -~~~ -~~~ -26612110 homeCount = 58 -26612111 waitCount = 23 -26612111 ripCount = 23 -26612112 locktype1 = 1 -26612112 locktype2 = 4 -26612113 locktype3 = 7 -26612113 goalCount = 4 -26612114 goalTotal = 14 -26612114 otherCount = 31 -~~~ -~~~ -26613140 DOWN 10 -26613140 0 1024 -26613146 UP 10 -26613146 waslock = 0 -26613146 512 1024 -~~~ -~~~ -~~~ -~~~ -26613168 homeCount = 58 -26613169 waitCount = 23 -26613169 ripCount = 23 -26613170 locktype1 = 1 -26613170 locktype2 = 4 -26613171 locktype3 = 7 -26613171 goalCount = 4 -26613172 goalTotal = 14 -26613172 otherCount = 31 -~~~ -~~~ -26613312 DOWN 10 -26613312 0 1024 -26613330 UP 10 -26613330 waslock = 0 -26613330 512 1024 -~~~ -~~~ -~~~ -~~~ -26613338 homeCount = 58 -26613339 waitCount = 23 -26613339 ripCount = 23 -26613340 locktype1 = 1 -26613340 locktype2 = 4 -26613341 locktype3 = 7 -26613341 goalCount = 4 -26613342 goalTotal = 14 -26613342 otherCount = 31 -~~~ -~~~ -26613483 DOWN 10 -26613483 0 1024 -~~~ -~~~ -~~~ -~~~ -26613506 homeCount = 58 -26613507 waitCount = 23 -26613508 ripCount = 23 -26613508 locktype1 = 1 -26613509 locktype2 = 4 -26613509 locktype3 = 7 -26613510 goalCount = 4 -26613510 goalTotal = 14 -26613511 otherCount = 31 -~~~ -26613513 UP 10 -26613514 waslock = 0 -26613513 512 1024 -~~~ -26614355 DOWN 10 -26614355 0 1024 -26614372 UP 10 -26614373 waslock = 0 -26614372 512 1024 -~~~ -~~~ -~~~ -~~~ -26614377 homeCount = 58 -26614378 waitCount = 23 -26614378 ripCount = 23 -26614379 locktype1 = 1 -26614379 locktype2 = 4 -26614380 locktype3 = 7 -26614380 goalCount = 4 -26614381 goalTotal = 14 -26614381 otherCount = 31 -~~~ -~~~ -26614729 DOWN 10 -26614729 0 1024 -26614735 UP 10 -26614735 waslock = 0 -26614735 512 1024 -~~~ -~~~ -~~~ -~~~ -26614757 homeCount = 58 -26614758 waitCount = 23 -26614758 ripCount = 23 -26614759 locktype1 = 1 -26614759 locktype2 = 4 -26614760 locktype3 = 7 -26614760 goalCount = 4 -26614761 goalTotal = 14 -26614761 otherCount = 31 -~~~ -~~~ -26614892 DOWN 10 -26614892 0 1024 -~~~ -26614914 UP 10 -26614914 waslock = 0 -26614914 512 1024 -~~~ -~~~ -~~~ -26614917 homeCount = 58 -26614918 waitCount = 23 -26614918 ripCount = 23 -26614919 locktype1 = 1 -26614919 locktype2 = 4 -26614920 locktype3 = 7 -26614920 goalCount = 4 -26614921 goalTotal = 14 -26614921 otherCount = 31 -~~~ -~~~ -26615008 DOWN 10 -26615008 0 1024 -~~~ -~~~ -~~~ -~~~ -26615036 homeCount = 58 -26615037 waitCount = 23 -26615038 ripCount = 23 -26615038 locktype1 = 1 -26615039 locktype2 = 4 -26615039 locktype3 = 7 -26615040 goalCount = 4 -26615040 goalTotal = 14 -26615041 otherCount = 31 -~~~ -26638056 UP 5 -26638056 16 1024 -~~~ -26638084 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26638088 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26638140 DOWN 5 -26638140 0 0 -26638216 16 0 -26638335 DOWN 5 -26638335 0 0 -26638492 16 0 -26638740 DOWN 5 -26638740 0 0 -26663084 LOCKEND -~~~ -~~~ -~~~ -26663104 0 512 -26828055 UP 10 -26828055 waslock = 0 -26828055 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26828081 512 16777728 -~~~ -26828231 512 512 -26828398 DOWN 10 -26828398 0 512 -~~~ -~~~ -26828424 0 1536 -~~~ -~~~ -26828426 0 1024 -26828427 homeCount = 59 -26828427 waitCount = 23 -26828428 ripCount = 23 -26828428 locktype1 = 1 -26828429 locktype2 = 5 -26828429 locktype3 = 7 -26828430 goalCount = 4 -26828430 goalTotal = 14 -26828431 otherCount = 31 -~~~ -26828487 UP 10 -26828488 waslock = 0 -26828487 512 1024 -~~~ -26828917 DOWN 10 -26828917 0 1024 -~~~ -~~~ -~~~ -26828938 UP 10 -26828938 waslock = 0 -26828938 512 1024 -~~~ -26828940 homeCount = 59 -26828940 waitCount = 23 -26828941 ripCount = 23 -26828941 locktype1 = 1 -26828942 locktype2 = 5 -26828942 locktype3 = 7 -26828943 goalCount = 4 -26828943 goalTotal = 14 -26828944 otherCount = 31 -~~~ -~~~ -26829068 DOWN 10 -26829068 0 1024 -26829088 UP 10 -26829088 waslock = 0 -26829088 512 1024 -~~~ -~~~ -~~~ -~~~ -26829100 homeCount = 59 -26829100 waitCount = 23 -26829101 ripCount = 23 -26829101 locktype1 = 1 -26829102 locktype2 = 5 -26829102 locktype3 = 7 -26829103 goalCount = 4 -26829103 goalTotal = 14 -26829104 otherCount = 31 -~~~ -~~~ -26829218 DOWN 10 -26829218 0 1024 -26829240 UP 10 -26829240 waslock = 0 -26829240 512 1024 -~~~ -~~~ -~~~ -~~~ -26829251 homeCount = 59 -26829252 waitCount = 23 -26829252 ripCount = 23 -26829253 locktype1 = 1 -26829253 locktype2 = 5 -26829254 locktype3 = 7 -26829254 goalCount = 4 -26829255 goalTotal = 14 -26829256 otherCount = 31 -~~~ -~~~ -26829378 DOWN 10 -26829378 0 1024 -26829396 UP 10 -26829397 waslock = 0 -26829396 512 1024 -~~~ -~~~ -~~~ -~~~ -26829421 homeCount = 59 -26829422 waitCount = 23 -26829422 ripCount = 23 -26829423 locktype1 = 1 -26829423 locktype2 = 5 -26829424 locktype3 = 7 -26829424 goalCount = 4 -26829425 goalTotal = 14 -26829425 otherCount = 31 -~~~ -~~~ -26829533 DOWN 10 -26829533 0 1024 -26829546 UP 10 -26829546 waslock = 0 -26829546 512 1024 -~~~ -~~~ -~~~ -~~~ -26829570 homeCount = 59 -26829571 waitCount = 23 -26829571 ripCount = 23 -26829572 locktype1 = 1 -26829572 locktype2 = 5 -26829573 locktype3 = 7 -26829573 goalCount = 4 -26829574 goalTotal = 14 -26829574 otherCount = 31 -~~~ -~~~ -26836773 DOWN 10 -26836773 0 1024 -~~~ -~~~ -~~~ -~~~ -26836797 homeCount = 59 -26836798 waitCount = 23 -26836798 ripCount = 23 -26836799 locktype1 = 1 -26836799 locktype2 = 5 -26836800 locktype3 = 7 -26836800 goalCount = 4 -26836801 goalTotal = 14 -26836801 otherCount = 31 -~~~ -26836807 UP 10 -26836807 waslock = 0 -26836807 512 1024 -~~~ -26836875 DOWN 10 -26836875 0 1024 -~~~ -~~~ -~~~ -~~~ -26836898 homeCount = 59 -26836899 waitCount = 23 -26836899 ripCount = 23 -26836900 locktype1 = 1 -26836900 locktype2 = 5 -26836901 locktype3 = 7 -26836901 goalCount = 4 -26836902 goalTotal = 14 -26836902 otherCount = 31 -~~~ -26840595 UP 11 -26840595 1024 1024 -26841373 DOWN 11 -26841373 0 1024 -26841547 UP 11 -26841547 1024 1024 -26842677 DOWN 11 -26842677 0 1024 -26842764 UP 11 -26842764 1024 1024 -26844956 DOWN 11 -26844956 0 1024 -26845156 LOCKOUT 3 -~~~ -26845172 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -26845176 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26845183 UP 11 -26845183 1024 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26845256 DOWN 11 -26845256 0 0 -26845365 UP 11 -26845365 1024 0 -26845641 DOWN 11 -26845641 0 0 -26846066 UP 11 -26846066 1024 0 -26846157 DOWN 11 -26846157 0 0 -26866622 UP 8 -26866622 128 0 -26866677 DOWN 8 -26866677 0 0 -26866696 128 0 -26867041 DOWN 8 -26867041 0 0 -26867078 128 0 -26867109 DOWN 8 -26867109 0 0 -26870172 LOCKEND -~~~ -~~~ -~~~ -26870193 0 512 -26877037 UP 10 -26877037 waslock = 0 -26877037 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26877067 512 16777728 -~~~ -26877073 DOWN 10 -26877073 0 16777728 -~~~ -~~~ -26877082 0 16778752 -~~~ -~~~ -26877084 0 16778240 -26877085 homeCount = 60 -26877085 waitCount = 23 -26877086 ripCount = 23 -26877086 locktype1 = 1 -26877087 locktype2 = 5 -26877087 locktype3 = 8 -26877088 goalCount = 4 -26877088 goalTotal = 14 -26877089 otherCount = 31 -~~~ -26877151 UP 10 -26877151 waslock = 0 -26877151 512 16778240 -~~~ -26877201 DOWN 10 -26877201 0 16778240 -26877217 0 1024 -~~~ -~~~ -~~~ -~~~ -26877224 homeCount = 60 -26877225 waitCount = 23 -26877225 ripCount = 23 -26877226 locktype1 = 1 -26877226 locktype2 = 5 -26877227 locktype3 = 8 -26877227 goalCount = 4 -26877228 goalTotal = 14 -26877228 otherCount = 31 -~~~ -26877534 UP 10 -26877535 waslock = 0 -26877534 512 1024 -~~~ -26877694 DOWN 10 -26877694 0 1024 -~~~ -~~~ -~~~ -26877715 UP 10 -26877715 waslock = 0 -26877715 512 1024 -~~~ -26877717 homeCount = 60 -26877718 waitCount = 23 -26877718 ripCount = 23 -26877719 locktype1 = 1 -26877719 locktype2 = 5 -26877720 locktype3 = 8 -26877720 goalCount = 4 -26877721 goalTotal = 14 -26877742 otherCount = 31 -~~~ -~~~ -26877844 DOWN 10 -26877844 0 1024 -~~~ -~~~ -~~~ -~~~ -26877866 homeCount = 60 -26877866 waitCount = 23 -26877867 ripCount = 23 -26877867 locktype1 = 1 -26877868 locktype2 = 5 -26877868 locktype3 = 8 -26877869 goalCount = 4 -26877869 goalTotal = 14 -26877870 otherCount = 31 -~~~ -26877872 UP 10 -26877873 waslock = 0 -26877872 512 1024 -~~~ -26877995 DOWN 10 -26877994 0 1024 -~~~ -~~~ -~~~ -~~~ -26878015 homeCount = 60 -26878016 waitCount = 23 -26878016 ripCount = 23 -26878017 locktype1 = 1 -26878017 locktype2 = 5 -26878018 locktype3 = 8 -26878018 goalCount = 4 -26878019 goalTotal = 14 -26878019 otherCount = 31 -~~~ -26878027 UP 10 -26878027 waslock = 0 -26878027 512 1024 -~~~ -26878159 DOWN 10 -26878159 0 1024 -26878173 UP 10 -26878174 waslock = 0 -26878173 512 1024 -~~~ -~~~ -~~~ -~~~ -26878196 homeCount = 60 -26878196 waitCount = 23 -26878197 ripCount = 23 -26878197 locktype1 = 1 -26878198 locktype2 = 5 -26878198 locktype3 = 8 -26878199 goalCount = 4 -26878199 goalTotal = 14 -26878200 otherCount = 31 -~~~ -~~~ -26878498 DOWN 10 -26878498 0 1024 -26878503 UP 10 -26878503 waslock = 0 -26878503 512 1024 -~~~ -~~~ -~~~ -~~~ -26878527 homeCount = 60 -26878528 waitCount = 23 -26878528 ripCount = 23 -26878529 locktype1 = 1 -26878529 locktype2 = 5 -26878530 locktype3 = 8 -26878530 goalCount = 4 -26878531 goalTotal = 14 -26878531 otherCount = 31 -~~~ -~~~ -26882217 DOWN 10 -26882217 0 1024 -26882229 UP 10 -26882229 waslock = 0 -26882229 512 1024 -~~~ -~~~ -~~~ -~~~ -26882244 homeCount = 60 -26882245 waitCount = 23 -26882245 ripCount = 23 -26882246 locktype1 = 1 -26882246 locktype2 = 5 -26882247 locktype3 = 8 -26882247 goalCount = 4 -26882248 goalTotal = 14 -26882248 otherCount = 31 -~~~ -~~~ -26882330 DOWN 10 -26882330 0 1024 -~~~ -~~~ -~~~ -~~~ -26882359 homeCount = 60 -26882360 waitCount = 23 -26882360 ripCount = 23 -26882361 locktype1 = 1 -26882361 locktype2 = 5 -26882362 locktype3 = 8 -26882362 goalCount = 4 -26882363 goalTotal = 14 -26882363 otherCount = 31 -~~~ -26882377 UP 10 -26882378 waslock = 0 -26882377 512 1024 -~~~ -26882442 DOWN 10 -26882442 0 1024 -~~~ -~~~ -~~~ -~~~ -26882465 homeCount = 60 -26882465 waitCount = 23 -26882466 ripCount = 23 -26882466 locktype1 = 1 -26882467 locktype2 = 5 -26882467 locktype3 = 8 -26882468 goalCount = 4 -26882468 goalTotal = 14 -26882469 otherCount = 31 -~~~ -26885557 UP 11 -26885557 1024 1024 -26886036 DOWN 11 -26886036 0 1024 -26886087 UP 11 -26886087 1024 1024 -26888031 DOWN 11 -26888031 0 1024 -26888091 UP 11 -26888091 1024 1024 -26889084 DOWN 11 -26889084 0 1024 -26889112 UP 11 -26889112 1024 1024 -26889129 DOWN 11 -26889129 0 1024 -26889167 UP 11 -26889167 1024 1024 -26892557 BEEP1 -26892557 BEEP2 -~~~ -~~~ -~~~ -26892586 1024 33555456 -~~~ -26892736 1024 1024 -26899793 DOWN 11 -26899793 0 1024 -~~~ -~~~ -26899812 0 0 -~~~ -~~~ -26899814 0 1 -~~~ -~~~ -26899816 0 3 -~~~ -~~~ -26899818 0 7 -~~~ -~~~ -26899820 0 15 -~~~ -~~~ -26899821 0 31 -~~~ -~~~ -26899823 0 63 -~~~ -~~~ -26899825 0 127 -~~~ -~~~ -26899827 0 255 -26899828 homeCount = 60 -26899828 waitCount = 23 -26899829 ripCount = 24 -26899830 locktype1 = 1 -26899830 locktype2 = 5 -26899851 locktype3 = 8 -26899852 goalCount = 4 -26899852 goalTotal = 14 -26899853 otherCount = 31 -~~~ -26899854 CURRENTGOAL IS [3] -~~~ -26899854 UP 11 -26899854 1024 255 -26899916 DOWN 11 -26899916 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26899951 homeCount = 60 -26899951 waitCount = 23 -26899952 ripCount = 24 -26899952 locktype1 = 1 -26899953 locktype2 = 5 -26899953 locktype3 = 8 -26899954 goalCount = 4 -26899954 goalTotal = 14 -26899955 otherCount = 31 -~~~ -26899956 CURRENTGOAL IS [3] -~~~ -26903241 UP 6 -26903241 32 255 -~~~ -~~~ -26903783 DOWN 6 -26903783 0 255 -~~~ -~~~ -26903805 0 254 -~~~ -~~~ -26903807 0 252 -~~~ -~~~ -26903809 0 248 -~~~ -~~~ -26903810 0 240 -~~~ -~~~ -26903812 0 224 -~~~ -~~~ -26903814 0 192 -~~~ -~~~ -26903816 0 128 -~~~ -~~~ -26903818 0 0 -~~~ -~~~ -26903820 0 512 -26903821 homeCount = 60 -26903821 waitCount = 23 -26903822 ripCount = 24 -26903822 locktype1 = 1 -26903823 locktype2 = 5 -26903844 locktype3 = 8 -26903844 goalCount = 4 -26903845 goalTotal = 14 -26903845 otherCount = 32 -~~~ -26911555 UP 10 -26911555 waslock = 0 -26911555 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26911582 512 16777728 -~~~ -26911731 512 512 -26912233 DOWN 10 -26912233 0 512 -~~~ -~~~ -26912255 0 2560 -~~~ -~~~ -26912257 0 2048 -26912258 homeCount = 61 -26912259 waitCount = 23 -26912259 ripCount = 24 -26912260 locktype1 = 1 -26912260 locktype2 = 5 -26912261 locktype3 = 8 -26912261 goalCount = 4 -26912262 goalTotal = 14 -26912262 otherCount = 32 -~~~ -26912287 UP 10 -26912287 waslock = 0 -26912287 512 2048 -~~~ -26920292 DOWN 10 -26920292 0 2048 -~~~ -~~~ -~~~ -~~~ -26920320 homeCount = 61 -26920320 waitCount = 23 -26920321 ripCount = 24 -26920321 locktype1 = 1 -26920322 locktype2 = 5 -26920322 locktype3 = 8 -26920323 goalCount = 4 -26920323 goalTotal = 14 -26920324 otherCount = 32 -~~~ -26920339 UP 10 -26920340 waslock = 0 -26920339 512 2048 -~~~ -26920386 DOWN 10 -26920386 0 2048 -~~~ -~~~ -~~~ -~~~ -26920410 homeCount = 61 -26920411 waitCount = 23 -26920411 ripCount = 24 -26920412 locktype1 = 1 -26920412 locktype2 = 5 -26920413 locktype3 = 8 -26920413 goalCount = 4 -26920414 goalTotal = 14 -26920414 otherCount = 32 -~~~ -26923784 UP 12 -26923784 2048 2048 -26925861 DOWN 12 -26925861 0 2048 -26925884 UP 12 -26925884 2048 2048 -26925973 DOWN 12 -26925973 0 2048 -26926052 UP 12 -26926052 2048 2048 -26926816 DOWN 12 -26926816 0 2048 -26926864 UP 12 -26926864 2048 2048 -26926874 DOWN 12 -26926874 0 2048 -26926909 UP 12 -26926909 2048 2048 -26926925 DOWN 12 -26926925 0 2048 -26926989 UP 12 -26926989 2048 2048 -26926999 DOWN 12 -26926999 0 2048 -26927041 UP 12 -26927041 2048 2048 -26927325 DOWN 12 -26927325 0 2048 -26927356 UP 12 -26927356 2048 2048 -26927785 CLICK1 -26927785 CLICK2 -~~~ -~~~ -~~~ -26927811 2048 67110912 -~~~ -26927961 2048 2048 -26928178 DOWN 12 -26928178 0 2048 -26928199 UP 12 -26928199 2048 2048 -~~~ -~~~ -26928218 2048 0 -~~~ -~~~ -26928220 2048 1 -~~~ -~~~ -26928222 2048 3 -~~~ -~~~ -26928224 2048 7 -~~~ -~~~ -26928226 2048 15 -~~~ -~~~ -26928227 2048 31 -~~~ -~~~ -26928229 2048 63 -~~~ -~~~ -26928231 2048 127 -~~~ -~~~ -26928233 2048 255 -26928234 homeCount = 61 -26928234 waitCount = 24 -26928235 ripCount = 24 -26928256 locktype1 = 1 -26928256 locktype2 = 5 -26928257 locktype3 = 8 -26928257 goalCount = 4 -26928258 goalTotal = 14 -26928258 otherCount = 32 -~~~ -26928259 CURRENTGOAL IS [3] -~~~ -26933900 DOWN 12 -26933900 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26933935 homeCount = 61 -26933936 waitCount = 24 -26933937 ripCount = 24 -26933937 locktype1 = 1 -26933938 locktype2 = 5 -26933938 locktype3 = 8 -26933939 goalCount = 4 -26933939 goalTotal = 14 -26933940 otherCount = 32 -~~~ -26933941 CURRENTGOAL IS [3] -~~~ -26933962 UP 12 -26933962 2048 255 -26933994 DOWN 12 -26933994 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -26934035 homeCount = 61 -26934036 waitCount = 24 -26934036 ripCount = 24 -26934037 locktype1 = 1 -26934037 locktype2 = 5 -26934038 locktype3 = 8 -26934038 goalCount = 4 -26934039 goalTotal = 14 -26934039 otherCount = 32 -~~~ -26934040 CURRENTGOAL IS [3] -~~~ -26937185 UP 3 -26937185 4 255 -~~~ -~~~ -26937210 outer reward -~~~ -26937210 4 262399 -~~~ -~~~ -26937426 DOWN 3 -26937426 0 262399 -~~~ -~~~ -26937450 0 262398 -~~~ -~~~ -26937452 0 262396 -~~~ -~~~ -26937453 0 262392 -~~~ -~~~ -26937455 0 262384 -~~~ -~~~ -26937457 0 262368 -~~~ -~~~ -26937459 0 262336 -~~~ -~~~ -26937461 0 262272 -~~~ -~~~ -26937463 0 262144 -~~~ -~~~ -26937464 0 262656 -26937465 homeCount = 61 -26937466 waitCount = 24 -26937466 ripCount = 24 -26937487 locktype1 = 1 -26937488 locktype2 = 5 -26937488 locktype3 = 8 -26937489 goalCount = 5 -26937489 goalTotal = 15 -26937490 otherCount = 32 -~~~ -26937490 4 262656 -26937660 4 512 -26937920 DOWN 3 -26937920 0 512 -26937928 4 512 -26938037 DOWN 3 -26938037 0 512 -26938051 4 512 -26938169 DOWN 3 -26938169 0 512 -26938180 4 512 -26938303 DOWN 3 -26938303 0 512 -26938316 4 512 -26938445 DOWN 3 -26938445 0 512 -26938449 4 512 -26947063 DOWN 3 -26947063 0 512 -26947088 4 512 -26947159 DOWN 3 -26947159 0 512 -26953706 UP 10 -26953707 waslock = 0 -26953706 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26953737 512 16777728 -~~~ -26953887 512 512 -26957615 DOWN 10 -26957615 0 512 -~~~ -~~~ -26957638 0 2560 -~~~ -~~~ -26957640 0 2048 -26957641 homeCount = 62 -26957641 waitCount = 24 -26957642 ripCount = 24 -26957642 locktype1 = 1 -26957643 locktype2 = 5 -26957643 locktype3 = 8 -26957644 goalCount = 5 -26957644 goalTotal = 15 -26957645 otherCount = 32 -~~~ -26957681 UP 10 -26957681 waslock = 0 -26957681 512 2048 -26957700 DOWN 10 -26957700 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -26957724 homeCount = 62 -26957724 waitCount = 24 -26957725 ripCount = 24 -26957725 locktype1 = 1 -26957726 locktype2 = 5 -26957726 locktype3 = 8 -26957727 goalCount = 5 -26957727 goalTotal = 15 -26957728 otherCount = 32 -~~~ -26962052 UP 12 -26962052 2048 2048 -26964338 DOWN 12 -26964338 0 2048 -26964404 UP 12 -26964404 2048 2048 -26964424 DOWN 12 -26964424 0 2048 -26964540 UP 12 -26964540 2048 2048 -26965052 CLICK1 -26965052 CLICK2 -~~~ -~~~ -~~~ -26965081 2048 67110912 -~~~ -26965231 2048 2048 -26973280 DOWN 12 -26973280 0 2048 -~~~ -~~~ -26973298 0 0 -~~~ -~~~ -26973300 0 1 -~~~ -~~~ -26973302 0 3 -~~~ -~~~ -26973303 0 7 -~~~ -~~~ -26973305 0 15 -~~~ -~~~ -26973307 0 31 -~~~ -~~~ -26973309 0 63 -~~~ -~~~ -26973311 0 127 -~~~ -~~~ -26973312 0 255 -26973314 homeCount = 62 -26973314 waitCount = 25 -26973315 ripCount = 24 -26973315 locktype1 = 1 -26973316 locktype2 = 5 -26973337 locktype3 = 8 -26973337 goalCount = 5 -26973338 goalTotal = 15 -26973338 otherCount = 32 -~~~ -26973339 CURRENTGOAL IS [3] -~~~ -26977815 UP 3 -26977815 4 255 -~~~ -~~~ -26977840 DOWN 3 -26977840 0 255 -26977841 outer reward -~~~ -~~~ -26977843 0 262399 -~~~ -~~~ -~~~ -26977869 0 262398 -~~~ -~~~ -26977871 0 262396 -~~~ -~~~ -26977873 0 262392 -~~~ -~~~ -26977875 0 262384 -~~~ -~~~ -26977876 0 262368 -~~~ -~~~ -26977878 0 262336 -~~~ -~~~ -26977880 0 262272 -~~~ -~~~ -26977882 0 262144 -~~~ -~~~ -26977884 0 262656 -26977885 homeCount = 62 -26977885 waitCount = 25 -26977886 ripCount = 24 -26977907 locktype1 = 1 -26977907 locktype2 = 5 -26977908 locktype3 = 8 -26977908 goalCount = 6 -26977909 goalTotal = 16 -26977909 otherCount = 32 -~~~ -26977915 4 262656 -26978097 DOWN 3 -26978097 0 262656 -26978154 4 262656 -26978291 4 512 -26978403 DOWN 3 -26978403 0 512 -26978408 4 512 -26978514 DOWN 3 -26978514 0 512 -26978539 4 512 -26978642 DOWN 3 -26978642 0 512 -26978666 4 512 -26978769 DOWN 3 -26978769 0 512 -26978798 4 512 -26978909 DOWN 3 -26978909 0 512 -26978930 4 512 -26979051 DOWN 3 -26979051 0 512 -26979070 4 512 -26979189 DOWN 3 -26979189 0 512 -26979206 4 512 -26979331 DOWN 3 -26979331 0 512 -26979347 4 512 -26979473 DOWN 3 -26979473 0 512 -26979486 4 512 -26986107 DOWN 3 -26986107 0 512 -26986116 4 512 -26986209 DOWN 3 -26986209 0 512 -26996165 UP 10 -26996165 waslock = 0 -26996165 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -26996194 512 16777728 -~~~ -26996209 DOWN 10 -26996209 0 16777728 -~~~ -~~~ -26996229 0 16778752 -~~~ -~~~ -26996231 0 16778240 -26996232 homeCount = 63 -26996233 waitCount = 25 -26996233 ripCount = 24 -26996234 locktype1 = 1 -26996234 locktype2 = 5 -26996235 locktype3 = 8 -26996235 goalCount = 6 -26996236 goalTotal = 16 -26996236 otherCount = 32 -~~~ -26996334 UP 10 -26996335 waslock = 0 -26996334 512 16778240 -26996344 512 1024 -~~~ -26999145 DOWN 10 -26999145 0 1024 -~~~ -~~~ -~~~ -~~~ -26999172 homeCount = 63 -26999173 waitCount = 25 -26999173 ripCount = 24 -26999174 locktype1 = 1 -26999174 locktype2 = 5 -26999175 locktype3 = 8 -26999175 goalCount = 6 -26999176 goalTotal = 16 -26999176 otherCount = 32 -~~~ -26999205 UP 10 -26999205 waslock = 0 -26999205 512 1024 -~~~ -26999233 DOWN 10 -26999233 0 1024 -~~~ -~~~ -~~~ -~~~ -26999253 homeCount = 63 -26999254 waitCount = 25 -26999255 ripCount = 24 -26999255 locktype1 = 1 -26999256 locktype2 = 5 -26999256 locktype3 = 8 -26999257 goalCount = 6 -26999257 goalTotal = 16 -26999258 otherCount = 32 -~~~ -27001162 UP 11 -27001162 1024 1024 -27001306 DOWN 11 -27001306 0 1024 -27001401 UP 11 -27001401 1024 1024 -27003166 DOWN 11 -27003166 0 1024 -27003171 UP 11 -27003171 1024 1024 -27004049 DOWN 11 -27004049 0 1024 -27004086 UP 11 -27004086 1024 1024 -27007946 DOWN 11 -27007946 0 1024 -27008003 UP 11 -27008003 1024 1024 -27008162 BEEP1 -27008162 BEEP2 -~~~ -~~~ -~~~ -27008181 1024 33555456 -~~~ -27008331 1024 1024 -27014589 DOWN 11 -27014589 0 1024 -27014597 UP 11 -27014597 1024 1024 -~~~ -~~~ -27014609 1024 0 -~~~ -~~~ -27014611 1024 1 -~~~ -~~~ -27014613 1024 3 -~~~ -~~~ -27014615 1024 7 -~~~ -~~~ -27014617 1024 15 -~~~ -~~~ -27014618 1024 31 -~~~ -~~~ -27014620 1024 63 -~~~ -~~~ -27014622 1024 127 -~~~ -~~~ -27014624 1024 255 -27014625 homeCount = 63 -27014625 waitCount = 25 -27014626 ripCount = 25 -27014626 locktype1 = 1 -27014648 locktype2 = 5 -27014648 locktype3 = 8 -27014649 goalCount = 6 -27014649 goalTotal = 16 -27014650 otherCount = 32 -~~~ -27014651 CURRENTGOAL IS [3] -~~~ -27014657 DOWN 11 -27014657 0 255 -27014686 UP 11 -27014686 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27014706 homeCount = 63 -27014707 waitCount = 25 -27014707 ripCount = 25 -27014708 locktype1 = 1 -27014708 locktype2 = 5 -27014709 locktype3 = 8 -27014709 goalCount = 6 -27014710 goalTotal = 16 -27014710 otherCount = 32 -~~~ -27014712 CURRENTGOAL IS [3] -~~~ -27017012 DOWN 11 -27017012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27017052 homeCount = 63 -27017052 waitCount = 25 -27017053 ripCount = 25 -27017053 locktype1 = 1 -27017054 locktype2 = 5 -27017054 locktype3 = 8 -27017055 goalCount = 6 -27017055 goalTotal = 16 -27017056 otherCount = 32 -~~~ -27017057 CURRENTGOAL IS [3] -~~~ -27021381 UP 3 -27021381 4 255 -~~~ -27021406 DOWN 3 -27021406 0 255 -~~~ -27021408 outer reward -~~~ -27021408 0 262399 -~~~ -~~~ -~~~ -~~~ -27021428 0 262398 -~~~ -~~~ -27021429 0 262396 -~~~ -~~~ -27021431 0 262392 -~~~ -~~~ -27021433 0 262384 -~~~ -~~~ -27021435 0 262368 -~~~ -~~~ -27021437 0 262336 -~~~ -~~~ -27021439 0 262272 -~~~ -~~~ -27021440 0 262144 -~~~ -~~~ -27021442 0 262656 -27021443 homeCount = 63 -27021444 waitCount = 25 -27021444 ripCount = 25 -27021465 locktype1 = 1 -27021466 locktype2 = 5 -27021466 locktype3 = 8 -27021467 goalCount = 7 -27021467 goalTotal = 17 -27021468 otherCount = 32 -~~~ -27021468 4 262656 -27021652 DOWN 3 -27021652 0 262656 -27021699 4 262656 -27021858 4 512 -27021932 DOWN 3 -27021932 0 512 -27021941 4 512 -27022042 DOWN 3 -27022042 0 512 -27022076 4 512 -27022167 DOWN 3 -27022167 0 512 -27022203 4 512 -27022292 DOWN 3 -27022292 0 512 -27022330 4 512 -27022423 DOWN 3 -27022423 0 512 -27022459 4 512 -27022563 DOWN 3 -27022563 0 512 -27022595 4 512 -27022716 DOWN 3 -27022716 0 512 -27022736 4 512 -27022857 DOWN 3 -27022857 0 512 -27022878 4 512 -27023007 DOWN 3 -27023007 0 512 -27023021 4 512 -27023155 DOWN 3 -27023155 0 512 -27023169 4 512 -27023313 DOWN 3 -27023313 0 512 -27023320 4 512 -27023931 DOWN 3 -27023931 0 512 -27023939 4 512 -27030753 DOWN 3 -27030753 0 512 -27036671 UP 10 -27036671 waslock = 0 -27036671 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27036703 512 16777728 -~~~ -27036738 DOWN 10 -27036738 0 16777728 -~~~ -~~~ -27036757 0 16778752 -~~~ -~~~ -27036759 0 16778240 -27036760 homeCount = 64 -27036761 waitCount = 25 -27036761 ripCount = 25 -27036762 locktype1 = 1 -27036762 locktype2 = 5 -27036763 locktype3 = 8 -27036763 goalCount = 7 -27036764 goalTotal = 17 -27036764 otherCount = 32 -~~~ -27036785 UP 10 -27036786 waslock = 0 -27036785 512 16778240 -~~~ -27036853 512 1024 -27036868 DOWN 10 -27036868 0 1024 -~~~ -~~~ -~~~ -~~~ -27036891 homeCount = 64 -27036892 waitCount = 25 -27036892 ripCount = 25 -27036893 locktype1 = 1 -27036893 locktype2 = 5 -27036894 locktype3 = 8 -27036894 goalCount = 7 -27036895 goalTotal = 17 -27036895 otherCount = 32 -~~~ -27036905 UP 10 -27036905 waslock = 0 -27036905 512 1024 -~~~ -27041635 DOWN 10 -27041635 0 1024 -~~~ -~~~ -~~~ -~~~ -27041661 homeCount = 64 -27041661 waitCount = 25 -27041662 ripCount = 25 -27041662 locktype1 = 1 -27041663 locktype2 = 5 -27041663 locktype3 = 8 -27041664 goalCount = 7 -27041664 goalTotal = 17 -27041665 otherCount = 32 -~~~ -27043061 UP 11 -27043061 1024 1024 -27046061 BEEP1 -27046061 BEEP2 -~~~ -~~~ -~~~ -27046079 1024 33555456 -~~~ -27046120 DOWN 11 -27046120 0 33555456 -27046136 UP 11 -27046136 1024 33555456 -27046229 1024 1024 -~~~ -~~~ -27046756 1024 0 -~~~ -~~~ -27046758 1024 1 -~~~ -~~~ -27046760 1024 3 -~~~ -~~~ -27046762 1024 7 -~~~ -~~~ -27046764 1024 15 -~~~ -~~~ -27046765 1024 31 -~~~ -~~~ -27046767 1024 63 -~~~ -~~~ -27046769 1024 127 -~~~ -~~~ -27046771 1024 255 -27046772 homeCount = 64 -27046773 waitCount = 25 -27046773 ripCount = 26 -27046774 locktype1 = 1 -27046795 locktype2 = 5 -27046795 locktype3 = 8 -27046796 goalCount = 7 -27046796 goalTotal = 17 -27046797 otherCount = 32 -~~~ -27046798 CURRENTGOAL IS [3] -~~~ -27053631 DOWN 11 -27053631 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27053669 UP 11 -27053669 1024 255 -~~~ -~~~ -~~~ -~~~ -27053674 homeCount = 64 -27053674 waitCount = 25 -27053675 ripCount = 26 -27053675 locktype1 = 1 -27053676 locktype2 = 5 -27053676 locktype3 = 8 -27053677 goalCount = 7 -27053677 goalTotal = 17 -27053678 otherCount = 32 -~~~ -27053679 CURRENTGOAL IS [3] -~~~ -27053700 DOWN 11 -27053700 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27053736 homeCount = 64 -27053736 waitCount = 25 -27053737 ripCount = 26 -27053737 locktype1 = 1 -27053738 locktype2 = 5 -27053739 locktype3 = 8 -27053739 goalCount = 7 -27053740 goalTotal = 17 -27053740 otherCount = 32 -~~~ -27053741 CURRENTGOAL IS [3] -~~~ -27053762 UP 11 -27053762 1024 255 -27056774 DOWN 11 -27056774 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27056816 homeCount = 64 -27056816 waitCount = 25 -27056817 ripCount = 26 -27056817 locktype1 = 1 -27056818 locktype2 = 5 -27056818 locktype3 = 8 -27056819 goalCount = 7 -27056819 goalTotal = 17 -27056820 otherCount = 32 -~~~ -27056821 CURRENTGOAL IS [3] -~~~ -27062933 UP 3 -27062933 4 255 -~~~ -~~~ -27062952 outer reward -~~~ -27062952 4 262399 -~~~ -~~~ -27063104 DOWN 3 -27063104 0 262399 -~~~ -~~~ -27063129 0 262398 -~~~ -~~~ -27063131 0 262396 -~~~ -~~~ -27063133 0 262392 -~~~ -~~~ -27063134 0 262384 -~~~ -~~~ -27063136 0 262368 -~~~ -~~~ -27063138 0 262336 -~~~ -~~~ -27063140 0 262272 -~~~ -~~~ -27063142 0 262144 -~~~ -~~~ -27063144 0 262656 -27063145 homeCount = 64 -27063145 waitCount = 25 -27063146 ripCount = 26 -27063167 locktype1 = 1 -27063167 locktype2 = 5 -27063168 locktype3 = 8 -27063168 goalCount = 8 -27063169 goalTotal = 18 -27063169 otherCount = 32 -~~~ -27063170 4 262656 -27063263 DOWN 3 -27063263 0 262656 -27063290 4 262656 -27063402 4 512 -27063542 DOWN 3 -27063542 0 512 -27063554 4 512 -27063660 DOWN 3 -27063660 0 512 -27063683 4 512 -27063784 DOWN 3 -27063784 0 512 -27063813 4 512 -27063917 DOWN 3 -27063917 0 512 -27063947 4 512 -27064050 DOWN 3 -27064050 0 512 -27064081 4 512 -27064190 DOWN 3 -27064190 0 512 -27064217 4 512 -27064327 DOWN 3 -27064327 0 512 -27064350 4 512 -27064474 DOWN 3 -27064474 0 512 -27064492 4 512 -27064630 DOWN 3 -27064630 0 512 -27064639 4 512 -27064937 DOWN 3 -27064937 0 512 -27064946 4 512 -27071303 DOWN 3 -27071303 0 512 -27071339 4 512 -27071394 DOWN 3 -27071394 0 512 -27082226 UP 10 -27082226 waslock = 0 -27082226 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27082258 512 16777728 -~~~ -27082277 DOWN 10 -27082277 0 16777728 -~~~ -~~~ -27082306 0 16779776 -~~~ -~~~ -27082308 0 16779264 -27082309 homeCount = 65 -27082310 waitCount = 25 -27082310 ripCount = 26 -27082311 locktype1 = 1 -27082311 locktype2 = 5 -27082312 locktype3 = 8 -27082312 goalCount = 8 -27082313 goalTotal = 18 -27082313 otherCount = 32 -~~~ -27082334 UP 10 -27082335 waslock = 0 -27082334 512 16779264 -~~~ -27082408 512 2048 -27082466 DOWN 10 -27082466 0 2048 -~~~ -~~~ -~~~ -~~~ -27082492 homeCount = 65 -27082493 waitCount = 25 -27082493 ripCount = 26 -27082494 locktype1 = 1 -27082494 locktype2 = 5 -27082495 locktype3 = 8 -27082495 goalCount = 8 -27082496 goalTotal = 18 -27082496 otherCount = 32 -~~~ -27082497 UP 10 -27082497 waslock = 0 -27082497 512 2048 -~~~ -27087311 DOWN 10 -27087311 0 2048 -~~~ -~~~ -~~~ -~~~ -27087333 homeCount = 65 -27087334 waitCount = 25 -27087334 ripCount = 26 -27087335 locktype1 = 1 -27087335 locktype2 = 5 -27087336 locktype3 = 8 -27087336 goalCount = 8 -27087337 goalTotal = 18 -27087337 otherCount = 32 -~~~ -27089424 UP 12 -27089424 2048 2048 -27090682 DOWN 12 -27090682 0 2048 -27090773 UP 12 -27090773 2048 2048 -27091335 DOWN 12 -27091335 0 2048 -27091389 UP 12 -27091389 2048 2048 -27091472 DOWN 12 -27091472 0 2048 -27091539 UP 12 -27091539 2048 2048 -27094269 DOWN 12 -27094268 0 2048 -27094323 UP 12 -27094323 2048 2048 -27094359 DOWN 12 -27094359 0 2048 -27094535 UP 12 -27094535 2048 2048 -27097424 CLICK1 -27097424 CLICK2 -~~~ -~~~ -~~~ -27097442 2048 67110912 -~~~ -27097592 2048 2048 -27103685 DOWN 12 -27103685 0 2048 -~~~ -~~~ -27103710 0 0 -~~~ -~~~ -27103712 0 1 -~~~ -~~~ -27103714 0 3 -~~~ -~~~ -27103715 0 7 -~~~ -~~~ -27103717 0 15 -~~~ -~~~ -27103719 0 31 -~~~ -~~~ -27103721 0 63 -~~~ -~~~ -27103723 0 127 -~~~ -~~~ -27103725 0 255 -27103726 homeCount = 65 -27103726 waitCount = 26 -27103727 ripCount = 26 -27103727 locktype1 = 1 -27103728 locktype2 = 5 -27103749 locktype3 = 8 -27103749 goalCount = 8 -27103750 goalTotal = 18 -27103750 otherCount = 32 -~~~ -27103751 CURRENTGOAL IS [3] -~~~ -27103752 UP 12 -27103752 2048 255 -27103785 DOWN 12 -27103785 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27103821 homeCount = 65 -27103822 waitCount = 26 -27103822 ripCount = 26 -27103823 locktype1 = 1 -27103824 locktype2 = 5 -27103824 locktype3 = 8 -27103825 goalCount = 8 -27103825 goalTotal = 18 -27103826 otherCount = 32 -~~~ -27103827 CURRENTGOAL IS [3] -~~~ -27108255 UP 2 -27108255 2 255 -27108270 DOWN 2 -27108270 0 255 -~~~ -~~~ -~~~ -~~~ -27108294 0 254 -~~~ -~~~ -27108296 0 252 -~~~ -~~~ -27108298 0 248 -~~~ -~~~ -27108300 0 240 -~~~ -~~~ -27108302 0 224 -~~~ -~~~ -27108303 0 192 -~~~ -~~~ -27108305 0 128 -~~~ -~~~ -27108307 0 0 -~~~ -~~~ -27108309 0 512 -27108310 homeCount = 65 -27108310 waitCount = 26 -27108311 ripCount = 26 -27108311 locktype1 = 1 -27108332 locktype2 = 5 -27108333 locktype3 = 8 -27108333 goalCount = 8 -27108334 goalTotal = 18 -27108334 otherCount = 33 -~~~ -27108335 2 512 -27109045 DOWN 2 -27109045 0 512 -27109118 2 512 -27109129 DOWN 2 -27109129 0 512 -27114052 UP 10 -27114052 waslock = 0 -27114052 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27114082 512 16777728 -~~~ -27114122 DOWN 10 -27114122 0 16777728 -~~~ -~~~ -27114145 0 16779776 -~~~ -~~~ -27114147 0 16779264 -27114148 homeCount = 66 -27114149 waitCount = 26 -27114149 ripCount = 26 -27114150 locktype1 = 1 -27114150 locktype2 = 5 -27114152 locktype3 = 8 -27114152 goalCount = 8 -27114152 goalTotal = 18 -27114152 otherCount = 33 -~~~ -27114173 UP 10 -27114173 waslock = 0 -27114173 512 16779264 -~~~ -27114232 512 2048 -27114292 DOWN 10 -27114292 0 2048 -~~~ -~~~ -27114320 UP 10 -27114320 waslock = 0 -27114320 512 2048 -~~~ -~~~ -27114323 homeCount = 66 -27114323 waitCount = 26 -27114324 ripCount = 26 -27114324 locktype1 = 1 -27114325 locktype2 = 5 -27114325 locktype3 = 8 -27114326 goalCount = 8 -27114326 goalTotal = 18 -27114347 otherCount = 33 -~~~ -~~~ -27117113 DOWN 10 -27117113 0 2048 -~~~ -~~~ -~~~ -~~~ -27117139 homeCount = 66 -27117140 waitCount = 26 -27117140 ripCount = 26 -27117141 locktype1 = 1 -27117141 locktype2 = 5 -27117142 locktype3 = 8 -27117142 goalCount = 8 -27117143 goalTotal = 18 -27117143 otherCount = 33 -~~~ -27117158 UP 10 -27117159 waslock = 0 -27117158 512 2048 -~~~ -27117200 DOWN 10 -27117200 0 2048 -~~~ -~~~ -~~~ -~~~ -27117221 homeCount = 66 -27117222 waitCount = 26 -27117222 ripCount = 26 -27117223 locktype1 = 1 -27117223 locktype2 = 5 -27117224 locktype3 = 8 -27117224 goalCount = 8 -27117225 goalTotal = 18 -27117225 otherCount = 33 -~~~ -27119113 UP 12 -27119113 2048 2048 -27121174 DOWN 12 -27121174 0 2048 -27121261 UP 12 -27121261 2048 2048 -27121838 DOWN 12 -27121838 0 2048 -27121887 UP 12 -27121887 2048 2048 -27121905 DOWN 12 -27121905 0 2048 -27121986 UP 12 -27121986 2048 2048 -27122114 CLICK1 -27122114 CLICK2 -~~~ -~~~ -~~~ -27122139 2048 67110912 -~~~ -27122289 2048 2048 -27127218 DOWN 12 -27127218 0 2048 -~~~ -~~~ -27127238 0 0 -~~~ -~~~ -27127239 0 1 -~~~ -~~~ -27127241 0 3 -~~~ -~~~ -27127243 0 7 -~~~ -~~~ -27127245 0 15 -~~~ -~~~ -27127247 0 31 -~~~ -~~~ -27127248 0 63 -~~~ -~~~ -27127250 0 127 -~~~ -~~~ -27127252 0 255 -27127253 homeCount = 66 -27127254 waitCount = 27 -27127254 ripCount = 26 -27127255 locktype1 = 1 -27127255 locktype2 = 5 -27127276 locktype3 = 8 -27127277 goalCount = 8 -27127277 goalTotal = 18 -27127278 otherCount = 33 -~~~ -27127279 CURRENTGOAL IS [3] -~~~ -27130040 UP 3 -27130040 4 255 -~~~ -~~~ -27130059 outer reward -~~~ -27130059 4 262399 -~~~ -~~~ -27130264 DOWN 3 -27130264 0 262399 -~~~ -~~~ -27130288 0 262398 -~~~ -~~~ -27130289 0 262396 -~~~ -~~~ -27130291 0 262392 -~~~ -~~~ -27130293 0 262384 -~~~ -~~~ -27130295 0 262368 -~~~ -~~~ -27130297 0 262336 -~~~ -~~~ -27130299 0 262272 -~~~ -~~~ -27130300 0 262144 -~~~ -~~~ -27130302 0 262656 -27130303 homeCount = 66 -27130304 waitCount = 27 -27130304 ripCount = 26 -27130325 locktype1 = 1 -27130325 locktype2 = 5 -27130326 locktype3 = 8 -27130326 goalCount = 9 -27130327 goalTotal = 19 -27130327 otherCount = 33 -~~~ -27130328 4 262656 -27130509 4 512 -27130691 DOWN 3 -27130691 0 512 -27130708 4 512 -27130810 DOWN 3 -27130810 0 512 -27130833 4 512 -27130933 DOWN 3 -27130933 0 512 -27130961 4 512 -27131066 DOWN 3 -27131066 0 512 -27131090 4 512 -27131199 DOWN 3 -27131199 0 512 -27131228 4 512 -27131361 DOWN 3 -27131361 0 512 -27131369 4 512 -27131503 DOWN 3 -27131503 0 512 -27131514 4 512 -27131656 DOWN 3 -27131656 0 512 -27131664 4 512 -27137144 DOWN 3 -27137144 0 512 -27137148 4 512 -27137802 DOWN 3 -27137802 0 512 -27137820 4 512 -27137905 DOWN 3 -27137905 0 512 -27144403 UP 10 -27144403 waslock = 0 -27144403 512 512 -27144418 DOWN 10 -27144418 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27144434 0 16777728 -~~~ -~~~ -~~~ -27144437 0 16779776 -~~~ -~~~ -27144439 0 16779264 -27144440 homeCount = 67 -27144441 waitCount = 27 -27144441 ripCount = 26 -27144442 locktype1 = 1 -27144442 locktype2 = 5 -27144443 locktype3 = 8 -27144443 goalCount = 9 -27144444 goalTotal = 19 -27144465 otherCount = 33 -~~~ -27144570 UP 10 -27144570 waslock = 0 -27144569 512 16779264 -27144584 512 2048 -~~~ -27147490 DOWN 10 -27147489 0 2048 -~~~ -~~~ -~~~ -~~~ -27147518 homeCount = 67 -27147519 waitCount = 27 -27147519 ripCount = 26 -27147520 locktype1 = 1 -27147520 locktype2 = 5 -27147521 locktype3 = 8 -27147521 goalCount = 9 -27147522 goalTotal = 19 -27147522 otherCount = 33 -~~~ -27149811 UP 12 -27149811 2048 2048 -27150616 DOWN 12 -27150616 0 2048 -27150637 UP 12 -27150637 2048 2048 -27150660 DOWN 12 -27150660 0 2048 -27150819 UP 12 -27150819 2048 2048 -27153312 CLICK1 -27153312 CLICK2 -~~~ -~~~ -~~~ -27153335 2048 67110912 -~~~ -27153484 2048 2048 -27157877 DOWN 12 -27157877 0 2048 -~~~ -~~~ -27157896 0 0 -~~~ -~~~ -27157897 0 1 -~~~ -~~~ -27157899 0 3 -~~~ -~~~ -27157901 0 7 -~~~ -~~~ -27157903 0 15 -~~~ -~~~ -27157905 0 31 -~~~ -~~~ -27157906 0 63 -~~~ -~~~ -27157908 0 127 -~~~ -~~~ -27157910 0 255 -27157911 homeCount = 67 -27157912 waitCount = 28 -27157912 ripCount = 26 -27157913 locktype1 = 1 -27157913 locktype2 = 5 -27157934 locktype3 = 8 -27157935 goalCount = 9 -27157935 goalTotal = 19 -27157936 otherCount = 33 -~~~ -27157937 CURRENTGOAL IS [3] -~~~ -27157937 UP 12 -27157937 2048 255 -27157959 DOWN 12 -27157959 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27157999 homeCount = 67 -27157999 waitCount = 28 -27158000 ripCount = 26 -27158000 locktype1 = 1 -27158001 locktype2 = 5 -27158001 locktype3 = 8 -27158002 goalCount = 9 -27158002 goalTotal = 19 -27158003 otherCount = 33 -~~~ -27158004 CURRENTGOAL IS [3] -~~~ -27158025 UP 12 -27158025 2048 255 -27158102 DOWN 12 -27158102 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158130 UP 12 -27158130 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158138 DOWN 12 -27158138 0 255 -~~~ -~~~ -~~~ -27158142 homeCount = 67 -27158142 waitCount = 28 -27158143 ripCount = 26 -27158143 locktype1 = 1 -27158144 locktype2 = 5 -27158145 locktype3 = 8 -27158145 goalCount = 9 -27158146 goalTotal = 19 -27158146 otherCount = 33 -~~~ -27158147 CURRENTGOAL IS [3] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158175 homeCount = 67 -27158176 waitCount = 28 -27158176 ripCount = 26 -27158177 locktype1 = 1 -27158177 locktype2 = 5 -27158178 locktype3 = 8 -27158199 goalCount = 9 -27158199 goalTotal = 19 -27158200 otherCount = 33 -~~~ -27158201 CURRENTGOAL IS [3] -~~~ -27158201 UP 12 -27158201 2048 255 -27158224 DOWN 12 -27158223 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158250 homeCount = 67 -27158251 waitCount = 28 -27158251 ripCount = 26 -27158252 locktype1 = 1 -27158252 locktype2 = 5 -27158253 locktype3 = 8 -27158253 goalCount = 9 -27158254 goalTotal = 19 -27158254 otherCount = 33 -~~~ -27158255 CURRENTGOAL IS [3] -~~~ -27158327 UP 12 -27158327 2048 255 -27158356 DOWN 12 -27158356 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158391 homeCount = 67 -27158392 waitCount = 28 -27158392 ripCount = 26 -27158393 locktype1 = 1 -27158393 locktype2 = 5 -27158394 locktype3 = 8 -27158394 goalCount = 9 -27158395 goalTotal = 19 -27158395 otherCount = 33 -~~~ -27158396 CURRENTGOAL IS [3] -~~~ -27158417 UP 12 -27158417 2048 255 -27158500 DOWN 12 -27158500 0 255 -27158522 UP 12 -27158522 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27158542 homeCount = 67 -27158543 waitCount = 28 -27158543 ripCount = 26 -27158544 locktype1 = 1 -27158544 locktype2 = 5 -27158545 locktype3 = 8 -27158545 goalCount = 9 -27158546 goalTotal = 19 -27158546 otherCount = 33 -~~~ -27158548 CURRENTGOAL IS [3] -~~~ -27160569 DOWN 12 -27160569 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27160604 homeCount = 67 -27160605 waitCount = 28 -27160606 ripCount = 26 -27160606 locktype1 = 1 -27160607 locktype2 = 5 -27160607 locktype3 = 8 -27160608 goalCount = 9 -27160608 goalTotal = 19 -27160609 otherCount = 33 -~~~ -27160610 CURRENTGOAL IS [3] -~~~ -27160631 UP 12 -27160631 2048 255 -27160668 DOWN 12 -27160668 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27160706 homeCount = 67 -27160707 waitCount = 28 -27160707 ripCount = 26 -27160708 locktype1 = 1 -27160708 locktype2 = 5 -27160709 locktype3 = 8 -27160709 goalCount = 9 -27160710 goalTotal = 19 -27160710 otherCount = 33 -~~~ -27160711 CURRENTGOAL IS [3] -~~~ -27163334 UP 3 -27163334 4 255 -27163351 DOWN 3 -27163351 0 255 -~~~ -~~~ -27163374 outer reward -~~~ -27163375 0 262399 -~~~ -~~~ -27163379 outerreps = 8 -~~~ -~~~ -~~~ -~~~ -27163382 0 262398 -~~~ -~~~ -27163384 0 262396 -~~~ -~~~ -27163386 0 262392 -~~~ -~~~ -27163388 0 262384 -~~~ -~~~ -27163389 0 262368 -~~~ -~~~ -27163391 0 262336 -~~~ -~~~ -27163393 0 262272 -~~~ -~~~ -27163395 0 262144 -~~~ -~~~ -27163397 0 262656 -27163398 homeCount = 67 -27163398 waitCount = 28 -27163420 ripCount = 26 -27163420 locktype1 = 1 -27163421 locktype2 = 5 -27163421 locktype3 = 8 -27163422 goalCount = 0 -27163422 goalTotal = 20 -27163423 otherCount = 33 -~~~ -27163423 4 262656 -27163560 DOWN 3 -27163560 0 262656 -27163618 4 262656 -27163824 4 512 -27163981 DOWN 3 -27163981 0 512 -27164002 4 512 -27164107 DOWN 3 -27164107 0 512 -27164122 4 512 -27164237 DOWN 3 -27164237 0 512 -27164261 4 512 -27164373 DOWN 3 -27164373 0 512 -27164398 4 512 -27164523 DOWN 3 -27164523 0 512 -27164537 4 512 -27164678 DOWN 3 -27164677 0 512 -27164687 4 512 -27164824 DOWN 3 -27164824 0 512 -27164832 4 512 -27164973 DOWN 3 -27164973 0 512 -27164981 4 512 -27165435 DOWN 3 -27165435 0 512 -27165447 4 512 -27168176 DOWN 3 -27168176 0 512 -27168182 4 512 -27168186 DOWN 3 -27168186 0 512 -27168193 4 512 -27171704 DOWN 3 -27171704 0 512 -27171738 4 512 -27171814 DOWN 3 -27171814 0 512 -27176949 UP 10 -27176949 waslock = 0 -27176949 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27176979 512 16777728 -~~~ -27177102 DOWN 10 -27177102 0 16777728 -~~~ -~~~ -27177125 0 16778752 -~~~ -~~~ -27177127 0 16778240 -27177128 homeCount = 68 -27177129 waitCount = 28 -27177129 ripCount = 26 -27177130 locktype1 = 1 -27177130 locktype2 = 5 -27177131 locktype3 = 8 -27177131 goalCount = 0 -27177132 goalTotal = 20 -27177132 otherCount = 33 -~~~ -27177153 UP 10 -27177153 waslock = 0 -27177153 512 16778240 -27177155 512 1024 -~~~ -27183894 DOWN 10 -27183894 0 1024 -~~~ -~~~ -~~~ -~~~ -27183916 homeCount = 68 -27183917 waitCount = 28 -27183917 ripCount = 26 -27183918 locktype1 = 1 -27183918 locktype2 = 5 -27183919 locktype3 = 8 -27183919 goalCount = 0 -27183920 goalTotal = 20 -27183920 otherCount = 33 -~~~ -27186228 UP 11 -27186228 1024 1024 -27187560 DOWN 11 -27187560 0 1024 -27187573 UP 11 -27187573 1024 1024 -27187589 DOWN 11 -27187589 0 1024 -27187640 UP 11 -27187640 1024 1024 -27192229 BEEP1 -27192229 BEEP2 -~~~ -~~~ -~~~ -27192256 1024 33555456 -~~~ -27192406 1024 1024 -27198684 DOWN 11 -27198684 0 1024 -~~~ -~~~ -27198705 0 0 -~~~ -~~~ -27198707 0 1 -~~~ -~~~ -27198709 0 3 -~~~ -~~~ -27198711 0 7 -~~~ -~~~ -27198712 0 15 -~~~ -~~~ -27198714 0 31 -~~~ -~~~ -27198716 0 63 -~~~ -~~~ -27198718 0 127 -~~~ -~~~ -27198720 0 255 -27198721 homeCount = 68 -27198721 waitCount = 28 -27198722 ripCount = 27 -27198722 locktype1 = 1 -27198723 locktype2 = 5 -27198744 locktype3 = 8 -27198744 goalCount = 0 -27198745 goalTotal = 20 -27198745 otherCount = 33 -~~~ -27198746 CURRENTGOAL IS [1] -~~~ -27198766 UP 11 -27198766 1024 255 -27200991 DOWN 11 -27200991 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27201031 homeCount = 68 -27201031 waitCount = 28 -27201032 ripCount = 27 -27201032 locktype1 = 1 -27201033 locktype2 = 5 -27201033 locktype3 = 8 -27201034 goalCount = 0 -27201034 goalTotal = 20 -27201035 otherCount = 33 -~~~ -27201036 CURRENTGOAL IS [1] -~~~ -27201067 UP 11 -27201067 1024 255 -27201082 DOWN 11 -27201082 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27201121 homeCount = 68 -27201122 waitCount = 28 -27201122 ripCount = 27 -27201123 locktype1 = 1 -27201123 locktype2 = 5 -27201124 locktype3 = 8 -27201124 goalCount = 0 -27201125 goalTotal = 20 -27201125 otherCount = 33 -~~~ -27201127 CURRENTGOAL IS [1] -~~~ -27206452 UP 2 -27206452 2 255 -27206462 DOWN 2 -27206462 0 255 -~~~ -~~~ -~~~ -~~~ -27206480 0 254 -~~~ -~~~ -27206482 0 252 -~~~ -~~~ -27206484 0 248 -~~~ -~~~ -27206486 0 240 -~~~ -~~~ -27206487 0 224 -~~~ -~~~ -27206489 0 192 -~~~ -~~~ -27206491 0 128 -~~~ -~~~ -27206493 0 0 -~~~ -~~~ -27206495 0 512 -27206496 homeCount = 68 -27206496 waitCount = 28 -27206497 ripCount = 27 -27206497 locktype1 = 1 -27206519 locktype2 = 5 -27206519 locktype3 = 8 -27206520 goalCount = 0 -27206520 goalTotal = 20 -27206521 otherCount = 34 -~~~ -27206534 2 512 -27207052 DOWN 2 -27207052 0 512 -27212399 UP 10 -27212399 waslock = 0 -27212399 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27212427 512 16777728 -~~~ -27212435 DOWN 10 -27212435 0 16777728 -~~~ -~~~ -27212452 0 16778752 -~~~ -27212453 UP 10 -27212453 waslock = 0 -27212453 512 16778752 -~~~ -27212455 homeCount = 69 -27212456 waitCount = 28 -27212456 ripCount = 27 -27212457 locktype1 = 1 -27212457 locktype2 = 5 -27212458 locktype3 = 8 -27212458 goalCount = 0 -27212479 goalTotal = 20 -27212480 otherCount = 34 -~~~ -27212480 512 16778240 -~~~ -27212557 DOWN 10 -27212557 0 16778240 -27212577 0 1024 -27212591 UP 10 -27212591 waslock = 0 -27212591 512 1024 -~~~ -~~~ -~~~ -~~~ -27212598 homeCount = 69 -27212598 waitCount = 28 -27212599 ripCount = 27 -27212599 locktype1 = 1 -27212600 locktype2 = 5 -27212600 locktype3 = 8 -27212601 goalCount = 0 -27212601 goalTotal = 20 -27212602 otherCount = 34 -~~~ -~~~ -27216740 DOWN 10 -27216740 0 1024 -~~~ -~~~ -~~~ -~~~ -27216765 homeCount = 69 -27216765 waitCount = 28 -27216766 ripCount = 27 -27216766 locktype1 = 1 -27216767 locktype2 = 5 -27216767 locktype3 = 8 -27216768 goalCount = 0 -27216768 goalTotal = 20 -27216769 otherCount = 34 -~~~ -27221107 UP 11 -27221107 1024 1024 -27230108 BEEP1 -27230108 BEEP2 -~~~ -~~~ -~~~ -27230134 1024 33555456 -~~~ -27230284 1024 1024 -27237176 DOWN 11 -27237176 0 1024 -~~~ -~~~ -27237202 0 0 -~~~ -~~~ -27237203 0 1 -~~~ -~~~ -27237205 0 3 -~~~ -~~~ -27237207 0 7 -~~~ -~~~ -27237209 0 15 -~~~ -~~~ -27237211 0 31 -~~~ -~~~ -27237213 0 63 -~~~ -~~~ -27237214 0 127 -~~~ -~~~ -27237216 0 255 -27237217 homeCount = 69 -27237218 waitCount = 28 -27237218 ripCount = 28 -27237219 locktype1 = 1 -27237219 locktype2 = 5 -27237240 locktype3 = 8 -27237241 goalCount = 0 -27237241 goalTotal = 20 -27237242 otherCount = 34 -~~~ -27237243 CURRENTGOAL IS [1] -~~~ -27237243 UP 11 -27237243 1024 255 -27237293 DOWN 11 -27237293 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27237330 homeCount = 69 -27237330 waitCount = 28 -27237331 ripCount = 28 -27237331 locktype1 = 1 -27237332 locktype2 = 5 -27237332 locktype3 = 8 -27237333 goalCount = 0 -27237333 goalTotal = 20 -27237334 otherCount = 34 -~~~ -27237335 CURRENTGOAL IS [1] -~~~ -27244806 UP 3 -27244806 4 255 -27244824 DOWN 3 -27244824 0 255 -~~~ -~~~ -~~~ -~~~ -27244845 0 254 -~~~ -~~~ -27244846 0 252 -~~~ -~~~ -27244848 0 248 -~~~ -~~~ -27244850 0 240 -~~~ -~~~ -27244852 0 224 -~~~ -~~~ -27244854 0 192 -~~~ -~~~ -27244856 0 128 -~~~ -~~~ -27244857 0 0 -~~~ -~~~ -27244859 0 512 -27244860 homeCount = 69 -27244861 waitCount = 28 -27244861 ripCount = 28 -27244862 locktype1 = 1 -27244883 locktype2 = 5 -27244884 locktype3 = 8 -27244884 goalCount = 0 -27244885 goalTotal = 20 -27244885 otherCount = 35 -~~~ -27244896 4 512 -27245112 DOWN 3 -27245112 0 512 -27245162 4 512 -27245949 DOWN 3 -27245949 0 512 -27246153 4 512 -27247409 DOWN 3 -27247409 0 512 -27252323 UP 10 -27252323 waslock = 0 -27252323 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27252354 512 16777728 -~~~ -27252487 DOWN 10 -27252487 0 16777728 -27252504 0 512 -~~~ -~~~ -27252509 0 2560 -~~~ -~~~ -27252511 0 2048 -27252512 homeCount = 70 -27252513 waitCount = 28 -27252513 ripCount = 28 -27252514 locktype1 = 1 -27252514 locktype2 = 5 -27252515 locktype3 = 8 -27252515 goalCount = 0 -27252516 goalTotal = 20 -27252516 otherCount = 35 -~~~ -27252537 UP 10 -27252538 waslock = 0 -27252537 512 2048 -~~~ -27257198 DOWN 10 -27257198 0 2048 -~~~ -~~~ -~~~ -~~~ -27257221 homeCount = 70 -27257221 waitCount = 28 -27257222 ripCount = 28 -27257222 locktype1 = 1 -27257223 locktype2 = 5 -27257223 locktype3 = 8 -27257224 goalCount = 0 -27257224 goalTotal = 20 -27257225 otherCount = 35 -~~~ -27257233 UP 10 -27257233 waslock = 0 -27257233 512 2048 -~~~ -27257298 DOWN 10 -27257298 0 2048 -~~~ -~~~ -~~~ -~~~ -27257321 homeCount = 70 -27257322 waitCount = 28 -27257322 ripCount = 28 -27257323 locktype1 = 1 -27257323 locktype2 = 5 -27257324 locktype3 = 8 -27257324 goalCount = 0 -27257325 goalTotal = 20 -27257325 otherCount = 35 -~~~ -27259477 UP 12 -27259477 2048 2048 -27262833 DOWN 12 -27262833 0 2048 -27262866 UP 12 -27262866 2048 2048 -27262907 DOWN 12 -27262907 0 2048 -27262994 UP 12 -27262994 2048 2048 -27263034 DOWN 12 -27263034 0 2048 -27263046 UP 12 -27263046 2048 2048 -27267477 CLICK1 -27267477 CLICK2 -~~~ -~~~ -~~~ -27267503 2048 67110912 -~~~ -27267653 2048 2048 -27274654 DOWN 12 -27274654 0 2048 -~~~ -~~~ -27274672 0 0 -~~~ -~~~ -27274674 0 1 -~~~ -~~~ -27274676 0 3 -~~~ -~~~ -27274677 0 7 -~~~ -~~~ -27274679 0 15 -~~~ -~~~ -27274681 0 31 -~~~ -~~~ -27274683 0 63 -~~~ -~~~ -27274685 0 127 -~~~ -~~~ -27274686 0 255 -27274687 homeCount = 70 -27274688 waitCount = 29 -27274689 ripCount = 28 -27274689 locktype1 = 1 -27274690 locktype2 = 5 -27274710 locktype3 = 8 -27274711 goalCount = 0 -27274711 goalTotal = 20 -27274712 otherCount = 35 -~~~ -27274713 CURRENTGOAL IS [1] -~~~ -27278587 UP 3 -27278587 4 255 -~~~ -~~~ -27278893 DOWN 3 -27278893 0 255 -~~~ -~~~ -27278912 0 254 -~~~ -~~~ -27278914 0 252 -~~~ -~~~ -27278916 0 248 -~~~ -~~~ -27278917 0 240 -~~~ -~~~ -27278919 0 224 -~~~ -~~~ -27278921 0 192 -~~~ -~~~ -27278923 0 128 -~~~ -~~~ -27278925 0 0 -~~~ -~~~ -27278927 0 512 -27278928 homeCount = 70 -27278928 waitCount = 29 -27278929 ripCount = 28 -27278929 locktype1 = 1 -27278930 locktype2 = 5 -27278951 locktype3 = 8 -27278951 goalCount = 0 -27278952 goalTotal = 20 -27278952 otherCount = 36 -~~~ -27278953 4 512 -27279428 DOWN 3 -27279428 0 512 -27279473 4 512 -27279495 DOWN 3 -27279495 0 512 -27283748 UP 10 -27283748 waslock = 0 -27283748 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27283772 512 16777728 -~~~ -27283922 512 512 -27288098 DOWN 10 -27288098 0 512 -~~~ -~~~ -27288117 0 1536 -~~~ -~~~ -27288119 0 1024 -27288120 homeCount = 71 -27288120 waitCount = 29 -27288121 ripCount = 28 -27288121 locktype1 = 1 -27288122 locktype2 = 5 -27288122 locktype3 = 8 -27288123 goalCount = 0 -27288123 goalTotal = 20 -27288124 otherCount = 36 -~~~ -27288158 UP 10 -27288158 waslock = 0 -27288158 512 1024 -~~~ -27288186 DOWN 10 -27288186 0 1024 -~~~ -~~~ -~~~ -~~~ -27288215 homeCount = 71 -27288215 waitCount = 29 -27288216 ripCount = 28 -27288216 locktype1 = 1 -27288217 locktype2 = 5 -27288217 locktype3 = 8 -27288218 goalCount = 0 -27288218 goalTotal = 20 -27288219 otherCount = 36 -~~~ -27303216 UP 4 -27303216 8 1024 -~~~ -27303239 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -27303243 8 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27304347 DOWN 4 -27304347 0 0 -27321209 512 0 -27321279 0 0 -27328239 LOCKEND -~~~ -~~~ -~~~ -27328258 0 512 -27338600 UP 5 -27338600 16 512 -27338629 DOWN 5 -27338629 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27338662 homeCount = 71 -27338663 waitCount = 29 -27338663 ripCount = 28 -27338664 locktype1 = 1 -27338664 locktype2 = 6 -27338665 locktype3 = 8 -27338665 goalCount = 0 -27338666 goalTotal = 20 -27338666 otherCount = 36 -~~~ -27338727 16 512 -27338920 DOWN 5 -27338920 0 512 -27339036 16 512 -27339061 DOWN 5 -27339061 0 512 -27339130 16 512 -27339491 DOWN 5 -27339491 0 512 -27349519 UP 10 -27349520 waslock = 0 -27349519 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27349543 512 16777728 -~~~ -27349693 512 512 -27349747 DOWN 10 -27349747 0 512 -~~~ -~~~ -27349772 0 2560 -~~~ -~~~ -27349774 0 2048 -27349775 homeCount = 72 -27349776 waitCount = 29 -27349776 ripCount = 28 -27349777 locktype1 = 1 -27349777 locktype2 = 6 -27349778 locktype3 = 8 -27349778 goalCount = 0 -27349779 goalTotal = 20 -27349779 otherCount = 36 -~~~ -27349887 UP 10 -27349888 waslock = 0 -27349887 512 2048 -~~~ -27355800 DOWN 10 -27355800 0 2048 -~~~ -~~~ -~~~ -~~~ -27355821 homeCount = 72 -27355821 waitCount = 29 -27355822 ripCount = 28 -27355822 locktype1 = 1 -27355823 locktype2 = 6 -27355823 locktype3 = 8 -27355824 goalCount = 0 -27355824 goalTotal = 20 -27355825 otherCount = 36 -~~~ -27355830 UP 10 -27355831 waslock = 0 -27355830 512 2048 -~~~ -27355896 DOWN 10 -27355896 0 2048 -~~~ -~~~ -~~~ -~~~ -27355921 homeCount = 72 -27355921 waitCount = 29 -27355922 ripCount = 28 -27355922 locktype1 = 1 -27355923 locktype2 = 6 -27355923 locktype3 = 8 -27355924 goalCount = 0 -27355924 goalTotal = 20 -27355925 otherCount = 36 -~~~ -27359955 UP 12 -27359955 2048 2048 -27361229 DOWN 12 -27361229 0 2048 -27361429 LOCKOUT 3 -~~~ -27361449 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27361455 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27361545 UP 12 -27361545 2048 0 -27363005 DOWN 12 -27363005 0 0 -27363061 UP 12 -27363061 2048 0 -27363086 DOWN 12 -27363086 0 0 -27363176 UP 12 -27363176 2048 0 -27363450 DOWN 12 -27363450 0 0 -27363499 UP 12 -27363498 2048 0 -27363784 DOWN 12 -27363784 0 0 -27363793 UP 12 -27363792 2048 0 -27367425 DOWN 12 -27367425 0 0 -27367513 UP 12 -27367513 2048 0 -27367580 DOWN 12 -27367580 0 0 -27367680 UP 12 -27367680 2048 0 -27373426 DOWN 12 -27373426 0 0 -27373444 UP 12 -27373444 2048 0 -27373471 DOWN 12 -27373471 0 0 -27373514 UP 12 -27373514 2048 0 -27373617 DOWN 12 -27373617 0 0 -27373720 UP 12 -27373720 2048 0 -27375640 DOWN 12 -27375640 0 0 -27386449 LOCKEND -~~~ -~~~ -~~~ -27386471 0 512 -27392770 UP 10 -27392770 waslock = 0 -27392770 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27392793 512 16777728 -~~~ -27392943 512 512 -27392954 DOWN 10 -27392954 0 512 -~~~ -~~~ -27392972 0 1536 -~~~ -~~~ -27392974 0 1024 -27392975 homeCount = 73 -27392976 waitCount = 29 -27392976 ripCount = 28 -27392977 locktype1 = 1 -27392977 locktype2 = 6 -27392978 locktype3 = 9 -27392978 goalCount = 0 -27392979 goalTotal = 20 -27392979 otherCount = 36 -~~~ -27393151 UP 10 -27393152 waslock = 0 -27393151 512 1024 -~~~ -27393293 DOWN 10 -27393293 0 1024 -~~~ -~~~ -27393320 UP 10 -27393320 waslock = 0 -27393320 512 1024 -~~~ -~~~ -27393323 homeCount = 73 -27393323 waitCount = 29 -27393324 ripCount = 28 -27393324 locktype1 = 1 -27393325 locktype2 = 6 -27393325 locktype3 = 9 -27393326 goalCount = 0 -27393326 goalTotal = 20 -27393347 otherCount = 36 -~~~ -~~~ -27393593 DOWN 10 -27393593 0 1024 -27393607 UP 10 -27393607 waslock = 0 -27393607 512 1024 -~~~ -~~~ -~~~ -~~~ -27393623 homeCount = 73 -27393623 waitCount = 29 -27393624 ripCount = 28 -27393624 locktype1 = 1 -27393625 locktype2 = 6 -27393625 locktype3 = 9 -27393626 goalCount = 0 -27393626 goalTotal = 20 -27393627 otherCount = 36 -~~~ -~~~ -27393753 DOWN 10 -27393753 0 1024 -27393770 UP 10 -27393770 waslock = 0 -27393770 512 1024 -~~~ -~~~ -~~~ -~~~ -27393782 homeCount = 73 -27393782 waitCount = 29 -27393783 ripCount = 28 -27393783 locktype1 = 1 -27393784 locktype2 = 6 -27393784 locktype3 = 9 -27393785 goalCount = 0 -27393785 goalTotal = 20 -27393786 otherCount = 36 -~~~ -~~~ -27393918 DOWN 10 -27393918 0 1024 -~~~ -~~~ -~~~ -27393940 UP 10 -27393940 waslock = 0 -27393940 512 1024 -~~~ -27393942 homeCount = 73 -27393942 waitCount = 29 -27393943 ripCount = 28 -27393943 locktype1 = 1 -27393944 locktype2 = 6 -27393944 locktype3 = 9 -27393945 goalCount = 0 -27393945 goalTotal = 20 -27393946 otherCount = 36 -~~~ -~~~ -27397740 DOWN 10 -27397740 0 1024 -~~~ -~~~ -~~~ -~~~ -27397761 homeCount = 73 -27397761 waitCount = 29 -27397762 ripCount = 28 -27397762 locktype1 = 1 -27397763 locktype2 = 6 -27397763 locktype3 = 9 -27397764 goalCount = 0 -27397764 goalTotal = 20 -27397765 otherCount = 36 -~~~ -27397767 UP 10 -27397767 waslock = 0 -27397767 512 1024 -~~~ -27397836 DOWN 10 -27397836 0 1024 -~~~ -~~~ -~~~ -~~~ -27397863 homeCount = 73 -27397863 waitCount = 29 -27397864 ripCount = 28 -27397865 locktype1 = 1 -27397865 locktype2 = 6 -27397866 locktype3 = 9 -27397866 goalCount = 0 -27397867 goalTotal = 20 -27397867 otherCount = 36 -~~~ -27401205 UP 11 -27401205 1024 1024 -27405837 DOWN 11 -27405837 0 1024 -27405869 UP 11 -27405869 1024 1024 -27405991 DOWN 11 -27405991 0 1024 -27406002 UP 11 -27406002 1024 1024 -27408205 BEEP1 -27408205 BEEP2 -~~~ -~~~ -~~~ -27408231 1024 33555456 -~~~ -27408381 1024 1024 -27415414 DOWN 11 -27415414 0 1024 -27415427 UP 11 -27415427 1024 1024 -27415439 DOWN 11 -27415439 0 1024 -~~~ -~~~ -27415441 0 0 -~~~ -~~~ -27415442 0 1 -~~~ -~~~ -27415444 0 3 -~~~ -~~~ -27415446 0 7 -~~~ -~~~ -27415447 0 15 -~~~ -~~~ -27415449 0 31 -~~~ -~~~ -27415451 0 63 -~~~ -~~~ -27415453 0 127 -~~~ -~~~ -27415455 0 255 -27415456 homeCount = 73 -27415456 waitCount = 29 -27415457 ripCount = 29 -27415478 locktype1 = 1 -27415478 locktype2 = 6 -27415479 locktype3 = 9 -27415479 goalCount = 0 -27415480 goalTotal = 20 -27415480 otherCount = 36 -~~~ -27415481 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27415509 homeCount = 73 -27415509 waitCount = 29 -27415510 ripCount = 29 -27415510 locktype1 = 1 -27415511 locktype2 = 6 -27415511 locktype3 = 9 -27415512 goalCount = 0 -27415512 goalTotal = 20 -27415513 otherCount = 36 -~~~ -27415534 CURRENTGOAL IS [1] -~~~ -27415535 UP 11 -27415535 1024 255 -27417762 DOWN 11 -27417762 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27417797 homeCount = 73 -27417798 waitCount = 29 -27417798 ripCount = 29 -27417799 locktype1 = 1 -27417799 locktype2 = 6 -27417800 locktype3 = 9 -27417800 goalCount = 0 -27417801 goalTotal = 20 -27417801 otherCount = 36 -~~~ -27417802 CURRENTGOAL IS [1] -~~~ -27420577 UP 6 -27420577 32 255 -~~~ -~~~ -27421351 DOWN 6 -27421351 0 255 -~~~ -~~~ -27421370 0 254 -~~~ -~~~ -27421372 0 252 -~~~ -~~~ -27421374 0 248 -~~~ -~~~ -27421376 0 240 -~~~ -~~~ -27421377 0 224 -~~~ -~~~ -27421379 0 192 -~~~ -~~~ -27421381 0 128 -~~~ -~~~ -27421383 0 0 -~~~ -~~~ -27421385 0 512 -27421386 homeCount = 73 -27421386 waitCount = 29 -27421387 ripCount = 29 -27421387 locktype1 = 1 -27421388 locktype2 = 6 -27421409 locktype3 = 9 -27421409 goalCount = 0 -27421410 goalTotal = 20 -27421410 otherCount = 37 -~~~ -27426117 UP 10 -27426118 waslock = 0 -27426117 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27426143 512 16777728 -~~~ -27426293 512 512 -27426356 DOWN 10 -27426355 0 512 -~~~ -~~~ -27426378 0 2560 -~~~ -~~~ -27426380 0 2048 -27426381 homeCount = 74 -27426381 waitCount = 29 -27426382 ripCount = 29 -27426382 locktype1 = 1 -27426383 locktype2 = 6 -27426383 locktype3 = 9 -27426384 goalCount = 0 -27426384 goalTotal = 20 -27426385 otherCount = 37 -~~~ -27426406 UP 10 -27426406 waslock = 0 -27426406 512 2048 -~~~ -27431666 DOWN 10 -27431666 0 2048 -~~~ -~~~ -~~~ -~~~ -27431691 homeCount = 74 -27431691 waitCount = 29 -27431692 ripCount = 29 -27431692 locktype1 = 1 -27431693 locktype2 = 6 -27431693 locktype3 = 9 -27431694 goalCount = 0 -27431694 goalTotal = 20 -27431695 otherCount = 37 -~~~ -27431705 UP 10 -27431705 waslock = 0 -27431704 512 2048 -~~~ -27431767 DOWN 10 -27431767 0 2048 -~~~ -~~~ -~~~ -~~~ -27431791 homeCount = 74 -27431792 waitCount = 29 -27431792 ripCount = 29 -27431793 locktype1 = 1 -27431793 locktype2 = 6 -27431794 locktype3 = 9 -27431794 goalCount = 0 -27431795 goalTotal = 20 -27431795 otherCount = 37 -~~~ -27434661 UP 12 -27434661 2048 2048 -27435489 DOWN 12 -27435489 0 2048 -27435670 UP 12 -27435670 2048 2048 -27437661 CLICK1 -27437661 CLICK2 -~~~ -~~~ -~~~ -27437680 2048 67110912 -~~~ -27437830 2048 2048 -27446647 DOWN 12 -27446647 0 2048 -~~~ -~~~ -27446668 0 0 -~~~ -~~~ -27446670 0 1 -~~~ -~~~ -27446672 0 3 -~~~ -~~~ -27446673 0 7 -~~~ -~~~ -27446675 0 15 -~~~ -~~~ -27446677 0 31 -~~~ -~~~ -27446679 0 63 -~~~ -~~~ -27446681 0 127 -~~~ -~~~ -27446683 0 255 -27446684 homeCount = 74 -27446684 waitCount = 30 -27446685 ripCount = 29 -27446685 locktype1 = 1 -27446686 locktype2 = 6 -27446706 locktype3 = 9 -27446707 goalCount = 0 -27446707 goalTotal = 20 -27446708 otherCount = 37 -~~~ -27446709 CURRENTGOAL IS [1] -~~~ -27449877 UP 3 -27449877 4 255 -~~~ -~~~ -27450268 DOWN 3 -27450268 0 255 -~~~ -~~~ -27450290 0 254 -~~~ -~~~ -27450292 0 252 -~~~ -~~~ -27450294 0 248 -~~~ -~~~ -27450296 0 240 -~~~ -~~~ -27450298 0 224 -~~~ -~~~ -27450299 0 192 -~~~ -~~~ -27450301 0 128 -~~~ -~~~ -27450303 0 0 -~~~ -~~~ -27450305 0 512 -27450306 homeCount = 74 -27450306 waitCount = 30 -27450307 ripCount = 29 -27450307 locktype1 = 1 -27450329 locktype2 = 6 -27450329 locktype3 = 9 -27450330 goalCount = 0 -27450330 goalTotal = 20 -27450331 otherCount = 38 -~~~ -27454527 UP 10 -27454527 waslock = 0 -27454527 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27454559 512 16777728 -~~~ -27454581 DOWN 10 -27454581 0 16777728 -~~~ -~~~ -27454604 0 16779776 -~~~ -~~~ -27454606 0 16779264 -27454607 homeCount = 75 -27454607 waitCount = 30 -27454608 ripCount = 29 -27454608 locktype1 = 1 -27454609 locktype2 = 6 -27454609 locktype3 = 9 -27454610 goalCount = 0 -27454610 goalTotal = 20 -27454611 otherCount = 38 -~~~ -27454632 UP 10 -27454633 waslock = 0 -27454632 512 16779264 -~~~ -27454709 512 2048 -27454756 DOWN 10 -27454756 0 2048 -~~~ -~~~ -~~~ -~~~ -27454777 homeCount = 75 -27454777 waitCount = 30 -27454778 ripCount = 29 -27454778 locktype1 = 1 -27454779 locktype2 = 6 -27454779 locktype3 = 9 -27454780 goalCount = 0 -27454780 goalTotal = 20 -27454781 otherCount = 38 -~~~ -27454826 UP 10 -27454826 waslock = 0 -27454826 512 2048 -~~~ -27458766 DOWN 10 -27458766 0 2048 -~~~ -~~~ -~~~ -~~~ -27458789 homeCount = 75 -27458789 waitCount = 30 -27458790 ripCount = 29 -27458790 locktype1 = 1 -27458791 locktype2 = 6 -27458791 locktype3 = 9 -27458792 goalCount = 0 -27458792 goalTotal = 20 -27458793 otherCount = 38 -~~~ -27460839 UP 12 -27460839 2048 2048 -27460866 DOWN 12 -27460866 0 2048 -27460888 UP 12 -27460888 2048 2048 -27465667 DOWN 12 -27465667 0 2048 -27465757 UP 12 -27465757 2048 2048 -27468839 CLICK1 -27468839 CLICK2 -~~~ -~~~ -~~~ -27468867 2048 67110912 -~~~ -27469017 2048 2048 -27475004 DOWN 12 -27475004 0 2048 -~~~ -~~~ -27475026 0 0 -~~~ -~~~ -27475027 0 1 -~~~ -~~~ -27475029 0 3 -~~~ -~~~ -27475031 0 7 -~~~ -~~~ -27475033 0 15 -~~~ -~~~ -27475035 0 31 -~~~ -~~~ -27475037 0 63 -~~~ -~~~ -27475038 0 127 -~~~ -~~~ -27475040 0 255 -27475041 homeCount = 75 -27475042 waitCount = 31 -27475042 ripCount = 29 -27475043 locktype1 = 1 -27475043 locktype2 = 6 -27475064 locktype3 = 9 -27475065 goalCount = 0 -27475065 goalTotal = 20 -27475066 otherCount = 38 -~~~ -27475067 CURRENTGOAL IS [1] -~~~ -27475072 UP 12 -27475072 2048 255 -27475103 DOWN 12 -27475103 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27475142 homeCount = 75 -27475143 waitCount = 31 -27475143 ripCount = 29 -27475144 locktype1 = 1 -27475144 locktype2 = 6 -27475145 locktype3 = 9 -27475145 goalCount = 0 -27475146 goalTotal = 20 -27475147 otherCount = 38 -~~~ -27475148 CURRENTGOAL IS [1] -~~~ -27482092 UP 2 -27482092 2 255 -~~~ -~~~ -27482690 DOWN 2 -27482690 0 255 -~~~ -~~~ -27482709 0 254 -~~~ -~~~ -27482711 0 252 -~~~ -~~~ -27482712 0 248 -~~~ -~~~ -27482714 0 240 -~~~ -~~~ -27482716 0 224 -~~~ -~~~ -27482718 0 192 -~~~ -~~~ -27482720 0 128 -~~~ -~~~ -27482722 0 0 -~~~ -~~~ -27482723 0 512 -27482724 homeCount = 75 -27482725 waitCount = 31 -27482725 ripCount = 29 -27482726 locktype1 = 1 -27482747 locktype2 = 6 -27482748 locktype3 = 9 -27482748 goalCount = 0 -27482749 goalTotal = 20 -27482749 otherCount = 39 -~~~ -27487605 UP 10 -27487606 waslock = 0 -27487605 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27487635 512 16777728 -~~~ -27487754 DOWN 10 -27487754 0 16777728 -~~~ -~~~ -27487779 0 16778752 -~~~ -~~~ -27487781 0 16778240 -27487782 homeCount = 76 -27487782 waitCount = 31 -27487783 ripCount = 29 -27487783 locktype1 = 1 -27487784 locktype2 = 6 -27487784 locktype3 = 9 -27487785 goalCount = 0 -27487785 goalTotal = 20 -27487786 otherCount = 39 -~~~ -27487807 0 1024 -27487838 UP 10 -27487838 waslock = 0 -27487838 512 1024 -~~~ -27487993 DOWN 10 -27487993 0 1024 -27488009 UP 10 -27488009 waslock = 0 -27488009 512 1024 -~~~ -~~~ -~~~ -~~~ -27488022 homeCount = 76 -27488022 waitCount = 31 -27488023 ripCount = 29 -27488023 locktype1 = 1 -27488024 locktype2 = 6 -27488024 locktype3 = 9 -27488025 goalCount = 0 -27488025 goalTotal = 20 -27488026 otherCount = 39 -~~~ -~~~ -27492613 DOWN 10 -27492613 0 1024 -~~~ -~~~ -~~~ -~~~ -27492643 homeCount = 76 -27492644 waitCount = 31 -27492644 ripCount = 29 -27492645 locktype1 = 1 -27492645 locktype2 = 6 -27492646 locktype3 = 9 -27492646 goalCount = 0 -27492647 goalTotal = 20 -27492647 otherCount = 39 -~~~ -27492656 UP 10 -27492656 waslock = 0 -27492656 512 1024 -~~~ -27492718 DOWN 10 -27492718 0 1024 -~~~ -~~~ -~~~ -~~~ -27492751 homeCount = 76 -27492752 waitCount = 31 -27492752 ripCount = 29 -27492753 locktype1 = 1 -27492753 locktype2 = 6 -27492754 locktype3 = 9 -27492754 goalCount = 0 -27492755 goalTotal = 20 -27492755 otherCount = 39 -~~~ -27495022 UP 11 -27495022 1024 1024 -27497784 DOWN 11 -27497784 0 1024 -27497812 UP 11 -27497812 1024 1024 -27498522 BEEP1 -27498522 BEEP2 -~~~ -~~~ -~~~ -27498543 1024 33555456 -~~~ -27498693 1024 1024 -27505621 DOWN 11 -27505621 0 1024 -~~~ -~~~ -27505642 0 0 -~~~ -~~~ -27505644 0 1 -~~~ -~~~ -27505646 0 3 -~~~ -~~~ -27505647 0 7 -~~~ -~~~ -27505649 0 15 -~~~ -~~~ -27505651 0 31 -~~~ -~~~ -27505653 0 63 -~~~ -~~~ -27505655 0 127 -~~~ -~~~ -27505657 0 255 -27505658 homeCount = 76 -27505658 waitCount = 31 -27505659 ripCount = 30 -27505659 locktype1 = 1 -27505660 locktype2 = 6 -27505681 locktype3 = 9 -27505681 goalCount = 0 -27505682 goalTotal = 20 -27505682 otherCount = 39 -~~~ -27505683 CURRENTGOAL IS [1] -~~~ -27509309 UP 7 -27509309 64 255 -27509329 DOWN 7 -27509329 0 255 -~~~ -~~~ -~~~ -~~~ -27509353 0 254 -~~~ -~~~ -27509355 0 252 -~~~ -~~~ -27509356 0 248 -~~~ -~~~ -27509358 0 240 -~~~ -~~~ -27509360 0 224 -~~~ -~~~ -27509362 0 192 -~~~ -~~~ -27509364 0 128 -~~~ -~~~ -27509366 0 0 -~~~ -~~~ -27509367 0 512 -27509368 homeCount = 76 -27509369 waitCount = 31 -27509369 ripCount = 30 -27509370 locktype1 = 1 -27509370 locktype2 = 6 -27509391 locktype3 = 9 -27509392 goalCount = 0 -27509392 goalTotal = 20 -27509393 otherCount = 40 -~~~ -27509408 64 512 -27510460 DOWN 7 -27510460 0 512 -27515208 UP 10 -27515208 waslock = 0 -27515208 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27515238 512 16777728 -~~~ -27515387 512 512 -27515447 DOWN 10 -27515447 0 512 -~~~ -~~~ -27515474 0 1536 -~~~ -~~~ -27515476 0 1024 -27515477 homeCount = 77 -27515477 waitCount = 31 -27515478 ripCount = 30 -27515478 locktype1 = 1 -27515479 locktype2 = 6 -27515479 locktype3 = 9 -27515480 goalCount = 0 -27515480 goalTotal = 20 -27515481 otherCount = 40 -~~~ -27515502 UP 10 -27515502 waslock = 0 -27515502 512 1024 -~~~ -27519901 DOWN 10 -27519901 0 1024 -27519912 UP 10 -27519912 waslock = 0 -27519912 512 1024 -~~~ -~~~ -~~~ -~~~ -27519937 homeCount = 77 -27519937 waitCount = 31 -27519938 ripCount = 30 -27519938 locktype1 = 1 -27519939 locktype2 = 6 -27519939 locktype3 = 9 -27519940 goalCount = 0 -27519940 goalTotal = 20 -27519941 otherCount = 40 -~~~ -~~~ -27520005 DOWN 10 -27520005 0 1024 -~~~ -~~~ -~~~ -~~~ -27520037 homeCount = 77 -27520037 waitCount = 31 -27520038 ripCount = 30 -27520038 locktype1 = 1 -27520039 locktype2 = 6 -27520039 locktype3 = 9 -27520040 goalCount = 0 -27520040 goalTotal = 20 -27520041 otherCount = 40 -~~~ -27522612 UP 11 -27522612 1024 1024 -27526612 BEEP1 -27526612 BEEP2 -~~~ -~~~ -~~~ -27526634 1024 33555456 -~~~ -27526784 1024 1024 -27534399 DOWN 11 -27534399 0 1024 -~~~ -~~~ -27534424 0 0 -~~~ -~~~ -27534425 0 1 -~~~ -~~~ -27534427 0 3 -~~~ -~~~ -27534429 0 7 -~~~ -~~~ -27534431 0 15 -~~~ -~~~ -27534433 0 31 -~~~ -~~~ -27534435 0 63 -~~~ -~~~ -27534436 0 127 -~~~ -~~~ -27534438 0 255 -27534439 homeCount = 77 -27534440 waitCount = 31 -27534440 ripCount = 31 -27534441 locktype1 = 1 -27534441 locktype2 = 6 -27534462 locktype3 = 9 -27534463 goalCount = 0 -27534463 goalTotal = 20 -27534464 otherCount = 40 -~~~ -27534465 CURRENTGOAL IS [1] -~~~ -27539259 UP 5 -27539259 16 255 -~~~ -~~~ -27539345 DOWN 5 -27539345 0 255 -~~~ -~~~ -27539365 0 254 -~~~ -~~~ -27539366 0 252 -~~~ -~~~ -27539368 0 248 -~~~ -~~~ -27539370 0 240 -~~~ -~~~ -27539372 0 224 -~~~ -~~~ -27539374 0 192 -~~~ -~~~ -27539375 0 128 -~~~ -~~~ -27539377 0 0 -~~~ -~~~ -27539379 0 512 -27539380 homeCount = 77 -27539381 waitCount = 31 -27539381 ripCount = 31 -27539382 locktype1 = 1 -27539382 locktype2 = 6 -27539403 locktype3 = 9 -27539404 goalCount = 0 -27539404 goalTotal = 20 -27539405 otherCount = 41 -~~~ -27539853 16 512 -27540465 DOWN 5 -27540465 0 512 -27540535 16 512 -27540559 DOWN 5 -27540559 0 512 -27545443 UP 10 -27545443 waslock = 0 -27545442 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27545472 512 16777728 -~~~ -27545622 512 512 -27545710 DOWN 10 -27545710 0 512 -~~~ -~~~ -27545737 0 1536 -~~~ -~~~ -27545739 0 1024 -27545740 homeCount = 78 -27545741 waitCount = 31 -27545741 ripCount = 31 -27545742 locktype1 = 1 -27545742 locktype2 = 6 -27545743 locktype3 = 9 -27545743 goalCount = 0 -27545744 goalTotal = 20 -27545744 otherCount = 41 -~~~ -27545765 UP 10 -27545766 waslock = 0 -27545765 512 1024 -~~~ -27552068 DOWN 10 -27552068 0 1024 -~~~ -~~~ -~~~ -~~~ -27552094 homeCount = 78 -27552095 waitCount = 31 -27552095 ripCount = 31 -27552096 locktype1 = 1 -27552096 locktype2 = 6 -27552097 locktype3 = 9 -27552097 goalCount = 0 -27552098 goalTotal = 20 -27552098 otherCount = 41 -~~~ -27552127 UP 10 -27552127 waslock = 0 -27552127 512 1024 -~~~ -27552162 DOWN 10 -27552162 0 1024 -~~~ -~~~ -~~~ -~~~ -27552191 homeCount = 78 -27552191 waitCount = 31 -27552192 ripCount = 31 -27552192 locktype1 = 1 -27552193 locktype2 = 6 -27552193 locktype3 = 9 -27552194 goalCount = 0 -27552194 goalTotal = 20 -27552195 otherCount = 41 -~~~ -27555522 UP 11 -27555522 1024 1024 -27555840 DOWN 11 -27555840 0 1024 -27555878 UP 11 -27555878 1024 1024 -27555985 DOWN 11 -27555985 0 1024 -27556185 LOCKOUT 3 -~~~ -27556203 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -27556206 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27561528 UP 11 -27561528 1024 0 -27561696 DOWN 11 -27561696 0 0 -27569980 UP 1 -27569980 1 0 -27570625 DOWN 1 -27570625 0 0 -27570643 1 0 -27570978 DOWN 1 -27570978 0 0 -27579623 512 0 -27579824 0 0 -27581203 LOCKEND -~~~ -~~~ -~~~ -27581224 0 512 -27582044 UP 10 -27582044 waslock = 0 -27582044 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27582081 512 16777728 -~~~ -27582231 512 512 -27582274 DOWN 10 -27582274 0 512 -~~~ -~~~ -27582292 0 2560 -~~~ -~~~ -27582294 0 2048 -27582295 homeCount = 79 -27582295 waitCount = 31 -27582296 ripCount = 31 -27582296 locktype1 = 1 -27582297 locktype2 = 6 -27582297 locktype3 = 10 -27582298 goalCount = 0 -27582298 goalTotal = 20 -27582299 otherCount = 41 -~~~ -27582320 UP 10 -27582321 waslock = 0 -27582320 512 2048 -~~~ -27582472 DOWN 10 -27582472 0 2048 -~~~ -~~~ -~~~ -~~~ -27582495 homeCount = 79 -27582495 waitCount = 31 -27582496 ripCount = 31 -27582496 locktype1 = 1 -27582497 locktype2 = 6 -27582497 locktype3 = 10 -27582498 goalCount = 0 -27582498 goalTotal = 20 -27582499 otherCount = 41 -~~~ -27582502 UP 10 -27582503 waslock = 0 -27582502 512 2048 -~~~ -27587012 DOWN 10 -27587012 0 2048 -27587023 UP 10 -27587024 waslock = 0 -27587023 512 2048 -~~~ -~~~ -~~~ -~~~ -27587035 homeCount = 79 -27587035 waitCount = 31 -27587036 ripCount = 31 -27587036 locktype1 = 1 -27587037 locktype2 = 6 -27587037 locktype3 = 10 -27587038 goalCount = 0 -27587038 goalTotal = 20 -27587039 otherCount = 41 -~~~ -~~~ -27587107 DOWN 10 -27587107 0 2048 -~~~ -~~~ -~~~ -~~~ -27587134 homeCount = 79 -27587135 waitCount = 31 -27587135 ripCount = 31 -27587136 locktype1 = 1 -27587136 locktype2 = 6 -27587137 locktype3 = 10 -27587137 goalCount = 0 -27587138 goalTotal = 20 -27587139 otherCount = 41 -~~~ -27589509 UP 12 -27589509 2048 2048 -27591426 DOWN 12 -27591426 0 2048 -27591493 UP 12 -27591493 2048 2048 -27595563 DOWN 12 -27595563 0 2048 -27595758 UP 12 -27595758 2048 2048 -27597010 CLICK1 -27597010 CLICK2 -~~~ -~~~ -~~~ -27597035 2048 67110912 -~~~ -27597185 2048 2048 -27603647 DOWN 12 -27603647 0 2048 -~~~ -~~~ -27603673 0 0 -~~~ -~~~ -27603675 0 1 -~~~ -~~~ -27603677 0 3 -~~~ -~~~ -27603679 0 7 -~~~ -~~~ -27603680 0 15 -~~~ -~~~ -27603682 0 31 -~~~ -~~~ -27603684 0 63 -~~~ -~~~ -27603686 0 127 -~~~ -~~~ -27603688 0 255 -27603689 homeCount = 79 -27603689 waitCount = 32 -27603690 ripCount = 31 -27603690 locktype1 = 1 -27603691 locktype2 = 6 -27603712 locktype3 = 10 -27603712 goalCount = 0 -27603713 goalTotal = 20 -27603713 otherCount = 41 -~~~ -27603715 CURRENTGOAL IS [1] -~~~ -27607433 UP 4 -27607433 8 255 -~~~ -~~~ -27608146 DOWN 4 -27608146 0 255 -~~~ -~~~ -27608171 0 254 -~~~ -~~~ -27608173 0 252 -~~~ -~~~ -27608174 0 248 -~~~ -~~~ -27608176 0 240 -~~~ -~~~ -27608178 0 224 -~~~ -~~~ -27608180 0 192 -~~~ -~~~ -27608182 0 128 -~~~ -~~~ -27608184 0 0 -~~~ -~~~ -27608186 0 512 -27608186 homeCount = 79 -27608187 waitCount = 32 -27608188 ripCount = 31 -27608188 locktype1 = 1 -27608209 locktype2 = 6 -27608210 locktype3 = 10 -27608210 goalCount = 0 -27608211 goalTotal = 20 -27608211 otherCount = 42 -~~~ -27613875 UP 10 -27613875 waslock = 0 -27613875 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27613908 512 16777728 -~~~ -27613925 DOWN 10 -27613925 0 16777728 -~~~ -~~~ -27613944 0 16779776 -~~~ -~~~ -27613946 0 16779264 -27613947 homeCount = 80 -27613948 waitCount = 32 -27613948 ripCount = 31 -27613949 locktype1 = 1 -27613949 locktype2 = 6 -27613950 locktype3 = 10 -27613950 goalCount = 0 -27613951 goalTotal = 20 -27613951 otherCount = 42 -~~~ -27613972 UP 10 -27613973 waslock = 0 -27613972 512 16779264 -~~~ -27614058 512 2048 -27614058 DOWN 10 -27614058 0 2048 -~~~ -~~~ -~~~ -~~~ -27614087 homeCount = 80 -27614087 waitCount = 32 -27614088 ripCount = 31 -27614088 locktype1 = 1 -27614089 locktype2 = 6 -27614089 locktype3 = 10 -27614090 goalCount = 0 -27614090 goalTotal = 20 -27614091 otherCount = 42 -~~~ -27614158 UP 10 -27614158 waslock = 0 -27614158 512 2048 -~~~ -27620143 DOWN 10 -27620143 0 2048 -~~~ -~~~ -~~~ -~~~ -27620166 homeCount = 80 -27620166 waitCount = 32 -27620167 ripCount = 31 -27620167 locktype1 = 1 -27620168 locktype2 = 6 -27620168 locktype3 = 10 -27620169 goalCount = 0 -27620169 goalTotal = 20 -27620170 otherCount = 42 -~~~ -27623236 UP 12 -27623236 2048 2048 -27625528 DOWN 12 -27625527 0 2048 -27625543 UP 12 -27625543 2048 2048 -27625606 DOWN 12 -27625606 0 2048 -27625661 UP 12 -27625661 2048 2048 -27626237 CLICK1 -27626237 CLICK2 -~~~ -~~~ -~~~ -27626266 2048 67110912 -~~~ -27626416 2048 2048 -27631910 DOWN 12 -27631910 0 2048 -~~~ -27631934 UP 12 -27631934 2048 2048 -~~~ -~~~ -27631936 2048 0 -~~~ -~~~ -27631937 2048 1 -~~~ -27631938 2048 3 -~~~ -~~~ -27631940 2048 7 -~~~ -~~~ -27631942 2048 15 -~~~ -~~~ -27631943 2048 31 -~~~ -~~~ -27631945 2048 63 -~~~ -~~~ -27631947 2048 127 -~~~ -~~~ -27631949 2048 255 -27631950 homeCount = 80 -27631971 waitCount = 33 -27631971 ripCount = 31 -27631972 locktype1 = 1 -27631972 locktype2 = 6 -27631973 locktype3 = 10 -27631973 goalCount = 0 -27631974 goalTotal = 20 -27631974 otherCount = 42 -~~~ -27631975 CURRENTGOAL IS [1] -~~~ -27632012 DOWN 12 -27632012 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27632045 homeCount = 80 -27632045 waitCount = 33 -27632046 ripCount = 31 -27632047 locktype1 = 1 -27632047 locktype2 = 6 -27632048 locktype3 = 10 -27632048 goalCount = 0 -27632049 goalTotal = 20 -27632049 otherCount = 42 -~~~ -27632050 CURRENTGOAL IS [1] -~~~ -27632101 UP 12 -27632101 2048 255 -27632109 DOWN 12 -27632109 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27632148 homeCount = 80 -27632149 waitCount = 33 -27632150 ripCount = 31 -27632150 locktype1 = 1 -27632151 locktype2 = 6 -27632151 locktype3 = 10 -27632152 goalCount = 0 -27632152 goalTotal = 20 -27632153 otherCount = 42 -~~~ -27632154 CURRENTGOAL IS [1] -~~~ -27635610 UP 3 -27635610 4 255 -~~~ -~~~ -27636256 DOWN 3 -27636256 0 255 -~~~ -~~~ -27636278 0 254 -~~~ -~~~ -27636280 0 252 -~~~ -~~~ -27636282 0 248 -~~~ -~~~ -27636284 0 240 -~~~ -~~~ -27636286 0 224 -~~~ -~~~ -27636287 0 192 -~~~ -~~~ -27636289 0 128 -~~~ -~~~ -27636291 0 0 -~~~ -~~~ -27636293 0 512 -27636294 homeCount = 80 -27636294 waitCount = 33 -27636295 ripCount = 31 -27636295 locktype1 = 1 -27636317 locktype2 = 6 -27636317 locktype3 = 10 -27636318 goalCount = 0 -27636318 goalTotal = 20 -27636319 otherCount = 43 -~~~ -27639801 UP 10 -27639801 waslock = 0 -27639801 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27639826 512 16777728 -~~~ -27639833 DOWN 10 -27639833 0 16777728 -~~~ -~~~ -27639856 0 16779776 -~~~ -~~~ -27639858 0 16779264 -27639859 homeCount = 81 -27639860 waitCount = 33 -27639860 ripCount = 31 -27639861 locktype1 = 1 -27639861 locktype2 = 6 -27639862 locktype3 = 10 -27639862 goalCount = 0 -27639863 goalTotal = 20 -27639863 otherCount = 43 -~~~ -27639884 UP 10 -27639884 waslock = 0 -27639884 512 16779264 -~~~ -27639976 512 2048 -27640009 DOWN 10 -27640009 0 2048 -27640033 UP 10 -27640033 waslock = 0 -27640033 512 2048 -~~~ -~~~ -~~~ -~~~ -27640042 homeCount = 81 -27640042 waitCount = 33 -27640043 ripCount = 31 -27640043 locktype1 = 1 -27640044 locktype2 = 6 -27640044 locktype3 = 10 -27640045 goalCount = 0 -27640045 goalTotal = 20 -27640046 otherCount = 43 -~~~ -~~~ -27644807 DOWN 10 -27644807 0 2048 -~~~ -~~~ -~~~ -~~~ -27644834 homeCount = 81 -27644834 waitCount = 33 -27644835 ripCount = 31 -27644835 locktype1 = 1 -27644836 locktype2 = 6 -27644836 locktype3 = 10 -27644837 goalCount = 0 -27644837 goalTotal = 20 -27644838 otherCount = 43 -~~~ -27646984 UP 12 -27646984 2048 2048 -27651484 CLICK1 -27651484 CLICK2 -~~~ -~~~ -~~~ -27651502 2048 67110912 -~~~ -27651652 2048 2048 -27656240 DOWN 12 -27656240 0 2048 -27656249 UP 12 -27656249 2048 2048 -~~~ -~~~ -27656262 2048 0 -~~~ -~~~ -27656264 2048 1 -~~~ -~~~ -27656266 2048 3 -~~~ -~~~ -27656268 2048 7 -~~~ -~~~ -27656270 2048 15 -~~~ -~~~ -27656271 2048 31 -~~~ -~~~ -27656273 2048 63 -~~~ -~~~ -27656275 2048 127 -~~~ -~~~ -27656277 2048 255 -27656278 homeCount = 81 -27656278 waitCount = 34 -27656279 ripCount = 31 -27656280 locktype1 = 1 -27656301 locktype2 = 6 -27656301 locktype3 = 10 -27656302 goalCount = 0 -27656302 goalTotal = 20 -27656303 otherCount = 43 -~~~ -27656304 CURRENTGOAL IS [1] -~~~ -27656327 DOWN 12 -27656327 0 255 -27656335 UP 12 -27656335 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656365 DOWN 12 -27656365 0 255 -~~~ -~~~ -~~~ -27656369 homeCount = 81 -27656369 waitCount = 34 -27656370 ripCount = 31 -27656371 locktype1 = 1 -27656371 locktype2 = 6 -27656372 locktype3 = 10 -27656372 goalCount = 0 -27656373 goalTotal = 20 -27656373 otherCount = 43 -~~~ -27656374 CURRENTGOAL IS [1] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656412 homeCount = 81 -27656413 waitCount = 34 -27656413 ripCount = 31 -27656414 locktype1 = 1 -27656414 locktype2 = 6 -27656415 locktype3 = 10 -27656415 goalCount = 0 -27656416 goalTotal = 20 -27656416 otherCount = 43 -~~~ -27656417 CURRENTGOAL IS [1] -~~~ -27656456 UP 12 -27656456 2048 255 -27656502 DOWN 12 -27656502 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656539 homeCount = 81 -27656540 waitCount = 34 -27656540 ripCount = 31 -27656541 locktype1 = 1 -27656541 locktype2 = 6 -27656542 locktype3 = 10 -27656542 goalCount = 0 -27656543 goalTotal = 20 -27656543 otherCount = 43 -~~~ -27656544 CURRENTGOAL IS [1] -~~~ -27656604 UP 12 -27656604 2048 255 -27656632 DOWN 12 -27656632 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656669 homeCount = 81 -27656670 waitCount = 34 -27656670 ripCount = 31 -27656671 locktype1 = 1 -27656671 locktype2 = 6 -27656672 locktype3 = 10 -27656672 goalCount = 0 -27656673 goalTotal = 20 -27656673 otherCount = 43 -~~~ -27656674 CURRENTGOAL IS [1] -~~~ -27656745 UP 12 -27656745 2048 255 -27656777 DOWN 12 -27656776 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656824 homeCount = 81 -27656825 waitCount = 34 -27656825 ripCount = 31 -27656826 locktype1 = 1 -27656826 locktype2 = 6 -27656827 locktype3 = 10 -27656827 goalCount = 0 -27656828 goalTotal = 20 -27656828 otherCount = 43 -~~~ -27656829 CURRENTGOAL IS [1] -~~~ -27656904 UP 12 -27656904 2048 255 -27656933 DOWN 12 -27656933 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27656975 homeCount = 81 -27656975 waitCount = 34 -27656976 ripCount = 31 -27656976 locktype1 = 1 -27656977 locktype2 = 6 -27656977 locktype3 = 10 -27656978 goalCount = 0 -27656978 goalTotal = 20 -27656979 otherCount = 43 -~~~ -27656980 CURRENTGOAL IS [1] -~~~ -27657042 UP 12 -27657042 2048 255 -27657070 DOWN 12 -27657070 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657106 homeCount = 81 -27657106 waitCount = 34 -27657107 ripCount = 31 -27657107 locktype1 = 1 -27657108 locktype2 = 6 -27657108 locktype3 = 10 -27657109 goalCount = 0 -27657109 goalTotal = 20 -27657110 otherCount = 43 -~~~ -27657111 CURRENTGOAL IS [1] -~~~ -27657177 UP 12 -27657177 2048 255 -27657218 DOWN 12 -27657217 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657256 homeCount = 81 -27657256 waitCount = 34 -27657257 ripCount = 31 -27657257 locktype1 = 1 -27657258 locktype2 = 6 -27657258 locktype3 = 10 -27657259 goalCount = 0 -27657259 goalTotal = 20 -27657260 otherCount = 43 -~~~ -27657261 CURRENTGOAL IS [1] -~~~ -27657282 UP 12 -27657282 2048 255 -27657301 DOWN 12 -27657301 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657335 homeCount = 81 -27657335 waitCount = 34 -27657336 ripCount = 31 -27657337 locktype1 = 1 -27657337 locktype2 = 6 -27657338 locktype3 = 10 -27657338 goalCount = 0 -27657339 goalTotal = 20 -27657339 otherCount = 43 -~~~ -27657340 CURRENTGOAL IS [1] -~~~ -27657361 UP 12 -27657361 2048 255 -27657380 DOWN 12 -27657380 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657415 homeCount = 81 -27657415 waitCount = 34 -27657416 ripCount = 31 -27657416 locktype1 = 1 -27657417 locktype2 = 6 -27657417 locktype3 = 10 -27657418 goalCount = 0 -27657418 goalTotal = 20 -27657419 otherCount = 43 -~~~ -27657420 CURRENTGOAL IS [1] -~~~ -27657492 UP 12 -27657492 2048 255 -27657528 DOWN 12 -27657528 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27657567 homeCount = 81 -27657568 waitCount = 34 -27657568 ripCount = 31 -27657569 locktype1 = 1 -27657569 locktype2 = 6 -27657570 locktype3 = 10 -27657570 goalCount = 0 -27657571 goalTotal = 20 -27657571 otherCount = 43 -~~~ -27657572 CURRENTGOAL IS [1] -~~~ -27657594 UP 12 -27657593 2048 255 -27659986 DOWN 12 -27659986 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27660019 homeCount = 81 -27660019 waitCount = 34 -27660020 ripCount = 31 -27660020 locktype1 = 1 -27660021 locktype2 = 6 -27660021 locktype3 = 10 -27660022 goalCount = 0 -27660022 goalTotal = 20 -27660023 otherCount = 43 -~~~ -27660024 CURRENTGOAL IS [1] -~~~ -27660045 UP 12 -27660045 2048 255 -27660067 DOWN 12 -27660067 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27660108 homeCount = 81 -27660108 waitCount = 34 -27660109 ripCount = 31 -27660109 locktype1 = 1 -27660110 locktype2 = 6 -27660110 locktype3 = 10 -27660111 goalCount = 0 -27660111 goalTotal = 20 -27660112 otherCount = 43 -~~~ -27660113 CURRENTGOAL IS [1] -~~~ -27663773 UP 1 -27663773 1 255 -~~~ -~~~ -27663794 outer reward -~~~ -27663794 1 65791 -~~~ -~~~ -27664244 1 255 -27674160 DOWN 1 -27674160 0 255 -~~~ -~~~ -27674180 0 254 -~~~ -~~~ -27674182 0 252 -~~~ -~~~ -27674184 0 248 -~~~ -~~~ -27674186 0 240 -~~~ -~~~ -27674188 0 224 -~~~ -~~~ -27674189 0 192 -~~~ -~~~ -27674191 0 128 -~~~ -~~~ -27674193 0 0 -~~~ -~~~ -27674195 0 512 -27674196 homeCount = 81 -27674196 waitCount = 34 -27674197 ripCount = 31 -27674197 locktype1 = 1 -27674198 locktype2 = 6 -27674219 locktype3 = 10 -27674220 goalCount = 1 -27674220 goalTotal = 21 -27674221 otherCount = 43 -~~~ -27674221 1 512 -27674272 DOWN 1 -27674272 0 512 -27678680 UP 10 -27678680 waslock = 0 -27678679 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27678707 512 16777728 -~~~ -27678857 512 512 -27682040 DOWN 10 -27682040 0 512 -~~~ -~~~ -27682061 0 1536 -~~~ -~~~ -27682062 0 1024 -27682063 homeCount = 82 -27682064 waitCount = 34 -27682065 ripCount = 31 -27682065 locktype1 = 1 -27682066 locktype2 = 6 -27682066 locktype3 = 10 -27682067 goalCount = 1 -27682067 goalTotal = 21 -27682068 otherCount = 43 -~~~ -27682089 UP 10 -27682089 waslock = 0 -27682089 512 1024 -~~~ -27682132 DOWN 10 -27682132 0 1024 -~~~ -~~~ -~~~ -~~~ -27682163 homeCount = 82 -27682164 waitCount = 34 -27682164 ripCount = 31 -27682165 locktype1 = 1 -27682165 locktype2 = 6 -27682166 locktype3 = 10 -27682166 goalCount = 1 -27682167 goalTotal = 21 -27682167 otherCount = 43 -~~~ -27684669 UP 11 -27684669 1024 1024 -27684805 DOWN 11 -27684805 0 1024 -27684823 UP 11 -27684823 1024 1024 -27692669 BEEP1 -27692669 BEEP2 -~~~ -~~~ -~~~ -27692694 1024 33555456 -~~~ -27692843 1024 1024 -27699461 DOWN 11 -27699461 0 1024 -~~~ -~~~ -27699484 0 0 -~~~ -~~~ -27699486 0 1 -~~~ -~~~ -27699488 0 3 -~~~ -~~~ -27699489 0 7 -~~~ -~~~ -27699491 0 15 -~~~ -~~~ -27699493 0 31 -~~~ -~~~ -27699495 0 63 -~~~ -~~~ -27699497 0 127 -~~~ -~~~ -27699498 0 255 -27699499 homeCount = 82 -27699500 waitCount = 34 -27699501 ripCount = 32 -27699501 locktype1 = 1 -27699502 locktype2 = 6 -27699523 locktype3 = 10 -27699523 goalCount = 1 -27699524 goalTotal = 21 -27699524 otherCount = 43 -~~~ -27699525 CURRENTGOAL IS [1] -~~~ -27699526 UP 11 -27699526 1024 255 -27699618 DOWN 11 -27699618 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27699659 homeCount = 82 -27699659 waitCount = 34 -27699660 ripCount = 32 -27699660 locktype1 = 1 -27699661 locktype2 = 6 -27699661 locktype3 = 10 -27699662 goalCount = 1 -27699662 goalTotal = 21 -27699663 otherCount = 43 -~~~ -27699664 CURRENTGOAL IS [1] -~~~ -27699703 UP 11 -27699703 1024 255 -27701657 DOWN 11 -27701657 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27701692 homeCount = 82 -27701692 waitCount = 34 -27701693 ripCount = 32 -27701693 locktype1 = 1 -27701694 locktype2 = 6 -27701694 locktype3 = 10 -27701695 goalCount = 1 -27701695 goalTotal = 21 -27701696 otherCount = 43 -~~~ -27701697 CURRENTGOAL IS [1] -~~~ -27704975 UP 7 -27704975 64 255 -~~~ -~~~ -27705020 DOWN 7 -27705020 0 255 -~~~ -~~~ -27705045 0 254 -~~~ -~~~ -27705047 0 252 -~~~ -~~~ -27705049 0 248 -~~~ -~~~ -27705051 0 240 -~~~ -~~~ -27705053 0 224 -~~~ -~~~ -27705054 0 192 -~~~ -~~~ -27705056 0 128 -~~~ -~~~ -27705058 0 0 -~~~ -~~~ -27705060 0 512 -27705061 homeCount = 82 -27705062 waitCount = 34 -27705062 ripCount = 32 -27705063 locktype1 = 1 -27705063 locktype2 = 6 -27705084 locktype3 = 10 -27705084 goalCount = 1 -27705085 goalTotal = 21 -27705085 otherCount = 44 -~~~ -27705086 64 512 -27705608 DOWN 7 -27705608 0 512 -27709885 UP 10 -27709885 waslock = 0 -27709884 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27709910 512 16777728 -~~~ -27710060 512 512 -27710125 DOWN 10 -27710125 0 512 -27710138 UP 10 -27710139 waslock = 0 -27710138 512 512 -~~~ -~~~ -27710156 512 1536 -~~~ -~~~ -27710158 512 1024 -27710159 homeCount = 83 -27710160 waitCount = 34 -27710160 ripCount = 32 -27710161 locktype1 = 1 -27710161 locktype2 = 6 -27710162 locktype3 = 10 -27710162 goalCount = 1 -27710163 goalTotal = 21 -27710163 otherCount = 44 -~~~ -~~~ -27715361 DOWN 10 -27715361 0 1024 -~~~ -~~~ -~~~ -~~~ -27715381 homeCount = 83 -27715382 waitCount = 34 -27715382 ripCount = 32 -27715383 locktype1 = 1 -27715383 locktype2 = 6 -27715384 locktype3 = 10 -27715384 goalCount = 1 -27715385 goalTotal = 21 -27715385 otherCount = 44 -~~~ -27715396 UP 10 -27715396 waslock = 0 -27715396 512 1024 -~~~ -27715460 DOWN 10 -27715460 0 1024 -~~~ -~~~ -~~~ -~~~ -27715482 homeCount = 83 -27715483 waitCount = 34 -27715483 ripCount = 32 -27715484 locktype1 = 1 -27715484 locktype2 = 6 -27715485 locktype3 = 10 -27715485 goalCount = 1 -27715486 goalTotal = 21 -27715486 otherCount = 44 -~~~ -27718462 UP 11 -27718462 1024 1024 -27725622 DOWN 11 -27725622 0 1024 -27725640 UP 11 -27725639 1024 1024 -27725962 BEEP1 -27725962 BEEP2 -~~~ -~~~ -~~~ -27725991 1024 33555456 -~~~ -27726141 1024 1024 -27732734 DOWN 11 -27732734 0 1024 -~~~ -~~~ -27732758 0 0 -~~~ -~~~ -27732760 0 1 -~~~ -~~~ -27732761 0 3 -~~~ -~~~ -27732763 0 7 -~~~ -~~~ -27732765 0 15 -~~~ -~~~ -27732767 0 31 -~~~ -~~~ -27732769 0 63 -~~~ -~~~ -27732771 0 127 -~~~ -~~~ -27732772 0 255 -27732773 homeCount = 83 -27732774 waitCount = 34 -27732774 ripCount = 33 -27732775 locktype1 = 1 -27732775 locktype2 = 6 -27732796 locktype3 = 10 -27732797 goalCount = 1 -27732797 goalTotal = 21 -27732798 otherCount = 44 -~~~ -27732799 CURRENTGOAL IS [1] -~~~ -27732799 UP 11 -27732799 1024 255 -27732846 DOWN 11 -27732846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27732883 homeCount = 83 -27732883 waitCount = 34 -27732884 ripCount = 33 -27732884 locktype1 = 1 -27732885 locktype2 = 6 -27732885 locktype3 = 10 -27732886 goalCount = 1 -27732886 goalTotal = 21 -27732887 otherCount = 44 -~~~ -27732888 CURRENTGOAL IS [1] -~~~ -27732921 UP 11 -27732921 1024 255 -27732964 DOWN 11 -27732964 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27733006 homeCount = 83 -27733006 waitCount = 34 -27733007 ripCount = 33 -27733007 locktype1 = 1 -27733008 locktype2 = 6 -27733008 locktype3 = 10 -27733009 goalCount = 1 -27733009 goalTotal = 21 -27733010 otherCount = 44 -~~~ -27733011 CURRENTGOAL IS [1] -~~~ -27740748 UP 1 -27740748 1 255 -~~~ -~~~ -27740772 outer reward -~~~ -27740772 1 65791 -~~~ -~~~ -27741222 1 255 -27751154 DOWN 1 -27751154 0 255 -~~~ -~~~ -27751180 0 254 -~~~ -~~~ -27751182 0 252 -~~~ -~~~ -27751184 0 248 -~~~ -~~~ -27751186 0 240 -~~~ -~~~ -27751188 0 224 -~~~ -~~~ -27751189 0 192 -~~~ -~~~ -27751191 0 128 -~~~ -~~~ -27751193 0 0 -~~~ -~~~ -27751195 0 512 -27751196 homeCount = 83 -27751196 waitCount = 34 -27751197 ripCount = 33 -27751197 locktype1 = 1 -27751219 locktype2 = 6 -27751219 locktype3 = 10 -27751220 goalCount = 2 -27751220 goalTotal = 22 -27751221 otherCount = 44 -~~~ -27755454 UP 10 -27755454 waslock = 0 -27755454 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27755488 512 16777728 -~~~ -27755637 512 512 -27760423 DOWN 10 -27760423 0 512 -~~~ -~~~ -27760440 0 2560 -~~~ -~~~ -27760442 0 2048 -27760443 homeCount = 84 -27760444 waitCount = 34 -27760444 ripCount = 33 -27760445 locktype1 = 1 -27760445 locktype2 = 6 -27760446 locktype3 = 10 -27760446 goalCount = 2 -27760447 goalTotal = 22 -27760447 otherCount = 44 -~~~ -27760475 UP 10 -27760475 waslock = 0 -27760475 512 2048 -~~~ -27760523 DOWN 10 -27760523 0 2048 -~~~ -~~~ -~~~ -~~~ -27760554 homeCount = 84 -27760555 waitCount = 34 -27760555 ripCount = 33 -27760556 locktype1 = 1 -27760556 locktype2 = 6 -27760557 locktype3 = 10 -27760557 goalCount = 2 -27760558 goalTotal = 22 -27760559 otherCount = 44 -~~~ -27765567 UP 12 -27765567 2048 2048 -27768756 DOWN 12 -27768756 0 2048 -27768842 UP 12 -27768842 2048 2048 -27768908 DOWN 12 -27768908 0 2048 -27769091 UP 12 -27769091 2048 2048 -27769107 DOWN 12 -27769107 0 2048 -27769128 UP 12 -27769128 2048 2048 -27771567 CLICK1 -27771567 CLICK2 -~~~ -~~~ -~~~ -27771592 2048 67110912 -~~~ -27771742 2048 2048 -27776734 DOWN 12 -27776734 0 2048 -~~~ -~~~ -27776751 0 0 -~~~ -~~~ -27776753 0 1 -~~~ -~~~ -27776754 0 3 -~~~ -~~~ -27776756 0 7 -~~~ -~~~ -27776758 0 15 -~~~ -~~~ -27776760 0 31 -~~~ -~~~ -27776762 0 63 -~~~ -~~~ -27776764 0 127 -~~~ -~~~ -27776765 UP 12 -27776765 2048 255 -27776767 homeCount = 84 -27776767 waitCount = 35 -27776768 ripCount = 33 -27776768 locktype1 = 1 -27776789 locktype2 = 6 -27776790 locktype3 = 10 -27776790 goalCount = 2 -27776791 goalTotal = 22 -27776791 otherCount = 44 -~~~ -27776792 CURRENTGOAL IS [1] -~~~ -27776832 DOWN 12 -27776832 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27776867 homeCount = 84 -27776868 waitCount = 35 -27776869 ripCount = 33 -27776869 locktype1 = 1 -27776870 locktype2 = 6 -27776870 locktype3 = 10 -27776871 goalCount = 2 -27776871 goalTotal = 22 -27776872 otherCount = 44 -~~~ -27776873 CURRENTGOAL IS [1] -~~~ -27789324 UP 1 -27789324 1 255 -~~~ -~~~ -27789343 outer reward -~~~ -27789344 1 65791 -~~~ -~~~ -27789793 1 255 -27798609 DOWN 1 -27798609 0 255 -~~~ -~~~ -27798631 0 254 -~~~ -~~~ -27798633 0 252 -~~~ -~~~ -27798635 0 248 -~~~ -~~~ -27798637 0 240 -~~~ -~~~ -27798638 0 224 -~~~ -~~~ -27798640 0 192 -~~~ -~~~ -27798642 0 128 -~~~ -~~~ -27798644 0 0 -~~~ -~~~ -27798646 0 512 -27798647 homeCount = 84 -27798647 waitCount = 35 -27798648 ripCount = 33 -27798648 locktype1 = 1 -27798649 locktype2 = 6 -27798670 locktype3 = 10 -27798670 goalCount = 3 -27798671 goalTotal = 23 -27798671 otherCount = 44 -~~~ -27805587 UP 10 -27805587 waslock = 0 -27805587 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27805621 512 16777728 -~~~ -27805771 512 512 -27805806 DOWN 10 -27805806 0 512 -~~~ -27805822 UP 10 -27805822 waslock = 0 -27805822 512 512 -~~~ -~~~ -~~~ -27805825 512 2048 -27805826 homeCount = 85 -27805826 waitCount = 35 -27805827 ripCount = 33 -27805827 locktype1 = 1 -27805828 locktype2 = 6 -27805828 locktype3 = 10 -27805829 goalCount = 3 -27805849 goalTotal = 23 -27805850 otherCount = 44 -~~~ -~~~ -27811079 DOWN 10 -27811078 0 2048 -~~~ -~~~ -~~~ -~~~ -27811106 homeCount = 85 -27811107 waitCount = 35 -27811107 ripCount = 33 -27811108 locktype1 = 1 -27811108 locktype2 = 6 -27811109 locktype3 = 10 -27811109 goalCount = 3 -27811110 goalTotal = 23 -27811110 otherCount = 44 -~~~ -27811131 UP 10 -27811132 waslock = 0 -27811131 512 2048 -~~~ -27811175 DOWN 10 -27811175 0 2048 -~~~ -~~~ -~~~ -~~~ -27811202 homeCount = 85 -27811202 waitCount = 35 -27811203 ripCount = 33 -27811203 locktype1 = 1 -27811204 locktype2 = 6 -27811204 locktype3 = 10 -27811205 goalCount = 3 -27811205 goalTotal = 23 -27811206 otherCount = 44 -~~~ -27813456 UP 12 -27813456 2048 2048 -27815579 DOWN 12 -27815579 0 2048 -27815618 UP 12 -27815618 2048 2048 -27818639 DOWN 12 -27818639 0 2048 -27818723 UP 12 -27818723 2048 2048 -27821456 CLICK1 -27821456 CLICK2 -~~~ -~~~ -~~~ -27821480 2048 67110912 -~~~ -27821630 2048 2048 -27830770 DOWN 12 -27830770 0 2048 -~~~ -~~~ -27830788 0 0 -~~~ -~~~ -27830790 0 1 -~~~ -~~~ -27830792 0 3 -~~~ -~~~ -27830794 0 7 -~~~ -~~~ -27830796 0 15 -~~~ -~~~ -27830797 0 31 -~~~ -~~~ -27830799 0 63 -~~~ -~~~ -27830801 0 127 -~~~ -~~~ -27830803 0 255 -27830804 homeCount = 85 -27830805 waitCount = 36 -27830805 ripCount = 33 -27830806 locktype1 = 1 -27830806 locktype2 = 6 -27830827 locktype3 = 10 -27830828 goalCount = 3 -27830828 goalTotal = 23 -27830829 otherCount = 44 -~~~ -27830830 CURRENTGOAL IS [1] -~~~ -27836086 UP 1 -27836086 1 255 -~~~ -~~~ -27836109 outer reward -~~~ -27836110 1 65791 -~~~ -~~~ -27836346 DOWN 1 -27836346 0 65791 -~~~ -~~~ -27836368 0 65790 -~~~ -~~~ -27836369 0 65788 -~~~ -~~~ -27836371 0 65784 -~~~ -~~~ -27836373 0 65776 -~~~ -~~~ -27836375 0 65760 -~~~ -27836376 1 65760 -~~~ -~~~ -27836378 1 65728 -~~~ -27836379 1 65664 -~~~ -~~~ -27836381 1 65536 -~~~ -~~~ -27836382 1 66048 -27836383 homeCount = 85 -27836384 waitCount = 36 -27836405 ripCount = 33 -27836405 locktype1 = 1 -27836406 locktype2 = 6 -27836406 locktype3 = 10 -27836407 goalCount = 4 -27836407 goalTotal = 24 -27836408 otherCount = 44 -~~~ -27836559 1 512 -27845893 DOWN 1 -27845893 0 512 -27845965 1 512 -27846024 DOWN 1 -27846024 0 512 -27846085 1 512 -27846137 DOWN 1 -27846137 0 512 -27850834 UP 10 -27850834 waslock = 0 -27850834 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27850864 512 16777728 -~~~ -27851011 DOWN 10 -27851010 0 16777728 -27851014 0 512 -~~~ -~~~ -27851029 0 1536 -~~~ -~~~ -27851031 0 1024 -27851032 homeCount = 86 -27851033 waitCount = 36 -27851033 ripCount = 33 -27851034 locktype1 = 1 -27851034 locktype2 = 6 -27851035 locktype3 = 10 -27851035 goalCount = 4 -27851036 goalTotal = 24 -27851036 otherCount = 44 -~~~ -27851057 UP 10 -27851058 waslock = 0 -27851057 512 1024 -~~~ -27853817 DOWN 10 -27853817 0 1024 -~~~ -~~~ -~~~ -~~~ -27853841 homeCount = 86 -27853841 waitCount = 36 -27853842 ripCount = 33 -27853842 locktype1 = 1 -27853843 locktype2 = 6 -27853843 locktype3 = 10 -27853844 goalCount = 4 -27853844 goalTotal = 24 -27853845 otherCount = 44 -~~~ -27856740 UP 11 -27856740 1024 1024 -27860921 DOWN 11 -27860921 0 1024 -27860925 UP 11 -27860925 1024 1024 -27864241 BEEP1 -27864241 BEEP2 -~~~ -~~~ -~~~ -27864260 1024 33555456 -~~~ -27864410 1024 1024 -27870387 DOWN 11 -27870387 0 1024 -27870394 UP 11 -27870394 1024 1024 -~~~ -~~~ -27870408 1024 0 -~~~ -~~~ -27870410 1024 1 -~~~ -~~~ -27870412 1024 3 -~~~ -~~~ -27870413 1024 7 -~~~ -~~~ -27870415 1024 15 -~~~ -~~~ -27870417 1024 31 -~~~ -~~~ -27870419 1024 63 -~~~ -~~~ -27870421 1024 127 -~~~ -~~~ -27870423 1024 255 -27870424 homeCount = 86 -27870424 waitCount = 36 -27870425 ripCount = 34 -27870425 locktype1 = 1 -27870446 locktype2 = 6 -27870447 locktype3 = 10 -27870447 goalCount = 4 -27870448 goalTotal = 24 -27870448 otherCount = 44 -~~~ -27870450 CURRENTGOAL IS [1] -~~~ -27872522 DOWN 11 -27872522 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872551 UP 11 -27872551 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872557 homeCount = 86 -27872557 waitCount = 36 -27872558 ripCount = 34 -27872559 locktype1 = 1 -27872559 locktype2 = 6 -27872560 locktype3 = 10 -27872560 goalCount = 4 -27872561 goalTotal = 24 -27872561 otherCount = 44 -~~~ -27872562 CURRENTGOAL IS [1] -~~~ -27872619 DOWN 11 -27872619 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27872660 homeCount = 86 -27872661 waitCount = 36 -27872661 ripCount = 34 -27872662 locktype1 = 1 -27872662 locktype2 = 6 -27872663 locktype3 = 10 -27872663 goalCount = 4 -27872664 goalTotal = 24 -27872664 otherCount = 44 -~~~ -27872666 CURRENTGOAL IS [1] -~~~ -27877231 UP 1 -27877231 1 255 -~~~ -~~~ -27877255 outer reward -~~~ -27877255 1 65791 -~~~ -~~~ -27877705 1 255 -27886848 DOWN 1 -27886848 0 255 -~~~ -~~~ -27886873 0 254 -~~~ -~~~ -27886875 0 252 -~~~ -~~~ -27886877 0 248 -~~~ -~~~ -27886879 0 240 -~~~ -~~~ -27886880 0 224 -~~~ -~~~ -27886882 0 192 -~~~ -~~~ -27886884 0 128 -~~~ -~~~ -27886886 0 0 -~~~ -~~~ -27886888 0 512 -27886889 homeCount = 86 -27886889 waitCount = 36 -27886890 ripCount = 34 -27886890 locktype1 = 1 -27886911 locktype2 = 6 -27886912 locktype3 = 10 -27886912 goalCount = 5 -27886913 goalTotal = 25 -27886913 otherCount = 44 -~~~ -27886914 1 512 -27888622 DOWN 1 -27888622 0 512 -27888710 1 512 -27888740 DOWN 1 -27888740 0 512 -27893642 UP 10 -27893642 waslock = 0 -27893642 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27893669 512 16777728 -~~~ -27893815 DOWN 10 -27893815 0 16777728 -27893819 0 512 -~~~ -~~~ -27893834 0 1536 -~~~ -~~~ -27893836 0 1024 -27893837 homeCount = 87 -27893837 waitCount = 36 -27893838 ripCount = 34 -27893838 locktype1 = 1 -27893839 locktype2 = 6 -27893839 locktype3 = 10 -27893840 goalCount = 5 -27893840 goalTotal = 25 -27893841 otherCount = 44 -~~~ -27893862 UP 10 -27893862 waslock = 0 -27893862 512 1024 -~~~ -27899216 DOWN 10 -27899216 0 1024 -~~~ -~~~ -~~~ -~~~ -27899236 homeCount = 87 -27899237 waitCount = 36 -27899238 ripCount = 34 -27899238 locktype1 = 1 -27899239 locktype2 = 6 -27899239 locktype3 = 10 -27899240 goalCount = 5 -27899240 goalTotal = 25 -27899241 otherCount = 44 -~~~ -27899293 UP 10 -27899294 waslock = 0 -27899293 512 1024 -~~~ -27899323 DOWN 10 -27899323 0 1024 -~~~ -~~~ -~~~ -~~~ -27899339 homeCount = 87 -27899340 waitCount = 36 -27899340 ripCount = 34 -27899341 locktype1 = 1 -27899341 locktype2 = 6 -27899342 locktype3 = 10 -27899342 goalCount = 5 -27899343 goalTotal = 25 -27899343 otherCount = 44 -~~~ -27902072 UP 11 -27902072 1024 1024 -27905909 DOWN 11 -27905909 0 1024 -27905926 UP 11 -27905926 1024 1024 -27911073 BEEP1 -27911073 BEEP2 -~~~ -~~~ -~~~ -27911096 1024 33555456 -~~~ -27911190 DOWN 11 -27911190 0 33555456 -27911215 UP 11 -27911215 1024 33555456 -27911245 1024 1024 -~~~ -~~~ -27911764 1024 0 -~~~ -~~~ -27911766 1024 1 -~~~ -~~~ -27911768 1024 3 -~~~ -~~~ -27911770 1024 7 -~~~ -~~~ -27911771 1024 15 -~~~ -~~~ -27911773 1024 31 -~~~ -~~~ -27911775 1024 63 -~~~ -~~~ -27911777 1024 127 -~~~ -~~~ -27911779 1024 255 -27911780 homeCount = 87 -27911780 waitCount = 36 -27911781 ripCount = 35 -27911781 locktype1 = 1 -27911803 locktype2 = 6 -27911803 locktype3 = 10 -27911804 goalCount = 5 -27911804 goalTotal = 25 -27911805 otherCount = 44 -~~~ -27911806 CURRENTGOAL IS [1] -~~~ -27918132 DOWN 11 -27918132 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27918170 homeCount = 87 -27918171 waitCount = 36 -27918171 ripCount = 35 -27918172 locktype1 = 1 -27918172 locktype2 = 6 -27918173 locktype3 = 10 -27918173 goalCount = 5 -27918174 goalTotal = 25 -27918174 otherCount = 44 -~~~ -27918175 CURRENTGOAL IS [1] -~~~ -27918197 UP 11 -27918197 1024 255 -27920410 DOWN 11 -27920410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27920453 homeCount = 87 -27920453 waitCount = 36 -27920454 ripCount = 35 -27920454 locktype1 = 1 -27920455 locktype2 = 6 -27920455 locktype3 = 10 -27920456 goalCount = 5 -27920456 goalTotal = 25 -27920457 otherCount = 44 -~~~ -27920458 CURRENTGOAL IS [1] -~~~ -27920480 UP 11 -27920479 1024 255 -27920515 DOWN 11 -27920515 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27920551 homeCount = 87 -27920552 waitCount = 36 -27920552 ripCount = 35 -27920553 locktype1 = 1 -27920553 locktype2 = 6 -27920554 locktype3 = 10 -27920554 goalCount = 5 -27920555 goalTotal = 25 -27920555 otherCount = 44 -~~~ -27920556 CURRENTGOAL IS [1] -~~~ -27925246 UP 1 -27925246 1 255 -~~~ -~~~ -27925268 outer reward -~~~ -27925268 1 65791 -~~~ -~~~ -27925717 1 255 -27936444 DOWN 1 -27936444 0 255 -~~~ -~~~ -27936465 0 254 -~~~ -~~~ -27936467 0 252 -~~~ -~~~ -27936469 0 248 -~~~ -~~~ -27936471 0 240 -~~~ -~~~ -27936472 0 224 -~~~ -~~~ -27936474 0 192 -~~~ -~~~ -27936476 0 128 -~~~ -~~~ -27936478 0 0 -~~~ -~~~ -27936480 0 512 -27936481 homeCount = 87 -27936481 waitCount = 36 -27936482 ripCount = 35 -27936482 locktype1 = 1 -27936503 locktype2 = 6 -27936504 locktype3 = 10 -27936504 goalCount = 6 -27936505 goalTotal = 26 -27936505 otherCount = 44 -~~~ -27936515 1 512 -27936544 DOWN 1 -27936544 0 512 -27942299 UP 10 -27942299 waslock = 0 -27942299 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27942333 512 16777728 -~~~ -27942483 512 512 -27942510 DOWN 10 -27942510 0 512 -~~~ -~~~ -27942536 0 1536 -~~~ -~~~ -27942538 0 1024 -27942539 homeCount = 88 -27942540 waitCount = 36 -27942540 ripCount = 35 -27942541 locktype1 = 1 -27942541 locktype2 = 6 -27942542 locktype3 = 10 -27942542 goalCount = 6 -27942543 goalTotal = 26 -27942543 otherCount = 44 -~~~ -27942565 UP 10 -27942565 waslock = 0 -27942565 512 1024 -~~~ -27945190 DOWN 10 -27945190 0 1024 -~~~ -~~~ -~~~ -~~~ -27945220 homeCount = 88 -27945221 waitCount = 36 -27945221 ripCount = 35 -27945222 locktype1 = 1 -27945222 locktype2 = 6 -27945223 locktype3 = 10 -27945223 goalCount = 6 -27945224 goalTotal = 26 -27945224 otherCount = 44 -~~~ -27945226 UP 10 -27945226 waslock = 0 -27945226 512 1024 -~~~ -27945285 DOWN 10 -27945285 0 1024 -~~~ -~~~ -~~~ -~~~ -27945311 homeCount = 88 -27945311 waitCount = 36 -27945312 ripCount = 35 -27945312 locktype1 = 1 -27945313 locktype2 = 6 -27945313 locktype3 = 10 -27945314 goalCount = 6 -27945314 goalTotal = 26 -27945315 otherCount = 44 -~~~ -27947700 UP 11 -27947700 1024 1024 -27951200 BEEP1 -27951200 BEEP2 -~~~ -~~~ -~~~ -27951222 1024 33555456 -~~~ -27951371 1024 1024 -27957662 DOWN 11 -27957662 0 1024 -27957672 UP 11 -27957672 1024 1024 -~~~ -~~~ -27957680 1024 0 -~~~ -~~~ -27957681 1024 1 -~~~ -~~~ -27957683 1024 3 -~~~ -~~~ -27957685 1024 7 -~~~ -~~~ -27957687 1024 15 -~~~ -~~~ -27957689 1024 31 -~~~ -~~~ -27957691 1024 63 -~~~ -~~~ -27957692 1024 127 -~~~ -~~~ -27957694 1024 255 -27957695 homeCount = 88 -27957696 waitCount = 36 -27957696 ripCount = 36 -27957718 locktype1 = 1 -27957718 locktype2 = 6 -27957719 locktype3 = 10 -27957719 goalCount = 6 -27957720 goalTotal = 26 -27957720 otherCount = 44 -~~~ -27957721 CURRENTGOAL IS [1] -~~~ -27957739 DOWN 11 -27957739 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27957767 UP 11 -27957767 1024 255 -~~~ -27957769 homeCount = 88 -27957769 waitCount = 36 -27957770 ripCount = 36 -27957770 locktype1 = 1 -27957771 locktype2 = 6 -27957771 locktype3 = 10 -27957772 goalCount = 6 -27957772 goalTotal = 26 -27957773 otherCount = 44 -~~~ -27957795 CURRENTGOAL IS [1] -~~~ -27959629 DOWN 11 -27959629 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -27959667 homeCount = 88 -27959667 waitCount = 36 -27959668 ripCount = 36 -27959669 locktype1 = 1 -27959669 locktype2 = 6 -27959670 locktype3 = 10 -27959670 goalCount = 6 -27959671 goalTotal = 26 -27959671 otherCount = 44 -~~~ -27959672 CURRENTGOAL IS [1] -~~~ -27963580 UP 1 -27963580 1 255 -~~~ -~~~ -27963607 outer reward -~~~ -27963607 1 65791 -~~~ -~~~ -27964057 1 255 -27975016 DOWN 1 -27975016 0 255 -~~~ -~~~ -27975037 0 254 -~~~ -~~~ -27975039 0 252 -~~~ -~~~ -27975041 0 248 -~~~ -~~~ -27975043 0 240 -~~~ -~~~ -27975045 0 224 -~~~ -~~~ -27975046 0 192 -~~~ -~~~ -27975048 0 128 -~~~ -~~~ -27975050 0 0 -~~~ -~~~ -27975052 0 512 -27975053 homeCount = 88 -27975053 waitCount = 36 -27975054 ripCount = 36 -27975054 locktype1 = 1 -27975055 locktype2 = 6 -27975076 locktype3 = 10 -27975076 goalCount = 7 -27975077 goalTotal = 27 -27975077 otherCount = 44 -~~~ -27975084 1 512 -27975144 DOWN 1 -27975144 0 512 -27980896 UP 10 -27980896 waslock = 0 -27980896 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -27980921 512 16777728 -~~~ -27980997 DOWN 10 -27980997 0 16777728 -~~~ -~~~ -27981015 0 16778752 -~~~ -~~~ -27981017 0 16778240 -27981018 homeCount = 89 -27981018 waitCount = 36 -27981019 ripCount = 36 -27981019 locktype1 = 1 -27981020 locktype2 = 6 -27981020 locktype3 = 10 -27981021 goalCount = 7 -27981021 goalTotal = 27 -27981022 otherCount = 44 -~~~ -27981043 UP 10 -27981043 waslock = 0 -27981043 512 16778240 -~~~ -27981071 512 1024 -27987553 DOWN 10 -27987553 0 1024 -~~~ -~~~ -~~~ -~~~ -27987580 homeCount = 89 -27987580 waitCount = 36 -27987581 ripCount = 36 -27987581 locktype1 = 1 -27987582 locktype2 = 6 -27987582 locktype3 = 10 -27987583 goalCount = 7 -27987583 goalTotal = 27 -27987584 otherCount = 44 -~~~ -27989439 UP 11 -27989439 1024 1024 -27992292 DOWN 11 -27992292 0 1024 -27992302 UP 11 -27992302 1024 1024 -27997439 BEEP1 -27997439 BEEP2 -~~~ -~~~ -~~~ -27997459 1024 33555456 -~~~ -27997609 1024 1024 -28004157 DOWN 11 -28004157 0 1024 -~~~ -~~~ -28004178 0 0 -~~~ -~~~ -28004180 0 1 -~~~ -~~~ -28004182 0 3 -~~~ -~~~ -28004184 0 7 -~~~ -~~~ -28004185 0 15 -~~~ -~~~ -28004187 0 31 -~~~ -~~~ -28004189 0 63 -~~~ -~~~ -28004191 0 127 -~~~ -~~~ -28004193 0 255 -28004194 homeCount = 89 -28004194 waitCount = 36 -28004195 ripCount = 37 -28004195 locktype1 = 1 -28004196 locktype2 = 6 -28004217 locktype3 = 10 -28004218 goalCount = 7 -28004218 goalTotal = 27 -28004219 otherCount = 44 -~~~ -28004220 CURRENTGOAL IS [1] -~~~ -28008115 UP 1 -28008115 1 255 -~~~ -~~~ -28008134 outer reward -~~~ -28008134 1 65791 -~~~ -~~~ -28008353 DOWN 1 -28008353 0 65791 -28008370 1 65791 -~~~ -~~~ -28008372 1 65790 -~~~ -~~~ -28008374 1 65788 -~~~ -~~~ -28008376 1 65784 -~~~ -~~~ -28008378 1 65776 -~~~ -~~~ -28008380 1 65760 -~~~ -~~~ -28008382 1 65728 -~~~ -~~~ -28008383 1 65664 -~~~ -~~~ -28008385 1 65536 -~~~ -~~~ -28008387 1 66048 -28008388 homeCount = 89 -28008389 waitCount = 36 -28008389 ripCount = 37 -28008410 locktype1 = 1 -28008410 locktype2 = 6 -28008411 locktype3 = 10 -28008411 goalCount = 8 -28008412 goalTotal = 28 -28008412 otherCount = 44 -~~~ -28008584 1 512 -28018306 DOWN 1 -28018306 0 512 -28018329 1 512 -28018420 DOWN 1 -28018420 0 512 -28018472 1 512 -28019511 DOWN 1 -28019511 0 512 -28019538 1 512 -28019606 DOWN 1 -28019606 0 512 -28026274 UP 10 -28026274 waslock = 0 -28026274 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28026301 512 16777728 -~~~ -28026429 DOWN 10 -28026429 0 16777728 -28026451 0 512 -~~~ -~~~ -28026456 0 1536 -~~~ -~~~ -28026457 0 1024 -28026458 homeCount = 90 -28026459 waitCount = 36 -28026460 ripCount = 37 -28026460 locktype1 = 1 -28026461 locktype2 = 6 -28026461 locktype3 = 10 -28026462 goalCount = 8 -28026462 goalTotal = 28 -28026463 otherCount = 44 -~~~ -28026642 UP 10 -28026643 waslock = 0 -28026642 512 1024 -~~~ -28026762 DOWN 10 -28026762 0 1024 -28026776 UP 10 -28026777 waslock = 0 -28026776 512 1024 -~~~ -~~~ -~~~ -~~~ -28026799 homeCount = 90 -28026799 waitCount = 36 -28026800 ripCount = 37 -28026800 locktype1 = 1 -28026801 locktype2 = 6 -28026801 locktype3 = 10 -28026802 goalCount = 8 -28026802 goalTotal = 28 -28026803 otherCount = 44 -~~~ -~~~ -28031965 DOWN 10 -28031965 0 1024 -~~~ -~~~ -~~~ -~~~ -28031988 homeCount = 90 -28031988 waitCount = 36 -28031989 ripCount = 37 -28031989 locktype1 = 1 -28031990 locktype2 = 6 -28031990 locktype3 = 10 -28031991 goalCount = 8 -28031991 goalTotal = 28 -28031992 otherCount = 44 -~~~ -28033822 UP 11 -28033822 1024 1024 -28036822 BEEP1 -28036822 BEEP2 -~~~ -~~~ -~~~ -28036845 1024 33555456 -~~~ -28036995 1024 1024 -28042883 DOWN 11 -28042883 0 1024 -~~~ -~~~ -28042903 0 0 -~~~ -~~~ -28042905 0 1 -~~~ -28042907 UP 11 -28042907 1024 1 -~~~ -~~~ -28042909 1024 3 -~~~ -~~~ -28042910 1024 7 -~~~ -~~~ -28042912 1024 15 -~~~ -28042913 1024 31 -~~~ -~~~ -28042914 1024 63 -~~~ -~~~ -28042916 1024 127 -~~~ -~~~ -28042918 1024 255 -28042919 homeCount = 90 -28042940 waitCount = 36 -28042941 ripCount = 38 -28042941 locktype1 = 1 -28042942 locktype2 = 6 -28042942 locktype3 = 10 -28042943 goalCount = 8 -28042943 goalTotal = 28 -28042944 otherCount = 44 -~~~ -28042945 CURRENTGOAL IS [1] -~~~ -28046203 DOWN 11 -28046203 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28046238 homeCount = 90 -28046239 waitCount = 36 -28046239 ripCount = 38 -28046240 locktype1 = 1 -28046240 locktype2 = 6 -28046241 locktype3 = 10 -28046241 goalCount = 8 -28046242 goalTotal = 28 -28046242 otherCount = 44 -~~~ -28046243 CURRENTGOAL IS [1] -~~~ -28050087 UP 1 -28050087 1 255 -~~~ -~~~ -28050115 outer reward -~~~ -28050116 1 65791 -~~~ -~~~ -28050301 DOWN 1 -28050301 0 65791 -~~~ -~~~ -28050323 0 65790 -~~~ -~~~ -28050325 0 65788 -~~~ -~~~ -28050326 0 65784 -~~~ -~~~ -28050328 0 65776 -~~~ -~~~ -28050330 0 65760 -~~~ -~~~ -28050332 0 65728 -~~~ -~~~ -28050334 0 65664 -~~~ -28050335 1 65664 -~~~ -~~~ -28050337 1 65536 -~~~ -28050338 1 66048 -28050339 homeCount = 90 -28050340 waitCount = 36 -28050361 ripCount = 38 -28050361 locktype1 = 1 -28050362 locktype2 = 6 -28050362 locktype3 = 10 -28050363 goalCount = 9 -28050363 goalTotal = 29 -28050364 otherCount = 44 -~~~ -28050565 1 512 -28059860 DOWN 1 -28059860 0 512 -28064424 UP 10 -28064425 waslock = 0 -28064424 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28064452 512 16777728 -~~~ -28064602 512 512 -28068806 DOWN 10 -28068806 0 512 -~~~ -~~~ -28068826 0 2560 -~~~ -~~~ -28068828 0 2048 -28068829 homeCount = 91 -28068829 waitCount = 36 -28068830 ripCount = 38 -28068830 locktype1 = 1 -28068831 locktype2 = 6 -28068831 locktype3 = 10 -28068832 goalCount = 9 -28068832 goalTotal = 29 -28068833 otherCount = 44 -~~~ -28068854 UP 10 -28068854 waslock = 0 -28068853 512 2048 -28068875 DOWN 10 -28068875 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28068899 homeCount = 91 -28068899 waitCount = 36 -28068900 ripCount = 38 -28068900 locktype1 = 1 -28068901 locktype2 = 6 -28068901 locktype3 = 10 -28068902 goalCount = 9 -28068902 goalTotal = 29 -28068903 otherCount = 44 -~~~ -28071033 UP 12 -28071033 2048 2048 -28071048 DOWN 12 -28071048 0 2048 -28071231 UP 12 -28071231 2048 2048 -28071271 DOWN 12 -28071271 0 2048 -28071314 UP 12 -28071314 2048 2048 -28074234 DOWN 12 -28074234 0 2048 -28074316 UP 12 -28074316 2048 2048 -28078155 DOWN 12 -28078155 0 2048 -28078237 UP 12 -28078237 2048 2048 -28079033 CLICK1 -28079033 CLICK2 -~~~ -~~~ -~~~ -28079058 2048 67110912 -~~~ -28079208 2048 2048 -28086231 DOWN 12 -28086231 0 2048 -~~~ -~~~ -28086256 0 0 -~~~ -~~~ -28086258 0 1 -~~~ -28086259 UP 12 -28086259 2048 1 -~~~ -~~~ -28086261 2048 3 -~~~ -~~~ -28086262 2048 7 -~~~ -28086263 2048 15 -~~~ -~~~ -28086265 2048 31 -~~~ -~~~ -28086267 2048 63 -~~~ -~~~ -28086268 2048 127 -~~~ -~~~ -28086270 2048 255 -28086271 homeCount = 91 -28086292 waitCount = 37 -28086293 ripCount = 38 -28086293 locktype1 = 1 -28086294 locktype2 = 6 -28086294 locktype3 = 10 -28086295 goalCount = 9 -28086295 goalTotal = 29 -28086296 otherCount = 44 -~~~ -28086297 CURRENTGOAL IS [1] -~~~ -28086333 DOWN 12 -28086333 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28086372 homeCount = 91 -28086372 waitCount = 37 -28086373 ripCount = 38 -28086374 locktype1 = 1 -28086374 locktype2 = 6 -28086375 locktype3 = 10 -28086375 goalCount = 9 -28086376 goalTotal = 29 -28086376 otherCount = 44 -~~~ -28086377 CURRENTGOAL IS [1] -~~~ -28089464 UP 1 -28089464 1 255 -~~~ -~~~ -28089492 outer reward -~~~ -28089492 1 65791 -~~~ -~~~ -28089497 outerreps = 4 -~~~ -~~~ -28089754 DOWN 1 -28089754 0 65791 -~~~ -~~~ -28089778 0 65790 -~~~ -~~~ -28089780 0 65788 -~~~ -~~~ -28089782 0 65784 -~~~ -~~~ -28089784 0 65776 -~~~ -28089785 1 65776 -~~~ -~~~ -28089787 1 65760 -~~~ -28089788 1 65728 -~~~ -~~~ -28089789 1 65664 -~~~ -~~~ -28089791 1 65536 -~~~ -~~~ -28089793 1 66048 -28089794 homeCount = 91 -28089794 waitCount = 37 -28089815 ripCount = 38 -28089815 locktype1 = 1 -28089816 locktype2 = 6 -28089816 locktype3 = 10 -28089817 goalCount = 0 -28089817 goalTotal = 30 -28089818 otherCount = 44 -~~~ -28089942 1 512 -28099533 DOWN 1 -28099533 0 512 -28099580 1 512 -28099664 DOWN 1 -28099664 0 512 -28103844 UP 10 -28103844 waslock = 0 -28103844 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28103875 512 16777728 -~~~ -28104025 512 512 -28104040 DOWN 10 -28104040 0 512 -28104053 UP 10 -28104053 waslock = 0 -28104053 512 512 -~~~ -~~~ -28104060 512 1536 -~~~ -~~~ -28104062 512 1024 -28104063 homeCount = 92 -28104063 waitCount = 37 -28104064 ripCount = 38 -28104064 locktype1 = 1 -28104065 locktype2 = 6 -28104065 locktype3 = 10 -28104066 goalCount = 0 -28104066 goalTotal = 30 -28104067 otherCount = 44 -~~~ -~~~ -28104223 DOWN 10 -28104223 0 1024 -28104230 UP 10 -28104231 waslock = 0 -28104230 512 1024 -~~~ -~~~ -~~~ -~~~ -28104246 homeCount = 92 -28104246 waitCount = 37 -28104247 ripCount = 38 -28104247 locktype1 = 1 -28104248 locktype2 = 6 -28104249 locktype3 = 10 -28104249 goalCount = 0 -28104250 goalTotal = 30 -28104250 otherCount = 44 -~~~ -~~~ -28107687 DOWN 10 -28107687 0 1024 -~~~ -~~~ -~~~ -~~~ -28107717 homeCount = 92 -28107718 waitCount = 37 -28107718 ripCount = 38 -28107719 locktype1 = 1 -28107719 locktype2 = 6 -28107720 locktype3 = 10 -28107720 goalCount = 0 -28107721 goalTotal = 30 -28107721 otherCount = 44 -~~~ -28107757 UP 10 -28107757 waslock = 0 -28107757 512 1024 -28107772 DOWN 10 -28107772 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28107791 homeCount = 92 -28107792 waitCount = 37 -28107793 ripCount = 38 -28107793 locktype1 = 1 -28107794 locktype2 = 6 -28107794 locktype3 = 10 -28107795 goalCount = 0 -28107795 goalTotal = 30 -28107796 otherCount = 44 -~~~ -28110492 UP 11 -28110492 1024 1024 -28113993 BEEP1 -28113993 BEEP2 -~~~ -~~~ -~~~ -28114015 1024 33555456 -~~~ -28114165 1024 1024 -28114440 DOWN 11 -28114440 0 1024 -28114465 UP 11 -28114465 1024 1024 -~~~ -~~~ -28114682 1024 0 -~~~ -~~~ -28114684 1024 1 -~~~ -~~~ -28114686 1024 3 -~~~ -~~~ -28114688 1024 7 -~~~ -~~~ -28114689 1024 15 -~~~ -~~~ -28114691 1024 31 -~~~ -~~~ -28114693 1024 63 -~~~ -~~~ -28114695 1024 127 -~~~ -~~~ -28114697 1024 255 -28114698 homeCount = 92 -28114698 waitCount = 37 -28114699 ripCount = 39 -28114720 locktype1 = 1 -28114721 locktype2 = 6 -28114721 locktype3 = 10 -28114722 goalCount = 0 -28114722 goalTotal = 30 -28114723 otherCount = 44 -~~~ -28114724 CURRENTGOAL IS [7] -~~~ -28123147 DOWN 11 -28123147 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28123189 homeCount = 92 -28123189 waitCount = 37 -28123190 ripCount = 39 -28123191 locktype1 = 1 -28123191 locktype2 = 6 -28123192 locktype3 = 10 -28123192 goalCount = 0 -28123193 goalTotal = 30 -28123193 otherCount = 44 -~~~ -28123194 CURRENTGOAL IS [7] -~~~ -28123265 UP 11 -28123265 1024 255 -28123279 DOWN 11 -28123279 0 255 -28123296 UP 11 -28123296 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28123312 homeCount = 92 -28123313 waitCount = 37 -28123313 ripCount = 39 -28123314 locktype1 = 1 -28123315 locktype2 = 6 -28123315 locktype3 = 10 -28123316 goalCount = 0 -28123316 goalTotal = 30 -28123317 otherCount = 44 -~~~ -28123318 CURRENTGOAL IS [7] -~~~ -28125461 DOWN 11 -28125461 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28125501 homeCount = 92 -28125502 waitCount = 37 -28125502 ripCount = 39 -28125503 locktype1 = 1 -28125503 locktype2 = 6 -28125504 locktype3 = 10 -28125504 goalCount = 0 -28125505 goalTotal = 30 -28125505 otherCount = 44 -~~~ -28125506 CURRENTGOAL IS [7] -~~~ -28129280 UP 1 -28129280 1 255 -~~~ -~~~ -28129542 DOWN 1 -28129542 0 255 -~~~ -~~~ -28129565 0 254 -~~~ -~~~ -28129567 0 252 -~~~ -28129569 1 252 -~~~ -~~~ -28129570 1 248 -~~~ -28129571 1 240 -~~~ -~~~ -28129573 1 224 -~~~ -~~~ -28129575 1 192 -~~~ -~~~ -28129576 1 128 -~~~ -~~~ -28129578 1 0 -~~~ -~~~ -28129580 1 512 -28129581 homeCount = 92 -28129582 waitCount = 37 -28129582 ripCount = 39 -28129603 locktype1 = 1 -28129604 locktype2 = 6 -28129604 locktype3 = 10 -28129605 goalCount = 0 -28129605 goalTotal = 30 -28129606 otherCount = 45 -~~~ -28132434 DOWN 1 -28132434 0 512 -28135996 UP 10 -28135996 waslock = 0 -28135996 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28136023 512 16777728 -~~~ -28136173 512 512 -28136193 DOWN 10 -28136193 0 512 -~~~ -~~~ -28136216 0 1536 -~~~ -~~~ -28136218 0 1024 -28136219 homeCount = 93 -28136220 waitCount = 37 -28136220 ripCount = 39 -28136221 locktype1 = 1 -28136221 locktype2 = 6 -28136222 locktype3 = 10 -28136222 goalCount = 0 -28136223 goalTotal = 30 -28136223 otherCount = 45 -~~~ -28136245 UP 10 -28136245 waslock = 0 -28136245 512 1024 -~~~ -28138668 DOWN 10 -28138668 0 1024 -~~~ -~~~ -~~~ -~~~ -28138688 homeCount = 93 -28138688 waitCount = 37 -28138689 ripCount = 39 -28138689 locktype1 = 1 -28138690 locktype2 = 6 -28138690 locktype3 = 10 -28138691 goalCount = 0 -28138691 goalTotal = 30 -28138692 otherCount = 45 -~~~ -28138714 UP 10 -28138714 waslock = 0 -28138714 512 1024 -~~~ -28138749 DOWN 10 -28138748 0 1024 -~~~ -~~~ -~~~ -~~~ -28138770 homeCount = 93 -28138770 waitCount = 37 -28138771 ripCount = 39 -28138771 locktype1 = 1 -28138772 locktype2 = 6 -28138772 locktype3 = 10 -28138773 goalCount = 0 -28138773 goalTotal = 30 -28138774 otherCount = 45 -~~~ -28140396 UP 11 -28140396 1024 1024 -28143396 BEEP1 -28143396 BEEP2 -~~~ -~~~ -~~~ -28143421 1024 33555456 -~~~ -28143571 1024 1024 -28150234 DOWN 11 -28150234 0 1024 -~~~ -~~~ -28150260 0 0 -~~~ -~~~ -28150262 0 1 -~~~ -~~~ -28150264 0 3 -~~~ -~~~ -28150265 0 7 -~~~ -~~~ -28150267 0 15 -~~~ -~~~ -28150269 0 31 -~~~ -~~~ -28150271 0 63 -~~~ -~~~ -28150273 0 127 -~~~ -~~~ -28150275 0 255 -28150276 homeCount = 93 -28150276 waitCount = 37 -28150277 ripCount = 40 -28150277 locktype1 = 1 -28150278 locktype2 = 6 -28150299 locktype3 = 10 -28150299 goalCount = 0 -28150300 goalTotal = 30 -28150300 otherCount = 45 -~~~ -28150301 CURRENTGOAL IS [7] -~~~ -28150330 UP 11 -28150330 1024 255 -28150374 DOWN 11 -28150374 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28150408 homeCount = 93 -28150409 waitCount = 37 -28150410 ripCount = 40 -28150410 locktype1 = 1 -28150411 locktype2 = 6 -28150411 locktype3 = 10 -28150412 goalCount = 0 -28150412 goalTotal = 30 -28150413 otherCount = 45 -~~~ -28150414 CURRENTGOAL IS [7] -~~~ -28150482 UP 11 -28150482 1024 255 -28150504 DOWN 11 -28150504 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28150538 homeCount = 93 -28150539 waitCount = 37 -28150539 ripCount = 40 -28150540 locktype1 = 1 -28150541 locktype2 = 6 -28150541 locktype3 = 10 -28150542 goalCount = 0 -28150542 goalTotal = 30 -28150543 otherCount = 45 -~~~ -28150544 CURRENTGOAL IS [7] -~~~ -28150614 UP 11 -28150614 1024 255 -28152416 DOWN 11 -28152416 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28152462 homeCount = 93 -28152462 waitCount = 37 -28152463 ripCount = 40 -28152463 locktype1 = 1 -28152464 locktype2 = 6 -28152464 locktype3 = 10 -28152465 goalCount = 0 -28152465 goalTotal = 30 -28152466 otherCount = 45 -~~~ -28152467 CURRENTGOAL IS [7] -~~~ -28155346 UP 7 -28155346 64 255 -~~~ -~~~ -28155366 outer reward -~~~ -28155367 64 4194559 -~~~ -~~~ -28155389 DOWN 7 -28155389 0 4194559 -~~~ -~~~ -28155414 0 4194558 -~~~ -~~~ -28155416 0 4194556 -~~~ -~~~ -28155417 0 4194552 -~~~ -~~~ -28155419 0 4194544 -~~~ -~~~ -28155421 0 4194528 -~~~ -~~~ -28155423 0 4194496 -~~~ -~~~ -28155425 0 4194432 -~~~ -~~~ -28155426 0 4194304 -~~~ -~~~ -28155428 0 4194816 -28155429 homeCount = 93 -28155430 waitCount = 37 -28155430 ripCount = 40 -28155451 locktype1 = 1 -28155452 locktype2 = 6 -28155452 locktype3 = 10 -28155453 goalCount = 1 -28155453 goalTotal = 31 -28155454 otherCount = 45 -~~~ -28155455 64 4194816 -28155816 64 512 -28162953 DOWN 7 -28162953 0 512 -28162983 64 512 -28163080 DOWN 7 -28163080 0 512 -28163122 64 512 -28163206 DOWN 7 -28163206 0 512 -28163287 64 512 -28163352 DOWN 7 -28163352 0 512 -28171612 UP 10 -28171613 waslock = 0 -28171612 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28171642 512 16777728 -~~~ -28171792 512 512 -28171878 DOWN 10 -28171878 0 512 -~~~ -~~~ -28171904 0 2560 -~~~ -~~~ -28171906 0 2048 -28171907 homeCount = 94 -28171908 waitCount = 37 -28171908 ripCount = 40 -28171909 locktype1 = 1 -28171909 locktype2 = 6 -28171910 locktype3 = 10 -28171910 goalCount = 1 -28171911 goalTotal = 31 -28171911 otherCount = 45 -~~~ -28173078 UP 10 -28173078 waslock = 0 -28173078 512 2048 -~~~ -28177126 DOWN 10 -28177126 0 2048 -~~~ -~~~ -~~~ -~~~ -28177147 homeCount = 94 -28177147 waitCount = 37 -28177148 ripCount = 40 -28177148 locktype1 = 1 -28177149 locktype2 = 6 -28177149 locktype3 = 10 -28177150 goalCount = 1 -28177150 goalTotal = 31 -28177151 otherCount = 45 -~~~ -28177189 UP 10 -28177189 waslock = 0 -28177189 512 2048 -~~~ -28177225 DOWN 10 -28177225 0 2048 -~~~ -~~~ -~~~ -~~~ -28177251 homeCount = 94 -28177252 waitCount = 37 -28177252 ripCount = 40 -28177253 locktype1 = 1 -28177253 locktype2 = 6 -28177254 locktype3 = 10 -28177254 goalCount = 1 -28177255 goalTotal = 31 -28177255 otherCount = 45 -~~~ -28179849 UP 12 -28179849 2048 2048 -28182849 CLICK1 -28182849 CLICK2 -~~~ -~~~ -~~~ -28182876 2048 67110912 -~~~ -28183026 2048 2048 -28183159 DOWN 12 -28183159 0 2048 -~~~ -~~~ -28183186 0 0 -~~~ -~~~ -28183188 0 1 -~~~ -~~~ -28183190 0 3 -~~~ -~~~ -28183192 0 7 -~~~ -~~~ -28183194 0 15 -~~~ -~~~ -28183195 0 31 -~~~ -~~~ -28183197 0 63 -~~~ -~~~ -28183199 0 127 -~~~ -~~~ -28183201 0 255 -28183202 homeCount = 94 -28183202 waitCount = 38 -28183203 ripCount = 40 -28183204 locktype1 = 1 -28183204 locktype2 = 6 -28183225 locktype3 = 10 -28183225 goalCount = 1 -28183226 goalTotal = 31 -28183226 otherCount = 45 -~~~ -28183228 CURRENTGOAL IS [7] -~~~ -28183266 UP 12 -28183266 2048 255 -28183306 DOWN 12 -28183306 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28183343 UP 12 -28183343 2048 255 -~~~ -28183344 homeCount = 94 -28183345 waitCount = 38 -28183345 ripCount = 40 -28183346 locktype1 = 1 -28183346 locktype2 = 6 -28183347 locktype3 = 10 -28183347 goalCount = 1 -28183348 goalTotal = 31 -28183349 otherCount = 45 -~~~ -28183370 CURRENTGOAL IS [7] -~~~ -28190586 DOWN 12 -28190586 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28190625 homeCount = 94 -28190626 waitCount = 38 -28190626 ripCount = 40 -28190627 locktype1 = 1 -28190627 locktype2 = 6 -28190628 locktype3 = 10 -28190628 goalCount = 1 -28190629 goalTotal = 31 -28190629 otherCount = 45 -~~~ -28190630 CURRENTGOAL IS [7] -~~~ -28196854 UP 8 -28196854 128 255 -~~~ -~~~ -28197377 DOWN 8 -28197377 0 255 -~~~ -~~~ -28197398 0 254 -~~~ -~~~ -28197400 0 252 -~~~ -~~~ -28197402 0 248 -~~~ -~~~ -28197404 0 240 -~~~ -~~~ -28197405 0 224 -~~~ -~~~ -28197407 0 192 -~~~ -~~~ -28197409 0 128 -~~~ -~~~ -28197411 0 0 -~~~ -~~~ -28197413 0 512 -28197414 homeCount = 94 -28197414 waitCount = 38 -28197415 ripCount = 40 -28197415 locktype1 = 1 -28197416 locktype2 = 6 -28197437 locktype3 = 10 -28197437 goalCount = 1 -28197438 goalTotal = 31 -28197438 otherCount = 46 -~~~ -28197589 128 512 -28197873 DOWN 8 -28197873 0 512 -28201996 UP 10 -28201996 waslock = 0 -28201996 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28202028 512 16777728 -~~~ -28202178 512 512 -28202268 DOWN 10 -28202268 0 512 -~~~ -~~~ -28202293 0 2560 -~~~ -~~~ -28202295 0 2048 -28202296 homeCount = 95 -28202297 waitCount = 38 -28202297 ripCount = 40 -28202298 locktype1 = 1 -28202298 locktype2 = 6 -28202299 locktype3 = 10 -28202299 goalCount = 1 -28202300 goalTotal = 31 -28202300 otherCount = 46 -~~~ -28202321 UP 10 -28202321 waslock = 0 -28202321 512 2048 -~~~ -28208913 DOWN 10 -28208913 0 2048 -~~~ -~~~ -~~~ -~~~ -28208936 homeCount = 95 -28208936 waitCount = 38 -28208937 ripCount = 40 -28208937 locktype1 = 1 -28208938 locktype2 = 6 -28208938 locktype3 = 10 -28208939 goalCount = 1 -28208939 goalTotal = 31 -28208940 otherCount = 46 -~~~ -28208955 UP 10 -28208955 waslock = 0 -28208955 512 2048 -~~~ -28209014 DOWN 10 -28209014 0 2048 -~~~ -~~~ -~~~ -~~~ -28209035 homeCount = 95 -28209036 waitCount = 38 -28209036 ripCount = 40 -28209037 locktype1 = 1 -28209037 locktype2 = 6 -28209038 locktype3 = 10 -28209038 goalCount = 1 -28209039 goalTotal = 31 -28209039 otherCount = 46 -~~~ -28210982 UP 12 -28210982 2048 2048 -28215482 CLICK1 -28215482 CLICK2 -~~~ -~~~ -~~~ -28215506 2048 67110912 -~~~ -28215656 2048 2048 -28223085 DOWN 12 -28223084 0 2048 -~~~ -~~~ -28223104 0 0 -~~~ -~~~ -28223106 0 1 -~~~ -~~~ -28223108 0 3 -~~~ -~~~ -28223110 0 7 -~~~ -~~~ -28223111 0 15 -~~~ -~~~ -28223113 0 31 -~~~ -~~~ -28223115 0 63 -~~~ -~~~ -28223117 0 127 -~~~ -~~~ -28223119 0 255 -28223120 homeCount = 95 -28223120 waitCount = 39 -28223121 ripCount = 40 -28223121 locktype1 = 1 -28223122 locktype2 = 6 -28223142 locktype3 = 10 -28223143 goalCount = 1 -28223143 goalTotal = 31 -28223144 otherCount = 46 -~~~ -28223145 CURRENTGOAL IS [7] -~~~ -28223146 UP 12 -28223146 2048 255 -28223185 DOWN 12 -28223185 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28223222 homeCount = 95 -28223222 waitCount = 39 -28223223 ripCount = 40 -28223223 locktype1 = 1 -28223224 locktype2 = 6 -28223224 locktype3 = 10 -28223225 goalCount = 1 -28223225 goalTotal = 31 -28223226 otherCount = 46 -~~~ -28223227 CURRENTGOAL IS [7] -~~~ -28233647 UP 7 -28233647 64 255 -~~~ -~~~ -28233670 outer reward -~~~ -28233670 64 4194559 -~~~ -~~~ -28233821 DOWN 7 -28233821 0 4194559 -~~~ -~~~ -28233837 0 4194558 -~~~ -~~~ -28233839 0 4194556 -~~~ -~~~ -28233841 0 4194552 -~~~ -~~~ -28233843 0 4194544 -~~~ -~~~ -28233845 0 4194528 -~~~ -~~~ -28233847 0 4194496 -~~~ -~~~ -28233848 0 4194432 -~~~ -~~~ -28233850 0 4194304 -~~~ -~~~ -28233852 0 4194816 -28233853 homeCount = 95 -28233854 waitCount = 39 -28233854 ripCount = 40 -28233875 locktype1 = 1 -28233876 locktype2 = 6 -28233876 locktype3 = 10 -28233877 goalCount = 2 -28233877 goalTotal = 32 -28233878 otherCount = 46 -~~~ -28233878 64 4194816 -28234120 64 512 -28243031 DOWN 7 -28243031 0 512 -28243057 64 512 -28243146 DOWN 7 -28243146 0 512 -28248129 UP 10 -28248129 waslock = 0 -28248129 512 512 -~~~ -~~~ -~~~ -~~~ -28248154 DOWN 10 -28248154 0 512 -~~~ -28248156 0 16777728 -~~~ -~~~ -~~~ -28248171 0 16779776 -~~~ -~~~ -28248172 0 16779264 -28248173 homeCount = 96 -28248174 waitCount = 39 -28248174 ripCount = 40 -28248175 locktype1 = 1 -28248175 locktype2 = 6 -28248176 locktype3 = 10 -28248176 goalCount = 2 -28248177 goalTotal = 32 -28248178 otherCount = 46 -~~~ -28248236 UP 10 -28248236 waslock = 0 -28248236 512 16779264 -~~~ -28248306 512 2048 -28248640 DOWN 10 -28248640 0 2048 -28248654 UP 10 -28248654 waslock = 0 -28248654 512 2048 -~~~ -~~~ -~~~ -~~~ -28248674 homeCount = 96 -28248675 waitCount = 39 -28248675 ripCount = 40 -28248676 locktype1 = 1 -28248676 locktype2 = 6 -28248677 locktype3 = 10 -28248677 goalCount = 2 -28248678 goalTotal = 32 -28248678 otherCount = 46 -~~~ -~~~ -28252124 DOWN 10 -28252124 0 2048 -28252140 UP 10 -28252141 waslock = 0 -28252140 512 2048 -~~~ -~~~ -~~~ -~~~ -28252165 homeCount = 96 -28252166 waitCount = 39 -28252166 ripCount = 40 -28252167 locktype1 = 1 -28252167 locktype2 = 6 -28252168 locktype3 = 10 -28252168 goalCount = 2 -28252169 goalTotal = 32 -28252169 otherCount = 46 -~~~ -~~~ -28252230 DOWN 10 -28252230 0 2048 -~~~ -~~~ -~~~ -~~~ -28252253 homeCount = 96 -28252254 waitCount = 39 -28252254 ripCount = 40 -28252255 locktype1 = 1 -28252255 locktype2 = 6 -28252256 locktype3 = 10 -28252256 goalCount = 2 -28252257 goalTotal = 32 -28252257 otherCount = 46 -~~~ -28252286 UP 10 -28252286 waslock = 0 -28252286 512 2048 -~~~ -28252324 DOWN 10 -28252324 0 2048 -~~~ -~~~ -~~~ -~~~ -28252352 homeCount = 96 -28252352 waitCount = 39 -28252353 ripCount = 40 -28252353 locktype1 = 1 -28252354 locktype2 = 6 -28252354 locktype3 = 10 -28252355 goalCount = 2 -28252355 goalTotal = 32 -28252356 otherCount = 46 -~~~ -28254088 UP 12 -28254088 2048 2048 -28259672 DOWN 12 -28259672 0 2048 -28259689 UP 12 -28259689 2048 2048 -28259725 DOWN 12 -28259725 0 2048 -28259759 UP 12 -28259759 2048 2048 -28259931 DOWN 12 -28259930 0 2048 -28259941 UP 12 -28259941 2048 2048 -28260607 DOWN 12 -28260607 0 2048 -28260622 UP 12 -28260621 2048 2048 -28263088 CLICK1 -28263088 CLICK2 -~~~ -~~~ -~~~ -28263111 2048 67110912 -~~~ -28263261 2048 2048 -28269902 DOWN 12 -28269902 0 2048 -28269928 UP 12 -28269928 2048 2048 -~~~ -~~~ -28269931 2048 0 -~~~ -~~~ -28269932 2048 1 -~~~ -~~~ -28269934 2048 3 -~~~ -~~~ -28269936 2048 7 -~~~ -~~~ -28269938 2048 15 -~~~ -~~~ -28269940 2048 31 -~~~ -~~~ -28269942 2048 63 -~~~ -~~~ -28269943 2048 127 -~~~ -~~~ -28269945 2048 255 -28269946 homeCount = 96 -28269947 waitCount = 40 -28269968 ripCount = 40 -28269969 locktype1 = 1 -28269969 locktype2 = 6 -28269970 locktype3 = 10 -28269970 goalCount = 2 -28269971 goalTotal = 32 -28269971 otherCount = 46 -~~~ -28269972 CURRENTGOAL IS [7] -~~~ -28269986 DOWN 12 -28269986 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28270027 homeCount = 96 -28270027 waitCount = 40 -28270028 ripCount = 40 -28270028 locktype1 = 1 -28270029 locktype2 = 6 -28270029 locktype3 = 10 -28270030 goalCount = 2 -28270030 goalTotal = 32 -28270031 otherCount = 46 -~~~ -28270032 CURRENTGOAL IS [7] -~~~ -28276085 UP 7 -28276085 64 255 -~~~ -~~~ -28276113 outer reward -~~~ -28276113 64 4194559 -~~~ -~~~ -28276119 DOWN 7 -28276118 0 4194559 -~~~ -~~~ -28276132 0 4194558 -~~~ -~~~ -28276133 0 4194556 -~~~ -~~~ -28276135 0 4194552 -~~~ -~~~ -28276137 0 4194544 -~~~ -~~~ -28276139 0 4194528 -~~~ -~~~ -28276141 0 4194496 -~~~ -~~~ -28276142 0 4194432 -~~~ -~~~ -28276144 0 4194304 -~~~ -~~~ -28276146 0 4194816 -28276147 homeCount = 96 -28276148 waitCount = 40 -28276148 ripCount = 40 -28276169 locktype1 = 1 -28276170 locktype2 = 6 -28276170 locktype3 = 10 -28276171 goalCount = 3 -28276171 goalTotal = 33 -28276172 otherCount = 46 -~~~ -28276172 64 4194816 -28276185 DOWN 7 -28276185 0 4194816 -28276189 64 4194816 -28276301 DOWN 7 -28276301 0 4194816 -28276362 64 4194816 -28276473 DOWN 7 -28276473 0 4194816 -28276504 64 4194816 -28276563 64 512 -28276768 DOWN 7 -28276768 0 512 -28276782 64 512 -28277032 DOWN 7 -28277032 0 512 -28277039 64 512 -28285770 DOWN 7 -28285770 0 512 -28290802 UP 10 -28290802 waslock = 0 -28290802 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28290828 512 16777728 -~~~ -28290978 512 512 -28291074 DOWN 10 -28291074 0 512 -~~~ -~~~ -28291097 0 2560 -~~~ -~~~ -28291099 0 2048 -28291100 homeCount = 97 -28291101 waitCount = 40 -28291101 ripCount = 40 -28291102 locktype1 = 1 -28291102 locktype2 = 6 -28291103 locktype3 = 10 -28291103 goalCount = 3 -28291104 goalTotal = 33 -28291104 otherCount = 46 -~~~ -28291157 UP 10 -28291157 waslock = 0 -28291157 512 2048 -~~~ -28298203 DOWN 10 -28298203 0 2048 -~~~ -~~~ -28298222 UP 10 -28298222 waslock = 0 -28298222 512 2048 -~~~ -~~~ -28298224 homeCount = 97 -28298225 waitCount = 40 -28298225 ripCount = 40 -28298226 locktype1 = 1 -28298226 locktype2 = 6 -28298227 locktype3 = 10 -28298227 goalCount = 3 -28298228 goalTotal = 33 -28298249 otherCount = 46 -~~~ -~~~ -28298313 DOWN 10 -28298313 0 2048 -~~~ -~~~ -~~~ -~~~ -28298336 homeCount = 97 -28298336 waitCount = 40 -28298337 ripCount = 40 -28298337 locktype1 = 1 -28298338 locktype2 = 6 -28298338 locktype3 = 10 -28298339 goalCount = 3 -28298339 goalTotal = 33 -28298340 otherCount = 46 -~~~ -28298386 UP 10 -28298386 waslock = 0 -28298386 512 2048 -28298408 DOWN 10 -28298408 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28298435 homeCount = 97 -28298436 waitCount = 40 -28298436 ripCount = 40 -28298437 locktype1 = 1 -28298437 locktype2 = 6 -28298438 locktype3 = 10 -28298438 goalCount = 3 -28298439 goalTotal = 33 -28298439 otherCount = 46 -~~~ -28300760 UP 12 -28300760 2048 2048 -28302267 DOWN 12 -28302267 0 2048 -28302282 UP 12 -28302282 2048 2048 -28303163 DOWN 12 -28303163 0 2048 -28303230 UP 12 -28303230 2048 2048 -28303340 DOWN 12 -28303340 0 2048 -28303346 UP 12 -28303346 2048 2048 -28303760 CLICK1 -28303760 CLICK2 -~~~ -~~~ -~~~ -28303783 2048 67110912 -~~~ -28303933 2048 2048 -28304129 DOWN 12 -28304129 0 2048 -28304147 UP 12 -28304147 2048 2048 -~~~ -~~~ -28304150 2048 0 -~~~ -~~~ -28304152 2048 1 -~~~ -~~~ -28304154 2048 3 -~~~ -~~~ -28304156 2048 7 -~~~ -~~~ -28304158 2048 15 -~~~ -~~~ -28304159 2048 31 -~~~ -~~~ -28304161 2048 63 -~~~ -~~~ -28304163 2048 127 -~~~ -~~~ -28304165 2048 255 -28304166 homeCount = 97 -28304167 waitCount = 41 -28304167 ripCount = 40 -28304188 locktype1 = 1 -28304188 locktype2 = 6 -28304189 locktype3 = 10 -28304189 goalCount = 3 -28304190 goalTotal = 33 -28304190 otherCount = 46 -~~~ -28304192 CURRENTGOAL IS [7] -~~~ -28311063 DOWN 12 -28311063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28311100 homeCount = 97 -28311101 waitCount = 41 -28311102 ripCount = 40 -28311102 locktype1 = 1 -28311103 locktype2 = 6 -28311103 locktype3 = 10 -28311104 goalCount = 3 -28311104 goalTotal = 33 -28311105 otherCount = 46 -~~~ -28311106 CURRENTGOAL IS [7] -~~~ -28311127 UP 12 -28311127 2048 255 -28311173 DOWN 12 -28311173 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28311212 homeCount = 97 -28311213 waitCount = 41 -28311213 ripCount = 40 -28311214 locktype1 = 1 -28311214 locktype2 = 6 -28311215 locktype3 = 10 -28311215 goalCount = 3 -28311216 goalTotal = 33 -28311216 otherCount = 46 -~~~ -28311217 CURRENTGOAL IS [7] -~~~ -28311282 UP 12 -28311282 2048 255 -28313151 DOWN 12 -28313151 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28313192 homeCount = 97 -28313193 waitCount = 41 -28313193 ripCount = 40 -28313194 locktype1 = 1 -28313194 locktype2 = 6 -28313195 locktype3 = 10 -28313195 goalCount = 3 -28313196 goalTotal = 33 -28313196 otherCount = 46 -~~~ -28313197 CURRENTGOAL IS [7] -~~~ -28318089 UP 7 -28318089 64 255 -~~~ -~~~ -28318108 outer reward -~~~ -28318108 64 4194559 -~~~ -~~~ -28318332 DOWN 7 -28318332 0 4194559 -~~~ -~~~ -28318355 0 4194558 -~~~ -~~~ -28318357 0 4194556 -~~~ -~~~ -28318359 0 4194552 -~~~ -~~~ -28318361 0 4194544 -~~~ -~~~ -28318362 0 4194528 -~~~ -~~~ -28318364 0 4194496 -~~~ -~~~ -28318366 0 4194432 -~~~ -~~~ -28318368 0 4194304 -~~~ -~~~ -28318370 0 4194816 -28318371 homeCount = 97 -28318371 waitCount = 41 -28318372 ripCount = 40 -28318393 locktype1 = 1 -28318393 locktype2 = 6 -28318394 locktype3 = 10 -28318394 goalCount = 4 -28318395 goalTotal = 34 -28318395 otherCount = 46 -~~~ -28318396 64 4194816 -28318558 64 512 -28318784 DOWN 7 -28318784 0 512 -28318799 64 512 -28326513 DOWN 7 -28326513 0 512 -28326537 64 512 -28326605 DOWN 7 -28326605 0 512 -28331412 UP 10 -28331413 waslock = 0 -28331412 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28331443 512 16777728 -~~~ -28331593 512 512 -28331648 DOWN 10 -28331648 0 512 -~~~ -~~~ -28331669 0 2560 -~~~ -~~~ -28331671 0 2048 -28331672 homeCount = 98 -28331672 waitCount = 41 -28331673 ripCount = 40 -28331673 locktype1 = 1 -28331674 locktype2 = 6 -28331674 locktype3 = 10 -28331675 goalCount = 4 -28331675 goalTotal = 34 -28331676 otherCount = 46 -~~~ -28331697 UP 10 -28331697 waslock = 0 -28331697 512 2048 -~~~ -28334733 DOWN 10 -28334733 0 2048 -~~~ -~~~ -~~~ -~~~ -28334758 homeCount = 98 -28334759 waitCount = 41 -28334759 ripCount = 40 -28334760 locktype1 = 1 -28334760 locktype2 = 6 -28334761 locktype3 = 10 -28334761 goalCount = 4 -28334762 goalTotal = 34 -28334762 otherCount = 46 -~~~ -28334797 UP 10 -28334797 waslock = 0 -28334797 512 2048 -~~~ -28334845 DOWN 10 -28334845 0 2048 -~~~ -~~~ -~~~ -~~~ -28334877 homeCount = 98 -28334877 waitCount = 41 -28334878 ripCount = 40 -28334878 locktype1 = 1 -28334879 locktype2 = 6 -28334879 locktype3 = 10 -28334880 goalCount = 4 -28334880 goalTotal = 34 -28334881 otherCount = 46 -~~~ -28336994 UP 12 -28336994 2048 2048 -28339137 DOWN 12 -28339137 0 2048 -28339153 UP 12 -28339152 2048 2048 -28339517 DOWN 12 -28339517 0 2048 -28339545 UP 12 -28339545 2048 2048 -28340452 DOWN 12 -28340452 0 2048 -28340540 UP 12 -28340540 2048 2048 -28340551 DOWN 12 -28340551 0 2048 -28340555 UP 12 -28340555 2048 2048 -28340569 DOWN 12 -28340569 0 2048 -28340589 UP 12 -28340589 2048 2048 -28340861 DOWN 12 -28340861 0 2048 -28340868 UP 12 -28340868 2048 2048 -28342994 CLICK1 -28342994 CLICK2 -~~~ -~~~ -~~~ -28343019 2048 67110912 -~~~ -28343169 2048 2048 -28347975 DOWN 12 -28347975 0 2048 -28347979 UP 12 -28347979 2048 2048 -~~~ -~~~ -28348001 2048 0 -~~~ -~~~ -28348003 2048 1 -~~~ -~~~ -28348004 2048 3 -~~~ -~~~ -28348006 2048 7 -~~~ -~~~ -28348008 2048 15 -~~~ -~~~ -28348010 2048 31 -~~~ -~~~ -28348012 2048 63 -~~~ -~~~ -28348014 DOWN 12 -28348013 0 127 -~~~ -~~~ -28348015 0 255 -28348016 homeCount = 98 -28348017 waitCount = 42 -28348018 ripCount = 40 -28348039 locktype1 = 1 -28348039 locktype2 = 6 -28348040 locktype3 = 10 -28348040 goalCount = 4 -28348041 goalTotal = 34 -28348041 otherCount = 46 -~~~ -28348042 CURRENTGOAL IS [7] -~~~ -28348046 UP 12 -28348046 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28348075 homeCount = 98 -28348075 waitCount = 42 -28348076 ripCount = 40 -28348076 locktype1 = 1 -28348077 locktype2 = 6 -28348077 locktype3 = 10 -28348078 goalCount = 4 -28348078 goalTotal = 34 -28348079 otherCount = 46 -~~~ -28348080 CURRENTGOAL IS [7] -~~~ -28348143 DOWN 12 -28348143 0 255 -28348159 UP 12 -28348159 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28348186 homeCount = 98 -28348186 waitCount = 42 -28348187 ripCount = 40 -28348187 locktype1 = 1 -28348188 locktype2 = 6 -28348188 locktype3 = 10 -28348189 goalCount = 4 -28348189 goalTotal = 34 -28348190 otherCount = 46 -~~~ -28348191 CURRENTGOAL IS [7] -~~~ -28350762 DOWN 12 -28350762 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28350795 homeCount = 98 -28350796 waitCount = 42 -28350796 ripCount = 40 -28350797 locktype1 = 1 -28350797 locktype2 = 6 -28350798 locktype3 = 10 -28350798 goalCount = 4 -28350799 goalTotal = 34 -28350799 otherCount = 46 -~~~ -28350800 CURRENTGOAL IS [7] -~~~ -28354630 UP 7 -28354630 64 255 -~~~ -~~~ -28354651 outer reward -~~~ -28354651 64 4194559 -~~~ -~~~ -28354678 DOWN 7 -28354678 0 4194559 -~~~ -~~~ -28354698 0 4194558 -~~~ -~~~ -28354700 0 4194556 -~~~ -~~~ -28354702 0 4194552 -~~~ -~~~ -28354704 0 4194544 -~~~ -~~~ -28354706 0 4194528 -~~~ -28354707 64 4194528 -~~~ -~~~ -28354709 64 4194496 -~~~ -~~~ -28354710 64 4194432 -~~~ -28354711 64 4194304 -~~~ -~~~ -28354713 64 4194816 -28354714 homeCount = 98 -28354735 waitCount = 42 -28354736 ripCount = 40 -28354736 locktype1 = 1 -28354737 locktype2 = 6 -28354737 locktype3 = 10 -28354738 goalCount = 5 -28354738 goalTotal = 35 -28354739 otherCount = 46 -~~~ -28354868 DOWN 7 -28354868 0 4194816 -28354919 64 4194816 -28355101 64 512 -28363140 DOWN 7 -28363140 0 512 -28363188 64 512 -28363237 DOWN 7 -28363237 0 512 -28367403 UP 10 -28367403 waslock = 0 -28367403 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28367436 512 16777728 -~~~ -28367557 DOWN 10 -28367557 0 16777728 -~~~ -~~~ -28367580 0 16778752 -~~~ -~~~ -28367581 0 16778240 -28367583 homeCount = 99 -28367583 waitCount = 42 -28367584 ripCount = 40 -28367584 locktype1 = 1 -28367585 locktype2 = 6 -28367585 locktype3 = 10 -28367586 goalCount = 5 -28367586 goalTotal = 35 -28367587 otherCount = 46 -~~~ -28367608 UP 10 -28367608 waslock = 0 -28367608 512 16778240 -28367609 512 1024 -~~~ -28367951 DOWN 10 -28367951 0 1024 -~~~ -~~~ -~~~ -~~~ -28367974 homeCount = 99 -28367975 waitCount = 42 -28367975 ripCount = 40 -28367976 locktype1 = 1 -28367976 locktype2 = 6 -28367977 locktype3 = 10 -28367977 goalCount = 5 -28367978 goalTotal = 35 -28367978 otherCount = 46 -~~~ -28368002 UP 10 -28368003 waslock = 0 -28368002 512 1024 -~~~ -28371913 DOWN 10 -28371913 0 1024 -~~~ -~~~ -~~~ -~~~ -28371933 homeCount = 99 -28371934 waitCount = 42 -28371934 ripCount = 40 -28371935 locktype1 = 1 -28371935 locktype2 = 6 -28371936 locktype3 = 10 -28371936 goalCount = 5 -28371937 goalTotal = 35 -28371937 otherCount = 46 -~~~ -28371983 UP 10 -28371983 waslock = 0 -28371983 512 1024 -~~~ -28372017 DOWN 10 -28372017 0 1024 -~~~ -~~~ -~~~ -~~~ -28372043 homeCount = 99 -28372044 waitCount = 42 -28372044 ripCount = 40 -28372045 locktype1 = 1 -28372045 locktype2 = 6 -28372046 locktype3 = 10 -28372046 goalCount = 5 -28372047 goalTotal = 35 -28372047 otherCount = 46 -~~~ -28374860 UP 11 -28374860 1024 1024 -28375214 DOWN 11 -28375214 0 1024 -28375405 UP 11 -28375405 1024 1024 -28375439 DOWN 11 -28375439 0 1024 -28375489 UP 11 -28375489 1024 1024 -28377737 DOWN 11 -28377737 0 1024 -28377747 UP 11 -28377746 1024 1024 -28378861 BEEP1 -28378861 BEEP2 -~~~ -~~~ -~~~ -28378886 1024 33555456 -~~~ -28379036 1024 1024 -28385014 DOWN 11 -28385013 0 1024 -28385028 UP 11 -28385028 1024 1024 -~~~ -~~~ -28385030 1024 0 -~~~ -~~~ -28385032 1024 1 -~~~ -~~~ -28385034 1024 3 -~~~ -~~~ -28385035 1024 7 -~~~ -~~~ -28385037 1024 15 -~~~ -~~~ -28385039 1024 31 -~~~ -~~~ -28385041 1024 63 -~~~ -~~~ -28385043 1024 127 -~~~ -~~~ -28385045 1024 255 -28385046 homeCount = 99 -28385046 waitCount = 42 -28385067 ripCount = 41 -28385067 locktype1 = 1 -28385068 locktype2 = 6 -28385068 locktype3 = 10 -28385069 goalCount = 5 -28385069 goalTotal = 35 -28385070 otherCount = 46 -~~~ -28385071 CURRENTGOAL IS [7] -~~~ -28388281 DOWN 11 -28388281 0 255 -28388298 UP 11 -28388298 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28388317 homeCount = 99 -28388317 waitCount = 42 -28388318 ripCount = 41 -28388318 locktype1 = 1 -28388319 locktype2 = 6 -28388319 locktype3 = 10 -28388320 goalCount = 5 -28388320 goalTotal = 35 -28388321 otherCount = 46 -~~~ -28388322 CURRENTGOAL IS [7] -~~~ -28388394 DOWN 11 -28388394 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28388438 homeCount = 99 -28388438 waitCount = 42 -28388439 ripCount = 41 -28388439 locktype1 = 1 -28388440 locktype2 = 6 -28388440 locktype3 = 10 -28388441 goalCount = 5 -28388441 goalTotal = 35 -28388442 otherCount = 46 -~~~ -28388443 CURRENTGOAL IS [7] -~~~ -28391127 UP 7 -28391127 64 255 -~~~ -28391152 DOWN 7 -28391152 0 255 -~~~ -28391154 outer reward -~~~ -28391154 0 4194559 -~~~ -~~~ -~~~ -~~~ -28391173 0 4194558 -~~~ -28391175 64 4194558 -~~~ -~~~ -28391176 64 4194556 -~~~ -~~~ -28391178 64 4194552 -~~~ -28391179 64 4194544 -~~~ -~~~ -28391181 64 4194528 -~~~ -~~~ -28391182 64 4194496 -~~~ -~~~ -28391184 64 4194432 -~~~ -~~~ -28391186 64 4194304 -~~~ -~~~ -28391188 64 4194816 -28391210 homeCount = 99 -28391210 waitCount = 42 -28391211 ripCount = 41 -28391211 locktype1 = 1 -28391212 locktype2 = 6 -28391212 locktype3 = 10 -28391213 goalCount = 6 -28391213 goalTotal = 36 -28391214 otherCount = 46 -~~~ -28391352 DOWN 7 -28391352 0 4194816 -28391410 64 4194816 -28391604 64 512 -28401070 DOWN 7 -28401070 0 512 -28405631 UP 10 -28405631 waslock = 0 -28405631 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28405662 512 16777728 -~~~ -28405812 512 512 -28405858 DOWN 10 -28405858 0 512 -28405879 UP 10 -28405880 waslock = 0 -28405879 512 512 -~~~ -~~~ -28405884 512 1536 -~~~ -~~~ -28405886 512 1024 -28405887 homeCount = 100 -28405887 waitCount = 42 -28405888 ripCount = 41 -28405888 locktype1 = 1 -28405889 locktype2 = 6 -28405889 locktype3 = 10 -28405890 goalCount = 6 -28405890 goalTotal = 36 -28405891 otherCount = 46 -~~~ -~~~ -28411150 DOWN 10 -28411150 0 1024 -~~~ -~~~ -~~~ -~~~ -28411176 homeCount = 100 -28411177 waitCount = 42 -28411177 ripCount = 41 -28411178 locktype1 = 1 -28411178 locktype2 = 6 -28411179 locktype3 = 10 -28411179 goalCount = 6 -28411180 goalTotal = 36 -28411180 otherCount = 46 -~~~ -28411204 UP 10 -28411205 waslock = 0 -28411204 512 1024 -~~~ -28411240 DOWN 10 -28411240 0 1024 -~~~ -~~~ -~~~ -~~~ -28411267 homeCount = 100 -28411268 waitCount = 42 -28411268 ripCount = 41 -28411269 locktype1 = 1 -28411269 locktype2 = 6 -28411270 locktype3 = 10 -28411270 goalCount = 6 -28411271 goalTotal = 36 -28411271 otherCount = 46 -~~~ -28413812 UP 11 -28413812 1024 1024 -28415393 DOWN 11 -28415393 0 1024 -28415594 LOCKOUT 3 -~~~ -28415615 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -28415619 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28416951 UP 11 -28416951 1024 0 -28434365 DOWN 11 -28434365 0 0 -28440615 LOCKEND -~~~ -~~~ -~~~ -28440635 0 512 -28442032 UP 7 -28442032 64 512 -28442581 DOWN 7 -28442581 0 512 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28442619 homeCount = 100 -28442620 waitCount = 42 -28442620 ripCount = 41 -28442621 locktype1 = 1 -28442621 locktype2 = 6 -28442622 locktype3 = 11 -28442622 goalCount = 6 -28442623 goalTotal = 36 -28442623 otherCount = 46 -~~~ -28447649 UP 10 -28447649 waslock = 0 -28447649 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28447681 512 16777728 -~~~ -28447831 512 512 -28451216 DOWN 10 -28451216 0 512 -~~~ -~~~ -28451236 0 2560 -~~~ -~~~ -28451238 0 2048 -28451239 homeCount = 101 -28451239 waitCount = 42 -28451240 ripCount = 41 -28451240 locktype1 = 1 -28451241 locktype2 = 6 -28451241 locktype3 = 11 -28451242 goalCount = 6 -28451242 goalTotal = 36 -28451243 otherCount = 46 -~~~ -28451279 UP 10 -28451279 waslock = 0 -28451279 512 2048 -~~~ -28451321 DOWN 10 -28451321 0 2048 -~~~ -~~~ -~~~ -~~~ -28451352 homeCount = 101 -28451352 waitCount = 42 -28451353 ripCount = 41 -28451353 locktype1 = 1 -28451354 locktype2 = 6 -28451354 locktype3 = 11 -28451355 goalCount = 6 -28451355 goalTotal = 36 -28451356 otherCount = 46 -~~~ -28454622 UP 12 -28454622 2048 2048 -28455640 DOWN 12 -28455640 0 2048 -28455828 UP 12 -28455828 2048 2048 -28457622 CLICK1 -28457622 CLICK2 -~~~ -~~~ -~~~ -28457646 2048 67110912 -~~~ -28457700 DOWN 12 -28457700 0 67110912 -28457745 UP 12 -28457745 2048 67110912 -28457796 2048 2048 -~~~ -~~~ -28457831 2048 0 -~~~ -~~~ -28457833 2048 1 -~~~ -~~~ -28457835 2048 3 -~~~ -~~~ -28457837 2048 7 -~~~ -~~~ -28457839 2048 15 -~~~ -~~~ -28457841 2048 31 -~~~ -~~~ -28457842 2048 63 -~~~ -~~~ -28457844 2048 127 -~~~ -~~~ -28457846 2048 255 -28457847 homeCount = 101 -28457848 waitCount = 43 -28457848 ripCount = 41 -28457869 locktype1 = 1 -28457869 locktype2 = 6 -28457870 locktype3 = 11 -28457870 goalCount = 6 -28457871 goalTotal = 36 -28457871 otherCount = 46 -~~~ -28457872 CURRENTGOAL IS [7] -~~~ -28457923 DOWN 12 -28457923 0 255 -28457931 UP 12 -28457931 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28457961 homeCount = 101 -28457962 waitCount = 43 -28457962 ripCount = 41 -28457963 locktype1 = 1 -28457963 locktype2 = 6 -28457964 locktype3 = 11 -28457964 goalCount = 6 -28457965 goalTotal = 36 -28457965 otherCount = 46 -~~~ -28457966 CURRENTGOAL IS [7] -~~~ -28458047 DOWN 12 -28458046 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28458081 homeCount = 101 -28458081 waitCount = 43 -28458082 ripCount = 41 -28458082 locktype1 = 1 -28458083 locktype2 = 6 -28458083 locktype3 = 11 -28458084 goalCount = 6 -28458084 goalTotal = 36 -28458085 otherCount = 46 -~~~ -28458086 CURRENTGOAL IS [7] -~~~ -28458107 UP 12 -28458107 2048 255 -28458209 DOWN 12 -28458209 0 255 -28458222 UP 12 -28458222 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28458251 homeCount = 101 -28458252 waitCount = 43 -28458252 ripCount = 41 -28458253 locktype1 = 1 -28458253 locktype2 = 6 -28458254 locktype3 = 11 -28458254 goalCount = 6 -28458255 goalTotal = 36 -28458255 otherCount = 46 -~~~ -28458257 CURRENTGOAL IS [7] -~~~ -28464145 DOWN 12 -28464145 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464183 homeCount = 101 -28464183 waitCount = 43 -28464184 ripCount = 41 -28464184 locktype1 = 1 -28464185 locktype2 = 6 -28464185 locktype3 = 11 -28464186 goalCount = 6 -28464186 goalTotal = 36 -28464187 otherCount = 46 -~~~ -28464188 CURRENTGOAL IS [7] -~~~ -28464211 UP 12 -28464211 2048 255 -28464279 DOWN 12 -28464279 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464314 homeCount = 101 -28464314 waitCount = 43 -28464315 ripCount = 41 -28464315 locktype1 = 1 -28464316 locktype2 = 6 -28464316 locktype3 = 11 -28464317 goalCount = 6 -28464317 goalTotal = 36 -28464318 otherCount = 46 -~~~ -28464319 CURRENTGOAL IS [7] -~~~ -28464343 UP 12 -28464343 2048 255 -28464552 DOWN 12 -28464552 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464592 homeCount = 101 -28464593 waitCount = 43 -28464594 ripCount = 41 -28464594 locktype1 = 1 -28464595 locktype2 = 6 -28464595 locktype3 = 11 -28464596 goalCount = 6 -28464596 goalTotal = 36 -28464597 otherCount = 46 -~~~ -28464598 CURRENTGOAL IS [7] -~~~ -28464678 UP 12 -28464678 2048 255 -28464954 DOWN 12 -28464954 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28464994 homeCount = 101 -28464994 waitCount = 43 -28464995 ripCount = 41 -28464995 locktype1 = 1 -28464996 locktype2 = 6 -28464997 locktype3 = 11 -28464997 goalCount = 6 -28464998 goalTotal = 36 -28464998 otherCount = 46 -~~~ -28464999 CURRENTGOAL IS [7] -~~~ -28465040 UP 12 -28465040 2048 255 -28466476 DOWN 12 -28466476 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28466513 homeCount = 101 -28466514 waitCount = 43 -28466514 ripCount = 41 -28466515 locktype1 = 1 -28466515 locktype2 = 6 -28466516 locktype3 = 11 -28466516 goalCount = 6 -28466517 goalTotal = 36 -28466517 otherCount = 46 -~~~ -28466518 CURRENTGOAL IS [7] -~~~ -28466540 UP 12 -28466540 2048 255 -28466558 DOWN 12 -28466558 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28466594 homeCount = 101 -28466594 waitCount = 43 -28466595 ripCount = 41 -28466596 locktype1 = 1 -28466596 locktype2 = 6 -28466597 locktype3 = 11 -28466597 goalCount = 6 -28466598 goalTotal = 36 -28466598 otherCount = 46 -~~~ -28466599 CURRENTGOAL IS [7] -~~~ -28473374 UP 3 -28473374 4 255 -~~~ -~~~ -28474863 DOWN 3 -28474863 0 255 -~~~ -~~~ -28474888 0 254 -~~~ -~~~ -28474890 0 252 -~~~ -~~~ -28474892 0 248 -~~~ -~~~ -28474894 0 240 -~~~ -~~~ -28474896 0 224 -~~~ -~~~ -28474897 0 192 -~~~ -~~~ -28474899 0 128 -~~~ -~~~ -28474901 0 0 -~~~ -~~~ -28474903 0 512 -28474904 homeCount = 101 -28474904 waitCount = 43 -28474905 ripCount = 41 -28474905 locktype1 = 1 -28474906 locktype2 = 6 -28474927 locktype3 = 11 -28474928 goalCount = 6 -28474928 goalTotal = 36 -28474929 otherCount = 47 -~~~ -28474947 4 512 -28474978 DOWN 3 -28474978 0 512 -28479683 UP 10 -28479683 waslock = 0 -28479683 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28479707 512 16777728 -~~~ -28479857 512 512 -28479857 DOWN 10 -28479857 0 512 -~~~ -~~~ -28479883 0 2560 -~~~ -~~~ -28479885 0 2048 -28479886 homeCount = 102 -28479886 waitCount = 43 -28479887 ripCount = 41 -28479887 locktype1 = 1 -28479888 locktype2 = 6 -28479888 locktype3 = 11 -28479889 goalCount = 6 -28479889 goalTotal = 36 -28479890 otherCount = 47 -~~~ -28479911 UP 10 -28479911 waslock = 0 -28479911 512 2048 -~~~ -28485096 DOWN 10 -28485096 0 2048 -~~~ -~~~ -~~~ -~~~ -28485121 UP 10 -28485121 waslock = 0 -28485121 512 2048 -28485123 homeCount = 102 -28485123 waitCount = 43 -28485124 ripCount = 41 -28485124 locktype1 = 1 -28485125 locktype2 = 6 -28485125 locktype3 = 11 -28485126 goalCount = 6 -28485126 goalTotal = 36 -28485127 otherCount = 47 -~~~ -~~~ -28485197 DOWN 10 -28485197 0 2048 -~~~ -~~~ -~~~ -~~~ -28485222 homeCount = 102 -28485222 waitCount = 43 -28485223 ripCount = 41 -28485223 locktype1 = 1 -28485224 locktype2 = 6 -28485224 locktype3 = 11 -28485225 goalCount = 6 -28485225 goalTotal = 36 -28485226 otherCount = 47 -~~~ -28487348 UP 12 -28487348 2048 2048 -28489141 DOWN 12 -28489141 0 2048 -28489173 UP 12 -28489173 2048 2048 -28489765 DOWN 12 -28489765 0 2048 -28489810 UP 12 -28489810 2048 2048 -28490348 CLICK1 -28490348 CLICK2 -~~~ -~~~ -~~~ -28490373 2048 67110912 -~~~ -28490523 2048 2048 -28490662 DOWN 12 -28490662 0 2048 -28490664 UP 12 -28490664 2048 2048 -~~~ -~~~ -28490680 2048 0 -~~~ -~~~ -28490682 2048 1 -~~~ -~~~ -28490684 2048 3 -~~~ -~~~ -28490686 2048 7 -~~~ -~~~ -28490688 2048 15 -~~~ -~~~ -28490689 2048 31 -~~~ -~~~ -28490691 2048 63 -~~~ -~~~ -28490693 2048 127 -~~~ -~~~ -28490695 2048 255 -28490696 homeCount = 102 -28490696 waitCount = 44 -28490697 ripCount = 41 -28490718 locktype1 = 1 -28490719 locktype2 = 6 -28490719 locktype3 = 11 -28490720 goalCount = 6 -28490720 goalTotal = 36 -28490721 otherCount = 47 -~~~ -28490722 CURRENTGOAL IS [7] -~~~ -28490802 DOWN 12 -28490802 0 255 -28490812 UP 12 -28490812 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28490850 homeCount = 102 -28490850 waitCount = 44 -28490851 ripCount = 41 -28490851 locktype1 = 1 -28490852 locktype2 = 6 -28490853 locktype3 = 11 -28490853 goalCount = 6 -28490854 goalTotal = 36 -28490854 otherCount = 47 -~~~ -28490855 CURRENTGOAL IS [7] -~~~ -28499180 DOWN 12 -28499180 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28499217 homeCount = 102 -28499218 waitCount = 44 -28499218 ripCount = 41 -28499219 locktype1 = 1 -28499220 locktype2 = 6 -28499220 locktype3 = 11 -28499221 goalCount = 6 -28499221 goalTotal = 36 -28499222 otherCount = 47 -~~~ -28499223 CURRENTGOAL IS [7] -~~~ -28502930 UP 4 -28502930 8 255 -~~~ -~~~ -28504240 DOWN 4 -28504240 0 255 -~~~ -~~~ -28504264 0 254 -~~~ -~~~ -28504266 0 252 -~~~ -~~~ -28504268 0 248 -~~~ -~~~ -28504269 0 240 -~~~ -~~~ -28504271 0 224 -~~~ -~~~ -28504273 0 192 -~~~ -~~~ -28504275 0 128 -~~~ -~~~ -28504277 0 0 -~~~ -~~~ -28504279 0 512 -28504280 homeCount = 102 -28504280 waitCount = 44 -28504281 ripCount = 41 -28504281 locktype1 = 1 -28504282 locktype2 = 6 -28504303 locktype3 = 11 -28504303 goalCount = 6 -28504304 goalTotal = 36 -28504304 otherCount = 48 -~~~ -28510764 UP 10 -28510764 waslock = 0 -28510764 512 512 -~~~ -~~~ -28510787 DOWN 10 -28510786 0 512 -~~~ -~~~ -~~~ -28510790 0 16777728 -~~~ -28510807 UP 10 -28510807 waslock = 0 -28510807 512 16777728 -~~~ -~~~ -~~~ -28510810 512 16778752 -~~~ -28510811 512 16778240 -28510812 homeCount = 103 -28510812 waitCount = 44 -28510813 ripCount = 41 -28510813 locktype1 = 1 -28510814 locktype2 = 6 -28510814 locktype3 = 11 -28510836 goalCount = 6 -28510836 goalTotal = 36 -28510837 otherCount = 48 -~~~ -~~~ -28510940 512 1024 -28511036 DOWN 10 -28511036 0 1024 -~~~ -~~~ -~~~ -~~~ -28511057 homeCount = 103 -28511058 waitCount = 44 -28511058 ripCount = 41 -28511059 locktype1 = 1 -28511059 locktype2 = 6 -28511060 locktype3 = 11 -28511060 goalCount = 6 -28511061 goalTotal = 36 -28511061 otherCount = 48 -~~~ -28511079 UP 10 -28511079 waslock = 0 -28511079 512 1024 -~~~ -28516182 DOWN 10 -28516182 0 1024 -~~~ -~~~ -~~~ -~~~ -28516207 homeCount = 103 -28516207 waitCount = 44 -28516208 ripCount = 41 -28516208 locktype1 = 1 -28516209 locktype2 = 6 -28516209 locktype3 = 11 -28516210 goalCount = 6 -28516210 goalTotal = 36 -28516211 otherCount = 48 -~~~ -28516242 UP 10 -28516242 waslock = 0 -28516242 512 1024 -28516260 DOWN 10 -28516260 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28516286 homeCount = 103 -28516287 waitCount = 44 -28516287 ripCount = 41 -28516288 locktype1 = 1 -28516288 locktype2 = 6 -28516289 locktype3 = 11 -28516289 goalCount = 6 -28516290 goalTotal = 36 -28516290 otherCount = 48 -~~~ -28518090 UP 11 -28518090 1024 1024 -28522590 BEEP1 -28522590 BEEP2 -~~~ -~~~ -~~~ -28522616 1024 33555456 -~~~ -28522635 DOWN 11 -28522635 0 33555456 -28522652 UP 11 -28522652 1024 33555456 -28522766 1024 1024 -28522899 DOWN 11 -28522899 0 1024 -28522967 UP 11 -28522967 1024 1024 -28523180 DOWN 11 -28523180 0 1024 -28523192 UP 11 -28523192 1024 1024 -~~~ -~~~ -28523290 1024 0 -~~~ -~~~ -28523292 1024 1 -~~~ -~~~ -28523293 1024 3 -~~~ -~~~ -28523295 1024 7 -~~~ -~~~ -28523297 1024 15 -~~~ -~~~ -28523299 1024 31 -~~~ -~~~ -28523301 1024 63 -~~~ -~~~ -28523302 1024 127 -~~~ -~~~ -28523304 1024 255 -28523305 homeCount = 103 -28523306 waitCount = 44 -28523306 ripCount = 42 -28523327 locktype1 = 1 -28523328 locktype2 = 6 -28523329 locktype3 = 11 -28523329 goalCount = 6 -28523330 goalTotal = 36 -28523330 otherCount = 48 -~~~ -28523331 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28523359 homeCount = 103 -28523360 waitCount = 44 -28523360 ripCount = 42 -28523361 locktype1 = 1 -28523361 locktype2 = 6 -28523362 locktype3 = 11 -28523362 goalCount = 6 -28523363 goalTotal = 36 -28523363 otherCount = 48 -~~~ -28523385 CURRENTGOAL IS [7] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28523392 homeCount = 103 -28523392 waitCount = 44 -28523393 ripCount = 42 -28523393 locktype1 = 1 -28523394 locktype2 = 6 -28523394 locktype3 = 11 -28523415 goalCount = 6 -28523416 goalTotal = 36 -28523416 otherCount = 48 -~~~ -28523417 CURRENTGOAL IS [7] -~~~ -28529119 DOWN 11 -28529119 0 255 -~~~ -~~~ -28529139 UP 11 -28529139 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529154 homeCount = 103 -28529155 waitCount = 44 -28529155 ripCount = 42 -28529156 locktype1 = 1 -28529157 locktype2 = 6 -28529157 locktype3 = 11 -28529158 goalCount = 6 -28529158 goalTotal = 36 -28529159 otherCount = 48 -~~~ -28529160 CURRENTGOAL IS [7] -~~~ -28529243 DOWN 11 -28529243 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529278 UP 11 -28529278 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529285 homeCount = 103 -28529286 waitCount = 44 -28529286 ripCount = 42 -28529287 locktype1 = 1 -28529287 locktype2 = 6 -28529288 locktype3 = 11 -28529288 goalCount = 6 -28529289 goalTotal = 36 -28529289 otherCount = 48 -~~~ -28529291 CURRENTGOAL IS [7] -~~~ -28529377 DOWN 11 -28529377 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529405 UP 11 -28529405 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28529413 homeCount = 103 -28529413 waitCount = 44 -28529414 ripCount = 42 -28529415 locktype1 = 1 -28529415 locktype2 = 6 -28529416 locktype3 = 11 -28529416 goalCount = 6 -28529417 goalTotal = 36 -28529417 otherCount = 48 -~~~ -28529418 CURRENTGOAL IS [7] -~~~ -28531283 DOWN 11 -28531283 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28531322 homeCount = 103 -28531323 waitCount = 44 -28531323 ripCount = 42 -28531324 locktype1 = 1 -28531324 locktype2 = 6 -28531325 locktype3 = 11 -28531325 goalCount = 6 -28531326 goalTotal = 36 -28531326 otherCount = 48 -~~~ -28531327 CURRENTGOAL IS [7] -~~~ -28535334 UP 7 -28535334 64 255 -~~~ -~~~ -28535359 outer reward -~~~ -28535359 64 4194559 -~~~ -~~~ -28535740 DOWN 7 -28535740 0 4194559 -~~~ -~~~ -28535756 0 4194558 -~~~ -~~~ -28535758 0 4194556 -~~~ -~~~ -28535760 0 4194552 -~~~ -~~~ -28535762 0 4194544 -~~~ -~~~ -28535764 0 4194528 -~~~ -~~~ -28535765 0 4194496 -~~~ -~~~ -28535767 0 4194432 -~~~ -~~~ -28535769 0 4194304 -~~~ -28535770 64 4194304 -~~~ -28535772 64 4194816 -28535773 homeCount = 103 -28535793 waitCount = 44 -28535794 ripCount = 42 -28535794 locktype1 = 1 -28535795 locktype2 = 6 -28535795 locktype3 = 11 -28535796 goalCount = 7 -28535796 goalTotal = 37 -28535797 otherCount = 48 -~~~ -28535809 64 512 -28543837 DOWN 7 -28543837 0 512 -28548438 UP 10 -28548438 waslock = 0 -28548438 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28548463 512 16777728 -~~~ -28548613 512 512 -28548656 DOWN 10 -28548656 0 512 -28548677 UP 10 -28548678 waslock = 0 -28548677 512 512 -~~~ -~~~ -~~~ -28548680 512 1536 -~~~ -28548682 homeCount = 104 -28548682 waitCount = 44 -28548683 ripCount = 42 -28548683 locktype1 = 1 -28548684 locktype2 = 6 -28548684 locktype3 = 11 -28548685 goalCount = 7 -28548705 goalTotal = 37 -28548706 otherCount = 48 -~~~ -~~~ -28548707 512 1024 -28553037 DOWN 10 -28553037 0 1024 -~~~ -~~~ -~~~ -~~~ -28553060 homeCount = 104 -28553061 waitCount = 44 -28553061 ripCount = 42 -28553062 locktype1 = 1 -28553063 locktype2 = 6 -28553063 locktype3 = 11 -28553064 goalCount = 7 -28553064 goalTotal = 37 -28553065 otherCount = 48 -~~~ -28555797 UP 11 -28555797 1024 1024 -28558797 BEEP1 -28558797 BEEP2 -~~~ -~~~ -~~~ -28558819 1024 33555456 -~~~ -28558969 1024 1024 -28566484 DOWN 11 -28566484 0 1024 -28566489 UP 11 -28566489 1024 1024 -~~~ -~~~ -28566507 1024 0 -~~~ -~~~ -28566509 1024 1 -~~~ -~~~ -28566511 1024 3 -~~~ -~~~ -28566513 1024 7 -~~~ -~~~ -28566515 1024 15 -~~~ -~~~ -28566516 1024 31 -~~~ -~~~ -28566518 1024 63 -~~~ -~~~ -28566520 1024 127 -~~~ -~~~ -28566522 1024 255 -28566523 homeCount = 104 -28566524 waitCount = 44 -28566524 ripCount = 43 -28566525 locktype1 = 1 -28566546 locktype2 = 6 -28566546 locktype3 = 11 -28566547 goalCount = 7 -28566547 goalTotal = 37 -28566548 otherCount = 48 -~~~ -28566549 CURRENTGOAL IS [7] -~~~ -28568685 DOWN 11 -28568685 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28568725 homeCount = 104 -28568726 waitCount = 44 -28568726 ripCount = 43 -28568727 locktype1 = 1 -28568728 locktype2 = 6 -28568728 locktype3 = 11 -28568729 goalCount = 7 -28568729 goalTotal = 37 -28568730 otherCount = 48 -~~~ -28568731 CURRENTGOAL IS [7] -~~~ -28571533 UP 7 -28571533 64 255 -28571553 DOWN 7 -28571553 0 255 -~~~ -~~~ -28571574 outer reward -~~~ -28571574 0 4194559 -~~~ -~~~ -~~~ -~~~ -28571578 0 4194558 -~~~ -~~~ -28571580 0 4194556 -~~~ -~~~ -28571582 0 4194552 -~~~ -~~~ -28571584 0 4194544 -~~~ -~~~ -28571585 0 4194528 -~~~ -~~~ -28571587 0 4194496 -~~~ -~~~ -28571589 0 4194432 -~~~ -~~~ -28571591 0 4194304 -~~~ -~~~ -28571593 0 4194816 -28571594 homeCount = 104 -28571615 waitCount = 44 -28571615 ripCount = 43 -28571616 locktype1 = 1 -28571616 locktype2 = 6 -28571617 locktype3 = 11 -28571617 goalCount = 8 -28571618 goalTotal = 38 -28571618 otherCount = 48 -~~~ -28571624 64 4194816 -28571719 DOWN 7 -28571719 0 4194816 -28571813 64 4194816 -28572024 64 512 -28581184 DOWN 7 -28581184 0 512 -28585695 UP 10 -28585696 waslock = 0 -28585695 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28585719 512 16777728 -~~~ -28585869 512 512 -28585923 DOWN 10 -28585923 0 512 -~~~ -~~~ -28585947 0 2560 -~~~ -~~~ -28585948 0 2048 -28585949 homeCount = 105 -28585950 waitCount = 44 -28585950 ripCount = 43 -28585951 locktype1 = 1 -28585951 locktype2 = 6 -28585952 locktype3 = 11 -28585952 goalCount = 8 -28585953 goalTotal = 38 -28585954 otherCount = 48 -~~~ -28585975 UP 10 -28585975 waslock = 0 -28585975 512 2048 -~~~ -28589699 DOWN 10 -28589699 0 2048 -~~~ -~~~ -~~~ -~~~ -28589726 homeCount = 105 -28589726 waitCount = 44 -28589727 ripCount = 43 -28589727 locktype1 = 1 -28589728 locktype2 = 6 -28589728 locktype3 = 11 -28589729 goalCount = 8 -28589729 goalTotal = 38 -28589730 otherCount = 48 -~~~ -28589736 UP 10 -28589737 waslock = 0 -28589736 512 2048 -~~~ -28589793 DOWN 10 -28589793 0 2048 -~~~ -~~~ -~~~ -~~~ -28589817 homeCount = 105 -28589818 waitCount = 44 -28589818 ripCount = 43 -28589819 locktype1 = 1 -28589819 locktype2 = 6 -28589820 locktype3 = 11 -28589820 goalCount = 8 -28589821 goalTotal = 38 -28589821 otherCount = 48 -~~~ -28591883 UP 12 -28591883 2048 2048 -28594999 DOWN 12 -28594999 0 2048 -28595008 UP 12 -28595008 2048 2048 -28596384 CLICK1 -28596384 CLICK2 -~~~ -~~~ -~~~ -28596405 2048 67110912 -~~~ -28596555 2048 2048 -28602879 DOWN 12 -28602879 0 2048 -~~~ -~~~ -28602904 0 0 -~~~ -~~~ -28602906 0 1 -~~~ -~~~ -28602908 0 3 -~~~ -~~~ -28602910 0 7 -~~~ -~~~ -28602912 0 15 -~~~ -~~~ -28602913 0 31 -~~~ -~~~ -28602915 0 63 -~~~ -~~~ -28602917 0 127 -~~~ -~~~ -28602919 0 255 -28602920 homeCount = 105 -28602920 waitCount = 45 -28602921 ripCount = 43 -28602921 locktype1 = 1 -28602922 locktype2 = 6 -28602943 locktype3 = 11 -28602944 goalCount = 8 -28602944 goalTotal = 38 -28602945 otherCount = 48 -~~~ -28602946 CURRENTGOAL IS [7] -~~~ -28602948 UP 12 -28602948 2048 255 -28602980 DOWN 12 -28602980 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603008 UP 12 -28603008 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603014 homeCount = 105 -28603015 waitCount = 45 -28603015 ripCount = 43 -28603016 locktype1 = 1 -28603016 locktype2 = 6 -28603017 locktype3 = 11 -28603017 goalCount = 8 -28603018 goalTotal = 38 -28603018 otherCount = 48 -~~~ -28603020 CURRENTGOAL IS [7] -~~~ -28603548 DOWN 12 -28603548 0 255 -28603564 UP 12 -28603564 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28603599 homeCount = 105 -28603599 waitCount = 45 -28603600 ripCount = 43 -28603601 locktype1 = 1 -28603601 locktype2 = 6 -28603602 locktype3 = 11 -28603602 goalCount = 8 -28603603 goalTotal = 38 -28603603 otherCount = 48 -~~~ -28603604 CURRENTGOAL IS [7] -~~~ -28605256 DOWN 12 -28605256 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28605289 homeCount = 105 -28605290 waitCount = 45 -28605290 ripCount = 43 -28605291 locktype1 = 1 -28605291 locktype2 = 6 -28605292 locktype3 = 11 -28605292 goalCount = 8 -28605293 goalTotal = 38 -28605293 otherCount = 48 -~~~ -28605295 CURRENTGOAL IS [7] -~~~ -28605316 UP 12 -28605316 2048 255 -28605340 DOWN 12 -28605340 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28605382 homeCount = 105 -28605382 waitCount = 45 -28605383 ripCount = 43 -28605383 locktype1 = 1 -28605384 locktype2 = 6 -28605384 locktype3 = 11 -28605385 goalCount = 8 -28605385 goalTotal = 38 -28605386 otherCount = 48 -~~~ -28605387 CURRENTGOAL IS [7] -~~~ -28610041 UP 7 -28610041 64 255 -~~~ -~~~ -28610066 outer reward -~~~ -28610066 64 4194559 -~~~ -~~~ -28610080 DOWN 7 -28610080 0 4194559 -~~~ -~~~ -28610104 0 4194558 -~~~ -~~~ -28610106 0 4194556 -~~~ -~~~ -28610108 0 4194552 -~~~ -~~~ -28610110 0 4194544 -~~~ -~~~ -28610112 0 4194528 -~~~ -~~~ -28610113 0 4194496 -~~~ -~~~ -28610115 0 4194432 -~~~ -~~~ -28610117 0 4194304 -~~~ -~~~ -28610119 0 4194816 -28610120 homeCount = 105 -28610120 waitCount = 45 -28610121 ripCount = 43 -28610142 locktype1 = 1 -28610143 locktype2 = 6 -28610143 locktype3 = 11 -28610144 goalCount = 9 -28610144 goalTotal = 39 -28610145 otherCount = 48 -~~~ -28610145 64 4194816 -28610263 DOWN 7 -28610263 0 4194816 -28610325 64 4194816 -28610516 64 512 -28610711 DOWN 7 -28610711 0 512 -28610728 64 512 -28618901 DOWN 7 -28618901 0 512 -28624410 UP 10 -28624410 waslock = 0 -28624410 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28624433 512 16777728 -~~~ -28624583 512 512 -28629207 DOWN 10 -28629207 0 512 -~~~ -~~~ -28629227 0 1536 -~~~ -~~~ -28629229 0 1024 -28629230 homeCount = 106 -28629230 waitCount = 45 -28629231 ripCount = 43 -28629231 locktype1 = 1 -28629232 locktype2 = 6 -28629232 locktype3 = 11 -28629233 goalCount = 9 -28629233 goalTotal = 39 -28629234 otherCount = 48 -~~~ -28629267 UP 10 -28629268 waslock = 0 -28629267 512 1024 -28629281 DOWN 10 -28629281 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -28629317 homeCount = 106 -28629318 waitCount = 45 -28629318 ripCount = 43 -28629319 locktype1 = 1 -28629319 locktype2 = 6 -28629320 locktype3 = 11 -28629320 goalCount = 9 -28629321 goalTotal = 39 -28629321 otherCount = 48 -~~~ -28631683 UP 11 -28631683 1024 1024 -28635339 DOWN 11 -28635339 0 1024 -28635349 UP 11 -28635349 1024 1024 -28635683 BEEP1 -28635683 BEEP2 -~~~ -~~~ -~~~ -28635709 1024 33555456 -~~~ -28635859 1024 1024 -28642049 DOWN 11 -28642048 0 1024 -~~~ -~~~ -28642066 0 0 -~~~ -28642067 UP 11 -28642067 1024 0 -~~~ -~~~ -28642069 1024 1 -~~~ -~~~ -28642071 1024 3 -~~~ -~~~ -28642072 1024 7 -~~~ -28642073 1024 15 -~~~ -~~~ -28642075 1024 31 -~~~ -~~~ -28642076 1024 63 -~~~ -~~~ -28642078 1024 127 -~~~ -~~~ -28642080 1024 255 -28642081 homeCount = 106 -28642102 waitCount = 45 -28642102 ripCount = 44 -28642103 locktype1 = 1 -28642103 locktype2 = 6 -28642104 locktype3 = 11 -28642104 goalCount = 9 -28642105 goalTotal = 39 -28642105 otherCount = 48 -~~~ -28642107 CURRENTGOAL IS [7] -~~~ -28642132 DOWN 11 -28642132 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642162 homeCount = 106 -28642162 waitCount = 45 -28642163 ripCount = 44 -28642163 locktype1 = 1 -28642164 locktype2 = 6 -28642164 locktype3 = 11 -28642165 goalCount = 9 -28642165 goalTotal = 39 -28642166 otherCount = 48 -~~~ -28642167 CURRENTGOAL IS [7] -~~~ -28642188 UP 11 -28642188 1024 255 -28642197 DOWN 11 -28642197 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642220 UP 11 -28642220 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642227 homeCount = 106 -28642228 waitCount = 45 -28642228 ripCount = 44 -28642229 locktype1 = 1 -28642229 locktype2 = 6 -28642230 locktype3 = 11 -28642230 goalCount = 9 -28642231 goalTotal = 39 -28642231 otherCount = 48 -~~~ -28642232 CURRENTGOAL IS [7] -~~~ -28642272 DOWN 11 -28642272 0 255 -28642296 UP 11 -28642296 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28642313 homeCount = 106 -28642314 waitCount = 45 -28642314 ripCount = 44 -28642315 locktype1 = 1 -28642315 locktype2 = 6 -28642316 locktype3 = 11 -28642316 goalCount = 9 -28642317 goalTotal = 39 -28642317 otherCount = 48 -~~~ -28642318 CURRENTGOAL IS [7] -~~~ -28643982 DOWN 11 -28643982 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28644022 homeCount = 106 -28644022 waitCount = 45 -28644023 ripCount = 44 -28644023 locktype1 = 1 -28644024 locktype2 = 6 -28644024 locktype3 = 11 -28644025 goalCount = 9 -28644025 goalTotal = 39 -28644026 otherCount = 48 -~~~ -28644027 CURRENTGOAL IS [7] -~~~ -28644048 UP 11 -28644048 1024 255 -28644071 DOWN 11 -28644071 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28644112 homeCount = 106 -28644113 waitCount = 45 -28644113 ripCount = 44 -28644114 locktype1 = 1 -28644114 locktype2 = 6 -28644115 locktype3 = 11 -28644115 goalCount = 9 -28644116 goalTotal = 39 -28644116 otherCount = 48 -~~~ -28644118 CURRENTGOAL IS [7] -~~~ -28646624 UP 7 -28646624 64 255 -~~~ -~~~ -28646652 outer reward -~~~ -28646652 64 4194559 -~~~ -~~~ -28646657 outerreps = 6 -~~~ -~~~ -28646820 DOWN 7 -28646820 0 4194559 -~~~ -~~~ -28646837 0 4194558 -~~~ -~~~ -28646838 0 4194556 -~~~ -~~~ -28646840 0 4194552 -~~~ -~~~ -28646842 0 4194544 -~~~ -~~~ -28646844 0 4194528 -~~~ -~~~ -28646846 0 4194496 -~~~ -~~~ -28646848 0 4194432 -~~~ -~~~ -28646849 0 4194304 -~~~ -~~~ -28646851 0 4194816 -28646852 homeCount = 106 -28646853 waitCount = 45 -28646874 ripCount = 44 -28646875 locktype1 = 1 -28646875 locktype2 = 6 -28646876 locktype3 = 11 -28646876 goalCount = 0 -28646877 goalTotal = 40 -28646877 otherCount = 48 -~~~ -28646881 64 4194816 -28647102 64 512 -28654098 DOWN 7 -28654098 0 512 -28654128 64 512 -28655573 DOWN 7 -28655573 0 512 -28659979 UP 10 -28659979 waslock = 0 -28659979 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28660003 512 16777728 -~~~ -28660153 512 512 -28660172 DOWN 10 -28660172 0 512 -~~~ -~~~ -28660192 0 2560 -~~~ -~~~ -28660194 0 2048 -28660195 homeCount = 107 -28660196 waitCount = 45 -28660196 ripCount = 44 -28660197 locktype1 = 1 -28660197 locktype2 = 6 -28660198 locktype3 = 11 -28660198 goalCount = 0 -28660199 goalTotal = 40 -28660199 otherCount = 48 -~~~ -28660221 UP 10 -28660221 waslock = 0 -28660221 512 2048 -~~~ -28664181 DOWN 10 -28664181 0 2048 -~~~ -~~~ -~~~ -~~~ -28664200 homeCount = 107 -28664201 waitCount = 45 -28664201 ripCount = 44 -28664202 locktype1 = 1 -28664202 locktype2 = 6 -28664203 locktype3 = 11 -28664203 goalCount = 0 -28664204 goalTotal = 40 -28664204 otherCount = 48 -~~~ -28664242 UP 10 -28664242 waslock = 0 -28664242 512 2048 -~~~ -28664282 DOWN 10 -28664282 0 2048 -~~~ -~~~ -~~~ -~~~ -28664301 homeCount = 107 -28664301 waitCount = 45 -28664302 ripCount = 44 -28664302 locktype1 = 1 -28664303 locktype2 = 6 -28664303 locktype3 = 11 -28664304 goalCount = 0 -28664304 goalTotal = 40 -28664305 otherCount = 48 -~~~ -28666679 UP 12 -28666679 2048 2048 -28669418 DOWN 12 -28669418 0 2048 -28669421 UP 12 -28669421 2048 2048 -28670180 CLICK1 -28670180 CLICK2 -~~~ -~~~ -~~~ -28670200 2048 67110912 -~~~ -28670350 2048 2048 -28675738 DOWN 12 -28675738 0 2048 -28675753 UP 12 -28675753 2048 2048 -~~~ -~~~ -28675758 2048 0 -~~~ -~~~ -28675760 2048 1 -~~~ -~~~ -28675761 2048 3 -~~~ -~~~ -28675763 2048 7 -~~~ -~~~ -28675765 2048 15 -~~~ -~~~ -28675767 2048 31 -~~~ -~~~ -28675769 2048 63 -~~~ -~~~ -28675771 2048 127 -~~~ -~~~ -28675772 2048 255 -28675773 homeCount = 107 -28675774 waitCount = 46 -28675775 ripCount = 44 -28675796 locktype1 = 1 -28675796 locktype2 = 6 -28675797 locktype3 = 11 -28675797 goalCount = 0 -28675798 goalTotal = 40 -28675798 otherCount = 48 -~~~ -28675799 CURRENTGOAL IS [8] -~~~ -28675955 DOWN 12 -28675955 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28675995 homeCount = 107 -28675996 waitCount = 46 -28675996 ripCount = 44 -28675997 locktype1 = 1 -28675997 locktype2 = 6 -28675998 locktype3 = 11 -28675998 goalCount = 0 -28675999 goalTotal = 40 -28675999 otherCount = 48 -~~~ -28676000 CURRENTGOAL IS [8] -~~~ -28676059 UP 12 -28676058 2048 255 -28676099 DOWN 12 -28676099 0 255 -28676107 UP 12 -28676107 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676134 homeCount = 107 -28676135 waitCount = 46 -28676135 ripCount = 44 -28676136 locktype1 = 1 -28676136 locktype2 = 6 -28676137 locktype3 = 11 -28676137 goalCount = 0 -28676138 goalTotal = 40 -28676138 otherCount = 48 -~~~ -28676139 CURRENTGOAL IS [8] -~~~ -28676193 DOWN 12 -28676193 0 255 -~~~ -~~~ -~~~ -28676221 UP 12 -28676221 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676236 homeCount = 107 -28676236 waitCount = 46 -28676237 ripCount = 44 -28676238 locktype1 = 1 -28676238 locktype2 = 6 -28676239 locktype3 = 11 -28676239 goalCount = 0 -28676240 goalTotal = 40 -28676240 otherCount = 48 -~~~ -28676241 CURRENTGOAL IS [8] -~~~ -28676262 DOWN 12 -28676262 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676294 homeCount = 107 -28676294 waitCount = 46 -28676295 ripCount = 44 -28676296 locktype1 = 1 -28676296 locktype2 = 6 -28676297 locktype3 = 11 -28676297 goalCount = 0 -28676298 goalTotal = 40 -28676298 otherCount = 48 -~~~ -28676299 CURRENTGOAL IS [8] -~~~ -28676341 UP 12 -28676341 2048 255 -28676567 DOWN 12 -28676567 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676604 homeCount = 107 -28676605 waitCount = 46 -28676606 ripCount = 44 -28676606 locktype1 = 1 -28676607 locktype2 = 6 -28676607 locktype3 = 11 -28676608 goalCount = 0 -28676608 goalTotal = 40 -28676609 otherCount = 48 -~~~ -28676610 CURRENTGOAL IS [8] -~~~ -28676631 UP 12 -28676631 2048 255 -28676674 DOWN 12 -28676674 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676715 homeCount = 107 -28676716 waitCount = 46 -28676717 ripCount = 44 -28676717 locktype1 = 1 -28676718 locktype2 = 6 -28676718 locktype3 = 11 -28676719 goalCount = 0 -28676719 goalTotal = 40 -28676720 otherCount = 48 -~~~ -28676721 CURRENTGOAL IS [8] -~~~ -28676794 UP 12 -28676794 2048 255 -28676813 DOWN 12 -28676813 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28676847 homeCount = 107 -28676848 waitCount = 46 -28676848 ripCount = 44 -28676849 locktype1 = 1 -28676849 locktype2 = 6 -28676850 locktype3 = 11 -28676850 goalCount = 0 -28676851 goalTotal = 40 -28676851 otherCount = 48 -~~~ -28676853 CURRENTGOAL IS [8] -~~~ -28681987 UP 7 -28681987 64 255 -~~~ -~~~ -28682178 DOWN 7 -28682178 0 255 -~~~ -~~~ -28682199 0 254 -~~~ -~~~ -28682201 0 252 -~~~ -~~~ -28682203 0 248 -~~~ -~~~ -28682205 0 240 -~~~ -~~~ -28682206 0 224 -~~~ -~~~ -28682208 0 192 -~~~ -~~~ -28682210 0 128 -~~~ -~~~ -28682212 0 0 -~~~ -~~~ -28682214 0 512 -28682215 homeCount = 107 -28682215 waitCount = 46 -28682216 ripCount = 44 -28682216 locktype1 = 1 -28682237 locktype2 = 6 -28682237 locktype3 = 11 -28682238 goalCount = 0 -28682238 goalTotal = 40 -28682239 otherCount = 49 -~~~ -28682242 64 512 -28682805 DOWN 7 -28682805 0 512 -28687242 UP 10 -28687242 waslock = 0 -28687242 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28687267 512 16777728 -~~~ -28687417 512 512 -28692614 DOWN 10 -28692614 0 512 -~~~ -~~~ -28692630 0 1536 -~~~ -~~~ -28692632 0 1024 -28692633 homeCount = 108 -28692633 waitCount = 46 -28692634 ripCount = 44 -28692634 locktype1 = 1 -28692635 locktype2 = 6 -28692635 locktype3 = 11 -28692636 goalCount = 0 -28692636 goalTotal = 40 -28692637 otherCount = 49 -~~~ -28722460 UP 5 -28722460 16 1024 -~~~ -28722481 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -28722485 16 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28722793 DOWN 5 -28722793 0 0 -28722950 16 0 -28723527 DOWN 5 -28723527 0 0 -28723945 16 0 -28723961 DOWN 5 -28723961 0 0 -28731390 512 0 -28731607 0 0 -28734719 512 0 -28740000 0 0 -28740067 512 0 -28740107 0 0 -28747481 LOCKEND -~~~ -~~~ -~~~ -28747502 0 512 -28779978 UP 10 -28779978 waslock = 0 -28779978 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28780008 512 16777728 -~~~ -28780038 DOWN 10 -28780038 0 16777728 -~~~ -~~~ -28780067 0 16779776 -~~~ -~~~ -28780069 0 16779264 -28780070 homeCount = 109 -28780070 waitCount = 46 -28780071 ripCount = 44 -28780071 locktype1 = 1 -28780072 locktype2 = 7 -28780072 locktype3 = 11 -28780073 goalCount = 0 -28780073 goalTotal = 40 -28780074 otherCount = 49 -~~~ -28780103 UP 10 -28780103 waslock = 0 -28780103 512 16779264 -28780132 DOWN 10 -28780132 0 16779264 -~~~ -~~~ -~~~ -~~~ -~~~ -28780155 homeCount = 109 -28780155 waitCount = 46 -28780156 ripCount = 44 -28780156 locktype1 = 1 -28780157 locktype2 = 7 -28780157 locktype3 = 11 -28780158 goalCount = 0 -28780158 goalTotal = 40 -28780159 otherCount = 49 -~~~ -28780159 0 2048 -28780313 UP 10 -28780314 waslock = 0 -28780313 512 2048 -~~~ -28780367 DOWN 10 -28780367 0 2048 -~~~ -~~~ -~~~ -~~~ -28780397 homeCount = 109 -28780397 waitCount = 46 -28780398 ripCount = 44 -28780398 locktype1 = 1 -28780399 locktype2 = 7 -28780399 locktype3 = 11 -28780400 goalCount = 0 -28780400 goalTotal = 40 -28780401 otherCount = 49 -~~~ -28780413 UP 10 -28780414 waslock = 0 -28780413 512 2048 -~~~ -28780850 DOWN 10 -28780850 0 2048 -~~~ -~~~ -~~~ -~~~ -28780875 homeCount = 109 -28780875 waitCount = 46 -28780876 ripCount = 44 -28780877 locktype1 = 1 -28780877 locktype2 = 7 -28780878 locktype3 = 11 -28780878 goalCount = 0 -28780879 goalTotal = 40 -28780879 otherCount = 49 -~~~ -28780890 UP 10 -28780890 waslock = 0 -28780890 512 2048 -28780908 DOWN 10 -28780908 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28780933 homeCount = 109 -28780933 waitCount = 46 -28780934 ripCount = 44 -28780934 locktype1 = 1 -28780935 locktype2 = 7 -28780935 locktype3 = 11 -28780936 goalCount = 0 -28780936 goalTotal = 40 -28780937 otherCount = 49 -~~~ -28781017 UP 10 -28781017 waslock = 0 -28781017 512 2048 -28781032 DOWN 10 -28781032 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28781058 homeCount = 109 -28781058 waitCount = 46 -28781059 ripCount = 44 -28781059 locktype1 = 1 -28781060 locktype2 = 7 -28781060 locktype3 = 11 -28781061 goalCount = 0 -28781061 goalTotal = 40 -28781062 otherCount = 49 -~~~ -28781144 UP 10 -28781144 waslock = 0 -28781144 512 2048 -28781154 DOWN 10 -28781154 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28781175 homeCount = 109 -28781176 waitCount = 46 -28781176 ripCount = 44 -28781177 locktype1 = 1 -28781177 locktype2 = 7 -28781178 locktype3 = 11 -28781178 goalCount = 0 -28781179 goalTotal = 40 -28781179 otherCount = 49 -~~~ -28781262 UP 10 -28781263 waslock = 0 -28781262 512 2048 -~~~ -28783973 DOWN 10 -28783973 0 2048 -~~~ -~~~ -~~~ -~~~ -28783999 homeCount = 109 -28783999 waitCount = 46 -28784000 ripCount = 44 -28784000 locktype1 = 1 -28784001 locktype2 = 7 -28784001 locktype3 = 11 -28784002 goalCount = 0 -28784002 goalTotal = 40 -28784003 otherCount = 49 -~~~ -28784018 UP 10 -28784019 waslock = 0 -28784018 512 2048 -~~~ -28784075 DOWN 10 -28784075 0 2048 -~~~ -~~~ -~~~ -~~~ -28784099 homeCount = 109 -28784099 waitCount = 46 -28784100 ripCount = 44 -28784100 locktype1 = 1 -28784101 locktype2 = 7 -28784101 locktype3 = 11 -28784102 goalCount = 0 -28784103 goalTotal = 40 -28784103 otherCount = 49 -~~~ -28797858 UP 1 -28797858 1 2048 -28797882 DOWN 1 -28797882 0 2048 -~~~ -28797884 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28797889 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28797959 1 0 -28798533 DOWN 1 -28798533 0 0 -28805298 512 0 -28805377 0 0 -28805484 512 0 -28805569 0 0 -28812038 512 0 -28812315 0 0 -28812347 512 0 -28812391 0 0 -28812415 512 0 -28812432 0 0 -28822884 LOCKEND -~~~ -~~~ -~~~ -28822907 0 512 -28824977 UP 10 -28824977 waslock = 0 -28824977 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28825010 512 16777728 -~~~ -28825030 DOWN 10 -28825030 0 16777728 -~~~ -~~~ -28825053 0 16778752 -~~~ -~~~ -28825055 0 16778240 -28825056 homeCount = 110 -28825057 waitCount = 46 -28825057 ripCount = 44 -28825058 locktype1 = 1 -28825058 locktype2 = 8 -28825059 locktype3 = 11 -28825059 goalCount = 0 -28825060 goalTotal = 40 -28825060 otherCount = 49 -~~~ -28825081 UP 10 -28825082 waslock = 0 -28825081 512 16778240 -~~~ -28825160 512 1024 -28829576 DOWN 10 -28829576 0 1024 -~~~ -~~~ -~~~ -~~~ -28829597 homeCount = 110 -28829597 waitCount = 46 -28829598 ripCount = 44 -28829599 locktype1 = 1 -28829599 locktype2 = 8 -28829600 locktype3 = 11 -28829600 goalCount = 0 -28829601 goalTotal = 40 -28829601 otherCount = 49 -~~~ -28829635 UP 10 -28829635 waslock = 0 -28829635 512 1024 -~~~ -28829692 DOWN 10 -28829692 0 1024 -~~~ -~~~ -~~~ -~~~ -28829717 homeCount = 110 -28829717 waitCount = 46 -28829718 ripCount = 44 -28829718 locktype1 = 1 -28829719 locktype2 = 8 -28829719 locktype3 = 11 -28829720 goalCount = 0 -28829720 goalTotal = 40 -28829721 otherCount = 49 -~~~ -28829775 UP 10 -28829775 waslock = 0 -28829775 512 1024 -~~~ -28829802 DOWN 10 -28829802 0 1024 -~~~ -~~~ -~~~ -~~~ -28829831 homeCount = 110 -28829832 waitCount = 46 -28829832 ripCount = 44 -28829833 locktype1 = 1 -28829833 locktype2 = 8 -28829834 locktype3 = 11 -28829834 goalCount = 0 -28829835 goalTotal = 40 -28829835 otherCount = 49 -~~~ -28832575 UP 11 -28832575 1024 1024 -28836075 BEEP1 -28836075 BEEP2 -~~~ -~~~ -~~~ -28836096 1024 33555456 -~~~ -28836246 1024 1024 -28842504 DOWN 11 -28842504 0 1024 -~~~ -28842524 UP 11 -28842524 1024 1024 -~~~ -~~~ -28842526 1024 0 -~~~ -~~~ -28842527 1024 1 -~~~ -28842529 1024 3 -~~~ -~~~ -28842530 1024 7 -~~~ -~~~ -28842532 1024 15 -~~~ -~~~ -28842534 1024 31 -~~~ -~~~ -28842536 1024 63 -~~~ -~~~ -28842537 1024 127 -~~~ -~~~ -28842539 1024 255 -28842540 homeCount = 110 -28842561 waitCount = 46 -28842562 ripCount = 45 -28842562 locktype1 = 1 -28842563 locktype2 = 8 -28842563 locktype3 = 11 -28842564 goalCount = 0 -28842564 goalTotal = 40 -28842565 otherCount = 49 -~~~ -28842566 CURRENTGOAL IS [8] -~~~ -28842627 DOWN 11 -28842627 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28842665 homeCount = 110 -28842666 waitCount = 46 -28842666 ripCount = 45 -28842667 locktype1 = 1 -28842667 locktype2 = 8 -28842668 locktype3 = 11 -28842668 goalCount = 0 -28842669 goalTotal = 40 -28842669 otherCount = 49 -~~~ -28842670 CURRENTGOAL IS [8] -~~~ -28842708 UP 11 -28842708 1024 255 -28842766 DOWN 11 -28842766 0 255 -28842777 UP 11 -28842777 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28842817 homeCount = 110 -28842818 waitCount = 46 -28842819 ripCount = 45 -28842819 locktype1 = 1 -28842820 locktype2 = 8 -28842820 locktype3 = 11 -28842821 goalCount = 0 -28842821 goalTotal = 40 -28842822 otherCount = 49 -~~~ -28842823 CURRENTGOAL IS [8] -~~~ -28844915 DOWN 11 -28844915 0 255 -28844936 UP 11 -28844936 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28844956 homeCount = 110 -28844956 waitCount = 46 -28844957 ripCount = 45 -28844957 locktype1 = 1 -28844958 locktype2 = 8 -28844958 locktype3 = 11 -28844959 goalCount = 0 -28844959 goalTotal = 40 -28844960 otherCount = 49 -~~~ -28844961 CURRENTGOAL IS [8] -~~~ -28845000 DOWN 11 -28845000 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28845037 homeCount = 110 -28845037 waitCount = 46 -28845038 ripCount = 45 -28845038 locktype1 = 1 -28845039 locktype2 = 8 -28845039 locktype3 = 11 -28845040 goalCount = 0 -28845040 goalTotal = 40 -28845041 otherCount = 49 -~~~ -28845042 CURRENTGOAL IS [8] -~~~ -28848013 UP 6 -28848013 32 255 -~~~ -~~~ -28848533 DOWN 6 -28848533 0 255 -~~~ -~~~ -28848550 0 254 -~~~ -~~~ -28848552 0 252 -~~~ -~~~ -28848554 0 248 -~~~ -~~~ -28848556 0 240 -~~~ -~~~ -28848558 0 224 -~~~ -~~~ -28848560 0 192 -~~~ -~~~ -28848561 0 128 -~~~ -~~~ -28848563 0 0 -~~~ -~~~ -28848565 0 512 -28848566 homeCount = 110 -28848567 waitCount = 46 -28848567 ripCount = 45 -28848568 locktype1 = 1 -28848589 locktype2 = 8 -28848589 locktype3 = 11 -28848590 goalCount = 0 -28848590 goalTotal = 40 -28848591 otherCount = 50 -~~~ -28853286 UP 10 -28853286 waslock = 0 -28853285 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28853310 512 16777728 -~~~ -28853460 512 512 -28853551 DOWN 10 -28853551 0 512 -~~~ -~~~ -28853578 0 2560 -~~~ -~~~ -28853580 0 2048 -28853581 homeCount = 111 -28853582 waitCount = 46 -28853582 ripCount = 45 -28853583 locktype1 = 1 -28853583 locktype2 = 8 -28853584 locktype3 = 11 -28853584 goalCount = 0 -28853585 goalTotal = 40 -28853585 otherCount = 50 -~~~ -28853607 UP 10 -28853607 waslock = 0 -28853607 512 2048 -~~~ -28858404 DOWN 10 -28858404 0 2048 -~~~ -~~~ -~~~ -~~~ -28858432 homeCount = 111 -28858433 waitCount = 46 -28858433 ripCount = 45 -28858434 locktype1 = 1 -28858434 locktype2 = 8 -28858435 locktype3 = 11 -28858435 goalCount = 0 -28858436 goalTotal = 40 -28858436 otherCount = 50 -~~~ -28860886 UP 12 -28860886 2048 2048 -28863790 DOWN 12 -28863790 0 2048 -28863828 UP 12 -28863828 2048 2048 -28863856 DOWN 12 -28863856 0 2048 -28863886 CLICK1 -28863886 CLICK2 -~~~ -~~~ -~~~ -28863919 0 67110912 -~~~ -28863922 UP 12 -28863922 2048 67110912 -28864069 2048 2048 -28864196 DOWN 12 -28864196 0 2048 -~~~ -~~~ -28864220 0 0 -~~~ -~~~ -28864222 0 1 -~~~ -~~~ -28864224 0 3 -~~~ -~~~ -28864226 0 7 -~~~ -~~~ -28864228 0 15 -~~~ -~~~ -28864229 0 31 -~~~ -~~~ -28864231 0 63 -~~~ -~~~ -28864233 0 127 -~~~ -~~~ -28864235 0 255 -28864236 homeCount = 111 -28864236 waitCount = 47 -28864237 ripCount = 45 -28864238 locktype1 = 1 -28864238 locktype2 = 8 -28864259 locktype3 = 11 -28864260 goalCount = 0 -28864260 goalTotal = 40 -28864261 otherCount = 50 -~~~ -28864262 CURRENTGOAL IS [8] -~~~ -28864299 UP 12 -28864299 2048 255 -28870550 DOWN 12 -28870550 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28870587 homeCount = 111 -28870587 waitCount = 47 -28870588 ripCount = 45 -28870588 locktype1 = 1 -28870589 locktype2 = 8 -28870589 locktype3 = 11 -28870590 goalCount = 0 -28870590 goalTotal = 40 -28870591 otherCount = 50 -~~~ -28870592 CURRENTGOAL IS [8] -~~~ -28870613 UP 12 -28870613 2048 255 -28870653 DOWN 12 -28870653 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28870688 homeCount = 111 -28870689 waitCount = 47 -28870689 ripCount = 45 -28870690 locktype1 = 1 -28870690 locktype2 = 8 -28870691 locktype3 = 11 -28870692 goalCount = 0 -28870692 goalTotal = 40 -28870693 otherCount = 50 -~~~ -28870694 CURRENTGOAL IS [8] -~~~ -28874529 UP 4 -28874529 8 255 -~~~ -~~~ -28875631 DOWN 4 -28875631 0 255 -~~~ -~~~ -28875652 0 254 -~~~ -~~~ -28875654 0 252 -~~~ -~~~ -28875655 0 248 -~~~ -~~~ -28875657 0 240 -~~~ -~~~ -28875659 0 224 -~~~ -~~~ -28875661 0 192 -~~~ -~~~ -28875663 0 128 -~~~ -~~~ -28875664 0 0 -~~~ -~~~ -28875666 0 512 -28875667 homeCount = 111 -28875668 waitCount = 47 -28875668 ripCount = 45 -28875669 locktype1 = 1 -28875690 locktype2 = 8 -28875691 locktype3 = 11 -28875691 goalCount = 0 -28875692 goalTotal = 40 -28875692 otherCount = 51 -~~~ -28883393 UP 10 -28883394 waslock = 0 -28883393 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28883422 512 16777728 -~~~ -28883439 DOWN 10 -28883439 0 16777728 -~~~ -~~~ -28883466 0 16779776 -~~~ -~~~ -28883468 0 16779264 -28883469 homeCount = 112 -28883470 waitCount = 47 -28883470 ripCount = 45 -28883471 locktype1 = 1 -28883471 locktype2 = 8 -28883472 locktype3 = 11 -28883472 goalCount = 0 -28883473 goalTotal = 40 -28883473 otherCount = 51 -~~~ -28883509 UP 10 -28883509 waslock = 0 -28883509 512 16779264 -~~~ -28883572 512 2048 -28883585 DOWN 10 -28883585 0 2048 -~~~ -~~~ -~~~ -~~~ -28883605 homeCount = 112 -28883605 waitCount = 47 -28883606 ripCount = 45 -28883606 locktype1 = 1 -28883607 locktype2 = 8 -28883607 locktype3 = 11 -28883608 goalCount = 0 -28883608 goalTotal = 40 -28883609 otherCount = 51 -~~~ -28883764 UP 10 -28883764 waslock = 0 -28883764 512 2048 -~~~ -28888011 DOWN 10 -28888011 0 2048 -~~~ -~~~ -~~~ -~~~ -28888031 homeCount = 112 -28888032 waitCount = 47 -28888032 ripCount = 45 -28888033 locktype1 = 1 -28888033 locktype2 = 8 -28888034 locktype3 = 11 -28888034 goalCount = 0 -28888035 goalTotal = 40 -28888035 otherCount = 51 -~~~ -28888049 UP 10 -28888050 waslock = 0 -28888049 512 2048 -~~~ -28888103 DOWN 10 -28888103 0 2048 -~~~ -~~~ -~~~ -~~~ -28888134 homeCount = 112 -28888134 waitCount = 47 -28888135 ripCount = 45 -28888135 locktype1 = 1 -28888136 locktype2 = 8 -28888136 locktype3 = 11 -28888137 goalCount = 0 -28888137 goalTotal = 40 -28888138 otherCount = 51 -~~~ -28890034 UP 12 -28890034 2048 2048 -28893690 DOWN 12 -28893690 0 2048 -28893790 UP 12 -28893790 2048 2048 -28893861 DOWN 12 -28893861 0 2048 -28893878 UP 12 -28893878 2048 2048 -28893921 DOWN 12 -28893921 0 2048 -28893942 UP 12 -28893942 2048 2048 -28893949 DOWN 12 -28893949 0 2048 -28893954 UP 12 -28893954 2048 2048 -28893964 DOWN 12 -28893964 0 2048 -28893989 UP 12 -28893989 2048 2048 -28898611 DOWN 12 -28898611 0 2048 -28898680 UP 12 -28898680 2048 2048 -28899034 CLICK1 -28899034 CLICK2 -~~~ -~~~ -~~~ -28899062 2048 67110912 -~~~ -28899212 2048 2048 -28908224 DOWN 12 -28908224 0 2048 -~~~ -~~~ -28908245 0 0 -~~~ -~~~ -28908247 0 1 -~~~ -~~~ -28908249 0 3 -~~~ -~~~ -28908251 0 7 -~~~ -~~~ -28908253 0 15 -~~~ -~~~ -28908255 0 31 -~~~ -~~~ -28908256 0 63 -~~~ -~~~ -28908258 0 127 -~~~ -~~~ -28908260 0 255 -28908261 homeCount = 112 -28908262 waitCount = 48 -28908262 ripCount = 45 -28908263 locktype1 = 1 -28908263 locktype2 = 8 -28908284 locktype3 = 11 -28908285 goalCount = 0 -28908285 goalTotal = 40 -28908286 otherCount = 51 -~~~ -28908287 CURRENTGOAL IS [8] -~~~ -28908287 UP 12 -28908287 2048 255 -28908312 DOWN 12 -28908312 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28908355 homeCount = 112 -28908356 waitCount = 48 -28908356 ripCount = 45 -28908357 locktype1 = 1 -28908357 locktype2 = 8 -28908358 locktype3 = 11 -28908358 goalCount = 0 -28908359 goalTotal = 40 -28908359 otherCount = 51 -~~~ -28908361 CURRENTGOAL IS [8] -~~~ -28912740 UP 1 -28912740 1 255 -~~~ -~~~ -28913834 DOWN 1 -28913834 0 255 -~~~ -~~~ -28913860 0 254 -~~~ -~~~ -28913862 0 252 -~~~ -~~~ -28913864 0 248 -~~~ -~~~ -28913866 0 240 -~~~ -~~~ -28913867 0 224 -~~~ -~~~ -28913869 0 192 -~~~ -~~~ -28913871 0 128 -~~~ -~~~ -28913873 0 0 -~~~ -~~~ -28913875 0 512 -28913876 homeCount = 112 -28913876 waitCount = 48 -28913877 ripCount = 45 -28913877 locktype1 = 1 -28913878 locktype2 = 8 -28913899 locktype3 = 11 -28913899 goalCount = 0 -28913900 goalTotal = 40 -28913900 otherCount = 52 -~~~ -28917360 UP 10 -28917360 waslock = 0 -28917360 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28917386 512 16777728 -~~~ -28917536 512 512 -28923452 DOWN 10 -28923452 0 512 -28923462 UP 10 -28923462 waslock = 0 -28923462 512 512 -~~~ -~~~ -28923482 512 2560 -~~~ -~~~ -28923484 512 2048 -28923485 homeCount = 113 -28923486 waitCount = 48 -28923486 ripCount = 45 -28923487 locktype1 = 1 -28923487 locktype2 = 8 -28923488 locktype3 = 11 -28923488 goalCount = 0 -28923489 goalTotal = 40 -28923489 otherCount = 52 -~~~ -~~~ -28923558 DOWN 10 -28923558 0 2048 -~~~ -~~~ -~~~ -~~~ -28923583 homeCount = 113 -28923584 waitCount = 48 -28923584 ripCount = 45 -28923585 locktype1 = 1 -28923585 locktype2 = 8 -28923586 locktype3 = 11 -28923586 goalCount = 0 -28923587 goalTotal = 40 -28923587 otherCount = 52 -~~~ -28923618 UP 10 -28923619 waslock = 0 -28923618 512 2048 -~~~ -28923656 DOWN 10 -28923656 0 2048 -~~~ -~~~ -~~~ -~~~ -28923679 homeCount = 113 -28923680 waitCount = 48 -28923680 ripCount = 45 -28923681 locktype1 = 1 -28923681 locktype2 = 8 -28923682 locktype3 = 11 -28923682 goalCount = 0 -28923683 goalTotal = 40 -28923683 otherCount = 52 -~~~ -28925345 UP 12 -28925345 2048 2048 -28926820 DOWN 12 -28926820 0 2048 -28926832 UP 12 -28926832 2048 2048 -28927113 DOWN 12 -28927113 0 2048 -28927174 UP 12 -28927174 2048 2048 -28928345 CLICK1 -28928345 CLICK2 -~~~ -~~~ -~~~ -28928364 2048 67110912 -~~~ -28928481 DOWN 12 -28928481 0 67110912 -28928514 0 2048 -28928534 UP 12 -28928534 2048 2048 -28928545 DOWN 12 -28928545 0 2048 -~~~ -~~~ -28928551 0 0 -~~~ -~~~ -28928553 0 1 -~~~ -~~~ -28928555 0 3 -~~~ -~~~ -28928557 0 7 -~~~ -~~~ -28928558 0 15 -~~~ -~~~ -28928560 0 31 -~~~ -~~~ -28928562 0 63 -~~~ -~~~ -28928564 0 127 -~~~ -~~~ -28928566 0 255 -28928567 homeCount = 113 -28928567 waitCount = 49 -28928568 ripCount = 45 -28928568 locktype1 = 1 -28928569 locktype2 = 8 -28928590 locktype3 = 11 -28928590 goalCount = 0 -28928591 goalTotal = 40 -28928592 otherCount = 52 -~~~ -28928593 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28928600 homeCount = 113 -28928621 waitCount = 49 -28928621 ripCount = 45 -28928622 locktype1 = 1 -28928622 locktype2 = 8 -28928623 locktype3 = 11 -28928623 goalCount = 0 -28928624 goalTotal = 40 -28928624 otherCount = 52 -~~~ -28928625 CURRENTGOAL IS [8] -~~~ -28928626 UP 12 -28928626 2048 255 -28934970 DOWN 12 -28934970 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28935004 homeCount = 113 -28935004 waitCount = 49 -28935005 ripCount = 45 -28935006 locktype1 = 1 -28935006 locktype2 = 8 -28935007 locktype3 = 11 -28935007 goalCount = 0 -28935008 goalTotal = 40 -28935008 otherCount = 52 -~~~ -28935009 CURRENTGOAL IS [8] -~~~ -28935030 UP 12 -28935030 2048 255 -28935063 DOWN 12 -28935063 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28935104 homeCount = 113 -28935104 waitCount = 49 -28935105 ripCount = 45 -28935105 locktype1 = 1 -28935106 locktype2 = 8 -28935107 locktype3 = 11 -28935107 goalCount = 0 -28935108 goalTotal = 40 -28935108 otherCount = 52 -~~~ -28935109 CURRENTGOAL IS [8] -~~~ -28939803 UP 4 -28939803 8 255 -~~~ -~~~ -28940719 DOWN 4 -28940719 0 255 -~~~ -~~~ -28940736 0 254 -~~~ -~~~ -28940738 0 252 -~~~ -~~~ -28940740 0 248 -~~~ -~~~ -28940741 0 240 -~~~ -~~~ -28940743 0 224 -~~~ -~~~ -28940745 0 192 -~~~ -~~~ -28940747 0 128 -~~~ -~~~ -28940749 0 0 -~~~ -~~~ -28940751 0 512 -28940752 homeCount = 113 -28940752 waitCount = 49 -28940753 ripCount = 45 -28940753 locktype1 = 1 -28940774 locktype2 = 8 -28940775 locktype3 = 11 -28940775 goalCount = 0 -28940776 goalTotal = 40 -28940776 otherCount = 53 -~~~ -28940844 8 512 -28941165 DOWN 4 -28941165 0 512 -28944970 UP 10 -28944970 waslock = 0 -28944970 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28944999 512 16777728 -~~~ -28945149 512 512 -28945191 DOWN 10 -28945191 0 512 -~~~ -~~~ -28945214 0 1536 -~~~ -~~~ -28945216 0 1024 -28945217 homeCount = 114 -28945217 waitCount = 49 -28945218 ripCount = 45 -28945218 locktype1 = 1 -28945219 locktype2 = 8 -28945219 locktype3 = 11 -28945220 goalCount = 0 -28945220 goalTotal = 40 -28945221 otherCount = 53 -~~~ -28945242 UP 10 -28945242 waslock = 0 -28945242 512 1024 -~~~ -28952252 DOWN 10 -28952252 0 1024 -~~~ -~~~ -~~~ -~~~ -28952276 homeCount = 114 -28952276 waitCount = 49 -28952277 ripCount = 45 -28952277 locktype1 = 1 -28952278 locktype2 = 8 -28952278 locktype3 = 11 -28952279 goalCount = 0 -28952279 goalTotal = 40 -28952280 otherCount = 53 -~~~ -28954847 UP 11 -28954847 1024 1024 -28958772 DOWN 11 -28958772 0 1024 -28958793 UP 11 -28958793 1024 1024 -28958938 DOWN 11 -28958938 0 1024 -28958951 UP 11 -28958951 1024 1024 -28962347 BEEP1 -28962347 BEEP2 -~~~ -~~~ -~~~ -28962376 1024 33555456 -~~~ -28962526 1024 1024 -28969334 DOWN 11 -28969334 0 1024 -~~~ -~~~ -28969353 0 0 -~~~ -~~~ -28969355 0 1 -~~~ -~~~ -28969357 0 3 -~~~ -~~~ -28969359 0 7 -~~~ -~~~ -28969361 0 15 -~~~ -~~~ -28969363 0 31 -~~~ -~~~ -28969364 0 63 -~~~ -~~~ -28969366 0 127 -~~~ -~~~ -28969368 0 255 -28969369 homeCount = 114 -28969370 waitCount = 49 -28969370 ripCount = 46 -28969371 locktype1 = 1 -28969371 locktype2 = 8 -28969392 locktype3 = 11 -28969393 goalCount = 0 -28969393 goalTotal = 40 -28969394 otherCount = 53 -~~~ -28969395 CURRENTGOAL IS [8] -~~~ -28969395 UP 11 -28969395 1024 255 -28969432 DOWN 11 -28969432 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28969472 homeCount = 114 -28969472 waitCount = 49 -28969473 ripCount = 46 -28969473 locktype1 = 1 -28969474 locktype2 = 8 -28969474 locktype3 = 11 -28969475 goalCount = 0 -28969475 goalTotal = 40 -28969476 otherCount = 53 -~~~ -28969477 CURRENTGOAL IS [8] -~~~ -28972662 UP 7 -28972662 64 255 -~~~ -~~~ -28973269 DOWN 7 -28973269 0 255 -~~~ -~~~ -28973295 0 254 -~~~ -~~~ -28973297 0 252 -~~~ -~~~ -28973299 0 248 -~~~ -~~~ -28973301 0 240 -~~~ -~~~ -28973303 0 224 -~~~ -~~~ -28973305 0 192 -~~~ -~~~ -28973306 0 128 -~~~ -~~~ -28973308 0 0 -~~~ -~~~ -28973310 0 512 -28973311 homeCount = 114 -28973312 waitCount = 49 -28973312 ripCount = 46 -28973313 locktype1 = 1 -28973313 locktype2 = 8 -28973334 locktype3 = 11 -28973335 goalCount = 0 -28973335 goalTotal = 40 -28973336 otherCount = 54 -~~~ -28977764 UP 10 -28977764 waslock = 0 -28977764 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -28977794 512 16777728 -~~~ -28977944 512 512 -28978037 DOWN 10 -28978037 0 512 -~~~ -~~~ -28978059 0 2560 -~~~ -~~~ -28978060 0 2048 -28978061 homeCount = 115 -28978062 waitCount = 49 -28978063 ripCount = 46 -28978063 locktype1 = 1 -28978064 locktype2 = 8 -28978064 locktype3 = 11 -28978065 goalCount = 0 -28978065 goalTotal = 40 -28978066 otherCount = 54 -~~~ -28978087 UP 10 -28978087 waslock = 0 -28978087 512 2048 -~~~ -28978234 DOWN 10 -28978234 0 2048 -28978250 UP 10 -28978250 waslock = 0 -28978250 512 2048 -~~~ -~~~ -~~~ -~~~ -28978273 homeCount = 115 -28978273 waitCount = 49 -28978274 ripCount = 46 -28978275 locktype1 = 1 -28978275 locktype2 = 8 -28978276 locktype3 = 11 -28978276 goalCount = 0 -28978277 goalTotal = 40 -28978277 otherCount = 54 -~~~ -~~~ -28978477 DOWN 10 -28978477 0 2048 -~~~ -~~~ -~~~ -~~~ -28978501 homeCount = 115 -28978501 waitCount = 49 -28978502 ripCount = 46 -28978502 locktype1 = 1 -28978503 locktype2 = 8 -28978503 locktype3 = 11 -28978504 goalCount = 0 -28978504 goalTotal = 40 -28978505 otherCount = 54 -~~~ -28978551 UP 10 -28978551 waslock = 0 -28978551 512 2048 -28978570 DOWN 10 -28978570 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -28978599 homeCount = 115 -28978600 waitCount = 49 -28978600 ripCount = 46 -28978601 locktype1 = 1 -28978601 locktype2 = 8 -28978602 locktype3 = 11 -28978602 goalCount = 0 -28978603 goalTotal = 40 -28978603 otherCount = 54 -~~~ -28978681 UP 10 -28978681 waslock = 0 -28978681 512 2048 -~~~ -28985257 DOWN 10 -28985257 0 2048 -~~~ -~~~ -~~~ -~~~ -28985282 homeCount = 115 -28985282 waitCount = 49 -28985283 ripCount = 46 -28985283 locktype1 = 1 -28985284 locktype2 = 8 -28985284 locktype3 = 11 -28985285 goalCount = 0 -28985286 goalTotal = 40 -28985286 otherCount = 54 -~~~ -28995900 UP 12 -28995900 2048 2048 -28997144 DOWN 12 -28997144 0 2048 -28997344 LOCKOUT 3 -28997347 UP 12 -28997347 2048 2048 -~~~ -28997369 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28997375 2048 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -28997612 DOWN 12 -28997612 0 0 -28997634 UP 12 -28997634 2048 0 -29001991 DOWN 12 -29001991 0 0 -29002007 UP 12 -29002007 2048 0 -29002019 DOWN 12 -29002018 0 0 -29002056 UP 12 -29002056 2048 0 -29002152 DOWN 12 -29002152 0 0 -29002178 UP 12 -29002178 2048 0 -29002188 DOWN 12 -29002188 0 0 -29002210 UP 12 -29002210 2048 0 -29007757 DOWN 12 -29007757 0 0 -29007782 UP 12 -29007782 2048 0 -29007799 DOWN 12 -29007799 0 0 -29007825 UP 12 -29007825 2048 0 -29009658 DOWN 12 -29009658 0 0 -29009698 UP 12 -29009698 2048 0 -29009727 DOWN 12 -29009727 0 0 -29009797 UP 12 -29009797 2048 0 -29009830 DOWN 12 -29009830 0 0 -29011177 UP 12 -29011177 2048 0 -29011199 DOWN 12 -29011199 0 0 -29011358 UP 12 -29011358 2048 0 -29012274 DOWN 12 -29012274 0 0 -29022369 LOCKEND -~~~ -~~~ -~~~ -29022391 0 512 -29026767 UP 10 -29026767 waslock = 0 -29026767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29026795 512 16777728 -~~~ -29026842 DOWN 10 -29026842 0 16777728 -~~~ -~~~ -29026871 0 16779776 -~~~ -~~~ -29026873 0 16779264 -29026874 homeCount = 116 -29026874 waitCount = 49 -29026875 ripCount = 46 -29026875 locktype1 = 1 -29026876 locktype2 = 8 -29026876 locktype3 = 12 -29026877 goalCount = 0 -29026877 goalTotal = 40 -29026878 otherCount = 54 -~~~ -29026908 UP 10 -29026908 waslock = 0 -29026908 512 16779264 -~~~ -29026944 512 2048 -29026962 DOWN 10 -29026962 0 2048 -~~~ -~~~ -~~~ -~~~ -29026992 homeCount = 116 -29026992 waitCount = 49 -29026993 ripCount = 46 -29026994 locktype1 = 1 -29026994 locktype2 = 8 -29026995 locktype3 = 12 -29026995 goalCount = 0 -29026996 goalTotal = 40 -29026996 otherCount = 54 -~~~ -29026998 UP 10 -29026998 waslock = 0 -29026998 512 2048 -29027028 DOWN 10 -29027028 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29027062 homeCount = 116 -29027062 waitCount = 49 -29027063 ripCount = 46 -29027063 locktype1 = 1 -29027064 locktype2 = 8 -29027064 locktype3 = 12 -29027065 goalCount = 0 -29027065 goalTotal = 40 -29027066 otherCount = 54 -~~~ -29027296 UP 10 -29027296 waslock = 0 -29027296 512 2048 -~~~ -29027830 DOWN 10 -29027830 0 2048 -~~~ -~~~ -~~~ -~~~ -29027855 homeCount = 116 -29027856 waitCount = 49 -29027857 ripCount = 46 -29027857 locktype1 = 1 -29027858 locktype2 = 8 -29027858 locktype3 = 12 -29027859 goalCount = 0 -29027859 goalTotal = 40 -29027860 otherCount = 54 -~~~ -29027895 UP 10 -29027895 waslock = 0 -29027895 512 2048 -~~~ -29027938 DOWN 10 -29027938 0 2048 -~~~ -~~~ -~~~ -~~~ -29027966 homeCount = 116 -29027966 waitCount = 49 -29027967 ripCount = 46 -29027967 locktype1 = 1 -29027968 locktype2 = 8 -29027968 locktype3 = 12 -29027969 goalCount = 0 -29027969 goalTotal = 40 -29027970 otherCount = 54 -~~~ -29028014 UP 10 -29028015 waslock = 0 -29028014 512 2048 -~~~ -29029618 DOWN 10 -29029618 0 2048 -~~~ -~~~ -~~~ -29029641 UP 10 -29029641 waslock = 0 -29029640 512 2048 -~~~ -29029643 homeCount = 116 -29029643 waitCount = 49 -29029644 ripCount = 46 -29029644 locktype1 = 1 -29029645 locktype2 = 8 -29029645 locktype3 = 12 -29029646 goalCount = 0 -29029646 goalTotal = 40 -29029667 otherCount = 54 -~~~ -29029668 DOWN 10 -29029668 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29029695 homeCount = 116 -29029696 waitCount = 49 -29029697 ripCount = 46 -29029697 locktype1 = 1 -29029698 locktype2 = 8 -29029698 locktype3 = 12 -29029699 goalCount = 0 -29029699 goalTotal = 40 -29029700 otherCount = 54 -~~~ -29030443 UP 10 -29030443 waslock = 0 -29030443 512 2048 -~~~ -29033311 DOWN 10 -29033311 0 2048 -~~~ -~~~ -~~~ -~~~ -29033333 homeCount = 116 -29033333 waitCount = 49 -29033334 ripCount = 46 -29033334 locktype1 = 1 -29033335 locktype2 = 8 -29033335 locktype3 = 12 -29033336 goalCount = 0 -29033336 goalTotal = 40 -29033337 otherCount = 54 -~~~ -29035977 UP 12 -29035977 2048 2048 -29037448 DOWN 12 -29037448 0 2048 -29037516 UP 12 -29037516 2048 2048 -29038598 DOWN 12 -29038598 0 2048 -29038676 UP 12 -29038676 2048 2048 -29038784 DOWN 12 -29038784 0 2048 -29038806 UP 12 -29038806 2048 2048 -29040477 CLICK1 -29040477 CLICK2 -~~~ -~~~ -~~~ -29040503 2048 67110912 -~~~ -29040653 2048 2048 -29046553 DOWN 12 -29046553 0 2048 -~~~ -~~~ -29046571 0 0 -~~~ -~~~ -29046573 0 1 -~~~ -~~~ -29046575 0 3 -~~~ -~~~ -29046577 0 7 -~~~ -29046578 UP 12 -29046578 2048 7 -~~~ -~~~ -29046580 2048 15 -~~~ -~~~ -29046581 2048 31 -~~~ -~~~ -29046583 2048 63 -~~~ -29046584 2048 127 -~~~ -~~~ -29046586 2048 255 -29046587 homeCount = 116 -29046608 waitCount = 50 -29046608 ripCount = 46 -29046609 locktype1 = 1 -29046609 locktype2 = 8 -29046610 locktype3 = 12 -29046610 goalCount = 0 -29046611 goalTotal = 40 -29046611 otherCount = 54 -~~~ -29046612 CURRENTGOAL IS [8] -~~~ -29046660 DOWN 12 -29046660 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29046699 homeCount = 116 -29046699 waitCount = 50 -29046700 ripCount = 46 -29046700 locktype1 = 1 -29046701 locktype2 = 8 -29046701 locktype3 = 12 -29046702 goalCount = 0 -29046702 goalTotal = 40 -29046703 otherCount = 54 -~~~ -29046704 CURRENTGOAL IS [8] -~~~ -29046725 UP 12 -29046725 2048 255 -29046750 DOWN 12 -29046750 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29046789 homeCount = 116 -29046790 waitCount = 50 -29046790 ripCount = 46 -29046791 locktype1 = 1 -29046792 locktype2 = 8 -29046792 locktype3 = 12 -29046793 goalCount = 0 -29046793 goalTotal = 40 -29046794 otherCount = 54 -~~~ -29046795 CURRENTGOAL IS [8] -~~~ -29046840 UP 12 -29046840 2048 255 -29047066 DOWN 12 -29047066 0 255 -29047070 UP 12 -29047070 2048 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29047101 homeCount = 116 -29047102 waitCount = 50 -29047102 ripCount = 46 -29047103 locktype1 = 1 -29047103 locktype2 = 8 -29047104 locktype3 = 12 -29047104 goalCount = 0 -29047105 goalTotal = 40 -29047105 otherCount = 54 -~~~ -29047106 CURRENTGOAL IS [8] -~~~ -29048094 DOWN 12 -29048094 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29048130 homeCount = 116 -29048131 waitCount = 50 -29048131 ripCount = 46 -29048132 locktype1 = 1 -29048132 locktype2 = 8 -29048133 locktype3 = 12 -29048133 goalCount = 0 -29048134 goalTotal = 40 -29048134 otherCount = 54 -~~~ -29048135 CURRENTGOAL IS [8] -~~~ -29056595 UP 6 -29056595 32 255 -~~~ -~~~ -29057269 DOWN 6 -29057269 0 255 -~~~ -~~~ -29057285 0 254 -~~~ -~~~ -29057287 0 252 -~~~ -~~~ -29057289 0 248 -~~~ -~~~ -29057291 0 240 -~~~ -~~~ -29057292 0 224 -~~~ -~~~ -29057294 0 192 -~~~ -~~~ -29057296 0 128 -~~~ -29057297 32 128 -~~~ -~~~ -29057299 32 0 -~~~ -29057300 32 512 -29057301 homeCount = 116 -29057302 waitCount = 50 -29057302 ripCount = 46 -29057323 locktype1 = 1 -29057324 locktype2 = 8 -29057324 locktype3 = 12 -29057325 goalCount = 0 -29057325 goalTotal = 40 -29057326 otherCount = 55 -~~~ -29057340 DOWN 6 -29057340 0 512 -29061896 UP 10 -29061896 waslock = 0 -29061896 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29061923 512 16777728 -~~~ -29062073 512 512 -29062111 DOWN 10 -29062111 0 512 -~~~ -~~~ -29062139 0 1536 -~~~ -~~~ -29062141 0 1024 -29062142 homeCount = 117 -29062142 waitCount = 50 -29062143 ripCount = 46 -29062143 locktype1 = 1 -29062144 locktype2 = 8 -29062144 locktype3 = 12 -29062145 goalCount = 0 -29062145 goalTotal = 40 -29062146 otherCount = 55 -~~~ -29062222 UP 10 -29062222 waslock = 0 -29062222 512 1024 -~~~ -29066190 DOWN 10 -29066190 0 1024 -~~~ -~~~ -~~~ -~~~ -29066222 homeCount = 117 -29066223 waitCount = 50 -29066223 ripCount = 46 -29066224 locktype1 = 1 -29066224 locktype2 = 8 -29066225 locktype3 = 12 -29066225 goalCount = 0 -29066226 goalTotal = 40 -29066226 otherCount = 55 -~~~ -29068842 UP 11 -29068841 1024 1024 -29077842 BEEP1 -29077842 BEEP2 -~~~ -~~~ -~~~ -29077868 1024 33555456 -~~~ -29078018 1024 1024 -29086532 DOWN 11 -29086532 0 1024 -~~~ -~~~ -29086560 0 0 -~~~ -~~~ -29086561 0 1 -~~~ -~~~ -29086563 0 3 -~~~ -~~~ -29086565 0 7 -~~~ -~~~ -29086567 0 15 -~~~ -~~~ -29086569 0 31 -~~~ -~~~ -29086571 0 63 -~~~ -~~~ -29086572 0 127 -~~~ -~~~ -29086574 0 255 -29086575 homeCount = 117 -29086576 waitCount = 50 -29086576 ripCount = 47 -29086577 locktype1 = 1 -29086577 locktype2 = 8 -29086598 locktype3 = 12 -29086599 goalCount = 0 -29086599 goalTotal = 40 -29086600 otherCount = 55 -~~~ -29086601 CURRENTGOAL IS [8] -~~~ -29086601 UP 11 -29086601 1024 255 -29086651 DOWN 11 -29086651 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29086685 homeCount = 117 -29086685 waitCount = 50 -29086686 ripCount = 47 -29086686 locktype1 = 1 -29086687 locktype2 = 8 -29086687 locktype3 = 12 -29086688 goalCount = 0 -29086688 goalTotal = 40 -29086689 otherCount = 55 -~~~ -29086690 CURRENTGOAL IS [8] -~~~ -29093885 UP 3 -29093885 4 255 -~~~ -~~~ -29094389 DOWN 3 -29094389 0 255 -~~~ -~~~ -29094407 0 254 -~~~ -~~~ -29094409 0 252 -~~~ -~~~ -29094411 0 248 -~~~ -~~~ -29094413 0 240 -~~~ -~~~ -29094414 0 224 -~~~ -~~~ -29094416 0 192 -~~~ -~~~ -29094418 0 128 -~~~ -~~~ -29094420 0 0 -~~~ -~~~ -29094422 0 512 -29094423 homeCount = 117 -29094423 waitCount = 50 -29094424 ripCount = 47 -29094424 locktype1 = 1 -29094445 locktype2 = 8 -29094445 locktype3 = 12 -29094446 goalCount = 0 -29094446 goalTotal = 40 -29094447 otherCount = 56 -~~~ -29094505 4 512 -29094791 DOWN 3 -29094791 0 512 -29098404 UP 10 -29098405 waslock = 0 -29098404 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29098437 512 16777728 -~~~ -29098451 DOWN 10 -29098451 0 16777728 -~~~ -~~~ -29098472 0 16778752 -~~~ -~~~ -29098474 0 16778240 -29098475 homeCount = 118 -29098476 waitCount = 50 -29098476 ripCount = 47 -29098477 locktype1 = 1 -29098477 locktype2 = 8 -29098478 locktype3 = 12 -29098478 goalCount = 0 -29098479 goalTotal = 40 -29098479 otherCount = 56 -~~~ -29098509 UP 10 -29098510 waslock = 0 -29098509 512 16778240 -~~~ -29098587 512 1024 -29098590 DOWN 10 -29098590 0 1024 -~~~ -~~~ -~~~ -~~~ -29098618 homeCount = 118 -29098618 waitCount = 50 -29098619 ripCount = 47 -29098619 locktype1 = 1 -29098620 locktype2 = 8 -29098620 locktype3 = 12 -29098621 goalCount = 0 -29098621 goalTotal = 40 -29098622 otherCount = 56 -~~~ -29098713 UP 10 -29098713 waslock = 0 -29098713 512 1024 -~~~ -29101907 DOWN 10 -29101907 0 1024 -~~~ -~~~ -~~~ -~~~ -29101936 homeCount = 118 -29101937 waitCount = 50 -29101937 ripCount = 47 -29101938 locktype1 = 1 -29101938 locktype2 = 8 -29101939 locktype3 = 12 -29101939 goalCount = 0 -29101940 goalTotal = 40 -29101940 otherCount = 56 -~~~ -29101953 UP 10 -29101953 waslock = 0 -29101953 512 1024 -~~~ -29101998 DOWN 10 -29101998 0 1024 -~~~ -~~~ -~~~ -~~~ -29102018 homeCount = 118 -29102018 waitCount = 50 -29102019 ripCount = 47 -29102019 locktype1 = 1 -29102020 locktype2 = 8 -29102020 locktype3 = 12 -29102021 goalCount = 0 -29102021 goalTotal = 40 -29102022 otherCount = 56 -~~~ -29103694 UP 11 -29103694 1024 1024 -29112694 BEEP1 -29112694 BEEP2 -~~~ -~~~ -~~~ -29112721 1024 33555456 -~~~ -29112871 1024 1024 -29119544 DOWN 11 -29119544 0 1024 -~~~ -~~~ -29119570 0 0 -~~~ -~~~ -29119572 0 1 -~~~ -~~~ -29119574 0 3 -~~~ -~~~ -29119575 0 7 -~~~ -~~~ -29119577 0 15 -~~~ -~~~ -29119579 0 31 -~~~ -~~~ -29119581 0 63 -~~~ -~~~ -29119583 0 127 -~~~ -~~~ -29119585 0 255 -29119586 homeCount = 118 -29119586 waitCount = 50 -29119587 ripCount = 48 -29119587 locktype1 = 1 -29119588 locktype2 = 8 -29119609 locktype3 = 12 -29119609 goalCount = 0 -29119610 goalTotal = 40 -29119610 otherCount = 56 -~~~ -29119611 CURRENTGOAL IS [8] -~~~ -29119612 UP 11 -29119612 1024 255 -29119616 DOWN 11 -29119616 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29119668 homeCount = 118 -29119669 waitCount = 50 -29119669 ripCount = 48 -29119670 locktype1 = 1 -29119670 locktype2 = 8 -29119671 locktype3 = 12 -29119671 goalCount = 0 -29119672 goalTotal = 40 -29119672 otherCount = 56 -~~~ -29119673 CURRENTGOAL IS [8] -~~~ -29122599 UP 8 -29122599 128 255 -~~~ -~~~ -29122624 outer reward -~~~ -29122624 128 8388863 -~~~ -~~~ -29123074 128 255 -29130013 DOWN 8 -29130013 0 255 -~~~ -~~~ -29130032 0 254 -~~~ -~~~ -29130034 0 252 -~~~ -~~~ -29130036 0 248 -~~~ -~~~ -29130037 0 240 -~~~ -~~~ -29130039 0 224 -~~~ -~~~ -29130041 0 192 -~~~ -~~~ -29130043 0 128 -~~~ -~~~ -29130045 0 0 -~~~ -~~~ -29130047 0 512 -29130048 homeCount = 118 -29130048 waitCount = 50 -29130049 ripCount = 48 -29130049 locktype1 = 1 -29130050 locktype2 = 8 -29130071 locktype3 = 12 -29130071 goalCount = 1 -29130072 goalTotal = 41 -29130072 otherCount = 56 -~~~ -29130073 128 512 -29130117 DOWN 8 -29130117 0 512 -29135768 UP 10 -29135768 waslock = 0 -29135767 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29135792 512 16777728 -~~~ -29135942 512 512 -29136087 DOWN 10 -29136087 0 512 -~~~ -~~~ -29136106 0 2560 -~~~ -~~~ -29136108 0 2048 -29136109 homeCount = 119 -29136109 waitCount = 50 -29136110 ripCount = 48 -29136110 locktype1 = 1 -29136111 locktype2 = 8 -29136111 locktype3 = 12 -29136112 goalCount = 1 -29136112 goalTotal = 41 -29136113 otherCount = 56 -~~~ -29136174 UP 10 -29136174 waslock = 0 -29136174 512 2048 -~~~ -29140118 DOWN 10 -29140118 0 2048 -~~~ -~~~ -~~~ -~~~ -29140138 homeCount = 119 -29140138 waitCount = 50 -29140139 ripCount = 48 -29140139 locktype1 = 1 -29140140 locktype2 = 8 -29140140 locktype3 = 12 -29140141 goalCount = 1 -29140141 goalTotal = 41 -29140142 otherCount = 56 -~~~ -29140155 UP 10 -29140156 waslock = 0 -29140155 512 2048 -~~~ -29140225 DOWN 10 -29140225 0 2048 -~~~ -~~~ -~~~ -~~~ -29140256 homeCount = 119 -29140257 waitCount = 50 -29140257 ripCount = 48 -29140258 locktype1 = 1 -29140258 locktype2 = 8 -29140259 locktype3 = 12 -29140259 goalCount = 1 -29140260 goalTotal = 41 -29140260 otherCount = 56 -~~~ -29140302 UP 10 -29140302 waslock = 0 -29140302 512 2048 -29140330 DOWN 10 -29140330 0 2048 -~~~ -~~~ -~~~ -~~~ -~~~ -29140355 homeCount = 119 -29140356 waitCount = 50 -29140356 ripCount = 48 -29140357 locktype1 = 1 -29140357 locktype2 = 8 -29140358 locktype3 = 12 -29140358 goalCount = 1 -29140359 goalTotal = 41 -29140359 otherCount = 56 -~~~ -29142523 UP 12 -29142523 2048 2048 -29145524 CLICK1 -29145524 CLICK2 -~~~ -~~~ -~~~ -29145549 2048 67110912 -~~~ -29145699 2048 2048 -29145721 DOWN 12 -29145721 0 2048 -29145728 UP 12 -29145728 2048 2048 -~~~ -~~~ -29145738 2048 0 -~~~ -~~~ -29145740 2048 1 -~~~ -~~~ -29145742 2048 3 -~~~ -~~~ -29145743 2048 7 -~~~ -~~~ -29145745 2048 15 -~~~ -~~~ -29145747 2048 31 -~~~ -~~~ -29145749 2048 63 -~~~ -~~~ -29145751 2048 127 -~~~ -~~~ -29145753 2048 255 -29145754 homeCount = 119 -29145754 waitCount = 51 -29145755 ripCount = 48 -29145775 locktype1 = 1 -29145776 locktype2 = 8 -29145776 locktype3 = 12 -29145777 goalCount = 1 -29145777 goalTotal = 41 -29145778 otherCount = 56 -~~~ -29145779 CURRENTGOAL IS [8] -~~~ -29145803 DOWN 12 -29145803 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29145844 homeCount = 119 -29145845 waitCount = 51 -29145846 ripCount = 48 -29145846 locktype1 = 1 -29145847 locktype2 = 8 -29145847 locktype3 = 12 -29145848 goalCount = 1 -29145848 goalTotal = 41 -29145849 otherCount = 56 -~~~ -29145850 CURRENTGOAL IS [8] -~~~ -29145897 UP 12 -29145897 2048 255 -29151732 DOWN 12 -29151732 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29151764 homeCount = 119 -29151765 waitCount = 51 -29151765 ripCount = 48 -29151766 locktype1 = 1 -29151766 locktype2 = 8 -29151767 locktype3 = 12 -29151767 goalCount = 1 -29151768 goalTotal = 41 -29151768 otherCount = 56 -~~~ -29151769 CURRENTGOAL IS [8] -~~~ -29151798 UP 12 -29151798 2048 255 -29151813 DOWN 12 -29151813 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29151848 homeCount = 119 -29151849 waitCount = 51 -29151849 ripCount = 48 -29151850 locktype1 = 1 -29151850 locktype2 = 8 -29151851 locktype3 = 12 -29151851 goalCount = 1 -29151852 goalTotal = 41 -29151852 otherCount = 56 -~~~ -29151854 CURRENTGOAL IS [8] -~~~ -29157194 UP 1 -29157194 1 255 -~~~ -~~~ -29157720 DOWN 1 -29157720 0 255 -~~~ -~~~ -29157744 0 254 -~~~ -~~~ -29157745 0 252 -~~~ -~~~ -29157747 0 248 -~~~ -~~~ -29157749 0 240 -~~~ -~~~ -29157751 0 224 -~~~ -~~~ -29157753 0 192 -~~~ -~~~ -29157755 0 128 -~~~ -~~~ -29157756 0 0 -~~~ -~~~ -29157758 0 512 -29157759 homeCount = 119 -29157760 waitCount = 51 -29157760 ripCount = 48 -29157761 locktype1 = 1 -29157781 locktype2 = 8 -29157782 locktype3 = 12 -29157782 goalCount = 1 -29157783 goalTotal = 41 -29157784 otherCount = 57 -~~~ -29161043 UP 10 -29161044 waslock = 0 -29161043 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29161070 512 16777728 -~~~ -29161220 512 512 -29167184 DOWN 10 -29167184 0 512 -~~~ -~~~ -29167204 0 2560 -~~~ -~~~ -29167206 0 2048 -29167207 homeCount = 120 -29167208 waitCount = 51 -29167208 ripCount = 48 -29167209 locktype1 = 1 -29167209 locktype2 = 8 -29167210 locktype3 = 12 -29167210 goalCount = 1 -29167211 goalTotal = 41 -29167211 otherCount = 57 -~~~ -29167233 UP 10 -29167233 waslock = 0 -29167233 512 2048 -~~~ -29167284 DOWN 10 -29167283 0 2048 -~~~ -~~~ -~~~ -~~~ -29167308 homeCount = 120 -29167309 waitCount = 51 -29167309 ripCount = 48 -29167310 locktype1 = 1 -29167310 locktype2 = 8 -29167311 locktype3 = 12 -29167311 goalCount = 1 -29167312 goalTotal = 41 -29167312 otherCount = 57 -~~~ -29169240 UP 12 -29169240 2048 2048 -29173241 CLICK1 -29173241 CLICK2 -~~~ -~~~ -~~~ -29173267 2048 67110912 -~~~ -29173417 2048 2048 -29180620 DOWN 12 -29180620 0 2048 -~~~ -~~~ -29180645 0 0 -~~~ -~~~ -29180647 0 1 -~~~ -~~~ -29180649 0 3 -~~~ -~~~ -29180650 0 7 -~~~ -~~~ -29180652 0 15 -~~~ -~~~ -29180654 0 31 -~~~ -~~~ -29180656 0 63 -~~~ -~~~ -29180658 0 127 -~~~ -~~~ -29180660 0 255 -29180661 homeCount = 120 -29180661 waitCount = 52 -29180662 ripCount = 48 -29180662 locktype1 = 1 -29180663 locktype2 = 8 -29180684 locktype3 = 12 -29180684 goalCount = 1 -29180685 goalTotal = 41 -29180685 otherCount = 57 -~~~ -29180686 CURRENTGOAL IS [8] -~~~ -29180699 UP 12 -29180699 2048 255 -29180715 DOWN 12 -29180715 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29180750 homeCount = 120 -29180750 waitCount = 52 -29180751 ripCount = 48 -29180751 locktype1 = 1 -29180752 locktype2 = 8 -29180752 locktype3 = 12 -29180753 goalCount = 1 -29180753 goalTotal = 41 -29180754 otherCount = 57 -~~~ -29180755 CURRENTGOAL IS [8] -~~~ -29185318 UP 1 -29185318 1 255 -~~~ -~~~ -29185916 DOWN 1 -29185916 0 255 -~~~ -~~~ -29185935 0 254 -~~~ -~~~ -29185937 0 252 -~~~ -~~~ -29185939 0 248 -~~~ -~~~ -29185941 0 240 -~~~ -~~~ -29185943 0 224 -~~~ -~~~ -29185944 0 192 -~~~ -~~~ -29185946 0 128 -~~~ -~~~ -29185948 0 0 -~~~ -~~~ -29185950 0 512 -29185951 homeCount = 120 -29185952 waitCount = 52 -29185952 ripCount = 48 -29185953 locktype1 = 1 -29185953 locktype2 = 8 -29185974 locktype3 = 12 -29185975 goalCount = 1 -29185975 goalTotal = 41 -29185976 otherCount = 58 -~~~ -29186163 1 512 -29186492 DOWN 1 -29186492 0 512 -29186605 1 512 -29187016 DOWN 1 -29187016 0 512 -29187039 1 512 -29187068 DOWN 1 -29187068 0 512 -29191463 UP 10 -29191463 waslock = 0 -29191463 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29191495 512 16777728 -~~~ -29191624 DOWN 10 -29191624 0 16777728 -29191645 0 512 -~~~ -~~~ -29191649 0 1536 -~~~ -~~~ -29191651 0 1024 -29191652 homeCount = 121 -29191652 waitCount = 52 -29191653 ripCount = 48 -29191653 locktype1 = 1 -29191654 locktype2 = 8 -29191654 locktype3 = 12 -29191655 goalCount = 1 -29191655 goalTotal = 41 -29191656 otherCount = 58 -~~~ -29191677 UP 10 -29191677 waslock = 0 -29191677 512 1024 -~~~ -29191706 DOWN 10 -29191706 0 1024 -~~~ -~~~ -~~~ -~~~ -29191722 homeCount = 121 -29191722 waitCount = 52 -29191723 ripCount = 48 -29191723 locktype1 = 1 -29191724 locktype2 = 8 -29191724 locktype3 = 12 -29191725 goalCount = 1 -29191725 goalTotal = 41 -29191726 otherCount = 58 -~~~ -29192235 UP 10 -29192235 waslock = 0 -29192235 512 1024 -~~~ -29198177 DOWN 10 -29198177 0 1024 -~~~ -~~~ -~~~ -~~~ -29198200 homeCount = 121 -29198201 waitCount = 52 -29198201 ripCount = 48 -29198202 locktype1 = 1 -29198202 locktype2 = 8 -29198203 locktype3 = 12 -29198203 goalCount = 1 -29198204 goalTotal = 41 -29198204 otherCount = 58 -~~~ -29198220 UP 10 -29198221 waslock = 0 -29198220 512 1024 -29198243 DOWN 10 -29198243 0 1024 -~~~ -~~~ -~~~ -~~~ -~~~ -29198272 homeCount = 121 -29198272 waitCount = 52 -29198273 ripCount = 48 -29198273 locktype1 = 1 -29198274 locktype2 = 8 -29198274 locktype3 = 12 -29198275 goalCount = 1 -29198275 goalTotal = 41 -29198276 otherCount = 58 -~~~ -29199804 UP 11 -29199804 1024 1024 -29203422 DOWN 11 -29203422 0 1024 -29203433 UP 11 -29203433 1024 1024 -29203804 BEEP1 -29203804 BEEP2 -~~~ -~~~ -~~~ -29203828 1024 33555456 -~~~ -29203978 1024 1024 -29204975 DOWN 11 -29204975 0 1024 -~~~ -~~~ -29205002 0 0 -~~~ -~~~ -29205003 0 1 -~~~ -~~~ -29205005 0 3 -~~~ -~~~ -29205007 0 7 -~~~ -~~~ -29205009 0 15 -~~~ -~~~ -29205011 0 31 -~~~ -~~~ -29205012 0 63 -~~~ -~~~ -29205014 0 127 -~~~ -29205016 UP 11 -29205016 1024 127 -~~~ -29205017 homeCount = 121 -29205018 waitCount = 52 -29205018 ripCount = 49 -29205019 locktype1 = 1 -29205040 locktype2 = 8 -29205041 locktype3 = 12 -29205041 goalCount = 1 -29205042 goalTotal = 41 -29205042 otherCount = 58 -~~~ -29205043 CURRENTGOAL IS [8] -~~~ -29205044 1024 255 -29205098 DOWN 11 -29205098 0 255 -29205104 UP 11 -29205104 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205137 homeCount = 121 -29205138 waitCount = 52 -29205138 ripCount = 49 -29205139 locktype1 = 1 -29205139 locktype2 = 8 -29205140 locktype3 = 12 -29205141 goalCount = 1 -29205141 goalTotal = 41 -29205142 otherCount = 58 -~~~ -29205143 CURRENTGOAL IS [8] -~~~ -29205893 DOWN 11 -29205893 0 255 -29205909 UP 11 -29205909 1024 255 -~~~ -~~~ -~~~ -~~~ -29205929 DOWN 11 -29205929 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205942 homeCount = 121 -29205943 waitCount = 52 -29205943 ripCount = 49 -29205944 locktype1 = 1 -29205944 locktype2 = 8 -29205945 locktype3 = 12 -29205945 goalCount = 1 -29205946 goalTotal = 41 -29205946 otherCount = 58 -~~~ -29205948 CURRENTGOAL IS [8] -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29205975 homeCount = 121 -29205976 waitCount = 52 -29205976 ripCount = 49 -29205977 locktype1 = 1 -29205977 locktype2 = 8 -29205978 locktype3 = 12 -29205978 goalCount = 1 -29206000 goalTotal = 41 -29206000 otherCount = 58 -~~~ -29206001 CURRENTGOAL IS [8] -~~~ -29206071 UP 11 -29206071 1024 255 -29206350 DOWN 11 -29206350 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29206391 homeCount = 121 -29206392 waitCount = 52 -29206392 ripCount = 49 -29206393 locktype1 = 1 -29206393 locktype2 = 8 -29206394 locktype3 = 12 -29206395 goalCount = 1 -29206395 goalTotal = 41 -29206396 otherCount = 58 -~~~ -29206397 CURRENTGOAL IS [8] -~~~ -29207308 UP 11 -29207308 1024 255 -29207410 DOWN 11 -29207410 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29207449 UP 11 -29207449 1024 255 -~~~ -~~~ -~~~ -~~~ -29207454 homeCount = 121 -29207454 waitCount = 52 -29207455 ripCount = 49 -29207455 locktype1 = 1 -29207456 locktype2 = 8 -29207456 locktype3 = 12 -29207457 goalCount = 1 -29207457 goalTotal = 41 -29207458 otherCount = 58 -~~~ -29207459 CURRENTGOAL IS [8] -~~~ -29208017 DOWN 11 -29208017 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208055 homeCount = 121 -29208055 waitCount = 52 -29208056 ripCount = 49 -29208056 locktype1 = 1 -29208057 locktype2 = 8 -29208057 locktype3 = 12 -29208058 goalCount = 1 -29208058 goalTotal = 41 -29208059 otherCount = 58 -~~~ -29208060 CURRENTGOAL IS [8] -~~~ -29208103 UP 11 -29208103 1024 255 -29208328 DOWN 11 -29208328 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208368 homeCount = 121 -29208368 waitCount = 52 -29208369 ripCount = 49 -29208369 locktype1 = 1 -29208370 locktype2 = 8 -29208370 locktype3 = 12 -29208371 goalCount = 1 -29208371 goalTotal = 41 -29208372 otherCount = 58 -~~~ -29208373 CURRENTGOAL IS [8] -~~~ -29208456 UP 11 -29208456 1024 255 -29208683 DOWN 11 -29208683 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29208712 UP 11 -29208712 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -29208717 homeCount = 121 -29208718 waitCount = 52 -29208718 ripCount = 49 -29208719 locktype1 = 1 -29208719 locktype2 = 8 -29208720 locktype3 = 12 -29208720 goalCount = 1 -29208721 goalTotal = 41 -29208721 otherCount = 58 -~~~ -29208722 CURRENTGOAL IS [8] -~~~ -29214121 DOWN 11 -29214121 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214151 UP 11 -29214151 1024 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214158 homeCount = 121 -29214158 waitCount = 52 -29214159 ripCount = 49 -29214159 locktype1 = 1 -29214160 locktype2 = 8 -29214160 locktype3 = 12 -29214161 goalCount = 1 -29214162 goalTotal = 41 -29214162 otherCount = 58 -~~~ -29214163 CURRENTGOAL IS [8] -~~~ -29214210 DOWN 11 -29214210 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29214248 homeCount = 121 -29214248 waitCount = 52 -29214249 ripCount = 49 -29214249 locktype1 = 1 -29214250 locktype2 = 8 -29214250 locktype3 = 12 -29214251 goalCount = 1 -29214251 goalTotal = 41 -29214252 otherCount = 58 -~~~ -29214253 CURRENTGOAL IS [8] -~~~ -29218329 UP 7 -29218329 64 255 -~~~ -~~~ -29218784 DOWN 7 -29218784 0 255 -~~~ -~~~ -29218803 0 254 -~~~ -~~~ -29218805 0 252 -~~~ -~~~ -29218807 0 248 -~~~ -~~~ -29218809 0 240 -~~~ -~~~ -29218811 0 224 -~~~ -29218812 64 224 -~~~ -~~~ -29218814 64 192 -~~~ -29218815 64 128 -~~~ -~~~ -29218816 64 0 -~~~ -~~~ -29218818 64 512 -29218819 homeCount = 121 -29218819 waitCount = 52 -29218841 ripCount = 49 -29218841 locktype1 = 1 -29218842 locktype2 = 8 -29218842 locktype3 = 12 -29218843 goalCount = 1 -29218843 goalTotal = 41 -29218844 otherCount = 59 -~~~ -29219408 DOWN 7 -29219408 0 512 -29224639 UP 10 -29224640 waslock = 0 -29224639 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29224670 512 16777728 -~~~ -29224820 512 512 -29224880 DOWN 10 -29224880 0 512 -~~~ -~~~ -29224910 0 2560 -~~~ -~~~ -29224912 0 2048 -29224913 homeCount = 122 -29224913 waitCount = 52 -29224914 ripCount = 49 -29224914 locktype1 = 1 -29224915 locktype2 = 8 -29224915 locktype3 = 12 -29224916 goalCount = 1 -29224916 goalTotal = 41 -29224917 otherCount = 59 -~~~ -29224952 UP 10 -29224952 waslock = 0 -29224952 512 2048 -~~~ -29229705 DOWN 10 -29229705 0 2048 -~~~ -~~~ -~~~ -~~~ -29229726 homeCount = 122 -29229727 waitCount = 52 -29229727 ripCount = 49 -29229728 locktype1 = 1 -29229728 locktype2 = 8 -29229729 locktype3 = 12 -29229729 goalCount = 1 -29229730 goalTotal = 41 -29229730 otherCount = 59 -~~~ -29229738 UP 10 -29229738 waslock = 0 -29229738 512 2048 -~~~ -29229795 DOWN 10 -29229795 0 2048 -~~~ -~~~ -~~~ -~~~ -29229818 homeCount = 122 -29229818 waitCount = 52 -29229819 ripCount = 49 -29229819 locktype1 = 1 -29229820 locktype2 = 8 -29229820 locktype3 = 12 -29229821 goalCount = 1 -29229821 goalTotal = 41 -29229822 otherCount = 59 -~~~ -29232290 UP 12 -29232290 2048 2048 -29232929 DOWN 12 -29232929 0 2048 -29233130 LOCKOUT 3 -~~~ -29233156 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29233162 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29233439 UP 12 -29233439 2048 0 -29233601 DOWN 12 -29233601 0 0 -29233714 UP 12 -29233714 2048 0 -29233929 DOWN 12 -29233929 0 0 -29244665 UP 4 -29244665 8 0 -29244691 DOWN 4 -29244691 0 0 -29244744 8 0 -29245299 DOWN 4 -29245299 0 0 -29245374 8 0 -29245764 DOWN 4 -29245764 0 0 -29256362 512 0 -29256669 0 0 -29256725 512 0 -29257036 0 0 -29257137 512 0 -29257143 0 0 -29258156 LOCKEND -~~~ -~~~ -~~~ -29258176 0 512 -29259266 UP 10 -29259266 waslock = 0 -29259266 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29259291 512 16777728 -~~~ -29259347 DOWN 10 -29259347 0 16777728 -~~~ -~~~ -29259364 0 16778752 -~~~ -~~~ -29259366 0 16778240 -29259367 homeCount = 123 -29259368 waitCount = 52 -29259368 ripCount = 49 -29259369 locktype1 = 1 -29259369 locktype2 = 8 -29259370 locktype3 = 13 -29259370 goalCount = 1 -29259371 goalTotal = 41 -29259371 otherCount = 59 -~~~ -29259392 UP 10 -29259393 waslock = 0 -29259392 512 16778240 -~~~ -29259441 512 1024 -29264964 DOWN 10 -29264964 0 1024 -~~~ -~~~ -~~~ -~~~ -29264987 homeCount = 123 -29264988 waitCount = 52 -29264988 ripCount = 49 -29264989 locktype1 = 1 -29264989 locktype2 = 8 -29264990 locktype3 = 13 -29264990 goalCount = 1 -29264991 goalTotal = 41 -29264991 otherCount = 59 -~~~ -29266921 UP 11 -29266920 1024 1024 -29270765 DOWN 11 -29270765 0 1024 -29270788 UP 11 -29270788 1024 1024 -29275741 DOWN 11 -29275741 0 1024 -29275751 UP 11 -29275750 1024 1024 -29275921 BEEP1 -29275921 BEEP2 -~~~ -~~~ -~~~ -29275948 1024 33555456 -~~~ -29276098 1024 1024 -29284636 DOWN 11 -29284635 0 1024 -~~~ -~~~ -29284655 0 0 -~~~ -~~~ -29284657 0 1 -~~~ -~~~ -29284659 0 3 -~~~ -~~~ -29284661 0 7 -~~~ -~~~ -29284662 0 15 -~~~ -~~~ -29284664 0 31 -~~~ -~~~ -29284666 0 63 -~~~ -~~~ -29284668 0 127 -~~~ -~~~ -29284670 0 255 -29284671 homeCount = 123 -29284671 waitCount = 52 -29284672 ripCount = 50 -29284672 locktype1 = 1 -29284673 locktype2 = 8 -29284694 locktype3 = 13 -29284694 goalCount = 1 -29284695 goalTotal = 41 -29284695 otherCount = 59 -~~~ -29284696 CURRENTGOAL IS [8] -~~~ -29284697 UP 11 -29284697 1024 255 -29284755 DOWN 11 -29284755 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29284796 homeCount = 123 -29284796 waitCount = 52 -29284797 ripCount = 50 -29284797 locktype1 = 1 -29284798 locktype2 = 8 -29284799 locktype3 = 13 -29284799 goalCount = 1 -29284800 goalTotal = 41 -29284800 otherCount = 59 -~~~ -29284801 CURRENTGOAL IS [8] -~~~ -29288212 UP 8 -29288212 128 255 -~~~ -~~~ -29288231 outer reward -~~~ -29288232 128 8388863 -~~~ -~~~ -29288549 DOWN 8 -29288549 0 8388863 -~~~ -~~~ -29288570 0 8388862 -~~~ -~~~ -29288571 0 8388860 -~~~ -~~~ -29288573 0 8388856 -~~~ -29288575 128 8388856 -~~~ -~~~ -29288576 128 8388848 -~~~ -~~~ -29288578 128 8388832 -~~~ -29288579 128 8388800 -~~~ -~~~ -29288581 128 8388736 -~~~ -~~~ -29288582 128 8388608 -~~~ -~~~ -29288584 128 8389120 -29288606 homeCount = 123 -29288607 waitCount = 52 -29288607 ripCount = 50 -29288608 locktype1 = 1 -29288608 locktype2 = 8 -29288609 locktype3 = 13 -29288609 goalCount = 2 -29288610 goalTotal = 42 -29288610 otherCount = 59 -~~~ -29288681 128 512 -29288820 DOWN 8 -29288820 0 512 -29288834 128 512 -29288934 DOWN 8 -29288934 0 512 -29288960 128 512 -29289062 DOWN 8 -29289062 0 512 -29289076 128 512 -29289179 DOWN 8 -29289179 0 512 -29289202 128 512 -29289305 DOWN 8 -29289305 0 512 -29289323 128 512 -29289431 DOWN 8 -29289431 0 512 -29289453 128 512 -29289581 DOWN 8 -29289581 0 512 -29289598 128 512 -29289717 DOWN 8 -29289717 0 512 -29289724 128 512 -29295838 DOWN 8 -29295838 0 512 -29300855 UP 10 -29300856 waslock = 0 -29300855 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29300888 512 16777728 -~~~ -29301038 512 512 -29301135 DOWN 10 -29301135 0 512 -~~~ -~~~ -29301161 0 1536 -~~~ -~~~ -29301163 0 1024 -29301164 homeCount = 124 -29301164 waitCount = 52 -29301165 ripCount = 50 -29301165 locktype1 = 1 -29301166 locktype2 = 8 -29301166 locktype3 = 13 -29301167 goalCount = 2 -29301167 goalTotal = 42 -29301168 otherCount = 59 -~~~ -29301247 UP 10 -29301247 waslock = 0 -29301247 512 1024 -~~~ -29308901 DOWN 10 -29308901 0 1024 -29308911 UP 10 -29308911 waslock = 0 -29308911 512 1024 -~~~ -~~~ -~~~ -~~~ -29308934 homeCount = 124 -29308935 waitCount = 52 -29308936 ripCount = 50 -29308936 locktype1 = 1 -29308937 locktype2 = 8 -29308937 locktype3 = 13 -29308938 goalCount = 2 -29308938 goalTotal = 42 -29308939 otherCount = 59 -~~~ -~~~ -29308997 DOWN 10 -29308997 0 1024 -~~~ -~~~ -~~~ -~~~ -29309025 homeCount = 124 -29309026 waitCount = 52 -29309026 ripCount = 50 -29309027 locktype1 = 1 -29309027 locktype2 = 8 -29309028 locktype3 = 13 -29309028 goalCount = 2 -29309029 goalTotal = 42 -29309029 otherCount = 59 -~~~ -29311128 UP 11 -29311128 1024 1024 -29314264 DOWN 11 -29314264 0 1024 -29314275 UP 11 -29314275 1024 1024 -29318628 BEEP1 -29318628 BEEP2 -~~~ -~~~ -~~~ -29318653 1024 33555456 -~~~ -29318803 1024 1024 -29327074 DOWN 11 -29327074 0 1024 -~~~ -~~~ -29327093 0 0 -~~~ -~~~ -29327095 0 1 -~~~ -~~~ -29327096 0 3 -~~~ -~~~ -29327098 0 7 -~~~ -~~~ -29327100 0 15 -~~~ -~~~ -29327102 0 31 -~~~ -~~~ -29327104 0 63 -~~~ -~~~ -29327105 0 127 -~~~ -~~~ -29327107 0 255 -29327108 homeCount = 124 -29327109 waitCount = 52 -29327109 ripCount = 51 -29327110 locktype1 = 1 -29327110 locktype2 = 8 -29327131 locktype3 = 13 -29327132 goalCount = 2 -29327132 goalTotal = 42 -29327133 otherCount = 59 -~~~ -29327134 CURRENTGOAL IS [8] -~~~ -29327143 UP 11 -29327143 1024 255 -29327191 DOWN 11 -29327191 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29327227 homeCount = 124 -29327228 waitCount = 52 -29327228 ripCount = 51 -29327229 locktype1 = 1 -29327229 locktype2 = 8 -29327230 locktype3 = 13 -29327230 goalCount = 2 -29327231 goalTotal = 42 -29327231 otherCount = 59 -~~~ -29327233 CURRENTGOAL IS [8] -~~~ -29331590 UP 8 -29331590 128 255 -~~~ -~~~ -29331613 outer reward -~~~ -29331614 128 8388863 -~~~ -~~~ -29331812 DOWN 8 -29331812 0 8388863 -~~~ -~~~ -29331833 0 8388862 -~~~ -~~~ -29331835 0 8388860 -~~~ -~~~ -29331837 0 8388856 -~~~ -~~~ -29331838 0 8388848 -~~~ -~~~ -29331840 0 8388832 -~~~ -~~~ -29331842 0 8388800 -~~~ -~~~ -29331844 0 8388736 -~~~ -~~~ -29331846 0 8388608 -~~~ -~~~ -29331848 0 8389120 -29331849 homeCount = 124 -29331849 waitCount = 52 -29331850 ripCount = 51 -29331871 locktype1 = 1 -29331871 locktype2 = 8 -29331872 locktype3 = 13 -29331872 goalCount = 3 -29331873 goalTotal = 43 -29331873 otherCount = 59 -~~~ -29331874 128 8389120 -29332063 128 512 -29332236 DOWN 8 -29332236 0 512 -29332246 128 512 -29332338 DOWN 8 -29332338 0 512 -29332375 128 512 -29332458 DOWN 8 -29332458 0 512 -29332486 128 512 -29332583 DOWN 8 -29332583 0 512 -29332608 128 512 -29332710 DOWN 8 -29332710 0 512 -29332732 128 512 -29332982 DOWN 8 -29332982 0 512 -29332985 128 512 -29333239 DOWN 8 -29333239 0 512 -29333247 128 512 -29338471 DOWN 8 -29338471 0 512 -29344506 UP 10 -29344507 waslock = 0 -29344506 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29344530 512 16777728 -~~~ -29344680 512 512 -29349720 DOWN 10 -29349720 0 512 -~~~ -~~~ -29349745 0 2560 -~~~ -~~~ -29349746 0 2048 -29349747 homeCount = 125 -29349748 waitCount = 52 -29349749 ripCount = 51 -29349749 locktype1 = 1 -29349750 locktype2 = 8 -29349750 locktype3 = 13 -29349751 goalCount = 3 -29349751 goalTotal = 43 -29349752 otherCount = 59 -~~~ -29349773 UP 10 -29349773 waslock = 0 -29349773 512 2048 -~~~ -29349825 DOWN 10 -29349825 0 2048 -~~~ -~~~ -~~~ -~~~ -29349849 homeCount = 125 -29349849 waitCount = 52 -29349850 ripCount = 51 -29349850 locktype1 = 1 -29349851 locktype2 = 8 -29349851 locktype3 = 13 -29349852 goalCount = 3 -29349852 goalTotal = 43 -29349853 otherCount = 59 -~~~ -29352255 UP 12 -29352255 2048 2048 -29352543 DOWN 12 -29352543 0 2048 -29352728 UP 12 -29352728 2048 2048 -29355255 CLICK1 -29355255 CLICK2 -~~~ -~~~ -~~~ -29355278 2048 67110912 -~~~ -29355428 2048 2048 -29362752 DOWN 12 -29362752 0 2048 -~~~ -~~~ -29362776 0 0 -~~~ -~~~ -29362778 0 1 -~~~ -~~~ -29362780 0 3 -~~~ -~~~ -29362782 0 7 -~~~ -~~~ -29362783 0 15 -~~~ -~~~ -29362785 0 31 -~~~ -~~~ -29362787 0 63 -~~~ -~~~ -29362789 0 127 -~~~ -29362790 UP 12 -29362790 2048 127 -~~~ -29362792 homeCount = 125 -29362792 waitCount = 53 -29362793 ripCount = 51 -29362793 locktype1 = 1 -29362815 locktype2 = 8 -29362815 locktype3 = 13 -29362816 goalCount = 3 -29362816 goalTotal = 43 -29362817 otherCount = 59 -~~~ -29362818 CURRENTGOAL IS [8] -~~~ -29362818 2048 255 -29362852 DOWN 12 -29362852 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29362893 homeCount = 125 -29362894 waitCount = 53 -29362894 ripCount = 51 -29362895 locktype1 = 1 -29362895 locktype2 = 8 -29362896 locktype3 = 13 -29362896 goalCount = 3 -29362897 goalTotal = 43 -29362897 otherCount = 59 -~~~ -29362898 CURRENTGOAL IS [8] -~~~ -29367715 UP 8 -29367715 128 255 -~~~ -~~~ -29367735 outer reward -~~~ -29367735 128 8388863 -~~~ -~~~ -29367928 DOWN 8 -29367928 0 8388863 -~~~ -~~~ -29367952 0 8388862 -~~~ -~~~ -29367953 0 8388860 -~~~ -~~~ -29367955 0 8388856 -~~~ -~~~ -29367957 0 8388848 -~~~ -~~~ -29367959 0 8388832 -~~~ -~~~ -29367961 0 8388800 -~~~ -~~~ -29367962 0 8388736 -~~~ -~~~ -29367964 0 8388608 -~~~ -~~~ -29367966 0 8389120 -29367967 homeCount = 125 -29367968 waitCount = 53 -29367968 ripCount = 51 -29367989 locktype1 = 1 -29367990 locktype2 = 8 -29367990 locktype3 = 13 -29367991 goalCount = 4 -29367991 goalTotal = 44 -29367992 otherCount = 59 -~~~ -29367998 128 8389120 -29368185 128 512 -29368242 DOWN 8 -29368242 0 512 -29368254 128 512 -29368363 DOWN 8 -29368363 0 512 -29368371 128 512 -29368479 DOWN 8 -29368479 0 512 -29368499 128 512 -29368596 DOWN 8 -29368596 0 512 -29368622 128 512 -29368726 DOWN 8 -29368726 0 512 -29368746 128 512 -29368850 DOWN 8 -29368850 0 512 -29368886 128 512 -29368991 DOWN 8 -29368991 0 512 -29369005 128 512 -29374850 DOWN 8 -29374850 0 512 -29374897 128 512 -29374950 DOWN 8 -29374950 0 512 -29379956 UP 10 -29379957 waslock = 0 -29379956 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29379988 512 16777728 -~~~ -29380138 512 512 -29383458 DOWN 10 -29383458 0 512 -~~~ -~~~ -29383482 0 1536 -~~~ -~~~ -29383484 0 1024 -29383485 homeCount = 126 -29383485 waitCount = 53 -29383486 ripCount = 51 -29383486 locktype1 = 1 -29383487 locktype2 = 8 -29383487 locktype3 = 13 -29383488 goalCount = 4 -29383488 goalTotal = 44 -29383489 otherCount = 59 -~~~ -29383510 UP 10 -29383510 waslock = 0 -29383510 512 1024 -~~~ -29383556 DOWN 10 -29383556 0 1024 -~~~ -~~~ -~~~ -~~~ -29383589 homeCount = 126 -29383590 waitCount = 53 -29383590 ripCount = 51 -29383591 locktype1 = 1 -29383591 locktype2 = 8 -29383592 locktype3 = 13 -29383592 goalCount = 4 -29383593 goalTotal = 44 -29383593 otherCount = 59 -~~~ -29385874 UP 11 -29385873 1024 1024 -29389139 DOWN 11 -29389138 0 1024 -29389207 UP 11 -29389207 1024 1024 -29390700 DOWN 11 -29390700 0 1024 -29390716 UP 11 -29390716 1024 1024 -29390735 DOWN 11 -29390735 0 1024 -29390772 UP 11 -29390772 1024 1024 -29393374 BEEP1 -29393374 BEEP2 -~~~ -~~~ -~~~ -29393395 1024 33555456 -~~~ -29393545 1024 1024 -29398229 DOWN 11 -29398229 0 1024 -29398250 UP 11 -29398250 1024 1024 -~~~ -~~~ -~~~ -29398252 1024 0 -~~~ -29398253 1024 1 -~~~ -~~~ -29398255 1024 3 -~~~ -~~~ -29398256 1024 7 -~~~ -~~~ -29398258 1024 15 -~~~ -~~~ -29398260 1024 31 -~~~ -~~~ -29398262 1024 63 -~~~ -~~~ -29398264 1024 127 -~~~ -~~~ -29398266 1024 255 -29398267 homeCount = 126 -29398288 waitCount = 53 -29398288 ripCount = 52 -29398289 locktype1 = 1 -29398289 locktype2 = 8 -29398290 locktype3 = 13 -29398290 goalCount = 4 -29398291 goalTotal = 44 -29398291 otherCount = 59 -~~~ -29398292 CURRENTGOAL IS [8] -~~~ -29401721 DOWN 11 -29401721 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29401758 homeCount = 126 -29401758 waitCount = 53 -29401759 ripCount = 52 -29401760 locktype1 = 1 -29401760 locktype2 = 8 -29401761 locktype3 = 13 -29401761 goalCount = 4 -29401762 goalTotal = 44 -29401762 otherCount = 59 -~~~ -29401763 CURRENTGOAL IS [8] -~~~ -29401784 UP 11 -29401784 1024 255 -29401846 DOWN 11 -29401846 0 255 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29401878 homeCount = 126 -29401878 waitCount = 53 -29401879 ripCount = 52 -29401879 locktype1 = 1 -29401880 locktype2 = 8 -29401880 locktype3 = 13 -29401881 goalCount = 4 -29401881 goalTotal = 44 -29401882 otherCount = 59 -~~~ -29401883 CURRENTGOAL IS [8] -~~~ -29406312 UP 8 -29406312 128 255 -~~~ -~~~ -29406334 outer reward -~~~ -29406335 128 8388863 -~~~ -~~~ -29406562 DOWN 8 -29406562 0 8388863 -~~~ -~~~ -29406584 0 8388862 -~~~ -~~~ -29406586 0 8388860 -~~~ -~~~ -29406588 0 8388856 -~~~ -~~~ -29406590 0 8388848 -~~~ -~~~ -29406591 0 8388832 -~~~ -~~~ -29406593 0 8388800 -~~~ -~~~ -29406595 0 8388736 -~~~ -~~~ -29406597 0 8388608 -~~~ -~~~ -29406599 0 8389120 -29406600 homeCount = 126 -29406600 waitCount = 53 -29406601 ripCount = 52 -29406622 locktype1 = 1 -29406623 locktype2 = 8 -29406623 locktype3 = 13 -29406624 goalCount = 5 -29406624 goalTotal = 45 -29406625 otherCount = 59 -~~~ -29406625 128 8389120 -29406784 128 512 -29406967 DOWN 8 -29406967 0 512 -29406996 128 512 -29407085 DOWN 8 -29407085 0 512 -29407104 128 512 -29407202 DOWN 8 -29407202 0 512 -29407224 128 512 -29407338 DOWN 8 -29407338 0 512 -29407357 128 512 -29413909 DOWN 8 -29413909 0 512 -29413959 128 512 -29414006 DOWN 8 -29414006 0 512 -29418802 UP 10 -29418803 waslock = 0 -29418802 512 512 -~~~ -~~~ -~~~ -~~~ -~~~ -29418830 512 16777728 -~~~ -29418980 512 512 -29419012 DOWN 10 -29419012 0 512 -~~~ -~~~ -29419037 0 2560 -~~~ -~~~ -29419039 0 2048 -29419040 homeCount = 127 -29419040 waitCount = 53 -29419041 ripCount = 52 -29419041 locktype1 = 1 -29419042 locktype2 = 8 -29419042 locktype3 = 13 -29419043 goalCount = 5 -29419043 goalTotal = 45 -29419044 otherCount = 59 -~~~ -29419074 UP 10 -29419075 waslock = 0 -29419074 512 2048 -~~~ -29424344 DOWN 10 -29424344 0 2048 -~~~ -~~~ -~~~ -~~~ -29424367 homeCount = 127 -29424367 waitCount = 53 -29424368 ripCount = 52 -29424368 locktype1 = 1 -29424369 locktype2 = 8 -29424369 locktype3 = 13 -29424370 goalCount = 5 -29424370 goalTotal = 45 -29424371 otherCount = 59 -~~~ -29424380 UP 10 -29424381 waslock = 0 -29424380 512 2048 -~~~ -29424422 DOWN 10 -29424422 0 2048 -~~~ -~~~ -~~~ -~~~ -29424446 homeCount = 127 -29424446 waitCount = 53 -29424447 ripCount = 52 -29424447 locktype1 = 1 -29424448 locktype2 = 8 -29424448 locktype3 = 13 -29424449 goalCount = 5 -29424449 goalTotal = 45 -29424450 otherCount = 59 -~~~ -29430294 UP 10 -29430294 waslock = 0 -29430294 512 2048 -~~~ -29430680 DOWN 10 -29430680 0 2048 -~~~ -~~~ -~~~ -~~~ -29430708 homeCount = 127 -29430708 waitCount = 53 -29430709 ripCount = 52 -29430710 locktype1 = 1 -29430710 locktype2 = 8 -29430711 locktype3 = 13 -29430711 goalCount = 5 -29430712 goalTotal = 45 -29430712 otherCount = 59 -~~~ -29435478 UP 12 -29435478 2048 2048 -29435569 DOWN 12 -29435569 0 2048 -29435769 LOCKOUT 3 -~~~ -29435786 WHITENOISE -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29435792 0 0 -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -~~~ -29447190 UP 7 -29447190 64 0 -29447579 DOWN 7 -29447579 0 0 - - description: Statescript log r3 - task_epochs: 6, -] -2021-05-24 20:23:04,030 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Building -2021-05-24 20:23:07,787 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Creating -2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.originators.position_originator: INFO Position: Injecting into ProcessingModule -2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.nwb_file_builder: INFO CorruptedData: Checking -2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Building -2021-05-24 20:23:07,791 rec_to_nwb.processing.builder.originators.shanks_electrodes_originator: INFO Probes-ShanksElectrode: Creating -2021-05-24 20:23:07,792 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Building -2021-05-24 20:23:07,792 rec_to_nwb.processing.builder.originators.shanks_originator: INFO Probes-Shanks: Creating -2021-05-24 20:23:07,793 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Building -2021-05-24 20:23:07,793 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Creating probes -2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.probe_originator: INFO Probes: Injecting probes into NWB -2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Building -2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Creating DataAcqDevice -2021-05-24 20:23:07,794 rec_to_nwb.processing.builder.originators.data_acq_device_originator: INFO FlDataAcqDevice: Injecting DataAcqDevice into NWB -2021-05-24 20:23:07,795 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Building -2021-05-24 20:23:07,795 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Creating -2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.header_device_originator: INFO HeaderDevice: Injecting into NWB -2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Building -2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Creating -2021-05-24 20:23:07,796 rec_to_nwb.processing.builder.originators.camera_device_originator: INFO CameraDevice: Injecting into NWB -2021-05-24 20:23:07,797 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_01_s1.1. -2021-05-24 20:23:07,800 rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor: INFO Loaded cameraHWSync timestamps for 20191125_despereaux_02_r1.1. -2021-05-24 20:23:07,805 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Building -2021-05-24 20:23:07,806 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Creating -2021-05-24 20:23:07,815 rec_to_nwb.processing.builder.originators.electrode_group_originator: INFO ElectrodeGroups: Injecting into NWB -2021-05-24 20:23:07,817 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Building -2021-05-24 20:23:07,820 rec_to_nwb.processing.builder.originators.electrodes_originator: INFO Electrodes: Creating&Injecting into NWB -2021-05-24 20:23:07,850 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Building -2021-05-24 20:23:07,853 rec_to_nwb.processing.builder.originators.electrodes_extension_originator: INFO FlElectrodesExtensions: Injecting into NWB -2021-05-24 20:23:07,855 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Building -2021-05-24 20:23:07,856 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Creating -2021-05-24 20:24:18,001 rec_to_nwb.processing.builder.originators.epochs_originator: INFO Epochs: Injecting -2021-05-24 20:24:18,005 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Building -2021-05-24 20:24:40,527 rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator: INFO Sample Count Timestamp Corespondence: Injecting -2021-05-24 20:24:40,528 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Building -2021-05-24 20:24:40,528 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Creating -2021-05-24 20:24:40,529 rec_to_nwb.processing.builder.originators.task_originator: INFO Task: Injecting into ProcessingModule -2021-05-24 20:24:40,529 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Building -2021-05-24 20:24:41,468 rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator: INFO Camera Sample Frame Counts Builder: Injecting -2021-05-24 20:24:41,468 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare directories -2021-05-24 20:24:41,468 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Prepare files -2021-05-24 20:24:41,469 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Retrieve data -2021-05-24 20:24:41,473 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 20:24:56,820 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 20:25:43,731 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 20:25:58,949 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 20:26:19,096 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 20:26:35,027 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 20:27:21,161 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 20:27:36,679 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Building -2021-05-24 20:27:36,685 rec_to_nwb.processing.builder.originators.dio_originator: INFO DIO: Injecting into NWB -2021-05-24 20:27:37,384 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 20:27:44,344 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 20:27:59,956 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 20:28:05,912 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 20:28:12,878 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 20:28:19,841 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 20:28:34,982 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 20:29:18,915 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Building -2021-05-24 20:29:20,331 rec_to_nwb.processing.builder.originators.mda_originator: INFO MDA: Injecting -2021-05-24 20:29:20,332 rec_to_nwb.processing.builder.nwb_file_builder: INFO Writing down content to /stelmo/loren/despereaux20191125.nwb -2021-05-24 20:59:26,303 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 20:59:26,308 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 20:59:26,310 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 20:59:26,347 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 20:59:26,587 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 20:59:26,590 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 20:59:50,508 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 20:59:55,909 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_01_s1.time/20191125_despereaux_01_s1.continuoustime.dat -2021-05-24 20:59:58,203 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_02_r1.time/20191125_despereaux_02_r1.continuoustime.dat -2021-05-24 21:00:04,321 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_03_s2.time/20191125_despereaux_03_s2.continuoustime.dat -2021-05-24 21:00:06,423 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_04_r2.time/20191125_despereaux_04_r2.continuoustime.dat -2021-05-24 21:00:09,090 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_05_s3.time/20191125_despereaux_05_s3.continuoustime.dat -2021-05-24 21:00:11,414 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_06_r3.time/20191125_despereaux_06_r3.continuoustime.dat -2021-05-24 21:00:33,357 rec_to_nwb.processing.time.continuous_time_extractor: INFO Reading continuous time array from: /stelmo/loren/despereaux/preprocessing/20191125/20191125_despereaux_07_s4.time/20191125_despereaux_07_s4.continuoustime.dat -2021-05-24 21:12:46,070 rec_to_nwb.processing.builder.nwb_file_builder: INFO /stelmo/loren/despereaux20191125.nwb file has been created. From be14f0aed7056e35aa79622dfd46ec98ad3e8216 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:37:17 -0700 Subject: [PATCH 063/205] Delete settings.json --- .vscode/settings.json | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index d8a493bac..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "python.pythonPath": "/home/loren/anaconda3/envs/rec_to_nwb/bin/python", - "python.linting.pylintEnabled": true -} \ No newline at end of file From d986d89193a5b7453eea31a296b8383342128b3f Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:39:06 -0700 Subject: [PATCH 064/205] Fix ignore vscode --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 29c66ea62..b3715642f 100644 --- a/.gitignore +++ b/.gitignore @@ -125,4 +125,4 @@ dmypy.json *.mat *.lock *.dirlock -*.vscode +.vscode From 95485d07679dc08ddc718a5698ea29a721ac57ad Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:44:40 -0700 Subject: [PATCH 065/205] Add franklab rec_to_binaries --- rec_to_nwb/environment.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index 0919c3830..02712db06 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -3,8 +3,10 @@ channels: - conda-forge - defaults - novelakrk + - franklab dependencies: - python>=3.6,<3.8 + - rec_to_binaries - pip - hdmf - pynwb @@ -51,7 +53,6 @@ dependencies: - pip: - mountainlab_pytools - xmldiff - - rec-to-binaries - hdmf>2.1.0 - pynwb From d5fd423368996e475e36a8eb0b9ce18f4da6c6fe Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 10:45:58 -0700 Subject: [PATCH 066/205] Delete .gitignore --- rec_to_nwb/.gitignore | 114 ------------------------------------------ 1 file changed, 114 deletions(-) delete mode 100644 rec_to_nwb/.gitignore diff --git a/rec_to_nwb/.gitignore b/rec_to_nwb/.gitignore deleted file mode 100644 index db6f32eca..000000000 --- a/rec_to_nwb/.gitignore +++ /dev/null @@ -1,114 +0,0 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ - -# idea pycharm -../.idea/ - -#testexample -*.nwb - - -#Ignore DS_Store -*.DS_Store From 1000580e418d0b5957ffb6d45746cfe788eb82e8 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 14:59:18 -0700 Subject: [PATCH 067/205] Add RawToNWBBuilder and MetadataManager to top level for easy importing --- rec_to_nwb/processing/builder/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rec_to_nwb/processing/builder/__init__.py b/rec_to_nwb/processing/builder/__init__.py index e69de29bb..ef1336565 100644 --- a/rec_to_nwb/processing/builder/__init__.py +++ b/rec_to_nwb/processing/builder/__init__.py @@ -0,0 +1,2 @@ +from rec_to_nwb.processing.builder.raw_to_nwb_builder import RawToNWBBuilder +from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager From a6c3f62d3dc17d837d99a35e15495210d4b3eb8e Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 15:09:24 -0700 Subject: [PATCH 068/205] Add repr to RawToNWBBuilder --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index a9d5ca879..9c89f2b57 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -127,6 +127,17 @@ def __init__( self.is_old_dataset = self.__is_old_dataset() + def __repr__(self): + return ("RawToNWBBuilder(\n" + f" animal_name={self.animal_name},\n" + f" data_path={self.data_path},\n" + f" dates={self.dates},\n" + f" overwrite={self.overwrite},\n" + f" output_path={self.output_path},\n" + f" video_path={self.video_path},\n" + f" trodes_rec_export_args={self.trodes_rec_export_args},\n" + ")") + def __is_rec_config_valid(self): """ Check if XML is valid with XSD file """ From a2e82f4972aa7f1db27456396a8db23afa44f180 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 15:10:15 -0700 Subject: [PATCH 069/205] Minor formatting --- .../processing/builder/raw_to_nwb_builder.py | 52 +++++++++++-------- 1 file changed, 29 insertions(+), 23 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 9c89f2b57..2ca5e6309 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -2,20 +2,23 @@ import os import shutil from datetime import datetime -import pytz +import pytz from rec_to_binaries import extract_trodes_rec_file - -from rec_to_nwb.processing.header.reconfig_header_checker import ReconfigHeaderChecker -from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager from rec_to_nwb.processing.builder.nwb_file_builder import NWBFileBuilder +from rec_to_nwb.processing.header.reconfig_header_checker import \ + ReconfigHeaderChecker +from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.validation.not_empty_validator import NotEmptyValidator -from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator +from rec_to_nwb.processing.validation.not_empty_validator import \ + NotEmptyValidator +from rec_to_nwb.processing.validation.validation_registrator import \ + ValidationRegistrator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) _DEFAULT_LFP_EXPORT_ARGS = ('-highpass', '0', '-lowpass', '400', @@ -32,7 +35,8 @@ _DEFAULT_TRODES_REC_EXPORT_ARGS = () # temporary default value, for old dataset only -_DEFAULT_SESSION_START_TIME = datetime.fromtimestamp(0, pytz.utc) # dummy value for now +_DEFAULT_SESSION_START_TIME = datetime.fromtimestamp( + 0, pytz.utc) # dummy value for now class RawToNWBBuilder: @@ -156,9 +160,9 @@ def __get_header_path(self): def __is_old_dataset(self): # check raw directory for the single (first) date - all_files = os.listdir(self.data_path + "/" - + self.animal_name + "/raw/" - + self.dates[0] + "/") + all_files = os.listdir(self.data_path + "/" + + self.animal_name + "/raw/" + + self.dates[0] + "/") if any([('videoTimeStamps.cameraHWSync' in file) for file in all_files]): # has cameraHWSync files; new dataset return False @@ -166,7 +170,8 @@ def __is_old_dataset(self): # has cameraHWFrameCount files instead; old dataset logger.info('Seems to be an old dataset (no PTP)') return True - raise FileNotFoundError('need either cameraHWSync or cameraHWFrameCount files.') + raise FileNotFoundError( + 'need either cameraHWSync or cameraHWFrameCount files.') def build_nwb(self, run_preprocessing=True, process_mda_valid_time=True, process_mda_invalid_time=True, @@ -188,12 +193,12 @@ def build_nwb(self, run_preprocessing=True, self.__preprocess_data() self.__build_nwb_file(process_mda_valid_time=process_mda_valid_time, - process_mda_invalid_time=process_mda_invalid_time, - process_pos_valid_time=process_pos_valid_time, - process_pos_invalid_time=process_pos_invalid_time) + process_mda_invalid_time=process_mda_invalid_time, + process_pos_valid_time=process_pos_valid_time, + process_pos_invalid_time=process_pos_invalid_time) def __build_nwb_file(self, process_mda_valid_time=False, process_mda_invalid_time=False, - process_pos_valid_time=False, process_pos_invalid_time=False): + process_pos_valid_time=False, process_pos_invalid_time=False): logger.info('Building NWB files') os.makedirs(self.output_path, exist_ok=True) os.makedirs(self.video_path, exist_ok=True) @@ -216,7 +221,7 @@ def __build_nwb_file(self, process_mda_valid_time=False, process_mda_invalid_tim def get_nwb_builder(self, date): if self.is_old_dataset: old_dataset_kwargs = dict(is_old_dataset=True, - session_start_time=_DEFAULT_SESSION_START_TIME) + session_start_time=_DEFAULT_SESSION_START_TIME) else: old_dataset_kwargs = dict() @@ -232,7 +237,7 @@ def get_nwb_builder(self, date): preprocessing_path=self.preprocessing_path, video_path=self.video_path, reconfig_header=self.__get_header_path(), - #reconfig_header=self.__is_rec_config_valid() + # reconfig_header=self.__is_rec_config_valid() **old_dataset_kwargs ) @@ -257,7 +262,8 @@ def __preprocess_data(self): + 'time_export_args = ' + str(self.time_export_args) + '\n' + 'spikes_export_args = ' + str(self.spikes_export_args) + '\n' + 'dio_export_args = ' + str(self.dio_export_args) + '\n' - + 'trodes_rec_export_args = ' + str(self.trodes_rec_export_args) + '\n' + + 'trodes_rec_export_args = ' + + str(self.trodes_rec_export_args) + '\n' ) extract_trodes_rec_file( @@ -280,11 +286,11 @@ def __preprocess_data(self): spikes_export_args=self.spikes_export_args, time_export_args=self.time_export_args, ) - #self.__is_rec_config_valid() + # self.__is_rec_config_valid() @staticmethod def append_to_nwb(nwb_builder, process_mda_valid_time, process_mda_invalid_time, - process_pos_valid_time, process_pos_invalid_time): + process_pos_valid_time, process_pos_invalid_time): """Append to NWBFile that was build using NWBFileBuilder passed in parameter. Args: @@ -302,10 +308,10 @@ def append_to_nwb(nwb_builder, process_mda_valid_time, process_mda_invalid_time, process_pos_invalid_time=process_pos_invalid_time ) - def cleanup(self): """Remove all temporary files structure from preprocessing folder""" - preprocessing = self.preprocessing_path + '/' + self.animal_name + '/preprocessing' + preprocessing = self.preprocessing_path + \ + '/' + self.animal_name + '/preprocessing' if os.path.exists(preprocessing): shutil.rmtree(preprocessing) From ae94089a2dfd577ef0bd0095fa1cbd48179e1856 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 15:37:07 -0700 Subject: [PATCH 070/205] Switch order of priority of channels --- rec_to_nwb/environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/environment.yml b/rec_to_nwb/environment.yml index 02712db06..3957a0118 100644 --- a/rec_to_nwb/environment.yml +++ b/rec_to_nwb/environment.yml @@ -2,8 +2,8 @@ name: rec_to_nwb channels: - conda-forge - defaults - - novelakrk - franklab + - novelakrk dependencies: - python>=3.6,<3.8 - rec_to_binaries From e17cef8dd7c27d3e61ae710071391076cad63bc6 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 15:40:40 -0700 Subject: [PATCH 071/205] Move environment.yml to top folder --- rec_to_nwb/environment.yml => environment.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename rec_to_nwb/environment.yml => environment.yml (100%) diff --git a/rec_to_nwb/environment.yml b/environment.yml similarity index 100% rename from rec_to_nwb/environment.yml rename to environment.yml From cdf8ac911a51d2397c1d00a94633c6c5ed0622e8 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 16:36:18 -0700 Subject: [PATCH 072/205] Ignore .dat files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b3715642f..b515934e1 100644 --- a/.gitignore +++ b/.gitignore @@ -126,3 +126,4 @@ dmypy.json *.lock *.dirlock .vscode +*.dat From 596aa1dd7d22fa2c598318c67f9d8a9905c3f3ab Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 16:37:05 -0700 Subject: [PATCH 073/205] Allow for preprocessing output to be in a different place --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 2ca5e6309..1e4d58fd2 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -6,8 +6,6 @@ import pytz from rec_to_binaries import extract_trodes_rec_file from rec_to_nwb.processing.builder.nwb_file_builder import NWBFileBuilder -from rec_to_nwb.processing.header.reconfig_header_checker import \ - ReconfigHeaderChecker from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager from rec_to_nwb.processing.tools.beartype.beartype import beartype from rec_to_nwb.processing.validation.not_empty_validator import \ @@ -80,6 +78,7 @@ def __init__( output_path: str = '', video_path: str = '', preprocessing_path: str = '', + preprocessing_out: str = '', extract_analog: bool = True, extract_spikes: bool = False, extract_lfps: bool = False, @@ -124,6 +123,10 @@ def __init__( self.preprocessing_path = data_path else: self.preprocessing_path = preprocessing_path + if not preprocessing_out: + self.preprocessing_out = self.preprocessing_path + else: + self.preprocessing_out = preprocessing_out self.probes = nwb_metadata.probes self.nwb_metadata = nwb_metadata self.parallel_instances = parallel_instances @@ -139,6 +142,8 @@ def __repr__(self): f" overwrite={self.overwrite},\n" f" output_path={self.output_path},\n" f" video_path={self.video_path},\n" + f" preprocessing_path={self.preprocessing_path},\n" + f" preprocessing_out={self.preprocessing_out},\n" f" trodes_rec_export_args={self.trodes_rec_export_args},\n" ")") @@ -269,7 +274,7 @@ def __preprocess_data(self): extract_trodes_rec_file( self.data_path, self.animal_name, - out_dir=self.preprocessing_path, + out_dir=self.preprocessing_out, dates=self.dates, parallel_instances=self.parallel_instances, extract_analog=self.extract_analog, From 6f8895a901d4b81f27995e2d4bd8f13fc93573ec Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 20 Aug 2021 16:51:31 -0700 Subject: [PATCH 074/205] Minor formatting --- .../position/fl_position_builder.py | 3 +- .../position/fl_position_extractor.py | 17 ++++++--- .../position/fl_position_manager.py | 37 +++++++++++-------- .../components/position/pos_data_manager.py | 4 +- .../position/pos_timestamp_manager.py | 17 +++++---- .../components/position/position_creator.py | 7 ++-- 6 files changed, 50 insertions(+), 35 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py b/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py index 9bbd2cf44..1ac1691e0 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.position.fl_position import FlPosition +from rec_to_nwb.processing.nwb.components.position.fl_position import \ + FlPosition class FlPositionBuilder: diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py index 021a76278..96f0a011f 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py @@ -1,8 +1,13 @@ -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import MultiThreadDataIterator -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_timestamp_iterator import MultiThreadTimestampIterator -from rec_to_nwb.processing.nwb.components.position.pos_data_manager import PosDataManager -from rec_to_nwb.processing.nwb.components.position.pos_timestamp_manager import PosTimestampManager +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException +from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import \ + MultiThreadDataIterator +from rec_to_nwb.processing.nwb.components.iterator.multi_thread_timestamp_iterator import \ + MultiThreadTimestampIterator +from rec_to_nwb.processing.nwb.components.position.pos_data_manager import \ + PosDataManager +from rec_to_nwb.processing.nwb.components.position.pos_timestamp_manager import \ + PosTimestampManager from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -56,7 +61,7 @@ def get_timestamps(self): PosTimestampManager( directories=[single_pos], continuous_time_directories=[continuous_time], - convert_timestamps = self.convert_timestamps + convert_timestamps=self.convert_timestamps ) for single_pos, continuous_time in zip(self.all_pos, self.continuous_time) ] diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py index 414406603..6f4c841e3 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py @@ -1,38 +1,44 @@ import re -from rec_to_nwb.processing.exceptions.invalid_metadata_exception import InvalidMetadataException -from rec_to_nwb.processing.nwb.components.position.fl_position_builder import FlPositionBuilder -from rec_to_nwb.processing.nwb.components.position.fl_position_extractor import FlPositionExtractor +from rec_to_nwb.processing.exceptions.invalid_metadata_exception import \ + InvalidMetadataException +from rec_to_nwb.processing.nwb.components.position.fl_position_builder import \ + FlPositionBuilder +from rec_to_nwb.processing.nwb.components.position.fl_position_extractor import \ + FlPositionExtractor from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_equal_length +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_equal_length class FlPositionManager: @beartype def __init__(self, datasets: list, metadata: dict, dataset_names: list, - process_timestamps: bool, - convert_timestamps: bool = True): + process_timestamps: bool, + convert_timestamps: bool = True): self.datasets = datasets self.metadata = metadata self.dataset_names = dataset_names self.process_timestamps = process_timestamps self.fl_position_extractor = FlPositionExtractor(datasets, - convert_timestamps=convert_timestamps) + convert_timestamps=convert_timestamps) self.fl_position_builder = FlPositionBuilder() @beartype def get_fl_positions(self) -> list: cameras_ids = self.__get_cameras_ids(self.dataset_names, self.metadata) - meters_per_pixels = self.__get_meters_per_pixels(cameras_ids, self.metadata) + meters_per_pixels = self.__get_meters_per_pixels( + cameras_ids, self.metadata) position_datas = self.fl_position_extractor.get_positions() columns_labels = self.fl_position_extractor.get_columns_labels() if self.process_timestamps: timestamps = self.fl_position_extractor.get_timestamps() - validate_parameters_equal_length(__name__, position_datas, columns_labels, timestamps) + validate_parameters_equal_length( + __name__, position_datas, columns_labels, timestamps) return [ self.fl_position_builder.build( @@ -42,10 +48,12 @@ def get_fl_positions(self) -> list: conversion=float(meters_per_pixel) ) for position_data, column_labels, timestamp, meters_per_pixel in - zip(position_datas, columns_labels, timestamps, meters_per_pixels) + zip(position_datas, columns_labels, + timestamps, meters_per_pixels) ] else: - validate_parameters_equal_length(__name__, position_datas, columns_labels) + validate_parameters_equal_length( + __name__, position_datas, columns_labels) return [ self.fl_position_builder.build( @@ -58,10 +66,6 @@ def get_fl_positions(self) -> list: zip(position_datas, columns_labels, meters_per_pixels) ] - - - - @staticmethod def __get_cameras_ids(dataset_names, metadata): camera_ids = [] @@ -78,7 +82,8 @@ def __get_cameras_ids(dataset_names, metadata): )[0] ) except: - raise InvalidMetadataException('Invalid camera metadata for datasets') + raise InvalidMetadataException( + 'Invalid camera metadata for datasets') return camera_ids @staticmethod diff --git a/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py index 9e30bbfaf..737979a40 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py @@ -1,6 +1,5 @@ import pandas as pd from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - from rec_to_nwb.processing.nwb.common.data_manager import DataManager @@ -11,7 +10,8 @@ def __init__(self, directories): # override def read_data(self, dataset_id, file_id): """extract data from POS files and build FlPos""" - pos_online = readTrodesExtractedDataFile(self.directories[dataset_id][file_id]) + pos_online = readTrodesExtractedDataFile( + self.directories[dataset_id][file_id]) position = pd.DataFrame(pos_online['data']) labels = self.get_column_labels() filtered_position = [position[label] for label in labels] diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 17b979588..302b2a233 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -3,27 +3,30 @@ import pandas as pd from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - -from rec_to_nwb.processing.nwb.common.timestamps_manager import TimestampManager +from rec_to_nwb.processing.nwb.common.timestamps_manager import \ + TimestampManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) class PosTimestampManager(TimestampManager): def __init__(self, directories, continuous_time_directories, - convert_timestamps=True): - TimestampManager.__init__(self, directories, continuous_time_directories) + convert_timestamps=True): + TimestampManager.__init__( + self, directories, continuous_time_directories) self.convert_timestamps = convert_timestamps # override def _get_timestamps(self, dataset_id): - pos_online = readTrodesExtractedDataFile(self.directories[dataset_id][0]) + pos_online = readTrodesExtractedDataFile( + self.directories[dataset_id][0]) position = pd.DataFrame(pos_online['data']) return position.time.to_numpy(dtype='int64') def retrieve_real_timestamps(self, dataset_id): return TimestampManager.retrieve_real_timestamps(self, dataset_id, - convert_timestamps=self.convert_timestamps) + convert_timestamps=self.convert_timestamps) diff --git a/rec_to_nwb/processing/nwb/components/position/position_creator.py b/rec_to_nwb/processing/nwb/components/position/position_creator.py index c0181b855..303a5e4bd 100644 --- a/rec_to_nwb/processing/nwb/components/position/position_creator.py +++ b/rec_to_nwb/processing/nwb/components/position/position_creator.py @@ -1,8 +1,9 @@ from pynwb.behavior import Position - -from rec_to_nwb.processing.nwb.components.position.fl_position import FlPosition +from rec_to_nwb.processing.nwb.components.position.fl_position import \ + FlPosition from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_not_none +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_not_none class PositionCreator: From 6728e7a7c3319e4f5aba4dadb182dc5d060bb7d3 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 13:34:34 -0700 Subject: [PATCH 075/205] Ignore xml, video and mda files --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index b515934e1..d76b50dc2 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,6 @@ dmypy.json *.dirlock .vscode *.dat +*.xml +*.h264 +*.mda From d5705ee90e5b67739a9c46742a79dd6bba2b0000 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 13:36:27 -0700 Subject: [PATCH 076/205] Write headers to preprocessing out if it exists --- rec_to_nwb/processing/builder/nwb_file_builder.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 78bde68fc..766b2993d 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -139,6 +139,10 @@ def __init__( self.preprocessing_path = data_path else: self.preprocessing_path = preprocessing_path + if not preprocessing_out: + self.preprocessing_out = self.preprocessing_path + else: + self.preprocessing_out = preprocessing_out self.output_file = output_file self.video_path = video_path self.is_old_dataset = is_old_dataset @@ -159,8 +163,8 @@ def __init__( if not preprocessing_path: header_path = None # default else: - header_path = (self.preprocessing_path - + '/' + self.animal_name + '/headers/' + self.date) + header_path = (self.preprocessing_out + + '/' + self.animal_name + '/headers/' + self.date) os.makedirs(header_path, exist_ok=True) header_file = HeaderProcessor.process_headers(rec_files_list, copy_dir=header_path) if reconfig_header: From 7af723d75cbfad7bee237f4dd972ee8f9237c673 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 13:38:09 -0700 Subject: [PATCH 077/205] Fix missing references to preprocessing out --- rec_to_nwb/processing/builder/nwb_file_builder.py | 1 + rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 1 + 2 files changed, 2 insertions(+) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 766b2993d..c87cbcad9 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -94,6 +94,7 @@ def __init__( process_analog: bool = True, process_pos_timestamps: bool = True, preprocessing_path: str = '', + preprocessing_out: str = '', video_path: str = '', output_file: str = 'output.nwb', reconfig_header: str = '', diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 1e4d58fd2..b43fbec21 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -240,6 +240,7 @@ def get_nwb_builder(self, date): process_dio=self.extract_dio, process_analog=self.extract_analog, preprocessing_path=self.preprocessing_path, + preprocessing_out=self.preprocessing_out, video_path=self.video_path, reconfig_header=self.__get_header_path(), # reconfig_header=self.__is_rec_config_valid() From 1c736f29faf46de55b0fd3ffd6b4d71b67815bfa Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 13:55:31 -0700 Subject: [PATCH 078/205] Ignore nwb files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d76b50dc2..286461ed3 100644 --- a/.gitignore +++ b/.gitignore @@ -130,3 +130,4 @@ dmypy.json *.xml *.h264 *.mda +*.nwb From 6da06cbc81e6c4b0c2da1b0e7bd10dbae786009e Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 13:56:13 -0700 Subject: [PATCH 079/205] Add units to the Camera Sample Frame Counts --- .../camera_sample_frame_counts_builder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py index f01a61044..a3a740ccf 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py @@ -13,5 +13,6 @@ def __build_timeseries(cls, data): return TimeSeries(name="camera_frame_counts", description="hardware frame count", data=data[:, 0], - timestamps=data[:, 1] + timestamps=data[:, 1], + unit='samples' ) From 1582fe3d13041156296c82784952efd16aa53735 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 15:01:17 -0700 Subject: [PATCH 080/205] Minor formatting --- .../builder/originators/analog_originator.py | 30 +++++++------ .../associated_files_originator.py | 24 +++++++---- .../originators/camera_device_originator.py | 12 ++++-- .../camera_sample_frame_counts_originator.py | 5 ++- .../originators/data_acq_device_originator.py | 6 ++- .../builder/originators/dio_originator.py | 9 ++-- .../originators/electrode_group_originator.py | 20 ++++++--- .../electrodes_extension_originator.py | 6 ++- .../originators/electrodes_originator.py | 17 +++++--- .../builder/originators/epochs_originator.py | 11 +++-- .../originators/header_device_originator.py | 18 +++++--- .../mda_invalid_time_originator.py | 20 ++++++--- .../builder/originators/mda_originator.py | 16 ++++--- .../originators/mda_valid_time_originator.py | 17 +++++--- .../originators/pos_invalid_originator.py | 14 +++--- .../originators/pos_valid_time_originator.py | 14 +++--- .../originators/position_originator.py | 22 ++++++---- .../builder/originators/probe_originator.py | 12 ++++-- .../processing_module_originator.py | 33 +++++++++----- ...ount_timestamp_corespondence_originator.py | 7 +-- .../shanks_electrodes_originator.py | 6 ++- .../builder/originators/shanks_originator.py | 22 ++++++---- .../builder/originators/task_originator.py | 3 +- .../processing/nwb/common/data_manager.py | 7 +-- .../nwb/common/session_time_extractor.py | 6 ++- .../nwb/common/timestamps_manager.py | 7 +-- .../nwb/components/analog/analog_files.py | 3 +- .../nwb/components/analog/analog_injector.py | 3 +- .../components/analog/fl_analog_extractor.py | 17 +++++--- .../components/analog/fl_analog_manager.py | 24 ++++++----- .../associated_files_creator.py | 11 +++-- .../fl_associated_files_builder.py | 3 +- .../fl_associated_files_manager.py | 6 ++- .../device/acq/fl_data_acq_device.py | 2 +- .../device/acq/fl_data_acq_device_builder.py | 5 ++- .../device/acq/fl_data_acq_device_manager.py | 3 +- .../device/camera/fl_camera_device_builder.py | 3 +- .../device/camera/fl_camera_device_manager.py | 6 ++- .../nwb/components/device/device_factory.py | 43 ++++++++++++------- .../nwb/components/device/device_injector.py | 3 +- .../device/header/fl_header_device.py | 1 - .../device/header/fl_header_device_builder.py | 3 +- .../device/header/fl_header_device_manager.py | 3 +- .../nwb/components/dio/dio_extractor.py | 30 ++++++++----- .../nwb/components/dio/dio_files.py | 9 ++-- .../nwb/components/dio/dio_injector.py | 3 +- .../nwb/components/dio/dio_manager.py | 7 +-- .../electrode_group_factory.py | 10 +++-- .../electrode_group_injector.py | 1 - .../electrode_group/fl_electrode_group.py | 2 +- .../fl_electrode_group_builder.py | 4 +- .../fl_electrode_group_manager.py | 7 +-- .../fl_nwb_electrode_group_builder.py | 4 +- .../fl_nwb_electrode_group_manager.py | 7 +-- .../electrodes/electrode_creator.py | 11 ++--- .../electrodes/fl_electrode_builder.py | 6 +-- .../electrodes/fl_electrode_manager.py | 18 +++++--- .../components/epochs/epochs_tag_extractor.py | 2 +- .../nwb/components/epochs/fl_epochs.py | 6 ++- .../components/epochs/fl_epochs_extractor.py | 9 ++-- .../components/epochs/fl_epochs_manager.py | 12 ++++-- .../nwb/components/iterator/data_iterator.py | 19 ++++---- .../iterator/multi_thread_data_iterator.py | 20 +++++---- .../multi_thread_timestamp_iterator.py | 12 +++--- .../iterator/single_thread_data_iterator.py | 4 +- .../single_thread_timestamp_iterator.py | 6 +-- .../mda/electrical_series_creator.py | 2 +- .../nwb/components/mda/fl_mda_extractor.py | 39 +++++++++++------ .../nwb/components/mda/fl_mda_manager.py | 9 ++-- .../nwb/components/mda/mda_data_manager.py | 15 +++---- .../components/mda/mda_timestamp_manager.py | 10 +++-- .../processing_module_creator.py | 6 ++- ...count_timestamp_corespondence_extractor.py | 8 ++-- ..._count_timestamp_corespondence_injector.py | 1 - ...e_count_timestamp_corespondence_manager.py | 10 +++-- .../nwb/components/task/task_creator.py | 1 - .../nwb/components/task/task_manager.py | 4 +- .../camera_sample_frame_counts_extractor.py | 11 ++--- .../camera_sample_frame_counts_injector.py | 2 +- .../camera_sample_frame_counts_manager.py | 2 +- .../components/video_files/fl_video_file.py | 1 - .../video_files/fl_video_files_builder.py | 3 +- .../video_files/fl_video_files_manager.py | 20 +++++---- .../video_files/video_files_copy_maker.py | 4 +- .../video_files/video_files_injector.py | 1 - .../time/continuous_time_extractor.py | 9 ++-- .../processing/time/timestamp_converter.py | 14 +++--- rec_to_nwb/processing/tools/data_scanner.py | 27 ++++++++---- rec_to_nwb/processing/tools/dataset.py | 2 +- .../processing/tools/file_downloader.py | 7 +-- rec_to_nwb/processing/tools/file_sorter.py | 2 +- .../processing/tools/filter_probe_by_type.py | 6 ++- .../processing/tools/validate_parameters.py | 9 ++-- .../validation/associated_files_validation.py | 9 ++-- .../associated_files_validation_summary.py | 4 +- .../validation/metadata_section_validator.py | 18 +++++--- .../validation/metadata_validation_summary.py | 3 +- .../validation/metadata_validator.py | 10 +++-- .../not_empty_validation_summary.py | 4 +- .../validation/not_empty_validator.py | 6 ++- .../validation/ntrode_validation_summary.py | 3 +- .../processing/validation/ntrode_validator.py | 36 ++++++++++------ .../validation/path_validation_summary.py | 3 +- .../processing/validation/path_validator.py | 4 +- .../preprocessing_validation_summary.py | 3 +- .../validation/preprocessing_validator.py | 9 ++-- .../validation/task_validation_summary.py | 4 +- .../processing/validation/task_validator.py | 9 ++-- .../validation/validation_registrator.py | 6 ++- .../validation/xml_files_validation.py | 12 ++++-- .../xml_files_validation_summary.py | 3 +- 111 files changed, 667 insertions(+), 416 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/analog_originator.py b/rec_to_nwb/processing/builder/originators/analog_originator.py index af62183f8..5c22b03c1 100644 --- a/rec_to_nwb/processing/builder/originators/analog_originator.py +++ b/rec_to_nwb/processing/builder/originators/analog_originator.py @@ -1,35 +1,41 @@ -from rec_to_nwb.processing.nwb.components.analog.analog_creator import AnalogCreator -from rec_to_nwb.processing.nwb.components.analog.analog_files import AnalogFiles -from rec_to_nwb.processing.nwb.components.analog.analog_injector import AnalogInjector -from rec_to_nwb.processing.nwb.components.analog.fl_analog_manager import FlAnalogManager +from rec_to_nwb.processing.nwb.components.analog.analog_creator import \ + AnalogCreator +from rec_to_nwb.processing.nwb.components.analog.analog_files import \ + AnalogFiles +from rec_to_nwb.processing.nwb.components.analog.analog_injector import \ + AnalogInjector +from rec_to_nwb.processing.nwb.components.analog.fl_analog_manager import \ + FlAnalogManager class AnalogOriginator: def __init__(self, datasets, metadata, - convert_timestamps: bool = True, - return_timestamps: bool = True, - ): + convert_timestamps: bool = True, + return_timestamps: bool = True, + ): self.datasets = datasets self.metadata = metadata self.continuous_time_files = self.__get_continuous_time_files() - + # timestamp processing switches (optionally turn off for old dataset) self.convert_timestamps = convert_timestamps self.return_timestamps = return_timestamps def make(self, nwb_content): - analog_directories = [single_dataset.get_data_path_from_dataset('analog') for single_dataset in self.datasets] + analog_directories = [single_dataset.get_data_path_from_dataset( + 'analog') for single_dataset in self.datasets] analog_files = AnalogFiles(analog_directories) analog_manager = FlAnalogManager( analog_files=analog_files.get_files(), continuous_time_files=self.continuous_time_files, - convert_timestamps = self.convert_timestamps, - return_timestamps = self.return_timestamps, + convert_timestamps=self.convert_timestamps, + return_timestamps=self.return_timestamps, ) fl_analog = analog_manager.get_analog() analog_injector = AnalogInjector(nwb_content) - analog_injector.inject(AnalogCreator.create(fl_analog, self.metadata['units']['analog']), 'analog') + analog_injector.inject(AnalogCreator.create( + fl_analog, self.metadata['units']['analog']), 'analog') def __get_continuous_time_files(self): return [single_dataset.get_continuous_time() for single_dataset in self.datasets] diff --git a/rec_to_nwb/processing/builder/originators/associated_files_originator.py b/rec_to_nwb/processing/builder/originators/associated_files_originator.py index ea56e3299..9baac3d98 100644 --- a/rec_to_nwb/processing/builder/originators/associated_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/associated_files_originator.py @@ -1,14 +1,20 @@ import logging.config import os -from rec_to_nwb.processing.nwb.components.associated_files.associated_files_creator import AssociatedFilesCreator -from rec_to_nwb.processing.nwb.components.associated_files.associated_files_injector import AssociatedFilesInjector -from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_files_manager import FlAssociatedFilesManager -from rec_to_nwb.processing.validation.associated_files_validation import AssociatedFilesValidator -from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator +from rec_to_nwb.processing.nwb.components.associated_files.associated_files_creator import \ + AssociatedFilesCreator +from rec_to_nwb.processing.nwb.components.associated_files.associated_files_injector import \ + AssociatedFilesInjector +from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_files_manager import \ + FlAssociatedFilesManager +from rec_to_nwb.processing.validation.associated_files_validation import \ + AssociatedFilesValidator +from rec_to_nwb.processing.validation.validation_registrator import \ + ValidationRegistrator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -17,7 +23,8 @@ class AssociatedFilesOriginator: def __init__(self, metadata): if 'associated_files' in metadata: validation_registrator = ValidationRegistrator() - validation_registrator.register(AssociatedFilesValidator(metadata['associated_files'])) + validation_registrator.register( + AssociatedFilesValidator(metadata['associated_files'])) validation_registrator.validate() self.fl_associated_files_manager = FlAssociatedFilesManager( metadata['associated_files'] @@ -34,5 +41,6 @@ def make(self, nwb_content): for fl_associated_file in fl_associated_files ] logger.info('AssociatedFiles: Injecting') - self.associated_files_injector.inject(associated_files, 'associated_files', nwb_content) + self.associated_files_injector.inject( + associated_files, 'associated_files', nwb_content) logger.info("Files stored inside nwb: " + str(associated_files)) diff --git a/rec_to_nwb/processing/builder/originators/camera_device_originator.py b/rec_to_nwb/processing/builder/originators/camera_device_originator.py index 2e0260b09..bf9ee3d49 100644 --- a/rec_to_nwb/processing/builder/originators/camera_device_originator.py +++ b/rec_to_nwb/processing/builder/originators/camera_device_originator.py @@ -1,12 +1,16 @@ import logging.config import os -from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device_manager import FlCameraDeviceManager -from rec_to_nwb.processing.nwb.components.device.device_injector import DeviceInjector -from rec_to_nwb.processing.nwb.components.device.device_factory import DeviceFactory +from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device_manager import \ + FlCameraDeviceManager +from rec_to_nwb.processing.nwb.components.device.device_factory import \ + DeviceFactory +from rec_to_nwb.processing.nwb.components.device.device_injector import \ + DeviceInjector path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py b/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py index c0a93f3a8..67bc25740 100644 --- a/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py +++ b/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py @@ -1,5 +1,5 @@ -import os import logging.config +import os from rec_to_nwb.processing.nwb.components.video_files.camera_sample_frame_counts.camera_sample_frame_counts_injector import \ CameraSampleFrameCountsInjector @@ -7,7 +7,8 @@ CameraSampleFrameCountsManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py b/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py index 661f1ee38..bfe50efcd 100644 --- a/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py +++ b/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py @@ -1,10 +1,12 @@ import logging.config import os -from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device_manager import FlDataAcqDeviceManager +from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device_manager import \ + FlDataAcqDeviceManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/dio_originator.py b/rec_to_nwb/processing/builder/originators/dio_originator.py index 7f1db71ad..304caf7dd 100644 --- a/rec_to_nwb/processing/builder/originators/dio_originator.py +++ b/rec_to_nwb/processing/builder/originators/dio_originator.py @@ -7,7 +7,8 @@ from rec_to_nwb.processing.nwb.components.dio.dio_manager import DioManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -20,9 +21,11 @@ def __init__(self, metadata, datasets, convert_timestamps=True): def make(self, nwb_content): logger.info('DIO: Prepare directories') - dio_directories = [single_dataset.get_data_path_from_dataset('DIO') for single_dataset in self.datasets] + dio_directories = [single_dataset.get_data_path_from_dataset( + 'DIO') for single_dataset in self.datasets] logger.info('DIO: Prepare files') - dio_files = DioFiles(dio_directories, self.metadata['behavioral_events']) + dio_files = DioFiles( + dio_directories, self.metadata['behavioral_events']) logger.info('DIO: Retrieve data') dio_manager = DioManager( dio_files=dio_files.get_files(), diff --git a/rec_to_nwb/processing/builder/originators/electrode_group_originator.py b/rec_to_nwb/processing/builder/originators/electrode_group_originator.py index 5a4650f7c..92d195fa8 100644 --- a/rec_to_nwb/processing/builder/originators/electrode_group_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrode_group_originator.py @@ -1,20 +1,24 @@ -import os import logging.config +import os -from rec_to_nwb.processing.nwb.components.electrode_group.electrode_group_factory import ElectrodeGroupFactory -from rec_to_nwb.processing.nwb.components.electrode_group.electrode_group_injector import ElectrodeGroupInjector +from rec_to_nwb.processing.nwb.components.electrode_group.electrode_group_factory import \ + ElectrodeGroupFactory +from rec_to_nwb.processing.nwb.components.electrode_group.electrode_group_injector import \ + ElectrodeGroupInjector from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group_manager import \ FlNwbElectrodeGroupManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) class ElectrodeGroupOriginator: def __init__(self, metadata): - self.fl_nwb_electrode_group_manager = FlNwbElectrodeGroupManager(metadata['electrode_groups']) + self.fl_nwb_electrode_group_manager = FlNwbElectrodeGroupManager( + metadata['electrode_groups']) self.electrode_group_creator = ElectrodeGroupFactory() self.electrode_group_injector = ElectrodeGroupInjector() @@ -26,9 +30,11 @@ def make(self, nwb_content, probes, electrode_groups_valid_map): ) logger.info('ElectrodeGroups: Creating') nwb_electrode_groups = [ - self.electrode_group_creator.create_nwb_electrode_group(nwb_electrode_group) + self.electrode_group_creator.create_nwb_electrode_group( + nwb_electrode_group) for nwb_electrode_group in fl_nwb_electrode_groups ] logger.info('ElectrodeGroups: Injecting into NWB') - self.electrode_group_injector.inject_all_electrode_groups(nwb_content, nwb_electrode_groups) + self.electrode_group_injector.inject_all_electrode_groups( + nwb_content, nwb_electrode_groups) return nwb_electrode_groups diff --git a/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py b/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py index 06a7af71b..a3cecca85 100644 --- a/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py @@ -7,7 +7,8 @@ FlElectrodeExtensionManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -23,7 +24,8 @@ def __init__(self, probes, metadata, header): def make(self, nwb_content, electrodes_valid_map): logger.info('FlElectrodesExtensions: Building') - fl_electrode_extension = self.fl_electrode_extension_manager.get_fl_electrodes_extension(electrodes_valid_map) + fl_electrode_extension = self.fl_electrode_extension_manager.get_fl_electrodes_extension( + electrodes_valid_map) logger.info('FlElectrodesExtensions: Injecting into NWB') self.electrode_extension_injector.inject_extensions( nwb_content, diff --git a/rec_to_nwb/processing/builder/originators/electrodes_originator.py b/rec_to_nwb/processing/builder/originators/electrodes_originator.py index 10212b403..b052a105b 100644 --- a/rec_to_nwb/processing/builder/originators/electrodes_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrodes_originator.py @@ -1,18 +1,22 @@ -import os import logging.config +import os -from rec_to_nwb.processing.nwb.components.electrodes.electrode_creator import ElectrodesCreator -from rec_to_nwb.processing.nwb.components.electrodes.fl_electrode_manager import FlElectrodeManager +from rec_to_nwb.processing.nwb.components.electrodes.electrode_creator import \ + ElectrodesCreator +from rec_to_nwb.processing.nwb.components.electrodes.fl_electrode_manager import \ + FlElectrodeManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) class ElectrodesOriginator: def __init__(self, probes, metadata): - self.fl_electrode_manager = FlElectrodeManager(probes, metadata['electrode_groups']) + self.fl_electrode_manager = FlElectrodeManager( + probes, metadata['electrode_groups']) self.electrode_creator = ElectrodesCreator() def make(self, nwb_content, electrode_groups, electrodes_valid_map, electrode_groups_valid_map): @@ -23,4 +27,5 @@ def make(self, nwb_content, electrode_groups, electrodes_valid_map, electrode_gr electrode_groups_valid_map=electrode_groups_valid_map ) logger.info('Electrodes: Creating&Injecting into NWB') - [self.electrode_creator.create(nwb_content, fl_electrode) for fl_electrode in fl_electrodes] + [self.electrode_creator.create(nwb_content, fl_electrode) + for fl_electrode in fl_electrodes] diff --git a/rec_to_nwb/processing/builder/originators/epochs_originator.py b/rec_to_nwb/processing/builder/originators/epochs_originator.py index cf9037db3..f6252bc74 100644 --- a/rec_to_nwb/processing/builder/originators/epochs_originator.py +++ b/rec_to_nwb/processing/builder/originators/epochs_originator.py @@ -1,11 +1,14 @@ import logging.config import os -from rec_to_nwb.processing.nwb.components.epochs.epochs_injector import EpochsInjector -from rec_to_nwb.processing.nwb.components.epochs.fl_epochs_manager import FlEpochsManager +from rec_to_nwb.processing.nwb.components.epochs.epochs_injector import \ + EpochsInjector +from rec_to_nwb.processing.nwb.components.epochs.fl_epochs_manager import \ + FlEpochsManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -20,4 +23,4 @@ def make(self, nwb_content): logger.info('Epochs: Creating') epochs = fl_epochs_manager.get_epochs() logger.info('Epochs: Injecting') - EpochsInjector.inject(epochs, nwb_content) \ No newline at end of file + EpochsInjector.inject(epochs, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/header_device_originator.py b/rec_to_nwb/processing/builder/originators/header_device_originator.py index ab53ead2b..01eb8e8a2 100644 --- a/rec_to_nwb/processing/builder/originators/header_device_originator.py +++ b/rec_to_nwb/processing/builder/originators/header_device_originator.py @@ -2,19 +2,24 @@ import os from rec_to_nwb.processing.header.module.header import Header -from rec_to_nwb.processing.nwb.components.device.device_factory import DeviceFactory -from rec_to_nwb.processing.nwb.components.device.device_injector import DeviceInjector -from rec_to_nwb.processing.nwb.components.device.header.fl_header_device_manager import FlHeaderDeviceManager +from rec_to_nwb.processing.nwb.components.device.device_factory import \ + DeviceFactory +from rec_to_nwb.processing.nwb.components.device.device_injector import \ + DeviceInjector +from rec_to_nwb.processing.nwb.components.device.header.fl_header_device_manager import \ + FlHeaderDeviceManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) class HeaderDeviceOriginator: def __init__(self, header, metadata): - header_path = str(path) + '/../../../data/' + metadata['default_header_file_path'] + header_path = str(path) + '/../../../data/' + \ + metadata['default_header_file_path'] default_header = Header(header_path) self.fl_header_device_manager = FlHeaderDeviceManager( 'header_device', @@ -28,6 +33,7 @@ def make(self, nwb_content): logger.info('HeaderDevice: Building') fl_header_device = self.fl_header_device_manager.get_fl_header_device() logger.info('HeaderDevice: Creating') - header_device = self.device_factory.create_header_device(fl_header_device) + header_device = self.device_factory.create_header_device( + fl_header_device) logger.info('HeaderDevice: Injecting into NWB') self.device_injector.inject_all_devices(nwb_content, [header_device]) diff --git a/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py b/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py index 1b0ab33ab..d3c6d4eb9 100644 --- a/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py +++ b/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py @@ -1,11 +1,14 @@ -import os import logging.config +import os -from rec_to_nwb.processing.nwb.components.mda.time.invalid.fl_mda_invalid_time_manager import FlMdaInvalidTimeManager -from rec_to_nwb.processing.nwb.components.mda.time.invalid.mda_invalid_time_injector import MdaInvalidTimeInjector +from rec_to_nwb.processing.nwb.components.mda.time.invalid.fl_mda_invalid_time_manager import \ + FlMdaInvalidTimeManager +from rec_to_nwb.processing.nwb.components.mda.time.invalid.mda_invalid_time_injector import \ + MdaInvalidTimeInjector path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -13,13 +16,16 @@ class MdaInvalidTimeOriginator: def __init__(self, header, metadata): self.fl_mda_invalid_time_manager = FlMdaInvalidTimeManager( - sampling_rate=float(header.configuration.hardware_configuration.sampling_rate), + sampling_rate=float( + header.configuration.hardware_configuration.sampling_rate), metadata=metadata ) self.mda_invalid_time_injector = MdaInvalidTimeInjector() def make(self, nwb_content): logger.info('MDA invalid times: Building') - mda_invalid_times = self.fl_mda_invalid_time_manager.get_fl_mda_invalid_times(nwb_content) + mda_invalid_times = self.fl_mda_invalid_time_manager.get_fl_mda_invalid_times( + nwb_content) logger.info('MDA invalid times: Injecting') - self.mda_invalid_time_injector.inject_all(mda_invalid_times, nwb_content) + self.mda_invalid_time_injector.inject_all( + mda_invalid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/mda_originator.py b/rec_to_nwb/processing/builder/originators/mda_originator.py index 07d911767..fa6faf4db 100644 --- a/rec_to_nwb/processing/builder/originators/mda_originator.py +++ b/rec_to_nwb/processing/builder/originators/mda_originator.py @@ -1,12 +1,15 @@ -import os import logging.config +import os -from rec_to_nwb.processing.nwb.components.mda.electrical_series_creator import ElectricalSeriesCreator -from rec_to_nwb.processing.nwb.components.mda.fl_mda_manager import FlMdaManager +from rec_to_nwb.processing.nwb.components.mda.electrical_series_creator import \ + ElectricalSeriesCreator +from rec_to_nwb.processing.nwb.components.mda.fl_mda_manager import \ + FlMdaManager from rec_to_nwb.processing.nwb.components.mda.mda_injector import MdaInjector path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -20,7 +23,8 @@ def make(self, nwb_content): logger.info('MDA: Building') fl_mda_manager = FlMdaManager( nwb_content=nwb_content, - sampling_rate=float(self.header.configuration.hardware_configuration.sampling_rate), + sampling_rate=float( + self.header.configuration.hardware_configuration.sampling_rate), datasets=self.datasets, conversion=self.metadata['raw_data_to_volts'] ) @@ -29,4 +33,4 @@ def make(self, nwb_content): MdaInjector.inject_mda( nwb_content=nwb_content, electrical_series=ElectricalSeriesCreator.create_mda(fl_mda) - ) \ No newline at end of file + ) diff --git a/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py b/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py index 53a17c89a..43bcd9b99 100644 --- a/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py +++ b/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py @@ -1,11 +1,14 @@ -import os import logging.config +import os -from rec_to_nwb.processing.nwb.components.mda.time.valid.fl_mda_valid_time_manager import FlMdaValidTimeManager -from rec_to_nwb.processing.nwb.components.mda.time.valid.mda_valid_time_injector import MdaValidTimeInjector +from rec_to_nwb.processing.nwb.components.mda.time.valid.fl_mda_valid_time_manager import \ + FlMdaValidTimeManager +from rec_to_nwb.processing.nwb.components.mda.time.valid.mda_valid_time_injector import \ + MdaValidTimeInjector path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -13,13 +16,15 @@ class MdaValidTimeOriginator: def __init__(self, header, metadata): self.fl_mda_valid_time_manager = FlMdaValidTimeManager( - sampling_rate=float(header.configuration.hardware_configuration.sampling_rate), + sampling_rate=float( + header.configuration.hardware_configuration.sampling_rate), metadata=metadata ) self.mda_valid_time_injector = MdaValidTimeInjector() def make(self, nwb_content): logger.info('MDA valid times: Building') - mda_valid_times = self.fl_mda_valid_time_manager.get_fl_mda_valid_times(nwb_content) + mda_valid_times = self.fl_mda_valid_time_manager.get_fl_mda_valid_times( + nwb_content) logger.info('MDA valid times: Injecting') self.mda_valid_time_injector.inject_all(mda_valid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py b/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py index 720c93162..34140357e 100644 --- a/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py +++ b/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py @@ -1,12 +1,14 @@ -import os import logging.config +import os from rec_to_nwb.processing.nwb.components.position.time.invalid.fl_pos_invalid_time_manager import \ FlPosInvalidTimeManager -from rec_to_nwb.processing.nwb.components.position.time.invalid.pos_invalid_time_injector import PosInvalidTimeInjector +from rec_to_nwb.processing.nwb.components.position.time.invalid.pos_invalid_time_injector import \ + PosInvalidTimeInjector path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -18,6 +20,8 @@ def __init__(self, metadata): def make(self, nwb_content): logger.info('POS invalid times: Building') - pos_invalid_times = self.fl_pos_invalid_time_manager.get_fl_pos_invalid_times(nwb_content) + pos_invalid_times = self.fl_pos_invalid_time_manager.get_fl_pos_invalid_times( + nwb_content) logger.info('POS invalid times: Injecting') - self.pos_invalid_time_injector.inject_all(pos_invalid_times, nwb_content) + self.pos_invalid_time_injector.inject_all( + pos_invalid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py b/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py index c603a8014..3f7c6fda0 100644 --- a/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py +++ b/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py @@ -1,11 +1,14 @@ -import os import logging.config +import os -from rec_to_nwb.processing.nwb.components.position.time.valid.fl_pos_valid_time_manager import FlPosValidTimeManager -from rec_to_nwb.processing.nwb.components.position.time.valid.pos_valid_time_injector import PosValidTimeInjector +from rec_to_nwb.processing.nwb.components.position.time.valid.fl_pos_valid_time_manager import \ + FlPosValidTimeManager +from rec_to_nwb.processing.nwb.components.position.time.valid.pos_valid_time_injector import \ + PosValidTimeInjector path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -17,6 +20,7 @@ def __init__(self, metadata): def make(self, nwb_content): logger.info('POS valid times: Building') - pos_valid_times = self.fl_pos_valid_time_manager.get_fl_pos_valid_times(nwb_content) + pos_valid_times = self.fl_pos_valid_time_manager.get_fl_pos_valid_times( + nwb_content) logger.info('POS valid times: Injecting') self.pos_valid_time_injector.inject_all(pos_valid_times, nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index af6af0b4e..b89476f1f 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -2,14 +2,17 @@ import os from pynwb import NWBFile - -from rec_to_nwb.processing.nwb.components.position.fl_position_manager import FlPositionManager -from rec_to_nwb.processing.nwb.components.position.position_creator import PositionCreator -from rec_to_nwb.processing.nwb.components.processing_module.processing_module_creator import ProcessingModuleCreator +from rec_to_nwb.processing.nwb.components.position.fl_position_manager import \ + FlPositionManager +from rec_to_nwb.processing.nwb.components.position.position_creator import \ + PositionCreator +from rec_to_nwb.processing.nwb.components.processing_module.processing_module_creator import \ + ProcessingModuleCreator from rec_to_nwb.processing.tools.beartype.beartype import beartype path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -17,11 +20,12 @@ class PositionOriginator: @beartype def __init__(self, datasets: list, metadata: dict, dataset_names: list, - process_timestamps: bool, - convert_timestamps: bool = True): - self.pm_creator = ProcessingModuleCreator('behavior', 'Contains all behavior-related data') + process_timestamps: bool, + convert_timestamps: bool = True): + self.pm_creator = ProcessingModuleCreator( + 'behavior', 'Contains all behavior-related data') self.fl_position_manager = FlPositionManager(datasets, metadata, dataset_names, process_timestamps, - convert_timestamps=convert_timestamps) + convert_timestamps=convert_timestamps) self.position_creator = PositionCreator() @beartype diff --git a/rec_to_nwb/processing/builder/originators/probe_originator.py b/rec_to_nwb/processing/builder/originators/probe_originator.py index b40559ecd..e7d9ca663 100644 --- a/rec_to_nwb/processing/builder/originators/probe_originator.py +++ b/rec_to_nwb/processing/builder/originators/probe_originator.py @@ -1,10 +1,12 @@ import logging.config import os -from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import FlProbeManager +from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import \ + FlProbeManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -17,9 +19,11 @@ def __init__(self, device_factory, device_injector, probes_metadata): def make(self, nwb_content, shanks_dict, probes_valid_map, ): logger.info('Probes: Building') - fl_probes = self.fl_probe_manager.get_fl_probes(shanks_dict, probes_valid_map) + fl_probes = self.fl_probe_manager.get_fl_probes( + shanks_dict, probes_valid_map) logger.info('Probes: Creating probes') - probes = [self.device_factory.create_probe(fl_probe) for fl_probe in fl_probes] + probes = [self.device_factory.create_probe( + fl_probe) for fl_probe in fl_probes] logger.info('Probes: Injecting probes into NWB') self.device_injector.inject_all_devices(nwb_content, probes) return probes diff --git a/rec_to_nwb/processing/builder/originators/processing_module_originator.py b/rec_to_nwb/processing/builder/originators/processing_module_originator.py index 849f32842..77102e9d2 100644 --- a/rec_to_nwb/processing/builder/originators/processing_module_originator.py +++ b/rec_to_nwb/processing/builder/originators/processing_module_originator.py @@ -1,10 +1,12 @@ import logging.config import os -from rec_to_nwb.processing.nwb.components.processing_module.processing_module_creator import ProcessingModuleCreator +from rec_to_nwb.processing.nwb.components.processing_module.processing_module_creator import \ + ProcessingModuleCreator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -13,36 +15,45 @@ class ProcessingModuleOriginator: @staticmethod def make(nwb_content): logger.info('ProcessingModule: Creating behavior') - pm_creator = ProcessingModuleCreator('behavior', 'Contains all behavior-related data') + pm_creator = ProcessingModuleCreator( + 'behavior', 'Contains all behavior-related data') logger.info('ProcessingModule: Injecting behavior') nwb_content.add_processing_module(pm_creator.processing_module) logger.info('ProcessingModule: Creating tasks') - pm_creator = ProcessingModuleCreator('tasks', 'Contains all tasks information') + pm_creator = ProcessingModuleCreator( + 'tasks', 'Contains all tasks information') logger.info('ProcessingModule: Injecting tasks') nwb_content.add_processing_module(pm_creator.processing_module) logger.info('ProcessingModule: Creating associated files') - pm_creator = ProcessingModuleCreator('associated_files', 'Contains all associated files data') + pm_creator = ProcessingModuleCreator( + 'associated_files', 'Contains all associated files data') logger.info('ProcessingModule: Injecting associated files') nwb_content.add_processing_module(pm_creator.processing_module) logger.info('ProcessingModule: Creating video files') - pm_creator = ProcessingModuleCreator('video_files', 'Contains all associated video files data') + pm_creator = ProcessingModuleCreator( + 'video_files', 'Contains all associated video files data') logger.info('ProcessingModule: Injecting video files') nwb_content.add_processing_module(pm_creator.processing_module) logger.info('ProcessingModule: Creating analog') - pm_creator = ProcessingModuleCreator('analog', 'Contains all analog data') + pm_creator = ProcessingModuleCreator( + 'analog', 'Contains all analog data') logger.info('ProcessingModule: Injecting analog') nwb_content.add_processing_module(pm_creator.processing_module) - logger.info('ProcessingModule: Creating sample count-timestamp corespondence') - pm_creator = ProcessingModuleCreator('sample_count', 'corespondence between sample count and timestamps') - logger.info('ProcessingModule: Injecting sample count-timestamp corespondence') + logger.info( + 'ProcessingModule: Creating sample count-timestamp corespondence') + pm_creator = ProcessingModuleCreator( + 'sample_count', 'corespondence between sample count and timestamps') + logger.info( + 'ProcessingModule: Injecting sample count-timestamp corespondence') nwb_content.add_processing_module(pm_creator.processing_module) logger.info('ProcessingModule: Creating Camera Sample Frame Counts') - pm_creator = ProcessingModuleCreator('camera_sample_frame_counts', 'Camera Sample Frame Counts') + pm_creator = ProcessingModuleCreator( + 'camera_sample_frame_counts', 'Camera Sample Frame Counts') logger.info('ProcessingModule: Injecting camera_sample_frame_counts') nwb_content.add_processing_module(pm_creator.processing_module) diff --git a/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py b/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py index c30f6837e..87629840f 100644 --- a/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py +++ b/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py @@ -1,5 +1,5 @@ -import os import logging.config +import os from rec_to_nwb.processing.nwb.components.sample_count_timestamp_corespondence.sample_count_timestamp_corespondence_injector import \ SampleCountTimestampCorespondenceInjector @@ -7,7 +7,8 @@ SampleCountTimestampCorespondenceManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -26,4 +27,4 @@ def make(self, nwb_content): nwb_content=nwb_content, processing_module_name="sample_count", timeseries=timeseries - ) \ No newline at end of file + ) diff --git a/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py b/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py index dca0969c5..a0552d995 100644 --- a/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py +++ b/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py @@ -7,14 +7,16 @@ ShanksElectrodeCreator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) class ShanksElectrodeOriginator: def __init__(self, probes, metadata): - self.fl_shanks_electrode_manager = FlShanksElectrodeManager(probes, metadata['electrode_groups']) + self.fl_shanks_electrode_manager = FlShanksElectrodeManager( + probes, metadata['electrode_groups']) self.shanks_electrodes_creator = ShanksElectrodeCreator() def make(self): diff --git a/rec_to_nwb/processing/builder/originators/shanks_originator.py b/rec_to_nwb/processing/builder/originators/shanks_originator.py index 61efcaa06..a281c05f8 100644 --- a/rec_to_nwb/processing/builder/originators/shanks_originator.py +++ b/rec_to_nwb/processing/builder/originators/shanks_originator.py @@ -1,25 +1,31 @@ -import os import logging.config +import os -from rec_to_nwb.processing.nwb.components.device.probe.shanks.fl_shank_manager import FlShankManager -from rec_to_nwb.processing.nwb.components.device.probe.shanks.shank_creator import ShankCreator +from rec_to_nwb.processing.nwb.components.device.probe.shanks.fl_shank_manager import \ + FlShankManager +from rec_to_nwb.processing.nwb.components.device.probe.shanks.shank_creator import \ + ShankCreator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) class ShanksOriginator: def __init__(self, probes, metadata): - self.fl_shank_manager = FlShankManager(probes, metadata['electrode_groups']) + self.fl_shank_manager = FlShankManager( + probes, metadata['electrode_groups']) self.shank_creator = ShankCreator() def make(self, shanks_electrodes_dict): logger.info('Probes-Shanks: Building') - fl_shanks_dict = self.fl_shank_manager.get_fl_shanks_dict(shanks_electrodes_dict) + fl_shanks_dict = self.fl_shank_manager.get_fl_shanks_dict( + shanks_electrodes_dict) logger.info('Probes-Shanks: Creating') shanks_dict = {} for probe_type, fl_shanks in fl_shanks_dict.items(): - shanks_dict[probe_type] = [self.shank_creator.create(fl_shank) for fl_shank in fl_shanks] - return shanks_dict \ No newline at end of file + shanks_dict[probe_type] = [self.shank_creator.create( + fl_shank) for fl_shank in fl_shanks] + return shanks_dict diff --git a/rec_to_nwb/processing/builder/originators/task_originator.py b/rec_to_nwb/processing/builder/originators/task_originator.py index 256220c28..941389528 100644 --- a/rec_to_nwb/processing/builder/originators/task_originator.py +++ b/rec_to_nwb/processing/builder/originators/task_originator.py @@ -5,7 +5,8 @@ from rec_to_nwb.processing.nwb.components.task.task_manager import TaskManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/common/data_manager.py b/rec_to_nwb/processing/nwb/common/data_manager.py index 531706f9c..b816d0fe5 100644 --- a/rec_to_nwb/processing/nwb/common/data_manager.py +++ b/rec_to_nwb/processing/nwb/common/data_manager.py @@ -10,7 +10,8 @@ def __init__(self, directories): self.number_of_datasets = self.get_number_of_datasets() self.number_of_files_per_dataset = self.get_number_of_files_per_dataset() self.number_of_rows_per_file = self._get_number_of_rows_per_file() - self.file_lenghts_in_datasets = self._get_file_length(self.number_of_datasets) + self.file_lenghts_in_datasets = self._get_file_length( + self.number_of_datasets) @abc.abstractmethod def read_data(self, dataset_id, file_id): @@ -23,7 +24,7 @@ def _get_data_shape(self, dataset_num, file_num=0): dim1 = np.shape(self.read_data(dataset_num, file_num))[0] dim2 = np.shape(self.read_data(dataset_num, file_num))[1] return dim1, dim2 - + def get_data_shape(self, dataset_num, file_num=0): return self._get_data_shape(dataset_num, file_num) @@ -44,7 +45,7 @@ def _get_number_of_rows_per_file(self): dataset_num = 0 # assume that all datasets have identical structures # but files may have different numbers of rows return [np.shape(self.read_data(dataset_num, file_num))[0] - for file_num in range(self.number_of_files_per_dataset)] + for file_num in range(self.number_of_files_per_dataset)] def get_number_of_rows_per_file(self): return self.number_of_rows_per_file diff --git a/rec_to_nwb/processing/nwb/common/session_time_extractor.py b/rec_to_nwb/processing/nwb/common/session_time_extractor.py index cd2ada4db..0070d68d3 100644 --- a/rec_to_nwb/processing/nwb/common/session_time_extractor.py +++ b/rec_to_nwb/processing/nwb/common/session_time_extractor.py @@ -16,9 +16,11 @@ def get_session_start_time(self): continuous_time_file = \ self.datasets[0].data['time'] + '/' + self.date + '_' + self.animal_name + '_' \ + self.dataset_names[0] + '.continuoustime.dat' - continuous_time = SessionTimeExtractor.__read_continuous_time(continuous_time_file) + continuous_time = SessionTimeExtractor.__read_continuous_time( + continuous_time_file) session_start_timestamp = continuous_time['system_time_at_creation'] - session_start_datetime = datetime.fromtimestamp(int(session_start_timestamp)/1E3, tzlocal()) + session_start_datetime = datetime.fromtimestamp( + int(session_start_timestamp) / 1E3, tzlocal()) return session_start_datetime @staticmethod diff --git a/rec_to_nwb/processing/nwb/common/timestamps_manager.py b/rec_to_nwb/processing/nwb/common/timestamps_manager.py index 71b239452..a02bab878 100644 --- a/rec_to_nwb/processing/nwb/common/timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/timestamps_manager.py @@ -3,13 +3,14 @@ import os import numpy as np - -from rec_to_nwb.processing.time.continuous_time_extractor import ContinuousTimeExtractor +from rec_to_nwb.processing.time.continuous_time_extractor import \ + ContinuousTimeExtractor from rec_to_nwb.processing.time.timestamp_converter import TimestampConverter path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/analog/analog_files.py b/rec_to_nwb/processing/nwb/components/analog/analog_files.py index e7502bb62..44537441a 100644 --- a/rec_to_nwb/processing/nwb/components/analog/analog_files.py +++ b/rec_to_nwb/processing/nwb/components/analog/analog_files.py @@ -17,5 +17,6 @@ def __get_dict(cls, directory): for file in files: if file.endswith('.dat'): split_filename = file.split('.') - analog_dict[split_filename[-2].split('_')[-1]] = directory + '/' + file + analog_dict[split_filename[-2].split('_') + [-1]] = directory + '/' + file return analog_dict diff --git a/rec_to_nwb/processing/nwb/components/analog/analog_injector.py b/rec_to_nwb/processing/nwb/components/analog/analog_injector.py index 0dda3da32..c8dc9e8d9 100644 --- a/rec_to_nwb/processing/nwb/components/analog/analog_injector.py +++ b/rec_to_nwb/processing/nwb/components/analog/analog_injector.py @@ -6,4 +6,5 @@ def __init__(self, nwb_content): def inject(self, behavioral_events, processing_module_name): """insert behavioral events to specified processing module in nwb file""" - self.nwb_content.processing[processing_module_name].add(behavioral_events) + self.nwb_content.processing[processing_module_name].add( + behavioral_events) diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py index cd47b57de..a3263a432 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py @@ -2,12 +2,13 @@ import os from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - -from rec_to_nwb.processing.time.continuous_time_extractor import ContinuousTimeExtractor +from rec_to_nwb.processing.time.continuous_time_extractor import \ + ContinuousTimeExtractor from rec_to_nwb.processing.time.timestamp_converter import TimestampConverter path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -15,16 +16,17 @@ class FlAnalogExtractor: @staticmethod def extract_analog_for_single_dataset(analog_files, continuous_time_file, - convert_timestamps=True): + convert_timestamps=True): single_dataset_data = {} for analog_sensor in analog_files: - analog_data = readTrodesExtractedDataFile(analog_files[analog_sensor]) + analog_data = readTrodesExtractedDataFile( + analog_files[analog_sensor]) if not 'timestamps' in analog_sensor: values = analog_data['data'] single_dataset_data[analog_data['id']] = values else: timestamps = FlAnalogExtractor._extract_analog_timestamps( - analog_data, continuous_time_file, convert_timestamps) + analog_data, continuous_time_file, convert_timestamps) single_dataset_data[analog_sensor] = timestamps return single_dataset_data @@ -32,7 +34,8 @@ def extract_analog_for_single_dataset(analog_files, continuous_time_file, def _extract_analog_timestamps(analog_data, continuous_time_file, convert_timestamps): timestamps = analog_data['data']['time'] if convert_timestamps: - continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) + continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file( + continuous_time_file) return TimestampConverter.convert_timestamps(continuous_time, timestamps) else: # for old dataset, skip real-time conversion and just report Trodes time counts, diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py index ca6db4914..8c24446bd 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py @@ -1,21 +1,24 @@ import numpy as np - from rec_to_nwb.processing.nwb.components.analog.fl_analog import FlAnalog -from rec_to_nwb.processing.nwb.components.analog.fl_analog_builder import FlAnalogBuilder -from rec_to_nwb.processing.nwb.components.analog.fl_analog_extractor import FlAnalogExtractor +from rec_to_nwb.processing.nwb.components.analog.fl_analog_builder import \ + FlAnalogBuilder +from rec_to_nwb.processing.nwb.components.analog.fl_analog_extractor import \ + FlAnalogExtractor from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_equal_length +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_equal_length class FlAnalogManager: @beartype def __init__(self, analog_files: list, - continuous_time_files: list, - convert_timestamps: bool = True, - return_timestamps: bool = True, - ): - validate_parameters_equal_length(__name__, analog_files, continuous_time_files) + continuous_time_files: list, + convert_timestamps: bool = True, + return_timestamps: bool = True, + ): + validate_parameters_equal_length( + __name__, analog_files, continuous_time_files) self.analog_files = analog_files self.continuous_time_files = continuous_time_files @@ -51,7 +54,8 @@ def __merge_epochs(data_from_multiple_datasets): merged_epochs = data_from_multiple_datasets[0] for single_dataset_data in data_from_multiple_datasets[1:]: for row in single_dataset_data.keys(): - merged_epochs[row] = np.hstack((merged_epochs[row], single_dataset_data[row])) + merged_epochs[row] = np.hstack( + (merged_epochs[row], single_dataset_data[row])) return merged_epochs @staticmethod diff --git a/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py b/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py index 1eb13cbaf..1734a79eb 100644 --- a/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py +++ b/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py @@ -6,9 +6,8 @@ class AssociatedFilesCreator: @classmethod def create(cls, fl_associated_file): return AssociatedFiles( - name=fl_associated_file.name, - description=fl_associated_file.description, - content=fl_associated_file.content, - task_epochs=fl_associated_file.task_epochs - ) - + name=fl_associated_file.name, + description=fl_associated_file.description, + content=fl_associated_file.content, + task_epochs=fl_associated_file.task_epochs + ) diff --git a/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_builder.py b/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_builder.py index 7694bcc9a..008bb205a 100644 --- a/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_builder.py +++ b/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_builder.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_file import FlAssociatedFile +from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_file import \ + FlAssociatedFile class FlAssociatedFilesBuilder: diff --git a/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_manager.py b/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_manager.py index 41c13dfdd..bc49ec25e 100644 --- a/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/associated_files/fl_associated_files_manager.py @@ -1,5 +1,7 @@ -from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_files_builder import FlAssociatedFilesBuilder -from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_files_reader import FlAssociatedFilesReader +from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_files_builder import \ + FlAssociatedFilesBuilder +from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_files_reader import \ + FlAssociatedFilesReader from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device.py b/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device.py index 3859cda8b..a50b8fa67 100644 --- a/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device.py +++ b/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device.py @@ -4,4 +4,4 @@ def __init__(self, name, system, amplifier, adc_circuit): self.name = name self.system = system self.amplifier = amplifier - self.adc_circuit = adc_circuit \ No newline at end of file + self.adc_circuit = adc_circuit diff --git a/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_builder.py b/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_builder.py index f6c7c6e05..57d08f09e 100644 --- a/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_builder.py +++ b/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_builder.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device import FlDataAcqDevice +from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device import \ + FlDataAcqDevice from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -12,4 +13,4 @@ def build(name, system, amplifier, adc_circuit): system=system, amplifier=amplifier, adc_circuit=adc_circuit - ) \ No newline at end of file + ) diff --git a/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_manager.py b/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_manager.py index ebb6d8463..871762ee6 100644 --- a/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_manager.py +++ b/rec_to_nwb/processing/nwb/components/device/acq/fl_data_acq_device_manager.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device_builder import FlDataAcqDeviceBuilder +from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device_builder import \ + FlDataAcqDeviceBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_builder.py b/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_builder.py index 6e86c4bf1..406b91e32 100644 --- a/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_builder.py +++ b/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_builder.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device import FlCameraDevice +from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device import \ + FlCameraDevice from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_manager.py b/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_manager.py index 6337301e5..43194339a 100644 --- a/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_manager.py +++ b/rec_to_nwb/processing/nwb/components/device/camera/fl_camera_device_manager.py @@ -1,6 +1,8 @@ -from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device_builder import FlCameraDeviceBuilder +from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device_builder import \ + FlCameraDeviceBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_not_none +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_not_none class FlCameraDeviceManager: diff --git a/rec_to_nwb/processing/nwb/components/device/device_factory.py b/rec_to_nwb/processing/nwb/components/device/device_factory.py index 007c9f9d4..ae468ea1d 100644 --- a/rec_to_nwb/processing/nwb/components/device/device_factory.py +++ b/rec_to_nwb/processing/nwb/components/device/device_factory.py @@ -3,14 +3,17 @@ from ndx_franklab_novela.header_device import HeaderDevice from ndx_franklab_novela.probe import Probe from pynwb.device import Device - -from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device import FlDataAcqDevice -from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device import FlCameraDevice +from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device import \ + FlDataAcqDevice +from rec_to_nwb.processing.nwb.components.device.camera.fl_camera_device import \ + FlCameraDevice from rec_to_nwb.processing.nwb.components.device.fl_device import FlDevice -from rec_to_nwb.processing.nwb.components.device.header.fl_header_device import FlHeaderDevice +from rec_to_nwb.processing.nwb.components.device.header.fl_header_device import \ + FlHeaderDevice from rec_to_nwb.processing.nwb.components.device.probe.fl_probe import FlProbe from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_not_none +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_not_none class DeviceFactory: @@ -26,7 +29,8 @@ def create_device(cls, fl_device: FlDevice) -> Device: @classmethod @beartype def create_camera_device(cls, fl_camera_device: FlCameraDevice) -> CameraDevice: - validate_parameters_not_none(__name__, fl_camera_device.name, fl_camera_device.meters_per_pixel) + validate_parameters_not_none( + __name__, fl_camera_device.name, fl_camera_device.meters_per_pixel) return CameraDevice( name=fl_camera_device.name, meters_per_pixel=fl_camera_device.meters_per_pixel, @@ -71,27 +75,36 @@ def create_data_acq_device(cls, fl_data_acq_device: FlDataAcqDevice) -> DataAcqD @classmethod @beartype def create_header_device(cls, fl_header_device: FlHeaderDevice) -> HeaderDevice: - validate_parameters_not_none(__name__, fl_header_device.name, fl_header_device.global_configuration) + validate_parameters_not_none( + __name__, fl_header_device.name, fl_header_device.global_configuration) return HeaderDevice( name=fl_header_device.name, headstage_serial=fl_header_device.global_configuration['headstage_serial'], headstage_smart_ref_on=fl_header_device.global_configuration['headstage_smart_ref_on'], realtime_mode=fl_header_device.global_configuration['realtime_mode'], - headstage_auto_settle_on=fl_header_device.global_configuration['headstage_auto_settle_on'], + headstage_auto_settle_on=fl_header_device.global_configuration[ + 'headstage_auto_settle_on'], timestamp_at_creation=fl_header_device.global_configuration['timestamp_at_creation'], - controller_firmware_version=fl_header_device.global_configuration['controller_firmware_version'], + controller_firmware_version=fl_header_device.global_configuration[ + 'controller_firmware_version'], controller_serial=fl_header_device.global_configuration['controller_serial'], - save_displayed_chan_only=fl_header_device.global_configuration['save_displayed_chan_only'], - headstage_firmware_version=fl_header_device.global_configuration['headstage_firmware_version'], + save_displayed_chan_only=fl_header_device.global_configuration[ + 'save_displayed_chan_only'], + headstage_firmware_version=fl_header_device.global_configuration[ + 'headstage_firmware_version'], qt_version=fl_header_device.global_configuration['qt_version'], compile_date=fl_header_device.global_configuration['compile_date'], compile_time=fl_header_device.global_configuration['compile_time'], file_prefix=fl_header_device.global_configuration['file_prefix'], - headstage_gyro_sensor_on=fl_header_device.global_configuration['headstage_gyro_sensor_on'], - headstage_mag_sensor_on=fl_header_device.global_configuration['headstage_mag_sensor_on'], + headstage_gyro_sensor_on=fl_header_device.global_configuration[ + 'headstage_gyro_sensor_on'], + headstage_mag_sensor_on=fl_header_device.global_configuration[ + 'headstage_mag_sensor_on'], trodes_version=fl_header_device.global_configuration['trodes_version'], - headstage_accel_sensor_on=fl_header_device.global_configuration['headstage_accel_sensor_on'], + headstage_accel_sensor_on=fl_header_device.global_configuration[ + 'headstage_accel_sensor_on'], commit_head=fl_header_device.global_configuration['commit_head'], - system_time_at_creation=fl_header_device.global_configuration['system_time_at_creation'], + system_time_at_creation=fl_header_device.global_configuration[ + 'system_time_at_creation'], file_path=fl_header_device.global_configuration['file_path'] ) diff --git a/rec_to_nwb/processing/nwb/components/device/device_injector.py b/rec_to_nwb/processing/nwb/components/device/device_injector.py index ec5775aaf..a08eb7efe 100644 --- a/rec_to_nwb/processing/nwb/components/device/device_injector.py +++ b/rec_to_nwb/processing/nwb/components/device/device_injector.py @@ -1,5 +1,4 @@ from pynwb import NWBFile - from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -12,4 +11,4 @@ def inject_all_devices(self, nwb_content: NWBFile, devices: list): @staticmethod def __inject_device(nwb_content, device): - nwb_content.add_device(device) \ No newline at end of file + nwb_content.add_device(device) diff --git a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py index 41742ac54..154457ce3 100644 --- a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py +++ b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device.py @@ -6,4 +6,3 @@ def __init__(self, name, global_configuration_dict): if global_configuration_dict[parameter] is None: global_configuration_dict[parameter] = '' self.global_configuration = global_configuration_dict - diff --git a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_builder.py b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_builder.py index 5b0e947ff..fb18f0f71 100644 --- a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_builder.py +++ b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_builder.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.device.header.fl_header_device import FlHeaderDevice +from rec_to_nwb.processing.nwb.components.device.header.fl_header_device import \ + FlHeaderDevice class FlHeaderDeviceBuilder: diff --git a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py index 7b160b82a..a25d9e1d1 100644 --- a/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py +++ b/rec_to_nwb/processing/nwb/components/device/header/fl_header_device_manager.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.device.header.fl_header_device_builder import FlHeaderDeviceBuilder +from rec_to_nwb.processing.nwb.components.device.header.fl_header_device_builder import \ + FlHeaderDeviceBuilder class FlHeaderDeviceManager: diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py index 76f3bb7fb..04a1b9b42 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py @@ -1,14 +1,18 @@ import logging.config import os -# import numpy as np from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - -from rec_to_nwb.processing.time.continuous_time_extractor import ContinuousTimeExtractor +from rec_to_nwb.processing.time.continuous_time_extractor import \ + ContinuousTimeExtractor from rec_to_nwb.processing.time.timestamp_converter import TimestampConverter +# import numpy as np + + + path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -16,16 +20,18 @@ class DioExtractor: @staticmethod def extract_dio_for_single_dataset(filtered_files, continuous_time_file, - convert_timestamps=True): + convert_timestamps=True): single_dataset_data = {} - continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file(continuous_time_file) + continuous_time = ContinuousTimeExtractor.get_continuous_time_array_file( + continuous_time_file) for dio_sensor in filtered_files: try: - dio_data = readTrodesExtractedDataFile(filtered_files[dio_sensor]) + dio_data = readTrodesExtractedDataFile( + filtered_files[dio_sensor]) # dio_data['data'] is a labeled array with 'time' and 'state' columns. 'time' corresponds to sample count single_dataset_data[dio_sensor] = DioExtractor.__get_dio_time_series( - dio_data, continuous_time, convert_timestamps) + dio_data, continuous_time, convert_timestamps) # keys, values = DioExtractor.__get_dio_time_series(dio_data, continuous_time_dict # single_dataset_data[dio_sensor] = ([keys, values]) @@ -33,17 +39,19 @@ def extract_dio_for_single_dataset(filtered_files, continuous_time_file, message = "there is no " + str(dio_sensor) + ", error: " logger.exception(message + str(error)) except TypeError as error: - message = "there is no data for event " + str(dio_sensor) + ", error: " + message = "there is no data for event " + \ + str(dio_sensor) + ", error: " logger.exception(message + str(error)) return single_dataset_data @staticmethod def __get_dio_time_series(dio_data, continuous_time, convert_timestamps=True): dio_state = dio_data['data']['state'] - time_counts = dio_data['data']['time'] # time sample counts + time_counts = dio_data['data']['time'] # time sample counts if not convert_timestamps: return [time_counts, dio_state] - converted_timestamps = TimestampConverter.convert_timestamps(continuous_time, time_counts) + converted_timestamps = TimestampConverter.convert_timestamps( + continuous_time, time_counts) #values = np.asarray(dio_data['state'], dtype='bool') # values = [bool(recorded_event[1]) for recorded_event in dio_data['data']] # keys = [recorded_event[0] for recorded_event in dio_data['data']] diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_files.py b/rec_to_nwb/processing/nwb/components/dio/dio_files.py index bfa1c02c7..f6fddc25b 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_files.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_files.py @@ -8,8 +8,10 @@ def __init__(self, directories, dio_metadata): self.dio_metadata = dio_metadata def get_files(self): - multiple_datasets_dio_files = [self.__get_dict(dataset) for dataset in self.directories] - filtered_datasets_dio_files = self.__filter_files(multiple_datasets_dio_files, self.dio_metadata) + multiple_datasets_dio_files = [self.__get_dict( + dataset) for dataset in self.directories] + filtered_datasets_dio_files = self.__filter_files( + multiple_datasets_dio_files, self.dio_metadata) return filtered_datasets_dio_files @classmethod @@ -26,5 +28,6 @@ def __get_dict(cls, directory): for file in files: if file.endswith('.dat'): split_filename = file.split('.') - dio_dict[split_filename[-2].split('_')[1]] = directory + '/' + file + dio_dict[split_filename[-2].split('_') + [1]] = directory + '/' + file return dio_dict diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_injector.py b/rec_to_nwb/processing/nwb/components/dio/dio_injector.py index 2e6ffcb02..cdb3e6952 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_injector.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_injector.py @@ -6,4 +6,5 @@ def __init__(self, nwb_content): def inject(self, behavioral_events, processing_module_name): """insert behavioral events to specified processing module in nwb file""" - self.nwb_content.processing[processing_module_name].add(behavioral_events) + self.nwb_content.processing[processing_module_name].add( + behavioral_events) diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_manager.py b/rec_to_nwb/processing/nwb/components/dio/dio_manager.py index 43a16bcf6..f974af7e2 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_manager.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_manager.py @@ -1,5 +1,4 @@ import numpy as np - from rec_to_nwb.processing.nwb.components.dio.dio_extractor import DioExtractor @@ -31,7 +30,9 @@ def __merge_dio_data(cls, data_from_multiple_datasets): merged_data = data_from_multiple_datasets[0] for single_dataset_data in data_from_multiple_datasets[1:]: for event, timeseries in single_dataset_data.items(): - merged_data[event][0] = np.hstack((merged_data[event][0], timeseries[0])) - merged_data[event][1] = np.hstack((merged_data[event][1], timeseries[1])) + merged_data[event][0] = np.hstack( + (merged_data[event][0], timeseries[0])) + merged_data[event][1] = np.hstack( + (merged_data[event][1], timeseries[1])) return merged_data diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py b/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py index 51886e0fc..fe4e93bf0 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py @@ -1,10 +1,12 @@ from ndx_franklab_novela.nwb_electrode_group import NwbElectrodeGroup from pynwb.ecephys import ElectrodeGroup - -from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group import FlElectrodeGroup -from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group import FlNwbElectrodeGroup +from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group import \ + FlElectrodeGroup +from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group import \ + FlNwbElectrodeGroup from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_not_none +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_not_none class ElectrodeGroupFactory: diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py b/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py index ee6fa479a..a4513ec1f 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_injector.py @@ -1,5 +1,4 @@ from pynwb import NWBFile - from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group.py b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group.py index 206c01307..c779cd467 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group.py @@ -4,4 +4,4 @@ def __init__(self, name, description, location, device): self.name = name self.description = description self.location = location - self.device = device \ No newline at end of file + self.device = device diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_builder.py b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_builder.py index 741bae989..a6ad91b8a 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_builder.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_builder.py @@ -1,6 +1,6 @@ from pynwb.device import Device - -from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group import FlElectrodeGroup +from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group import \ + FlElectrodeGroup from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py index 17e8c676c..1c88fce6f 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py @@ -1,6 +1,6 @@ from ndx_franklab_novela.probe import Probe - -from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group_builder import FlElectrodeGroupBuilder +from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group_builder import \ + FlElectrodeGroupBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -15,7 +15,8 @@ def get_fl_electrode_groups(self, probes: list, electrode_groups_valid_map: set) fl_electrode_groups = [] for electrode_group_metadata in self.electrode_groups_metadata: if electrode_group_metadata['id'] in electrode_groups_valid_map: - probe = self.__get_probe_by_type(probes, electrode_group_metadata['device_type']) + probe = self.__get_probe_by_type( + probes, electrode_group_metadata['device_type']) fl_electrode_groups.append( FlElectrodeGroupBuilder.build( metadata=electrode_group_metadata, diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_builder.py b/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_builder.py index 818ba9dfb..634bf5a85 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_builder.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_builder.py @@ -1,6 +1,6 @@ from pynwb.device import Device - -from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group import FlNwbElectrodeGroup +from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group import \ + FlNwbElectrodeGroup from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py b/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py index d2b7c1a9e..0f8121f8d 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py @@ -1,6 +1,6 @@ from ndx_franklab_novela.probe import Probe - -from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group_builder import FlNwbElectrodeGroupBuilder +from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group_builder import \ + FlNwbElectrodeGroupBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -32,7 +32,8 @@ def get_fl_nwb_electrode_groups(self, probes: list, electrode_groups_valid_map: fl_nwb_electrode_groups = [] for electrode_group_metadata in self.electrode_groups_metadata: if electrode_group_metadata['id'] in electrode_groups_valid_map: - probe = self.__get_probe_by_type(probes, electrode_group_metadata['device_type']) + probe = self.__get_probe_by_type( + probes, electrode_group_metadata['device_type']) fl_nwb_electrode_groups.append( FlNwbElectrodeGroupBuilder.build( metadata=electrode_group_metadata, diff --git a/rec_to_nwb/processing/nwb/components/electrodes/electrode_creator.py b/rec_to_nwb/processing/nwb/components/electrodes/electrode_creator.py index 00edaea58..5035cb87d 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/electrode_creator.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/electrode_creator.py @@ -1,8 +1,9 @@ from pynwb import NWBFile - -from rec_to_nwb.processing.nwb.components.electrodes.fl_electrodes import FlElectrode +from rec_to_nwb.processing.nwb.components.electrodes.fl_electrodes import \ + FlElectrode from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_not_none +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_not_none class ElectrodesCreator: @@ -10,7 +11,8 @@ class ElectrodesCreator: @classmethod @beartype def create(cls, nwb_content: NWBFile, fl_electrode: FlElectrode): - validate_parameters_not_none(__name__, fl_electrode.electrode_group, fl_electrode.electrode_id) + validate_parameters_not_none( + __name__, fl_electrode.electrode_group, fl_electrode.electrode_id) nwb_content.add_electrode( x=0.0, @@ -22,4 +24,3 @@ def create(cls, nwb_content: NWBFile, fl_electrode: FlElectrode): group=fl_electrode.electrode_group, id=fl_electrode.electrode_id ) - diff --git a/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_builder.py b/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_builder.py index aa73d2dc0..574c8c3b8 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_builder.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_builder.py @@ -1,6 +1,6 @@ from pynwb.ecephys import ElectrodeGroup - -from rec_to_nwb.processing.nwb.components.electrodes.fl_electrodes import FlElectrode +from rec_to_nwb.processing.nwb.components.electrodes.fl_electrodes import \ + FlElectrode from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -9,4 +9,4 @@ class FlElectrodesBuilder: @staticmethod @beartype def build(electrode_id: int, electrode_group: ElectrodeGroup): - return FlElectrode(electrode_id, electrode_group) \ No newline at end of file + return FlElectrode(electrode_id, electrode_group) diff --git a/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py b/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py index 213d207d2..bdbe27fa8 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py @@ -1,9 +1,12 @@ import copy -from rec_to_nwb.processing.nwb.components.electrodes.fl_electrode_builder import FlElectrodesBuilder +from rec_to_nwb.processing.nwb.components.electrodes.fl_electrode_builder import \ + FlElectrodesBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.filter_probe_by_type import filter_probe_by_type -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_not_none +from rec_to_nwb.processing.tools.filter_probe_by_type import \ + filter_probe_by_type +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_not_none class FlElectrodeManager: @@ -23,7 +26,8 @@ def get_fl_electrodes(self, electrode_groups: list, electrodes_valid_map: list, fl_electrodes = [] fl_electrode_id = -1 for electrode_group_metadata in self.electrode_groups_metadata: - probe_metadata = filter_probe_by_type(self.probes_metadata, electrode_group_metadata['device_type']) + probe_metadata = filter_probe_by_type( + self.probes_metadata, electrode_group_metadata['device_type']) for shank in probe_metadata['shanks']: for _ in shank['electrodes']: @@ -35,7 +39,8 @@ def get_fl_electrodes(self, electrode_groups: list, electrodes_valid_map: list, fl_electrodes.append( self.fl_electrodes_builder.build( fl_electrode_id, - self.__get_electrode_group(electrode_group_metadata, electrode_groups) + self.__get_electrode_group( + electrode_group_metadata, electrode_groups) ) ) return fl_electrodes @@ -50,4 +55,5 @@ def __get_electrode_group(electrode_group_metadata, electrode_groups): @staticmethod @beartype def __validate_parameters(electrode_groups: list): - [validate_parameters_not_none(__name__, electrode_group.name) for electrode_group in electrode_groups] + [validate_parameters_not_none(__name__, electrode_group.name) + for electrode_group in electrode_groups] diff --git a/rec_to_nwb/processing/nwb/components/epochs/epochs_tag_extractor.py b/rec_to_nwb/processing/nwb/components/epochs/epochs_tag_extractor.py index ae9c2e391..62b33c6c0 100644 --- a/rec_to_nwb/processing/nwb/components/epochs/epochs_tag_extractor.py +++ b/rec_to_nwb/processing/nwb/components/epochs/epochs_tag_extractor.py @@ -4,4 +4,4 @@ def __init__(self, datasets): self.datasets = datasets def get_tags(self): - return [dataset.name for dataset in self.datasets] \ No newline at end of file + return [dataset.name for dataset in self.datasets] diff --git a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs.py b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs.py index cf40d0079..05ea1e02c 100644 --- a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs.py +++ b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs.py @@ -1,10 +1,12 @@ -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_equal_length +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_equal_length class FlEpochs: def __init__(self, session_start_times, session_end_times, tags): - validate_parameters_equal_length(__name__, session_start_times, session_end_times, tags) + validate_parameters_equal_length( + __name__, session_start_times, session_end_times, tags) self.session_start_times = session_start_times self.session_end_times = session_end_times diff --git a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py index cac5caa5c..f94510567 100644 --- a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py +++ b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py @@ -10,9 +10,12 @@ def extract_epochs(self): session_start_times = [] session_end_times = [] for continuous_time_file in self.continuous_time_files: - continuous_time_data = self.__read_contunious_time_file(continuous_time_file) - session_start_times.append(float(continuous_time_data['data'][0][1]) / 1E9) - session_end_times.append(float(continuous_time_data['data'][-1][1]) / 1E9) + continuous_time_data = self.__read_contunious_time_file( + continuous_time_file) + session_start_times.append( + float(continuous_time_data['data'][0][1]) / 1E9) + session_end_times.append( + float(continuous_time_data['data'][-1][1]) / 1E9) return session_start_times, session_end_times def __read_contunious_time_file(self, continuous_time_file): diff --git a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_manager.py b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_manager.py index 7b7420aec..8496cdeaa 100644 --- a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_manager.py +++ b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_manager.py @@ -1,6 +1,9 @@ -from rec_to_nwb.processing.nwb.components.epochs.epochs_tag_extractor import EpochsTagExtractor -from rec_to_nwb.processing.nwb.components.epochs.fl_epochs_builder import FlEpochsBuilder -from rec_to_nwb.processing.nwb.components.epochs.fl_epochs_extractor import FlEpochsExtractor +from rec_to_nwb.processing.nwb.components.epochs.epochs_tag_extractor import \ + EpochsTagExtractor +from rec_to_nwb.processing.nwb.components.epochs.fl_epochs_builder import \ + FlEpochsBuilder +from rec_to_nwb.processing.nwb.components.epochs.fl_epochs_extractor import \ + FlEpochsExtractor from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -8,7 +11,8 @@ class FlEpochsManager: @beartype def __init__(self, datasets: list): - self.continuous_time_files = [dataset.get_continuous_time() for dataset in datasets] + self.continuous_time_files = [ + dataset.get_continuous_time() for dataset in datasets] epochs_tags = self.__get_epochs_tags(datasets) self.fl_epochs_builder = FlEpochsBuilder(epochs_tags) diff --git a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py index b87713d1a..9c908c835 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py @@ -10,12 +10,14 @@ def __init__(self, data): self.current_file = 0 self.current_dataset = 0 - self.number_of_datasets = self.data.get_number_of_datasets() - self.number_of_steps = self.number_of_datasets * self.data.get_number_of_files_per_dataset() + self.number_of_datasets = self.data.get_number_of_datasets() + self.number_of_steps = self.number_of_datasets * \ + self.data.get_number_of_files_per_dataset() self.dataset_file_length = self.data.get_file_lenghts_in_datasets() self.number_of_rows = self.data.get_number_of_rows_per_file() self.number_of_files_in_single_dataset = self.data.get_number_of_files_per_dataset() - self.shape = [self.data.get_final_data_shape()[1], self.data.get_final_data_shape()[0]] + self.shape = [self.data.get_final_data_shape( + )[1], self.data.get_final_data_shape()[0]] def __iter__(self): return self @@ -31,8 +33,8 @@ def _get_selection(self): stop_index = sum(self.number_of_rows[0:(self.current_file + 1)]) return np.s_[sum(self.dataset_file_length[0:self.current_dataset]): sum(self.dataset_file_length[0:self.current_dataset + 1]), - start_index: - stop_index] + start_index: + stop_index] @staticmethod def get_selection(number_of_threads, current_dataset, dataset_file_length, current_file, number_of_rows): @@ -43,11 +45,12 @@ def get_selection(number_of_threads, current_dataset, dataset_file_length, curre else: # expecting a list (different number_of_rows for each file) start_index = sum(number_of_rows[0:current_file]) - stop_index = sum(number_of_rows[0:(current_file + number_of_threads)]) + stop_index = sum( + number_of_rows[0:(current_file + number_of_threads)]) return np.s_[sum(dataset_file_length[0:current_dataset]): sum(dataset_file_length[0:current_dataset + 1]), - start_index: - stop_index] + start_index: + stop_index] def recommended_chunk_shape(self): return None diff --git a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py index 7d076b3d9..d809639f5 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py @@ -2,8 +2,8 @@ import numpy as np from hdmf.data_utils import DataChunk - -from rec_to_nwb.processing.nwb.components.iterator.data_iterator import DataIterator +from rec_to_nwb.processing.nwb.components.iterator.data_iterator import \ + DataIterator class MultiThreadDataIterator(DataIterator): @@ -22,13 +22,15 @@ def __next__(self): data_from_multiple_files = () for thread in threads: data_from_multiple_files += (thread.result(),) - stacked_data_from_multiple_files = np.hstack(data_from_multiple_files) + stacked_data_from_multiple_files = np.hstack( + data_from_multiple_files) selection = self.get_selection(number_of_threads=number_of_threads_in_current_step, current_dataset=self.current_dataset, dataset_file_length=self.dataset_file_length, current_file=self.current_file, number_of_rows=self.number_of_rows) - data_chunk = DataChunk(data=stacked_data_from_multiple_files, selection=selection) + data_chunk = DataChunk( + data=stacked_data_from_multiple_files, selection=selection) self._current_index += number_of_threads_in_current_step self.current_file += number_of_threads_in_current_step @@ -49,7 +51,7 @@ def get_data_from_file(data, current_dataset, current_file): return np.transpose(data.read_data(current_dataset, current_file)) -#TODO: finish this code and move to new file when data are extracted in a single file. +# TODO: finish this code and move to new file when data are extracted in a single file. class ChunkedDataIterator(DataIterator): def __init__(self, data, number_of_threads=6, read_chunk_mb=100): DataIterator.__init__(self, data) @@ -60,7 +62,6 @@ def __init__(self, data, number_of_threads=6, read_chunk_mb=100): for dataset in range(self.number_of_datasets): self.dataset_file_dims.append(data.get_data_dims(dataset, 0)) - def __next__(self): if self._current_index < self.number_of_steps: number_of_threads_in_current_step = min(self.number_of_threads, @@ -72,13 +73,15 @@ def __next__(self): data_from_multiple_files = () for thread in threads: data_from_multiple_files += (thread.result(),) - stacked_data_from_multiple_files = np.hstack(data_from_multiple_files) + stacked_data_from_multiple_files = np.hstack( + data_from_multiple_files) selection = self.get_selection(number_of_threads=number_of_threads_in_current_step, current_dataset=self.current_dataset, dataset_file_length=self.dataset_file_length, current_file=self.current_file, number_of_rows=self.number_of_rows) - data_chunk = DataChunk(data=stacked_data_from_multiple_files, selection=selection) + data_chunk = DataChunk( + data=stacked_data_from_multiple_files, selection=selection) self._current_index += number_of_threads_in_current_step self.current_file += number_of_threads_in_current_step @@ -97,4 +100,3 @@ def __next__(self): @staticmethod def get_data_from_file(data, current_dataset, current_file): return np.transpose(data.read_data(current_dataset, current_file)) - diff --git a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py index 24d1bed02..a7b9a962c 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py @@ -2,8 +2,8 @@ import numpy as np from hdmf.data_utils import DataChunk - -from rec_to_nwb.processing.nwb.components.iterator.timestamp_iterator import TimestampIterator +from rec_to_nwb.processing.nwb.components.iterator.timestamp_iterator import \ + TimestampIterator class MultiThreadTimestampIterator(TimestampIterator): @@ -25,9 +25,11 @@ def __next__(self): data_from_multiple_files = () for thread in threads: data_from_multiple_files += (thread.result(),) - stacked_data_from_multiple_files = np.hstack(data_from_multiple_files) + stacked_data_from_multiple_files = np.hstack( + data_from_multiple_files) selection = self.__get_selection(number_of_threads_in_current_step) - data_chunk = DataChunk(data=stacked_data_from_multiple_files, selection=selection) + data_chunk = DataChunk( + data=stacked_data_from_multiple_files, selection=selection) self._current_index += number_of_threads_in_current_step self.current_dataset += number_of_threads_in_current_step @@ -41,4 +43,4 @@ def __next__(self): def __get_selection(self, number_of_threads_in_current_step): return np.s_[sum(self.dataset_file_lenght[0:self.current_dataset]): - sum(self.dataset_file_lenght[0:self.current_dataset + number_of_threads_in_current_step]), ] \ No newline at end of file + sum(self.dataset_file_lenght[0:self.current_dataset + number_of_threads_in_current_step]), ] diff --git a/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py index f31b45405..d1f47fd6a 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py @@ -1,7 +1,7 @@ import numpy as np from hdmf.data_utils import DataChunk - -from rec_to_nwb.processing.nwb.components.iterator.data_iterator import DataIterator +from rec_to_nwb.processing.nwb.components.iterator.data_iterator import \ + DataIterator class SingleThreadDataIterator(DataIterator): diff --git a/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py index be89a5b2d..99d629d64 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py @@ -1,7 +1,7 @@ import numpy as np from hdmf.data_utils import DataChunk - -from rec_to_nwb.processing.nwb.components.iterator.timestamp_iterator import TimestampIterator +from rec_to_nwb.processing.nwb.components.iterator.timestamp_iterator import \ + TimestampIterator class SingleThreadTimestampIterator(TimestampIterator): @@ -27,4 +27,4 @@ def __get_timestamps(self): def __get_selection(self): return np.s_[sum(self.dataset_file_lenght[0:self.current_dataset]): - sum(self.dataset_file_lenght[0:self.current_dataset + 1]), ] \ No newline at end of file + sum(self.dataset_file_lenght[0:self.current_dataset + 1]), ] diff --git a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py index 2c55d7547..416da9f9b 100644 --- a/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py +++ b/rec_to_nwb/processing/nwb/components/mda/electrical_series_creator.py @@ -13,4 +13,4 @@ def create_mda(cls, fl_mda): conversion=fl_mda.conversion, comments="No comment", description="Recording of extracellular voltage" - ) + ) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index d22ec0291..58afa832c 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -1,9 +1,15 @@ -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import MultiThreadDataIterator -from rec_to_nwb.processing.nwb.components.iterator.multi_thread_timestamp_iterator import MultiThreadTimestampIterator +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException +from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import \ + MultiThreadDataIterator +from rec_to_nwb.processing.nwb.components.iterator.multi_thread_timestamp_iterator import \ + MultiThreadTimestampIterator from rec_to_nwb.processing.nwb.components.mda.mda_content import MdaContent -from rec_to_nwb.processing.nwb.components.mda.mda_data_manager import MdaDataManager -from rec_to_nwb.processing.nwb.components.mda.mda_timestamp_manager import MdaTimestampDataManager +from rec_to_nwb.processing.nwb.components.mda.mda_data_manager import \ + MdaDataManager +from rec_to_nwb.processing.nwb.components.mda.mda_timestamp_manager import \ + MdaTimestampDataManager + class FlMdaExtractor: @@ -11,7 +17,7 @@ def __init__(self, datasets, conversion): self.datasets = datasets # the conversion is to volts, so we multiple by 1e6 to change to uV self.raw_to_uv = float(conversion) * 1e6 - + def get_data(self): mda_data_files, timestamp_files, continuous_time_files = self.__extract_data_files() mda_timestamp_data_manager = MdaTimestampDataManager( @@ -20,9 +26,9 @@ def get_data(self): ) mda_data_manager = MdaDataManager(mda_data_files, self.raw_to_uv) # check the number of files and set the number of threads appropriately assuming 32 GB of available RAM - datalen = [mda_data_manager.get_data_shape(dataset_num)[1] - for dataset_num in range(len(mda_data_manager.directories))] - if max(datalen) < 3e9: # each file < 3GB samples (2 bytes / sample) + datalen = [mda_data_manager.get_data_shape(dataset_num)[1] + for dataset_num in range(len(mda_data_manager.directories))] + if max(datalen) < 3e9: # each file < 3GB samples (2 bytes / sample) num_threads = 6 elif max(datalen) < 6e9: num_threads = 3 @@ -30,8 +36,10 @@ def get_data(self): num_threads = 1 #print(f'in FlMdaExtractor: will write {num_threads} files as a chunk') - data_iterator = MultiThreadDataIterator(mda_data_manager, number_of_threads=num_threads) - timestamp_iterator = MultiThreadTimestampIterator(mda_timestamp_data_manager) + data_iterator = MultiThreadDataIterator( + mda_data_manager, number_of_threads=num_threads) + timestamp_iterator = MultiThreadTimestampIterator( + mda_timestamp_data_manager) return MdaContent(data_iterator, timestamp_iterator) @@ -41,7 +49,8 @@ def __extract_data_files(self): continuous_time_files = [] for dataset in self.datasets: - data_files_from_single_dataset = self.__extract_data_files_for_single_dataset(dataset) + data_files_from_single_dataset = self.__extract_data_files_for_single_dataset( + dataset) mda_data_files.append(data_files_from_single_dataset[0]) timestamp_files.append(data_files_from_single_dataset[1]) continuous_time_files.append(data_files_from_single_dataset[2]) @@ -49,10 +58,12 @@ def __extract_data_files(self): return mda_data_files, timestamp_files, continuous_time_files def __extract_data_files_for_single_dataset(self, dataset): - data_from_current_dataset = self.__get_data_files_from_current_dataset(dataset) + data_from_current_dataset = self.__get_data_files_from_current_dataset( + dataset) if not self.__data_exist(data_from_current_dataset, dataset): - raise MissingDataException("Incomplete data in dataset " + str(dataset.name) + ", missing mda files") + raise MissingDataException( + "Incomplete data in dataset " + str(dataset.name) + ", missing mda files") return data_from_current_dataset, [dataset.get_mda_timestamps()], dataset.get_continuous_time() diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py index c9b26149b..5712e7d21 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py @@ -1,6 +1,9 @@ -from rec_to_nwb.processing.nwb.components.mda.fl_mda_builder import FlMdaBuilder -from rec_to_nwb.processing.nwb.components.mda.table_region_builder import TableRegionBuilder -from rec_to_nwb.processing.nwb.components.mda.fl_mda_extractor import FlMdaExtractor +from rec_to_nwb.processing.nwb.components.mda.fl_mda_builder import \ + FlMdaBuilder +from rec_to_nwb.processing.nwb.components.mda.fl_mda_extractor import \ + FlMdaExtractor +from rec_to_nwb.processing.nwb.components.mda.table_region_builder import \ + TableRegionBuilder class FlMdaManager: diff --git a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py index 064fc1ecd..453f0167d 100644 --- a/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/mda_data_manager.py @@ -1,5 +1,4 @@ -from mountainlab_pytools.mdaio import readmda, DiskReadMda - +from mountainlab_pytools.mdaio import DiskReadMda, readmda from numpy import isclose from rec_to_nwb.processing.nwb.common.data_manager import DataManager @@ -9,22 +8,22 @@ def __init__(self, directories, raw_to_uv): self.raw_to_uv = raw_to_uv DataManager.__init__(self, directories) # override + def read_data(self, dataset_id, file_id): # read the data from the MDA file, convert to uV and then return as int16 unless the data are already in uV - if not isclose(self.raw_to_uv,1.0): + if not isclose(self.raw_to_uv, 1.0): return (readmda(self.directories[dataset_id][file_id]) * self.raw_to_uv).astype('int16') else: return readmda(self.directories[dataset_id][file_id]).astype('int16') - #override to make more efficient + # override to make more efficient def _get_data_shape(self, dataset_id, file_num=0): - #use DiskReadMDA to return a two element list with the MxN data dimensions for the first file in a given dataset + # use DiskReadMDA to return a two element list with the MxN data dimensions for the first file in a given dataset return DiskReadMda(self.directories[dataset_id][file_num]).dims() - #override to make more efficient; not clear if this is used right now. + # override to make more efficient; not clear if this is used right now. def _get_number_of_rows_per_file(self): dataset_num = 0 # assume that all datasets have identical structures # all files may not have the same numbers of rows (e.g. channels) return [self.get_data_shape(dataset_num, file_num)[0] - for file_num in range(self.number_of_files_per_dataset)] - + for file_num in range(self.number_of_files_per_dataset)] diff --git a/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py index 1ff766170..d8214cf13 100644 --- a/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py @@ -2,18 +2,20 @@ import os from mountainlab_pytools.mdaio import readmda - -from rec_to_nwb.processing.nwb.common.timestamps_manager import TimestampManager +from rec_to_nwb.processing.nwb.common.timestamps_manager import \ + TimestampManager path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) class MdaTimestampDataManager(TimestampManager): def __init__(self, directories, continuous_time_directories): - TimestampManager.__init__(self, directories, continuous_time_directories) + TimestampManager.__init__( + self, directories, continuous_time_directories) def _get_timestamps(self, dataset_id): return readmda(self.directories[dataset_id][0]) diff --git a/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py b/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py index eece782b7..f4bcc6a8e 100644 --- a/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py +++ b/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py @@ -5,7 +5,8 @@ path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -19,4 +20,5 @@ def insert(self, data): self.processing_module.add(data) except TypeError as err: # log error instead - logger.error('Inserting data into processing module has failed: ' + str(err)) + logger.error( + 'Inserting data into processing module has failed: ' + str(err)) diff --git a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py index 78ac2ce3a..50e0d6d77 100644 --- a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py +++ b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_extractor.py @@ -1,5 +1,4 @@ import numpy as np - from rec_to_binaries.read_binaries import readTrodesExtractedDataFile @@ -20,9 +19,10 @@ def __merge_data_from_multiple_files(self, data): def __get_continuous_time_data_from_single_file(self, continuous_time_file): continuous_time = readTrodesExtractedDataFile(continuous_time_file) - new_array = np.ndarray(shape=(len(continuous_time['data']), 2), dtype='int64') - new_array[:,0] = continuous_time['data']['trodestime'] - new_array[:,1] = continuous_time['data']['adjusted_systime'] + new_array = np.ndarray( + shape=(len(continuous_time['data']), 2), dtype='int64') + new_array[:, 0] = continuous_time['data']['trodestime'] + new_array[:, 1] = continuous_time['data']['adjusted_systime'] # for i, single_timestamp in enumerate(continuous_time['data']): # new_array[i, 0] = single_timestamp[0] diff --git a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_injector.py b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_injector.py index c970fee83..00d6622b0 100644 --- a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_injector.py +++ b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_injector.py @@ -4,4 +4,3 @@ class SampleCountTimestampCorespondenceInjector: def inject(timeseries, processing_module_name, nwb_content): """insert timeseries series to nwb file""" nwb_content.processing[processing_module_name].add(timeseries) - diff --git a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_manager.py b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_manager.py index 348d7e45d..ef906e1be 100644 --- a/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_manager.py +++ b/rec_to_nwb/processing/nwb/components/sample_count_timestamp_corespondence/sample_count_timestamp_corespondence_manager.py @@ -1,13 +1,15 @@ -from rec_to_nwb.processing.nwb.components.sample_count_timestamp_corespondence.sample_count_timestamp_corespondence_extractor import \ - SampleCountTimestampCorespondenceExtractor from rec_to_nwb.processing.nwb.components.sample_count_timestamp_corespondence.sample_count_timestamp_corespondence_builder import \ SampleCountTimestampCorespondenceBuilder +from rec_to_nwb.processing.nwb.components.sample_count_timestamp_corespondence.sample_count_timestamp_corespondence_extractor import \ + SampleCountTimestampCorespondenceExtractor class SampleCountTimestampCorespondenceManager: def __init__(self, datasets): - self.continuous_time_files = [dataset.get_continuous_time() for dataset in datasets] - self.extractor = SampleCountTimestampCorespondenceExtractor(self.continuous_time_files) + self.continuous_time_files = [ + dataset.get_continuous_time() for dataset in datasets] + self.extractor = SampleCountTimestampCorespondenceExtractor( + self.continuous_time_files) def get_timeseries(self): data = self.extractor.extract() diff --git a/rec_to_nwb/processing/nwb/components/task/task_creator.py b/rec_to_nwb/processing/nwb/components/task/task_creator.py index 137cc7a2f..2b4600cc6 100644 --- a/rec_to_nwb/processing/nwb/components/task/task_creator.py +++ b/rec_to_nwb/processing/nwb/components/task/task_creator.py @@ -1,5 +1,4 @@ from hdmf.common.table import DynamicTable - from rec_to_nwb.processing.nwb.components.task.fl_task import FlTask from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/task/task_manager.py b/rec_to_nwb/processing/nwb/components/task/task_manager.py index 1366c9add..57b281e52 100644 --- a/rec_to_nwb/processing/nwb/components/task/task_manager.py +++ b/rec_to_nwb/processing/nwb/components/task/task_manager.py @@ -1,8 +1,8 @@ from hdmf.common.table import VectorData - from rec_to_nwb.processing.nwb.components.task.task_builder import TaskBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import validate_parameters_not_none +from rec_to_nwb.processing.tools.validate_parameters import \ + validate_parameters_not_none class TaskManager: diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py index a979e14a0..30054bd7e 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py @@ -1,7 +1,6 @@ import os import numpy as np - from rec_to_binaries.read_binaries import readTrodesExtractedDataFile @@ -43,9 +42,10 @@ def __merge_data_from_multiple_files(data): def __extract_single(self, hw_frame_count_filename): content = readTrodesExtractedDataFile( - self.raw_data_path + "/" + hw_frame_count_filename - )["data"] - camera_sample_frame_counts = np.ndarray(shape = (len(content), 2), dtype='uint32') + self.raw_data_path + "/" + hw_frame_count_filename + )["data"] + camera_sample_frame_counts = np.ndarray( + shape=(len(content), 2), dtype='uint32') for i, record in enumerate(content): if len(record) > 1: # from cameraHWSync @@ -54,5 +54,6 @@ def __extract_single(self, hw_frame_count_filename): else: # from cameraHWFrameCount (old dataset) camera_sample_frame_counts[i, 0] = record[0] # framecounts - camera_sample_frame_counts[i, 1] = i # timestamps (dummy) + # timestamps (dummy) + camera_sample_frame_counts[i, 1] = i return camera_sample_frame_counts diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py index 0e529fc2d..868c1afa1 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py @@ -3,4 +3,4 @@ class CameraSampleFrameCountsInjector: @staticmethod def inject(timeseries, processing_module_name, nwb_content): """insert timeseries series to nwb file""" - nwb_content.processing[processing_module_name].add(timeseries) \ No newline at end of file + nwb_content.processing[processing_module_name].add(timeseries) diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py index fd74794ea..5e081dbea 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py @@ -11,4 +11,4 @@ def __init__(self, raw_data_path): def get_timeseries(self): data = self.extractor.extract() builder = CameraSampleFrameCountsBuilder(data) - return builder.build() \ No newline at end of file + return builder.build() diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py index c9c972cdd..d01b08932 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_file.py @@ -1,5 +1,4 @@ from numpy.core.multiarray import ndarray - from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py index e42beb1ce..254e999d5 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_builder.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.nwb.components.video_files.fl_video_file import FlVideoFile +from rec_to_nwb.processing.nwb.components.video_files.fl_video_file import \ + FlVideoFile class FlVideoFilesBuilder: diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index 7b455656d..9e8806fd1 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -1,6 +1,9 @@ -from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_builder import FlVideoFilesBuilder -from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor import FlVideoFilesExtractor -from rec_to_nwb.processing.nwb.components.video_files.video_files_copy_maker import VideoFilesCopyMaker +from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_builder import \ + FlVideoFilesBuilder +from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor import \ + FlVideoFilesExtractor +from rec_to_nwb.processing.nwb.components.video_files.video_files_copy_maker import \ + VideoFilesCopyMaker from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -8,13 +11,14 @@ class FlVideoFilesManager: @beartype def __init__(self, raw_data_path: str, video_path: str, video_files_metadata: list, - convert_timestamps: bool = True, - return_timestamps: bool = True): - self.video_files_copy_maker = VideoFilesCopyMaker([video_files['name'] for video_files in video_files_metadata]) + convert_timestamps: bool = True, + return_timestamps: bool = True): + self.video_files_copy_maker = VideoFilesCopyMaker( + [video_files['name'] for video_files in video_files_metadata]) self.video_files_copy_maker.copy(raw_data_path, video_path) self.fl_video_files_extractor = FlVideoFilesExtractor(raw_data_path, video_files_metadata, - convert_timestamps=convert_timestamps, - return_timestamps=return_timestamps) + convert_timestamps=convert_timestamps, + return_timestamps=return_timestamps) self.fl_video_files_builder = FlVideoFilesBuilder() def get_video_files(self): diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py index 5106c88a4..e1b130d44 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py @@ -1,7 +1,8 @@ import os from shutil import copy as copy_file -from rec_to_nwb.processing.exceptions.invalid_path_exception import InvalidPathException +from rec_to_nwb.processing.exceptions.invalid_path_exception import \ + InvalidPathException class VideoFilesCopyMaker: @@ -14,4 +15,3 @@ def copy(self, src, dst): raise InvalidPathException(dst + ' is not valid path') for video_file in self.video_files_to_copy: copy_file(src + '/' + video_file, dst) - diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py index 14217bae4..8cb30475c 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py @@ -1,6 +1,5 @@ from pynwb import NWBFile from pynwb.behavior import BehavioralEvents - from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/time/continuous_time_extractor.py b/rec_to_nwb/processing/time/continuous_time_extractor.py index 1ec3f9f9d..6f721aaa0 100644 --- a/rec_to_nwb/processing/time/continuous_time_extractor.py +++ b/rec_to_nwb/processing/time/continuous_time_extractor.py @@ -1,11 +1,12 @@ import logging.config import os -import numpy as np +import numpy as np from rec_to_binaries.read_binaries import readTrodesExtractedDataFile path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -25,5 +26,5 @@ def get_continuous_time_dict_file(file): def get_continuous_time_array_file(file): logger.info('Reading continuous time array from: ' + str(file)) continuous_time = readTrodesExtractedDataFile(file) - return np.vstack((continuous_time['data']['trodestime'], - continuous_time['data']['adjusted_systime'])) \ No newline at end of file + return np.vstack((continuous_time['data']['trodestime'], + continuous_time['data']['adjusted_systime'])) diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index db6359ff8..0fca1451a 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -5,7 +5,8 @@ path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -19,20 +20,21 @@ def convert_timestamps(continuous_times, timestamps): timestamps: trodes timestamps relative to camera’s timing (from pos) ''' # add values at the end of continuous_times to make sure all values are within the range - max_vals = np.asarray([[np.iinfo(np.int64).max],[np.iinfo(np.int64).max]], dtype=np.int64) + max_vals = np.asarray( + [[np.iinfo(np.int64).max], [np.iinfo(np.int64).max]], dtype=np.int64) continuous_times = np.hstack((continuous_times, max_vals)) # look up the timestamps in the first row of continuous_times - timestamp_ind = np.searchsorted(continuous_times[0,:], timestamps) - converted_timestamps = continuous_times[1,timestamp_ind] / 1E9 + timestamp_ind = np.searchsorted(continuous_times[0, :], timestamps) + converted_timestamps = continuous_times[1, timestamp_ind] / 1E9 # get rid of any that are not exact - not_found = timestamps != continuous_times[0,timestamp_ind] + not_found = timestamps != continuous_times[0, timestamp_ind] #print(f'in Timestamp Converter: {sum(not_found)} timestamps not found in continuous time file') converted_timestamps[not_found] = np.nan return converted_timestamps - #old code + # old code # converted_timestamps = np.ndarray(shape=[len(timestamps), ], dtype="float64") # for i, timestamp in enumerate(timestamps): # key = str(timestamp) diff --git a/rec_to_nwb/processing/tools/data_scanner.py b/rec_to_nwb/processing/tools/data_scanner.py index cbe744aca..cfa594ecf 100644 --- a/rec_to_nwb/processing/tools/data_scanner.py +++ b/rec_to_nwb/processing/tools/data_scanner.py @@ -1,7 +1,8 @@ import fnmatch import os -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager from rec_to_nwb.processing.tools.beartype.beartype import beartype from rec_to_nwb.processing.tools.dataset import Dataset @@ -22,30 +23,36 @@ def __init__(self, data_path: str, animal_name: str, nwb_metadata: MetadataManag @beartype def get_all_epochs(self, date: str) -> list: all_datasets = [] - directories = os.listdir(self.data_path + '/' + self.animal_name + '/preprocessing/' + date) + directories = os.listdir( + self.data_path + '/' + self.animal_name + '/preprocessing/' + date) FileSorter.sort_filenames(directories) for directory in directories: if directory.startswith(date): - dataset_name = (directory.split('_')[2] + '_' + directory.split('_')[3]).split('.')[0] + dataset_name = (directory.split( + '_')[2] + '_' + directory.split('_')[3]).split('.')[0] if not dataset_name in all_datasets: all_datasets.append(dataset_name) return all_datasets @beartype def get_all_data_from_dataset(self, date: str) -> list: - self.__check_if_path_exists(self.data_path + '/' + self.animal_name + '/preprocessing/' + date) + self.__check_if_path_exists( + self.data_path + '/' + self.animal_name + '/preprocessing/' + date) return os.listdir(self.data_path + '/' + self.animal_name + '/preprocessing/' + date) @beartype def extract_data_from_date_folder(self, date: str): - self.data = {self.animal_name: self.__extract_experiments(self.data_path, self.animal_name, [date])} + self.data = {self.animal_name: self.__extract_experiments( + self.data_path, self.animal_name, [date])} @beartype def extract_data_from_dates_folders(self, dates: list): - self.data = {self.animal_name: self.__extract_experiments(self.data_path, self.animal_name, dates)} + self.data = {self.animal_name: self.__extract_experiments( + self.data_path, self.animal_name, dates)} def extract_data_from_all_dates_folders(self): - self.data = {self.animal_name: self.__extract_experiments(self.data_path, self.animal_name, None)} + self.data = {self.animal_name: self.__extract_experiments( + self.data_path, self.animal_name, None)} def __extract_experiments(self, data_path, animal_name, dates): preprocessing_path = data_path + animal_name + '/preprocessing' @@ -69,7 +76,8 @@ def __extract_datasets(date_path): existing_datasets.add(dataset_name) for dataset in datasets.values(): if dataset_name == dataset.name: - dataset.add_data_to_dataset(date_path + '/' + directory + '/', dir_last_part.pop()) + dataset.add_data_to_dataset( + date_path + '/' + directory + '/', dir_last_part.pop()) return datasets @beartype @@ -103,4 +111,5 @@ def get_probes_from_directory(path: str): def __check_if_path_exists(self, path): if not (os.path.exists(path)): - raise MissingDataException('missing ' + self.data_path + ' directory') + raise MissingDataException( + 'missing ' + self.data_path + ' directory') diff --git a/rec_to_nwb/processing/tools/dataset.py b/rec_to_nwb/processing/tools/dataset.py index 690db7bed..af222ab7d 100644 --- a/rec_to_nwb/processing/tools/dataset.py +++ b/rec_to_nwb/processing/tools/dataset.py @@ -29,4 +29,4 @@ def get_continuous_time(self): for file in self.get_all_data_from_dataset('time'): if file.endswith('continuoustime.dat'): return self.get_data_path_from_dataset('time') + file - return None \ No newline at end of file + return None diff --git a/rec_to_nwb/processing/tools/file_downloader.py b/rec_to_nwb/processing/tools/file_downloader.py index 7187714f9..1631ff74d 100644 --- a/rec_to_nwb/processing/tools/file_downloader.py +++ b/rec_to_nwb/processing/tools/file_downloader.py @@ -7,12 +7,13 @@ import os import requests - -from rec_to_nwb.processing.tools.abstract_file_downloader import AbstractFileDownloader +from rec_to_nwb.processing.tools.abstract_file_downloader import \ + AbstractFileDownloader path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/tools/file_sorter.py b/rec_to_nwb/processing/tools/file_sorter.py index d002f92fa..cfc6ea775 100644 --- a/rec_to_nwb/processing/tools/file_sorter.py +++ b/rec_to_nwb/processing/tools/file_sorter.py @@ -5,7 +5,7 @@ def sort_filenames(filenames): # Check if these are mda files # There can be a log file along with mda files, so check whether any file is an mda file filenames_mda = [i for i in filenames if '.mda' in i] - if len(filenames_mda) > 0: # if at least one mda file + if len(filenames_mda) > 0: # if at least one mda file # sort by length first because the ntrode numbers are 1,2,.., 10, ... filenames.sort(key=lambda item: (len(item), item)) else: diff --git a/rec_to_nwb/processing/tools/filter_probe_by_type.py b/rec_to_nwb/processing/tools/filter_probe_by_type.py index d310b08f8..470c7846f 100644 --- a/rec_to_nwb/processing/tools/filter_probe_by_type.py +++ b/rec_to_nwb/processing/tools/filter_probe_by_type.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.exceptions.invalid_metadata_exception import InvalidMetadataException +from rec_to_nwb.processing.exceptions.invalid_metadata_exception import \ + InvalidMetadataException def filter_probe_by_type(probes_content, device_type): @@ -6,5 +7,6 @@ def filter_probe_by_type(probes_content, device_type): if probe_metadata['probe_type'] == device_type: return probe_metadata if device_type not in [probe_metadata['probe_type'] for probe_metadata in probes_content]: - raise InvalidMetadataException('there is not matching device type for metadata electrode_group in probe.yml schemas: ' + str(device_type)) + raise InvalidMetadataException( + 'there is not matching device type for metadata electrode_group in probe.yml schemas: ' + str(device_type)) return None diff --git a/rec_to_nwb/processing/tools/validate_parameters.py b/rec_to_nwb/processing/tools/validate_parameters.py index acf848549..511ae255d 100644 --- a/rec_to_nwb/processing/tools/validate_parameters.py +++ b/rec_to_nwb/processing/tools/validate_parameters.py @@ -1,5 +1,7 @@ -from rec_to_nwb.processing.exceptions.not_equal_param_length_exception import NotEqualParamLengthException -from rec_to_nwb.processing.exceptions.none_param_exception import NoneParamException +from rec_to_nwb.processing.exceptions.none_param_exception import \ + NoneParamException +from rec_to_nwb.processing.exceptions.not_equal_param_length_exception import \ + NotEqualParamLengthException def validate_parameters_not_none(class_name, *args): @@ -12,5 +14,6 @@ def validate_parameters_equal_length(class_name, *args): previous_arg = args[0] for arg in args: if len(arg) != len(previous_arg): - raise NotEqualParamLengthException('Parameters lengths are not equal in ' + class_name) + raise NotEqualParamLengthException( + 'Parameters lengths are not equal in ' + class_name) previous_arg = arg diff --git a/rec_to_nwb/processing/validation/associated_files_validation.py b/rec_to_nwb/processing/validation/associated_files_validation.py index 00f1c7cec..b80544808 100644 --- a/rec_to_nwb/processing/validation/associated_files_validation.py +++ b/rec_to_nwb/processing/validation/associated_files_validation.py @@ -1,11 +1,13 @@ import logging.config import os -from rec_to_nwb.processing.validation.associated_files_validation_summary import AssociatedFilesValidationSummary +from rec_to_nwb.processing.validation.associated_files_validation_summary import \ + AssociatedFilesValidationSummary from rec_to_nwb.processing.validation.validator import Validator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -16,5 +18,6 @@ def __init__(self, associated_files): def create_summary(self): if len(self.associated_files) == 0: - logger.info("There are no associated_files defined in metadata.yml file.") + logger.info( + "There are no associated_files defined in metadata.yml file.") return AssociatedFilesValidationSummary(self.associated_files) diff --git a/rec_to_nwb/processing/validation/associated_files_validation_summary.py b/rec_to_nwb/processing/validation/associated_files_validation_summary.py index a27f0c6af..0c17d6cfd 100644 --- a/rec_to_nwb/processing/validation/associated_files_validation_summary.py +++ b/rec_to_nwb/processing/validation/associated_files_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class AssociatedFilesValidationSummary(ValidationSummary): @@ -8,4 +9,3 @@ def __init__(self, associated_files): def is_valid(self): return isinstance(self.associated_files, list) - diff --git a/rec_to_nwb/processing/validation/metadata_section_validator.py b/rec_to_nwb/processing/validation/metadata_section_validator.py index a0eae78ef..d687b3719 100644 --- a/rec_to_nwb/processing/validation/metadata_section_validator.py +++ b/rec_to_nwb/processing/validation/metadata_section_validator.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException class MetadataSectionValidator: @@ -14,9 +15,11 @@ def validate_sections(self): if 'institution' not in self.metadata: raise MissingDataException('metadata is missing institution') if 'experiment_description' not in self.metadata: - raise MissingDataException('metadata is missing experiment_description') + raise MissingDataException( + 'metadata is missing experiment_description') if 'session_description' not in self.metadata: - raise MissingDataException('metadata is missing session_description') + raise MissingDataException( + 'metadata is missing session_description') if 'session_id' not in self.metadata: raise MissingDataException('metadata is missing session_id') if 'subject' not in self.metadata: @@ -32,12 +35,15 @@ def validate_sections(self): if 'associated_files' not in self.metadata: raise MissingDataException('metadata is missing associated_files') if 'associated_video_files' not in self.metadata: - raise MissingDataException('metadata is missing associated_video_files') + raise MissingDataException( + 'metadata is missing associated_video_files') if 'times_period_multiplier' not in self.metadata: - raise MissingDataException('metadata is missing times_period_multiplier') + raise MissingDataException( + 'metadata is missing times_period_multiplier') if 'behavioral_events' not in self.metadata: raise MissingDataException('metadata is missing behavioral_events') if 'electrode_groups' not in self.metadata: raise MissingDataException('metadata is missing electrode_groups') if 'ntrode_electrode_group_channel_map' not in self.metadata: - raise MissingDataException('metadata is missing ntrode_electrode_group_channel_map') + raise MissingDataException( + 'metadata is missing ntrode_electrode_group_channel_map') diff --git a/rec_to_nwb/processing/validation/metadata_validation_summary.py b/rec_to_nwb/processing/validation/metadata_validation_summary.py index b457b1331..0cea97d4e 100644 --- a/rec_to_nwb/processing/validation/metadata_validation_summary.py +++ b/rec_to_nwb/processing/validation/metadata_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class MetadataValidationSummary(ValidationSummary): diff --git a/rec_to_nwb/processing/validation/metadata_validator.py b/rec_to_nwb/processing/validation/metadata_validator.py index d72d825e6..d002f1b78 100644 --- a/rec_to_nwb/processing/validation/metadata_validator.py +++ b/rec_to_nwb/processing/validation/metadata_validator.py @@ -1,7 +1,9 @@ import os -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException -from rec_to_nwb.processing.validation.metadata_validation_summary import MetadataValidationSummary +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException +from rec_to_nwb.processing.validation.metadata_validation_summary import \ + MetadataValidationSummary from rec_to_nwb.processing.validation.validator import Validator @@ -15,7 +17,7 @@ class MetadataValidator(Validator): Methods: get_missing_metadata() """ - + def __init__(self, metadata_path, probes_paths): self.probes_paths = probes_paths self.metadata_path = metadata_path @@ -35,7 +37,7 @@ def __get_missing_metadata(self): Returns: list of strings: list of all missing yml files """ - + missing_data = [] if not (os.path.exists(self.metadata_path)): missing_data.append(self.metadata_path) diff --git a/rec_to_nwb/processing/validation/not_empty_validation_summary.py b/rec_to_nwb/processing/validation/not_empty_validation_summary.py index 5a5b339db..1ee80cedb 100644 --- a/rec_to_nwb/processing/validation/not_empty_validation_summary.py +++ b/rec_to_nwb/processing/validation/not_empty_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class NotEmptyValidationSummary(ValidationSummary): @@ -8,4 +9,3 @@ def __init__(self, parameter): def is_valid(self): return bool(self.parameter) - diff --git a/rec_to_nwb/processing/validation/not_empty_validator.py b/rec_to_nwb/processing/validation/not_empty_validator.py index fdc504d8b..1a21e6e71 100644 --- a/rec_to_nwb/processing/validation/not_empty_validator.py +++ b/rec_to_nwb/processing/validation/not_empty_validator.py @@ -1,5 +1,7 @@ -from rec_to_nwb.processing.exceptions.none_param_exception import NoneParamException -from rec_to_nwb.processing.validation.not_empty_validation_summary import NotEmptyValidationSummary +from rec_to_nwb.processing.exceptions.none_param_exception import \ + NoneParamException +from rec_to_nwb.processing.validation.not_empty_validation_summary import \ + NotEmptyValidationSummary from rec_to_nwb.processing.validation.validator import Validator diff --git a/rec_to_nwb/processing/validation/ntrode_validation_summary.py b/rec_to_nwb/processing/validation/ntrode_validation_summary.py index 95a2b249e..cf301419e 100644 --- a/rec_to_nwb/processing/validation/ntrode_validation_summary.py +++ b/rec_to_nwb/processing/validation/ntrode_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class NTrodeValidationSummary(ValidationSummary): diff --git a/rec_to_nwb/processing/validation/ntrode_validator.py b/rec_to_nwb/processing/validation/ntrode_validator.py index c18cccdaf..6ac71cbb7 100644 --- a/rec_to_nwb/processing/validation/ntrode_validator.py +++ b/rec_to_nwb/processing/validation/ntrode_validator.py @@ -1,19 +1,26 @@ import logging.config import os -from rec_to_nwb.processing.exceptions.invalid_header_exception import InvalidHeaderException -from rec_to_nwb.processing.exceptions.invalid_metadata_exception import InvalidMetadataException +from rec_to_nwb.processing.exceptions.invalid_header_exception import \ + InvalidHeaderException +from rec_to_nwb.processing.exceptions.invalid_metadata_exception import \ + InvalidMetadataException from rec_to_nwb.processing.header.module.header import Header from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.count_electrodes_in_ntrode import count_electrodes_in_ntrode -from rec_to_nwb.processing.tools.count_electrodes_in_probe import count_electrodes_in_probe -from rec_to_nwb.processing.tools.filter_probe_by_type import filter_probe_by_type -from rec_to_nwb.processing.validation.ntrode_validation_summary import NTrodeValidationSummary +from rec_to_nwb.processing.tools.count_electrodes_in_ntrode import \ + count_electrodes_in_ntrode +from rec_to_nwb.processing.tools.count_electrodes_in_probe import \ + count_electrodes_in_probe +from rec_to_nwb.processing.tools.filter_probe_by_type import \ + filter_probe_by_type +from rec_to_nwb.processing.validation.ntrode_validation_summary import \ + NTrodeValidationSummary from rec_to_nwb.processing.validation.validator import Validator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -28,23 +35,27 @@ def __init__(self, metadata: dict, header: Header, probes_metadata: list): def create_summary(self): ntrodes = self.metadata['ntrode_electrode_group_channel_map'] if len(ntrodes) == 0: - raise InvalidMetadataException("There are no ntrodes defined in metadata.yml file.") + raise InvalidMetadataException( + "There are no ntrodes defined in metadata.yml file.") if self.header is None or \ self.header.configuration.spike_configuration is None or \ self.header.configuration.spike_configuration.spike_n_trodes is None: - raise InvalidHeaderException("Rec header does not contain spike_n_trodes data") + raise InvalidHeaderException( + "Rec header does not contain spike_n_trodes data") spike_ntrodes = self.header.configuration.spike_configuration.spike_n_trodes ntrodes_num = len(ntrodes) spike_ntrodes_num = len(spike_ntrodes) - self.validate_ntrode_metadata_with_probe_metadata(self.metadata, self.probes_metadata) + self.validate_ntrode_metadata_with_probe_metadata( + self.metadata, self.probes_metadata) return NTrodeValidationSummary(ntrodes_num, spike_ntrodes_num) @staticmethod def validate_ntrode_metadata_with_probe_metadata(metadata, probes_metadata): for electrode_group in metadata['electrode_groups']: - probe_metadata = filter_probe_by_type(probes_metadata, electrode_group['device_type']) + probe_metadata = filter_probe_by_type( + probes_metadata, electrode_group['device_type']) electrodes_in_probe = count_electrodes_in_probe(probe_metadata) electrodes_in_group = count_electrodes_in_ntrode( metadata['ntrode_electrode_group_channel_map'], @@ -56,5 +67,6 @@ def validate_ntrode_metadata_with_probe_metadata(metadata, probes_metadata): 'Probe_type: ' + str(electrode_group['device_type']) + ' electrodes in this probe_type: ' + str(electrodes_in_probe) + '. Ntrode_metadata for electrode_group of id: ' + str(electrode_group['id']) + - ' electrodes in this electrode_group: ' + str(electrodes_in_group) + ' electrodes in this electrode_group: ' + + str(electrodes_in_group) ) diff --git a/rec_to_nwb/processing/validation/path_validation_summary.py b/rec_to_nwb/processing/validation/path_validation_summary.py index d242dd43d..8bc207b7a 100644 --- a/rec_to_nwb/processing/validation/path_validation_summary.py +++ b/rec_to_nwb/processing/validation/path_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class PathValidationSummary(ValidationSummary): diff --git a/rec_to_nwb/processing/validation/path_validator.py b/rec_to_nwb/processing/validation/path_validator.py index 31357bea9..7def661d8 100644 --- a/rec_to_nwb/processing/validation/path_validator.py +++ b/rec_to_nwb/processing/validation/path_validator.py @@ -1,6 +1,7 @@ import os -from rec_to_nwb.processing.validation.path_validation_summary import PathValidationSummary +from rec_to_nwb.processing.validation.path_validation_summary import \ + PathValidationSummary from rec_to_nwb.processing.validation.validator import Validator @@ -12,4 +13,3 @@ def create_summary(self): if not os.path.isdir(self.path): raise NotADirectoryError(self.path + ' is not a directory') return PathValidationSummary() - diff --git a/rec_to_nwb/processing/validation/preprocessing_validation_summary.py b/rec_to_nwb/processing/validation/preprocessing_validation_summary.py index d03ac07f4..ca62dbdee 100644 --- a/rec_to_nwb/processing/validation/preprocessing_validation_summary.py +++ b/rec_to_nwb/processing/validation/preprocessing_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class PreprocessingValidationSummary(ValidationSummary): diff --git a/rec_to_nwb/processing/validation/preprocessing_validator.py b/rec_to_nwb/processing/validation/preprocessing_validator.py index dbfc024fc..f24b6e4ee 100644 --- a/rec_to_nwb/processing/validation/preprocessing_validator.py +++ b/rec_to_nwb/processing/validation/preprocessing_validator.py @@ -1,7 +1,9 @@ import os -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException -from rec_to_nwb.processing.validation.preprocessing_validation_summary import PreprocessingValidationSummary +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException +from rec_to_nwb.processing.validation.preprocessing_validation_summary import \ + PreprocessingValidationSummary from rec_to_nwb.processing.validation.validator import Validator @@ -33,7 +35,8 @@ def create_summary(self): message = '' if missing_preprocessing_data: for missing_preprocessing_file in missing_preprocessing_data: - message += missing_preprocessing_file[0] + ' from epoch ' + missing_preprocessing_file[1] + '\n' + message += missing_preprocessing_file[0] + \ + ' from epoch ' + missing_preprocessing_file[1] + '\n' raise MissingDataException(message + "are missing") return PreprocessingValidationSummary(missing_preprocessing_data) diff --git a/rec_to_nwb/processing/validation/task_validation_summary.py b/rec_to_nwb/processing/validation/task_validation_summary.py index 900fa9fd2..9dc53006f 100644 --- a/rec_to_nwb/processing/validation/task_validation_summary.py +++ b/rec_to_nwb/processing/validation/task_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class TaskValidationSummary(ValidationSummary): @@ -8,4 +9,3 @@ def __init__(self, tasks): def is_valid(self): return isinstance(self.tasks, list) - diff --git a/rec_to_nwb/processing/validation/task_validator.py b/rec_to_nwb/processing/validation/task_validator.py index 36638d569..e9aaf7aea 100644 --- a/rec_to_nwb/processing/validation/task_validator.py +++ b/rec_to_nwb/processing/validation/task_validator.py @@ -1,5 +1,7 @@ -from rec_to_nwb.processing.exceptions.invalid_metadata_exception import InvalidMetadataException -from rec_to_nwb.processing.validation.task_validation_summary import TaskValidationSummary +from rec_to_nwb.processing.exceptions.invalid_metadata_exception import \ + InvalidMetadataException +from rec_to_nwb.processing.validation.task_validation_summary import \ + TaskValidationSummary from rec_to_nwb.processing.validation.validator import Validator @@ -10,5 +12,6 @@ def __init__(self, tasks): def create_summary(self): if len(self.tasks) == 0: - raise InvalidMetadataException("There are no tasks defined in metadata.yml file.") + raise InvalidMetadataException( + "There are no tasks defined in metadata.yml file.") return TaskValidationSummary(self.tasks) diff --git a/rec_to_nwb/processing/validation/validation_registrator.py b/rec_to_nwb/processing/validation/validation_registrator.py index e61778760..5e8aaf00c 100644 --- a/rec_to_nwb/processing/validation/validation_registrator.py +++ b/rec_to_nwb/processing/validation/validation_registrator.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.exceptions.invalid_input_exception import InvalidInputException +from rec_to_nwb.processing.exceptions.invalid_input_exception import \ + InvalidInputException from rec_to_nwb.processing.validation.validator import Validator @@ -15,4 +16,5 @@ def validate(self): for validator in self.validators: result = validator.create_summary() if not result.is_valid: - raise InvalidInputException("Validation: " + str(type(validator)) + "has failed!") + raise InvalidInputException( + "Validation: " + str(type(validator)) + "has failed!") diff --git a/rec_to_nwb/processing/validation/xml_files_validation.py b/rec_to_nwb/processing/validation/xml_files_validation.py index 4e2052f5b..97510150d 100644 --- a/rec_to_nwb/processing/validation/xml_files_validation.py +++ b/rec_to_nwb/processing/validation/xml_files_validation.py @@ -1,8 +1,11 @@ import os -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException -from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator -from rec_to_nwb.processing.validation.xml_files_validation_summary import XmlFilesValidationSummary +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException +from rec_to_nwb.processing.validation.validation_registrator import \ + ValidationRegistrator +from rec_to_nwb.processing.validation.xml_files_validation_summary import \ + XmlFilesValidationSummary class XmlFilesValidator(ValidationRegistrator): @@ -11,5 +14,6 @@ def __init__(self, path): def create_summary(self): if not os.path.exists(self.path): - raise MissingDataException('xml file ' + self.path + ' does not exist!') + raise MissingDataException( + 'xml file ' + self.path + ' does not exist!') return XmlFilesValidationSummary() diff --git a/rec_to_nwb/processing/validation/xml_files_validation_summary.py b/rec_to_nwb/processing/validation/xml_files_validation_summary.py index b65b87b9f..3483d47da 100644 --- a/rec_to_nwb/processing/validation/xml_files_validation_summary.py +++ b/rec_to_nwb/processing/validation/xml_files_validation_summary.py @@ -1,4 +1,5 @@ -from rec_to_nwb.processing.validation.validation_summary import ValidationSummary +from rec_to_nwb.processing.validation.validation_summary import \ + ValidationSummary class XmlFilesValidationSummary(ValidationSummary): From 722194c569471c23fdb5b8f1889463324179c1b9 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 15:01:46 -0700 Subject: [PATCH 081/205] Minor formatting --- .../processing/builder/nwb_file_builder.py | 184 +++++++++++------- .../originators/video_files_originator.py | 23 ++- .../video_files/fl_video_files_extractor.py | 32 +-- .../video_files/video_files_creator.py | 3 +- 4 files changed, 152 insertions(+), 90 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index c87cbcad9..f7357dee4 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -6,60 +6,92 @@ import pytz from pynwb import NWBHDF5IO, NWBFile from pynwb.file import Subject - -from rec_to_nwb.processing.builder.originators.analog_originator import AnalogOriginator -from rec_to_nwb.processing.builder.originators.associated_files_originator import AssociatedFilesOriginator -from rec_to_nwb.processing.builder.originators.camera_device_originator import CameraDeviceOriginator +from rec_to_nwb.processing.builder.originators.analog_originator import \ + AnalogOriginator +from rec_to_nwb.processing.builder.originators.associated_files_originator import \ + AssociatedFilesOriginator +from rec_to_nwb.processing.builder.originators.camera_device_originator import \ + CameraDeviceOriginator from rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator import \ CameraSampleFrameCountsOriginator -from rec_to_nwb.processing.builder.originators.data_acq_device_originator import DataAcqDeviceOriginator -from rec_to_nwb.processing.builder.originators.dio_originator import DioOriginator -from rec_to_nwb.processing.builder.originators.electrode_group_originator import ElectrodeGroupOriginator -from rec_to_nwb.processing.builder.originators.electrodes_extension_originator import ElectrodesExtensionOriginator -from rec_to_nwb.processing.builder.originators.electrodes_originator import ElectrodesOriginator -from rec_to_nwb.processing.builder.originators.epochs_originator import EpochsOriginator -from rec_to_nwb.processing.builder.originators.header_device_originator import HeaderDeviceOriginator -from rec_to_nwb.processing.builder.originators.mda_invalid_time_originator import MdaInvalidTimeOriginator -from rec_to_nwb.processing.builder.originators.mda_originator import MdaOriginator -from rec_to_nwb.processing.builder.originators.mda_valid_time_originator import MdaValidTimeOriginator -from rec_to_nwb.processing.builder.originators.pos_invalid_originator import PosInvalidTimeOriginator -from rec_to_nwb.processing.builder.originators.pos_valid_time_originator import PosValidTimeOriginator -from rec_to_nwb.processing.builder.originators.position_originator import PositionOriginator -from rec_to_nwb.processing.builder.originators.probe_originator import ProbeOriginator -from rec_to_nwb.processing.builder.originators.processing_module_originator import ProcessingModuleOriginator +from rec_to_nwb.processing.builder.originators.data_acq_device_originator import \ + DataAcqDeviceOriginator +from rec_to_nwb.processing.builder.originators.dio_originator import \ + DioOriginator +from rec_to_nwb.processing.builder.originators.electrode_group_originator import \ + ElectrodeGroupOriginator +from rec_to_nwb.processing.builder.originators.electrodes_extension_originator import \ + ElectrodesExtensionOriginator +from rec_to_nwb.processing.builder.originators.electrodes_originator import \ + ElectrodesOriginator +from rec_to_nwb.processing.builder.originators.epochs_originator import \ + EpochsOriginator +from rec_to_nwb.processing.builder.originators.header_device_originator import \ + HeaderDeviceOriginator +from rec_to_nwb.processing.builder.originators.mda_invalid_time_originator import \ + MdaInvalidTimeOriginator +from rec_to_nwb.processing.builder.originators.mda_originator import \ + MdaOriginator +from rec_to_nwb.processing.builder.originators.mda_valid_time_originator import \ + MdaValidTimeOriginator +from rec_to_nwb.processing.builder.originators.pos_invalid_originator import \ + PosInvalidTimeOriginator +from rec_to_nwb.processing.builder.originators.pos_valid_time_originator import \ + PosValidTimeOriginator +from rec_to_nwb.processing.builder.originators.position_originator import \ + PositionOriginator +from rec_to_nwb.processing.builder.originators.probe_originator import \ + ProbeOriginator +from rec_to_nwb.processing.builder.originators.processing_module_originator import \ + ProcessingModuleOriginator from rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator import \ SampleCountTimestampCorespondenceOriginator -from rec_to_nwb.processing.builder.originators.shanks_electrodes_originator import ShanksElectrodeOriginator -from rec_to_nwb.processing.builder.originators.shanks_originator import ShanksOriginator -from rec_to_nwb.processing.builder.originators.task_originator import TaskOriginator -from rec_to_nwb.processing.builder.originators.video_files_originator import VideoFilesOriginator -from rec_to_nwb.processing.header.header_checker.header_processor import HeaderProcessor -from rec_to_nwb.processing.header.header_checker.rec_file_finder import RecFileFinder +from rec_to_nwb.processing.builder.originators.shanks_electrodes_originator import \ + ShanksElectrodeOriginator +from rec_to_nwb.processing.builder.originators.shanks_originator import \ + ShanksOriginator +from rec_to_nwb.processing.builder.originators.task_originator import \ + TaskOriginator +from rec_to_nwb.processing.builder.originators.video_files_originator import \ + VideoFilesOriginator +from rec_to_nwb.processing.header.header_checker.header_processor import \ + HeaderProcessor +from rec_to_nwb.processing.header.header_checker.rec_file_finder import \ + RecFileFinder from rec_to_nwb.processing.header.module.header import Header -from rec_to_nwb.processing.metadata.corrupted_data_manager import CorruptedDataManager +from rec_to_nwb.processing.metadata.corrupted_data_manager import \ + CorruptedDataManager from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager -from rec_to_nwb.processing.nwb.common.session_time_extractor import SessionTimeExtractor -from rec_to_nwb.processing.nwb.components.device.device_factory import DeviceFactory -from rec_to_nwb.processing.nwb.components.device.device_injector import DeviceInjector -from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import FlProbeManager +from rec_to_nwb.processing.nwb.common.session_time_extractor import \ + SessionTimeExtractor +from rec_to_nwb.processing.nwb.components.device.device_factory import \ + DeviceFactory +from rec_to_nwb.processing.nwb.components.device.device_injector import \ + DeviceInjector +from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import \ + FlProbeManager from rec_to_nwb.processing.tools.beartype.beartype import beartype from rec_to_nwb.processing.tools.data_scanner import DataScanner -from rec_to_nwb.processing.validation.associated_files_validator import AssociatedFilesExistanceValidator -from rec_to_nwb.processing.validation.metadata_section_validator import MetadataSectionValidator +from rec_to_nwb.processing.validation.associated_files_validator import \ + AssociatedFilesExistanceValidator +from rec_to_nwb.processing.validation.metadata_section_validator import \ + MetadataSectionValidator from rec_to_nwb.processing.validation.ntrode_validator import NTrodeValidator from rec_to_nwb.processing.validation.path_validator import PathValidator -from rec_to_nwb.processing.validation.preprocessing_validator import PreprocessingValidator +from rec_to_nwb.processing.validation.preprocessing_validator import \ + PreprocessingValidator from rec_to_nwb.processing.validation.task_validator import TaskValidator -from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator - +from rec_to_nwb.processing.validation.validation_registrator import \ + ValidationRegistrator path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) # switches for old dataset timestamp processing (hard-coded for now) -_CONVERT_OLD_TIMESTAMPS = True #False -_RETURN_OLD_TIMESTAMPS = True #False +_CONVERT_OLD_TIMESTAMPS = True # False +_RETURN_OLD_TIMESTAMPS = True # False class NWBFileBuilder: @@ -99,7 +131,7 @@ def __init__( output_file: str = 'output.nwb', reconfig_header: str = '', is_old_dataset: bool = False, - session_start_time = None, + session_start_time=None, ): logger.info('NWBFileBuilder initialization') @@ -126,11 +158,13 @@ def __init__( metadata_section_validator = MetadataSectionValidator(self.metadata) metadata_section_validator.validate_sections() if self.metadata.get('associated_files', []): - associated_files_existance_validator = AssociatedFilesExistanceValidator(self.metadata['associated_files']) + associated_files_existance_validator = AssociatedFilesExistanceValidator( + self.metadata['associated_files']) if associated_files_existance_validator.files_exist(): pass else: - raise Exception("one or more associated file listed in metadata.yaml file does not exist") + raise Exception( + "one or more associated file listed in metadata.yaml file does not exist") self.probes = nwb_metadata.probes self.process_dio = process_dio self.process_mda = process_mda @@ -162,23 +196,26 @@ def __init__( ) if not preprocessing_path: - header_path = None # default + header_path = None # default else: header_path = (self.preprocessing_out + '/' + self.animal_name + '/headers/' + self.date) os.makedirs(header_path, exist_ok=True) - header_file = HeaderProcessor.process_headers(rec_files_list, copy_dir=header_path) + header_file = HeaderProcessor.process_headers( + rec_files_list, copy_dir=header_path) if reconfig_header: self.header = Header(reconfig_header) else: self.header = Header(header_file) - self.data_scanner = DataScanner(self.preprocessing_path, animal_name, nwb_metadata) + self.data_scanner = DataScanner( + self.preprocessing_path, animal_name, nwb_metadata) self.dataset_names = self.data_scanner.get_all_epochs(date) - full_data_path = os.path.join(self.preprocessing_path, - animal_name + '/preprocessing/' + date) + full_data_path = os.path.join(self.preprocessing_path, + animal_name + '/preprocessing/' + date) validation_registrator = ValidationRegistrator() - validation_registrator.register(NTrodeValidator(self.metadata, self.header, self.probes)) + validation_registrator.register(NTrodeValidator( + self.metadata, self.header, self.probes)) validation_registrator.register(PreprocessingValidator( full_data_path, self.dataset_names, @@ -191,19 +228,23 @@ def __init__( self.corrupted_data_manager = CorruptedDataManager(self.metadata) - self.shanks_electrode_originator = ShanksElectrodeOriginator(self.probes, self.metadata) + self.shanks_electrode_originator = ShanksElectrodeOriginator( + self.probes, self.metadata) self.shanks_originator = ShanksOriginator(self.probes, self.metadata) self.fl_probe_manager = FlProbeManager(self.probes) self.device_injector = DeviceInjector() self.device_factory = DeviceFactory() - self.electrode_group_originator = ElectrodeGroupOriginator(self.metadata) - self.electrodes_originator = ElectrodesOriginator(self.probes, self.metadata) + self.electrode_group_originator = ElectrodeGroupOriginator( + self.metadata) + self.electrodes_originator = ElectrodesOriginator( + self.probes, self.metadata) if self.is_old_dataset: if not session_start_time: - raise ValueError('session_start_time is required for old dataset.') + raise ValueError( + 'session_start_time is required for old dataset.') self.session_start_time = session_start_time else: session_time_extractor = SessionTimeExtractor( @@ -214,15 +255,19 @@ def __init__( ) self.session_start_time = session_time_extractor.get_session_start_time() - self.mda_valid_time_originator = MdaValidTimeOriginator(self.header, self.metadata) - self.mda_invalid_time_originator = MdaInvalidTimeOriginator(self.header, self.metadata) + self.mda_valid_time_originator = MdaValidTimeOriginator( + self.header, self.metadata) + self.mda_invalid_time_originator = MdaInvalidTimeOriginator( + self.header, self.metadata) self.pos_valid_time_originator = PosValidTimeOriginator(self.metadata) - self.pos_invalid_time_originator = PosInvalidTimeOriginator(self.metadata) + self.pos_invalid_time_originator = PosInvalidTimeOriginator( + self.metadata) self.epochs_originator = EpochsOriginator(self.datasets) if 'associated_files' in self.metadata: - self.associated_files_originator = AssociatedFilesOriginator(self.metadata) + self.associated_files_originator = AssociatedFilesOriginator( + self.metadata) self.electrodes_extension_originator = ElectrodesExtensionOriginator( self.probes, @@ -235,8 +280,10 @@ def __init__( self.processing_module_originator = ProcessingModuleOriginator() self.task_originator = TaskOriginator(self.metadata) self.camera_device_originator = CameraDeviceOriginator(self.metadata) - self.header_device_originator = HeaderDeviceOriginator(self.header, self.metadata) - self.probes_originator = ProbeOriginator(self.device_factory, self.device_injector, self.probes) + self.header_device_originator = HeaderDeviceOriginator( + self.header, self.metadata) + self.probes_originator = ProbeOriginator( + self.device_factory, self.device_injector, self.probes) self.camera_sample_frame_counts_originator = CameraSampleFrameCountsOriginator( self.data_path + "/" + animal_name + "/raw/" + self.date + "/") if self.is_old_dataset: @@ -261,22 +308,25 @@ def __init__( ) if self.process_mda: - self.mda_originator = MdaOriginator(self.datasets, self.header, self.metadata) + self.mda_originator = MdaOriginator( + self.datasets, self.header, self.metadata) if self.process_dio: if self.is_old_dataset: self.dio_originator = DioOriginator(self.metadata, self.datasets, convert_timestamps=_CONVERT_OLD_TIMESTAMPS) else: - self.dio_originator = DioOriginator(self.metadata, self.datasets) + self.dio_originator = DioOriginator( + self.metadata, self.datasets) if self.process_analog: if self.is_old_dataset: self.analog_originator = AnalogOriginator(self.datasets, self.metadata, - convert_timestamps=_CONVERT_OLD_TIMESTAMPS, - return_timestamps=_RETURN_OLD_TIMESTAMPS) + convert_timestamps=_CONVERT_OLD_TIMESTAMPS, + return_timestamps=_RETURN_OLD_TIMESTAMPS) else: - self.analog_originator = AnalogOriginator(self.datasets, self.metadata) + self.analog_originator = AnalogOriginator( + self.datasets, self.metadata) if self.is_old_dataset: self.position_originator = PositionOriginator(self.datasets, self.metadata, @@ -288,7 +338,8 @@ def __init__( def __extract_datasets(self, animal_name, date): self.data_scanner.extract_data_from_date_folder(date) - self.datasets = [self.data_scanner.data[animal_name][date][dataset] for dataset in self.dataset_names] + self.datasets = [self.data_scanner.data[animal_name] + [date][dataset] for dataset in self.dataset_names] def build(self): """Build NWBFile @@ -332,7 +383,8 @@ def build(self): shanks_dict = self.shanks_originator.make(shanks_electrodes_dict) - probes = self.probes_originator.make(nwb_content, shanks_dict, valid_map_dict['probes']) + probes = self.probes_originator.make( + nwb_content, shanks_dict, valid_map_dict['probes']) self.data_acq_device_originator.make(nwb_content) @@ -350,7 +402,8 @@ def build(self): nwb_content, electrode_groups, valid_map_dict['electrodes'], valid_map_dict['electrode_groups'] ) - self.electrodes_extension_originator.make(nwb_content, valid_map_dict['electrodes']) + self.electrodes_extension_originator.make( + nwb_content, valid_map_dict['electrodes']) self.epochs_originator.make(nwb_content) @@ -421,5 +474,4 @@ def build_and_append_to_nwb(self, process_mda_valid_time=True, process_mda_inval if process_mda_invalid_time: self.mda_invalid_time_originator.make(nwb_content) - nwb_file_io.write(nwb_content) diff --git a/rec_to_nwb/processing/builder/originators/video_files_originator.py b/rec_to_nwb/processing/builder/originators/video_files_originator.py index ce8f341a2..a7076eb48 100644 --- a/rec_to_nwb/processing/builder/originators/video_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/video_files_originator.py @@ -1,22 +1,27 @@ -from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_manager import FlVideoFilesManager -from rec_to_nwb.processing.nwb.components.video_files.video_files_creator import VideoFilesCreator -from rec_to_nwb.processing.nwb.components.video_files.video_files_injector import VideoFilesInjector +from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_manager import \ + FlVideoFilesManager +from rec_to_nwb.processing.nwb.components.video_files.video_files_creator import \ + VideoFilesCreator +from rec_to_nwb.processing.nwb.components.video_files.video_files_injector import \ + VideoFilesInjector class VideoFilesOriginator: def __init__(self, raw_data_path, video_path, video_files_metadata, - convert_timestamps=True, - return_timestamps=True): + convert_timestamps=True, + return_timestamps=True): self.video_directory = video_path - self.fl_video_files_manager = FlVideoFilesManager(raw_data_path, video_path, video_files_metadata, - convert_timestamps=convert_timestamps, - return_timestamps=return_timestamps) + self.fl_video_files_manager = FlVideoFilesManager( + raw_data_path, video_path, video_files_metadata, + convert_timestamps=convert_timestamps, + return_timestamps=return_timestamps) def make(self, nwb_content): fl_video_files = self.fl_video_files_manager.get_video_files() image_series_list = [ - VideoFilesCreator.create(fl_video_file, self.video_directory, nwb_content) + VideoFilesCreator.create( + fl_video_file, self.video_directory, nwb_content) for fl_video_file in fl_video_files ] VideoFilesInjector.inject_all(nwb_content, image_series_list) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index 5c2af4559..c5965e6e1 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -1,12 +1,13 @@ import logging.config import os + import numpy as np from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - from rec_to_nwb.processing.tools.beartype.beartype import beartype path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', + disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -14,8 +15,8 @@ class FlVideoFilesExtractor: @beartype def __init__(self, raw_data_path: str, video_files_metadata: list, - convert_timestamps: bool = True, - return_timestamps: bool = True): + convert_timestamps: bool = True, + return_timestamps: bool = True): self.raw_data_path = raw_data_path self.video_files_metadata = video_files_metadata self.convert_timestamps = convert_timestamps @@ -40,12 +41,15 @@ def extract_video_files(self): def _get_timestamps(self, video_file): try: video_timestamps = self._read_video_timestamps_hw_sync(video_file) - logger.info('Loaded cameraHWSync timestamps for {}'.format(video_file['name'][:-4])) + logger.info('Loaded cameraHWSync timestamps for {}'.format( + video_file['name'][:-4])) is_old_dataset = False except FileNotFoundError: # old dataset - video_timestamps = self._read_video_timestamps_hw_framecount(video_file) - logger.info('Loaded cameraHWFrameCount for {} (old dataset)'.format(video_file['name'][:-4])) + video_timestamps = self._read_video_timestamps_hw_framecount( + video_file) + logger.info('Loaded cameraHWFrameCount for {} (old dataset)'.format( + video_file['name'][:-4])) is_old_dataset = True # the timestamps array from the cam if is_old_dataset or (not self.convert_timestamps): @@ -55,18 +59,18 @@ def _get_timestamps(self, video_file): def _read_video_timestamps_hw_sync(self, video_file): return readTrodesExtractedDataFile( - self.raw_data_path + "/" - + video_file["name"][:-4] - + "videoTimeStamps.cameraHWSync")['data']['HWTimestamp'] + self.raw_data_path + "/" + + video_file["name"][:-4] + + "videoTimeStamps.cameraHWSync")['data']['HWTimestamp'] def _read_video_timestamps_hw_framecount(self, video_file): return readTrodesExtractedDataFile( - self.raw_data_path + "/" - + video_file["name"][:-4] - + "videoTimeStamps.cameraHWFrameCount")['data']['frameCount'] + self.raw_data_path + "/" + + video_file["name"][:-4] + + "videoTimeStamps.cameraHWFrameCount")['data']['frameCount'] def _convert_timestamps(self, timestamps): - #converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') + # converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') converted_timestamps = timestamps / 1E9 # for i, record in enumerate(timestamps): # converted_timestamps[i] = record[2]/1E9 diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py index 2f7c1645d..8190d384d 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py @@ -6,7 +6,8 @@ class VideoFilesCreator: @staticmethod def create(fl_video_file, video_directory, nwb_content): return NwbImageSeries( - devices=[nwb_content.devices['camera_device ' + str(fl_video_file.device)]], + devices=[nwb_content.devices['camera_device ' + + str(fl_video_file.device)]], name=fl_video_file.name, timestamps=fl_video_file.timestamps, external_file=[video_directory + '/' + fl_video_file.name], From b893839286bbc36912dc43a474c43f57b80e0bd1 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 15:18:18 -0700 Subject: [PATCH 082/205] Minor formatting --- .../time/valid/fl_pos_valid_time_manager.py | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_manager.py b/rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_manager.py index 6a22f45a1..aad9dd1f3 100644 --- a/rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/time/valid/fl_pos_valid_time_manager.py @@ -1,10 +1,12 @@ import numpy as np from pynwb import NWBFile - -from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException -from rec_to_nwb.processing.nwb.components.position.time.valid.fl_pos_valid_time_builder import FlPosValidTimeBuilder +from rec_to_nwb.processing.exceptions.missing_data_exception import \ + MissingDataException +from rec_to_nwb.processing.nwb.components.position.time.valid.fl_pos_valid_time_builder import \ + FlPosValidTimeBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.get_times_period_multiplier import get_times_period_multiplier +from rec_to_nwb.processing.tools.get_times_period_multiplier import \ + get_times_period_multiplier class FlPosValidTimeManager: @@ -37,7 +39,8 @@ def get_fl_pos_valid_times(self, nwb_content: NWBFile, gaps_margin: float = 0.00 timestamps = self.__get_pos_timestamps(nwb_content) pos_period = self.__calculate_pos_period(timestamps) - valid_times = self.__get_pos_valid_times(timestamps, pos_period, gaps_margin) + valid_times = self.__get_pos_valid_times( + timestamps, pos_period, gaps_margin) return self.__build_pos_valid_times(valid_times) @staticmethod @@ -45,7 +48,8 @@ def __get_pos_timestamps(nwb_content): timestamps = [ np.array(spatial_series.timestamps) for spatial_series in - nwb_content.processing['behavior'].data_interfaces['position'].spatial_series.values() + nwb_content.processing['behavior'].data_interfaces['position'].spatial_series.values( + ) ] timestamp = np.hstack(timestamps) @@ -67,29 +71,29 @@ def __calculate_pos_period(timestamps): first_timestamp = timestamps[number_of_invalid_records_at_start_of_a_file] while not last_timestamp >= 0: number_of_invalid_records_at_end_of_a_file += 1 - last_timestamp = timestamps[(-1 - number_of_invalid_records_at_end_of_a_file)] + last_timestamp = timestamps[(-1 - + number_of_invalid_records_at_end_of_a_file)] return (last_timestamp - first_timestamp) / \ (len_of_timestamps - number_of_invalid_records_at_end_of_a_file - number_of_invalid_records_at_start_of_a_file) def __get_pos_valid_times(self, timestamps, period, gaps_margin): - min_valid_len = 3*gaps_margin + min_valid_len = 3 * gaps_margin timestamps = timestamps[~np.isnan(timestamps)] gaps = np.diff(timestamps) > period * self.period_multiplier gap_indexes = np.asarray(np.where(gaps)) gap_start = np.insert(gap_indexes + 1, 0, 0) - gap_end = np.append(gap_indexes, np.asarray(len(timestamps)-1)) + gap_end = np.append(gap_indexes, np.asarray(len(timestamps) - 1)) valid_indices = np.vstack([gap_start, gap_end]).transpose() valid_times = timestamps[valid_indices] valid_times[:, 0] = valid_times[:, 0] + gaps_margin valid_times[:, 1] = valid_times[:, 1] - gaps_margin - valid_intervals = [valid_time > min_valid_len for valid_time in valid_times[:, 1] - valid_times[:, 0]] + valid_intervals = [ + valid_time > min_valid_len for valid_time in valid_times[:, 1] - valid_times[:, 0]] return valid_times[valid_intervals, :] @staticmethod def __build_pos_valid_times(valid_times): return [FlPosValidTimeBuilder.build(gap[0], gap[1]) for gap in valid_times] - - From db2c29934dc03e888a94ed033554183c88e19acd Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 23 Aug 2021 15:22:57 -0700 Subject: [PATCH 083/205] Delete .DS_Store --- scripts/.DS_Store | Bin 6148 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 scripts/.DS_Store diff --git a/scripts/.DS_Store b/scripts/.DS_Store deleted file mode 100644 index 67817281cae736cb324e2097bf522640a436dca9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKOHKnZ47H()k=T?S%W#C=AXLMKZ4WT?g8*r!Gor1;GB@A|oPbksF`i=s9d#BJ z3xtq8N}iM0iSwjMVj|+{ZZ#nq6H$R8$f690bPo=lnDGe6d5((aw8l55YG9(j*d?)_ zBi@?s=owLe$G@Q^J<%g|w53gbKbbAtrrX=X5nfGOmW#Swz^kZUFW+8n-mi{ZuW465 z^z0rEBHatxRcF8%a0Z+KXF%?3k>X6zYiGb2a0b2@knz$0kaOfB d59)Xj9d^+$DatI;pWT7}5Xgjh Date: Mon, 23 Aug 2021 16:58:24 -0700 Subject: [PATCH 084/205] Remove unused import --- .../processing/nwb/components/position/fl_position_manager.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py index 6f4c841e3..2a9dbc114 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py @@ -1,5 +1,3 @@ -import re - from rec_to_nwb.processing.exceptions.invalid_metadata_exception import \ InvalidMetadataException from rec_to_nwb.processing.nwb.components.position.fl_position_builder import \ From 0e83fb739c4446a0df93f52a83b29cdd4eca8045 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 24 Aug 2021 11:54:37 -0700 Subject: [PATCH 085/205] Handle new dio filename format --- rec_to_nwb/processing/nwb/components/dio/dio_files.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_files.py b/rec_to_nwb/processing/nwb/components/dio/dio_files.py index f6fddc25b..4284aec2b 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_files.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_files.py @@ -1,3 +1,4 @@ +import glob import os @@ -23,11 +24,7 @@ def __filter_files(cls, multiple_datasets_dio_files, dio_metadata): @classmethod def __get_dict(cls, directory): dio_dict = {} - files = os.listdir(directory) - files.sort() - for file in files: - if file.endswith('.dat'): - split_filename = file.split('.') - dio_dict[split_filename[-2].split('_') - [1]] = directory + '/' + file + for file in glob.glob(os.path.join(directory, '*.dat')): + dio_name = file.split('.')[-2].split('_')[-1] + dio_dict[dio_name] = os.path.join(directory, file) return dio_dict From 9863741d2dad65426f367d184243945ffe172330 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 24 Aug 2021 12:00:45 -0700 Subject: [PATCH 086/205] Don't log contents of associated files. Clutters the log file. --- .../builder/originators/associated_files_originator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/associated_files_originator.py b/rec_to_nwb/processing/builder/originators/associated_files_originator.py index 9baac3d98..ad88c35fb 100644 --- a/rec_to_nwb/processing/builder/originators/associated_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/associated_files_originator.py @@ -43,4 +43,3 @@ def make(self, nwb_content): logger.info('AssociatedFiles: Injecting') self.associated_files_injector.inject( associated_files, 'associated_files', nwb_content) - logger.info("Files stored inside nwb: " + str(associated_files)) From acac94a56bdbde5aa5b37c2e2a2cb57cc3cdbfd6 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 24 Aug 2021 16:45:52 -0700 Subject: [PATCH 087/205] Safer path handling --- .../processing/builder/nwb_file_builder.py | 52 ++++++++++--------- .../processing/builder/raw_to_nwb_builder.py | 18 ++++--- .../nwb/common/session_time_extractor.py | 8 +-- .../nwb/components/analog/analog_files.py | 11 ++-- .../nwb/components/mda/fl_mda_extractor.py | 4 +- .../position/fl_position_extractor.py | 6 ++- .../position/fl_position_manager.py | 5 +- .../camera_sample_frame_counts_extractor.py | 20 +++---- .../video_files/video_files_copy_maker.py | 2 +- .../video_files/video_files_creator.py | 4 +- rec_to_nwb/processing/tools/data_scanner.py | 30 ++++++----- rec_to_nwb/processing/tools/dataset.py | 6 ++- .../scripts/visualise_timestamp_distances.py | 50 +++++++++++------- 13 files changed, 122 insertions(+), 94 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index f7357dee4..ef9a681d6 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -160,9 +160,7 @@ def __init__( if self.metadata.get('associated_files', []): associated_files_existance_validator = AssociatedFilesExistanceValidator( self.metadata['associated_files']) - if associated_files_existance_validator.files_exist(): - pass - else: + if not associated_files_existance_validator.files_exist(): raise Exception( "one or more associated file listed in metadata.yaml file does not exist") self.probes = nwb_metadata.probes @@ -189,17 +187,16 @@ def __init__( 'analog': process_analog} rec_files_list = RecFileFinder().find_rec_files( - path=(self.data_path - + '/' + self.animal_name - + '/raw/' - + self.date) + path=os.path.join( + self.data_path, self.animal_name, 'raw', self.date) ) if not preprocessing_path: header_path = None # default else: - header_path = (self.preprocessing_out - + '/' + self.animal_name + '/headers/' + self.date) + header_path = os.path.join( + self.preprocessing_out, self.animal_name, 'headers', + self.date) os.makedirs(header_path, exist_ok=True) header_file = HeaderProcessor.process_headers( rec_files_list, copy_dir=header_path) @@ -211,7 +208,7 @@ def __init__( self.preprocessing_path, animal_name, nwb_metadata) self.dataset_names = self.data_scanner.get_all_epochs(date) full_data_path = os.path.join(self.preprocessing_path, - animal_name + '/preprocessing/' + date) + self.animal_name, 'preprocessing', date) validation_registrator = ValidationRegistrator() validation_registrator.register(NTrodeValidator( @@ -285,10 +282,11 @@ def __init__( self.probes_originator = ProbeOriginator( self.device_factory, self.device_injector, self.probes) self.camera_sample_frame_counts_originator = CameraSampleFrameCountsOriginator( - self.data_path + "/" + animal_name + "/raw/" + self.date + "/") + os.path.join(self.data_path, self.animal_name, 'raw', self.date)) if self.is_old_dataset: self.video_files_originator = VideoFilesOriginator( - self.data_path + "/" + animal_name + "/raw/" + self.date + "/", + os.path.join(self.data_path, self.animal_name, + 'raw', self.date), self.video_path, self.metadata["associated_video_files"], convert_timestamps=_CONVERT_OLD_TIMESTAMPS, @@ -296,7 +294,8 @@ def __init__( ) else: self.video_files_originator = VideoFilesOriginator( - self.data_path + "/" + animal_name + "/raw/" + self.date + "/", + os.path.join(self.data_path, self.animal_name, + 'raw', self.date), self.video_path, self.metadata["associated_video_files"], ) @@ -313,28 +312,32 @@ def __init__( if self.process_dio: if self.is_old_dataset: - self.dio_originator = DioOriginator(self.metadata, self.datasets, - convert_timestamps=_CONVERT_OLD_TIMESTAMPS) + self.dio_originator = DioOriginator( + self.metadata, self.datasets, + convert_timestamps=_CONVERT_OLD_TIMESTAMPS) else: self.dio_originator = DioOriginator( self.metadata, self.datasets) if self.process_analog: if self.is_old_dataset: - self.analog_originator = AnalogOriginator(self.datasets, self.metadata, - convert_timestamps=_CONVERT_OLD_TIMESTAMPS, - return_timestamps=_RETURN_OLD_TIMESTAMPS) + self.analog_originator = AnalogOriginator( + self.datasets, self.metadata, + convert_timestamps=_CONVERT_OLD_TIMESTAMPS, + return_timestamps=_RETURN_OLD_TIMESTAMPS) else: self.analog_originator = AnalogOriginator( self.datasets, self.metadata) if self.is_old_dataset: - self.position_originator = PositionOriginator(self.datasets, self.metadata, - self.dataset_names, self.process_pos_timestamps, - convert_timestamps=_CONVERT_OLD_TIMESTAMPS) + self.position_originator = PositionOriginator( + self.datasets, self.metadata, + self.dataset_names, self.process_pos_timestamps, + convert_timestamps=_CONVERT_OLD_TIMESTAMPS) else: - self.position_originator = PositionOriginator(self.datasets, self.metadata, - self.dataset_names, self.process_pos_timestamps) + self.position_originator = PositionOriginator( + self.datasets, self.metadata, + self.dataset_names, self.process_pos_timestamps) def __extract_datasets(self, animal_name, date): self.data_scanner.extract_data_from_date_folder(date) @@ -399,7 +402,8 @@ def build(self): ) self.electrodes_originator.make( - nwb_content, electrode_groups, valid_map_dict['electrodes'], valid_map_dict['electrode_groups'] + nwb_content, electrode_groups, valid_map_dict['electrodes'], + valid_map_dict['electrode_groups'] ) self.electrodes_extension_originator.make( diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index b43fbec21..a9b866f68 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -165,9 +165,9 @@ def __get_header_path(self): def __is_old_dataset(self): # check raw directory for the single (first) date - all_files = os.listdir(self.data_path + "/" - + self.animal_name + "/raw/" - + self.dates[0] + "/") + all_files = os.listdir( + os.path.join(self.data_path, self.animal_name, 'raw', + self.dates[0])) if any([('videoTimeStamps.cameraHWSync' in file) for file in all_files]): # has cameraHWSync files; new dataset return False @@ -225,8 +225,9 @@ def __build_nwb_file(self, process_mda_valid_time=False, process_mda_invalid_tim def get_nwb_builder(self, date): if self.is_old_dataset: - old_dataset_kwargs = dict(is_old_dataset=True, - session_start_time=_DEFAULT_SESSION_START_TIME) + old_dataset_kwargs = dict( + is_old_dataset=True, + session_start_time=_DEFAULT_SESSION_START_TIME) else: old_dataset_kwargs = dict() @@ -235,7 +236,8 @@ def get_nwb_builder(self, date): animal_name=self.animal_name, date=date, nwb_metadata=self.nwb_metadata, - output_file=self.output_path + self.animal_name + date + ".nwb", + output_file=os.path.join( + self.output_path, self.animal_name + date + ".nwb"), process_mda=self.extract_mda, process_dio=self.extract_dio, process_analog=self.extract_analog, @@ -317,7 +319,7 @@ def append_to_nwb(nwb_builder, process_mda_valid_time, process_mda_invalid_time, def cleanup(self): """Remove all temporary files structure from preprocessing folder""" - preprocessing = self.preprocessing_path + \ - '/' + self.animal_name + '/preprocessing' + preprocessing = os.path.join( + self.preprocessing_path, self.animal_name, 'preprocessing') if os.path.exists(preprocessing): shutil.rmtree(preprocessing) diff --git a/rec_to_nwb/processing/nwb/common/session_time_extractor.py b/rec_to_nwb/processing/nwb/common/session_time_extractor.py index 0070d68d3..59cbb59e5 100644 --- a/rec_to_nwb/processing/nwb/common/session_time_extractor.py +++ b/rec_to_nwb/processing/nwb/common/session_time_extractor.py @@ -1,3 +1,4 @@ +import os from datetime import datetime from dateutil.tz import tzlocal @@ -13,9 +14,10 @@ def __init__(self, datasets, animal_name, date, dataset_names): self.dataset_names = dataset_names def get_session_start_time(self): - continuous_time_file = \ - self.datasets[0].data['time'] + '/' + self.date + '_' + self.animal_name + '_' \ - + self.dataset_names[0] + '.continuoustime.dat' + continuous_time_file = os.path.join( + self.datasets[0].data['time'], + self.date + '_' + self.animal_name + '_' + self.dataset_names[0] + + '.continuoustime.dat') continuous_time = SessionTimeExtractor.__read_continuous_time( continuous_time_file) session_start_timestamp = continuous_time['system_time_at_creation'] diff --git a/rec_to_nwb/processing/nwb/components/analog/analog_files.py b/rec_to_nwb/processing/nwb/components/analog/analog_files.py index 44537441a..dd3a9e901 100644 --- a/rec_to_nwb/processing/nwb/components/analog/analog_files.py +++ b/rec_to_nwb/processing/nwb/components/analog/analog_files.py @@ -1,3 +1,4 @@ +import glob import os @@ -12,11 +13,7 @@ def get_files(self): @classmethod def __get_dict(cls, directory): analog_dict = {} - files = os.listdir(directory) - files.sort() - for file in files: - if file.endswith('.dat'): - split_filename = file.split('.') - analog_dict[split_filename[-2].split('_') - [-1]] = directory + '/' + file + for file in glob.glob(os.path.join(directory, '*.dat')): + analog_name = file.split('.')[-2].split('_')[-1] + analog_dict[analog_name] = os.path.join(directory, file) return analog_dict diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index 58afa832c..7bd11554e 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -1,3 +1,5 @@ +import os + from rec_to_nwb.processing.exceptions.missing_data_exception import \ MissingDataException from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import \ @@ -69,7 +71,7 @@ def __extract_data_files_for_single_dataset(self, dataset): @staticmethod def __get_data_files_from_current_dataset(dataset): - return [dataset.get_data_path_from_dataset('mda') + mda_file for mda_file in + return [os.path.join(dataset.get_data_path_from_dataset('mda'), mda_file) for mda_file in dataset.get_all_data_from_dataset('mda') if (mda_file.endswith('.mda') and not mda_file.endswith('timestamps.mda'))] diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py index 96f0a011f..9a2e4c6ec 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py @@ -1,3 +1,5 @@ +import os + from rec_to_nwb.processing.exceptions.missing_data_exception import \ MissingDataException from rec_to_nwb.processing.nwb.components.iterator.multi_thread_data_iterator import \ @@ -24,7 +26,9 @@ def __extract_data(self): continuous_time = [] for dataset in self.datasets: data_from_current_dataset = [ - dataset.get_data_path_from_dataset('pos') + pos_file for pos_file in + os.path.join( + dataset.get_data_path_from_dataset('pos'), pos_file) + for pos_file in dataset.get_all_data_from_dataset('pos') if (pos_file.endswith('.pos_online.dat'))] if dataset.get_continuous_time() is None: diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py index 2a9dbc114..fb71acb3b 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_manager.py @@ -20,8 +20,9 @@ def __init__(self, datasets: list, metadata: dict, dataset_names: list, self.dataset_names = dataset_names self.process_timestamps = process_timestamps - self.fl_position_extractor = FlPositionExtractor(datasets, - convert_timestamps=convert_timestamps) + self.fl_position_extractor = FlPositionExtractor( + datasets, + convert_timestamps=convert_timestamps) self.fl_position_builder = FlPositionBuilder() @beartype diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py index 30054bd7e..9266ae425 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py @@ -1,3 +1,4 @@ +import glob import os import numpy as np @@ -20,20 +21,13 @@ def extract(self): return merged_data def __get_all_hwsync_files(self): - all_files = os.listdir(self.raw_data_path) - hwsync_files = [] - for file in all_files: - if 'videoTimeStamps.cameraHWSync' in file: - hwsync_files.append(file) - return hwsync_files + return glob.glob( + os.path.join(self.raw_data_path, '*.videoTimeStamps.cameraHWSync')) def __get_all_hwframecount_files(self): - all_files = os.listdir(self.raw_data_path) - hwframecount_files = [] - for file in all_files: - if 'videoTimeStamps.cameraHWFrameCount' in file: - hwframecount_files.append(file) - return hwframecount_files + return glob.glob( + os.path.join(self.raw_data_path, + '*.videoTimeStamps.cameraHWFrameCount')) @staticmethod def __merge_data_from_multiple_files(data): @@ -42,7 +36,7 @@ def __merge_data_from_multiple_files(data): def __extract_single(self, hw_frame_count_filename): content = readTrodesExtractedDataFile( - self.raw_data_path + "/" + hw_frame_count_filename + os.path.join(self.raw_data_path, hw_frame_count_filename) )["data"] camera_sample_frame_counts = np.ndarray( shape=(len(content), 2), dtype='uint32') diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py index e1b130d44..ea3be8182 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_copy_maker.py @@ -14,4 +14,4 @@ def copy(self, src, dst): if not os.path.exists(dst): raise InvalidPathException(dst + ' is not valid path') for video_file in self.video_files_to_copy: - copy_file(src + '/' + video_file, dst) + copy_file(os.path.join(src, video_file), dst) diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py index 8190d384d..ec093616d 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py @@ -1,3 +1,5 @@ +import os + from ndx_franklab_novela.nwb_image_series import NwbImageSeries @@ -10,7 +12,7 @@ def create(fl_video_file, video_directory, nwb_content): str(fl_video_file.device)]], name=fl_video_file.name, timestamps=fl_video_file.timestamps, - external_file=[video_directory + '/' + fl_video_file.name], + external_file=[os.path.join(video_directory, fl_video_file.name)], format='external', starting_frame=[0], description='video of animal behavior from epoch' diff --git a/rec_to_nwb/processing/tools/data_scanner.py b/rec_to_nwb/processing/tools/data_scanner.py index cfa594ecf..9468ef871 100644 --- a/rec_to_nwb/processing/tools/data_scanner.py +++ b/rec_to_nwb/processing/tools/data_scanner.py @@ -24,21 +24,23 @@ def __init__(self, data_path: str, animal_name: str, nwb_metadata: MetadataManag def get_all_epochs(self, date: str) -> list: all_datasets = [] directories = os.listdir( - self.data_path + '/' + self.animal_name + '/preprocessing/' + date) + os.path.join(self.data_path, self.animal_name, 'preprocessing', + date)) FileSorter.sort_filenames(directories) for directory in directories: if directory.startswith(date): dataset_name = (directory.split( '_')[2] + '_' + directory.split('_')[3]).split('.')[0] - if not dataset_name in all_datasets: + if dataset_name not in all_datasets: all_datasets.append(dataset_name) return all_datasets @beartype def get_all_data_from_dataset(self, date: str) -> list: - self.__check_if_path_exists( - self.data_path + '/' + self.animal_name + '/preprocessing/' + date) - return os.listdir(self.data_path + '/' + self.animal_name + '/preprocessing/' + date) + path = os.path.join(self.data_path, self.animal_name, 'preprocessing', + date) + self.__check_if_path_exists(path) + return os.listdir(path) @beartype def extract_data_from_date_folder(self, date: str): @@ -55,10 +57,12 @@ def extract_data_from_all_dates_folders(self): self.data_path, self.animal_name, None)} def __extract_experiments(self, data_path, animal_name, dates): - preprocessing_path = data_path + animal_name + '/preprocessing' + preprocessing_path = os.path.join( + data_path, animal_name, 'preprocessing') if not dates: dates = FileSorter.sort_filenames(os.listdir(preprocessing_path)) - return {date: self.__extract_datasets(preprocessing_path + '/' + date) for date in dates} + return {date: self.__extract_datasets( + os.path.join(preprocessing_path, date)) for date in dates} @staticmethod def __extract_datasets(date_path): @@ -77,7 +81,8 @@ def __extract_datasets(date_path): for dataset in datasets.values(): if dataset_name == dataset.name: dataset.add_data_to_dataset( - date_path + '/' + directory + '/', dir_last_part.pop()) + os.path.join(date_path, directory), + dir_last_part.pop()) return datasets @beartype @@ -96,8 +101,9 @@ def get_all_datasets(self, animal: str, date: str) -> list: def get_mda_timestamps(self, animal: str, date: str, dataset: str): for file in self.data[animal][date][dataset].get_all_data_from_dataset('mda'): if file.endswith('timestamps.mda'): - return self.data[animal][date][dataset].get_data_path_from_dataset('mda') + file - return None + return os.path.join( + self.data[animal][date][dataset] + .get_data_path_from_dataset('mda'), file) @staticmethod @beartype @@ -106,10 +112,10 @@ def get_probes_from_directory(path: str): files = FileSorter.sort_filenames(os.listdir(path)) for probe_file in files: if fnmatch.fnmatch(probe_file, "probe*.yml"): - probes.append(path + '/' + probe_file) + probes.append(os.path.join(path, probe_file)) return probes def __check_if_path_exists(self, path): - if not (os.path.exists(path)): + if not os.path.exists(path): raise MissingDataException( 'missing ' + self.data_path + ' directory') diff --git a/rec_to_nwb/processing/tools/dataset.py b/rec_to_nwb/processing/tools/dataset.py index af222ab7d..6821a63ce 100644 --- a/rec_to_nwb/processing/tools/dataset.py +++ b/rec_to_nwb/processing/tools/dataset.py @@ -22,11 +22,13 @@ def get_all_data_from_dataset(self, data_type): def get_mda_timestamps(self): for file in self.get_all_data_from_dataset('mda'): if file.endswith('timestamps.mda'): - return self.get_data_path_from_dataset('mda') + file + return os.path.join( + self.get_data_path_from_dataset('mda'), file) return None def get_continuous_time(self): for file in self.get_all_data_from_dataset('time'): if file.endswith('continuoustime.dat'): - return self.get_data_path_from_dataset('time') + file + return os.path.join( + self.get_data_path_from_dataset('time'), file) return None diff --git a/rec_to_nwb/scripts/visualise_timestamp_distances.py b/rec_to_nwb/scripts/visualise_timestamp_distances.py index b8b30d229..ffe0452be 100644 --- a/rec_to_nwb/scripts/visualise_timestamp_distances.py +++ b/rec_to_nwb/scripts/visualise_timestamp_distances.py @@ -1,16 +1,16 @@ +import os from pathlib import Path +import pandas as pd +from matplotlib import pyplot from mountainlab_pytools.mdaio import readmda from rec_to_binaries.read_binaries import readTrodesExtractedDataFile - from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager -from rec_to_nwb.processing.time.continuous_time_extractor import ContinuousTimeExtractor +from rec_to_nwb.processing.time.continuous_time_extractor import \ + ContinuousTimeExtractor from rec_to_nwb.processing.time.timestamp_converter import TimestampConverter from rec_to_nwb.processing.tools.data_scanner import DataScanner -from matplotlib import pyplot -import pandas as pd - path = Path(__file__).parent.parent path.resolve() @@ -29,14 +29,16 @@ def get_posonline_data_file(dataset): all_pos = dataset.get_all_data_from_dataset('pos') for pos_file in all_pos: if pos_file.endswith('pos_online.dat'): - return dataset.get_data_path_from_dataset('pos') + pos_file + return os.path.join(dataset.get_data_path_from_dataset('pos'), + pos_file) return None def extract_datasets(data_scanner, animal_name, date): data_scanner.extract_data_from_date_folder(date) dataset_names = data_scanner.get_all_epochs(date) - return[data_scanner.data[animal_name][date][dataset] for dataset in dataset_names] + return [data_scanner.data[animal_name][date][dataset] + for dataset in dataset_names] if __name__ == "__main__": @@ -53,21 +55,28 @@ def extract_datasets(data_scanner, animal_name, date): data_scanner = DataScanner(data_path, animal_name, nwb_metadata) datasets = extract_datasets(data_scanner, animal_name, date) - pos_timestamps_files = [get_posonline_data_file(dataset) for dataset in datasets] - mda_timestamps_files = [dataset.get_mda_timestamps() for dataset in datasets] - continuous_time_files = [dataset.get_continuous_time() for dataset in datasets] + pos_timestamps_files = [get_posonline_data_file( + dataset) for dataset in datasets] + mda_timestamps_files = [dataset.get_mda_timestamps() + for dataset in datasets] + continuous_time_files = [dataset.get_continuous_time() + for dataset in datasets] - timestamps = [read_pos_timestamps(timestamps_file) for timestamps_file in pos_timestamps_files] + timestamps = [read_pos_timestamps(timestamps_file) + for timestamps_file in pos_timestamps_files] continuous_time_extractor = ContinuousTimeExtractor() - continuous_time_dicts = continuous_time_extractor.get_continuous_time_dict(continuous_time_files) + continuous_time_dicts = continuous_time_extractor.get_continuous_time_dict( + continuous_time_files) distances = [] max_distance = 0 for i, continuous_time_dict in enumerate(continuous_time_dicts): - converted_timestamps = TimestampConverter.convert_timestamps(continuous_time_dict, timestamps[i]) - for j in range(1, len(converted_timestamps) -1): + converted_timestamps = TimestampConverter.convert_timestamps( + continuous_time_dict, timestamps[i]) + for j in range(1, len(converted_timestamps) - 1): if converted_timestamps[j] > 0 and converted_timestamps[j - 1] > 0: - new_dist = (converted_timestamps[j] - converted_timestamps[j - 1]) + new_dist = ( + converted_timestamps[j] - converted_timestamps[j - 1]) if new_dist > max_distance: max_distance = new_dist @@ -78,13 +87,16 @@ def extract_datasets(data_scanner, animal_name, date): max_distance = 0 distances = [] - timestamps = [read_mda_timestamps(timestamps_file) for timestamps_file in mda_timestamps_files] + timestamps = [read_mda_timestamps(timestamps_file) + for timestamps_file in mda_timestamps_files] for i, continuous_time_dict in enumerate(continuous_time_dicts): - converted_timestamps = TimestampConverter.convert_timestamps(continuous_time_dict, timestamps[i]) - for j in range(1, len(converted_timestamps) -1): + converted_timestamps = TimestampConverter.convert_timestamps( + continuous_time_dict, timestamps[i]) + for j in range(1, len(converted_timestamps) - 1): if converted_timestamps[j] > 0 and converted_timestamps[j - 1] > 0: - new_dist = (converted_timestamps[j] - converted_timestamps[j - 1]) + new_dist = ( + converted_timestamps[j] - converted_timestamps[j - 1]) if new_dist > max_distance: max_distance = new_dist From 6772b1d31af0f65d289e40b5c1ed412d049174d1 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 24 Aug 2021 17:18:22 -0700 Subject: [PATCH 088/205] Remove preprocessing out. It is redundant. --- rec_to_nwb/processing/builder/nwb_file_builder.py | 7 +------ rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 9 +-------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index ef9a681d6..84fd2b461 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -126,7 +126,6 @@ def __init__( process_analog: bool = True, process_pos_timestamps: bool = True, preprocessing_path: str = '', - preprocessing_out: str = '', video_path: str = '', output_file: str = 'output.nwb', reconfig_header: str = '', @@ -172,10 +171,6 @@ def __init__( self.preprocessing_path = data_path else: self.preprocessing_path = preprocessing_path - if not preprocessing_out: - self.preprocessing_out = self.preprocessing_path - else: - self.preprocessing_out = preprocessing_out self.output_file = output_file self.video_path = video_path self.is_old_dataset = is_old_dataset @@ -195,7 +190,7 @@ def __init__( header_path = None # default else: header_path = os.path.join( - self.preprocessing_out, self.animal_name, 'headers', + self.preprocessing_path, self.animal_name, 'headers', self.date) os.makedirs(header_path, exist_ok=True) header_file = HeaderProcessor.process_headers( diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index a9b866f68..d9da43b4f 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -78,7 +78,6 @@ def __init__( output_path: str = '', video_path: str = '', preprocessing_path: str = '', - preprocessing_out: str = '', extract_analog: bool = True, extract_spikes: bool = False, extract_lfps: bool = False, @@ -123,10 +122,6 @@ def __init__( self.preprocessing_path = data_path else: self.preprocessing_path = preprocessing_path - if not preprocessing_out: - self.preprocessing_out = self.preprocessing_path - else: - self.preprocessing_out = preprocessing_out self.probes = nwb_metadata.probes self.nwb_metadata = nwb_metadata self.parallel_instances = parallel_instances @@ -143,7 +138,6 @@ def __repr__(self): f" output_path={self.output_path},\n" f" video_path={self.video_path},\n" f" preprocessing_path={self.preprocessing_path},\n" - f" preprocessing_out={self.preprocessing_out},\n" f" trodes_rec_export_args={self.trodes_rec_export_args},\n" ")") @@ -242,7 +236,6 @@ def get_nwb_builder(self, date): process_dio=self.extract_dio, process_analog=self.extract_analog, preprocessing_path=self.preprocessing_path, - preprocessing_out=self.preprocessing_out, video_path=self.video_path, reconfig_header=self.__get_header_path(), # reconfig_header=self.__is_rec_config_valid() @@ -277,7 +270,7 @@ def __preprocess_data(self): extract_trodes_rec_file( self.data_path, self.animal_name, - out_dir=self.preprocessing_out, + out_dir=self.preprocessing_path, dates=self.dates, parallel_instances=self.parallel_instances, extract_analog=self.extract_analog, From 5e49fea912540589c9a0b93087c2db3a5c3a31b3 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 24 Aug 2021 22:06:48 -0700 Subject: [PATCH 089/205] Indicate constants --- rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py | 4 +++- rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py | 5 ++++- rec_to_nwb/processing/time/timestamp_converter.py | 5 ++++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index 7bd11554e..83e552a06 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -12,13 +12,15 @@ from rec_to_nwb.processing.nwb.components.mda.mda_timestamp_manager import \ MdaTimestampDataManager +MICROVOLTS_PER_VOLT = 1e6 + class FlMdaExtractor: def __init__(self, datasets, conversion): self.datasets = datasets # the conversion is to volts, so we multiple by 1e6 to change to uV - self.raw_to_uv = float(conversion) * 1e6 + self.raw_to_uv = float(conversion) * MICROVOLTS_PER_VOLT def get_data(self): mda_data_files, timestamp_files, continuous_time_files = self.__extract_data_files() diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py index 5712e7d21..66388a934 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_manager.py @@ -5,13 +5,16 @@ from rec_to_nwb.processing.nwb.components.mda.table_region_builder import \ TableRegionBuilder +VOLTS_IN_MICROVOLTS = 1e-6 + class FlMdaManager: def __init__(self, nwb_content, sampling_rate, datasets, conversion): self.__table_region_builder = TableRegionBuilder(nwb_content) self.__fl_mda_extractor = FlMdaExtractor(datasets, conversion) # we converted the data to uV in the extractor, so the conversion to V is always 1e-6 - self.__fl_mda_builder = FlMdaBuilder(sampling_rate, 0.000001) + self.__fl_mda_builder = FlMdaBuilder( + sampling_rate, VOLTS_IN_MICROVOLTS) def get_data(self): electrode_table_region = self.__table_region_builder.build() diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index 0fca1451a..89de253c3 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -9,6 +9,8 @@ fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) logger = logging.getLogger(__name__) +NANOSECONDS_PER_SECOND = 1E9 + class TimestampConverter: @@ -26,7 +28,8 @@ def convert_timestamps(continuous_times, timestamps): # look up the timestamps in the first row of continuous_times timestamp_ind = np.searchsorted(continuous_times[0, :], timestamps) - converted_timestamps = continuous_times[1, timestamp_ind] / 1E9 + converted_timestamps = (continuous_times[1, timestamp_ind] / + NANOSECONDS_PER_SECOND) # get rid of any that are not exact not_found = timestamps != continuous_times[0, timestamp_ind] From 90f0c8e431f2ddf0a3dfe5b6ba96b9de98eaa6c3 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 10:07:18 -0700 Subject: [PATCH 090/205] Make constant explicit --- .../nwb/components/video_files/fl_video_files_extractor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index c5965e6e1..87289da50 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -10,6 +10,8 @@ disable_existing_loggers=False) logger = logging.getLogger(__name__) +NANOSECONDS_PER_SECOND = 1E9 + class FlVideoFilesExtractor: @@ -71,7 +73,7 @@ def _read_video_timestamps_hw_framecount(self, video_file): def _convert_timestamps(self, timestamps): # converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') - converted_timestamps = timestamps / 1E9 + converted_timestamps = timestamps / NANOSECONDS_PER_SECOND # for i, record in enumerate(timestamps): # converted_timestamps[i] = record[2]/1E9 return converted_timestamps From 38157ef02cebfeefb67bd9be9c67aa56902c057b Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 10:07:41 -0700 Subject: [PATCH 091/205] Safer paths --- .../video_files/fl_video_files_extractor.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index 87289da50..5eb3d2307 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -61,15 +61,17 @@ def _get_timestamps(self, video_file): def _read_video_timestamps_hw_sync(self, video_file): return readTrodesExtractedDataFile( - self.raw_data_path + "/" - + video_file["name"][:-4] - + "videoTimeStamps.cameraHWSync")['data']['HWTimestamp'] + os.path.join( + self.raw_data_path, + video_file["name"][:-4] + + "videoTimeStamps.cameraHWSync")['data']['HWTimestamp']) def _read_video_timestamps_hw_framecount(self, video_file): return readTrodesExtractedDataFile( - self.raw_data_path + "/" - + video_file["name"][:-4] - + "videoTimeStamps.cameraHWFrameCount")['data']['frameCount'] + os.path.join( + self.raw_data_path, + video_file["name"][:-4] + + "videoTimeStamps.cameraHWFrameCount")['data']['frameCount']) def _convert_timestamps(self, timestamps): # converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') From 3923467f64e7af27ece4ca226546b4824ab5e199 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 10:24:40 -0700 Subject: [PATCH 092/205] Minor formatting --- .../processing/builder/originators/analog_originator.py | 3 ++- .../processing/builder/originators/dio_originator.py | 3 ++- .../builder/originators/electrodes_originator.py | 3 ++- .../nwb/components/position/pos_timestamp_manager.py | 5 +++-- .../nwb/components/video_files/fl_video_files_manager.py | 7 ++++--- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/analog_originator.py b/rec_to_nwb/processing/builder/originators/analog_originator.py index 5c22b03c1..4642309bf 100644 --- a/rec_to_nwb/processing/builder/originators/analog_originator.py +++ b/rec_to_nwb/processing/builder/originators/analog_originator.py @@ -38,4 +38,5 @@ def make(self, nwb_content): fl_analog, self.metadata['units']['analog']), 'analog') def __get_continuous_time_files(self): - return [single_dataset.get_continuous_time() for single_dataset in self.datasets] + return [single_dataset.get_continuous_time() + for single_dataset in self.datasets] diff --git a/rec_to_nwb/processing/builder/originators/dio_originator.py b/rec_to_nwb/processing/builder/originators/dio_originator.py index 304caf7dd..42babf284 100644 --- a/rec_to_nwb/processing/builder/originators/dio_originator.py +++ b/rec_to_nwb/processing/builder/originators/dio_originator.py @@ -46,4 +46,5 @@ def make(self, nwb_content): dio_injector.inject(behavioral_events, 'behavior') def __get_continuous_time_files(self): - return [single_dataset.get_continuous_time() for single_dataset in self.datasets] + return [single_dataset.get_continuous_time() + for single_dataset in self.datasets] diff --git a/rec_to_nwb/processing/builder/originators/electrodes_originator.py b/rec_to_nwb/processing/builder/originators/electrodes_originator.py index b052a105b..f5fe88035 100644 --- a/rec_to_nwb/processing/builder/originators/electrodes_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrodes_originator.py @@ -19,7 +19,8 @@ def __init__(self, probes, metadata): probes, metadata['electrode_groups']) self.electrode_creator = ElectrodesCreator() - def make(self, nwb_content, electrode_groups, electrodes_valid_map, electrode_groups_valid_map): + def make(self, nwb_content, electrode_groups, electrodes_valid_map, + electrode_groups_valid_map): logger.info('Electrodes: Building') fl_electrodes = self.fl_electrode_manager.get_fl_electrodes( electrode_groups=electrode_groups, diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 302b2a233..f26dcf9d1 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -28,5 +28,6 @@ def _get_timestamps(self, dataset_id): return position.time.to_numpy(dtype='int64') def retrieve_real_timestamps(self, dataset_id): - return TimestampManager.retrieve_real_timestamps(self, dataset_id, - convert_timestamps=self.convert_timestamps) + return TimestampManager.retrieve_real_timestamps( + self, dataset_id, + convert_timestamps=self.convert_timestamps) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index 9e8806fd1..01ce8c78e 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -16,9 +16,10 @@ def __init__(self, raw_data_path: str, video_path: str, video_files_metadata: li self.video_files_copy_maker = VideoFilesCopyMaker( [video_files['name'] for video_files in video_files_metadata]) self.video_files_copy_maker.copy(raw_data_path, video_path) - self.fl_video_files_extractor = FlVideoFilesExtractor(raw_data_path, video_files_metadata, - convert_timestamps=convert_timestamps, - return_timestamps=return_timestamps) + self.fl_video_files_extractor = FlVideoFilesExtractor( + raw_data_path, video_files_metadata, + convert_timestamps=convert_timestamps, + return_timestamps=return_timestamps) self.fl_video_files_builder = FlVideoFilesBuilder() def get_video_files(self): From e86c7482c36085663df573ef356363510f396ed8 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 11:09:12 -0700 Subject: [PATCH 093/205] Safer paths for logging --- rec_to_nwb/processing/builder/nwb_file_builder.py | 3 ++- .../processing/builder/raw_to_nwb_builder.py | 3 ++- .../header/header_checker/header_logger.py | 8 ++++++-- .../processing/header/reconfig_header_checker.py | 15 +++++++++------ .../processing/nwb/common/timestamps_manager.py | 4 +++- .../nwb/components/analog/fl_analog_extractor.py | 4 +++- .../nwb/components/dio/dio_extractor.py | 5 +++-- .../nwb/components/mda/mda_timestamp_manager.py | 4 +++- .../components/position/pos_timestamp_manager.py | 4 +++- .../processing_module_creator.py | 4 +++- .../video_files/fl_video_files_extractor.py | 6 ++++-- .../processing/time/continuous_time_extractor.py | 5 +++-- rec_to_nwb/processing/time/timestamp_converter.py | 3 ++- rec_to_nwb/processing/tools/file_downloader.py | 3 ++- .../validation/associated_files_validation.py | 3 ++- .../processing/validation/ntrode_validator.py | 3 ++- 16 files changed, 52 insertions(+), 25 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 84fd2b461..ee2323bb9 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -86,7 +86,8 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf') + disable_existing_loggers=False) logger = logging.getLogger(__name__) # switches for old dataset timestamp processing (hard-coded for now) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index d9da43b4f..b97b1ca27 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -16,7 +16,8 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf') + disable_existing_loggers=False) logger = logging.getLogger(__name__) _DEFAULT_LFP_EXPORT_ARGS = ('-highpass', '0', '-lowpass', '400', diff --git a/rec_to_nwb/processing/header/header_checker/header_logger.py b/rec_to_nwb/processing/header/header_checker/header_logger.py index 841a47b6b..704b3efc9 100644 --- a/rec_to_nwb/processing/header/header_checker/header_logger.py +++ b/rec_to_nwb/processing/header/header_checker/header_logger.py @@ -2,7 +2,10 @@ import os path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) +logging.config.fileConfig( + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf') + disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -11,7 +14,8 @@ class HeaderLogger: @staticmethod def log_header_differences(headers_differences, rec_files_list): if headers_differences: - message = 'Rec files: ' + str(rec_files_list) + ' contain inconsistent xml headers!\n' + message = 'Rec files: ' + \ + str(rec_files_list) + ' contain inconsistent xml headers!\n' differences = [diff for diff in headers_differences if 'systemTimeAtCreation' not in str(diff) and 'timestampAtCreation' not in str(diff)] diff --git a/rec_to_nwb/processing/header/reconfig_header_checker.py b/rec_to_nwb/processing/header/reconfig_header_checker.py index 73a0e2044..a9ed45a1f 100644 --- a/rec_to_nwb/processing/header/reconfig_header_checker.py +++ b/rec_to_nwb/processing/header/reconfig_header_checker.py @@ -1,15 +1,16 @@ import os import xmlschema - -from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator -from rec_to_nwb.processing.validation.xml_files_validation import XmlFilesValidator +from rec_to_nwb.processing.validation.validation_registrator import \ + ValidationRegistrator +from rec_to_nwb.processing.validation.xml_files_validation import \ + XmlFilesValidator path = os.path.dirname(os.path.abspath(__file__)) class ReconfigHeaderChecker: - + @classmethod def validate(cls, xml_header_path): if xml_header_path: @@ -27,6 +28,8 @@ def __validate_xml_header(cls, xml_header_path): @classmethod def __compare_with_xml_schema(cls, xml_header_path): - xsd_file_path = str(path) + '/../../../rec_to_nwb/data/header_schema.xsd' + xsd_file_path = os.path.join( + str(path), os.pardir, os.pardir, os.pardir, 'rec_to_nwb', 'data', + 'header_schema.xsd') xsd_schema = xmlschema.XMLSchema(xsd_file_path) - xmlschema.validate(xml_header_path, xsd_schema) \ No newline at end of file + xmlschema.validate(xml_header_path, xsd_schema) diff --git a/rec_to_nwb/processing/nwb/common/timestamps_manager.py b/rec_to_nwb/processing/nwb/common/timestamps_manager.py index a02bab878..f55c55055 100644 --- a/rec_to_nwb/processing/nwb/common/timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/timestamps_manager.py @@ -10,7 +10,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf') + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py index a3263a432..b2c1a021f 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, os.pardir, 'logging.conf') + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py index 04a1b9b42..c4e85e48b 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_extractor.py @@ -9,10 +9,11 @@ # import numpy as np - path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py index d8214cf13..ad812403b 100644 --- a/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/mda/mda_timestamp_manager.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index f26dcf9d1..c6f57b2d9 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -9,7 +9,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py b/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py index f4bcc6a8e..be27deec6 100644 --- a/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py +++ b/rec_to_nwb/processing/nwb/components/processing_module/processing_module_creator.py @@ -6,7 +6,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index 5eb3d2307..e91530024 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -6,8 +6,10 @@ from rec_to_nwb.processing.tools.beartype.beartype import beartype path = os.path.dirname(os.path.abspath(__file__)) -logging.config.fileConfig(fname=str(path) + '/../../../../logging.conf', - disable_existing_loggers=False) +logging.config.fileConfig( + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) NANOSECONDS_PER_SECOND = 1E9 diff --git a/rec_to_nwb/processing/time/continuous_time_extractor.py b/rec_to_nwb/processing/time/continuous_time_extractor.py index 6f721aaa0..3b0502cfe 100644 --- a/rec_to_nwb/processing/time/continuous_time_extractor.py +++ b/rec_to_nwb/processing/time/continuous_time_extractor.py @@ -6,7 +6,8 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -27,4 +28,4 @@ def get_continuous_time_array_file(file): logger.info('Reading continuous time array from: ' + str(file)) continuous_time = readTrodesExtractedDataFile(file) return np.vstack((continuous_time['data']['trodestime'], - continuous_time['data']['adjusted_systime'])) + continuous_time['data']['adjusted_systime'])) diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index 89de253c3..af83d2fe3 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -6,7 +6,8 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) NANOSECONDS_PER_SECOND = 1E9 diff --git a/rec_to_nwb/processing/tools/file_downloader.py b/rec_to_nwb/processing/tools/file_downloader.py index 1631ff74d..74d8f7695 100644 --- a/rec_to_nwb/processing/tools/file_downloader.py +++ b/rec_to_nwb/processing/tools/file_downloader.py @@ -13,7 +13,8 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/validation/associated_files_validation.py b/rec_to_nwb/processing/validation/associated_files_validation.py index b80544808..cdb16d5aa 100644 --- a/rec_to_nwb/processing/validation/associated_files_validation.py +++ b/rec_to_nwb/processing/validation/associated_files_validation.py @@ -7,7 +7,8 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/validation/ntrode_validator.py b/rec_to_nwb/processing/validation/ntrode_validator.py index 6ac71cbb7..4efeb901b 100644 --- a/rec_to_nwb/processing/validation/ntrode_validator.py +++ b/rec_to_nwb/processing/validation/ntrode_validator.py @@ -20,7 +20,8 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) From d6d3fd1dfa05999e68f5bf33c9f60e4b5336e089 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 11:09:37 -0700 Subject: [PATCH 094/205] Minor formatting --- rec_to_nwb/__init__.py | 1 - rec_to_nwb/logging.conf | 2 +- .../iterator/multi_thread_data_iterator.py | 46 +++++++++++-------- .../multi_thread_timestamp_iterator.py | 18 +++++--- .../iterator/single_thread_data_iterator.py | 3 +- .../single_thread_timestamp_iterator.py | 5 +- .../validation/ntrode_validation_summary.py | 4 +- 7 files changed, 46 insertions(+), 33 deletions(-) diff --git a/rec_to_nwb/__init__.py b/rec_to_nwb/__init__.py index 256fa3794..b5850111f 100644 --- a/rec_to_nwb/__init__.py +++ b/rec_to_nwb/__init__.py @@ -1,4 +1,3 @@ -#__init__.py from rec_to_nwb.processing.builder.nwb_file_builder import NWBFileBuilder from rec_to_nwb.processing.builder.raw_to_nwb_builder import RawToNWBBuilder from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager diff --git a/rec_to_nwb/logging.conf b/rec_to_nwb/logging.conf index 49bc73b6c..90ea35dbc 100644 --- a/rec_to_nwb/logging.conf +++ b/rec_to_nwb/logging.conf @@ -8,7 +8,7 @@ keys=fileHandler keys=fileFormatter [logger_root] -level = INFO +level=INFO handlers=fileHandler [handler_fileHandler] diff --git a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py index d809639f5..f7f33c18b 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_data_iterator.py @@ -13,22 +13,25 @@ def __init__(self, data, number_of_threads=6): def __next__(self): if self._current_index < self.number_of_steps: - number_of_threads_in_current_step = min(self.number_of_threads, - self.number_of_files_in_single_dataset - self.current_file) + number_of_threads_in_current_step = min( + self.number_of_threads, + self.number_of_files_in_single_dataset - self.current_file) with concurrent.futures.ThreadPoolExecutor() as executor: - threads = [executor.submit(MultiThreadDataIterator.get_data_from_file, - self.data, self.current_dataset, self.current_file + i) - for i in range(number_of_threads_in_current_step)] + threads = [executor.submit( + MultiThreadDataIterator.get_data_from_file, + self.data, self.current_dataset, self.current_file + i) + for i in range(number_of_threads_in_current_step)] data_from_multiple_files = () for thread in threads: data_from_multiple_files += (thread.result(),) stacked_data_from_multiple_files = np.hstack( data_from_multiple_files) - selection = self.get_selection(number_of_threads=number_of_threads_in_current_step, - current_dataset=self.current_dataset, - dataset_file_length=self.dataset_file_length, - current_file=self.current_file, - number_of_rows=self.number_of_rows) + selection = self.get_selection( + number_of_threads=number_of_threads_in_current_step, + current_dataset=self.current_dataset, + dataset_file_length=self.dataset_file_length, + current_file=self.current_file, + number_of_rows=self.number_of_rows) data_chunk = DataChunk( data=stacked_data_from_multiple_files, selection=selection) @@ -64,22 +67,25 @@ def __init__(self, data, number_of_threads=6, read_chunk_mb=100): def __next__(self): if self._current_index < self.number_of_steps: - number_of_threads_in_current_step = min(self.number_of_threads, - self.number_of_files_in_single_dataset - self.current_file) + number_of_threads_in_current_step = min( + self.number_of_threads, + self.number_of_files_in_single_dataset - self.current_file) with concurrent.futures.ThreadPoolExecutor() as executor: - threads = [executor.submit(MultiThreadDataIterator.get_data_from_file, - self.data, self.current_dataset, self.current_file + i) - for i in range(number_of_threads_in_current_step)] + threads = [executor.submit( + MultiThreadDataIterator.get_data_from_file, + self.data, self.current_dataset, self.current_file + i) + for i in range(number_of_threads_in_current_step)] data_from_multiple_files = () for thread in threads: data_from_multiple_files += (thread.result(),) stacked_data_from_multiple_files = np.hstack( data_from_multiple_files) - selection = self.get_selection(number_of_threads=number_of_threads_in_current_step, - current_dataset=self.current_dataset, - dataset_file_length=self.dataset_file_length, - current_file=self.current_file, - number_of_rows=self.number_of_rows) + selection = self.get_selection( + number_of_threads=number_of_threads_in_current_step, + current_dataset=self.current_dataset, + dataset_file_length=self.dataset_file_length, + current_file=self.current_file, + number_of_rows=self.number_of_rows) data_chunk = DataChunk( data=stacked_data_from_multiple_files, selection=selection) diff --git a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py index a7b9a962c..24b518ad3 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/multi_thread_timestamp_iterator.py @@ -15,13 +15,15 @@ def __init__(self, data, number_of_threads=6): # Override def __next__(self): if self._current_index < self.number_of_steps: - number_of_threads_in_current_step = min(self.number_of_threads, - self.number_of_steps - self._current_index) + number_of_threads_in_current_step = min( + self.number_of_threads, + self.number_of_steps - self._current_index) with concurrent.futures.ThreadPoolExecutor() as executor: - threads = [executor.submit(MultiThreadTimestampIterator.get_data_from_file, - self.data, self.current_dataset + i) - for i in range(number_of_threads_in_current_step)] + threads = [executor.submit( + MultiThreadTimestampIterator.get_data_from_file, + self.data, self.current_dataset + i) + for i in range(number_of_threads_in_current_step)] data_from_multiple_files = () for thread in threads: data_from_multiple_files += (thread.result(),) @@ -42,5 +44,7 @@ def __next__(self): next = __next__ def __get_selection(self, number_of_threads_in_current_step): - return np.s_[sum(self.dataset_file_lenght[0:self.current_dataset]): - sum(self.dataset_file_lenght[0:self.current_dataset + number_of_threads_in_current_step]), ] + return np.s_[ + sum(self.dataset_file_lenght[0:self.current_dataset]): + sum(self.dataset_file_lenght[0:self.current_dataset + + number_of_threads_in_current_step]), ] diff --git a/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py index d1f47fd6a..16397e7f4 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/single_thread_data_iterator.py @@ -33,4 +33,5 @@ def __next__(self): next = __next__ def __get_data_from_file(self): - return np.transpose(self.data.read_data(self.current_dataset, self.current_file)) + return np.transpose(self.data.read_data(self.current_dataset, + self.current_file)) diff --git a/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py index 99d629d64..19d59053d 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/single_thread_timestamp_iterator.py @@ -26,5 +26,6 @@ def __get_timestamps(self): return self.data.retrieve_real_timestamps(self.current_dataset) def __get_selection(self): - return np.s_[sum(self.dataset_file_lenght[0:self.current_dataset]): - sum(self.dataset_file_lenght[0:self.current_dataset + 1]), ] + return np.s_[ + sum(self.dataset_file_lenght[0:self.current_dataset]): + sum(self.dataset_file_lenght[0:self.current_dataset + 1]), ] diff --git a/rec_to_nwb/processing/validation/ntrode_validation_summary.py b/rec_to_nwb/processing/validation/ntrode_validation_summary.py index cf301419e..375d6d01b 100644 --- a/rec_to_nwb/processing/validation/ntrode_validation_summary.py +++ b/rec_to_nwb/processing/validation/ntrode_validation_summary.py @@ -9,4 +9,6 @@ def __init__(self, ntrodes_num, spike_ntrodes_num): self.spike_ntrodes_num = spike_ntrodes_num def is_valid(self): - return self.ntrodes_num > 0 and self.spike_ntrodes_num > 0 and self.ntrodes_num == self.spike_ntrodes_num + return (self.ntrodes_num > 0 and + self.spike_ntrodes_num > 0 and + self.ntrodes_num == self.spike_ntrodes_num) From 0aed294b8d3f72f905d7c47cbc2f8981500bab95 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 11:09:56 -0700 Subject: [PATCH 095/205] Make constants explicit --- .../nwb/components/epochs/fl_epochs_extractor.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py index f94510567..8fc294af3 100644 --- a/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py +++ b/rec_to_nwb/processing/nwb/components/epochs/fl_epochs_extractor.py @@ -1,5 +1,7 @@ from rec_to_binaries.read_binaries import readTrodesExtractedDataFile +NANOSECONDS_PER_SECOND = 1E9 + class FlEpochsExtractor: @@ -13,9 +15,11 @@ def extract_epochs(self): continuous_time_data = self.__read_contunious_time_file( continuous_time_file) session_start_times.append( - float(continuous_time_data['data'][0][1]) / 1E9) + float(continuous_time_data['data'][0][1]) / + NANOSECONDS_PER_SECOND) session_end_times.append( - float(continuous_time_data['data'][-1][1]) / 1E9) + float(continuous_time_data['data'][-1][1]) / + NANOSECONDS_PER_SECOND) return session_start_times, session_end_times def __read_contunious_time_file(self, continuous_time_file): From a7c7fa1d640ceba2b5ad14bb422ec40599db8b8d Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 12:10:27 -0700 Subject: [PATCH 096/205] Fix missing commas --- rec_to_nwb/processing/builder/nwb_file_builder.py | 2 +- .../builder/originators/associated_files_originator.py | 4 +++- .../builder/originators/camera_device_originator.py | 4 +++- .../originators/camera_sample_frame_counts_originator.py | 4 +++- .../builder/originators/data_acq_device_originator.py | 4 +++- rec_to_nwb/processing/builder/originators/dio_originator.py | 4 +++- .../builder/originators/electrode_group_originator.py | 4 +++- .../builder/originators/electrodes_extension_originator.py | 4 +++- .../processing/builder/originators/electrodes_originator.py | 4 +++- .../processing/builder/originators/epochs_originator.py | 4 +++- .../builder/originators/header_device_originator.py | 4 +++- .../builder/originators/mda_invalid_time_originator.py | 4 +++- rec_to_nwb/processing/builder/originators/mda_originator.py | 4 +++- .../builder/originators/mda_valid_time_originator.py | 4 +++- .../processing/builder/originators/pos_invalid_originator.py | 4 +++- .../builder/originators/pos_valid_time_originator.py | 4 +++- .../processing/builder/originators/position_originator.py | 4 +++- rec_to_nwb/processing/builder/originators/probe_originator.py | 4 +++- .../builder/originators/processing_module_originator.py | 4 +++- .../sample_count_timestamp_corespondence_originator.py | 4 +++- .../builder/originators/shanks_electrodes_originator.py | 4 +++- .../processing/builder/originators/shanks_originator.py | 4 +++- rec_to_nwb/processing/builder/originators/task_originator.py | 4 +++- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 2 +- rec_to_nwb/processing/header/header_checker/header_logger.py | 2 +- rec_to_nwb/processing/nwb/common/timestamps_manager.py | 2 +- .../processing/nwb/components/analog/fl_analog_extractor.py | 4 ++-- 27 files changed, 72 insertions(+), 28 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index ee2323bb9..0b1b5c150 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -86,7 +86,7 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf') + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/associated_files_originator.py b/rec_to_nwb/processing/builder/originators/associated_files_originator.py index ad88c35fb..9f0177689 100644 --- a/rec_to_nwb/processing/builder/originators/associated_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/associated_files_originator.py @@ -14,7 +14,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/camera_device_originator.py b/rec_to_nwb/processing/builder/originators/camera_device_originator.py index bf9ee3d49..b7b2f45e5 100644 --- a/rec_to_nwb/processing/builder/originators/camera_device_originator.py +++ b/rec_to_nwb/processing/builder/originators/camera_device_originator.py @@ -10,7 +10,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py b/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py index 67bc25740..2390a9f8c 100644 --- a/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py +++ b/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py b/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py index bfe50efcd..ee3405bc0 100644 --- a/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py +++ b/rec_to_nwb/processing/builder/originators/data_acq_device_originator.py @@ -6,7 +6,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/dio_originator.py b/rec_to_nwb/processing/builder/originators/dio_originator.py index 42babf284..098e56fd7 100644 --- a/rec_to_nwb/processing/builder/originators/dio_originator.py +++ b/rec_to_nwb/processing/builder/originators/dio_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/electrode_group_originator.py b/rec_to_nwb/processing/builder/originators/electrode_group_originator.py index 92d195fa8..a53646a3e 100644 --- a/rec_to_nwb/processing/builder/originators/electrode_group_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrode_group_originator.py @@ -10,7 +10,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py b/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py index a3cecca85..0a08095c0 100644 --- a/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrodes_extension_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/electrodes_originator.py b/rec_to_nwb/processing/builder/originators/electrodes_originator.py index f5fe88035..3d5446531 100644 --- a/rec_to_nwb/processing/builder/originators/electrodes_originator.py +++ b/rec_to_nwb/processing/builder/originators/electrodes_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/epochs_originator.py b/rec_to_nwb/processing/builder/originators/epochs_originator.py index f6252bc74..b3595eba8 100644 --- a/rec_to_nwb/processing/builder/originators/epochs_originator.py +++ b/rec_to_nwb/processing/builder/originators/epochs_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/header_device_originator.py b/rec_to_nwb/processing/builder/originators/header_device_originator.py index 01eb8e8a2..34811e0be 100644 --- a/rec_to_nwb/processing/builder/originators/header_device_originator.py +++ b/rec_to_nwb/processing/builder/originators/header_device_originator.py @@ -11,7 +11,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py b/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py index d3c6d4eb9..98d422536 100644 --- a/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py +++ b/rec_to_nwb/processing/builder/originators/mda_invalid_time_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/mda_originator.py b/rec_to_nwb/processing/builder/originators/mda_originator.py index fa6faf4db..c619516e0 100644 --- a/rec_to_nwb/processing/builder/originators/mda_originator.py +++ b/rec_to_nwb/processing/builder/originators/mda_originator.py @@ -9,7 +9,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py b/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py index 43bcd9b99..38ce1fb0c 100644 --- a/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py +++ b/rec_to_nwb/processing/builder/originators/mda_valid_time_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py b/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py index 34140357e..b4e25f52d 100644 --- a/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py +++ b/rec_to_nwb/processing/builder/originators/pos_invalid_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py b/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py index 3f7c6fda0..54ffffa2b 100644 --- a/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py +++ b/rec_to_nwb/processing/builder/originators/pos_valid_time_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index b89476f1f..a76fd6d85 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -12,7 +12,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/probe_originator.py b/rec_to_nwb/processing/builder/originators/probe_originator.py index e7d9ca663..8e61e652f 100644 --- a/rec_to_nwb/processing/builder/originators/probe_originator.py +++ b/rec_to_nwb/processing/builder/originators/probe_originator.py @@ -6,7 +6,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/processing_module_originator.py b/rec_to_nwb/processing/builder/originators/processing_module_originator.py index 77102e9d2..38491bb8a 100644 --- a/rec_to_nwb/processing/builder/originators/processing_module_originator.py +++ b/rec_to_nwb/processing/builder/originators/processing_module_originator.py @@ -6,7 +6,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py b/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py index 87629840f..6197e8605 100644 --- a/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py +++ b/rec_to_nwb/processing/builder/originators/sample_count_timestamp_corespondence_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py b/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py index a0552d995..033758c29 100644 --- a/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py +++ b/rec_to_nwb/processing/builder/originators/shanks_electrodes_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/shanks_originator.py b/rec_to_nwb/processing/builder/originators/shanks_originator.py index a281c05f8..df1308ebe 100644 --- a/rec_to_nwb/processing/builder/originators/shanks_originator.py +++ b/rec_to_nwb/processing/builder/originators/shanks_originator.py @@ -8,7 +8,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/originators/task_originator.py b/rec_to_nwb/processing/builder/originators/task_originator.py index 941389528..124738c74 100644 --- a/rec_to_nwb/processing/builder/originators/task_originator.py +++ b/rec_to_nwb/processing/builder/originators/task_originator.py @@ -6,7 +6,9 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=str(path) + '/../../../logging.conf', disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, + os.pardir, 'logging.conf'), + disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index b97b1ca27..529962373 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -16,7 +16,7 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf') + fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/header/header_checker/header_logger.py b/rec_to_nwb/processing/header/header_checker/header_logger.py index 704b3efc9..7495f7b14 100644 --- a/rec_to_nwb/processing/header/header_checker/header_logger.py +++ b/rec_to_nwb/processing/header/header_checker/header_logger.py @@ -4,7 +4,7 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( fname=os.path.join(str(path), os.pardir, os.pardir, - os.pardir, 'logging.conf') + os.pardir, 'logging.conf'), disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/common/timestamps_manager.py b/rec_to_nwb/processing/nwb/common/timestamps_manager.py index f55c55055..219918378 100644 --- a/rec_to_nwb/processing/nwb/common/timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/timestamps_manager.py @@ -11,7 +11,7 @@ logging.config.fileConfig( fname=os.path.join(str(path), os.pardir, os.pardir, - os.pardir, 'logging.conf') + os.pardir, 'logging.conf'), disable_existing_loggers=False) logger = logging.getLogger(__name__) diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py index b2c1a021f..9d755e29e 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_extractor.py @@ -9,7 +9,7 @@ path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( fname=os.path.join(str(path), os.pardir, os.pardir, - os.pardir, os.pardir, 'logging.conf') + os.pardir, os.pardir, 'logging.conf'), disable_existing_loggers=False) logger = logging.getLogger(__name__) @@ -23,7 +23,7 @@ def extract_analog_for_single_dataset(analog_files, continuous_time_file, for analog_sensor in analog_files: analog_data = readTrodesExtractedDataFile( analog_files[analog_sensor]) - if not 'timestamps' in analog_sensor: + if 'timestamps' not in analog_sensor: values = analog_data['data'] single_dataset_data[analog_data['id']] = values else: From 13fc6b11e609600965912ea71208f73836ecc16f Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 14:30:30 -0700 Subject: [PATCH 097/205] Remove old environment yaml Git is tracking this anyways --- rec_to_nwb/environment.yml.orig | 61 --------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 rec_to_nwb/environment.yml.orig diff --git a/rec_to_nwb/environment.yml.orig b/rec_to_nwb/environment.yml.orig deleted file mode 100644 index 8a33382b2..000000000 --- a/rec_to_nwb/environment.yml.orig +++ /dev/null @@ -1,61 +0,0 @@ -name: rec_to_nwb -channels: - - conda-forge - - defaults - - novelakrk -dependencies: - - python>=3.6,<3.8 - - pip - - hdmf - - pynwb - - asn1crypto - - blas - - ca-certificates - - certifi - - cffi - - chardet - - cryptography - - elementpath - - h5py - - hdf5 - - idna - - jupyter - - libblas - - libcblas - - liblapack - - mkl - - mkl-service - - notebook - - numpy - - openssl - - pandas - - pycparser - - pyopenssl - - pysocks - - python-dateutil - - pytz - - requests - - scipy - - setuptools - - six - - sqlite - - urllib3 - - wheel - - xmlschema - - zlib - - vdom - - pyyaml - - pytest - - testfixtures - - ndx-franklab-novela=0.0.011 - - pip: - - mountainlab_pytools - - xmldiff - - rec-to-binaries==0.6.0.dev0 - - hdmf>2.2.0 - - pynwb - -# Docs - - recommonmark - - sphinx-autoapi - - sphinx_rtd_theme From f81f44138302a5e49a275a0aa3bceb29ce87d660 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 14:31:35 -0700 Subject: [PATCH 098/205] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1982ff6b9..f96f5ded8 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Currently we suggest following the instructions to install https://github.com/Lo ```bash git clone https://github.com/LorenFrankLab/rec_to_nwb.git - cd rec_to_nwb/rec_to_nwb + cd rec_to_nwb ``` 5. Create conda environment. ```bash From d921781bec70d98605801c70bbcc69f89ccc144e Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 14:32:54 -0700 Subject: [PATCH 099/205] Update test environment --- rec_to_nwb/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/test.yml b/rec_to_nwb/test.yml index d57c017c0..ba97cb932 100644 --- a/rec_to_nwb/test.yml +++ b/rec_to_nwb/test.yml @@ -2,9 +2,11 @@ name: test channels: - conda-forge - defaults + - franklab - novelakrk dependencies: - python>=3.6,<3.8 + - rec_to_binaries - pip - hdmf - pynwb @@ -46,10 +48,11 @@ dependencies: - pytest - testfixtures - ndx-franklab-novela=0.0.011 + - jupyterlab + - nb_conda - pip: - mountainlab_pytools - xmldiff - - rec-to-binaries - hdmf>2.1.0 - pynwb From da163de8bff0f7a00a3425208b45d348556a7ee2 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 14:39:09 -0700 Subject: [PATCH 100/205] Update README.md --- README.md | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f96f5ded8..53f91e0ae 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,9 @@ Currently we suggest following the instructions to install https://github.com/Lo ``` 6. Install rec_to_nwb ```bash - cd .. - python setup.py install + pip install -e . ``` -7. jupyter notebook installation - ```bash - pip install jupyter notebook - ``` -8. Documentation can be viewed at
+7. Documentation can be viewed at
# How to use it From 8df8cdf1ad8c31072d51fe367aca31070d3b2816 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 19:13:42 -0700 Subject: [PATCH 101/205] Minor formatting --- .../components/video_files/fl_video_files_extractor.py | 10 ++++------ .../components/video_files/fl_video_files_manager.py | 5 ++++- .../nwb/components/video_files/video_files_creator.py | 1 + 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index e91530024..cc051ce68 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -18,7 +18,9 @@ class FlVideoFilesExtractor: @beartype - def __init__(self, raw_data_path: str, video_files_metadata: list, + def __init__(self, + raw_data_path: str, + video_files_metadata: list, convert_timestamps: bool = True, return_timestamps: bool = True): self.raw_data_path = raw_data_path @@ -76,8 +78,4 @@ def _read_video_timestamps_hw_framecount(self, video_file): "videoTimeStamps.cameraHWFrameCount")['data']['frameCount']) def _convert_timestamps(self, timestamps): - # converted_timestamps = np.ndarray(shape=np.shape(timestamps), dtype='float64') - converted_timestamps = timestamps / NANOSECONDS_PER_SECOND - # for i, record in enumerate(timestamps): - # converted_timestamps[i] = record[2]/1E9 - return converted_timestamps + return timestamps / NANOSECONDS_PER_SECOND diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index 01ce8c78e..7b7471306 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -10,7 +10,10 @@ class FlVideoFilesManager: @beartype - def __init__(self, raw_data_path: str, video_path: str, video_files_metadata: list, + def __init__(self, + raw_data_path: str, + video_path: str, + video_files_metadata: list, convert_timestamps: bool = True, return_timestamps: bool = True): self.video_files_copy_maker = VideoFilesCopyMaker( diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py index ec093616d..05064661d 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py @@ -1,3 +1,4 @@ +"""Creates a NwbImageSeries object that corresponds to the video""" import os from ndx_franklab_novela.nwb_image_series import NwbImageSeries From 1fb6a8a8f0f284c40df4885567a23e58e77fe786 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 19:47:52 -0700 Subject: [PATCH 102/205] Add documentation --- .../video_files/fl_video_files_extractor.py | 65 ++++++++++++++++++- 1 file changed, 63 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index cc051ce68..fa11c33d8 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -29,6 +29,7 @@ def __init__(self, self.return_timestamps = return_timestamps def extract_video_files(self): + """Returns the name, timestamps and device for each video file""" video_files = self.video_files_metadata extracted_video_files = [] for video_file in video_files: @@ -45,6 +46,22 @@ def extract_video_files(self): return extracted_video_files def _get_timestamps(self, video_file): + """Retrieves the video timestamps. + + Timestamps are in units of seconds and will be either relative to the + start of the recording (if old dataset) or in seconds since 1/1/1970 + if precision time protocol (PTP) is used to synchronize the camera + frames to Trodes data packets. + + Parameters + ---------- + video_file : str + + Returns + ------- + timestamps : ndarray + + """ try: video_timestamps = self._read_video_timestamps_hw_sync(video_file) logger.info('Loaded cameraHWSync timestamps for {}'.format( @@ -54,8 +71,9 @@ def _get_timestamps(self, video_file): # old dataset video_timestamps = self._read_video_timestamps_hw_framecount( video_file) - logger.info('Loaded cameraHWFrameCount for {} (old dataset)'.format( - video_file['name'][:-4])) + logger.info( + 'Loaded cameraHWFrameCount for {} (old dataset)'.format( + video_file['name'][:-4])) is_old_dataset = True # the timestamps array from the cam if is_old_dataset or (not self.convert_timestamps): @@ -64,6 +82,24 @@ def _get_timestamps(self, video_file): return self._convert_timestamps(video_timestamps) def _read_video_timestamps_hw_sync(self, video_file): + """Returns video timestamps in unix time which are synchronized to the + Trodes data packets. + + videoTimeStamps.cameraHWSync is a file extracted by the python package + `rec_to_binaries` from the .rec file. It only is extracted when using + precision time protocol (PTP) to synchronize the camera clock with + Trodes data packets. The HWTimestamp array in this file are the unix + timestamps relative to seconds since 1/1/1970. + + Parameters + ---------- + video_file : str + + Returns + ------- + unix_timestamps : ndarray + + """ return readTrodesExtractedDataFile( os.path.join( self.raw_data_path, @@ -71,6 +107,20 @@ def _read_video_timestamps_hw_sync(self, video_file): "videoTimeStamps.cameraHWSync")['data']['HWTimestamp']) def _read_video_timestamps_hw_framecount(self, video_file): + """Returns the index of video frames. + + If PTP is not in use, only the videoTimeStamps.cameraHWFrameCount + file is generated by the `rec_to_binaries` package. + + Parameters + ---------- + video_file : str + + Returns + ------- + index : ndarray + + """ return readTrodesExtractedDataFile( os.path.join( self.raw_data_path, @@ -78,4 +128,15 @@ def _read_video_timestamps_hw_framecount(self, video_file): "videoTimeStamps.cameraHWFrameCount")['data']['frameCount']) def _convert_timestamps(self, timestamps): + """Converts timestamps from nanoseconds to seconds + + Parameters + ---------- + timestamps : int + + Returns + ------- + timestamps : float + + """ return timestamps / NANOSECONDS_PER_SECOND From 6a567db8cdc80904d3941828df0227ed6946218f Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 19:49:25 -0700 Subject: [PATCH 103/205] Add documentation --- .../nwb/components/video_files/fl_video_files_extractor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index fa11c33d8..a72b24828 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -1,3 +1,4 @@ +"""Returns the name, timestamps and device for each video file""" import logging.config import os From 84562ece36f78a9ae2261e8fdcb14c44e424cde6 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 20:04:56 -0700 Subject: [PATCH 104/205] Add documentation --- .../nwb/components/video_files/fl_video_files_manager.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index 7b7471306..1541509f5 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -1,3 +1,5 @@ +"""Gets the name, timestamps and device for each video file and inserts them +into a FlVideoFile object""" from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_builder import \ FlVideoFilesBuilder from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor import \ @@ -26,6 +28,8 @@ def __init__(self, self.fl_video_files_builder = FlVideoFilesBuilder() def get_video_files(self): + """Gets the name, timestamps and device for each video file and + inserts them into a FlVideoFile object""" extracted_video_files = self.fl_video_files_extractor.extract_video_files() return [ self.fl_video_files_builder.build( From 556f4404078288f930c45a8521a1463aeafbc851 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 20:05:58 -0700 Subject: [PATCH 105/205] Add copying of video to doc --- .../nwb/components/video_files/fl_video_files_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index 1541509f5..33ae1bb59 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -1,5 +1,5 @@ """Gets the name, timestamps and device for each video file and inserts them -into a FlVideoFile object""" +into a FlVideoFile object. Also copies the video files to `video_path`""" from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_builder import \ FlVideoFilesBuilder from rec_to_nwb.processing.nwb.components.video_files.fl_video_files_extractor import \ From bdd0a18302b1286bcf1dffd3221d0c2d3ec19388 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 20:18:48 -0700 Subject: [PATCH 106/205] Add documentation --- .../processing/builder/originators/video_files_originator.py | 4 ++++ .../nwb/components/video_files/video_files_injector.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/rec_to_nwb/processing/builder/originators/video_files_originator.py b/rec_to_nwb/processing/builder/originators/video_files_originator.py index a7076eb48..a05f3c10a 100644 --- a/rec_to_nwb/processing/builder/originators/video_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/video_files_originator.py @@ -18,6 +18,10 @@ def __init__(self, raw_data_path, video_path, video_files_metadata, return_timestamps=return_timestamps) def make(self, nwb_content): + """Gets the name, timestamps and device for each video file, + creates a NwbImageSeries object that corresponds to the video, and + then inserts the NwbImageSeries object into an NWBFile under the path: + processing/video_files""" fl_video_files = self.fl_video_files_manager.get_video_files() image_series_list = [ VideoFilesCreator.create( diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py index 8cb30475c..94af94a02 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py @@ -1,3 +1,5 @@ +"""Inserts the NwbImageSeries object into an NWBFile under the path: +processing/video_files""" from pynwb import NWBFile from pynwb.behavior import BehavioralEvents from rec_to_nwb.processing.tools.beartype.beartype import beartype From 7b055dffe3efa4772f4ea41a53f4d88691ae3775 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 21:01:37 -0700 Subject: [PATCH 107/205] Avoid loop --- .../camera_sample_frame_counts_extractor.py | 31 ++++++++----------- 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py index 9266ae425..2228efac2 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py @@ -2,6 +2,7 @@ import os import numpy as np +import pandas as pd from rec_to_binaries.read_binaries import readTrodesExtractedDataFile @@ -31,23 +32,17 @@ def __get_all_hwframecount_files(self): @staticmethod def __merge_data_from_multiple_files(data): - merged_data = np.vstack(data) - return merged_data + return np.vstack(data) def __extract_single(self, hw_frame_count_filename): - content = readTrodesExtractedDataFile( - os.path.join(self.raw_data_path, hw_frame_count_filename) - )["data"] - camera_sample_frame_counts = np.ndarray( - shape=(len(content), 2), dtype='uint32') - for i, record in enumerate(content): - if len(record) > 1: - # from cameraHWSync - camera_sample_frame_counts[i, 0] = record[1] # framecounts - camera_sample_frame_counts[i, 1] = record[0] # timestamps - else: - # from cameraHWFrameCount (old dataset) - camera_sample_frame_counts[i, 0] = record[0] # framecounts - # timestamps (dummy) - camera_sample_frame_counts[i, 1] = i - return camera_sample_frame_counts + content = pd.DataFrame( + readTrodesExtractedDataFile( + os.path.join(self.raw_data_path, hw_frame_count_filename) + )["data"]) + try: + # columns: frame count, timestamps + return content.iloc[:, [1, 0]].to_numpy() + except IndexError: + return np.vstack((content.iloc[:, 0].to_numpy(), # frame counts + np.arange(len(content))) # dummy timestamps + ).T.astype(np.uint32) From 06d40cca3b0cc98af4532571d46d5dffdb42f110 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 21:28:37 -0700 Subject: [PATCH 108/205] Add documentation --- .../camera_sample_frame_counts_originator.py | 6 +++ .../camera_sample_frame_counts_builder.py | 2 + .../camera_sample_frame_counts_extractor.py | 37 ++++++++----------- .../camera_sample_frame_counts_injector.py | 2 +- .../camera_sample_frame_counts_manager.py | 4 ++ 5 files changed, 28 insertions(+), 23 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py b/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py index 2390a9f8c..8fc1156d1 100644 --- a/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py +++ b/rec_to_nwb/processing/builder/originators/camera_sample_frame_counts_originator.py @@ -1,3 +1,5 @@ +"""Gets the video frame counts and timestamps for all epochs, inserts them +into an NWB timeseries object, and puts it in an NWB File""" import logging.config import os @@ -19,6 +21,10 @@ def __init__(self, raw_data_path): self.raw_data_path = raw_data_path def make(self, nwb_content): + """Gets the video frame counts and timestamps for all epochs, inserts them + into an NWB timeseries object, and puts it in an NWB File under + the processing module `camera_sample_frame_counts` + """ logger.info('Camera Sample Frame Counts Builder: Building') manager = CameraSampleFrameCountsManager( raw_data_path=self.raw_data_path diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py index a3a740ccf..bb817aeb0 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_builder.py @@ -1,3 +1,5 @@ +"""Creates a NWB time series object that corresponds to the video frame counts +""" from pynwb import TimeSeries diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py index 2228efac2..706ceda8a 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_extractor.py @@ -1,3 +1,4 @@ +"""Returns the video frame counts and timestamps for all epochs.""" import glob import os @@ -11,33 +12,25 @@ def __init__(self, raw_data_path): self.raw_data_path = raw_data_path def extract(self): - data = [] - files = self.__get_all_hwsync_files() - if len(files) == 0: - # in case of old dataset - files = self.__get_all_hwframecount_files() - for file in files: - data.append(self.__extract_single(file)) - merged_data = self.__merge_data_from_multiple_files(data) - return merged_data + """Returns the video frame counts and timestamps for all epochs. - def __get_all_hwsync_files(self): - return glob.glob( + If precision time protocol (PTP) timestamps do not exist, then + timestamps are simply just a count of the frames in that epoch. + """ + files = glob.glob( os.path.join(self.raw_data_path, '*.videoTimeStamps.cameraHWSync')) + if len(files) == 0: + # in case of old dataset + files = glob.glob( + os.path.join(self.raw_data_path, + '*.videoTimeStamps.cameraHWFrameCount')) + return np.vstack([self.__extract_single(file) for file in files]) - def __get_all_hwframecount_files(self): - return glob.glob( - os.path.join(self.raw_data_path, - '*.videoTimeStamps.cameraHWFrameCount')) - - @staticmethod - def __merge_data_from_multiple_files(data): - return np.vstack(data) - - def __extract_single(self, hw_frame_count_filename): + def __extract_single(self, filename): + """Returns the video frame counts and timestamps for a single epoch.""" content = pd.DataFrame( readTrodesExtractedDataFile( - os.path.join(self.raw_data_path, hw_frame_count_filename) + os.path.join(self.raw_data_path, filename) )["data"]) try: # columns: frame count, timestamps diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py index 868c1afa1..3b2901e4a 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_injector.py @@ -2,5 +2,5 @@ class CameraSampleFrameCountsInjector: @staticmethod def inject(timeseries, processing_module_name, nwb_content): - """insert timeseries series to nwb file""" + """Insert timeseries series to nwb file""" nwb_content.processing[processing_module_name].add(timeseries) diff --git a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py index 5e081dbea..4ef096a9c 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/camera_sample_frame_counts/camera_sample_frame_counts_manager.py @@ -1,3 +1,5 @@ +"""Gets the video frame counts and timestamps for all epochs and inserts them +into an NWB timeseries object""" from rec_to_nwb.processing.nwb.components.video_files.camera_sample_frame_counts.camera_sample_frame_counts_builder import \ CameraSampleFrameCountsBuilder from rec_to_nwb.processing.nwb.components.video_files.camera_sample_frame_counts.camera_sample_frame_counts_extractor import \ @@ -9,6 +11,8 @@ def __init__(self, raw_data_path): self.extractor = CameraSampleFrameCountsExtractor(raw_data_path) def get_timeseries(self): + """Gets the video frame counts and timestamps for all epochs and + inserts them into an NWB timeseries object""" data = self.extractor.extract() builder = CameraSampleFrameCountsBuilder(data) return builder.build() From d06d92057cb8a6fa3a243b7536c0c03612ffa098 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 Aug 2021 21:43:39 -0700 Subject: [PATCH 109/205] Move scripts to franklabnwb repo --- .../batch_create_nwb_files.py | 14 -- .../batch_create_yaml_files.py | 16 -- scripts/alex_anna_scripts/generate_day_nwb.py | 80 -------- .../alex_anna_scripts/generate_day_yaml.py | 173 ------------------ 4 files changed, 283 deletions(-) delete mode 100644 scripts/alex_anna_scripts/batch_create_nwb_files.py delete mode 100644 scripts/alex_anna_scripts/batch_create_yaml_files.py delete mode 100644 scripts/alex_anna_scripts/generate_day_nwb.py delete mode 100644 scripts/alex_anna_scripts/generate_day_yaml.py diff --git a/scripts/alex_anna_scripts/batch_create_nwb_files.py b/scripts/alex_anna_scripts/batch_create_nwb_files.py deleted file mode 100644 index 60d50664b..000000000 --- a/scripts/alex_anna_scripts/batch_create_nwb_files.py +++ /dev/null @@ -1,14 +0,0 @@ -from generate_day_nwb import generate_day_nwb -#define animal list -animal_list = ['montague','despereaux','jaq','roquefort'] -#define sessions to analyze for each animal -sess_ana = [] -sess_ana.append([3,11]) -sess_ana.append([6,7,8,9,10,11,12,13,14]) -sess_ana.append([6,7,8,9,10,11,12,13,14,15,16,17,18]) -sess_ana.append([13,14,15,16,17,18,19,20,21,22]) -#loop over and generate the nwb files -for animal, sess in zip(animal_list, sess_ana): - for s in sess: - print('starting ' + animal + ' session ' + str(s)) - generate_day_nwb(animal,s) \ No newline at end of file diff --git a/scripts/alex_anna_scripts/batch_create_yaml_files.py b/scripts/alex_anna_scripts/batch_create_yaml_files.py deleted file mode 100644 index 33b803c38..000000000 --- a/scripts/alex_anna_scripts/batch_create_yaml_files.py +++ /dev/null @@ -1,16 +0,0 @@ -from generate_day_yaml import generate_day_yaml - -animal_list = ['montague','despereaux','jaq','roquefort'] - -sess_ana = [] -sess_ana.append([3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18]) -sess_ana.append([3,4,5,6,7,8,9,10,11,12,13,14]) -sess_ana.append([6,7,8,9,10,11,12,13,14,15,16,17,18]) -sess_ana.append([7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22]) - -for animal, sess in zip(animal_list, sess_ana): - for s in sess: - print('starting ' + animal + ' session ' + str(s)) - generate_day_yaml(animal,s) - - diff --git a/scripts/alex_anna_scripts/generate_day_nwb.py b/scripts/alex_anna_scripts/generate_day_nwb.py deleted file mode 100644 index ffcbcc97b..000000000 --- a/scripts/alex_anna_scripts/generate_day_nwb.py +++ /dev/null @@ -1,80 +0,0 @@ -import os -import logging -import sys -from rec_to_nwb.processing.builder.nwb_file_builder import NWBFileBuilder -from rec_to_binaries import extract_trodes_rec_file -from rec_to_nwb.processing.builder.raw_to_nwb_builder import RawToNWBBuilder -from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager -import scipy.io as si - -def generate_day_nwb(animal,sess_id): - # get the date that corresponds to animal and sess_id - base_dir = '/stelmo/anna/' + animal - ffdir = base_dir + '/filterframework/'; - pad_sess = "{:02d}".format(sess_id) - task = si.loadmat(ffdir + animal + 'task' + pad_sess + '.mat') - # pull off the date that corresponds to the session id - date = str(int(task['task'][0,sess_id-1][0,1]['date'])) - # set the animal name and the date or list of dates to process - dates = [date] - # note that code currently only takes one date at a time; - # build a loop through date strings to create multiiple nwb files at once - - # path to dir containing device and animal/date .yml files - # for example, '/home//Src/franklabnwb/yaml' - yaml_path = '/home/asilva/src/mat_to_nwb/yaml_files/' + animal - # metadata filename for an animal and date. This is a file that you generate as the user. - # for example, '_metadata.yml' - animal_metadata_file = animal + date + '.yaml' #bad_channels in yaml will be left out of the .nwb filie - # metadata filename for a recording device type; - # typically these are common lab files that you shouldn't need to personalize - - probe1_metadata_file = 'tetrode_12.5.yml' - - - #probe1_metadata_file = '128c-4s8mm6cm-20um-40um-sl.yml' - #probe2_metadata_file = 'tetrode_12.5.yml' - - # Specify the paths for the data, the output nwb file, and the video files - # example raw data INPUT path: '/stelmo//' - data_path = '/stelmo/anna/' - # the nwb file OUTPUT path should be '/stelmo/nwb/raw' - # FOR BATCH CHANGE TO ANNA FOLDER - output_path='/stelmo/anna/nwb/raw/' - # video OUTPUT path should be '/stelmo/nwb/video' - # just copies over the raw video files into this dir - video_path='/stelmo/anna/nwb/video' - # note that a rec_to_nwb.log file will also be saved to the directory from which your are running this notebook - - # Specify any optional trodes export flags - # uses rec_to_binaries repo, which uses SpikeGadgets/Trodes export functions - # keep things as raw as possible though - unlike old preprocessing pipeline, - # we aren't doing any filtering or interpolation yet - trodes_rec_export_args = ('-reconfig', '/stelmo/anna/' + animal +'/raw/' + date + '/' + date + '.trodesconf') - - # specify the locations of the metadata files for the animal and the probe(s). - # Note that specifying all possible probes is fine - animal_metadata = os.path.join(yaml_path, animal_metadata_file ) - - probe_metadata = [os.path.join(yaml_path, probe1_metadata_file)] - # probe_metadata = [os.path.join(yaml_path, probe1_metadata_file), - # os.path.join(yaml_path, probe2_metadata_file)] - - # Specify whether preprocessing data should be reextracted (True) or skipped if it already exists (False) - overwrite=True - # note that extraction will write to the directory: data_path+'preprocessing/' and - # you may have data you previously preprocessed in that dir, created with alternate export args - # that you neither want to skip nor overwrite if you're using them for filterframework - metadata = MetadataManager(animal_metadata, probe_metadata) - # build the run enviornment - animal_name = animal - builder = RawToNWBBuilder(animal_name=animal_name, - data_path=data_path, - dates=dates, - nwb_metadata=metadata, - overwrite=overwrite, - output_path=output_path, - video_path=video_path, - trodes_rec_export_args = trodes_rec_export_args) - # run the processing - content = builder.build_nwb() diff --git a/scripts/alex_anna_scripts/generate_day_yaml.py b/scripts/alex_anna_scripts/generate_day_yaml.py deleted file mode 100644 index 83f0c22ae..000000000 --- a/scripts/alex_anna_scripts/generate_day_yaml.py +++ /dev/null @@ -1,173 +0,0 @@ -import loren_frank_data_processing as lfdp -from loren_frank_data_processing import Animal -import pandas as pd -import numpy as np -import yaml -import scipy.io as si - -def generate_day_yaml(animal,sess_id): - # animal = 'montague' - # sess_id = 14 - #ffdir = '/Users/asilva/Documents/mount/stelmo/anna/' + animal + '/filterframework/'; - base_dir = '/stelmo/anna/' + animal - ffdir = base_dir + '/filterframework/'; - - template_yaml = '/home/asilva/src/mat_to_nwb/despereaux20191122.yml'; - pad_sess = "{:02d}".format(sess_id) - - # trials = si.loadmat(ffdir + animal + 'trials' + pad_sess + '.mat') - task = si.loadmat(ffdir + animal + 'task' + pad_sess + '.mat') - # tetinfo = si.loadmat(ffdir + animal + 'tetinfo.mat') - - # pull off the date that corresponds to the session id - date = str(int(task['task'][0,sess_id-1][0,1]['date'])) - - - rat_name = animal - raw_directory = ffdir - animalinfo = {rat_name: Animal(directory=raw_directory, short_name=rat_name)} - tetinfo = lfdp.tetrodes.make_tetrode_dataframe(animalinfo) - taskinfo=lfdp.make_epochs_dataframe(animalinfo) - taskinfo = taskinfo.reset_index() - - # get the relevant day task info - day_task = taskinfo[taskinfo['day'] == sess_id] - day_task['letter'] = day_task['type'].apply(lambda x: x[0]) - day_task['epoch_pad'] = day_task['epoch'].apply(lambda x: "{:02d}".format(x)) - - #Load YAML file - a_yaml_file = open(template_yaml) - yam_temp = yaml.load(a_yaml_file, Loader=yaml.FullLoader) - - # figure out which number run and sleep each epoch is - sleep_num = 0 - run_num = 0 - labels = [] - for l in day_task['letter']: - if(l=='s'): - sleep_num += 1 - labels.append((sleep_num)) - else: - run_num += 1 - labels.append((run_num)) - - day_task['type_num'] = labels - - # put on the associated file and the the video file - day_task['asc_file'] = day_task[['letter','epoch_pad','type_num']].apply(lambda x: base_dir + '/raw/'+ date - +'/' + date + '_' + animal + '_' + x[1] + '_' + x[0] - + str(x[2]) + '.stateScriptLog',axis=1) - - day_task['vid_file'] = day_task[['letter','epoch_pad','type_num']].apply(lambda x: date + '_' + animal + '_' + x[1] - + '_' + x[0] + str(x[2]) + '.1.h264',axis=1) - - # put in the camera value for each. First we have to see what camera corresponds to run and sleep - cams = yam_temp['cameras'] - if('sleep' in cams[0]['camera_name']): - sleep_cam_id = 0 - run_cam_id = 1 - else: - sleep_cam_id = 1 - run_cam_id = 0 - - day_task['camera'] = day_task['letter'].apply(lambda x: sleep_cam_id if x=='s' else run_cam_id) - - # define the statescript path - ss_path = '/stelmo/anna/' + animal + '/raw/' + date + '/'; - - - # write over the session id - yam_temp['session_id'] = animal + '_' + pad_sess - - # write over the subject id - yam_temp['subject']['subject_id'] = animal - - # get the associated files for each task and overwrite - assoc_files = [] - for index, row in day_task.iterrows(): - cur_dict = {} - cur_dict['name'] = 'statescript_' + row['letter'] + str(row['type_num']) - cur_dict['description'] = 'Statescript log ' + row['letter'] + str(row['type_num']) - cur_dict['path'] = row['asc_file'] - cur_dict['task_epochs'] = [row['epoch']] - assoc_files.append(cur_dict) - - # overwrite the template - yam_temp['associated_files'] = assoc_files - - # get the associated video files and overwrite - assoc_vid_files = [] - for index, row in day_task.iterrows(): - cur_dict = {} - cur_dict['name'] = row['vid_file'] - cur_dict['camera_id'] = row['camera'] - cur_dict['task_epoch'] = row['epoch'] - assoc_vid_files.append(cur_dict) - - yam_temp['associated_video_files'] = assoc_vid_files - - # get the behavioral events and overwrite - # 9 -- hardcoded based on the format of task.mat files - behave_events = (task['task'][0,sess_id-1][0,1][0,0][9][0,0][0]) - behave_evt_map = [] - for i in range(0,behave_events.shape[0]): - cur_dict = {} - cur_dict['description'] = str(behave_events[i,1][0]) - cur_dict['name'] = str(behave_events[i,0][0]) - behave_evt_map.append(cur_dict) - - yam_temp['behavioral_events'] = behave_evt_map - - # write over the electrode groups - tmp_elec_group = yam_temp['electrode_groups'][0] - - # first need to pull out the relevant tetrode information - tetinfo = tetinfo.reset_index() - tet_day = tetinfo[(tetinfo['day'] == sess_id) & (tetinfo['epoch']== 1)] - all_elec_groups = [] - for index, row in tet_day.iterrows(): - cur_dict = tmp_elec_group.copy() - cur_dict['id'] = row['tetrode_number'] - 1 - # make nan --> '' - if(isinstance(row['area'],float)): - if(np.isnan(row['area'])): - row['area'] = '' - cur_dict['location'] = row['area'] - cur_dict['targeted_location'] = 'CA1' - all_elec_groups.append(cur_dict) - - yam_temp['electrode_groups'] = all_elec_groups - - - for i in range(0,len(yam_temp['ntrode_electrode_group_channel_map'])): - row = tet_day.iloc[i,:] - yam_temp['ntrode_electrode_group_channel_map'][i]['ntrode_id'] = int(row['tetrode_number']) - yam_temp['ntrode_electrode_group_channel_map'][i]['electrode_group_id'] = int(row['tetrode_number'] - 1) - deadchans = row['deadchans'] - if(isinstance(deadchans,int)): - deadchans = [deadchans] - elif isinstance(deadchans, float): - if np.isnan(deadchans): - deadchans = [] - else: - deadchans = [deadchans] - else: - deadchans = deadchans.tolist() - yam_temp['ntrode_electrode_group_channel_map'][i]['bad_channels'] = deadchans - - - # overwrite the tasks section - - # put in the sleep epochs first - yam_temp['tasks'][0]['task_epochs'] = day_task['epoch'][day_task['letter'] == 's'].tolist() - - # now the run epochs - yam_temp['tasks'][1]['task_epochs'] = day_task['epoch'][day_task['letter'] == 'r'].tolist() - - - #write out the yaml - out_file = '/home/asilva/src/mat_to_nwb/yaml_files/' + animal + date + '.yaml' - stream = open(out_file, 'w') - yaml.dump(yam_temp, stream) # Write a YAML representation of data to 'document.yaml'. - - \ No newline at end of file From 4b77a177507864d999e6d73a4bff278e91b285dc Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 12:05:34 -0700 Subject: [PATCH 110/205] Fix filenames --- .../components/video_files/fl_video_files_extractor.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index a72b24828..cb91ea303 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -104,8 +104,9 @@ def _read_video_timestamps_hw_sync(self, video_file): return readTrodesExtractedDataFile( os.path.join( self.raw_data_path, - video_file["name"][:-4] + - "videoTimeStamps.cameraHWSync")['data']['HWTimestamp']) + os.path.splitext(video_file["name"])[0] + + ".videoTimeStamps.cameraHWSync") + )['data']['HWTimestamp'] def _read_video_timestamps_hw_framecount(self, video_file): """Returns the index of video frames. @@ -125,8 +126,9 @@ def _read_video_timestamps_hw_framecount(self, video_file): return readTrodesExtractedDataFile( os.path.join( self.raw_data_path, - video_file["name"][:-4] + - "videoTimeStamps.cameraHWFrameCount")['data']['frameCount']) + os.path.splitext(video_file["name"])[0] + + "videoTimeStamps.cameraHWFrameCount") + )['data']['frameCount'] def _convert_timestamps(self, timestamps): """Converts timestamps from nanoseconds to seconds From a2e9b0a8125cb53cf8740bc2be54fd464180e9e1 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 12:10:33 -0700 Subject: [PATCH 111/205] Missing period --- .../nwb/components/video_files/fl_video_files_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index cb91ea303..82265c8ff 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -127,7 +127,7 @@ def _read_video_timestamps_hw_framecount(self, video_file): os.path.join( self.raw_data_path, os.path.splitext(video_file["name"])[0] + - "videoTimeStamps.cameraHWFrameCount") + ".videoTimeStamps.cameraHWFrameCount") )['data']['frameCount'] def _convert_timestamps(self, timestamps): From bf0b1646e85df62d187bae37b663d17e9f9bb7e1 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 13:36:58 -0700 Subject: [PATCH 112/205] More detailed logging information --- .../processing/builder/raw_to_nwb_builder.py | 63 ++++++++++--------- 1 file changed, 34 insertions(+), 29 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 529962373..299bb18d8 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -188,17 +188,22 @@ def build_nwb(self, run_preprocessing=True, process_pos_invalid_time (boolean): True if the pos invalid times should be build and append to nwb. Need the pos data inside the nwb. (default True) """ - + logger.info('#######################START############################') if run_preprocessing: self.__preprocess_data() - self.__build_nwb_file(process_mda_valid_time=process_mda_valid_time, - process_mda_invalid_time=process_mda_invalid_time, - process_pos_valid_time=process_pos_valid_time, - process_pos_invalid_time=process_pos_invalid_time) - - def __build_nwb_file(self, process_mda_valid_time=False, process_mda_invalid_time=False, - process_pos_valid_time=False, process_pos_invalid_time=False): + self.__build_nwb_file( + process_mda_valid_time=process_mda_valid_time, + process_mda_invalid_time=process_mda_invalid_time, + process_pos_valid_time=process_pos_valid_time, + process_pos_invalid_time=process_pos_invalid_time) + logger.info('Done...\n') + + def __build_nwb_file(self, + process_mda_valid_time=False, + process_mda_invalid_time=False, + process_pos_valid_time=False, + process_pos_invalid_time=False): logger.info('Building NWB files') os.makedirs(self.output_path, exist_ok=True) os.makedirs(self.video_path, exist_ok=True) @@ -244,28 +249,27 @@ def get_nwb_builder(self, date): ) def __preprocess_data(self): - """process data with rec_to_binaries library""" - + """Process data with rec_to_binaries library""" + logger.info('Extracting binaries from rec files...') logger.info( - 'Extraction parameters :' + '\n' - + 'data_path = ' + self.data_path + '\n' - + 'animal_name = ' + self.animal_name + '\n' - + 'parallel_instances = ' + str(self.parallel_instances) + '\n' - + 'extract_analog = ' + str(self.extract_analog) + '\n' - + 'extract_dio = ' + str(self.extract_dio) + '\n' - + 'extract_time = ' + str(True) + '\n' - + 'extract_mda = ' + str(self.extract_mda) + '\n' - + 'extract_lfps = ' + str(self.extract_lfps) + '\n' - + 'extract_spikes = ' + str(self.extract_spikes) + '\n' - + 'overwrite = ' + str(self.overwrite) + '\n' - + 'lfp_export_args = ' + str(self.lfp_export_args) + '\n' - + 'mda_export_args = ' + str(self.mda_export_args) + '\n' - + 'analog_export_args = ' + str(self.analog_export_args) + '\n' - + 'time_export_args = ' + str(self.time_export_args) + '\n' - + 'spikes_export_args = ' + str(self.spikes_export_args) + '\n' - + 'dio_export_args = ' + str(self.dio_export_args) + '\n' - + 'trodes_rec_export_args = ' + - str(self.trodes_rec_export_args) + '\n' + 'Rec to binaries extraction parameters :' + '\n' + + '\t data_path = ' + self.data_path + '\n' + + '\t animal_name = ' + self.animal_name + '\n' + + '\t parallel_instances = ' + str(self.parallel_instances) + '\n' + + '\t extract_analog = ' + str(self.extract_analog) + '\n' + + '\t extract_dio = ' + str(self.extract_dio) + '\n' + + '\t extract_time = ' + str(True) + '\n' + + '\t extract_mda = ' + str(self.extract_mda) + '\n' + + '\t extract_lfps = ' + str(self.extract_lfps) + '\n' + + '\t extract_spikes = ' + str(self.extract_spikes) + '\n' + + '\t overwrite = ' + str(self.overwrite) + '\n' + + '\t lfp_export_args = ' + str(self.lfp_export_args) + '\n' + + '\t mda_export_args = ' + str(self.mda_export_args) + '\n' + + '\t analog_export_args = ' + str(self.analog_export_args) + '\n' + + '\t time_export_args = ' + str(self.time_export_args) + '\n' + + '\t spikes_export_args = ' + str(self.spikes_export_args) + '\n' + + '\t dio_export_args = ' + str(self.dio_export_args) + '\n' + + '\t trodes_rec_export_args = ' + str(self.trodes_rec_export_args) ) extract_trodes_rec_file( @@ -288,6 +292,7 @@ def __preprocess_data(self): spikes_export_args=self.spikes_export_args, time_export_args=self.time_export_args, ) + logger.info('Done extracting binaries from rec files...') # self.__is_rec_config_valid() @staticmethod From 05b17833cb28019a38648ed5175a192f6fa46517 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 13:40:19 -0700 Subject: [PATCH 113/205] Minor formatting --- rec_to_nwb/processing/header/xml_extractor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/header/xml_extractor.py b/rec_to_nwb/processing/header/xml_extractor.py index ab56b6ac6..868fdcb24 100644 --- a/rec_to_nwb/processing/header/xml_extractor.py +++ b/rec_to_nwb/processing/header/xml_extractor.py @@ -28,7 +28,9 @@ class XMLExtractor: xml_path = '' xsd_path = '' - def __init__(self, rec_path='../data/REC_sample.xml', xml_path='../data/output.xml', + def __init__(self, + rec_path='../data/REC_sample.xml', + xml_path='../data/output.xml', xsd_path=None): self.rec_path = rec_path self.xml_path = xml_path From 6c04bb65d76986f08d3ea211ce1120a028185c37 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 13:41:29 -0700 Subject: [PATCH 114/205] Don't log xml header differences It's hard to tell what's going on in the differences --- .../processing/header/header_checker/header_logger.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/header/header_checker/header_logger.py b/rec_to_nwb/processing/header/header_checker/header_logger.py index 7495f7b14..1187c58ea 100644 --- a/rec_to_nwb/processing/header/header_checker/header_logger.py +++ b/rec_to_nwb/processing/header/header_checker/header_logger.py @@ -15,8 +15,5 @@ class HeaderLogger: def log_header_differences(headers_differences, rec_files_list): if headers_differences: message = 'Rec files: ' + \ - str(rec_files_list) + ' contain inconsistent xml headers!\n' - differences = [diff for diff in headers_differences - if 'systemTimeAtCreation' not in str(diff) and 'timestampAtCreation' - not in str(diff)] - logger.warning('%s , %s', message, differences) + str(rec_files_list) + ' contain inconsistent xml headers!' + logger.warning(message) From cb05f5d33f33849014624de082a7f311adecbcd5 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 13:59:49 -0700 Subject: [PATCH 115/205] Remove unused code --- rec_to_nwb/processing/nwb/common/timestamps_manager.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/rec_to_nwb/processing/nwb/common/timestamps_manager.py b/rec_to_nwb/processing/nwb/common/timestamps_manager.py index 219918378..cde7bedb3 100644 --- a/rec_to_nwb/processing/nwb/common/timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/timestamps_manager.py @@ -34,9 +34,6 @@ def retrieve_real_timestamps(self, dataset_id, convert_timestamps=True): timestamps_ids = self.read_timestamps_ids(dataset_id) if not convert_timestamps: return timestamps_ids - - # continuous_time_dict = self.continuous_time_extractor.get_continuous_time_dict_file( - # self.continuous_time_directories[dataset_id]) continuous_time = self.continuous_time_extractor.get_continuous_time_array_file( self.continuous_time_directories[dataset_id]) return self.timestamp_converter.convert_timestamps(continuous_time, timestamps_ids) From e15d1c4b55fcbf2b75c24261dfa48793cd47237d Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 14:00:20 -0700 Subject: [PATCH 116/205] Avoid two loops --- .../position/fl_position_extractor.py | 62 +++++++++---------- 1 file changed, 30 insertions(+), 32 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py index 9a2e4c6ec..beadd722b 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_extractor.py @@ -1,3 +1,5 @@ +"""Gets the online position tracking directories and retrieve position and +timestamps""" import os from rec_to_nwb.processing.exceptions.missing_data_exception import \ @@ -18,58 +20,54 @@ class FlPositionExtractor: @beartype def __init__(self, datasets: list, convert_timestamps: bool = True): self.datasets = datasets - self.all_pos, self.continuous_time = self.__extract_data() + (self.all_position_directories, + self.continuous_time_directories) = self.__extract_data() self.convert_timestamps = convert_timestamps def __extract_data(self): - all_pos = [] - continuous_time = [] + """Gets online position tracking file and corresponding continuous + time file""" + all_position_directories = [] + continuous_time_directories = [] for dataset in self.datasets: - data_from_current_dataset = [ + pos_online_paths = [ os.path.join( dataset.get_data_path_from_dataset('pos'), pos_file) - for pos_file in - dataset.get_all_data_from_dataset('pos') if - (pos_file.endswith('.pos_online.dat'))] + for pos_file in dataset.get_all_data_from_dataset('pos') + if pos_file.endswith('.pos_online.dat')] + if dataset.get_continuous_time() is None: raise MissingDataException( 'Incomplete data in dataset ' + str(dataset.name) + 'missing continuous time file') - all_pos.append(data_from_current_dataset) - continuous_time.append(dataset.get_continuous_time()) - return all_pos, continuous_time + all_position_directories.append(pos_online_paths) + continuous_time_directories.append(dataset.get_continuous_time()) + return all_position_directories, continuous_time_directories def get_positions(self): - pos_datas = [ - PosDataManager(directories=[single_pos]) - for single_pos in self.all_pos - ] return [ - MultiThreadDataIterator(pos_data) - for pos_data in pos_datas + MultiThreadDataIterator( + PosDataManager(directories=[position_directory])) + for position_directory in self.all_position_directories ] def get_columns_labels(self): - pos_datas = [ - PosDataManager(directories=[single_pos]) - for single_pos in self.all_pos - ] return [ - pos_data.get_column_labels_as_string() - for pos_data in pos_datas + PosDataManager( + directories=[position_directory]).get_column_labels_as_string() + for position_directory in self.all_position_directories ] def get_timestamps(self): - pos_timestamp_managers = [ - PosTimestampManager( - directories=[single_pos], - continuous_time_directories=[continuous_time], - convert_timestamps=self.convert_timestamps - ) - for single_pos, continuous_time in zip(self.all_pos, self.continuous_time) - ] return [ - MultiThreadTimestampIterator(pos_timestamp_manager) - for pos_timestamp_manager in pos_timestamp_managers + MultiThreadTimestampIterator( + PosTimestampManager( + directories=[position_directory], + continuous_time_directories=[continuous_time_directory], + convert_timestamps=self.convert_timestamps + )) + for position_directory, continuous_time_directory in zip( + self.all_position_directories, + self.continuous_time_directories) ] From 2fb081f9715d425a20045d755073ae8e747a545e Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 14:00:40 -0700 Subject: [PATCH 117/205] Add docstring --- rec_to_nwb/processing/nwb/components/position/fl_position.py | 4 ++++ .../processing/nwb/components/position/fl_position_builder.py | 2 ++ 2 files changed, 6 insertions(+) diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position.py b/rec_to_nwb/processing/nwb/components/position/fl_position.py index 33c883774..9a4eaf882 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position.py @@ -1,4 +1,8 @@ +"""Class that stores the position information""" + + class FlPosition: + """Stores the position information""" def __init__(self, position_data, column_labels, timestamps, conversion): self.position_data = position_data diff --git a/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py b/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py index 1ac1691e0..4072c6ae8 100644 --- a/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py +++ b/rec_to_nwb/processing/nwb/components/position/fl_position_builder.py @@ -1,3 +1,5 @@ +"""Class that instatiates the FlPosition class....""" + from rec_to_nwb.processing.nwb.components.position.fl_position import \ FlPosition From 9bd7ba5ca113fdc8a23e04031aba7cd0692dfc06 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 26 Aug 2021 20:26:56 -0700 Subject: [PATCH 118/205] Add documentation --- .../nwb/components/position/pos_timestamp_manager.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index c6f57b2d9..caba4a8f4 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -24,12 +24,17 @@ def __init__(self, directories, continuous_time_directories, # override def _get_timestamps(self, dataset_id): + """Gets timestamps from the online position tracking""" pos_online = readTrodesExtractedDataFile( self.directories[dataset_id][0]) position = pd.DataFrame(pos_online['data']) return position.time.to_numpy(dtype='int64') def retrieve_real_timestamps(self, dataset_id): + """Gets the corresponding timestamps from continuous time. + + Continuous time corresponds to the ephys time stamps. + """ return TimestampManager.retrieve_real_timestamps( self, dataset_id, convert_timestamps=self.convert_timestamps) From 7a426ad2a8dd803956949de008425aed27fec751 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 27 Aug 2021 11:05:21 -0700 Subject: [PATCH 119/205] Add more documentation --- .../processing/time/timestamp_converter.py | 49 ++++++++++++------- 1 file changed, 30 insertions(+), 19 deletions(-) diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index af83d2fe3..6a83152d0 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -17,34 +17,45 @@ class TimestampConverter: @staticmethod def convert_timestamps(continuous_times, timestamps): + '''Matches the trodes timestamp index from the camera to the adjusted + timestamps (in unix time) from the ephys recording. + + The adjusted timestamps are the ephys recoding timestamps adjusted for + jitter from the arrival times of packets from the MCU. + + Timestamps from the camera that do not having matching timestamps from + the ephys recording will be marked as NaN. This can happen when the + position tracking is shut off after the ephys recording is done or + started before the ephys recording starts. + + Parameters + ---------- + continuous_times: ndarray, shape (2, n_ephys_time) + From the continuous time file + row 0: trodestime, row 1: adjusted_systime_ + timestamps: ndarray, shape (n_position_time, ) + trodes timestamps relative to camera’s timing (from pos_online.dat) + + Returns + ------- + converted_timestamps : ndarray, shape (n_position_time,) + Timestamps from the position tracking in terms of the adjusted + ''' - continuous_times: (2, T) numpy array, where T is the number of timepoints - row 0: trodestime, row 1: adjusted_systime - timestamps: trodes timestamps relative to camera’s timing (from pos) - ''' - # add values at the end of continuous_times to make sure all values are within the range + # add values at the end of continuous_times to make sure all values are + # within the range max_vals = np.asarray( - [[np.iinfo(np.int64).max], [np.iinfo(np.int64).max]], dtype=np.int64) + [[np.iinfo(np.int64).max], + [np.iinfo(np.int64).max]], + dtype=np.int64) continuous_times = np.hstack((continuous_times, max_vals)) - # look up the timestamps in the first row of continuous_times + # Find the matching timestamp index (trodestime) timestamp_ind = np.searchsorted(continuous_times[0, :], timestamps) converted_timestamps = (continuous_times[1, timestamp_ind] / NANOSECONDS_PER_SECOND) # get rid of any that are not exact not_found = timestamps != continuous_times[0, timestamp_ind] - #print(f'in Timestamp Converter: {sum(not_found)} timestamps not found in continuous time file') converted_timestamps[not_found] = np.nan return converted_timestamps - - # old code - # converted_timestamps = np.ndarray(shape=[len(timestamps), ], dtype="float64") - # for i, timestamp in enumerate(timestamps): - # key = str(timestamp) - # value = continuous_time_dict.get(key, float('nan')) / 1E9 - # if np.isnan(value): - # message = 'Following key: ' + str(key) + ' does not exist in continioustime dictionary!' - # logger.exception(message) - # converted_timestamps[i] = value - # return converted_timestamps From 7eb334bc3ad5613f1963b85ae383c1db633e65fa Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 27 Aug 2021 11:22:38 -0700 Subject: [PATCH 120/205] More documentation --- rec_to_nwb/processing/time/timestamp_converter.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index 6a83152d0..db1feae45 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -40,6 +40,7 @@ def convert_timestamps(continuous_times, timestamps): ------- converted_timestamps : ndarray, shape (n_position_time,) Timestamps from the position tracking in terms of the adjusted + timestamps. Also converted to seconds. ''' # add values at the end of continuous_times to make sure all values are @@ -55,7 +56,8 @@ def convert_timestamps(continuous_times, timestamps): converted_timestamps = (continuous_times[1, timestamp_ind] / NANOSECONDS_PER_SECOND) - # get rid of any that are not exact + # Mark timestamps not found in continuous time as NaN not_found = timestamps != continuous_times[0, timestamp_ind] converted_timestamps[not_found] = np.nan + return converted_timestamps From 726ac473b9e297b109e7db118bc725369f0c108d Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 27 Aug 2021 11:26:53 -0700 Subject: [PATCH 121/205] Simplify code using np.digitize --- rec_to_nwb/processing/time/timestamp_converter.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index db1feae45..eed35f9cf 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -43,16 +43,8 @@ def convert_timestamps(continuous_times, timestamps): timestamps. Also converted to seconds. ''' - # add values at the end of continuous_times to make sure all values are - # within the range - max_vals = np.asarray( - [[np.iinfo(np.int64).max], - [np.iinfo(np.int64).max]], - dtype=np.int64) - continuous_times = np.hstack((continuous_times, max_vals)) - # Find the matching timestamp index (trodestime) - timestamp_ind = np.searchsorted(continuous_times[0, :], timestamps) + timestamp_ind = np.digitize(timestamps, continuous_times[0, 1:-1]) converted_timestamps = (continuous_times[1, timestamp_ind] / NANOSECONDS_PER_SECOND) From 82610c26d7732144f4225af04abc664a078372ea Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 27 Aug 2021 14:33:10 -0700 Subject: [PATCH 122/205] Minor formatting --- .../processing/nwb/components/position/pos_data_manager.py | 3 ++- .../processing/nwb/components/position/position_creator.py | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py index 737979a40..c09ce9d56 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_data_manager.py @@ -26,7 +26,8 @@ def get_column_labels(self): return column_labels_list def get_column_labels_as_string(self): - """extract column labels from POS files and converts them do single string""" + """extract column labels from POS files and converts them do single + string""" labels = self.get_column_labels() labels_string = '' labels_string = ', '.join(labels) diff --git a/rec_to_nwb/processing/nwb/components/position/position_creator.py b/rec_to_nwb/processing/nwb/components/position/position_creator.py index 303a5e4bd..b90ac063b 100644 --- a/rec_to_nwb/processing/nwb/components/position/position_creator.py +++ b/rec_to_nwb/processing/nwb/components/position/position_creator.py @@ -18,7 +18,9 @@ def create_all(self, fl_positions: list) -> Position: @staticmethod @beartype def create(position: Position, series_id: int, fl_position: FlPosition): - validate_parameters_not_none(__name__, fl_position.column_labels, fl_position.position_data, + validate_parameters_not_none(__name__, + fl_position.column_labels, + fl_position.position_data, fl_position.conversion) position.create_spatial_series( name='series_' + str(series_id), From e316de8170b10f10c22f137f6caf929c9244c562 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 31 Aug 2021 13:47:51 -0700 Subject: [PATCH 123/205] Fix video timestamps so that they correspond to the adjusted timestamps from the continuous time file The adjusted timestamps are the timestamps from the ephys rig that are adjusted for any delay in getting to the MCU. --- .../processing/builder/nwb_file_builder.py | 22 ++++---- .../originators/video_files_originator.py | 11 +++- .../video_files/fl_video_files_extractor.py | 54 ++++++++----------- .../video_files/fl_video_files_manager.py | 3 +- 4 files changed, 44 insertions(+), 46 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 0b1b5c150..e7e63b56f 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -91,8 +91,8 @@ logger = logging.getLogger(__name__) # switches for old dataset timestamp processing (hard-coded for now) -_CONVERT_OLD_TIMESTAMPS = True # False -_RETURN_OLD_TIMESTAMPS = True # False +_CONVERT_OLD_TIMESTAMPS = True +_RETURN_OLD_TIMESTAMPS = True class NWBFileBuilder: @@ -281,19 +281,21 @@ def __init__( os.path.join(self.data_path, self.animal_name, 'raw', self.date)) if self.is_old_dataset: self.video_files_originator = VideoFilesOriginator( - os.path.join(self.data_path, self.animal_name, - 'raw', self.date), - self.video_path, - self.metadata["associated_video_files"], + raw_data_path=os.path.join(self.data_path, self.animal_name, + 'raw', self.date), + video_path=self.video_path, + preprocessing_path=full_data_path, + video_files_metadata=self.metadata["associated_video_files"], convert_timestamps=_CONVERT_OLD_TIMESTAMPS, return_timestamps=_RETURN_OLD_TIMESTAMPS, ) else: self.video_files_originator = VideoFilesOriginator( - os.path.join(self.data_path, self.animal_name, - 'raw', self.date), - self.video_path, - self.metadata["associated_video_files"], + raw_data_path=os.path.join(self.data_path, self.animal_name, + 'raw', self.date), + video_path=self.video_path, + preprocessing_path=full_data_path, + video_files_metadata=self.metadata["associated_video_files"], ) self.data_acq_device_originator = DataAcqDeviceOriginator( diff --git a/rec_to_nwb/processing/builder/originators/video_files_originator.py b/rec_to_nwb/processing/builder/originators/video_files_originator.py index a05f3c10a..b4686f162 100644 --- a/rec_to_nwb/processing/builder/originators/video_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/video_files_originator.py @@ -8,12 +8,19 @@ class VideoFilesOriginator: - def __init__(self, raw_data_path, video_path, video_files_metadata, + def __init__(self, + raw_data_path, + video_path, + preprocessing_path, + video_files_metadata, convert_timestamps=True, return_timestamps=True): self.video_directory = video_path self.fl_video_files_manager = FlVideoFilesManager( - raw_data_path, video_path, video_files_metadata, + raw_data_path=raw_data_path, + video_path=video_path, + preprocessing_path=preprocessing_path, + video_files_metadata=video_files_metadata, convert_timestamps=convert_timestamps, return_timestamps=return_timestamps) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index 82265c8ff..9ca24ca54 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -3,7 +3,9 @@ import os import numpy as np +import pandas as pd from rec_to_binaries.read_binaries import readTrodesExtractedDataFile +from rec_to_nwb.processing.time.timestamp_converter import TimestampConverter from rec_to_nwb.processing.tools.beartype.beartype import beartype path = os.path.dirname(os.path.abspath(__file__)) @@ -13,8 +15,6 @@ disable_existing_loggers=False) logger = logging.getLogger(__name__) -NANOSECONDS_PER_SECOND = 1E9 - class FlVideoFilesExtractor: @@ -22,10 +22,12 @@ class FlVideoFilesExtractor: def __init__(self, raw_data_path: str, video_files_metadata: list, + preprocessing_path: str, convert_timestamps: bool = True, return_timestamps: bool = True): self.raw_data_path = raw_data_path self.video_files_metadata = video_files_metadata + self.preprocessing_path = preprocessing_path self.convert_timestamps = convert_timestamps self.return_timestamps = return_timestamps @@ -65,32 +67,22 @@ def _get_timestamps(self, video_file): """ try: video_timestamps = self._read_video_timestamps_hw_sync(video_file) - logger.info('Loaded cameraHWSync timestamps for {}'.format( - video_file['name'][:-4])) - is_old_dataset = False + continuous_time = self._read_continuous_time(video_file) + logger.info('Loaded cameraHWSync timestamps for' + f'{os.path.splitext(video_file["name"])[0]}') + return TimestampConverter.convert_timestamps( + continuous_time, video_timestamps) except FileNotFoundError: # old dataset video_timestamps = self._read_video_timestamps_hw_framecount( video_file) logger.info( - 'Loaded cameraHWFrameCount for {} (old dataset)'.format( - video_file['name'][:-4])) - is_old_dataset = True - # the timestamps array from the cam - if is_old_dataset or (not self.convert_timestamps): - # for now, FORCE turn off convert_timestamps for old dataset + 'Loaded cameraHWFrameCount for ' + f'{os.path.splitext(video_file["name"])[0]} (old dataset)') return video_timestamps - return self._convert_timestamps(video_timestamps) def _read_video_timestamps_hw_sync(self, video_file): - """Returns video timestamps in unix time which are synchronized to the - Trodes data packets. - - videoTimeStamps.cameraHWSync is a file extracted by the python package - `rec_to_binaries` from the .rec file. It only is extracted when using - precision time protocol (PTP) to synchronize the camera clock with - Trodes data packets. The HWTimestamp array in this file are the unix - timestamps relative to seconds since 1/1/1970. + """Returns the position timestamp index Parameters ---------- @@ -106,7 +98,7 @@ def _read_video_timestamps_hw_sync(self, video_file): self.raw_data_path, os.path.splitext(video_file["name"])[0] + ".videoTimeStamps.cameraHWSync") - )['data']['HWTimestamp'] + )['data']['PosTimestamp'] def _read_video_timestamps_hw_framecount(self, video_file): """Returns the index of video frames. @@ -130,16 +122,12 @@ def _read_video_timestamps_hw_framecount(self, video_file): ".videoTimeStamps.cameraHWFrameCount") )['data']['frameCount'] - def _convert_timestamps(self, timestamps): - """Converts timestamps from nanoseconds to seconds - - Parameters - ---------- - timestamps : int + def _read_continuous_time(self, video_file): + base_name = os.path.splitext(video_file['name'])[0].split('.')[0] + continuous_time_path = os.path.join( + self.preprocessing_path, base_name + '.time', + base_name + '.continuoustime.dat') - Returns - ------- - timestamps : float - - """ - return timestamps / NANOSECONDS_PER_SECOND + continuous_time = readTrodesExtractedDataFile(continuous_time_path) + return np.vstack((continuous_time['data']['trodestime'], + continuous_time['data']['adjusted_systime'])) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index 33ae1bb59..05bfc735c 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -15,6 +15,7 @@ class FlVideoFilesManager: def __init__(self, raw_data_path: str, video_path: str, + preprocessing_path: str, video_files_metadata: list, convert_timestamps: bool = True, return_timestamps: bool = True): @@ -22,7 +23,7 @@ def __init__(self, [video_files['name'] for video_files in video_files_metadata]) self.video_files_copy_maker.copy(raw_data_path, video_path) self.fl_video_files_extractor = FlVideoFilesExtractor( - raw_data_path, video_files_metadata, + raw_data_path, video_files_metadata, preprocessing_path, convert_timestamps=convert_timestamps, return_timestamps=return_timestamps) self.fl_video_files_builder = FlVideoFilesBuilder() From b6d57b738a208f09c9e2c4ab03fb8baeedf402ec Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 31 Aug 2021 13:47:54 -0700 Subject: [PATCH 124/205] Revert "Fix video timestamps so that they correspond to the adjusted timestamps from the continuous time file" This reverts commit e316de8170b10f10c22f137f6caf929c9244c562. --- .../processing/builder/nwb_file_builder.py | 22 ++++---- .../originators/video_files_originator.py | 11 +--- .../video_files/fl_video_files_extractor.py | 54 +++++++++++-------- .../video_files/fl_video_files_manager.py | 3 +- 4 files changed, 46 insertions(+), 44 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index e7e63b56f..0b1b5c150 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -91,8 +91,8 @@ logger = logging.getLogger(__name__) # switches for old dataset timestamp processing (hard-coded for now) -_CONVERT_OLD_TIMESTAMPS = True -_RETURN_OLD_TIMESTAMPS = True +_CONVERT_OLD_TIMESTAMPS = True # False +_RETURN_OLD_TIMESTAMPS = True # False class NWBFileBuilder: @@ -281,21 +281,19 @@ def __init__( os.path.join(self.data_path, self.animal_name, 'raw', self.date)) if self.is_old_dataset: self.video_files_originator = VideoFilesOriginator( - raw_data_path=os.path.join(self.data_path, self.animal_name, - 'raw', self.date), - video_path=self.video_path, - preprocessing_path=full_data_path, - video_files_metadata=self.metadata["associated_video_files"], + os.path.join(self.data_path, self.animal_name, + 'raw', self.date), + self.video_path, + self.metadata["associated_video_files"], convert_timestamps=_CONVERT_OLD_TIMESTAMPS, return_timestamps=_RETURN_OLD_TIMESTAMPS, ) else: self.video_files_originator = VideoFilesOriginator( - raw_data_path=os.path.join(self.data_path, self.animal_name, - 'raw', self.date), - video_path=self.video_path, - preprocessing_path=full_data_path, - video_files_metadata=self.metadata["associated_video_files"], + os.path.join(self.data_path, self.animal_name, + 'raw', self.date), + self.video_path, + self.metadata["associated_video_files"], ) self.data_acq_device_originator = DataAcqDeviceOriginator( diff --git a/rec_to_nwb/processing/builder/originators/video_files_originator.py b/rec_to_nwb/processing/builder/originators/video_files_originator.py index b4686f162..a05f3c10a 100644 --- a/rec_to_nwb/processing/builder/originators/video_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/video_files_originator.py @@ -8,19 +8,12 @@ class VideoFilesOriginator: - def __init__(self, - raw_data_path, - video_path, - preprocessing_path, - video_files_metadata, + def __init__(self, raw_data_path, video_path, video_files_metadata, convert_timestamps=True, return_timestamps=True): self.video_directory = video_path self.fl_video_files_manager = FlVideoFilesManager( - raw_data_path=raw_data_path, - video_path=video_path, - preprocessing_path=preprocessing_path, - video_files_metadata=video_files_metadata, + raw_data_path, video_path, video_files_metadata, convert_timestamps=convert_timestamps, return_timestamps=return_timestamps) diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py index 9ca24ca54..82265c8ff 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_extractor.py @@ -3,9 +3,7 @@ import os import numpy as np -import pandas as pd from rec_to_binaries.read_binaries import readTrodesExtractedDataFile -from rec_to_nwb.processing.time.timestamp_converter import TimestampConverter from rec_to_nwb.processing.tools.beartype.beartype import beartype path = os.path.dirname(os.path.abspath(__file__)) @@ -15,6 +13,8 @@ disable_existing_loggers=False) logger = logging.getLogger(__name__) +NANOSECONDS_PER_SECOND = 1E9 + class FlVideoFilesExtractor: @@ -22,12 +22,10 @@ class FlVideoFilesExtractor: def __init__(self, raw_data_path: str, video_files_metadata: list, - preprocessing_path: str, convert_timestamps: bool = True, return_timestamps: bool = True): self.raw_data_path = raw_data_path self.video_files_metadata = video_files_metadata - self.preprocessing_path = preprocessing_path self.convert_timestamps = convert_timestamps self.return_timestamps = return_timestamps @@ -67,22 +65,32 @@ def _get_timestamps(self, video_file): """ try: video_timestamps = self._read_video_timestamps_hw_sync(video_file) - continuous_time = self._read_continuous_time(video_file) - logger.info('Loaded cameraHWSync timestamps for' - f'{os.path.splitext(video_file["name"])[0]}') - return TimestampConverter.convert_timestamps( - continuous_time, video_timestamps) + logger.info('Loaded cameraHWSync timestamps for {}'.format( + video_file['name'][:-4])) + is_old_dataset = False except FileNotFoundError: # old dataset video_timestamps = self._read_video_timestamps_hw_framecount( video_file) logger.info( - 'Loaded cameraHWFrameCount for ' - f'{os.path.splitext(video_file["name"])[0]} (old dataset)') + 'Loaded cameraHWFrameCount for {} (old dataset)'.format( + video_file['name'][:-4])) + is_old_dataset = True + # the timestamps array from the cam + if is_old_dataset or (not self.convert_timestamps): + # for now, FORCE turn off convert_timestamps for old dataset return video_timestamps + return self._convert_timestamps(video_timestamps) def _read_video_timestamps_hw_sync(self, video_file): - """Returns the position timestamp index + """Returns video timestamps in unix time which are synchronized to the + Trodes data packets. + + videoTimeStamps.cameraHWSync is a file extracted by the python package + `rec_to_binaries` from the .rec file. It only is extracted when using + precision time protocol (PTP) to synchronize the camera clock with + Trodes data packets. The HWTimestamp array in this file are the unix + timestamps relative to seconds since 1/1/1970. Parameters ---------- @@ -98,7 +106,7 @@ def _read_video_timestamps_hw_sync(self, video_file): self.raw_data_path, os.path.splitext(video_file["name"])[0] + ".videoTimeStamps.cameraHWSync") - )['data']['PosTimestamp'] + )['data']['HWTimestamp'] def _read_video_timestamps_hw_framecount(self, video_file): """Returns the index of video frames. @@ -122,12 +130,16 @@ def _read_video_timestamps_hw_framecount(self, video_file): ".videoTimeStamps.cameraHWFrameCount") )['data']['frameCount'] - def _read_continuous_time(self, video_file): - base_name = os.path.splitext(video_file['name'])[0].split('.')[0] - continuous_time_path = os.path.join( - self.preprocessing_path, base_name + '.time', - base_name + '.continuoustime.dat') + def _convert_timestamps(self, timestamps): + """Converts timestamps from nanoseconds to seconds + + Parameters + ---------- + timestamps : int - continuous_time = readTrodesExtractedDataFile(continuous_time_path) - return np.vstack((continuous_time['data']['trodestime'], - continuous_time['data']['adjusted_systime'])) + Returns + ------- + timestamps : float + + """ + return timestamps / NANOSECONDS_PER_SECOND diff --git a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py index 05bfc735c..33ae1bb59 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py +++ b/rec_to_nwb/processing/nwb/components/video_files/fl_video_files_manager.py @@ -15,7 +15,6 @@ class FlVideoFilesManager: def __init__(self, raw_data_path: str, video_path: str, - preprocessing_path: str, video_files_metadata: list, convert_timestamps: bool = True, return_timestamps: bool = True): @@ -23,7 +22,7 @@ def __init__(self, [video_files['name'] for video_files in video_files_metadata]) self.video_files_copy_maker.copy(raw_data_path, video_path) self.fl_video_files_extractor = FlVideoFilesExtractor( - raw_data_path, video_files_metadata, preprocessing_path, + raw_data_path, video_files_metadata, convert_timestamps=convert_timestamps, return_timestamps=return_timestamps) self.fl_video_files_builder = FlVideoFilesBuilder() From 3b509d8260d961180d5e90bd9ea382dfe10b55f3 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 8 Sep 2021 12:33:57 -0700 Subject: [PATCH 125/205] Fix spelling --- rec_to_nwb/processing/nwb/common/data_manager.py | 10 +++++----- rec_to_nwb/processing/nwb/common/timestamps_manager.py | 10 +++++----- .../nwb/components/iterator/data_iterator.py | 2 +- .../nwb/components/iterator/timestamp_iterator.py | 4 ++-- .../test/processing/test_dataIterator1Dimension.py | 6 +++--- .../test/processing/test_dataIterator2Dimension.py | 6 +++--- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/rec_to_nwb/processing/nwb/common/data_manager.py b/rec_to_nwb/processing/nwb/common/data_manager.py index b816d0fe5..9414e83c7 100644 --- a/rec_to_nwb/processing/nwb/common/data_manager.py +++ b/rec_to_nwb/processing/nwb/common/data_manager.py @@ -10,7 +10,7 @@ def __init__(self, directories): self.number_of_datasets = self.get_number_of_datasets() self.number_of_files_per_dataset = self.get_number_of_files_per_dataset() self.number_of_rows_per_file = self._get_number_of_rows_per_file() - self.file_lenghts_in_datasets = self._get_file_length( + self.file_lengths_in_datasets = self._get_file_length( self.number_of_datasets) @abc.abstractmethod @@ -35,8 +35,8 @@ def get_number_of_datasets(self): return np.shape(self.directories)[0] def get_final_data_shape(self): - # return self.number_of_rows_per_file * self.number_of_files_per_dataset, sum(self.file_lenghts_in_datasets) - return (sum(self.number_of_rows_per_file), sum(self.file_lenghts_in_datasets)) + # return self.number_of_rows_per_file * self.number_of_files_per_dataset, sum(self.file_lengths_in_datasets) + return (sum(self.number_of_rows_per_file), sum(self.file_lengths_in_datasets)) def get_directories(self): return self.directories @@ -50,5 +50,5 @@ def _get_number_of_rows_per_file(self): def get_number_of_rows_per_file(self): return self.number_of_rows_per_file - def get_file_lenghts_in_datasets(self): - return self.file_lenghts_in_datasets + def get_file_lengths_in_datasets(self): + return self.file_lengths_in_datasets diff --git a/rec_to_nwb/processing/nwb/common/timestamps_manager.py b/rec_to_nwb/processing/nwb/common/timestamps_manager.py index cde7bedb3..8bf7c5021 100644 --- a/rec_to_nwb/processing/nwb/common/timestamps_manager.py +++ b/rec_to_nwb/processing/nwb/common/timestamps_manager.py @@ -24,7 +24,7 @@ def __init__(self, directories, continuous_time_directories): self.timestamp_converter = TimestampConverter() self.number_of_datasets = self._get_number_of_datasets() - self.file_lenghts_in_datasets = self.__calculate_file_lenghts_in_datasets() + self.file_lengths_in_datasets = self.__calculate_file_lengths_in_datasets() @abc.abstractmethod def _get_timestamps(self, dataset_id): @@ -42,15 +42,15 @@ def read_timestamps_ids(self, dataset_id): return self._get_timestamps(dataset_id) def get_final_data_shape(self): - return sum(self.file_lenghts_in_datasets), + return sum(self.file_lengths_in_datasets), def get_number_of_datasets(self): return self.number_of_datasets - def get_file_lenghts_in_datasets(self): - return self.file_lenghts_in_datasets + def get_file_lengths_in_datasets(self): + return self.file_lengths_in_datasets - def __calculate_file_lenghts_in_datasets(self): + def __calculate_file_lengths_in_datasets(self): return [self._get_data_shape(i) for i in range(self.number_of_datasets)] def _get_number_of_datasets(self): diff --git a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py index 9c908c835..574920780 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/data_iterator.py @@ -13,7 +13,7 @@ def __init__(self, data): self.number_of_datasets = self.data.get_number_of_datasets() self.number_of_steps = self.number_of_datasets * \ self.data.get_number_of_files_per_dataset() - self.dataset_file_length = self.data.get_file_lenghts_in_datasets() + self.dataset_file_length = self.data.get_file_lengths_in_datasets() self.number_of_rows = self.data.get_number_of_rows_per_file() self.number_of_files_in_single_dataset = self.data.get_number_of_files_per_dataset() self.shape = [self.data.get_final_data_shape( diff --git a/rec_to_nwb/processing/nwb/components/iterator/timestamp_iterator.py b/rec_to_nwb/processing/nwb/components/iterator/timestamp_iterator.py index 1fe2a20ef..59d51b423 100644 --- a/rec_to_nwb/processing/nwb/components/iterator/timestamp_iterator.py +++ b/rec_to_nwb/processing/nwb/components/iterator/timestamp_iterator.py @@ -10,9 +10,9 @@ def __init__(self, data): self._current_index = 0 self.current_dataset = 0 - self.dataset_file_lenght = data.get_file_lenghts_in_datasets() + self.dataset_file_lenght = data.get_file_lengths_in_datasets() self.number_of_steps = self.data.get_number_of_datasets() - self.dataset_file_length = self.data.get_file_lenghts_in_datasets() + self.dataset_file_length = self.data.get_file_lengths_in_datasets() self.shape = self.data.get_final_data_shape() # Override diff --git a/rec_to_nwb/test/processing/test_dataIterator1Dimension.py b/rec_to_nwb/test/processing/test_dataIterator1Dimension.py index bd85a8149..b6361b1ab 100644 --- a/rec_to_nwb/test/processing/test_dataIterator1Dimension.py +++ b/rec_to_nwb/test/processing/test_dataIterator1Dimension.py @@ -15,7 +15,7 @@ def test_data_iterator(self): class FakeTimestampDataManager: def __init__(self): self.number_of_datasets = 2 - self.file_lenghts_in_datasets = [5, 6] + self.file_lengths_in_datasets = [5, 6] self.fake_timestamps = [np.ndarray(dtype="float64", shape=[5, ]), np.ndarray(dtype="float64", shape=[6, ])] for i in range(2): for j in range(len(self.fake_timestamps[i])): @@ -30,5 +30,5 @@ def get_final_data_shape(self): def get_number_of_datasets(self): return self.number_of_datasets - def get_file_lenghts_in_datasets(self): - return self.file_lenghts_in_datasets + def get_file_lengths_in_datasets(self): + return self.file_lengths_in_datasets diff --git a/rec_to_nwb/test/processing/test_dataIterator2Dimension.py b/rec_to_nwb/test/processing/test_dataIterator2Dimension.py index 6967530cc..9a7e38061 100644 --- a/rec_to_nwb/test/processing/test_dataIterator2Dimension.py +++ b/rec_to_nwb/test/processing/test_dataIterator2Dimension.py @@ -15,7 +15,7 @@ def test_data_iterator(self): class FakeDataManager: def __init__(self): self.number_of_datasets = 2 - self.file_lenghts_in_datasets = [5, 6] + self.file_lengths_in_datasets = [5, 6] self.number_of_files_per_dataset = 2 self.number_of_rows_per_file = 4 self.fake_timestamps = [np.ndarray(dtype="float64", shape=[4, 5]), np.ndarray(dtype="float64", shape=[4, 6])] @@ -33,8 +33,8 @@ def get_final_data_shape(self): def get_number_of_datasets(self): return self.number_of_datasets - def get_file_lenghts_in_datasets(self): - return self.file_lenghts_in_datasets + def get_file_lengths_in_datasets(self): + return self.file_lengths_in_datasets def get_number_of_files_per_dataset(self): return self.number_of_files_per_dataset From a6801fe6e25acd53ac0977eb8bf5c5239f6ff588 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 8 Sep 2021 14:47:08 -0700 Subject: [PATCH 126/205] Use PTP time when it is available for position tracking timestamps --- .../position/pos_timestamp_manager.py | 47 +++++++++++++++++-- 1 file changed, 42 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index caba4a8f4..0841336fe 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -15,6 +15,9 @@ logger = logging.getLogger(__name__) +NANOSECONDS_PER_SECOND = 1E9 + + class PosTimestampManager(TimestampManager): def __init__(self, directories, continuous_time_directories, convert_timestamps=True): @@ -31,10 +34,44 @@ def _get_timestamps(self, dataset_id): return position.time.to_numpy(dtype='int64') def retrieve_real_timestamps(self, dataset_id): - """Gets the corresponding timestamps from continuous time. + """Gets the corresponding Trodes timestamps from the online position + tracking and matches them to the PTP time in the video file. + + Otherwise, we get the corresponding timestamps from + continuous time which corresponds to the neural recording time stamps. + + If there is no corresponding timestamp, the result will be NaN. + + Parameters + ---------- + dataset_id : int + Index of the epoch + + Returns + ------- + timestamps : ndarray, shape (n_online_tracked_positions,) - Continuous time corresponds to the ephys time stamps. """ - return TimestampManager.retrieve_real_timestamps( - self, dataset_id, - convert_timestamps=self.convert_timestamps) + try: + # Get online position tracking data + pos_online_path = self.directories[dataset_id][0] + pos_online = readTrodesExtractedDataFile(pos_online_path) + pos_online = pd.DataFrame(pos_online['data']) + + # Get video PTP timestamps + camera_hwsync = readTrodesExtractedDataFile( + pos_online_path.replace( + '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) + camera_hwsync = (pd.DataFrame(camera_hwsync['data']) + .set_index('PosTimestamp')) + + # Find the PTP timestamps that correspond to position tracking + # Convert from nanoseconds to seconds + return (camera_hwsync.loc[pos_online.time, 'HWTimestamp'] + / NANOSECONDS_PER_SECOND).to_numpy() + except KeyError: + # If PTP timestamps do not exist find the corresponding timestamps + # from the neural recording + return TimestampManager.retrieve_real_timestamps( + self, dataset_id, + convert_timestamps=self.convert_timestamps) From 914f07c906a2f74d1d35aafd0a3e9f69ddc7997b Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 8 Sep 2021 18:30:20 -0700 Subject: [PATCH 127/205] Handle case where there are duplicated timestamps --- .../nwb/components/position/pos_timestamp_manager.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 0841336fe..707cf991a 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -1,6 +1,7 @@ import logging.config import os +import numpy as np import pandas as pd from rec_to_binaries.read_binaries import readTrodesExtractedDataFile from rec_to_nwb.processing.nwb.common.timestamps_manager import \ @@ -57,6 +58,7 @@ def retrieve_real_timestamps(self, dataset_id): pos_online_path = self.directories[dataset_id][0] pos_online = readTrodesExtractedDataFile(pos_online_path) pos_online = pd.DataFrame(pos_online['data']) + online_timestamps_ind = pos_online.time.astype(np.uint64) # Get video PTP timestamps camera_hwsync = readTrodesExtractedDataFile( @@ -64,10 +66,13 @@ def retrieve_real_timestamps(self, dataset_id): '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) camera_hwsync = (pd.DataFrame(camera_hwsync['data']) .set_index('PosTimestamp')) + video_timestamps_ind = camera_hwsync['PosTimestamp'] # Find the PTP timestamps that correspond to position tracking # Convert from nanoseconds to seconds - return (camera_hwsync.loc[pos_online.time, 'HWTimestamp'] + timestamp_ind = np.digitize( + online_timestamps_ind, video_timestamps_ind[1:-1]) + return (camera_hwsync['HWTimestamp'].iloc[timestamp_ind] / NANOSECONDS_PER_SECOND).to_numpy() except KeyError: # If PTP timestamps do not exist find the corresponding timestamps From 0230a69c4a4f1e58aae077999b0e2adf6d67265c Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 9 Sep 2021 14:02:16 -0700 Subject: [PATCH 128/205] Don't make PosTimestamp the index --- .../nwb/components/position/pos_timestamp_manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 707cf991a..a1e3637f5 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -64,8 +64,7 @@ def retrieve_real_timestamps(self, dataset_id): camera_hwsync = readTrodesExtractedDataFile( pos_online_path.replace( '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) - camera_hwsync = (pd.DataFrame(camera_hwsync['data']) - .set_index('PosTimestamp')) + camera_hwsync = pd.DataFrame(camera_hwsync['data']) video_timestamps_ind = camera_hwsync['PosTimestamp'] # Find the PTP timestamps that correspond to position tracking @@ -77,6 +76,7 @@ def retrieve_real_timestamps(self, dataset_id): except KeyError: # If PTP timestamps do not exist find the corresponding timestamps # from the neural recording + logger.info('No PTP timestamps found. Using neural timestamps.') return TimestampManager.retrieve_real_timestamps( self, dataset_id, convert_timestamps=self.convert_timestamps) From 448cbe004051bdfc2143bccbed59fff75f05b2bf Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 9 Sep 2021 14:16:14 -0700 Subject: [PATCH 129/205] Get the unique timestamps from the online tracking and use those to index into the video ptp time. If there are repeats timestamps, this will find them in the video file. --- .../nwb/components/position/pos_timestamp_manager.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index a1e3637f5..1d85cd82f 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -58,20 +58,20 @@ def retrieve_real_timestamps(self, dataset_id): pos_online_path = self.directories[dataset_id][0] pos_online = readTrodesExtractedDataFile(pos_online_path) pos_online = pd.DataFrame(pos_online['data']) - online_timestamps_ind = pos_online.time.astype(np.uint64) + # Make sure to get only the unique timestamps because they can + # sometimes repeat after a jump in timestamps + online_timestamps_ind = pos_online.time.unique().astype(np.uint64) # Get video PTP timestamps camera_hwsync = readTrodesExtractedDataFile( pos_online_path.replace( '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) - camera_hwsync = pd.DataFrame(camera_hwsync['data']) - video_timestamps_ind = camera_hwsync['PosTimestamp'] + camera_hwsync = (pd.DataFrame(camera_hwsync['data']) + .set_index('PosTimestamp')) # Find the PTP timestamps that correspond to position tracking # Convert from nanoseconds to seconds - timestamp_ind = np.digitize( - online_timestamps_ind, video_timestamps_ind[1:-1]) - return (camera_hwsync['HWTimestamp'].iloc[timestamp_ind] + return (camera_hwsync.loc[online_timestamps_ind, 'HWTimestamp'] / NANOSECONDS_PER_SECOND).to_numpy() except KeyError: # If PTP timestamps do not exist find the corresponding timestamps From 7fcdb6dd7f775dab51287423b03e9daa160989f9 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 9 Sep 2021 16:27:15 -0700 Subject: [PATCH 130/205] Don't include rightmost bin --- rec_to_nwb/processing/time/timestamp_converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/time/timestamp_converter.py b/rec_to_nwb/processing/time/timestamp_converter.py index eed35f9cf..c6cf7f0a2 100644 --- a/rec_to_nwb/processing/time/timestamp_converter.py +++ b/rec_to_nwb/processing/time/timestamp_converter.py @@ -44,7 +44,7 @@ def convert_timestamps(continuous_times, timestamps): ''' # Find the matching timestamp index (trodestime) - timestamp_ind = np.digitize(timestamps, continuous_times[0, 1:-1]) + timestamp_ind = np.digitize(timestamps, continuous_times[0, 1:]) converted_timestamps = (continuous_times[1, timestamp_ind] / NANOSECONDS_PER_SECOND) From dc94babaaa716512a5d8500f1d0a13446093bf53 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Sun, 26 Sep 2021 09:15:40 -0700 Subject: [PATCH 131/205] Change formatting of string --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 299bb18d8..3ca4c6d98 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -188,7 +188,7 @@ def build_nwb(self, run_preprocessing=True, process_pos_invalid_time (boolean): True if the pos invalid times should be build and append to nwb. Need the pos data inside the nwb. (default True) """ - logger.info('#######################START############################') + logger.info(' START '.center(40, "=")) if run_preprocessing: self.__preprocess_data() From 2dbaa4b789f8a3011af1c9f8e28a4779b71f403f Mon Sep 17 00:00:00 2001 From: Loren Date: Wed, 13 Oct 2021 09:24:05 -0700 Subject: [PATCH 132/205] added print in fl_mda_extractor --- rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index 83e552a06..97345f978 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -39,7 +39,7 @@ def get_data(self): else: num_threads = 1 - #print(f'in FlMdaExtractor: will write {num_threads} files as a chunk') + print(f'in FlMdaExtractor: will write {num_threads} files as a chunk') data_iterator = MultiThreadDataIterator( mda_data_manager, number_of_threads=num_threads) timestamp_iterator = MultiThreadTimestampIterator( From dc7c37cd69404e68cf8f65704cf4b544dec1ce84 Mon Sep 17 00:00:00 2001 From: jguides Date: Tue, 19 Oct 2021 08:29:39 -0700 Subject: [PATCH 133/205] Changed file size calculation to reflect multiple channels and 2 bytes per sample. --- .../nwb/components/mda/fl_mda_extractor.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index 97345f978..69691a420 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -29,12 +29,17 @@ def get_data(self): continuous_time_directories=continuous_time_files ) mda_data_manager = MdaDataManager(mda_data_files, self.raw_to_uv) + # check the number of files and set the number of threads appropriately assuming 32 GB of available RAM - datalen = [mda_data_manager.get_data_shape(dataset_num)[1] - for dataset_num in range(len(mda_data_manager.directories))] - if max(datalen) < 3e9: # each file < 3GB samples (2 bytes / sample) + def max_file_size(dim): + # Loop through datasets and files to find largest file along given dimension (dim) + return max([mda_data_manager.get_data_shape(dataset_num, file_num)[dim] + for dataset_num in range(len(mda_data_manager.directories)) + for file_num in range(len(mda_data_manager.directories[dataset_num]))]) + bytes_estimate = max_file_size(0)*max_file_size(1)*2 # samples x channels x 2 bytes/sample + if bytes_estimate < 3e9: # each file < 3GB num_threads = 6 - elif max(datalen) < 6e9: + elif bytes_estimate < 6e9: num_threads = 3 else: num_threads = 1 From 85d6f9ccdb848f36f3c7c7a19d75fb469f764b65 Mon Sep 17 00:00:00 2001 From: jguides Date: Sun, 7 Nov 2021 12:33:28 -0800 Subject: [PATCH 134/205] Changes to enable storing task environment in metadata --- .../processing/nwb/components/task/task_builder.py | 4 ++-- .../processing/nwb/components/task/task_manager.py | 13 ++++++++++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/task/task_builder.py b/rec_to_nwb/processing/nwb/components/task/task_builder.py index 2b476793f..2bfaf1be0 100644 --- a/rec_to_nwb/processing/nwb/components/task/task_builder.py +++ b/rec_to_nwb/processing/nwb/components/task/task_builder.py @@ -5,9 +5,9 @@ class TaskBuilder: @staticmethod - def build(name, description, task_name, task_description, camera_id, task_epochs): + def build(name, description, task_name, task_description, camera_id, task_epochs, task_environment): return FlTask( name=str(name), description=description, - columns=[task_name, task_description, camera_id, task_epochs] + columns=[task_name, task_description, camera_id, task_epochs, task_environment] ) diff --git a/rec_to_nwb/processing/nwb/components/task/task_manager.py b/rec_to_nwb/processing/nwb/components/task/task_manager.py index 57b281e52..4921edb31 100644 --- a/rec_to_nwb/processing/nwb/components/task/task_manager.py +++ b/rec_to_nwb/processing/nwb/components/task/task_manager.py @@ -21,12 +21,13 @@ def get_fl_tasks(self): task_name=task['task_name'], task_description=task['task_description'], camera_id=[int(camera_id) for camera_id in task['camera_id']], - task_epochs=[int(epoch) for epoch in task['task_epochs']] + task_epochs=[int(epoch) for epoch in task['task_epochs']], + task_environment=task['environment'] ) for task in self.metadata['tasks'] ] - def __get_single_fl_task(self, task_name, task_description, camera_id, task_epochs): + def __get_single_fl_task(self, task_name, task_description, camera_id, task_epochs, task_environment): task_name_data = VectorData( name='task_name', description='the name of the task', @@ -47,6 +48,11 @@ def __get_single_fl_task(self, task_name, task_description, camera_id, task_epoc description='the temporal epochs where the animal was exposed to this task', data=[task_epochs] ) + environment_data = VectorData( + name='task_environment', + description='the environment in which the animal performed the task', + data=[task_environment] + ) task = TaskBuilder.build( name='task_' + str(self.task_counter), @@ -54,7 +60,8 @@ def __get_single_fl_task(self, task_name, task_description, camera_id, task_epoc task_name=task_name_data, task_description=task_description_data, camera_id=camera_id_data, - task_epochs=task_epochs_data + task_epochs=task_epochs_data, + task_environment=environment_data ) self.task_counter += 1 From 7901a1f1497eb1b6a8a25f2c9389abdc2c5a369f Mon Sep 17 00:00:00 2001 From: jguides Date: Tue, 9 Nov 2021 09:12:33 -0800 Subject: [PATCH 135/205] Changed task metadata subfield from environment to task_environment to be consistent with TaskEpoch table --- rec_to_nwb/processing/nwb/components/task/task_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/task/task_manager.py b/rec_to_nwb/processing/nwb/components/task/task_manager.py index 4921edb31..8e116bdcd 100644 --- a/rec_to_nwb/processing/nwb/components/task/task_manager.py +++ b/rec_to_nwb/processing/nwb/components/task/task_manager.py @@ -22,7 +22,7 @@ def get_fl_tasks(self): task_description=task['task_description'], camera_id=[int(camera_id) for camera_id in task['camera_id']], task_epochs=[int(epoch) for epoch in task['task_epochs']], - task_environment=task['environment'] + task_environment=task['task_environment'] ) for task in self.metadata['tasks'] ] From 00e96c58e1df54390dec79fbb9e47e61a0e6c194 Mon Sep 17 00:00:00 2001 From: jguides Date: Sun, 14 Nov 2021 10:07:46 -0800 Subject: [PATCH 136/205] Set task_environment to none if not defined in metadata --- .../nwb/components/task/task_manager.py | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/task/task_manager.py b/rec_to_nwb/processing/nwb/components/task/task_manager.py index 8e116bdcd..583193c50 100644 --- a/rec_to_nwb/processing/nwb/components/task/task_manager.py +++ b/rec_to_nwb/processing/nwb/components/task/task_manager.py @@ -16,16 +16,22 @@ def __init__(self, metadata: dict): def get_fl_tasks(self): validate_parameters_not_none(__name__, self.metadata['tasks']) - return [ - self.__get_single_fl_task( + task_list = [] + for task in self.metadata["tasks"]: # for each task + # Set task_environment to "none" if not in metadata + if "task_environment" not in task.keys(): + task_environment = "none" + else: + task_environment = task["task_environment"] + # Append task to list + task_list.append(self.__get_single_fl_task( task_name=task['task_name'], task_description=task['task_description'], camera_id=[int(camera_id) for camera_id in task['camera_id']], task_epochs=[int(epoch) for epoch in task['task_epochs']], - task_environment=task['task_environment'] - ) - for task in self.metadata['tasks'] - ] + task_environment=task_environment + )) + return task_list def __get_single_fl_task(self, task_name, task_description, camera_id, task_epochs, task_environment): task_name_data = VectorData( From eb4e2916d813b692a2cc3a5de033cfc3d3bc3438 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Sat, 27 Nov 2021 16:19:19 -0500 Subject: [PATCH 137/205] Set default arguments by trodes version --- .../processing/builder/raw_to_nwb_builder.py | 66 +++++++++++++------ 1 file changed, 46 insertions(+), 20 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 3ca4c6d98..9e83f3b9f 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -5,6 +5,7 @@ import pytz from rec_to_binaries import extract_trodes_rec_file +from rec_to_binaries.trodes_data import get_trodes_version_from_path from rec_to_nwb.processing.builder.nwb_file_builder import NWBFileBuilder from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -20,19 +21,6 @@ disable_existing_loggers=False) logger = logging.getLogger(__name__) -_DEFAULT_LFP_EXPORT_ARGS = ('-highpass', '0', '-lowpass', '400', - '-interp', '0', '-userefs', '0', - '-outputrate', '1500') -_DEFAULT_MDA_EXPORT_ARGS = ('-usespikefilters', '0', - '-interp', '0', '-userefs', '0') - -_DEFAULT_ANALOG_EXPORT_ARGS = () -_DEFAULT_DIO_EXPORT_ARGS = () -_DEFAULT_SPIKE_EXPORT_ARGS = () -_DEFAULT_TIME_EXPORT_ARGS = () - -_DEFAULT_TRODES_REC_EXPORT_ARGS = () - # temporary default value, for old dataset only _DEFAULT_SESSION_START_TIME = datetime.fromtimestamp( 0, pytz.utc) # dummy value for now @@ -85,14 +73,14 @@ def __init__( extract_dio: bool = True, extract_mda: bool = True, overwrite: bool = True, - lfp_export_args: tuple = _DEFAULT_LFP_EXPORT_ARGS, - mda_export_args: tuple = _DEFAULT_MDA_EXPORT_ARGS, - analog_export_args: tuple = _DEFAULT_ANALOG_EXPORT_ARGS, - dio_export_args: tuple = _DEFAULT_DIO_EXPORT_ARGS, - time_export_args: tuple = _DEFAULT_TIME_EXPORT_ARGS, - spikes_export_args: tuple = _DEFAULT_SPIKE_EXPORT_ARGS, + lfp_export_args: tuple = None, + mda_export_args: tuple = None, + analog_export_args: tuple = None, + dio_export_args: tuple = None, + time_export_args: tuple = None, + spikes_export_args: tuple = None, parallel_instances: int = 4, - trodes_rec_export_args: tuple = _DEFAULT_TRODES_REC_EXPORT_ARGS + trodes_rec_export_args: tuple = None, ): validation_registrator = ValidationRegistrator() @@ -101,6 +89,44 @@ def __init__( validation_registrator.register(NotEmptyValidator(dates)) validation_registrator.validate() + trodes_version = get_trodes_version_from_path()[0] + + if lfp_export_args is None: + if trodes_version < 2.0: + lfp_export_args = ('-highpass', '0', + '-lowpass', '400', + '-interp', '0', + '-userefs', '0', + '-outputrate', '1500') + else: + lfp_export_args = ('-highpass', '0', + '-lowpass', '400', + '-interp', '0', + '-userefs', '0', + '-outputrate', '1500' + '-sortingmode', '0') + if mda_export_args is None: + if trodes_version < 2.0: + mda_export_args = ('-usespikefilters', '0', + '-interp', '0', + '-userefs', '0') + else: + mda_export_args = ('-usespikefilters', '0', + '-interp', '1', + '-usespikerefs', '0', + '-sortingmode', '0') + + if analog_export_args is None: + analog_export_args = () + if dio_export_args is None: + dio_export_args = () + if spikes_export_args is None: + spikes_export_args = () + if time_export_args is None: + time_export_args = () + if trodes_rec_export_args is None: + trodes_rec_export_args = () + self.extract_analog = extract_analog self.extract_spikes = extract_spikes self.extract_dio = extract_dio From 90224f233f61b8fabb671015b8968ef7070b543c Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Sun, 28 Nov 2021 19:35:16 -0500 Subject: [PATCH 138/205] Use sorting mode 1 to have separate ntrode files --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 9e83f3b9f..cf6212309 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -114,7 +114,7 @@ def __init__( mda_export_args = ('-usespikefilters', '0', '-interp', '1', '-usespikerefs', '0', - '-sortingmode', '0') + '-sortingmode', '1') if analog_export_args is None: analog_export_args = () From ee5bbc1b7be6fd6b033862e63572a85107789f40 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Sun, 28 Nov 2021 19:36:23 -0500 Subject: [PATCH 139/205] If can't find mda files in .mda folder, look in .mountainsort folder because trodes 2.0. --- .../nwb/components/mda/fl_mda_extractor.py | 18 +++++++++++++----- rec_to_nwb/processing/tools/dataset.py | 5 +++++ 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py index 69691a420..0613275d9 100644 --- a/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py +++ b/rec_to_nwb/processing/nwb/components/mda/fl_mda_extractor.py @@ -34,9 +34,10 @@ def get_data(self): def max_file_size(dim): # Loop through datasets and files to find largest file along given dimension (dim) return max([mda_data_manager.get_data_shape(dataset_num, file_num)[dim] - for dataset_num in range(len(mda_data_manager.directories)) - for file_num in range(len(mda_data_manager.directories[dataset_num]))]) - bytes_estimate = max_file_size(0)*max_file_size(1)*2 # samples x channels x 2 bytes/sample + for dataset_num in range(len(mda_data_manager.directories)) + for file_num in range(len(mda_data_manager.directories[dataset_num]))]) + # samples x channels x 2 bytes/sample + bytes_estimate = max_file_size(0) * max_file_size(1) * 2 if bytes_estimate < 3e9: # each file < 3GB num_threads = 6 elif bytes_estimate < 6e9: @@ -78,8 +79,15 @@ def __extract_data_files_for_single_dataset(self, dataset): @staticmethod def __get_data_files_from_current_dataset(dataset): - return [os.path.join(dataset.get_data_path_from_dataset('mda'), mda_file) for mda_file in - dataset.get_all_data_from_dataset('mda') if + data_files = [os.path.join(dataset.get_data_path_from_dataset('mda'), mda_file) for mda_file in + dataset.get_all_data_from_dataset('mda') if + (mda_file.endswith('.mda') and not mda_file.endswith('timestamps.mda'))] + if len(data_files) > 0: + return data_files + else: + return [ + os.path.join(dataset.get_data_path_from_dataset('mountainsort'), mda_file) for mda_file in + dataset.get_all_data_from_dataset('mountainsort') if (mda_file.endswith('.mda') and not mda_file.endswith('timestamps.mda'))] @staticmethod diff --git a/rec_to_nwb/processing/tools/dataset.py b/rec_to_nwb/processing/tools/dataset.py index 6821a63ce..0451d7d52 100644 --- a/rec_to_nwb/processing/tools/dataset.py +++ b/rec_to_nwb/processing/tools/dataset.py @@ -24,6 +24,11 @@ def get_mda_timestamps(self): if file.endswith('timestamps.mda'): return os.path.join( self.get_data_path_from_dataset('mda'), file) + + for file in self.get_all_data_from_dataset('mountainsort'): + if file.endswith('timestamps.mda'): + return os.path.join( + self.get_data_path_from_dataset('mountainsort'), file) return None def get_continuous_time(self): From c6f773f48a03ec583723b829ad99b43cbfc2002e Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Wed, 8 Dec 2021 16:32:12 -0800 Subject: [PATCH 140/205] bug fixes for electrode_table: all electrodes now included --- .../metadata/corrupted_data_manager.py | 14 ++------------ .../extension/fl_electrode_extension_factory.py | 2 +- .../extension/fl_electrode_extension_manager.py | 3 ++- .../electrodes/fl_electrode_manager.py | 16 ++++++---------- 4 files changed, 11 insertions(+), 24 deletions(-) diff --git a/rec_to_nwb/processing/metadata/corrupted_data_manager.py b/rec_to_nwb/processing/metadata/corrupted_data_manager.py index 2d2da6e1d..b1b092c02 100644 --- a/rec_to_nwb/processing/metadata/corrupted_data_manager.py +++ b/rec_to_nwb/processing/metadata/corrupted_data_manager.py @@ -53,7 +53,7 @@ def __get_electrodes_valid_map(ntrode_metadata: list) -> list: for ntrode in ntrode_metadata: bad_channels = [int(bad_channel) for bad_channel in ntrode['bad_channels']] electrodes_valid_map.extend( - [bool(counter not in bad_channels) for counter, _ in enumerate(ntrode['map'])] + [bool(int(channel) not in bad_channels) for channel in ntrode['map']] ) return electrodes_valid_map @@ -62,19 +62,9 @@ def __get_electrode_groups_valid_map(self, ntrode_metadata: list, electrodes_valid_map: list) -> set: tmp_electrodes_valid_map = copy.deepcopy(electrodes_valid_map) return { - ntrode['electrode_group_id'] - for ntrode in ntrode_metadata - if self.__is_ntrode_valid(ntrode, tmp_electrodes_valid_map) + ntrode['electrode_group_id'] for ntrode in ntrode_metadata } - @staticmethod - def __is_ntrode_valid(ntrode, electrodes_valid_map): - is_valid = False - for _ in ntrode['map']: - if electrodes_valid_map.pop(0): - is_valid = True - return is_valid - @staticmethod @beartype def __get_probes_valid_map(electrode_groups_metadata: list, electrode_groups_valid_map: set) -> set: diff --git a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py index 5ebc69ccc..37ed16b2d 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_factory.py @@ -40,7 +40,7 @@ def create_bad_channels(cls, ntrode_metadata: list) -> list: bad_channels = [] for ntrode in ntrode_metadata: bad_channels.extend( - [bool(counter in ntrode['bad_channels']) for counter, _ in enumerate(ntrode['map'])] + [bool(channel in ntrode['bad_channels']) for channel in ntrode['map']] ) return bad_channels diff --git a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py index 0f0332fe5..0b2eb36d7 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/extension/fl_electrode_extension_manager.py @@ -97,5 +97,6 @@ def __validate_extension_length(*args): @staticmethod def __filter_extension_list_with_electrodes_valid_map(electrodes_valid_map, extension): + #this function currently doesn't do anything, so it could be removed tmp_electrodes_valid_map = copy.deepcopy(electrodes_valid_map) - return [value for value in extension if tmp_electrodes_valid_map.pop(0)] + return [value for value in extension] diff --git a/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py b/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py index bdbe27fa8..eece44ab7 100644 --- a/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrodes/fl_electrode_manager.py @@ -32,17 +32,13 @@ def get_fl_electrodes(self, electrode_groups: list, electrodes_valid_map: list, for shank in probe_metadata['shanks']: for _ in shank['electrodes']: fl_electrode_id += 1 - - if tmp_electrodes_valid_map.pop(0) and \ - (electrode_group_metadata['id'] in electrode_groups_valid_map): - - fl_electrodes.append( - self.fl_electrodes_builder.build( - fl_electrode_id, - self.__get_electrode_group( - electrode_group_metadata, electrode_groups) - ) + fl_electrodes.append( + self.fl_electrodes_builder.build( + fl_electrode_id, + self.__get_electrode_group( + electrode_group_metadata, electrode_groups) ) + ) return fl_electrodes @staticmethod From 2f2736522443e00cc0d79cd310b09ccf39626bab Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Wed, 8 Dec 2021 16:54:55 -0800 Subject: [PATCH 141/205] version update --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0d1d6850f..1084444f2 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -version = '0.1.019' +version = '0.1.020' print(version) from setuptools import setup, find_packages From f948de1f69fd4930e8f9aff7223aa487b4ee3b3c Mon Sep 17 00:00:00 2001 From: Loren Frank Date: Wed, 8 Dec 2021 17:23:18 -0800 Subject: [PATCH 142/205] updated requirements in setup.py --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 1084444f2..5e6f1c36b 100644 --- a/setup.py +++ b/setup.py @@ -14,4 +14,7 @@ description='Data transformation from rec binary files into NWB 2.0 format', platforms='Posix; MacOS X; Windows', python_requires='>=3.6' + install_requires=[ + 'rec_to_binaries>=0.6.12' + ] ) From 78b87295949c061553c79476da004de1f232dc1e Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Fri, 10 Dec 2021 17:55:09 -0800 Subject: [PATCH 143/205] Fix README formatting Fixes the code block not being ended correctly and a comment in the YAML not encoded properly in "How to use it" point 4. Also indents the items under point 8. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 53f91e0ae..a9727863b 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Currently we suggest following the instructions to install https://github.com/Lo ``` 4. Metadata.yml description: -Important note: right now the code assumes that the electrode groups listed below (each of which corresponds to one or more NTrode in the file) are in ascending order by NTrode number. If this is not the case the data could be scrambled. Thus, the first listed electrode group should correspond to, for example, NTrode 1 (or perhaps NTrodes 1-4) while the second would correspond to NTrode 2 (or 5-8), etc. + Important note: right now the code assumes that the electrode groups listed below (each of which corresponds to one or more NTrode in the file) are in ascending order by NTrode number. If this is not the case the data could be scrambled. Thus, the first listed electrode group should correspond to, for example, NTrode 1 (or perhaps NTrodes 1-4) while the second would correspond to NTrode 2 (or 5-8), etc. ```yaml @@ -116,8 +116,7 @@ Important note: right now the code assumes that the electrode groups listed belo associated_video_files: - name: 20190718_beans_01_s1.1.h264 camera_id : 0 - # Times period multiplier is used in pos/mda invalid/valid times, to multiply the period when detecting gaps, - to avoid creating invalid times in case of only small deviations. (optional parameter, default 1.5) + # Times period multiplier is used in pos/mda invalid/valid times, to multiply the period when detecting gaps, to avoid creating invalid times in case of only small deviations. (optional parameter, default 1.5) times_period_multiplier: 1.5 # Din/Dout events which filter out files from DIO data in data directory. Each name has to be unique. Stored in behavioral_events section in output nwb file. behavioral_events: @@ -166,7 +165,8 @@ Important note: right now the code assumes that the electrode groups listed belo 1: 5 2: 6 3: 7 - ``` + ``` + 5. Probe.yml description: ```yaml probe_type: tetrode_12.5 # Type of the probe that refers to device_type in electrode_group in metadata.yml @@ -199,8 +199,8 @@ Important note: right now the code assumes that the electrode groups listed belo 7. Input files `metadata.yml` as well as `probe[1-N].yml` are validated against rec files headers. 8. We provide two class to generate the NWB file.
-* `RawToNWBBuilder` - To generate NWB file from raw data.
-* `NWBFileBuilder` - To generate NWB file from preprocessed data.
+ * `RawToNWBBuilder` - To generate NWB file from raw data.
+ * `NWBFileBuilder` - To generate NWB file from preprocessed data.
##### Raw data Initialize RawToNWBBuilder, which requires `animal_name`, `data_path` and `dates` which exist in your experiment folder. Next build the NWB using `build_nwb()`.
From d9636217bdbb68ccb9bdef3fdd937e94d2ac8c6b Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Sun, 12 Dec 2021 15:06:55 -0500 Subject: [PATCH 144/205] Fix missing comma --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 5e6f1c36b..a780f0cf6 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,7 @@ version = '0.1.020' print(version) -from setuptools import setup, find_packages - +from setuptools import find_packages, setup setup( name='rec_to_nwb', @@ -10,10 +9,11 @@ author='Novela Neurotech', url="https://github.com/NovelaNeuro/rec_to_nwb", packages=find_packages(), - package_data={'': ['logging.conf', 'data/fl_lab_header.xsd', 'data/header_schema.xsd', 'data/default_header.xml']}, + package_data={'': ['logging.conf', 'data/fl_lab_header.xsd', + 'data/header_schema.xsd', 'data/default_header.xml']}, description='Data transformation from rec binary files into NWB 2.0 format', platforms='Posix; MacOS X; Windows', - python_requires='>=3.6' + python_requires='>=3.6', install_requires=[ 'rec_to_binaries>=0.6.12' ] From 9c6792d828d823e6b035d242767c3552fdb944b6 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Sun, 12 Dec 2021 15:08:12 -0500 Subject: [PATCH 145/205] Minor formatting --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a780f0cf6..238300f16 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ +from setuptools import find_packages, setup + version = '0.1.020' print(version) -from setuptools import find_packages, setup - setup( name='rec_to_nwb', version=version, From 284b9e23a5e6b9c8e4a428b9365f28492ae07aad Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Thu, 13 Jan 2022 11:52:13 -0800 Subject: [PATCH 146/205] Use ndx-franklab-novela 0.1.0 (#19) --- environment.yml | 16 +++++++-------- .../originators/video_files_originator.py | 4 ++-- .../associated_files_creator.py | 2 +- .../nwb/components/device/device_factory.py | 5 +---- .../device/probe/shanks/shank_creator.py | 2 +- .../shanks_electrode_creator.py | 4 ++-- .../electrode_group_factory.py | 2 +- .../fl_electrode_group_manager.py | 2 +- .../fl_nwb_electrode_group_manager.py | 2 +- .../video_files/video_files_creator.py | 10 +++++----- .../video_files/video_files_injector.py | 2 +- .../nwb_eseries_timestamps_visualization.py | 7 +------ .../test_associatedFilesCreator.py | 2 +- .../device/probe/shank/test_flShankManager.py | 5 ++--- .../device/probe/test_flProbeManager.py | 2 +- .../processing/device/test_deviceFactory.py | 14 ++++++------- .../processing/device/test_deviceInjector.py | 20 +++++++++---------- .../device/test_header_device_manager.py | 3 +-- .../test_electrodeGroupFactory.py | 6 +++--- .../test_flElectrodeGroupManager.py | 2 +- .../test_flNwbElectrodeGroupManager.py | 2 +- 21 files changed, 49 insertions(+), 65 deletions(-) diff --git a/environment.yml b/environment.yml index 3957a0118..5f894643e 100644 --- a/environment.yml +++ b/environment.yml @@ -5,11 +5,11 @@ channels: - franklab - novelakrk dependencies: - - python>=3.6,<3.8 + - python>=3.6,<3.10 - rec_to_binaries - pip - - hdmf - - pynwb + - hdmf>=3.1.1,<4 + - pynwb>=2.0.0,<3 - asn1crypto - blas - ca-certificates @@ -18,7 +18,7 @@ dependencies: - chardet - cryptography - elementpath - - h5py<3.0 + - h5py<4 - hdf5 - idna - libblas @@ -47,14 +47,12 @@ dependencies: - pyyaml - pytest - testfixtures - - ndx-franklab-novela=0.0.011 - jupyterlab - nb_conda + - mountainlab_pytools + - xmldiff - pip: - - mountainlab_pytools - - xmldiff - - hdmf>2.1.0 - - pynwb + - git+git://github.com/LorenFrankLab/ndx-franklab-novela@0.1.0 # Docs - recommonmark diff --git a/rec_to_nwb/processing/builder/originators/video_files_originator.py b/rec_to_nwb/processing/builder/originators/video_files_originator.py index a05f3c10a..465db64f6 100644 --- a/rec_to_nwb/processing/builder/originators/video_files_originator.py +++ b/rec_to_nwb/processing/builder/originators/video_files_originator.py @@ -19,8 +19,8 @@ def __init__(self, raw_data_path, video_path, video_files_metadata, def make(self, nwb_content): """Gets the name, timestamps and device for each video file, - creates a NwbImageSeries object that corresponds to the video, and - then inserts the NwbImageSeries object into an NWBFile under the path: + creates a ImageSeries object that corresponds to the video, and + then inserts the ImageSeries object into an NWBFile under the path: processing/video_files""" fl_video_files = self.fl_video_files_manager.get_video_files() image_series_list = [ diff --git a/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py b/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py index 1734a79eb..834e0f4cb 100644 --- a/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py +++ b/rec_to_nwb/processing/nwb/components/associated_files/associated_files_creator.py @@ -1,4 +1,4 @@ -from ndx_franklab_novela.associated_files import AssociatedFiles +from ndx_franklab_novela import AssociatedFiles class AssociatedFilesCreator: diff --git a/rec_to_nwb/processing/nwb/components/device/device_factory.py b/rec_to_nwb/processing/nwb/components/device/device_factory.py index ae468ea1d..b813b2cea 100644 --- a/rec_to_nwb/processing/nwb/components/device/device_factory.py +++ b/rec_to_nwb/processing/nwb/components/device/device_factory.py @@ -1,7 +1,4 @@ -from ndx_franklab_novela.camera_device import CameraDevice -from ndx_franklab_novela.data_acq_device import DataAcqDevice -from ndx_franklab_novela.header_device import HeaderDevice -from ndx_franklab_novela.probe import Probe +from ndx_franklab_novela import CameraDevice, DataAcqDevice, HeaderDevice, Probe from pynwb.device import Device from rec_to_nwb.processing.nwb.components.device.acq.fl_data_acq_device import \ FlDataAcqDevice diff --git a/rec_to_nwb/processing/nwb/components/device/probe/shanks/shank_creator.py b/rec_to_nwb/processing/nwb/components/device/probe/shanks/shank_creator.py index 241826fa5..e3541a80a 100644 --- a/rec_to_nwb/processing/nwb/components/device/probe/shanks/shank_creator.py +++ b/rec_to_nwb/processing/nwb/components/device/probe/shanks/shank_creator.py @@ -1,4 +1,4 @@ -from ndx_franklab_novela.probe import Shank +from ndx_franklab_novela import Shank from rec_to_nwb.processing.nwb.components.device.probe.shanks.fl_shank import FlShank from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/shanks_electrode_creator.py b/rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/shanks_electrode_creator.py index 3182882fc..a204ab04c 100644 --- a/rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/shanks_electrode_creator.py +++ b/rec_to_nwb/processing/nwb/components/device/probe/shanks_electrodes/shanks_electrode_creator.py @@ -1,4 +1,4 @@ -from ndx_franklab_novela.probe import ShanksElectrode +from ndx_franklab_novela import ShanksElectrode from rec_to_nwb.processing.nwb.components.device.probe.shanks_electrodes.fl_shanks_electrode import FlShanksElectrode from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -18,4 +18,4 @@ def create(cls, fl_shanks_electrode: FlShanksElectrode) -> ShanksElectrode: rel_x=float(fl_shanks_electrode.rel_x), rel_y=float(fl_shanks_electrode.rel_y), rel_z=float(fl_shanks_electrode.rel_z), - ) \ No newline at end of file + ) diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py b/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py index fe4e93bf0..61ba4a695 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/electrode_group_factory.py @@ -1,4 +1,4 @@ -from ndx_franklab_novela.nwb_electrode_group import NwbElectrodeGroup +from ndx_franklab_novela import NwbElectrodeGroup from pynwb.ecephys import ElectrodeGroup from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group import \ FlElectrodeGroup diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py index 1c88fce6f..625aa9287 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/fl_electrode_group_manager.py @@ -1,4 +1,4 @@ -from ndx_franklab_novela.probe import Probe +from ndx_franklab_novela import Probe from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group_builder import \ FlElectrodeGroupBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py b/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py index 0f8121f8d..1ca021554 100644 --- a/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py +++ b/rec_to_nwb/processing/nwb/components/electrode_group/fl_nwb_electrode_group_manager.py @@ -1,4 +1,4 @@ -from ndx_franklab_novela.probe import Probe +from ndx_franklab_novela import Probe from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group_builder import \ FlNwbElectrodeGroupBuilder from rec_to_nwb.processing.tools.beartype.beartype import beartype diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py index 05064661d..436fd52b0 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_creator.py @@ -1,16 +1,16 @@ -"""Creates a NwbImageSeries object that corresponds to the video""" +"""Creates a ImageSeries object that corresponds to the video""" import os -from ndx_franklab_novela.nwb_image_series import NwbImageSeries +from pynwb.image import ImageSeries class VideoFilesCreator: @staticmethod def create(fl_video_file, video_directory, nwb_content): - return NwbImageSeries( - devices=[nwb_content.devices['camera_device ' + - str(fl_video_file.device)]], + return ImageSeries( + device=nwb_content.devices['camera_device ' + + str(fl_video_file.device)], name=fl_video_file.name, timestamps=fl_video_file.timestamps, external_file=[os.path.join(video_directory, fl_video_file.name)], diff --git a/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py b/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py index 94af94a02..5d3188d69 100644 --- a/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py +++ b/rec_to_nwb/processing/nwb/components/video_files/video_files_injector.py @@ -1,4 +1,4 @@ -"""Inserts the NwbImageSeries object into an NWBFile under the path: +"""Inserts the ImageSeries object into an NWBFile under the path: processing/video_files""" from pynwb import NWBFile from pynwb.behavior import BehavioralEvents diff --git a/rec_to_nwb/scripts/nwb_eseries_timestamps_visualization.py b/rec_to_nwb/scripts/nwb_eseries_timestamps_visualization.py index d2242d1ba..a189d4167 100644 --- a/rec_to_nwb/scripts/nwb_eseries_timestamps_visualization.py +++ b/rec_to_nwb/scripts/nwb_eseries_timestamps_visualization.py @@ -1,13 +1,8 @@ # plots timestamps from nwb file(e-series) - -from ndx_franklab_novela.apparatus import Apparatus, Edge, Node -from ndx_franklab_novela.header_device import HeaderDevice -from ndx_franklab_novela.ntrode import NTrode - import matplotlib.pyplot as plt from pynwb import NWBHDF5IO -nwb_file = NWBHDF5IO('rec_to_nwb/rec_to_nwb/test/beans20190718.nwb', 'r') +nwb_file = NWBHDF5IO('rec_to_nwb/rec_to_nwb/test/beans20190718.nwb', 'r', load_namespaces=True) nwbfile_read = nwb_file.read() timestamp = nwbfile_read.acquisition['e-series'].timestamps diff --git a/rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py b/rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py index 1b47926df..fe011555c 100644 --- a/rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py +++ b/rec_to_nwb/test/processing/associated_files/test_associatedFilesCreator.py @@ -1,7 +1,7 @@ import os import unittest -from ndx_franklab_novela.associated_files import AssociatedFiles +from ndx_franklab_novela import AssociatedFiles from rec_to_nwb.processing.nwb.components.associated_files.associated_files_creator import AssociatedFilesCreator from rec_to_nwb.processing.nwb.components.associated_files.fl_associated_file import FlAssociatedFile diff --git a/rec_to_nwb/test/processing/device/probe/shank/test_flShankManager.py b/rec_to_nwb/test/processing/device/probe/shank/test_flShankManager.py index f044674d0..9bf8819ad 100644 --- a/rec_to_nwb/test/processing/device/probe/shank/test_flShankManager.py +++ b/rec_to_nwb/test/processing/device/probe/shank/test_flShankManager.py @@ -2,7 +2,7 @@ from unittest.mock import Mock from testfixtures import should_raise -from ndx_franklab_novela.probe import ShanksElectrode +from ndx_franklab_novela import ShanksElectrode from rec_to_nwb.processing.exceptions.missing_data_exception import MissingDataException from rec_to_nwb.processing.nwb.components.device.probe.shanks.fl_shank import FlShank @@ -68,7 +68,7 @@ def test_fl_shank_manager_create_fl_shanks_dict_successfully(self): self.assertEqual(len(fl_shanks_dict), 2) self.assertEqual(len(fl_shanks_dict[probes_metadata_1['probe_type']]), 1) self.assertEqual(len(fl_shanks_dict[probes_metadata_2['probe_type']]), 3) - + self.assertEqual(fl_shanks_dict[probes_metadata_1['probe_type']][0].shank_id, 0) self.assertEqual(fl_shanks_dict[probes_metadata_1['probe_type']][0].shanks_electrodes,[ mock_shanks_electrode_1, mock_shanks_electrode_2 @@ -176,4 +176,3 @@ def test_fl_shank_manager_failed_creating_fl_shanks_dict_due_to_None_param(self) electrode_groups_metadata=Mock(spec=list) ) fl_shank_manager.get_fl_shanks_dict(None) - diff --git a/rec_to_nwb/test/processing/device/probe/test_flProbeManager.py b/rec_to_nwb/test/processing/device/probe/test_flProbeManager.py index 474b59c8f..d8ed06f47 100644 --- a/rec_to_nwb/test/processing/device/probe/test_flProbeManager.py +++ b/rec_to_nwb/test/processing/device/probe/test_flProbeManager.py @@ -3,7 +3,7 @@ from unittest.mock import Mock from testfixtures import should_raise -from ndx_franklab_novela.probe import Shank +from ndx_franklab_novela import Shank from rec_to_nwb.processing.nwb.components.device.probe.fl_probe import FlProbe from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import FlProbeManager diff --git a/rec_to_nwb/test/processing/device/test_deviceFactory.py b/rec_to_nwb/test/processing/device/test_deviceFactory.py index d13646735..ad04eae48 100644 --- a/rec_to_nwb/test/processing/device/test_deviceFactory.py +++ b/rec_to_nwb/test/processing/device/test_deviceFactory.py @@ -1,9 +1,7 @@ from unittest import TestCase from unittest.mock import Mock -from ndx_franklab_novela.camera_device import CameraDevice -from ndx_franklab_novela.header_device import HeaderDevice -from ndx_franklab_novela.probe import Probe, Shank +from ndx_franklab_novela import CameraDevice, HeaderDevice, Probe, Shank from pynwb.device import Device from testfixtures import should_raise @@ -22,11 +20,11 @@ class TestDeviceFactory(TestCase): def test_device_factory_create_Device_successfully(self): mock_fl_device = Mock(spec=FlDevice) mock_fl_device.name = 'Device1' - + device = DeviceFactory.create_device( fl_device=mock_fl_device ) - + self.assertIsNotNone(device) self.assertIsInstance(device, Device) @@ -97,11 +95,11 @@ def test_device_factory_create_Probe_successfully(self): mock_fl_probe.contact_side_numbering = True mock_fl_probe.contact_size = 20.0 mock_fl_probe.shanks = [mock_shank_1, mock_shank_2] - + probe = DeviceFactory.create_probe( fl_probe=mock_fl_probe ) - + self.assertIsNotNone(probe) self.assertIsInstance(probe, Probe) @@ -218,4 +216,4 @@ def test_device_factory_failed_creating_Probe_due_to_none_param_in_FlProbe(self) DeviceFactory.create_header_device( fl_header_device=mock_fl_header_device - ) \ No newline at end of file + ) diff --git a/rec_to_nwb/test/processing/device/test_deviceInjector.py b/rec_to_nwb/test/processing/device/test_deviceInjector.py index 8cead0693..2c84a1bc7 100644 --- a/rec_to_nwb/test/processing/device/test_deviceInjector.py +++ b/rec_to_nwb/test/processing/device/test_deviceInjector.py @@ -4,9 +4,7 @@ from testfixtures import should_raise from dateutil.tz import tzlocal -from ndx_franklab_novela.data_acq_device import DataAcqDevice -from ndx_franklab_novela.header_device import HeaderDevice -from ndx_franklab_novela.probe import Probe +from ndx_franklab_novela import DataAcqDevice, HeaderDevice, Probe from pynwb import NWBFile from pynwb.device import Device @@ -53,13 +51,13 @@ def setUpClass(cls): cls.probe_2.id = 2 cls.probe_2.contact_size = 25.0 cls.probe_2.num_shanks = 30 - + cls.data_acq_device_0 = Mock(spec=DataAcqDevice) cls.data_acq_device_0.name = 'Acq_0' cls.data_acq_device_0.system = 'system_0' cls.data_acq_device_0.amplifier = 'amplifier_0' - cls.data_acq_device_0.adc_circuit = 'adc_circuit_0' - + cls.data_acq_device_0.adc_circuit = 'adc_circuit_0' + cls.data_acq_device_1 = Mock(spec=DataAcqDevice) cls.data_acq_device_1.name = 'Acq_1' cls.data_acq_device_1.system = 'system_1' @@ -73,7 +71,7 @@ def setUpClass(cls): cls.device_2.name = 'Device_2' cls.probes_dict = {'Probe_1': cls.probe_1, 'Probe_2': cls.probe_2} - + cls.data_acq_device_dict = {'Acq_0': cls.data_acq_device_0, 'Acq_1': cls.data_acq_device_1} cls.header_device_dict = {'HeaderDevice_1': cls.header_device_1} @@ -124,8 +122,8 @@ def test_injector_inject_probes_to_nwb_successfully(self): self.assertEqual(self.nwb_content.devices['Probe_2'].id, 2) self.assertEqual(self.nwb_content.devices['Probe_2'].name, 'Probe_2') self.assertEqual(self.nwb_content.devices['Probe_2'].num_shanks, 30) - self.assertEqual(self.nwb_content.devices['Probe_2'].contact_size, 25.0) - + self.assertEqual(self.nwb_content.devices['Probe_2'].contact_size, 25.0) + def test_injector_inject_data_acq_device_to_nwb_successfully(self): self.device_injector.inject_all_devices( nwb_content=self.nwb_content, @@ -139,8 +137,8 @@ def test_injector_inject_data_acq_device_to_nwb_successfully(self): self.assertEqual(self.nwb_content.devices['Acq_0'].name, 'Acq_0') self.assertEqual(self.nwb_content.devices['Acq_0'].system, 'system_0') self.assertEqual(self.nwb_content.devices['Acq_0'].amplifier, 'amplifier_0') - self.assertEqual(self.nwb_content.devices['Acq_0'].adc_circuit, 'adc_circuit_0') - + self.assertEqual(self.nwb_content.devices['Acq_0'].adc_circuit, 'adc_circuit_0') + self.assertIsInstance(self.nwb_content.devices['Acq_1'], DataAcqDevice) self.assertEqual(self.nwb_content.devices['Acq_1'].name, 'Acq_1') self.assertEqual(self.nwb_content.devices['Acq_1'].system, 'system_1') diff --git a/rec_to_nwb/test/processing/device/test_header_device_manager.py b/rec_to_nwb/test/processing/device/test_header_device_manager.py index fb340873a..1340f8e50 100644 --- a/rec_to_nwb/test/processing/device/test_header_device_manager.py +++ b/rec_to_nwb/test/processing/device/test_header_device_manager.py @@ -1,7 +1,7 @@ from unittest import TestCase from unittest.mock import Mock -from ndx_franklab_novela.header_device import HeaderDevice +from ndx_franklab_novela import HeaderDevice from rec_to_nwb.processing.header.module.global_configuration import GlobalConfiguration from rec_to_nwb.processing.nwb.components.device.device_factory import DeviceFactory @@ -136,4 +136,3 @@ def test_header_device_manager_create_HeaderDevice_with_default_values_successfu self.assertEqual(header_device.commit_head, 'Sample commit_head') self.assertEqual(header_device.system_time_at_creation, 'Sample system_time_at_creation') self.assertEqual(header_device.file_path, 'Sample file_path') - diff --git a/rec_to_nwb/test/processing/electrode_group/test_electrodeGroupFactory.py b/rec_to_nwb/test/processing/electrode_group/test_electrodeGroupFactory.py index b169e8e1e..c9969512a 100644 --- a/rec_to_nwb/test/processing/electrode_group/test_electrodeGroupFactory.py +++ b/rec_to_nwb/test/processing/electrode_group/test_electrodeGroupFactory.py @@ -1,7 +1,7 @@ from unittest import TestCase from unittest.mock import Mock -from ndx_franklab_novela.probe import Probe +from ndx_franklab_novela import Probe from pynwb.device import Device from testfixtures import should_raise @@ -31,7 +31,7 @@ def test_electrode_group_factory_create_ElectrodeGroup_successfully(self): electrode_group_1 = ElectrodeGroupFactory.create_electrode_group(mock_fl_electrode_group_1) electrode_group_2 = ElectrodeGroupFactory.create_electrode_group(mock_fl_electrode_group_2) - + self.assertIsNotNone(electrode_group_1) self.assertIsNotNone(electrode_group_2) self.assertEqual(electrode_group_1.name, "0") @@ -125,4 +125,4 @@ def test_electrode_group_factory_failed_creating_NwbElectrodeGroup_due_to_lack_o mock_fl_nwb_electrode_group_1.targeted_z = None mock_fl_nwb_electrode_group_1.units = None - ElectrodeGroupFactory.create_nwb_electrode_group(mock_fl_nwb_electrode_group_1) \ No newline at end of file + ElectrodeGroupFactory.create_nwb_electrode_group(mock_fl_nwb_electrode_group_1) diff --git a/rec_to_nwb/test/processing/electrode_group/test_flElectrodeGroupManager.py b/rec_to_nwb/test/processing/electrode_group/test_flElectrodeGroupManager.py index 7fc7d6335..6257dc03b 100644 --- a/rec_to_nwb/test/processing/electrode_group/test_flElectrodeGroupManager.py +++ b/rec_to_nwb/test/processing/electrode_group/test_flElectrodeGroupManager.py @@ -3,7 +3,7 @@ from unittest.mock import Mock from testfixtures import should_raise -from ndx_franklab_novela.probe import Probe +from ndx_franklab_novela import Probe from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group_manager import FlElectrodeGroupManager from rec_to_nwb.processing.nwb.components.electrode_group.fl_electrode_group import FlElectrodeGroup diff --git a/rec_to_nwb/test/processing/electrode_group/test_flNwbElectrodeGroupManager.py b/rec_to_nwb/test/processing/electrode_group/test_flNwbElectrodeGroupManager.py index ab7adddd0..51979b14d 100644 --- a/rec_to_nwb/test/processing/electrode_group/test_flNwbElectrodeGroupManager.py +++ b/rec_to_nwb/test/processing/electrode_group/test_flNwbElectrodeGroupManager.py @@ -3,7 +3,7 @@ from unittest.mock import Mock from testfixtures import should_raise -from ndx_franklab_novela.probe import Probe +from ndx_franklab_novela import Probe from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group import FlNwbElectrodeGroup from rec_to_nwb.processing.nwb.components.electrode_group.fl_nwb_electrode_group_manager import FlNwbElectrodeGroupManager From deac816c44650c30c56db3c7949d1501372ddac2 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 31 Jan 2022 14:05:17 -0800 Subject: [PATCH 147/205] Fix lfp default arguments --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index cf6212309..433d8119c 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -99,12 +99,12 @@ def __init__( '-userefs', '0', '-outputrate', '1500') else: - lfp_export_args = ('-highpass', '0', - '-lowpass', '400', + lfp_export_args = ('-lfphighpass', '0', + '-lfplowpass', '400', '-interp', '0', - '-userefs', '0', + '-uselfprefs', '0', '-outputrate', '1500' - '-sortingmode', '0') + '-sortingmode', '1') if mda_export_args is None: if trodes_version < 2.0: mda_export_args = ('-usespikefilters', '0', From dc1825b8b25573e0609559a37b55f25124549c5e Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 31 Jan 2022 14:05:58 -0800 Subject: [PATCH 148/205] Make sure no referencing for trodes 2.0+ --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 433d8119c..7600ff6ec 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -113,6 +113,7 @@ def __init__( else: mda_export_args = ('-usespikefilters', '0', '-interp', '1', + '-userawrefs', '0', '-usespikerefs', '0', '-sortingmode', '1') From cb18ddf01fe5dc74ae46af0e9b96fdff9cc34c2f Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 1 Feb 2022 11:41:05 -0800 Subject: [PATCH 149/205] Use HWSync not HWFrameCount for PTP --- .../processing/nwb/components/position/pos_timestamp_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 1d85cd82f..e0a9f11ae 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -65,7 +65,7 @@ def retrieve_real_timestamps(self, dataset_id): # Get video PTP timestamps camera_hwsync = readTrodesExtractedDataFile( pos_online_path.replace( - '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) + '.pos_online.dat', '.pos_cameraHWSync.dat')) camera_hwsync = (pd.DataFrame(camera_hwsync['data']) .set_index('PosTimestamp')) From 25e3591f9899cd5cd632952a5c97f210b8f4c687 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 1 Feb 2022 16:07:50 -0800 Subject: [PATCH 150/205] Fix missing comma --- rec_to_nwb/processing/builder/raw_to_nwb_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 7600ff6ec..488acbc8f 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -103,7 +103,7 @@ def __init__( '-lfplowpass', '400', '-interp', '0', '-uselfprefs', '0', - '-outputrate', '1500' + '-outputrate', '1500', '-sortingmode', '1') if mda_export_args is None: if trodes_version < 2.0: From 41416d9335b85a846b29b88cf64180f107a1bc8a Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 2 Feb 2022 14:31:38 -0800 Subject: [PATCH 151/205] Detect when hwsync file is not found --- .../processing/nwb/components/position/pos_timestamp_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index e0a9f11ae..2e54a60ea 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -73,7 +73,7 @@ def retrieve_real_timestamps(self, dataset_id): # Convert from nanoseconds to seconds return (camera_hwsync.loc[online_timestamps_ind, 'HWTimestamp'] / NANOSECONDS_PER_SECOND).to_numpy() - except KeyError: + except (KeyError, FileNotFoundError): # If PTP timestamps do not exist find the corresponding timestamps # from the neural recording logger.info('No PTP timestamps found. Using neural timestamps.') From 21078b0222e39cbe68c9e8ae12dbcfdb46af1463 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 3 Mar 2022 11:45:23 -0800 Subject: [PATCH 152/205] Handle multiple experimenters in __str__ --- .../processing/metadata/metadata_manager.py | 23 +++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/rec_to_nwb/processing/metadata/metadata_manager.py b/rec_to_nwb/processing/metadata/metadata_manager.py index 3a9a117bb..3e95f63f3 100644 --- a/rec_to_nwb/processing/metadata/metadata_manager.py +++ b/rec_to_nwb/processing/metadata/metadata_manager.py @@ -1,9 +1,12 @@ from rec_to_nwb.processing.metadata.metadata_extractor import MetadataExtractor -from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_extractor import FlProbesExtractor +from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_extractor import \ + FlProbesExtractor from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.validation.metadata_validator import MetadataValidator -from rec_to_nwb.processing.validation.validation_registrator import ValidationRegistrator +from rec_to_nwb.processing.validation.metadata_validator import \ + MetadataValidator +from rec_to_nwb.processing.validation.validation_registrator import \ + ValidationRegistrator class MetadataManager: @@ -12,7 +15,7 @@ class MetadataManager: metadata_path (string): path to file .yml with metadata describing experiment probes_paths (list of strings): list of paths to .yml files with data describing probes used in experiment """ - + @beartype def __init__(self, metadata_path: str, probes_paths: list): self.__validate(metadata_path, probes_paths) @@ -29,7 +32,8 @@ def __init__(self, metadata_path: str, probes_paths: list): @staticmethod def __validate(metadata_path, probes_paths): validation_registrator = ValidationRegistrator() - validation_registrator.register(MetadataValidator(metadata_path, probes_paths)) + validation_registrator.register( + MetadataValidator(metadata_path, probes_paths)) validation_registrator.validate() def __get_metadata(self, metadata_path): @@ -39,10 +43,11 @@ def __get_probes(self, probes_paths): return self.fl_probes_extractor.extract_probes_metadata(probes_paths) def __str__(self): - metadata_info = 'Experimenter: ' + self.metadata['experimenter_name'] + \ - '\nDescription: ' + self.metadata['experiment_description'] + \ - '\nSession Id: ' + self.metadata['session_id'] + \ - '\nSubject: ' + self.metadata['subject']['description'] + metadata_info = ( + 'Experimenter: ' + ', '.join(self.metadata['experimenter_name']) + + '\nDescription: ' + self.metadata['experiment_description'] + + '\nSession Id: ' + self.metadata['session_id'] + + '\nSubject: ' + self.metadata['subject']['description']) probe_types = list(map(lambda probe: probe['probe_type'], self.probes)) probe_types_info = '\n\nAvailable probe types: ' + str(probe_types) From 58c82fa2313c99cbbc48d9fb740868667d715c60 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 15 Mar 2022 10:41:59 -0700 Subject: [PATCH 153/205] Create PR-test.yml --- .github/workflows/PR-test.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/PR-test.yml diff --git a/.github/workflows/PR-test.yml b/.github/workflows/PR-test.yml new file mode 100644 index 000000000..a11fa567a --- /dev/null +++ b/.github/workflows/PR-test.yml @@ -0,0 +1,33 @@ +name: PR Test + +on: push + +jobs: + run-tests: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest] #, macos-latest, windows-latest] + env: + OS: ${{ matrix.os }} + PYTHON: '3.8' + steps: + - name: Cancel Workflow Action + uses: styfle/cancel-workflow-action@0.6.0 + with: + access_token: ${{ github.token }} + - name: Checkout + uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.8 + - name: Set up conda environment + uses: conda-incubator/setup-miniconda@v2 + with: + activate-environment: rec_to_nwb + environment-file: environment.yml + - name: Install rec_to_nwb + shell: bash -l {0} + run: | + pip install -e . From cecec5656b3f203534c7126b00d451ab4b759ef3 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 15 Mar 2022 10:47:16 -0700 Subject: [PATCH 154/205] Add badge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a9727863b..185cec5fe 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # rec_to_nwb +[![PR Test](https://github.com/LorenFrankLab/rec_to_nwb/actions/workflows/PR-test.yml/badge.svg)](https://github.com/LorenFrankLab/rec_to_nwb/actions/workflows/PR-test.yml) # About rec_to_nwb is a python conda package for converting SpikeGadgets rec files to NWB files.
It converts experiment data from `/raw` or `/preprocessing` folder to `.nwb` file. It utilizes rec_to_binaries package for preprocessing phase.
From f08ba856b3a9af22c869802fecfa0cc0bfb9d805 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 15 Mar 2022 10:55:25 -0700 Subject: [PATCH 155/205] Fix pip install --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index 5f894643e..0417ff473 100644 --- a/environment.yml +++ b/environment.yml @@ -52,7 +52,7 @@ dependencies: - mountainlab_pytools - xmldiff - pip: - - git+git://github.com/LorenFrankLab/ndx-franklab-novela@0.1.0 + - git+https://github.com/LorenFrankLab/ndx-franklab-novela.git # Docs - recommonmark From b38dae2b3087c73fd6ab9bc24ac1715c1dd011dd Mon Sep 17 00:00:00 2001 From: Loren Date: Mon, 2 May 2022 14:07:59 -0700 Subject: [PATCH 156/205] added print for debugging --- rec_to_nwb/processing/validation/associated_files_validator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rec_to_nwb/processing/validation/associated_files_validator.py b/rec_to_nwb/processing/validation/associated_files_validator.py index 8bbbf1a62..3f766949d 100644 --- a/rec_to_nwb/processing/validation/associated_files_validator.py +++ b/rec_to_nwb/processing/validation/associated_files_validator.py @@ -8,6 +8,7 @@ def __init__(self, associated_files): def files_exist(self): for associated_file in self.associated_files: + print(f'Checking associated file {associated_file["path"]}') if not os.path.isfile(associated_file["path"]): return False return True From 62970309eada004cb4217002b518dfb1a9402194 Mon Sep 17 00:00:00 2001 From: Loren Date: Mon, 2 May 2022 17:51:35 -0700 Subject: [PATCH 157/205] add try except to position_originator.py --- .../builder/originators/position_originator.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index a76fd6d85..b191c604f 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -33,8 +33,11 @@ def __init__(self, datasets: list, metadata: dict, dataset_names: list, @beartype def make(self, nwb_content: NWBFile): logger.info('Position: Building') - fl_positions = self.fl_position_manager.get_fl_positions() - logger.info('Position: Creating') - position = self.position_creator.create_all(fl_positions) - logger.info('Position: Injecting into ProcessingModule') - nwb_content.processing['behavior'].add(position) + try: + fl_positions = self.fl_position_manager.get_fl_positions() + logger.info('Position: Creating') + position = self.position_creator.create_all(fl_positions) + logger.info('Position: Injecting into ProcessingModule') + nwb_content.processing['behavior'].add(position) + except: + return From d19e9134223cb8b6b5aee6d53a7b5607e42d3da2 Mon Sep 17 00:00:00 2001 From: Loren Date: Tue, 3 May 2022 06:21:19 -0700 Subject: [PATCH 158/205] added print statement --- rec_to_nwb/processing/builder/originators/position_originator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index b191c604f..bce870829 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -40,4 +40,5 @@ def make(self, nwb_content: NWBFile): logger.info('Position: Injecting into ProcessingModule') nwb_content.processing['behavior'].add(position) except: + print('Problem adding position data; skipping') return From cdca8ef30268a33c382ffe0d39c4629ba7b06b63 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 3 May 2022 10:51:02 -0700 Subject: [PATCH 159/205] Revert "Detect when hwsync file is not found" This reverts commit 41416d9335b85a846b29b88cf64180f107a1bc8a. --- .../processing/nwb/components/position/pos_timestamp_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 2e54a60ea..e0a9f11ae 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -73,7 +73,7 @@ def retrieve_real_timestamps(self, dataset_id): # Convert from nanoseconds to seconds return (camera_hwsync.loc[online_timestamps_ind, 'HWTimestamp'] / NANOSECONDS_PER_SECOND).to_numpy() - except (KeyError, FileNotFoundError): + except KeyError: # If PTP timestamps do not exist find the corresponding timestamps # from the neural recording logger.info('No PTP timestamps found. Using neural timestamps.') From 511c9ed4dcf64fd21be147d41c092fb9861f4c4f Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 3 May 2022 10:51:09 -0700 Subject: [PATCH 160/205] Revert "Use HWSync not HWFrameCount for PTP" This reverts commit cb18ddf01fe5dc74ae46af0e9b96fdff9cc34c2f. --- .../processing/nwb/components/position/pos_timestamp_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index e0a9f11ae..1d85cd82f 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -65,7 +65,7 @@ def retrieve_real_timestamps(self, dataset_id): # Get video PTP timestamps camera_hwsync = readTrodesExtractedDataFile( pos_online_path.replace( - '.pos_online.dat', '.pos_cameraHWSync.dat')) + '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) camera_hwsync = (pd.DataFrame(camera_hwsync['data']) .set_index('PosTimestamp')) From 824bbe7b258c2d36a8f07932cdb44c8602ff43bc Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 17 May 2022 10:19:26 -0400 Subject: [PATCH 161/205] Return only unique timestamps --- .../processing/nwb/components/position/pos_timestamp_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 1d85cd82f..350b2c1da 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -32,7 +32,7 @@ def _get_timestamps(self, dataset_id): pos_online = readTrodesExtractedDataFile( self.directories[dataset_id][0]) position = pd.DataFrame(pos_online['data']) - return position.time.to_numpy(dtype='int64') + return position.time.unique().to_numpy(dtype='int64') def retrieve_real_timestamps(self, dataset_id): """Gets the corresponding Trodes timestamps from the online position From 7d0790c9dcab1c4ff3719dd28652db1c92955e07 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 25 May 2022 12:47:40 -0400 Subject: [PATCH 162/205] Unique returns a numpy array instead of a pandas series. --- .../processing/nwb/components/position/pos_timestamp_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index 350b2c1da..da7795a43 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -32,7 +32,7 @@ def _get_timestamps(self, dataset_id): pos_online = readTrodesExtractedDataFile( self.directories[dataset_id][0]) position = pd.DataFrame(pos_online['data']) - return position.time.unique().to_numpy(dtype='int64') + return position.time.unique().astype(int) def retrieve_real_timestamps(self, dataset_id): """Gets the corresponding Trodes timestamps from the online position From 6a642027d3a96337b2fffc1ce8ba2135afab599b Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 2 Jun 2022 17:25:04 -0700 Subject: [PATCH 163/205] Refactor to handle non-ptp timestamps and simplify code logic. --- .../processing/builder/nwb_file_builder.py | 12 +- .../originators/position_originator.py | 437 +++++++++++++++++- 2 files changed, 421 insertions(+), 28 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 0b1b5c150..b9d6843b4 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -325,15 +325,9 @@ def __init__( self.analog_originator = AnalogOriginator( self.datasets, self.metadata) - if self.is_old_dataset: - self.position_originator = PositionOriginator( - self.datasets, self.metadata, - self.dataset_names, self.process_pos_timestamps, - convert_timestamps=_CONVERT_OLD_TIMESTAMPS) - else: - self.position_originator = PositionOriginator( - self.datasets, self.metadata, - self.dataset_names, self.process_pos_timestamps) + self.position_originator = PositionOriginator( + self.datasets, self.metadata, + self.dataset_names) def __extract_datasets(self, animal_name, date): self.data_scanner.extract_data_from_date_folder(date) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index a76fd6d85..aef06468d 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -1,14 +1,17 @@ +import glob import logging.config import os -from pynwb import NWBFile -from rec_to_nwb.processing.nwb.components.position.fl_position_manager import \ - FlPositionManager -from rec_to_nwb.processing.nwb.components.position.position_creator import \ - PositionCreator -from rec_to_nwb.processing.nwb.components.processing_module.processing_module_creator import \ - ProcessingModuleCreator +import numpy as np +import pandas as pd +from pynwb import NWBFile, ProcessingModule +from pynwb.behavior import Position +from rec_to_binaries.read_binaries import readTrodesExtractedDataFile +from rec_to_nwb.processing.exceptions.invalid_metadata_exception import \ + InvalidMetadataException from rec_to_nwb.processing.tools.beartype.beartype import beartype +from scipy.ndimage import label +from scipy.stats import linregress path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( @@ -17,24 +20,420 @@ disable_existing_loggers=False) logger = logging.getLogger(__name__) +NANOSECONDS_PER_SECOND = 1e9 + class PositionOriginator: @beartype - def __init__(self, datasets: list, metadata: dict, dataset_names: list, - process_timestamps: bool, - convert_timestamps: bool = True): - self.pm_creator = ProcessingModuleCreator( + def __init__(self, datasets: list, metadata: dict, dataset_names: list): + self.datasets = datasets + self.dataset_names = dataset_names + self.metadata = metadata + self.pm_creator = ProcessingModule( 'behavior', 'Contains all behavior-related data') - self.fl_position_manager = FlPositionManager(datasets, metadata, dataset_names, process_timestamps, - convert_timestamps=convert_timestamps) - self.position_creator = PositionCreator() @beartype def make(self, nwb_content: NWBFile): - logger.info('Position: Building') - fl_positions = self.fl_position_manager.get_fl_positions() - logger.info('Position: Creating') - position = self.position_creator.create_all(fl_positions) - logger.info('Position: Injecting into ProcessingModule') + position = Position(name='position') + cameras_ids = get_cameras_ids(self.dataset_names, self.metadata) + meters_per_pixels = get_meters_per_pixels(cameras_ids, self.metadata) + pos_online_paths = [] + for dataset in self.datasets: + for pos_file in dataset.get_all_data_from_dataset('pos'): + if pos_file.endswith('.pos_online.dat'): + pos_online_paths.append( + os.path.join(dataset.get_data_path_from_dataset('pos'), + pos_file)) + first_timestamps = [] + for series_id, (conversion, pos_online_path) in enumerate( + zip(meters_per_pixels, pos_online_paths)): + position_df = self.get_position_with_corrected_timestamps( + pos_online_path) + position.create_spatial_series( + name=f'series_{series_id}', + description=', '.join(position_df.columns.tolist()), + data=np.asarray(position_df), + conversion=conversion, + reference_frame='Upper left corner of video frame', + timestamps=np.asarray(position_df.index), + ) + first_timestamps.append(position_df.index[0]) + + # check if timestamps are in order + first_timestamps = np.asarray(first_timestamps) + assert np.all(first_timestamps[:-1] >= first_timestamps[1:]) + + logger.info('Position: Injecting into Processing Module') nwb_content.processing['behavior'].add(position) + + @staticmethod + def get_position_with_corrected_timestamps(pos_online_path): + logger.info(os.path.split(pos_online_path)[-1]) + pos_online = pd.DataFrame( + readTrodesExtractedDataFile(pos_online_path)['data'] + ).set_index('time') + + camera_hwsync = get_camera_hwsync(pos_online_path) + + if pos_online.shape[0] < camera_hwsync.shape[0]: + diff = camera_hwsync.shape[0] - pos_online.shape[0] + camera_hwsync = camera_hwsync.iloc[diff:] + + frame_count = np.asarray(camera_hwsync.HWframeCount) + # On AVT cameras, HWFrame counts wraps to 0 above this value. + AVT_camHWframeCount_wrapval = 65535 + frame_count = np.unwrap( + frame_count, period=AVT_camHWframeCount_wrapval) + + continuous_time = get_continuous_time(pos_online_path) + dio_camera_ticks = find_camera_dio_channel( + pos_online_path, pos_online) + dio_systime = np.asarray(continuous_time.loc[dio_camera_ticks]) + + pause_mid_time = find_acquisition_timing_pause(dio_systime) + + ptp_systime = np.asarray(camera_hwsync.HWTimestamp) + + frame_rate_from_dio = get_framerate( + dio_systime[dio_systime > pause_mid_time]) + logger.info('Camera frame rate estimated from DIO camera ticks:' + f' {frame_rate_from_dio:0.1f} cm/s') + + ptp_enabled = detect_ptp(continuous_time, ptp_systime) + + if ptp_enabled: + logger.info('PTP detected') + (non_repeat_timestamp_labels, + non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( + camera_hwsync.index[ptp_systime > pause_mid_time], + frame_count[ptp_systime > pause_mid_time]) + frame_rate_from_ptp = get_framerate( + ptp_systime[ptp_systime > pause_mid_time]) + logger.info('Camera frame rate estimated from ptp:' + f' {frame_rate_from_ptp:0.1f} cm/s') + ptp_timestamps = pd.Index( + ptp_systime[ptp_systime > pause_mid_time] / + NANOSECONDS_PER_SECOND, + name='time') + pos_online = ( + pos_online + .iloc[ptp_systime > pause_mid_time] + .set_index(ptp_timestamps)) + + return pos_online + else: + logger.info('PTP not detected') + camera_systime, is_valid_camera_time = estimate_camera_time_from_mcu_time( + camera_hwsync, continuous_time) + + (dio_systime, frame_count, + is_valid_camera_time, camera_systime) = remove_acquisition_timing_pause_non_ptp( + dio_systime, frame_count, camera_systime, is_valid_camera_time, + pause_mid_time) + frame_rate_from_camera_systime = get_framerate(camera_systime) + logger.info('Camera frame rate estimated from mcu timestamps:' + f' {frame_rate_from_camera_systime:0.1f} cm/s') + + (non_repeat_timestamp_labels, + non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( + camera_hwsync.index[is_valid_camera_time], frame_count) + + camera_to_mcu_lag = estimate_camera_to_mcu_lag( + camera_systime, dio_systime, len(non_repeat_timestamp_labels_id)) + + corrected_camera_systime = [] + for id in non_repeat_timestamp_labels_id: + is_chunk = non_repeat_timestamp_labels == id + corrected_camera_systime.append( + correct_timestamps_for_camera_to_mcu_lag( + frame_count[is_chunk], camera_systime[is_chunk], + camera_to_mcu_lag)) + corrected_camera_systime = np.concatenate(corrected_camera_systime) + + valid_camera_ind = np.nonzero(is_valid_camera_time)[0] + valid_camera_ind = valid_camera_ind[non_repeat_timestamp_labels == 0] + is_valid_camera_time[valid_camera_ind] = False + + return (pos_online + .iloc[camera_hwsync.index.isin(pos_online.index) & + is_valid_camera_time] + .set_index(pd.Index(corrected_camera_systime, name='time'))) + + +def find_camera_dio_channel(pos_online_path, pos_online, max_frames_diff=10): + """Find the camera DIO by looping through all the DIOs + and finding the right number of DIO pulses. + + Parameters + ---------- + pos_online_path : str + pos_online : pd.DataFrame, shape (n_camera_frames, 5) + max_frames_diff : int, optional + maximum difference between camera frames and dio pulses + + Returns + ------- + camera_dio_times : pd.Series, shape (n_dio_pulse_state_changes,) + Trodes time of dio ticks + + """ + head, tail = os.path.split(pos_online_path) + dio_paths = glob.glob( + os.path.join( + os.path.split(head)[0], + tail.split('.')[0] + '.DIO', + tail.split('.')[0] + '*.dat')) + + n_ticks = np.asarray( + [pd.DataFrame(readTrodesExtractedDataFile(dio_file)['data']).state.sum() + for dio_file in dio_paths]) + + n_camera_frames = pos_online.shape[0] + + position_ticks_file_ind = np.argmin(np.abs(n_ticks - n_camera_frames)) + + camera_ticks_dio = pd.DataFrame(readTrodesExtractedDataFile( + dio_paths[position_ticks_file_ind])['data']) + + return camera_ticks_dio.loc[camera_ticks_dio.state == 1].time + + +def get_camera_hwsync(pos_online_path): + """Get video PTP timestamps if they exist. + + + Parameters + ---------- + pos_online_path : str + + Returns + ------- + camera_hwsync : pd.DataFrame, shape (n_camera_frames, 2) + PosTimestamp: unadjusted postimestamps. UINT32 + HWframeCount: integer count of frames acquired by camera + (rolls over at 65535; can be used to detect dropped frames). UINT32 + HWTimestamp: POSIX time in nanoseconds, synchronized to PC sysclock via PTP. UINT64. + + """ + camera_hwsync = readTrodesExtractedDataFile( + pos_online_path.replace( + '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) + return (pd.DataFrame(camera_hwsync['data']) + .set_index('PosTimestamp')) + + +def get_continuous_time(pos_online_path): + """Neural timestamps. + + Parameters + ---------- + pos_online_path : str + + Returns + ------- + continuous_times : pd.DataFrame + trodestime uint32 + adjusted_systime int64 + + """ + head, tail = os.path.split(pos_online_path) + continuous_time_path = os.path.join( + os.path.split(head)[0], + tail.split('.')[0] + '.time', + tail.split('.')[0] + '.continuoustime.dat') + cont_time = readTrodesExtractedDataFile(continuous_time_path) + + return (pd.DataFrame(cont_time['data']) + .set_index('trodestime') + .adjusted_systime) + + +def get_framerate(timestamps): + """Frames per second""" + timestamps = np.asarray(timestamps) + return NANOSECONDS_PER_SECOND / np.median(np.diff(timestamps)) + + +def find_acquisition_timing_pause( + timestamps, min_duration=0.4, max_duration=1.0, n_search=100): + """Landmark timing 'gap' (0.5 s pause in video stream) parameters + + Parameters + ---------- + timestamps : int64 + min_duration : minimum duratino of gap (in seconds) + max_duration : maximum duratino of gap (in seconds) + n_search : search only the first `n_search` entries + + Returns + ------- + pause_mid_time + Midpoint time of timing pause + + """ + timestamps = np.asarray(timestamps) + timestamp_difference = np.diff( + timestamps[:n_search] / NANOSECONDS_PER_SECOND) + is_valid_gap = (timestamp_difference > min_duration) & ( + timestamp_difference < max_duration) + pause_start_ind = np.nonzero(is_valid_gap)[0][0] + pause_end_ind = pause_start_ind + 1 + pause_mid_time = ( + timestamps[pause_start_ind] + + (timestamps[pause_end_ind] - + timestamps[pause_start_ind]) + // 2) + + return pause_mid_time + + +def find_large_frame_jumps(frame_count, min_frame_jump=15): + """Want to avoid regressing over large frame count skips""" + frame_count = np.asarray(frame_count) + + is_large_frame_jump = np.insert( + np.diff(frame_count) > min_frame_jump, 0, False) + + logger.info(f'big frame jumps: {np.nonzero(is_large_frame_jump)[0]}') + + return is_large_frame_jump + + +def detect_trodes_time_repeats_or_frame_jumps(trodes_time, frame_count): + """If a trodes time index repeats, then the Trodes clock has frozen + due to headstage disconnects.""" + trodes_time = np.asarray(trodes_time) + is_repeat_timestamp = np.insert( + trodes_time[:-1] >= trodes_time[1:], 0, False) + logger.info(f'repeat timestamps ind: {np.nonzero(is_repeat_timestamp)[0]}') + + is_large_frame_jump = find_large_frame_jumps(frame_count) + is_repeat_timestamp = is_repeat_timestamp | is_large_frame_jump + + repeat_timestamp_labels = label(is_repeat_timestamp)[0] + repeat_timestamp_labels_id, repeat_timestamp_label_counts = np.unique( + repeat_timestamp_labels, return_counts=True) + is_repeat = (repeat_timestamp_labels_id != 0) & ( + repeat_timestamp_label_counts > 2) + repeat_timestamp_labels_id = repeat_timestamp_labels_id[is_repeat] + repeat_timestamp_label_counts = repeat_timestamp_label_counts[is_repeat] + is_repeat_timestamp[~np.isin( + repeat_timestamp_labels, repeat_timestamp_labels_id)] = False + + non_repeat_timestamp_labels = label(~is_repeat_timestamp)[0] + non_repeat_timestamp_labels_id = np.unique(non_repeat_timestamp_labels) + non_repeat_timestamp_labels_id = non_repeat_timestamp_labels_id[ + non_repeat_timestamp_labels_id != 0] + + return (non_repeat_timestamp_labels, + non_repeat_timestamp_labels_id) + + +def detect_ptp(continuous_time, ptp_time): + """Determine if PTP was used by finding the common + interval between the neural and camera timestamps. + + A better way to do this would be to detect it in + the header of the .rec file""" + continuous_time = np.asarray(continuous_time) + ptp_time = np.asarray(ptp_time) + common_interval_duration = ( + min(continuous_time[-1], ptp_time[-1]) - + max(continuous_time[0], ptp_time[0])) + + return common_interval_duration > 0.0 + + +def estimate_camera_time_from_mcu_time(camera_hwsync, continuous_time): + """ + + Parameters + ---------- + camera_hwsync : pd.DataFrame + continuous_time : pd.DataFrame + + Returns + ------- + camera_systime : np.ndarray, shape (n_frames_within_neural_time,) + is_valid_camera_time : np.ndarray, shape (n_frames,) + + """ + is_valid_camera_time = ( + (camera_hwsync.index >= continuous_time.index.min()) & + (camera_hwsync.index < continuous_time.index.max())) + camera_systime = np.asarray(continuous_time.loc[ + camera_hwsync.index[is_valid_camera_time]]) + + return camera_systime, is_valid_camera_time + + +def estimate_camera_to_mcu_lag(camera_systime, dio_systime, n_breaks): + if n_breaks == 0: + dio_systime = dio_systime[:len(camera_systime)] + camera_to_mcu_lag = np.median(camera_systime - dio_systime) + else: + camera_to_mcu_lag = camera_systime[0] - dio_systime[0] + + logger.info('estimated trodes to camera lag: ' + f'{camera_to_mcu_lag / NANOSECONDS_PER_SECOND:0.3f} s') + return camera_to_mcu_lag + + +def remove_acquisition_timing_pause_non_ptp( + dio_systime, frame_count, camera_systime, is_valid_camera_time, + pause_mid_time): + dio_systime = dio_systime[dio_systime > pause_mid_time] + frame_count = frame_count[is_valid_camera_time][camera_systime > pause_mid_time] + is_valid_camera_time[is_valid_camera_time] = camera_systime > pause_mid_time + camera_systime = camera_systime[camera_systime > pause_mid_time] + + return dio_systime, frame_count, is_valid_camera_time, camera_systime + + +def correct_timestamps_for_camera_to_mcu_lag( + frame_count, camera_systime, camera_to_mcu_lag): + + regression_result = linregress( + frame_count, camera_systime - camera_to_mcu_lag) + corrected_camera_systime = (regression_result.intercept + + frame_count * regression_result.slope) + corrected_camera_systime /= NANOSECONDS_PER_SECOND + + return corrected_camera_systime + + +def get_cameras_ids(dataset_names, metadata): + camera_ids = [] + for dataset_name in dataset_names: + # extract the first the first element of the dataset_name as the epoch number + dataset_elements = str(dataset_name).split('_') + epoch_num = str(int(dataset_elements[0])) + try: + camera_ids.append( + next( + task['camera_id'] + for task in metadata['tasks'] + if epoch_num in task['task_epochs'] + )[0] + ) + except: + raise InvalidMetadataException( + 'Invalid camera metadata for datasets') + return camera_ids + + +def get_meters_per_pixels(cameras_ids, metadata): + meters_per_pixels = [] + for camera_id in cameras_ids: + try: + meters_per_pixels.append( + next( + float(camera['meters_per_pixel']) + for camera in metadata['cameras'] + if camera_id == camera['id'] + ) + ) + except: + raise InvalidMetadataException('Invalid camera metadata') + return meters_per_pixels From 9c7922681b7d6238648077e88745fefc5411b400 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 2 Jun 2022 17:29:45 -0700 Subject: [PATCH 164/205] Fix order of assertion test --- .../processing/builder/originators/position_originator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index aef06468d..8124f9891 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -62,7 +62,7 @@ def make(self, nwb_content: NWBFile): # check if timestamps are in order first_timestamps = np.asarray(first_timestamps) - assert np.all(first_timestamps[:-1] >= first_timestamps[1:]) + assert np.all(first_timestamps[:-1] <= first_timestamps[1:]) logger.info('Position: Injecting into Processing Module') nwb_content.processing['behavior'].add(position) From bfa285ac73e3c7e4b82f88f0f7abe3e4ef8710d2 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 2 Jun 2022 17:33:36 -0700 Subject: [PATCH 165/205] Remove equality --- .../processing/builder/originators/position_originator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 8124f9891..090d0788c 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -62,7 +62,7 @@ def make(self, nwb_content: NWBFile): # check if timestamps are in order first_timestamps = np.asarray(first_timestamps) - assert np.all(first_timestamps[:-1] <= first_timestamps[1:]) + assert np.all(first_timestamps[:-1] < first_timestamps[1:]) logger.info('Position: Injecting into Processing Module') nwb_content.processing['behavior'].add(position) From b02f478a834cde2448edb8475ff4da0661f99548 Mon Sep 17 00:00:00 2001 From: Shijie Gu Date: Thu, 2 Jun 2022 21:04:26 -0700 Subject: [PATCH 166/205] Auto stash before merge of "master" and "origin/master" --- .../processing/builder/raw_to_nwb_builder.py | 30 +++++++++++++++++++ .../position/pos_timestamp_manager.py | 2 +- rec_to_nwb/processing/tools/data_scanner.py | 19 ++++++++---- 3 files changed, 44 insertions(+), 7 deletions(-) diff --git a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py index 488acbc8f..f48b34618 100644 --- a/rec_to_nwb/processing/builder/raw_to_nwb_builder.py +++ b/rec_to_nwb/processing/builder/raw_to_nwb_builder.py @@ -3,6 +3,8 @@ import shutil from datetime import datetime +import pynwb +import numpy as np import pytz from rec_to_binaries import extract_trodes_rec_file from rec_to_binaries.trodes_data import get_trodes_version_from_path @@ -216,6 +218,10 @@ def build_nwb(self, run_preprocessing=True, Need the pos data inside the nwb. (default True) """ logger.info(' START '.center(40, "=")) + # check associated files with yaml first, before the time consuming "preprocessing". + #for date in self.dates: + # nwb_builder = self.get_nwb_builder(date) + if run_preprocessing: self.__preprocess_data() @@ -224,6 +230,7 @@ def build_nwb(self, run_preprocessing=True, process_mda_invalid_time=process_mda_invalid_time, process_pos_valid_time=process_pos_valid_time, process_pos_invalid_time=process_pos_invalid_time) + logger.info('Done...\n') def __build_nwb_file(self, @@ -250,6 +257,29 @@ def __build_nwb_file(self, # process_pos_invalid_time=process_pos_invalid_time # ) + def basic_test(self): + nwb_file_name = os.path.join(self.output_path,self.animal_name+self.dates[0] + '.nwb') + + io = pynwb.NWBHDF5IO(nwb_file_name,'r') + nwbf = io.read() + + epochs = nwbf.epochs.to_dataframe() + + rawdata = nwbf.get_acquisition() + timestamps=np.asarray(rawdata.timestamps) + + # timestamps and neural data should be of same length in time + assert rawdata.data.shape[0]==timestamps.shape[0],'timestamps and neural data are of different lengths.' + logger.info('Timestamps and neural data are of same length in time.\n') + + # timestamps should be scrictly increasing + assert np.all(np.diff(timestamps) > 0),'timestamps are not strictly increasing. Epochs may be concatenated out of order' + logger.info('Timestamps are scrictly increasing. \n') + + # position time should start later than/equal to recording; end earlier than/equal recording + assert epochs['start_time'][0]>=timestamps[0] + assert np.array(epochs['stop_time'])[-1]<=timestamps[-1] + def get_nwb_builder(self, date): if self.is_old_dataset: old_dataset_kwargs = dict( diff --git a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py index da7795a43..e58f8a203 100644 --- a/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py +++ b/rec_to_nwb/processing/nwb/components/position/pos_timestamp_manager.py @@ -32,7 +32,7 @@ def _get_timestamps(self, dataset_id): pos_online = readTrodesExtractedDataFile( self.directories[dataset_id][0]) position = pd.DataFrame(pos_online['data']) - return position.time.unique().astype(int) + return position.time.unique().astype('int64') def retrieve_real_timestamps(self, dataset_id): """Gets the corresponding Trodes timestamps from the online position diff --git a/rec_to_nwb/processing/tools/data_scanner.py b/rec_to_nwb/processing/tools/data_scanner.py index 9468ef871..9eccde4bd 100644 --- a/rec_to_nwb/processing/tools/data_scanner.py +++ b/rec_to_nwb/processing/tools/data_scanner.py @@ -22,18 +22,25 @@ def __init__(self, data_path: str, animal_name: str, nwb_metadata: MetadataManag @beartype def get_all_epochs(self, date: str) -> list: - all_datasets = [] + all_datasets = {} directories = os.listdir( os.path.join(self.data_path, self.animal_name, 'preprocessing', date)) FileSorter.sort_filenames(directories) for directory in directories: if directory.startswith(date): - dataset_name = (directory.split( - '_')[2] + '_' + directory.split('_')[3]).split('.')[0] - if dataset_name not in all_datasets: - all_datasets.append(dataset_name) - return all_datasets + epoch_num=directory.split('_')[2] + epoch_tag=directory.split('_')[3] + dataset_name = (epoch_num + '_' + epoch_tag).split('.')[0] + if epoch_num in all_datasets: + # check if the current epoch_tag is consistent + assert all_datasets[epoch_num]==dataset_name,"epoch names for epoch "+epoch_num+" are not consistent across files" + else: + all_datasets[epoch_num]=dataset_name + + all_datasets_names=[all_datasets[e] for e in sorted(all_datasets.keys())] + + return all_datasets_names @beartype def get_all_data_from_dataset(self, date: str) -> list: From 5b81078cdd80a8200a765ea6f0c245d279964673 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 3 Jun 2022 10:30:51 -0700 Subject: [PATCH 167/205] Handle case where there are no corresponding trodes time stamps even within the bounds of the neural time --- .../processing/builder/originators/position_originator.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 090d0788c..9f11235ba 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -359,9 +359,7 @@ def estimate_camera_time_from_mcu_time(camera_hwsync, continuous_time): is_valid_camera_time : np.ndarray, shape (n_frames,) """ - is_valid_camera_time = ( - (camera_hwsync.index >= continuous_time.index.min()) & - (camera_hwsync.index < continuous_time.index.max())) + is_valid_camera_time = camera_hwsync.index.isin(continuous_time.index) camera_systime = np.asarray(continuous_time.loc[ camera_hwsync.index[is_valid_camera_time]]) From a65ad84a8e798653570e0de1c90588ecd3a9b13d Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 21 Jun 2022 12:03:10 -0700 Subject: [PATCH 168/205] Revert "Merge remote-tracking branch 'origin/master'" This reverts commit 95394a3ca200bbe819c89b5da1528fbc4aa66f6f, reversing changes made to b02f478a834cde2448edb8475ff4da0661f99548. --- .../processing/builder/originators/position_originator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 9f11235ba..090d0788c 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -359,7 +359,9 @@ def estimate_camera_time_from_mcu_time(camera_hwsync, continuous_time): is_valid_camera_time : np.ndarray, shape (n_frames,) """ - is_valid_camera_time = camera_hwsync.index.isin(continuous_time.index) + is_valid_camera_time = ( + (camera_hwsync.index >= continuous_time.index.min()) & + (camera_hwsync.index < continuous_time.index.max())) camera_systime = np.asarray(continuous_time.loc[ camera_hwsync.index[is_valid_camera_time]]) From 097033dfa1c6e3f12c9a4a63861888860e3bf420 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 22 Jun 2022 17:13:34 -0700 Subject: [PATCH 169/205] Squashed commit of the following: commit 905ed0ba9edd0c8aa28258593b8dafa911d141cf Author: Eric Denovellis Date: Wed Jun 22 17:12:29 2022 -0700 Cleanup of variable names and formatting commit 3710ce6c016aef8a561f821ae81c7a81a6622432 Author: Eric Denovellis Date: Wed Jun 22 15:52:15 2022 -0700 Don't set tolerance on difference commit 3599a47e9cd07fd881113fa99dfe8d2ee5e63453 Author: Eric Denovellis Date: Wed Jun 22 15:22:53 2022 -0700 Compare minimum commit c75c2cd03ef152628bf07873dc2821b39696c447 Author: Eric Denovellis Date: Wed Jun 22 15:20:34 2022 -0700 Fix column name commit 307ea443c5e054a58dcbfbbba4b91e7dbe64e17f Author: Eric Denovellis Date: Wed Jun 22 15:19:29 2022 -0700 Use video frames to match to dio camera ticks, not position tracking commit aa926c865d777ea297a50bb9d71e6c583d945371 Author: Eric Denovellis Date: Wed Jun 22 14:29:03 2022 -0700 Minor formatting commit 9fdb7ca8d06ed0409865b444128c238073726fa3 Author: Eric Denovellis Date: Wed Jun 22 14:28:11 2022 -0700 Make variable names more accurate and fix correspondence between video and online tracking commit 624fd1a5fb74f9aa6dfb4bd5e63438bb8adfb179 Author: Eric Denovellis Date: Tue Jun 21 14:10:25 2022 -0700 Remove buggy comparison and add documentation --- .../originators/position_originator.py | 130 +++++++++--------- rec_to_nwb/processing/tools/data_scanner.py | 25 ++-- 2 files changed, 78 insertions(+), 77 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 090d0788c..bedf4f758 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -38,18 +38,18 @@ def make(self, nwb_content: NWBFile): position = Position(name='position') cameras_ids = get_cameras_ids(self.dataset_names, self.metadata) meters_per_pixels = get_meters_per_pixels(cameras_ids, self.metadata) - pos_online_paths = [] + position_tracking_paths = [] for dataset in self.datasets: for pos_file in dataset.get_all_data_from_dataset('pos'): if pos_file.endswith('.pos_online.dat'): - pos_online_paths.append( + position_tracking_paths.append( os.path.join(dataset.get_data_path_from_dataset('pos'), pos_file)) first_timestamps = [] - for series_id, (conversion, pos_online_path) in enumerate( - zip(meters_per_pixels, pos_online_paths)): + for series_id, (conversion, position_tracking_path) in enumerate( + zip(meters_per_pixels, position_tracking_paths)): position_df = self.get_position_with_corrected_timestamps( - pos_online_path) + position_tracking_path) position.create_spatial_series( name=f'series_{series_id}', description=', '.join(position_df.columns.tolist()), @@ -68,64 +68,69 @@ def make(self, nwb_content: NWBFile): nwb_content.processing['behavior'].add(position) @staticmethod - def get_position_with_corrected_timestamps(pos_online_path): - logger.info(os.path.split(pos_online_path)[-1]) - pos_online = pd.DataFrame( - readTrodesExtractedDataFile(pos_online_path)['data'] - ).set_index('time') + def get_position_with_corrected_timestamps(position_tracking_path): + logger.info(os.path.split(position_tracking_path)[-1]) - camera_hwsync = get_camera_hwsync(pos_online_path) + position_tracking = pd.DataFrame( + readTrodesExtractedDataFile(position_tracking_path)['data'] + ).set_index('time') - if pos_online.shape[0] < camera_hwsync.shape[0]: - diff = camera_hwsync.shape[0] - pos_online.shape[0] - camera_hwsync = camera_hwsync.iloc[diff:] + video_info = get_video_info(position_tracking_path) - frame_count = np.asarray(camera_hwsync.HWframeCount) # On AVT cameras, HWFrame counts wraps to 0 above this value. AVT_camHWframeCount_wrapval = 65535 - frame_count = np.unwrap( - frame_count, period=AVT_camHWframeCount_wrapval) + video_info['HWframeCount'] = np.unwrap( + video_info['HWframeCount'], period=AVT_camHWframeCount_wrapval) - continuous_time = get_continuous_time(pos_online_path) dio_camera_ticks = find_camera_dio_channel( - pos_online_path, pos_online) - dio_systime = np.asarray(continuous_time.loc[dio_camera_ticks]) + position_tracking_path, video_info) + mcu_neural_timestamps = get_mcu_neural_timestamps( + position_tracking_path) + dio_systime = np.asarray( + mcu_neural_timestamps.loc[dio_camera_ticks]) pause_mid_time = find_acquisition_timing_pause(dio_systime) - - ptp_systime = np.asarray(camera_hwsync.HWTimestamp) - frame_rate_from_dio = get_framerate( dio_systime[dio_systime > pause_mid_time]) logger.info('Camera frame rate estimated from DIO camera ticks:' f' {frame_rate_from_dio:0.1f} cm/s') - ptp_enabled = detect_ptp(continuous_time, ptp_systime) + # Match the camera frames to the position tracking + # Number of video frames can be different from online tracking because + # online tracking can be started or stopped before video is stopped. + # Additionally, for offline tracking, frames can be skipped if the + # frame is labeled as bad. + video_info = video_info.loc[position_tracking.index.unique()] + frame_count = np.asarray(video_info.HWframeCount) + ptp_systime = np.asarray(video_info.HWTimestamp) + + ptp_enabled = detect_ptp(mcu_neural_timestamps, ptp_systime) if ptp_enabled: logger.info('PTP detected') (non_repeat_timestamp_labels, non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( - camera_hwsync.index[ptp_systime > pause_mid_time], + video_info.index[ptp_systime > pause_mid_time], frame_count[ptp_systime > pause_mid_time]) frame_rate_from_ptp = get_framerate( ptp_systime[ptp_systime > pause_mid_time]) logger.info('Camera frame rate estimated from ptp:' f' {frame_rate_from_ptp:0.1f} cm/s') + # Convert from integer nanoseconds to float seconds ptp_timestamps = pd.Index( ptp_systime[ptp_systime > pause_mid_time] / NANOSECONDS_PER_SECOND, name='time') - pos_online = ( - pos_online + position_tracking = ( + position_tracking .iloc[ptp_systime > pause_mid_time] .set_index(ptp_timestamps)) - return pos_online + return position_tracking else: logger.info('PTP not detected') camera_systime, is_valid_camera_time = estimate_camera_time_from_mcu_time( - camera_hwsync, continuous_time) + video_info, mcu_neural_timestamps) (dio_systime, frame_count, is_valid_camera_time, camera_systime) = remove_acquisition_timing_pause_non_ptp( @@ -137,7 +142,7 @@ def get_position_with_corrected_timestamps(pos_online_path): (non_repeat_timestamp_labels, non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( - camera_hwsync.index[is_valid_camera_time], frame_count) + video_info.index[is_valid_camera_time], frame_count) camera_to_mcu_lag = estimate_camera_to_mcu_lag( camera_systime, dio_systime, len(non_repeat_timestamp_labels_id)) @@ -155,22 +160,19 @@ def get_position_with_corrected_timestamps(pos_online_path): valid_camera_ind = valid_camera_ind[non_repeat_timestamp_labels == 0] is_valid_camera_time[valid_camera_ind] = False - return (pos_online - .iloc[camera_hwsync.index.isin(pos_online.index) & - is_valid_camera_time] + return (position_tracking + .iloc[is_valid_camera_time] .set_index(pd.Index(corrected_camera_systime, name='time'))) -def find_camera_dio_channel(pos_online_path, pos_online, max_frames_diff=10): +def find_camera_dio_channel(position_tracking_path, video_info): """Find the camera DIO by looping through all the DIOs and finding the right number of DIO pulses. Parameters ---------- - pos_online_path : str - pos_online : pd.DataFrame, shape (n_camera_frames, 5) - max_frames_diff : int, optional - maximum difference between camera frames and dio pulses + position_tracking_path : str + position_tracking : pd.DataFrame, shape (n_camera_frames, 5) Returns ------- @@ -178,7 +180,7 @@ def find_camera_dio_channel(pos_online_path, pos_online, max_frames_diff=10): Trodes time of dio ticks """ - head, tail = os.path.split(pos_online_path) + head, tail = os.path.split(position_tracking_path) dio_paths = glob.glob( os.path.join( os.path.split(head)[0], @@ -189,60 +191,58 @@ def find_camera_dio_channel(pos_online_path, pos_online, max_frames_diff=10): [pd.DataFrame(readTrodesExtractedDataFile(dio_file)['data']).state.sum() for dio_file in dio_paths]) - n_camera_frames = pos_online.shape[0] - + n_camera_frames = video_info.shape[0] position_ticks_file_ind = np.argmin(np.abs(n_ticks - n_camera_frames)) - camera_ticks_dio = pd.DataFrame(readTrodesExtractedDataFile( dio_paths[position_ticks_file_ind])['data']) return camera_ticks_dio.loc[camera_ticks_dio.state == 1].time -def get_camera_hwsync(pos_online_path): +def get_video_info(position_tracking_path): """Get video PTP timestamps if they exist. Parameters ---------- - pos_online_path : str + position_tracking_path : str Returns ------- - camera_hwsync : pd.DataFrame, shape (n_camera_frames, 2) + video_info : pd.DataFrame, shape (n_camera_frames, 2) PosTimestamp: unadjusted postimestamps. UINT32 HWframeCount: integer count of frames acquired by camera (rolls over at 65535; can be used to detect dropped frames). UINT32 HWTimestamp: POSIX time in nanoseconds, synchronized to PC sysclock via PTP. UINT64. """ - camera_hwsync = readTrodesExtractedDataFile( - pos_online_path.replace( + video_info = readTrodesExtractedDataFile( + position_tracking_path.replace( '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) - return (pd.DataFrame(camera_hwsync['data']) + return (pd.DataFrame(video_info['data']) .set_index('PosTimestamp')) -def get_continuous_time(pos_online_path): +def get_mcu_neural_timestamps(position_tracking_path): """Neural timestamps. Parameters ---------- - pos_online_path : str + position_tracking_path : str Returns ------- - continuous_times : pd.DataFrame + mcu_neural_timestampss : pd.DataFrame trodestime uint32 adjusted_systime int64 """ - head, tail = os.path.split(pos_online_path) - continuous_time_path = os.path.join( + head, tail = os.path.split(position_tracking_path) + mcu_neural_timestamps_path = os.path.join( os.path.split(head)[0], tail.split('.')[0] + '.time', tail.split('.')[0] + '.continuoustime.dat') - cont_time = readTrodesExtractedDataFile(continuous_time_path) + cont_time = readTrodesExtractedDataFile(mcu_neural_timestamps_path) return (pd.DataFrame(cont_time['data']) .set_index('trodestime') @@ -330,28 +330,28 @@ def detect_trodes_time_repeats_or_frame_jumps(trodes_time, frame_count): non_repeat_timestamp_labels_id) -def detect_ptp(continuous_time, ptp_time): +def detect_ptp(mcu_neural_timestamps, ptp_time): """Determine if PTP was used by finding the common interval between the neural and camera timestamps. A better way to do this would be to detect it in the header of the .rec file""" - continuous_time = np.asarray(continuous_time) + mcu_neural_timestamps = np.asarray(mcu_neural_timestamps) ptp_time = np.asarray(ptp_time) common_interval_duration = ( - min(continuous_time[-1], ptp_time[-1]) - - max(continuous_time[0], ptp_time[0])) + min(mcu_neural_timestamps[-1], ptp_time[-1]) - + max(mcu_neural_timestamps[0], ptp_time[0])) return common_interval_duration > 0.0 -def estimate_camera_time_from_mcu_time(camera_hwsync, continuous_time): +def estimate_camera_time_from_mcu_time(video_info, mcu_neural_timestamps): """ Parameters ---------- - camera_hwsync : pd.DataFrame - continuous_time : pd.DataFrame + video_info : pd.DataFrame + mcu_neural_timestamps : pd.DataFrame Returns ------- @@ -360,10 +360,10 @@ def estimate_camera_time_from_mcu_time(camera_hwsync, continuous_time): """ is_valid_camera_time = ( - (camera_hwsync.index >= continuous_time.index.min()) & - (camera_hwsync.index < continuous_time.index.max())) - camera_systime = np.asarray(continuous_time.loc[ - camera_hwsync.index[is_valid_camera_time]]) + (video_info.index >= mcu_neural_timestamps.index.min()) & + (video_info.index < mcu_neural_timestamps.index.max())) + camera_systime = np.asarray(mcu_neural_timestamps.loc[ + video_info.index[is_valid_camera_time]]) return camera_systime, is_valid_camera_time diff --git a/rec_to_nwb/processing/tools/data_scanner.py b/rec_to_nwb/processing/tools/data_scanner.py index 9eccde4bd..d63a4870f 100644 --- a/rec_to_nwb/processing/tools/data_scanner.py +++ b/rec_to_nwb/processing/tools/data_scanner.py @@ -22,25 +22,26 @@ def __init__(self, data_path: str, animal_name: str, nwb_metadata: MetadataManag @beartype def get_all_epochs(self, date: str) -> list: - all_datasets = {} + epoch_number_to_epoch = {} directories = os.listdir( - os.path.join(self.data_path, self.animal_name, 'preprocessing', - date)) + os.path.join( + self.data_path, self.animal_name, 'preprocessing', date)) FileSorter.sort_filenames(directories) for directory in directories: if directory.startswith(date): - epoch_num=directory.split('_')[2] - epoch_tag=directory.split('_')[3] - dataset_name = (epoch_num + '_' + epoch_tag).split('.')[0] - if epoch_num in all_datasets: + epoch_number = directory.split('_')[2] + epoch_tag = directory.split('_')[3].split('.')[0] + epoch = f'{epoch_number}_{epoch_tag}' + + if epoch_number in epoch_number_to_epoch: # check if the current epoch_tag is consistent - assert all_datasets[epoch_num]==dataset_name,"epoch names for epoch "+epoch_num+" are not consistent across files" + warning = f'epoch {epoch_number} is not consistent across files' + assert epoch_number_to_epoch[epoch_number] == epoch, warning else: - all_datasets[epoch_num]=dataset_name - - all_datasets_names=[all_datasets[e] for e in sorted(all_datasets.keys())] + epoch_number_to_epoch[epoch_number] = epoch - return all_datasets_names + return [epoch_number_to_epoch[epoch_number] + for epoch_number in sorted(epoch_number_to_epoch)] @beartype def get_all_data_from_dataset(self, date: str) -> list: From b99ea0ec9c60e47322b11aacd063e854929da10f Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 22 Jun 2022 17:56:41 -0700 Subject: [PATCH 170/205] Add try statement --- .../originators/position_originator.py | 62 ++++++++++--------- 1 file changed, 33 insertions(+), 29 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index bedf4f758..0152650fa 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -35,37 +35,41 @@ def __init__(self, datasets: list, metadata: dict, dataset_names: list): @beartype def make(self, nwb_content: NWBFile): - position = Position(name='position') - cameras_ids = get_cameras_ids(self.dataset_names, self.metadata) - meters_per_pixels = get_meters_per_pixels(cameras_ids, self.metadata) - position_tracking_paths = [] - for dataset in self.datasets: - for pos_file in dataset.get_all_data_from_dataset('pos'): - if pos_file.endswith('.pos_online.dat'): - position_tracking_paths.append( - os.path.join(dataset.get_data_path_from_dataset('pos'), - pos_file)) - first_timestamps = [] - for series_id, (conversion, position_tracking_path) in enumerate( - zip(meters_per_pixels, position_tracking_paths)): - position_df = self.get_position_with_corrected_timestamps( - position_tracking_path) - position.create_spatial_series( - name=f'series_{series_id}', - description=', '.join(position_df.columns.tolist()), - data=np.asarray(position_df), - conversion=conversion, - reference_frame='Upper left corner of video frame', - timestamps=np.asarray(position_df.index), - ) - first_timestamps.append(position_df.index[0]) + try: + position = Position(name='position') + cameras_ids = get_cameras_ids(self.dataset_names, self.metadata) + meters_per_pixels = get_meters_per_pixels( + cameras_ids, self.metadata) + position_tracking_paths = [] + for dataset in self.datasets: + for pos_file in dataset.get_all_data_from_dataset('pos'): + if pos_file.endswith('.pos_online.dat'): + position_tracking_paths.append( + os.path.join(dataset.get_data_path_from_dataset('pos'), + pos_file)) + first_timestamps = [] + for series_id, (conversion, position_tracking_path) in enumerate( + zip(meters_per_pixels, position_tracking_paths)): + position_df = self.get_position_with_corrected_timestamps( + position_tracking_path) + position.create_spatial_series( + name=f'series_{series_id}', + description=', '.join(position_df.columns.tolist()), + data=np.asarray(position_df), + conversion=conversion, + reference_frame='Upper left corner of video frame', + timestamps=np.asarray(position_df.index), + ) + first_timestamps.append(position_df.index[0]) - # check if timestamps are in order - first_timestamps = np.asarray(first_timestamps) - assert np.all(first_timestamps[:-1] < first_timestamps[1:]) + # check if timestamps are in order + first_timestamps = np.asarray(first_timestamps) + assert np.all(first_timestamps[:-1] < first_timestamps[1:]) - logger.info('Position: Injecting into Processing Module') - nwb_content.processing['behavior'].add(position) + logger.info('Position: Injecting into Processing Module') + nwb_content.processing['behavior'].add(position) + except: + print('Problem adding position data; skipping') @staticmethod def get_position_with_corrected_timestamps(position_tracking_path): From 8eb5d82c53bf2988336a3ea6e065239dea96eeba Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 19 Jul 2022 10:09:50 -0700 Subject: [PATCH 171/205] Handle disconnects --- .../originators/position_originator.py | 98 ++++++++++++------- 1 file changed, 62 insertions(+), 36 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 0152650fa..f258dd59b 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -68,32 +68,60 @@ def make(self, nwb_content: NWBFile): logger.info('Position: Injecting into Processing Module') nwb_content.processing['behavior'].add(position) - except: + except FileNotFoundError: print('Problem adding position data; skipping') @staticmethod def get_position_with_corrected_timestamps(position_tracking_path): logger.info(os.path.split(position_tracking_path)[-1]) + # Get position tracking information position_tracking = pd.DataFrame( readTrodesExtractedDataFile(position_tracking_path)['data'] ).set_index('time') + is_repeat_timestamp = detect_repeat_timestamps(position_tracking.index) + position_tracking = position_tracking.iloc[~is_repeat_timestamp] + # Get video information video_info = get_video_info(position_tracking_path) - # On AVT cameras, HWFrame counts wraps to 0 above this value. AVT_camHWframeCount_wrapval = 65535 video_info['HWframeCount'] = np.unwrap( video_info['HWframeCount'], period=AVT_camHWframeCount_wrapval) - dio_camera_ticks = find_camera_dio_channel( - position_tracking_path, video_info) + # Keep track of video frames + video_info['video_frame_ind'] = np.arange(len(video_info)) + + # Disconnects manifest as repeats in the trodes time index + (non_repeat_timestamp_labels, + non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( + video_info.index, video_info.HWframeCount) + logging.info( + f'non_repeat_timestamp_labels = {non_repeat_timestamp_labels_id}') + video_info['non_repeat_timestamp_labels'] = non_repeat_timestamp_labels + video_info = video_info.loc[video_info.non_repeat_timestamp_labels > 0] + + # Get the timestamps from the neural data mcu_neural_timestamps = get_mcu_neural_timestamps( position_tracking_path) + # Determine whether the precision time protocol is being used + # which gives accurate timestamps associated with each video frame. + ptp_enabled = detect_ptp( + mcu_neural_timestamps, video_info.HWTimestamp) + + # Get the camera time from the DIOs + dio_camera_ticks = find_camera_dio_channel( + position_tracking_path, video_info) + is_valid_tick = np.isin(dio_camera_ticks, mcu_neural_timestamps.index) dio_systime = np.asarray( - mcu_neural_timestamps.loc[dio_camera_ticks]) + mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]]) + + # The DIOs and camera frames are initially unaligned. There is a + # half second pause at the start to allow for alignment. pause_mid_time = find_acquisition_timing_pause(dio_systime) + + # Estimate the frame rate from the DIO camera ticks as a sanity check. frame_rate_from_dio = get_framerate( dio_systime[dio_systime > pause_mid_time]) logger.info('Camera frame rate estimated from DIO camera ticks:' @@ -104,68 +132,63 @@ def get_position_with_corrected_timestamps(position_tracking_path): # online tracking can be started or stopped before video is stopped. # Additionally, for offline tracking, frames can be skipped if the # frame is labeled as bad. - video_info = video_info.loc[position_tracking.index.unique()] - frame_count = np.asarray(video_info.HWframeCount) - ptp_systime = np.asarray(video_info.HWTimestamp) - - ptp_enabled = detect_ptp(mcu_neural_timestamps, ptp_systime) + video_position_info = pd.merge( + video_info, + position_tracking, + right_index=True, left_index=True, how='left') if ptp_enabled: logger.info('PTP detected') - (non_repeat_timestamp_labels, - non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( - video_info.index[ptp_systime > pause_mid_time], - frame_count[ptp_systime > pause_mid_time]) + ptp_systime = np.asarray(video_position_info.HWTimestamp) frame_rate_from_ptp = get_framerate( ptp_systime[ptp_systime > pause_mid_time]) - logger.info('Camera frame rate estimated from ptp:' + logger.info('Camera frame rate estimated from PTP:' f' {frame_rate_from_ptp:0.1f} cm/s') # Convert from integer nanoseconds to float seconds ptp_timestamps = pd.Index( - ptp_systime[ptp_systime > pause_mid_time] / - NANOSECONDS_PER_SECOND, + ptp_systime / NANOSECONDS_PER_SECOND, name='time') position_tracking = ( - position_tracking - .iloc[ptp_systime > pause_mid_time] + video_position_info.drop( + columns=['HWframeCount', 'HWTimestamp']) .set_index(ptp_timestamps)) + # Ignore positions before the timing pause. + is_post_pause = (position_tracking.index > + pause_mid_time / NANOSECONDS_PER_SECOND) + position_tracking = position_tracking.iloc[is_post_pause] + return position_tracking else: logger.info('PTP not detected') + frame_count = np.asarray(video_position_info.HWframeCount) + camera_systime, is_valid_camera_time = estimate_camera_time_from_mcu_time( - video_info, mcu_neural_timestamps) + video_position_info, mcu_neural_timestamps) (dio_systime, frame_count, is_valid_camera_time, camera_systime) = remove_acquisition_timing_pause_non_ptp( dio_systime, frame_count, camera_systime, is_valid_camera_time, pause_mid_time) + video_position_info = video_position_info.iloc[is_valid_camera_time] + frame_rate_from_camera_systime = get_framerate(camera_systime) - logger.info('Camera frame rate estimated from mcu timestamps:' + logger.info('Camera frame rate estimated from MCU timestamps:' f' {frame_rate_from_camera_systime:0.1f} cm/s') - (non_repeat_timestamp_labels, - non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( - video_info.index[is_valid_camera_time], frame_count) - camera_to_mcu_lag = estimate_camera_to_mcu_lag( camera_systime, dio_systime, len(non_repeat_timestamp_labels_id)) corrected_camera_systime = [] for id in non_repeat_timestamp_labels_id: - is_chunk = non_repeat_timestamp_labels == id + is_chunk = video_position_info.non_repeat_timestamp_labels == id corrected_camera_systime.append( correct_timestamps_for_camera_to_mcu_lag( frame_count[is_chunk], camera_systime[is_chunk], camera_to_mcu_lag)) corrected_camera_systime = np.concatenate(corrected_camera_systime) - valid_camera_ind = np.nonzero(is_valid_camera_time)[0] - valid_camera_ind = valid_camera_ind[non_repeat_timestamp_labels == 0] - is_valid_camera_time[valid_camera_ind] = False - - return (position_tracking - .iloc[is_valid_camera_time] + return (video_position_info .set_index(pd.Index(corrected_camera_systime, name='time'))) @@ -304,12 +327,15 @@ def find_large_frame_jumps(frame_count, min_frame_jump=15): return is_large_frame_jump +def detect_repeat_timestamps(timestamps): + return np.insert(timestamps[:-1] >= timestamps[1:], 0, False) + + def detect_trodes_time_repeats_or_frame_jumps(trodes_time, frame_count): """If a trodes time index repeats, then the Trodes clock has frozen due to headstage disconnects.""" trodes_time = np.asarray(trodes_time) - is_repeat_timestamp = np.insert( - trodes_time[:-1] >= trodes_time[1:], 0, False) + is_repeat_timestamp = detect_repeat_timestamps(trodes_time) logger.info(f'repeat timestamps ind: {np.nonzero(is_repeat_timestamp)[0]}') is_large_frame_jump = find_large_frame_jumps(frame_count) @@ -343,8 +369,8 @@ def detect_ptp(mcu_neural_timestamps, ptp_time): mcu_neural_timestamps = np.asarray(mcu_neural_timestamps) ptp_time = np.asarray(ptp_time) common_interval_duration = ( - min(mcu_neural_timestamps[-1], ptp_time[-1]) - - max(mcu_neural_timestamps[0], ptp_time[0])) + min(np.max(mcu_neural_timestamps), np.max(ptp_time)) - + max(np.min(mcu_neural_timestamps), np.min(ptp_time))) return common_interval_duration > 0.0 From 19b74bc4e1aa80f38dac95cdef23d3ba2820998b Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 2 Aug 2022 16:47:05 -0700 Subject: [PATCH 172/205] This code inserts PTP time and video frame count in position if there is no position tracking --- .../originators/position_originator.py | 119 ++++++++++++++---- 1 file changed, 97 insertions(+), 22 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index f258dd59b..46816105f 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -35,19 +35,27 @@ def __init__(self, datasets: list, metadata: dict, dataset_names: list): @beartype def make(self, nwb_content: NWBFile): - try: - position = Position(name='position') - cameras_ids = get_cameras_ids(self.dataset_names, self.metadata) - meters_per_pixels = get_meters_per_pixels( - cameras_ids, self.metadata) - position_tracking_paths = [] - for dataset in self.datasets: - for pos_file in dataset.get_all_data_from_dataset('pos'): - if pos_file.endswith('.pos_online.dat'): - position_tracking_paths.append( - os.path.join(dataset.get_data_path_from_dataset('pos'), - pos_file)) - first_timestamps = [] + position = Position(name='position') + cameras_ids = get_cameras_ids(self.dataset_names, self.metadata) + meters_per_pixels = get_meters_per_pixels( + cameras_ids, self.metadata) + position_tracking_paths = [] + video_file_paths = [] + for dataset in self.datasets: + for pos_file in dataset.get_all_data_from_dataset('pos'): + if pos_file.endswith('.pos_online.dat'): + position_tracking_paths.append( + os.path.join(dataset.get_data_path_from_dataset('pos'), + pos_file)) + if pos_file.endswith('.pos_cameraHWFrameCount.dat'): + video_file_paths.append( + os.path.join(dataset.get_data_path_from_dataset('pos'), + pos_file)) + + first_timestamps = [] + + if len(meters_per_pixels) == len(position_tracking_paths): + # position tracking exists for series_id, (conversion, position_tracking_path) in enumerate( zip(meters_per_pixels, position_tracking_paths)): position_df = self.get_position_with_corrected_timestamps( @@ -62,14 +70,28 @@ def make(self, nwb_content: NWBFile): ) first_timestamps.append(position_df.index[0]) - # check if timestamps are in order - first_timestamps = np.asarray(first_timestamps) - assert np.all(first_timestamps[:-1] < first_timestamps[1:]) + elif len(meters_per_pixels) == len(video_file_paths): + # no position tracking is available but we have timestamps with PTP + for series_id, (conversion, video_file_path) in enumerate( + zip(meters_per_pixels, video_file_paths)): + video_df = self.get_corrected_timestamps_without_position( + video_file_path) + position.create_spatial_series( + name=f'series_{series_id}', + description=', '.join(video_df.columns.tolist()), + data=np.asarray(video_df), + conversion=conversion, + reference_frame='Upper left corner of video frame', + timestamps=np.asarray(video_df.index), + ) + first_timestamps.append(video_df.index[0]) - logger.info('Position: Injecting into Processing Module') - nwb_content.processing['behavior'].add(position) - except FileNotFoundError: - print('Problem adding position data; skipping') + # check if timestamps are in order + first_timestamps = np.asarray(first_timestamps) + assert np.all(first_timestamps[:-1] < first_timestamps[1:]) + + logger.info('Position: Injecting into Processing Module') + nwb_content.processing['behavior'].add(position) @staticmethod def get_position_with_corrected_timestamps(position_tracking_path): @@ -191,6 +213,57 @@ def get_position_with_corrected_timestamps(position_tracking_path): return (video_position_info .set_index(pd.Index(corrected_camera_systime, name='time'))) + @staticmethod + def get_corrected_timestamps_without_position(hw_frame_count_path): + + video_info = readTrodesExtractedDataFile(hw_frame_count_path) + video_info = (pd.DataFrame(video_info['data']) + .set_index('PosTimestamp')) + # On AVT cameras, HWFrame counts wraps to 0 above this value. + AVT_camHWframeCount_wrapval = 65535 + video_info['HWframeCount'] = np.unwrap( + video_info['HWframeCount'], period=AVT_camHWframeCount_wrapval) + + # Keep track of video frames + video_info['video_frame_ind'] = np.arange(len(video_info)) + + # Get the timestamps from the neural data + mcu_neural_timestamps = get_mcu_neural_timestamps( + hw_frame_count_path) + + # Determine whether the precision time protocol is being used + # which gives accurate timestamps associated with each video frame. + ptp_enabled = detect_ptp( + mcu_neural_timestamps, video_info.HWTimestamp) + + # Get the camera time from the DIOs + dio_camera_ticks = find_camera_dio_channel( + hw_frame_count_path, video_info) + is_valid_tick = np.isin(dio_camera_ticks, mcu_neural_timestamps.index) + dio_systime = np.asarray( + mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]]) + + # The DIOs and camera frames are initially unaligned. There is a + # half second pause at the start to allow for alignment. + pause_mid_time = find_acquisition_timing_pause(dio_systime) + + if ptp_enabled: + ptp_timestamps = pd.Index( + video_info.HWTimestamp / NANOSECONDS_PER_SECOND, + name='time') + video_info = (video_info + .set_index(ptp_timestamps)) + + # Ignore positions before the timing pause. + is_post_pause = (video_info.index > + pause_mid_time / NANOSECONDS_PER_SECOND) + video_info = (video_info + .iloc[is_post_pause] + .drop(columns=['HWframeCount', 'HWTimestamp'])) + return video_info + else: + raise NotImplementedError + def find_camera_dio_channel(position_tracking_path, video_info): """Find the camera DIO by looping through all the DIOs @@ -447,7 +520,8 @@ def get_cameras_ids(dataset_names, metadata): if epoch_num in task['task_epochs'] )[0] ) - except: + except Exception as e: + print(e) raise InvalidMetadataException( 'Invalid camera metadata for datasets') return camera_ids @@ -464,6 +538,7 @@ def get_meters_per_pixels(cameras_ids, metadata): if camera_id == camera['id'] ) ) - except: + except Exception as e: + print(e) raise InvalidMetadataException('Invalid camera metadata') return meters_per_pixels From c80be852f4e03bb6c905fc1cf8d1157bc8342ac0 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 19 Aug 2022 16:05:50 -0700 Subject: [PATCH 173/205] Fix string representation of experimenter name --- .../processing/metadata/corrupted_data_manager.py | 14 ++++++++------ .../processing/metadata/metadata_extractor.py | 10 ++++++---- rec_to_nwb/processing/metadata/metadata_manager.py | 8 +++++++- 3 files changed, 21 insertions(+), 11 deletions(-) diff --git a/rec_to_nwb/processing/metadata/corrupted_data_manager.py b/rec_to_nwb/processing/metadata/corrupted_data_manager.py index b1b092c02..1e07eaba3 100644 --- a/rec_to_nwb/processing/metadata/corrupted_data_manager.py +++ b/rec_to_nwb/processing/metadata/corrupted_data_manager.py @@ -1,6 +1,7 @@ import copy -from rec_to_nwb.processing.exceptions.corrupted_data_exception import CorruptedDataException +from rec_to_nwb.processing.exceptions.corrupted_data_exception import \ + CorruptedDataException from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -51,9 +52,11 @@ def get_valid_map_dict(self) -> dict: def __get_electrodes_valid_map(ntrode_metadata: list) -> list: electrodes_valid_map = [] for ntrode in ntrode_metadata: - bad_channels = [int(bad_channel) for bad_channel in ntrode['bad_channels']] + bad_channels = [int(bad_channel) + for bad_channel in ntrode['bad_channels']] electrodes_valid_map.extend( - [bool(int(channel) not in bad_channels) for channel in ntrode['map']] + [bool(int(channel) not in bad_channels) + for channel in ntrode['map']] ) return electrodes_valid_map @@ -82,6 +85,5 @@ def __validate_data(probes_valid_map): if probe_type: corrupted_data = False if corrupted_data: - raise CorruptedDataException('There is no valid data to create probe') - - + raise CorruptedDataException( + 'There is no valid data to create probe') diff --git a/rec_to_nwb/processing/metadata/metadata_extractor.py b/rec_to_nwb/processing/metadata/metadata_extractor.py index c92c5ff9e..4dcea3b81 100644 --- a/rec_to_nwb/processing/metadata/metadata_extractor.py +++ b/rec_to_nwb/processing/metadata/metadata_extractor.py @@ -1,12 +1,14 @@ -import yaml import json +import yaml + class MetadataExtractor: @staticmethod def extract_metadata(metadata_path): with open(metadata_path, 'r') as stream: - metadata_dict = yaml.safe_load(stream) - metadata = json.loads(json.dumps(metadata_dict), parse_int=str, parse_float=str) - return metadata + return json.loads( + json.dumps(yaml.safe_load(stream)), + parse_int=str, + parse_float=str) diff --git a/rec_to_nwb/processing/metadata/metadata_manager.py b/rec_to_nwb/processing/metadata/metadata_manager.py index 3e95f63f3..760a75756 100644 --- a/rec_to_nwb/processing/metadata/metadata_manager.py +++ b/rec_to_nwb/processing/metadata/metadata_manager.py @@ -43,12 +43,18 @@ def __get_probes(self, probes_paths): return self.fl_probes_extractor.extract_probes_metadata(probes_paths) def __str__(self): + + experimenter_name = self.metadata['experimenter_name'] + if not isinstance(experimenter_name, str): + experimenter_name = ', '.join(experimenter_name) + metadata_info = ( - 'Experimenter: ' + ', '.join(self.metadata['experimenter_name']) + + 'Experimenter: ' + experimenter_name + '\nDescription: ' + self.metadata['experiment_description'] + '\nSession Id: ' + self.metadata['session_id'] + '\nSubject: ' + self.metadata['subject']['description']) probe_types = list(map(lambda probe: probe['probe_type'], self.probes)) probe_types_info = '\n\nAvailable probe types: ' + str(probe_types) + return 'Experiment Info:\n' + metadata_info + probe_types_info From dc2b2ca1ceb31b82083828bc8fc9ccdb8dd3a649 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 19 Aug 2022 16:07:56 -0700 Subject: [PATCH 174/205] Remove unused variable --- rec_to_nwb/processing/metadata/corrupted_data_manager.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/rec_to_nwb/processing/metadata/corrupted_data_manager.py b/rec_to_nwb/processing/metadata/corrupted_data_manager.py index 1e07eaba3..f6f5d3cc6 100644 --- a/rec_to_nwb/processing/metadata/corrupted_data_manager.py +++ b/rec_to_nwb/processing/metadata/corrupted_data_manager.py @@ -1,5 +1,3 @@ -import copy - from rec_to_nwb.processing.exceptions.corrupted_data_exception import \ CorruptedDataException from rec_to_nwb.processing.tools.beartype.beartype import beartype @@ -63,7 +61,6 @@ def __get_electrodes_valid_map(ntrode_metadata: list) -> list: @beartype def __get_electrode_groups_valid_map(self, ntrode_metadata: list, electrodes_valid_map: list) -> set: - tmp_electrodes_valid_map = copy.deepcopy(electrodes_valid_map) return { ntrode['electrode_group_id'] for ntrode in ntrode_metadata } From 2374247b7cef2efc47f74bc5db5ef95b1228b5e6 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 29 Aug 2022 14:28:23 -0700 Subject: [PATCH 175/205] Account for trodes time that exists for the video but not for the mcu timestamps --- .../processing/builder/originators/position_originator.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 46816105f..4832a9da6 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -462,9 +462,8 @@ def estimate_camera_time_from_mcu_time(video_info, mcu_neural_timestamps): is_valid_camera_time : np.ndarray, shape (n_frames,) """ - is_valid_camera_time = ( - (video_info.index >= mcu_neural_timestamps.index.min()) & - (video_info.index < mcu_neural_timestamps.index.max())) + is_valid_camera_time = np.isin( + video_info.index, mcu_neural_timestamps.index) camera_systime = np.asarray(mcu_neural_timestamps.loc[ video_info.index[is_valid_camera_time]]) From bbd00f264b2fd7b9966d19f9ff1d7c52bacaa6af Mon Sep 17 00:00:00 2001 From: MichaelCoulter <37707865+MichaelCoulter@users.noreply.github.com> Date: Fri, 23 Sep 2022 12:13:13 -0700 Subject: [PATCH 176/205] typo in log statement for estimated camera frame rate --- .../processing/builder/originators/position_originator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 4832a9da6..803258a28 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -147,7 +147,7 @@ def get_position_with_corrected_timestamps(position_tracking_path): frame_rate_from_dio = get_framerate( dio_systime[dio_systime > pause_mid_time]) logger.info('Camera frame rate estimated from DIO camera ticks:' - f' {frame_rate_from_dio:0.1f} cm/s') + f' {frame_rate_from_dio:0.1f} frames/s') # Match the camera frames to the position tracking # Number of video frames can be different from online tracking because @@ -165,7 +165,7 @@ def get_position_with_corrected_timestamps(position_tracking_path): frame_rate_from_ptp = get_framerate( ptp_systime[ptp_systime > pause_mid_time]) logger.info('Camera frame rate estimated from PTP:' - f' {frame_rate_from_ptp:0.1f} cm/s') + f' {frame_rate_from_ptp:0.1f} frames/s') # Convert from integer nanoseconds to float seconds ptp_timestamps = pd.Index( ptp_systime / NANOSECONDS_PER_SECOND, @@ -196,7 +196,7 @@ def get_position_with_corrected_timestamps(position_tracking_path): frame_rate_from_camera_systime = get_framerate(camera_systime) logger.info('Camera frame rate estimated from MCU timestamps:' - f' {frame_rate_from_camera_systime:0.1f} cm/s') + f' {frame_rate_from_camera_systime:0.1f} frames/s') camera_to_mcu_lag = estimate_camera_to_mcu_lag( camera_systime, dio_systime, len(non_repeat_timestamp_labels_id)) From 278b42d697c728df72688673bd1be3204f32c3df Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Wed, 19 Oct 2022 10:37:08 -0400 Subject: [PATCH 177/205] Fix for missing online position tracking files Previously it was assumed that there either were position tracking files for all epochs or not. This handles the case where there is online tracking for some epochs but not all. --- .../originators/position_originator.py | 363 +++++++++--------- 1 file changed, 188 insertions(+), 175 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 803258a28..4c283a3f9 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -7,81 +7,74 @@ from pynwb import NWBFile, ProcessingModule from pynwb.behavior import Position from rec_to_binaries.read_binaries import readTrodesExtractedDataFile -from rec_to_nwb.processing.exceptions.invalid_metadata_exception import \ - InvalidMetadataException +from rec_to_nwb.processing.exceptions.invalid_metadata_exception import ( + InvalidMetadataException, +) from rec_to_nwb.processing.tools.beartype.beartype import beartype from scipy.ndimage import label from scipy.stats import linregress path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=os.path.join(str(path), os.pardir, os.pardir, - os.pardir, 'logging.conf'), - disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, os.pardir, "logging.conf"), + disable_existing_loggers=False, +) logger = logging.getLogger(__name__) NANOSECONDS_PER_SECOND = 1e9 class PositionOriginator: - @beartype def __init__(self, datasets: list, metadata: dict, dataset_names: list): self.datasets = datasets self.dataset_names = dataset_names self.metadata = metadata self.pm_creator = ProcessingModule( - 'behavior', 'Contains all behavior-related data') + "behavior", "Contains all behavior-related data" + ) @beartype def make(self, nwb_content: NWBFile): - position = Position(name='position') + position = Position(name="position") + cameras_ids = get_cameras_ids(self.dataset_names, self.metadata) - meters_per_pixels = get_meters_per_pixels( - cameras_ids, self.metadata) - position_tracking_paths = [] - video_file_paths = [] - for dataset in self.datasets: - for pos_file in dataset.get_all_data_from_dataset('pos'): - if pos_file.endswith('.pos_online.dat'): - position_tracking_paths.append( - os.path.join(dataset.get_data_path_from_dataset('pos'), - pos_file)) - if pos_file.endswith('.pos_cameraHWFrameCount.dat'): - video_file_paths.append( - os.path.join(dataset.get_data_path_from_dataset('pos'), - pos_file)) + meters_per_pixels = get_meters_per_pixels(cameras_ids, self.metadata) first_timestamps = [] - if len(meters_per_pixels) == len(position_tracking_paths): - # position tracking exists - for series_id, (conversion, position_tracking_path) in enumerate( - zip(meters_per_pixels, position_tracking_paths)): + for dataset_ind, dataset in enumerate(self.datasets): + pos_path = dataset.data["pos"] + conversion = meters_per_pixels[dataset_ind] + try: + position_tracking_path = glob.glob( + os.path.join(pos_path, "*.pos_online.dat") + ) position_df = self.get_position_with_corrected_timestamps( - position_tracking_path) + position_tracking_path[0] + ) position.create_spatial_series( - name=f'series_{series_id}', - description=', '.join(position_df.columns.tolist()), + name=f"series_{dataset_ind}", + description=", ".join(position_df.columns.tolist()), data=np.asarray(position_df), conversion=conversion, - reference_frame='Upper left corner of video frame', + reference_frame="Upper left corner of video frame", timestamps=np.asarray(position_df.index), ) first_timestamps.append(position_df.index[0]) - - elif len(meters_per_pixels) == len(video_file_paths): - # no position tracking is available but we have timestamps with PTP - for series_id, (conversion, video_file_path) in enumerate( - zip(meters_per_pixels, video_file_paths)): + except IndexError: + video_file_path = glob.glob( + os.path.join(pos_path, "*.pos_cameraHWFrameCount.dat") + ) video_df = self.get_corrected_timestamps_without_position( - video_file_path) + video_file_path[0] + ) position.create_spatial_series( - name=f'series_{series_id}', - description=', '.join(video_df.columns.tolist()), + name=f"series_{dataset_ind}", + description=", ".join(video_df.columns.tolist()), data=np.asarray(video_df), conversion=conversion, - reference_frame='Upper left corner of video frame', + reference_frame="Upper left corner of video frame", timestamps=np.asarray(video_df.index), ) first_timestamps.append(video_df.index[0]) @@ -90,8 +83,8 @@ def make(self, nwb_content: NWBFile): first_timestamps = np.asarray(first_timestamps) assert np.all(first_timestamps[:-1] < first_timestamps[1:]) - logger.info('Position: Injecting into Processing Module') - nwb_content.processing['behavior'].add(position) + logger.info("Position: Injecting into Processing Module") + nwb_content.processing["behavior"].add(position) @staticmethod def get_position_with_corrected_timestamps(position_tracking_path): @@ -99,8 +92,8 @@ def get_position_with_corrected_timestamps(position_tracking_path): # Get position tracking information position_tracking = pd.DataFrame( - readTrodesExtractedDataFile(position_tracking_path)['data'] - ).set_index('time') + readTrodesExtractedDataFile(position_tracking_path)["data"] + ).set_index("time") is_repeat_timestamp = detect_repeat_timestamps(position_tracking.index) position_tracking = position_tracking.iloc[~is_repeat_timestamp] @@ -108,46 +101,48 @@ def get_position_with_corrected_timestamps(position_tracking_path): video_info = get_video_info(position_tracking_path) # On AVT cameras, HWFrame counts wraps to 0 above this value. AVT_camHWframeCount_wrapval = 65535 - video_info['HWframeCount'] = np.unwrap( - video_info['HWframeCount'], period=AVT_camHWframeCount_wrapval) + video_info["HWframeCount"] = np.unwrap( + video_info["HWframeCount"], period=AVT_camHWframeCount_wrapval + ) # Keep track of video frames - video_info['video_frame_ind'] = np.arange(len(video_info)) + video_info["video_frame_ind"] = np.arange(len(video_info)) # Disconnects manifest as repeats in the trodes time index - (non_repeat_timestamp_labels, - non_repeat_timestamp_labels_id) = detect_trodes_time_repeats_or_frame_jumps( - video_info.index, video_info.HWframeCount) - logging.info( - f'non_repeat_timestamp_labels = {non_repeat_timestamp_labels_id}') - video_info['non_repeat_timestamp_labels'] = non_repeat_timestamp_labels + ( + non_repeat_timestamp_labels, + non_repeat_timestamp_labels_id, + ) = detect_trodes_time_repeats_or_frame_jumps( + video_info.index, video_info.HWframeCount + ) + logging.info(f"non_repeat_timestamp_labels = {non_repeat_timestamp_labels_id}") + video_info["non_repeat_timestamp_labels"] = non_repeat_timestamp_labels video_info = video_info.loc[video_info.non_repeat_timestamp_labels > 0] # Get the timestamps from the neural data - mcu_neural_timestamps = get_mcu_neural_timestamps( - position_tracking_path) + mcu_neural_timestamps = get_mcu_neural_timestamps(position_tracking_path) # Determine whether the precision time protocol is being used # which gives accurate timestamps associated with each video frame. - ptp_enabled = detect_ptp( - mcu_neural_timestamps, video_info.HWTimestamp) + ptp_enabled = detect_ptp(mcu_neural_timestamps, video_info.HWTimestamp) # Get the camera time from the DIOs - dio_camera_ticks = find_camera_dio_channel( - position_tracking_path, video_info) + dio_camera_ticks = find_camera_dio_channel(position_tracking_path, video_info) is_valid_tick = np.isin(dio_camera_ticks, mcu_neural_timestamps.index) dio_systime = np.asarray( - mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]]) + mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]] + ) # The DIOs and camera frames are initially unaligned. There is a # half second pause at the start to allow for alignment. pause_mid_time = find_acquisition_timing_pause(dio_systime) # Estimate the frame rate from the DIO camera ticks as a sanity check. - frame_rate_from_dio = get_framerate( - dio_systime[dio_systime > pause_mid_time]) - logger.info('Camera frame rate estimated from DIO camera ticks:' - f' {frame_rate_from_dio:0.1f} frames/s') + frame_rate_from_dio = get_framerate(dio_systime[dio_systime > pause_mid_time]) + logger.info( + "Camera frame rate estimated from DIO camera ticks:" + f" {frame_rate_from_dio:0.1f} frames/s" + ) # Match the camera frames to the position tracking # Number of video frames can be different from online tracking because @@ -155,93 +150,107 @@ def get_position_with_corrected_timestamps(position_tracking_path): # Additionally, for offline tracking, frames can be skipped if the # frame is labeled as bad. video_position_info = pd.merge( - video_info, - position_tracking, - right_index=True, left_index=True, how='left') + video_info, position_tracking, right_index=True, left_index=True, how="left" + ) if ptp_enabled: - logger.info('PTP detected') + logger.info("PTP detected") ptp_systime = np.asarray(video_position_info.HWTimestamp) frame_rate_from_ptp = get_framerate( - ptp_systime[ptp_systime > pause_mid_time]) - logger.info('Camera frame rate estimated from PTP:' - f' {frame_rate_from_ptp:0.1f} frames/s') + ptp_systime[ptp_systime > pause_mid_time] + ) + logger.info( + "Camera frame rate estimated from PTP:" + f" {frame_rate_from_ptp:0.1f} frames/s" + ) # Convert from integer nanoseconds to float seconds - ptp_timestamps = pd.Index( - ptp_systime / NANOSECONDS_PER_SECOND, - name='time') - position_tracking = ( - video_position_info.drop( - columns=['HWframeCount', 'HWTimestamp']) - .set_index(ptp_timestamps)) + ptp_timestamps = pd.Index(ptp_systime / NANOSECONDS_PER_SECOND, name="time") + position_tracking = video_position_info.drop( + columns=["HWframeCount", "HWTimestamp"] + ).set_index(ptp_timestamps) # Ignore positions before the timing pause. - is_post_pause = (position_tracking.index > - pause_mid_time / NANOSECONDS_PER_SECOND) + is_post_pause = ( + position_tracking.index > pause_mid_time / NANOSECONDS_PER_SECOND + ) position_tracking = position_tracking.iloc[is_post_pause] return position_tracking else: - logger.info('PTP not detected') + logger.info("PTP not detected") frame_count = np.asarray(video_position_info.HWframeCount) camera_systime, is_valid_camera_time = estimate_camera_time_from_mcu_time( - video_position_info, mcu_neural_timestamps) + video_position_info, mcu_neural_timestamps + ) - (dio_systime, frame_count, - is_valid_camera_time, camera_systime) = remove_acquisition_timing_pause_non_ptp( - dio_systime, frame_count, camera_systime, is_valid_camera_time, - pause_mid_time) + ( + dio_systime, + frame_count, + is_valid_camera_time, + camera_systime, + ) = remove_acquisition_timing_pause_non_ptp( + dio_systime, + frame_count, + camera_systime, + is_valid_camera_time, + pause_mid_time, + ) video_position_info = video_position_info.iloc[is_valid_camera_time] frame_rate_from_camera_systime = get_framerate(camera_systime) - logger.info('Camera frame rate estimated from MCU timestamps:' - f' {frame_rate_from_camera_systime:0.1f} frames/s') + logger.info( + "Camera frame rate estimated from MCU timestamps:" + f" {frame_rate_from_camera_systime:0.1f} frames/s" + ) camera_to_mcu_lag = estimate_camera_to_mcu_lag( - camera_systime, dio_systime, len(non_repeat_timestamp_labels_id)) + camera_systime, dio_systime, len(non_repeat_timestamp_labels_id) + ) corrected_camera_systime = [] for id in non_repeat_timestamp_labels_id: is_chunk = video_position_info.non_repeat_timestamp_labels == id corrected_camera_systime.append( correct_timestamps_for_camera_to_mcu_lag( - frame_count[is_chunk], camera_systime[is_chunk], - camera_to_mcu_lag)) + frame_count[is_chunk], + camera_systime[is_chunk], + camera_to_mcu_lag, + ) + ) corrected_camera_systime = np.concatenate(corrected_camera_systime) - return (video_position_info - .set_index(pd.Index(corrected_camera_systime, name='time'))) + return video_position_info.set_index( + pd.Index(corrected_camera_systime, name="time") + ) @staticmethod def get_corrected_timestamps_without_position(hw_frame_count_path): video_info = readTrodesExtractedDataFile(hw_frame_count_path) - video_info = (pd.DataFrame(video_info['data']) - .set_index('PosTimestamp')) + video_info = pd.DataFrame(video_info["data"]).set_index("PosTimestamp") # On AVT cameras, HWFrame counts wraps to 0 above this value. AVT_camHWframeCount_wrapval = 65535 - video_info['HWframeCount'] = np.unwrap( - video_info['HWframeCount'], period=AVT_camHWframeCount_wrapval) + video_info["HWframeCount"] = np.unwrap( + video_info["HWframeCount"], period=AVT_camHWframeCount_wrapval + ) # Keep track of video frames - video_info['video_frame_ind'] = np.arange(len(video_info)) + video_info["video_frame_ind"] = np.arange(len(video_info)) # Get the timestamps from the neural data - mcu_neural_timestamps = get_mcu_neural_timestamps( - hw_frame_count_path) + mcu_neural_timestamps = get_mcu_neural_timestamps(hw_frame_count_path) # Determine whether the precision time protocol is being used # which gives accurate timestamps associated with each video frame. - ptp_enabled = detect_ptp( - mcu_neural_timestamps, video_info.HWTimestamp) + ptp_enabled = detect_ptp(mcu_neural_timestamps, video_info.HWTimestamp) # Get the camera time from the DIOs - dio_camera_ticks = find_camera_dio_channel( - hw_frame_count_path, video_info) + dio_camera_ticks = find_camera_dio_channel(hw_frame_count_path, video_info) is_valid_tick = np.isin(dio_camera_ticks, mcu_neural_timestamps.index) dio_systime = np.asarray( - mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]]) + mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]] + ) # The DIOs and camera frames are initially unaligned. There is a # half second pause at the start to allow for alignment. @@ -249,17 +258,15 @@ def get_corrected_timestamps_without_position(hw_frame_count_path): if ptp_enabled: ptp_timestamps = pd.Index( - video_info.HWTimestamp / NANOSECONDS_PER_SECOND, - name='time') - video_info = (video_info - .set_index(ptp_timestamps)) + video_info.HWTimestamp / NANOSECONDS_PER_SECOND, name="time" + ) + video_info = video_info.set_index(ptp_timestamps) # Ignore positions before the timing pause. - is_post_pause = (video_info.index > - pause_mid_time / NANOSECONDS_PER_SECOND) - video_info = (video_info - .iloc[is_post_pause] - .drop(columns=['HWframeCount', 'HWTimestamp'])) + is_post_pause = video_info.index > pause_mid_time / NANOSECONDS_PER_SECOND + video_info = video_info.iloc[is_post_pause].drop( + columns=["HWframeCount", "HWTimestamp"] + ) return video_info else: raise NotImplementedError @@ -284,17 +291,23 @@ def find_camera_dio_channel(position_tracking_path, video_info): dio_paths = glob.glob( os.path.join( os.path.split(head)[0], - tail.split('.')[0] + '.DIO', - tail.split('.')[0] + '*.dat')) + tail.split(".")[0] + ".DIO", + tail.split(".")[0] + "*.dat", + ) + ) n_ticks = np.asarray( - [pd.DataFrame(readTrodesExtractedDataFile(dio_file)['data']).state.sum() - for dio_file in dio_paths]) + [ + pd.DataFrame(readTrodesExtractedDataFile(dio_file)["data"]).state.sum() + for dio_file in dio_paths + ] + ) n_camera_frames = video_info.shape[0] position_ticks_file_ind = np.argmin(np.abs(n_ticks - n_camera_frames)) - camera_ticks_dio = pd.DataFrame(readTrodesExtractedDataFile( - dio_paths[position_ticks_file_ind])['data']) + camera_ticks_dio = pd.DataFrame( + readTrodesExtractedDataFile(dio_paths[position_ticks_file_ind])["data"] + ) return camera_ticks_dio.loc[camera_ticks_dio.state == 1].time @@ -317,10 +330,9 @@ def get_video_info(position_tracking_path): """ video_info = readTrodesExtractedDataFile( - position_tracking_path.replace( - '.pos_online.dat', '.pos_cameraHWFrameCount.dat')) - return (pd.DataFrame(video_info['data']) - .set_index('PosTimestamp')) + position_tracking_path.replace(".pos_online.dat", ".pos_cameraHWFrameCount.dat") + ) + return pd.DataFrame(video_info["data"]).set_index("PosTimestamp") def get_mcu_neural_timestamps(position_tracking_path): @@ -340,13 +352,12 @@ def get_mcu_neural_timestamps(position_tracking_path): head, tail = os.path.split(position_tracking_path) mcu_neural_timestamps_path = os.path.join( os.path.split(head)[0], - tail.split('.')[0] + '.time', - tail.split('.')[0] + '.continuoustime.dat') + tail.split(".")[0] + ".time", + tail.split(".")[0] + ".continuoustime.dat", + ) cont_time = readTrodesExtractedDataFile(mcu_neural_timestamps_path) - return (pd.DataFrame(cont_time['data']) - .set_index('trodestime') - .adjusted_systime) + return pd.DataFrame(cont_time["data"]).set_index("trodestime").adjusted_systime def get_framerate(timestamps): @@ -356,7 +367,8 @@ def get_framerate(timestamps): def find_acquisition_timing_pause( - timestamps, min_duration=0.4, max_duration=1.0, n_search=100): + timestamps, min_duration=0.4, max_duration=1.0, n_search=100 +): """Landmark timing 'gap' (0.5 s pause in video stream) parameters Parameters @@ -373,17 +385,16 @@ def find_acquisition_timing_pause( """ timestamps = np.asarray(timestamps) - timestamp_difference = np.diff( - timestamps[:n_search] / NANOSECONDS_PER_SECOND) + timestamp_difference = np.diff(timestamps[:n_search] / NANOSECONDS_PER_SECOND) is_valid_gap = (timestamp_difference > min_duration) & ( - timestamp_difference < max_duration) + timestamp_difference < max_duration + ) pause_start_ind = np.nonzero(is_valid_gap)[0][0] pause_end_ind = pause_start_ind + 1 pause_mid_time = ( - timestamps[pause_start_ind] + - (timestamps[pause_end_ind] - - timestamps[pause_start_ind]) - // 2) + timestamps[pause_start_ind] + + (timestamps[pause_end_ind] - timestamps[pause_start_ind]) // 2 + ) return pause_mid_time @@ -392,10 +403,9 @@ def find_large_frame_jumps(frame_count, min_frame_jump=15): """Want to avoid regressing over large frame count skips""" frame_count = np.asarray(frame_count) - is_large_frame_jump = np.insert( - np.diff(frame_count) > min_frame_jump, 0, False) + is_large_frame_jump = np.insert(np.diff(frame_count) > min_frame_jump, 0, False) - logger.info(f'big frame jumps: {np.nonzero(is_large_frame_jump)[0]}') + logger.info(f"big frame jumps: {np.nonzero(is_large_frame_jump)[0]}") return is_large_frame_jump @@ -409,28 +419,29 @@ def detect_trodes_time_repeats_or_frame_jumps(trodes_time, frame_count): due to headstage disconnects.""" trodes_time = np.asarray(trodes_time) is_repeat_timestamp = detect_repeat_timestamps(trodes_time) - logger.info(f'repeat timestamps ind: {np.nonzero(is_repeat_timestamp)[0]}') + logger.info(f"repeat timestamps ind: {np.nonzero(is_repeat_timestamp)[0]}") is_large_frame_jump = find_large_frame_jumps(frame_count) is_repeat_timestamp = is_repeat_timestamp | is_large_frame_jump repeat_timestamp_labels = label(is_repeat_timestamp)[0] repeat_timestamp_labels_id, repeat_timestamp_label_counts = np.unique( - repeat_timestamp_labels, return_counts=True) - is_repeat = (repeat_timestamp_labels_id != 0) & ( - repeat_timestamp_label_counts > 2) + repeat_timestamp_labels, return_counts=True + ) + is_repeat = (repeat_timestamp_labels_id != 0) & (repeat_timestamp_label_counts > 2) repeat_timestamp_labels_id = repeat_timestamp_labels_id[is_repeat] repeat_timestamp_label_counts = repeat_timestamp_label_counts[is_repeat] - is_repeat_timestamp[~np.isin( - repeat_timestamp_labels, repeat_timestamp_labels_id)] = False + is_repeat_timestamp[ + ~np.isin(repeat_timestamp_labels, repeat_timestamp_labels_id) + ] = False non_repeat_timestamp_labels = label(~is_repeat_timestamp)[0] non_repeat_timestamp_labels_id = np.unique(non_repeat_timestamp_labels) non_repeat_timestamp_labels_id = non_repeat_timestamp_labels_id[ - non_repeat_timestamp_labels_id != 0] + non_repeat_timestamp_labels_id != 0 + ] - return (non_repeat_timestamp_labels, - non_repeat_timestamp_labels_id) + return (non_repeat_timestamp_labels, non_repeat_timestamp_labels_id) def detect_ptp(mcu_neural_timestamps, ptp_time): @@ -441,9 +452,9 @@ def detect_ptp(mcu_neural_timestamps, ptp_time): the header of the .rec file""" mcu_neural_timestamps = np.asarray(mcu_neural_timestamps) ptp_time = np.asarray(ptp_time) - common_interval_duration = ( - min(np.max(mcu_neural_timestamps), np.max(ptp_time)) - - max(np.min(mcu_neural_timestamps), np.min(ptp_time))) + common_interval_duration = min( + np.max(mcu_neural_timestamps), np.max(ptp_time) + ) - max(np.min(mcu_neural_timestamps), np.min(ptp_time)) return common_interval_duration > 0.0 @@ -462,29 +473,31 @@ def estimate_camera_time_from_mcu_time(video_info, mcu_neural_timestamps): is_valid_camera_time : np.ndarray, shape (n_frames,) """ - is_valid_camera_time = np.isin( - video_info.index, mcu_neural_timestamps.index) - camera_systime = np.asarray(mcu_neural_timestamps.loc[ - video_info.index[is_valid_camera_time]]) + is_valid_camera_time = np.isin(video_info.index, mcu_neural_timestamps.index) + camera_systime = np.asarray( + mcu_neural_timestamps.loc[video_info.index[is_valid_camera_time]] + ) return camera_systime, is_valid_camera_time def estimate_camera_to_mcu_lag(camera_systime, dio_systime, n_breaks): if n_breaks == 0: - dio_systime = dio_systime[:len(camera_systime)] + dio_systime = dio_systime[: len(camera_systime)] camera_to_mcu_lag = np.median(camera_systime - dio_systime) else: camera_to_mcu_lag = camera_systime[0] - dio_systime[0] - logger.info('estimated trodes to camera lag: ' - f'{camera_to_mcu_lag / NANOSECONDS_PER_SECOND:0.3f} s') + logger.info( + "estimated trodes to camera lag: " + f"{camera_to_mcu_lag / NANOSECONDS_PER_SECOND:0.3f} s" + ) return camera_to_mcu_lag def remove_acquisition_timing_pause_non_ptp( - dio_systime, frame_count, camera_systime, is_valid_camera_time, - pause_mid_time): + dio_systime, frame_count, camera_systime, is_valid_camera_time, pause_mid_time +): dio_systime = dio_systime[dio_systime > pause_mid_time] frame_count = frame_count[is_valid_camera_time][camera_systime > pause_mid_time] is_valid_camera_time[is_valid_camera_time] = camera_systime > pause_mid_time @@ -494,12 +507,13 @@ def remove_acquisition_timing_pause_non_ptp( def correct_timestamps_for_camera_to_mcu_lag( - frame_count, camera_systime, camera_to_mcu_lag): + frame_count, camera_systime, camera_to_mcu_lag +): - regression_result = linregress( - frame_count, camera_systime - camera_to_mcu_lag) - corrected_camera_systime = (regression_result.intercept + - frame_count * regression_result.slope) + regression_result = linregress(frame_count, camera_systime - camera_to_mcu_lag) + corrected_camera_systime = ( + regression_result.intercept + frame_count * regression_result.slope + ) corrected_camera_systime /= NANOSECONDS_PER_SECOND return corrected_camera_systime @@ -509,20 +523,19 @@ def get_cameras_ids(dataset_names, metadata): camera_ids = [] for dataset_name in dataset_names: # extract the first the first element of the dataset_name as the epoch number - dataset_elements = str(dataset_name).split('_') + dataset_elements = str(dataset_name).split("_") epoch_num = str(int(dataset_elements[0])) try: camera_ids.append( next( - task['camera_id'] - for task in metadata['tasks'] - if epoch_num in task['task_epochs'] + task["camera_id"] + for task in metadata["tasks"] + if epoch_num in task["task_epochs"] )[0] ) except Exception as e: print(e) - raise InvalidMetadataException( - 'Invalid camera metadata for datasets') + raise InvalidMetadataException("Invalid camera metadata for datasets") return camera_ids @@ -532,12 +545,12 @@ def get_meters_per_pixels(cameras_ids, metadata): try: meters_per_pixels.append( next( - float(camera['meters_per_pixel']) - for camera in metadata['cameras'] - if camera_id == camera['id'] + float(camera["meters_per_pixel"]) + for camera in metadata["cameras"] + if camera_id == camera["id"] ) ) except Exception as e: print(e) - raise InvalidMetadataException('Invalid camera metadata') + raise InvalidMetadataException("Invalid camera metadata") return meters_per_pixels From badcd8c9b83acc597baff91f08e147c8b8f1598a Mon Sep 17 00:00:00 2001 From: acomrie <46034181+acomrie@users.noreply.github.com> Date: Fri, 14 Apr 2023 08:37:03 -0700 Subject: [PATCH 178/205] Skip MCU_IO binaries and alert user We currently do not use MCU_IO data in the lab, but it is possible to extract these empty data streams from .rec files. If they have been extracted during preprocessing, we should not mix them up with our standard ECU DIOs. They are named similarly - for ex, ending in "MCU_Din3.dat" versus ending in just "Din3.dat" - so future version of rec_to_nwb should appropriately find MCU_IOs and incorporate those data in nwb files. In the interm, this fix enables us to skip MCU_IOs, alert the user, and look only for ECU DIOs here. Without this, MCU_IO binaries can incorrectly get matched up to ECU DIO names, causing errors in the data inserted in the nwb file. This fix enables finding only the ECU DIO data and matching them to the appropriate ECU DIO names. The change has been tested locally. --- rec_to_nwb/processing/nwb/components/dio/dio_files.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_files.py b/rec_to_nwb/processing/nwb/components/dio/dio_files.py index 4284aec2b..a66b93c49 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_files.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_files.py @@ -25,6 +25,11 @@ def __filter_files(cls, multiple_datasets_dio_files, dio_metadata): def __get_dict(cls, directory): dio_dict = {} for file in glob.glob(os.path.join(directory, '*.dat')): - dio_name = file.split('.')[-2].split('_')[-1] - dio_dict[dio_name] = os.path.join(directory, file) + if file.split('.')[-2].split('_')[-2] == "MCU": + # To avoid this warning, remove MCU_IO data from being displayed via the .trodesconf, this will stop MCU_IO extraction + print(f'WARNING: MCU_IO data are not currently handled by rec_to_nwb. Skipping file: {file}.') + # TODO: find MCU_IO binaries if they exist and appropriately insert these data into nwbs in future version of rec_to_nwb + else: + dio_name = file.split('.')[-2].split('_')[-1] # This string should be of the form "Din12" "Dout5" + dio_dict[dio_name] = os.path.join(directory, file) return dio_dict From c73852fa95dd34dcd311e0f4e117373dca6c60f2 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 21 Apr 2023 11:17:32 -0700 Subject: [PATCH 179/205] Handle date of birth of subject --- .../processing/builder/nwb_file_builder.py | 36 +++++++++++++------ 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index b9d6843b4..b6e1cb625 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -341,7 +341,30 @@ def build(self): NWBFile: Return NWBFile content """ - logger.info('Building components for NWB') + logger.info("Building components for NWB") + + # Convert date of birth to datetime object + subject_metadata = deepcopy(self.metadata.metadata["subject"]) + try: + subject_metadata.update( + { + "date_of_birth": datetime.strptime( + subject_metadata["date_of_birth"], "%Y-%m-%dT%H:%M:%S.%fZ" + ) + } + ) + except ValueError: + subject_metadata.update( + { + "date_of_birth": datetime.strptime( + subject_metadata["date_of_birth"], "%Y%m%d" + ) + } + ) + + # Convert weight to string and add units + subject_metadata.update({"weight": f"{subject_metadata['weight']} g"}) + nwb_content = NWBFile( session_description=self.metadata['session_description'], experimenter=self.metadata['experimenter_name'], @@ -352,15 +375,8 @@ def build(self): identifier=str(uuid.uuid1()), session_id=self.metadata['session_id'], notes=self.link_to_notes, - experiment_description=self.metadata['experiment_description'], - subject=Subject( - description=self.metadata['subject']['description'], - genotype=self.metadata['subject']['genotype'], - sex=self.metadata['subject']['sex'], - species=self.metadata['subject']['species'], - subject_id=self.metadata['subject']['subject_id'], - weight=str(self.metadata['subject']['weight']), - ), + experiment_description=self.metadata["experiment_description"], + subject=Subject(**subject_metadata), ) self.processing_module_originator.make(nwb_content) From aa8481bb6275bb05a7ca527a7f28c2b68b09adf1 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 21 Apr 2023 11:17:49 -0700 Subject: [PATCH 180/205] Format using black and sort imports --- .../processing/builder/nwb_file_builder.py | 411 ++++++++++-------- 1 file changed, 227 insertions(+), 184 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index b6e1cb625..07b47d27f 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -1,93 +1,105 @@ import logging.config import os import uuid +from copy import deepcopy from datetime import datetime import pytz from pynwb import NWBHDF5IO, NWBFile from pynwb.file import Subject -from rec_to_nwb.processing.builder.originators.analog_originator import \ - AnalogOriginator -from rec_to_nwb.processing.builder.originators.associated_files_originator import \ - AssociatedFilesOriginator -from rec_to_nwb.processing.builder.originators.camera_device_originator import \ - CameraDeviceOriginator -from rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator import \ - CameraSampleFrameCountsOriginator -from rec_to_nwb.processing.builder.originators.data_acq_device_originator import \ - DataAcqDeviceOriginator -from rec_to_nwb.processing.builder.originators.dio_originator import \ - DioOriginator -from rec_to_nwb.processing.builder.originators.electrode_group_originator import \ - ElectrodeGroupOriginator -from rec_to_nwb.processing.builder.originators.electrodes_extension_originator import \ - ElectrodesExtensionOriginator -from rec_to_nwb.processing.builder.originators.electrodes_originator import \ - ElectrodesOriginator -from rec_to_nwb.processing.builder.originators.epochs_originator import \ - EpochsOriginator -from rec_to_nwb.processing.builder.originators.header_device_originator import \ - HeaderDeviceOriginator -from rec_to_nwb.processing.builder.originators.mda_invalid_time_originator import \ - MdaInvalidTimeOriginator -from rec_to_nwb.processing.builder.originators.mda_originator import \ - MdaOriginator -from rec_to_nwb.processing.builder.originators.mda_valid_time_originator import \ - MdaValidTimeOriginator -from rec_to_nwb.processing.builder.originators.pos_invalid_originator import \ - PosInvalidTimeOriginator -from rec_to_nwb.processing.builder.originators.pos_valid_time_originator import \ - PosValidTimeOriginator -from rec_to_nwb.processing.builder.originators.position_originator import \ - PositionOriginator -from rec_to_nwb.processing.builder.originators.probe_originator import \ - ProbeOriginator -from rec_to_nwb.processing.builder.originators.processing_module_originator import \ - ProcessingModuleOriginator -from rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator import \ - SampleCountTimestampCorespondenceOriginator -from rec_to_nwb.processing.builder.originators.shanks_electrodes_originator import \ - ShanksElectrodeOriginator -from rec_to_nwb.processing.builder.originators.shanks_originator import \ - ShanksOriginator -from rec_to_nwb.processing.builder.originators.task_originator import \ - TaskOriginator -from rec_to_nwb.processing.builder.originators.video_files_originator import \ - VideoFilesOriginator -from rec_to_nwb.processing.header.header_checker.header_processor import \ - HeaderProcessor -from rec_to_nwb.processing.header.header_checker.rec_file_finder import \ - RecFileFinder + +from rec_to_nwb.processing.builder.originators.analog_originator import AnalogOriginator +from rec_to_nwb.processing.builder.originators.associated_files_originator import ( + AssociatedFilesOriginator, +) +from rec_to_nwb.processing.builder.originators.camera_device_originator import ( + CameraDeviceOriginator, +) +from rec_to_nwb.processing.builder.originators.camera_sample_frame_counts_originator import ( + CameraSampleFrameCountsOriginator, +) +from rec_to_nwb.processing.builder.originators.data_acq_device_originator import ( + DataAcqDeviceOriginator, +) +from rec_to_nwb.processing.builder.originators.dio_originator import DioOriginator +from rec_to_nwb.processing.builder.originators.electrode_group_originator import ( + ElectrodeGroupOriginator, +) +from rec_to_nwb.processing.builder.originators.electrodes_extension_originator import ( + ElectrodesExtensionOriginator, +) +from rec_to_nwb.processing.builder.originators.electrodes_originator import ( + ElectrodesOriginator, +) +from rec_to_nwb.processing.builder.originators.epochs_originator import EpochsOriginator +from rec_to_nwb.processing.builder.originators.header_device_originator import ( + HeaderDeviceOriginator, +) +from rec_to_nwb.processing.builder.originators.mda_invalid_time_originator import ( + MdaInvalidTimeOriginator, +) +from rec_to_nwb.processing.builder.originators.mda_originator import MdaOriginator +from rec_to_nwb.processing.builder.originators.mda_valid_time_originator import ( + MdaValidTimeOriginator, +) +from rec_to_nwb.processing.builder.originators.pos_invalid_originator import ( + PosInvalidTimeOriginator, +) +from rec_to_nwb.processing.builder.originators.pos_valid_time_originator import ( + PosValidTimeOriginator, +) +from rec_to_nwb.processing.builder.originators.position_originator import ( + PositionOriginator, +) +from rec_to_nwb.processing.builder.originators.probe_originator import ProbeOriginator +from rec_to_nwb.processing.builder.originators.processing_module_originator import ( + ProcessingModuleOriginator, +) +from rec_to_nwb.processing.builder.originators.sample_count_timestamp_corespondence_originator import ( + SampleCountTimestampCorespondenceOriginator, +) +from rec_to_nwb.processing.builder.originators.shanks_electrodes_originator import ( + ShanksElectrodeOriginator, +) +from rec_to_nwb.processing.builder.originators.shanks_originator import ShanksOriginator +from rec_to_nwb.processing.builder.originators.task_originator import TaskOriginator +from rec_to_nwb.processing.builder.originators.video_files_originator import ( + VideoFilesOriginator, +) +from rec_to_nwb.processing.header.header_checker.header_processor import HeaderProcessor +from rec_to_nwb.processing.header.header_checker.rec_file_finder import RecFileFinder from rec_to_nwb.processing.header.module.header import Header -from rec_to_nwb.processing.metadata.corrupted_data_manager import \ - CorruptedDataManager +from rec_to_nwb.processing.metadata.corrupted_data_manager import CorruptedDataManager from rec_to_nwb.processing.metadata.metadata_manager import MetadataManager -from rec_to_nwb.processing.nwb.common.session_time_extractor import \ - SessionTimeExtractor -from rec_to_nwb.processing.nwb.components.device.device_factory import \ - DeviceFactory -from rec_to_nwb.processing.nwb.components.device.device_injector import \ - DeviceInjector -from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import \ - FlProbeManager +from rec_to_nwb.processing.nwb.common.session_time_extractor import SessionTimeExtractor +from rec_to_nwb.processing.nwb.components.device.device_factory import DeviceFactory +from rec_to_nwb.processing.nwb.components.device.device_injector import DeviceInjector +from rec_to_nwb.processing.nwb.components.device.probe.fl_probe_manager import ( + FlProbeManager, +) from rec_to_nwb.processing.tools.beartype.beartype import beartype from rec_to_nwb.processing.tools.data_scanner import DataScanner -from rec_to_nwb.processing.validation.associated_files_validator import \ - AssociatedFilesExistanceValidator -from rec_to_nwb.processing.validation.metadata_section_validator import \ - MetadataSectionValidator +from rec_to_nwb.processing.validation.associated_files_validator import ( + AssociatedFilesExistanceValidator, +) +from rec_to_nwb.processing.validation.metadata_section_validator import ( + MetadataSectionValidator, +) from rec_to_nwb.processing.validation.ntrode_validator import NTrodeValidator from rec_to_nwb.processing.validation.path_validator import PathValidator -from rec_to_nwb.processing.validation.preprocessing_validator import \ - PreprocessingValidator +from rec_to_nwb.processing.validation.preprocessing_validator import ( + PreprocessingValidator, +) from rec_to_nwb.processing.validation.task_validator import TaskValidator -from rec_to_nwb.processing.validation.validation_registrator import \ - ValidationRegistrator +from rec_to_nwb.processing.validation.validation_registrator import ( + ValidationRegistrator, +) path = os.path.dirname(os.path.abspath(__file__)) logging.config.fileConfig( - fname=os.path.join(str(path), os.pardir, os.pardir, 'logging.conf'), - disable_existing_loggers=False) + fname=os.path.join(str(path), os.pardir, os.pardir, "logging.conf"), + disable_existing_loggers=False, +) logger = logging.getLogger(__name__) # switches for old dataset timestamp processing (hard-coded for now) @@ -117,34 +129,49 @@ class NWBFileBuilder: @beartype def __init__( - self, - data_path: str, - animal_name: str, - date: str, - nwb_metadata: MetadataManager, - process_dio: bool = True, - process_mda: bool = True, - process_analog: bool = True, - process_pos_timestamps: bool = True, - preprocessing_path: str = '', - video_path: str = '', - output_file: str = 'output.nwb', - reconfig_header: str = '', - is_old_dataset: bool = False, - session_start_time=None, + self, + data_path: str, + animal_name: str, + date: str, + nwb_metadata: MetadataManager, + process_dio: bool = True, + process_mda: bool = True, + process_analog: bool = True, + process_pos_timestamps: bool = True, + preprocessing_path: str = "", + video_path: str = "", + output_file: str = "output.nwb", + reconfig_header: str = "", + is_old_dataset: bool = False, + session_start_time=None, ): - - logger.info('NWBFileBuilder initialization') + logger.info("NWBFileBuilder initialization") logger.info( - 'NWB builder initialization parameters: \n' - + 'data_path = ' + str(data_path) + '\n' - + 'animal_name = ' + str(animal_name) + '\n' - + 'date = ' + str(date) + '\n' - + 'nwb_metadata = ' + str(nwb_metadata) + '\n' - + 'process_dio = ' + str(process_dio) + '\n' - + 'process_mda = ' + str(process_mda) + '\n' - + 'process_analog = ' + str(process_analog) + '\n' - + 'output_file = ' + str(output_file) + '\n' + "NWB builder initialization parameters: \n" + + "data_path = " + + str(data_path) + + "\n" + + "animal_name = " + + str(animal_name) + + "\n" + + "date = " + + str(date) + + "\n" + + "nwb_metadata = " + + str(nwb_metadata) + + "\n" + + "process_dio = " + + str(process_dio) + + "\n" + + "process_mda = " + + str(process_mda) + + "\n" + + "process_analog = " + + str(process_analog) + + "\n" + + "output_file = " + + str(output_file) + + "\n" ) validation_registrator = ValidationRegistrator() @@ -157,12 +184,14 @@ def __init__( self.metadata = nwb_metadata.metadata metadata_section_validator = MetadataSectionValidator(self.metadata) metadata_section_validator.validate_sections() - if self.metadata.get('associated_files', []): + if self.metadata.get("associated_files", []): associated_files_existance_validator = AssociatedFilesExistanceValidator( - self.metadata['associated_files']) + self.metadata["associated_files"] + ) if not associated_files_existance_validator.files_exist(): raise Exception( - "one or more associated file listed in metadata.yaml file does not exist") + "one or more associated file listed in metadata.yaml file does not exist" + ) self.probes = nwb_metadata.probes self.process_dio = process_dio self.process_mda = process_mda @@ -175,46 +204,51 @@ def __init__( self.output_file = output_file self.video_path = video_path self.is_old_dataset = is_old_dataset - self.link_to_notes = self.metadata.get('link to notes', None) - data_types_for_scanning = {'pos': True, - 'time': True, - 'mda': process_mda, - 'DIO': process_dio, - 'analog': process_analog} + self.link_to_notes = self.metadata.get("link to notes", None) + data_types_for_scanning = { + "pos": True, + "time": True, + "mda": process_mda, + "DIO": process_dio, + "analog": process_analog, + } rec_files_list = RecFileFinder().find_rec_files( - path=os.path.join( - self.data_path, self.animal_name, 'raw', self.date) + path=os.path.join(self.data_path, self.animal_name, "raw", self.date) ) if not preprocessing_path: header_path = None # default else: header_path = os.path.join( - self.preprocessing_path, self.animal_name, 'headers', - self.date) + self.preprocessing_path, self.animal_name, "headers", self.date + ) os.makedirs(header_path, exist_ok=True) header_file = HeaderProcessor.process_headers( - rec_files_list, copy_dir=header_path) + rec_files_list, copy_dir=header_path + ) if reconfig_header: self.header = Header(reconfig_header) else: self.header = Header(header_file) self.data_scanner = DataScanner( - self.preprocessing_path, animal_name, nwb_metadata) + self.preprocessing_path, animal_name, nwb_metadata + ) self.dataset_names = self.data_scanner.get_all_epochs(date) - full_data_path = os.path.join(self.preprocessing_path, - self.animal_name, 'preprocessing', date) + full_data_path = os.path.join( + self.preprocessing_path, self.animal_name, "preprocessing", date + ) validation_registrator = ValidationRegistrator() - validation_registrator.register(NTrodeValidator( - self.metadata, self.header, self.probes)) - validation_registrator.register(PreprocessingValidator( - full_data_path, - self.dataset_names, - data_types_for_scanning - )) - validation_registrator.register(TaskValidator(self.metadata['tasks'])) + validation_registrator.register( + NTrodeValidator(self.metadata, self.header, self.probes) + ) + validation_registrator.register( + PreprocessingValidator( + full_data_path, self.dataset_names, data_types_for_scanning + ) + ) + validation_registrator.register(TaskValidator(self.metadata["tasks"])) validation_registrator.validate() self.__extract_datasets(animal_name, date) @@ -222,67 +256,63 @@ def __init__( self.corrupted_data_manager = CorruptedDataManager(self.metadata) self.shanks_electrode_originator = ShanksElectrodeOriginator( - self.probes, self.metadata) + self.probes, self.metadata + ) self.shanks_originator = ShanksOriginator(self.probes, self.metadata) self.fl_probe_manager = FlProbeManager(self.probes) self.device_injector = DeviceInjector() self.device_factory = DeviceFactory() - self.electrode_group_originator = ElectrodeGroupOriginator( - self.metadata) - self.electrodes_originator = ElectrodesOriginator( - self.probes, self.metadata) + self.electrode_group_originator = ElectrodeGroupOriginator(self.metadata) + self.electrodes_originator = ElectrodesOriginator(self.probes, self.metadata) if self.is_old_dataset: if not session_start_time: - raise ValueError( - 'session_start_time is required for old dataset.') + raise ValueError("session_start_time is required for old dataset.") self.session_start_time = session_start_time else: session_time_extractor = SessionTimeExtractor( - self.datasets, - self.animal_name, - self.date, - self.dataset_names + self.datasets, self.animal_name, self.date, self.dataset_names ) self.session_start_time = session_time_extractor.get_session_start_time() self.mda_valid_time_originator = MdaValidTimeOriginator( - self.header, self.metadata) + self.header, self.metadata + ) self.mda_invalid_time_originator = MdaInvalidTimeOriginator( - self.header, self.metadata) + self.header, self.metadata + ) self.pos_valid_time_originator = PosValidTimeOriginator(self.metadata) - self.pos_invalid_time_originator = PosInvalidTimeOriginator( - self.metadata) + self.pos_invalid_time_originator = PosInvalidTimeOriginator(self.metadata) self.epochs_originator = EpochsOriginator(self.datasets) - if 'associated_files' in self.metadata: - self.associated_files_originator = AssociatedFilesOriginator( - self.metadata) + if "associated_files" in self.metadata: + self.associated_files_originator = AssociatedFilesOriginator(self.metadata) self.electrodes_extension_originator = ElectrodesExtensionOriginator( - self.probes, - self.metadata, - self.header + self.probes, self.metadata, self.header ) - self.sample_count_timestamp_corespondence_originator =\ + self.sample_count_timestamp_corespondence_originator = ( SampleCountTimestampCorespondenceOriginator(self.datasets) + ) self.processing_module_originator = ProcessingModuleOriginator() self.task_originator = TaskOriginator(self.metadata) self.camera_device_originator = CameraDeviceOriginator(self.metadata) self.header_device_originator = HeaderDeviceOriginator( - self.header, self.metadata) + self.header, self.metadata + ) self.probes_originator = ProbeOriginator( - self.device_factory, self.device_injector, self.probes) + self.device_factory, self.device_injector, self.probes + ) self.camera_sample_frame_counts_originator = CameraSampleFrameCountsOriginator( - os.path.join(self.data_path, self.animal_name, 'raw', self.date)) + os.path.join(self.data_path, self.animal_name, "raw", self.date) + ) if self.is_old_dataset: self.video_files_originator = VideoFilesOriginator( - os.path.join(self.data_path, self.animal_name, - 'raw', self.date), + os.path.join(self.data_path, self.animal_name, "raw", self.date), self.video_path, self.metadata["associated_video_files"], convert_timestamps=_CONVERT_OLD_TIMESTAMPS, @@ -290,8 +320,7 @@ def __init__( ) else: self.video_files_originator = VideoFilesOriginator( - os.path.join(self.data_path, self.animal_name, - 'raw', self.date), + os.path.join(self.data_path, self.animal_name, "raw", self.date), self.video_path, self.metadata["associated_video_files"], ) @@ -299,40 +328,45 @@ def __init__( self.data_acq_device_originator = DataAcqDeviceOriginator( device_factory=self.device_factory, device_injector=self.device_injector, - metadata=self.metadata['data_acq_device'] + metadata=self.metadata["data_acq_device"], ) if self.process_mda: self.mda_originator = MdaOriginator( - self.datasets, self.header, self.metadata) + self.datasets, self.header, self.metadata + ) if self.process_dio: if self.is_old_dataset: self.dio_originator = DioOriginator( - self.metadata, self.datasets, - convert_timestamps=_CONVERT_OLD_TIMESTAMPS) + self.metadata, + self.datasets, + convert_timestamps=_CONVERT_OLD_TIMESTAMPS, + ) else: - self.dio_originator = DioOriginator( - self.metadata, self.datasets) + self.dio_originator = DioOriginator(self.metadata, self.datasets) if self.process_analog: if self.is_old_dataset: self.analog_originator = AnalogOriginator( - self.datasets, self.metadata, + self.datasets, + self.metadata, convert_timestamps=_CONVERT_OLD_TIMESTAMPS, - return_timestamps=_RETURN_OLD_TIMESTAMPS) + return_timestamps=_RETURN_OLD_TIMESTAMPS, + ) else: - self.analog_originator = AnalogOriginator( - self.datasets, self.metadata) + self.analog_originator = AnalogOriginator(self.datasets, self.metadata) self.position_originator = PositionOriginator( - self.datasets, self.metadata, - self.dataset_names) + self.datasets, self.metadata, self.dataset_names + ) def __extract_datasets(self, animal_name, date): self.data_scanner.extract_data_from_date_folder(date) - self.datasets = [self.data_scanner.data[animal_name] - [date][dataset] for dataset in self.dataset_names] + self.datasets = [ + self.data_scanner.data[animal_name][date][dataset] + for dataset in self.dataset_names + ] def build(self): """Build NWBFile @@ -366,14 +400,14 @@ def build(self): subject_metadata.update({"weight": f"{subject_metadata['weight']} g"}) nwb_content = NWBFile( - session_description=self.metadata['session_description'], - experimenter=self.metadata['experimenter_name'], - lab=self.metadata['lab'], - institution=self.metadata['institution'], + session_description=self.metadata["session_description"], + experimenter=self.metadata["experimenter_name"], + lab=self.metadata["lab"], + institution=self.metadata["institution"], session_start_time=self.session_start_time, timestamps_reference_time=datetime.fromtimestamp(0, pytz.utc), identifier=str(uuid.uuid1()), - session_id=self.metadata['session_id'], + session_id=self.metadata["session_id"], notes=self.link_to_notes, experiment_description=self.metadata["experiment_description"], subject=Subject(**subject_metadata), @@ -381,7 +415,7 @@ def build(self): self.processing_module_originator.make(nwb_content) - if 'associated_files' in self.metadata: + if "associated_files" in self.metadata: self.associated_files_originator.make(nwb_content) self.position_originator.make(nwb_content) @@ -393,7 +427,8 @@ def build(self): shanks_dict = self.shanks_originator.make(shanks_electrodes_dict) probes = self.probes_originator.make( - nwb_content, shanks_dict, valid_map_dict['probes']) + nwb_content, shanks_dict, valid_map_dict["probes"] + ) self.data_acq_device_originator.make(nwb_content) @@ -404,16 +439,19 @@ def build(self): self.video_files_originator.make(nwb_content) electrode_groups = self.electrode_group_originator.make( - nwb_content, probes, valid_map_dict['electrode_groups'] + nwb_content, probes, valid_map_dict["electrode_groups"] ) self.electrodes_originator.make( - nwb_content, electrode_groups, valid_map_dict['electrodes'], - valid_map_dict['electrode_groups'] + nwb_content, + electrode_groups, + valid_map_dict["electrodes"], + valid_map_dict["electrode_groups"], ) self.electrodes_extension_originator.make( - nwb_content, valid_map_dict['electrodes']) + nwb_content, valid_map_dict["electrodes"] + ) self.epochs_originator.make(nwb_content) @@ -437,20 +475,25 @@ def build(self): def write(self, content): """Write nwb file handler with colected data into actual file""" - logger.info('Writing down content to ' + self.output_file) - with NWBHDF5IO(path=self.output_file, mode='w') as nwb_fileIO: + logger.info("Writing down content to " + self.output_file) + with NWBHDF5IO(path=self.output_file, mode="w") as nwb_fileIO: nwb_fileIO.write(content) nwb_fileIO.close() - logger.info(self.output_file + ' file has been created.') + logger.info(self.output_file + " file has been created.") return self.output_file def __build_corrupted_data_manager(self): - logger.info('CorruptedData: Checking') + logger.info("CorruptedData: Checking") return self.corrupted_data_manager.get_valid_map_dict() - def build_and_append_to_nwb(self, process_mda_valid_time=True, process_mda_invalid_time=True, - process_pos_valid_time=True, process_pos_invalid_time=True): + def build_and_append_to_nwb( + self, + process_mda_valid_time=True, + process_mda_invalid_time=True, + process_pos_valid_time=True, + process_pos_invalid_time=True, + ): """Create and append to existing nwb. Set flag to add it to nwb Args: @@ -470,7 +513,7 @@ def build_and_append_to_nwb(self, process_mda_valid_time=True, process_mda_inval NWBFile: Return NWBFile content """ - with NWBHDF5IO(path=self.output_file, mode='a') as nwb_file_io: + with NWBHDF5IO(path=self.output_file, mode="a") as nwb_file_io: nwb_content = nwb_file_io.read() if self.process_pos_timestamps: From 3aba8cb969e717b494dfc7274f57c8cd2fa1f631 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 21 Apr 2023 11:20:45 -0700 Subject: [PATCH 181/205] Emphasize file and directory structure needed to run rec_to_nwb This is a common mistake people make when using rec_to_nwb --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 185cec5fe..bf745c33f 100644 --- a/README.md +++ b/README.md @@ -313,7 +313,7 @@ After that, you can add mda or pos invalid/valid data to your NWB, using 'build_ **process_pos_invalid_time** = 'boolean' True if the pos invalid times should be build and append to nwb. Need the pos data inside the nwb. (default True)
-9. Make sure that the data structure in given directory (in that case `test_data`) looks similar to following example: +9. Make sure that the file and directory structure (in that case `test_data`) looks similar to following example. Please NOTE that rec_to_nwb will fail if the data is not in this format: ```bash --test_data | From 530a901bc511b6ad8e30b83e5d71452a755b5d42 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 28 Apr 2023 12:19:25 -0700 Subject: [PATCH 182/205] Fix call to metadata --- rec_to_nwb/processing/builder/nwb_file_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 07b47d27f..451fdee61 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -378,7 +378,7 @@ def build(self): logger.info("Building components for NWB") # Convert date of birth to datetime object - subject_metadata = deepcopy(self.metadata.metadata["subject"]) + subject_metadata = deepcopy(self.metadata["subject"]) try: subject_metadata.update( { From 356d4ef7772cc373d43ef43d1c28b663ddeab576 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 28 Apr 2023 14:30:14 -0700 Subject: [PATCH 183/205] Convert DOB from datetime object to string --- .../processing/metadata/metadata_extractor.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/rec_to_nwb/processing/metadata/metadata_extractor.py b/rec_to_nwb/processing/metadata/metadata_extractor.py index 4dcea3b81..d1e782300 100644 --- a/rec_to_nwb/processing/metadata/metadata_extractor.py +++ b/rec_to_nwb/processing/metadata/metadata_extractor.py @@ -4,11 +4,15 @@ class MetadataExtractor: - @staticmethod def extract_metadata(metadata_path): - with open(metadata_path, 'r') as stream: - return json.loads( - json.dumps(yaml.safe_load(stream)), - parse_int=str, - parse_float=str) + with open(metadata_path, "r") as stream: + yaml_dict = yaml.safe_load(stream) + + # yaml automatically converts date_of_birth to a datetime object, need to convert back + yaml_dict["subject"]["date_of_birth"] = yaml_dict["subject"][ + "date_of_birth" + ].strftime("%Y-%m-%dT%H:%M:%S.%fZ") + + # for some reason they want to convert all ints, float to strings + return json.loads(json.dumps(yaml_dict), parse_int=str, parse_float=str) From 8e35dd35596dd4d779d78598ccd071ee916003d6 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Thu, 15 Jun 2023 14:30:26 -0700 Subject: [PATCH 184/205] save multiple LED position data as separate spatialSeries --- .../originators/position_originator.py | 26 +++++++++++++------ 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 4c283a3f9..f4f28b256 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -53,14 +53,24 @@ def make(self, nwb_content: NWBFile): position_df = self.get_position_with_corrected_timestamps( position_tracking_path[0] ) - position.create_spatial_series( - name=f"series_{dataset_ind}", - description=", ".join(position_df.columns.tolist()), - data=np.asarray(position_df), - conversion=conversion, - reference_frame="Upper left corner of video frame", - timestamps=np.asarray(position_df.index), - ) + #Multi-position split. + #TODO: generalize key names? + key_lists = [['xloc','yloc','zloc'], + ['xloc2','yloc2','zloc2'], + ['xloc3','yloc3','zloc3']] + led_number = 0 + for valid_keys in key_lists: + key_set = [key for key in position_df.columns.tolist() if key in valid_keys] + if len(key_set)==0: continue + position.create_spatial_series( + name=f"led_{led_number}_series_{dataset_ind}", + description=", ".join(key_set), + data=np.asarray(position_df[key_set]), + conversion=conversion, + reference_frame="Upper left corner of video frame", + timestamps=np.asarray(position_df.index), + ) + led_number += 1 first_timestamps.append(position_df.index[0]) except IndexError: video_file_path = glob.glob( From 119fccac337756a62b146e3564febc76d80e87fb Mon Sep 17 00:00:00 2001 From: Samuel Bray Date: Fri, 16 Jun 2023 09:43:59 -0700 Subject: [PATCH 185/205] reduce potential position variable names Co-authored-by: Eric Denovellis --- .../processing/builder/originators/position_originator.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index f4f28b256..ef782c68b 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -59,9 +59,9 @@ def make(self, nwb_content: NWBFile): ['xloc2','yloc2','zloc2'], ['xloc3','yloc3','zloc3']] led_number = 0 - for valid_keys in key_lists: + for led_number, valid_keys in enumerate(key_lists): key_set = [key for key in position_df.columns.tolist() if key in valid_keys] - if len(key_set)==0: continue + if len(key_set) > 0: position.create_spatial_series( name=f"led_{led_number}_series_{dataset_ind}", description=", ".join(key_set), @@ -70,7 +70,6 @@ def make(self, nwb_content: NWBFile): reference_frame="Upper left corner of video frame", timestamps=np.asarray(position_df.index), ) - led_number += 1 first_timestamps.append(position_df.index[0]) except IndexError: video_file_path = glob.glob( From 61320164d7ccbd9100404a10f32fc38e09760d0d Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Fri, 16 Jun 2023 09:47:37 -0700 Subject: [PATCH 186/205] correct contditional indentation --- .../builder/originators/position_originator.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index ef782c68b..7a8d7ed0b 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -62,15 +62,15 @@ def make(self, nwb_content: NWBFile): for led_number, valid_keys in enumerate(key_lists): key_set = [key for key in position_df.columns.tolist() if key in valid_keys] if len(key_set) > 0: - position.create_spatial_series( - name=f"led_{led_number}_series_{dataset_ind}", - description=", ".join(key_set), - data=np.asarray(position_df[key_set]), - conversion=conversion, - reference_frame="Upper left corner of video frame", - timestamps=np.asarray(position_df.index), - ) - first_timestamps.append(position_df.index[0]) + position.create_spatial_series( + name=f"led_{led_number}_series_{dataset_ind}", + description=", ".join(key_set), + data=np.asarray(position_df[key_set]), + conversion=conversion, + reference_frame="Upper left corner of video frame", + timestamps=np.asarray(position_df.index), + ) + first_timestamps.append(position_df.index[0]) except IndexError: video_file_path = glob.glob( os.path.join(pos_path, "*.pos_cameraHWFrameCount.dat") From 3dafd50bcdf725c9f738cc4718bc03a0e672bad1 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Fri, 16 Jun 2023 11:36:01 -0700 Subject: [PATCH 187/205] only single first timestamp per epoch --- .../processing/builder/originators/position_originator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 7a8d7ed0b..9581fea66 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -70,7 +70,7 @@ def make(self, nwb_content: NWBFile): reference_frame="Upper left corner of video frame", timestamps=np.asarray(position_df.index), ) - first_timestamps.append(position_df.index[0]) + first_timestamps.append(position_df.index[0]) except IndexError: video_file_path = glob.glob( os.path.join(pos_path, "*.pos_cameraHWFrameCount.dat") From 8603821ef3c8e9f16116503b8d4f444d112b5f95 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Fri, 16 Jun 2023 14:23:55 -0700 Subject: [PATCH 188/205] reduce valid position name options. Ensure both LED's us xloc, yloc as final column names --- .../processing/builder/originators/position_originator.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 9581fea66..dff79014e 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -55,16 +55,15 @@ def make(self, nwb_content: NWBFile): ) #Multi-position split. #TODO: generalize key names? - key_lists = [['xloc','yloc','zloc'], - ['xloc2','yloc2','zloc2'], - ['xloc3','yloc3','zloc3']] + key_lists = [['xloc','yloc',], #led 0 + ['xloc2','yloc2',],] #led 1 led_number = 0 for led_number, valid_keys in enumerate(key_lists): key_set = [key for key in position_df.columns.tolist() if key in valid_keys] if len(key_set) > 0: position.create_spatial_series( name=f"led_{led_number}_series_{dataset_ind}", - description=", ".join(key_set), + description=", ".join(['xloc','yloc']), data=np.asarray(position_df[key_set]), conversion=conversion, reference_frame="Upper left corner of video frame", From 4d4c25daba82e8dac3c8e086745260511a02e501 Mon Sep 17 00:00:00 2001 From: Samuel Bray Date: Fri, 16 Jun 2023 14:48:20 -0700 Subject: [PATCH 189/205] simple cleanup Co-authored-by: Eric Denovellis --- rec_to_nwb/processing/builder/originators/position_originator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index dff79014e..187608e24 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -57,7 +57,6 @@ def make(self, nwb_content: NWBFile): #TODO: generalize key names? key_lists = [['xloc','yloc',], #led 0 ['xloc2','yloc2',],] #led 1 - led_number = 0 for led_number, valid_keys in enumerate(key_lists): key_set = [key for key in position_df.columns.tolist() if key in valid_keys] if len(key_set) > 0: From 91f1a52f128387c2f00055e00249286d3036a3a3 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Fri, 16 Jun 2023 15:05:58 -0700 Subject: [PATCH 190/205] resolve redundant first_timestamps addon --- .../processing/builder/originators/position_originator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 187608e24..d7a5580dd 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -68,7 +68,7 @@ def make(self, nwb_content: NWBFile): reference_frame="Upper left corner of video frame", timestamps=np.asarray(position_df.index), ) - first_timestamps.append(position_df.index[0]) + first_timestamps.append(position_df.index[0]) except IndexError: video_file_path = glob.glob( os.path.join(pos_path, "*.pos_cameraHWFrameCount.dat") From d4b639143354e6af1b48333be3c5c105e347f90d Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 29 Jun 2023 15:10:33 -0700 Subject: [PATCH 191/205] Handle case where there are no camera dio ticks and add warnings --- .../originators/position_originator.py | 33 ++++++++++++++----- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 4c283a3f9..7b0c8ec10 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -246,15 +246,22 @@ def get_corrected_timestamps_without_position(hw_frame_count_path): ptp_enabled = detect_ptp(mcu_neural_timestamps, video_info.HWTimestamp) # Get the camera time from the DIOs - dio_camera_ticks = find_camera_dio_channel(hw_frame_count_path, video_info) - is_valid_tick = np.isin(dio_camera_ticks, mcu_neural_timestamps.index) - dio_systime = np.asarray( - mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]] - ) + try: + dio_camera_ticks = find_camera_dio_channel(hw_frame_count_path, video_info) + is_valid_tick = np.isin(dio_camera_ticks, mcu_neural_timestamps.index) + dio_systime = np.asarray( + mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]] + ) - # The DIOs and camera frames are initially unaligned. There is a - # half second pause at the start to allow for alignment. - pause_mid_time = find_acquisition_timing_pause(dio_systime) + # The DIOs and camera frames are initially unaligned. There is a + # half second pause at the start to allow for alignment. + pause_mid_time = find_acquisition_timing_pause(dio_systime) + except IndexError: + logger.warning("No DIO camera ticks found...") + pause_mid_time = -1.0 + + if not ptp_enabled: + raise ValueError("No DIO camera ticks found and PTP not enabled. Cannot infer position timestamps.") if ptp_enabled: ptp_timestamps = pd.Index( @@ -305,6 +312,16 @@ def find_camera_dio_channel(position_tracking_path, video_info): n_camera_frames = video_info.shape[0] position_ticks_file_ind = np.argmin(np.abs(n_ticks - n_camera_frames)) + + if (n_ticks[position_ticks_file_ind] < 0.5 * n_camera_frames) or ( + n_ticks[position_ticks_file_ind] > 1.5 * n_camera_frames + ): + logger.warning( + "Likely could not find camera tick DIO channel." + f"In the most likely dio file {dio_paths[position_ticks_file_ind]}," + f"there are {n_ticks[position_ticks_file_ind]} ticks" + f" and the position file has {n_camera_frames} camera frames.") + camera_ticks_dio = pd.DataFrame( readTrodesExtractedDataFile(dio_paths[position_ticks_file_ind])["data"] ) From daa74b18cfd10bab0b1ef3a7a4a1a7964bf73751 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 3 Jul 2023 11:12:42 -0700 Subject: [PATCH 192/205] Convert from uint32 to int32 before unwrapping --- .../builder/originators/position_originator.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index 7b0c8ec10..ea2fcacd0 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -102,7 +102,8 @@ def get_position_with_corrected_timestamps(position_tracking_path): # On AVT cameras, HWFrame counts wraps to 0 above this value. AVT_camHWframeCount_wrapval = 65535 video_info["HWframeCount"] = np.unwrap( - video_info["HWframeCount"], period=AVT_camHWframeCount_wrapval + video_info["HWframeCount"].astype(np.int32), + period=AVT_camHWframeCount_wrapval, ) # Keep track of video frames @@ -226,13 +227,13 @@ def get_position_with_corrected_timestamps(position_tracking_path): @staticmethod def get_corrected_timestamps_without_position(hw_frame_count_path): - video_info = readTrodesExtractedDataFile(hw_frame_count_path) video_info = pd.DataFrame(video_info["data"]).set_index("PosTimestamp") # On AVT cameras, HWFrame counts wraps to 0 above this value. - AVT_camHWframeCount_wrapval = 65535 + AVT_camHWframeCount_wrapval = np.iinfo(np.uint16).max video_info["HWframeCount"] = np.unwrap( - video_info["HWframeCount"], period=AVT_camHWframeCount_wrapval + video_info["HWframeCount"].astype(np.int32), + period=AVT_camHWframeCount_wrapval, ) # Keep track of video frames @@ -261,7 +262,9 @@ def get_corrected_timestamps_without_position(hw_frame_count_path): pause_mid_time = -1.0 if not ptp_enabled: - raise ValueError("No DIO camera ticks found and PTP not enabled. Cannot infer position timestamps.") + raise ValueError( + "No DIO camera ticks found and PTP not enabled. Cannot infer position timestamps." + ) if ptp_enabled: ptp_timestamps = pd.Index( @@ -320,7 +323,8 @@ def find_camera_dio_channel(position_tracking_path, video_info): "Likely could not find camera tick DIO channel." f"In the most likely dio file {dio_paths[position_ticks_file_ind]}," f"there are {n_ticks[position_ticks_file_ind]} ticks" - f" and the position file has {n_camera_frames} camera frames.") + f" and the position file has {n_camera_frames} camera frames." + ) camera_ticks_dio = pd.DataFrame( readTrodesExtractedDataFile(dio_paths[position_ticks_file_ind])["data"] @@ -526,7 +530,6 @@ def remove_acquisition_timing_pause_non_ptp( def correct_timestamps_for_camera_to_mcu_lag( frame_count, camera_systime, camera_to_mcu_lag ): - regression_result = linregress(frame_count, camera_systime - camera_to_mcu_lag) corrected_camera_systime = ( regression_result.intercept + frame_count * regression_result.slope From 626c9d6fb958402c579693936acee3ea872aa9d3 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 3 Jul 2023 11:13:40 -0700 Subject: [PATCH 193/205] If no DOB, continue --- rec_to_nwb/processing/metadata/metadata_extractor.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/rec_to_nwb/processing/metadata/metadata_extractor.py b/rec_to_nwb/processing/metadata/metadata_extractor.py index d1e782300..cb05cf11c 100644 --- a/rec_to_nwb/processing/metadata/metadata_extractor.py +++ b/rec_to_nwb/processing/metadata/metadata_extractor.py @@ -9,10 +9,12 @@ def extract_metadata(metadata_path): with open(metadata_path, "r") as stream: yaml_dict = yaml.safe_load(stream) - # yaml automatically converts date_of_birth to a datetime object, need to convert back - yaml_dict["subject"]["date_of_birth"] = yaml_dict["subject"][ - "date_of_birth" - ].strftime("%Y-%m-%dT%H:%M:%S.%fZ") - + try: + # yaml automatically converts date_of_birth to a datetime object, need to convert back + yaml_dict["subject"]["date_of_birth"] = yaml_dict["subject"][ + "date_of_birth" + ].strftime("%Y-%m-%dT%H:%M:%S.%fZ") + except KeyError: + pass # for some reason they want to convert all ints, float to strings return json.loads(json.dumps(yaml_dict), parse_int=str, parse_float=str) From 0396a66b97eac1b68bed890e50b371190bd6ed62 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Thu, 6 Jul 2023 09:47:52 -0700 Subject: [PATCH 194/205] Add position frame indexes and non-repeating timestamps as new processing modules --- .../originators/position_originator.py | 57 ++++++++++++++++--- 1 file changed, 48 insertions(+), 9 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index d7a5580dd..fdb27abcf 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -4,7 +4,7 @@ import numpy as np import pandas as pd -from pynwb import NWBFile, ProcessingModule +from pynwb import NWBFile, ProcessingModule, TimeSeries from pynwb.behavior import Position from rec_to_binaries.read_binaries import readTrodesExtractedDataFile from rec_to_nwb.processing.exceptions.invalid_metadata_exception import ( @@ -53,22 +53,63 @@ def make(self, nwb_content: NWBFile): position_df = self.get_position_with_corrected_timestamps( position_tracking_path[0] ) - #Multi-position split. - #TODO: generalize key names? - key_lists = [['xloc','yloc',], #led 0 - ['xloc2','yloc2',],] #led 1 + # Multi-position split. + # TODO: generalize key names? + key_lists = [ + [ + "xloc", + "yloc", + ], # led 0 + [ + "xloc2", + "yloc2", + ], + ] # led 1 for led_number, valid_keys in enumerate(key_lists): - key_set = [key for key in position_df.columns.tolist() if key in valid_keys] + key_set = [ + key for key in position_df.columns.tolist() if key in valid_keys + ] if len(key_set) > 0: position.create_spatial_series( name=f"led_{led_number}_series_{dataset_ind}", - description=", ".join(['xloc','yloc']), + description=", ".join(["xloc", "yloc"]), data=np.asarray(position_df[key_set]), conversion=conversion, reference_frame="Upper left corner of video frame", timestamps=np.asarray(position_df.index), ) first_timestamps.append(position_df.index[0]) + # add the video frame index as a new processing module + if "position_frame_index" not in nwb_content.processing: + nwb_content.create_processing_module( + name="position_frame_index", + description="stores video frame index for each position timestep", + ) + # add timeseries for each frame index set (once per series because led's share timestamps) + nwb_content.processing["position_frame_index"].add( + TimeSeries( + name=f"series_{dataset_ind}", + data=np.asarray(position_df["video_frame_ind"]), + unit="N/A", + timestamps=np.asarray(position_df.index), + ) + ) + # add the video non-repeat timestamp labels as a new processing module + if "non_repeat_timestamp_labels" not in nwb_content.processing: + nwb_content.create_processing_module( + name="non_repeat_timestamp_labels", + description="stores non_repeat_labels for each position timestep", + ) + # add timeseries for each non-repeat timestamp labels set (once per series because led's share timestamps) + nwb_content.processing["non_repeat_timestamp_labels"].add( + TimeSeries( + name=f"series_{dataset_ind}", + data=np.asarray(position_df["non_repeat_timestamp_labels"]), + unit="N/A", + timestamps=np.asarray(position_df.index), + ) + ) + except IndexError: video_file_path = glob.glob( os.path.join(pos_path, "*.pos_cameraHWFrameCount.dat") @@ -233,7 +274,6 @@ def get_position_with_corrected_timestamps(position_tracking_path): @staticmethod def get_corrected_timestamps_without_position(hw_frame_count_path): - video_info = readTrodesExtractedDataFile(hw_frame_count_path) video_info = pd.DataFrame(video_info["data"]).set_index("PosTimestamp") # On AVT cameras, HWFrame counts wraps to 0 above this value. @@ -516,7 +556,6 @@ def remove_acquisition_timing_pause_non_ptp( def correct_timestamps_for_camera_to_mcu_lag( frame_count, camera_systime, camera_to_mcu_lag ): - regression_result = linregress(frame_count, camera_systime - camera_to_mcu_lag) corrected_camera_systime = ( regression_result.intercept + frame_count * regression_result.slope From fd2c6b9025db12f85b54c680f787d1bbc0b350a9 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Thu, 6 Jul 2023 16:42:18 -0700 Subject: [PATCH 195/205] Detect if ptp is enabled based on rec header --- .../processing/builder/nwb_file_builder.py | 21 ++++++++++++++++++- .../originators/position_originator.py | 21 +++++++------------ 2 files changed, 28 insertions(+), 14 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 451fdee61..5b462d565 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -357,10 +357,29 @@ def __init__( else: self.analog_originator = AnalogOriginator(self.datasets, self.metadata) + ptp_enabled = self._detect_ptp_from_header() + self.position_originator = PositionOriginator( - self.datasets, self.metadata, self.dataset_names + self.datasets, self.metadata, self.dataset_names, ptp_enabled ) + def _detect_ptp_from_header(self): + mconf = self.header.tree.find("ModuleConfiguration") + ptp_enabled = False + for smconf in mconf.findall("SingleModuleConfiguration"): + if ( + smconf.get("moduleName") == "cameraModule" + or smconf.get("moduleName") == "./cameraModule" + ): + for arg in smconf.findall("Argument"): + ptp_enabled = "-ptpEnabled" in arg.attrib.values() + if ptp_enabled: + break + if ptp_enabled: + break + logger.info("PTP enabled: " + str(ptp_enabled)) + return ptp_enabled + def __extract_datasets(self, animal_name, date): self.data_scanner.extract_data_from_date_folder(date) self.datasets = [ diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index ea2fcacd0..5f3e4a080 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -26,13 +26,16 @@ class PositionOriginator: @beartype - def __init__(self, datasets: list, metadata: dict, dataset_names: list): + def __init__( + self, datasets: list, metadata: dict, dataset_names: list, ptp_enabled: bool + ): self.datasets = datasets self.dataset_names = dataset_names self.metadata = metadata self.pm_creator = ProcessingModule( "behavior", "Contains all behavior-related data" ) + self.ptp_enabled = ptp_enabled @beartype def make(self, nwb_content: NWBFile): @@ -51,7 +54,7 @@ def make(self, nwb_content: NWBFile): os.path.join(pos_path, "*.pos_online.dat") ) position_df = self.get_position_with_corrected_timestamps( - position_tracking_path[0] + position_tracking_path[0], self.ptp_enabled ) position.create_spatial_series( name=f"series_{dataset_ind}", @@ -67,7 +70,7 @@ def make(self, nwb_content: NWBFile): os.path.join(pos_path, "*.pos_cameraHWFrameCount.dat") ) video_df = self.get_corrected_timestamps_without_position( - video_file_path[0] + video_file_path[0], self.ptp_enabled ) position.create_spatial_series( name=f"series_{dataset_ind}", @@ -87,7 +90,7 @@ def make(self, nwb_content: NWBFile): nwb_content.processing["behavior"].add(position) @staticmethod - def get_position_with_corrected_timestamps(position_tracking_path): + def get_position_with_corrected_timestamps(position_tracking_path, ptp_enabled): logger.info(os.path.split(position_tracking_path)[-1]) # Get position tracking information @@ -123,10 +126,6 @@ def get_position_with_corrected_timestamps(position_tracking_path): # Get the timestamps from the neural data mcu_neural_timestamps = get_mcu_neural_timestamps(position_tracking_path) - # Determine whether the precision time protocol is being used - # which gives accurate timestamps associated with each video frame. - ptp_enabled = detect_ptp(mcu_neural_timestamps, video_info.HWTimestamp) - # Get the camera time from the DIOs dio_camera_ticks = find_camera_dio_channel(position_tracking_path, video_info) is_valid_tick = np.isin(dio_camera_ticks, mcu_neural_timestamps.index) @@ -226,7 +225,7 @@ def get_position_with_corrected_timestamps(position_tracking_path): ) @staticmethod - def get_corrected_timestamps_without_position(hw_frame_count_path): + def get_corrected_timestamps_without_position(hw_frame_count_path, ptp_enabled): video_info = readTrodesExtractedDataFile(hw_frame_count_path) video_info = pd.DataFrame(video_info["data"]).set_index("PosTimestamp") # On AVT cameras, HWFrame counts wraps to 0 above this value. @@ -242,10 +241,6 @@ def get_corrected_timestamps_without_position(hw_frame_count_path): # Get the timestamps from the neural data mcu_neural_timestamps = get_mcu_neural_timestamps(hw_frame_count_path) - # Determine whether the precision time protocol is being used - # which gives accurate timestamps associated with each video frame. - ptp_enabled = detect_ptp(mcu_neural_timestamps, video_info.HWTimestamp) - # Get the camera time from the DIOs try: dio_camera_ticks = find_camera_dio_channel(hw_frame_count_path, video_info) From 8e612beb0b591f73fb18bfdf8de173272689411f Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Fri, 7 Jul 2023 08:20:50 -0700 Subject: [PATCH 196/205] Cleanup syntax --- rec_to_nwb/processing/builder/nwb_file_builder.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rec_to_nwb/processing/builder/nwb_file_builder.py b/rec_to_nwb/processing/builder/nwb_file_builder.py index 5b462d565..2e85174e2 100644 --- a/rec_to_nwb/processing/builder/nwb_file_builder.py +++ b/rec_to_nwb/processing/builder/nwb_file_builder.py @@ -367,10 +367,7 @@ def _detect_ptp_from_header(self): mconf = self.header.tree.find("ModuleConfiguration") ptp_enabled = False for smconf in mconf.findall("SingleModuleConfiguration"): - if ( - smconf.get("moduleName") == "cameraModule" - or smconf.get("moduleName") == "./cameraModule" - ): + if smconf.get("moduleName") in ["cameraModule", "./cameraModule"]: for arg in smconf.findall("Argument"): ptp_enabled = "-ptpEnabled" in arg.attrib.values() if ptp_enabled: From 73c83f7d11d0b7225ef28811a975e52fd261d224 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Tue, 11 Jul 2023 08:40:49 -0700 Subject: [PATCH 197/205] Update position_originator.py --- rec_to_nwb/processing/builder/originators/position_originator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index cd94a2523..bed43ca6b 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -273,7 +273,6 @@ def get_position_with_corrected_timestamps(position_tracking_path, ptp_enabled): ) @staticmethod - def get_corrected_timestamps_without_position(hw_frame_count_path, ptp_enabled): video_info = readTrodesExtractedDataFile(hw_frame_count_path) video_info = pd.DataFrame(video_info["data"]).set_index("PosTimestamp") From 6a08662d3d3611c65643bc2444b610acf28a65d1 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 31 Jul 2023 13:01:28 -0700 Subject: [PATCH 198/205] Remove type checking --- .../processing/builder/originators/position_originator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index bed43ca6b..bec4f40cf 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -25,7 +25,6 @@ class PositionOriginator: - @beartype def __init__( self, datasets: list, metadata: dict, dataset_names: list, ptp_enabled: bool ): @@ -37,7 +36,6 @@ def __init__( ) self.ptp_enabled = ptp_enabled - @beartype def make(self, nwb_content: NWBFile): position = Position(name="position") From 653fa96654d18bc662fdcc37119c4d4e05c82499 Mon Sep 17 00:00:00 2001 From: Eric Denovellis Date: Mon, 31 Jul 2023 19:50:31 -0700 Subject: [PATCH 199/205] Raise error if no DOB closes issue #53 --- rec_to_nwb/processing/metadata/metadata_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/metadata/metadata_extractor.py b/rec_to_nwb/processing/metadata/metadata_extractor.py index cb05cf11c..3c7e92238 100644 --- a/rec_to_nwb/processing/metadata/metadata_extractor.py +++ b/rec_to_nwb/processing/metadata/metadata_extractor.py @@ -15,6 +15,6 @@ def extract_metadata(metadata_path): "date_of_birth" ].strftime("%Y-%m-%dT%H:%M:%S.%fZ") except KeyError: - pass + raise ValueError("date of birth is required in metadata yml file") # for some reason they want to convert all ints, float to strings return json.loads(json.dumps(yaml_dict), parse_int=str, parse_float=str) From d5ffeccf5f8e7153e6feff3a9eb07f356a5b7023 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Fri, 18 Aug 2023 13:11:32 -0700 Subject: [PATCH 200/205] Change key to prevent overiding between analog channels with similar names --- .../processing/nwb/components/analog/analog_files.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/analog/analog_files.py b/rec_to_nwb/processing/nwb/components/analog/analog_files.py index dd3a9e901..4a29afa30 100644 --- a/rec_to_nwb/processing/nwb/components/analog/analog_files.py +++ b/rec_to_nwb/processing/nwb/components/analog/analog_files.py @@ -3,7 +3,6 @@ class AnalogFiles: - def __init__(self, directories): self.directories = directories @@ -13,7 +12,10 @@ def get_files(self): @classmethod def __get_dict(cls, directory): analog_dict = {} - for file in glob.glob(os.path.join(directory, '*.dat')): - analog_name = file.split('.')[-2].split('_')[-1] + for file in glob.glob(os.path.join(directory, "*.dat")): + if "timestamps" in file: + analog_name = "timestamps" + else: + analog_name = file.split(".")[-2] analog_dict[analog_name] = os.path.join(directory, file) return analog_dict From 952e039c591e429fb1042bef0630889ba4bf6844 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Fri, 18 Aug 2023 13:12:47 -0700 Subject: [PATCH 201/205] Prevent timestamps label from being added to the behavioral events description --- .../components/analog/fl_analog_manager.py | 52 +++++++++++-------- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py index 8c24446bd..68a27192d 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py @@ -1,24 +1,27 @@ import numpy as np from rec_to_nwb.processing.nwb.components.analog.fl_analog import FlAnalog -from rec_to_nwb.processing.nwb.components.analog.fl_analog_builder import \ - FlAnalogBuilder -from rec_to_nwb.processing.nwb.components.analog.fl_analog_extractor import \ - FlAnalogExtractor +from rec_to_nwb.processing.nwb.components.analog.fl_analog_builder import ( + FlAnalogBuilder, +) +from rec_to_nwb.processing.nwb.components.analog.fl_analog_extractor import ( + FlAnalogExtractor, +) from rec_to_nwb.processing.tools.beartype.beartype import beartype -from rec_to_nwb.processing.tools.validate_parameters import \ - validate_parameters_equal_length +from rec_to_nwb.processing.tools.validate_parameters import ( + validate_parameters_equal_length, +) class FlAnalogManager: - @beartype - def __init__(self, analog_files: list, - continuous_time_files: list, - convert_timestamps: bool = True, - return_timestamps: bool = True, - ): - validate_parameters_equal_length( - __name__, analog_files, continuous_time_files) + def __init__( + self, + analog_files: list, + continuous_time_files: list, + convert_timestamps: bool = True, + return_timestamps: bool = True, + ): + validate_parameters_equal_length(__name__, analog_files, continuous_time_files) self.analog_files = analog_files self.continuous_time_files = continuous_time_files @@ -27,7 +30,7 @@ def __init__(self, analog_files: list, @beartype def get_analog(self) -> FlAnalog: - """"extract data from analog files""" + """ "extract data from analog files""" all_analog_data = [] number_of_datasets = len(self.analog_files) @@ -36,7 +39,7 @@ def get_analog(self) -> FlAnalog: FlAnalogExtractor.extract_analog_for_single_dataset( self.analog_files[i], self.continuous_time_files[i], - convert_timestamps=self.convert_timestamps + convert_timestamps=self.convert_timestamps, ) ) merged_epochs = self.__merge_epochs(all_analog_data) @@ -55,21 +58,26 @@ def __merge_epochs(data_from_multiple_datasets): for single_dataset_data in data_from_multiple_datasets[1:]: for row in single_dataset_data.keys(): merged_epochs[row] = np.hstack( - (merged_epochs[row], single_dataset_data[row])) + (merged_epochs[row], single_dataset_data[row]) + ) return merged_epochs @staticmethod def __merge_row_description(data_from_multiple_datasets): row_ids = data_from_multiple_datasets[0].keys() - description = '' + description = "" for id in row_ids: - description += id + ' ' + if "timestamp" not in id: + description += id + " " return description @classmethod def __merge_analog_sensors(cls, merged_epochs): - analog_sensors = [merged_epochs[analog_sensor] for analog_sensor in merged_epochs.keys() if - 'timestamp' not in analog_sensor] + analog_sensors = [ + merged_epochs[analog_sensor] + for analog_sensor in merged_epochs.keys() + if "timestamp" not in analog_sensor + ] merged_analog_sensors = np.array(analog_sensors, np.int32) transposed_analog_data = np.ndarray.transpose(merged_analog_sensors) return transposed_analog_data @@ -77,5 +85,5 @@ def __merge_analog_sensors(cls, merged_epochs): @classmethod def __get_timestamps(cls, merged_epochs): for analog_sensor in merged_epochs.keys(): - if 'timestamps' in analog_sensor: + if "timestamps" in analog_sensor: return merged_epochs[analog_sensor] From 85cd84a24cddc6c943f8574396d17ac3affda629 Mon Sep 17 00:00:00 2001 From: Samuel Bray Date: Fri, 18 Aug 2023 15:06:22 -0700 Subject: [PATCH 202/205] Minor style change --- .../processing/nwb/components/analog/fl_analog_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py index 68a27192d..c4072de7d 100644 --- a/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py +++ b/rec_to_nwb/processing/nwb/components/analog/fl_analog_manager.py @@ -30,7 +30,7 @@ def __init__( @beartype def get_analog(self) -> FlAnalog: - """ "extract data from analog files""" + """extract data from analog files""" all_analog_data = [] number_of_datasets = len(self.analog_files) From 7506848aa985a2bf95716e32fdf8f363b118e368 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Fri, 18 Aug 2023 15:08:04 -0700 Subject: [PATCH 203/205] Fix error caused by Controller_Din headstage channels --- .../nwb/components/dio/dio_files.py | 40 ++++++++++++++----- 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_files.py b/rec_to_nwb/processing/nwb/components/dio/dio_files.py index a66b93c49..3e2a65cc5 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_files.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_files.py @@ -3,33 +3,51 @@ class DioFiles: - def __init__(self, directories, dio_metadata): self.directories = directories self.dio_metadata = dio_metadata def get_files(self): - multiple_datasets_dio_files = [self.__get_dict( - dataset) for dataset in self.directories] + multiple_datasets_dio_files = [ + self.__get_dict(dataset) for dataset in self.directories + ] filtered_datasets_dio_files = self.__filter_files( - multiple_datasets_dio_files, self.dio_metadata) + multiple_datasets_dio_files, self.dio_metadata + ) return filtered_datasets_dio_files @classmethod def __filter_files(cls, multiple_datasets_dio_files, dio_metadata): - return [{dio_file: single_dataset[dio_file] for dio_file in single_dataset - if dio_file in [dio_event['description'] for dio_event in dio_metadata]} - for single_dataset in multiple_datasets_dio_files] + return [ + { + dio_file: single_dataset[dio_file] + for dio_file in single_dataset + if dio_file in [dio_event["description"] for dio_event in dio_metadata] + } + for single_dataset in multiple_datasets_dio_files + ] @classmethod def __get_dict(cls, directory): dio_dict = {} - for file in glob.glob(os.path.join(directory, '*.dat')): - if file.split('.')[-2].split('_')[-2] == "MCU": + for file in glob.glob(os.path.join(directory, "*.dat")): + if file.split(".")[-2].split("_")[-2] == "MCU": # To avoid this warning, remove MCU_IO data from being displayed via the .trodesconf, this will stop MCU_IO extraction - print(f'WARNING: MCU_IO data are not currently handled by rec_to_nwb. Skipping file: {file}.') + print( + f"WARNING: MCU_IO data are not currently handled by rec_to_nwb. Skipping file: {file}." + ) # TODO: find MCU_IO binaries if they exist and appropriately insert these data into nwbs in future version of rec_to_nwb + elif file.split(".")[-2].split("_")[-2] == "Controller": + print( + f"WARNING: Controller_IO data are not currently handled by rec_to_nwb. Skipping file: {file}." + ) else: - dio_name = file.split('.')[-2].split('_')[-1] # This string should be of the form "Din12" "Dout5" + if not(file.split(".")[-2].split("_")[-2] == "ECU"): + print( + f"WARNING: {file.split('.')[-2].split("_")[-2]} is not a recognized dio type. Including file: {file}, but proceed with caution." + ) + dio_name = file.split(".")[-2].split("_")[ + -1 + ] # This string should be of the form "Din12" "Dout5" dio_dict[dio_name] = os.path.join(directory, file) return dio_dict From 785e32c5bc08a5f442b2bd0d08a1225c9d86f70d Mon Sep 17 00:00:00 2001 From: Samuel Bray Date: Wed, 6 Sep 2023 10:04:50 -0700 Subject: [PATCH 204/205] Fix f-string bug --- rec_to_nwb/processing/nwb/components/dio/dio_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rec_to_nwb/processing/nwb/components/dio/dio_files.py b/rec_to_nwb/processing/nwb/components/dio/dio_files.py index 3e2a65cc5..ad5bfc51f 100644 --- a/rec_to_nwb/processing/nwb/components/dio/dio_files.py +++ b/rec_to_nwb/processing/nwb/components/dio/dio_files.py @@ -44,7 +44,7 @@ def __get_dict(cls, directory): else: if not(file.split(".")[-2].split("_")[-2] == "ECU"): print( - f"WARNING: {file.split('.')[-2].split("_")[-2]} is not a recognized dio type. Including file: {file}, but proceed with caution." + f"WARNING: {file.split('.')[-2].split('_')[-2]} is not a recognized dio type. Including file: {file}, but proceed with caution." ) dio_name = file.split(".")[-2].split("_")[ -1 From 4a23927700077e89f7f05ecde6fcafadb23e5945 Mon Sep 17 00:00:00 2001 From: Sam Bray Date: Wed, 4 Oct 2023 14:41:02 -0700 Subject: [PATCH 205/205] Use ptp to detect pause time if dio video stamps unavailable --- .../originators/position_originator.py | 30 ++++++++++++------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/rec_to_nwb/processing/builder/originators/position_originator.py b/rec_to_nwb/processing/builder/originators/position_originator.py index bec4f40cf..ce0c4f10d 100644 --- a/rec_to_nwb/processing/builder/originators/position_originator.py +++ b/rec_to_nwb/processing/builder/originators/position_originator.py @@ -179,16 +179,21 @@ def get_position_with_corrected_timestamps(position_tracking_path, ptp_enabled): mcu_neural_timestamps.loc[dio_camera_ticks[is_valid_tick]] ) - # The DIOs and camera frames are initially unaligned. There is a - # half second pause at the start to allow for alignment. - pause_mid_time = find_acquisition_timing_pause(dio_systime) - - # Estimate the frame rate from the DIO camera ticks as a sanity check. - frame_rate_from_dio = get_framerate(dio_systime[dio_systime > pause_mid_time]) - logger.info( - "Camera frame rate estimated from DIO camera ticks:" - f" {frame_rate_from_dio:0.1f} frames/s" - ) + if len(dio_systime) > 0: + # The DIOs and camera frames are initially unaligned. There is a + # half second pause at the start to allow for alignment. + pause_mid_time = find_acquisition_timing_pause(dio_systime) + + # Estimate the frame rate from the DIO camera ticks as a sanity check. + frame_rate_from_dio = get_framerate( + dio_systime[dio_systime > pause_mid_time] + ) + logger.info( + "Camera frame rate estimated from DIO camera ticks:" + f" {frame_rate_from_dio:0.1f} frames/s" + ) + else: + pause_mid_time = None # Match the camera frames to the position tracking # Number of video frames can be different from online tracking because @@ -202,6 +207,11 @@ def get_position_with_corrected_timestamps(position_tracking_path, ptp_enabled): if ptp_enabled: logger.info("PTP detected") ptp_systime = np.asarray(video_position_info.HWTimestamp) + + if pause_mid_time is None: + # estimate pause_mid_time from ptp timestamps if dio was missing + pause_mid_time = find_acquisition_timing_pause(ptp_systime) + frame_rate_from_ptp = get_framerate( ptp_systime[ptp_systime > pause_mid_time] )